Removed payload log msg for well-formed payload
[pazpar2-moved-to-github.git] / src / http.c
1 /* $Id: http.c,v 1.33 2007-06-04 14:44:22 adam Exp $
2    Copyright (c) 2006-2007, Index Data.
3
4 This file is part of Pazpar2.
5
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 #include <stdio.h>
23 #include <sys/socket.h>
24 #include <sys/types.h>
25 #include <sys/uio.h>
26 #include <unistd.h>
27 #include <stdlib.h>
28 #include <strings.h>
29 #include <ctype.h>
30 #include <fcntl.h>
31 #include <netdb.h>
32 #include <errno.h>
33 #include <assert.h>
34 #include <string.h>
35
36 #if HAVE_CONFIG_H
37 #include <cconfig.h>
38 #endif
39
40 #include <netinet/in.h>
41 #include <arpa/inet.h>
42 #include <netdb.h>
43
44 #include <yaz/yaz-util.h>
45 #include <yaz/comstack.h>
46 #include <yaz/nmem.h>
47
48 #include "cconfig.h"
49 #include "util.h"
50 #include "eventl.h"
51 #include "pazpar2.h"
52 #include "http.h"
53 #include "http_command.h"
54
55 static void proxy_io(IOCHAN i, int event);
56 static struct http_channel *http_create(const char *addr);
57 static void http_destroy(IOCHAN i);
58
59 // If this is set, we proxy normal HTTP requests
60 static struct sockaddr_in *proxy_addr = 0; 
61 static char proxy_url[256] = "";
62 static char myurl[256] = "";
63 static struct http_buf *http_buf_freelist = 0;
64 static struct http_channel *http_channel_freelist = 0;
65
66 static struct http_buf *http_buf_create()
67 {
68     struct http_buf *r;
69
70     if (http_buf_freelist)
71     {
72         r = http_buf_freelist;
73         http_buf_freelist = http_buf_freelist->next;
74     }
75     else
76         r = xmalloc(sizeof(struct http_buf));
77     r->offset = 0;
78     r->len = 0;
79     r->next = 0;
80     return r;
81 }
82
83 static void http_buf_destroy(struct http_buf *b)
84 {
85     b->next = http_buf_freelist;
86     http_buf_freelist = b;
87 }
88
89 static void http_buf_destroy_queue(struct http_buf *b)
90 {
91     struct http_buf *p;
92     while (b)
93     {
94         p = b->next;
95         http_buf_destroy(b);
96         b = p;
97     }
98 }
99
100 #ifdef GAGA
101 // Calculate length of chain
102 static int http_buf_len(struct http_buf *b)
103 {
104     int sum = 0;
105     for (; b; b = b->next)
106         sum += b->len;
107     return sum;
108 }
109 #endif
110
111 static struct http_buf *http_buf_bybuf(char *b, int len)
112 {
113     struct http_buf *res = 0;
114     struct http_buf **p = &res;
115
116     while (len)
117     {
118         int tocopy = len;
119         if (tocopy > HTTP_BUF_SIZE)
120             tocopy = HTTP_BUF_SIZE;
121         *p = http_buf_create();
122         memcpy((*p)->buf, b, tocopy);
123         (*p)->len = tocopy;
124         len -= tocopy;
125         b += tocopy;
126         p = &(*p)->next;
127     }
128     return res;
129 }
130
131 // Add a (chain of) buffers to the end of an existing queue.
132 static void http_buf_enqueue(struct http_buf **queue, struct http_buf *b)
133 {
134     while (*queue)
135         queue = &(*queue)->next;
136     *queue = b;
137 }
138
139 static struct http_buf *http_buf_bywrbuf(WRBUF wrbuf)
140 {
141     // Heavens to Betsy (buf)!
142     return http_buf_bybuf(wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
143 }
144
145 // Non-destructively collapse chain of buffers into a string (max *len)
146 // Return
147 static int http_buf_peek(struct http_buf *b, char *buf, int len)
148 {
149     int rd = 0;
150     while (b && rd < len)
151     {
152         int toread = len - rd;
153         if (toread > b->len)
154             toread = b->len;
155         memcpy(buf + rd, b->buf + b->offset, toread);
156         rd += toread;
157         b = b->next;
158     }
159     buf[rd] = '\0';
160     return rd;
161 }
162
163 // Ddestructively munch up to len  from head of queue.
164 static int http_buf_read(struct http_buf **b, char *buf, int len)
165 {
166     int rd = 0;
167     while ((*b) && rd < len)
168     {
169         int toread = len - rd;
170         if (toread > (*b)->len)
171             toread = (*b)->len;
172         memcpy(buf + rd, (*b)->buf + (*b)->offset, toread);
173         rd += toread;
174         if (toread < (*b)->len)
175         {
176             (*b)->len -= toread;
177             (*b)->offset += toread;
178             break;
179         }
180         else
181         {
182             struct http_buf *n = (*b)->next;
183             http_buf_destroy(*b);
184             *b = n;
185         }
186     }
187     buf[rd] = '\0';
188     return rd;
189 }
190
191 // Buffers may overlap.
192 static void urldecode(char *i, char *o)
193 {
194     while (*i)
195     {
196         if (*i == '+')
197         {
198             *(o++) = ' ';
199             i++;
200         }
201         else if (*i == '%')
202         {
203             i++;
204             sscanf(i, "%2hhx", o);
205             i += 2;
206             o++;
207         }
208         else
209             *(o++) = *(i++);
210     }
211     *o = '\0';
212 }
213
214 // Warning: Buffers may not overlap
215 void urlencode(const char *i, char *o)
216 {
217     while (*i)
218     {
219         if (strchr(" /:", *i))
220         {
221             sprintf(o, "%%%.2X", (int) *i);
222             o += 3;
223         }
224         else
225             *(o++) = *i;
226         i++;
227     }
228     *o = '\0';
229 }
230
231 void http_addheader(struct http_response *r, const char *name, const char *value)
232 {
233     struct http_channel *c = r->channel;
234     struct http_header *h = nmem_malloc(c->nmem, sizeof *h);
235     h->name = nmem_strdup(c->nmem, name);
236     h->value = nmem_strdup(c->nmem, value);
237     h->next = r->headers;
238     r->headers = h;
239 }
240
241 char *http_argbyname(struct http_request *r, char *name)
242 {
243     struct http_argument *p;
244     if (!name)
245         return 0;
246     for (p = r->arguments; p; p = p->next)
247         if (!strcmp(p->name, name))
248             return p->value;
249     return 0;
250 }
251
252 char *http_headerbyname(struct http_header *h, char *name)
253 {
254     for (; h; h = h->next)
255         if (!strcmp(h->name, name))
256             return h->value;
257     return 0;
258 }
259
260 struct http_response *http_create_response(struct http_channel *c)
261 {
262     struct http_response *r = nmem_malloc(c->nmem, sizeof(*r));
263     strcpy(r->code, "200");
264     r->msg = "OK";
265     r->channel = c;
266     r->headers = 0;
267     r->payload = 0;
268     return r;
269 }
270
271 // Check if buf contains a package (minus payload)
272 static int package_check(const char *buf)
273 {
274     int len = 0;
275     while (*buf) // Check if we have a sequence of lines terminated by an empty line
276     {
277         char *b = strstr(buf, "\r\n");
278
279         if (!b)
280             return 0;
281
282         len += (b - buf) + 2;
283         if (b == buf)
284             return len;
285         buf = b + 2;
286     }
287     return 0;
288 }
289
290 // Check if we have a request. Return 0 or length
291 // (including trailing CRNL) FIXME: Does not deal gracefully with requests
292 // carrying payload but this is kind of OK since we will reject anything
293 // other than an empty GET
294 static int request_check(struct http_buf *queue)
295 {
296     char tmp[4096];
297
298     http_buf_peek(queue, tmp, 4096);
299     return package_check(tmp);
300 }
301
302 struct http_response *http_parse_response_buf(struct http_channel *c, const char *buf, int len)
303 {
304     char tmp[4096];
305     struct http_response *r = http_create_response(c);
306     char *p, *p2;
307     struct http_header **hp = &r->headers;
308
309     if (len >= 4096)
310         return 0;
311     memcpy(tmp, buf, len);
312     for (p = tmp; *p && *p != ' '; p++) // Skip HTTP version
313         ;
314     p++;
315     // Response code
316     for (p2 = p; *p2 && *p2 != ' ' && p2 - p < 3; p2++)
317         r->code[p2 - p] = *p2;
318     if (!(p = strstr(tmp, "\r\n")))
319         return 0;
320     p += 2;
321     while (*p)
322     {
323         if (!(p2 = strstr(p, "\r\n")))
324             return 0;
325         if (p == p2) // End of headers
326             break;
327         else
328         {
329             struct http_header *h = *hp = nmem_malloc(c->nmem, sizeof(*h));
330             char *value = strchr(p, ':');
331             if (!value)
332                 return 0;
333             *(value++) = '\0';
334             h->name = nmem_strdup(c->nmem, p);
335             while (isspace(*value))
336                 value++;
337             if (value >= p2)  // Empty header;
338             {
339                 h->value = "";
340                 p = p2 + 2;
341                 continue;
342             }
343             *p2 = '\0';
344             h->value = nmem_strdup(c->nmem, value);
345             h->next = 0;
346             hp = &h->next;
347             p = p2 + 2;
348         }
349     }
350     return r;
351 }
352
353 struct http_request *http_parse_request(struct http_channel *c,
354                                         struct http_buf **queue,
355                                         int len)
356 {
357     struct http_request *r = nmem_malloc(c->nmem, sizeof(*r));
358     char *p, *p2;
359     char tmp[4096];
360     char *buf = tmp;
361
362     if (len > 4096)
363         return 0;
364     if (http_buf_read(queue, buf, len) < len)
365         return 0;
366
367     r->search = "";
368     r->channel = c;
369     r->arguments = 0;
370     r->headers = 0;
371     // Parse first line
372     for (p = buf, p2 = r->method; *p && *p != ' ' && p - buf < 19; p++)
373         *(p2++) = *p;
374     if (*p != ' ')
375     {
376         yaz_log(YLOG_WARN, "Unexpected HTTP method in request");
377         return 0;
378     }
379     *p2 = '\0';
380
381     if (!(buf = strchr(buf, ' ')))
382     {
383         yaz_log(YLOG_WARN, "Syntax error in request (1)");
384         return 0;
385     }
386     buf++;
387     if (!(p = strchr(buf, ' ')))
388     {
389         yaz_log(YLOG_WARN, "Syntax error in request (2)");
390         return 0;
391     }
392     *(p++) = '\0';
393     if ((p2 = strchr(buf, '?'))) // Do we have arguments?
394         *(p2++) = '\0';
395     r->path = nmem_strdup(c->nmem, buf);
396     if (p2)
397     {
398         r->search = nmem_strdup(c->nmem, p2);
399         // Parse Arguments
400         while (*p2)
401         {
402             struct http_argument *a;
403             char *equal = strchr(p2, '=');
404             char *eoa = strchr(p2, '&');
405             if (!equal)
406             {
407                 yaz_log(YLOG_WARN, "Expected '=' in argument");
408                 return 0;
409             }
410             if (!eoa)
411                 eoa = equal + strlen(equal); // last argument
412             else
413                 *(eoa++) = '\0';
414             a = nmem_malloc(c->nmem, sizeof(struct http_argument));
415             *(equal++) = '\0';
416             a->name = nmem_strdup(c->nmem, p2);
417             urldecode(equal, equal);
418             a->value = nmem_strdup(c->nmem, equal);
419             a->next = r->arguments;
420             r->arguments = a;
421             p2 = eoa;
422         }
423     }
424     buf = p;
425
426     if (strncmp(buf, "HTTP/", 5))
427         strcpy(r->http_version, "1.0");
428     else
429     {
430         buf += 5;
431         if (!(p = strstr(buf, "\r\n")))
432             return 0;
433         *(p++) = '\0';
434         p++;
435         strcpy(r->http_version, buf);
436         buf = p;
437     }
438     strcpy(c->version, r->http_version);
439
440     r->headers = 0;
441     while (*buf)
442     {
443         if (!(p = strstr(buf, "\r\n")))
444             return 0;
445         if (p == buf)
446             break;
447         else
448         {
449             struct http_header *h = nmem_malloc(c->nmem, sizeof(*h));
450             if (!(p2 = strchr(buf, ':')))
451                 return 0;
452             *(p2++) = '\0';
453             h->name = nmem_strdup(c->nmem, buf);
454             while (isspace(*p2))
455                 p2++;
456             if (p2 >= p) // Empty header?
457             {
458                 buf = p + 2;
459                 continue;
460             }
461             *p = '\0';
462             h->value = nmem_strdup(c->nmem, p2);
463             h->next = r->headers;
464             r->headers = h;
465             buf = p + 2;
466         }
467     }
468
469     return r;
470 }
471
472 static struct http_buf *http_serialize_response(struct http_channel *c,
473         struct http_response *r)
474 {
475     struct http_header *h;
476
477     wrbuf_rewind(c->wrbuf);
478     wrbuf_printf(c->wrbuf, "HTTP/1.1 %s %s\r\n", r->code, r->msg);
479     for (h = r->headers; h; h = h->next)
480         wrbuf_printf(c->wrbuf, "%s: %s\r\n", h->name, h->value);
481     if (r->payload)
482     {
483         wrbuf_printf(c->wrbuf, "Content-length: %d\r\n", r->payload ?
484                 (int) strlen(r->payload) : 0);
485         wrbuf_printf(c->wrbuf, "Content-type: text/xml\r\n");
486         if (1)
487         {
488             xmlDoc *doc = xmlParseMemory(r->payload, strlen(r->payload));
489             if (doc)
490             {
491                 xmlFreeDoc(doc);
492             }
493             else
494             {
495                 yaz_log(YLOG_WARN, "Sending non-wellformed "
496                         "response (bug #1162");
497                 yaz_log(YLOG_WARN, "payload: %s", r->payload);
498             }
499         }
500     }
501     wrbuf_puts(c->wrbuf, "\r\n");
502
503     if (r->payload)
504         wrbuf_puts(c->wrbuf, r->payload);
505
506     return http_buf_bywrbuf(c->wrbuf);
507 }
508
509 // Serialize a HTTP request
510 static struct http_buf *http_serialize_request(struct http_request *r)
511 {
512     struct http_channel *c = r->channel;
513     struct http_header *h;
514     struct http_argument *a;
515
516     wrbuf_rewind(c->wrbuf);
517     wrbuf_printf(c->wrbuf, "%s %s", r->method, r->path);
518
519     if (r->arguments)
520     {
521         wrbuf_putc(c->wrbuf, '?');
522         for (a = r->arguments; a; a = a->next) {
523             if (a != r->arguments)
524                 wrbuf_putc(c->wrbuf, '&');
525             wrbuf_printf(c->wrbuf, "%s=%s", a->name, a->value);
526         }
527     }
528
529     wrbuf_printf(c->wrbuf, " HTTP/%s\r\n", r->http_version);
530
531     for (h = r->headers; h; h = h->next)
532         wrbuf_printf(c->wrbuf, "%s: %s\r\n", h->name, h->value);
533
534     wrbuf_puts(c->wrbuf, "\r\n");
535     
536     return http_buf_bywrbuf(c->wrbuf);
537 }
538
539
540 static int http_weshouldproxy(struct http_request *rq)
541 {
542     if (proxy_addr && !strstr(rq->path, "search.pz2"))
543         return 1;
544     return 0;
545 }
546
547
548 struct http_header * http_header_append(struct http_channel *ch, 
549                                         struct http_header * hp, 
550                                         const char *name, 
551                                         const char *value)
552 {
553     struct http_header *hpnew = 0; 
554
555     if (!hp | !ch)
556         return 0;
557
558     while (hp && hp->next)
559         hp = hp->next;
560
561     if(name && strlen(name)&& value && strlen(value)){
562         hpnew = nmem_malloc(ch->nmem, sizeof *hpnew);
563         hpnew->name = nmem_strdup(ch->nmem, name);
564         hpnew->value = nmem_strdup(ch->nmem, value);
565         
566         hpnew->next = 0;
567         hp->next = hpnew;
568         hp = hp->next;
569         
570         return hpnew;
571     }
572
573     return hp;
574 }
575
576     
577
578 static int http_proxy(struct http_request *rq)
579 {
580     struct http_channel *c = rq->channel;
581     struct http_proxy *p = c->proxy;
582     struct http_header *hp;
583     struct http_buf *requestbuf;
584     char server_via[128] = "";
585     char server_port[16] = "";
586     struct conf_server *ser = global_parameters.server;
587
588     if (!p) // This is a new connection. Create a proxy channel
589     {
590         int sock;
591         struct protoent *pe;
592         int one = 1;
593         int flags;
594
595         if (!(pe = getprotobyname("tcp"))) {
596             abort();
597         }
598         if ((sock = socket(PF_INET, SOCK_STREAM, pe->p_proto)) < 0)
599         {
600             yaz_log(YLOG_WARN|YLOG_ERRNO, "socket");
601             return -1;
602         }
603         if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char*)
604                         &one, sizeof(one)) < 0)
605             abort();
606         if ((flags = fcntl(sock, F_GETFL, 0)) < 0) 
607             yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl");
608         if (fcntl(sock, F_SETFL, flags | O_NONBLOCK) < 0)
609             yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl2");
610         if (connect(sock, (struct sockaddr *) proxy_addr, 
611                     sizeof(*proxy_addr)) < 0)
612             if (errno != EINPROGRESS)
613             {
614                 yaz_log(YLOG_WARN|YLOG_ERRNO, "Proxy connect");
615                 return -1;
616             }
617
618         p = xmalloc(sizeof(struct http_proxy));
619         p->oqueue = 0;
620         p->channel = c;
621         p->first_response = 1;
622         c->proxy = p;
623         // We will add EVENT_OUTPUT below
624         p->iochan = iochan_create(sock, proxy_io, EVENT_INPUT);
625         iochan_setdata(p->iochan, p);
626         pazpar2_add_channel(p->iochan);
627     }
628
629     // Do _not_ modify Host: header, just checking it's existence
630     for (hp = rq->headers; hp; hp = hp->next)
631         if (!strcmp(hp->name, "Host"))
632             break;
633     if (!hp)
634     {
635         yaz_log(YLOG_WARN, "Failed to find Host header in proxy");
636         return -1;
637     }
638     
639     // Add new header about paraz2 version, host, remote client address, etc.
640     {
641         hp = rq->headers;
642         hp = http_header_append(c, hp, 
643                                 "X-Pazpar2-Version", PACKAGE_VERSION);
644         hp = http_header_append(c, hp, 
645                                 "X-Pazpar2-Server-Host", ser->host);
646         sprintf(server_port, "%d",  ser->port);
647         hp = http_header_append(c, hp, 
648                                 "X-Pazpar2-Server-Port", server_port);
649         sprintf(server_via,  "1.1 %s:%s (%s/%s)",  
650                 ser->host, server_port, PACKAGE_NAME, PACKAGE_VERSION);
651         hp = http_header_append(c, hp, "Via" , server_via);
652         hp = http_header_append(c, hp, "X-Forwarded-For", c->addr);
653     }
654     
655     requestbuf = http_serialize_request(rq);
656     http_buf_enqueue(&p->oqueue, requestbuf);
657     iochan_setflag(p->iochan, EVENT_OUTPUT);
658     return 0;
659 }
660
661 void http_send_response(struct http_channel *ch)
662 {
663     struct http_response *rs = ch->response;
664     struct http_buf *hb;
665
666     assert(rs);
667     hb = http_serialize_response(ch, rs);
668     if (!hb)
669     {
670         yaz_log(YLOG_WARN, "Failed to serialize HTTP response");
671         http_destroy(ch->iochan);
672     }
673     else
674     {
675         http_buf_enqueue(&ch->oqueue, hb);
676         iochan_setflag(ch->iochan, EVENT_OUTPUT);
677         ch->state = Http_Idle;
678     }
679 }
680
681 static void http_io(IOCHAN i, int event)
682 {
683     struct http_channel *hc = iochan_getdata(i);
684
685     switch (event)
686     {
687         int res, reqlen;
688         struct http_buf *htbuf;
689
690         case EVENT_INPUT:
691             htbuf = http_buf_create();
692             res = read(iochan_getfd(i), htbuf->buf, HTTP_BUF_SIZE -1);
693             if (res == -1 && errno == EAGAIN)
694             {
695                 http_buf_destroy(htbuf);
696                 return;
697             }
698             if (res <= 0)
699             {
700                 http_buf_destroy(htbuf);
701                 http_destroy(i);
702                 return;
703             }
704             if (res > 0)
705             {
706                 htbuf->buf[res] = '\0';
707                 htbuf->len = res;
708                 http_buf_enqueue(&hc->iqueue, htbuf);
709             }
710
711             if (hc->state == Http_Busy)
712                 return;
713             if ((reqlen = request_check(hc->iqueue)) <= 2)
714                 return;
715
716             nmem_reset(hc->nmem);
717             if (!(hc->request = http_parse_request(hc, &hc->iqueue, reqlen)))
718             {
719                 yaz_log(YLOG_WARN, "Failed to parse request");
720                 http_destroy(i);
721                 return;
722             }
723             hc->response = 0;
724             yaz_log(YLOG_LOG, "Request: %s %s%s%s", hc->request->method,
725                     hc->request->path,
726                     *hc->request->search ? "?" : "",
727                     hc->request->search);
728             if (http_weshouldproxy(hc->request))
729                 http_proxy(hc->request);
730             else
731             {
732                 // Execute our business logic!
733                 hc->state = Http_Busy;
734                 http_command(hc);
735             }
736             if (hc->iqueue)
737             {
738                 yaz_log(YLOG_DEBUG, "We think we have more input to read. Forcing event");
739                 iochan_setevent(i, EVENT_INPUT);
740             }
741
742             break;
743
744         case EVENT_OUTPUT:
745             if (hc->oqueue)
746             {
747                 struct http_buf *wb = hc->oqueue;
748                 res = write(iochan_getfd(hc->iochan), wb->buf + wb->offset, wb->len);
749                 if (res <= 0)
750                 {
751                     yaz_log(YLOG_WARN|YLOG_ERRNO, "write");
752                     http_destroy(i);
753                     return;
754                 }
755                 if (res == wb->len)
756                 {
757                     hc->oqueue = hc->oqueue->next;
758                     http_buf_destroy(wb);
759                 }
760                 else
761                 {
762                     wb->len -= res;
763                     wb->offset += res;
764                 }
765                 if (!hc->oqueue) {
766                     if (!strcmp(hc->version, "1.0"))
767                     {
768                         http_destroy(i);
769                         return;
770                     }
771                     else
772                     {
773                         iochan_clearflag(i, EVENT_OUTPUT);
774                         if (hc->iqueue)
775                             iochan_setevent(hc->iochan, EVENT_INPUT);
776                     }
777                 }
778             }
779
780             if (!hc->oqueue && hc->proxy && !hc->proxy->iochan) 
781                 http_destroy(i); // Server closed; we're done
782             break;
783         default:
784             yaz_log(YLOG_WARN, "Unexpected event on connection");
785             http_destroy(i);
786     }
787 }
788
789 #ifdef GAGA
790 // If this hostname contains our proxy host as a prefix, replace with myurl
791 static char *sub_hostname(struct http_channel *c, char *buf)
792 {
793     char tmp[1024];
794     if (strlen(buf) > 1023)
795         return buf;
796     if (strncmp(buf, "http://", 7))
797         return buf;
798     if (!strncmp(buf + 7, proxy_url, strlen(proxy_url)))
799     {
800         strcpy(tmp, myurl);
801         strcat(tmp, buf + strlen(proxy_url) + 7);
802         return nmem_strdup(c->nmem, tmp);
803     }
804     return buf;
805 }
806 #endif
807
808 // Handles I/O on a client connection to a backend web server (proxy mode)
809 static void proxy_io(IOCHAN pi, int event)
810 {
811     struct http_proxy *pc = iochan_getdata(pi);
812     struct http_channel *hc = pc->channel;
813
814     switch (event)
815     {
816         int res;
817         struct http_buf *htbuf;
818
819         case EVENT_INPUT:
820             htbuf = http_buf_create();
821             res = read(iochan_getfd(pi), htbuf->buf, HTTP_BUF_SIZE -1);
822             if (res == 0 || (res < 0 && errno != EINPROGRESS))
823             {
824                 if (hc->oqueue)
825                 {
826                     yaz_log(YLOG_WARN, "Proxy read came up short");
827                     // Close channel and alert client HTTP channel that we're gone
828                     http_buf_destroy(htbuf);
829                     close(iochan_getfd(pi));
830                     iochan_destroy(pi);
831                     pc->iochan = 0;
832                 }
833                 else
834                 {
835                     http_destroy(hc->iochan);
836                     return;
837                 }
838             }
839             else
840             {
841                 htbuf->buf[res] = '\0';
842                 htbuf->offset = 0;
843                 htbuf->len = res;
844 #ifdef GAGA
845                 if (pc->first_response) // Check if this is a redirect
846                 {
847                     int len;
848                     if ((len = package_check(htbuf->buf)))
849                     {
850                         struct http_response *res = http_parse_response_buf(hc, htbuf->buf, len);
851                         if (res)
852                         {
853                             struct http_header *h;
854                             for (h = res->headers; h; h = h->next)
855                                 if (!strcmp(h->name, "Location"))
856                                 {
857                                     // We found a location header. Rewrite it.
858                                     struct http_buf *buf;
859                                     h->value = sub_hostname(hc, h->value);
860                                     buf = http_serialize_response(hc, res);
861                                     yaz_log(YLOG_LOG, "Proxy rewrite");
862                                     http_buf_enqueue(&hc->oqueue, buf);
863                                     htbuf->offset = len;
864                                     break;
865                                 }
866                         }
867                     }
868                     pc->first_response = 0;
869                 }
870 #endif
871                 // Write any remaining payload
872                 if (htbuf->len - htbuf->offset > 0)
873                     http_buf_enqueue(&hc->oqueue, htbuf);
874             }
875             iochan_setflag(hc->iochan, EVENT_OUTPUT);
876             break;
877         case EVENT_OUTPUT:
878             if (!(htbuf = pc->oqueue))
879             {
880                 iochan_clearflag(pi, EVENT_OUTPUT);
881                 return;
882             }
883             res = write(iochan_getfd(pi), htbuf->buf + htbuf->offset, htbuf->len);
884             if (res <= 0)
885             {
886                 yaz_log(YLOG_WARN|YLOG_ERRNO, "write");
887                 http_destroy(hc->iochan);
888                 return;
889             }
890             if (res == htbuf->len)
891             {
892                 struct http_buf *np = htbuf->next;
893                 http_buf_destroy(htbuf);
894                 pc->oqueue = np;
895             }
896             else
897             {
898                 htbuf->len -= res;
899                 htbuf->offset += res;
900             }
901
902             if (!pc->oqueue) {
903                 iochan_setflags(pi, EVENT_INPUT); // Turns off output flag
904             }
905             break;
906         default:
907             yaz_log(YLOG_WARN, "Unexpected event on connection");
908             http_destroy(hc->iochan);
909     }
910 }
911
912 // Cleanup channel
913 static void http_destroy(IOCHAN i)
914 {
915     struct http_channel *s = iochan_getdata(i);
916
917     if (s->proxy)
918     {
919         if (s->proxy->iochan)
920         {
921             close(iochan_getfd(s->proxy->iochan));
922             iochan_destroy(s->proxy->iochan);
923         }
924         http_buf_destroy_queue(s->proxy->oqueue);
925         xfree(s->proxy);
926     }
927     s->next = http_channel_freelist;
928     http_channel_freelist = s;
929     close(iochan_getfd(i));
930     iochan_destroy(i);
931 }
932
933 static struct http_channel *http_create(const char *addr)
934 {
935     struct http_channel *r = http_channel_freelist;
936
937     if (r)
938     {
939         http_channel_freelist = r->next;
940         nmem_reset(r->nmem);
941         wrbuf_rewind(r->wrbuf);
942     }
943     else
944     {
945         r = xmalloc(sizeof(struct http_channel));
946         r->nmem = nmem_create();
947         r->wrbuf = wrbuf_alloc();
948     }
949     r->proxy = 0;
950     r->iochan = 0;
951     r->iqueue = r->oqueue = 0;
952     r->state = Http_Idle;
953     r->request = 0;
954     r->response = 0;
955     if (!addr)
956     {
957         yaz_log(YLOG_WARN, "Invalid HTTP forward address");
958         exit(1);
959     }
960     strcpy(r->addr, addr);
961     return r;
962 }
963
964
965 /* Accept a new command connection */
966 static void http_accept(IOCHAN i, int event)
967 {
968     struct sockaddr_in addr;
969     int fd = iochan_getfd(i);
970     socklen_t len;
971     int s;
972     IOCHAN c;
973     int flags;
974     struct http_channel *ch;
975
976     len = sizeof addr;
977     if ((s = accept(fd, (struct sockaddr *) &addr, &len)) < 0)
978     {
979         yaz_log(YLOG_WARN|YLOG_ERRNO, "accept");
980         return;
981     }
982     if ((flags = fcntl(s, F_GETFL, 0)) < 0) 
983         yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl");
984     if (fcntl(s, F_SETFL, flags | O_NONBLOCK) < 0)
985         yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl2");
986
987     yaz_log(YLOG_DEBUG, "New command connection");
988     c = iochan_create(s, http_io, EVENT_INPUT | EVENT_EXCEPT);
989     
990     ch = http_create(inet_ntoa(addr.sin_addr));
991     ch->iochan = c;
992     iochan_setdata(c, ch);
993
994     pazpar2_add_channel(c);
995 }
996
997 /* Create a http-channel listener, syntax [host:]port */
998 void http_init(const char *addr)
999 {
1000     IOCHAN c;
1001     int l;
1002     struct protoent *p;
1003     struct sockaddr_in myaddr;
1004     int one = 1;
1005     const char *pp;
1006     int port;
1007
1008     yaz_log(YLOG_LOG, "HTTP listener %s", addr);
1009
1010     memset(&myaddr, 0, sizeof myaddr);
1011     myaddr.sin_family = AF_INET;
1012     pp = strchr(addr, ':');
1013     if (pp)
1014     {
1015         int len = pp - addr;
1016         char hostname[128];
1017         struct hostent *he;
1018
1019         strncpy(hostname, addr, len);
1020         hostname[len] = '\0';
1021         if (!(he = gethostbyname(hostname))){
1022             yaz_log(YLOG_FATAL, "Unable to resolve '%s'", hostname);
1023             exit(1);
1024         }
1025         
1026         memcpy(&myaddr.sin_addr.s_addr, he->h_addr_list[0], he->h_length);
1027         port = atoi(pp + 1);
1028
1029         yaz_log(YLOG_LOG, "HTTP address  %s:%d", 
1030                 "" == he->h_addr_list[0] ? he->h_addr_list[0] : "127.0.0.1" , 
1031                     port);
1032
1033     }
1034     else
1035     {
1036         port = atoi(addr);
1037         myaddr.sin_addr.s_addr = INADDR_ANY;
1038     }
1039
1040     myaddr.sin_port = htons(port);
1041
1042     if (!(p = getprotobyname("tcp"))) {
1043         abort();
1044     }
1045     if ((l = socket(PF_INET, SOCK_STREAM, p->p_proto)) < 0)
1046         yaz_log(YLOG_FATAL|YLOG_ERRNO, "socket");
1047     if (setsockopt(l, SOL_SOCKET, SO_REUSEADDR, (char*)
1048                     &one, sizeof(one)) < 0)
1049         abort();
1050
1051     if (bind(l, (struct sockaddr *) &myaddr, sizeof myaddr) < 0) 
1052     {
1053         yaz_log(YLOG_FATAL|YLOG_ERRNO, "bind");
1054         exit(1);
1055     }
1056     if (listen(l, SOMAXCONN) < 0) 
1057     {
1058         yaz_log(YLOG_FATAL|YLOG_ERRNO, "listen");
1059         exit(1);
1060     }
1061
1062     c = iochan_create(l, http_accept, EVENT_INPUT | EVENT_EXCEPT);
1063     pazpar2_add_channel(c);
1064 }
1065
1066 void http_set_proxyaddr(char *host, char *base_url)
1067 {
1068     char *p;
1069     int port;
1070     struct hostent *he;
1071
1072     strcpy(myurl, base_url);
1073     strcpy(proxy_url, host);
1074     p = strchr(host, ':');
1075     yaz_log(YLOG_DEBUG, "Proxying for %s", host);
1076     yaz_log(YLOG_LOG, "HTTP backend  %s", proxy_url);
1077     if (p) {
1078         port = atoi(p + 1);
1079         *p = '\0';
1080     }
1081     else
1082         port = 80;
1083     if (!(he = gethostbyname(host))) 
1084     {
1085         fprintf(stderr, "Failed to lookup '%s'\n", host);
1086         exit(1);
1087     }
1088     proxy_addr = xmalloc(sizeof(struct sockaddr_in));
1089     proxy_addr->sin_family = he->h_addrtype;
1090     memcpy(&proxy_addr->sin_addr.s_addr, he->h_addr_list[0], he->h_length);
1091     proxy_addr->sin_port = htons(port);
1092 }
1093
1094 /*
1095  * Local variables:
1096  * c-basic-offset: 4
1097  * indent-tabs-mode: nil
1098  * End:
1099  * vim: shiftwidth=4 tabstop=8 expandtab
1100  */