]> code.citadel.org Git - citadel.git/blob - webcit/context_loop.c
handled unpacking of multiple cookies coming in on one Cookie: line
[citadel.git] / webcit / context_loop.c
1 /*
2  * context_loop.c
3  *
4  * This is the other half of the webserver.  It handles the task of hooking
5  * up HTTP requests with the session they belong to, using HTTP cookies to
6  * keep track of things.  If the HTTP request doesn't belong to any currently
7  * active session, a new session is spawned.
8  */
9
10 #include <stdlib.h>
11 #include <unistd.h>
12 #include <stdio.h>
13 #include <fcntl.h>
14 #include <signal.h>
15 #include <sys/types.h>
16 #include <sys/wait.h>
17 #include <sys/socket.h>
18 #include <sys/time.h>
19 #include <limits.h>
20 #include <netinet/in.h>
21 #include <netdb.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <stdarg.h>
25 #include <pthread.h>
26 #include "webcit.h"
27
28 /*
29  * We keep one of these around for each active session
30  */
31 struct wc_session {
32         struct wc_session *next;        /* Next session in list */
33         int session_id;                 /* Session ID */
34         int inpipe[2];                  /* Data from webserver to session */
35         int outpipe[2];                 /* Data from session to webserver */
36         pthread_mutex_t critter;        /* Critical section uses pipes */
37         };
38
39 struct wc_session *SessionList = NULL;
40
41 int GenerateSessionID() {
42         return getpid();
43         }
44
45
46 void gets0(int fd, char buf[]) {
47
48         buf[0] = 0;
49         do {
50                 buf[strlen(buf)+1] = 0;
51                 read(fd, &buf[strlen(buf)], 1);
52                 } while (buf[strlen(buf)-1] >= 32);
53         buf[strlen(buf)-1] = 0;
54         }
55
56 /*
57  * Collapse multiple cookies on one line
58  */
59 void req_gets(int sock, char *buf, char *hold) {
60         int a;
61
62         if (strlen(hold)==0) {
63                 client_gets(sock, buf);
64                 }
65         else {
66                 strcpy(buf, hold);
67                 }
68         strcpy(hold, "");
69
70         if (!strncasecmp(buf, "Cookie: ", 8)) {
71                 for (a=0; a<strlen(buf); ++a) if (buf[a]==';') {
72                         sprintf(hold, "Cookie: %s", &buf[a+1]);
73                         buf[a]=0;
74                         while (isspace(hold[8])) strcpy(&hold[8], &hold[9]);
75                         return;
76                         }
77                 }
78         }
79
80
81 /*
82  * This loop gets called once for every HTTP connection made to WebCit.
83  */
84 void *context_loop(int *socknumptr) {
85         char req[256][256];
86         char buf[256], hold[256];
87         int num_lines = 0;
88         int a;
89         int f;
90         int sock;
91         int desired_session = 0;
92         char str_session[256];
93         struct wc_session *sptr;
94         struct wc_session *TheSession;
95         int ContentLength;
96
97         sock = *socknumptr;
98
99         /*
100          * Find out what it is that the web browser is asking for
101          */
102         ContentLength = 0;
103         do {
104                 req_gets(sock, buf, hold);
105                 if (!strncasecmp(buf, "Cookie: wc_session=", 19)) {
106                         desired_session = atoi(&buf[19]);
107                         }
108                 if (!strncasecmp(buf, "Content-length: ", 16)) {
109                         ContentLength = atoi(&buf[16]);
110                         }
111                 strcpy(&req[num_lines++][0], buf);
112                 } while(strlen(buf)>0);
113
114         /*
115          * See if there's an existing session open with the desired ID
116          */
117         TheSession = NULL;
118         if (desired_session != 0) {
119                 for (sptr=SessionList; sptr!=NULL; sptr=sptr->next) {
120                         if (sptr->session_id == desired_session) {
121                                 TheSession = sptr;
122                                 }
123                         }
124                 }
125
126         /*
127          * Create a new session if we have to
128          */
129         if (TheSession == NULL) {
130                 printf("Creating a new session\n");
131                 TheSession = (struct wc_session *)
132                         malloc(sizeof(struct wc_session));
133                 TheSession->session_id = GenerateSessionID();
134                 pthread_mutex_init(&TheSession->critter, NULL);
135                 pipe(TheSession->inpipe);
136                 pipe(TheSession->outpipe);
137                 TheSession->next = SessionList;
138                 SessionList = TheSession;
139                 sprintf(str_session, "%d", TheSession->session_id);
140                 f = fork();
141                 fflush(stdout); fflush(stdin);
142                 if (f==0) {
143                         dup2(TheSession->inpipe[0], 0);
144                         dup2(TheSession->outpipe[1], 1);
145                         execlp("./webcit", "webcit", str_session, NULL);
146                         printf("HTTP/1.0 404 WebCit Failure\n\n");
147                         printf("Server: %s\n", SERVER);
148                         printf("Content-type: text/html\n");
149                         printf("Content-length: 76\n");
150                         printf("\n");
151                         printf("<HTML><HEAD><TITLE>Error</TITLE></HEAD>\n");
152                         printf("<BODY>execlp() failed</BODY></HTML>\n");
153                         exit(0);
154                         }
155                 }
156
157         /* 
158          * Send the request to the appropriate session
159          */
160         pthread_mutex_lock(&TheSession->critter);
161         for (a=0; a<num_lines; ++a) {
162                 write(TheSession->inpipe[1], &req[a][0], strlen(&req[a][0]));
163                 write(TheSession->inpipe[1], "\n", 1);
164                 }
165         while (ContentLength--) {
166                 read(sock, buf, 1);
167                 write(TheSession->inpipe[1], buf, 1);
168                 }
169
170         /*
171          * ...and get the response (FIX for non-text)
172          */
173         ContentLength = 0;
174         do {
175                 gets0(TheSession->outpipe[0], buf);
176                 write(sock, buf, strlen(buf));
177                 write(sock, "\n", 1);
178                 if (!strncasecmp(buf, "Content-length: ", 16))
179                         ContentLength = atoi(&buf[16]);
180                 } while (strlen(buf) > 0);
181
182         while(ContentLength--) {
183                 read(TheSession->outpipe[0], buf, 1);
184                 write(sock, buf, 1);
185                 }
186
187         pthread_mutex_unlock(&TheSession->critter);
188
189         /*
190          * Now our HTTP connection is done.  It would be relatively easy
191          * to support HTTP/1.1 "persistent" connections by looping back to
192          * the top of this function.  For now, we'll just exit.
193          */
194         close(sock);
195         pthread_exit(NULL);
196         }