]> code.citadel.org Git - citadel.git/blob - citadel/sysdep.c
* sysdep.c: optimized MyContext() a bit, and inlined it. A little profiling
[citadel.git] / citadel / sysdep.c
1 /*
2  * $Id$
3  *
4  * Citadel/UX "system dependent" stuff.
5  * See copyright.txt for copyright information.
6  *
7  * Here's where we (hopefully) have most parts of the Citadel server that
8  * would need to be altered to run the server in a non-POSIX environment.
9  * 
10  * If we ever port to a different platform and either have multiple
11  * variants of this file or simply load it up with #ifdefs.
12  *
13  */
14
15 #ifdef DLL_EXPORT
16 #define IN_LIBCIT
17 #endif
18
19 #include "sysdep.h"
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <stdio.h>
23 #include <fcntl.h>
24 #include <ctype.h>
25 #include <signal.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <sys/wait.h>
29 #include <sys/socket.h>
30
31 #if TIME_WITH_SYS_TIME
32 # include <sys/time.h>
33 # include <time.h>
34 #else
35 # if HAVE_SYS_TIME_H
36 #  include <sys/time.h>
37 # else
38 #  include <time.h>
39 # endif
40 #endif
41
42 #include <limits.h>
43 #include <netinet/in.h>
44 #include <netdb.h>
45 #include <sys/un.h>
46 #include <string.h>
47 #include <pwd.h>
48 #include <errno.h>
49 #include <stdarg.h>
50 #include <syslog.h>
51 #include <grp.h>
52 #ifdef HAVE_PTHREAD_H
53 #include <pthread.h>
54 #endif
55 #include "citadel.h"
56 #include "server.h"
57 #include "serv_extensions.h"
58 #include "sysdep_decls.h"
59 #include "citserver.h"
60 #include "support.h"
61 #include "config.h"
62 #include "database.h"
63 #include "housekeeping.h"
64 #include "tools.h"
65 #include "serv_crypto.h"
66
67 #ifdef HAVE_SYS_SELECT_H
68 #include <sys/select.h>
69 #endif
70
71 #ifndef HAVE_SNPRINTF
72 #include "snprintf.h"
73 #endif
74
75 #ifdef DEBUG_MEMORY_LEAKS
76 struct TheHeap *heap = NULL;
77 #endif
78
79 pthread_mutex_t Critters[MAX_SEMAPHORES];       /* Things needing locking */
80 pthread_key_t MyConKey;                         /* TSD key for MyContext() */
81
82 int verbosity = DEFAULT_VERBOSITY;              /* Logging level */
83
84 struct CitContext masterCC;
85 int rescan[2];                                  /* The Rescan Pipe */
86 time_t last_purge = 0;                          /* Last dead session purge */
87 static int num_threads = 0;                     /* Current number of threads */
88 int num_sessions = 0;                           /* Current number of sessions */
89
90 fd_set masterfds;                               /* Master sockets etc. */
91 int masterhighest;
92
93 pthread_t initial_thread;               /* tid for main() thread */
94
95
96 /*
97  * lprintf()  ...   Write logging information
98  * 
99  * Note: the variable "buf" below needs to be large enough to handle any
100  * log data sent through this function.  BE CAREFUL!
101  */
102 void lprintf(int loglevel, const char *format, ...) {   
103         va_list arg_ptr;
104         char buf[SIZ];
105   
106         va_start(arg_ptr, format);   
107         vsnprintf(buf, sizeof(buf), format, arg_ptr);   
108         va_end(arg_ptr);   
109
110         if (loglevel <= verbosity) { 
111                 struct timeval tv;
112                 struct tm *tim;
113                 time_t unixtime;
114
115                 gettimeofday(&tv, NULL);
116                 /* Promote to time_t; types differ on some OSes (like darwin) */
117                 unixtime = tv.tv_sec;
118                 tim = localtime(&unixtime);
119                 /*
120                  * Log provides millisecond accuracy.  If you need
121                  * microsecond accuracy and your OS supports it, change
122                  * %03ld to %06ld and remove " / 1000" after tv.tv_usec.
123                  */
124                 if (CC && CC->cs_pid) {
125                         fprintf(stderr,
126                                 "%04d/%02d/%02d %2d:%02d:%02d.%03ld [%3d] %s",
127                                 tim->tm_year + 1900, tim->tm_mon + 1,
128                                 tim->tm_mday, tim->tm_hour, tim->tm_min,
129                                 tim->tm_sec, (long)tv.tv_usec / 1000,
130                                 CC->cs_pid, buf);
131                 } else {
132                         fprintf(stderr,
133                                 "%04d/%02d/%02d %2d:%02d:%02d.%03ld %s",
134                                 tim->tm_year + 1900, tim->tm_mon + 1,
135                                 tim->tm_mday, tim->tm_hour, tim->tm_min,
136                                 tim->tm_sec, (long)tv.tv_usec / 1000, buf);
137                 }
138                 fflush(stderr);
139         }
140
141         PerformLogHooks(loglevel, buf);
142 }   
143
144
145
146 #ifdef DEBUG_MEMORY_LEAKS
147 void *tracked_malloc(size_t tsize, char *tfile, int tline) {
148         void *ptr;
149         struct TheHeap *hptr;
150
151         ptr = malloc(tsize);
152         if (ptr == NULL) {
153                 lprintf(3, "DANGER!  mallok(%d) at %s:%d failed!\n",
154                         tsize, tfile, tline);
155                 return(NULL);
156         }
157
158         hptr = (struct TheHeap *) malloc(sizeof(struct TheHeap));
159         strcpy(hptr->h_file, tfile);
160         hptr->h_line = tline;
161         hptr->next = heap;
162         hptr->h_ptr = ptr;
163         heap = hptr;
164         return ptr;
165 }
166
167 char *tracked_strdup(const char *orig, char *tfile, int tline) {
168         char *s;
169
170         s = tracked_malloc( (strlen(orig)+1), tfile, tline);
171         if (s == NULL) return NULL;
172
173         strcpy(s, orig);
174         return s;
175 }
176
177 void tracked_free(void *ptr) {
178         struct TheHeap *hptr, *freeme;
179
180         if (heap->h_ptr == ptr) {
181                 hptr = heap->next;
182                 free(heap);
183                 heap = hptr;
184         }
185         else {
186                 for (hptr=heap; hptr->next!=NULL; hptr=hptr->next) {
187                         if (hptr->next->h_ptr == ptr) {
188                                 freeme = hptr->next;
189                                 hptr->next = hptr->next->next;
190                                 free(freeme);
191                         }
192                 }
193         }
194
195         free(ptr);
196 }
197
198 void *tracked_realloc(void *ptr, size_t size) {
199         void *newptr;
200         struct TheHeap *hptr;
201         
202         newptr = realloc(ptr, size);
203
204         for (hptr=heap; hptr!=NULL; hptr=hptr->next) {
205                 if (hptr->h_ptr == ptr) hptr->h_ptr = newptr;
206         }
207
208         return newptr;
209 }
210
211
212 void dump_tracked() {
213         struct TheHeap *hptr;
214
215         cprintf("%d Here's what's allocated...\n", LISTING_FOLLOWS);    
216         for (hptr=heap; hptr!=NULL; hptr=hptr->next) {
217                 cprintf("%20s %5d\n",
218                         hptr->h_file, hptr->h_line);
219         }
220 #ifdef __GNUC__
221         malloc_stats();
222 #endif
223
224         cprintf("000\n");
225 }
226 #endif
227
228
229 /*
230  * We used to use master_cleanup() as a signal handler to shut down the server.
231  * however, master_cleanup() and the functions it calls do some things that
232  * aren't such a good idea to do from a signal handler: acquiring mutexes,
233  * playing with signal masks on BSDI systems, etc. so instead we install the
234  * following signal handler to set a global variable to inform the main loop
235  * that it's time to call master_cleanup() and exit.
236  */
237
238 volatile int time_to_die = 0;
239
240 static RETSIGTYPE signal_cleanup(int signum) {
241         time_to_die = 1;
242 }
243
244
245 /*
246  * Some initialization stuff...
247  */
248 void init_sysdep(void) {
249         int a;
250
251 #ifdef HAVE_OPENSSL
252         init_ssl();
253 #endif
254
255         /* Set up a bunch of semaphores to be used for critical sections */
256         for (a=0; a<MAX_SEMAPHORES; ++a) {
257                 pthread_mutex_init(&Critters[a], NULL);
258         }
259
260         /*
261          * Set up a place to put thread-specific data.
262          * We only need a single pointer per thread - it points to the
263          * CitContext structure (in the ContextList linked list) of the
264          * session to which the calling thread is currently bound.
265          */
266         if (pthread_key_create(&MyConKey, NULL) != 0) {
267                 lprintf(1, "Can't create TSD key!!  %s\n", strerror(errno));
268         }
269
270         /*
271          * The action for unexpected signals and exceptions should be to
272          * call signal_cleanup() to gracefully shut down the server.
273          */
274         signal(SIGINT, signal_cleanup);
275         signal(SIGQUIT, signal_cleanup);
276         signal(SIGHUP, signal_cleanup);
277         signal(SIGTERM, signal_cleanup);
278
279         /*
280          * Do not shut down the server on broken pipe signals, otherwise the
281          * whole Citadel service would come down whenever a single client
282          * socket breaks.
283          */
284         signal(SIGPIPE, SIG_IGN);
285 }
286
287
288 /*
289  * Obtain a semaphore lock to begin a critical section.
290  */
291 void begin_critical_section(int which_one)
292 {
293         /* lprintf(9, "begin_critical_section(%d)\n", which_one); */
294         /* ensure nobody ever tries to do a critical section within a
295            transaction; this could lead to deadlock. */
296         cdb_check_handles();
297         pthread_mutex_lock(&Critters[which_one]);
298 }
299
300 /*
301  * Release a semaphore lock to end a critical section.
302  */
303 void end_critical_section(int which_one)
304 {
305         /* lprintf(9, "end_critical_section(%d)\n", which_one); */
306         pthread_mutex_unlock(&Critters[which_one]);
307 }
308
309
310
311 /*
312  * This is a generic function to set up a master socket for listening on
313  * a TCP port.  The server shuts down if the bind fails.
314  *
315  */
316 int ig_tcp_server(int port_number, int queue_len)
317 {
318         struct sockaddr_in sin;
319         int s, i;
320         int actual_queue_len;
321
322         actual_queue_len = queue_len;
323         if (actual_queue_len < 5) actual_queue_len = 5;
324
325         memset(&sin, 0, sizeof(sin));
326         sin.sin_family = AF_INET;
327         sin.sin_addr.s_addr = INADDR_ANY;
328         sin.sin_port = htons((u_short)port_number);
329
330         s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
331
332         if (s < 0) {
333                 lprintf(1, "citserver: Can't create a socket: %s\n",
334                         strerror(errno));
335                 return(-1);
336         }
337
338         i = 1;
339         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &i, sizeof(i));
340
341         if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
342                 lprintf(1, "citserver: Can't bind: %s\n",
343                         strerror(errno));
344                 close(s);
345                 return(-1);
346         }
347
348         if (listen(s, actual_queue_len) < 0) {
349                 lprintf(1, "citserver: Can't listen: %s\n", strerror(errno));
350                 close(s);
351                 return(-1);
352         }
353
354         return(s);
355 }
356
357
358
359 /*
360  * Create a Unix domain socket and listen on it
361  */
362 int ig_uds_server(char *sockpath, int queue_len)
363 {
364         struct sockaddr_un addr;
365         int s;
366         int i;
367         int actual_queue_len;
368
369         actual_queue_len = queue_len;
370         if (actual_queue_len < 5) actual_queue_len = 5;
371
372         i = unlink(sockpath);
373         if (i != 0) if (errno != ENOENT) {
374                 lprintf(1, "citserver: can't unlink %s: %s\n",
375                         sockpath, strerror(errno));
376                 return(-1);
377         }
378
379         memset(&addr, 0, sizeof(addr));
380         addr.sun_family = AF_UNIX;
381         safestrncpy(addr.sun_path, sockpath, sizeof addr.sun_path);
382
383         s = socket(AF_UNIX, SOCK_STREAM, 0);
384         if (s < 0) {
385                 lprintf(1, "citserver: Can't create a socket: %s\n",
386                         strerror(errno));
387                 return(-1);
388         }
389
390         if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
391                 lprintf(1, "citserver: Can't bind: %s\n",
392                         strerror(errno));
393                 return(-1);
394         }
395
396         if (listen(s, actual_queue_len) < 0) {
397                 lprintf(1, "citserver: Can't listen: %s\n", strerror(errno));
398                 return(-1);
399         }
400
401         chmod(sockpath, 0777);
402         return(s);
403 }
404
405
406
407 /*
408  * Return a pointer to the CitContext structure bound to the thread which
409  * called this function.  If there's no such binding (for example, if it's
410  * called by the housekeeper thread) then a generic 'master' CC is returned.
411  *
412  * It's inlined because it's used *VERY* frequently.
413  */
414 inline struct CitContext *MyContext(void) {
415         return ((pthread_getspecific(MyConKey) == NULL)
416                 ? &masterCC
417                 : (struct CitContext *) pthread_getspecific(MyConKey)
418         );
419 }
420
421
422 /*
423  * Initialize a new context and place it in the list.  The session number
424  * used to be the PID (which is why it's called cs_pid), but that was when we
425  * had one process per session.  Now we just assign them sequentially, starting
426  * at 1 (don't change it to 0 because masterCC uses 0) and re-using them when
427  * sessions terminate.
428  */
429 struct CitContext *CreateNewContext(void) {
430         struct CitContext *me, *ptr;
431
432         me = (struct CitContext *) mallok(sizeof(struct CitContext));
433         if (me == NULL) {
434                 lprintf(1, "citserver: can't allocate memory!!\n");
435                 return NULL;
436         }
437         memset(me, 0, sizeof(struct CitContext));
438
439         /* The new context will be created already in the CON_EXECUTING state
440          * in order to prevent another thread from grabbing it while it's
441          * being set up.
442          */
443         me->state = CON_EXECUTING;
444
445
446         /*
447          * Generate a unique session number and insert this context into
448          * the list.
449          */
450         begin_critical_section(S_SESSION_TABLE);
451
452         if (ContextList == NULL) {
453                 ContextList = me;
454                 me->cs_pid = 1;
455                 me->next = NULL;
456         }
457
458         else if (ContextList->cs_pid > 1) {
459                 me->next = ContextList;
460                 ContextList = me;
461                 me->cs_pid = 1;
462         }
463
464         else {
465                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
466                         if (ptr->next == NULL) {
467                                 ptr->next = me;
468                                 me->cs_pid = ptr->cs_pid + 1;
469                                 me->next = NULL;
470                                 goto DONE;
471                         }
472                         else if (ptr->next->cs_pid > (ptr->cs_pid+1)) {
473                                 me->next = ptr->next;
474                                 ptr->next = me;
475                                 me->cs_pid = ptr->cs_pid + 1;
476                                 goto DONE;
477                         }
478                 }
479         }
480
481 DONE:   ++num_sessions;
482         end_critical_section(S_SESSION_TABLE);
483         return(me);
484 }
485
486
487 /*
488  * client_write()   ...    Send binary data to the client.
489  */
490 void client_write(char *buf, int nbytes)
491 {
492         int bytes_written = 0;
493         int retval;
494         int sock;
495
496         if (CC->redirect_fp != NULL) {
497                 fwrite(buf, nbytes, 1, CC->redirect_fp);
498                 return;
499         }
500
501         if (CC->redirect_sock > 0) {
502                 sock = CC->redirect_sock;       /* and continue below... */
503         }
504         else {
505                 sock = CC->client_socket;
506         }
507
508 #ifdef HAVE_OPENSSL
509         if (CC->redirect_ssl) {
510                 client_write_ssl(buf, nbytes);
511                 return;
512         }
513 #endif
514
515         while (bytes_written < nbytes) {
516                 retval = write(sock, &buf[bytes_written],
517                         nbytes - bytes_written);
518                 if (retval < 1) {
519                         lprintf(2, "client_write() failed: %s\n",
520                                 strerror(errno));
521                         if (sock == CC->client_socket) CC->kill_me = 1;
522                         return;
523                 }
524                 bytes_written = bytes_written + retval;
525         }
526 }
527
528
529 /*
530  * cprintf()  ...   Send formatted printable data to the client.   It is
531  *                  implemented in terms of client_write() but remains in
532  *                  sysdep.c in case we port to somewhere without va_args...
533  */
534 void cprintf(const char *format, ...) {   
535         va_list arg_ptr;   
536         char buf[SIZ];   
537    
538         va_start(arg_ptr, format);   
539         if (vsnprintf(buf, sizeof buf, format, arg_ptr) == -1)
540                 buf[sizeof buf - 2] = '\n';
541         client_write(buf, strlen(buf)); 
542         va_end(arg_ptr);
543 }   
544
545
546 /*
547  * Read data from the client socket.
548  * Return values are:
549  *      1       Requested number of bytes has been read.
550  *      0       Request timed out.
551  *      -1      The socket is broken.
552  * If the socket breaks, the session will be terminated.
553  */
554 int client_read_to(char *buf, int bytes, int timeout)
555 {
556         int len,rlen;
557         fd_set rfds;
558         struct timeval tv;
559         int retval;
560
561 #ifdef HAVE_OPENSSL
562         if (CC->redirect_ssl) {
563                 return (client_read_ssl(buf, bytes, timeout));
564         }
565 #endif
566         len = 0;
567         while(len<bytes) {
568                 FD_ZERO(&rfds);
569                 FD_SET(CC->client_socket, &rfds);
570                 tv.tv_sec = timeout;
571                 tv.tv_usec = 0;
572
573                 retval = select( (CC->client_socket)+1, 
574                                         &rfds, NULL, NULL, &tv);
575
576                 if (FD_ISSET(CC->client_socket, &rfds) == 0) {
577                         return(0);
578                 }
579
580                 rlen = read(CC->client_socket, &buf[len], bytes-len);
581                 if (rlen<1) {
582                         lprintf(2, "client_read() failed: %s\n",
583                                 strerror(errno));
584                         CC->kill_me = 1;
585                         return(-1);
586                 }
587                 len = len + rlen;
588         }
589         return(1);
590 }
591
592 /*
593  * Read data from the client socket with default timeout.
594  * (This is implemented in terms of client_read_to() and could be
595  * justifiably moved out of sysdep.c)
596  */
597 inline int client_read(char *buf, int bytes)
598 {
599         return(client_read_to(buf, bytes, config.c_sleeping));
600 }
601
602
603 /*
604  * client_gets()   ...   Get a LF-terminated line of text from the client.
605  * (This is implemented in terms of client_read() and could be
606  * justifiably moved out of sysdep.c)
607  */
608 int client_gets(char *buf)
609 {
610         int i, retval;
611
612         /* Read one character at a time.
613          */
614         for (i = 0;;i++) {
615                 retval = client_read(&buf[i], 1);
616                 if (retval != 1 || buf[i] == '\n' || i == (SIZ-1))
617                         break;
618         }
619
620         /* If we got a long line, discard characters until the newline.
621          */
622         if (i == (SIZ-1))
623                 while (buf[i] != '\n' && retval == 1)
624                         retval = client_read(&buf[i], 1);
625
626         /* Strip the trailing newline and any trailing nonprintables (cr's)
627          */
628         buf[i] = 0;
629         while ((strlen(buf)>0)&&(!isprint(buf[strlen(buf)-1])))
630                 buf[strlen(buf)-1] = 0;
631         if (retval < 0) strcpy(buf, "000");
632         return(retval);
633 }
634
635
636
637 /*
638  * The system-dependent part of master_cleanup() - close the master socket.
639  */
640 void sysdep_master_cleanup(void) {
641         struct ServiceFunctionHook *serviceptr;
642
643         /*
644          * close all protocol master sockets
645          */
646         for (serviceptr = ServiceHookTable; serviceptr != NULL;
647             serviceptr = serviceptr->next ) {
648
649                 if (serviceptr->tcp_port > 0)
650                         lprintf(3, "Closing listener on port %d\n",
651                                 serviceptr->tcp_port);
652
653                 if (serviceptr->sockpath != NULL)
654                         lprintf(3, "Closing listener on '%s'\n",
655                                 serviceptr->sockpath);
656
657                 close(serviceptr->msock);
658
659                 /* If it's a Unix domain socket, remove the file. */
660                 if (serviceptr->sockpath != NULL) {
661                         unlink(serviceptr->sockpath);
662                 }
663         }
664 }
665
666
667 /*
668  * Terminate another session.
669  * (This could justifiably be moved out of sysdep.c because it
670  * no longer does anything that is system-dependent.)
671  */
672 void kill_session(int session_to_kill) {
673         struct CitContext *ptr;
674
675         begin_critical_section(S_SESSION_TABLE);
676         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
677                 if (ptr->cs_pid == session_to_kill) {
678                         ptr->kill_me = 1;
679                 }
680         }
681         end_critical_section(S_SESSION_TABLE);
682 }
683
684
685
686
687 /*
688  * Start running as a daemon.  Only close stdio if do_close_stdio is set.
689  */
690 void start_daemon(int do_close_stdio) {
691         if (do_close_stdio) {
692                 /* close(0); */
693                 close(1);
694                 close(2);
695         }
696         signal(SIGHUP,SIG_IGN);
697         signal(SIGINT,SIG_IGN);
698         signal(SIGQUIT,SIG_IGN);
699         if (fork()!=0) exit(0);
700 }
701
702
703
704 /*
705  * Generic routine to convert a login name to a full name (gecos)
706  * Returns nonzero if a conversion took place
707  */
708 int convert_login(char NameToConvert[]) {
709         struct passwd *pw;
710         int a;
711
712         pw = getpwnam(NameToConvert);
713         if (pw == NULL) {
714                 return(0);
715         }
716         else {
717                 strcpy(NameToConvert, pw->pw_gecos);
718                 for (a=0; a<strlen(NameToConvert); ++a) {
719                         if (NameToConvert[a] == ',') NameToConvert[a] = 0;
720                 }
721                 return(1);
722         }
723 }
724
725 struct worker_node *worker_list = NULL;
726
727
728 /*
729  * create a worker thread. this function must always be called from within
730  * an S_WORKER_LIST critical section!
731  */
732 void create_worker(void) {
733         int ret;
734         struct worker_node *n;
735         pthread_attr_t attr;
736
737         n = mallok(sizeof(struct worker_node));
738         if (n == NULL) {
739                 lprintf(1, "can't allocate worker_node, exiting\n");
740                 time_to_die = -1;
741                 return;
742         }
743
744         if ((ret = pthread_attr_init(&attr))) {
745                 lprintf(1, "pthread_attr_init: %s\n", strerror(ret));
746                 time_to_die = -1;
747                 return;
748         }
749
750         /* we seem to need something bigger than FreeBSD's default 64k stack */
751
752         if ((ret = pthread_attr_setstacksize(&attr, 128 * 1024))) {
753                 lprintf(1, "pthread_attr_setstacksize: %s\n", strerror(ret));
754                 time_to_die = -1;
755                 return;
756         }
757
758         if ((ret = pthread_create(&n->tid, &attr, worker_thread, NULL) != 0))
759         {
760
761                 lprintf(1, "Can't create worker thread: %s\n",
762                         strerror(ret));
763         }
764
765         n->next = worker_list;
766         worker_list = n;
767 }
768
769
770
771 /*
772  * Purge all sessions which have the 'kill_me' flag set.
773  * This function has code to prevent it from running more than once every
774  * few seconds, because running it after every single unbind would waste a lot
775  * of CPU time and keep the context list locked too much.
776  *
777  * After that's done, we raise or lower the size of the worker thread pool
778  * if such an action is appropriate.
779  */
780 void dead_session_purge(void) {
781         struct CitContext *ptr, *rem;
782         struct worker_node **node, *tmp;
783         pthread_t self;
784
785         if ( (time(NULL) - last_purge) < 5 ) return;    /* Too soon, go away */
786         time(&last_purge);
787
788         do {
789                 rem = NULL;
790                 begin_critical_section(S_SESSION_TABLE);
791                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
792                         if ( (ptr->state == CON_IDLE) && (ptr->kill_me) ) {
793                                 rem = ptr;
794                         }
795                 }
796                 end_critical_section(S_SESSION_TABLE);
797
798                 /* RemoveContext() enters its own S_SESSION_TABLE critical
799                  * section, so we have to do it like this.
800                  */     
801                 if (rem != NULL) {
802                         lprintf(9, "Purging session %d\n", rem->cs_pid);
803                         RemoveContext(rem);
804                 }
805
806         } while (rem != NULL);
807
808
809         /* Raise or lower the size of the worker thread pool if such
810          * an action is appropriate.
811          */
812
813         self = pthread_self();
814
815         if ( (num_sessions > num_threads)
816            && (num_threads < config.c_max_workers) ) {
817                 begin_critical_section(S_WORKER_LIST);
818                 create_worker();
819                 end_critical_section(S_WORKER_LIST);
820         }
821         
822         /* don't let the initial thread die since it's responsible for
823            waiting for all the other threads to terminate. */
824         else if ( (num_sessions < num_threads)
825            && (num_threads > config.c_min_workers)
826            && (self != initial_thread) ) {
827                 cdb_free_tsd();
828                 begin_critical_section(S_WORKER_LIST);
829                 --num_threads;
830
831                 /* we're exiting before server shutdown... unlink ourself from
832                    the worker list and detach our thread to avoid memory leaks
833                  */
834
835                 for (node = &worker_list; *node != NULL; node = &(*node)->next)
836                         if ((*node)->tid == self) {
837                                 tmp = *node;
838                                 *node = (*node)->next;
839                                 phree(tmp);
840                                 break;
841                         }
842
843                 pthread_detach(self);
844                 end_critical_section(S_WORKER_LIST);
845                 pthread_exit(NULL);
846         }
847
848 }
849
850
851
852
853
854 /*
855  * Redirect a session's output to a file or socket.
856  * This function may be called with a file handle *or* a socket (but not
857  * both).  Call with neither to return output to its normal client socket.
858  */
859 void CtdlRedirectOutput(FILE *fp, int sock) {
860
861         if (fp != NULL) CC->redirect_fp = fp;
862         else CC->redirect_fp = NULL;
863
864         if (sock > 0) CC->redirect_sock = sock;
865         else CC->redirect_sock = (-1);
866
867 }
868
869
870 /*
871  * masterCC is the context we use when not attached to a session.  This
872  * function initializes it.
873  */
874 void InitializeMasterCC(void) {
875         memset(&masterCC, 0, sizeof(struct CitContext));
876         masterCC.internal_pgm = 1;
877         masterCC.cs_pid = 0;
878 }
879
880
881
882 /*
883  * Set up a fd_set containing all the master sockets to which we
884  * always listen.  It's computationally less expensive to just copy
885  * this to a local fd_set when starting a new select() and then add
886  * the client sockets than it is to initialize a new one and then
887  * figure out what to put there.
888  */
889 void init_master_fdset(void) {
890         struct ServiceFunctionHook *serviceptr;
891         int m;
892
893         lprintf(9, "Initializing master fdset\n");
894
895         FD_ZERO(&masterfds);
896         masterhighest = 0;
897
898         lprintf(9, "Will listen on rescan pipe %d\n", rescan[0]);
899         FD_SET(rescan[0], &masterfds);
900         if (rescan[0] > masterhighest) masterhighest = rescan[0];
901
902         for (serviceptr = ServiceHookTable; serviceptr != NULL;
903             serviceptr = serviceptr->next ) {
904                 m = serviceptr->msock;
905                 lprintf(9, "Will listen on master socket %d\n", m);
906                 FD_SET(m, &masterfds);
907                 if (m > masterhighest) {
908                         masterhighest = m;
909                 }
910         }
911         lprintf(9, "masterhighest = %d\n", masterhighest);
912 }
913
914
915 /*
916  * Bind a thread to a context.  (It's inline merely to speed things up.)
917  */
918 INLINE void become_session(struct CitContext *which_con) {
919         pthread_setspecific(MyConKey, (void *)which_con );
920 }
921
922
923
924 /* 
925  * This loop just keeps going and going and going...
926  */     
927 void *worker_thread(void *arg) {
928         int i;
929         char junk;
930         int highest;
931         struct CitContext *ptr;
932         struct CitContext *bind_me = NULL;
933         fd_set readfds;
934         int retval;
935         struct CitContext *con= NULL;   /* Temporary context pointer */
936         struct ServiceFunctionHook *serviceptr;
937         int ssock;                      /* Descriptor for client socket */
938         struct timeval tv;
939
940         num_threads++;
941
942         cdb_allocate_tsd();
943
944         while (!time_to_die) {
945
946                 /* 
947                  * A naive implementation would have all idle threads
948                  * calling select() and then they'd all wake up at once.  We
949                  * solve this problem by putting the select() in a critical
950                  * section, so only one thread has the opportunity to wake
951                  * up.  If we wake up on a master socket, create a new
952                  * session context; otherwise, just bind the thread to the
953                  * context we want and go on our merry way.
954                  */
955
956                 /* make doubly sure we're not holding any stale db handles
957                  * which might cause a deadlock.
958                  */
959                 cdb_check_handles();
960
961                 begin_critical_section(S_I_WANNA_SELECT);
962 SETUP_FD:       memcpy(&readfds, &masterfds, sizeof masterfds);
963                 highest = masterhighest;
964                 begin_critical_section(S_SESSION_TABLE);
965                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
966                         if (ptr->state == CON_IDLE) {
967                                 FD_SET(ptr->client_socket, &readfds);
968                                 if (ptr->client_socket > highest)
969                                         highest = ptr->client_socket;
970                         }
971                 }
972                 end_critical_section(S_SESSION_TABLE);
973
974                 tv.tv_sec = 1;          /* wake up every second if no input */
975                 tv.tv_usec = 0;
976
977                 do_select:
978                 if (!time_to_die)
979                         retval = select(highest + 1, &readfds, NULL, NULL, &tv);
980                 else {
981                         end_critical_section(S_I_WANNA_SELECT);
982                         break;
983                 }
984
985                 /* Now figure out who made this select() unblock.
986                  * First, check for an error or exit condition.
987                  */
988                 if (retval < 0) {
989                         if (errno != EINTR) {
990                                 lprintf(9, "Exiting (%s)\n", strerror(errno));
991                                 time_to_die = 1;
992                         } else if (!time_to_die)
993                                 goto do_select;
994                 }
995
996                 /* Next, check to see if it's a new client connecting
997                  * on a master socket.
998                  */
999                 else for (serviceptr = ServiceHookTable; serviceptr != NULL;
1000                      serviceptr = serviceptr->next ) {
1001
1002                         if (FD_ISSET(serviceptr->msock, &readfds)) {
1003                                 ssock = accept(serviceptr->msock, NULL, 0);
1004                                 if (ssock < 0) {
1005                                         lprintf(2, "citserver: accept(): %s\n",
1006                                                 strerror(errno));
1007                                 }
1008                                 else {
1009                                         lprintf(7, "citserver: "
1010                                                 "New client socket %d\n",
1011                                                 ssock);
1012
1013                                         /* New context will be created already
1014                                         * set up in the CON_EXECUTING state.
1015                                         */
1016                                         con = CreateNewContext();
1017
1018                                         /* Assign new socket number to it. */
1019                                         con->client_socket = ssock;
1020                                         con->h_command_function =
1021                                                 serviceptr->h_command_function;
1022
1023                                         /* Determine whether local socket */
1024                                         if (serviceptr->sockpath != NULL)
1025                                                 con->is_local_socket = 1;
1026         
1027                                         /* Set the SO_REUSEADDR socket option */
1028                                         i = 1;
1029                                         setsockopt(ssock, SOL_SOCKET,
1030                                                 SO_REUSEADDR,
1031                                                 &i, sizeof(i));
1032
1033                                         become_session(con);
1034                                         begin_session(con);
1035                                         serviceptr->h_greeting_function();
1036                                         become_session(NULL);
1037                                         con->state = CON_IDLE;
1038                                         goto SETUP_FD;
1039                                 }
1040                         }
1041                 }
1042
1043                 /* If the rescan pipe went active, someone is telling this
1044                  * thread that the &readfds needs to be refreshed with more
1045                  * current data.
1046                  */
1047                 if (time_to_die) {
1048                         end_critical_section(S_I_WANNA_SELECT);
1049                         break;
1050                 }
1051
1052                 if (FD_ISSET(rescan[0], &readfds)) {
1053                         read(rescan[0], &junk, 1);
1054                         goto SETUP_FD;
1055                 }
1056
1057                 /* It must be a client socket.  Find a context that has data
1058                  * waiting on its socket *and* is in the CON_IDLE state.
1059                  */
1060                 else {
1061                         bind_me = NULL;
1062                         begin_critical_section(S_SESSION_TABLE);
1063                         for (ptr = ContextList;
1064                             ( (ptr != NULL) && (bind_me == NULL) );
1065                             ptr = ptr->next) {
1066                                 if ( (FD_ISSET(ptr->client_socket, &readfds))
1067                                    && (ptr->state == CON_IDLE) ) {
1068                                         bind_me = ptr;
1069                                 }
1070                         }
1071                         if (bind_me != NULL) {
1072                                 /* Found one.  Stake a claim to it before
1073                                  * letting anyone else touch the context list.
1074                                  */
1075                                 bind_me->state = CON_EXECUTING;
1076                         }
1077
1078                         end_critical_section(S_SESSION_TABLE);
1079                         end_critical_section(S_I_WANNA_SELECT);
1080
1081                         /* We're bound to a session, now do *one* command */
1082                         if (bind_me != NULL) {
1083                                 become_session(bind_me);
1084                                 CC->h_command_function();
1085                                 become_session(NULL);
1086                                 bind_me->state = CON_IDLE;
1087                                 if (bind_me->kill_me == 1) {
1088                                         RemoveContext(bind_me);
1089                                 } 
1090                                 write(rescan[1], &junk, 1);
1091                         }
1092
1093                 }
1094                 dead_session_purge();
1095                 do_housekeeping();
1096                 check_sched_shutdown();
1097         }
1098
1099         /* If control reaches this point, the server is shutting down */        
1100         --num_threads;
1101         return NULL;
1102 }