Create a prototype for OPENSSL_rdtsc
[openssl.git] / include / internal / cryptlib.h
1 /*
2  * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #ifndef HEADER_CRYPTLIB_H
11 # define HEADER_CRYPTLIB_H
12
13 # include <stdlib.h>
14 # include <string.h>
15
16 # ifdef OPENSSL_USE_APPLINK
17 #  undef BIO_FLAGS_UPLINK
18 #  define BIO_FLAGS_UPLINK 0x8000
19 #  include "ms/uplink.h"
20 # endif
21
22 # include <openssl/crypto.h>
23 # include <openssl/buffer.h>
24 # include <openssl/bio.h>
25 # include <openssl/err.h>
26 # include "internal/nelem.h"
27
28 #ifdef  __cplusplus
29 extern "C" {
30 #endif
31
32 #ifdef NDEBUG
33 # define ossl_assert(x) ((x) != 0)
34 #else
35 __owur static ossl_inline int ossl_assert_int(int expr, const char *exprstr,
36                                               const char *file, int line)
37 {
38     if (!expr)
39         OPENSSL_die(exprstr, file, line);
40
41     return expr;
42 }
43
44 # define ossl_assert(x) ossl_assert_int((x) != 0, "Assertion failed: "#x, \
45                                          __FILE__, __LINE__)
46
47 #endif
48
49 typedef struct ex_callback_st EX_CALLBACK;
50
51 DEFINE_STACK_OF(EX_CALLBACK)
52
53 typedef struct app_mem_info_st APP_INFO;
54
55 typedef struct mem_st MEM;
56 DEFINE_LHASH_OF(MEM);
57
58 # define OPENSSL_CONF             "openssl.cnf"
59
60 # ifndef OPENSSL_SYS_VMS
61 #  define X509_CERT_AREA          OPENSSLDIR
62 #  define X509_CERT_DIR           OPENSSLDIR "/certs"
63 #  define X509_CERT_FILE          OPENSSLDIR "/cert.pem"
64 #  define X509_PRIVATE_DIR        OPENSSLDIR "/private"
65 #  define CTLOG_FILE              OPENSSLDIR "/ct_log_list.cnf"
66 # else
67 #  define X509_CERT_AREA          "OSSL$DATAROOT:[000000]"
68 #  define X509_CERT_DIR           "OSSL$DATAROOT:[CERTS]"
69 #  define X509_CERT_FILE          "OSSL$DATAROOT:[000000]cert.pem"
70 #  define X509_PRIVATE_DIR        "OSSL$DATAROOT:[PRIVATE]"
71 #  define CTLOG_FILE              "OSSL$DATAROOT:[000000]ct_log_list.cnf"
72 # endif
73
74 # define X509_CERT_DIR_EVP        "SSL_CERT_DIR"
75 # define X509_CERT_FILE_EVP       "SSL_CERT_FILE"
76 # define CTLOG_FILE_EVP           "CTLOG_FILE"
77
78 /* size of string representations */
79 # define DECIMAL_SIZE(type)      ((sizeof(type)*8+2)/3+1)
80 # define HEX_SIZE(type)          (sizeof(type)*2)
81
82 void OPENSSL_cpuid_setup(void);
83 extern unsigned int OPENSSL_ia32cap_P[];
84 void OPENSSL_showfatal(const char *fmta, ...);
85 extern int OPENSSL_NONPIC_relocated;
86 void crypto_cleanup_all_ex_data_int(void);
87 int openssl_init_fork_handlers(void);
88
89 extern CRYPTO_RWLOCK *memdbg_lock;
90 int openssl_strerror_r(int errnum, char *buf, size_t buflen);
91 # if !defined(OPENSSL_NO_STDIO)
92 FILE *openssl_fopen(const char *filename, const char *mode);
93 # else
94 void *openssl_fopen(const char *filename, const char *mode);
95 # endif
96
97 #ifdef OPENSSL_CPUID_OBJ
98 uint32_t OPENSSL_rdtsc();
99 #endif
100
101 #ifdef  __cplusplus
102 }
103 #endif
104
105 #endif