| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2022-05-03 18:52:38 +08:00
										 |  |  |  * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |  * Copyright (c) 2019, Oracle and/or its affiliates.  All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include "testutil.h"
 | 
					
						
							|  |  |  | #include "internal/nelem.h"
 | 
					
						
							| 
									
										
										
										
											2020-07-09 14:37:46 +08:00
										 |  |  | #include "internal/endian.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | #include <openssl/params.h>
 | 
					
						
							|  |  |  | #include <openssl/bn.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* The maximum size of the static buffers used to test most things */ | 
					
						
							|  |  |  | #define MAX_LEN 20
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void swap_copy(unsigned char *out, const void *in, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t j; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (j = 0; j < len; j++) | 
					
						
							|  |  |  |         out[j] = ((unsigned char *)in)[len - j - 1]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * A memory copy that converts the native byte ordering either to or from | 
					
						
							|  |  |  |  * little endian format. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * On a little endian machine copying either is just a memcpy(3), on a | 
					
						
							|  |  |  |  * big endian machine copying from native to or from little endian involves | 
					
						
							|  |  |  |  * byte reversal. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  | static void le_copy(unsigned char *out, size_t outlen, | 
					
						
							|  |  |  |                     const void *in, size_t inlen) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-03-25 09:52:58 +08:00
										 |  |  |     DECLARE_IS_ENDIAN; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     if (IS_LITTLE_ENDIAN) { | 
					
						
							|  |  |  |         memcpy(out, in, outlen); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (outlen < inlen) | 
					
						
							|  |  |  |             in = (const char *)in + inlen - outlen; | 
					
						
							|  |  |  |         swap_copy(out, in, outlen); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct { | 
					
						
							|  |  |  |     size_t len; | 
					
						
							|  |  |  |     unsigned char value[MAX_LEN]; | 
					
						
							|  |  |  | } raw_values[] = { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:23:19 +08:00
										 |  |  |     { 1, { 0x47 } }, | 
					
						
							|  |  |  |     { 1, { 0xd0 } }, | 
					
						
							|  |  |  |     { 2, { 0x01, 0xe9 } }, | 
					
						
							|  |  |  |     { 2, { 0xff, 0x53 } }, | 
					
						
							|  |  |  |     { 3, { 0x16, 0xff, 0x7c } }, | 
					
						
							|  |  |  |     { 3, { 0xa8, 0x9c, 0x0e } }, | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     { 4, { 0x38, 0x27, 0xbf, 0x3b } }, | 
					
						
							|  |  |  |     { 4, { 0x9f, 0x26, 0x48, 0x22 } }, | 
					
						
							| 
									
										
										
										
											2020-12-11 08:23:19 +08:00
										 |  |  |     { 5, { 0x30, 0x65, 0xfa, 0xe4, 0x81 } }, | 
					
						
							|  |  |  |     { 5, { 0xd1, 0x76, 0x01, 0x1b, 0xcd } }, | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     { 8, { 0x59, 0xb2, 0x1a, 0xe9, 0x2a, 0xd8, 0x46, 0x40 } }, | 
					
						
							|  |  |  |     { 8, { 0xb4, 0xae, 0xbd, 0xb4, 0xdd, 0x04, 0xb1, 0x4c } }, | 
					
						
							|  |  |  |     { 16, { 0x61, 0xe8, 0x7e, 0x31, 0xe9, 0x33, 0x83, 0x3d, | 
					
						
							|  |  |  |             0x87, 0x99, 0xc7, 0xd8, 0x5d, 0xa9, 0x8b, 0x42 } }, | 
					
						
							|  |  |  |     { 16, { 0xee, 0x6e, 0x8b, 0xc3, 0xec, 0xcf, 0x37, 0xcc, | 
					
						
							|  |  |  |             0x89, 0x67, 0xf2, 0x68, 0x33, 0xa0, 0x14, 0xb0 } }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | static int test_param_type_extra(OSSL_PARAM *param, const unsigned char *cmp, | 
					
						
							|  |  |  |                                  size_t width) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int32_t i32; | 
					
						
							|  |  |  |     int64_t i64; | 
					
						
							|  |  |  |     size_t s, sz; | 
					
						
							|  |  |  |     unsigned char buf[MAX_LEN]; | 
					
						
							| 
									
										
										
										
											2020-12-11 08:23:19 +08:00
										 |  |  |     const int bit32 = param->data_size <= sizeof(int32_t); | 
					
						
							|  |  |  |     const int sizet = param->data_size <= sizeof(size_t); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const int signd = param->data_type == OSSL_PARAM_INTEGER; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-23 18:23:48 +08:00
										 |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2022-01-03 07:00:27 +08:00
										 |  |  |      * Set the unmodified sentinel directly because there is no param array | 
					
						
							| 
									
										
										
										
											2020-04-23 18:23:48 +08:00
										 |  |  |      * for these tests. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     param->return_size = OSSL_PARAM_UNMODIFIED; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (signd) { | 
					
						
							|  |  |  |         if ((bit32 && !TEST_true(OSSL_PARAM_get_int32(param, &i32))) | 
					
						
							|  |  |  |             || !TEST_true(OSSL_PARAM_get_int64(param, &i64))) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if ((bit32 | 
					
						
							|  |  |  |              && !TEST_true(OSSL_PARAM_get_uint32(param, (uint32_t *)&i32))) | 
					
						
							|  |  |  |             || !TEST_true(OSSL_PARAM_get_uint64(param, (uint64_t *)&i64)) | 
					
						
							|  |  |  |             || (sizet && !TEST_true(OSSL_PARAM_get_size_t(param, &s)))) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-04-21 08:49:19 +08:00
										 |  |  |     if (!TEST_false(OSSL_PARAM_modified(param))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check signed types */ | 
					
						
							|  |  |  |     if (bit32) { | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |         le_copy(buf, sizeof(i32), &i32, sizeof(i32)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         sz = sizeof(i32) < width ? sizeof(i32) : width; | 
					
						
							|  |  |  |         if (!TEST_mem_eq(buf, sz, cmp, sz)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(i64), &i64, sizeof(i64)); | 
					
						
							| 
									
										
										
										
											2020-12-11 08:23:19 +08:00
										 |  |  |     sz = sizeof(i64) < width ? sizeof(i64) : width; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (!TEST_mem_eq(buf, sz, cmp, sz)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (sizet && !signd) { | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |         le_copy(buf, sizeof(s), &s, sizeof(s)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         sz = sizeof(s) < width ? sizeof(s) : width; | 
					
						
							|  |  |  |         if (!TEST_mem_eq(buf, sz, cmp, sz)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check a widening write if possible */ | 
					
						
							|  |  |  |     if (sizeof(size_t) > width) { | 
					
						
							|  |  |  |         if (signd) { | 
					
						
							|  |  |  |             if (!TEST_true(OSSL_PARAM_set_int32(param, 12345)) | 
					
						
							|  |  |  |                 || !TEST_true(OSSL_PARAM_get_int64(param, &i64)) | 
					
						
							| 
									
										
										
										
											2019-03-16 17:43:48 +08:00
										 |  |  |                 || !TEST_size_t_eq((size_t)i64, 12345)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |                 return 0; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             if (!TEST_true(OSSL_PARAM_set_uint32(param, 12345)) | 
					
						
							|  |  |  |                 || !TEST_true(OSSL_PARAM_get_uint64(param, (uint64_t *)&i64)) | 
					
						
							| 
									
										
										
										
											2019-03-16 17:43:48 +08:00
										 |  |  |                 || !TEST_size_t_eq((size_t)i64, 12345)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |                 return 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-04-21 08:49:19 +08:00
										 |  |  |         if (!TEST_true(OSSL_PARAM_modified(param))) | 
					
						
							|  |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * The test cases for each of the bastic integral types are similar. | 
					
						
							|  |  |  |  * For each type, a param of that type is set and an attempt to read it | 
					
						
							|  |  |  |  * get is made.  Finally, the above function is called to verify that | 
					
						
							|  |  |  |  * the params can be read as other types. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * All the real work is done via byte buffers which are converted to machine | 
					
						
							|  |  |  |  * byte order and to little endian for comparisons.  Narrower values are best | 
					
						
							|  |  |  |  * compared using little endian because their values and positions don't | 
					
						
							|  |  |  |  * change. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_param_int(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int in, out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(int)]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len >= sizeof(int) ? | 
					
						
							|  |  |  |                        sizeof(int) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_int("a", NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_int(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_int(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(int)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_param_long(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     long int in, out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(long int)]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len >= sizeof(long int) | 
					
						
							|  |  |  |                        ? sizeof(long int) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_long("a", NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_long(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_long(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(long int)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_param_uint(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned int in, out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(unsigned int)]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len >= sizeof(unsigned int) ? sizeof(unsigned int) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_uint("a", NULL); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_uint(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_uint(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(unsigned int)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_param_ulong(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned long int in, out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(unsigned long int)]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len >= sizeof(unsigned long int) | 
					
						
							|  |  |  |                        ? sizeof(unsigned long int) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_ulong("a", NULL); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_ulong(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_ulong(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(unsigned long int)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_param_int32(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int32_t in, out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(int32_t)]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len >= sizeof(int32_t) | 
					
						
							|  |  |  |                        ? sizeof(int32_t) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_int32("a", NULL); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_int32(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_int32(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(int32_t)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_param_uint32(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t in, out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(uint32_t)]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len >= sizeof(uint32_t) | 
					
						
							|  |  |  |                        ? sizeof(uint32_t) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_uint32("a", NULL); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_uint32(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_uint32(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(uint32_t)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_param_int64(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int64_t in, out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(int64_t)]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len >= sizeof(int64_t) | 
					
						
							|  |  |  |                        ? sizeof(int64_t) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_int64("a", NULL); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_int64(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_int64(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(int64_t)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_param_uint64(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t in, out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(uint64_t)]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len >= sizeof(uint64_t) | 
					
						
							|  |  |  |                        ? sizeof(uint64_t) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_uint64("a", NULL); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_uint64(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_uint64(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(uint64_t)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_param_size_t(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t in, out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(size_t)]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len >= sizeof(size_t) | 
					
						
							|  |  |  |                        ? sizeof(size_t) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_size_t("a", NULL); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_size_t(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_size_t(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(size_t)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  | static int test_param_time_t(int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     time_t in, out; | 
					
						
							| 
									
										
										
										
											2021-03-17 11:23:38 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], cmp[sizeof(time_t)]; | 
					
						
							|  |  |  |     const size_t len = raw_values[n].len >= sizeof(time_t) | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  |                        ? sizeof(time_t) : raw_values[n].len; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_time_t("a", NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memset(buf, 0, sizeof(buf)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(buf, sizeof(in), raw_values[n].value, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  |     memcpy(&in, buf, sizeof(in)); | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_time_t(¶m, in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(out), &out, sizeof(out)); | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     in = 0; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_time_t(¶m, &in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     le_copy(cmp, sizeof(in), &in, sizeof(in)); | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  |     if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     param.data = &out; | 
					
						
							|  |  |  |     return test_param_type_extra(¶m, raw_values[n].value, sizeof(size_t)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | static int test_param_bignum(int n) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], bnbuf[MAX_LEN]; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     const size_t len = raw_values[n].len; | 
					
						
							|  |  |  |     BIGNUM *b = NULL, *c = NULL; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_DEFN("bn", OSSL_PARAM_UNSIGNED_INTEGER, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                        NULL, 0); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     param.data = bnbuf; | 
					
						
							| 
									
										
										
										
											2022-01-28 17:53:43 +08:00
										 |  |  |     param.data_size = sizeof(bnbuf); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     if (!TEST_ptr(b = BN_lebin2bn(raw_values[n].value, (int)len, NULL))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-28 17:53:43 +08:00
										 |  |  |     if (!TEST_true(OSSL_PARAM_set_BN(¶m, b))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     le_copy(buf, len, bnbuf, sizeof(bnbuf)); | 
					
						
							|  |  |  |     if (!TEST_mem_eq(raw_values[n].value, len, buf, len)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     param.data_size = param.return_size; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (!TEST_true(OSSL_PARAM_get_BN(¶m, &c)) | 
					
						
							|  |  |  |         || !TEST_BN_eq(b, c)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     BN_free(b); | 
					
						
							|  |  |  |     BN_free(c); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  | static int test_param_signed_bignum(int n) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-01-28 17:53:43 +08:00
										 |  |  |     unsigned char buf[MAX_LEN], bnbuf[MAX_LEN]; | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     const size_t len = raw_values[n].len; | 
					
						
							|  |  |  |     BIGNUM *b = NULL, *c = NULL; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_DEFN("bn", OSSL_PARAM_INTEGER, NULL, 0); | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     param.data = bnbuf; | 
					
						
							|  |  |  |     param.data_size = sizeof(bnbuf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(b = BN_signed_lebin2bn(raw_values[n].value, (int)len, NULL))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* raw_values are little endian */ | 
					
						
							|  |  |  |     if (!TEST_false(!!(raw_values[n].value[len - 1] & 0x80) ^ BN_is_negative(b))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_set_BN(¶m, b))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2022-01-28 17:53:43 +08:00
										 |  |  |     le_copy(buf, len, bnbuf, sizeof(bnbuf)); | 
					
						
							|  |  |  |     if (!TEST_mem_eq(raw_values[n].value, len, buf, len)) | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     param.data_size = param.return_size; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_BN(¶m, &c)) | 
					
						
							|  |  |  |         || !TEST_BN_eq(b, c)) { | 
					
						
							|  |  |  |         BN_print_fp(stderr, c); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     BN_free(b); | 
					
						
							|  |  |  |     BN_free(c); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | static int test_param_real(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     double p; | 
					
						
							|  |  |  |     OSSL_PARAM param = OSSL_PARAM_double("r", NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     param.data = &p; | 
					
						
							|  |  |  |     return TEST_true(OSSL_PARAM_set_double(¶m, 3.14159)) | 
					
						
							|  |  |  |            && TEST_double_eq(p, 3.14159); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  | static int test_param_construct(int tstid) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     static const char *int_names[] = { | 
					
						
							|  |  |  |         "int", "long", "int32", "int64" | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     static const char *uint_names[] = { | 
					
						
							|  |  |  |         "uint", "ulong", "uint32", "uint64", "size_t" | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     static const unsigned char bn_val[16] = { | 
					
						
							|  |  |  |         0xac, 0x75, 0x22, 0x7d, 0x81, 0x06, 0x7a, 0x23, | 
					
						
							|  |  |  |         0xa6, 0xed, 0x87, 0xc7, 0xab, 0xf4, 0x73, 0x22 | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     OSSL_PARAM *p = NULL, *p1 = NULL; | 
					
						
							|  |  |  |     static const OSSL_PARAM params_empty[] = { | 
					
						
							|  |  |  |         OSSL_PARAM_END | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     OSSL_PARAM params[20]; | 
					
						
							|  |  |  |     char buf[100], buf2[100], *bufp, *bufp2; | 
					
						
							|  |  |  |     unsigned char ubuf[100]; | 
					
						
							| 
									
										
										
										
											2019-03-17 17:58:24 +08:00
										 |  |  |     void *vp, *vpn = NULL, *vp2; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     OSSL_PARAM *cp; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     int i, n = 0, ret = 0; | 
					
						
							|  |  |  |     unsigned int u; | 
					
						
							|  |  |  |     long int l; | 
					
						
							|  |  |  |     unsigned long int ul; | 
					
						
							|  |  |  |     int32_t i32; | 
					
						
							|  |  |  |     uint32_t u32; | 
					
						
							|  |  |  |     int64_t i64; | 
					
						
							|  |  |  |     uint64_t u64; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     size_t j, k, s; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     double d, d2; | 
					
						
							|  |  |  |     BIGNUM *bn = NULL, *bn2 = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     params[n++] = OSSL_PARAM_construct_int("int", &i); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_uint("uint", &u); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_long("long", &l); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_ulong("ulong", &ul); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_int32("int32", &i32); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_int64("int64", &i64); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_uint32("uint32", &u32); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_uint64("uint64", &u64); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_size_t("size_t", &s); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_double("double", &d); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_BN("bignum", ubuf, sizeof(ubuf)); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_utf8_string("utf8str", buf, sizeof(buf)); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_octet_string("octstr", buf, sizeof(buf)); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_utf8_ptr("utf8ptr", &bufp, 0); | 
					
						
							|  |  |  |     params[n++] = OSSL_PARAM_construct_octet_ptr("octptr", &vp, 0); | 
					
						
							| 
									
										
										
										
											2019-04-09 15:49:58 +08:00
										 |  |  |     params[n] = OSSL_PARAM_construct_end(); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-26 15:16:18 +08:00
										 |  |  |     switch (tstid) { | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     case 0: | 
					
						
							|  |  |  |         p = params; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							|  |  |  |         p = OSSL_PARAM_merge(params, params_empty); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 2: | 
					
						
							|  |  |  |         p = OSSL_PARAM_dup(params); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         p1 = OSSL_PARAM_dup(params); | 
					
						
							|  |  |  |         p = OSSL_PARAM_merge(p1, params_empty); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     /* Search failure */ | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     if (!TEST_ptr_null(OSSL_PARAM_locate(p, "fnord"))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* All signed integral types */ | 
					
						
							|  |  |  |     for (j = 0; j < OSSL_NELEM(int_names); j++) { | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |         if (!TEST_ptr(cp = OSSL_PARAM_locate(p, int_names[j])) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |             || !TEST_true(OSSL_PARAM_set_int32(cp, (int32_t)(3 + j))) | 
					
						
							|  |  |  |             || !TEST_true(OSSL_PARAM_get_int64(cp, &i64)) | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |             || !TEST_size_t_eq(cp->data_size, cp->return_size) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |             || !TEST_size_t_eq((size_t)i64, 3 + j)) { | 
					
						
							|  |  |  |             TEST_note("iteration %zu var %s", j + 1, int_names[j]); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* All unsigned integral types */ | 
					
						
							|  |  |  |     for (j = 0; j < OSSL_NELEM(uint_names); j++) { | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |         if (!TEST_ptr(cp = OSSL_PARAM_locate(p, uint_names[j])) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |             || !TEST_true(OSSL_PARAM_set_uint32(cp, (uint32_t)(3 + j))) | 
					
						
							|  |  |  |             || !TEST_true(OSSL_PARAM_get_uint64(cp, &u64)) | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |             || !TEST_size_t_eq(cp->data_size, cp->return_size) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |             || !TEST_size_t_eq((size_t)u64, 3 + j)) { | 
					
						
							|  |  |  |             TEST_note("iteration %zu var %s", j + 1, uint_names[j]); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* Real */ | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "double")) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_true(OSSL_PARAM_set_double(cp, 3.14)) | 
					
						
							|  |  |  |         || !TEST_true(OSSL_PARAM_get_double(cp, &d2)) | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         || !TEST_size_t_eq(cp->return_size, sizeof(double)) | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |         || !TEST_double_eq(d2, 3.14) | 
					
						
							|  |  |  |         || (tstid <= 1 && !TEST_double_eq(d, d2))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     /* UTF8 string */ | 
					
						
							|  |  |  |     bufp = NULL; | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "utf8str")) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_true(OSSL_PARAM_set_utf8_string(cp, "abcdef")) | 
					
						
							| 
									
										
										
											
												OSSL_PARAM: Correct the assumptions on the UTF8 string length
When the string "ABCDEFGH" is passed, what's considered its data, this?
    { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H' }
or this?
    { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', '\0' }
If it's passed as a pass phrase, should the terminating NUL byte be
considered part of the pass phrase, or not?
Our treatment of OSSL_PARAMs with the data type OSSL_PARAM_UTF8_STRING
set the length of the string to include the terminating NUL byte,
which is quite confusing.  What should the recipient of such a string
believe?
Instead of perpetuating this confusion, we change the assumption to
set the OSSL_PARAM to the length of the string, not including the
terminating NUL byte, thereby giving it the same value as a strlen()
call would give.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14168)
											
										 
											2021-02-13 03:30:40 +08:00
										 |  |  |         || !TEST_size_t_eq(cp->return_size, sizeof("abcdef") - 1) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_true(OSSL_PARAM_get_utf8_string(cp, &bufp, 0)) | 
					
						
							| 
									
										
										
										
											2021-03-18 08:26:22 +08:00
										 |  |  |         || !TEST_str_eq(bufp, "abcdef")) { | 
					
						
							|  |  |  |         OPENSSL_free(bufp); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2021-03-18 08:26:22 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     OPENSSL_free(bufp); | 
					
						
							|  |  |  |     bufp = buf2; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_utf8_string(cp, &bufp, sizeof(buf2))) | 
					
						
							|  |  |  |         || !TEST_str_eq(buf2, "abcdef")) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     /* UTF8 pointer */ | 
					
						
							| 
									
										
										
											
												OSSL_PARAM: Correct the assumptions on the UTF8 string length
When the string "ABCDEFGH" is passed, what's considered its data, this?
    { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H' }
or this?
    { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', '\0' }
If it's passed as a pass phrase, should the terminating NUL byte be
considered part of the pass phrase, or not?
Our treatment of OSSL_PARAMs with the data type OSSL_PARAM_UTF8_STRING
set the length of the string to include the terminating NUL byte,
which is quite confusing.  What should the recipient of such a string
believe?
Instead of perpetuating this confusion, we change the assumption to
set the OSSL_PARAM to the length of the string, not including the
terminating NUL byte, thereby giving it the same value as a strlen()
call would give.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14168)
											
										 
											2021-02-13 03:30:40 +08:00
										 |  |  |     /* Note that the size of a UTF8 string does *NOT* include the NUL byte */ | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     bufp = buf; | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "utf8ptr")) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_true(OSSL_PARAM_set_utf8_ptr(cp, "tuvwxyz")) | 
					
						
							| 
									
										
										
											
												OSSL_PARAM: Correct the assumptions on the UTF8 string length
When the string "ABCDEFGH" is passed, what's considered its data, this?
    { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H' }
or this?
    { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', '\0' }
If it's passed as a pass phrase, should the terminating NUL byte be
considered part of the pass phrase, or not?
Our treatment of OSSL_PARAMs with the data type OSSL_PARAM_UTF8_STRING
set the length of the string to include the terminating NUL byte,
which is quite confusing.  What should the recipient of such a string
believe?
Instead of perpetuating this confusion, we change the assumption to
set the OSSL_PARAM to the length of the string, not including the
terminating NUL byte, thereby giving it the same value as a strlen()
call would give.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14168)
											
										 
											2021-02-13 03:30:40 +08:00
										 |  |  |         || !TEST_size_t_eq(cp->return_size, sizeof("tuvwxyz") - 1) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_true(OSSL_PARAM_get_utf8_ptr(cp, (const char **)&bufp2)) | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |         || !TEST_str_eq(bufp2, "tuvwxyz") | 
					
						
							|  |  |  |         || (tstid <= 1 && !TEST_ptr_eq(bufp2, bufp))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     /* OCTET string */ | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "octstr")) | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         || !TEST_true(OSSL_PARAM_set_octet_string(cp, "abcdefghi", | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |                                                   sizeof("abcdefghi"))) | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         || !TEST_size_t_eq(cp->return_size, sizeof("abcdefghi"))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     /* Match the return size to avoid trailing garbage bytes */ | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     cp->data_size = cp->return_size; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_octet_string(cp, &vpn, 0, &s)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_size_t_eq(s, sizeof("abcdefghi")) | 
					
						
							| 
									
										
										
										
											2019-03-17 17:58:24 +08:00
										 |  |  |         || !TEST_mem_eq(vpn, sizeof("abcdefghi"), | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |                         "abcdefghi", sizeof("abcdefghi"))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     vp = buf2; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     if (!TEST_true(OSSL_PARAM_get_octet_string(cp, &vp, sizeof(buf2), &s)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_size_t_eq(s, sizeof("abcdefghi")) | 
					
						
							|  |  |  |         || !TEST_mem_eq(vp, sizeof("abcdefghi"), | 
					
						
							|  |  |  |                         "abcdefghi", sizeof("abcdefghi"))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     /* OCTET pointer */ | 
					
						
							|  |  |  |     vp = &l; | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "octptr")) | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         || !TEST_true(OSSL_PARAM_set_octet_ptr(cp, &ul, sizeof(ul))) | 
					
						
							|  |  |  |         || !TEST_size_t_eq(cp->return_size, sizeof(ul)) | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |         || (tstid <= 1 && !TEST_ptr_eq(vp, &ul))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     /* Match the return size to avoid trailing garbage bytes */ | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     cp->data_size = cp->return_size; | 
					
						
							|  |  |  |     if (!TEST_true(OSSL_PARAM_get_octet_ptr(cp, (const void **)&vp2, &k)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_size_t_eq(k, sizeof(ul)) | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |         || (tstid <= 1 && !TEST_ptr_eq(vp2, vp))) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     /* BIGNUM */ | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     if (!TEST_ptr(cp = OSSL_PARAM_locate(p, "bignum")) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_ptr(bn = BN_lebin2bn(bn_val, (int)sizeof(bn_val), NULL)) | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         || !TEST_true(OSSL_PARAM_set_BN(cp, bn)) | 
					
						
							| 
									
										
										
										
											2019-11-02 05:18:38 +08:00
										 |  |  |         || !TEST_size_t_eq(cp->data_size, cp->return_size)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     /* Match the return size to avoid trailing garbage bytes */ | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     cp->data_size = cp->return_size; | 
					
						
							| 
									
										
										
										
											2021-10-26 15:16:18 +08:00
										 |  |  |     if (!TEST_true(OSSL_PARAM_get_BN(cp, &bn2)) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         || !TEST_BN_eq(bn, bn2)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | err: | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     if (p != params) | 
					
						
							|  |  |  |         OPENSSL_free(p); | 
					
						
							|  |  |  |     OPENSSL_free(p1); | 
					
						
							| 
									
										
										
										
											2019-03-17 17:58:24 +08:00
										 |  |  |     OPENSSL_free(vpn); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     BN_free(bn); | 
					
						
							|  |  |  |     BN_free(bn2); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-23 18:23:48 +08:00
										 |  |  | static int test_param_modified(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_PARAM param[3] = { OSSL_PARAM_int("a", NULL), | 
					
						
							|  |  |  |                             OSSL_PARAM_int("b", NULL), | 
					
						
							|  |  |  |                             OSSL_PARAM_END }; | 
					
						
							|  |  |  |     int a, b; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     param->data = &a; | 
					
						
							|  |  |  |     param[1].data = &b; | 
					
						
							|  |  |  |     if (!TEST_false(OSSL_PARAM_modified(param)) | 
					
						
							|  |  |  |             && !TEST_true(OSSL_PARAM_set_int32(param, 1234)) | 
					
						
							|  |  |  |             && !TEST_true(OSSL_PARAM_modified(param)) | 
					
						
							|  |  |  |             && !TEST_false(OSSL_PARAM_modified(param + 1)) | 
					
						
							|  |  |  |             && !TEST_true(OSSL_PARAM_set_int32(param + 1, 1)) | 
					
						
							|  |  |  |             && !TEST_true(OSSL_PARAM_modified(param + 1))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     OSSL_PARAM_set_all_unmodified(param); | 
					
						
							|  |  |  |     if (!TEST_false(OSSL_PARAM_modified(param)) | 
					
						
							|  |  |  |             && !TEST_true(OSSL_PARAM_set_int32(param, 4321)) | 
					
						
							|  |  |  |             && !TEST_true(OSSL_PARAM_modified(param)) | 
					
						
							|  |  |  |             && !TEST_false(OSSL_PARAM_modified(param + 1)) | 
					
						
							|  |  |  |             && !TEST_true(OSSL_PARAM_set_int32(param + 1, 2)) | 
					
						
							|  |  |  |             && !TEST_true(OSSL_PARAM_modified(param + 1))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  | static int test_param_copy_null(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret, val; | 
					
						
							|  |  |  |     int a = 1, b = 2, i = 0; | 
					
						
							|  |  |  |     OSSL_PARAM *cp1 = NULL, *cp2 = NULL, *p; | 
					
						
							|  |  |  |     OSSL_PARAM param[3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     param[i++] = OSSL_PARAM_construct_int("a", &a); | 
					
						
							|  |  |  |     param[i++] = OSSL_PARAM_construct_int("b", &b); | 
					
						
							|  |  |  |     param[i] = OSSL_PARAM_construct_end(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = TEST_ptr_null(OSSL_PARAM_dup(NULL)) | 
					
						
							|  |  |  |           && TEST_ptr(cp1 = OSSL_PARAM_merge(NULL, param)) | 
					
						
							|  |  |  |           && TEST_ptr(p = OSSL_PARAM_locate(cp1, "a")) | 
					
						
							|  |  |  |           && TEST_true(OSSL_PARAM_get_int(p, &val)) | 
					
						
							|  |  |  |           && TEST_int_eq(val, 1) | 
					
						
							|  |  |  |           && TEST_ptr(p = OSSL_PARAM_locate(cp1, "b")) | 
					
						
							|  |  |  |           && TEST_true(OSSL_PARAM_get_int(p, &val)) | 
					
						
							|  |  |  |           && TEST_int_eq(val, 2) | 
					
						
							|  |  |  |           && TEST_ptr(cp2 = OSSL_PARAM_merge(param, NULL)) | 
					
						
							|  |  |  |           && TEST_ptr(p = OSSL_PARAM_locate(cp2, "a")) | 
					
						
							|  |  |  |           && TEST_true(OSSL_PARAM_get_int(p, &val)) | 
					
						
							|  |  |  |           && TEST_int_eq(val, 1) | 
					
						
							|  |  |  |           && TEST_ptr(p = OSSL_PARAM_locate(cp2, "b")) | 
					
						
							|  |  |  |           && TEST_true(OSSL_PARAM_get_int(p, &val)) | 
					
						
							|  |  |  |           && TEST_int_eq(val, 2) | 
					
						
							|  |  |  |           && TEST_ptr_null(OSSL_PARAM_merge(NULL, NULL)); | 
					
						
							|  |  |  |     OSSL_PARAM_free(cp2); | 
					
						
							|  |  |  |     OSSL_PARAM_free(cp1); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | int setup_tests(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_param_int, OSSL_NELEM(raw_values)); | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_param_long, OSSL_NELEM(raw_values)); | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_param_uint, OSSL_NELEM(raw_values)); | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_param_ulong, OSSL_NELEM(raw_values)); | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_param_int32, OSSL_NELEM(raw_values)); | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_param_uint32, OSSL_NELEM(raw_values)); | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_param_size_t, OSSL_NELEM(raw_values)); | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  |     ADD_ALL_TESTS(test_param_time_t, OSSL_NELEM(raw_values)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     ADD_ALL_TESTS(test_param_int64, OSSL_NELEM(raw_values)); | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_param_uint64, OSSL_NELEM(raw_values)); | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_param_bignum, OSSL_NELEM(raw_values)); | 
					
						
							| 
									
										
										
										
											2021-11-29 01:03:40 +08:00
										 |  |  |     ADD_ALL_TESTS(test_param_signed_bignum, OSSL_NELEM(raw_values)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     ADD_TEST(test_param_real); | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     ADD_ALL_TESTS(test_param_construct, 4); | 
					
						
							| 
									
										
										
										
											2020-04-23 18:23:48 +08:00
										 |  |  |     ADD_TEST(test_param_modified); | 
					
						
							| 
									
										
										
										
											2021-04-07 09:27:18 +08:00
										 |  |  |     ADD_TEST(test_param_copy_null); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } |