1 1.1 christos /* 2 1.1 christos * Copyright 1995-2023 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 #include <openssl/opensslconf.h> 11 1.1 christos 12 1.1 christos #include <openssl/ssl.h> 13 1.1 christos #include <openssl/srp.h> 14 1.1 christos 15 1.1.1.2 christos #define PORT "4433" 16 1.1.1.2 christos #define PROTOCOL "tcp" 17 1.1 christos 18 1.1 christos #define SSL_VERSION_ALLOWS_RENEGOTIATION(s) \ 19 1.1 christos (SSL_is_dtls(s) || (SSL_version(s) < TLS1_3_VERSION)) 20 1.1 christos 21 1.1 christos typedef int (*do_server_cb)(int s, int stype, int prot, unsigned char *context); 22 1.1 christos void get_sock_info_address(int asock, char **hostname, char **service); 23 1.1 christos int report_server_accept(BIO *out, int asock, int with_address, int with_pid); 24 1.1 christos int do_server(int *accept_sock, const char *host, const char *port, 25 1.1.1.2 christos int family, int type, int protocol, do_server_cb cb, 26 1.1.1.2 christos unsigned char *context, int naccept, BIO *bio_s_out, 27 1.1.1.2 christos int tfo); 28 1.1 christos int verify_callback(int ok, X509_STORE_CTX *ctx); 29 1.1 christos 30 1.1 christos int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file); 31 1.1 christos int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key, 32 1.1.1.2 christos STACK_OF(X509) *chain, int build_chain); 33 1.1 christos int ssl_print_sigalgs(BIO *out, SSL *s); 34 1.1 christos int ssl_print_point_formats(BIO *out, SSL *s); 35 1.1 christos int ssl_print_groups(BIO *out, SSL *s, int noshared); 36 1.1 christos int ssl_print_tmp_key(BIO *out, SSL *s); 37 1.1 christos int init_client(int *sock, const char *host, const char *port, 38 1.1.1.2 christos const char *bindhost, const char *bindport, 39 1.1.1.2 christos int family, int type, int protocol, int tfo, int doconn, 40 1.1.1.2 christos BIO_ADDR **ba_ret); 41 1.1 christos int should_retry(int i); 42 1.1 christos void do_ssl_shutdown(SSL *ssl); 43 1.1 christos 44 1.1 christos long bio_dump_callback(BIO *bio, int cmd, const char *argp, size_t len, 45 1.1.1.2 christos int argi, long argl, int ret, size_t *processed); 46 1.1 christos 47 1.1 christos void apps_ssl_info_callback(const SSL *s, int where, int ret); 48 1.1 christos void msg_cb(int write_p, int version, int content_type, const void *buf, 49 1.1.1.2 christos size_t len, SSL *ssl, void *arg); 50 1.1 christos void tlsext_cb(SSL *s, int client_server, int type, const unsigned char *data, 51 1.1.1.2 christos int len, void *arg); 52 1.1 christos 53 1.1 christos int generate_cookie_callback(SSL *ssl, unsigned char *cookie, 54 1.1.1.2 christos unsigned int *cookie_len); 55 1.1 christos int verify_cookie_callback(SSL *ssl, const unsigned char *cookie, 56 1.1.1.2 christos unsigned int cookie_len); 57 1.1 christos 58 1.1.1.2 christos #ifdef __VMS /* 31 char symbol name limit */ 59 1.1.1.2 christos #define generate_stateless_cookie_callback generate_stateless_cookie_cb 60 1.1.1.2 christos #define verify_stateless_cookie_callback verify_stateless_cookie_cb 61 1.1 christos #endif 62 1.1 christos 63 1.1 christos int generate_stateless_cookie_callback(SSL *ssl, unsigned char *cookie, 64 1.1.1.2 christos size_t *cookie_len); 65 1.1 christos int verify_stateless_cookie_callback(SSL *ssl, const unsigned char *cookie, 66 1.1.1.2 christos size_t cookie_len); 67 1.1 christos 68 1.1 christos typedef struct ssl_excert_st SSL_EXCERT; 69 1.1 christos 70 1.1 christos void ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc); 71 1.1 christos void ssl_excert_free(SSL_EXCERT *exc); 72 1.1 christos int args_excert(int option, SSL_EXCERT **pexc); 73 1.1 christos int load_excert(SSL_EXCERT **pexc); 74 1.1 christos void print_verify_detail(SSL *s, BIO *bio); 75 1.1 christos void print_ssl_summary(SSL *s); 76 1.1 christos int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx); 77 1.1 christos int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, 78 1.1.1.2 christos int crl_download); 79 1.1 christos int ssl_load_stores(SSL_CTX *ctx, const char *vfyCApath, 80 1.1.1.2 christos const char *vfyCAfile, const char *vfyCAstore, 81 1.1.1.2 christos const char *chCApath, const char *chCAfile, 82 1.1.1.2 christos const char *chCAstore, STACK_OF(X509_CRL) *crls, 83 1.1.1.2 christos int crl_download); 84 1.1 christos void ssl_ctx_security_debug(SSL_CTX *ctx, int verbose); 85 1.1 christos int set_keylog_file(SSL_CTX *ctx, const char *keylog_file); 86 1.1 christos void print_ca_names(BIO *bio, SSL *s); 87 1.1 christos void ssl_print_secure_renegotiation_notes(BIO *bio, SSL *s); 88 1.1 christos 89 1.1 christos #ifndef OPENSSL_NO_SRP 90 1.1 christos /* The client side SRP context that we pass to all SRP related callbacks */ 91 1.1 christos typedef struct srp_arg_st { 92 1.1 christos char *srppassin; 93 1.1 christos char *srplogin; 94 1.1.1.2 christos int msg; /* copy from c_msg */ 95 1.1.1.2 christos int debug; /* copy from c_debug */ 96 1.1.1.2 christos int amp; /* allow more groups */ 97 1.1.1.2 christos int strength; /* minimal size for N */ 98 1.1 christos } SRP_ARG; 99 1.1 christos 100 1.1 christos int set_up_srp_arg(SSL_CTX *ctx, SRP_ARG *srp_arg, int srp_lateuser, int c_msg, 101 1.1.1.2 christos int c_debug); 102 1.1 christos void set_up_dummy_srp(SSL_CTX *ctx); 103 1.1 christos 104 1.1 christos /* The server side SRP context that we pass to all SRP related callbacks */ 105 1.1 christos typedef struct srpsrvparm_st { 106 1.1 christos char *login; 107 1.1 christos SRP_VBASE *vb; 108 1.1 christos SRP_user_pwd *user; 109 1.1 christos } srpsrvparm; 110 1.1 christos 111 1.1 christos int set_up_srp_verifier_file(SSL_CTX *ctx, srpsrvparm *srp_callback_parm, 112 1.1.1.2 christos char *srpuserseed, char *srp_verifier_file); 113 1.1 christos void lookup_srp_user(srpsrvparm *srp_callback_parm, BIO *bio_s_out); 114 1.1 christos #endif /* OPENSSL_NO_SRP */ 115