schannel.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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, <info@marc-hoersken.de>, et al.
  11. * Copyright (C) 2012 - 2020, Daniel Stenberg, <daniel@haxx.se>, 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 connectdata *conn, int sockindex);
  51. /* structs to expose only in schannel.c and schannel_verify.c */
  52. #ifdef EXPOSE_SCHANNEL_INTERNAL_STRUCTS
  53. #ifdef __MINGW32__
  54. #include <_mingw.h>
  55. #ifdef __MINGW64_VERSION_MAJOR
  56. #define HAS_MANUAL_VERIFY_API
  57. #endif
  58. #else
  59. #include <wincrypt.h>
  60. #ifdef CERT_CHAIN_REVOCATION_CHECK_CHAIN
  61. #define HAS_MANUAL_VERIFY_API
  62. #endif
  63. #endif
  64. struct Curl_schannel_cred {
  65. CredHandle cred_handle;
  66. TimeStamp time_stamp;
  67. int refcount;
  68. };
  69. struct Curl_schannel_ctxt {
  70. CtxtHandle ctxt_handle;
  71. TimeStamp time_stamp;
  72. };
  73. struct ssl_backend_data {
  74. struct Curl_schannel_cred *cred;
  75. struct Curl_schannel_ctxt *ctxt;
  76. SecPkgContext_StreamSizes stream_sizes;
  77. size_t encdata_length, decdata_length;
  78. size_t encdata_offset, decdata_offset;
  79. unsigned char *encdata_buffer, *decdata_buffer;
  80. /* encdata_is_incomplete: if encdata contains only a partial record that
  81. can't be decrypted without another Curl_read_plain (that is, status is
  82. SEC_E_INCOMPLETE_MESSAGE) then set this true. after Curl_read_plain writes
  83. more bytes into encdata then set this back to false. */
  84. bool encdata_is_incomplete;
  85. unsigned long req_flags, ret_flags;
  86. CURLcode recv_unrecoverable_err; /* schannel_recv had an unrecoverable err */
  87. bool recv_sspi_close_notify; /* true if connection closed by close_notify */
  88. bool recv_connection_closed; /* true if connection closed, regardless how */
  89. bool use_alpn; /* true if ALPN is used for this connection */
  90. #ifdef HAS_MANUAL_VERIFY_API
  91. bool use_manual_cred_validation; /* true if manual cred validation is used */
  92. #endif
  93. };
  94. #endif /* EXPOSE_SCHANNEL_INTERNAL_STRUCTS */
  95. #endif /* USE_SCHANNEL */
  96. #endif /* HEADER_CURL_SCHANNEL_H */