]> code.citadel.org Git - citadel.git/blob - webcit/context_loop.c
Static analyzer fixes;
[citadel.git] / webcit / context_loop.c
1 /*
2  * $Id$
3  *
4  * This is the other half of the webserver.  It handles the task of hooking
5  * up HTTP requests with the sessions 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 started.
8  *
9  * Copyright (c) 1996-2010 by the citadel.org team
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24  */
25
26 #include "webcit.h"
27 #include "webserver.h"
28 #include "modules_init.h"
29
30 /* Only one thread may manipulate SessionList at a time... */
31 pthread_mutex_t SessionListMutex;
32
33 wcsession *SessionList = NULL;  /* Linked list of all webcit sessions */
34
35 pthread_key_t MyConKey;         /* TSD key for MySession() */
36 HashList *HttpReqTypes = NULL;
37 HashList *HttpHeaderHandler = NULL;
38 extern HashList *HandlerHash;
39
40 /* the following two values start at 1 because the initial parent thread counts as one. */
41 int num_threads_existing = 1;           /* Number of worker threads which exist. */
42 int num_threads_executing = 1;          /* Number of worker threads currently executing. */
43
44 void DestroyHttpHeaderHandler(void *V)
45 {
46         OneHttpHeader *pHdr;
47         pHdr = (OneHttpHeader*) V;
48         FreeStrBuf(&pHdr->Val);
49         free(pHdr);
50 }
51
52 void shutdown_sessions(void)
53 {
54         wcsession *sptr;
55         
56         for (sptr = SessionList; sptr != NULL; sptr = sptr->next) {
57                         sptr->killthis = 1;
58         }
59 }
60
61 void do_housekeeping(void)
62 {
63         wcsession *sptr, *ss;
64         wcsession *sessions_to_kill = NULL;
65
66         /*
67          * Lock the session list, moving any candidates for euthanasia into
68          * a separate list.
69          */
70         pthread_mutex_lock(&SessionListMutex);
71         for (sptr = SessionList; sptr != NULL; sptr = sptr->next) {
72
73                 /* Kill idle sessions */
74                 if ((time(NULL) - (sptr->lastreq)) > (time_t) WEBCIT_TIMEOUT) {
75                         sptr->killthis = 1;
76                 }
77
78                 /* Remove sessions flagged for kill */
79                 if (sptr->killthis) {
80
81                         /** remove session from linked list */
82                         if (sptr == SessionList) {
83                                 SessionList = SessionList->next;
84                         }
85                         else for (ss=SessionList;ss!=NULL;ss=ss->next) {
86                                 if (ss->next == sptr) {
87                                         ss->next = ss->next->next;
88                                 }
89                         }
90
91                         sptr->next = sessions_to_kill;
92                         sessions_to_kill = sptr;
93                 }
94         }
95         pthread_mutex_unlock(&SessionListMutex);
96
97         /*
98          * Now free up and destroy the culled sessions.
99          */
100         while (sessions_to_kill != NULL) {
101                 lprintf(3, "Destroying session %d\n", sessions_to_kill->wc_session);
102                 pthread_mutex_lock(&sessions_to_kill->SessionMutex);
103                 pthread_mutex_unlock(&sessions_to_kill->SessionMutex);
104                 sptr = sessions_to_kill->next;
105
106                 session_destroy_modules(&sessions_to_kill);
107                 sessions_to_kill = sptr;
108         }
109 }
110
111 /*
112  * Check the size of our thread pool.  If all threads are executing, spawn another.
113  */
114 void check_thread_pool_size(void)
115 {
116         if (time_to_die) return;                /* don't expand the thread pool during shutdown */
117
118         begin_critical_section(S_SPAWNER);      /* only one of these should run at a time */
119         if (
120                 (num_threads_executing >= num_threads_existing)
121                 && (num_threads_existing < MAX_WORKER_THREADS)
122         ) {
123                 lprintf(3, "%d of %d threads are executing.  Adding another worker thread.\n",
124                         num_threads_executing,
125                         num_threads_existing
126                 );
127                 spawn_another_worker_thread();
128         }
129         end_critical_section(S_SPAWNER);
130 }
131
132
133 /*
134  * Wake up occasionally and clean house
135  */
136 void housekeeping_loop(void)
137 {
138         while (1) {
139                 sleeeeeeeeeep(HOUSEKEEPING);
140                 do_housekeeping();
141         }
142 }
143
144
145 /*
146  * Create a Session id
147  * Generate a unique WebCit session ID (which is not the same thing as the
148  * Citadel session ID).
149  */
150 int GenerateSessionID(void)
151 {
152         static int seq = (-1);
153
154         if (seq < 0) {
155                 seq = (int) time(NULL);
156         }
157                 
158         return ++seq;
159 }
160
161 wcsession *FindSession(wcsession **wclist, ParsedHttpHdrs *Hdr, pthread_mutex_t *ListMutex)
162 {
163         wcsession *sptr = NULL;
164         wcsession *TheSession = NULL;   
165         
166         if (Hdr->HR.got_auth == AUTH_BASIC) {
167                 GetAuthBasic(Hdr);
168         }
169
170         pthread_mutex_lock(ListMutex);
171         for (sptr = *wclist; ((sptr != NULL) && (TheSession == NULL)); sptr = sptr->next) {
172                 
173                 /* If HTTP-AUTH, look for a session with matching credentials */
174                 switch (Hdr->HR.got_auth)
175                 {
176                 case AUTH_BASIC:
177                         if ( (Hdr->HR.SessionKey != sptr->SessionKey))
178                                 continue;
179                         if ((!strcasecmp(ChrPtr(Hdr->c_username), ChrPtr(sptr->wc_username))) &&
180                             (!strcasecmp(ChrPtr(Hdr->c_password), ChrPtr(sptr->wc_password))) ) {
181                                 TheSession = sptr;
182                         }
183                         if (TheSession == NULL)
184                                 lprintf(1, "found sessionkey [%ld], but credentials for [%s|%s] didn't match\n",
185                                         Hdr->HR.SessionKey,ChrPtr(Hdr->c_username), ChrPtr(sptr->wc_username));
186                         break;
187                 case AUTH_COOKIE:
188                         /* If cookie-session, look for a session with matching session ID */
189                         if ( (Hdr->HR.desired_session != 0) && 
190                              (sptr->wc_session == Hdr->HR.desired_session)) {
191                                 TheSession = sptr;
192                         }
193                         break;                       
194                 case NO_AUTH:
195                         break;
196                 }
197         }
198         pthread_mutex_unlock(ListMutex);
199         if (TheSession == NULL)
200                 lprintf(1, "didn't find sessionkey [%ld] for user [%s]\n",
201                         Hdr->HR.SessionKey,ChrPtr(Hdr->c_username));
202         return TheSession;
203 }
204
205 wcsession *CreateSession(int Lockable, int Static, wcsession **wclist, ParsedHttpHdrs *Hdr, pthread_mutex_t *ListMutex)
206 {
207         wcsession *TheSession;
208         if (!Static)
209                 lprintf(3, "Creating a new session\n");
210         TheSession = (wcsession *) malloc(sizeof(wcsession));
211         memset(TheSession, 0, sizeof(wcsession));
212         TheSession->Hdr = Hdr;
213         TheSession->SessionKey = Hdr->HR.SessionKey;
214         TheSession->serv_sock = (-1);
215         TheSession->is_mobile = -1;
216
217         pthread_setspecific(MyConKey, (void *)TheSession);
218         
219         /* If we're recreating a session that expired, it's best to give it the same
220          * session number that it had before.  The client browser ought to pick up
221          * the new session number and start using it, but in some rare situations it
222          * doesn't, and that's a Bad Thing because it causes lots of spurious sessions
223          * to get created.
224          */     
225         if (Hdr->HR.desired_session == 0) {
226                 TheSession->wc_session = GenerateSessionID();
227         }
228         else {
229                 TheSession->wc_session = Hdr->HR.desired_session;
230         }
231         Hdr->HR.Static = Static;
232         session_new_modules(TheSession);
233
234         if (Lockable) {
235                 pthread_mutex_init(&TheSession->SessionMutex, NULL);
236
237                 if (ListMutex != NULL)
238                         pthread_mutex_lock(ListMutex);
239
240                 if (wclist != NULL) {
241                         TheSession->nonce = rand();
242                         TheSession->next = *wclist;
243                         *wclist = TheSession;
244                 }
245                 if (ListMutex != NULL)
246                         pthread_mutex_unlock(ListMutex);
247         }
248         return TheSession;
249 }
250
251
252 /*
253  * Detects a 'mobile' user agent 
254  */
255 int is_mobile_ua(char *user_agent) {
256       if (strstr(user_agent,"iPhone OS") != NULL) {
257         return 1;
258       } else if (strstr(user_agent,"Windows CE") != NULL) {
259         return 1;
260       } else if (strstr(user_agent,"SymbianOS") != NULL) {
261         return 1;
262       } else if (strstr(user_agent, "Opera Mobi") != NULL) {
263         return 1;
264       } else if (strstr(user_agent, "Firefox/2.0.0 Opera 9.51 Beta") != NULL) {
265               /*  For some reason a new install of Opera 9.51beta decided to spoof. */
266           return 1;
267           }
268       return 0;
269 }
270
271 /* If it's a "force 404" situation then display the error and bail. */
272 void do_404(void)
273 {
274         hprintf("HTTP/1.1 404 Not found\r\n");
275         hprintf("Content-Type: text/plain\r\n");
276         wc_printf("Not found\r\n");
277         end_burst();
278 }
279
280 int ReadHttpSubject(ParsedHttpHdrs *Hdr, StrBuf *Line, StrBuf *Buf)
281 {
282         const char *Args;
283         void *vLine, *vHandler;
284         const char *Pos = NULL;
285
286
287         Hdr->HR.ReqLine = Line;
288         /* The requesttype... GET, POST... */
289         StrBufExtract_token(Buf, Hdr->HR.ReqLine, 0, ' ');
290         if (GetHash(HttpReqTypes, SKEY(Buf), &vLine) &&
291             (vLine != NULL))
292         {
293                 Hdr->HR.eReqType = *(long*)vLine;
294         }
295         else {
296                 Hdr->HR.eReqType = eGET;
297                 return 1;
298         }
299         StrBufCutLeft(Hdr->HR.ReqLine, StrLength(Buf) + 1);
300
301         /* the HTTP Version... */
302         StrBufExtract_token(Buf, Hdr->HR.ReqLine, 1, ' ');
303         StrBufCutRight(Hdr->HR.ReqLine, StrLength(Buf) + 1);
304         
305         if (StrLength(Buf) == 0) {
306                 Hdr->HR.eReqType = eGET;
307                 return 1;
308         }
309
310         StrBufAppendBuf(Hdr->this_page, Hdr->HR.ReqLine, 0);
311         /* chop Filename / query arguments */
312         Args = strchr(ChrPtr(Hdr->HR.ReqLine), '?');
313         if (Args == NULL) /* whe're not that picky about params... TODO: this will spoil '&' in filenames.*/
314                 Args = strchr(ChrPtr(Hdr->HR.ReqLine), '&');
315         if (Args != NULL) {
316                 Args ++; /* skip the ? */
317                 StrBufPlain(Hdr->PlainArgs, 
318                             Args, 
319                             StrLength(Hdr->HR.ReqLine) -
320                             (Args - ChrPtr(Hdr->HR.ReqLine)));
321                 StrBufCutAt(Hdr->HR.ReqLine, 0, Args - 1);
322         } /* don't parse them yet, maybe we don't even care... */
323         
324         /* now lookup what we are going to do with this... */
325         /* skip first slash */
326         StrBufExtract_NextToken(Buf, Hdr->HR.ReqLine, &Pos, '/');
327         do {
328                 StrBufExtract_NextToken(Buf, Hdr->HR.ReqLine, &Pos, '/');
329
330                 GetHash(HandlerHash, SKEY(Buf), &vHandler),
331                 Hdr->HR.Handler = (WebcitHandler*) vHandler;
332                 if (Hdr->HR.Handler == NULL)
333                         break;
334                 /*
335                  * If the request is prefixed by "/webcit" then chop that off.  This
336                  * allows a front end web server to forward all /webcit requests to us
337                  * while still using the same web server port for other things.
338                  */
339                 if ((Hdr->HR.Handler->Flags & URLNAMESPACE) != 0)
340                         continue;
341                 break;
342         } while (1);
343         /* remove the handlername from the URL */
344         if ((Pos != NULL) && (Pos != StrBufNOTNULL)){
345                 StrBufCutLeft(Hdr->HR.ReqLine, 
346                               Pos - ChrPtr(Hdr->HR.ReqLine));
347         }
348
349         if (Hdr->HR.Handler != NULL) {
350                 if ((Hdr->HR.Handler->Flags & BOGUS) != 0)
351                         return 1;
352                 Hdr->HR.DontNeedAuth = (
353                         ((Hdr->HR.Handler->Flags & ISSTATIC) != 0) ||
354                         ((Hdr->HR.Handler->Flags & ANONYMOUS) != 0)
355                         );
356         }
357         else {
358                 Hdr->HR.DontNeedAuth = 1; /* Flat request? show him the login screen... */
359         }
360
361         return 0;
362 }
363
364 int AnalyseHeaders(ParsedHttpHdrs *Hdr)
365 {
366         OneHttpHeader *pHdr;
367         void *vHdr;
368         long HKLen;
369         const char *HashKey;
370         HashPos *at = GetNewHashPos(Hdr->HTTPHeaders, 0);
371         
372         while (GetNextHashPos(Hdr->HTTPHeaders, at, &HKLen, &HashKey, &vHdr) && 
373                (vHdr != NULL)) {
374                 pHdr = (OneHttpHeader *)vHdr;
375                 if (pHdr->HaveEvaluator)
376                         pHdr->H(pHdr->Val, Hdr);
377
378         }
379         DeleteHashPos(&at);
380         return 0;
381 }
382
383 /*const char *nix(void *vptr) {return ChrPtr( (StrBuf*)vptr);}*/
384
385 /*
386  * Read in the request
387  */
388 int ReadHTTPRequest (ParsedHttpHdrs *Hdr)
389 {
390         const char *pch, *pchs, *pche;
391         OneHttpHeader *pHdr;
392         StrBuf *Line, *LastLine, *HeaderName;
393         int nLine = 0;
394         void *vF;
395         int isbogus = 0;
396
397         HeaderName = NewStrBuf();
398         LastLine = NULL;
399         do {
400                 nLine ++;
401                 Line = NewStrBufPlain(NULL, SIZ / 4);
402
403                 if (ClientGetLine(Hdr, Line) < 0) return 1;
404
405                 if (StrLength(Line) == 0) {
406                         FreeStrBuf(&Line);
407                         continue;
408                 }
409                 if (nLine == 1) {
410                         Hdr->HTTPHeaders = NewHash(1, NULL);
411                         pHdr = (OneHttpHeader*) malloc(sizeof(OneHttpHeader));
412                         memset(pHdr, 0, sizeof(OneHttpHeader));
413                         pHdr->Val = Line;
414                         Put(Hdr->HTTPHeaders, HKEY("GET /"), pHdr, DestroyHttpHeaderHandler);
415                         lprintf(9, "%s\n", ChrPtr(Line));
416                         isbogus = ReadHttpSubject(Hdr, Line, HeaderName);
417                         if (isbogus) break;
418                         continue;
419                 }
420
421                 /* Do we need to Unfold? */
422                 if ((LastLine != NULL) && 
423                     (isspace(*ChrPtr(Line)))) {
424                         pch = pchs = ChrPtr(Line);
425                         pche = pchs + StrLength(Line);
426                         while (isspace(*pch) && (pch < pche))
427                                 pch ++;
428                         StrBufCutLeft(Line, pch - pchs);
429                         StrBufAppendBuf(LastLine, Line, 0);
430
431                         FreeStrBuf(&Line);
432                         continue;
433                 }
434
435                 StrBufSanitizeAscii(Line, '§');
436                 StrBufExtract_token(HeaderName, Line, 0, ':');
437
438                 pchs = ChrPtr(Line);
439                 pch = pchs + StrLength(HeaderName) + 1;
440                 pche = pchs + StrLength(Line);
441                 while ((pch < pche) && isspace(*pch))
442                         pch ++;
443                 StrBufCutLeft(Line, pch - pchs);
444
445                 StrBufUpCase(HeaderName);
446
447                 pHdr = (OneHttpHeader*) malloc(sizeof(OneHttpHeader));
448                 memset(pHdr, 0, sizeof(OneHttpHeader));
449                 pHdr->Val = Line;
450
451                 if (GetHash(HttpHeaderHandler, SKEY(HeaderName), &vF) &&
452                     (vF != NULL))
453                 {
454                         OneHttpHeader *FHdr = (OneHttpHeader*) vF;
455                         pHdr->H = FHdr->H;
456                         pHdr->HaveEvaluator = 1;
457                 }
458                 Put(Hdr->HTTPHeaders, SKEY(HeaderName), pHdr, DestroyHttpHeaderHandler);
459                 LastLine = Line;
460         } while (Line != NULL);
461
462         FreeStrBuf(&HeaderName);
463
464         return isbogus;
465 }
466
467 void OverrideRequest(ParsedHttpHdrs *Hdr, const char *Line, long len)
468 {
469         StrBuf *Buf = NewStrBuf();
470
471         if (Hdr->HR.ReqLine != NULL) {
472                 FlushStrBuf(Hdr->HR.ReqLine);
473                 StrBufPlain(Hdr->HR.ReqLine, Line, len);
474         }
475         else {
476                 Hdr->HR.ReqLine = NewStrBufPlain(Line, len);
477         }
478         ReadHttpSubject(Hdr, Hdr->HR.ReqLine, Buf);
479
480         FreeStrBuf(&Buf);
481 }
482
483 /*
484  * handle one request
485  *
486  * This loop gets called once for every HTTP connection made to WebCit.  At
487  * this entry point we have an HTTP socket with a browser allegedly on the
488  * other end, but we have not yet bound to a WebCit session.
489  *
490  * The job of this function is to locate the correct session and bind to it,
491  * or create a session if necessary and bind to it, then run the WebCit
492  * transaction loop.  Afterwards, we unbind from the session.  When this
493  * function returns, the worker thread is then free to handle another
494  * transaction.
495  */
496 void context_loop(ParsedHttpHdrs *Hdr)
497 {
498         int isbogus = 0;
499         wcsession *TheSession;
500         struct timeval tx_start;
501         struct timeval tx_finish;
502         
503         gettimeofday(&tx_start, NULL);          /* start a stopwatch for performance timing */
504
505         /*
506          * Find out what it is that the web browser is asking for
507          */
508         isbogus = ReadHTTPRequest(Hdr);
509
510         Hdr->HR.dav_depth = 32767; /* TODO: find a general way to have non-0 defaults */
511         if (!isbogus)
512                 isbogus = AnalyseHeaders(Hdr);
513
514         if ((isbogus) ||
515             ((Hdr->HR.Handler != NULL) &&
516              ((Hdr->HR.Handler->Flags & BOGUS) != 0)))
517         {
518                 wcsession *Bogus;
519
520                 Bogus = CreateSession(0, 1, NULL, Hdr, NULL);
521
522                 do_404();
523
524                 /* How long did this transaction take? */
525                 gettimeofday(&tx_finish, NULL);
526
527                 lprintf(9, "HTTP: 404 [%ld.%06ld] %s %s \n",
528                         ((tx_finish.tv_sec*1000000 + tx_finish.tv_usec) - (tx_start.tv_sec*1000000 + tx_start.tv_usec)) / 1000000,
529                         ((tx_finish.tv_sec*1000000 + tx_finish.tv_usec) - (tx_start.tv_sec*1000000 + tx_start.tv_usec)) % 1000000,
530                         ReqStrs[Hdr->HR.eReqType],
531                         ChrPtr(Hdr->this_page)
532                         );
533                 session_detach_modules(Bogus);
534                 session_destroy_modules(&Bogus);
535                 return;
536         }
537
538         if ((Hdr->HR.Handler != NULL) && ((Hdr->HR.Handler->Flags & ISSTATIC) != 0))
539         {
540                 wcsession *Static;
541                 Static = CreateSession(0, 1, NULL, Hdr, NULL);
542                 
543                 Hdr->HR.Handler->F();
544
545                 /* How long did this transaction take? */
546                 gettimeofday(&tx_finish, NULL);
547                 
548 #ifdef TECH_PREVIEW
549                 if ((Hdr->HR.Handler != NULL) ||
550                     ((Hdr->HR.Handler->Flags & LOGCHATTY) == 0))
551 #endif
552                         lprintf(9, "HTTP: 200 [%ld.%06ld] %s %s \n",
553                                 ((tx_finish.tv_sec*1000000 + tx_finish.tv_usec) - (tx_start.tv_sec*1000000 + tx_start.tv_usec)) / 1000000,
554                                 ((tx_finish.tv_sec*1000000 + tx_finish.tv_usec) - (tx_start.tv_sec*1000000 + tx_start.tv_usec)) % 1000000,
555                                 ReqStrs[Hdr->HR.eReqType],
556                                 ChrPtr(Hdr->this_page)
557                                 );
558                 session_detach_modules(Static);
559                 session_destroy_modules(&Static);
560                 return;
561         }
562
563         if (Hdr->HR.got_auth == AUTH_BASIC) {
564                 CheckAuthBasic(Hdr);
565         }
566
567         /*
568          * See if there's an existing session open with the desired ID or user/pass
569          */
570         TheSession = FindSession(&SessionList, Hdr, &SessionListMutex);
571
572         /*
573          * Create a new session if we have to
574          */
575         if (TheSession == NULL) {
576                 TheSession = CreateSession(1, 0, &SessionList, Hdr, &SessionListMutex);
577
578                 if ((StrLength(Hdr->c_username) == 0) && (!Hdr->HR.DontNeedAuth)) {
579
580                         if ((Hdr->HR.Handler != NULL) && 
581                             (XHTTP_COMMANDS & Hdr->HR.Handler->Flags) == XHTTP_COMMANDS) {
582                                 OverrideRequest(Hdr, HKEY("GET /401 HTTP/1.0"));
583                                 Hdr->HR.prohibit_caching = 1;                           
584                         }
585                         else {
586                                 OverrideRequest(Hdr, HKEY("GET /static/nocookies.html?force_close_session=yes HTTP/1.0"));
587                                 Hdr->HR.prohibit_caching = 1;
588                         }
589                 }
590                 
591                 if (StrLength(Hdr->c_language) > 0) {
592                         lprintf(9, "Session cookie requests language '%s'\n", ChrPtr(Hdr->c_language));
593                         set_selected_language(ChrPtr(Hdr->c_language));
594                         go_selected_language();
595                 }
596         }
597
598         /*
599          * A future improvement might be to check the session integrity
600          * at this point before continuing.
601          */
602
603         /*
604          * Bind to the session and perform the transaction
605          */
606         pthread_mutex_lock(&TheSession->SessionMutex);          /* bind */
607         pthread_setspecific(MyConKey, (void *)TheSession);
608         
609         TheSession->lastreq = time(NULL);                       /* log */
610         TheSession->Hdr = Hdr;
611
612         session_attach_modules(TheSession);
613         session_loop();                         /* do transaction */
614
615
616         /* How long did this transaction take? */
617         gettimeofday(&tx_finish, NULL);
618         
619
620 #ifdef TECH_PREVIEW
621         if ((Hdr->HR.Handler != NULL) &&
622             ((Hdr->HR.Handler->Flags & LOGCHATTY) == 0))
623 #endif
624                 lprintf(9, "HTTP: 200 [%ld.%06ld] %s %s \n",
625                         ((tx_finish.tv_sec*1000000 + tx_finish.tv_usec) - (tx_start.tv_sec*1000000 + tx_start.tv_usec)) / 1000000,
626                         ((tx_finish.tv_sec*1000000 + tx_finish.tv_usec) - (tx_start.tv_sec*1000000 + tx_start.tv_usec)) % 1000000,
627                         ReqStrs[Hdr->HR.eReqType],
628                         ChrPtr(Hdr->this_page)
629                         );
630
631         session_detach_modules(TheSession);
632
633         TheSession->Hdr = NULL;
634         pthread_mutex_unlock(&TheSession->SessionMutex);        /* unbind */
635 }
636
637 void tmplput_nonce(StrBuf *Target, WCTemplputParams *TP)
638 {
639         wcsession *WCC = WC;
640         StrBufAppendPrintf(Target, "%ld",
641                            (WCC != NULL)? WCC->nonce:0);                   
642 }
643
644 void tmplput_current_user(StrBuf *Target, WCTemplputParams *TP)
645 {
646         StrBufAppendTemplate(Target, TP, WC->wc_fullname, 0);
647 }
648
649 void Header_HandleContentLength(StrBuf *Line, ParsedHttpHdrs *hdr)
650 {
651         hdr->HR.ContentLength = StrToi(Line);
652 }
653
654 void Header_HandleContentType(StrBuf *Line, ParsedHttpHdrs *hdr)
655 {
656         hdr->HR.ContentType = Line;
657 }
658
659 void Header_HandleUserAgent(StrBuf *Line, ParsedHttpHdrs *hdr)
660 {
661         hdr->HR.user_agent = Line;
662 #ifdef TECH_PREVIEW
663 /* TODO: do this later on session creating
664         if ((WCC->is_mobile < 0) && is_mobile_ua(&buf[12])) {                   
665                 WCC->is_mobile = 1;
666         }
667         else {
668                 WCC->is_mobile = 0;
669         }
670 */
671 #endif
672 }
673
674
675 void Header_HandleHost(StrBuf *Line, ParsedHttpHdrs *hdr)
676 {
677         if ((follow_xff) && (hdr->HR.http_host != NULL))
678                 return;
679         else
680                 hdr->HR.http_host = Line;
681 }
682
683 void Header_HandleXFFHost(StrBuf *Line, ParsedHttpHdrs *hdr)
684 {
685         if (follow_xff)
686                 hdr->HR.http_host = Line;
687 }
688
689
690 void Header_HandleXFF(StrBuf *Line, ParsedHttpHdrs *hdr)
691 {
692         hdr->HR.browser_host = Line;
693
694         while (StrBufNum_tokens(hdr->HR.browser_host, ',') > 1) {
695                 StrBufRemove_token(hdr->HR.browser_host, 0, ',');
696         }
697         StrBufTrim(hdr->HR.browser_host);
698 }
699
700 void Header_HandleIfModSince(StrBuf *Line, ParsedHttpHdrs *hdr)
701 {
702         hdr->HR.if_modified_since = httpdate_to_timestamp(Line);
703 }
704
705 void Header_HandleAcceptEncoding(StrBuf *Line, ParsedHttpHdrs *hdr)
706 {
707         /*
708          * Can we compress?
709          */
710         if (strstr(&ChrPtr(Line)[16], "gzip")) {
711                 hdr->HR.gzip_ok = 1;
712         }
713 }
714 const char *ReqStrs[eNONE] = {
715         "GET",
716         "POST",
717         "OPTIONS",
718         "PROPFIND",
719         "PUT",
720         "DELETE",
721         "HEAD",
722         "MOVE",
723         "COPY"
724 };
725
726 void
727 ServerStartModule_CONTEXT
728 (void)
729 {
730         long *v;
731         HttpReqTypes = NewHash(1, NULL);
732         HttpHeaderHandler = NewHash(1, NULL);
733
734         v = malloc(sizeof(long));
735         *v = eGET;
736         Put(HttpReqTypes, HKEY("GET"), v, NULL);
737
738         v = malloc(sizeof(long));
739         *v = ePOST;
740         Put(HttpReqTypes, HKEY("POST"), v, NULL);
741
742         v = malloc(sizeof(long));
743         *v = eOPTIONS;
744         Put(HttpReqTypes, HKEY("OPTIONS"), v, NULL);
745
746         v = malloc(sizeof(long));
747         *v = ePROPFIND;
748         Put(HttpReqTypes, HKEY("PROPFIND"), v, NULL);
749
750         v = malloc(sizeof(long));
751         *v = ePUT;
752         Put(HttpReqTypes, HKEY("PUT"), v, NULL);
753
754         v = malloc(sizeof(long));
755         *v = eDELETE;
756         Put(HttpReqTypes, HKEY("DELETE"), v, NULL);
757
758         v = malloc(sizeof(long));
759         *v = eHEAD;
760         Put(HttpReqTypes, HKEY("HEAD"), v, NULL);
761
762         v = malloc(sizeof(long));
763         *v = eMOVE;
764         Put(HttpReqTypes, HKEY("MOVE"), v, NULL);
765
766         v = malloc(sizeof(long));
767         *v = eCOPY;
768         Put(HttpReqTypes, HKEY("COPY"), v, NULL);
769 }
770
771 void 
772 ServerShutdownModule_CONTEXT
773 (void)
774 {
775         DeleteHash(&HttpReqTypes);
776         DeleteHash(&HttpHeaderHandler);
777 }
778
779 void RegisterHeaderHandler(const char *Name, long Len, Header_Evaluator F)
780 {
781         OneHttpHeader *pHdr;
782         pHdr = (OneHttpHeader*) malloc(sizeof(OneHttpHeader));
783         memset(pHdr, 0, sizeof(OneHttpHeader));
784         pHdr->H = F;
785         Put(HttpHeaderHandler, Name, Len, pHdr, DestroyHttpHeaderHandler);
786 }
787
788
789 void 
790 InitModule_CONTEXT
791 (void)
792 {
793         RegisterHeaderHandler(HKEY("CONTENT-LENGTH"), Header_HandleContentLength);
794         RegisterHeaderHandler(HKEY("CONTENT-TYPE"), Header_HandleContentType);
795         RegisterHeaderHandler(HKEY("USER-AGENT"), Header_HandleUserAgent);
796         RegisterHeaderHandler(HKEY("X-FORWARDED-HOST"), Header_HandleXFFHost); /* Apache way... */
797         RegisterHeaderHandler(HKEY("X-REAL-IP"), Header_HandleXFFHost);        /* NGinX way... */
798         RegisterHeaderHandler(HKEY("HOST"), Header_HandleHost);
799         RegisterHeaderHandler(HKEY("X-FORWARDED-FOR"), Header_HandleXFF);
800         RegisterHeaderHandler(HKEY("ACCEPT-ENCODING"), Header_HandleAcceptEncoding);
801         RegisterHeaderHandler(HKEY("IF-MODIFIED-SINCE"), Header_HandleIfModSince);
802
803         RegisterNamespace("CURRENT_USER", 0, 1, tmplput_current_user, NULL, CTX_NONE);
804         RegisterNamespace("NONCE", 0, 0, tmplput_nonce, NULL, 0);
805
806         WebcitAddUrlHandler(HKEY("404"), "", 0, do_404, ANONYMOUS|COOKIEUNNEEDED);
807 /*
808  * Look for commonly-found probes of malware such as worms, viruses, trojans, and Microsoft Office.
809  * Short-circuit these requests so we don't have to send them through the full processing loop.
810  */
811         WebcitAddUrlHandler(HKEY("scripts"), "", 0, do_404, ANONYMOUS|BOGUS);           /* /root.exe - Worms and trojans and viruses, oh my! */
812         WebcitAddUrlHandler(HKEY("c"), "", 0, do_404, ANONYMOUS|BOGUS);         /* /winnt */
813         WebcitAddUrlHandler(HKEY("MSADC"), "", 0, do_404, ANONYMOUS|BOGUS);
814         WebcitAddUrlHandler(HKEY("_vti"), "", 0, do_404, ANONYMOUS|BOGUS);              /* Broken Microsoft DAV implementation */
815         WebcitAddUrlHandler(HKEY("MSOffice"), "", 0, do_404, ANONYMOUS|BOGUS);          /* Stoopid MSOffice thinks everyone is IIS */
816         WebcitAddUrlHandler(HKEY("nonexistenshit"), "", 0, do_404, ANONYMOUS|BOGUS);    /* Exploit found in the wild January 2009 */
817 }
818         
819
820 void 
821 HttpNewModule_CONTEXT
822 (ParsedHttpHdrs *httpreq)
823 {
824         httpreq->PlainArgs = NewStrBufPlain(NULL, SIZ);
825         httpreq->this_page = NewStrBufPlain(NULL, SIZ);
826 }
827
828 void 
829 HttpDetachModule_CONTEXT
830 (ParsedHttpHdrs *httpreq)
831 {
832         FlushStrBuf(httpreq->PlainArgs);
833         FlushStrBuf(httpreq->this_page);
834         FlushStrBuf(httpreq->PlainArgs);
835         DeleteHash(&httpreq->HTTPHeaders);
836         memset(&httpreq->HR, 0, sizeof(HdrRefs));
837 }
838
839 void 
840 HttpDestroyModule_CONTEXT
841 (ParsedHttpHdrs *httpreq)
842 {
843         FreeStrBuf(&httpreq->this_page);
844         FreeStrBuf(&httpreq->PlainArgs);
845         FreeStrBuf(&httpreq->this_page);
846         FreeStrBuf(&httpreq->PlainArgs);
847         DeleteHash(&httpreq->HTTPHeaders);
848
849 }