2 * Copyright (C) 1995-2007, Index Data ApS
3 * See the file LICENSE for details.
5 * $Id: zgdu.c,v 1.17 2007-01-03 08:42:15 adam Exp $
10 * \brief Implements HTTP and Z39.50 encoding and decoding.
15 #include <yaz/yaz-version.h>
16 #include <yaz/yaz-iconv.h>
20 #define strncasecmp _strnicmp
21 #define strcasecmp _stricmp
24 static int decode_headers_content(ODR o, int off, Z_HTTP_Header **headers,
25 char **content_buf, int *content_len)
31 while (i < o->size-1 && o->buf[i] == '\r')
35 if (o->buf[i] != '\n')
41 if (o->buf[i] == '\r')
50 else if (o->buf[i] == ':')
53 *headers = (Z_HTTP_Header *) odr_malloc(o, sizeof(**headers));
54 (*headers)->name = (char*) odr_malloc(o, i - po + 1);
55 memcpy ((*headers)->name, o->buf + po, i - po);
56 (*headers)->name[i - po] = '\0';
58 while (i < o->size-1 && o->buf[i] == ' ')
60 for (po = i; i < o->size-1 && o->buf[i] != '\r' ; i++)
63 (*headers)->value = (char*) odr_malloc(o, i - po + 1);
64 memcpy ((*headers)->value, o->buf + po, i - po);
65 (*headers)->value[i - po] = '\0';
67 if (!strcasecmp((*headers)->name, "Transfer-Encoding")
69 !strcasecmp((*headers)->value, "chunked"))
71 headers = &(*headers)->next;
75 if (o->buf[i] != '\n')
86 /* we know buffer will be smaller than o->size - i*/
87 *content_buf = (char*) odr_malloc(o, o->size - i);
93 for (; i < o->size-2; i++)
94 if (isdigit(o->buf[i]))
95 chunk_len = chunk_len * 16 +
97 else if (isupper(o->buf[i]))
98 chunk_len = chunk_len * 16 +
99 (o->buf[i] - ('A'-10));
100 else if (islower(o->buf[i]))
101 chunk_len = chunk_len * 16 +
102 (o->buf[i] - ('a'-10));
105 /* chunk extension ... */
106 while (o->buf[i] != '\r' && o->buf[i+1] != '\n')
115 i += 2; /* skip CRLF */
118 if (chunk_len < 0 || off + chunk_len > o->size)
124 memcpy (*content_buf + off, o->buf + i, chunk_len);
125 i += chunk_len + 2; /* skip chunk+CRLF */
139 else if (i == o->size)
146 *content_len = o->size - i;
147 *content_buf = (char*) odr_malloc(o, *content_len + 1);
148 memcpy(*content_buf, o->buf + i, *content_len);
149 (*content_buf)[*content_len] = '\0';
155 void z_HTTP_header_add_content_type(ODR o, Z_HTTP_Header **hp,
156 const char *content_type,
159 const char *l = "Content-Type";
162 char *ctype = odr_malloc(o, strlen(content_type)+strlen(charset) + 15);
163 sprintf(ctype, "%s; charset=%s", content_type, charset);
164 z_HTTP_header_add(o, hp, l, ctype);
167 z_HTTP_header_add(o, hp, l, content_type);
171 void z_HTTP_header_add(ODR o, Z_HTTP_Header **hp, const char *n,
176 *hp = (Z_HTTP_Header *) odr_malloc(o, sizeof(**hp));
177 (*hp)->name = odr_strdup(o, n);
178 (*hp)->value = odr_strdup(o, v);
182 const char *z_HTTP_header_lookup(const Z_HTTP_Header *hp, const char *n)
184 for (; hp; hp = hp->next)
185 if (!yaz_matchstr(hp->name, n))
191 Z_GDU *z_get_HTTP_Request(ODR o)
193 Z_GDU *p = (Z_GDU *) odr_malloc(o, sizeof(*p));
194 Z_HTTP_Request *hreq;
196 p->which = Z_GDU_HTTP_Request;
197 p->u.HTTP_Request = (Z_HTTP_Request *) odr_malloc(o, sizeof(*hreq));
198 hreq = p->u.HTTP_Request;
200 hreq->content_len = 0;
201 hreq->content_buf = 0;
202 hreq->version = "1.1";
203 hreq->method = "POST";
205 z_HTTP_header_add(o, &hreq->headers, "User-Agent",
211 Z_GDU *z_get_HTTP_Request_host_path(ODR odr,
215 Z_GDU *p = z_get_HTTP_Request(odr);
217 p->u.HTTP_Request->path = odr_strdup(odr, path);
221 const char *cp0 = strstr(host, "://");
228 cp1 = strchr(cp0, '/');
230 cp1 = cp0+strlen(cp0);
234 char *h = (char*) odr_malloc(odr, cp1 - cp0 + 1);
235 memcpy (h, cp0, cp1 - cp0);
237 z_HTTP_header_add(odr, &p->u.HTTP_Request->headers,
245 Z_GDU *z_get_HTTP_Response(ODR o, int code)
247 Z_GDU *p = (Z_GDU *) odr_malloc(o, sizeof(*p));
248 Z_HTTP_Response *hres;
250 p->which = Z_GDU_HTTP_Response;
251 p->u.HTTP_Response = (Z_HTTP_Response *) odr_malloc(o, sizeof(*hres));
252 hres = p->u.HTTP_Response;
254 hres->content_len = 0;
255 hres->content_buf = 0;
257 hres->version = "1.1";
258 z_HTTP_header_add(o, &hres->headers, "Server",
262 hres->content_buf = (char*) odr_malloc(o, 400);
263 sprintf (hres->content_buf,
264 "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n"
267 " <TITLE>YAZ " YAZ_VERSION "</TITLE>\n"
270 " <P><A HREF=\"http://www.indexdata.dk/yaz/\">YAZ</A> "
272 " <P>Error: %d</P>\n"
273 " <P>Description: %.50s</P>\n"
276 code, z_HTTP_errmsg(code));
277 hres->content_len = strlen(hres->content_buf);
278 z_HTTP_header_add(o, &hres->headers, "Content-Type", "text/html");
283 const char *z_HTTP_errmsg(int code)
287 else if (code == 400)
288 return "Bad Request";
289 else if (code == 404)
291 else if (code == 405)
292 return "Method Not Allowed";
293 else if (code == 500)
294 return "Internal Error";
296 return "Unknown Error";
299 int z_GDU (ODR o, Z_GDU **p, int opt, const char *name)
301 if (o->direction == ODR_DECODE) {
302 *p = (Z_GDU *) odr_malloc(o, sizeof(**p));
303 if (o->size > 10 && !memcmp(o->buf, "HTTP/", 5))
307 (*p)->which = Z_GDU_HTTP_Response;
309 hr = (*p)->u.HTTP_Response = (Z_HTTP_Response *)
310 odr_malloc(o, sizeof(*hr));
315 while (i < o->size-2 && o->buf[i] != ' ' && o->buf[i] != '\r')
317 hr->version = (char *) odr_malloc(o, i - po + 1);
319 memcpy(hr->version, o->buf + po, i - po);
320 hr->version[i-po] = 0;
321 if (o->buf[i] != ' ')
328 while (i < o->size-2 && o->buf[i] >= '0' && o->buf[i] <= '9')
330 hr->code = hr->code*10 + (o->buf[i] - '0');
333 while (i < o->size-1 && o->buf[i] != '\r')
335 return decode_headers_content(o, i, &hr->headers,
336 &hr->content_buf, &hr->content_len);
338 else if (o->size > 5 &&
339 o->buf[0] >= 0x20 && o->buf[0] < 0x7f
340 && o->buf[1] >= 0x20 && o->buf[1] < 0x7f
341 && o->buf[2] >= 0x20 && o->buf[2] < 0x7f
342 && o->buf[3] >= 0x20 && o->buf[3] < 0x7f)
347 (*p)->which = Z_GDU_HTTP_Request;
348 hr = (*p)->u.HTTP_Request =
349 (Z_HTTP_Request *) odr_malloc(o, sizeof(*hr));
352 for (i = 0; o->buf[i] != ' '; i++)
353 if (i >= o->size-5 || i > 30)
358 hr->method = (char *) odr_malloc(o, i+1);
359 memcpy (hr->method, o->buf, i);
360 hr->method[i] = '\0';
363 for (i = po; o->buf[i] != ' '; i++)
369 hr->path = (char *) odr_malloc(o, i - po + 1);
370 memcpy (hr->path, o->buf+po, i - po);
371 hr->path[i - po] = '\0';
374 if (i > o->size-5 || memcmp(o->buf+i, "HTTP/", 5))
381 while (o->buf[i] != '\r')
390 hr->version = (char *) odr_malloc(o, i - po + 1);
391 memcpy(hr->version, o->buf + po, i - po);
392 hr->version[i - po] = '\0';
394 return decode_headers_content(o, i, &hr->headers,
395 &hr->content_buf, &hr->content_len);
400 (*p)->which = Z_GDU_Z3950;
401 return z_APDU(o, &(*p)->u.z3950, opt, 0);
404 else /* ENCODE or PRINT */
411 case Z_GDU_HTTP_Response:
412 sprintf(sbuf, "HTTP/%s %d %s\r\n", (*p)->u.HTTP_Response->version,
413 (*p)->u.HTTP_Response->code,
414 z_HTTP_errmsg((*p)->u.HTTP_Response->code));
415 odr_write(o, (unsigned char *) sbuf, strlen(sbuf));
416 /* apply Content-Length if not already applied */
417 if (!z_HTTP_header_lookup((*p)->u.HTTP_Response->headers,
421 sprintf(lstr, "Content-Length: %d\r\n",
422 (*p)->u.HTTP_Response->content_len);
423 odr_write(o, (unsigned char *) lstr, strlen(lstr));
425 for (h = (*p)->u.HTTP_Response->headers; h; h = h->next)
427 odr_write(o, (unsigned char *) h->name, strlen(h->name));
428 odr_write(o, (unsigned char *) ": ", 2);
429 odr_write(o, (unsigned char *) h->value, strlen(h->value));
430 odr_write(o, (unsigned char *) "\r\n", 2);
432 odr_write(o, (unsigned char *) "\r\n", 2);
433 if ((*p)->u.HTTP_Response->content_buf)
434 odr_write(o, (unsigned char *)
435 (*p)->u.HTTP_Response->content_buf,
436 (*p)->u.HTTP_Response->content_len);
437 if (o->direction == ODR_PRINT)
439 odr_printf(o, "-- HTTP response:\n%.*s\n", o->top - top0,
441 odr_printf(o, "-- \n");
444 case Z_GDU_HTTP_Request:
445 odr_write(o, (unsigned char *) (*p)->u.HTTP_Request->method,
446 strlen((*p)->u.HTTP_Request->method));
447 odr_write(o, (unsigned char *) " ", 1);
448 odr_write(o, (unsigned char *) (*p)->u.HTTP_Request->path,
449 strlen((*p)->u.HTTP_Request->path));
450 odr_write(o, (unsigned char *) " HTTP/", 6);
451 odr_write(o, (unsigned char *) (*p)->u.HTTP_Request->version,
452 strlen((*p)->u.HTTP_Request->version));
453 odr_write(o, (unsigned char *) "\r\n", 2);
454 if ((*p)->u.HTTP_Request->content_len &&
455 !z_HTTP_header_lookup((*p)->u.HTTP_Request->headers,
459 sprintf(lstr, "Content-Length: %d\r\n",
460 (*p)->u.HTTP_Request->content_len);
461 odr_write(o, (unsigned char *) lstr, strlen(lstr));
463 for (h = (*p)->u.HTTP_Request->headers; h; h = h->next)
465 odr_write(o, (unsigned char *) h->name, strlen(h->name));
466 odr_write(o, (unsigned char *) ": ", 2);
467 odr_write(o, (unsigned char *) h->value, strlen(h->value));
468 odr_write(o, (unsigned char *) "\r\n", 2);
470 odr_write(o, (unsigned char *) "\r\n", 2);
471 if ((*p)->u.HTTP_Request->content_buf)
472 odr_write(o, (unsigned char *)
473 (*p)->u.HTTP_Request->content_buf,
474 (*p)->u.HTTP_Request->content_len);
475 if (o->direction == ODR_PRINT)
477 odr_printf(o, "-- HTTP request:\n%.*s\n", o->top - top0,
479 odr_printf(o, "-- \n");
483 return z_APDU(o, &(*p)->u.z3950, opt, 0);
492 * indent-tabs-mode: nil
494 * vim: shiftwidth=4 tabstop=8 expandtab