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