Path: blob/main/crypto/openssl/apps/include/apps.h
34878 views
/*1* Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89#ifndef OSSL_APPS_H10# define OSSL_APPS_H1112# include "internal/common.h" /* for HAS_PREFIX */13# include "internal/nelem.h"14# include <assert.h>1516# include <stdarg.h>17# include <sys/types.h>18# ifndef OPENSSL_NO_POSIX_IO19# include <sys/stat.h>20# include <fcntl.h>21# endif2223# 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# include "engine_loader.h"38# include "app_libctx.h"3940/*41* quick macro when you need to pass an unsigned char instead of a char.42* this is true for some implementations of the is*() functions, for43* example.44*/45# define _UC(c) ((unsigned char)(c))4647void app_RAND_load_conf(CONF *c, const char *section);48int app_RAND_write(void);49int app_RAND_load(void);5051extern char *default_config_file; /* may be "" */52extern BIO *bio_in;53extern BIO *bio_out;54extern BIO *bio_err;55extern const unsigned char tls13_aes128gcmsha256_id[];56extern const unsigned char tls13_aes256gcmsha384_id[];57extern BIO_ADDR *ourpeer;5859BIO *dup_bio_in(int format);60BIO *dup_bio_out(int format);61BIO *dup_bio_err(int format);62BIO *bio_open_owner(const char *filename, int format, int private);63BIO *bio_open_default(const char *filename, char mode, int format);64BIO *bio_open_default_quiet(const char *filename, char mode, int format);65int mem_bio_to_file(BIO *in, const char *filename, int format, int private);66char *app_conf_try_string(const CONF *cnf, const char *group, const char *name);67int app_conf_try_number(const CONF *conf, const char *group, const char *name,68long *result);69CONF *app_load_config_bio(BIO *in, const char *filename);70# define app_load_config(filename) app_load_config_internal(filename, 0)71# define app_load_config_quiet(filename) app_load_config_internal(filename, 1)72CONF *app_load_config_internal(const char *filename, int quiet);73CONF *app_load_config_verbose(const char *filename, int verbose);74int app_load_modules(const CONF *config);75CONF *app_load_config_modules(const char *configfile);76void unbuffer(FILE *fp);77void wait_for_async(SSL *s);78# if defined(OPENSSL_SYS_MSDOS)79int has_stdin_waiting(void);80# endif8182void corrupt_signature(const ASN1_STRING *signature);8384/* Helpers for setting X509v3 certificate fields notBefore and notAfter */85int check_cert_time_string(const char *time, const char *desc);86int set_cert_times(X509 *x, const char *startdate, const char *enddate,87int days, int strict_compare_times);8889int set_crl_lastupdate(X509_CRL *crl, const char *lastupdate);90int set_crl_nextupdate(X509_CRL *crl, const char *nextupdate,91long days, long hours, long secs);9293typedef struct args_st {94int size;95int argc;96char **argv;97} ARGS;9899/* We need both wrap and the "real" function because libcrypto uses both. */100int wrap_password_callback(char *buf, int bufsiz, int verify, void *cb_data);101102/* progress callback for dsaparam, dhparam, req, genpkey, etc. */103int progress_cb(EVP_PKEY_CTX *ctx);104105int chopup_args(ARGS *arg, char *buf);106void dump_cert_text(BIO *out, X509 *x);107void print_name(BIO *out, const char *title, const X509_NAME *nm);108void print_bignum_var(BIO *, const BIGNUM *, const char *,109int, unsigned char *);110void print_array(BIO *, const char *, int, const unsigned char *);111int set_nameopt(const char *arg);112unsigned long get_nameopt(void);113int set_dateopt(unsigned long *dateopt, const char *arg);114int set_cert_ex(unsigned long *flags, const char *arg);115int set_name_ex(unsigned long *flags, const char *arg);116int set_ext_copy(int *copy_type, const char *arg);117int copy_extensions(X509 *x, X509_REQ *req, int copy_type);118char *get_passwd(const char *pass, const char *desc);119int app_passwd(const char *arg1, const char *arg2, char **pass1, char **pass2);120int add_oid_section(CONF *conf);121X509_REQ *load_csr(const char *file, int format, const char *desc);122X509_REQ *load_csr_autofmt(const char *infile, int format,123STACK_OF(OPENSSL_STRING) *vfyopts, const char *desc);124X509 *load_cert_pass(const char *uri, int format, int maybe_stdin,125const char *pass, const char *desc);126# define load_cert(uri, format, desc) load_cert_pass(uri, format, 1, NULL, desc)127X509_CRL *load_crl(const char *uri, int format, int maybe_stdin,128const char *desc);129void cleanse(char *str);130void clear_free(char *str);131EVP_PKEY *load_key(const char *uri, int format, int maybe_stdin,132const char *pass, ENGINE *e, const char *desc);133/* first try reading public key, on failure resort to loading private key */134EVP_PKEY *load_pubkey(const char *uri, int format, int maybe_stdin,135const char *pass, ENGINE *e, const char *desc);136EVP_PKEY *load_keyparams(const char *uri, int format, int maybe_stdin,137const char *keytype, const char *desc);138EVP_PKEY *load_keyparams_suppress(const char *uri, int format, int maybe_stdin,139const char *keytype, const char *desc,140int suppress_decode_errors);141char *next_item(char *opt); /* in list separated by comma and/or space */142int load_cert_certs(const char *uri,143X509 **pcert, STACK_OF(X509) **pcerts,144int exclude_http, const char *pass, const char *desc,145X509_VERIFY_PARAM *vpm);146STACK_OF(X509) *load_certs_multifile(char *files, const char *pass,147const char *desc, X509_VERIFY_PARAM *vpm);148X509_STORE *load_certstore(char *input, const char *pass, const char *desc,149X509_VERIFY_PARAM *vpm);150int load_certs(const char *uri, int maybe_stdin, STACK_OF(X509) **certs,151const char *pass, const char *desc);152int load_crls(const char *uri, STACK_OF(X509_CRL) **crls,153const char *pass, const char *desc);154int load_key_certs_crls(const char *uri, int format, int maybe_stdin,155const char *pass, const char *desc, int quiet,156EVP_PKEY **ppkey, EVP_PKEY **ppubkey,157EVP_PKEY **pparams,158X509 **pcert, STACK_OF(X509) **pcerts,159X509_CRL **pcrl, STACK_OF(X509_CRL) **pcrls);160X509_STORE *setup_verify(const char *CAfile, int noCAfile,161const char *CApath, int noCApath,162const char *CAstore, int noCAstore);163__owur int ctx_set_verify_locations(SSL_CTX *ctx,164const char *CAfile, int noCAfile,165const char *CApath, int noCApath,166const char *CAstore, int noCAstore);167168# ifndef OPENSSL_NO_CT169170/*171* Sets the file to load the Certificate Transparency log list from.172* If path is NULL, loads from the default file path.173* Returns 1 on success, 0 otherwise.174*/175__owur int ctx_set_ctlog_list_file(SSL_CTX *ctx, const char *path);176177# endif178179ENGINE *setup_engine_methods(const char *id, unsigned int methods, int debug);180# define setup_engine(e, debug) setup_engine_methods(e, (unsigned int)-1, debug)181void release_engine(ENGINE *e);182int init_engine(ENGINE *e);183int finish_engine(ENGINE *e);184char *make_engine_uri(ENGINE *e, const char *key_id, const char *desc);185186int get_legacy_pkey_id(OSSL_LIB_CTX *libctx, const char *algname, ENGINE *e);187const EVP_MD *get_digest_from_engine(const char *name);188const EVP_CIPHER *get_cipher_from_engine(const char *name);189190# ifndef OPENSSL_NO_OCSP191OCSP_RESPONSE *process_responder(OCSP_REQUEST *req, const char *host,192const char *port, const char *path,193const char *proxy, const char *no_proxy,194int use_ssl, STACK_OF(CONF_VALUE) *headers,195int req_timeout);196# endif197198/* Functions defined in ca.c and also used in ocsp.c */199int unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold,200ASN1_GENERALIZEDTIME **pinvtm, const char *str);201202# define DB_type 0203# define DB_exp_date 1204# define DB_rev_date 2205# define DB_serial 3 /* index - unique */206# define DB_file 4207# define DB_name 5 /* index - unique when active and not disabled */208# define DB_NUMBER 6209210# define DB_TYPE_REV 'R' /* Revoked */211# define DB_TYPE_EXP 'E' /* Expired */212# define DB_TYPE_VAL 'V' /* Valid ; inserted with: ca ... -valid */213# define DB_TYPE_SUSP 'S' /* Suspended */214215typedef struct db_attr_st {216int unique_subject;217} DB_ATTR;218typedef struct ca_db_st {219DB_ATTR attributes;220TXT_DB *db;221char *dbfname;222# ifndef OPENSSL_NO_POSIX_IO223struct stat dbst;224# endif225} CA_DB;226227extern int do_updatedb(CA_DB *db, time_t *now);228229void app_bail_out(char *fmt, ...);230void *app_malloc(size_t sz, const char *what);231232/* load_serial, save_serial, and rotate_serial are also used for CRL numbers */233BIGNUM *load_serial(const char *serialfile, int *exists, int create,234ASN1_INTEGER **retai);235int save_serial(const char *serialfile, const char *suffix,236const BIGNUM *serial, ASN1_INTEGER **retai);237int rotate_serial(const char *serialfile, const char *new_suffix,238const char *old_suffix);239int rand_serial(BIGNUM *b, ASN1_INTEGER *ai);240241CA_DB *load_index(const char *dbfile, DB_ATTR *dbattr);242int index_index(CA_DB *db);243int save_index(const char *dbfile, const char *suffix, CA_DB *db);244int rotate_index(const char *dbfile, const char *new_suffix,245const char *old_suffix);246void free_index(CA_DB *db);247# define index_name_cmp_noconst(a, b) \248index_name_cmp((const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, a), \249(const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, b))250int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b);251int parse_yesno(const char *str, int def);252253X509_NAME *parse_name(const char *str, int chtype, int multirdn,254const char *desc);255void policies_print(X509_STORE_CTX *ctx);256int bio_to_mem(unsigned char **out, int maxlen, BIO *in);257int pkey_ctrl_string(EVP_PKEY_CTX *ctx, const char *value);258int x509_ctrl_string(X509 *x, const char *value);259int x509_req_ctrl_string(X509_REQ *x, const char *value);260int init_gen_str(EVP_PKEY_CTX **pctx,261const char *algname, ENGINE *e, int do_param,262OSSL_LIB_CTX *libctx, const char *propq);263int cert_matches_key(const X509 *cert, const EVP_PKEY *pkey);264int do_X509_sign(X509 *x, int force_v1, EVP_PKEY *pkey, const char *md,265STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx);266int do_X509_verify(X509 *x, EVP_PKEY *pkey, STACK_OF(OPENSSL_STRING) *vfyopts);267int do_X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const char *md,268STACK_OF(OPENSSL_STRING) *sigopts);269int do_X509_REQ_verify(X509_REQ *x, EVP_PKEY *pkey,270STACK_OF(OPENSSL_STRING) *vfyopts);271int do_X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const char *md,272STACK_OF(OPENSSL_STRING) *sigopts);273274extern char *psk_key;275276unsigned char *next_protos_parse(size_t *outlen, const char *in);277278int check_cert_attributes(BIO *bio, X509 *x,279const char *checkhost, const char *checkemail,280const char *checkip, int print);281282void store_setup_crl_download(X509_STORE *st);283284typedef struct app_http_tls_info_st {285const char *server;286const char *port;287int use_proxy;288long timeout;289SSL_CTX *ssl_ctx;290} APP_HTTP_TLS_INFO;291BIO *app_http_tls_cb(BIO *hbio, /* APP_HTTP_TLS_INFO */ void *arg,292int connect, int detail);293void APP_HTTP_TLS_INFO_free(APP_HTTP_TLS_INFO *info);294# ifndef OPENSSL_NO_SOCK295ASN1_VALUE *app_http_get_asn1(const char *url, const char *proxy,296const char *no_proxy, SSL_CTX *ssl_ctx,297const STACK_OF(CONF_VALUE) *headers,298long timeout, const char *expected_content_type,299const ASN1_ITEM *it);300ASN1_VALUE *app_http_post_asn1(const char *host, const char *port,301const char *path, const char *proxy,302const char *no_proxy, SSL_CTX *ctx,303const STACK_OF(CONF_VALUE) *headers,304const char *content_type,305ASN1_VALUE *req, const ASN1_ITEM *req_it,306const char *expected_content_type,307long timeout, const ASN1_ITEM *rsp_it);308# endif309310# define EXT_COPY_NONE 0311# define EXT_COPY_ADD 1312# define EXT_COPY_ALL 2313314# define NETSCAPE_CERT_HDR "certificate"315316# define APP_PASS_LEN 1024317318/*319* IETF RFC 5280 says serial number must be <= 20 bytes. Use 159 bits320* so that the first bit will never be one, so that the DER encoding321* rules won't force a leading octet.322*/323# define SERIAL_RAND_BITS 159324325int app_isdir(const char *);326int app_access(const char *, int flag);327int fileno_stdin(void);328int fileno_stdout(void);329int raw_read_stdin(void *, int);330int raw_write_stdout(const void *, int);331332# define TM_START 0333# define TM_STOP 1334double app_tminterval(int stop, int usertime);335336void make_uppercase(char *string);337338typedef struct verify_options_st {339int depth;340int quiet;341int error;342int return_error;343} VERIFY_CB_ARGS;344345extern VERIFY_CB_ARGS verify_args;346347OSSL_PARAM *app_params_new_from_opts(STACK_OF(OPENSSL_STRING) *opts,348const OSSL_PARAM *paramdefs);349void app_params_free(OSSL_PARAM *params);350int app_provider_load(OSSL_LIB_CTX *libctx, const char *provider_name);351void app_providers_cleanup(void);352353EVP_PKEY *app_keygen(EVP_PKEY_CTX *ctx, const char *alg, int bits, int verbose);354EVP_PKEY *app_paramgen(EVP_PKEY_CTX *ctx, const char *alg);355356#endif357358359