mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
4f2271d58a
For FIPS validation purposes - Automated Cryptographic Validation Protocol (ACVP) tests need to be performed. (See https://github.com/usnistgov/ACVP). These tests are very similiar to the old CAVS tests. This PR uses a hardwired subset of these test vectors to perform similiar operations, to show the usage and prove that the API's are able to perform the required operations. It may also help with communication with the lab (i.e- The lab could add a test here to show a unworking use case - which we can then address). The EVP layer performs these tests instead of calling lower level API's as was done in the old FOM. Some of these tests require access to internals that are not normally allowed/required. The config option 'acvp_tests' (enabled by default) has been added so that this access may be removed. The mechanism has been implemented as additional OSSL_PARAM values that can be set and get. A callback mechanism did not seem to add any additional benefit. These params will not be added to the gettables lists. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11572) |
||
---|---|---|
.. | ||
aes | ||
aria | ||
asn1 | ||
async | ||
bf | ||
bio | ||
bn | ||
buffer | ||
camellia | ||
cast | ||
chacha | ||
cmac | ||
cmp | ||
cms | ||
comp | ||
conf | ||
crmf | ||
ct | ||
des | ||
dh | ||
dsa | ||
dso | ||
ec | ||
engine | ||
err | ||
ess | ||
evp | ||
ffc | ||
hmac | ||
http | ||
idea | ||
include/internal | ||
kdf | ||
lhash | ||
md2 | ||
md4 | ||
md5 | ||
mdc2 | ||
modes | ||
objects | ||
ocsp | ||
pem | ||
perlasm | ||
pkcs7 | ||
pkcs12 | ||
poly1305 | ||
property | ||
rand | ||
rc2 | ||
rc4 | ||
rc5 | ||
ripemd | ||
rsa | ||
seed | ||
serializer | ||
sha | ||
siphash | ||
sm2 | ||
sm3 | ||
sm4 | ||
srp | ||
stack | ||
store | ||
ts | ||
txt_db | ||
ui | ||
whrlpool | ||
x509 | ||
alphacpuid.pl | ||
arm64cpuid.pl | ||
arm_arch.h | ||
armcap.c | ||
armv4cpuid.pl | ||
asn1_dsa.c | ||
bsearch.c | ||
build.info | ||
c64xpluscpuid.pl | ||
context.c | ||
core_algorithm.c | ||
core_fetch.c | ||
core_namemap.c | ||
cpt_err.c | ||
cryptlib.c | ||
ctype.c | ||
cversion.c | ||
der_writer.c | ||
dllmain.c | ||
ebcdic.c | ||
ex_data.c | ||
getenv.c | ||
ia64cpuid.S | ||
info.c | ||
init.c | ||
initthread.c | ||
LPdir_nyi.c | ||
LPdir_unix.c | ||
LPdir_vms.c | ||
LPdir_win32.c | ||
LPdir_win.c | ||
LPdir_wince.c | ||
mem_clr.c | ||
mem_sec.c | ||
mem.c | ||
mips_arch.h | ||
o_dir.c | ||
o_fopen.c | ||
o_init.c | ||
o_str.c | ||
o_time.c | ||
packet.c | ||
param_build_set.c | ||
param_build.c | ||
params_from_text.c | ||
params.c | ||
pariscid.pl | ||
ppc_arch.h | ||
ppccap.c | ||
ppccpuid.pl | ||
provider_conf.c | ||
provider_core.c | ||
provider_local.h | ||
provider_predefined.c | ||
provider.c | ||
README.sparse_array | ||
s390x_arch.h | ||
s390xcap.c | ||
s390xcpuid.pl | ||
self_test_core.c | ||
sparc_arch.h | ||
sparccpuid.S | ||
sparcv9cap.c | ||
sparse_array.c | ||
threads_none.c | ||
threads_pthread.c | ||
threads_win.c | ||
trace.c | ||
uid.c | ||
vms_rms.h | ||
x86_64cpuid.pl | ||
x86cpuid.pl |
The sparse_array.c file contains an implementation of a sparse array that attempts to be both space and time efficient. The sparse array is represented using a tree structure. Each node in the tree contains a block of pointers to either the user supplied leaf values or to another node. There are a number of parameters used to define the block size: OPENSSL_SA_BLOCK_BITS Specifies the number of bits covered by each block SA_BLOCK_MAX Specifies the number of pointers in each block SA_BLOCK_MASK Specifies a bit mask to perform modulo block size SA_BLOCK_MAX_LEVELS Indicates the maximum possible height of the tree These constants are inter-related: SA_BLOCK_MAX = 2 ^ OPENSSL_SA_BLOCK_BITS SA_BLOCK_MASK = SA_BLOCK_MAX - 1 SA_BLOCK_MAX_LEVELS = number of bits in size_t divided by OPENSSL_SA_BLOCK_BITS rounded up to the next multiple of OPENSSL_SA_BLOCK_BITS OPENSSL_SA_BLOCK_BITS can be defined at compile time and this overrides the built in setting. As a space and performance optimisation, the height of the tree is usually less than the maximum possible height. Only sufficient height is allocated to accommodate the largest index added to the data structure. The largest index used to add a value to the array determines the tree height: +----------------------+---------------------+ | Largest Added Index | Height of Tree | +----------------------+---------------------+ | SA_BLOCK_MAX - 1 | 1 | | SA_BLOCK_MAX ^ 2 - 1 | 2 | | SA_BLOCK_MAX ^ 3 - 1 | 3 | | ... | ... | | size_t max | SA_BLOCK_MAX_LEVELS | +----------------------+---------------------+ The tree height is dynamically increased as needed based on additions. An empty tree is represented by a NULL root pointer. Inserting a value at index 0 results in the allocation of a top level node full of null pointers except for the single pointer to the user's data (N = SA_BLOCK_MAX for brevity): +----+ |Root| |Node| +-+--+ | | | v +-+-+---+---+---+---+ | 0 | 1 | 2 |...|N-1| | |nil|nil|...|nil| +-+-+---+---+---+---+ | | | v +-+--+ |User| |Data| +----+ Index 0 Inserting at element 2N+1 creates a new root node and pushes down the old root node. It then creates a second second level node to hold the pointer to the user's new data: +----+ |Root| |Node| +-+--+ | | | v +-+-+---+---+---+---+ | 0 | 1 | 2 |...|N-1| | |nil| |...|nil| +-+-+---+-+-+---+---+ | | | +------------------+ | | v v +-+-+---+---+---+---+ +-+-+---+---+---+---+ | 0 | 1 | 2 |...|N-1| | 0 | 1 | 2 |...|N-1| |nil| |nil|...|nil| |nil| |nil|...|nil| +-+-+---+---+---+---+ +---+-+-+---+---+---+ | | | | | | v v +-+--+ +-+--+ |User| |User| |Data| |Data| +----+ +----+ Index 0 Index 2N+1 The nodes themselves are allocated in a sparse manner. Only nodes which exist along a path from the root of the tree to an added leaf will be allocated. The complexity is hidden and nodes are allocated on an as needed basis. Because the data is expected to be sparse this doesn't result in a large waste of space. Values can be removed from the sparse array by setting their index position to NULL. The data structure does not attempt to reclaim nodes or reduce the height of the tree on removal. For example, now setting index 0 to NULL would result in: +----+ |Root| |Node| +-+--+ | | | v +-+-+---+---+---+---+ | 0 | 1 | 2 |...|N-1| | |nil| |...|nil| +-+-+---+-+-+---+---+ | | | +------------------+ | | v v +-+-+---+---+---+---+ +-+-+---+---+---+---+ | 0 | 1 | 2 |...|N-1| | 0 | 1 | 2 |...|N-1| |nil|nil|nil|...|nil| |nil| |nil|...|nil| +---+---+---+---+---+ +---+-+-+---+---+---+ | | | v +-+--+ |User| |Data| +----+ Index 2N+1 Accesses to elements in the sparse array take O(log n) time where n is the largest element. The base of the logarithm is SA_BLOCK_MAX, so for moderately small indices (e.g. NIDs), single level (constant time) access is achievable. Space usage is O(minimum(m, n log(n)) where m is the number of elements in the array. Note: sparse arrays only include pointers to types. Thus, SPARSE_ARRAY_OF(char) can be used to store a string.