s_apps.h 4.8 KB

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