blob: 50d07fca637ca6960b89fa969183c0491534a3ee [file] [log] [blame]
Ronald Cronb6d6d4c2020-06-03 10:11:18 +02001/**
2 * \file helpers.h
3 *
4 * \brief This file contains the prototypes of helper functions for the
5 * purpose of testing.
6 */
7
Bence Szépkúti86974652020-06-15 11:59:37 +02008/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02009 * Copyright The Mbed TLS Contributors
Ronald Cronb6d6d4c2020-06-03 10:11:18 +020010 * SPDX-License-Identifier: Apache-2.0
11 *
12 * Licensed under the Apache License, Version 2.0 (the "License"); you may
13 * not use this file except in compliance with the License.
14 * You may obtain a copy of the License at
15 *
16 * http://www.apache.org/licenses/LICENSE-2.0
17 *
18 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
20 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * See the License for the specific language governing permissions and
22 * limitations under the License.
Ronald Cronb6d6d4c2020-06-03 10:11:18 +020023 */
24
25#ifndef TEST_HELPERS_H
26#define TEST_HELPERS_H
27
28#if !defined(MBEDTLS_CONFIG_FILE)
29#include "mbedtls/config.h"
30#else
31#include MBEDTLS_CONFIG_FILE
32#endif
33
Ronald Cronf40529d2020-06-09 16:27:37 +020034#if defined(MBEDTLS_PLATFORM_C)
35#include "mbedtls/platform.h"
36#else
37#include <stdio.h>
38#define mbedtls_fprintf fprintf
39#define mbedtls_snprintf snprintf
40#define mbedtls_calloc calloc
41#define mbedtls_free free
42#define mbedtls_exit exit
43#define mbedtls_time time
44#define mbedtls_time_t time_t
45#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
46#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
47#endif
48
49#include <stddef.h>
50#include <stdint.h>
51
Chris Jones9634bb12021-01-20 15:56:42 +000052typedef enum
53{
Chris Jonese60e2ae2021-01-20 17:51:47 +000054 MBEDTLS_TEST_RESULT_SUCCESS = 0,
55 MBEDTLS_TEST_RESULT_FAILED,
56 MBEDTLS_TEST_RESULT_SKIPPED
57} mbedtls_test_result_t;
Chris Jones9634bb12021-01-20 15:56:42 +000058
59typedef struct
60{
Chris Jonese60e2ae2021-01-20 17:51:47 +000061 mbedtls_test_result_t result;
Chris Jones9634bb12021-01-20 15:56:42 +000062 const char *test;
63 const char *filename;
64 int line_no;
65 unsigned long step;
66}
Chris Jonese60e2ae2021-01-20 17:51:47 +000067mbedtls_test_info_t;
68extern mbedtls_test_info_t mbedtls_test_info;
Chris Jones9634bb12021-01-20 15:56:42 +000069
Ronald Crone9c09f12020-06-08 16:44:58 +020070int mbedtls_test_platform_setup( void );
71void mbedtls_test_platform_teardown( void );
Ronald Cronf40529d2020-06-09 16:27:37 +020072
Chris Jones567e0ad2021-02-03 12:07:01 +000073/**
74 * \brief Record the given, usually current, test as a failure.
75 *
76 * \param test Name of the test to fail.
77 * \param line_no Line number where the failure originated.
78 * \param filename Filename where the failure originated.
79 */
Chris Jones9634bb12021-01-20 15:56:42 +000080void mbedtls_test_fail( const char *test, int line_no, const char* filename );
Chris Jones567e0ad2021-02-03 12:07:01 +000081
82/**
83 * \brief Record the given, usually current, test as skipped.
84 *
85 * \param test Name of the test to skip.
86 * \param line_no Line number where the test skipped.
87 * \param filename Filename where the test skipped.
88 */
Chris Jonesa5ab7652021-02-02 16:20:45 +000089void mbedtls_test_skip( const char *test, int line_no, const char* filename );
Chris Jones9634bb12021-01-20 15:56:42 +000090
Chris Jones567e0ad2021-02-03 12:07:01 +000091/**
92 * \brief Set the test step number for failure reports.
Chris Jones9634bb12021-01-20 15:56:42 +000093 *
Chris Jones567e0ad2021-02-03 12:07:01 +000094 * \note Call this function to display "step NNN" in addition to the
95 * line number and file name if a test fails. Typically the "step
96 * number" is the index of a for loop but it can be whatever you
97 * want.
Chris Jones9634bb12021-01-20 15:56:42 +000098 *
99 * \param step The step number to report.
100 */
101void mbedtls_test_set_step( unsigned long step );
102
Chris Jones567e0ad2021-02-03 12:07:01 +0000103/**
104 * \brief Reset mbedtls_test_info to a ready/starting state.
105 *
106 * \note Clears the test, line_no, filename, step and result from any
107 * previously stored values and initialises them ready to be used.
108 */
Chris Jonesa5ab7652021-02-02 16:20:45 +0000109void mbedtls_test_info_reset( void );
Chris Jones9634bb12021-01-20 15:56:42 +0000110
Ronald Crona0c25392020-06-18 10:10:46 +0200111/**
Ronald Cronab500cb2020-07-01 17:09:10 +0200112 * \brief This function decodes the hexadecimal representation of
113 * data.
Ronald Crona0c25392020-06-18 10:10:46 +0200114 *
115 * \note The output buffer can be the same as the input buffer. For
116 * any other overlapping of the input and output buffers, the
117 * behavior is undefined.
118 *
119 * \param obuf Output buffer.
120 * \param obufmax Size in number of bytes of \p obuf.
121 * \param ibuf Input buffer.
122 * \param len The number of unsigned char written in \p obuf. This must
123 * not be \c NULL.
124 *
125 * \return \c 0 on success.
126 * \return \c -1 if the output buffer is too small or the input string
Ronald Cronab500cb2020-07-01 17:09:10 +0200127 * is not a valid hexadecimal representation.
Ronald Crona0c25392020-06-18 10:10:46 +0200128 */
129int mbedtls_test_unhexify( unsigned char *obuf, size_t obufmax,
130 const char *ibuf, size_t *len );
131
Ronald Cron72d628f2020-06-08 17:05:57 +0200132void mbedtls_test_hexify( unsigned char *obuf,
133 const unsigned char *ibuf,
134 int len );
Ronald Cronf40529d2020-06-09 16:27:37 +0200135
136/**
137 * Allocate and zeroize a buffer.
138 *
139 * If the size if zero, a pointer to a zeroized 1-byte buffer is returned.
140 *
141 * For convenience, dies if allocation fails.
142 */
Ronald Cron690f3eb2020-06-10 10:42:18 +0200143unsigned char *mbedtls_test_zero_alloc( size_t len );
Ronald Cronf40529d2020-06-09 16:27:37 +0200144
145/**
146 * Allocate and fill a buffer from hex data.
147 *
148 * The buffer is sized exactly as needed. This allows to detect buffer
149 * overruns (including overreads) when running the test suite under valgrind.
150 *
151 * If the size if zero, a pointer to a zeroized 1-byte buffer is returned.
152 *
153 * For convenience, dies if allocation fails.
154 */
Ronald Crona256c702020-06-10 10:53:11 +0200155unsigned char *mbedtls_test_unhexify_alloc( const char *ibuf, size_t *olen );
Ronald Cronf40529d2020-06-09 16:27:37 +0200156
Ronald Cronde70b162020-06-10 11:03:08 +0200157int mbedtls_test_hexcmp( uint8_t * a, uint8_t * b,
158 uint32_t a_len, uint32_t b_len );
Ronald Cronf40529d2020-06-09 16:27:37 +0200159
Ronald Crona1236142020-07-01 16:01:21 +0200160#if defined(MBEDTLS_CHECK_PARAMS)
161
162typedef struct
163{
164 const char *failure_condition;
165 const char *file;
166 int line;
167}
168mbedtls_test_param_failed_location_record_t;
169
170/**
171 * \brief Get the location record of the last call to
172 * mbedtls_test_param_failed().
173 *
174 * \note The call expectation is set up and active until the next call to
175 * mbedtls_test_param_failed_check_expected_call() or
176 * mbedtls_param_failed() that cancels it.
177 */
178void mbedtls_test_param_failed_get_location_record(
179 mbedtls_test_param_failed_location_record_t *location_record );
180
181/**
182 * \brief State that a call to mbedtls_param_failed() is expected.
183 *
184 * \note The call expectation is set up and active until the next call to
185 * mbedtls_test_param_failed_check_expected_call() or
186 * mbedtls_param_failed that cancel it.
187 */
188void mbedtls_test_param_failed_expect_call( void );
189
190/**
191 * \brief Check whether mbedtls_param_failed() has been called as expected.
192 *
193 * \note Check whether mbedtls_param_failed() has been called between the
194 * last call to mbedtls_test_param_failed_expect_call() and the call
195 * to this function.
196 *
197 * \return \c 0 Since the last call to mbedtls_param_failed_expect_call(),
198 * mbedtls_param_failed() has been called.
199 * \c -1 Otherwise.
200 */
201int mbedtls_test_param_failed_check_expected_call( void );
202
203/**
Ronald Cronbf4f4082020-09-25 10:45:06 +0200204 * \brief Get the address of the object of type jmp_buf holding the execution
Ronald Crona1236142020-07-01 16:01:21 +0200205 * state information used by mbedtls_param_failed() to do a long jump.
206 *
207 * \note If a call to mbedtls_param_failed() is not expected in the sense
208 * that there is no call to mbedtls_test_param_failed_expect_call()
209 * preceding it, then mbedtls_param_failed() will try to restore the
210 * execution to the state stored in the jmp_buf object whose address
211 * is returned by the present function.
212 *
Ronald Cronbf4f4082020-09-25 10:45:06 +0200213 * \note This function is intended to provide the parameter of the
214 * setjmp() function to set-up where mbedtls_param_failed() should
215 * long-jump if it has to. It is foreseen to be used as:
216 *
217 * setjmp( mbedtls_test_param_failed_get_state_buf() ).
218 *
219 * \note The type of the returned value is not jmp_buf as jmp_buf is an
220 * an array type (C specification) and a function cannot return an
221 * array type.
222 *
223 * \note The type of the returned value is not jmp_buf* as then the return
224 * value couldn't be used by setjmp(), as its parameter's type is
225 * jmp_buf.
Ronald Crona1236142020-07-01 16:01:21 +0200226 *
227 * \return Address of the object of type jmp_buf holding the execution state
228 * information used by mbedtls_param_failed() to do a long jump.
229 */
230void* mbedtls_test_param_failed_get_state_buf( void );
231
232/**
233 * \brief Reset the execution state used by mbedtls_param_failed() to do a
234 * long jump.
235 *
236 * \note If a call to mbedtls_param_failed() is not expected in the sense
237 * that there is no call to mbedtls_test_param_failed_expect_call()
238 * preceding it, then mbedtls_param_failed() will try to restore the
239 * execution state that this function reset.
240 *
241 * \note It is recommended to reset the execution state when the state
242 * is not relevant anymore. That way an unexpected call to
243 * mbedtls_param_failed() will not trigger a long jump with
244 * undefined behavior but rather a long jump that will rather fault.
245 */
246void mbedtls_test_param_failed_reset_state( void );
247#endif /* MBEDTLS_CHECK_PARAMS */
248
Ronald Cronb6d6d4c2020-06-03 10:11:18 +0200249#endif /* TEST_HELPERS_H */