* migrate message creation to templates (citing still missing)
[citadel.git] / webcit / webserver.c
1 /*
2  * $Id$
3  *
4  * This contains a simple multithreaded TCP server manager.  It sits around
5  * waiting on the specified port for incoming HTTP connections.  When a
6  * connection is established, it calls context_loop() from context_loop.c.
7  *
8  * Copyright (c) 1996-2008 by the citadel.org developers.
9  * This program is released under the terms of the GNU General Public License v3.
10  *
11  */
12
13 #include "webcit.h"
14 #include "webserver.h"
15
16 #if HAVE_BACKTRACE
17 #include <execinfo.h>
18 #endif
19 #include "modules_init.h"
20 #ifndef HAVE_SNPRINTF
21 int vsnprintf(char *buf, size_t max, const char *fmt, va_list argp);
22 #endif
23
24 int verbosity = 9;              /* Logging level */
25 int msock;                      /* master listening socket */
26 int is_https = 0;               /* Nonzero if I am an HTTPS service */
27 int follow_xff = 0;             /* Follow X-Forwarded-For: header */
28 int home_specified = 0;         /* did the user specify a homedir? */
29 int time_to_die = 0;            /* Nonzero if server is shutting down */
30 int DisableGzip = 0;
31 extern void *context_loop(int*);
32 extern void *housekeeping_loop(void);
33 extern pthread_mutex_t SessionListMutex;
34 extern pthread_key_t MyConKey;
35
36
37 char ctdl_key_dir[PATH_MAX]=SSL_DIR;
38 char file_crpt_file_key[PATH_MAX]="";
39 char file_crpt_file_csr[PATH_MAX]="";
40 char file_crpt_file_cer[PATH_MAX]="";
41
42 char socket_dir[PATH_MAX];                      /* where to talk to our citadel server */
43 static const char editor_absolut_dir[PATH_MAX]=EDITORDIR;       /* nailed to what configure gives us. */
44 static char static_dir[PATH_MAX];               /* calculated on startup */
45 static char static_local_dir[PATH_MAX];         /* calculated on startup */
46 static char static_icon_dir[PATH_MAX];          /* where should we find our mime icons? */
47 char  *static_dirs[]={                          /* needs same sort order as the web mapping */
48         (char*)static_dir,                      /* our templates on disk */
49         (char*)static_local_dir,                /* user provided templates disk */
50         (char*)editor_absolut_dir,              /* the editor on disk */
51         (char*)static_icon_dir                  /* our icons... */
52 };
53
54 /*
55  * Subdirectories from which the client may request static content
56  *
57  * (If you add more, remember to increment 'ndirs' below)
58  */
59 char *static_content_dirs[] = {
60         "static",                     /* static templates */
61         "static.local",               /* site local static templates */
62         "tiny_mce"                    /* rich text editor */
63 };
64
65 int ndirs=3;
66
67
68 char *server_cookie = NULL;     /* our Cookie connection to the client */
69 int http_port = PORT_NUM;       /* Port to listen on */
70 char *ctdlhost = DEFAULT_HOST;  /* our name */
71 char *ctdlport = DEFAULT_PORT;  /* our Port */
72 int setup_wizard = 0;           /* should we run the setup wizard? \todo */
73 char wizard_filename[PATH_MAX]; /* where's the setup wizard? */
74 int running_as_daemon = 0;      /* should we deamonize on startup? */
75
76
77 /* 
78  * This is a generic function to set up a master socket for listening on
79  * a TCP port.  The server shuts down if the bind fails.
80  *
81  * ip_addr      IP address to bind
82  * port_number  port number to bind
83  * queue_len    number of incoming connections to allow in the queue
84  */
85 int ig_tcp_server(char *ip_addr, int port_number, int queue_len)
86 {
87         struct sockaddr_in sin;
88         int s, i;
89
90         memset(&sin, 0, sizeof(sin));
91         sin.sin_family = AF_INET;
92         if (ip_addr == NULL) {
93                 sin.sin_addr.s_addr = INADDR_ANY;
94         } else {
95                 sin.sin_addr.s_addr = inet_addr(ip_addr);
96         }
97
98         if (sin.sin_addr.s_addr == INADDR_NONE) {
99                 sin.sin_addr.s_addr = INADDR_ANY;
100         }
101
102         if (port_number == 0) {
103                 lprintf(1, "Cannot start: no port number specified.\n");
104                 exit(WC_EXIT_BIND);
105         }
106         sin.sin_port = htons((u_short) port_number);
107
108         s = socket(PF_INET, SOCK_STREAM, (getprotobyname("tcp")->p_proto));
109         if (s < 0) {
110                 lprintf(1, "Can't create a socket: %s\n", strerror(errno));
111                 exit(WC_EXIT_BIND);
112         }
113         /* Set some socket options that make sense. */
114         i = 1;
115         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &i, sizeof(i));
116
117         #ifndef __APPLE__
118         fcntl(s, F_SETFL, O_NONBLOCK); /* maide: this statement is incorrect
119                                           there should be a preceding F_GETFL
120                                           and a bitwise OR with the previous
121                                           fd flags */
122         #endif
123         
124         if (bind(s, (struct sockaddr *) &sin, sizeof(sin)) < 0) {
125                 lprintf(1, "Can't bind: %s\n", strerror(errno));
126                 exit(WC_EXIT_BIND);
127         }
128         if (listen(s, queue_len) < 0) {
129                 lprintf(1, "Can't listen: %s\n", strerror(errno));
130                 exit(WC_EXIT_BIND);
131         }
132         return (s);
133 }
134
135
136
137 /*
138  * Create a Unix domain socket and listen on it
139  * sockpath - file name of the unix domain socket
140  * queue_len - Number of incoming connections to allow in the queue
141  */
142 int ig_uds_server(char *sockpath, int queue_len)
143 {
144         struct sockaddr_un addr;
145         int s;
146         int i;
147         int actual_queue_len;
148
149         actual_queue_len = queue_len;
150         if (actual_queue_len < 5) actual_queue_len = 5;
151
152         i = unlink(sockpath);
153         if ((i != 0) && (errno != ENOENT)) {
154                 lprintf(1, "webcit: can't unlink %s: %s\n",
155                         sockpath, strerror(errno));
156                 exit(WC_EXIT_BIND);
157         }
158
159         memset(&addr, 0, sizeof(addr));
160         addr.sun_family = AF_UNIX;
161         safestrncpy(addr.sun_path, sockpath, sizeof addr.sun_path);
162
163         s = socket(AF_UNIX, SOCK_STREAM, 0);
164         if (s < 0) {
165                 lprintf(1, "webcit: Can't create a socket: %s\n",
166                         strerror(errno));
167                 exit(WC_EXIT_BIND);
168         }
169
170         if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
171                 lprintf(1, "webcit: Can't bind: %s\n",
172                         strerror(errno));
173                 exit(WC_EXIT_BIND);
174         }
175
176         if (listen(s, actual_queue_len) < 0) {
177                 lprintf(1, "webcit: Can't listen: %s\n",
178                         strerror(errno));
179                 exit(WC_EXIT_BIND);
180         }
181
182         chmod(sockpath, 0777);
183         return(s);
184 }
185
186
187
188
189 /*
190  * Read data from the client socket.
191  *
192  * sock         socket fd to read from
193  * buf          buffer to read into 
194  * bytes        number of bytes to read
195  * timeout      Number of seconds to wait before timing out
196  *
197  * Possible return values:
198  *      1       Requested number of bytes has been read.
199  *      0       Request timed out.
200  *      -1      Connection is broken, or other error.
201  */
202 int client_read_to(int *sock, StrBuf *Target, StrBuf *Buf, int bytes, int timeout)
203 {
204         const char *Error;
205         int retval = 0;
206
207 #ifdef HAVE_OPENSSL
208         if (is_https) {
209                 while ((StrLength(Buf) + StrLength(Target) < bytes) &&
210                        (retval >= 0))
211                         retval = client_read_sslbuffer(Buf, timeout);
212                 if (retval >= 0) {
213                         StrBufAppendBuf(Target, Buf, 0); /// todo: Buf > bytes?
214 #ifdef HTTP_TRACING
215                         write(2, "\033[32m", 5);
216                         write(2, buf, bytes);
217                         write(2, "\033[30m", 5);
218 #endif
219                         return 1;
220                 }
221                 else {
222                         lprintf(2, "client_read_ssl() failed\n");
223                         return -1;
224                 }
225         }
226 #endif
227
228         if (StrLength(Buf) > 0) {//// todo: what if Buf > bytes?
229                 StrBufAppendBuf(Target, Buf, 0);
230         }
231         retval = StrBufReadBLOB(Target, 
232                            sock, 
233                            (StrLength(Target) > 0), 
234                            bytes - StrLength(Target), 
235                                 &Error);
236         if (retval < 0) {
237                 lprintf(2, "client_read() failed: %s\n",
238                         Error);
239                 return retval;
240         }
241
242 #ifdef HTTP_TRACING
243         write(2, "\033[32m", 5);
244         write(2, buf, bytes);
245         write(2, "\033[30m", 5);
246 #endif
247         return 1;
248 }
249
250
251 /*
252  * Begin buffering HTTP output so we can transmit it all in one write operation later.
253  */
254 void begin_burst(void)
255 {
256         if (WC->WBuf == NULL)
257                 WC->WBuf = NewStrBufPlain(NULL, 32768);
258 }
259
260
261 /*
262  * Finish buffering HTTP output.  [Compress using zlib and] output with a Content-Length: header.
263  */
264 long end_burst(void)
265 {
266         struct wcsession *WCC = WC;
267         const char *ptr, *eptr;
268         long count;
269         ssize_t res;
270         fd_set wset;
271         int fdflags;
272
273 #ifdef HAVE_ZLIB
274         /* Perform gzip compression, if enabled and supported by client */
275         if (!DisableGzip && (WCC->gzip_ok) && CompressBuffer(WCC->WBuf))
276         {
277                 hprintf("Content-encoding: gzip\r\n");
278         }
279 #endif  /* HAVE_ZLIB */
280
281         hprintf("Content-length: %d\r\n\r\n", StrLength(WCC->WBuf));
282
283         ptr = ChrPtr(WCC->HBuf);
284         count = StrLength(WCC->HBuf);
285         eptr = ptr + count;
286
287 #ifdef HAVE_OPENSSL
288         if (is_https) {
289                 client_write_ssl(WCC->HBuf);
290                 client_write_ssl(WCC->WBuf);
291                 return (count);
292         }
293 #endif
294
295         
296 #ifdef HTTP_TRACING
297         
298         write(2, "\033[34m", 5);
299         write(2, ptr, StrLength(WCC->WBuf));
300         write(2, "\033[30m", 5);
301 #endif
302         fdflags = fcntl(WC->http_sock, F_GETFL);
303
304         while (ptr < eptr) {
305                 if ((fdflags & O_NONBLOCK) == O_NONBLOCK) {
306                         FD_ZERO(&wset);
307                         FD_SET(WCC->http_sock, &wset);
308                         if (select(WCC->http_sock + 1, NULL, &wset, NULL, NULL) == -1) {
309                                 lprintf(2, "client_write: Socket select failed (%s)\n", strerror(errno));
310                                 return -1;
311                         }
312                 }
313
314                 if ((res = write(WCC->http_sock, 
315                                  ptr,
316                                  count)) == -1) {
317                         lprintf(2, "client_write: Socket write failed (%s)\n", strerror(errno));
318                         wc_backtrace();
319                         return res;
320                 }
321                 count -= res;
322                 ptr += res;
323         }
324
325         ptr = ChrPtr(WCC->WBuf);
326         count = StrLength(WCC->WBuf);
327         eptr = ptr + count;
328
329 #ifdef HTTP_TRACING
330         
331         write(2, "\033[34m", 5);
332         write(2, ptr, StrLength(WCC->WBuf));
333         write(2, "\033[30m", 5);
334 #endif
335
336         while (ptr < eptr) {
337                 if ((fdflags & O_NONBLOCK) == O_NONBLOCK) {
338                         FD_ZERO(&wset);
339                         FD_SET(WCC->http_sock, &wset);
340                         if (select(WCC->http_sock + 1, NULL, &wset, NULL, NULL) == -1) {
341                                 lprintf(2, "client_write: Socket select failed (%s)\n", strerror(errno));
342                                 return -1;
343                         }
344                 }
345
346                 if ((res = write(WCC->http_sock, 
347                                  ptr,
348                                  count)) == -1) {
349                         lprintf(2, "client_write: Socket write failed (%s)\n", strerror(errno));
350                         wc_backtrace();
351                         return res;
352                 }
353                 count -= res;
354                 ptr += res;
355         }
356
357         return StrLength(WCC->WBuf);
358 }
359
360
361
362 /*
363  * Read data from the client socket with default timeout.
364  * (This is implemented in terms of client_read_to() and could be
365  * justifiably moved out of sysdep.c)
366  *
367  * sock         the socket fd to read from
368  * buf          the buffer to write to
369  * bytes        Number of bytes to read
370  */
371 int client_read(int *sock, StrBuf *Target, StrBuf *buf, int bytes)
372 {
373         return (client_read_to(sock, Target, buf, bytes, SLEEPING));
374 }
375
376
377 /*
378  * Get a LF-terminated line of text from the client.
379  * (This is implemented in terms of client_read() and could be
380  * justifiably moved out of sysdep.c)
381  *
382  * sock         socket fd to get client line from
383  * buf          buffer to write read data to
384  * bufsiz       how many bytes to read
385  *
386  * returns the number of bytes read
387  */
388 /////int client_getln(int *sock, char *buf, int bufsiz)
389 /////{
390 /////   int i, retval;
391 /////
392 /////   /* Read one character at a time.*/
393 /////   for (i = 0; *sock > 0; i++) {
394 /////           retval = client_read(sock, &buf[i], 1);
395 /////           if (retval < 0)
396 /////                   return retval;
397 /////           if (retval != 1 || buf[i] == '\n' || i == (bufsiz-1))
398 /////                   break;
399 /////           if ( (!isspace(buf[i])) && (!isprint(buf[i])) ) {
400 /////                   /* Non printable character recieved from client */
401 /////                   return(-1);
402 /////           }
403 /////   }
404 /////
405 /////   /* If we got a long line, discard characters until the newline. */
406 /////   if (i == (bufsiz-1))
407 /////           while (buf[i] != '\n' && retval == 1)
408 /////                   retval = client_read(sock, &buf[i], 1);
409 /////
410 /////   /*
411 /////    * Strip any trailing non-printable characters.
412 /////    */
413 /////   buf[i] = 0;
414 /////   while ((i > 0) && (!isprint(buf[i - 1]))) {
415 /////           buf[--i] = 0;
416 /////   }
417 /////   return (retval);
418 /////}
419
420 /*
421  * Shut us down the regular way.
422  * signum is the signal we want to forward
423  */
424 pid_t current_child;
425 void graceful_shutdown_watcher(int signum) {
426         lprintf (1, "bye; shutting down watcher.");
427         kill(current_child, signum);
428         if (signum != SIGHUP)
429                 exit(0);
430 }
431
432
433 int ClientGetLine(int *sock, StrBuf *Target, StrBuf *CLineBuf)
434 {
435         const char *Error, *pch, *pchs;
436         int rlen, len, retval = 0;
437
438         if (is_https) {
439                 int ntries = 0;
440                 if (StrLength(CLineBuf) > 0) {
441                         pchs = ChrPtr(CLineBuf);
442                         pch = strchr(pchs, '\n');
443                         if (pch != NULL) {
444                                 rlen = 0;
445                                 len = pch - pchs;
446                                 if (len > 0 && (*(pch - 1) == '\r') )
447                                         rlen ++;
448                                 StrBufSub(Target, CLineBuf, 0, len - rlen);
449                                 StrBufCutLeft(CLineBuf, len + 1);
450                                 return len - rlen;
451                         }
452                 }
453
454                 while (retval == 0) { 
455                                 pch = NULL;
456                                 pchs = ChrPtr(CLineBuf);
457                                 if (*pchs != '\0')
458                                         pch = strchr(pchs, '\n');
459                                 if (pch == NULL) {
460                                         retval = client_read_sslbuffer(CLineBuf, SLEEPING);
461                                         pchs = ChrPtr(CLineBuf);
462                                         pch = strchr(pchs, '\n');
463                                 }
464                                 if (retval == 0) {
465                                         sleeeeeeeeeep(1);
466                                         ntries ++;
467                                 }
468                                 if (ntries > 10)
469                                         return 0;
470                 }
471                 if ((retval > 0) && (pch != NULL)) {
472                         rlen = 0;
473                         len = pch - pchs;
474                         if (len > 0 && (*(pch - 1) == '\r') )
475                                 rlen ++;
476                         StrBufSub(Target, CLineBuf, 0, len - rlen);
477                         StrBufCutLeft(CLineBuf, len + 1);
478                         return len - rlen;
479
480                 }
481                 else 
482                         return -1;
483         }
484         else 
485                 return StrBufTCP_read_buffered_line(Target, 
486                                                     CLineBuf,
487                                                     sock,
488                                                     5,
489                                                     1,
490                                                     &Error);
491 }
492
493
494
495 /*
496  * Shut us down the regular way.
497  * signum is the signal we want to forward
498  */
499 pid_t current_child;
500 void graceful_shutdown(int signum) {
501 //      kill(current_child, signum);
502         char wd[SIZ];
503         FILE *FD;
504         int fd;
505         getcwd(wd, SIZ);
506         lprintf (1, "bye going down gracefull.[%d][%s]\n", signum, wd);
507         fd = msock;
508         msock = -1;
509         time_to_die = 1;
510         FD=fdopen(fd, "a+");
511         fflush (FD);
512         fclose (FD);
513         close(fd);
514 }
515
516
517 /*
518  * Start running as a daemon.
519  */
520 void start_daemon(char *pid_file) 
521 {
522         int status = 0;
523         pid_t child = 0;
524         FILE *fp;
525         int do_restart = 0;
526
527         current_child = 0;
528
529         /* Close stdin/stdout/stderr and replace them with /dev/null.
530          * We don't just call close() because we don't want these fd's
531          * to be reused for other files.
532          */
533         chdir("/");
534
535         signal(SIGHUP, SIG_IGN);
536         signal(SIGINT, SIG_IGN);
537         signal(SIGQUIT, SIG_IGN);
538
539         child = fork();
540         if (child != 0) {
541                 exit(0);
542         }
543
544         setsid();
545         umask(0);
546         freopen("/dev/null", "r", stdin);
547         freopen("/dev/null", "w", stdout);
548         freopen("/dev/null", "w", stderr);
549         signal(SIGTERM, graceful_shutdown_watcher);
550         signal(SIGHUP, graceful_shutdown_watcher);
551
552         do {
553                 current_child = fork();
554
555         
556                 if (current_child < 0) {
557                         perror("fork");
558                         ShutDownLibCitadel ();
559                         exit(errno);
560                 }
561         
562                 else if (current_child == 0) {  // child process
563 //                      signal(SIGTERM, graceful_shutdown);
564                         signal(SIGHUP, graceful_shutdown);
565
566                         return; /* continue starting webcit. */
567                 }
568         
569                 else { // watcher process
570 //                      signal(SIGTERM, SIG_IGN);
571 //                      signal(SIGHUP, SIG_IGN);
572                         if (pid_file) {
573                                 fp = fopen(pid_file, "w");
574                                 if (fp != NULL) {
575                                         fprintf(fp, "%d\n", getpid());
576                                         fclose(fp);
577                                 }
578                         }
579                         waitpid(current_child, &status, 0);
580                 }
581
582                 do_restart = 0;
583
584                 /* Did the main process exit with an actual exit code? */
585                 if (WIFEXITED(status)) {
586
587                         /* Exit code 0 means the watcher should exit */
588                         if (WEXITSTATUS(status) == 0) {
589                                 do_restart = 0;
590                         }
591
592                         /* Exit code 101-109 means the watcher should exit */
593                         else if ( (WEXITSTATUS(status) >= 101) && (WEXITSTATUS(status) <= 109) ) {
594                                 do_restart = 0;
595                         }
596
597                         /* Any other exit code means we should restart. */
598                         else {
599                                 do_restart = 1;
600                         }
601                 }
602
603                 /* Any other type of termination (signals, etc.) should also restart. */
604                 else {
605                         do_restart = 1;
606                 }
607
608         } while (do_restart);
609
610         if (pid_file) {
611                 unlink(pid_file);
612         }
613         ShutDownLibCitadel ();
614         exit(WEXITSTATUS(status));
615 }
616
617 /*
618  * Spawn an additional worker thread into the pool.
619  */
620 void spawn_another_worker_thread()
621 {
622         pthread_t SessThread;   /* Thread descriptor */
623         pthread_attr_t attr;    /* Thread attributes */
624         int ret;
625
626         lprintf(3, "Creating a new thread\n");
627
628         /* set attributes for the new thread */
629         pthread_attr_init(&attr);
630         pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
631
632         /*
633          * Our per-thread stacks need to be bigger than the default size, otherwise
634          * the MIME parser crashes on FreeBSD, and the IMAP service crashes on
635          * 64-bit Linux.
636          */
637         if ((ret = pthread_attr_setstacksize(&attr, 1024 * 1024))) {
638                 lprintf(1, "pthread_attr_setstacksize: %s\n",
639                         strerror(ret));
640                 pthread_attr_destroy(&attr);
641         }
642
643         /* now create the thread */
644         if (pthread_create(&SessThread, &attr,
645                            (void *(*)(void *)) worker_entry, NULL)
646             != 0) {
647                 lprintf(1, "Can't create thread: %s\n", strerror(errno));
648         }
649
650         /* free up the attributes */
651         pthread_attr_destroy(&attr);
652 }
653
654 //#define DBG_PRINNT_HOOKS_AT_START
655 #ifdef DBG_PRINNT_HOOKS_AT_START
656 const char foobuf[32];
657 const char *nix(void *vptr) {snprintf(foobuf, 32, "%0x", (long) vptr); return foobuf;}
658 #endif 
659 void InitTemplateCache(void);
660 extern int LoadTemplates;
661 extern void LoadZoneFiles(void);
662 StrBuf *csslocal = NULL;
663 /*
664  * Here's where it all begins.
665  */
666 int main(int argc, char **argv)
667 {
668         pthread_t SessThread;           /* Thread descriptor */
669         pthread_attr_t attr;            /* Thread attributes */
670         int a, i;                       /* General-purpose variables */
671         char tracefile[PATH_MAX];
672         char ip_addr[256]="0.0.0.0";
673         char dirbuffer[PATH_MAX]="";
674         int relh=0;
675         int home=0;
676         int home_specified=0;
677         char relhome[PATH_MAX]="";
678         char webcitdir[PATH_MAX] = DATADIR;
679         char *pidfile = NULL;
680         char *hdir;
681         const char *basedir;
682 #ifdef ENABLE_NLS
683         char *locale = NULL;
684         char *mo = NULL;
685 #endif /* ENABLE_NLS */
686         char uds_listen_path[PATH_MAX]; /* listen on a unix domain socket? */
687
688         HandlerHash = NewHash(1, NULL);
689         PreferenceHooks = NewHash(1, NULL);
690         WirelessTemplateCache = NewHash(1, NULL);
691         WirelessLocalTemplateCache = NewHash(1, NULL);
692         LocalTemplateCache = NewHash(1, NULL);
693         TemplateCache = NewHash(1, NULL);
694         GlobalNS = NewHash(1, NULL);
695         Iterators = NewHash(1, NULL);
696         Contitionals = NewHash(1, NULL);
697         MsgHeaderHandler = NewHash(1, NULL);
698         MimeRenderHandler = NewHash(1, NULL);
699
700         LoadZoneFiles();
701
702 #ifdef DBG_PRINNT_HOOKS_AT_START
703         dbg_PrintHash(HandlerHash, nix, NULL);
704 #endif
705
706         /* Ensure that we are linked to the correct version of libcitadel */
707         if (libcitadel_version_number() < LIBCITADEL_VERSION_NUMBER) {
708                 fprintf(stderr, " You are running libcitadel version %d.%02d\n",
709                         (libcitadel_version_number() / 100), (libcitadel_version_number() % 100));
710                 fprintf(stderr, "WebCit was compiled against version %d.%02d\n",
711                         (LIBCITADEL_VERSION_NUMBER / 100), (LIBCITADEL_VERSION_NUMBER % 100));
712                 return(1);
713         }
714
715         strcpy(uds_listen_path, "");
716
717         /* Parse command line */
718 #ifdef HAVE_OPENSSL
719         while ((a = getopt(argc, argv, "h:i:p:t:T:x:dD:cfsZ")) != EOF)
720 #else
721         while ((a = getopt(argc, argv, "h:i:p:t:T:x:dD:cfZ")) != EOF)
722 #endif
723                 switch (a) {
724                 case 'h':
725                         hdir = strdup(optarg);
726                         relh=hdir[0]!='/';
727                         if (!relh) safestrncpy(webcitdir, hdir,
728                                                                    sizeof webcitdir);
729                         else
730                                 safestrncpy(relhome, relhome,
731                                                         sizeof relhome);
732                         /* free(hdir); TODO: SHOULD WE DO THIS? */
733                         home_specified = 1;
734                         home=1;
735                         break;
736                 case 'd':
737                         running_as_daemon = 1;
738                         break;
739                 case 'D':
740                         pidfile = strdup(optarg);
741                         running_as_daemon = 1;
742                         break;
743                 case 'i':
744                         safestrncpy(ip_addr, optarg, sizeof ip_addr);
745                         break;
746                 case 'p':
747                         http_port = atoi(optarg);
748                         if (http_port == 0) {
749                                 safestrncpy(uds_listen_path, optarg, sizeof uds_listen_path);
750                         }
751                         break;
752                 case 't':
753                         safestrncpy(tracefile, optarg, sizeof tracefile);
754                         freopen(tracefile, "w", stdout);
755                         freopen(tracefile, "w", stderr);
756                         freopen(tracefile, "r", stdin);
757                         break;
758                 case 'T':
759                         LoadTemplates = atoi(optarg);
760                         break;
761                 case 'Z':
762                         DisableGzip = 1;
763                         break;
764                 case 'x':
765                         verbosity = atoi(optarg);
766                         break;
767                 case 'f':
768                         follow_xff = 1;
769                         break;
770                 case 'c':
771                         server_cookie = malloc(256);
772                         if (server_cookie != NULL) {
773                                 safestrncpy(server_cookie,
774                                        "Set-cookie: wcserver=",
775                                         256);
776                                 if (gethostname
777                                     (&server_cookie[strlen(server_cookie)],
778                                      200) != 0) {
779                                         lprintf(2, "gethostname: %s\n",
780                                                 strerror(errno));
781                                         free(server_cookie);
782                                 }
783                         }
784                         break;
785                 case 's':
786                         is_https = 1;
787                         break;
788                 default:
789                         fprintf(stderr, "usage: webcit "
790                                 "[-i ip_addr] [-p http_port] "
791                                 "[-t tracefile] [-c] [-f] "
792                                 "[-T Templatedebuglevel] "
793                                 "[-d] "
794 #ifdef HAVE_OPENSSL
795                                 "[-s] "
796 #endif
797                                 "[remotehost [remoteport]]\n");
798                         return 1;
799                 }
800
801         if (optind < argc) {
802                 ctdlhost = argv[optind];
803                 if (++optind < argc)
804                         ctdlport = argv[optind];
805         }
806
807         /* daemonize, if we were asked to */
808         if (running_as_daemon) {
809                 start_daemon(pidfile);
810         }
811         else {
812 ///             signal(SIGTERM, graceful_shutdown);
813                 signal(SIGHUP, graceful_shutdown);
814         }
815
816         /* Tell 'em who's in da house */
817         lprintf(1, PACKAGE_STRING "\n");
818         lprintf(1, "Copyright (C) 1996-2008 by the Citadel development team.\n"
819                 "This software is distributed under the terms of the "
820                 "GNU General Public License.\n\n"
821         );
822
823
824         /* initialize the International Bright Young Thing */
825 #ifdef ENABLE_NLS
826         initialize_locales();
827
828         locale = setlocale(LC_ALL, "");
829
830         mo = malloc(strlen(webcitdir) + 20);
831         lprintf(9, "Message catalog directory: %s\n", bindtextdomain("webcit", LOCALEDIR"/locale"));
832         free(mo);
833         lprintf(9, "Text domain: %s\n", textdomain("webcit"));
834         lprintf(9, "Text domain Charset: %s\n", bind_textdomain_codeset("webcit","UTF8"));
835         preset_locale();
836 #endif
837
838
839         /* calculate all our path on a central place */
840     /* where to keep our config */
841         
842 #define COMPUTE_DIRECTORY(SUBDIR) memcpy(dirbuffer,SUBDIR, sizeof dirbuffer);\
843         snprintf(SUBDIR,sizeof SUBDIR,  "%s%s%s%s%s%s%s", \
844                          (home&!relh)?webcitdir:basedir, \
845              ((basedir!=webcitdir)&(home&!relh))?basedir:"/", \
846              ((basedir!=webcitdir)&(home&!relh))?"/":"", \
847                          relhome, \
848              (relhome[0]!='\0')?"/":"",\
849                          dirbuffer,\
850                          (dirbuffer[0]!='\0')?"/":"");
851         basedir=RUNDIR;
852         COMPUTE_DIRECTORY(socket_dir);
853         basedir=WWWDIR "/static";
854         COMPUTE_DIRECTORY(static_dir);
855         basedir=WWWDIR "/static/icons";
856         COMPUTE_DIRECTORY(static_icon_dir);
857         basedir=WWWDIR "/static.local";
858         COMPUTE_DIRECTORY(static_local_dir);
859
860         snprintf(file_crpt_file_key,
861                  sizeof file_crpt_file_key, 
862                  "%s/citadel.key",
863                  ctdl_key_dir);
864         snprintf(file_crpt_file_csr,
865                  sizeof file_crpt_file_csr, 
866                  "%s/citadel.csr",
867                  ctdl_key_dir);
868         snprintf(file_crpt_file_cer,
869                  sizeof file_crpt_file_cer, 
870                  "%s/citadel.cer",
871                  ctdl_key_dir);
872
873         /* we should go somewhere we can leave our coredump, if enabled... */
874         lprintf(9, "Changing directory to %s\n", socket_dir);
875         if (chdir(webcitdir) != 0) {
876                 perror("chdir");
877         }
878         LoadIconDir(static_icon_dir);
879         InitTemplateCache();
880
881         initialise_modules();
882         initialize_viewdefs();
883         initialize_axdefs();
884
885         if (!access("static.local/webcit.css", R_OK)) {
886                 csslocal = NewStrBufPlain(HKEY("<link href=\"static.local/webcit.css\" rel=\"stylesheet\" type=\"text/css\">"));
887         }
888
889         /* Tell libical to return an error instead of aborting if it sees badly formed iCalendar data. */
890         icalerror_errors_are_fatal = 0;
891
892         /*
893          * Set up a place to put thread-specific data.
894          * We only need a single pointer per thread - it points to the
895          * wcsession struct to which the thread is currently bound.
896          */
897         if (pthread_key_create(&MyConKey, NULL) != 0) {
898                 lprintf(1, "Can't create TSD key: %s\n", strerror(errno));
899         }
900         InitialiseSemaphores ();
901
902         /*
903          * Set up a place to put thread-specific SSL data.
904          * We don't stick this in the wcsession struct because SSL starts
905          * up before the session is bound, and it gets torn down between
906          * transactions.
907          */
908 #ifdef HAVE_OPENSSL
909         if (pthread_key_create(&ThreadSSL, NULL) != 0) {
910                 lprintf(1, "Can't create TSD key: %s\n", strerror(errno));
911         }
912 #endif
913
914         /*
915          * Bind the server to our favorite port.
916          * There is no need to check for errors, because ig_tcp_server()
917          * exits if it doesn't succeed.
918          */
919
920         if (!IsEmptyStr(uds_listen_path)) {
921                 lprintf(2, "Attempting to create listener socket at %s...\n", uds_listen_path);
922                 msock = ig_uds_server(uds_listen_path, LISTEN_QUEUE_LENGTH);
923         }
924         else {
925                 lprintf(2, "Attempting to bind to port %d...\n", http_port);
926                 msock = ig_tcp_server(ip_addr, http_port, LISTEN_QUEUE_LENGTH);
927         }
928
929         lprintf(2, "Listening on socket %d\n", msock);
930         signal(SIGPIPE, SIG_IGN);
931
932         pthread_mutex_init(&SessionListMutex, NULL);
933
934         /*
935          * Start up the housekeeping thread
936          */
937         pthread_attr_init(&attr);
938         pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
939         pthread_create(&SessThread, &attr,
940                        (void *(*)(void *)) housekeeping_loop, NULL);
941
942
943         /*
944          * If this is an HTTPS server, fire up SSL
945          */
946 #ifdef HAVE_OPENSSL
947         if (is_https) {
948                 init_ssl();
949         }
950 #endif
951
952         /* Start a few initial worker threads */
953         for (i = 0; i < (MIN_WORKER_THREADS); ++i) {
954                 spawn_another_worker_thread();
955         }
956
957         /* now the original thread becomes another worker */
958         worker_entry();
959         ShutDownLibCitadel ();
960         DeleteHash(&HandlerHash);
961         DeleteHash(&PreferenceHooks);
962         return 0;
963 }
964
965
966 void ShutDownWebcit(void)
967 {
968         DeleteHash(&ZoneHash);
969         free_zone_directory ();
970         icaltimezone_release_zone_tab ();
971         icalmemory_free_ring ();
972         ShutDownLibCitadel ();
973         DeleteHash(&HandlerHash);
974         DeleteHash(&PreferenceHooks);
975         DeleteHash(&GlobalNS);
976         DeleteHash(&WirelessTemplateCache);
977         DeleteHash(&WirelessLocalTemplateCache);
978         DeleteHash(&TemplateCache);
979         DeleteHash(&LocalTemplateCache);
980         DeleteHash(&Iterators);
981         DeleteHash(&MimeRenderHandler);
982         DeleteHash(&Contitionals);
983         DeleteHash(&MsgHeaderHandler);
984 #ifdef ENABLE_NLS
985         ShutdownLocale();
986 #endif
987 #ifdef HAVE_OPENSSL
988         if (is_https) {
989                 shutdown_ssl();
990         }
991 #endif
992 }
993
994 /*
995  * Entry point for worker threads
996  */
997 void worker_entry(void)
998 {
999         int ssock;
1000         int i = 0;
1001         int fail_this_transaction = 0;
1002         int ret;
1003         struct timeval tv;
1004         fd_set readset, tempset;
1005
1006         tv.tv_sec = 0;
1007         tv.tv_usec = 10000;
1008         FD_ZERO(&readset);
1009         FD_SET(msock, &readset);
1010
1011         do {
1012                 /* Only one thread can accept at a time */
1013                 fail_this_transaction = 0;
1014                 ssock = -1; 
1015                 errno = EAGAIN;
1016                 do {
1017                         ret = -1; /* just one at once should select... */
1018                         begin_critical_section(S_SELECT);
1019
1020                         FD_ZERO(&tempset);
1021                         if (msock > 0) FD_SET(msock, &tempset);
1022                         tv.tv_sec = 0;
1023                         tv.tv_usec = 10000;
1024                         if (msock > 0)  ret = select(msock+1, &tempset, NULL, NULL,  &tv);
1025                         end_critical_section(S_SELECT);
1026                         if ((ret < 0) && (errno != EINTR) && (errno != EAGAIN))
1027                         {// EINTR and EAGAIN are thrown but not of interest.
1028                                 lprintf(2, "accept() failed:%d %s\n",
1029                                         errno, strerror(errno));
1030                         }
1031                         else if ((ret > 0) && (msock > 0) && FD_ISSET(msock, &tempset))
1032                         {// Successfully selected, and still not shutting down? Accept!
1033                                 ssock = accept(msock, NULL, 0);
1034                         }
1035                         
1036                 } while ((msock > 0) && (ssock < 0)  && (time_to_die == 0));
1037
1038                 if ((msock == -1)||(time_to_die))
1039                 {// ok, we're going down.
1040                         int shutdown = 0;
1041
1042                         /* the first to come here will have to do the cleanup.
1043                          * make shure its realy just one.
1044                          */
1045                         begin_critical_section(S_SHUTDOWN);
1046                         if (msock == -1)
1047                         {
1048                                 msock = -2;
1049                                 shutdown = 1;
1050                         }
1051                         end_critical_section(S_SHUTDOWN);
1052                         if (shutdown == 1)
1053                         {// we're the one to cleanup the mess.
1054                                 lprintf(2, "I'm master shutdown: tagging sessions to be killed.\n");
1055                                 shutdown_sessions();
1056                                 lprintf(2, "master shutdown: waiting for others\n");
1057                                 sleeeeeeeeeep(1); // wait so some others might finish...
1058                                 lprintf(2, "master shutdown: cleaning up sessions\n");
1059                                 do_housekeeping();
1060                                 lprintf(2, "master shutdown: cleaning up libical\n");
1061
1062                                 ShutDownWebcit();
1063
1064                                 lprintf(2, "master shutdown exiting!.\n");                              
1065                                 exit(0);
1066                         }
1067                         break;
1068                 }
1069                 if (ssock < 0 ) continue;
1070
1071                 if (msock < 0) {
1072                         if (ssock > 0) close (ssock);
1073                         lprintf(2, "inbetween.");
1074                         pthread_exit(NULL);
1075                 } else { // Got it? do some real work!
1076                         /* Set the SO_REUSEADDR socket option */
1077                         i = 1;
1078                         setsockopt(ssock, SOL_SOCKET, SO_REUSEADDR,
1079                                    &i, sizeof(i));
1080
1081                         /* If we are an HTTPS server, go crypto now. */
1082 #ifdef HAVE_OPENSSL
1083                         if (is_https) {
1084                                 if (starttls(ssock) != 0) {
1085                                         fail_this_transaction = 1;
1086                                         close(ssock);
1087                                 }
1088                         }
1089 #endif
1090
1091                         if (fail_this_transaction == 0) {
1092
1093                                 /* Perform an HTTP transaction... */
1094                                 context_loop(&ssock);
1095
1096                                 /* Shut down SSL/TLS if required... */
1097 #ifdef HAVE_OPENSSL
1098                                 if (is_https) {
1099                                         endtls();
1100                                 }
1101 #endif
1102
1103                                 /* ...and close the socket. */
1104                                 if (ssock > 0)
1105                                         lingering_close(ssock);
1106                         }
1107
1108                 }
1109
1110         } while (!time_to_die);
1111
1112         lprintf (1, "bye\n");
1113         pthread_exit(NULL);
1114 }
1115
1116 /*
1117  * print log messages 
1118  * logs to stderr if loglevel is lower than the verbosity set at startup
1119  *
1120  * loglevel     level of the message
1121  * format       the printf like format string
1122  * ...          the strings to put into format
1123  */
1124 int lprintf(int loglevel, const char *format, ...)
1125 {
1126         va_list ap;
1127
1128         if (loglevel <= verbosity) {
1129                 va_start(ap, format);
1130                 vfprintf(stderr, format, ap);
1131                 va_end(ap);
1132                 fflush(stderr);
1133         }
1134         return 1;
1135 }
1136
1137
1138 /*
1139  * print the actual stack frame.
1140  */
1141 void wc_backtrace(void)
1142 {
1143 #ifdef HAVE_BACKTRACE
1144         void *stack_frames[50];
1145         size_t size, i;
1146         char **strings;
1147
1148
1149         size = backtrace(stack_frames, sizeof(stack_frames) / sizeof(void*));
1150         strings = backtrace_symbols(stack_frames, size);
1151         for (i = 0; i < size; i++) {
1152                 if (strings != NULL)
1153                         lprintf(1, "%s\n", strings[i]);
1154                 else
1155                         lprintf(1, "%p\n", stack_frames[i]);
1156         }
1157         free(strings);
1158 #endif
1159 }
1160