]> code.citadel.org Git - citadel.git/blob - citadel/sysdep.c
* sysdep.c ig_tcp_server() - use IPPROTO_TCP instead of getprotobyname()
[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
16 #include "sysdep.h"
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <fcntl.h>
21 #include <ctype.h>
22 #include <signal.h>
23 #include <sys/types.h>
24 #include <sys/stat.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 <sys/un.h>
32 #include <string.h>
33 #include <pwd.h>
34 #include <errno.h>
35 #include <stdarg.h>
36 #include <syslog.h>
37 #include <grp.h>
38 #ifdef __GNUC__
39 #include <malloc.h>
40 #endif
41 #ifdef HAVE_PTHREAD_H
42 #include <pthread.h>
43 #endif
44 #include "citadel.h"
45 #include "server.h"
46 #include "sysdep_decls.h"
47 #include "citserver.h"
48 #include "support.h"
49 #include "config.h"
50 #include "database.h"
51 #include "housekeeping.h"
52 #include "dynloader.h"
53 #include "tools.h"
54
55 #ifdef HAVE_SYS_SELECT_H
56 #include <sys/select.h>
57 #endif
58
59 #ifndef HAVE_SNPRINTF
60 #include "snprintf.h"
61 #endif
62
63 #ifdef DEBUG_MEMORY_LEAKS
64 struct TheHeap *heap = NULL;
65 #endif
66
67 pthread_mutex_t Critters[MAX_SEMAPHORES];       /* Things needing locking */
68 pthread_key_t MyConKey;                         /* TSD key for MyContext() */
69
70 int verbosity = DEFAULT_VERBOSITY;              /* Logging level */
71
72 struct CitContext masterCC;
73 int rescan[2];                                  /* The Rescan Pipe */
74 time_t last_purge = 0;                          /* Last dead session purge */
75 static int num_threads = 0;                     /* Current number of threads */
76 int num_sessions = 0;                           /* Current number of sessions */
77
78 fd_set masterfds;                               /* Master sockets etc. */
79 int masterhighest;
80
81 time_t last_timer = 0L;                         /* Last timer hook processing */
82
83 static pthread_t initial_thread;                /* tid for main() thread */
84
85
86 /*
87  * lprintf()  ...   Write logging information
88  * 
89  * Note: the variable "buf" below needs to be large enough to handle any
90  * log data sent through this function.  BE CAREFUL!
91  */
92 void lprintf(int loglevel, const char *format, ...) {   
93         va_list arg_ptr;
94         char buf[4096];
95   
96         va_start(arg_ptr, format);   
97         vsprintf(buf, format, arg_ptr);   
98         va_end(arg_ptr);   
99
100         if (loglevel <= verbosity) { 
101                 struct timeval tv;
102                 struct tm *tim;
103
104                 gettimeofday(&tv, NULL);
105                 tim = localtime(&(tv.tv_sec));
106                 /*
107                  * Log provides millisecond accuracy.  If you need
108                  * microsecond accuracy and your OS supports it, change
109                  * %03ld to %06ld and remove " / 1000" after tv.tv_usec.
110                  */
111                 fprintf(stderr, "%04d/%02d/%02d %2d:%02d:%02d.%03ld %s",
112                         tim->tm_year + 1900, tim->tm_mon + 1, tim->tm_mday,
113                         tim->tm_hour, tim->tm_min, tim->tm_sec,
114                         tv.tv_usec / 1000, buf);
115                 fflush(stderr);
116         }
117
118         PerformLogHooks(loglevel, buf);
119 }   
120
121
122
123 #ifdef DEBUG_MEMORY_LEAKS
124 void *tracked_malloc(size_t tsize, char *tfile, int tline) {
125         void *ptr;
126         struct TheHeap *hptr;
127
128         ptr = malloc(tsize);
129         if (ptr == NULL) {
130                 lprintf(3, "DANGER!  mallok(%d) at %s:%d failed!\n",
131                         tsize, tfile, tline);
132                 return(NULL);
133         }
134
135         hptr = (struct TheHeap *) malloc(sizeof(struct TheHeap));
136         strcpy(hptr->h_file, tfile);
137         hptr->h_line = tline;
138         hptr->next = heap;
139         hptr->h_ptr = ptr;
140         heap = hptr;
141         return ptr;
142 }
143
144 char *tracked_strdup(const char *orig, char *tfile, int tline) {
145         char *s;
146
147         s = tracked_malloc( (strlen(orig)+1), tfile, tline);
148         if (s == NULL) return NULL;
149
150         strcpy(s, orig);
151         return s;
152 }
153
154 void tracked_free(void *ptr) {
155         struct TheHeap *hptr, *freeme;
156
157         if (heap->h_ptr == ptr) {
158                 hptr = heap->next;
159                 free(heap);
160                 heap = hptr;
161         }
162         else {
163                 for (hptr=heap; hptr->next!=NULL; hptr=hptr->next) {
164                         if (hptr->next->h_ptr == ptr) {
165                                 freeme = hptr->next;
166                                 hptr->next = hptr->next->next;
167                                 free(freeme);
168                         }
169                 }
170         }
171
172         free(ptr);
173 }
174
175 void *tracked_realloc(void *ptr, size_t size) {
176         void *newptr;
177         struct TheHeap *hptr;
178         
179         newptr = realloc(ptr, size);
180
181         for (hptr=heap; hptr!=NULL; hptr=hptr->next) {
182                 if (hptr->h_ptr == ptr) hptr->h_ptr = newptr;
183         }
184
185         return newptr;
186 }
187
188
189 void dump_tracked() {
190         struct TheHeap *hptr;
191
192         cprintf("%d Here's what's allocated...\n", LISTING_FOLLOWS);    
193         for (hptr=heap; hptr!=NULL; hptr=hptr->next) {
194                 cprintf("%20s %5d\n",
195                         hptr->h_file, hptr->h_line);
196         }
197 #ifdef __GNUC__
198         malloc_stats();
199 #endif
200
201         cprintf("000\n");
202 }
203 #endif
204
205
206 /*
207  * We used to use master_cleanup() as a signal handler to shut down the server.
208  * however, master_cleanup() and the functions it calls do some things that
209  * aren't such a good idea to do from a signal handler: acquiring mutexes,
210  * playing with signal masks on BSDI systems, etc. so instead we install the
211  * following signal handler to set a global variable to inform the main loop
212  * that it's time to call master_cleanup() and exit.
213  */
214
215 volatile int time_to_die = 0;
216
217 static RETSIGTYPE signal_cleanup(int signum) {
218         time_to_die = 1;
219 }
220
221
222 /*
223  * Some initialization stuff...
224  */
225 void init_sysdep(void) {
226         int a;
227
228         /* Set up a bunch of semaphores to be used for critical sections */
229         for (a=0; a<MAX_SEMAPHORES; ++a) {
230                 pthread_mutex_init(&Critters[a], NULL);
231         }
232
233         /*
234          * Set up a place to put thread-specific data.
235          * We only need a single pointer per thread - it points to the
236          * CitContext structure (in the ContextList linked list) of the
237          * session to which the calling thread is currently bound.
238          */
239         if (pthread_key_create(&MyConKey, NULL) != 0) {
240                 lprintf(1, "Can't create TSD key!!  %s\n", strerror(errno));
241         }
242
243         /*
244          * The action for unexpected signals and exceptions should be to
245          * call signal_cleanup() to gracefully shut down the server.
246          */
247         signal(SIGINT, signal_cleanup);
248         signal(SIGQUIT, signal_cleanup);
249         signal(SIGHUP, signal_cleanup);
250         signal(SIGTERM, signal_cleanup);
251
252         /*
253          * Do not shut down the server on broken pipe signals, otherwise the
254          * whole Citadel service would come down whenever a single client
255          * socket breaks.
256          */
257         signal(SIGPIPE, SIG_IGN);
258 }
259
260
261 /*
262  * Obtain a semaphore lock to begin a critical section.
263  */
264 void begin_critical_section(int which_one)
265 {
266         /* lprintf(9, "begin_critical_section(%d)\n", which_one); */
267         pthread_mutex_lock(&Critters[which_one]);
268 }
269
270 /*
271  * Release a semaphore lock to end a critical section.
272  */
273 void end_critical_section(int which_one)
274 {
275         /* lprintf(9, "end_critical_section(%d)\n", which_one); */
276         pthread_mutex_unlock(&Critters[which_one]);
277 }
278
279
280
281 /*
282  * This is a generic function to set up a master socket for listening on
283  * a TCP port.  The server shuts down if the bind fails.
284  *
285  */
286 int ig_tcp_server(int port_number, int queue_len)
287 {
288         struct sockaddr_in sin;
289         int s, i;
290         int actual_queue_len;
291
292         actual_queue_len = queue_len;
293         if (actual_queue_len < 5) actual_queue_len = 5;
294
295         memset(&sin, 0, sizeof(sin));
296         sin.sin_family = AF_INET;
297         sin.sin_addr.s_addr = INADDR_ANY;
298         sin.sin_port = htons((u_short)port_number);
299
300         s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
301
302         if (s < 0) {
303                 lprintf(1, "citserver: Can't create a socket: %s\n",
304                         strerror(errno));
305                 return(-1);
306         }
307
308         i = 1;
309         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &i, sizeof(i));
310
311         if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
312                 lprintf(1, "citserver: Can't bind: %s\n",
313                         strerror(errno));
314                 close(s);
315                 return(-1);
316         }
317
318         if (listen(s, actual_queue_len) < 0) {
319                 lprintf(1, "citserver: Can't listen: %s\n", strerror(errno));
320                 close(s);
321                 return(-1);
322         }
323
324         return(s);
325 }
326
327
328
329 /*
330  * Create a Unix domain socket and listen on it
331  */
332 int ig_uds_server(char *sockpath, int queue_len)
333 {
334         struct sockaddr_un addr;
335         int s;
336         int i;
337         int actual_queue_len;
338
339         actual_queue_len = queue_len;
340         if (actual_queue_len < 5) actual_queue_len = 5;
341
342         i = unlink(sockpath);
343         if (i != 0) if (errno != ENOENT) {
344                 lprintf(1, "citserver: can't unlink %s: %s\n",
345                         sockpath, strerror(errno));
346                 return(-1);
347         }
348
349         memset(&addr, 0, sizeof(addr));
350         addr.sun_family = AF_UNIX;
351         safestrncpy(addr.sun_path, sockpath, sizeof addr.sun_path);
352
353         s = socket(AF_UNIX, SOCK_STREAM, 0);
354         if (s < 0) {
355                 lprintf(1, "citserver: Can't create a socket: %s\n",
356                         strerror(errno));
357                 return(-1);
358         }
359
360         if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
361                 lprintf(1, "citserver: Can't bind: %s\n",
362                         strerror(errno));
363                 return(-1);
364         }
365
366         if (listen(s, actual_queue_len) < 0) {
367                 lprintf(1, "citserver: Can't listen: %s\n", strerror(errno));
368                 return(-1);
369         }
370
371         chmod(sockpath, 0777);
372         return(s);
373 }
374
375
376
377 /*
378  * Return a pointer to the CitContext structure bound to the thread which
379  * called this function.  If there's no such binding (for example, if it's
380  * called by the housekeeper thread) then a generic 'master' CC is returned.
381  */
382 struct CitContext *MyContext(void) {
383         struct CitContext *retCC;
384         retCC = (struct CitContext *) pthread_getspecific(MyConKey);
385         if (retCC == NULL) retCC = &masterCC;
386         return(retCC);
387 }
388
389
390 /*
391  * Initialize a new context and place it in the list.  The session number
392  * used to be the PID (which is why it's called cs_pid), but that was when we
393  * had one process per session.  Now we just assign them sequentially, starting
394  * at 1 (don't change it to 0 because masterCC uses 0) and re-using them when
395  * sessions terminate.
396  */
397 struct CitContext *CreateNewContext(void) {
398         struct CitContext *me, *ptr;
399         int num = 1;
400         int startover = 0;
401
402         me = (struct CitContext *) mallok(sizeof(struct CitContext));
403         if (me == NULL) {
404                 lprintf(1, "citserver: can't allocate memory!!\n");
405                 return NULL;
406         }
407         memset(me, 0, sizeof(struct CitContext));
408
409         /* The new context will be created already in the CON_EXECUTING state
410          * in order to prevent another thread from grabbing it while it's
411          * being set up.
412          */
413         me->state = CON_EXECUTING;
414
415         begin_critical_section(S_SESSION_TABLE);
416
417         /* obtain a unique session number */
418         do {
419                 startover = 0;
420                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
421                         if (ptr->cs_pid == num) {
422                                 ++num;
423                                 startover = 1;
424                         }
425                 }
426         } while (startover == 1);
427
428         me->cs_pid = num;
429         me->next = ContextList;
430         ContextList = me;
431         ++num_sessions;
432
433         end_critical_section(S_SESSION_TABLE);
434         return(me);
435 }
436
437
438
439 /*
440  * client_write()   ...    Send binary data to the client.
441  */
442 void client_write(char *buf, int nbytes)
443 {
444         int bytes_written = 0;
445         int retval;
446         int sock;
447
448         if (CC->redirect_fp != NULL) {
449                 fwrite(buf, nbytes, 1, CC->redirect_fp);
450                 return;
451         }
452
453         if (CC->redirect_sock > 0) {
454                 sock = CC->redirect_sock;       /* and continue below... */
455         }
456         else {
457                 sock = CC->client_socket;
458         }
459
460         while (bytes_written < nbytes) {
461                 retval = write(sock, &buf[bytes_written],
462                         nbytes - bytes_written);
463                 if (retval < 1) {
464                         lprintf(2, "client_write() failed: %s\n",
465                                 strerror(errno));
466                         if (sock == CC->client_socket) CC->kill_me = 1;
467                         return;
468                 }
469                 bytes_written = bytes_written + retval;
470         }
471 }
472
473
474 /*
475  * cprintf()  ...   Send formatted printable data to the client.   It is
476  *                  implemented in terms of client_write() but remains in
477  *                  sysdep.c in case we port to somewhere without va_args...
478  */
479 void cprintf(const char *format, ...) {   
480         va_list arg_ptr;   
481         char buf[SIZ];   
482    
483         va_start(arg_ptr, format);   
484         if (vsnprintf(buf, sizeof buf, format, arg_ptr) == -1)
485                 buf[sizeof buf - 2] = '\n';
486         client_write(buf, strlen(buf)); 
487         va_end(arg_ptr);
488 }   
489
490
491 /*
492  * Read data from the client socket.
493  * Return values are:
494  *      1       Requested number of bytes has been read.
495  *      0       Request timed out.
496  *      -1      The socket is broken.
497  * If the socket breaks, the session will be terminated.
498  */
499 int client_read_to(char *buf, int bytes, int timeout)
500 {
501         int len,rlen;
502         fd_set rfds;
503         struct timeval tv;
504         int retval;
505
506         len = 0;
507         while(len<bytes) {
508                 FD_ZERO(&rfds);
509                 FD_SET(CC->client_socket, &rfds);
510                 tv.tv_sec = timeout;
511                 tv.tv_usec = 0;
512
513                 retval = select( (CC->client_socket)+1, 
514                                         &rfds, NULL, NULL, &tv);
515
516                 if (FD_ISSET(CC->client_socket, &rfds) == 0) {
517                         return(0);
518                 }
519
520                 rlen = read(CC->client_socket, &buf[len], bytes-len);
521                 if (rlen<1) {
522                         lprintf(2, "client_read() failed: %s\n",
523                                 strerror(errno));
524                         CC->kill_me = 1;
525                         return(-1);
526                 }
527                 len = len + rlen;
528         }
529         return(1);
530 }
531
532 /*
533  * Read data from the client socket with default timeout.
534  * (This is implemented in terms of client_read_to() and could be
535  * justifiably moved out of sysdep.c)
536  */
537 int client_read(char *buf, int bytes)
538 {
539         return(client_read_to(buf, bytes, config.c_sleeping));
540 }
541
542
543 /*
544  * client_gets()   ...   Get a LF-terminated line of text from the client.
545  * (This is implemented in terms of client_read() and could be
546  * justifiably moved out of sysdep.c)
547  */
548 int client_gets(char *buf)
549 {
550         int i, retval;
551
552         /* Read one character at a time.
553          */
554         for (i = 0;;i++) {
555                 retval = client_read(&buf[i], 1);
556                 if (retval != 1 || buf[i] == '\n' || i == (SIZ-1))
557                         break;
558         }
559
560         /* If we got a long line, discard characters until the newline.
561          */
562         if (i == (SIZ-1))
563                 while (buf[i] != '\n' && retval == 1)
564                         retval = client_read(&buf[i], 1);
565
566         /* Strip the trailing newline and any trailing nonprintables (cr's)
567          */
568         buf[i] = 0;
569         while ((strlen(buf)>0)&&(!isprint(buf[strlen(buf)-1])))
570                 buf[strlen(buf)-1] = 0;
571         if (retval < 0) strcpy(buf, "000");
572         return(retval);
573 }
574
575
576
577 /*
578  * The system-dependent part of master_cleanup() - close the master socket.
579  */
580 void sysdep_master_cleanup(void) {
581         struct ServiceFunctionHook *serviceptr;
582
583         /*
584          * close all protocol master sockets
585          */
586         for (serviceptr = ServiceHookTable; serviceptr != NULL;
587             serviceptr = serviceptr->next ) {
588
589                 if (serviceptr->tcp_port > 0)
590                         lprintf(3, "Closing listener on port %d\n",
591                                 serviceptr->tcp_port);
592
593                 if (serviceptr->sockpath != NULL)
594                         lprintf(3, "Closing listener on '%s'\n",
595                                 serviceptr->sockpath);
596
597                 close(serviceptr->msock);
598
599                 /* If it's a Unix domain socket, remove the file. */
600                 if (serviceptr->sockpath != NULL) {
601                         unlink(serviceptr->sockpath);
602                 }
603         }
604 }
605
606
607 /*
608  * Terminate another session.
609  * (This could justifiably be moved out of sysdep.c because it
610  * no longer does anything that is system-dependent.)
611  */
612 void kill_session(int session_to_kill) {
613         struct CitContext *ptr;
614
615         begin_critical_section(S_SESSION_TABLE);
616         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
617                 if (ptr->cs_pid == session_to_kill) {
618                         ptr->kill_me = 1;
619                 }
620         }
621         end_critical_section(S_SESSION_TABLE);
622 }
623
624
625
626
627 /*
628  * Start running as a daemon.  Only close stdio if do_close_stdio is set.
629  */
630 void start_daemon(int do_close_stdio) {
631         if (do_close_stdio) {
632                 /* close(0); */
633                 close(1);
634                 close(2);
635         }
636         signal(SIGHUP,SIG_IGN);
637         signal(SIGINT,SIG_IGN);
638         signal(SIGQUIT,SIG_IGN);
639         if (fork()!=0) exit(0);
640 }
641
642
643
644 /*
645  * Tie in to the 'netsetup' program.
646  *
647  * (We're going to hope that netsetup never feeds more than 4096 bytes back.)
648  */
649 void cmd_nset(char *cmdbuf)
650 {
651         int retcode;
652         char fbuf[4096];
653         FILE *netsetup;
654         int ch;
655         int a, b;
656         char netsetup_args[3][SIZ];
657
658         if (CC->usersupp.axlevel < 6) {
659                 cprintf("%d Higher access required.\n", 
660                         ERROR + HIGHER_ACCESS_REQUIRED);
661                 return;
662         }
663
664         for (a=1; a<=3; ++a) {
665                 if (num_parms(cmdbuf) >= a) {
666                         extract(netsetup_args[a-1], cmdbuf, a-1);
667                         for (b=0; b<strlen(netsetup_args[a-1]); ++b) {
668                                 if (netsetup_args[a-1][b] == 34) {
669                                         netsetup_args[a-1][b] = '_';
670                                 }
671                         }
672                 }
673                 else {
674                         netsetup_args[a-1][0] = 0;
675                 }
676         }
677
678         sprintf(fbuf, "./netsetup \"%s\" \"%s\" \"%s\" </dev/null 2>&1",
679                 netsetup_args[0], netsetup_args[1], netsetup_args[2]);
680         netsetup = popen(fbuf, "r");
681         if (netsetup == NULL) {
682                 cprintf("%d %s\n", ERROR, strerror(errno));
683                 return;
684         }
685
686         fbuf[0] = 0;
687         while (ch = getc(netsetup), (ch > 0)) {
688                 fbuf[strlen(fbuf)+1] = 0;
689                 fbuf[strlen(fbuf)] = ch;
690         }
691
692         retcode = pclose(netsetup);
693
694         if (retcode != 0) {
695                 for (a=0; a<strlen(fbuf); ++a) {
696                         if (fbuf[a] < 32) fbuf[a] = 32;
697                 }
698                 fbuf[245] = 0;
699                 cprintf("%d %s\n", ERROR, fbuf);
700                 return;
701         }
702
703         cprintf("%d Command succeeded.  Output follows:\n", LISTING_FOLLOWS);
704         cprintf("%s", fbuf);
705         if (fbuf[strlen(fbuf)-1] != 10) cprintf("\n");
706         cprintf("000\n");
707 }
708
709
710
711 /*
712  * Generic routine to convert a login name to a full name (gecos)
713  * Returns nonzero if a conversion took place
714  */
715 int convert_login(char NameToConvert[]) {
716         struct passwd *pw;
717         int a;
718
719         pw = getpwnam(NameToConvert);
720         if (pw == NULL) {
721                 return(0);
722         }
723         else {
724                 strcpy(NameToConvert, pw->pw_gecos);
725                 for (a=0; a<strlen(NameToConvert); ++a) {
726                         if (NameToConvert[a] == ',') NameToConvert[a] = 0;
727                 }
728                 return(1);
729         }
730 }
731
732 static struct worker_node {
733         pthread_t tid;
734         struct worker_node *next;
735 } *worker_list = NULL;
736
737
738 /*
739  * create a worker thread. this function must always be called from within
740  * an S_WORKER_LIST critical section!
741  */
742 static void create_worker(void) {
743         int ret;
744         struct worker_node *n = mallok(sizeof *n);
745
746         if (n == NULL) {
747                 lprintf(1, "can't allocate worker_node, exiting\n");
748                 time_to_die = -1;
749                 return;
750         }
751
752         if ((ret = pthread_create(&n->tid, NULL, worker_thread, NULL) != 0))
753         {
754
755                 lprintf(1, "Can't create worker thread: %s\n",
756                         strerror(ret));
757         }
758
759         n->next = worker_list;
760         worker_list = n;
761 }
762
763
764
765 /*
766  * Purge all sessions which have the 'kill_me' flag set.
767  * This function has code to prevent it from running more than once every
768  * few seconds, because running it after every single unbind would waste a lot
769  * of CPU time and keep the context list locked too much.
770  *
771  * After that's done, we raise or lower the size of the worker thread pool
772  * if such an action is appropriate.
773  */
774 void dead_session_purge(void) {
775         struct CitContext *ptr, *rem;
776         struct worker_node **node, *tmp;
777         pthread_t self;
778
779         if ( (time(NULL) - last_purge) < 5 ) return;    /* Too soon, go away */
780         time(&last_purge);
781
782         do {
783                 rem = NULL;
784                 begin_critical_section(S_SESSION_TABLE);
785                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
786                         if ( (ptr->state == CON_IDLE) && (ptr->kill_me) ) {
787                                 rem = ptr;
788                         }
789                 }
790                 end_critical_section(S_SESSION_TABLE);
791
792                 /* RemoveContext() enters its own S_SESSION_TABLE critical
793                  * section, so we have to do it like this.
794                  */     
795                 if (rem != NULL) {
796                         lprintf(9, "Purging session %d\n", rem->cs_pid);
797                         RemoveContext(rem);
798                 }
799
800         } while (rem != NULL);
801
802
803         /* Raise or lower the size of the worker thread pool if such
804          * an action is appropriate.
805          */
806
807         self = pthread_self();
808
809         if ( (num_sessions > num_threads)
810            && (num_threads < config.c_max_workers) ) {
811                 begin_critical_section(S_WORKER_LIST);
812                 create_worker();
813                 end_critical_section(S_WORKER_LIST);
814         }
815         
816         /* don't let the initial thread die since it's responsible for
817            waiting for all the other threads to terminate. */
818         else if ( (num_sessions < num_threads)
819            && (num_threads > config.c_min_workers)
820            && (self != initial_thread) ) {
821                 cdb_free_tsd();
822                 begin_critical_section(S_WORKER_LIST);
823                 --num_threads;
824
825                 /* we're exiting before server shutdown... unlink ourself from
826                    the worker list and detach our thread to avoid memory leaks
827                  */
828
829                 for (node = &worker_list; *node != NULL; node = &(*node)->next)
830                         if ((*node)->tid == self) {
831                                 tmp = *node;
832                                 *node = (*node)->next;
833                                 phree(tmp);
834                                 break;
835                         }
836
837                 pthread_detach(self);
838                 end_critical_section(S_WORKER_LIST);
839                 pthread_exit(NULL);
840         }
841
842 }
843
844
845
846
847
848 /*
849  * Redirect a session's output to a file or socket.
850  * This function may be called with a file handle *or* a socket (but not
851  * both).  Call with neither to return output to its normal client socket.
852  */
853 void CtdlRedirectOutput(FILE *fp, int sock) {
854
855         if (fp != NULL) CC->redirect_fp = fp;
856         else CC->redirect_fp = NULL;
857
858         if (sock > 0) CC->redirect_sock = sock;
859         else CC->redirect_sock = (-1);
860
861 }
862
863
864 /*
865  * masterCC is the context we use when not attached to a session.  This
866  * function initializes it.
867  */
868 void InitializeMasterCC(void) {
869         memset(&masterCC, 0, sizeof(struct CitContext));
870         masterCC.internal_pgm = 1;
871         masterCC.cs_pid = 0;
872 }
873
874
875
876 /*
877  * Set up a fd_set containing all the master sockets to which we
878  * always listen.  It's computationally less expensive to just copy
879  * this to a local fd_set when starting a new select() and then add
880  * the client sockets than it is to initialize a new one and then
881  * figure out what to put there.
882  */
883 void init_master_fdset(void) {
884         struct ServiceFunctionHook *serviceptr;
885         int m;
886
887         lprintf(9, "Initializing master fdset\n");
888
889         FD_ZERO(&masterfds);
890         masterhighest = 0;
891
892         lprintf(9, "Will listen on rescan pipe %d\n", rescan[0]);
893         FD_SET(rescan[0], &masterfds);
894         if (rescan[0] > masterhighest) masterhighest = rescan[0];
895
896         for (serviceptr = ServiceHookTable; serviceptr != NULL;
897             serviceptr = serviceptr->next ) {
898                 m = serviceptr->msock;
899                 lprintf(9, "Will listen on master socket %d\n", m);
900                 FD_SET(m, &masterfds);
901                 if (m > masterhighest) {
902                         masterhighest = m;
903                 }
904         }
905         lprintf(9, "masterhighest = %d\n", masterhighest);
906 }
907
908
909
910 /*
911  * Here's where it all begins.
912  */
913 int main(int argc, char **argv)
914 {
915         char tracefile[128];            /* Name of file to log traces to */
916         int a, i;                       /* General-purpose variables */
917         struct passwd *pw;
918         int drop_root_perms = 1;
919         char *moddir;
920         struct worker_node *wnp;
921         
922         /* specify default port name and trace file */
923         strcpy(tracefile, "");
924
925         /* initialize the master context */
926         InitializeMasterCC();
927
928         /* parse command-line arguments */
929         for (a=1; a<argc; ++a) {
930
931                 /* -t specifies where to log trace messages to */
932                 if (!strncmp(argv[a], "-t", 2)) {
933                         strcpy(tracefile, argv[a]);
934                         strcpy(tracefile, &tracefile[2]);
935                         freopen(tracefile, "r", stdin);
936                         freopen(tracefile, "w", stdout);
937                         freopen(tracefile, "w", stderr);
938                 }
939
940                 /* run in the background if -d was specified */
941                 else if (!strcmp(argv[a], "-d")) {
942                         start_daemon( (strlen(tracefile) > 0) ? 0 : 1 ) ;
943                 }
944
945                 /* -x specifies the desired logging level */
946                 else if (!strncmp(argv[a], "-x", 2)) {
947                         verbosity = atoi(&argv[a][2]);
948                 }
949
950                 else if (!strncmp(argv[a], "-h", 2)) {
951                         safestrncpy(bbs_home_directory, &argv[a][2],
952                                     sizeof bbs_home_directory);
953                         home_specified = 1;
954                 }
955
956                 else if (!strncmp(argv[a], "-f", 2)) {
957                         do_defrag = 1;
958                 }
959
960                 /* -r tells the server not to drop root permissions. don't use
961                  * this unless you know what you're doing. this should be
962                  * removed in the next release if it proves unnecessary. */
963                 else if (!strcmp(argv[a], "-r"))
964                         drop_root_perms = 0;
965
966                 /* any other parameter makes it crash and burn */
967                 else {
968                         lprintf(1,      "citserver: usage: "
969                                         "citserver [-tTraceFile] [-d] [-f]"
970                                         " [-xLogLevel] [-hHomeDir]\n");
971                         exit(1);
972                 }
973
974         }
975
976         /* Tell 'em who's in da house */
977         lprintf(1,
978 "\nMultithreaded message server for Citadel/UX\n"
979 "Copyright (C) 1987-2000 by the Citadel/UX development team.\n"
980 "Citadel/UX is free software, covered by the GNU General Public License, and\n"
981 "you are welcome to change it and/or distribute copies of it under certain\n"
982 "conditions.  There is absolutely no warranty for this software.  Please\n"
983 "read the 'COPYING.txt' file for details.\n\n");
984
985         /* Initialize... */
986         init_sysdep();
987         openlog("citserver", LOG_PID, LOG_USER);
988
989         /* Load site-specific parameters */
990         lprintf(7, "Loading citadel.config\n");
991         get_config();
992
993
994         /*
995          * Do non system dependent startup functions.
996          */
997         master_startup();
998
999         /*
1000          * Bind the server to a Unix-domain socket.
1001          */
1002         CtdlRegisterServiceHook(0,
1003                                 "citadel.socket",
1004                                 citproto_begin_session,
1005                                 do_command_loop);
1006
1007         /*
1008          * Bind the server to our favorite TCP port (usually 504).
1009          */
1010         CtdlRegisterServiceHook(config.c_port_number,
1011                                 NULL,
1012                                 citproto_begin_session,
1013                                 do_command_loop);
1014
1015         /*
1016          * Load any server-side modules (plugins) available here.
1017          */
1018         lprintf(7, "Initializing loadable modules\n");
1019         if ((moddir = malloc(strlen(bbs_home_directory) + 9)) != NULL) {
1020                 sprintf(moddir, "%s/modules", bbs_home_directory);
1021                 DLoader_Init(moddir);
1022                 free(moddir);
1023         }
1024
1025         /*
1026          * The rescan pipe exists so that worker threads can be woken up and
1027          * told to re-scan the context list for fd's to listen on.  This is
1028          * necessary, for example, when a context is about to go idle and needs
1029          * to get back on that list.
1030          */
1031         if (pipe(rescan)) {
1032                 lprintf(1, "Can't create rescan pipe!\n");
1033                 exit(errno);
1034         }
1035
1036         init_master_fdset();
1037
1038         /*
1039          * Now that we've bound the sockets, change to the BBS user id and its
1040          * corresponding group ids
1041          */
1042         if (drop_root_perms) {
1043                 if ((pw = getpwuid(BBSUID)) == NULL)
1044                         lprintf(1, "WARNING: getpwuid(%d): %s\n"
1045                                    "Group IDs will be incorrect.\n", BBSUID,
1046                                 strerror(errno));
1047                 else {
1048                         initgroups(pw->pw_name, pw->pw_gid);
1049                         if (setgid(pw->pw_gid))
1050                                 lprintf(3, "setgid(%d): %s\n", pw->pw_gid,
1051                                         strerror(errno));
1052                 }
1053                 lprintf(7, "Changing uid to %d\n", BBSUID);
1054                 if (setuid(BBSUID) != 0) {
1055                         lprintf(3, "setuid() failed: %s\n", strerror(errno));
1056                 }
1057         }
1058
1059         /* We want to check for idle sessions once per minute */
1060         CtdlRegisterSessionHook(terminate_idle_sessions, EVT_TIMER);
1061
1062         /*
1063          * Now create a bunch of worker threads.
1064          */
1065         lprintf(9, "Starting %d worker threads\n", config.c_min_workers-1);
1066         begin_critical_section(S_WORKER_LIST);
1067         for (i=0; i<(config.c_min_workers-1); ++i) {
1068                 create_worker();
1069         }
1070         end_critical_section(S_WORKER_LIST);
1071
1072         /* Now this thread can become a worker as well. */
1073         initial_thread = pthread_self();
1074         worker_thread(NULL);
1075
1076         /* Server is exiting. Wait for workers to shutdown. */
1077         lprintf(7, "Waiting for worker threads to shut down\n");
1078
1079         begin_critical_section(S_WORKER_LIST);
1080         while (worker_list != NULL) {
1081                 wnp = worker_list;
1082                 worker_list = wnp->next;
1083
1084                 /* avoid deadlock with an exiting thread */
1085                 end_critical_section(S_WORKER_LIST);
1086                 if ((i = pthread_join(wnp->tid, NULL)))
1087                         lprintf(1, "pthread_join: %s\n", strerror(i));
1088                 phree(wnp);
1089                 begin_critical_section(S_WORKER_LIST);
1090         }
1091         end_critical_section(S_WORKER_LIST);
1092
1093         master_cleanup();
1094
1095         return(0);
1096 }
1097
1098
1099 /*
1100  * Bind a thread to a context.  (It's inline merely to speed things up.)
1101  */
1102 inline void become_session(struct CitContext *which_con) {
1103         pthread_setspecific(MyConKey, (void *)which_con );
1104 }
1105
1106
1107
1108 /* 
1109  * This loop just keeps going and going and going...
1110  */     
1111 void *worker_thread(void *arg) {
1112         int i;
1113         char junk;
1114         int highest;
1115         struct CitContext *ptr;
1116         struct CitContext *bind_me = NULL;
1117         fd_set readfds;
1118         int retval;
1119         struct CitContext *con= NULL;   /* Temporary context pointer */
1120         struct ServiceFunctionHook *serviceptr;
1121         struct sockaddr_in fsin;        /* Data for master socket */
1122         int alen;                       /* Data for master socket */
1123         int ssock;                      /* Descriptor for client socket */
1124         struct timeval tv;
1125
1126         num_threads++;
1127
1128         cdb_allocate_tsd();
1129
1130         while (!time_to_die) {
1131
1132                 /* 
1133                  * A naive implementation would have all idle threads
1134                  * calling select() and then they'd all wake up at once.  We
1135                  * solve this problem by putting the select() in a critical
1136                  * section, so only one thread has the opportunity to wake
1137                  * up.  If we wake up on a master socket, create a new
1138                  * session context; otherwise, just bind the thread to the
1139                  * context we want and go on our merry way.
1140                  */
1141
1142                 /* make doubly sure we're not holding any stale db handles
1143                  * which might cause a deadlock.
1144                  */
1145                 cdb_release_handles();
1146
1147                 begin_critical_section(S_I_WANNA_SELECT);
1148 SETUP_FD:       memcpy(&readfds, &masterfds, sizeof masterfds);
1149                 highest = masterhighest;
1150                 begin_critical_section(S_SESSION_TABLE);
1151                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1152                         if (ptr->state == CON_IDLE) {
1153                                 FD_SET(ptr->client_socket, &readfds);
1154                                 if (ptr->client_socket > highest)
1155                                         highest = ptr->client_socket;
1156                         }
1157                 }
1158                 end_critical_section(S_SESSION_TABLE);
1159
1160                 tv.tv_sec = 1;          /* wake up every second if no input */
1161                 tv.tv_usec = 0;
1162
1163                 do_select:
1164                 if (!time_to_die)
1165                         retval = select(highest + 1, &readfds, NULL, NULL, &tv);
1166                 else {
1167                         end_critical_section(S_I_WANNA_SELECT);
1168                         break;
1169                 }
1170
1171                 /* Now figure out who made this select() unblock.
1172                  * First, check for an error or exit condition.
1173                  */
1174                 if (retval < 0) {
1175                         if (errno != EINTR) {
1176                                 lprintf(9, "Exiting (%s)\n", strerror(errno));
1177                                 time_to_die = 1;
1178                         } else if (!time_to_die)
1179                                 goto do_select;
1180                 }
1181
1182                 /* Next, check to see if it's a new client connecting
1183                  * on a master socket.
1184                  */
1185                 else for (serviceptr = ServiceHookTable; serviceptr != NULL;
1186                      serviceptr = serviceptr->next ) {
1187
1188                         if (FD_ISSET(serviceptr->msock, &readfds)) {
1189                                 alen = sizeof fsin;
1190                                 ssock = accept(serviceptr->msock,
1191                                         (struct sockaddr *)&fsin, &alen);
1192                                 if (ssock < 0) {
1193                                         lprintf(2, "citserver: accept(): %s\n",
1194                                                 strerror(errno));
1195                                 }
1196                                 else {
1197                                         lprintf(7, "citserver: "
1198                                                 "New client socket %d\n",
1199                                                 ssock);
1200
1201                                         /* New context will be created already
1202                                         * set up in the CON_EXECUTING state.
1203                                         */
1204                                         con = CreateNewContext();
1205
1206                                         /* Assign new socket number to it. */
1207                                         con->client_socket = ssock;
1208                                         con->h_command_function =
1209                                                 serviceptr->h_command_function;
1210
1211                                         /* Determine whether local socket */
1212                                         if (serviceptr->sockpath != NULL)
1213                                                 con->is_local_socket = 1;
1214         
1215                                         /* Set the SO_REUSEADDR socket option */
1216                                         i = 1;
1217                                         setsockopt(ssock, SOL_SOCKET,
1218                                                 SO_REUSEADDR,
1219                                                 &i, sizeof(i));
1220
1221                                         become_session(con);
1222                                         begin_session(con);
1223                                         serviceptr->h_greeting_function();
1224                                         become_session(NULL);
1225                                         con->state = CON_IDLE;
1226                                         goto SETUP_FD;
1227                                 }
1228                         }
1229                 }
1230
1231                 /* If the rescan pipe went active, someone is telling this
1232                  * thread that the &readfds needs to be refreshed with more
1233                  * current data.
1234                  */
1235                 if (time_to_die) {
1236                         end_critical_section(S_I_WANNA_SELECT);
1237                         break;
1238                 }
1239
1240                 if (FD_ISSET(rescan[0], &readfds)) {
1241                         read(rescan[0], &junk, 1);
1242                         goto SETUP_FD;
1243                 }
1244
1245                 /* It must be a client socket.  Find a context that has data
1246                  * waiting on its socket *and* is in the CON_IDLE state.
1247                  */
1248                 else {
1249                         bind_me = NULL;
1250                         begin_critical_section(S_SESSION_TABLE);
1251                         for (ptr = ContextList;
1252                             ( (ptr != NULL) && (bind_me == NULL) );
1253                             ptr = ptr->next) {
1254                                 if ( (FD_ISSET(ptr->client_socket, &readfds))
1255                                    && (ptr->state == CON_IDLE) ) {
1256                                         bind_me = ptr;
1257                                 }
1258                         }
1259                         if (bind_me != NULL) {
1260                                 /* Found one.  Stake a claim to it before
1261                                  * letting anyone else touch the context list.
1262                                  */
1263                                 bind_me->state = CON_EXECUTING;
1264                         }
1265
1266                         end_critical_section(S_SESSION_TABLE);
1267                         end_critical_section(S_I_WANNA_SELECT);
1268
1269                         /* We're bound to a session, now do *one* command */
1270                         if (bind_me != NULL) {
1271                                 become_session(bind_me);
1272                                 CC->h_command_function();
1273                                 become_session(NULL);
1274                                 bind_me->state = CON_IDLE;
1275                                 if (bind_me->kill_me == 1) {
1276                                         RemoveContext(bind_me);
1277                                 } 
1278                                 write(rescan[1], &junk, 1);
1279                         }
1280
1281                 }
1282                 dead_session_purge();
1283                 if ((time(NULL) - last_timer) > 60L) {
1284                         last_timer = time(NULL);
1285                         cdb_release_handles(); /* suggested by Justin Case */
1286                         PerformSessionHooks(EVT_TIMER);
1287                 }
1288
1289                 check_sched_shutdown();
1290         }
1291
1292         /* If control reaches this point, the server is shutting down */        
1293         --num_threads;
1294         return NULL;
1295 }
1296
1297
1298