schannel.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. #ifndef HEADER_CURL_SCHANNEL_H
  2. #define HEADER_CURL_SCHANNEL_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 2012, Marc Hoersken, <[email protected]>, et al.
  11. * Copyright (C) 2012 - 2021, Daniel Stenberg, <[email protected]>, et al.
  12. *
  13. * This software is licensed as described in the file COPYING, which
  14. * you should have received as part of this distribution. The terms
  15. * are also available at https://curl.se/docs/copyright.html.
  16. *
  17. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  18. * copies of the Software, and permit persons to whom the Software is
  19. * furnished to do so, under the terms of the COPYING file.
  20. *
  21. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  22. * KIND, either express or implied.
  23. *
  24. ***************************************************************************/
  25. #include "curl_setup.h"
  26. #ifdef USE_SCHANNEL
  27. #include <schnlsp.h>
  28. #include <schannel.h>
  29. #include "curl_sspi.h"
  30. #include "urldata.h"
  31. /* <wincrypt.h> has been included via the above <schnlsp.h>.
  32. * Or in case of ldap.c, it was included via <winldap.h>.
  33. * And since <wincrypt.h> has this:
  34. * #define X509_NAME ((LPCSTR) 7)
  35. *
  36. * And in BoringSSL's <openssl/base.h> there is:
  37. * typedef struct X509_name_st X509_NAME;
  38. * etc.
  39. *
  40. * this will cause all kinds of C-preprocessing paste errors in
  41. * BoringSSL's <openssl/x509.h>: So just undefine those defines here
  42. * (and only here).
  43. */
  44. #if defined(HAVE_BORINGSSL) || defined(OPENSSL_IS_BORINGSSL)
  45. # undef X509_NAME
  46. # undef X509_CERT_PAIR
  47. # undef X509_EXTENSIONS
  48. #endif
  49. extern const struct Curl_ssl Curl_ssl_schannel;
  50. CURLcode Curl_verify_certificate(struct Curl_easy *data,
  51. struct connectdata *conn, int sockindex);
  52. /* structs to expose only in schannel.c and schannel_verify.c */
  53. #ifdef EXPOSE_SCHANNEL_INTERNAL_STRUCTS
  54. #ifdef __MINGW32__
  55. #include <_mingw.h>
  56. #ifdef __MINGW64_VERSION_MAJOR
  57. #define HAS_MANUAL_VERIFY_API
  58. #endif
  59. #else
  60. #include <wincrypt.h>
  61. #ifdef CERT_CHAIN_REVOCATION_CHECK_CHAIN
  62. #define HAS_MANUAL_VERIFY_API
  63. #endif
  64. #endif
  65. #define NUMOF_CIPHERS 45 /* There are 45 listed in the MS headers */
  66. struct Curl_schannel_cred {
  67. CredHandle cred_handle;
  68. TimeStamp time_stamp;
  69. int refcount;
  70. };
  71. struct Curl_schannel_ctxt {
  72. CtxtHandle ctxt_handle;
  73. TimeStamp time_stamp;
  74. };
  75. struct ssl_backend_data {
  76. struct Curl_schannel_cred *cred;
  77. struct Curl_schannel_ctxt *ctxt;
  78. SecPkgContext_StreamSizes stream_sizes;
  79. size_t encdata_length, decdata_length;
  80. size_t encdata_offset, decdata_offset;
  81. unsigned char *encdata_buffer, *decdata_buffer;
  82. /* encdata_is_incomplete: if encdata contains only a partial record that
  83. can't be decrypted without another Curl_read_plain (that is, status is
  84. SEC_E_INCOMPLETE_MESSAGE) then set this true. after Curl_read_plain writes
  85. more bytes into encdata then set this back to false. */
  86. bool encdata_is_incomplete;
  87. unsigned long req_flags, ret_flags;
  88. CURLcode recv_unrecoverable_err; /* schannel_recv had an unrecoverable err */
  89. bool recv_sspi_close_notify; /* true if connection closed by close_notify */
  90. bool recv_connection_closed; /* true if connection closed, regardless how */
  91. bool use_alpn; /* true if ALPN is used for this connection */
  92. #ifdef HAS_MANUAL_VERIFY_API
  93. bool use_manual_cred_validation; /* true if manual cred validation is used */
  94. #endif
  95. ALG_ID algIds[NUMOF_CIPHERS];
  96. };
  97. #endif /* EXPOSE_SCHANNEL_INTERNAL_STRUCTS */
  98. #endif /* USE_SCHANNEL */
  99. #endif /* HEADER_CURL_SCHANNEL_H */