f90e445c7ce4d12aef4662542004e2dc388b0c0b
[citadel.git] / webcit / webserver.c
1 /*
2  * $Id$
3  */
4 /**
5  * \defgroup Webserver This contains a simple multithreaded TCP server manager.  It sits around
6  * waiting on the specified port for incoming HTTP connections.  When a
7  * connection is established, it calls context_loop() from context_loop.c.
8  * \ingroup WebcitHttpServer
9  */
10
11 /*@{*/
12 #include "webcit.h"
13 #include "webserver.h"
14
15 #if HAVE_BACKTRACE
16 #include <execinfo.h>
17 #endif
18
19 #ifndef HAVE_SNPRINTF
20 int vsnprintf(char *buf, size_t max, const char *fmt, va_list argp);
21 #endif
22
23 int verbosity = 9;              /**< Logging level */
24 int msock;                          /**< master listening socket */
25 int is_https = 0;               /**< Nonzero if I am an HTTPS service */
26 int follow_xff = 0;             /**< Follow X-Forwarded-For: header */
27 int home_specified = 0; /**< did the user specify a homedir? */
28 extern void *context_loop(int);
29 extern void *housekeeping_loop(void);
30 extern pthread_mutex_t SessionListMutex;
31 extern pthread_key_t MyConKey;
32
33 char socket_dir[PATH_MAX];      /**< where to talk to our citadel server */
34 static const char editor_absolut_dir[PATH_MAX]=EDITORDIR; /**< nailed to what configure gives us. */
35 static char static_dir[PATH_MAX]; /**< calculated on startup */
36 char  *static_dirs[]={ /**< needs same sort order as the web mapping */
37         (char*)static_dir,                  /** our templates on disk */
38         (char*)editor_absolut_dir           /** the editor on disk */
39 };
40 int ndirs=2; //sizeof(static_content_dirs);//sizeof(char *);
41
42 /**
43  * Subdirectories from which the client may request static content
44  */
45 char *static_content_dirs[] = {
46         "static",                     /** static templates */
47         "tiny_mce"                    /** the JS editor */
48 };
49
50
51
52 char *server_cookie = NULL; /**< our Cookie connection to the client */
53
54 int http_port = PORT_NUM;       /**< Port to listen on */
55
56 char *ctdlhost = DEFAULT_HOST; /**< our name */
57 char *ctdlport = DEFAULT_PORT; /**< our Port */
58 int setup_wizard = 0;          /**< should we run the setup wizard? \todo */
59 char wizard_filename[PATH_MAX];/**< where's the setup wizard? */
60 int running_as_daemon = 0;     /**< should we deamonize on startup? */
61
62
63 /** 
64  * \brief This is a generic function to set up a master socket for listening on
65  * a TCP port.  The server shuts down if the bind fails.
66  * \param ip_addr ip to bind to
67  * \param port_number the port to bind to 
68  * \param queue_len the size of the input queue ????
69  */
70 int ig_tcp_server(char *ip_addr, int port_number, int queue_len)
71 {
72         struct sockaddr_in sin;
73         int s, i;
74
75         memset(&sin, 0, sizeof(sin));
76         sin.sin_family = AF_INET;
77         if (ip_addr == NULL) {
78                 sin.sin_addr.s_addr = INADDR_ANY;
79         } else {
80                 sin.sin_addr.s_addr = inet_addr(ip_addr);
81         }
82
83         if (sin.sin_addr.s_addr == INADDR_NONE) {
84                 sin.sin_addr.s_addr = INADDR_ANY;
85         }
86
87         if (port_number == 0) {
88                 lprintf(1, "Cannot start: no port number specified.\n");
89                 exit(1);
90         }
91         sin.sin_port = htons((u_short) port_number);
92
93         s = socket(PF_INET, SOCK_STREAM, (getprotobyname("tcp")->p_proto));
94         if (s < 0) {
95                 lprintf(1, "Can't create a socket: %s\n", strerror(errno));
96                 exit(errno);
97         }
98         /** Set some socket options that make sense. */
99         i = 1;
100         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &i, sizeof(i));
101
102         if (bind(s, (struct sockaddr *) &sin, sizeof(sin)) < 0) {
103                 lprintf(1, "Can't bind: %s\n", strerror(errno));
104                 exit(errno);
105         }
106         if (listen(s, queue_len) < 0) {
107                 lprintf(1, "Can't listen: %s\n", strerror(errno));
108                 exit(errno);
109         }
110         return (s);
111 }
112
113
114
115 /**
116  * \brief Create a Unix domain socket and listen on it
117  * \param sockpath file name of the unix domain socket
118  * \param queue_len queue size of the kernel fifo????
119  */
120 int ig_uds_server(char *sockpath, int queue_len)
121 {
122         struct sockaddr_un addr;
123         int s;
124         int i;
125         int actual_queue_len;
126
127         actual_queue_len = queue_len;
128         if (actual_queue_len < 5) actual_queue_len = 5;
129
130         i = unlink(sockpath);
131         if (i != 0) if (errno != ENOENT) {
132                 lprintf(1, "citserver: can't unlink %s: %s\n",
133                         sockpath, strerror(errno));
134                 exit(errno);
135         }
136
137         memset(&addr, 0, sizeof(addr));
138         addr.sun_family = AF_UNIX;
139         safestrncpy(addr.sun_path, sockpath, sizeof addr.sun_path);
140
141         s = socket(AF_UNIX, SOCK_STREAM, 0);
142         if (s < 0) {
143                 lprintf(1, "citserver: Can't create a socket: %s\n",
144                         strerror(errno));
145                 exit(errno);
146         }
147
148         if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
149                 lprintf(1, "citserver: Can't bind: %s\n",
150                         strerror(errno));
151                 exit(errno);
152         }
153
154         if (listen(s, actual_queue_len) < 0) {
155                 lprintf(1, "citserver: Can't listen: %s\n",
156                         strerror(errno));
157                 exit(errno);
158         }
159
160         chmod(sockpath, 0777);
161         return(s);
162 }
163
164
165
166
167 /**
168  * \brief Read data from the client socket.
169  * \param sock socket fd to read from ???
170  * \param buf buffer to read into 
171  * \param bytes how large is the read buffer?
172  * \param timeout how long should we wait for input?
173  * \return values are\
174  *      1       Requested number of bytes has been read.\
175  *      0       Request timed out.\
176  *         -1           Connection is broken, or other error.
177  */
178 int client_read_to(int sock, char *buf, int bytes, int timeout)
179 {
180         int len, rlen;
181         fd_set rfds;
182         struct timeval tv;
183         int retval;
184
185
186 #ifdef HAVE_OPENSSL
187         if (is_https) {
188                 return (client_read_ssl(buf, bytes, timeout));
189         }
190 #endif
191
192         len = 0;
193         while (len < bytes) {
194                 FD_ZERO(&rfds);
195                 FD_SET(sock, &rfds);
196                 tv.tv_sec = timeout;
197                 tv.tv_usec = 0;
198
199                 retval = select((sock) + 1, &rfds, NULL, NULL, &tv);
200                 if (FD_ISSET(sock, &rfds) == 0) {
201                         return (0);
202                 }
203
204                 rlen = read(sock, &buf[len], bytes - len);
205
206                 if (rlen < 1) {
207                         lprintf(2, "client_read() failed: %s\n",
208                                 strerror(errno));
209                         return (-1);
210                 }
211                 len = len + rlen;
212         }
213
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
222 /**
223  * \brief write data to the client
224  * \param buf data to write to the client
225  * \param count size of buffer
226  */
227 ssize_t client_write(const void *buf, size_t count)
228 {
229         char *newptr;
230         size_t newalloc;
231
232         if (WC->burst != NULL) {
233                 if ((WC->burst_len + count) >= WC->burst_alloc) {
234                         newalloc = (WC->burst_alloc * 2);
235                         if ((WC->burst_len + count) >= newalloc) {
236                                 newalloc += count;
237                         }
238                         newptr = realloc(WC->burst, newalloc);
239                         if (newptr != NULL) {
240                                 WC->burst = newptr;
241                                 WC->burst_alloc = newalloc;
242                         }
243                 }
244                 if ((WC->burst_len + count) < WC->burst_alloc) {
245                         memcpy(&WC->burst[WC->burst_len], buf, count);
246                         WC->burst_len += count;
247                         return (count);
248                 }
249                 else {
250                         return(-1);
251                 }
252         }
253 #ifdef HAVE_OPENSSL
254         if (is_https) {
255                 client_write_ssl((char *) buf, count);
256                 return (count);
257         }
258 #endif
259 #ifdef HTTP_TRACING
260         write(2, "\033[34m", 5);
261         write(2, buf, count);
262         write(2, "\033[30m", 5);
263 #endif
264         return (write(WC->http_sock, buf, count));
265 }
266
267 /**
268  * \brief what burst???
269  */
270 void begin_burst(void)
271 {
272         if (WC->burst != NULL) {
273                 free(WC->burst);
274                 WC->burst = NULL;
275         }
276         WC->burst_len = 0;
277         WC->burst_alloc = 32768;
278         WC->burst = malloc(WC->burst_alloc);
279 }
280
281
282 /**
283  * \brief uses the same calling syntax as compress2(), but it
284  * creates a stream compatible with HTTP "Content-encoding: gzip"
285  */
286 #ifdef HAVE_ZLIB
287 #define DEF_MEM_LEVEL 8 /**< memlevel??? */
288 #define OS_CODE 0x03    /**< unix */
289 int ZEXPORT compress_gzip(Bytef * dest,         /**< compressed buffer*/
290                                                   uLongf * destLen,     /**< length of the compresed data */
291                                                   const Bytef * source, /**< source to encode */
292                                                   uLong sourceLen,      /**< length of the source to encode */
293                                                   int level)            /**< what level??? */
294 {
295         const int gz_magic[2] = { 0x1f, 0x8b }; /** gzip magic header */
296
297         /** write gzip header */
298         sprintf((char *) dest, "%c%c%c%c%c%c%c%c%c%c",
299                 gz_magic[0], gz_magic[1], Z_DEFLATED,
300                 0 /*flags */ , 0, 0, 0, 0 /*time */ , 0 /** xflags */ ,
301                 OS_CODE);
302
303         /* normal deflate */
304         z_stream stream;
305         int err;
306         stream.next_in = (Bytef *) source;
307         stream.avail_in = (uInt) sourceLen;
308         stream.next_out = dest + 10L;   // after header
309         stream.avail_out = (uInt) * destLen;
310         if ((uLong) stream.avail_out != *destLen)
311                 return Z_BUF_ERROR;
312
313         stream.zalloc = (alloc_func) 0;
314         stream.zfree = (free_func) 0;
315         stream.opaque = (voidpf) 0;
316
317         err = deflateInit2(&stream, level, Z_DEFLATED, -MAX_WBITS,
318                            DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
319         if (err != Z_OK)
320                 return err;
321
322         err = deflate(&stream, Z_FINISH);
323         if (err != Z_STREAM_END) {
324                 deflateEnd(&stream);
325                 return err == Z_OK ? Z_BUF_ERROR : err;
326         }
327         *destLen = stream.total_out + 10L;
328
329         /* write CRC and Length */
330         uLong crc = crc32(0L, source, sourceLen);
331         int n;
332         for (n = 0; n < 4; ++n, ++*destLen) {
333                 dest[*destLen] = (int) (crc & 0xff);
334                 crc >>= 8;
335         }
336         uLong len = stream.total_in;
337         for (n = 0; n < 4; ++n, ++*destLen) {
338                 dest[*destLen] = (int) (len & 0xff);
339                 len >>= 8;
340         }
341         err = deflateEnd(&stream);
342         return err;
343 }
344 #endif
345
346 /**
347  * \brief what burst???
348  */
349 void end_burst(void)
350 {
351         size_t the_len;
352         char *the_data;
353
354         if (WC->burst == NULL)
355                 return;
356
357         the_len = WC->burst_len;
358         the_data = WC->burst;
359
360         WC->burst_len = 0;
361         WC->burst_alloc = 0;
362         WC->burst = NULL;
363
364 #ifdef HAVE_ZLIB
365         /* Handle gzip compression */
366         if (WC->gzip_ok) {
367                 char *compressed_data = NULL;
368                 uLongf compressed_len;
369
370                 compressed_len = (uLongf) ((the_len * 101) / 100) + 100;
371                 compressed_data = malloc(compressed_len);
372
373                 if (compress_gzip((Bytef *) compressed_data,
374                                   &compressed_len,
375                                   (Bytef *) the_data,
376                                   (uLongf) the_len, Z_BEST_SPEED) == Z_OK) {
377                         wprintf("Content-encoding: gzip\r\n");
378                         free(the_data);
379                         the_data = compressed_data;
380                         the_len = compressed_len;
381                 } else {
382                         free(compressed_data);
383                 }
384         }
385 #endif                          /* HAVE_ZLIB */
386
387         wprintf("Content-length: %d\r\n\r\n", the_len);
388         client_write(the_data, the_len);
389         free(the_data);
390         return;
391 }
392
393
394
395 /**
396  * \brief Read data from the client socket with default timeout.
397  * (This is implemented in terms of client_read_to() and could be
398  * justifiably moved out of sysdep.c)
399  * \param sock the socket fd to read from???
400  * \param buf the buffer to write to
401  * \param bytes how large is the buffer
402  */
403 int client_read(int sock, char *buf, int bytes)
404 {
405         return (client_read_to(sock, buf, bytes, SLEEPING));
406 }
407
408
409 /**
410  * \brief Get a LF-terminated line of text from the client.
411  * (This is implemented in terms of client_read() and could be
412  * justifiably moved out of sysdep.c)
413  * \param sock socket fd to get client line from???
414  * \param buf buffer to write read data to
415  * \param bufsiz how many bytes to read
416  * \return  numer of bytes read???
417  */
418 int client_getln(int sock, char *buf, int bufsiz)
419 {
420         int i, retval;
421
422         /** Read one character at a time.*/
423         for (i = 0;; i++) {
424                 retval = client_read(sock, &buf[i], 1);
425                 if (retval != 1 || buf[i] == '\n' || i == (bufsiz-1))
426                         break;
427                 if ( (!isspace(buf[i])) && (!isprint(buf[i])) ) {
428                         /** Non printable character recieved from client */
429                         return(-1);
430                 }
431         }
432
433         /** If we got a long line, discard characters until the newline. */
434         if (i == (bufsiz-1))
435                 while (buf[i] != '\n' && retval == 1)
436                         retval = client_read(sock, &buf[i], 1);
437
438         /**
439          * Strip any trailing non-printable characters.
440          */
441         buf[i] = 0;
442         while ((strlen(buf) > 0) && (!isprint(buf[strlen(buf) - 1]))) {
443                 buf[strlen(buf) - 1] = 0;
444         }
445         return (retval);
446 }
447
448
449 /**
450  * \brief       Start running as a daemon.  
451  *
452  * param        do_close_stdio          Only close stdio if set.
453  */
454 void start_daemon(int do_close_stdio)
455 {
456         if (do_close_stdio) {
457                 /* close(0); */
458                 close(1);
459                 close(2);
460         }
461         signal(SIGHUP, SIG_IGN);
462         signal(SIGINT, SIG_IGN);
463         signal(SIGQUIT, SIG_IGN);
464         if (fork() != 0) {
465                 exit(0);
466         }
467 }
468
469 /**
470  * \brief       Spawn an additional worker thread into the pool.
471  */
472 void spawn_another_worker_thread()
473 {
474         pthread_t SessThread;   /**< Thread descriptor */
475         pthread_attr_t attr;    /**< Thread attributes */
476         int ret;
477
478         lprintf(3, "Creating a new thread\n");
479
480         /** set attributes for the new thread */
481         pthread_attr_init(&attr);
482         pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
483
484         /**
485          * Our per-thread stacks need to be bigger than the default size, otherwise
486          * the MIME parser crashes on FreeBSD, and the IMAP service crashes on
487          * 64-bit Linux.
488          */
489         if ((ret = pthread_attr_setstacksize(&attr, 1024 * 1024))) {
490                 lprintf(1, "pthread_attr_setstacksize: %s\n",
491                         strerror(ret));
492                 pthread_attr_destroy(&attr);
493         }
494
495         /** now create the thread */
496         if (pthread_create(&SessThread, &attr,
497                            (void *(*)(void *)) worker_entry, NULL)
498             != 0) {
499                 lprintf(1, "Can't create thread: %s\n", strerror(errno));
500         }
501
502         /** free up the attributes */
503         pthread_attr_destroy(&attr);
504 }
505
506 /**
507  * \brief Here's where it all begins.
508  * \param argc number of commandline args
509  * \param argv the commandline arguments
510  */
511 int main(int argc, char **argv)
512 {
513         pthread_t SessThread;   /**< Thread descriptor */
514         pthread_attr_t attr;    /**< Thread attributes */
515         int a, i;                       /**< General-purpose variables */
516         char tracefile[PATH_MAX];
517         char ip_addr[256];
518         char dirbuffer[PATH_MAX]="";
519         int relh=0;
520         int home=0;
521         int home_specified=0;
522         char relhome[PATH_MAX]="";
523         char webcitdir[PATH_MAX] = DATADIR;
524         char *hdir;
525         const char *basedir;
526 #ifdef ENABLE_NLS
527         char *locale = NULL;
528         char *mo = NULL;
529 #endif /* ENABLE_NLS */
530         char uds_listen_path[PATH_MAX]; /**< listen on a unix domain socket? */
531
532         strcpy(uds_listen_path, "");
533
534         /** Parse command line */
535 #ifdef HAVE_OPENSSL
536         while ((a = getopt(argc, argv, "h:i:p:t:x:dcfs")) != EOF)
537 #else
538         while ((a = getopt(argc, argv, "h:i:p:t:x:dcf")) != EOF)
539 #endif
540                 switch (a) {
541                 case 'h':
542                         hdir = strdup(optarg);
543                         relh=hdir[0]!='/';
544                         if (!relh) safestrncpy(webcitdir, hdir,
545                                                                    sizeof webcitdir);
546                         else
547                                 safestrncpy(relhome, relhome,
548                                                         sizeof relhome);
549                         /* free(hdir); TODO: SHOULD WE DO THIS? */
550                         home_specified = 1;
551                         home=1;
552                         break;
553                 case 'd':
554                         running_as_daemon = 1;
555                         break;
556                 case 'i':
557                         safestrncpy(ip_addr, optarg, sizeof ip_addr);
558                         break;
559                 case 'p':
560                         http_port = atoi(optarg);
561                         if (http_port == 0) {
562                                 safestrncpy(uds_listen_path, optarg, sizeof uds_listen_path);
563                         }
564                         break;
565                 case 't':
566                         safestrncpy(tracefile, optarg, sizeof tracefile);
567                         freopen(tracefile, "w", stdout);
568                         freopen(tracefile, "w", stderr);
569                         freopen(tracefile, "r", stdin);
570                         break;
571                 case 'x':
572                         verbosity = atoi(optarg);
573                         break;
574                 case 'f':
575                         follow_xff = 1;
576                         break;
577                 case 'c':
578                         server_cookie = malloc(256);
579                         if (server_cookie != NULL) {
580                                 safestrncpy(server_cookie,
581                                        "Set-cookie: wcserver=",
582                                         256);
583                                 if (gethostname
584                                     (&server_cookie[strlen(server_cookie)],
585                                      200) != 0) {
586                                         lprintf(2, "gethostname: %s\n",
587                                                 strerror(errno));
588                                         free(server_cookie);
589                                 }
590                         }
591                         break;
592                 case 's':
593                         is_https = 1;
594                         break;
595                 default:
596                         fprintf(stderr, "usage: webserver "
597                                 "[-i ip_addr] [-p http_port] "
598                                 "[-t tracefile] [-c] [-f] "
599                                 "[-d] "
600 #ifdef HAVE_OPENSSL
601                                 "[-s] "
602 #endif
603                                 "[remotehost [remoteport]]\n");
604                         return 1;
605                 }
606
607         if (optind < argc) {
608                 ctdlhost = argv[optind];
609                 if (++optind < argc)
610                         ctdlport = argv[optind];
611         }
612
613         /* daemonize, if we were asked to */
614         if (running_as_daemon) {
615                 start_daemon(0);
616         }
617
618         /** Tell 'em who's in da house */
619         lprintf(1, SERVER "\n");
620         lprintf(1, "Copyright (C) 1996-2006 by the Citadel development team.\n"
621                 "This software is distributed under the terms of the "
622                 "GNU General Public License.\n\n"
623         );
624
625
626         /** initialize the International Bright Young Thing */
627 #ifdef ENABLE_NLS
628         initialize_locales();
629         locale = setlocale(LC_ALL, "");
630         mo = malloc(strlen(webcitdir) + 20);
631         lprintf(9, "Message catalog directory: %s\n", bindtextdomain("webcit", LOCALEDIR));
632         free(mo);
633         lprintf(9, "Text domain: %s\n", textdomain("webcit"));
634         lprintf(9, "Text domain Charset: %s\n", bind_textdomain_codeset("webcit","UTF8"));
635 #endif
636
637
638         /* calculate all our path on a central place */
639     /* where to keep our config */
640         
641 #define COMPUTE_DIRECTORY(SUBDIR) memcpy(dirbuffer,SUBDIR, sizeof dirbuffer);\
642         snprintf(SUBDIR,sizeof SUBDIR,  "%s%s%s%s%s%s%s", \
643                          (home&!relh)?webcitdir:basedir, \
644              ((basedir!=webcitdir)&(home&!relh))?basedir:"/", \
645              ((basedir!=webcitdir)&(home&!relh))?"/":"", \
646                          relhome, \
647              (relhome[0]!='\0')?"/":"",\
648                          dirbuffer,\
649                          (dirbuffer[0]!='\0')?"/":"");
650         basedir=RUNDIR;
651         COMPUTE_DIRECTORY(socket_dir);
652         basedir=DATADIR;
653         COMPUTE_DIRECTORY(static_dir);
654         /** we should go somewhere we can leave our coredump, if enabled... */
655         lprintf(9, "Changing directory to %s\n", socket_dir);
656         if (chdir(webcitdir) != 0) {
657                 perror("chdir");
658         }
659         initialize_viewdefs();
660         initialize_axdefs();
661
662         /**
663          * Set up a place to put thread-specific data.
664          * We only need a single pointer per thread - it points to the
665          * wcsession struct to which the thread is currently bound.
666          */
667         if (pthread_key_create(&MyConKey, NULL) != 0) {
668                 lprintf(1, "Can't create TSD key: %s\n", strerror(errno));
669         }
670
671         /**
672          * Set up a place to put thread-specific SSL data.
673          * We don't stick this in the wcsession struct because SSL starts
674          * up before the session is bound, and it gets torn down between
675          * transactions.
676          */
677 #ifdef HAVE_OPENSSL
678         if (pthread_key_create(&ThreadSSL, NULL) != 0) {
679                 lprintf(1, "Can't create TSD key: %s\n", strerror(errno));
680         }
681 #endif
682
683         /**
684          * Bind the server to our favorite port.
685          * There is no need to check for errors, because ig_tcp_server()
686          * exits if it doesn't succeed.
687          */
688
689         if (strlen(uds_listen_path) > 0) {
690                 lprintf(2, "Attempting to create listener socket at %s...\n", uds_listen_path);
691                 msock = ig_uds_server(uds_listen_path, LISTEN_QUEUE_LENGTH);
692         }
693         else {
694                 lprintf(2, "Attempting to bind to port %d...\n", http_port);
695                 msock = ig_tcp_server(ip_addr, http_port, LISTEN_QUEUE_LENGTH);
696         }
697
698         lprintf(2, "Listening on socket %d\n", msock);
699         signal(SIGPIPE, SIG_IGN);
700
701         pthread_mutex_init(&SessionListMutex, NULL);
702
703         /**
704          * Start up the housekeeping thread
705          */
706         pthread_attr_init(&attr);
707         pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
708         pthread_create(&SessThread, &attr,
709                        (void *(*)(void *)) housekeeping_loop, NULL);
710
711
712         /**
713          * If this is an HTTPS server, fire up SSL
714          */
715 #ifdef HAVE_OPENSSL
716         if (is_https) {
717                 init_ssl();
718         }
719 #endif
720
721         /** Start a few initial worker threads */
722         for (i = 0; i < (MIN_WORKER_THREADS); ++i) {
723                 spawn_another_worker_thread();
724         }
725
726         /* now the original thread becomes another worker */
727         worker_entry();
728         return 0;
729 }
730
731
732 /**
733  * Entry point for worker threads
734  */
735 void worker_entry(void)
736 {
737         int ssock;
738         int i = 0;
739         int time_to_die = 0;
740         int fail_this_transaction = 0;
741
742         do {
743                 /** Only one thread can accept at a time */
744                 fail_this_transaction = 0;
745                 ssock = accept(msock, NULL, 0);
746                 if (ssock < 0) {
747                         lprintf(2, "accept() failed: %s\n",
748                                 strerror(errno));
749                 } else {
750                         /** Set the SO_REUSEADDR socket option */
751                         i = 1;
752                         setsockopt(ssock, SOL_SOCKET, SO_REUSEADDR,
753                                    &i, sizeof(i));
754
755                         /** If we are an HTTPS server, go crypto now. */
756 #ifdef HAVE_OPENSSL
757                         if (is_https) {
758                                 if (starttls(ssock) != 0) {
759                                         fail_this_transaction = 1;
760                                         close(ssock);
761                                 }
762                         }
763 #endif
764
765                         if (fail_this_transaction == 0) {
766
767                                 /** Perform an HTTP transaction... */
768                                 context_loop(ssock);
769
770                                 /** Shut down SSL/TLS if required... */
771 #ifdef HAVE_OPENSSL
772                                 if (is_https) {
773                                         endtls();
774                                 }
775 #endif
776
777                                 /** ...and close the socket. */
778                                 lingering_close(ssock);
779                         }
780
781                 }
782
783         } while (!time_to_die);
784
785         pthread_exit(NULL);
786 }
787
788 /**
789  * \brief logprintf. log messages 
790  * logs to stderr if loglevel is lower than the verbosity set at startup
791  * \param loglevel level of the message
792  * \param format the printf like format string
793  * \param ... the strings to put into format
794  */
795 int lprintf(int loglevel, const char *format, ...)
796 {
797         va_list ap;
798
799         if (loglevel <= verbosity) {
800                 va_start(ap, format);
801                 vfprintf(stderr, format, ap);
802                 va_end(ap);
803                 fflush(stderr);
804         }
805         return 1;
806 }
807
808
809 /**
810  * \brief print the actual stack frame.
811  */
812 void wc_backtrace(void)
813 {
814 #ifdef HAVE_BACKTRACE
815         void *stack_frames[50];
816         size_t size, i;
817         char **strings;
818
819
820         size = backtrace(stack_frames, sizeof(stack_frames) / sizeof(void*));
821         strings = backtrace_symbols(stack_frames, size);
822         for (i = 0; i < size; i++) {
823                 if (strings != NULL)
824                         lprintf(1, "%s\n", strings[i]);
825                 else
826                         lprintf(1, "%p\n", stack_frames[i]);
827         }
828         free(strings);
829 #endif
830 }
831
832 /*@}*/