1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2009 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
27 typedef int socklen_t;
31 #include <sys/socket.h>
34 #include <sys/types.h>
36 #include <yaz/snprintf.h>
54 #include <netinet/in.h>
58 #include <arpa/inet.h>
61 #include <yaz/yaz-util.h>
62 #include <yaz/comstack.h>
69 #include "http_command.h"
71 #define MAX_HTTP_HEADER 4096
73 static void proxy_io(IOCHAN i, int event);
74 static struct http_channel *http_create(const char *addr,
75 struct conf_server *server);
76 static void http_destroy(IOCHAN i);
78 static struct http_buf *http_buf_freelist = 0; /* thread pr */
79 static struct http_channel *http_channel_freelist = 0; /* thread pr */
81 struct http_channel_observer_s {
84 http_channel_destroy_t destroy;
85 struct http_channel_observer_s *next;
86 struct http_channel *chan;
90 static const char *http_lookup_header(struct http_header *header,
93 for (; header; header = header->next)
94 if (!strcasecmp(name, header->name))
99 static struct http_buf *http_buf_create(void)
103 if (http_buf_freelist)
105 r = http_buf_freelist;
106 http_buf_freelist = http_buf_freelist->next;
109 r = xmalloc(sizeof(struct http_buf));
116 static void http_buf_destroy(struct http_buf *b)
118 b->next = http_buf_freelist;
119 http_buf_freelist = b;
122 static void http_buf_destroy_queue(struct http_buf *b)
133 static struct http_buf *http_buf_bybuf(char *b, int len)
135 struct http_buf *res = 0;
136 struct http_buf **p = &res;
141 if (tocopy > HTTP_BUF_SIZE)
142 tocopy = HTTP_BUF_SIZE;
143 *p = http_buf_create();
144 memcpy((*p)->buf, b, tocopy);
153 // Add a (chain of) buffers to the end of an existing queue.
154 static void http_buf_enqueue(struct http_buf **queue, struct http_buf *b)
157 queue = &(*queue)->next;
161 static struct http_buf *http_buf_bywrbuf(WRBUF wrbuf)
163 // Heavens to Betsy (buf)!
164 return http_buf_bybuf(wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
167 // Non-destructively collapse chain of buffers into a string (max *len)
169 static void http_buf_peek(struct http_buf *b, char *buf, int len)
172 while (b && rd < len)
174 int toread = len - rd;
177 memcpy(buf + rd, b->buf + b->offset, toread);
184 static int http_buf_size(struct http_buf *b)
187 for (; b; b = b->next)
192 // Ddestructively munch up to len from head of queue.
193 static int http_buf_read(struct http_buf **b, char *buf, int len)
196 while ((*b) && rd < len)
198 int toread = len - rd;
199 if (toread > (*b)->len)
201 memcpy(buf + rd, (*b)->buf + (*b)->offset, toread);
203 if (toread < (*b)->len)
206 (*b)->offset += toread;
211 struct http_buf *n = (*b)->next;
212 http_buf_destroy(*b);
220 // Buffers may overlap.
221 static void urldecode(char *i, char *o)
230 else if (*i == '%' && i[1] && i[2])
234 sscanf(i, "%2x", &v);
244 // Warning: Buffers may not overlap
245 void urlencode(const char *i, char *o)
249 if (strchr(" /:", *i))
251 sprintf(o, "%%%.2X", (int) *i);
261 void http_addheader(struct http_response *r, const char *name, const char *value)
263 struct http_channel *c = r->channel;
264 struct http_header *h = nmem_malloc(c->nmem, sizeof *h);
265 h->name = nmem_strdup(c->nmem, name);
266 h->value = nmem_strdup(c->nmem, value);
267 h->next = r->headers;
271 char *http_argbyname(struct http_request *r, char *name)
273 struct http_argument *p;
276 for (p = r->arguments; p; p = p->next)
277 if (!strcmp(p->name, name))
282 char *http_headerbyname(struct http_header *h, char *name)
284 for (; h; h = h->next)
285 if (!strcmp(h->name, name))
290 struct http_response *http_create_response(struct http_channel *c)
292 struct http_response *r = nmem_malloc(c->nmem, sizeof(*r));
293 strcpy(r->code, "200");
298 r->content_type = "text/xml";
303 static const char *next_crlf(const char *cp, size_t *skipped)
305 const char *next_cp = strchr(cp, '\n');
308 if (next_cp > cp && next_cp[-1] == '\r')
309 *skipped = next_cp - cp - 1;
311 *skipped = next_cp - cp;
317 // Check if buf contains a package (minus payload)
318 static int package_check(const char *buf, int sz)
326 const char *b = next_crlf(buf, &skipped);
330 // we did not find CRLF.. See if buffer is too large..
331 if (sz >= MAX_HTTP_HEADER-1)
332 return MAX_HTTP_HEADER-1; // yes. Return that (will fail later)
338 // CRLF CRLF , i.e. end of header
339 if (len + content_len <= sz)
340 return len + content_len;
344 // following first skip of \r\n so that we don't consider Method
345 if (!strncasecmp(buf, "Content-Length:", 15))
347 const char *cp = buf+15;
351 while (*cp && isdigit(*(const unsigned char *)cp))
352 content_len = content_len*10 + (*cp++ - '0');
353 if (content_len < 0) /* prevent negative offsets */
357 return 0; // incomplete request
360 // Check if we have a request. Return 0 or length
361 static int request_check(struct http_buf *queue)
363 char tmp[MAX_HTTP_HEADER];
365 // only peek at the header..
366 http_buf_peek(queue, tmp, MAX_HTTP_HEADER-1);
367 // still we only return non-zero if the complete request is received..
368 return package_check(tmp, http_buf_size(queue));
371 struct http_response *http_parse_response_buf(struct http_channel *c, const char *buf, int len)
373 char tmp[MAX_HTTP_HEADER];
374 struct http_response *r = http_create_response(c);
376 struct http_header **hp = &r->headers;
378 if (len >= MAX_HTTP_HEADER)
380 memcpy(tmp, buf, len);
381 for (p = tmp; *p && *p != ' '; p++) // Skip HTTP version
385 for (p2 = p; *p2 && *p2 != ' ' && p2 - p < 3; p2++)
386 r->code[p2 - p] = *p2;
387 if (!(p = strstr(tmp, "\r\n")))
392 if (!(p2 = strstr(p, "\r\n")))
394 if (p == p2) // End of headers
398 struct http_header *h = *hp = nmem_malloc(c->nmem, sizeof(*h));
399 char *value = strchr(p, ':');
403 h->name = nmem_strdup(c->nmem, p);
404 while (isspace(*(const unsigned char *) value))
406 if (value >= p2) // Empty header;
413 h->value = nmem_strdup(c->nmem, value);
422 static int http_parse_arguments(struct http_request *r, NMEM nmem,
425 const char *p2 = args;
429 struct http_argument *a;
430 const char *equal = strchr(p2, '=');
431 const char *eoa = strchr(p2, '&');
434 yaz_log(YLOG_WARN, "Expected '=' in argument");
438 eoa = equal + strlen(equal); // last argument
439 else if (equal > eoa)
441 yaz_log(YLOG_WARN, "Missing '&' in argument");
444 a = nmem_malloc(nmem, sizeof(struct http_argument));
445 a->name = nmem_strdupn(nmem, p2, equal - p2);
446 a->value = nmem_strdupn(nmem, equal+1, eoa - equal - 1);
447 urldecode(a->name, a->name);
448 urldecode(a->value, a->value);
449 a->next = r->arguments;
458 struct http_request *http_parse_request(struct http_channel *c,
459 struct http_buf **queue,
462 struct http_request *r = nmem_malloc(c->nmem, sizeof(*r));
464 char *start = nmem_malloc(c->nmem, len+1);
467 if (http_buf_read(queue, buf, len) < len)
469 yaz_log(YLOG_WARN, "http_buf_read < len (%d)", len);
479 for (p = buf, p2 = r->method; *p && *p != ' ' && p - buf < 19; p++)
483 yaz_log(YLOG_WARN, "Unexpected HTTP method in request");
488 if (!(buf = strchr(buf, ' ')))
490 yaz_log(YLOG_WARN, "Missing Request-URI in HTTP request");
494 if (!(p = strchr(buf, ' ')))
496 yaz_log(YLOG_WARN, "HTTP Request-URI not terminated (too long?)");
500 if ((p2 = strchr(buf, '?'))) // Do we have arguments?
502 r->path = nmem_strdup(c->nmem, buf);
505 r->search = nmem_strdup(c->nmem, p2);
507 http_parse_arguments(r, c->nmem, p2);
511 if (strncmp(buf, "HTTP/", 5))
512 strcpy(r->http_version, "1.0");
516 buf += 5; // strlen("HTTP/")
518 p = (char*) next_crlf(buf, &skipped);
519 if (!p || skipped < 3 || skipped > 5)
522 memcpy(r->http_version, buf, skipped);
523 r->http_version[skipped] = '\0';
526 strcpy(c->version, r->http_version);
533 p = (char *) next_crlf(buf, &skipped);
538 else if (skipped == 0)
546 char *n_v = nmem_malloc(c->nmem, skipped+1);
547 struct http_header *h = nmem_malloc(c->nmem, sizeof(*h));
549 memcpy(n_v, buf, skipped);
552 if (!(cp = strchr(n_v, ':')))
554 h->name = nmem_strdupn(c->nmem, n_v, cp - n_v);
558 h->value = nmem_strdup(c->nmem, cp);
559 h->next = r->headers;
565 // determine if we do keep alive
566 if (!strcmp(c->version, "1.0"))
568 const char *v = http_lookup_header(r->headers, "Connection");
569 if (v && !strcmp(v, "Keep-Alive"))
576 const char *v = http_lookup_header(r->headers, "Connection");
577 if (v && !strcmp(v, "close"))
582 if (buf < start + len)
584 const char *content_type = http_lookup_header(r->headers,
586 r->content_len = start + len - buf;
587 r->content_buf = buf;
589 if (!yaz_strcmp_del("application/x-www-form-urlencoded",
592 http_parse_arguments(r, c->nmem, r->content_buf);
598 static struct http_buf *http_serialize_response(struct http_channel *c,
599 struct http_response *r)
601 struct http_header *h;
603 wrbuf_rewind(c->wrbuf);
604 wrbuf_printf(c->wrbuf, "HTTP/%s %s %s\r\n", c->version, r->code, r->msg);
605 for (h = r->headers; h; h = h->next)
606 wrbuf_printf(c->wrbuf, "%s: %s\r\n", h->name, h->value);
609 wrbuf_printf(c->wrbuf, "Content-Length: %d\r\n", r->payload ?
610 (int) strlen(r->payload) : 0);
611 wrbuf_printf(c->wrbuf, "Content-Type: %s\r\n", r->content_type);
612 if (!strcmp(r->content_type, "text/xml"))
614 xmlDoc *doc = xmlParseMemory(r->payload, strlen(r->payload));
621 yaz_log(YLOG_WARN, "Sending non-wellformed "
622 "response (bug #1162");
623 yaz_log(YLOG_WARN, "payload: %s", r->payload);
627 wrbuf_puts(c->wrbuf, "\r\n");
630 wrbuf_puts(c->wrbuf, r->payload);
632 return http_buf_bywrbuf(c->wrbuf);
635 // Serialize a HTTP request
636 static struct http_buf *http_serialize_request(struct http_request *r)
638 struct http_channel *c = r->channel;
639 struct http_header *h;
641 wrbuf_rewind(c->wrbuf);
642 wrbuf_printf(c->wrbuf, "%s %s%s%s", r->method, r->path,
643 *r->search ? "?" : "", r->search);
645 wrbuf_printf(c->wrbuf, " HTTP/%s\r\n", r->http_version);
647 for (h = r->headers; h; h = h->next)
648 wrbuf_printf(c->wrbuf, "%s: %s\r\n", h->name, h->value);
650 wrbuf_puts(c->wrbuf, "\r\n");
653 wrbuf_write(c->wrbuf, r->content_buf, r->content_len);
656 yaz_log(YLOG_LOG, "WRITING TO PROXY:\n%s\n----",
657 wrbuf_cstr(c->wrbuf));
659 return http_buf_bywrbuf(c->wrbuf);
663 static int http_weshouldproxy(struct http_request *rq)
665 struct http_channel *c = rq->channel;
666 if (c->server->proxy_addr && !strstr(rq->path, "search.pz2"))
672 struct http_header * http_header_append(struct http_channel *ch,
673 struct http_header * hp,
677 struct http_header *hpnew = 0;
682 while (hp && hp->next)
685 if(name && strlen(name)&& value && strlen(value)){
686 hpnew = nmem_malloc(ch->nmem, sizeof *hpnew);
687 hpnew->name = nmem_strdup(ch->nmem, name);
688 hpnew->value = nmem_strdup(ch->nmem, value);
701 static int is_inprogress(void)
704 if (WSAGetLastError() == WSAEWOULDBLOCK)
707 if (errno == EINPROGRESS)
713 static void enable_nonblock(int sock)
717 flags = (flags & CS_FLAGS_BLOCKING) ? 0 : 1;
718 if (ioctlsocket(sock, FIONBIO, &flags) < 0)
719 yaz_log(YLOG_FATAL|YLOG_ERRNO, "ioctlsocket");
721 if ((flags = fcntl(sock, F_GETFL, 0)) < 0)
722 yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl");
723 if (fcntl(sock, F_SETFL, flags | O_NONBLOCK) < 0)
724 yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl2");
728 static int http_proxy(struct http_request *rq)
730 struct http_channel *c = rq->channel;
731 struct http_proxy *p = c->proxy;
732 struct http_header *hp;
733 struct http_buf *requestbuf;
734 char server_port[16] = "";
735 struct conf_server *ser = c->server;
737 if (!p) // This is a new connection. Create a proxy channel
743 if (!(pe = getprotobyname("tcp"))) {
746 if ((sock = socket(PF_INET, SOCK_STREAM, pe->p_proto)) < 0)
748 yaz_log(YLOG_WARN|YLOG_ERRNO, "socket");
751 if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char*)
752 &one, sizeof(one)) < 0)
754 enable_nonblock(sock);
755 if (connect(sock, (struct sockaddr *) c->server->proxy_addr,
756 sizeof(*c->server->proxy_addr)) < 0)
758 if (!is_inprogress())
760 yaz_log(YLOG_WARN|YLOG_ERRNO, "Proxy connect");
764 p = xmalloc(sizeof(struct http_proxy));
767 p->first_response = 1;
769 // We will add EVENT_OUTPUT below
770 p->iochan = iochan_create(sock, proxy_io, EVENT_INPUT);
771 iochan_setdata(p->iochan, p);
772 pazpar2_add_channel(p->iochan);
775 // Do _not_ modify Host: header, just checking it's existence
777 if (!http_lookup_header(rq->headers, "Host"))
779 yaz_log(YLOG_WARN, "Failed to find Host header in proxy");
783 // Add new header about paraz2 version, host, remote client address, etc.
785 char server_via[128];
788 hp = http_header_append(c, hp,
789 "X-Pazpar2-Version", PACKAGE_VERSION);
790 hp = http_header_append(c, hp,
791 "X-Pazpar2-Server-Host", ser->host);
792 sprintf(server_port, "%d", ser->port);
793 hp = http_header_append(c, hp,
794 "X-Pazpar2-Server-Port", server_port);
795 yaz_snprintf(server_via, sizeof(server_via),
797 ser->host ? ser->host : "@",
798 server_port, PACKAGE_NAME, PACKAGE_VERSION);
799 hp = http_header_append(c, hp, "Via" , server_via);
800 hp = http_header_append(c, hp, "X-Forwarded-For", c->addr);
803 requestbuf = http_serialize_request(rq);
805 http_buf_enqueue(&p->oqueue, requestbuf);
806 iochan_setflag(p->iochan, EVENT_OUTPUT);
810 void http_send_response(struct http_channel *ch)
812 struct http_response *rs = ch->response;
816 hb = http_serialize_response(ch, rs);
819 yaz_log(YLOG_WARN, "Failed to serialize HTTP response");
820 http_destroy(ch->iochan);
824 http_buf_enqueue(&ch->oqueue, hb);
825 iochan_setflag(ch->iochan, EVENT_OUTPUT);
826 ch->state = Http_Idle;
830 static void http_error(struct http_channel *hc, int no, const char *msg)
832 struct http_response *rs = http_create_response(hc);
835 hc->keep_alive = 0; // not keeping this HTTP session alive
837 sprintf(rs->code, "%d", no);
839 rs->msg = nmem_strdup(hc->nmem, msg);
840 rs->payload = nmem_malloc(hc->nmem, 100);
841 yaz_snprintf(rs->payload, 99, "<error>HTTP Error %d: %s</error>\n",
843 http_send_response(hc);
846 static void http_io(IOCHAN i, int event)
848 struct http_channel *hc = iochan_getdata(i);
853 struct http_buf *htbuf;
856 htbuf = http_buf_create();
857 res = recv(iochan_getfd(i), htbuf->buf, HTTP_BUF_SIZE -1, 0);
858 if (res == -1 && errno == EAGAIN)
860 http_buf_destroy(htbuf);
865 http_buf_destroy(htbuf);
869 htbuf->buf[res] = '\0';
871 http_buf_enqueue(&hc->iqueue, htbuf);
875 if (hc->state == Http_Busy)
877 reqlen = request_check(hc->iqueue);
880 // we have a complete HTTP request
881 nmem_reset(hc->nmem);
882 if (!(hc->request = http_parse_request(hc, &hc->iqueue, reqlen)))
884 yaz_log(YLOG_WARN, "Failed to parse request");
885 http_error(hc, 400, "Bad Request");
889 yaz_log(YLOG_LOG, "Request: %s %s%s%s", hc->request->method,
891 *hc->request->search ? "?" : "",
892 hc->request->search);
893 if (hc->request->content_buf)
894 yaz_log(YLOG_LOG, "%s", hc->request->content_buf);
895 if (http_weshouldproxy(hc->request))
896 http_proxy(hc->request);
899 // Execute our business logic!
900 hc->state = Http_Busy;
908 struct http_buf *wb = hc->oqueue;
909 res = send(iochan_getfd(hc->iochan), wb->buf + wb->offset, wb->len, 0);
912 yaz_log(YLOG_WARN|YLOG_ERRNO, "write");
918 hc->oqueue = hc->oqueue->next;
919 http_buf_destroy(wb);
934 iochan_clearflag(i, EVENT_OUTPUT);
936 iochan_setevent(hc->iochan, EVENT_INPUT);
941 if (!hc->oqueue && hc->proxy && !hc->proxy->iochan)
942 http_destroy(i); // Server closed; we're done
945 yaz_log(YLOG_WARN, "Unexpected event on connection");
950 // Handles I/O on a client connection to a backend web server (proxy mode)
951 static void proxy_io(IOCHAN pi, int event)
953 struct http_proxy *pc = iochan_getdata(pi);
954 struct http_channel *hc = pc->channel;
959 struct http_buf *htbuf;
962 htbuf = http_buf_create();
963 res = recv(iochan_getfd(pi), htbuf->buf, HTTP_BUF_SIZE -1, 0);
964 if (res == 0 || (res < 0 && !is_inprogress()))
968 yaz_log(YLOG_WARN, "Proxy read came up short");
969 // Close channel and alert client HTTP channel that we're gone
970 http_buf_destroy(htbuf);
972 closesocket(iochan_getfd(pi));
974 close(iochan_getfd(pi));
981 http_destroy(hc->iochan);
987 htbuf->buf[res] = '\0';
990 // Write any remaining payload
991 if (htbuf->len - htbuf->offset > 0)
992 http_buf_enqueue(&hc->oqueue, htbuf);
994 iochan_setflag(hc->iochan, EVENT_OUTPUT);
997 if (!(htbuf = pc->oqueue))
999 iochan_clearflag(pi, EVENT_OUTPUT);
1002 res = send(iochan_getfd(pi), htbuf->buf + htbuf->offset, htbuf->len, 0);
1005 yaz_log(YLOG_WARN|YLOG_ERRNO, "write");
1006 http_destroy(hc->iochan);
1009 if (res == htbuf->len)
1011 struct http_buf *np = htbuf->next;
1012 http_buf_destroy(htbuf);
1018 htbuf->offset += res;
1022 iochan_setflags(pi, EVENT_INPUT); // Turns off output flag
1026 yaz_log(YLOG_WARN, "Unexpected event on connection");
1027 http_destroy(hc->iochan);
1031 static void http_fire_observers(struct http_channel *c);
1032 static void http_destroy_observers(struct http_channel *c);
1035 static void http_destroy(IOCHAN i)
1037 struct http_channel *s = iochan_getdata(i);
1041 if (s->proxy->iochan)
1044 closesocket(iochan_getfd(s->proxy->iochan));
1046 close(iochan_getfd(s->proxy->iochan));
1048 iochan_destroy(s->proxy->iochan);
1050 http_buf_destroy_queue(s->proxy->oqueue);
1053 http_buf_destroy_queue(s->iqueue);
1054 http_buf_destroy_queue(s->oqueue);
1055 http_fire_observers(s);
1056 http_destroy_observers(s);
1057 s->next = http_channel_freelist;
1058 http_channel_freelist = s;
1060 closesocket(iochan_getfd(i));
1062 close(iochan_getfd(i));
1067 static struct http_channel *http_create(const char *addr,
1068 struct conf_server *server)
1070 struct http_channel *r = http_channel_freelist;
1074 http_channel_freelist = r->next;
1075 nmem_reset(r->nmem);
1076 wrbuf_rewind(r->wrbuf);
1080 r = xmalloc(sizeof(struct http_channel));
1081 r->nmem = nmem_create();
1082 r->wrbuf = wrbuf_alloc();
1087 r->iqueue = r->oqueue = 0;
1088 r->state = Http_Idle;
1094 yaz_log(YLOG_WARN, "Invalid HTTP forward address");
1097 strcpy(r->addr, addr);
1103 /* Accept a new command connection */
1104 static void http_accept(IOCHAN i, int event)
1106 struct sockaddr_in addr;
1107 int fd = iochan_getfd(i);
1111 struct http_channel *ch;
1112 struct conf_server *server = iochan_getdata(i);
1115 if ((s = accept(fd, (struct sockaddr *) &addr, &len)) < 0)
1117 yaz_log(YLOG_WARN|YLOG_ERRNO, "accept");
1122 yaz_log(YLOG_DEBUG, "New command connection");
1123 c = iochan_create(s, http_io, EVENT_INPUT | EVENT_EXCEPT);
1125 ch = http_create(inet_ntoa(addr.sin_addr), server);
1127 iochan_setdata(c, ch);
1129 pazpar2_add_channel(c);
1132 /* Create a http-channel listener, syntax [host:]port */
1133 int http_init(const char *addr, struct conf_server *server)
1138 struct sockaddr_in myaddr;
1143 yaz_log(YLOG_LOG, "HTTP listener %s", addr);
1145 memset(&myaddr, 0, sizeof myaddr);
1146 myaddr.sin_family = AF_INET;
1147 pp = strchr(addr, ':');
1150 WRBUF w = wrbuf_alloc();
1153 wrbuf_write(w, addr, pp - addr);
1156 he = gethostbyname(wrbuf_cstr(w));
1160 yaz_log(YLOG_FATAL, "Unable to resolve '%s'", addr);
1163 memcpy(&myaddr.sin_addr.s_addr, he->h_addr_list[0], he->h_length);
1164 port = atoi(pp + 1);
1169 myaddr.sin_addr.s_addr = INADDR_ANY;
1172 myaddr.sin_port = htons(port);
1174 if (!(p = getprotobyname("tcp"))) {
1177 if ((l = socket(PF_INET, SOCK_STREAM, p->p_proto)) < 0)
1178 yaz_log(YLOG_FATAL|YLOG_ERRNO, "socket");
1179 if (setsockopt(l, SOL_SOCKET, SO_REUSEADDR, (char*)
1180 &one, sizeof(one)) < 0)
1183 if (bind(l, (struct sockaddr *) &myaddr, sizeof myaddr) < 0)
1185 yaz_log(YLOG_FATAL|YLOG_ERRNO, "bind");
1188 if (listen(l, SOMAXCONN) < 0)
1190 yaz_log(YLOG_FATAL|YLOG_ERRNO, "listen");
1194 server->listener_socket = l;
1196 c = iochan_create(l, http_accept, EVENT_INPUT | EVENT_EXCEPT);
1197 iochan_setdata(c, server);
1198 pazpar2_add_channel(c);
1202 void http_close_server(struct conf_server *server)
1204 /* break the event_loop (select) by closing down the HTTP listener sock */
1205 if (server->listener_socket)
1208 closesocket(server->listener_socket);
1210 close(server->listener_socket);
1215 void http_set_proxyaddr(const char *host, struct conf_server *server)
1220 WRBUF w = wrbuf_alloc();
1222 yaz_log(YLOG_LOG, "HTTP backend %s", host);
1224 p = strchr(host, ':');
1228 wrbuf_write(w, host, p - host);
1234 wrbuf_puts(w, host);
1236 if (!(he = gethostbyname(wrbuf_cstr(w))))
1238 fprintf(stderr, "Failed to lookup '%s'\n", wrbuf_cstr(w));
1243 server->proxy_addr = xmalloc(sizeof(struct sockaddr_in));
1244 server->proxy_addr->sin_family = he->h_addrtype;
1245 memcpy(&server->proxy_addr->sin_addr.s_addr, he->h_addr_list[0], he->h_length);
1246 server->proxy_addr->sin_port = htons(port);
1249 static void http_fire_observers(struct http_channel *c)
1251 http_channel_observer_t p = c->observers;
1254 p->destroy(p->data, c, p->data2);
1259 static void http_destroy_observers(struct http_channel *c)
1261 while (c->observers)
1263 http_channel_observer_t obs = c->observers;
1264 c->observers = obs->next;
1269 http_channel_observer_t http_add_observer(struct http_channel *c, void *data,
1270 http_channel_destroy_t des)
1272 http_channel_observer_t obs = xmalloc(sizeof(*obs));
1277 obs->next = c->observers;
1282 void http_remove_observer(http_channel_observer_t obs)
1284 struct http_channel *c = obs->chan;
1285 http_channel_observer_t found, *p = &c->observers;
1294 struct http_channel *http_channel_observer_chan(http_channel_observer_t obs)
1299 void http_observer_set_data2(http_channel_observer_t obs, void *data2)
1308 * c-file-style: "Stroustrup"
1309 * indent-tabs-mode: nil
1311 * vim: shiftwidth=4 tabstop=8 expandtab