1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2013 Index Data
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
32 typedef int socklen_t;
36 #include <sys/socket.h>
39 #include <sys/types.h>
41 #include <yaz/snprintf.h>
58 #include <yaz/yaz-util.h>
59 #include <yaz/comstack.h>
61 #include <yaz/mutex.h>
66 #include "parameters.h"
68 #define MAX_HTTP_HEADER 4096
71 #define strncasecmp _strnicmp
72 #define strcasecmp _stricmp
77 #define HTTP_BUF_SIZE 4096
81 struct http_buf *next;
85 static void proxy_io(IOCHAN i, int event);
86 static struct http_channel *http_channel_create(http_server_t http_server,
88 struct conf_server *server);
89 static void http_channel_destroy(IOCHAN i);
90 static http_server_t http_server_create(void);
91 static void http_server_incref(http_server_t hs);
94 #define CLOSESOCKET(x) closesocket(x)
96 #define CLOSESOCKET(x) close(x)
104 http_sessions_t http_sessions;
105 struct sockaddr_in *proxy_addr;
109 struct http_channel_observer_s {
112 http_channel_destroy_t destroy;
113 struct http_channel_observer_s *next;
114 struct http_channel *chan;
118 const char *http_lookup_header(struct http_header *header,
121 for (; header; header = header->next)
122 if (!strcasecmp(name, header->name))
123 return header->value;
127 static struct http_buf *http_buf_create(http_server_t hs)
129 struct http_buf *r = xmalloc(sizeof(*r));
136 static void http_buf_destroy(http_server_t hs, struct http_buf *b)
141 static void http_buf_destroy_queue(http_server_t hs, struct http_buf *b)
147 http_buf_destroy(hs, b);
152 static struct http_buf *http_buf_bybuf(http_server_t hs, char *b, int len)
154 struct http_buf *res = 0;
155 struct http_buf **p = &res;
160 if (tocopy > HTTP_BUF_SIZE)
161 tocopy = HTTP_BUF_SIZE;
162 *p = http_buf_create(hs);
163 memcpy((*p)->buf, b, tocopy);
172 // Add a (chain of) buffers to the end of an existing queue.
173 static void http_buf_enqueue(struct http_buf **queue, struct http_buf *b)
176 queue = &(*queue)->next;
180 static struct http_buf *http_buf_bywrbuf(http_server_t hs, WRBUF wrbuf)
182 // Heavens to Betsy (buf)!
183 return http_buf_bybuf(hs, wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
186 // Non-destructively collapse chain of buffers into a string (max *len)
188 static void http_buf_peek(struct http_buf *b, char *buf, int len)
191 while (b && rd < len)
193 int toread = len - rd;
196 memcpy(buf + rd, b->buf + b->offset, toread);
203 static int http_buf_size(struct http_buf *b)
206 for (; b; b = b->next)
211 // Ddestructively munch up to len from head of queue.
212 static int http_buf_read(http_server_t hs,
213 struct http_buf **b, char *buf, int len)
216 while ((*b) && rd < len)
218 int toread = len - rd;
219 if (toread > (*b)->len)
221 memcpy(buf + rd, (*b)->buf + (*b)->offset, toread);
223 if (toread < (*b)->len)
226 (*b)->offset += toread;
231 struct http_buf *n = (*b)->next;
232 http_buf_destroy(hs, *b);
240 // Buffers may overlap.
241 static void urldecode(char *i, char *o)
250 else if (*i == '%' && i[1] && i[2])
254 sscanf(i, "%2x", &v);
264 // Warning: Buffers may not overlap
265 void urlencode(const char *i, char *o)
269 if (strchr(" /:", *i))
271 sprintf(o, "%%%.2X", (int) *i);
281 void http_addheader(struct http_response *r, const char *name, const char *value)
283 struct http_channel *c = r->channel;
284 struct http_header *h = nmem_malloc(c->nmem, sizeof *h);
285 h->name = nmem_strdup(c->nmem, name);
286 h->value = nmem_strdup(c->nmem, value);
287 h->next = r->headers;
291 const char *http_argbyname(struct http_request *r, const char *name)
293 struct http_argument *p;
296 for (p = r->arguments; p; p = p->next)
297 if (!strcmp(p->name, name))
302 const char *http_headerbyname(struct http_header *h, const char *name)
304 for (; h; h = h->next)
305 if (!strcmp(h->name, name))
310 struct http_response *http_create_response(struct http_channel *c)
312 struct http_response *r = nmem_malloc(c->nmem, sizeof(*r));
313 strcpy(r->code, "200");
318 r->content_type = "text/xml";
323 static const char *next_crlf(const char *cp, size_t *skipped)
325 const char *next_cp = strchr(cp, '\n');
328 if (next_cp > cp && next_cp[-1] == '\r')
329 *skipped = next_cp - cp - 1;
331 *skipped = next_cp - cp;
337 // Check if buf contains a package (minus payload)
338 static int package_check(const char *buf, int sz)
346 const char *b = next_crlf(buf, &skipped);
350 // we did not find CRLF.. See if buffer is too large..
351 if (sz >= MAX_HTTP_HEADER-1)
352 return MAX_HTTP_HEADER-1; // yes. Return that (will fail later)
358 // CRLF CRLF , i.e. end of header
359 if (len + content_len <= sz)
360 return len + content_len;
364 // following first skip of \r\n so that we don't consider Method
365 if (!strncasecmp(buf, "Content-Length:", 15))
367 const char *cp = buf+15;
371 while (*cp && isdigit(*(const unsigned char *)cp))
372 content_len = content_len*10 + (*cp++ - '0');
373 if (content_len < 0) /* prevent negative offsets */
377 return 0; // incomplete request
380 // Check if we have a request. Return 0 or length
381 static int request_check(struct http_buf *queue)
383 char tmp[MAX_HTTP_HEADER];
385 // only peek at the header..
386 http_buf_peek(queue, tmp, MAX_HTTP_HEADER-1);
387 // still we only return non-zero if the complete request is received..
388 return package_check(tmp, http_buf_size(queue));
391 struct http_response *http_parse_response_buf(struct http_channel *c, const char *buf, int len)
393 char tmp[MAX_HTTP_HEADER];
394 struct http_response *r = http_create_response(c);
396 struct http_header **hp = &r->headers;
398 if (len >= MAX_HTTP_HEADER)
400 memcpy(tmp, buf, len);
401 for (p = tmp; *p && *p != ' '; p++) // Skip HTTP version
405 for (p2 = p; *p2 && *p2 != ' ' && p2 - p < 3; p2++)
406 r->code[p2 - p] = *p2;
407 if (!(p = strstr(tmp, "\r\n")))
412 if (!(p2 = strstr(p, "\r\n")))
414 if (p == p2) // End of headers
418 struct http_header *h = *hp = nmem_malloc(c->nmem, sizeof(*h));
419 char *value = strchr(p, ':');
423 h->name = nmem_strdup(c->nmem, p);
424 while (isspace(*(const unsigned char *) value))
426 if (value >= p2) // Empty header;
433 h->value = nmem_strdup(c->nmem, value);
442 static int http_parse_arguments(struct http_request *r, NMEM nmem,
445 const char *p2 = args;
449 struct http_argument *a;
450 const char *equal = strchr(p2, '=');
451 const char *eoa = strchr(p2, '&');
454 yaz_log(YLOG_WARN, "Expected '=' in argument");
458 eoa = equal + strlen(equal); // last argument
459 else if (equal > eoa)
461 yaz_log(YLOG_WARN, "Missing '&' in argument");
464 a = nmem_malloc(nmem, sizeof(struct http_argument));
465 a->name = nmem_strdupn(nmem, p2, equal - p2);
466 a->value = nmem_strdupn(nmem, equal+1, eoa - equal - 1);
467 urldecode(a->name, a->name);
468 urldecode(a->value, a->value);
469 a->next = r->arguments;
478 struct http_request *http_parse_request(struct http_channel *c,
479 struct http_buf **queue,
482 struct http_request *r = nmem_malloc(c->nmem, sizeof(*r));
484 char *start = nmem_malloc(c->nmem, len+1);
487 if (http_buf_read(c->http_server, queue, buf, len) < len)
489 yaz_log(YLOG_WARN, "http_buf_read < len (%d)", len);
499 for (p = buf, p2 = r->method; *p && *p != ' ' && p - buf < 19; p++)
503 yaz_log(YLOG_WARN, "Unexpected HTTP method in request");
508 if (!(buf = strchr(buf, ' ')))
510 yaz_log(YLOG_WARN, "Missing Request-URI in HTTP request");
514 if (!(p = strchr(buf, ' ')))
516 yaz_log(YLOG_WARN, "HTTP Request-URI not terminated (too long?)");
520 if ((p2 = strchr(buf, '?'))) // Do we have arguments?
522 r->path = nmem_strdup(c->nmem, buf);
525 r->search = nmem_strdup(c->nmem, p2);
527 http_parse_arguments(r, c->nmem, p2);
531 if (strncmp(buf, "HTTP/", 5))
532 strcpy(r->http_version, "1.0");
536 buf += 5; // strlen("HTTP/")
538 p = (char*) next_crlf(buf, &skipped);
539 if (!p || skipped < 3 || skipped > 5)
542 memcpy(r->http_version, buf, skipped);
543 r->http_version[skipped] = '\0';
546 strcpy(c->version, r->http_version);
553 p = (char *) next_crlf(buf, &skipped);
558 else if (skipped == 0)
566 char *n_v = nmem_malloc(c->nmem, skipped+1);
567 struct http_header *h = nmem_malloc(c->nmem, sizeof(*h));
569 memcpy(n_v, buf, skipped);
572 if (!(cp = strchr(n_v, ':')))
574 h->name = nmem_strdupn(c->nmem, n_v, cp - n_v);
578 h->value = nmem_strdup(c->nmem, cp);
579 h->next = r->headers;
585 // determine if we do keep alive
586 if (!strcmp(c->version, "1.0"))
588 const char *v = http_lookup_header(r->headers, "Connection");
589 if (v && !strcmp(v, "Keep-Alive"))
596 const char *v = http_lookup_header(r->headers, "Connection");
597 if (v && !strcmp(v, "close"))
602 if (buf < start + len)
604 const char *content_type = http_lookup_header(r->headers,
606 r->content_len = start + len - buf;
607 r->content_buf = buf;
609 if (!yaz_strcmp_del("application/x-www-form-urlencoded",
612 http_parse_arguments(r, c->nmem, r->content_buf);
618 static struct http_buf *http_serialize_response(struct http_channel *c,
619 struct http_response *r)
621 struct http_header *h;
623 wrbuf_rewind(c->wrbuf);
625 wrbuf_printf(c->wrbuf, "HTTP/%s %s %s\r\n", c->version, r->code, r->msg);
626 for (h = r->headers; h; h = h->next)
627 wrbuf_printf(c->wrbuf, "%s: %s\r\n", h->name, h->value);
630 wrbuf_printf(c->wrbuf, "Content-Length: %d\r\n", r->payload ?
631 (int) strlen(r->payload) : 0);
632 wrbuf_printf(c->wrbuf, "Content-Type: %s\r\n", r->content_type);
633 if (!strcmp(r->content_type, "text/xml"))
635 xmlDoc *doc = xmlParseMemory(r->payload, strlen(r->payload));
642 yaz_log(YLOG_WARN, "Sending non-wellformed "
643 "response (bug #1162");
644 yaz_log(YLOG_WARN, "payload: %s", r->payload);
648 wrbuf_puts(c->wrbuf, "\r\n");
651 wrbuf_puts(c->wrbuf, r->payload);
653 if (global_parameters.dump_records > 1)
655 FILE *lf = yaz_log_file();
656 yaz_log(YLOG_LOG, "Response:");
657 fwrite(wrbuf_buf(c->wrbuf), 1, wrbuf_len(c->wrbuf), lf);
659 return http_buf_bywrbuf(c->http_server, c->wrbuf);
662 // Serialize a HTTP request
663 static struct http_buf *http_serialize_request(struct http_request *r)
665 struct http_channel *c = r->channel;
666 struct http_header *h;
668 wrbuf_rewind(c->wrbuf);
669 wrbuf_printf(c->wrbuf, "%s %s%s%s", r->method, r->path,
670 *r->search ? "?" : "", r->search);
672 wrbuf_printf(c->wrbuf, " HTTP/%s\r\n", r->http_version);
674 for (h = r->headers; h; h = h->next)
675 wrbuf_printf(c->wrbuf, "%s: %s\r\n", h->name, h->value);
677 wrbuf_puts(c->wrbuf, "\r\n");
680 wrbuf_write(c->wrbuf, r->content_buf, r->content_len);
683 yaz_log(YLOG_LOG, "WRITING TO PROXY:\n%s\n----",
684 wrbuf_cstr(c->wrbuf));
686 return http_buf_bywrbuf(c->http_server, c->wrbuf);
690 static int http_weshouldproxy(struct http_request *rq)
692 struct http_channel *c = rq->channel;
693 if (c->server->http_server->proxy_addr && !strstr(rq->path, "search.pz2"))
699 struct http_header * http_header_append(struct http_channel *ch,
700 struct http_header * hp,
704 struct http_header *hpnew = 0;
709 while (hp && hp->next)
712 if(name && strlen(name)&& value && strlen(value)){
713 hpnew = nmem_malloc(ch->nmem, sizeof *hpnew);
714 hpnew->name = nmem_strdup(ch->nmem, name);
715 hpnew->value = nmem_strdup(ch->nmem, value);
728 static int is_inprogress(void)
731 if (WSAGetLastError() == WSAEWOULDBLOCK)
734 if (errno == EINPROGRESS)
740 static void enable_nonblock(int sock)
744 flags = (flags & CS_FLAGS_BLOCKING) ? 0 : 1;
745 if (ioctlsocket(sock, FIONBIO, &flags) < 0)
746 yaz_log(YLOG_FATAL|YLOG_ERRNO, "ioctlsocket");
748 if ((flags = fcntl(sock, F_GETFL, 0)) < 0)
749 yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl");
750 if (fcntl(sock, F_SETFL, flags | O_NONBLOCK) < 0)
751 yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl2");
755 static int http_proxy(struct http_request *rq)
757 struct http_channel *c = rq->channel;
758 struct http_proxy *p = c->proxy;
759 struct http_header *hp;
760 struct http_buf *requestbuf;
761 struct conf_server *ser = c->server;
763 if (!p) // This is a new connection. Create a proxy channel
769 if (!(pe = getprotobyname("tcp"))) {
772 if ((sock = socket(PF_INET, SOCK_STREAM, pe->p_proto)) < 0)
774 yaz_log(YLOG_WARN|YLOG_ERRNO, "socket");
777 if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char*)
778 &one, sizeof(one)) < 0)
780 enable_nonblock(sock);
781 if (connect(sock, (struct sockaddr *)
782 c->server->http_server->proxy_addr,
783 sizeof(*c->server->http_server->proxy_addr)) < 0)
785 if (!is_inprogress())
787 yaz_log(YLOG_WARN|YLOG_ERRNO, "Proxy connect");
791 p = xmalloc(sizeof(struct http_proxy));
794 p->first_response = 1;
796 // We will add EVENT_OUTPUT below
797 p->iochan = iochan_create(sock, proxy_io, EVENT_INPUT, "http_proxy");
798 iochan_setdata(p->iochan, p);
800 iochan_add(ser->iochan_man, p->iochan);
803 // Do _not_ modify Host: header, just checking it's existence
805 if (!http_lookup_header(rq->headers, "Host"))
807 yaz_log(YLOG_WARN, "Failed to find Host header in proxy");
811 // Add new header about paraz2 version, host, remote client address, etc.
813 char server_via[128];
816 hp = http_header_append(c, hp,
817 "X-Pazpar2-Version", PACKAGE_VERSION);
818 hp = http_header_append(c, hp,
819 "X-Pazpar2-Server-Host", ser->host);
820 hp = http_header_append(c, hp,
821 "X-Pazpar2-Server-Port", ser->port);
822 yaz_snprintf(server_via, sizeof(server_via),
824 ser->host, ser->port,
825 PACKAGE_NAME, PACKAGE_VERSION);
826 hp = http_header_append(c, hp, "Via" , server_via);
827 hp = http_header_append(c, hp, "X-Forwarded-For", c->addr);
830 requestbuf = http_serialize_request(rq);
832 http_buf_enqueue(&p->oqueue, requestbuf);
833 iochan_setflag(p->iochan, EVENT_OUTPUT);
837 void http_send_response(struct http_channel *ch)
839 struct http_response *rs = ch->response;
842 yaz_timing_stop(ch->yt);
843 yaz_log(YLOG_LOG, "Response: %6.5f %d %s%s%s ",
844 yaz_timing_get_real(ch->yt),
845 iochan_getfd(ch->iochan),
847 *ch->request->search ? "?" : "",
848 ch->request->search);
851 hb = http_serialize_response(ch, rs);
854 yaz_log(YLOG_WARN, "Failed to serialize HTTP response");
855 http_channel_destroy(ch->iochan);
859 http_buf_enqueue(&ch->oqueue, hb);
860 iochan_setflag(ch->iochan, EVENT_OUTPUT);
861 ch->state = Http_Idle;
865 static void http_error(struct http_channel *hc, int no, const char *msg)
867 struct http_response *rs = http_create_response(hc);
870 hc->keep_alive = 0; // not keeping this HTTP session alive
872 sprintf(rs->code, "%d", no);
874 rs->msg = nmem_strdup(hc->nmem, msg);
875 rs->payload = nmem_malloc(hc->nmem, 100);
876 yaz_snprintf(rs->payload, 99, "<error>HTTP Error %d: %s</error>\n",
878 http_send_response(hc);
881 static void http_io(IOCHAN i, int event)
883 struct http_channel *hc = iochan_getdata(i);
886 if (event == EVENT_INPUT)
889 struct http_buf *htbuf;
891 htbuf = http_buf_create(hc->http_server);
892 res = recv(iochan_getfd(i), htbuf->buf, HTTP_BUF_SIZE -1, 0);
893 if (res == -1 && errno == EAGAIN)
895 http_buf_destroy(hc->http_server, htbuf);
901 if (hc->http_server->record_file)
904 gettimeofday(&tv, 0);
905 fprintf(hc->http_server->record_file, "r %lld %lld %lld 0\n",
906 (long long) tv.tv_sec, (long long) tv.tv_usec,
907 (long long) iochan_getfd(i));
910 http_buf_destroy(hc->http_server, htbuf);
911 fflush(hc->http_server->record_file);
912 http_channel_destroy(i);
915 htbuf->buf[res] = '\0';
917 http_buf_enqueue(&hc->iqueue, htbuf);
921 if (hc->state == Http_Busy)
923 reqlen = request_check(hc->iqueue);
926 // we have a complete HTTP request
927 nmem_reset(hc->nmem);
929 if (hc->http_server->record_file)
934 for (hb = hc->iqueue; hb; hb = hb->next)
936 gettimeofday(&tv, 0);
937 fprintf(hc->http_server->record_file, "r %lld %lld %lld %d\n",
938 (long long) tv.tv_sec, (long long) tv.tv_usec,
939 (long long) iochan_getfd(i), sz);
940 for (hb = hc->iqueue; hb; hb = hb->next)
941 fwrite(hb->buf, 1, hb->len, hc->http_server->record_file);
942 fflush(hc->http_server->record_file);
945 yaz_timing_start(hc->yt);
946 if (!(hc->request = http_parse_request(hc, &hc->iqueue, reqlen)))
948 yaz_log(YLOG_WARN, "Failed to parse request");
949 http_error(hc, 400, "Bad Request");
953 yaz_log(YLOG_LOG, "Request: - %d %s %s%s%s",
957 *hc->request->search ? "?" : "",
958 hc->request->search);
959 if (hc->request->content_buf)
960 yaz_log(YLOG_LOG, "%s", hc->request->content_buf);
961 if (http_weshouldproxy(hc->request))
962 http_proxy(hc->request);
965 // Execute our business logic!
966 hc->state = Http_Busy;
971 else if (event == EVENT_OUTPUT)
976 struct http_buf *wb = hc->oqueue;
978 res = send(iochan_getfd(hc->iochan),
979 wb->buf + wb->offset, wb->len, 0);
982 yaz_log(YLOG_WARN|YLOG_ERRNO, "write");
983 http_channel_destroy(i);
989 if (hc->http_server->record_file)
992 int sz = wb->offset + wb->len;
993 gettimeofday(&tv, 0);
994 fprintf(hc->http_server->record_file, "w %lld %lld %lld %d\n",
995 (long long) tv.tv_sec, (long long) tv.tv_usec,
996 (long long) iochan_getfd(i), sz);
997 fwrite(wb->buf, 1, wb->offset + wb->len,
998 hc->http_server->record_file);
999 fputc('\n', hc->http_server->record_file);
1000 fflush(hc->http_server->record_file);
1003 hc->oqueue = hc->oqueue->next;
1004 http_buf_destroy(hc->http_server, wb);
1013 if (!hc->keep_alive)
1015 http_channel_destroy(i);
1020 iochan_clearflag(i, EVENT_OUTPUT);
1022 event = EVENT_INPUT;
1026 if (!hc->oqueue && hc->proxy && !hc->proxy->iochan)
1027 http_channel_destroy(i); // Server closed; we're done
1031 yaz_log(YLOG_WARN, "Unexpected event on connection");
1032 http_channel_destroy(i);
1038 // Handles I/O on a client connection to a backend web server (proxy mode)
1039 static void proxy_io(IOCHAN pi, int event)
1041 struct http_proxy *pc = iochan_getdata(pi);
1042 struct http_channel *hc = pc->channel;
1047 struct http_buf *htbuf;
1050 htbuf = http_buf_create(hc->http_server);
1051 res = recv(iochan_getfd(pi), htbuf->buf, HTTP_BUF_SIZE -1, 0);
1052 if (res == 0 || (res < 0 && !is_inprogress()))
1056 yaz_log(YLOG_WARN, "Proxy read came up short");
1057 // Close channel and alert client HTTP channel that we're gone
1058 http_buf_destroy(hc->http_server, htbuf);
1059 CLOSESOCKET(iochan_getfd(pi));
1065 http_channel_destroy(hc->iochan);
1071 htbuf->buf[res] = '\0';
1074 // Write any remaining payload
1075 if (htbuf->len - htbuf->offset > 0)
1076 http_buf_enqueue(&hc->oqueue, htbuf);
1078 iochan_setflag(hc->iochan, EVENT_OUTPUT);
1081 if (!(htbuf = pc->oqueue))
1083 iochan_clearflag(pi, EVENT_OUTPUT);
1086 res = send(iochan_getfd(pi), htbuf->buf + htbuf->offset, htbuf->len, 0);
1089 yaz_log(YLOG_WARN|YLOG_ERRNO, "write");
1090 http_channel_destroy(hc->iochan);
1093 if (res == htbuf->len)
1095 struct http_buf *np = htbuf->next;
1096 http_buf_destroy(hc->http_server, htbuf);
1102 htbuf->offset += res;
1106 iochan_setflags(pi, EVENT_INPUT); // Turns off output flag
1110 yaz_log(YLOG_WARN, "Unexpected event on connection");
1111 http_channel_destroy(hc->iochan);
1116 static void http_fire_observers(struct http_channel *c);
1117 static void http_destroy_observers(struct http_channel *c);
1120 static void http_channel_destroy(IOCHAN i)
1122 struct http_channel *s = iochan_getdata(i);
1123 http_server_t http_server;
1127 if (s->proxy->iochan)
1129 CLOSESOCKET(iochan_getfd(s->proxy->iochan));
1130 iochan_destroy(s->proxy->iochan);
1132 http_buf_destroy_queue(s->http_server, s->proxy->oqueue);
1135 yaz_timing_destroy(&s->yt);
1136 http_buf_destroy_queue(s->http_server, s->iqueue);
1137 http_buf_destroy_queue(s->http_server, s->oqueue);
1138 http_fire_observers(s);
1139 http_destroy_observers(s);
1141 http_server = s->http_server; /* save it for destroy (decref) */
1143 http_server_destroy(http_server);
1145 CLOSESOCKET(iochan_getfd(i));
1148 nmem_destroy(s->nmem);
1149 wrbuf_destroy(s->wrbuf);
1153 static struct http_channel *http_channel_create(http_server_t hs,
1155 struct conf_server *server)
1157 struct http_channel *r;
1159 r = xmalloc(sizeof(struct http_channel));
1160 r->nmem = nmem_create();
1161 r->wrbuf = wrbuf_alloc();
1163 http_server_incref(hs);
1164 r->http_server = hs;
1165 r->http_sessions = hs->http_sessions;
1166 assert(r->http_sessions);
1170 r->iqueue = r->oqueue = 0;
1171 r->state = Http_Idle;
1175 strcpy(r->version, "1.0");
1178 yaz_log(YLOG_WARN, "Invalid HTTP forward address");
1181 strcpy(r->addr, addr);
1183 r->yt = yaz_timing_create();
1188 /* Accept a new command connection */
1189 static void http_accept(IOCHAN i, int event)
1192 struct sockaddr_storage addr;
1193 int fd = iochan_getfd(i);
1194 socklen_t len = sizeof addr;
1197 struct http_channel *ch;
1198 struct conf_server *server = iochan_getdata(i);
1200 if ((s = accept(fd, (struct sockaddr *) &addr, &len)) < 0)
1202 yaz_log(YLOG_WARN|YLOG_ERRNO, "accept");
1205 if (getnameinfo((struct sockaddr *) &addr, len, host, sizeof(host)-1, 0, 0,
1208 yaz_log(YLOG_WARN|YLOG_ERRNO, "getnameinfo");
1214 yaz_log(YLOG_DEBUG, "New command connection");
1215 c = iochan_create(s, http_io, EVENT_INPUT | EVENT_EXCEPT,
1216 "http_session_socket");
1219 ch = http_channel_create(server->http_server, host, server);
1221 iochan_setdata(c, ch);
1222 iochan_add(server->iochan_man, c);
1225 /* Create a http-channel listener, syntax [host:]port */
1226 int http_init(struct conf_server *server, const char *record_fname)
1231 FILE *record_file = 0;
1232 struct addrinfo hints, *af = 0, *ai;
1236 yaz_log(YLOG_LOG, "HTTP listener %s:%s", server->host, server->port);
1239 hints.ai_family = AF_UNSPEC;
1240 hints.ai_socktype = SOCK_STREAM;
1241 hints.ai_protocol = 0;
1242 hints.ai_addrlen = 0;
1243 hints.ai_addr = NULL;
1244 hints.ai_canonname = NULL;
1245 hints.ai_next = NULL;
1247 if (!strcmp(server->host, "@"))
1250 hints.ai_flags = AI_PASSIVE;
1251 error = getaddrinfo(0, server->port, &hints, &af);
1254 error = getaddrinfo(server->host, server->port, &hints, &af);
1258 yaz_log(YLOG_FATAL, "Failed to resolve %s: %s", server->host,
1259 gai_strerror(error));
1262 for (ai = af; ai; ai = ai->ai_next)
1264 if (ai->ai_family == AF_INET6)
1266 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1273 for (ai = af; ai; ai = ai->ai_next)
1275 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
1282 yaz_log(YLOG_FATAL|YLOG_ERRNO, "socket");
1286 if (ipv6_only >= 0 && ai->ai_family == AF_INET6 &&
1287 setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &ipv6_only, sizeof(ipv6_only)))
1289 yaz_log(YLOG_FATAL|YLOG_ERRNO, "setsockopt IPV6_V6ONLY %s:%s %d",
1290 server->host, server->port, ipv6_only);
1295 if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)))
1297 yaz_log(YLOG_FATAL|YLOG_ERRNO, "setsockopt SO_REUSEADDR %s:%s",
1298 server->host, server->port);
1303 if (bind(s, ai->ai_addr, ai->ai_addrlen) < 0)
1305 yaz_log(YLOG_FATAL|YLOG_ERRNO, "bind %s:%s",
1306 server->host, server->port);
1312 if (listen(s, SOMAXCONN) < 0)
1314 yaz_log(YLOG_FATAL|YLOG_ERRNO, "listen %s:%s",
1315 server->host, server->port);
1322 record_file = fopen(record_fname, "wb");
1325 yaz_log(YLOG_FATAL|YLOG_ERRNO, "fopen %s", record_fname);
1330 server->http_server = http_server_create();
1332 server->http_server->record_file = record_file;
1333 server->http_server->listener_socket = s;
1335 c = iochan_create(s, http_accept, EVENT_INPUT | EVENT_EXCEPT, "http_server");
1336 iochan_setdata(c, server);
1338 iochan_add(server->iochan_man, c);
1342 void http_close_server(struct conf_server *server)
1344 /* break the event_loop (select) by closing down the HTTP listener sock */
1345 if (server->http_server->listener_socket)
1348 closesocket(server->http_server->listener_socket);
1350 close(server->http_server->listener_socket);
1355 void http_set_proxyaddr(const char *host, struct conf_server *server)
1360 WRBUF w = wrbuf_alloc();
1362 yaz_log(YLOG_LOG, "HTTP backend %s", host);
1364 p = strchr(host, ':');
1368 wrbuf_write(w, host, p - host);
1374 wrbuf_puts(w, host);
1376 if (!(he = gethostbyname(wrbuf_cstr(w))))
1378 fprintf(stderr, "Failed to lookup '%s'\n", wrbuf_cstr(w));
1383 server->http_server->proxy_addr = xmalloc(sizeof(struct sockaddr_in));
1384 server->http_server->proxy_addr->sin_family = he->h_addrtype;
1385 memcpy(&server->http_server->proxy_addr->sin_addr.s_addr,
1386 he->h_addr_list[0], he->h_length);
1387 server->http_server->proxy_addr->sin_port = htons(port);
1390 static void http_fire_observers(struct http_channel *c)
1392 http_channel_observer_t p = c->observers;
1395 p->destroy(p->data, c, p->data2);
1400 static void http_destroy_observers(struct http_channel *c)
1402 while (c->observers)
1404 http_channel_observer_t obs = c->observers;
1405 c->observers = obs->next;
1410 http_channel_observer_t http_add_observer(struct http_channel *c, void *data,
1411 http_channel_destroy_t des)
1413 http_channel_observer_t obs = xmalloc(sizeof(*obs));
1418 obs->next = c->observers;
1423 void http_remove_observer(http_channel_observer_t obs)
1425 struct http_channel *c = obs->chan;
1426 http_channel_observer_t found, *p = &c->observers;
1435 struct http_channel *http_channel_observer_chan(http_channel_observer_t obs)
1440 void http_observer_set_data2(http_channel_observer_t obs, void *data2)
1445 http_server_t http_server_create(void)
1447 http_server_t hs = xmalloc(sizeof(*hs));
1451 hs->http_sessions = 0;
1453 hs->record_file = 0;
1457 void http_server_destroy(http_server_t hs)
1463 yaz_mutex_enter(hs->mutex); /* OK: hs->mutex may be NULL */
1464 r = --(hs->ref_count);
1465 yaz_mutex_leave(hs->mutex);
1469 http_sessions_destroy(hs->http_sessions);
1470 xfree(hs->proxy_addr);
1471 yaz_mutex_destroy(&hs->mutex);
1472 if (hs->record_file)
1473 fclose(hs->record_file);
1479 void http_server_incref(http_server_t hs)
1482 yaz_mutex_enter(hs->mutex);
1484 yaz_mutex_leave(hs->mutex);
1487 void http_mutex_init(struct conf_server *server)
1491 assert(server->http_server->mutex == 0);
1492 pazpar2_mutex_create(&server->http_server->mutex, "http_server");
1493 server->http_server->http_sessions = http_sessions_create();
1499 * c-file-style: "Stroustrup"
1500 * indent-tabs-mode: nil
1502 * vim: shiftwidth=4 tabstop=8 expandtab