8c9a12b212ab33f692db035c152d2ec21d3ae15b
[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 = 3;                              /* Logging level */
71
72 struct CitContext masterCC;
73
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 static pthread_t main_thread_id;
179
180 #ifndef HAVE_PTHREAD_CANCEL
181 /*
182  * signal handler to fake thread cancellation; only required on BSDI as far
183  * as I know.
184  */
185 static RETSIGTYPE cancel_thread(int signum) {
186         pthread_exit(NULL);
187         }
188 #endif
189
190 /*
191  * we used to use master_cleanup() as a signal handler to shut down the server.
192  * however, master_cleanup() and the functions it calls do some things that
193  * aren't such a good idea to do from a signal handler: acquiring mutexes,
194  * playing with signal masks on BSDI systems, etc. so instead we install the
195  * following signal handler to set a global variable to inform the main loop
196  * that it's time to call master_cleanup() and exit.
197  */
198
199 static volatile int time_to_die = 0;
200
201 static RETSIGTYPE signal_cleanup(int signum) {
202         time_to_die = 1;
203         }
204
205
206 /*
207  * Some initialization stuff...
208  */
209 void init_sysdep(void) {
210         int a;
211
212         /* Set up a bunch of semaphores to be used for critical sections */
213         for (a=0; a<MAX_SEMAPHORES; ++a) {
214                 pthread_mutex_init(&Critters[a], NULL);
215                 }
216
217         /*
218          * Set up a place to put thread-specific data.
219          * We only need a single pointer per thread - it points to the
220          * thread's CitContext structure in the ContextList linked list.
221          */
222         if (pthread_key_create(&MyConKey, NULL) != 0) {
223                 lprintf(1, "Can't create TSD key!!  %s\n", strerror(errno));
224                 }
225
226         /*
227          * The action for unexpected signals and exceptions should be to
228          * call signal_cleanup() to gracefully shut down the server.
229          */
230         signal(SIGINT, signal_cleanup);
231         signal(SIGQUIT, signal_cleanup);
232         signal(SIGHUP, signal_cleanup);
233         signal(SIGTERM, signal_cleanup);
234         signal(SIGPIPE, SIG_IGN);
235         main_thread_id = pthread_self();
236 #ifndef HAVE_PTHREAD_CANCEL /* fake it - only BSDI afaik */
237         signal(SIGUSR1, cancel_thread);
238 #endif
239         }
240
241
242 /*
243  * Obtain a semaphore lock to begin a critical section.
244  */
245 void begin_critical_section(int which_one)
246 {
247 #ifdef HAVE_PTHREAD_CANCEL
248         int oldval;
249 #else
250         sigset_t set;
251 #endif
252
253         /* lprintf(8, "begin_critical_section(%d)\n", which_one); */
254
255         if (!pthread_equal(pthread_self(), main_thread_id)) {
256                 /* Keep a count of how many critical sections this thread has
257                  * open, so that end_critical_section() doesn't enable
258                  * cancellation prematurely. */
259                 CC->n_crit++;
260 #ifdef HAVE_PTHREAD_CANCEL
261                 /* Don't get interrupted during the critical section */
262                 pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldval);
263 #else
264                 /* We're faking cancellation with signals. Block SIGUSR1 while
265                  * we're in the critical section. */
266                 sigemptyset(&set);
267                 sigaddset(&set, SIGUSR1);
268                 pthread_sigmask(SIG_BLOCK, &set, NULL);
269 #endif
270                 }
271
272         /* Obtain a semaphore */
273         pthread_mutex_lock(&Critters[which_one]);
274
275         }
276
277 /*
278  * Release a semaphore lock to end a critical section.
279  */
280 void end_critical_section(int which_one)
281 {
282 #ifdef HAVE_PTHREAD_CANCEL
283         int oldval;
284 #else
285         sigset_t set;
286 #endif
287
288         /* lprintf(8, "  end_critical_section(%d)\n", which_one); */
289
290         /* Let go of the semaphore */
291         pthread_mutex_unlock(&Critters[which_one]);
292
293         if (!pthread_equal(pthread_self(), main_thread_id))
294         if (!--CC->n_crit) {
295 #ifdef HAVE_PTHREAD_CANCEL
296                 /* If a cancel was sent during the critical section, do it now.
297                  * Then re-enable thread cancellation.
298                  */
299                 pthread_testcancel();
300                 pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &oldval);
301                 pthread_testcancel();
302 #else
303                 /* We're faking it. Unblock SIGUSR1; signals sent during the
304                  * critical section should now be able to kill us. */
305                 sigemptyset(&set);
306                 sigaddset(&set, SIGUSR1);
307                 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
308 #endif
309                 }
310
311         }
312
313
314
315 /*
316  * This is a generic function to set up a master socket for listening on
317  * a TCP port.  The server shuts down if the bind fails.
318  */
319 int ig_tcp_server(int port_number, int queue_len)
320 {
321         struct sockaddr_in sin;
322         int s, i;
323
324         memset(&sin, 0, sizeof(sin));
325         sin.sin_family = AF_INET;
326         sin.sin_addr.s_addr = INADDR_ANY;
327
328         if (port_number == 0) {
329                 lprintf(1,
330                         "citserver: No port number specified.  Run setup.\n");
331                 exit(1);
332                 }
333         
334         sin.sin_port = htons((u_short)port_number);
335
336         s = socket(PF_INET, SOCK_STREAM, (getprotobyname("tcp")->p_proto));
337         if (s < 0) {
338                 lprintf(1, "citserver: Can't create a socket: %s\n",
339                         strerror(errno));
340                 exit(errno);
341                 }
342
343         /* Set the SO_REUSEADDR socket option, because it makes sense. */
344         i = 1;
345         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &i, sizeof(i));
346
347         if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
348                 lprintf(1, "citserver: Can't bind: %s\n", strerror(errno));
349                 exit(errno);
350                 }
351
352         if (listen(s, queue_len) < 0) {
353                 lprintf(1, "citserver: Can't listen: %s\n", strerror(errno));
354                 exit(errno);
355                 }
356
357         return(s);
358         }
359
360
361 /*
362  * Return a pointer to a thread's own CitContext structure (old)
363  * NOTE: this version of MyContext() is commented out because it is no longer
364  * in use.  It was written before I discovered TSD keys.  This
365  * version pounds through the context list until it finds the one matching
366  * the currently running thread.  It remains here, commented out, in case it
367  * is needed for future ports to threading libraries which have the equivalent
368  * of pthread_self() but not pthread_key_create() and its ilk.
369  *
370  * struct CitContext *MyContext() {
371  *      struct CitContext *ptr;
372  *      THREAD me;
373  *
374  *      me = pthread_self();
375  *      for (ptr=ContextList; ptr!=NULL; ptr=ptr->next) {
376  *              if (ptr->mythread == me) return(ptr);
377  *              }
378  *      return(NULL);
379  *      }
380  */
381
382 /*
383  * Return a pointer to a thread's own CitContext structure (new)
384  */
385 struct CitContext *MyContext(void) {
386         struct CitContext *retCC;
387         retCC = (struct CitContext *) pthread_getspecific(MyConKey);
388         if (retCC == NULL) retCC = &masterCC;
389         return(retCC);
390         }
391
392
393 /*
394  * Wedge our way into the context list.
395  */
396 struct CitContext *CreateNewContext(void) {
397         struct CitContext *me;
398
399         me = (struct CitContext *) mallok(sizeof(struct CitContext));
400         if (me == NULL) {
401                 lprintf(1, "citserver: can't allocate memory!!\n");
402                 pthread_exit(NULL);
403                 }
404         memset(me, 0, sizeof(struct CitContext));
405
406         begin_critical_section(S_SESSION_TABLE);
407         me->next = ContextList;
408         ContextList = me;
409         end_critical_section(S_SESSION_TABLE);
410         return(me);
411         }
412
413 /*
414  * Add a thread's thread ID to the context
415  */
416 void InitMyContext(struct CitContext *con)
417 {
418 #ifdef HAVE_PTHREAD_CANCEL
419         int oldval;
420 #endif
421
422         con->mythread = pthread_self();
423 #ifdef HAVE_PTHREAD_CANCEL
424         pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &oldval);
425         pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &oldval);
426 #endif
427         if (pthread_setspecific(MyConKey, (void *)con) != 0) {
428                 lprintf(1, "ERROR!  pthread_setspecific() failed: %s\n",
429                         strerror(errno));
430                 }
431         }
432
433 /*
434  * Remove a context from the context list.
435  */
436 void RemoveContext(struct CitContext *con)
437 {
438         struct CitContext *ptr;
439
440         lprintf(7, "Starting RemoveContext()\n");
441         if (con==NULL) {
442                 lprintf(7, "WARNING: RemoveContext() called with null!\n");
443                 return;
444                 }
445
446         /*
447          * session_count() starts its own S_SESSION_TABLE critical section;
448          * so do not call it from within this loop.
449          */
450         begin_critical_section(S_SESSION_TABLE);
451         lprintf(7, "Closing socket %d\n", con->client_socket);
452         close(con->client_socket);
453
454         if (ContextList==con) {
455                 ContextList = ContextList->next;
456                 }
457         else {
458                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
459                         if (ptr->next == con) {
460                                 ptr->next = con->next;
461                                 }
462                         }
463                 }
464
465         phree(con);
466         end_critical_section(S_SESSION_TABLE);
467         lprintf(7, "Done with RemoveContext\n");
468         }
469
470
471 /*
472  * Return the number of sessions currently running.
473  * (This should probably be moved out of sysdep.c)
474  */
475 int session_count(void) {
476         struct CitContext *ptr;
477         int TheCount = 0;
478
479         begin_critical_section(S_SESSION_TABLE);
480         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
481                 ++TheCount;
482                 }
483         end_critical_section(S_SESSION_TABLE);
484
485         return(TheCount);
486         }
487
488
489 /*
490  * client_write()   ...    Send binary data to the client.
491  */
492 void client_write(char *buf, int nbytes)
493 {
494         int bytes_written = 0;
495         int retval;
496         while (bytes_written < nbytes) {
497                 retval = write(CC->client_socket, &buf[bytes_written],
498                         nbytes - bytes_written);
499                 if (retval < 1) {
500                         lprintf(2, "client_write() failed: %s\n",
501                                 strerror(errno));
502                         cleanup(errno);
503                         }
504                 bytes_written = bytes_written + retval;
505                 }
506         }
507
508
509 /*
510  * cprintf()  ...   Send formatted printable data to the client.   It is
511  *                  implemented in terms of client_write() but remains in
512  *                  sysdep.c in case we port to somewhere without va_args...
513  */
514 void cprintf(const char *format, ...) {   
515         va_list arg_ptr;   
516         char buf[256];   
517    
518         va_start(arg_ptr, format);   
519         if (vsnprintf(buf, sizeof buf, format, arg_ptr) == -1)
520                 buf[sizeof buf - 2] = '\n';
521         client_write(buf, strlen(buf)); 
522         va_end(arg_ptr);
523         }   
524
525
526 /*
527  * Read data from the client socket.
528  * Return values are:
529  *      1       Requested number of bytes has been read.
530  *      0       Request timed out.
531  * If the socket breaks, the session is immediately terminated.
532  */
533 int client_read_to(char *buf, int bytes, int timeout)
534 {
535         int len,rlen;
536         fd_set rfds;
537         struct timeval tv;
538         int retval;
539
540         len = 0;
541         while(len<bytes) {
542                 FD_ZERO(&rfds);
543                 FD_SET(CC->client_socket, &rfds);
544                 tv.tv_sec = timeout;
545                 tv.tv_usec = 0;
546
547                 retval = select( (CC->client_socket)+1, 
548                                         &rfds, NULL, NULL, &tv);
549                 if (FD_ISSET(CC->client_socket, &rfds) == 0) {
550                         return(0);
551                         }
552
553                 rlen = read(CC->client_socket, &buf[len], bytes-len);
554                 if (rlen<1) {
555                         lprintf(2, "client_read() failed: %s\n",
556                                 strerror(errno));
557                         cleanup(errno);
558                         }
559                 len = len + rlen;
560                 }
561         return(1);
562         }
563
564 /*
565  * Read data from the client socket with default timeout.
566  * (This is implemented in terms of client_read_to() and could be
567  * justifiably moved out of sysdep.c)
568  */
569 int client_read(char *buf, int bytes)
570 {
571         return(client_read_to(buf, bytes, config.c_sleeping));
572         }
573
574
575 /*
576  * client_gets()   ...   Get a LF-terminated line of text from the client.
577  * (This is implemented in terms of client_read() and could be
578  * justifiably moved out of sysdep.c)
579  */
580 int client_gets(char *buf)
581 {
582         int i, retval;
583
584         /* Read one character at a time.
585          */
586         for (i = 0;;i++) {
587                 retval = client_read(&buf[i], 1);
588                 if (retval != 1 || buf[i] == '\n' || i == 255)
589                         break;
590                 }
591
592         /* If we got a long line, discard characters until the newline.
593          */
594         if (i == 255)
595                 while (buf[i] != '\n' && retval == 1)
596                         retval = client_read(&buf[i], 1);
597
598         /* Strip the trailing newline and any trailing nonprintables (cr's)
599          */
600         buf[i] = 0;
601         while ((strlen(buf)>0)&&(!isprint(buf[strlen(buf)-1])))
602                 buf[strlen(buf)-1] = 0;
603         return(retval);
604         }
605
606
607
608 /*
609  * The system-dependent part of master_cleanup() - close the master socket.
610  */
611 void sysdep_master_cleanup(void) {
612         lprintf(7, "Closing master socket %d\n", msock);
613         close(msock);
614         }
615
616 /*
617  * Cleanup routine to be called when one thread is shutting down.
618  */
619 void cleanup(int exit_code)
620 {
621         /* Terminate the thread.
622          * Its cleanup handler will call cleanup_stuff()
623          */
624         lprintf(7, "Calling pthread_exit()\n");
625         pthread_exit(NULL);
626         }
627
628 /*
629  * Terminate another session.
630  */
631 void kill_session(int session_to_kill) {
632         struct CitContext *ptr;
633         THREAD killme = 0;
634
635         begin_critical_section(S_SESSION_TABLE);
636         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
637                 if (ptr->cs_pid == session_to_kill) {
638                         killme = ptr->mythread;
639                         }
640                 }
641         end_critical_section(S_SESSION_TABLE);
642
643         if (killme != 0) {
644 #ifdef HAVE_PTHREAD_CANCEL
645                 pthread_cancel(killme);
646 #else
647                 pthread_kill(killme, SIGUSR1);
648 #ifdef __FreeBSD__
649                 /* there's a very stupid bug in the user threads package on
650                    FreeBSD 3.1 which prevents a signal from being properly
651                    dispatched to a thread that's in a blocking syscall. the
652                    first signal interrupts the syscall, the second one actually
653                    gets delivered. */
654                 pthread_kill(killme, SIGUSR1);
655 #endif
656 #endif
657                 }
658         }
659
660
661 /*
662  * The system-dependent wrapper around the main context loop.
663  */
664 void *sd_context_loop(struct CitContext *con) {
665         pthread_cleanup_push(*cleanup_stuff, NULL);
666         context_loop(con);
667         pthread_cleanup_pop(0);
668         return NULL;
669         }
670
671
672 /*
673  * Start running as a daemon.  Only close stdio if do_close_stdio is set.
674  */
675 void start_daemon(int do_close_stdio) {
676         if (do_close_stdio) {
677                 /* close(0); */
678                 close(1);
679                 close(2);
680                 }
681         signal(SIGHUP,SIG_IGN);
682         signal(SIGINT,SIG_IGN);
683         signal(SIGQUIT,SIG_IGN);
684         if (fork()!=0) exit(0);
685         }
686
687
688
689 /*
690  * Tie in to the 'netsetup' program.
691  *
692  * (We're going to hope that netsetup never feeds more than 4096 bytes back.)
693  */
694 void cmd_nset(char *cmdbuf)
695 {
696         int retcode;
697         char fbuf[4096];
698         FILE *netsetup;
699         int ch;
700         int a, b;
701         char netsetup_args[3][256];
702
703         if (CC->usersupp.axlevel < 6) {
704                 cprintf("%d Higher access required.\n", 
705                         ERROR + HIGHER_ACCESS_REQUIRED);
706                 return;
707                 }
708
709         for (a=1; a<=3; ++a) {
710                 if (num_parms(cmdbuf) >= a) {
711                         extract(netsetup_args[a-1], cmdbuf, a-1);
712                         for (b=0; b<strlen(netsetup_args[a-1]); ++b) {
713                                 if (netsetup_args[a-1][b] == 34) {
714                                         netsetup_args[a-1][b] = '_';
715                                         }
716                                 }
717                         }
718                 else {
719                         netsetup_args[a-1][0] = 0;
720                         }
721                 }
722
723         sprintf(fbuf, "./netsetup \"%s\" \"%s\" \"%s\" </dev/null 2>&1",
724                 netsetup_args[0], netsetup_args[1], netsetup_args[2]);
725         netsetup = popen(fbuf, "r");
726         if (netsetup == NULL) {
727                 cprintf("%d %s\n", ERROR, strerror(errno));
728                 return;
729                 }
730
731         fbuf[0] = 0;
732         while (ch = getc(netsetup), (ch > 0)) {
733                 fbuf[strlen(fbuf)+1] = 0;
734                 fbuf[strlen(fbuf)] = ch;
735                 }
736
737         retcode = pclose(netsetup);
738
739         if (retcode != 0) {
740                 for (a=0; a<strlen(fbuf); ++a) {
741                         if (fbuf[a] < 32) fbuf[a] = 32;
742                         }
743                 fbuf[245] = 0;
744                 cprintf("%d %s\n", ERROR, fbuf);
745                 return;
746                 }
747
748         cprintf("%d Command succeeded.  Output follows:\n", LISTING_FOLLOWS);
749         cprintf("%s", fbuf);
750         if (fbuf[strlen(fbuf)-1] != 10) cprintf("\n");
751         cprintf("000\n");
752         }
753
754
755
756 /*
757  * Generic routine to convert a login name to a full name (gecos)
758  * Returns nonzero if a conversion took place
759  */
760 int convert_login(char NameToConvert[]) {
761         struct passwd *pw;
762         int a;
763
764         pw = getpwnam(NameToConvert);
765         if (pw == NULL) {
766                 return(0);
767                 }
768         else {
769                 strcpy(NameToConvert, pw->pw_gecos);
770                 for (a=0; a<strlen(NameToConvert); ++a) {
771                         if (NameToConvert[a] == ',') NameToConvert[a] = 0;
772                         }
773                 return(1);
774                 }
775         }
776
777
778
779
780         
781
782 /*
783  * Here's where it all begins.
784  */
785 int main(int argc, char **argv)
786 {
787         struct sockaddr_in fsin;        /* Data for master socket */
788         int alen;                       /* Data for master socket */
789         int ssock;                      /* Descriptor for master socket */
790         THREAD SessThread;              /* Thread descriptor */
791         THREAD HousekeepingThread;      /* Thread descriptor */
792         pthread_attr_t attr;            /* Thread attributes */
793         struct CitContext *con;         /* Temporary context pointer */
794         char tracefile[128];            /* Name of file to log traces to */
795         int a, i;                       /* General-purpose variables */
796         fd_set readfds;
797         struct timeval tv;
798         struct passwd *pw;
799         int drop_root_perms = 1;
800         char *moddir;
801         
802         /* specify default port name and trace file */
803         strcpy(tracefile, "");
804
805         /* parse command-line arguments */
806         for (a=1; a<argc; ++a) {
807
808                 /* -t specifies where to log trace messages to */
809                 if (!strncmp(argv[a], "-t", 2)) {
810                         strcpy(tracefile, argv[a]);
811                         strcpy(tracefile, &tracefile[2]);
812                         freopen(tracefile, "r", stdin);
813                         freopen(tracefile, "w", stdout);
814                         freopen(tracefile, "w", stderr);
815                         }
816
817                 /* run in the background if -d was specified */
818                 else if (!strcmp(argv[a], "-d")) {
819                         start_daemon( (strlen(tracefile) > 0) ? 0 : 1 ) ;
820                         }
821
822                 /* -x specifies the desired logging level */
823                 else if (!strncmp(argv[a], "-x", 2)) {
824                         verbosity = atoi(&argv[a][2]);
825                         }
826
827                 else if (!strncmp(argv[a], "-h", 2)) {
828                         safestrncpy(bbs_home_directory, &argv[a][2],
829                                     sizeof bbs_home_directory);
830                         home_specified = 1;
831                         }
832
833                 else if (!strncmp(argv[a], "-f", 2)) {
834                         do_defrag = 1;
835                         }
836
837                 /* -r tells the server not to drop root permissions. don't use
838                  * this unless you know what you're doing. this should be
839                  * removed in the next release if it proves unnecessary. */
840                 else if (!strcmp(argv[a], "-r"))
841                         drop_root_perms = 0;
842
843                 /* any other parameter makes it crash and burn */
844                 else {
845                         lprintf(1,      "citserver: usage: "
846                                         "citserver [-tTraceFile] [-d] [-f]"
847                                         " [-xLogLevel] [-hHomeDir]\n");
848                         exit(1);
849                         }
850
851                 }
852
853         /* Tell 'em who's in da house */
854         lprintf(1,
855 "\nMultithreaded message server for Citadel/UX\n"
856 "Copyright (C) 1987-1999 by the Citadel/UX development team.\n"
857 "Citadel/UX is free software, covered by the GNU General Public License, and\n"
858 "you are welcome to change it and/or distribute copies of it under certain\n"
859 "conditions.  There is absolutely no warranty for this software.  Please\n"
860 "read the 'COPYING.txt' file for details.\n\n");
861
862         /* Initialize... */
863         init_sysdep();
864         openlog("citserver",LOG_PID,LOG_USER);
865         /* Load site-specific parameters */
866         lprintf(7, "Loading citadel.config\n");
867         get_config();
868
869         /*
870          * Bind the server to our favourite port.
871          * There is no need to check for errors, because ig_tcp_server()
872          * exits if it doesn't succeed.
873          */
874         lprintf(7, "Attempting to bind to port %d...\n", config.c_port_number);
875         msock = ig_tcp_server(config.c_port_number, 5);
876         lprintf(7, "Listening on socket %d\n", msock);
877
878         /*
879          * Now that we've bound the socket, change to the BBS user id and its
880          * corresponding group ids
881          */
882         if (drop_root_perms) {
883                 if ((pw = getpwuid(BBSUID)) == NULL)
884                         lprintf(1, "WARNING: getpwuid(%d): %s\n"
885                                    "Group IDs will be incorrect.\n", BBSUID,
886                                 strerror(errno));
887                 else {
888                         initgroups(pw->pw_name, pw->pw_gid);
889                         if (setgid(pw->pw_gid))
890                                 lprintf(3, "setgid(%d): %s\n", pw->pw_gid,
891                                         strerror(errno));
892                         }
893                 lprintf(7, "Changing uid to %d\n", BBSUID);
894                 if (setuid(BBSUID) != 0) {
895                         lprintf(3, "setuid() failed: %s\n", strerror(errno));
896                         }
897                 }
898
899         /*
900          * Do non system dependent startup functions.
901          */
902         master_startup();
903
904         /*
905          * Load any server-side modules (plugins) available here.
906          */
907         lprintf(7, "Initializing loadable modules\n");
908         if ((moddir = malloc(strlen(bbs_home_directory) + 9)) != NULL) {
909                 sprintf(moddir, "%s/modules", bbs_home_directory);
910                 DLoader_Init(moddir);
911                 free(moddir);
912                 }
913
914         lprintf(7, "Starting housekeeper thread\n");
915         pthread_attr_init(&attr);
916         pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
917         if (pthread_create(&HousekeepingThread, &attr,
918            (void* (*)(void*)) housekeeping_loop, NULL) != 0) {
919                 lprintf(1, "Can't create housekeeping thead: %s\n",
920                         strerror(errno));
921         }
922
923         /* 
924          * Endless loop.  Listen on the master socket.  When a connection
925          * comes in, create a socket, a context, and a thread.
926          */     
927         while (!time_to_die) {
928                 /* we need to check if a signal has been delivered. because
929                  * syscalls may be restartable across signals, we call
930                  * select with a timeout of 1 second and repeatedly check for
931                  * time_to_die... */
932                 FD_ZERO(&readfds);
933                 FD_SET(msock, &readfds);
934                 tv.tv_sec = 1;
935                 tv.tv_usec = 0;
936                 if (select(msock + 1, &readfds, NULL, NULL, &tv) <= 0)
937                         continue;
938                 alen = sizeof fsin;
939                 ssock = accept(msock, (struct sockaddr *)&fsin, &alen);
940                 if (ssock < 0) {
941                         lprintf(2, "citserver: accept() failed: %s\n",
942                                 strerror(errno));
943                         }
944                 else {
945                         lprintf(7, "citserver: Client socket %d\n", ssock);
946                         con = CreateNewContext();
947                         con->client_socket = ssock;
948
949                         /* Set the SO_REUSEADDR socket option */
950                         i = 1;
951                         setsockopt(ssock, SOL_SOCKET, SO_REUSEADDR,
952                                 &i, sizeof(i));
953
954                         /* set attributes for the new thread */
955                         pthread_attr_init(&attr);
956                         pthread_attr_setdetachstate(&attr,
957                                 PTHREAD_CREATE_DETACHED);
958
959                         /* now create the thread */
960                         if (pthread_create(&SessThread, &attr,
961                                            (void* (*)(void*)) sd_context_loop,
962                                            con)
963                             != 0) {
964                                 lprintf(1,
965                                         "citserver: can't create thread: %s\n",
966                                         strerror(errno));
967                                 }
968
969                         }
970                 }
971         master_cleanup();
972         return 0;
973         }
974