7eea262a32c7fd67f4dc59b1c69799b6466a2937
[citadel.git] / citadel / sysdep.c
1 /*
2  * Citadel/UX "system dependent" stuff.
3  * See copyright.txt for copyright information.
4  *
5  * $Id$
6  *
7  * Here's where we (hopefully) have all the parts of the Citadel server that
8  * would need to be altered to run the server in a non-POSIX environment.
9  * Wherever possible, we use function wrappers and type definitions to create
10  * abstractions that are platform-independent from the calling side.
11  * 
12  * Eventually we'll try porting to a different platform and either have
13  * multiple variants of this file or simply load it up with #ifdefs.
14  */
15
16
17 #include "sysdep.h"
18 #include <stdlib.h>
19 #include <unistd.h>
20 #include <stdio.h>
21 #include <fcntl.h>
22 #include <ctype.h>
23 #include <signal.h>
24 #include <sys/types.h>
25 #include <sys/wait.h>
26 #include <sys/socket.h>
27 #include <sys/time.h>
28 #include <limits.h>
29 #include <netinet/in.h>
30 #include <netdb.h>
31 #include <string.h>
32 #include <pwd.h>
33 #include <errno.h>
34 #include <stdarg.h>
35 #include <syslog.h>
36 #include <grp.h>
37 #ifdef __GNUC__
38 #include <malloc.h>
39 #endif
40 #ifdef HAVE_PTHREAD_H
41 #include <pthread.h>
42 #endif
43 #include "citadel.h"
44 #include "server.h"
45 #include "sysdep_decls.h"
46 #include "citserver.h"
47 #include "support.h"
48 #include "config.h"
49 #include "database.h"
50 #include "housekeeping.h"
51 #include "dynloader.h"
52 #include "tools.h"
53
54 #ifdef HAVE_SYS_SELECT_H
55 #include <sys/select.h>
56 #endif
57
58 #ifndef HAVE_SNPRINTF
59 #include "snprintf.h"
60 #endif
61
62 #ifdef DEBUG_MEMORY_LEAKS
63 struct TheHeap *heap = NULL;
64 #endif
65
66 pthread_mutex_t Critters[MAX_SEMAPHORES];       /* Things needing locking */
67 pthread_key_t MyConKey;                         /* TSD key for MyContext() */
68
69 int msock;                                      /* master listening socket */
70 int verbosity = DEFAULT_VERBOSITY;              /* Logging level */
71
72 struct CitContext masterCC;
73 int rescan[2];                                  /* The Rescan Pipe */
74
75 /*
76  * lprintf()  ...   Write logging information
77  */
78 void lprintf(int loglevel, const char *format, ...) {   
79         va_list arg_ptr;
80         char buf[512];
81   
82         va_start(arg_ptr, format);   
83         vsprintf(buf, format, arg_ptr);   
84         va_end(arg_ptr);   
85
86         if (loglevel <= verbosity) { 
87                 fprintf(stderr, "%s", buf);
88                 fflush(stderr);
89                 }
90
91         PerformLogHooks(loglevel, buf);
92         }   
93
94
95
96 #ifdef DEBUG_MEMORY_LEAKS
97 void *tracked_malloc(size_t tsize, char *tfile, int tline) {
98         void *ptr;
99         struct TheHeap *hptr;
100
101         ptr = malloc(tsize);
102         if (ptr == NULL) {
103                 lprintf(3, "DANGER!  mallok(%d) at %s:%d failed!\n",
104                         tsize, tfile, tline);
105                 return(NULL);
106         }
107
108         hptr = (struct TheHeap *) malloc(sizeof(struct TheHeap));
109         strcpy(hptr->h_file, tfile);
110         hptr->h_line = tline;
111         hptr->next = heap;
112         hptr->h_ptr = ptr;
113         heap = hptr;
114         return ptr;
115         }
116
117 char *tracked_strdup(const char *orig, char *tfile, int tline) {
118         char *s;
119
120         s = tracked_malloc( (strlen(orig)+1), tfile, tline);
121         if (s == NULL) return NULL;
122
123         strcpy(s, orig);
124         return s;
125 }
126
127 void tracked_free(void *ptr) {
128         struct TheHeap *hptr, *freeme;
129
130         if (heap->h_ptr == ptr) {
131                 hptr = heap->next;
132                 free(heap);
133                 heap = hptr;
134                 }
135         else {
136                 for (hptr=heap; hptr->next!=NULL; hptr=hptr->next) {
137                         if (hptr->next->h_ptr == ptr) {
138                                 freeme = hptr->next;
139                                 hptr->next = hptr->next->next;
140                                 free(freeme);
141                                 }
142                         }
143                 }
144
145         free(ptr);
146         }
147
148 void *tracked_realloc(void *ptr, size_t size) {
149         void *newptr;
150         struct TheHeap *hptr;
151         
152         newptr = realloc(ptr, size);
153
154         for (hptr=heap; hptr!=NULL; hptr=hptr->next) {
155                 if (hptr->h_ptr == ptr) hptr->h_ptr = newptr;
156                 }
157
158         return newptr;
159         }
160
161
162 void dump_tracked() {
163         struct TheHeap *hptr;
164
165         cprintf("%d Here's what's allocated...\n", LISTING_FOLLOWS);    
166         for (hptr=heap; hptr!=NULL; hptr=hptr->next) {
167                 cprintf("%20s %5d\n",
168                         hptr->h_file, hptr->h_line);
169                 }
170 #ifdef __GNUC__
171         malloc_stats();
172 #endif
173
174         cprintf("000\n");
175         }
176 #endif
177
178
179 /*
180  * we used to use master_cleanup() as a signal handler to shut down the server.
181  * however, master_cleanup() and the functions it calls do some things that
182  * aren't such a good idea to do from a signal handler: acquiring mutexes,
183  * playing with signal masks on BSDI systems, etc. so instead we install the
184  * following signal handler to set a global variable to inform the main loop
185  * that it's time to call master_cleanup() and exit.
186  */
187
188 static volatile int time_to_die = 0;
189
190 static RETSIGTYPE signal_cleanup(int signum) {
191         time_to_die = 1;
192         }
193
194
195 /*
196  * Some initialization stuff...
197  */
198 void init_sysdep(void) {
199         int a;
200
201         /* Set up a bunch of semaphores to be used for critical sections */
202         for (a=0; a<MAX_SEMAPHORES; ++a) {
203                 pthread_mutex_init(&Critters[a], NULL);
204                 }
205
206         /*
207          * Set up a place to put thread-specific data.
208          * We only need a single pointer per thread - it points to the
209          * thread's CitContext structure in the ContextList linked list.
210          */
211         if (pthread_key_create(&MyConKey, NULL) != 0) {
212                 lprintf(1, "Can't create TSD key!!  %s\n", strerror(errno));
213                 }
214
215         /*
216          * The action for unexpected signals and exceptions should be to
217          * call signal_cleanup() to gracefully shut down the server.
218          */
219         signal(SIGINT, signal_cleanup);
220         signal(SIGQUIT, signal_cleanup);
221         signal(SIGHUP, signal_cleanup);
222         signal(SIGTERM, signal_cleanup);
223
224         /*
225          * Do not shut down the server on broken pipe signals, otherwise the
226          * whole Citadel service would come down whenever a single client
227          * socket breaks.
228          */
229         signal(SIGPIPE, SIG_IGN);
230         }
231
232
233 /*
234  * Obtain a semaphore lock to begin a critical section.
235  */
236 void begin_critical_section(int which_one)
237 {
238         pthread_mutex_lock(&Critters[which_one]);
239 }
240
241 /*
242  * Release a semaphore lock to end a critical section.
243  */
244 void end_critical_section(int which_one)
245 {
246         pthread_mutex_unlock(&Critters[which_one]);
247 }
248
249
250
251 /*
252  * This is a generic function to set up a master socket for listening on
253  * a TCP port.  The server shuts down if the bind fails.
254  */
255 int ig_tcp_server(int port_number, int queue_len)
256 {
257         struct sockaddr_in sin;
258         int s, i;
259
260         memset(&sin, 0, sizeof(sin));
261         sin.sin_family = AF_INET;
262         sin.sin_addr.s_addr = INADDR_ANY;
263
264         if (port_number == 0) {
265                 lprintf(1,
266                         "citserver: No port number specified.  Run setup.\n");
267                 exit(1);
268                 }
269         
270         sin.sin_port = htons((u_short)port_number);
271
272         s = socket(PF_INET, SOCK_STREAM, (getprotobyname("tcp")->p_proto));
273         if (s < 0) {
274                 lprintf(1, "citserver: Can't create a socket: %s\n",
275                         strerror(errno));
276                 exit(errno);
277                 }
278
279         /* Set the SO_REUSEADDR socket option, because it makes sense. */
280         i = 1;
281         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &i, sizeof(i));
282
283         if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
284                 lprintf(1, "citserver: Can't bind: %s\n", strerror(errno));
285                 exit(errno);
286                 }
287
288         if (listen(s, queue_len) < 0) {
289                 lprintf(1, "citserver: Can't listen: %s\n", strerror(errno));
290                 exit(errno);
291                 }
292
293         return(s);
294         }
295
296
297
298 /*
299  * Return a pointer to the CitContext structure bound to the thread which
300  * called this function.  If there's no such binding (for example, if it's
301  * called by the housekeeper thread) then a generic 'master' CC is returned.
302  */
303 struct CitContext *MyContext(void) {
304         struct CitContext *retCC;
305         retCC = (struct CitContext *) pthread_getspecific(MyConKey);
306         if (retCC == NULL) retCC = &masterCC;
307         return(retCC);
308         }
309
310
311 /*
312  * Initialize a new context and place it in the list.
313  */
314 struct CitContext *CreateNewContext(void) {
315         struct CitContext *me;
316
317         me = (struct CitContext *) mallok(sizeof(struct CitContext));
318         if (me == NULL) {
319                 lprintf(1, "citserver: can't allocate memory!!\n");
320                 return NULL;
321                 }
322         memset(me, 0, sizeof(struct CitContext));
323
324         /* The new context will be created already in the CON_EXECUTING state
325          * in order to prevent another thread from grabbing it while it's
326          * being set up.
327          */
328         me->state = CON_EXECUTING;
329
330         begin_critical_section(S_SESSION_TABLE);
331         me->next = ContextList;
332         ContextList = me;
333         end_critical_section(S_SESSION_TABLE);
334         return(me);
335         }
336
337
338
339 /*
340  * Return the number of sessions currently running.
341  * (This should probably be moved out of sysdep.c)
342  */
343 int session_count(void) {
344         struct CitContext *ptr;
345         int TheCount = 0;
346
347         begin_critical_section(S_SESSION_TABLE);
348         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
349                 ++TheCount;
350                 }
351         end_critical_section(S_SESSION_TABLE);
352
353         return(TheCount);
354         }
355
356
357 /*
358  * client_write()   ...    Send binary data to the client.
359  */
360 void client_write(char *buf, int nbytes)
361 {
362         int bytes_written = 0;
363         int retval;
364         while (bytes_written < nbytes) {
365                 retval = write(CC->client_socket, &buf[bytes_written],
366                         nbytes - bytes_written);
367                 if (retval < 1) {
368                         lprintf(2, "client_write() failed: %s\n",
369                                 strerror(errno));
370                         CC->state = CON_DYING;
371                         }
372                 bytes_written = bytes_written + retval;
373                 }
374         }
375
376
377 /*
378  * cprintf()  ...   Send formatted printable data to the client.   It is
379  *                  implemented in terms of client_write() but remains in
380  *                  sysdep.c in case we port to somewhere without va_args...
381  */
382 void cprintf(const char *format, ...) {   
383         va_list arg_ptr;   
384         char buf[256];   
385    
386         va_start(arg_ptr, format);   
387         if (vsnprintf(buf, sizeof buf, format, arg_ptr) == -1)
388                 buf[sizeof buf - 2] = '\n';
389         client_write(buf, strlen(buf)); 
390         va_end(arg_ptr);
391         }   
392
393
394 /*
395  * Read data from the client socket.
396  * Return values are:
397  *      1       Requested number of bytes has been read.
398  *      0       Request timed out.
399  * If the socket breaks, the session is immediately terminated.
400  */
401 int client_read_to(char *buf, int bytes, int timeout)
402 {
403         int len,rlen;
404         fd_set rfds;
405         struct timeval tv;
406         int retval;
407
408         len = 0;
409         while(len<bytes) {
410                 FD_ZERO(&rfds);
411                 FD_SET(CC->client_socket, &rfds);
412                 tv.tv_sec = 1;
413                 tv.tv_usec = 0;
414
415                 retval = select( (CC->client_socket)+1, 
416                                         &rfds, NULL, NULL, &tv);
417
418                 if (FD_ISSET(CC->client_socket, &rfds) == 0) {
419                         return(0);
420                         }
421
422                 rlen = read(CC->client_socket, &buf[len], bytes-len);
423                 if (rlen<1) {
424                         lprintf(2, "client_read() failed: %s\n",
425                                 strerror(errno));
426                         CC->state = CON_DYING;
427                         }
428                 len = len + rlen;
429                 }
430         return(1);
431         }
432
433 /*
434  * Read data from the client socket with default timeout.
435  * (This is implemented in terms of client_read_to() and could be
436  * justifiably moved out of sysdep.c)
437  */
438 int client_read(char *buf, int bytes)
439 {
440         return(client_read_to(buf, bytes, config.c_sleeping));
441         }
442
443
444 /*
445  * client_gets()   ...   Get a LF-terminated line of text from the client.
446  * (This is implemented in terms of client_read() and could be
447  * justifiably moved out of sysdep.c)
448  */
449 int client_gets(char *buf)
450 {
451         int i, retval;
452
453         /* Read one character at a time.
454          */
455         for (i = 0;;i++) {
456                 retval = client_read(&buf[i], 1);
457                 if (retval != 1 || buf[i] == '\n' || i == 255)
458                         break;
459                 }
460
461         /* If we got a long line, discard characters until the newline.
462          */
463         if (i == 255)
464                 while (buf[i] != '\n' && retval == 1)
465                         retval = client_read(&buf[i], 1);
466
467         /* Strip the trailing newline and any trailing nonprintables (cr's)
468          */
469         buf[i] = 0;
470         while ((strlen(buf)>0)&&(!isprint(buf[strlen(buf)-1])))
471                 buf[strlen(buf)-1] = 0;
472         return(retval);
473         }
474
475
476
477 /*
478  * The system-dependent part of master_cleanup() - close the master socket.
479  */
480 void sysdep_master_cleanup(void) {
481         lprintf(7, "Closing master socket %d\n", msock);
482         close(msock);
483         }
484
485
486 /*
487  * Terminate another session.
488  * FIX ... now we need some way to wake that session up so it knows it
489  * needs to terminate.
490  */
491 void kill_session(int session_to_kill) {
492         struct CitContext *ptr;
493
494         begin_critical_section(S_SESSION_TABLE);
495         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
496                 if (ptr->cs_pid == session_to_kill) {
497                         ptr->state = CON_DYING;
498                         }
499                 }
500         end_critical_section(S_SESSION_TABLE);
501         }
502
503
504
505
506 /*
507  * Start running as a daemon.  Only close stdio if do_close_stdio is set.
508  */
509 void start_daemon(int do_close_stdio) {
510         if (do_close_stdio) {
511                 /* close(0); */
512                 close(1);
513                 close(2);
514                 }
515         signal(SIGHUP,SIG_IGN);
516         signal(SIGINT,SIG_IGN);
517         signal(SIGQUIT,SIG_IGN);
518         if (fork()!=0) exit(0);
519         }
520
521
522
523 /*
524  * Tie in to the 'netsetup' program.
525  *
526  * (We're going to hope that netsetup never feeds more than 4096 bytes back.)
527  */
528 void cmd_nset(char *cmdbuf)
529 {
530         int retcode;
531         char fbuf[4096];
532         FILE *netsetup;
533         int ch;
534         int a, b;
535         char netsetup_args[3][256];
536
537         if (CC->usersupp.axlevel < 6) {
538                 cprintf("%d Higher access required.\n", 
539                         ERROR + HIGHER_ACCESS_REQUIRED);
540                 return;
541                 }
542
543         for (a=1; a<=3; ++a) {
544                 if (num_parms(cmdbuf) >= a) {
545                         extract(netsetup_args[a-1], cmdbuf, a-1);
546                         for (b=0; b<strlen(netsetup_args[a-1]); ++b) {
547                                 if (netsetup_args[a-1][b] == 34) {
548                                         netsetup_args[a-1][b] = '_';
549                                         }
550                                 }
551                         }
552                 else {
553                         netsetup_args[a-1][0] = 0;
554                         }
555                 }
556
557         sprintf(fbuf, "./netsetup \"%s\" \"%s\" \"%s\" </dev/null 2>&1",
558                 netsetup_args[0], netsetup_args[1], netsetup_args[2]);
559         netsetup = popen(fbuf, "r");
560         if (netsetup == NULL) {
561                 cprintf("%d %s\n", ERROR, strerror(errno));
562                 return;
563                 }
564
565         fbuf[0] = 0;
566         while (ch = getc(netsetup), (ch > 0)) {
567                 fbuf[strlen(fbuf)+1] = 0;
568                 fbuf[strlen(fbuf)] = ch;
569                 }
570
571         retcode = pclose(netsetup);
572
573         if (retcode != 0) {
574                 for (a=0; a<strlen(fbuf); ++a) {
575                         if (fbuf[a] < 32) fbuf[a] = 32;
576                         }
577                 fbuf[245] = 0;
578                 cprintf("%d %s\n", ERROR, fbuf);
579                 return;
580                 }
581
582         cprintf("%d Command succeeded.  Output follows:\n", LISTING_FOLLOWS);
583         cprintf("%s", fbuf);
584         if (fbuf[strlen(fbuf)-1] != 10) cprintf("\n");
585         cprintf("000\n");
586         }
587
588
589
590 /*
591  * Generic routine to convert a login name to a full name (gecos)
592  * Returns nonzero if a conversion took place
593  */
594 int convert_login(char NameToConvert[]) {
595         struct passwd *pw;
596         int a;
597
598         pw = getpwnam(NameToConvert);
599         if (pw == NULL) {
600                 return(0);
601                 }
602         else {
603                 strcpy(NameToConvert, pw->pw_gecos);
604                 for (a=0; a<strlen(NameToConvert); ++a) {
605                         if (NameToConvert[a] == ',') NameToConvert[a] = 0;
606                         }
607                 return(1);
608                 }
609         }
610
611
612
613
614         
615
616 /*
617  * Here's where it all begins.
618  */
619 int main(int argc, char **argv)
620 {
621         pthread_t HousekeepingThread;   /* Thread descriptor */
622         pthread_attr_t attr;            /* Thread attributes */
623         char tracefile[128];            /* Name of file to log traces to */
624         int a, i;                       /* General-purpose variables */
625         struct passwd *pw;
626         int drop_root_perms = 1;
627         char *moddir;
628         
629         /* specify default port name and trace file */
630         strcpy(tracefile, "");
631
632         /* parse command-line arguments */
633         for (a=1; a<argc; ++a) {
634
635                 /* -t specifies where to log trace messages to */
636                 if (!strncmp(argv[a], "-t", 2)) {
637                         strcpy(tracefile, argv[a]);
638                         strcpy(tracefile, &tracefile[2]);
639                         freopen(tracefile, "r", stdin);
640                         freopen(tracefile, "w", stdout);
641                         freopen(tracefile, "w", stderr);
642                         }
643
644                 /* run in the background if -d was specified */
645                 else if (!strcmp(argv[a], "-d")) {
646                         start_daemon( (strlen(tracefile) > 0) ? 0 : 1 ) ;
647                         }
648
649                 /* -x specifies the desired logging level */
650                 else if (!strncmp(argv[a], "-x", 2)) {
651                         verbosity = atoi(&argv[a][2]);
652                         }
653
654                 else if (!strncmp(argv[a], "-h", 2)) {
655                         safestrncpy(bbs_home_directory, &argv[a][2],
656                                     sizeof bbs_home_directory);
657                         home_specified = 1;
658                         }
659
660                 else if (!strncmp(argv[a], "-f", 2)) {
661                         do_defrag = 1;
662                         }
663
664                 /* -r tells the server not to drop root permissions. don't use
665                  * this unless you know what you're doing. this should be
666                  * removed in the next release if it proves unnecessary. */
667                 else if (!strcmp(argv[a], "-r"))
668                         drop_root_perms = 0;
669
670                 /* any other parameter makes it crash and burn */
671                 else {
672                         lprintf(1,      "citserver: usage: "
673                                         "citserver [-tTraceFile] [-d] [-f]"
674                                         " [-xLogLevel] [-hHomeDir]\n");
675                         exit(1);
676                         }
677
678                 }
679
680         /* Tell 'em who's in da house */
681         lprintf(1,
682 "\nMultithreaded message server for Citadel/UX\n"
683 "Copyright (C) 1987-1999 by the Citadel/UX development team.\n"
684 "Citadel/UX is free software, covered by the GNU General Public License, and\n"
685 "you are welcome to change it and/or distribute copies of it under certain\n"
686 "conditions.  There is absolutely no warranty for this software.  Please\n"
687 "read the 'COPYING.txt' file for details.\n\n");
688
689         /* Initialize... */
690         init_sysdep();
691         openlog("citserver",LOG_PID,LOG_USER);
692
693         /* Load site-specific parameters */
694         lprintf(7, "Loading citadel.config\n");
695         get_config();
696
697         /*
698          * Bind the server to our favourite port.
699          * There is no need to check for errors, because ig_tcp_server()
700          * exits if it doesn't succeed.
701          */
702         lprintf(7, "Attempting to bind to port %d...\n", config.c_port_number);
703         msock = ig_tcp_server(config.c_port_number, 5);
704         lprintf(7, "Listening on socket %d\n", msock);
705
706         /*
707          * Now that we've bound the socket, change to the BBS user id and its
708          * corresponding group ids
709          */
710         if (drop_root_perms) {
711                 if ((pw = getpwuid(BBSUID)) == NULL)
712                         lprintf(1, "WARNING: getpwuid(%d): %s\n"
713                                    "Group IDs will be incorrect.\n", BBSUID,
714                                 strerror(errno));
715                 else {
716                         initgroups(pw->pw_name, pw->pw_gid);
717                         if (setgid(pw->pw_gid))
718                                 lprintf(3, "setgid(%d): %s\n", pw->pw_gid,
719                                         strerror(errno));
720                         }
721                 lprintf(7, "Changing uid to %d\n", BBSUID);
722                 if (setuid(BBSUID) != 0) {
723                         lprintf(3, "setuid() failed: %s\n", strerror(errno));
724                         }
725                 }
726
727         /*
728          * Do non system dependent startup functions.
729          */
730         master_startup();
731
732         /*
733          * Load any server-side modules (plugins) available here.
734          */
735         lprintf(7, "Initializing loadable modules\n");
736         if ((moddir = malloc(strlen(bbs_home_directory) + 9)) != NULL) {
737                 sprintf(moddir, "%s/modules", bbs_home_directory);
738                 DLoader_Init(moddir);
739                 free(moddir);
740                 }
741
742         lprintf(7, "Starting housekeeper thread\n");
743         pthread_attr_init(&attr);
744         pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
745         if (pthread_create(&HousekeepingThread, &attr,
746            (void* (*)(void*)) housekeeping_loop, NULL) != 0) {
747                 lprintf(1, "Can't create housekeeping thead: %s\n",
748                         strerror(errno));
749         }
750
751
752         /*
753          * The rescan pipe exists so that worker threads can be woken up and
754          * told to re-scan the context list for fd's to listen on.  This is
755          * necessary, for example, when a context is about to go idle and needs
756          * to get back on that list.
757          */
758         if (pipe(rescan)) {
759                 lprintf(1, "Can't create rescan pipe!\n");
760                 exit(errno);
761         }
762
763         /*
764          * Now create a bunch of worker threads.
765          */
766         for (i=0; i<(NUM_WORKER_THREADS-1); ++i) {
767                 pthread_attr_init(&attr);
768                 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
769                 if (pthread_create(&HousekeepingThread, &attr,
770                    (void* (*)(void*)) worker_thread, NULL) != 0) {
771                         lprintf(1, "Can't create worker thead: %s\n",
772                         strerror(errno));
773                 }
774         }
775
776         /* Now this thread can become a worker as well. */
777         worker_thread();
778
779         return(0);
780 }
781
782
783
784
785
786
787
788 /* 
789  * This loop just keeps going and going and going...
790  */     
791 void worker_thread(void) {
792         int i;
793         char junk;
794         int numselect = 0;
795         int highest;
796         struct CitContext *ptr;
797         struct CitContext *bind_me = NULL;
798         fd_set readfds;
799         int retval;
800         struct CitContext *con= NULL;   /* Temporary context pointer */
801         struct sockaddr_in fsin;        /* Data for master socket */
802         int alen;                       /* Data for master socket */
803         int ssock;                      /* Descriptor for client socket */
804
805         while (!time_to_die) {
806
807                 /* 
808                  * In a stupid environment, we would have all idle threads
809                  * calling select() and then they'd all wake up at once.  We
810                  * solve this problem by putting the select() in a critical
811                  * section, so only one thread has the opportunity to wake
812                  * up.  If we wake up on the master socket, create a new
813                  * session context; otherwise, just bind the thread to the
814                  * context we want and go on our merry way.
815                  */
816
817                 begin_critical_section(S_I_WANNA_SELECT);
818 SETUP_FD:       FD_ZERO(&readfds);
819                 FD_SET(msock, &readfds);
820                 highest = msock;
821                 FD_SET(rescan[0], &readfds);
822                 if (rescan[0] > highest) highest = rescan[0];
823                 numselect = 2;
824
825                 begin_critical_section(S_SESSION_TABLE);
826                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
827                         if (ptr->state == CON_IDLE) {
828                                 FD_SET(ptr->client_socket, &readfds);
829                                 if (ptr->client_socket > highest)
830                                         highest = ptr->client_socket;
831                                 ++numselect;
832                         }
833                 }
834                 end_critical_section(S_SESSION_TABLE);
835
836                 retval = select(highest + 1, &readfds, NULL, NULL, NULL);
837
838                 /* Now figure out who made this select() unblock.
839                  * First, check for an error or exit condition.
840                  */
841                 if (retval < 0) {
842                         end_critical_section(S_I_WANNA_SELECT);
843                         lprintf(9, "Exiting (%s)\n", errno);
844                         time_to_die = 1;
845                 }
846
847                 /* Next, check to see if it's a new client connecting
848                  * on the master socket.
849                  */
850                 else if (FD_ISSET(msock, &readfds)) {
851                         alen = sizeof fsin;
852                         ssock = accept(msock, (struct sockaddr *)&fsin, &alen);
853                         if (ssock < 0) {
854                                 lprintf(2, "citserver: accept() failed: %s\n",
855                                         strerror(errno));
856                         }
857                         else {
858                                 lprintf(7, "citserver: New client socket %d\n",
859                                         ssock);
860
861                                 /* New context will be created already set up
862                                  * in the CON_EXECUTING state.
863                                  */
864                                 con = CreateNewContext();
865
866                                 /* Assign our new socket number to it. */
867                                 con->client_socket = ssock;
868         
869                                 /* Set the SO_REUSEADDR socket option */
870                                 i = 1;
871                                 setsockopt(ssock, SOL_SOCKET, SO_REUSEADDR,
872                                         &i, sizeof(i));
873
874                                 pthread_setspecific(MyConKey, (void *)con);
875                                 begin_session(con);
876                                 /* do_command_loop(); */
877                                 pthread_setspecific(MyConKey, (void *)NULL);
878                                 con->state = CON_IDLE;
879                                 goto SETUP_FD;
880                         }
881                 }
882
883                 /* If the rescan pipe went active, someone is telling this
884                  * thread that the &readfds needs to be refreshed with more
885                  * current data.
886                  */
887                 else if (FD_ISSET(rescan[0], &readfds)) {
888                         read(rescan[0], &junk, 1);
889                         goto SETUP_FD;
890                 }
891
892                 /* It must be a client socket.  Find a context that has data
893                  * waiting on its socket *and* is in the CON_IDLE state.
894                  */
895                 else {
896                         bind_me = NULL;
897                         begin_critical_section(S_SESSION_TABLE);
898                         for (ptr = ContextList;
899                             ( (ptr != NULL) && (bind_me == NULL) );
900                             ptr = ptr->next) {
901                                 if ( (FD_ISSET(ptr->client_socket, &readfds))
902                                    && (ptr->state == CON_IDLE) ) {
903                                         bind_me = ptr;
904                                 }
905                         }
906                         if (bind_me != NULL) {
907                                 /* Found one.  Stake a claim to it before
908                                  * letting anyone else touch the context list.
909                                  */
910                                 bind_me->state = CON_EXECUTING;
911                         }
912
913                         end_critical_section(S_SESSION_TABLE);
914                         end_critical_section(S_I_WANNA_SELECT);
915
916                         /* We're bound to a session, now do *one* command */
917                         if (bind_me != NULL) {
918                                 pthread_setspecific(MyConKey, (void *)bind_me);
919                                 do_command_loop();
920                                 pthread_setspecific(MyConKey, (void *)NULL);
921                                 if (bind_me->state == CON_DYING) {
922                                         cleanup(bind_me);
923                                 } 
924                                 else {
925                                         bind_me->state = CON_IDLE;
926                                 }
927                                 write(rescan[1], &junk, 1);
928                         }
929                         else {
930                                 lprintf(9, "Thread %02d found nothing to do!\n",
931                                         getpid());
932                         }
933
934                 }
935
936         }
937
938         pthread_exit(NULL);
939 }
940