| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-08 20:04:41 +08:00
										 |  |  |  * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +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 <openssl/crypto.h>
 | 
					
						
							| 
									
										
										
										
											2019-02-13 02:54:08 +08:00
										 |  |  | #include <openssl/bn.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:33 +08:00
										 |  |  | #include "crypto/sparse_array.h"
 | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2019-07-02 16:04:04 +08:00
										 |  |  |  * How many bits are used to index each level in the tree structure? | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |  * This setting determines the number of pointers stored in each node of the | 
					
						
							|  |  |  |  * tree used to represent the sparse array.  Having more pointers reduces the | 
					
						
							|  |  |  |  * depth of the tree but potentially wastes more memory.  That is, this is a | 
					
						
							|  |  |  |  * direct space versus time tradeoff. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The large memory model uses twelve bits which means that the are 4096 | 
					
						
							|  |  |  |  * pointers in each tree node.  This is more than sufficient to hold the | 
					
						
							|  |  |  |  * largest defined NID (as of Feb 2019).  This means that using a NID to | 
					
						
							|  |  |  |  * index a sparse array becomes a constant time single array look up. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The small memory model uses four bits which means the tree nodes contain | 
					
						
							|  |  |  |  * sixteen pointers.  This reduces the amount of unused space significantly | 
					
						
							|  |  |  |  * at a cost in time. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The library builder is also permitted to define other sizes in the closed | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  |  * interval [2, sizeof(ossl_uintmax_t) * 8]. | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | #ifndef OPENSSL_SA_BLOCK_BITS
 | 
					
						
							|  |  |  | # ifdef OPENSSL_SMALL_FOOTPRINT
 | 
					
						
							|  |  |  | #  define OPENSSL_SA_BLOCK_BITS           4
 | 
					
						
							|  |  |  | # else
 | 
					
						
							|  |  |  | #  define OPENSSL_SA_BLOCK_BITS           12
 | 
					
						
							|  |  |  | # endif
 | 
					
						
							| 
									
										
										
										
											2019-02-13 14:11:16 +08:00
										 |  |  | #elif OPENSSL_SA_BLOCK_BITS < 2 || OPENSSL_SA_BLOCK_BITS > (BN_BITS2 - 1)
 | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | # error OPENSSL_SA_BLOCK_BITS is out of range
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * From the number of bits, work out: | 
					
						
							|  |  |  |  *    the number of pointers in a tree node; | 
					
						
							| 
									
										
										
										
											2019-02-13 07:22:36 +08:00
										 |  |  |  *    a bit mask to quickly extract an index and | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |  *    the maximum depth of the tree structure. | 
					
						
							|  |  |  |   */ | 
					
						
							|  |  |  | #define SA_BLOCK_MAX            (1 << OPENSSL_SA_BLOCK_BITS)
 | 
					
						
							|  |  |  | #define SA_BLOCK_MASK           (SA_BLOCK_MAX - 1)
 | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  | #define SA_BLOCK_MAX_LEVELS     (((int)sizeof(ossl_uintmax_t) * 8 \
 | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |                                   + OPENSSL_SA_BLOCK_BITS - 1) \ | 
					
						
							|  |  |  |                                  / OPENSSL_SA_BLOCK_BITS) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct sparse_array_st { | 
					
						
							|  |  |  |     int levels; | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  |     ossl_uintmax_t top; | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |     size_t nelem; | 
					
						
							|  |  |  |     void **nodes; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 10:07:36 +08:00
										 |  |  | OPENSSL_SA *ossl_sa_new(void) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     OPENSSL_SA *res = OPENSSL_zalloc(sizeof(*res)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sa_doall(const OPENSSL_SA *sa, void (*node)(void **), | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  |                      void (*leaf)(ossl_uintmax_t, void *, void *), void *arg) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i[SA_BLOCK_MAX_LEVELS]; | 
					
						
							|  |  |  |     void *nodes[SA_BLOCK_MAX_LEVELS]; | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  |     ossl_uintmax_t idx = 0; | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |     int l = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     i[0] = 0; | 
					
						
							|  |  |  |     nodes[0] = sa->nodes; | 
					
						
							|  |  |  |     while (l >= 0) { | 
					
						
							|  |  |  |         const int n = i[l]; | 
					
						
							|  |  |  |         void ** const p = nodes[l]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (n >= SA_BLOCK_MAX) { | 
					
						
							|  |  |  |             if (p != NULL && node != NULL) | 
					
						
							|  |  |  |                 (*node)(p); | 
					
						
							|  |  |  |             l--; | 
					
						
							| 
									
										
										
										
											2019-02-14 06:13:58 +08:00
										 |  |  |             idx >>= OPENSSL_SA_BLOCK_BITS; | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             i[l] = n + 1; | 
					
						
							|  |  |  |             if (p != NULL && p[n] != NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-14 06:13:58 +08:00
										 |  |  |                 idx = (idx & ~SA_BLOCK_MASK) | n; | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |                 if (l < sa->levels - 1) { | 
					
						
							|  |  |  |                     i[++l] = 0; | 
					
						
							|  |  |  |                     nodes[l] = p[n]; | 
					
						
							| 
									
										
										
										
											2019-02-14 06:13:58 +08:00
										 |  |  |                     idx <<= OPENSSL_SA_BLOCK_BITS; | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |                 } else if (leaf != NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-14 06:13:58 +08:00
										 |  |  |                     (*leaf)(idx, p[n], arg); | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sa_free_node(void **p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OPENSSL_free(p); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  | static void sa_free_leaf(ossl_uintmax_t n, void *p, void *arg) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     OPENSSL_free(p); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 10:07:36 +08:00
										 |  |  | void ossl_sa_free(OPENSSL_SA *sa) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     sa_doall(sa, &sa_free_node, NULL, NULL); | 
					
						
							|  |  |  |     OPENSSL_free(sa); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 10:07:36 +08:00
										 |  |  | void ossl_sa_free_leaves(OPENSSL_SA *sa) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     sa_doall(sa, &sa_free_node, &sa_free_leaf, NULL); | 
					
						
							|  |  |  |     OPENSSL_free(sa); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Wrap this in a structure to avoid compiler warnings */ | 
					
						
							|  |  |  | struct trampoline_st { | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  |     void (*func)(ossl_uintmax_t, void *); | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  | static void trampoline(ossl_uintmax_t n, void *l, void *arg) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-14 06:13:58 +08:00
										 |  |  |     ((const struct trampoline_st *)arg)->func(n, l); | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 10:07:36 +08:00
										 |  |  | void ossl_sa_doall(const OPENSSL_SA *sa, void (*leaf)(ossl_uintmax_t, void *)) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     struct trampoline_st tramp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tramp.func = leaf; | 
					
						
							|  |  |  |     if (sa != NULL) | 
					
						
							|  |  |  |         sa_doall(sa, NULL, &trampoline, &tramp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 10:07:36 +08:00
										 |  |  | void ossl_sa_doall_arg(const OPENSSL_SA *sa, | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  |                           void (*leaf)(ossl_uintmax_t, void *, void *), | 
					
						
							|  |  |  |                           void *arg) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (sa != NULL) | 
					
						
							|  |  |  |         sa_doall(sa, NULL, leaf, arg); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 10:07:36 +08:00
										 |  |  | size_t ossl_sa_num(const OPENSSL_SA *sa) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return sa == NULL ? 0 : sa->nelem; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 10:07:36 +08:00
										 |  |  | void *ossl_sa_get(const OPENSSL_SA *sa, ossl_uintmax_t n) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int level; | 
					
						
							|  |  |  |     void **p, *r = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |     if (sa == NULL || sa->nelem == 0) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (n <= sa->top) { | 
					
						
							|  |  |  |         p = sa->nodes; | 
					
						
							|  |  |  |         for (level = sa->levels - 1; p != NULL && level > 0; level--) | 
					
						
							|  |  |  |             p = (void **)p[(n >> (OPENSSL_SA_BLOCK_BITS * level)) | 
					
						
							|  |  |  |                            & SA_BLOCK_MASK]; | 
					
						
							|  |  |  |         r = p == NULL ? NULL : p[n & SA_BLOCK_MASK]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static ossl_inline void **alloc_node(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return OPENSSL_zalloc(SA_BLOCK_MAX * sizeof(void *)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 10:07:36 +08:00
										 |  |  | int ossl_sa_set(OPENSSL_SA *sa, ossl_uintmax_t posn, void *val) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i, level = 1; | 
					
						
							| 
									
										
										
										
											2019-03-06 11:50:54 +08:00
										 |  |  |     ossl_uintmax_t n = posn; | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |     void **p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (sa == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-16 09:44:30 +08:00
										 |  |  |     for (level = 1; level < SA_BLOCK_MAX_LEVELS; level++) | 
					
						
							| 
									
										
										
										
											2019-01-24 10:15:54 +08:00
										 |  |  |         if ((n >>= OPENSSL_SA_BLOCK_BITS) == 0) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (;sa->levels < level; sa->levels++) { | 
					
						
							|  |  |  |         p = alloc_node(); | 
					
						
							|  |  |  |         if (p == NULL) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         p[0] = sa->nodes; | 
					
						
							|  |  |  |         sa->nodes = p; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (sa->top < posn) | 
					
						
							|  |  |  |         sa->top = posn; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p = sa->nodes; | 
					
						
							|  |  |  |     for (level = sa->levels - 1; level > 0; level--) { | 
					
						
							|  |  |  |         i = (posn >> (OPENSSL_SA_BLOCK_BITS * level)) & SA_BLOCK_MASK; | 
					
						
							|  |  |  |         if (p[i] == NULL && (p[i] = alloc_node()) == NULL) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         p = p[i]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     p += posn & SA_BLOCK_MASK; | 
					
						
							|  |  |  |     if (val == NULL && *p != NULL) | 
					
						
							|  |  |  |         sa->nelem--; | 
					
						
							|  |  |  |     else if (val != NULL && *p == NULL) | 
					
						
							|  |  |  |         sa->nelem++; | 
					
						
							|  |  |  |     *p = val; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } |