]> rtime.felk.cvut.cz Git - hornmich/skoda-qr-demo.git/blob - QRScanner/mobile/jni/thirdparty/curl/lib/http_negotiate.c
Add MuPDF native source codes
[hornmich/skoda-qr-demo.git] / QRScanner / mobile / jni / thirdparty / curl / lib / http_negotiate.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2013, 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  ***************************************************************************/
22
23 #include "curl_setup.h"
24
25 #ifdef HAVE_GSSAPI
26 #ifdef HAVE_OLD_GSSMIT
27 #define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
28 #define NCOMPAT 1
29 #endif
30
31 #ifndef CURL_DISABLE_HTTP
32
33 #include "urldata.h"
34 #include "sendf.h"
35 #include "curl_gssapi.h"
36 #include "rawstr.h"
37 #include "curl_base64.h"
38 #include "http_negotiate.h"
39 #include "curl_memory.h"
40 #include "url.h"
41
42 #ifdef HAVE_SPNEGO
43 #  include <spnegohelp.h>
44 #  ifdef USE_SSLEAY
45 #    ifdef USE_OPENSSL
46 #      include <openssl/objects.h>
47 #    else
48 #      include <objects.h>
49 #    endif
50 #  else
51 #    error "Can't compile SPNEGO support without OpenSSL."
52 #  endif
53 #endif
54
55 #define _MPRINTF_REPLACE /* use our functions only */
56 #include <curl/mprintf.h>
57
58 /* The last #include file should be: */
59 #include "memdebug.h"
60
61 static int
62 get_gss_name(struct connectdata *conn, bool proxy, gss_name_t *server)
63 {
64   struct negotiatedata *neg_ctx = proxy?&conn->data->state.proxyneg:
65     &conn->data->state.negotiate;
66   OM_uint32 major_status, minor_status;
67   gss_buffer_desc token = GSS_C_EMPTY_BUFFER;
68   char name[2048];
69   const char* service;
70
71   /* GSSAPI implementation by Globus (known as GSI) requires the name to be
72      of form "<service>/<fqdn>" instead of <service>@<fqdn> (ie. slash instead
73      of at-sign). Also GSI servers are often identified as 'host' not 'khttp'.
74      Change following lines if you want to use GSI */
75
76   /* IIS uses the <service>@<fqdn> form but uses 'http' as the service name */
77
78   if(neg_ctx->gss)
79     service = "KHTTP";
80   else
81     service = "HTTP";
82
83   token.length = strlen(service) + 1 + strlen(proxy ? conn->proxy.name :
84                                               conn->host.name) + 1;
85   if(token.length + 1 > sizeof(name))
86     return EMSGSIZE;
87
88   snprintf(name, sizeof(name), "%s@%s", service, proxy ? conn->proxy.name :
89            conn->host.name);
90
91   token.value = (void *) name;
92   major_status = gss_import_name(&minor_status,
93                                  &token,
94                                  GSS_C_NT_HOSTBASED_SERVICE,
95                                  server);
96
97   return GSS_ERROR(major_status) ? -1 : 0;
98 }
99
100 static void
101 log_gss_error(struct connectdata *conn, OM_uint32 error_status,
102               const char *prefix)
103 {
104   OM_uint32 maj_stat, min_stat;
105   OM_uint32 msg_ctx = 0;
106   gss_buffer_desc status_string;
107   char buf[1024];
108   size_t len;
109
110   snprintf(buf, sizeof(buf), "%s", prefix);
111   len = strlen(buf);
112   do {
113     maj_stat = gss_display_status(&min_stat,
114                                   error_status,
115                                   GSS_C_MECH_CODE,
116                                   GSS_C_NO_OID,
117                                   &msg_ctx,
118                                   &status_string);
119       if(sizeof(buf) > len + status_string.length + 1) {
120         snprintf(buf + len, sizeof(buf) - len,
121                  ": %s", (char*) status_string.value);
122       len += status_string.length;
123     }
124     gss_release_buffer(&min_stat, &status_string);
125   } while(!GSS_ERROR(maj_stat) && msg_ctx != 0);
126
127   infof(conn->data, "%s\n", buf);
128 }
129
130 /* returning zero (0) means success, everything else is treated as "failure"
131    with no care exactly what the failure was */
132 int Curl_input_negotiate(struct connectdata *conn, bool proxy,
133                          const char *header)
134 {
135   struct SessionHandle *data = conn->data;
136   struct negotiatedata *neg_ctx = proxy?&data->state.proxyneg:
137     &data->state.negotiate;
138   OM_uint32 major_status, minor_status, discard_st;
139   gss_buffer_desc input_token = GSS_C_EMPTY_BUFFER;
140   gss_buffer_desc output_token = GSS_C_EMPTY_BUFFER;
141   int ret;
142   size_t len;
143   size_t rawlen = 0;
144   bool gss;
145   const char* protocol;
146   CURLcode error;
147
148   while(*header && ISSPACE(*header))
149     header++;
150   if(checkprefix("GSS-Negotiate", header)) {
151     protocol = "GSS-Negotiate";
152     gss = TRUE;
153   }
154   else if(checkprefix("Negotiate", header)) {
155     protocol = "Negotiate";
156     gss = FALSE;
157   }
158   else
159     return -1;
160
161   if(neg_ctx->context) {
162     if(neg_ctx->gss != gss) {
163       return -1;
164     }
165   }
166   else {
167     neg_ctx->protocol = protocol;
168     neg_ctx->gss = gss;
169   }
170
171   if(neg_ctx->context && neg_ctx->status == GSS_S_COMPLETE) {
172     /* We finished successfully our part of authentication, but server
173      * rejected it (since we're again here). Exit with an error since we
174      * can't invent anything better */
175     Curl_cleanup_negotiate(data);
176     return -1;
177   }
178
179   if(neg_ctx->server_name == NULL &&
180       (ret = get_gss_name(conn, proxy, &neg_ctx->server_name)))
181     return ret;
182
183   header += strlen(neg_ctx->protocol);
184   while(*header && ISSPACE(*header))
185     header++;
186
187   len = strlen(header);
188   if(len > 0) {
189     error = Curl_base64_decode(header,
190                                (unsigned char **)&input_token.value, &rawlen);
191     if(error || rawlen == 0)
192       return -1;
193     input_token.length = rawlen;
194
195     DEBUGASSERT(input_token.value != NULL);
196
197 #ifdef HAVE_SPNEGO /* Handle SPNEGO */
198     if(checkprefix("Negotiate", header)) {
199       unsigned char  *spnegoToken       = NULL;
200       size_t          spnegoTokenLength = 0;
201       gss_buffer_desc mechToken         = GSS_C_EMPTY_BUFFER;
202
203       spnegoToken = malloc(input_token.length);
204       if(spnegoToken == NULL) {
205         Curl_safefree(input_token.value);
206         return CURLE_OUT_OF_MEMORY;
207       }
208       memcpy(spnegoToken, input_token.value, input_token.length);
209       spnegoTokenLength = input_token.length;
210
211       if(!parseSpnegoTargetToken(spnegoToken,
212                                  spnegoTokenLength,
213                                  NULL,
214                                  NULL,
215                                  (unsigned char**)&mechToken.value,
216                                  &mechToken.length,
217                                  NULL,
218                                  NULL)) {
219         Curl_safefree(spnegoToken);
220         infof(data, "Parse SPNEGO Target Token failed\n");
221       }
222       else if(!mechToken.value || !mechToken.length) {
223         Curl_safefree(spnegoToken);
224         if(mechToken.value)
225           gss_release_buffer(&discard_st, &mechToken);
226         infof(data, "Parse SPNEGO Target Token succeeded (NULL token)\n");
227       }
228       else {
229         Curl_safefree(spnegoToken);
230         Curl_safefree(input_token.value);
231         input_token.value = malloc(mechToken.length);
232         if(input_token.value == NULL) {
233           gss_release_buffer(&discard_st, &mechToken);
234           return CURLE_OUT_OF_MEMORY;
235         }
236         memcpy(input_token.value, mechToken.value, mechToken.length);
237         input_token.length = mechToken.length;
238         gss_release_buffer(&discard_st, &mechToken);
239         infof(data, "Parse SPNEGO Target Token succeeded\n");
240       }
241     }
242 #endif
243   }
244
245   major_status = Curl_gss_init_sec_context(data,
246                                            &minor_status,
247                                            &neg_ctx->context,
248                                            neg_ctx->server_name,
249                                            GSS_C_NO_CHANNEL_BINDINGS,
250                                            &input_token,
251                                            &output_token,
252                                            NULL);
253   Curl_safefree(input_token.value);
254
255   neg_ctx->status = major_status;
256   if(GSS_ERROR(major_status)) {
257     if(output_token.value)
258       gss_release_buffer(&discard_st, &output_token);
259     log_gss_error(conn, minor_status, "gss_init_sec_context() failed: ");
260     return -1;
261   }
262
263   if(!output_token.value || !output_token.length) {
264     if(output_token.value)
265       gss_release_buffer(&discard_st, &output_token);
266     return -1;
267   }
268
269   neg_ctx->output_token = output_token;
270   return 0;
271 }
272
273
274 CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy)
275 {
276   struct negotiatedata *neg_ctx = proxy?&conn->data->state.proxyneg:
277     &conn->data->state.negotiate;
278   char *encoded = NULL;
279   size_t len = 0;
280   char *userp;
281   CURLcode error;
282   OM_uint32 discard_st;
283
284 #ifdef HAVE_SPNEGO /* Handle SPNEGO */
285   if(checkprefix("Negotiate", neg_ctx->protocol)) {
286     ASN1_OBJECT    *object              = NULL;
287     unsigned char  *responseToken       = NULL;
288     size_t          responseTokenLength = 0;
289     gss_buffer_desc spnegoToken         = GSS_C_EMPTY_BUFFER;
290
291     responseToken = malloc(neg_ctx->output_token.length);
292     if(responseToken == NULL)
293       return CURLE_OUT_OF_MEMORY;
294     memcpy(responseToken, neg_ctx->output_token.value,
295            neg_ctx->output_token.length);
296     responseTokenLength = neg_ctx->output_token.length;
297
298     object = OBJ_txt2obj("1.2.840.113554.1.2.2", 1);
299     if(!object) {
300       Curl_safefree(responseToken);
301       return CURLE_OUT_OF_MEMORY;
302     }
303
304     if(!makeSpnegoInitialToken(object,
305                                responseToken,
306                                responseTokenLength,
307                                (unsigned char**)&spnegoToken.value,
308                                &spnegoToken.length)) {
309       Curl_safefree(responseToken);
310       ASN1_OBJECT_free(object);
311       infof(conn->data, "Make SPNEGO Initial Token failed\n");
312     }
313     else if(!spnegoToken.value || !spnegoToken.length) {
314       Curl_safefree(responseToken);
315       ASN1_OBJECT_free(object);
316       if(spnegoToken.value)
317         gss_release_buffer(&discard_st, &spnegoToken);
318       infof(conn->data, "Make SPNEGO Initial Token succeeded (NULL token)\n");
319     }
320     else {
321       Curl_safefree(responseToken);
322       ASN1_OBJECT_free(object);
323       gss_release_buffer(&discard_st, &neg_ctx->output_token);
324       neg_ctx->output_token.value = spnegoToken.value;
325       neg_ctx->output_token.length = spnegoToken.length;
326       infof(conn->data, "Make SPNEGO Initial Token succeeded\n");
327     }
328   }
329 #endif
330   error = Curl_base64_encode(conn->data,
331                              neg_ctx->output_token.value,
332                              neg_ctx->output_token.length,
333                              &encoded, &len);
334   if(error) {
335     gss_release_buffer(&discard_st, &neg_ctx->output_token);
336     neg_ctx->output_token.value = NULL;
337     neg_ctx->output_token.length = 0;
338     return error;
339   }
340
341   if(!encoded || !len) {
342     gss_release_buffer(&discard_st, &neg_ctx->output_token);
343     neg_ctx->output_token.value = NULL;
344     neg_ctx->output_token.length = 0;
345     return CURLE_REMOTE_ACCESS_DENIED;
346   }
347
348   userp = aprintf("%sAuthorization: %s %s\r\n", proxy ? "Proxy-" : "",
349                   neg_ctx->protocol, encoded);
350   if(proxy) {
351     Curl_safefree(conn->allocptr.proxyuserpwd);
352     conn->allocptr.proxyuserpwd = userp;
353   }
354   else {
355     Curl_safefree(conn->allocptr.userpwd);
356     conn->allocptr.userpwd = userp;
357   }
358
359   Curl_safefree(encoded);
360   Curl_cleanup_negotiate(conn->data);
361
362   return (userp == NULL) ? CURLE_OUT_OF_MEMORY : CURLE_OK;
363 }
364
365 static void cleanup(struct negotiatedata *neg_ctx)
366 {
367   OM_uint32 minor_status;
368   if(neg_ctx->context != GSS_C_NO_CONTEXT)
369     gss_delete_sec_context(&minor_status, &neg_ctx->context, GSS_C_NO_BUFFER);
370
371   if(neg_ctx->output_token.value)
372     gss_release_buffer(&minor_status, &neg_ctx->output_token);
373
374   if(neg_ctx->server_name != GSS_C_NO_NAME)
375     gss_release_name(&minor_status, &neg_ctx->server_name);
376
377   memset(neg_ctx, 0, sizeof(*neg_ctx));
378 }
379
380 void Curl_cleanup_negotiate(struct SessionHandle *data)
381 {
382   cleanup(&data->state.negotiate);
383   cleanup(&data->state.proxyneg);
384 }
385
386
387 #endif
388 #endif