* context_loop.c: After fork(), child process closes the HTTP socket
[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  * $Id$
10  */
11
12 #include <ctype.h>
13 #include <stdlib.h>
14 #ifdef HAVE_UNISTD_H
15 #include <unistd.h>
16 #endif
17 #include <stdio.h>
18 #ifdef HAVE_FCNTL_H
19 #include <fcntl.h>
20 #endif
21 #include <signal.h>
22 #include <sys/types.h>
23 #include <sys/wait.h>
24 #include <sys/socket.h>
25 #ifdef HAVE_SYS_TIME_H
26 #include <sys/time.h>
27 #endif
28 #ifdef HAVE_LIMITS_H
29 #include <limits.h>
30 #endif
31 #include <netinet/in.h>
32 #include <netdb.h>
33 #include <string.h>
34 #include <errno.h>
35 #include <stdarg.h>
36 #include <pthread.h>
37 #include "webcit.h"
38 #include "webserver.h"
39
40 /*
41  * We keep one of these around for each active session
42  */
43 struct wc_session {
44         struct wc_session *next;        /* Next session in list */
45         int session_id;                 /* Session ID */
46         int inpipe[2];                  /* Data from webserver to session */
47         int outpipe[2];                 /* Data from session to webserver */
48         pthread_mutex_t critter;        /* Critical section uses pipes */
49         };
50
51 struct wc_session *SessionList = NULL;
52
53 /* Only one thread may manipulate SessionList at a time... */
54 pthread_mutex_t MasterCritter;
55
56 int GenerateSessionID(void) {
57         return getpid();
58         }
59
60
61 void gets0(int fd, char buf[]) {
62
63         buf[0] = 0;
64         do {
65                 buf[strlen(buf)+1] = 0;
66                 read(fd, &buf[strlen(buf)], 1);
67                 } while (buf[strlen(buf)-1] >= 32);
68         buf[strlen(buf)-1] = 0;
69         }
70
71 /*
72  * Collapse multiple cookies on one line
73  */
74 void req_gets(int sock, char *buf, char *hold) {
75         int a;
76
77         if (strlen(hold)==0) {
78                 client_gets(sock, buf);
79                 }
80         else {
81                 strcpy(buf, hold);
82                 }
83         strcpy(hold, "");
84
85         if (!strncasecmp(buf, "Cookie: ", 8)) {
86                 for (a=0; a<strlen(buf); ++a) if (buf[a]==';') {
87                         sprintf(hold, "Cookie: %s", &buf[a+1]);
88                         buf[a]=0;
89                         while (isspace(hold[8])) strcpy(&hold[8], &hold[9]);
90                         return;
91                         }
92                 }
93         }
94
95 /*
96  * Grab a lock on the session, so other threads don't try to access
97  * the pipes at the same time.
98  */
99 static void lock_session(struct wc_session *session) {
100         printf("Locking session %d...\n", session->session_id);
101         pthread_mutex_lock(&session->critter);
102         printf("   ...got lock\n");
103         }
104
105 /*
106  * Let go of the lock.
107  */
108 static void unlock_session(struct wc_session *session) {
109         printf("Unlocking.\n");
110         pthread_mutex_unlock(&session->critter);
111         }
112
113 extern const char *defaulthost;
114 extern const char *defaultport;
115
116 /*
117  * This loop gets called once for every HTTP connection made to WebCit.
118  */
119 void *context_loop(int sock) {
120         char (*req)[256];
121         char buf[256], hold[256];
122         int num_lines = 0;
123         int a;
124         int f;
125         int desired_session = 0;
126         char str_session[256];
127         struct wc_session *sptr;
128         struct wc_session *TheSession;
129         int ContentLength;
130         int CloseSession = 0;
131
132         if ((req = malloc((long)sizeof(char[256][256]))) == NULL) {
133                 sprintf(buf, "Can't malloc buffers; dropping connection.\n");
134                 fprintf(stderr, "%s", buf);
135                 write(sock, buf, strlen(buf));
136                 close (sock);
137                 pthread_exit(NULL);
138                 }
139
140         printf("Reading request from socket %d\n", sock);
141
142         /*
143          * Find out what it is that the web browser is asking for
144          */
145         ContentLength = 0;
146         do {
147                 req_gets(sock, buf, hold);
148                 if (!strncasecmp(buf, "Cookie: wc_session=", 19)) {
149                         desired_session = atoi(&buf[19]);
150                         }
151                 if (!strncasecmp(buf, "Content-length: ", 16)) {
152                         ContentLength = atoi(&buf[16]);
153                         }
154                 strcpy(&req[num_lines++][0], buf);
155                 } while(strlen(buf)>0);
156
157         /*
158          * See if there's an existing session open with the desired ID
159          */
160         TheSession = NULL;
161         if (desired_session != 0) {
162                 pthread_mutex_lock(&MasterCritter);
163                 for (sptr=SessionList; sptr!=NULL; sptr=sptr->next) {
164                         if (sptr->session_id == desired_session) {
165                                 TheSession = sptr;
166                                 lock_session(TheSession);
167                                 }
168                         }
169                 pthread_mutex_unlock(&MasterCritter);
170                 }
171
172         /*
173          * Create a new session if we have to
174          */
175         if (TheSession == NULL) {
176                 printf("Creating a new session\n");
177                 pthread_mutex_lock(&MasterCritter);
178                 TheSession = (struct wc_session *)
179                         malloc(sizeof(struct wc_session));
180                 TheSession->session_id = GenerateSessionID();
181                 pipe(TheSession->inpipe);
182                 pipe(TheSession->outpipe);
183                 pthread_mutex_init(&TheSession->critter, NULL);
184                 lock_session(TheSession);
185                 TheSession->next = SessionList;
186                 SessionList = TheSession;
187                 pthread_mutex_unlock(&MasterCritter);
188                 sprintf(str_session, "%d", TheSession->session_id);
189                 f = fork();
190                 fflush(stdout); fflush(stdin);
191                 if (f==0) {
192                         dup2(TheSession->inpipe[0], 0);
193                         dup2(TheSession->outpipe[1], 1);
194                         /* Close the ends of the pipes that we're not using */
195                         close(TheSession->inpipe[1]);
196                         close(TheSession->outpipe[0]);
197                         close(sock);
198                         execlp("./webcit", "webcit", str_session, defaulthost,
199                                defaultport, NULL);
200                         printf("HTTP/1.0 404 WebCit Failure\n\n");
201                         printf("Server: %s\n", SERVER);
202                         printf("Content-type: text/html\n");
203                         printf("Content-length: 76\n");
204                         printf("\n");
205                         printf("<HTML><HEAD><TITLE>Error</TITLE></HEAD>\n");
206                         printf("<BODY>execlp() failed</BODY></HTML>\n");
207                         exit(0);
208                         }
209                 /* Close the ends of the pipes that we're not using */
210                 close(TheSession->inpipe[0]);
211                 close(TheSession->outpipe[1]);
212                 }
213
214         /* 
215          * Send the request to the appropriate session...
216          */
217         printf("   Writing %d lines of command\n", num_lines);
218         printf("%s\n", &req[0][0]);
219         for (a=0; a<num_lines; ++a) {
220                 write(TheSession->inpipe[1], &req[a][0], strlen(&req[a][0]));
221                 write(TheSession->inpipe[1], "\n", 1);
222                 }
223         printf("   Writing %d bytes of content\n", ContentLength);
224         if (ContentLength > 0) {
225                 while (ContentLength > 0) {
226                         a = ContentLength;
227                         if (a > sizeof buf) a = sizeof buf;
228                         if (!client_read(sock, buf, a)) goto end;
229                         if (write(TheSession->inpipe[1], buf, a) != a) goto end;
230                         ContentLength -= a;
231                         }
232
233                 /* Discard the CRLF following the POST data. Yes, this is
234                  * necessary. No, you don't want to know why. */
235                 if (!client_read(sock, buf, 2)) goto end;
236                 }       
237
238         /*
239          * ...and get the response.
240          */
241         printf("   Reading response\n");
242         ContentLength = 0;
243         do {
244                 gets0(TheSession->outpipe[0], buf);
245                 write(sock, buf, strlen(buf));
246                 write(sock, "\n", 1);
247                 if (!strncasecmp(buf, "Content-length: ", 16))
248                         ContentLength = atoi(&buf[16]);
249                 if (!strcasecmp(buf, "X-WebCit-Session: close")) {
250                         CloseSession = 1;
251                         }
252                 } while (strlen(buf) > 0);
253
254         printf("   Reading %d bytes of content\n", ContentLength);
255         while(ContentLength--) {
256                 read(TheSession->outpipe[0], buf, 1);
257                 write(sock, buf, 1);
258                 }
259
260         /*
261          * If the last response included a "close session" directive,
262          * remove the context now.
263          */
264         if (CloseSession) {
265                 printf("Removing session.\n");
266                 pthread_mutex_lock(&MasterCritter);
267
268                 if (SessionList==TheSession) {
269                         SessionList = SessionList->next;
270                         }
271                 else {
272                         for (sptr=SessionList; sptr!=NULL; sptr=sptr->next) {
273                                 if (sptr->next == TheSession) {
274                                         sptr->next = TheSession->next;
275                                         }
276                                 }
277                         }
278
279                 close(TheSession->inpipe[1]);
280                 close(TheSession->outpipe[0]);
281                 unlock_session(TheSession);
282                 free(TheSession);
283         
284                 pthread_mutex_unlock(&MasterCritter);
285                 }
286         else {
287         end:
288                 unlock_session(TheSession);
289                 }
290
291         /*
292          * Now our HTTP connection is done.  It would be relatively easy
293          * to support HTTP/1.1 "persistent" connections by looping back to
294          * the top of this function.  For now, we'll just close.
295          */
296
297         free(req);
298         printf("   Closing socket %d ... ret=%d\n", sock, close(sock));
299         sleep(15);
300
301         /*
302          * The thread handling this HTTP connection is now finished.
303          */
304         pthread_exit(NULL);
305         }