blob: 8916d60683d4145b6ef4661ba3c5d6e1a2298d02 [file] [log] [blame]
Hanno Becker447e8a52021-01-12 07:27:12 +00001/*
2 * Copyright The Mbed TLS Contributors
3 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may
6 * not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 * This file is part of mbed TLS (https://tls.mbed.org)
18 */
19
20/**
21 * \file error.h
22 *
23 * \brief Error codes used by MPS
24 */
25
26#ifndef MBEDTLS_MPS_ERROR_H
27#define MBEDTLS_MPS_ERROR_H
28
29
30/* TODO: The error code allocation needs to be revisited:
31 *
32 * - Should we make (some of) the MPS Reader error codes public?
33 * If so, we need to adjust MBEDTLS_READER_MAKE_ERROR() to hit
34 * a gap in the Mbed TLS public error space.
35 * If not, we have to make sure we don't forward those errors
36 * at the level of the public API -- no risk at the moment as
37 * long as MPS is an experimental component not accessible from
38 * public API.
39 */
40
41#ifndef MBEDTLS_MPS_ERR_BASE
42#define MBEDTLS_MPS_ERR_BASE ( 1 << 0 )
43#endif
44
45/**
Hanno Beckerac267f32021-01-12 07:25:41 +000046 * \name SECTION: MPS general error codes
47 *
48 * \{
49 */
50
51#ifndef MBEDTLS_MPS_ERR_BASE
52#define MBEDTLS_MPS_ERR_BASE ( 1 << 10 )
53#endif
54
55#define MBEDTLS_MPS_MAKE_ERROR(code) \
56 ( -( MBEDTLS_MPS_ERR_BASE | (code) ) )
57
58
59#define MBEDTLS_ERR_MPS_OPERATION_UNEXPECTED MBEDTLS_MPS_MAKE_ERROR( 0x1 )
60
61/* \} name SECTION: MPS general error codes */
62
63/**
Hanno Becker447e8a52021-01-12 07:27:12 +000064 * \name SECTION: MPS Reader error codes
65 *
66 * \{
67 */
68
69#ifndef MBEDTLS_MPS_READER_ERR_BASE
70#define MBEDTLS_MPS_READER_ERR_BASE ( 1 << 7 )
71#endif
72
73#define MBEDTLS_MPS_READER_MAKE_ERROR(code) \
74 ( -( MBEDTLS_MPS_READER_ERR_BASE | (code) ) )
75
76/*! An attempt to reclaim the data buffer from a reader failed because
77 * the user hasn't yet read and committed all of it. */
78#define MBEDTLS_ERR_MPS_READER_DATA_LEFT MBEDTLS_MPS_READER_MAKE_ERROR( 0x1 )
79
80/*! An invalid argument was passed to the reader. */
81#define MBEDTLS_ERR_MPS_READER_INVALID_ARG MBEDTLS_MPS_READER_MAKE_ERROR( 0x2 )
82
83/*! An attempt to move a reader to consuming mode through mbedtls_reader_feed()
84 * after pausing failed because the provided data is not sufficient to serve the
85 * the read requests that lead to the pausing. */
86#define MBEDTLS_ERR_MPS_READER_NEED_MORE MBEDTLS_MPS_READER_MAKE_ERROR( 0x3 )
87
88/*! A read request failed because not enough data is available in the reader. */
89#define MBEDTLS_ERR_MPS_READER_OUT_OF_DATA MBEDTLS_MPS_READER_MAKE_ERROR( 0x4 )
90
91/*!< A read request after pausing and reactivating the reader failed because
92 * the request is not in line with the request made prior to pausing. The user
93 * must not change it's 'strategy' after pausing and reactivating a reader. */
94#define MBEDTLS_ERR_MPS_READER_INCONSISTENT_REQUESTS MBEDTLS_MPS_READER_MAKE_ERROR( 0x5 )
95
96/*! An attempt to reclaim the data buffer from a reader fails because the reader
97 * has no accumulator it can use to backup the data that hasn't been processed. */
98#define MBEDTLS_ERR_MPS_READER_NEED_ACCUMULATOR MBEDTLS_MPS_READER_MAKE_ERROR( 0x6 )
99
100/*! An attempt to reclaim the data buffer from a reader fails beacuse the
101 * accumulator passed to the reader is not large enough to hold both the
102 * data that hasn't been processed and the excess of the last read-request. */
103#define MBEDTLS_ERR_MPS_READER_ACCUMULATOR_TOO_SMALL MBEDTLS_MPS_READER_MAKE_ERROR( 0x7 )
104
105/* \} name SECTION: MPS Reader error codes */
106
107#endif /* MBEDTLS_MPS_ERROR_H */