| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-03-11 21:27:36 +08:00
										 |  |  |  * Copyright 2019-2021 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 <openssl/params.h>
 | 
					
						
							|  |  |  | #include "internal/thread_once.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 09:37:53 +08:00
										 |  |  | #include "internal/numbers.h"
 | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #include "internal/endian.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-11 19:52:32 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Return the number of bits in the mantissa of a double.  This is used to | 
					
						
							|  |  |  |  * shift a larger integral value to determine if it will exactly fit into a | 
					
						
							|  |  |  |  * double. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static unsigned int real_shift(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return sizeof(double) == 4 ? 24 : 53; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM *OSSL_PARAM_locate(OSSL_PARAM *p, const char *key) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (p != NULL && key != NULL) | 
					
						
							|  |  |  |         for (; p->key != NULL; p++) | 
					
						
							|  |  |  |             if (strcmp(key, p->key) == 0) | 
					
						
							|  |  |  |                 return p; | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | const OSSL_PARAM *OSSL_PARAM_locate_const(const OSSL_PARAM *p, const char *key) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return OSSL_PARAM_locate((OSSL_PARAM *)p, key); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | static OSSL_PARAM ossl_param_construct(const char *key, unsigned int data_type, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                        void *data, size_t data_size) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     OSSL_PARAM res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     res.key = key; | 
					
						
							|  |  |  |     res.data_type = data_type; | 
					
						
							|  |  |  |     res.data = data; | 
					
						
							|  |  |  |     res.data_size = data_size; | 
					
						
							| 
									
										
										
										
											2020-04-21 08:49:19 +08:00
										 |  |  |     res.return_size = OSSL_PARAM_UNMODIFIED; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-21 08:49:19 +08:00
										 |  |  | int OSSL_PARAM_modified(const OSSL_PARAM *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return p != NULL && p->return_size != OSSL_PARAM_UNMODIFIED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-23 18:23:48 +08:00
										 |  |  | void OSSL_PARAM_set_all_unmodified(OSSL_PARAM *p) | 
					
						
							| 
									
										
										
										
											2020-04-21 08:49:19 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (p != NULL) | 
					
						
							| 
									
										
										
										
											2020-04-23 18:23:48 +08:00
										 |  |  |         while (p->key != NULL) | 
					
						
							|  |  |  |             p++->return_size = OSSL_PARAM_UNMODIFIED; | 
					
						
							| 
									
										
										
										
											2020-04-21 08:49:19 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | /* Return non-zero if the signed number is negative */ | 
					
						
							|  |  |  | static int is_negative(const void *number, size_t s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const unsigned char *n = number; | 
					
						
							|  |  |  |     DECLARE_IS_ENDIAN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0x80 & (IS_BIG_ENDIAN ? n[0] : n[s - 1]); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Check that all the bytes specified match the expected sign byte */ | 
					
						
							|  |  |  | static int check_sign_bytes(const unsigned char *p, size_t n, unsigned char s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < n; i++) | 
					
						
							|  |  |  |         if (p[i] != s) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Copy an integer to another integer. | 
					
						
							|  |  |  |  * Handle different length integers and signed and unsigned integers. | 
					
						
							|  |  |  |  * Both integers are in native byte ordering. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int copy_integer(unsigned char *dest, size_t dest_len, | 
					
						
							|  |  |  |                         const unsigned char *src, size_t src_len, | 
					
						
							|  |  |  |                         unsigned char pad, int signed_int) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t n; | 
					
						
							|  |  |  |     DECLARE_IS_ENDIAN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (IS_BIG_ENDIAN) { | 
					
						
							|  |  |  |         if (src_len < dest_len) { | 
					
						
							|  |  |  |             n = dest_len - src_len; | 
					
						
							|  |  |  |             memset(dest, pad, n); | 
					
						
							|  |  |  |             memcpy(dest + n, src, src_len); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             n = src_len - dest_len; | 
					
						
							|  |  |  |             if (!check_sign_bytes(src, n, pad) | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * Shortening a signed value must retain the correct sign. | 
					
						
							|  |  |  |                      * Avoiding this kind of thing: -253 = 0xff03 -> 0x03 = 3 | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                     || (signed_int && ((pad ^ src[n]) & 0x80) != 0)) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             memcpy(dest, src + n, dest_len); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else /* IS_LITTLE_ENDIAN */ { | 
					
						
							|  |  |  |         if (src_len < dest_len) { | 
					
						
							|  |  |  |             n = dest_len - src_len; | 
					
						
							|  |  |  |             memset(dest + src_len, pad, n); | 
					
						
							|  |  |  |             memcpy(dest, src, src_len); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             n = src_len - dest_len; | 
					
						
							|  |  |  |             if (!check_sign_bytes(src + dest_len, n, pad) | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * Shortening a signed value must retain the correct sign. | 
					
						
							|  |  |  |                      * Avoiding this kind of thing: 130 = 0x0082 -> 0x82 = -126 | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                     || (signed_int && ((pad ^ src[dest_len - 1]) & 0x80) != 0)) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             memcpy(dest, src, dest_len); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Copy a signed number to a signed number of possibly different length */ | 
					
						
							|  |  |  | static int signed_from_signed(void *dest, size_t dest_len, | 
					
						
							|  |  |  |                               const void *src, size_t src_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return copy_integer(dest, dest_len, src, src_len, | 
					
						
							|  |  |  |                         is_negative(src, src_len) ? 0xff : 0, 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Copy an unsigned number to a signed number of possibly different length */ | 
					
						
							|  |  |  | static int signed_from_unsigned(void *dest, size_t dest_len, | 
					
						
							|  |  |  |                                 const void *src, size_t src_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return copy_integer(dest, dest_len, src, src_len, 0, 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Copy a signed number to an unsigned number of possibly different length */ | 
					
						
							|  |  |  | static int unsigned_from_signed(void *dest, size_t dest_len, | 
					
						
							|  |  |  |                                 const void *src, size_t src_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (is_negative(src, src_len)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return copy_integer(dest, dest_len, src, src_len, 0, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Copy an unsigned number to an unsigned number of possibly different length */ | 
					
						
							|  |  |  | static int unsigned_from_unsigned(void *dest, size_t dest_len, | 
					
						
							|  |  |  |                                   const void *src, size_t src_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return copy_integer(dest, dest_len, src, src_len, 0, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* General purpose get integer parameter call that handles odd sizes */ | 
					
						
							|  |  |  | static int general_get_int(const OSSL_PARAM *p, void *val, size_t val_size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (p->data_type == OSSL_PARAM_INTEGER) | 
					
						
							|  |  |  |         return signed_from_signed(val, val_size, p->data, p->data_size); | 
					
						
							|  |  |  |     if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) | 
					
						
							|  |  |  |         return signed_from_unsigned(val, val_size, p->data, p->data_size); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* General purpose set integer parameter call that handles odd sizes */ | 
					
						
							|  |  |  | static int general_set_int(OSSL_PARAM *p, void *val, size_t val_size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int r = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p->return_size = val_size; /* Expected size */ | 
					
						
							|  |  |  |     if (p->data == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     if (p->data_type == OSSL_PARAM_INTEGER) | 
					
						
							|  |  |  |         r = signed_from_signed(p->data, p->data_size, val, val_size); | 
					
						
							|  |  |  |     else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) | 
					
						
							|  |  |  |         r = unsigned_from_signed(p->data, p->data_size, val, val_size); | 
					
						
							|  |  |  |     p->return_size = r ? p->data_size : val_size; | 
					
						
							|  |  |  |     return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* General purpose get unsigned integer parameter call that handles odd sizes */ | 
					
						
							|  |  |  | static int general_get_uint(const OSSL_PARAM *p, void *val, size_t val_size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (p->data_type == OSSL_PARAM_INTEGER) | 
					
						
							|  |  |  |         return unsigned_from_signed(val, val_size, p->data, p->data_size); | 
					
						
							|  |  |  |     if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) | 
					
						
							|  |  |  |         return unsigned_from_unsigned(val, val_size, p->data, p->data_size); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* General purpose set unsigned integer parameter call that handles odd sizes */ | 
					
						
							|  |  |  | static int general_set_uint(OSSL_PARAM *p, void *val, size_t val_size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int r = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p->return_size = val_size; /* Expected size */ | 
					
						
							|  |  |  |     if (p->data == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     if (p->data_type == OSSL_PARAM_INTEGER) | 
					
						
							|  |  |  |         r = signed_from_unsigned(p->data, p->data_size, val, val_size); | 
					
						
							|  |  |  |     else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) | 
					
						
							|  |  |  |         r = unsigned_from_unsigned(p->data, p->data_size, val, val_size); | 
					
						
							|  |  |  |     p->return_size = r ? p->data_size : val_size; | 
					
						
							|  |  |  |     return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | int OSSL_PARAM_get_int(const OSSL_PARAM *p, int *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(int)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(int32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_int32(p, (int32_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(int64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_int64(p, (int64_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_get_int(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_int(OSSL_PARAM *p, int val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(int)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(int32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_int32(p, (int32_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(int64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_int64(p, (int64_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_set_int(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_int(const char *key, int *buf) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     return ossl_param_construct(key, OSSL_PARAM_INTEGER, buf, sizeof(int)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_uint(const OSSL_PARAM *p, unsigned int *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(unsigned int)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_uint32(p, (uint32_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_uint64(p, (uint64_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_get_uint(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_uint(OSSL_PARAM *p, unsigned int val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(unsigned int)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_uint32(p, (uint32_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_uint64(p, (uint64_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_set_uint(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_uint(const char *key, unsigned int *buf) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return ossl_param_construct(key, OSSL_PARAM_UNSIGNED_INTEGER, buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                 sizeof(unsigned int)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_long(const OSSL_PARAM *p, long int *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(long int)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(int32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_int32(p, (int32_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(int64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_int64(p, (int64_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_get_int(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_long(OSSL_PARAM *p, long int val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(long int)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(int32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_int32(p, (int32_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(int64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_int64(p, (int64_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_set_int(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_long(const char *key, long int *buf) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     return ossl_param_construct(key, OSSL_PARAM_INTEGER, buf, sizeof(long int)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_ulong(const OSSL_PARAM *p, unsigned long int *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(unsigned long int)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_uint32(p, (uint32_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_uint64(p, (uint64_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_get_uint(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_ulong(OSSL_PARAM *p, unsigned long int val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(unsigned long int)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_uint32(p, (uint32_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_uint64(p, (uint64_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_set_uint(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_ulong(const char *key, unsigned long int *buf) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return ossl_param_construct(key, OSSL_PARAM_UNSIGNED_INTEGER, buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                 sizeof(unsigned long int)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_int32(const OSSL_PARAM *p, int32_t *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     double d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (val == NULL || p == NULL ) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							|  |  |  |         int64_t i64; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             *val = *(const int32_t *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(int64_t): | 
					
						
							|  |  |  |             i64 = *(const int64_t *)p->data; | 
					
						
							|  |  |  |             if (i64 >= INT32_MIN && i64 <= INT32_MAX) { | 
					
						
							|  |  |  |                 *val = (int32_t)i64; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_get_int(p, val, sizeof(*val)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							|  |  |  |         uint32_t u32; | 
					
						
							|  |  |  |         uint64_t u64; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             u32 = *(const uint32_t *)p->data; | 
					
						
							|  |  |  |             if (u32 <= INT32_MAX) { | 
					
						
							|  |  |  |                 *val = (int32_t)u32; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         case sizeof(uint64_t): | 
					
						
							|  |  |  |             u64 = *(const uint64_t *)p->data; | 
					
						
							|  |  |  |             if (u64 <= INT32_MAX) { | 
					
						
							|  |  |  |                 *val = (int32_t)u64; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_get_int(p, val, sizeof(*val)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							|  |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							|  |  |  |             d = *(const double *)p->data; | 
					
						
							|  |  |  |             if (d >= INT32_MIN && d <= INT32_MAX && d == (int32_t)d) { | 
					
						
							|  |  |  |                 *val = (int32_t)d; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_int32(OSSL_PARAM *p, int32_t val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (p == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(int32_t); /* Minimum expected size */ | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             *(int32_t *)p->data = val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(int64_t): | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |             p->return_size = sizeof(int64_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |             *(int64_t *)p->data = (int64_t)val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_set_int(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER && val >= 0) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(uint32_t); /* Minimum expected size */ | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             *(uint32_t *)p->data = (uint32_t)val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(uint64_t): | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |             p->return_size = sizeof(uint64_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |             *(uint64_t *)p->data = (uint64_t)val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_set_int(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(double); | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							|  |  |  |             *(double *)p->data = (double)val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_int32(const char *key, int32_t *buf) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return ossl_param_construct(key, OSSL_PARAM_INTEGER, buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                 sizeof(int32_t)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_uint32(const OSSL_PARAM *p, uint32_t *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     double d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (val == NULL || p == NULL) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							|  |  |  |         uint64_t u64; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             *val = *(const uint32_t *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(uint64_t): | 
					
						
							|  |  |  |             u64 = *(const uint64_t *)p->data; | 
					
						
							|  |  |  |             if (u64 <= UINT32_MAX) { | 
					
						
							|  |  |  |                 *val = (uint32_t)u64; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_get_uint(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							|  |  |  |         int32_t i32; | 
					
						
							|  |  |  |         int64_t i64; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             i32 = *(const int32_t *)p->data; | 
					
						
							|  |  |  |             if (i32 >= 0) { | 
					
						
							|  |  |  |                 *val = i32; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         case sizeof(int64_t): | 
					
						
							|  |  |  |             i64 = *(const int64_t *)p->data; | 
					
						
							|  |  |  |             if (i64 >= 0 && i64 <= UINT32_MAX) { | 
					
						
							|  |  |  |                 *val = (uint32_t)i64; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_get_uint(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							|  |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							|  |  |  |             d = *(const double *)p->data; | 
					
						
							|  |  |  |             if (d >= 0 && d <= UINT32_MAX && d == (uint32_t)d) { | 
					
						
							|  |  |  |                 *val = (uint32_t)d; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_uint32(OSSL_PARAM *p, uint32_t val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p == NULL) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(uint32_t); /* Minimum expected size */ | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             *(uint32_t *)p->data = val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(uint64_t): | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |             p->return_size = sizeof(uint64_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |             *(uint64_t *)p->data = val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_set_uint(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(int32_t); /* Minimum expected size */ | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             if (val <= INT32_MAX) { | 
					
						
							|  |  |  |                 *(int32_t *)p->data = (int32_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         case sizeof(int64_t): | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |             p->return_size = sizeof(int64_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |             *(int64_t *)p->data = (int64_t)val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_set_uint(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(double); | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							|  |  |  |             *(double *)p->data = (double)val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_uint32(const char *key, uint32_t *buf) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return ossl_param_construct(key, OSSL_PARAM_UNSIGNED_INTEGER, buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                 sizeof(uint32_t)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_int64(const OSSL_PARAM *p, int64_t *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     double d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (val == NULL || p == NULL ) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             *val = *(const int32_t *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(int64_t): | 
					
						
							|  |  |  |             *val = *(const int64_t *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_get_int(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							|  |  |  |         uint64_t u64; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             *val = *(const uint32_t *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(uint64_t): | 
					
						
							|  |  |  |             u64 = *(const uint64_t *)p->data; | 
					
						
							|  |  |  |             if (u64 <= INT64_MAX) { | 
					
						
							|  |  |  |                 *val = (int64_t)u64; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_get_int(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							|  |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							|  |  |  |             d = *(const double *)p->data; | 
					
						
							| 
									
										
										
										
											2020-11-11 19:52:32 +08:00
										 |  |  |             if (d >= INT64_MIN | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * By subtracting 65535 (2^16-1) we cancel the low order | 
					
						
							|  |  |  |                      * 15 bits of INT64_MAX to avoid using imprecise floating | 
					
						
							|  |  |  |                      * point values. | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                     && d < (double)(INT64_MAX - 65535) + 65536.0 | 
					
						
							|  |  |  |                     && d == (int64_t)d) { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *val = (int64_t)d; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_int64(OSSL_PARAM *p, int64_t val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     uint64_t u64; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (p == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(int64_t); /* Expected size */ | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             if (val >= INT32_MIN && val <= INT32_MAX) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                 p->return_size = sizeof(int32_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(int32_t *)p->data = (int32_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         case sizeof(int64_t): | 
					
						
							|  |  |  |             *(int64_t *)p->data = val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_set_int(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER && val >= 0) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(uint64_t); /* Expected size */ | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             if (val <= UINT32_MAX) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                 p->return_size = sizeof(uint32_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(uint32_t *)p->data = (uint32_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         case sizeof(uint64_t): | 
					
						
							|  |  |  |             *(uint64_t *)p->data = (uint64_t)val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_set_int(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(double); | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							|  |  |  |             u64 = val < 0 ? -val : val; | 
					
						
							| 
									
										
										
										
											2020-11-11 19:52:32 +08:00
										 |  |  |             if ((u64 >> real_shift()) == 0) { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(double *)p->data = (double)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_int64(const char *key, int64_t *buf) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     return ossl_param_construct(key, OSSL_PARAM_INTEGER, buf, sizeof(int64_t)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_uint64(const OSSL_PARAM *p, uint64_t *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     double d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (val == NULL || p == NULL) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             *val = *(const uint32_t *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(uint64_t): | 
					
						
							|  |  |  |             *val = *(const uint64_t *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_get_uint(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							|  |  |  |         int32_t i32; | 
					
						
							|  |  |  |         int64_t i64; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             i32 = *(const int32_t *)p->data; | 
					
						
							|  |  |  |             if (i32 >= 0) { | 
					
						
							|  |  |  |                 *val = (uint64_t)i32; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         case sizeof(int64_t): | 
					
						
							|  |  |  |             i64 = *(const int64_t *)p->data; | 
					
						
							|  |  |  |             if (i64 >= 0) { | 
					
						
							|  |  |  |                 *val = (uint64_t)i64; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_get_uint(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							|  |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							|  |  |  |             d = *(const double *)p->data; | 
					
						
							| 
									
										
										
										
											2020-11-11 19:52:32 +08:00
										 |  |  |             if (d >= 0 | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * By subtracting 65535 (2^16-1) we cancel the low order | 
					
						
							|  |  |  |                      * 15 bits of UINT64_MAX to avoid using imprecise floating | 
					
						
							|  |  |  |                      * point values. | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                     && d < (double)(UINT64_MAX - 65535) + 65536.0 | 
					
						
							|  |  |  |                     && d == (uint64_t)d) { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *val = (uint64_t)d; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_uint64(OSSL_PARAM *p, uint64_t val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (p == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(uint64_t); /* Expected size */ | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             if (val <= UINT32_MAX) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                 p->return_size = sizeof(uint32_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(uint32_t *)p->data = (uint32_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         case sizeof(uint64_t): | 
					
						
							|  |  |  |             *(uint64_t *)p->data = val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_set_uint(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_INTEGER) { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(int64_t); /* Expected size */ | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             if (val <= INT32_MAX) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                 p->return_size = sizeof(int32_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(int32_t *)p->data = (int32_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         case sizeof(int64_t): | 
					
						
							|  |  |  |             if (val <= INT64_MAX) { | 
					
						
							|  |  |  |                 *(int64_t *)p->data = (int64_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return general_set_uint(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(double); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							| 
									
										
										
										
											2020-11-11 19:52:32 +08:00
										 |  |  |             if ((val >> real_shift()) == 0) { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(double *)p->data = (double)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_uint64(const char *key, uint64_t *buf) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     return ossl_param_construct(key, OSSL_PARAM_UNSIGNED_INTEGER, buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                 sizeof(uint64_t)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_size_t(const OSSL_PARAM *p, size_t *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(size_t)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_uint32(p, (uint32_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_get_uint64(p, (uint64_t *)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_get_uint(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_size_t(OSSL_PARAM *p, size_t val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |     switch (sizeof(size_t)) { | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint32_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_uint32(p, (uint32_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     case sizeof(uint64_t): | 
					
						
							| 
									
										
										
										
											2019-03-30 10:49:05 +08:00
										 |  |  |         return OSSL_PARAM_set_uint64(p, (uint64_t)val); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_set_uint(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_size_t(const char *key, size_t *buf) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return ossl_param_construct(key, OSSL_PARAM_UNSIGNED_INTEGER, buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                 sizeof(size_t)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  | int OSSL_PARAM_get_time_t(const OSSL_PARAM *p, time_t *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  |     switch (sizeof(time_t)) { | 
					
						
							|  |  |  |     case sizeof(int32_t): | 
					
						
							|  |  |  |         return OSSL_PARAM_get_int32(p, (int32_t *)val); | 
					
						
							|  |  |  |     case sizeof(int64_t): | 
					
						
							|  |  |  |         return OSSL_PARAM_get_int64(p, (int64_t *)val); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_get_int(p, val, sizeof(*val)); | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_set_time_t(OSSL_PARAM *p, time_t val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #ifndef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  |     switch (sizeof(time_t)) { | 
					
						
							|  |  |  |     case sizeof(int32_t): | 
					
						
							|  |  |  |         return OSSL_PARAM_set_int32(p, (int32_t)val); | 
					
						
							|  |  |  |     case sizeof(int64_t): | 
					
						
							|  |  |  |         return OSSL_PARAM_set_int64(p, (int64_t)val); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-11 08:21:44 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return general_set_int(p, &val, sizeof(val)); | 
					
						
							| 
									
										
										
										
											2020-05-11 07:37:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OSSL_PARAM OSSL_PARAM_construct_time_t(const char *key, time_t *buf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ossl_param_construct(key, OSSL_PARAM_INTEGER, buf, sizeof(time_t)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | int OSSL_PARAM_get_BN(const OSSL_PARAM *p, BIGNUM **val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     BIGNUM *b; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (val == NULL | 
					
						
							|  |  |  |         || p == NULL | 
					
						
							|  |  |  |         || p->data_type != OSSL_PARAM_UNSIGNED_INTEGER) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     b = BN_native2bn(p->data, (int)p->data_size, *val); | 
					
						
							|  |  |  |     if (b != NULL) { | 
					
						
							|  |  |  |         *val = b; | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_BN(OSSL_PARAM *p, const BIGNUM *val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t bytes; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (p == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (val == NULL || p->data_type != OSSL_PARAM_UNSIGNED_INTEGER) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-06 17:15:44 +08:00
										 |  |  |     /* For the moment, only positive values are permitted */ | 
					
						
							|  |  |  |     if (BN_is_negative(val)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     bytes = (size_t)BN_num_bytes(val); | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = bytes; | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |     if (p->data == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2019-11-02 03:44:14 +08:00
										 |  |  |     if (p->data_size >= bytes) { | 
					
						
							|  |  |  |         p->return_size = p->data_size; | 
					
						
							|  |  |  |         return BN_bn2nativepad(val, p->data, p->data_size) >= 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OSSL_PARAM OSSL_PARAM_construct_BN(const char *key, unsigned char *buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                    size_t bsize) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return ossl_param_construct(key, OSSL_PARAM_UNSIGNED_INTEGER, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                 buf, bsize); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_double(const OSSL_PARAM *p, double *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     int64_t i64; | 
					
						
							|  |  |  |     uint64_t u64; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (val == NULL || p == NULL) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							|  |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							|  |  |  |             *val = *(const double *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) { | 
					
						
							|  |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             *val = *(const uint32_t *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(uint64_t): | 
					
						
							|  |  |  |             u64 = *(const uint64_t *)p->data; | 
					
						
							| 
									
										
										
										
											2020-11-11 19:52:32 +08:00
										 |  |  |             if ((u64 >> real_shift()) == 0) { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *val = (double)u64; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else if (p->data_type == OSSL_PARAM_INTEGER) { | 
					
						
							|  |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             *val = *(const int32_t *)p->data; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         case sizeof(int64_t): | 
					
						
							|  |  |  |             i64 = *(const int64_t *)p->data; | 
					
						
							|  |  |  |             u64 = i64 < 0 ? -i64 : i64; | 
					
						
							| 
									
										
										
										
											2020-11-11 19:52:32 +08:00
										 |  |  |             if ((u64 >> real_shift()) == 0) { | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *val = 0.0 + i64; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_double(OSSL_PARAM *p, double val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (p == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |     if (p->data_type == OSSL_PARAM_REAL) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(double); | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(double): | 
					
						
							|  |  |  |             *(double *)p->data = val; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER | 
					
						
							| 
									
										
										
										
											2021-06-18 09:05:20 +08:00
										 |  |  |                && val == (uint64_t)val) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(double); | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(uint32_t): | 
					
						
							|  |  |  |             if (val >= 0 && val <= UINT32_MAX) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                 p->return_size = sizeof(uint32_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(uint32_t *)p->data = (uint32_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case sizeof(uint64_t): | 
					
						
							| 
									
										
										
										
											2020-11-11 19:52:32 +08:00
										 |  |  |             if (val >= 0 | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * By subtracting 65535 (2^16-1) we cancel the low order | 
					
						
							|  |  |  |                      * 15 bits of UINT64_MAX to avoid using imprecise floating | 
					
						
							|  |  |  |                      * point values. | 
					
						
							|  |  |  |                      */ | 
					
						
							| 
									
										
										
										
											2021-06-18 12:43:24 +08:00
										 |  |  |                     && val < (double)(UINT64_MAX - 65535) + 65536.0) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                 p->return_size = sizeof(uint64_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(uint64_t *)p->data = (uint64_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break;            } | 
					
						
							| 
									
										
										
										
											2021-06-18 09:05:20 +08:00
										 |  |  |     } else if (p->data_type == OSSL_PARAM_INTEGER && val == (int64_t)val) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |         p->return_size = sizeof(double); | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |         if (p->data == NULL) | 
					
						
							|  |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |         switch (p->data_size) { | 
					
						
							|  |  |  |         case sizeof(int32_t): | 
					
						
							|  |  |  |             if (val >= INT32_MIN && val <= INT32_MAX) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                 p->return_size = sizeof(int32_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(int32_t *)p->data = (int32_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case sizeof(int64_t): | 
					
						
							| 
									
										
										
										
											2020-11-11 19:52:32 +08:00
										 |  |  |             if (val >= INT64_MIN | 
					
						
							|  |  |  |                     /*
 | 
					
						
							|  |  |  |                      * By subtracting 65535 (2^16-1) we cancel the low order | 
					
						
							|  |  |  |                      * 15 bits of INT64_MAX to avoid using imprecise floating | 
					
						
							|  |  |  |                      * point values. | 
					
						
							|  |  |  |                      */ | 
					
						
							|  |  |  |                     && val < (double)(INT64_MAX - 65535) + 65536.0) { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                 p->return_size = sizeof(int64_t); | 
					
						
							| 
									
										
										
										
											2019-05-21 05:42:26 +08:00
										 |  |  |                 *(int64_t *)p->data = (int64_t)val; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | OSSL_PARAM OSSL_PARAM_construct_double(const char *key, double *buf) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     return ossl_param_construct(key, OSSL_PARAM_REAL, buf, sizeof(double)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												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
										 |  |  | static int get_string_internal(const OSSL_PARAM *p, void **val, | 
					
						
							|  |  |  |                                size_t *max_len, size_t *used_len, | 
					
						
							|  |  |  |                                unsigned int type) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
											
												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
										 |  |  |     size_t sz, alloc_sz; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-29 00:45:53 +08:00
										 |  |  |     if ((val == NULL && used_len == NULL) || p == NULL || p->data_type != type) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sz = p->data_size; | 
					
						
							| 
									
										
										
											
												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
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * If the input size is 0, or the input string needs NUL byte | 
					
						
							|  |  |  |      * termination, allocate an extra byte. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     alloc_sz = sz + (type == OSSL_PARAM_UTF8_STRING || sz == 0); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (used_len != NULL) | 
					
						
							|  |  |  |         *used_len = sz; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 09:53:10 +08:00
										 |  |  |     if (p->data == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-10-18 00:19:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-29 00:45:53 +08:00
										 |  |  |     if (val == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (*val == NULL) { | 
					
						
							| 
									
										
										
											
												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
										 |  |  |         char *const q = OPENSSL_malloc(alloc_sz); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (q == NULL) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         *val = q; | 
					
						
							| 
									
										
										
											
												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
										 |  |  |         *max_len = alloc_sz; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
											
												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
										 |  |  | 
 | 
					
						
							|  |  |  |     if (*max_len < sz) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     memcpy(*val, p->data, sz); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_utf8_string(const OSSL_PARAM *p, char **val, size_t max_len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
											
												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
										 |  |  |     int ret = get_string_internal(p, (void **)val, &max_len, NULL, | 
					
						
							|  |  |  |                                   OSSL_PARAM_UTF8_STRING); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We try to ensure that the copied string is terminated with a | 
					
						
							|  |  |  |      * NUL byte.  That should be easy, just place a NUL byte at | 
					
						
							|  |  |  |      * |((char*)*val)[p->data_size]|. | 
					
						
							|  |  |  |      * Unfortunately, we have seen cases where |p->data_size| doesn't | 
					
						
							|  |  |  |      * correctly reflect the length of the string, and just happens | 
					
						
							|  |  |  |      * to be out of bounds according to |max_len|, so in that case, we | 
					
						
							|  |  |  |      * make the extra step of trying to find the true length of the | 
					
						
							|  |  |  |      * string that |p->data| points at, and use that as an index to | 
					
						
							|  |  |  |      * place the NUL byte in |*val|. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     size_t data_length = p->data_size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-19 22:02:16 +08:00
										 |  |  |     if (ret == 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
											
												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
										 |  |  |     if (data_length >= max_len) | 
					
						
							|  |  |  |         data_length = OPENSSL_strnlen(p->data, data_length); | 
					
						
							|  |  |  |     if (data_length >= max_len) | 
					
						
							|  |  |  |         return 0;            /* No space for a terminating NUL byte */ | 
					
						
							| 
									
										
										
										
											2021-04-19 22:02:16 +08:00
										 |  |  |     (*val)[data_length] = '\0'; | 
					
						
							| 
									
										
										
											
												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
										 |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_octet_string(const OSSL_PARAM *p, void **val, size_t max_len, | 
					
						
							|  |  |  |                                 size_t *used_len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
											
												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
										 |  |  |     return get_string_internal(p, val, &max_len, used_len, | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |                                OSSL_PARAM_OCTET_STRING); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | static int set_string_internal(OSSL_PARAM *p, const void *val, size_t len, | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |                                unsigned int type) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = len; | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |     if (p->data == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (p->data_type != type || p->data_size < len) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memcpy(p->data, val, len); | 
					
						
							| 
									
										
										
											
												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
										 |  |  |     /* If possible within the size of p->data, add a NUL terminator byte */ | 
					
						
							|  |  |  |     if (type == OSSL_PARAM_UTF8_STRING && p->data_size > len) | 
					
						
							|  |  |  |         ((char *)p->data)[len] = '\0'; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_utf8_string(OSSL_PARAM *p, const char *val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (p == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (val == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
											
												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
										 |  |  |     return set_string_internal(p, val, strlen(val), OSSL_PARAM_UTF8_STRING); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_octet_string(OSSL_PARAM *p, const void *val, | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |                                 size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (p == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (val == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return set_string_internal(p, val, len, OSSL_PARAM_OCTET_STRING); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OSSL_PARAM OSSL_PARAM_construct_utf8_string(const char *key, char *buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                             size_t bsize) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-09-04 17:27:08 +08:00
										 |  |  |     if (buf != NULL && bsize == 0) | 
					
						
							| 
									
										
										
											
												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
										 |  |  |         bsize = strlen(buf); | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     return ossl_param_construct(key, OSSL_PARAM_UTF8_STRING, buf, bsize); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OSSL_PARAM OSSL_PARAM_construct_octet_string(const char *key, void *buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                              size_t bsize) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     return ossl_param_construct(key, OSSL_PARAM_OCTET_STRING, buf, bsize); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int get_ptr_internal(const OSSL_PARAM *p, const void **val, | 
					
						
							|  |  |  |                             size_t *used_len, unsigned int type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (val == NULL || p == NULL || p->data_type != type) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (used_len != NULL) | 
					
						
							|  |  |  |         *used_len = p->data_size; | 
					
						
							|  |  |  |     *val = *(const void **)p->data; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_utf8_ptr(const OSSL_PARAM *p, const char **val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return get_ptr_internal(p, (const void **)val, NULL, OSSL_PARAM_UTF8_PTR); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_octet_ptr(const OSSL_PARAM *p, const void **val, | 
					
						
							|  |  |  |                              size_t *used_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return get_ptr_internal(p, val, used_len, OSSL_PARAM_OCTET_PTR); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | static int set_ptr_internal(OSSL_PARAM *p, const void *val, | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |                             unsigned int type, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = len; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     if (p->data_type != type) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-09-26 13:45:33 +08:00
										 |  |  |     if (p->data != NULL) | 
					
						
							|  |  |  |         *(const void **)p->data = val; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_utf8_ptr(OSSL_PARAM *p, const char *val) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (p == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-10-12 00:42:19 +08:00
										 |  |  |     return set_ptr_internal(p, val, OSSL_PARAM_UTF8_PTR, | 
					
						
							| 
									
										
										
											
												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
										 |  |  |                             val == NULL ? 0 : strlen(val)); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  | int OSSL_PARAM_set_octet_ptr(OSSL_PARAM *p, const void *val, | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |                              size_t used_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (p == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     p->return_size = 0; | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  |     return set_ptr_internal(p, val, OSSL_PARAM_OCTET_PTR, used_len); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OSSL_PARAM OSSL_PARAM_construct_utf8_ptr(const char *key, char **buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                          size_t bsize) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     return ossl_param_construct(key, OSSL_PARAM_UTF8_PTR, buf, bsize); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OSSL_PARAM OSSL_PARAM_construct_octet_ptr(const char *key, void **buf, | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |                                           size_t bsize) | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     return ossl_param_construct(key, OSSL_PARAM_OCTET_PTR, buf, bsize); | 
					
						
							| 
									
										
										
										
											2019-02-22 10:21:33 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-04-09 15:49:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | OSSL_PARAM OSSL_PARAM_construct_end(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_PARAM end = OSSL_PARAM_END; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return end; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-07-29 04:00:09 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int get_string_ptr_internal(const OSSL_PARAM *p, const void **val, | 
					
						
							|  |  |  |                                    size_t *used_len, unsigned int type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (val == NULL || p == NULL || p->data_type != type) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (used_len != NULL) | 
					
						
							|  |  |  |         *used_len = p->data_size; | 
					
						
							|  |  |  |     *val = p->data; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_utf8_string_ptr(const OSSL_PARAM *p, const char **val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return OSSL_PARAM_get_utf8_ptr(p, val) | 
					
						
							|  |  |  |         || get_string_ptr_internal(p, (const void **)val, NULL, | 
					
						
							|  |  |  |                                    OSSL_PARAM_UTF8_STRING); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_PARAM_get_octet_string_ptr(const OSSL_PARAM *p, const void **val, | 
					
						
							|  |  |  |                                     size_t *used_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return OSSL_PARAM_get_octet_ptr(p, val, used_len) | 
					
						
							|  |  |  |         || get_string_ptr_internal(p, val, used_len, OSSL_PARAM_OCTET_STRING); | 
					
						
							|  |  |  | } |