Home | History | Annotate | Line # | Download | only in internal
      1      1.1  christos /*
      2      1.1  christos  * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
      3      1.1  christos  *
      4      1.1  christos  * Licensed under the Apache License 2.0 (the "License").  You may not use
      5      1.1  christos  * this file except in compliance with the License.  You can obtain a copy
      6      1.1  christos  * in the file LICENSE in the source distribution or at
      7      1.1  christos  * https://www.openssl.org/source/license.html
      8      1.1  christos  */
      9      1.1  christos 
     10      1.1  christos #ifndef OSSL_INTERNAL_CRYPTLIB_H
     11  1.1.1.2  christos #define OSSL_INTERNAL_CRYPTLIB_H
     12  1.1.1.2  christos #pragma once
     13      1.1  christos 
     14  1.1.1.2  christos #ifdef OPENSSL_USE_APPLINK
     15  1.1.1.2  christos #define BIO_FLAGS_UPLINK_INTERNAL 0x8000
     16  1.1.1.2  christos #include "ms/uplink.h"
     17  1.1.1.2  christos #else
     18  1.1.1.2  christos #define BIO_FLAGS_UPLINK_INTERNAL 0
     19  1.1.1.2  christos #endif
     20  1.1.1.2  christos 
     21  1.1.1.2  christos #include "internal/common.h"
     22  1.1.1.2  christos 
     23  1.1.1.2  christos #include <openssl/crypto.h>
     24  1.1.1.2  christos #include <openssl/buffer.h>
     25  1.1.1.2  christos #include <openssl/bio.h>
     26  1.1.1.2  christos #include <openssl/asn1.h>
     27  1.1.1.2  christos #include <openssl/err.h>
     28      1.1  christos 
     29      1.1  christos typedef struct ex_callback_st EX_CALLBACK;
     30      1.1  christos DEFINE_STACK_OF(EX_CALLBACK)
     31      1.1  christos 
     32      1.1  christos typedef struct mem_st MEM;
     33      1.1  christos DEFINE_LHASH_OF_EX(MEM);
     34      1.1  christos 
     35      1.1  christos void OPENSSL_cpuid_setup(void);
     36  1.1.1.2  christos #if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || defined(_M_X64)
     37  1.1.1.2  christos #define OPENSSL_IA32CAP_P_MAX_INDEXES 10
     38      1.1  christos extern unsigned int OPENSSL_ia32cap_P[];
     39      1.1  christos #endif
     40      1.1  christos 
     41      1.1  christos void OPENSSL_showfatal(const char *fmta, ...);
     42      1.1  christos int ossl_do_ex_data_init(OSSL_LIB_CTX *ctx);
     43      1.1  christos void ossl_crypto_cleanup_all_ex_data_int(OSSL_LIB_CTX *ctx);
     44      1.1  christos int openssl_init_fork_handlers(void);
     45      1.1  christos int openssl_get_fork_id(void);
     46      1.1  christos 
     47      1.1  christos char *ossl_safe_getenv(const char *name);
     48      1.1  christos 
     49      1.1  christos extern CRYPTO_RWLOCK *memdbg_lock;
     50      1.1  christos int openssl_strerror_r(int errnum, char *buf, size_t buflen);
     51  1.1.1.2  christos #if !defined(OPENSSL_NO_STDIO)
     52      1.1  christos FILE *openssl_fopen(const char *filename, const char *mode);
     53  1.1.1.2  christos #else
     54      1.1  christos void *openssl_fopen(const char *filename, const char *mode);
     55  1.1.1.2  christos #endif
     56      1.1  christos 
     57      1.1  christos uint32_t OPENSSL_rdtsc(void);
     58      1.1  christos size_t OPENSSL_instrument_bus(unsigned int *, size_t);
     59      1.1  christos size_t OPENSSL_instrument_bus2(unsigned int *, size_t, size_t);
     60      1.1  christos 
     61      1.1  christos /* ex_data structures */
     62      1.1  christos 
     63      1.1  christos /*
     64      1.1  christos  * Each structure type (sometimes called a class), that supports
     65      1.1  christos  * exdata has a stack of callbacks for each instance.
     66      1.1  christos  */
     67      1.1  christos struct ex_callback_st {
     68  1.1.1.2  christos     long argl; /* Arbitrary long */
     69  1.1.1.2  christos     void *argp; /* Arbitrary void * */
     70  1.1.1.2  christos     int priority; /* Priority ordering for freeing */
     71      1.1  christos     CRYPTO_EX_new *new_func;
     72      1.1  christos     CRYPTO_EX_free *free_func;
     73      1.1  christos     CRYPTO_EX_dup *dup_func;
     74      1.1  christos };
     75      1.1  christos 
     76      1.1  christos /*
     77      1.1  christos  * The state for each class.  This could just be a typedef, but
     78      1.1  christos  * a structure allows future changes.
     79      1.1  christos  */
     80      1.1  christos typedef struct ex_callbacks_st {
     81      1.1  christos     STACK_OF(EX_CALLBACK) *meth;
     82      1.1  christos } EX_CALLBACKS;
     83      1.1  christos 
     84      1.1  christos typedef struct ossl_ex_data_global_st {
     85      1.1  christos     CRYPTO_RWLOCK *ex_data_lock;
     86      1.1  christos     EX_CALLBACKS ex_data[CRYPTO_EX_INDEX__COUNT];
     87      1.1  christos } OSSL_EX_DATA_GLOBAL;
     88      1.1  christos 
     89      1.1  christos /* OSSL_LIB_CTX */
     90      1.1  christos 
     91  1.1.1.2  christos #define OSSL_LIB_CTX_PROVIDER_STORE_RUN_ONCE_INDEX 0
     92  1.1.1.2  christos #define OSSL_LIB_CTX_DEFAULT_METHOD_STORE_RUN_ONCE_INDEX 1
     93  1.1.1.2  christos #define OSSL_LIB_CTX_METHOD_STORE_RUN_ONCE_INDEX 2
     94  1.1.1.2  christos #define OSSL_LIB_CTX_MAX_RUN_ONCE 3
     95  1.1.1.2  christos 
     96  1.1.1.2  christos #define OSSL_LIB_CTX_EVP_METHOD_STORE_INDEX 0
     97  1.1.1.2  christos #define OSSL_LIB_CTX_PROVIDER_STORE_INDEX 1
     98  1.1.1.2  christos #define OSSL_LIB_CTX_PROPERTY_DEFN_INDEX 2
     99  1.1.1.2  christos #define OSSL_LIB_CTX_PROPERTY_STRING_INDEX 3
    100  1.1.1.2  christos #define OSSL_LIB_CTX_NAMEMAP_INDEX 4
    101  1.1.1.2  christos #define OSSL_LIB_CTX_DRBG_INDEX 5
    102  1.1.1.2  christos #define OSSL_LIB_CTX_DRBG_NONCE_INDEX 6
    103      1.1  christos /* slot 7 unused, was CRNG test data and can be reused */
    104  1.1.1.2  christos #ifdef FIPS_MODULE
    105  1.1.1.2  christos #define OSSL_LIB_CTX_THREAD_EVENT_HANDLER_INDEX 8
    106  1.1.1.2  christos #endif
    107  1.1.1.2  christos #define OSSL_LIB_CTX_FIPS_PROV_INDEX 9
    108  1.1.1.2  christos #define OSSL_LIB_CTX_ENCODER_STORE_INDEX 10
    109  1.1.1.2  christos #define OSSL_LIB_CTX_DECODER_STORE_INDEX 11
    110  1.1.1.2  christos #define OSSL_LIB_CTX_SELF_TEST_CB_INDEX 12
    111  1.1.1.2  christos #define OSSL_LIB_CTX_BIO_PROV_INDEX 13
    112  1.1.1.2  christos #define OSSL_LIB_CTX_GLOBAL_PROPERTIES 14
    113  1.1.1.2  christos #define OSSL_LIB_CTX_STORE_LOADER_STORE_INDEX 15
    114  1.1.1.2  christos #define OSSL_LIB_CTX_PROVIDER_CONF_INDEX 16
    115  1.1.1.2  christos #define OSSL_LIB_CTX_BIO_CORE_INDEX 17
    116  1.1.1.2  christos #define OSSL_LIB_CTX_CHILD_PROVIDER_INDEX 18
    117  1.1.1.2  christos #define OSSL_LIB_CTX_THREAD_INDEX 19
    118  1.1.1.2  christos #define OSSL_LIB_CTX_DECODER_CACHE_INDEX 20
    119  1.1.1.2  christos #define OSSL_LIB_CTX_COMP_METHODS 21
    120  1.1.1.2  christos #define OSSL_LIB_CTX_INDICATOR_CB_INDEX 22
    121  1.1.1.2  christos #define OSSL_LIB_CTX_MAX_INDEXES 22
    122      1.1  christos 
    123      1.1  christos OSSL_LIB_CTX *ossl_lib_ctx_get_concrete(OSSL_LIB_CTX *ctx);
    124      1.1  christos int ossl_lib_ctx_is_default(OSSL_LIB_CTX *ctx);
    125      1.1  christos int ossl_lib_ctx_is_global_default(OSSL_LIB_CTX *ctx);
    126      1.1  christos 
    127      1.1  christos /* Functions to retrieve pointers to data by index */
    128      1.1  christos void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *, int /* index */);
    129      1.1  christos 
    130      1.1  christos void ossl_lib_ctx_default_deinit(void);
    131      1.1  christos OSSL_EX_DATA_GLOBAL *ossl_lib_ctx_get_ex_data_global(OSSL_LIB_CTX *ctx);
    132      1.1  christos 
    133      1.1  christos const char *ossl_lib_ctx_get_descriptor(OSSL_LIB_CTX *libctx);
    134      1.1  christos CRYPTO_THREAD_LOCAL *ossl_lib_ctx_get_rcukey(OSSL_LIB_CTX *libctx);
    135      1.1  christos 
    136      1.1  christos OSSL_LIB_CTX *ossl_crypto_ex_data_get_ossl_lib_ctx(const CRYPTO_EX_DATA *ad);
    137      1.1  christos int ossl_crypto_new_ex_data_ex(OSSL_LIB_CTX *ctx, int class_index, void *obj,
    138  1.1.1.2  christos     CRYPTO_EX_DATA *ad);
    139      1.1  christos int ossl_crypto_get_ex_new_index_ex(OSSL_LIB_CTX *ctx, int class_index,
    140  1.1.1.2  christos     long argl, void *argp,
    141  1.1.1.2  christos     CRYPTO_EX_new *new_func,
    142  1.1.1.2  christos     CRYPTO_EX_dup *dup_func,
    143  1.1.1.2  christos     CRYPTO_EX_free *free_func,
    144  1.1.1.2  christos     int priority);
    145      1.1  christos int ossl_crypto_free_ex_index_ex(OSSL_LIB_CTX *ctx, int class_index, int idx);
    146      1.1  christos 
    147      1.1  christos /* Function for simple binary search */
    148      1.1  christos 
    149      1.1  christos /* Flags */
    150  1.1.1.2  christos #define OSSL_BSEARCH_VALUE_ON_NOMATCH 0x01
    151  1.1.1.2  christos #define OSSL_BSEARCH_FIRST_VALUE_ON_MATCH 0x02
    152      1.1  christos 
    153      1.1  christos const void *ossl_bsearch(const void *key, const void *base, int num,
    154  1.1.1.2  christos     int size, int (*cmp)(const void *, const void *),
    155  1.1.1.2  christos     int flags);
    156      1.1  christos 
    157      1.1  christos char *ossl_sk_ASN1_UTF8STRING2text(STACK_OF(ASN1_UTF8STRING) *text,
    158  1.1.1.2  christos     const char *sep, size_t max_len);
    159      1.1  christos char *ossl_ipaddr_to_asc(unsigned char *p, int len);
    160      1.1  christos 
    161      1.1  christos char *ossl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep);
    162      1.1  christos unsigned char *ossl_hexstr2buf_sep(const char *str, long *buflen,
    163  1.1.1.2  christos     const char sep);
    164      1.1  christos 
    165      1.1  christos /**
    166      1.1  christos  *  Writes |n| value in hex format into |buf|,
    167      1.1  christos  *  and returns the number of bytes written
    168      1.1  christos  */
    169      1.1  christos size_t ossl_to_hex(char *buf, uint8_t n);
    170      1.1  christos 
    171      1.1  christos STACK_OF(SSL_COMP) *ossl_load_builtin_compressions(void);
    172      1.1  christos void ossl_free_compression_methods_int(STACK_OF(SSL_COMP) *methods);
    173      1.1  christos 
    174      1.1  christos #endif
    175