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