Add new CURLOPT_GSSAPI_DELEGATION option.
[platform/upstream/curl.git] / lib / krb5.c
1 /* GSSAPI/krb5 support for FTP - loosely based on old krb4.c
2  *
3  * Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska Högskolan
4  * (Royal Institute of Technology, Stockholm, Sweden).
5  * Copyright (c) 2004 - 2011 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
35 #include "setup.h"
36
37 #ifndef CURL_DISABLE_FTP
38 #ifdef HAVE_GSSAPI
39
40 #ifdef HAVE_OLD_GSSMIT
41 #define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
42 #define NCOMPAT 1
43 #endif
44
45 #ifdef HAVE_NETDB_H
46 #include <netdb.h>
47 #endif
48
49 #include "urldata.h"
50 #include "curl_base64.h"
51 #include "ftp.h"
52 #include "curl_gssapi.h"
53 #include "sendf.h"
54 #include "krb4.h"
55 #include "curl_memory.h"
56
57 #define _MPRINTF_REPLACE /* use our functions only */
58 #include <curl/mprintf.h>
59
60 /* The last #include file should be: */
61 #include "memdebug.h"
62
63 #define LOCAL_ADDR (&conn->local_addr)
64 #define REMOTE_ADDR conn->ip_addr->ai_addr
65
66 static int
67 krb5_init(void *app_data)
68 {
69   gss_ctx_id_t *context = app_data;
70   /* Make sure our context is initialized for krb5_end. */
71   *context = GSS_C_NO_CONTEXT;
72   return 0;
73 }
74
75 static int
76 krb5_check_prot(void *app_data, int level)
77 {
78   (void)app_data; /* unused */
79   if(level == PROT_CONFIDENTIAL)
80     return -1;
81   return 0;
82 }
83
84 static int
85 krb5_decode(void *app_data, void *buf, int len,
86             int level UNUSED_PARAM,
87             struct connectdata *conn UNUSED_PARAM)
88 {
89   gss_ctx_id_t *context = app_data;
90   OM_uint32 maj, min;
91   gss_buffer_desc enc, dec;
92
93   (void)level;
94   (void)conn;
95
96   enc.value = buf;
97   enc.length = len;
98   maj = gss_unseal(&min, *context, &enc, &dec, NULL, NULL);
99   if(maj != GSS_S_COMPLETE) {
100     if(len >= 4)
101       strcpy(buf, "599 ");
102     return -1;
103   }
104
105   memcpy(buf, dec.value, dec.length);
106   len = dec.length;
107   gss_release_buffer(&min, &dec);
108
109   return len;
110 }
111
112 static int
113 krb5_overhead(void *app_data, int level, int len)
114 {
115   /* no arguments are used */
116   (void)app_data;
117   (void)level;
118   (void)len;
119   return 0;
120 }
121
122 static int
123 krb5_encode(void *app_data, const void *from, int length, int level, void **to,
124             struct connectdata *conn UNUSED_PARAM)
125 {
126   gss_ctx_id_t *context = app_data;
127   gss_buffer_desc dec, enc;
128   OM_uint32 maj, min;
129   int state;
130   int len;
131
132   /* shut gcc up */
133   conn = NULL;
134
135   /* NOTE that the cast is safe, neither of the krb5, gnu gss and heimdal
136    * libraries modify the input buffer in gss_seal()
137    */
138   dec.value = (void*)from;
139   dec.length = length;
140   maj = gss_seal(&min, *context,
141                  level == PROT_PRIVATE,
142                  GSS_C_QOP_DEFAULT,
143                  &dec, &state, &enc);
144
145   if(maj != GSS_S_COMPLETE)
146     return -1;
147
148   /* malloc a new buffer, in case gss_release_buffer doesn't work as
149      expected */
150   *to = malloc(enc.length);
151   if(!*to)
152     return -1;
153   memcpy(*to, enc.value, enc.length);
154   len = enc.length;
155   gss_release_buffer(&min, &enc);
156   return len;
157 }
158
159 static int
160 krb5_auth(void *app_data, struct connectdata *conn)
161 {
162   int ret = AUTH_OK;
163   char *p;
164   const char *host = conn->host.name;
165   ssize_t nread;
166   curl_socklen_t l = sizeof(conn->local_addr);
167   struct SessionHandle *data = conn->data;
168   CURLcode result;
169   const char *service = "ftp", *srv_host = "host";
170   gss_buffer_desc input_buffer, output_buffer, _gssresp, *gssresp;
171   OM_uint32 maj, min;
172   gss_name_t gssname;
173   gss_ctx_id_t *context = app_data;
174   struct gss_channel_bindings_struct chan;
175
176   if(getsockname(conn->sock[FIRSTSOCKET],
177                  (struct sockaddr *)LOCAL_ADDR, &l) < 0)
178     perror("getsockname()");
179
180   chan.initiator_addrtype = GSS_C_AF_INET;
181   chan.initiator_address.length = l - 4;
182   chan.initiator_address.value =
183     &((struct sockaddr_in *)LOCAL_ADDR)->sin_addr.s_addr;
184   chan.acceptor_addrtype = GSS_C_AF_INET;
185   chan.acceptor_address.length = l - 4;
186   chan.acceptor_address.value =
187     &((struct sockaddr_in *)REMOTE_ADDR)->sin_addr.s_addr;
188   chan.application_data.length = 0;
189   chan.application_data.value = NULL;
190
191   /* this loop will execute twice (once for service, once for host) */
192   while(1) {
193     /* this really shouldn't be repeated here, but can't help it */
194     if(service == srv_host) {
195       result = Curl_ftpsendf(conn, "AUTH GSSAPI");
196
197       if(result)
198         return -2;
199       if(Curl_GetFTPResponse(&nread, conn, NULL))
200         return -1;
201
202       if(data->state.buffer[0] != '3')
203         return -1;
204     }
205
206     input_buffer.value = data->state.buffer;
207     input_buffer.length = snprintf(input_buffer.value, BUFSIZE, "%s@%s",
208                                    service, host);
209     maj = gss_import_name(&min, &input_buffer, GSS_C_NT_HOSTBASED_SERVICE,
210                           &gssname);
211     if(maj != GSS_S_COMPLETE) {
212       gss_release_name(&min, &gssname);
213       if(service == srv_host) {
214         Curl_failf(data, "Error importing service name %s",
215                    input_buffer.value);
216         return AUTH_ERROR;
217       }
218       service = srv_host;
219       continue;
220     }
221     /* We pass NULL as |output_name_type| to avoid a leak. */
222     gss_display_name(&min, gssname, &output_buffer, NULL);
223     Curl_infof(data, "Trying against %s\n", output_buffer.value);
224     gssresp = GSS_C_NO_BUFFER;
225     *context = GSS_C_NO_CONTEXT;
226
227     do {
228       /* Release the buffer at each iteration to avoid leaking: the first time
229          we are releasing the memory from gss_display_name. The last item is
230          taken care by a final gss_release_buffer. */
231       gss_release_buffer(&min, &output_buffer);
232       ret = AUTH_OK;
233       maj = Curl_gss_init_sec_context(data,
234                                       &min,
235                                       context,
236                                       gssname,
237                                       &chan,
238                                       gssresp,
239                                       &output_buffer,
240                                       NULL);
241
242       if(gssresp) {
243         free(_gssresp.value);
244         gssresp = NULL;
245       }
246
247       if(GSS_ERROR(maj)) {
248         Curl_infof(data, "Error creating security context\n");
249         ret = AUTH_ERROR;
250         break;
251       }
252
253       if(output_buffer.length != 0) {
254         if(Curl_base64_encode(data, (char *)output_buffer.value,
255                               output_buffer.length, &p) < 1) {
256           Curl_infof(data, "Out of memory base64-encoding\n");
257           ret = AUTH_CONTINUE;
258           break;
259         }
260
261         result = Curl_ftpsendf(conn, "ADAT %s", p);
262
263         free(p);
264
265         if(result) {
266           ret = -2;
267           break;
268         }
269
270         if(Curl_GetFTPResponse(&nread, conn, NULL)) {
271           ret = -1;
272           break;
273         }
274
275         if(data->state.buffer[0] != '2' && data->state.buffer[0] != '3') {
276           Curl_infof(data, "Server didn't accept auth data\n");
277           ret = AUTH_ERROR;
278           break;
279         }
280
281         p = data->state.buffer + 4;
282         p = strstr(p, "ADAT=");
283         if(p) {
284           _gssresp.length = Curl_base64_decode(p + 5, (unsigned char **)
285                                                &_gssresp.value);
286           if(_gssresp.length < 1) {
287             Curl_failf(data, "Out of memory base64-encoding\n");
288             ret = AUTH_CONTINUE;
289             break;
290           }
291         }
292
293         gssresp = &_gssresp;
294       }
295     } while(maj == GSS_S_CONTINUE_NEEDED);
296
297     gss_release_name(&min, &gssname);
298     gss_release_buffer(&min, &output_buffer);
299
300     if(gssresp)
301       free(_gssresp.value);
302
303     if(ret == AUTH_OK || service == srv_host)
304       return ret;
305
306     service = srv_host;
307   }
308   return ret;
309 }
310
311 static void krb5_end(void *app_data)
312 {
313     OM_uint32 maj, min;
314     gss_ctx_id_t *context = app_data;
315     if(*context != GSS_C_NO_CONTEXT) {
316       maj = gss_delete_sec_context(&min, context, GSS_C_NO_BUFFER);
317       DEBUGASSERT(maj == GSS_S_COMPLETE);
318     }
319 }
320
321 struct Curl_sec_client_mech Curl_krb5_client_mech = {
322     "GSSAPI",
323     sizeof(gss_ctx_id_t),
324     krb5_init,
325     krb5_auth,
326     krb5_end,
327     krb5_check_prot,
328     krb5_overhead,
329     krb5_encode,
330     krb5_decode
331 };
332
333 #endif /* HAVE_GSSAPI */
334 #endif /* CURL_DISABLE_FTP */