1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2013 Index Data
3 * See the file LICENSE for details.
7 * \brief Implements HTTP decoding
14 #include <yaz/yaz-version.h>
15 #include <yaz/yaz-iconv.h>
16 #include <yaz/matchstr.h>
18 #include <yaz/base64.h>
20 static int decode_headers_content(ODR o, int off, Z_HTTP_Header **headers,
21 char **content_buf, int *content_len)
27 while (i < o->size-1 && o->buf[i] == '\n')
31 if (o->buf[i] == '\r' && i < o->size-1 && o->buf[i+1] == '\n')
36 if (o->buf[i] == '\n')
45 else if (o->buf[i] == ':')
48 *headers = (Z_HTTP_Header *) odr_malloc(o, sizeof(**headers));
49 (*headers)->name = (char*) odr_malloc(o, i - po + 1);
50 memcpy ((*headers)->name, o->buf + po, i - po);
51 (*headers)->name[i - po] = '\0';
53 while (i < o->size-1 && o->buf[i] == ' ')
55 for (po = i; i < o->size-1 && !strchr("\r\n", o->buf[i]); i++)
58 (*headers)->value = (char*) odr_malloc(o, i - po + 1);
59 memcpy ((*headers)->value, o->buf + po, i - po);
60 (*headers)->value[i - po] = '\0';
62 if (!yaz_strcasecmp((*headers)->name, "Transfer-Encoding")
64 !yaz_strcasecmp((*headers)->value, "chunked"))
66 headers = &(*headers)->next;
67 if (i < o->size-1 && o->buf[i] == '\r')
71 if (o->buf[i] != '\n')
82 /* we know buffer will be smaller than o->size - i*/
83 *content_buf = (char*) odr_malloc(o, o->size - i);
89 for (; i < o->size-2; i++)
90 if (yaz_isdigit(o->buf[i]))
91 chunk_len = chunk_len * 16 +
93 else if (yaz_isupper(o->buf[i]))
94 chunk_len = chunk_len * 16 +
95 (o->buf[i] - ('A'-10));
96 else if (yaz_islower(o->buf[i]))
97 chunk_len = chunk_len * 16 +
98 (o->buf[i] - ('a'-10));
101 /* chunk extension ... */
102 while (o->buf[i] != '\r' && o->buf[i+1] != '\n')
111 i += 2; /* skip CRLF */
114 if (chunk_len < 0 || off + chunk_len > o->size)
120 memcpy (*content_buf + off, o->buf + i, chunk_len);
121 i += chunk_len + 2; /* skip chunk+CRLF */
135 else if (i == o->size)
142 *content_len = o->size - i;
143 *content_buf = (char*) odr_malloc(o, *content_len + 1);
144 memcpy(*content_buf, o->buf + i, *content_len);
145 (*content_buf)[*content_len] = '\0';
151 void z_HTTP_header_add_content_type(ODR o, Z_HTTP_Header **hp,
152 const char *content_type,
155 const char *l = "Content-Type";
158 char *ctype = (char *)
159 odr_malloc(o, strlen(content_type)+strlen(charset) + 15);
160 sprintf(ctype, "%s; charset=%s", content_type, charset);
161 z_HTTP_header_add(o, hp, l, ctype);
164 z_HTTP_header_add(o, hp, l, content_type);
169 * HTTP Basic authentication is described at:
170 * http://tools.ietf.org/html/rfc1945#section-11.1
172 void z_HTTP_header_add_basic_auth(ODR o, Z_HTTP_Header **hp,
173 const char *username, const char *password)
183 len = strlen(username) + strlen(password);
184 tmp = (char *) odr_malloc(o, len+2);
185 sprintf(tmp, "%s:%s", username, password);
186 buf = (char *) odr_malloc(o, (len+1) * 8/6 + 12);
187 strcpy(buf, "Basic ");
188 yaz_base64encode(tmp, &buf[strlen(buf)]);
189 z_HTTP_header_set(o, hp, "Authorization", buf);
193 void z_HTTP_header_add(ODR o, Z_HTTP_Header **hp, const char *n,
198 *hp = (Z_HTTP_Header *) odr_malloc(o, sizeof(**hp));
199 (*hp)->name = odr_strdup(o, n);
200 (*hp)->value = odr_strdup(o, v);
204 void z_HTTP_header_set(ODR o, Z_HTTP_Header **hp, const char *n,
209 if (!yaz_strcasecmp((*hp)->name, n))
211 (*hp)->value = odr_strdup(o, v);
216 *hp = (Z_HTTP_Header *) odr_malloc(o, sizeof(**hp));
217 (*hp)->name = odr_strdup(o, n);
218 (*hp)->value = odr_strdup(o, v);
222 const char *z_HTTP_header_remove(Z_HTTP_Header **hp, const char *n)
226 if (!yaz_strcasecmp((*hp)->name, n))
228 const char *v = (*hp)->value;
237 const char *z_HTTP_header_lookup(const Z_HTTP_Header *hp, const char *n)
239 for (; hp; hp = hp->next)
240 if (!yaz_strcasecmp(hp->name, n))
246 Z_GDU *z_get_HTTP_Request(ODR o)
248 Z_GDU *p = (Z_GDU *) odr_malloc(o, sizeof(*p));
249 Z_HTTP_Request *hreq;
251 p->which = Z_GDU_HTTP_Request;
252 p->u.HTTP_Request = (Z_HTTP_Request *) odr_malloc(o, sizeof(*hreq));
253 hreq = p->u.HTTP_Request;
255 hreq->content_len = 0;
256 hreq->content_buf = 0;
257 hreq->version = "1.1";
258 hreq->method = "POST";
260 z_HTTP_header_add(o, &hreq->headers, "User-Agent", "YAZ/" YAZ_VERSION);
265 Z_GDU *z_get_HTTP_Request_host_path(ODR odr,
269 Z_GDU *p = z_get_HTTP_Request(odr);
271 p->u.HTTP_Request->path = odr_strdup(odr, path);
275 const char *cp0 = strstr(host, "://");
282 cp1 = strchr(cp0, '/');
284 cp1 = cp0+strlen(cp0);
288 char *h = (char*) odr_malloc(odr, cp1 - cp0 + 1);
289 memcpy (h, cp0, cp1 - cp0);
291 z_HTTP_header_add(odr, &p->u.HTTP_Request->headers,
298 Z_GDU *z_get_HTTP_Request_uri(ODR odr, const char *uri, const char *args,
301 Z_GDU *p = z_get_HTTP_Request(odr);
302 const char *cp0 = strstr(uri, "://");
309 cp1 = strchr(cp0, '/');
311 cp1 = cp0+strlen(cp0);
315 char *h = (char*) odr_malloc(odr, cp1 - cp0 + 1);
316 memcpy (h, cp0, cp1 - cp0);
318 z_HTTP_header_add(odr, &p->u.HTTP_Request->headers,
329 p->u.HTTP_Request->path = odr_malloc(odr, cp1 - uri + strlen(args) + 2);
332 memcpy(p->u.HTTP_Request->path, uri, cp1 - uri);
333 strcpy(p->u.HTTP_Request->path + (cp1 - uri), "/");
336 strcpy(p->u.HTTP_Request->path, "/");
337 strcat(p->u.HTTP_Request->path, args);
341 Z_GDU *z_get_HTTP_Response_server(ODR o, int code, const char *details,
342 const char *server, const char *server_url)
344 Z_GDU *p = (Z_GDU *) odr_malloc(o, sizeof(*p));
345 Z_HTTP_Response *hres;
347 p->which = Z_GDU_HTTP_Response;
348 p->u.HTTP_Response = (Z_HTTP_Response *) odr_malloc(o, sizeof(*hres));
349 hres = p->u.HTTP_Response;
351 hres->content_len = 0;
352 hres->content_buf = 0;
354 hres->version = "1.1";
355 z_HTTP_header_add(o, &hres->headers, "Server", server);
358 const char *http_err = z_HTTP_errmsg(code);
359 size_t sz = 400 + strlen(http_err) + (details ?
360 strlen(details) : 0);
361 hres->content_buf = (char*) odr_malloc(o, sz);
362 sprintf(hres->content_buf,
363 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\""
364 " \"http://www.w3.org/TR/html4/strict.dtd\">\n"
367 " <TITLE>%s</TITLE>\n"
370 " <P><A HREF=\"%s\">%s</A></P>\n"
371 " <P>Error: %d</P>\n"
372 " <P>Description: %s</P>\n", server, server_url, server,
376 sprintf(hres->content_buf + strlen(hres->content_buf),
377 "<P>Details: %s</P>\n", details);
379 sprintf(hres->content_buf + strlen(hres->content_buf),
382 hres->content_len = strlen(hres->content_buf);
383 z_HTTP_header_add(o, &hres->headers, "Content-Type", "text/html");
388 Z_GDU *z_get_HTTP_Response_details(ODR o, int code, const char *details)
390 return z_get_HTTP_Response_server(o, code, details, "YAZ/" YAZ_VERSION,
391 "http://www.indexdata.com/yaz");
394 Z_GDU *z_get_HTTP_Response(ODR o, int code)
396 return z_get_HTTP_Response_details(o, code, 0);
399 const char *z_HTTP_errmsg(int code)
406 return "Switching Protocols";
414 return "Non-Authoritative Information";
418 return "Reset Content";
420 return "Partial Content";
422 return "Multiple Choices";
424 return "Moved Permenently";
430 return "Not Modified";
434 return "Temporary Redirect";
436 return "Bad Request";
440 return "Method Not Allowed";
442 return "Not Acceptable";
444 return "Proxy Authentication Required";
446 return "Request Timeout";
452 return "Length Required";
454 return "Precondition Failed";
456 return "Request Entity Too Large";
458 return "Request-URI Too Long";
460 return "Unsupported Media Type";
462 return "Requested Range Not Satisfiable";
464 return "Expectation Failed";
466 return "Internal Error";
468 return "Not Implemented";
470 return "Bad Gateway";
472 return "Service Unavailable";
474 return "Gateway Timeout";
476 return "HTTP Version Not Supported";
478 return "Unknown Error";
482 int yaz_decode_http_response(ODR o, Z_HTTP_Response **hr_p)
485 Z_HTTP_Response *hr = (Z_HTTP_Response *) odr_malloc(o, sizeof(*hr));
492 while (i < o->size-2 && !strchr(" \r\n", o->buf[i]))
494 hr->version = (char *) odr_malloc(o, i - po + 1);
496 memcpy(hr->version, o->buf + po, i - po);
497 hr->version[i-po] = 0;
498 if (o->buf[i] != ' ')
505 while (i < o->size-2 && o->buf[i] >= '0' && o->buf[i] <= '9')
507 hr->code = hr->code*10 + (o->buf[i] - '0');
510 while (i < o->size-1 && o->buf[i] != '\n')
512 return decode_headers_content(o, i, &hr->headers,
513 &hr->content_buf, &hr->content_len);
516 int yaz_decode_http_request(ODR o, Z_HTTP_Request **hr_p)
519 Z_HTTP_Request *hr = (Z_HTTP_Request *) odr_malloc(o, sizeof(*hr));
524 for (i = 0; o->buf[i] != ' '; i++)
525 if (i >= o->size-5 || i > 30)
530 hr->method = (char *) odr_malloc(o, i+1);
531 memcpy (hr->method, o->buf, i);
532 hr->method[i] = '\0';
535 for (i = po; o->buf[i] != ' '; i++)
541 hr->path = (char *) odr_malloc(o, i - po + 1);
542 memcpy (hr->path, o->buf+po, i - po);
543 hr->path[i - po] = '\0';
546 if (i > o->size-5 || memcmp(o->buf+i, "HTTP/", 5))
553 while (i < o->size && !strchr("\r\n", o->buf[i]))
555 hr->version = (char *) odr_malloc(o, i - po + 1);
556 memcpy(hr->version, o->buf + po, i - po);
557 hr->version[i - po] = '\0';
559 if (i < o->size-1 && o->buf[i] == '\r')
561 if (o->buf[i] != '\n')
566 return decode_headers_content(o, i, &hr->headers,
567 &hr->content_buf, &hr->content_len);
570 static void dump_http_package(ODR o, const char *buf, size_t len)
577 odr_printf(o, "%.*s\n", i, buf);
582 odr_printf(o, "%.*s\n", i, buf);
583 odr_printf(o, "(truncated\n", (long) len);
586 else if (buf[i] == 0)
588 odr_printf(o, "%.*s\n", i, buf);
589 odr_printf(o, "(binary data)\n", (long) len);
595 int yaz_encode_http_response(ODR o, Z_HTTP_Response *hr)
601 sprintf(sbuf, "HTTP/%s %d %s\r\n", hr->version,
603 z_HTTP_errmsg(hr->code));
604 odr_write2(o, sbuf, strlen(sbuf));
605 /* use content_len for Content-Length */
606 sprintf(sbuf, "Content-Length: %d\r\n", hr->content_len);
607 odr_write2(o, sbuf, strlen(sbuf));
608 for (h = hr->headers; h; h = h->next)
610 if (yaz_strcasecmp(h->name, "Content-Length")
611 && yaz_strcasecmp(h->name, "Transfer-Encoding"))
612 { /* skip Content-Length if given. content_len rules */
613 odr_write2(o, h->name, strlen(h->name));
614 odr_write2(o, ": ", 2);
615 odr_write2(o, h->value, strlen(h->value));
616 odr_write2(o, "\r\n", 2);
619 odr_write(o, (unsigned char *) "\r\n", 2);
621 odr_write2(o, hr->content_buf, hr->content_len);
622 if (o->direction == ODR_PRINT)
624 odr_printf(o, "-- HTTP response:\n");
625 dump_http_package(o, (const char *) o->buf + top0, o->top - top0);
626 odr_printf(o, "--\n");
631 int yaz_encode_http_request(ODR o, Z_HTTP_Request *hr)
636 odr_write2(o, hr->method, strlen(hr->method));
637 odr_write2(o, " ", 1);
638 odr_write2(o, hr->path, strlen(hr->path));
639 odr_write2(o, " HTTP/", 6);
640 odr_write2(o, hr->version, strlen(hr->version));
641 odr_write2(o, "\r\n", 2);
642 if (hr->content_len &&
643 !z_HTTP_header_lookup(hr->headers,
647 sprintf(lstr, "Content-Length: %d\r\n",
649 odr_write2(o, lstr, strlen(lstr));
651 for (h = hr->headers; h; h = h->next)
653 odr_write2(o, h->name, strlen(h->name));
654 odr_write2(o, ": ", 2);
655 odr_write2(o, h->value, strlen(h->value));
656 odr_write2(o, "\r\n", 2);
658 odr_write2(o, "\r\n", 2);
660 odr_write2(o, hr->content_buf, hr->content_len);
661 if (o->direction == ODR_PRINT)
663 odr_printf(o, "-- HTTP request:\n");
664 dump_http_package(o, (const char *) o->buf + top0, o->top - top0);
665 odr_printf(o, "--\n");
673 * c-file-style: "Stroustrup"
674 * indent-tabs-mode: nil
676 * vim: shiftwidth=4 tabstop=8 expandtab