curl_sasl.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #ifndef HEADER_CURL_SASL_H
  2. #define HEADER_CURL_SASL_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 2012 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at http://curl.haxx.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. ***************************************************************************/
  24. #include <curl/curl.h>
  25. struct SessionHandle;
  26. struct connectdata;
  27. struct ntlmdata;
  28. /* Authentication mechanism values */
  29. #define SASL_AUTH_NONE 0
  30. #define SASL_AUTH_ANY ~0U
  31. /* Authentication mechanism flags */
  32. #define SASL_MECH_LOGIN (1 << 0)
  33. #define SASL_MECH_PLAIN (1 << 1)
  34. #define SASL_MECH_CRAM_MD5 (1 << 2)
  35. #define SASL_MECH_DIGEST_MD5 (1 << 3)
  36. #define SASL_MECH_GSSAPI (1 << 4)
  37. #define SASL_MECH_EXTERNAL (1 << 5)
  38. #define SASL_MECH_NTLM (1 << 6)
  39. #define SASL_MECH_XOAUTH2 (1 << 7)
  40. /* Authentication mechanism strings */
  41. #define SASL_MECH_STRING_LOGIN "LOGIN"
  42. #define SASL_MECH_STRING_PLAIN "PLAIN"
  43. #define SASL_MECH_STRING_CRAM_MD5 "CRAM-MD5"
  44. #define SASL_MECH_STRING_DIGEST_MD5 "DIGEST-MD5"
  45. #define SASL_MECH_STRING_GSSAPI "GSSAPI"
  46. #define SASL_MECH_STRING_EXTERNAL "EXTERNAL"
  47. #define SASL_MECH_STRING_NTLM "NTLM"
  48. #define SASL_MECH_STRING_XOAUTH2 "XOAUTH2"
  49. /* This is used to test whether the line starts with the given mechanism */
  50. #define sasl_mech_equal(line, wordlen, mech) \
  51. (wordlen == (sizeof(mech) - 1) / sizeof(char) && \
  52. !memcmp(line, mech, wordlen))
  53. /* This is used to generate a base64 encoded PLAIN authentication message */
  54. CURLcode Curl_sasl_create_plain_message(struct SessionHandle *data,
  55. const char *userp,
  56. const char *passwdp,
  57. char **outptr, size_t *outlen);
  58. /* This is used to generate a base64 encoded LOGIN authentication message
  59. containing either the user name or password details */
  60. CURLcode Curl_sasl_create_login_message(struct SessionHandle *data,
  61. const char *valuep, char **outptr,
  62. size_t *outlen);
  63. #ifndef CURL_DISABLE_CRYPTO_AUTH
  64. /* This is used to decode a base64 encoded CRAM-MD5 challange message */
  65. CURLcode Curl_sasl_decode_cram_md5_message(const char *chlg64, char **outptr,
  66. size_t *outlen);
  67. /* This is used to generate a base64 encoded CRAM-MD5 response message */
  68. CURLcode Curl_sasl_create_cram_md5_message(struct SessionHandle *data,
  69. const char *chlg,
  70. const char *user,
  71. const char *passwdp,
  72. char **outptr, size_t *outlen);
  73. /* This is used to generate a base64 encoded DIGEST-MD5 response message */
  74. CURLcode Curl_sasl_create_digest_md5_message(struct SessionHandle *data,
  75. const char *chlg64,
  76. const char *userp,
  77. const char *passwdp,
  78. const char *service,
  79. char **outptr, size_t *outlen);
  80. #endif
  81. #ifdef USE_NTLM
  82. /* This is used to generate a base64 encoded NTLM type-1 message */
  83. CURLcode Curl_sasl_create_ntlm_type1_message(const char *userp,
  84. const char *passwdp,
  85. struct ntlmdata *ntlm,
  86. char **outptr,
  87. size_t *outlen);
  88. /* This is used to decode a base64 encoded NTLM type-2 message */
  89. CURLcode Curl_sasl_decode_ntlm_type2_message(struct SessionHandle *data,
  90. const char *type2msg,
  91. struct ntlmdata *ntlm);
  92. /* This is used to generate a base64 encoded NTLM type-3 message */
  93. CURLcode Curl_sasl_create_ntlm_type3_message(struct SessionHandle *data,
  94. const char *userp,
  95. const char *passwdp,
  96. struct ntlmdata *ntlm,
  97. char **outptr, size_t *outlen);
  98. #endif /* USE_NTLM */
  99. /* This is used to generate a base64 encoded XOAUTH2 authentication message
  100. containing the user name and bearer token */
  101. CURLcode Curl_sasl_create_xoauth2_message(struct SessionHandle *data,
  102. const char *user,
  103. const char *bearer,
  104. char **outptr, size_t *outlen);
  105. /* This is used to cleanup any libraries or curl modules used by the sasl
  106. functions */
  107. void Curl_sasl_cleanup(struct connectdata *conn, unsigned int authused);
  108. #endif /* HEADER_CURL_SASL_H */