* See the file LICENSE for details.
* Sebastian Hammer, Adam Dickmeiss
*
- * $Log: eventl.h,v $
- * Revision 1.1 2006-12-20 20:47:16 quinn
+ * $Id: eventl.h,v 1.2 2007-03-28 12:05:18 marc Exp $
+ * Revision 1.1 2006/12/20 20:47:16 quinn
* Reorganized source tree
*
* Revision 1.3 2006/12/12 02:36:24 quinn
#include <time.h>
+#ifdef WIN32
+#include <winsock.h>
+#else
+#include <unistd.h>
+#include <arpa/inet.h>
+#endif
+
+
struct iochan;
typedef void (*IOC_CALLBACK)(struct iochan *i, int event);
typedef struct iochan
{
int fd;
+ struct sockaddr_in addr_in;
+ char addr_str[64];
int flags;
#define EVENT_INPUT 0x01
#define EVENT_OUTPUT 0x02
#define iochan_settimeout(i, t) ((i)->max_idle = (t), (i)->last_event = time(0))
#define iochan_activity(i) ((i)->last_event = time(0))
-IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags);
+IOCHAN iochan_create(int fd, struct sockaddr_in * addr_in,
+ IOC_CALLBACK cb, int flags);
int event_loop(IOCHAN *iochans);
#endif
/*
- * $Id: http.c,v 1.13 2007-03-27 13:41:23 marc Exp $
+ * $Id: http.c,v 1.14 2007-03-28 12:05:18 marc Exp $
*/
#include <stdio.h>
#include <netdb.h>
#include <errno.h>
#include <assert.h>
+#include <string.h>
#if HAVE_CONFIG_H
#include <cconfig.h>
static void http_destroy(IOCHAN i);
extern IOCHAN channel_list;
+//extern struct parameters global_parameters;
-static struct sockaddr_in *proxy_addr = 0; // If this is set, we proxy normal HTTP requests
+// If this is set, we proxy normal HTTP requests
+static struct sockaddr_in *proxy_addr = 0;
static char proxy_url[256] = "";
static char myurl[256] = "";
static struct http_buf *http_buf_freelist = 0;
const char *name,
const char *value)
{
- struct http_header *hpnew = nmem_malloc(ch->nmem, sizeof *hpnew);
+ struct http_header *hpnew = 0;
+
+ if (!hp | !ch)
+ return 0;
while (hp && hp->next)
hp = hp->next;
- hpnew->name = nmem_strdup(ch->nmem, name);
- hpnew->value = nmem_strdup(ch->nmem, value);
- hpnew->next = 0;
- hp->next = hpnew;
- hp = hp->next;
- return hpnew;
+ if(name && strlen(name)&& value && strlen(value)){
+ hpnew = nmem_malloc(ch->nmem, sizeof *hpnew);
+ hpnew->name = nmem_strdup(ch->nmem, name);
+ hpnew->value = nmem_strdup(ch->nmem, value);
+
+ hpnew->next = 0;
+ hp->next = hpnew;
+ hp = hp->next;
+
+ return hpnew;
+ }
+
+ return hp;
}
struct http_proxy *p = c->proxy;
struct http_header *hp;
struct http_buf *requestbuf;
- //struct conf_server *ser = global_parameters.server;
+ char server_host[64] = "";
+ char server_port[16] = "";
if (!p) // This is a new connection. Create a proxy channel
p->first_response = 1;
c->proxy = p;
// We will add EVENT_OUTPUT below
- p->iochan = iochan_create(sock, proxy_io, EVENT_INPUT);
+ p->iochan = iochan_create(sock, 0, proxy_io, EVENT_INPUT);
iochan_setdata(p->iochan, p);
p->iochan->next = channel_list;
channel_list = p->iochan;
}
- // Modify Host: header
+ // Modify Host: header, but getting the host and port info first
for (hp = rq->headers; hp; hp = hp->next)
if (!strcmp(hp->name, "Host"))
break;
yaz_log(YLOG_WARN, "Failed to find Host header in proxy");
return -1;
}
+
+ {
+ char * colon = 0;
+
+ if((colon = strchr(hp->value, ':'))){
+ int collen = colon - hp->value;
+ strncpy(server_host, hp->value, (collen < 64) ? collen : 64 );
+ strncpy(server_port, colon + 1, 16);
+ } else {
+ strncpy(server_host, hp->value, 64);
+ strncpy(server_port, hp->value, 16);
+ }
+ }
+
hp->value = nmem_strdup(c->nmem, proxy_url);
- // Add new header about paraz2 version, host, remote client address, etc.
-
- hp = rq->headers;
- hp = http_header_append(c, hp, PACKAGE_NAME "-version", PACKAGE_VERSION);
- //hp = http_header_append(c, hp, PACKAGE_NAME "-server-host", ser->host);
- //hp = http_header_append(c, hp, PACKAGE_NAME "-server-port", ser->port);
- //hp = http_header_append(c, hp, PACKAGE_NAME "-remote-host", "blabla");
- //hp = http_header_append(c, hp, PACKAGE_NAME "-remote-port", "blabla");
+ // Add new header about paraz2 version, host, remote client address, etc.
+ {
+
+ hp = rq->headers;
+ hp = http_header_append(c, hp,
+ PACKAGE_NAME "-version", PACKAGE_VERSION);
+ hp = http_header_append(c, hp,
+ PACKAGE_NAME "-server-host", server_host);
+ //sprintf(server_port, "%d", ser->port);
+ hp = http_header_append(c, hp,
+ PACKAGE_NAME "-server-port", server_port);
+ hp = http_header_append(c, hp,
+ PACKAGE_NAME "-remote-addr",
+ c->iochan->addr_str);
+ }
requestbuf = http_serialize_request(rq);
http_buf_enqueue(&p->oqueue, requestbuf);
yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl2");
yaz_log(YLOG_DEBUG, "New command connection");
- c = iochan_create(s, http_io, EVENT_INPUT | EVENT_EXCEPT);
+ c = iochan_create(s, &addr, http_io, EVENT_INPUT | EVENT_EXCEPT);
ch = http_create();
ch->iochan = c;
if (listen(l, SOMAXCONN) < 0)
yaz_log(YLOG_FATAL|YLOG_ERRNO, "listen");
- c = iochan_create(l, http_accept, EVENT_INPUT | EVENT_EXCEPT);
+ c = iochan_create(l, &myaddr, http_accept, EVENT_INPUT | EVENT_EXCEPT);
c->next = channel_list;
channel_list = c;
}