aeccf66f54500548efcd77db698a20ce5d3f13d4
[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 <signal.h>
38 #include "webcit.h"
39 #include "webserver.h"
40
41 /* Only one thread may manipulate SessionList at a time... */
42 pthread_mutex_t SessionListMutex;
43
44 struct wcsession *SessionList = NULL;
45
46 pthread_key_t MyConKey;                         /* TSD key for MySession() */
47
48 void do_housekeeping(void)
49 {
50         struct wcsession *sptr, *ss, *session_to_kill;
51
52         do {
53                 session_to_kill = NULL;
54                 pthread_mutex_lock(&SessionListMutex);
55                 for (sptr = SessionList; sptr != NULL; sptr = sptr->next) {
56
57                         /* Kill idle sessions */
58                         if ((time(NULL) - (sptr->lastreq)) >
59                            (time_t) WEBCIT_TIMEOUT) {
60                                 sptr->killthis = 1;
61                         }
62
63                         /* Remove sessions flagged for kill */
64                         if (sptr->killthis) {
65
66                                 /* remove session from linked list */
67                                 if (sptr == SessionList) {
68                                         SessionList = SessionList->next;
69                                 }
70                                 else for (ss=SessionList;ss!=NULL;ss=ss->next) {
71                                         if (ss->next == sptr) {
72                                                 ss->next = ss->next->next;
73                                         }
74                                 }
75
76                                 session_to_kill = sptr;
77                                 goto BREAKOUT;
78                         }
79                 }
80 BREAKOUT:       pthread_mutex_unlock(&SessionListMutex);
81
82                 if (session_to_kill != NULL) {
83                         pthread_mutex_lock(&session_to_kill->SessionMutex);
84                         close(session_to_kill->serv_sock);
85                         pthread_mutex_unlock(&session_to_kill->SessionMutex);
86                         free(session_to_kill);
87                 }
88
89         } while (session_to_kill != NULL);
90 }
91
92
93 /* 
94  * Wake up occasionally and clean house
95  */
96 void housekeeping_loop(void)
97 {
98         while (1) {
99                 sleep(HOUSEKEEPING);
100                 do_housekeeping();
101         }
102 }
103
104
105 /*
106  * Generate a unique WebCit session ID (which is not the same thing as the
107  * Citadel session ID).
108  *
109  * FIX ... ensure that session number is truly unique
110  *
111  */
112 int GenerateSessionID(void)
113 {
114         static int seq = (-1);
115
116         if (seq < 0) {
117                 seq = (int) time(NULL);
118         }
119                 
120         return ++seq;
121 }
122
123
124 /*
125  * Collapse multiple cookies on one line
126  */
127 int req_gets(int sock, char *buf, char *hold)
128 {
129         int a;
130
131         if (strlen(hold) == 0) {
132                 a = client_gets(sock, buf);
133                 if (a<1) return(-1);
134         } else {
135                 strcpy(buf, hold);
136         }
137         strcpy(hold, "");
138
139         if (!strncasecmp(buf, "Cookie: ", 8)) {
140                 for (a = 0; a < strlen(buf); ++a)
141                         if (buf[a] == ';') {
142                                 sprintf(hold, "Cookie: %s", &buf[a + 1]);
143                                 buf[a] = 0;
144                                 while (isspace(hold[8]))
145                                         strcpy(&hold[8], &hold[9]);
146                                 return(0);
147                         }
148         }
149         return(0);
150 }
151
152 /*
153  * lingering_close() a`la Apache. see
154  * http://www.apache.org/docs/misc/fin_wait_2.html for rationale
155  */
156
157 static int lingering_close(int fd)
158 {
159         char buf[256];
160         int i;
161         fd_set set;
162         struct timeval tv, start;
163
164         gettimeofday(&start, NULL);
165         shutdown(fd, 1);
166         do {
167                 do {
168                         gettimeofday(&tv, NULL);
169                         tv.tv_sec = SLEEPING - (tv.tv_sec - start.tv_sec);
170                         tv.tv_usec = start.tv_usec - tv.tv_usec;
171                         if (tv.tv_usec < 0) {
172                                 tv.tv_sec--;
173                                 tv.tv_usec += 1000000;
174                         }
175                         FD_ZERO(&set);
176                         FD_SET(fd, &set);
177                         i = select(fd + 1, &set, NULL, NULL, &tv);
178                 } while (i == -1 && errno == EINTR);
179
180                 if (i <= 0)
181                         break;
182
183                 i = read(fd, buf, sizeof buf);
184         } while (i != 0 && (i != -1 || errno == EINTR));
185
186         return close(fd);
187 }
188
189
190
191
192 /*
193  * This loop gets called once for every HTTP connection made to WebCit.  At
194  * this entry point we have an HTTP socket with a browser allegedly on the
195  * other end, but we have not yet bound to a WebCit session.
196  *
197  * The job of this function is to locate the correct session and bind to it,
198  * or create a session if necessary and bind to it, then run the WebCit
199  * transaction loop.  Afterwards, we unbind from the session.  When this
200  * function returns, the worker thread is then free to handle another
201  * transaction.
202  */
203 void context_loop(int sock)
204 {
205         struct httprequest *req = NULL;
206         struct httprequest *last = NULL;
207         struct httprequest *hptr;
208         char buf[256], hold[256];
209         int desired_session = 0;
210         int got_cookie = 0;
211         struct wcsession *TheSession, *sptr;
212
213         /*
214          * Find out what it is that the web browser is asking for
215          */
216         do {
217                 if (req_gets(sock, buf, hold) < 0) return;
218                 if (!strncasecmp(buf, "Cookie: webcit=", 15)) {
219                         cookie_to_stuff(&buf[15], &desired_session,
220                                 NULL, NULL, NULL);
221                         got_cookie = 1;
222                 }
223
224                 hptr = (struct httprequest *)
225                         malloc(sizeof(struct httprequest));
226                 if (req == NULL)
227                         req = hptr;
228                 else
229                         last->next = hptr;
230                 hptr->next = NULL;
231                 last = hptr;
232
233                 strcpy(hptr->line, buf);
234
235         } while (strlen(buf) > 0);
236
237
238         /*
239          * If requesting a non-root page, there should already be a cookie
240          * set.  If there isn't, the client browser has cookies turned off
241          * (or doesn't support them) and we have to barf & bail.
242          */
243         strcpy(buf, req->line);
244         if (!strncasecmp(buf, "GET ", 4)) strcpy(buf, &buf[4]);
245         else if (!strncasecmp(buf, "HEAD ", 5)) strcpy(buf, &buf[5]);
246         if (buf[1]==' ') buf[1]=0;
247
248         /*
249          * While we're at it, gracefully handle requests for the
250          * robots.txt file...
251          */
252         if (!strncasecmp(buf, "/robots.txt", 11)) {
253                 strcpy(req->line, "GET /static/robots.txt HTTP/1.0");
254         }
255
256         /* Do the non-root-cookie check now. */
257         else if ( (strcmp(buf, "/")) && (got_cookie == 0)) {
258                 strcpy(req->line, "GET /static/nocookies.html HTTP/1.0");
259         }
260
261
262
263         /*
264          * See if there's an existing session open with the desired ID
265          */
266         TheSession = NULL;
267         if (desired_session != 0) {
268                 pthread_mutex_lock(&SessionListMutex);
269                 for (sptr = SessionList; sptr != NULL; sptr = sptr->next) {
270                         if (sptr->wc_session == desired_session) {
271                                 TheSession = sptr;
272                         }
273                 }
274                 pthread_mutex_unlock(&SessionListMutex);
275         }
276
277         /*
278          * Create a new session if we have to
279          */
280         if (TheSession == NULL) {
281                 fprintf(stderr, "Creating a new session\n");
282                 TheSession = (struct wcsession *)
283                         malloc(sizeof(struct wcsession));
284                 memset(TheSession, 0, sizeof(struct wcsession));
285                 TheSession->wc_session = GenerateSessionID();
286                 pthread_mutex_init(&TheSession->SessionMutex, NULL);
287
288                 pthread_mutex_lock(&SessionListMutex);
289                 TheSession->next = SessionList;
290                 SessionList = TheSession;
291                 pthread_mutex_unlock(&SessionListMutex);
292         }
293
294
295         /*
296          *
297          * FIX ... check session integrity here before continuing
298          *
299          */
300
301
302
303         /*
304          * Bind to the session and perform the transaction
305          */
306         pthread_mutex_lock(&TheSession->SessionMutex);          /* bind */
307         pthread_setspecific(MyConKey, (void *)TheSession);
308         TheSession->http_sock = sock;
309         TheSession->lastreq = time(NULL);                       /* log */
310         fprintf(stderr, "%s\n", req->line);
311         session_loop(req);              /* perform the requested transaction */
312         pthread_mutex_unlock(&TheSession->SessionMutex);        /* unbind */
313
314         /* Free the request buffer */
315         while (req != NULL) {
316                 hptr = req->next;
317                 free(req);
318                 req = hptr;
319         }
320
321         /*
322          * Now our HTTP connection is done.  Close the socket and exit this
323          * function, so the worker thread can handle a new HTTP connection.
324          */
325         lingering_close(sock);
326 }