krb5.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. /* GSSAPI/krb5 support for FTP - loosely based on old krb4.c
  2. *
  3. * Copyright (c) 1995, 1996, 1997, 1998, 1999, 2013 Kungliga Tekniska Högskolan
  4. * (Royal Institute of Technology, Stockholm, Sweden).
  5. * Copyright (c) 2004 - 2012 Daniel Stenberg
  6. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. *
  19. * 3. Neither the name of the Institute nor the names of its contributors
  20. * may be used to endorse or promote products derived from this software
  21. * without specific prior written permission.
  22. *
  23. * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
  24. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
  27. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33. * SUCH DAMAGE. */
  34. #include "curl_setup.h"
  35. #ifndef CURL_DISABLE_FTP
  36. #ifdef HAVE_GSSAPI
  37. #ifdef HAVE_OLD_GSSMIT
  38. #define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
  39. #define NCOMPAT 1
  40. #endif
  41. #ifdef HAVE_NETDB_H
  42. #include <netdb.h>
  43. #endif
  44. #include "urldata.h"
  45. #include "curl_base64.h"
  46. #include "ftp.h"
  47. #include "curl_gssapi.h"
  48. #include "sendf.h"
  49. #include "curl_sec.h"
  50. #include "curl_memory.h"
  51. #include "warnless.h"
  52. #define _MPRINTF_REPLACE /* use our functions only */
  53. #include <curl/mprintf.h>
  54. /* The last #include file should be: */
  55. #include "memdebug.h"
  56. #define LOCAL_ADDR (&conn->local_addr)
  57. #define REMOTE_ADDR conn->ip_addr->ai_addr
  58. static int
  59. krb5_init(void *app_data)
  60. {
  61. gss_ctx_id_t *context = app_data;
  62. /* Make sure our context is initialized for krb5_end. */
  63. *context = GSS_C_NO_CONTEXT;
  64. return 0;
  65. }
  66. static int
  67. krb5_check_prot(void *app_data, int level)
  68. {
  69. (void)app_data; /* unused */
  70. if(level == PROT_CONFIDENTIAL)
  71. return -1;
  72. return 0;
  73. }
  74. static int
  75. krb5_decode(void *app_data, void *buf, int len,
  76. int level UNUSED_PARAM,
  77. struct connectdata *conn UNUSED_PARAM)
  78. {
  79. gss_ctx_id_t *context = app_data;
  80. OM_uint32 maj, min;
  81. gss_buffer_desc enc, dec;
  82. (void)level;
  83. (void)conn;
  84. enc.value = buf;
  85. enc.length = len;
  86. maj = gss_unseal(&min, *context, &enc, &dec, NULL, NULL);
  87. if(maj != GSS_S_COMPLETE) {
  88. if(len >= 4)
  89. strcpy(buf, "599 ");
  90. return -1;
  91. }
  92. memcpy(buf, dec.value, dec.length);
  93. len = curlx_uztosi(dec.length);
  94. gss_release_buffer(&min, &dec);
  95. return len;
  96. }
  97. static int
  98. krb5_overhead(void *app_data, int level, int len)
  99. {
  100. /* no arguments are used */
  101. (void)app_data;
  102. (void)level;
  103. (void)len;
  104. return 0;
  105. }
  106. static int
  107. krb5_encode(void *app_data, const void *from, int length, int level, void **to,
  108. struct connectdata *conn UNUSED_PARAM)
  109. {
  110. gss_ctx_id_t *context = app_data;
  111. gss_buffer_desc dec, enc;
  112. OM_uint32 maj, min;
  113. int state;
  114. int len;
  115. /* shut gcc up */
  116. conn = NULL;
  117. /* NOTE that the cast is safe, neither of the krb5, gnu gss and heimdal
  118. * libraries modify the input buffer in gss_seal()
  119. */
  120. dec.value = (void*)from;
  121. dec.length = length;
  122. maj = gss_seal(&min, *context,
  123. level == PROT_PRIVATE,
  124. GSS_C_QOP_DEFAULT,
  125. &dec, &state, &enc);
  126. if(maj != GSS_S_COMPLETE)
  127. return -1;
  128. /* malloc a new buffer, in case gss_release_buffer doesn't work as
  129. expected */
  130. *to = malloc(enc.length);
  131. if(!*to)
  132. return -1;
  133. memcpy(*to, enc.value, enc.length);
  134. len = curlx_uztosi(enc.length);
  135. gss_release_buffer(&min, &enc);
  136. return len;
  137. }
  138. static int
  139. krb5_auth(void *app_data, struct connectdata *conn)
  140. {
  141. int ret = AUTH_OK;
  142. char *p;
  143. const char *host = conn->host.name;
  144. ssize_t nread;
  145. curl_socklen_t l = sizeof(conn->local_addr);
  146. struct SessionHandle *data = conn->data;
  147. CURLcode result;
  148. const char *service = "ftp", *srv_host = "host";
  149. gss_buffer_desc input_buffer, output_buffer, _gssresp, *gssresp;
  150. OM_uint32 maj, min;
  151. gss_name_t gssname;
  152. gss_ctx_id_t *context = app_data;
  153. struct gss_channel_bindings_struct chan;
  154. size_t base64_sz = 0;
  155. if(getsockname(conn->sock[FIRSTSOCKET],
  156. (struct sockaddr *)LOCAL_ADDR, &l) < 0)
  157. perror("getsockname()");
  158. chan.initiator_addrtype = GSS_C_AF_INET;
  159. chan.initiator_address.length = l - 4;
  160. chan.initiator_address.value =
  161. &((struct sockaddr_in *)LOCAL_ADDR)->sin_addr.s_addr;
  162. chan.acceptor_addrtype = GSS_C_AF_INET;
  163. chan.acceptor_address.length = l - 4;
  164. chan.acceptor_address.value =
  165. &((struct sockaddr_in *)REMOTE_ADDR)->sin_addr.s_addr;
  166. chan.application_data.length = 0;
  167. chan.application_data.value = NULL;
  168. /* this loop will execute twice (once for service, once for host) */
  169. for(;;) {
  170. /* this really shouldn't be repeated here, but can't help it */
  171. if(service == srv_host) {
  172. result = Curl_ftpsendf(conn, "AUTH GSSAPI");
  173. if(result)
  174. return -2;
  175. if(Curl_GetFTPResponse(&nread, conn, NULL))
  176. return -1;
  177. if(data->state.buffer[0] != '3')
  178. return -1;
  179. }
  180. input_buffer.value = data->state.buffer;
  181. input_buffer.length = snprintf(input_buffer.value, BUFSIZE, "%s@%s",
  182. service, host);
  183. maj = gss_import_name(&min, &input_buffer, GSS_C_NT_HOSTBASED_SERVICE,
  184. &gssname);
  185. if(maj != GSS_S_COMPLETE) {
  186. gss_release_name(&min, &gssname);
  187. if(service == srv_host) {
  188. Curl_failf(data, "Error importing service name %s",
  189. input_buffer.value);
  190. return AUTH_ERROR;
  191. }
  192. service = srv_host;
  193. continue;
  194. }
  195. /* We pass NULL as |output_name_type| to avoid a leak. */
  196. gss_display_name(&min, gssname, &output_buffer, NULL);
  197. Curl_infof(data, "Trying against %s\n", output_buffer.value);
  198. gssresp = GSS_C_NO_BUFFER;
  199. *context = GSS_C_NO_CONTEXT;
  200. do {
  201. /* Release the buffer at each iteration to avoid leaking: the first time
  202. we are releasing the memory from gss_display_name. The last item is
  203. taken care by a final gss_release_buffer. */
  204. gss_release_buffer(&min, &output_buffer);
  205. ret = AUTH_OK;
  206. maj = Curl_gss_init_sec_context(data,
  207. &min,
  208. context,
  209. gssname,
  210. &chan,
  211. gssresp,
  212. &output_buffer,
  213. NULL);
  214. if(gssresp) {
  215. free(_gssresp.value);
  216. gssresp = NULL;
  217. }
  218. if(GSS_ERROR(maj)) {
  219. Curl_infof(data, "Error creating security context\n");
  220. ret = AUTH_ERROR;
  221. break;
  222. }
  223. if(output_buffer.length != 0) {
  224. result = Curl_base64_encode(data, (char *)output_buffer.value,
  225. output_buffer.length, &p, &base64_sz);
  226. if(result) {
  227. Curl_infof(data,"base64-encoding: %s\n", curl_easy_strerror(result));
  228. ret = AUTH_CONTINUE;
  229. break;
  230. }
  231. result = Curl_ftpsendf(conn, "ADAT %s", p);
  232. free(p);
  233. if(result) {
  234. ret = -2;
  235. break;
  236. }
  237. if(Curl_GetFTPResponse(&nread, conn, NULL)) {
  238. ret = -1;
  239. break;
  240. }
  241. if(data->state.buffer[0] != '2' && data->state.buffer[0] != '3') {
  242. Curl_infof(data, "Server didn't accept auth data\n");
  243. ret = AUTH_ERROR;
  244. break;
  245. }
  246. p = data->state.buffer + 4;
  247. p = strstr(p, "ADAT=");
  248. if(p) {
  249. result = Curl_base64_decode(p + 5,
  250. (unsigned char **)&_gssresp.value,
  251. &_gssresp.length);
  252. if(result) {
  253. Curl_failf(data,"base64-decoding: %s", curl_easy_strerror(result));
  254. ret = AUTH_CONTINUE;
  255. break;
  256. }
  257. }
  258. gssresp = &_gssresp;
  259. }
  260. } while(maj == GSS_S_CONTINUE_NEEDED);
  261. gss_release_name(&min, &gssname);
  262. gss_release_buffer(&min, &output_buffer);
  263. if(gssresp)
  264. free(_gssresp.value);
  265. if(ret == AUTH_OK || service == srv_host)
  266. return ret;
  267. service = srv_host;
  268. }
  269. return ret;
  270. }
  271. static void krb5_end(void *app_data)
  272. {
  273. OM_uint32 min;
  274. gss_ctx_id_t *context = app_data;
  275. if(*context != GSS_C_NO_CONTEXT) {
  276. #ifdef DEBUGBUILD
  277. OM_uint32 maj =
  278. #endif
  279. gss_delete_sec_context(&min, context, GSS_C_NO_BUFFER);
  280. DEBUGASSERT(maj == GSS_S_COMPLETE);
  281. }
  282. }
  283. struct Curl_sec_client_mech Curl_krb5_client_mech = {
  284. "GSSAPI",
  285. sizeof(gss_ctx_id_t),
  286. krb5_init,
  287. krb5_auth,
  288. krb5_end,
  289. krb5_check_prot,
  290. krb5_overhead,
  291. krb5_encode,
  292. krb5_decode
  293. };
  294. #endif /* HAVE_GSSAPI */
  295. #endif /* CURL_DISABLE_FTP */