* UPDATE YOUR LIBICAL FROM SVN NOW.
[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         Conditionals = NewHash(1, NULL);
697         MsgHeaderHandler = NewHash(1, NULL);
698         MimeRenderHandler = NewHash(1, NULL);
699         SortHash = NewHash(1, NULL);
700
701         LoadZoneFiles();
702
703 #ifdef DBG_PRINNT_HOOKS_AT_START
704         dbg_PrintHash(HandlerHash, nix, NULL);
705 #endif
706
707         /* Ensure that we are linked to the correct version of libcitadel */
708         if (libcitadel_version_number() < LIBCITADEL_VERSION_NUMBER) {
709                 fprintf(stderr, " You are running libcitadel version %d.%02d\n",
710                         (libcitadel_version_number() / 100), (libcitadel_version_number() % 100));
711                 fprintf(stderr, "WebCit was compiled against version %d.%02d\n",
712                         (LIBCITADEL_VERSION_NUMBER / 100), (LIBCITADEL_VERSION_NUMBER % 100));
713                 return(1);
714         }
715
716         strcpy(uds_listen_path, "");
717
718         /* Parse command line */
719 #ifdef HAVE_OPENSSL
720         while ((a = getopt(argc, argv, "h:i:p:t:T:x:dD:cfsZ")) != EOF)
721 #else
722         while ((a = getopt(argc, argv, "h:i:p:t:T:x:dD:cfZ")) != EOF)
723 #endif
724                 switch (a) {
725                 case 'h':
726                         hdir = strdup(optarg);
727                         relh=hdir[0]!='/';
728                         if (!relh) safestrncpy(webcitdir, hdir,
729                                                                    sizeof webcitdir);
730                         else
731                                 safestrncpy(relhome, relhome,
732                                                         sizeof relhome);
733                         /* free(hdir); TODO: SHOULD WE DO THIS? */
734                         home_specified = 1;
735                         home=1;
736                         break;
737                 case 'd':
738                         running_as_daemon = 1;
739                         break;
740                 case 'D':
741                         pidfile = strdup(optarg);
742                         running_as_daemon = 1;
743                         break;
744                 case 'i':
745                         safestrncpy(ip_addr, optarg, sizeof ip_addr);
746                         break;
747                 case 'p':
748                         http_port = atoi(optarg);
749                         if (http_port == 0) {
750                                 safestrncpy(uds_listen_path, optarg, sizeof uds_listen_path);
751                         }
752                         break;
753                 case 't':
754                         safestrncpy(tracefile, optarg, sizeof tracefile);
755                         freopen(tracefile, "w", stdout);
756                         freopen(tracefile, "w", stderr);
757                         freopen(tracefile, "r", stdin);
758                         break;
759                 case 'T':
760                         LoadTemplates = atoi(optarg);
761                         break;
762                 case 'Z':
763                         DisableGzip = 1;
764                         break;
765                 case 'x':
766                         verbosity = atoi(optarg);
767                         break;
768                 case 'f':
769                         follow_xff = 1;
770                         break;
771                 case 'c':
772                         server_cookie = malloc(256);
773                         if (server_cookie != NULL) {
774                                 safestrncpy(server_cookie,
775                                        "Set-cookie: wcserver=",
776                                         256);
777                                 if (gethostname
778                                     (&server_cookie[strlen(server_cookie)],
779                                      200) != 0) {
780                                         lprintf(2, "gethostname: %s\n",
781                                                 strerror(errno));
782                                         free(server_cookie);
783                                 }
784                         }
785                         break;
786                 case 's':
787                         is_https = 1;
788                         break;
789                 default:
790                         fprintf(stderr, "usage: webcit "
791                                 "[-i ip_addr] [-p http_port] "
792                                 "[-t tracefile] [-c] [-f] "
793                                 "[-T Templatedebuglevel] "
794                                 "[-d] [-Z] "
795 #ifdef HAVE_OPENSSL
796                                 "[-s] "
797 #endif
798                                 "[remotehost [remoteport]]\n");
799                         return 1;
800                 }
801
802         if (optind < argc) {
803                 ctdlhost = argv[optind];
804                 if (++optind < argc)
805                         ctdlport = argv[optind];
806         }
807
808         /* daemonize, if we were asked to */
809         if (running_as_daemon) {
810                 start_daemon(pidfile);
811         }
812         else {
813 ///             signal(SIGTERM, graceful_shutdown);
814                 signal(SIGHUP, graceful_shutdown);
815         }
816
817         /* Tell 'em who's in da house */
818         lprintf(1, PACKAGE_STRING "\n");
819         lprintf(1, "Copyright (C) 1996-2008 by the Citadel development team.\n"
820                 "This software is distributed under the terms of the "
821                 "GNU General Public License.\n\n"
822         );
823
824
825         /* initialize the International Bright Young Thing */
826 #ifdef ENABLE_NLS
827         initialize_locales();
828
829         locale = setlocale(LC_ALL, "");
830
831         mo = malloc(strlen(webcitdir) + 20);
832         lprintf(9, "Message catalog directory: %s\n", bindtextdomain("webcit", LOCALEDIR"/locale"));
833         free(mo);
834         lprintf(9, "Text domain: %s\n", textdomain("webcit"));
835         lprintf(9, "Text domain Charset: %s\n", bind_textdomain_codeset("webcit","UTF8"));
836         preset_locale();
837 #endif
838
839
840         /* calculate all our path on a central place */
841     /* where to keep our config */
842         
843 #define COMPUTE_DIRECTORY(SUBDIR) memcpy(dirbuffer,SUBDIR, sizeof dirbuffer);\
844         snprintf(SUBDIR,sizeof SUBDIR,  "%s%s%s%s%s%s%s", \
845                          (home&!relh)?webcitdir:basedir, \
846              ((basedir!=webcitdir)&(home&!relh))?basedir:"/", \
847              ((basedir!=webcitdir)&(home&!relh))?"/":"", \
848                          relhome, \
849              (relhome[0]!='\0')?"/":"",\
850                          dirbuffer,\
851                          (dirbuffer[0]!='\0')?"/":"");
852         basedir=RUNDIR;
853         COMPUTE_DIRECTORY(socket_dir);
854         basedir=WWWDIR "/static";
855         COMPUTE_DIRECTORY(static_dir);
856         basedir=WWWDIR "/static/icons";
857         COMPUTE_DIRECTORY(static_icon_dir);
858         basedir=WWWDIR "/static.local";
859         COMPUTE_DIRECTORY(static_local_dir);
860
861         snprintf(file_crpt_file_key,
862                  sizeof file_crpt_file_key, 
863                  "%s/citadel.key",
864                  ctdl_key_dir);
865         snprintf(file_crpt_file_csr,
866                  sizeof file_crpt_file_csr, 
867                  "%s/citadel.csr",
868                  ctdl_key_dir);
869         snprintf(file_crpt_file_cer,
870                  sizeof file_crpt_file_cer, 
871                  "%s/citadel.cer",
872                  ctdl_key_dir);
873
874         /* we should go somewhere we can leave our coredump, if enabled... */
875         lprintf(9, "Changing directory to %s\n", socket_dir);
876         if (chdir(webcitdir) != 0) {
877                 perror("chdir");
878         }
879         LoadIconDir(static_icon_dir);
880
881         initialise_modules();
882         initialize_viewdefs();
883         initialize_axdefs();
884
885         InitTemplateCache();
886
887         if (!access("static.local/webcit.css", R_OK)) {
888                 csslocal = NewStrBufPlain(HKEY("<link href=\"static.local/webcit.css\" rel=\"stylesheet\" type=\"text/css\">"));
889         }
890
891         /* Tell libical to return an error instead of aborting if it sees badly formed iCalendar data. */
892         icalerror_errors_are_fatal = 0;
893
894         /* Use our own prefix on tzid's generated from system tzdata */
895         icaltimezone_set_tzid_prefix("/citadel.org/");
896
897         /*
898          * Set up a place to put thread-specific data.
899          * We only need a single pointer per thread - it points to the
900          * wcsession struct to which the thread is currently bound.
901          */
902         if (pthread_key_create(&MyConKey, NULL) != 0) {
903                 lprintf(1, "Can't create TSD key: %s\n", strerror(errno));
904         }
905         InitialiseSemaphores ();
906
907         /*
908          * Set up a place to put thread-specific SSL data.
909          * We don't stick this in the wcsession struct because SSL starts
910          * up before the session is bound, and it gets torn down between
911          * transactions.
912          */
913 #ifdef HAVE_OPENSSL
914         if (pthread_key_create(&ThreadSSL, NULL) != 0) {
915                 lprintf(1, "Can't create TSD key: %s\n", strerror(errno));
916         }
917 #endif
918
919         /*
920          * Bind the server to our favorite port.
921          * There is no need to check for errors, because ig_tcp_server()
922          * exits if it doesn't succeed.
923          */
924
925         if (!IsEmptyStr(uds_listen_path)) {
926                 lprintf(2, "Attempting to create listener socket at %s...\n", uds_listen_path);
927                 msock = ig_uds_server(uds_listen_path, LISTEN_QUEUE_LENGTH);
928         }
929         else {
930                 lprintf(2, "Attempting to bind to port %d...\n", http_port);
931                 msock = ig_tcp_server(ip_addr, http_port, LISTEN_QUEUE_LENGTH);
932         }
933
934         lprintf(2, "Listening on socket %d\n", msock);
935         signal(SIGPIPE, SIG_IGN);
936
937         pthread_mutex_init(&SessionListMutex, NULL);
938
939         /*
940          * Start up the housekeeping thread
941          */
942         pthread_attr_init(&attr);
943         pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
944         pthread_create(&SessThread, &attr,
945                        (void *(*)(void *)) housekeeping_loop, NULL);
946
947
948         /*
949          * If this is an HTTPS server, fire up SSL
950          */
951 #ifdef HAVE_OPENSSL
952         if (is_https) {
953                 init_ssl();
954         }
955 #endif
956
957         /* Start a few initial worker threads */
958         for (i = 0; i < (MIN_WORKER_THREADS); ++i) {
959                 spawn_another_worker_thread();
960         }
961
962         /* now the original thread becomes another worker */
963         worker_entry();
964         ShutDownLibCitadel ();
965         DeleteHash(&HandlerHash);
966         DeleteHash(&PreferenceHooks);
967         return 0;
968 }
969
970
971 void ShutDownWebcit(void)
972 {
973         DeleteHash(&ZoneHash);
974         free_zone_directory ();
975         icaltimezone_release_zone_tab ();
976         icalmemory_free_ring ();
977         ShutDownLibCitadel ();
978         DeleteHash(&HandlerHash);
979         DeleteHash(&PreferenceHooks);
980         DeleteHash(&GlobalNS);
981         DeleteHash(&WirelessTemplateCache);
982         DeleteHash(&WirelessLocalTemplateCache);
983         DeleteHash(&TemplateCache);
984         DeleteHash(&LocalTemplateCache);
985         DeleteHash(&Iterators);
986         DeleteHash(&MimeRenderHandler);
987         DeleteHash(&Conditionals);
988         DeleteHash(&MsgHeaderHandler);
989         DeleteHash(&SortHash);
990 #ifdef ENABLE_NLS
991         ShutdownLocale();
992 #endif
993 #ifdef HAVE_OPENSSL
994         if (is_https) {
995                 shutdown_ssl();
996         }
997 #endif
998 }
999
1000 /*
1001  * Entry point for worker threads
1002  */
1003 void worker_entry(void)
1004 {
1005         int ssock;
1006         int i = 0;
1007         int fail_this_transaction = 0;
1008         int ret;
1009         struct timeval tv;
1010         fd_set readset, tempset;
1011
1012         tv.tv_sec = 0;
1013         tv.tv_usec = 10000;
1014         FD_ZERO(&readset);
1015         FD_SET(msock, &readset);
1016
1017         do {
1018                 /* Only one thread can accept at a time */
1019                 fail_this_transaction = 0;
1020                 ssock = -1; 
1021                 errno = EAGAIN;
1022                 do {
1023                         ret = -1; /* just one at once should select... */
1024                         begin_critical_section(S_SELECT);
1025
1026                         FD_ZERO(&tempset);
1027                         if (msock > 0) FD_SET(msock, &tempset);
1028                         tv.tv_sec = 0;
1029                         tv.tv_usec = 10000;
1030                         if (msock > 0)  ret = select(msock+1, &tempset, NULL, NULL,  &tv);
1031                         end_critical_section(S_SELECT);
1032                         if ((ret < 0) && (errno != EINTR) && (errno != EAGAIN))
1033                         {// EINTR and EAGAIN are thrown but not of interest.
1034                                 lprintf(2, "accept() failed:%d %s\n",
1035                                         errno, strerror(errno));
1036                         }
1037                         else if ((ret > 0) && (msock > 0) && FD_ISSET(msock, &tempset))
1038                         {// Successfully selected, and still not shutting down? Accept!
1039                                 ssock = accept(msock, NULL, 0);
1040                         }
1041                         
1042                 } while ((msock > 0) && (ssock < 0)  && (time_to_die == 0));
1043
1044                 if ((msock == -1)||(time_to_die))
1045                 {// ok, we're going down.
1046                         int shutdown = 0;
1047
1048                         /* the first to come here will have to do the cleanup.
1049                          * make shure its realy just one.
1050                          */
1051                         begin_critical_section(S_SHUTDOWN);
1052                         if (msock == -1)
1053                         {
1054                                 msock = -2;
1055                                 shutdown = 1;
1056                         }
1057                         end_critical_section(S_SHUTDOWN);
1058                         if (shutdown == 1)
1059                         {// we're the one to cleanup the mess.
1060                                 lprintf(2, "I'm master shutdown: tagging sessions to be killed.\n");
1061                                 shutdown_sessions();
1062                                 lprintf(2, "master shutdown: waiting for others\n");
1063                                 sleeeeeeeeeep(1); // wait so some others might finish...
1064                                 lprintf(2, "master shutdown: cleaning up sessions\n");
1065                                 do_housekeeping();
1066                                 lprintf(2, "master shutdown: cleaning up libical\n");
1067
1068                                 ShutDownWebcit();
1069
1070                                 lprintf(2, "master shutdown exiting!.\n");                              
1071                                 exit(0);
1072                         }
1073                         break;
1074                 }
1075                 if (ssock < 0 ) continue;
1076
1077                 if (msock < 0) {
1078                         if (ssock > 0) close (ssock);
1079                         lprintf(2, "inbetween.");
1080                         pthread_exit(NULL);
1081                 } else { // Got it? do some real work!
1082                         /* Set the SO_REUSEADDR socket option */
1083                         i = 1;
1084                         setsockopt(ssock, SOL_SOCKET, SO_REUSEADDR,
1085                                    &i, sizeof(i));
1086
1087                         /* If we are an HTTPS server, go crypto now. */
1088 #ifdef HAVE_OPENSSL
1089                         if (is_https) {
1090                                 if (starttls(ssock) != 0) {
1091                                         fail_this_transaction = 1;
1092                                         close(ssock);
1093                                 }
1094                         }
1095 #endif
1096
1097                         if (fail_this_transaction == 0) {
1098
1099                                 /* Perform an HTTP transaction... */
1100                                 context_loop(&ssock);
1101
1102                                 /* Shut down SSL/TLS if required... */
1103 #ifdef HAVE_OPENSSL
1104                                 if (is_https) {
1105                                         endtls();
1106                                 }
1107 #endif
1108
1109                                 /* ...and close the socket. */
1110                                 if (ssock > 0)
1111                                         lingering_close(ssock);
1112                         }
1113
1114                 }
1115
1116         } while (!time_to_die);
1117
1118         lprintf (1, "bye\n");
1119         pthread_exit(NULL);
1120 }
1121
1122 /*
1123  * print log messages 
1124  * logs to stderr if loglevel is lower than the verbosity set at startup
1125  *
1126  * loglevel     level of the message
1127  * format       the printf like format string
1128  * ...          the strings to put into format
1129  */
1130 int lprintf(int loglevel, const char *format, ...)
1131 {
1132         va_list ap;
1133
1134         if (loglevel <= verbosity) {
1135                 va_start(ap, format);
1136                 vfprintf(stderr, format, ap);
1137                 va_end(ap);
1138                 fflush(stderr);
1139         }
1140         return 1;
1141 }
1142
1143
1144 /*
1145  * print the actual stack frame.
1146  */
1147 void wc_backtrace(void)
1148 {
1149 #ifdef HAVE_BACKTRACE
1150         void *stack_frames[50];
1151         size_t size, i;
1152         char **strings;
1153
1154
1155         size = backtrace(stack_frames, sizeof(stack_frames) / sizeof(void*));
1156         strings = backtrace_symbols(stack_frames, size);
1157         for (i = 0; i < size; i++) {
1158                 if (strings != NULL)
1159                         lprintf(1, "%s\n", strings[i]);
1160                 else
1161                         lprintf(1, "%p\n", stack_frames[i]);
1162         }
1163         free(strings);
1164 #endif
1165 }
1166