]> code.citadel.org Git - citadel.git/blob - webcit/context_loop.c
c40cee99806715925f64835f2f01cdcccc98e7b9
[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                 strcpy(buf, "");
133                 a = client_gets(sock, buf);
134                 if (a<1) return(-1);
135         } else {
136                 strcpy(buf, hold);
137         }
138         strcpy(hold, "");
139
140         if (!strncasecmp(buf, "Cookie: ", 8)) {
141                 for (a = 0; a < strlen(buf); ++a)
142                         if (buf[a] == ';') {
143                                 sprintf(hold, "Cookie: %s", &buf[a + 1]);
144                                 buf[a] = 0;
145                                 while (isspace(hold[8]))
146                                         strcpy(&hold[8], &hold[9]);
147                                 return(0);
148                         }
149         }
150         return(0);
151 }
152
153 /*
154  * lingering_close() a`la Apache. see
155  * http://www.apache.org/docs/misc/fin_wait_2.html for rationale
156  */
157
158 static int lingering_close(int fd)
159 {
160         char buf[256];
161         int i;
162         fd_set set;
163         struct timeval tv, start;
164
165         gettimeofday(&start, NULL);
166         shutdown(fd, 1);
167         do {
168                 do {
169                         gettimeofday(&tv, NULL);
170                         tv.tv_sec = SLEEPING - (tv.tv_sec - start.tv_sec);
171                         tv.tv_usec = start.tv_usec - tv.tv_usec;
172                         if (tv.tv_usec < 0) {
173                                 tv.tv_sec--;
174                                 tv.tv_usec += 1000000;
175                         }
176                         FD_ZERO(&set);
177                         FD_SET(fd, &set);
178                         i = select(fd + 1, &set, NULL, NULL, &tv);
179                 } while (i == -1 && errno == EINTR);
180
181                 if (i <= 0)
182                         break;
183
184                 i = read(fd, buf, sizeof buf);
185         } while (i != 0 && (i != -1 || errno == EINTR));
186
187         return close(fd);
188 }
189
190
191
192
193 /*
194  * This loop gets called once for every HTTP connection made to WebCit.  At
195  * this entry point we have an HTTP socket with a browser allegedly on the
196  * other end, but we have not yet bound to a WebCit session.
197  *
198  * The job of this function is to locate the correct session and bind to it,
199  * or create a session if necessary and bind to it, then run the WebCit
200  * transaction loop.  Afterwards, we unbind from the session.  When this
201  * function returns, the worker thread is then free to handle another
202  * transaction.
203  */
204 void context_loop(int sock)
205 {
206         struct httprequest *req = NULL;
207         struct httprequest *last = NULL;
208         struct httprequest *hptr;
209         char buf[256], hold[256];
210         int desired_session = 0;
211         int got_cookie = 0;
212         struct wcsession *TheSession, *sptr;
213
214         /*
215          * Find out what it is that the web browser is asking for
216          */
217         memset(hold, 0, sizeof(hold));
218         do {
219                 if (req_gets(sock, buf, hold) < 0) return;
220                 fprintf(stderr, "%sReq: %s%s\n",
221                         ( (req==NULL) ? "\033[32m" : "" ) ,
222                         buf,
223                         ( (req==NULL) ? "\033[0m" : "" )  );
224                 if (!strncasecmp(buf, "Cookie: webcit=", 15)) {
225                         cookie_to_stuff(&buf[15], &desired_session,
226                                 NULL, NULL, NULL);
227                         got_cookie = 1;
228                 }
229
230                 hptr = (struct httprequest *)
231                         malloc(sizeof(struct httprequest));
232                 if (req == NULL)
233                         req = hptr;
234                 else
235                         last->next = hptr;
236                 hptr->next = NULL;
237                 last = hptr;
238
239                 strcpy(hptr->line, buf);
240
241         } while (strlen(buf) > 0);
242
243
244         /*
245          * If requesting a non-root page, there should already be a cookie
246          * set.  If there isn't, the client browser has cookies turned off
247          * (or doesn't support them) and we have to barf & bail.
248          */
249         strcpy(buf, req->line);
250         if (!strncasecmp(buf, "GET ", 4)) strcpy(buf, &buf[4]);
251         else if (!strncasecmp(buf, "HEAD ", 5)) strcpy(buf, &buf[5]);
252         if (buf[1]==' ') buf[1]=0;
253
254         /*
255          * While we're at it, gracefully handle requests for the
256          * robots.txt file...
257          */
258         if (!strncasecmp(buf, "/robots.txt", 11)) {
259                 strcpy(req->line, "GET /static/robots.txt HTTP/1.0");
260         }
261
262         /* Do the non-root-cookie check now. */
263         else if ( (strcmp(buf, "/")) && (got_cookie == 0)) {
264                 strcpy(req->line, "GET /static/nocookies.html HTTP/1.0");
265         }
266
267
268
269         /*
270          * See if there's an existing session open with the desired ID
271          */
272         TheSession = NULL;
273         if (desired_session != 0) {
274                 pthread_mutex_lock(&SessionListMutex);
275                 for (sptr = SessionList; sptr != NULL; sptr = sptr->next) {
276                         if (sptr->wc_session == desired_session) {
277                                 TheSession = sptr;
278                         }
279                 }
280                 pthread_mutex_unlock(&SessionListMutex);
281         }
282
283         /*
284          * Create a new session if we have to
285          */
286         if (TheSession == NULL) {
287                 fprintf(stderr, "Creating a new session\n");
288                 TheSession = (struct wcsession *)
289                         malloc(sizeof(struct wcsession));
290                 memset(TheSession, 0, sizeof(struct wcsession));
291                 TheSession->wc_session = GenerateSessionID();
292                 pthread_mutex_init(&TheSession->SessionMutex, NULL);
293
294                 pthread_mutex_lock(&SessionListMutex);
295                 TheSession->next = SessionList;
296                 SessionList = TheSession;
297                 pthread_mutex_unlock(&SessionListMutex);
298         }
299
300
301         /*
302          *
303          * FIX ... check session integrity here before continuing
304          *
305          */
306
307
308
309         /*
310          * Bind to the session and perform the transaction
311          */
312         pthread_mutex_lock(&TheSession->SessionMutex);          /* bind */
313         pthread_setspecific(MyConKey, (void *)TheSession);
314         TheSession->http_sock = sock;
315         TheSession->lastreq = time(NULL);                       /* log */
316         session_loop(req);              /* perform the requested transaction */
317         pthread_mutex_unlock(&TheSession->SessionMutex);        /* unbind */
318
319         /* Free the request buffer */
320         while (req != NULL) {
321                 hptr = req->next;
322                 free(req);
323                 req = hptr;
324         }
325
326         /*
327          * Now our HTTP connection is done.  Close the socket and exit this
328          * function, so the worker thread can handle a new HTTP connection.
329          */
330         lingering_close(sock);
331 }