testutil: ensure good treatment of argv on non-Unix platforms
[openssl.git] / apps / include / apps.h
1 /*
2  * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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_APPS_H
11 # define HEADER_APPS_H
12
13 # include "e_os.h" /* struct timeval for DTLS */
14 # include "internal/nelem.h"
15 # include <assert.h>
16
17 # include <sys/types.h>
18 # ifndef OPENSSL_NO_POSIX_IO
19 #  include <sys/stat.h>
20 #  include <fcntl.h>
21 # endif
22
23 # include <openssl/e_os2.h>
24 # include <openssl/ossl_typ.h>
25 # include <openssl/bio.h>
26 # include <openssl/x509.h>
27 # include <openssl/conf.h>
28 # include <openssl/txt_db.h>
29 # include <openssl/engine.h>
30 # include <openssl/ocsp.h>
31 # include <signal.h>
32 # include "apps_ui.h"
33 # include "opt.h"
34 # include "fmt.h"
35 # include "platform.h"
36
37 # if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WINCE)
38 #  define openssl_fdset(a,b) FD_SET((unsigned int)a, b)
39 # else
40 #  define openssl_fdset(a,b) FD_SET(a, b)
41 # endif
42
43 /*
44  * quick macro when you need to pass an unsigned char instead of a char.
45  * this is true for some implementations of the is*() functions, for
46  * example.
47  */
48 #define _UC(c) ((unsigned char)(c))
49
50 void app_RAND_load_conf(CONF *c, const char *section);
51 void app_RAND_write(void);
52
53 extern char *default_config_file;
54 extern BIO *bio_in;
55 extern BIO *bio_out;
56 extern BIO *bio_err;
57 extern const unsigned char tls13_aes128gcmsha256_id[];
58 extern const unsigned char tls13_aes256gcmsha384_id[];
59 extern BIO_ADDR *ourpeer;
60
61 BIO_METHOD *apps_bf_prefix(void);
62 /*
63  * The control used to set the prefix with BIO_ctrl()
64  * We make it high enough so the chance of ever clashing with the BIO library
65  * remains unlikely for the foreseeable future and beyond.
66  */
67 #define PREFIX_CTRL_SET_PREFIX  (1 << 15)
68 /*
69  * apps_bf_prefix() returns a dynamically created BIO_METHOD, which we
70  * need to destroy at some point.  When created internally, it's stored
71  * in an internal pointer which can be freed with the following function
72  */
73 void destroy_prefix_method(void);
74
75 BIO *dup_bio_in(int format);
76 BIO *dup_bio_out(int format);
77 BIO *dup_bio_err(int format);
78 BIO *bio_open_owner(const char *filename, int format, int private);
79 BIO *bio_open_default(const char *filename, char mode, int format);
80 BIO *bio_open_default_quiet(const char *filename, char mode, int format);
81 CONF *app_load_config_bio(BIO *in, const char *filename);
82 CONF *app_load_config(const char *filename);
83 CONF *app_load_config_quiet(const char *filename);
84 int app_load_modules(const CONF *config);
85 void unbuffer(FILE *fp);
86 void wait_for_async(SSL *s);
87 # if defined(OPENSSL_SYS_MSDOS)
88 int has_stdin_waiting(void);
89 # endif
90
91 void corrupt_signature(const ASN1_STRING *signature);
92 int set_cert_times(X509 *x, const char *startdate, const char *enddate,
93                    int days);
94
95 typedef struct args_st {
96     int size;
97     int argc;
98     char **argv;
99 } ARGS;
100
101 /* We need both wrap and the "real" function because libcrypto uses both. */
102 int wrap_password_callback(char *buf, int bufsiz, int verify, void *cb_data);
103
104 int chopup_args(ARGS *arg, char *buf);
105 # ifdef HEADER_X509_H
106 int dump_cert_text(BIO *out, X509 *x);
107 void print_name(BIO *out, const char *title, X509_NAME *nm,
108                 unsigned long lflags);
109 # endif
110 void print_bignum_var(BIO *, const BIGNUM *, const char*,
111                       int, unsigned char *);
112 void print_array(BIO *, const char *, int, const unsigned char *);
113 int set_nameopt(const char *arg);
114 unsigned long get_nameopt(void);
115 int set_cert_ex(unsigned long *flags, const char *arg);
116 int set_name_ex(unsigned long *flags, const char *arg);
117 int set_ext_copy(int *copy_type, const char *arg);
118 int copy_extensions(X509 *x, X509_REQ *req, int copy_type);
119 int app_passwd(const char *arg1, const char *arg2, char **pass1, char **pass2);
120 int add_oid_section(CONF *conf);
121 X509 *load_cert(const char *file, int format, const char *cert_descrip);
122 X509_CRL *load_crl(const char *infile, int format);
123 EVP_PKEY *load_key(const char *file, int format, int maybe_stdin,
124                    const char *pass, ENGINE *e, const char *key_descrip);
125 EVP_PKEY *load_pubkey(const char *file, int format, int maybe_stdin,
126                       const char *pass, ENGINE *e, const char *key_descrip);
127 int load_certs(const char *file, STACK_OF(X509) **certs, int format,
128                const char *pass, const char *cert_descrip);
129 int load_crls(const char *file, STACK_OF(X509_CRL) **crls, int format,
130               const char *pass, const char *cert_descrip);
131 X509_STORE *setup_verify(const char *CAfile, const char *CApath,
132                          int noCAfile, int noCApath);
133 __owur int ctx_set_verify_locations(SSL_CTX *ctx, const char *CAfile,
134                                     const char *CApath, int noCAfile,
135                                     int noCApath);
136
137 #ifndef OPENSSL_NO_CT
138
139 /*
140  * Sets the file to load the Certificate Transparency log list from.
141  * If path is NULL, loads from the default file path.
142  * Returns 1 on success, 0 otherwise.
143  */
144 __owur int ctx_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
145
146 #endif
147
148 ENGINE *setup_engine(const char *engine, int debug);
149 void release_engine(ENGINE *e);
150
151 # ifndef OPENSSL_NO_OCSP
152 OCSP_RESPONSE *process_responder(OCSP_REQUEST *req,
153                                  const char *host, const char *path,
154                                  const char *port, int use_ssl,
155                                  STACK_OF(CONF_VALUE) *headers,
156                                  int req_timeout);
157 # endif
158
159 /* Functions defined in ca.c and also used in ocsp.c */
160 int unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold,
161                    ASN1_GENERALIZEDTIME **pinvtm, const char *str);
162
163 # define DB_type         0
164 # define DB_exp_date     1
165 # define DB_rev_date     2
166 # define DB_serial       3      /* index - unique */
167 # define DB_file         4
168 # define DB_name         5      /* index - unique when active and not
169                                  * disabled */
170 # define DB_NUMBER       6
171
172 # define DB_TYPE_REV     'R'    /* Revoked  */
173 # define DB_TYPE_EXP     'E'    /* Expired  */
174 # define DB_TYPE_VAL     'V'    /* Valid ; inserted with: ca ... -valid */
175 # define DB_TYPE_SUSP    'S'    /* Suspended  */
176
177 typedef struct db_attr_st {
178     int unique_subject;
179 } DB_ATTR;
180 typedef struct ca_db_st {
181     DB_ATTR attributes;
182     TXT_DB *db;
183     char *dbfname;
184 # ifndef OPENSSL_NO_POSIX_IO
185     struct stat dbst;
186 # endif
187 } CA_DB;
188
189 void* app_malloc(int sz, const char *what);
190 BIGNUM *load_serial(const char *serialfile, int create, ASN1_INTEGER **retai);
191 int save_serial(const char *serialfile, const char *suffix, const BIGNUM *serial,
192                 ASN1_INTEGER **retai);
193 int rotate_serial(const char *serialfile, const char *new_suffix,
194                   const char *old_suffix);
195 int rand_serial(BIGNUM *b, ASN1_INTEGER *ai);
196 CA_DB *load_index(const char *dbfile, DB_ATTR *dbattr);
197 int index_index(CA_DB *db);
198 int save_index(const char *dbfile, const char *suffix, CA_DB *db);
199 int rotate_index(const char *dbfile, const char *new_suffix,
200                  const char *old_suffix);
201 void free_index(CA_DB *db);
202 # define index_name_cmp_noconst(a, b) \
203         index_name_cmp((const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, a), \
204         (const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, b))
205 int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b);
206 int parse_yesno(const char *str, int def);
207
208 X509_NAME *parse_name(const char *str, long chtype, int multirdn);
209 void policies_print(X509_STORE_CTX *ctx);
210 int bio_to_mem(unsigned char **out, int maxlen, BIO *in);
211 int pkey_ctrl_string(EVP_PKEY_CTX *ctx, const char *value);
212 int init_gen_str(EVP_PKEY_CTX **pctx,
213                  const char *algname, ENGINE *e, int do_param);
214 int do_X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md,
215                  STACK_OF(OPENSSL_STRING) *sigopts);
216 int do_X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md,
217                      STACK_OF(OPENSSL_STRING) *sigopts);
218 int do_X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md,
219                      STACK_OF(OPENSSL_STRING) *sigopts);
220
221 extern char *psk_key;
222
223
224 unsigned char *next_protos_parse(size_t *outlen, const char *in);
225
226 void print_cert_checks(BIO *bio, X509 *x,
227                        const char *checkhost,
228                        const char *checkemail, const char *checkip);
229
230 void store_setup_crl_download(X509_STORE *st);
231
232 # define EXT_COPY_NONE   0
233 # define EXT_COPY_ADD    1
234 # define EXT_COPY_ALL    2
235
236 # define NETSCAPE_CERT_HDR       "certificate"
237
238 # define APP_PASS_LEN    1024
239
240 /*
241  * IETF RFC 5280 says serial number must be <= 20 bytes. Use 159 bits
242  * so that the first bit will never be one, so that the DER encoding
243  * rules won't force a leading octet.
244  */
245 # define SERIAL_RAND_BITS        159
246
247 int app_isdir(const char *);
248 int app_access(const char *, int flag);
249 int fileno_stdin(void);
250 int fileno_stdout(void);
251 int raw_read_stdin(void *, int);
252 int raw_write_stdout(const void *, int);
253
254 # define TM_START        0
255 # define TM_STOP         1
256 double app_tminterval(int stop, int usertime);
257
258 void make_uppercase(char *string);
259
260 typedef struct verify_options_st {
261     int depth;
262     int quiet;
263     int error;
264     int return_error;
265 } VERIFY_CB_ARGS;
266
267 extern VERIFY_CB_ARGS verify_args;
268
269 #endif