curl_sasl_sspi.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at http://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. * RFC2831 DIGEST-MD5 authentication
  22. * RFC4422 Simple Authentication and Security Layer (SASL)
  23. *
  24. ***************************************************************************/
  25. #include "curl_setup.h"
  26. #if defined(USE_WINDOWS_SSPI) && !defined(CURL_DISABLE_CRYPTO_AUTH)
  27. #include <curl/curl.h>
  28. #include "curl_sasl.h"
  29. #include "urldata.h"
  30. #include "curl_base64.h"
  31. #include "warnless.h"
  32. #include "curl_memory.h"
  33. #define _MPRINTF_REPLACE /* use our functions only */
  34. #include <curl/mprintf.h>
  35. /* The last #include file should be: */
  36. #include "memdebug.h"
  37. /*
  38. * Curl_sasl_create_digest_md5_message()
  39. *
  40. * This is used to generate an already encoded DIGEST-MD5 response message
  41. * ready for sending to the recipient.
  42. *
  43. * Parameters:
  44. *
  45. * data [in] - The session handle.
  46. * chlg64 [in] - Pointer to the base64 encoded challenge message.
  47. * userp [in] - The user name.
  48. * passdwp [in] - The user's password.
  49. * service [in] - The service type such as www, smtp, pop or imap.
  50. * outptr [in/out] - The address where a pointer to newly allocated memory
  51. * holding the result will be stored upon completion.
  52. * outlen [out] - The length of the output message.
  53. *
  54. * Returns CURLE_OK on success.
  55. */
  56. CURLcode Curl_sasl_create_digest_md5_message(struct SessionHandle *data,
  57. const char *chlg64,
  58. const char *userp,
  59. const char *passwdp,
  60. const char *service,
  61. char **outptr, size_t *outlen)
  62. {
  63. CURLcode result = CURLE_OK;
  64. char *spn = NULL;
  65. size_t chlglen = 0;
  66. unsigned char *chlg = NULL;
  67. unsigned char resp[1024];
  68. CredHandle handle;
  69. CtxtHandle ctx;
  70. PSecPkgInfo SecurityPackage;
  71. SEC_WINNT_AUTH_IDENTITY identity;
  72. SecBuffer chlg_buf;
  73. SecBuffer resp_buf;
  74. SecBufferDesc chlg_desc;
  75. SecBufferDesc resp_desc;
  76. SECURITY_STATUS status;
  77. unsigned long attrs;
  78. TimeStamp tsDummy; /* For Windows 9x compatibility of SSPI calls */
  79. /* Decode the base-64 encoded challenge message */
  80. if(strlen(chlg64) && *chlg64 != '=') {
  81. result = Curl_base64_decode(chlg64, &chlg, &chlglen);
  82. if(result)
  83. return result;
  84. }
  85. /* Ensure we have a valid challenge message */
  86. if(!chlg)
  87. return CURLE_BAD_CONTENT_ENCODING;
  88. /* Ensure we have some login credientials as DigestSSP cannot use the current
  89. Windows user like NTLMSSP can */
  90. if(!userp || !*userp) {
  91. Curl_safefree(chlg);
  92. return CURLE_LOGIN_DENIED;
  93. }
  94. /* Query the security package for DigestSSP */
  95. status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT("WDigest"),
  96. &SecurityPackage);
  97. if(status != SEC_E_OK) {
  98. Curl_safefree(chlg);
  99. return CURLE_NOT_BUILT_IN;
  100. }
  101. /* Calculate our SPN */
  102. spn = aprintf("%s/%s", service, data->easy_conn->host.name);
  103. if(!spn)
  104. return CURLE_OUT_OF_MEMORY;
  105. /* Populate our identity structure */
  106. result = Curl_create_sspi_identity(userp, passwdp, &identity);
  107. if(result) {
  108. Curl_safefree(spn);
  109. Curl_safefree(chlg);
  110. return result;
  111. }
  112. /* Acquire our credientials handle */
  113. status = s_pSecFn->AcquireCredentialsHandle(NULL,
  114. (TCHAR *) TEXT("WDigest"),
  115. SECPKG_CRED_OUTBOUND, NULL,
  116. &identity, NULL, NULL,
  117. &handle, &tsDummy);
  118. if(status != SEC_E_OK) {
  119. Curl_sspi_free_identity(&identity);
  120. Curl_safefree(spn);
  121. Curl_safefree(chlg);
  122. return CURLE_OUT_OF_MEMORY;
  123. }
  124. /* Setup the challenge "input" security buffer */
  125. chlg_desc.ulVersion = SECBUFFER_VERSION;
  126. chlg_desc.cBuffers = 1;
  127. chlg_desc.pBuffers = &chlg_buf;
  128. chlg_buf.BufferType = SECBUFFER_TOKEN;
  129. chlg_buf.pvBuffer = chlg;
  130. chlg_buf.cbBuffer = curlx_uztoul(chlglen);
  131. /* Setup the response "output" security buffer */
  132. resp_desc.ulVersion = SECBUFFER_VERSION;
  133. resp_desc.cBuffers = 1;
  134. resp_desc.pBuffers = &resp_buf;
  135. resp_buf.BufferType = SECBUFFER_TOKEN;
  136. resp_buf.pvBuffer = resp;
  137. resp_buf.cbBuffer = sizeof(resp);
  138. /* Generate our challenge-response message */
  139. status = s_pSecFn->InitializeSecurityContext(&handle,
  140. NULL,
  141. (TCHAR *) spn,
  142. 0, 0, 0,
  143. &chlg_desc,
  144. 0, &ctx,
  145. &resp_desc,
  146. &attrs, &tsDummy);
  147. if(status == SEC_I_COMPLETE_AND_CONTINUE ||
  148. status == SEC_I_CONTINUE_NEEDED)
  149. s_pSecFn->CompleteAuthToken(&handle, &resp_desc);
  150. else if(status != SEC_E_OK) {
  151. s_pSecFn->FreeCredentialsHandle(&handle);
  152. Curl_sspi_free_identity(&identity);
  153. Curl_safefree(spn);
  154. Curl_safefree(chlg);
  155. return CURLE_RECV_ERROR;
  156. }
  157. /* Base64 encode the response */
  158. result = Curl_base64_encode(data, (char *)resp, resp_buf.cbBuffer, outptr,
  159. outlen);
  160. /* Free our handles */
  161. s_pSecFn->DeleteSecurityContext(&ctx);
  162. s_pSecFn->FreeCredentialsHandle(&handle);
  163. /* Free the identity structure */
  164. Curl_sspi_free_identity(&identity);
  165. /* Free the SPN */
  166. Curl_safefree(spn);
  167. /* Free the decoeded challenge message */
  168. Curl_safefree(chlg);
  169. return result;
  170. }
  171. #endif /* USE_WINDOWS_SSPI && !CURL_DISABLE_CRYPTO_AUTH */