* modules registering serverports now need to specify a plaintext name.
[citadel.git] / citadel / sysdep.c
1 /*
2  * $Id$
3  *
4  * Citadel "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 #include "sysdep.h"
16 #include <stdlib.h>
17 #include <unistd.h>
18 #include <stdio.h>
19 #include <fcntl.h>
20 #include <ctype.h>
21 #include <signal.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <sys/wait.h>
25 #include <sys/socket.h>
26 #include <syslog.h>
27 #include <sys/syslog.h>
28
29 #if TIME_WITH_SYS_TIME
30 # include <sys/time.h>
31 # include <time.h>
32 #else
33 # if HAVE_SYS_TIME_H
34 #  include <sys/time.h>
35 # else
36 #  include <time.h>
37 # endif
38 #endif
39
40 #include <limits.h>
41 #include <sys/resource.h>
42 #include <netinet/in.h>
43 #include <netinet/tcp.h>
44 #include <arpa/inet.h>
45 #include <netdb.h>
46 #include <sys/un.h>
47 #include <string.h>
48 #include <pwd.h>
49 #include <errno.h>
50 #include <stdarg.h>
51 #include <grp.h>
52 #ifdef HAVE_PTHREAD_H
53 #include <pthread.h>
54 #endif
55 #include "citadel.h"
56 #include "server.h"
57 #include "sysdep_decls.h"
58 #include "citserver.h"
59 #include "support.h"
60 #include "config.h"
61 #include "database.h"
62 #include "housekeeping.h"
63 #include "tools.h"
64 #include "modules/crypto/serv_crypto.h" /* Needed for init_ssl, client_write_ssl, client_read_ssl, destruct_ssl */
65 #include "ecrash.h"
66
67 #ifdef HAVE_SYS_SELECT_H
68 #include <sys/select.h>
69 #endif
70
71 #ifndef HAVE_SNPRINTF
72 #include "snprintf.h"
73 #endif
74
75
76 #ifdef DEBUG_MEMORY_LEAKS
77 struct igheap {
78         struct igheap *next;
79         char file[32];
80         int line;
81         void *block;
82 };
83
84 struct igheap *igheap = NULL;
85 #endif
86
87
88 pthread_mutex_t Critters[MAX_SEMAPHORES];       /* Things needing locking */
89 pthread_key_t MyConKey;                         /* TSD key for MyContext() */
90
91 int verbosity = DEFAULT_VERBOSITY;              /* Logging level */
92
93 struct CitContext masterCC;
94 time_t last_purge = 0;                          /* Last dead session purge */
95 static int num_threads = 0;                     /* Current number of threads */
96 int num_sessions = 0;                           /* Current number of sessions */
97
98 int syslog_facility = LOG_DAEMON;
99 int enable_syslog = 0;
100
101 void DestroyWorkerList(void);
102
103 /*
104  * lprintf()  ...   Write logging information
105  */
106 void lprintf(enum LogLevel loglevel, const char *format, ...) {   
107         va_list arg_ptr;
108         char buf[SIZ], buf2[SIZ];
109
110         if (enable_syslog) {
111                 va_start(arg_ptr, format);
112                         vsyslog((syslog_facility | loglevel), format, arg_ptr);
113                 va_end(arg_ptr);
114         }
115
116         /* stderr output code */
117         if (enable_syslog || running_as_daemon) return;
118
119         /* if we run in forground and syslog is disabled, log to terminal */
120         if (loglevel <= verbosity) { 
121                 struct timeval tv;
122                 struct tm tim;
123                 time_t unixtime;
124
125                 gettimeofday(&tv, NULL);
126                 /* Promote to time_t; types differ on some OSes (like darwin) */
127                 unixtime = tv.tv_sec;
128                 localtime_r(&unixtime, &tim);
129                 if (CC->cs_pid != 0) {
130                         sprintf(buf,
131                                 "%04d/%02d/%02d %2d:%02d:%02d.%06ld [%3d] ",
132                                 tim.tm_year + 1900, tim.tm_mon + 1,
133                                 tim.tm_mday, tim.tm_hour, tim.tm_min,
134                                 tim.tm_sec, (long)tv.tv_usec,
135                                 CC->cs_pid);
136                 } else {
137                         sprintf(buf,
138                                 "%04d/%02d/%02d %2d:%02d:%02d.%06ld ",
139                                 tim.tm_year + 1900, tim.tm_mon + 1,
140                                 tim.tm_mday, tim.tm_hour, tim.tm_min,
141                                 tim.tm_sec, (long)tv.tv_usec);
142                 }
143                 va_start(arg_ptr, format);   
144                         vsprintf(buf2, format, arg_ptr);   
145                 va_end(arg_ptr);   
146
147                 fprintf(stderr, "%s%s", buf, buf2);
148                 fflush(stderr);
149         }
150 }   
151
152
153
154 /*
155  * Signal handler to shut down the server.
156  */
157
158 volatile int time_to_die = 0;
159 volatile int shutdown_and_halt = 0;
160 volatile int restart_server = 0;
161 volatile int running_as_daemon = 0;
162
163 static RETSIGTYPE signal_cleanup(int signum) {
164         lprintf(CTDL_DEBUG, "Caught signal %d; shutting down.\n", signum);
165         time_to_die = 1;
166         master_cleanup(signum);
167 }
168
169
170
171
172 void InitialiseSemaphores(void)
173 {
174         int i;
175
176         /* Set up a bunch of semaphores to be used for critical sections */
177         for (i=0; i<MAX_SEMAPHORES; ++i) {
178                 pthread_mutex_init(&Critters[i], NULL);
179         }
180 }
181
182
183
184 /*
185  * Some initialization stuff...
186  */
187 void init_sysdep(void) {
188         sigset_t set;
189
190         /* Avoid vulnerabilities related to FD_SETSIZE if we can. */
191 #ifdef FD_SETSIZE
192 #ifdef RLIMIT_NOFILE
193         struct rlimit rl;
194         getrlimit(RLIMIT_NOFILE, &rl);
195         rl.rlim_cur = FD_SETSIZE;
196         rl.rlim_max = FD_SETSIZE;
197         setrlimit(RLIMIT_NOFILE, &rl);
198 #endif
199 #endif
200
201         /* If we've got OpenSSL, we're going to use it. */
202 #ifdef HAVE_OPENSSL
203         init_ssl();
204 #endif
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          * CitContext structure (in the ContextList linked list) of the
210          * session to which the calling thread is currently bound.
211          */
212         if (pthread_key_create(&MyConKey, NULL) != 0) {
213                 lprintf(CTDL_CRIT, "Can't create TSD key: %s\n",
214                         strerror(errno));
215         }
216
217         /*
218          * The action for unexpected signals and exceptions should be to
219          * call signal_cleanup() to gracefully shut down the server.
220          */
221         sigemptyset(&set);
222         sigaddset(&set, SIGINT);
223         sigaddset(&set, SIGQUIT);
224         sigaddset(&set, SIGHUP);
225         sigaddset(&set, SIGTERM);
226         // sigaddset(&set, SIGSEGV);    commented out because
227         // sigaddset(&set, SIGILL);     we want core dumps
228         // sigaddset(&set, SIGBUS);
229         sigprocmask(SIG_UNBLOCK, &set, NULL);
230
231         signal(SIGINT, signal_cleanup);
232         signal(SIGQUIT, signal_cleanup);
233         signal(SIGHUP, signal_cleanup);
234         signal(SIGTERM, signal_cleanup);
235         // signal(SIGSEGV, signal_cleanup);     commented out because
236         // signal(SIGILL, signal_cleanup);      we want core dumps
237         // signal(SIGBUS, signal_cleanup);
238
239         /*
240          * Do not shut down the server on broken pipe signals, otherwise the
241          * whole Citadel service would come down whenever a single client
242          * socket breaks.
243          */
244         signal(SIGPIPE, SIG_IGN);
245 }
246
247
248 /*
249  * Obtain a semaphore lock to begin a critical section.
250  */
251 void begin_critical_section(int which_one)
252 {
253         /* lprintf(CTDL_DEBUG, "begin_critical_section(%d)\n", which_one); */
254
255         /* For all types of critical sections except those listed here,
256          * ensure nobody ever tries to do a critical section within a
257          * transaction; this could lead to deadlock.
258          */
259         if (    (which_one != S_FLOORCACHE)
260 #ifdef DEBUG_MEMORY_LEAKS
261                 && (which_one != S_DEBUGMEMLEAKS)
262 #endif
263                 && (which_one != S_RPLIST)
264         ) {
265                 cdb_check_handles();
266         }
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         pthread_mutex_unlock(&Critters[which_one]);
276 }
277
278
279
280 /*
281  * This is a generic function to set up a master socket for listening on
282  * a TCP port.  The server shuts down if the bind fails.
283  *
284  */
285 int ig_tcp_server(char *ip_addr, int port_number, int queue_len, char **errormessage)
286 {
287         struct sockaddr_in sin;
288         int s, i;
289         int actual_queue_len;
290
291         actual_queue_len = queue_len;
292         if (actual_queue_len < 5) actual_queue_len = 5;
293
294         memset(&sin, 0, sizeof(sin));
295         sin.sin_family = AF_INET;
296         sin.sin_port = htons((u_short)port_number);
297         if (ip_addr == NULL) {
298                 sin.sin_addr.s_addr = INADDR_ANY;
299         }
300         else {
301                 sin.sin_addr.s_addr = inet_addr(ip_addr);
302         }
303                                                                                 
304         if (sin.sin_addr.s_addr == !INADDR_ANY) {
305                 sin.sin_addr.s_addr = INADDR_ANY;
306         }
307
308         s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
309
310         if (s < 0) {
311                 *errormessage = (char*) malloc(SIZ + 1);
312                 snprintf(*errormessage, SIZ, 
313                                  "citserver: Can't create a socket: %s",
314                                  strerror(errno));
315                 lprintf(CTDL_EMERG, "%s\n", *errormessage);
316                 return(-1);
317         }
318
319         i = 1;
320         setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &i, sizeof(i));
321
322         if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
323                 *errormessage = (char*) malloc(SIZ + 1);
324                 snprintf(*errormessage, SIZ, 
325                                  "citserver: Can't bind: %s",
326                                  strerror(errno));
327                 lprintf(CTDL_EMERG, "%s\n", *errormessage);
328                 close(s);
329                 return(-1);
330         }
331
332         /* set to nonblock - we need this for some obscure situations */
333         if (fcntl(s, F_SETFL, O_NONBLOCK) < 0) {
334                 *errormessage = (char*) malloc(SIZ + 1);
335                 snprintf(*errormessage, SIZ, 
336                                  "citserver: Can't set socket to non-blocking: %s",
337                                  strerror(errno));
338                 lprintf(CTDL_EMERG, "%s\n", *errormessage);
339                 close(s);
340                 return(-1);
341         }
342
343         if (listen(s, actual_queue_len) < 0) {
344                 *errormessage = (char*) malloc(SIZ + 1);
345                 snprintf(*errormessage, SIZ, 
346                                  "citserver: Can't listen: %s",
347                                  strerror(errno));
348                 lprintf(CTDL_EMERG, "%s\n", *errormessage);
349                 close(s);
350                 return(-1);
351         }
352
353         return(s);
354 }
355
356
357
358 /*
359  * Create a Unix domain socket and listen on it
360  */
361 int ig_uds_server(char *sockpath, int queue_len, char **errormessage)
362 {
363         struct sockaddr_un addr;
364         int s;
365         int i;
366         int actual_queue_len;
367
368         actual_queue_len = queue_len;
369         if (actual_queue_len < 5) actual_queue_len = 5;
370
371         i = unlink(sockpath);
372         if (i != 0) if (errno != ENOENT) {
373                 *errormessage = (char*) malloc(SIZ + 1);
374                 snprintf(*errormessage, SIZ, "citserver: can't unlink %s: %s",
375                         sockpath, strerror(errno));
376                 lprintf(CTDL_EMERG, "%s\n", *errormessage);
377                 return(-1);
378         }
379
380         memset(&addr, 0, sizeof(addr));
381         addr.sun_family = AF_UNIX;
382         safestrncpy(addr.sun_path, sockpath, sizeof addr.sun_path);
383
384         s = socket(AF_UNIX, SOCK_STREAM, 0);
385         if (s < 0) {
386                 *errormessage = (char*) malloc(SIZ + 1);
387                 snprintf(*errormessage, SIZ, 
388                          "citserver: Can't create a socket: %s",
389                          strerror(errno));
390                 lprintf(CTDL_EMERG, "%s\n", *errormessage);
391                 return(-1);
392         }
393
394         if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
395                 *errormessage = (char*) malloc(SIZ + 1);
396                 snprintf(*errormessage, SIZ, 
397                          "citserver: Can't bind: %s",
398                          strerror(errno));
399                 lprintf(CTDL_EMERG, "%s\n", *errormessage);
400                 return(-1);
401         }
402
403         /* set to nonblock - we need this for some obscure situations */
404         if (fcntl(s, F_SETFL, O_NONBLOCK) < 0) {
405                 *errormessage = (char*) malloc(SIZ + 1);
406                 snprintf(*errormessage, SIZ, 
407                          "citserver: Can't set socket to non-blocking: %s",
408                          strerror(errno));
409                 lprintf(CTDL_EMERG, "%s\n", *errormessage);
410                 close(s);
411                 return(-1);
412         }
413
414         if (listen(s, actual_queue_len) < 0) {
415                 *errormessage = (char*) malloc(SIZ + 1);
416                 snprintf(*errormessage, SIZ, 
417                          "citserver: Can't listen: %s",
418                          strerror(errno));
419                 lprintf(CTDL_EMERG, "%s\n", *errormessage);
420                 return(-1);
421         }
422
423         chmod(sockpath, S_ISGID|S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IWGRP|S_IXGRP|S_IROTH|S_IWOTH|S_IXOTH);
424         return(s);
425 }
426
427
428
429 /*
430  * Return a pointer to the CitContext structure bound to the thread which
431  * called this function.  If there's no such binding (for example, if it's
432  * called by the housekeeper thread) then a generic 'master' CC is returned.
433  *
434  * This function is used *VERY* frequently and must be kept small.
435  */
436 struct CitContext *MyContext(void) {
437
438         register struct CitContext *c;
439
440         return ((c = (struct CitContext *) pthread_getspecific(MyConKey),
441                 c == NULL) ? &masterCC : c
442         );
443 }
444
445
446 /*
447  * Initialize a new context and place it in the list.  The session number
448  * used to be the PID (which is why it's called cs_pid), but that was when we
449  * had one process per session.  Now we just assign them sequentially, starting
450  * at 1 (don't change it to 0 because masterCC uses 0).
451  */
452 struct CitContext *CreateNewContext(void) {
453         struct CitContext *me;
454         static int next_pid = 0;
455
456         me = (struct CitContext *) malloc(sizeof(struct CitContext));
457         if (me == NULL) {
458                 lprintf(CTDL_ALERT, "citserver: can't allocate memory!!\n");
459                 return NULL;
460         }
461         memset(me, 0, sizeof(struct CitContext));
462
463         /* The new context will be created already in the CON_EXECUTING state
464          * in order to prevent another thread from grabbing it while it's
465          * being set up.
466          */
467         me->state = CON_EXECUTING;
468
469         /*
470          * Generate a unique session number and insert this context into
471          * the list.
472          */
473         begin_critical_section(S_SESSION_TABLE);
474         me->cs_pid = ++next_pid;
475         me->prev = NULL;
476         me->next = ContextList;
477         ContextList = me;
478         if (me->next != NULL) {
479                 me->next->prev = me;
480         }
481         ++num_sessions;
482         end_critical_section(S_SESSION_TABLE);
483         return(me);
484 }
485
486
487 /*
488  * The following functions implement output buffering. If the kernel supplies
489  * native TCP buffering (Linux & *BSD), use that; otherwise, emulate it with
490  * user-space buffering.
491  */
492 #ifndef HAVE_DARWIN
493 #ifdef TCP_CORK
494 #       define HAVE_TCP_BUFFERING
495 #else
496 #       ifdef TCP_NOPUSH
497 #               define HAVE_TCP_BUFFERING
498 #               define TCP_CORK TCP_NOPUSH
499 #       endif
500 #endif /* TCP_CORK */
501 #endif /* HAVE_DARWIN */
502
503 #ifdef HAVE_TCP_BUFFERING
504 static unsigned on = 1, off = 0;
505 void buffer_output(void) {
506         struct CitContext *ctx = MyContext();
507         setsockopt(ctx->client_socket, IPPROTO_TCP, TCP_CORK, &on, 4);
508         ctx->buffering = 1;
509 }
510
511 void unbuffer_output(void) {
512         struct CitContext *ctx = MyContext();
513         setsockopt(ctx->client_socket, IPPROTO_TCP, TCP_CORK, &off, 4);
514         ctx->buffering = 0;
515 }
516
517 void flush_output(void) {
518         struct CitContext *ctx = MyContext();
519         setsockopt(ctx->client_socket, IPPROTO_TCP, TCP_CORK, &off, 4);
520         setsockopt(ctx->client_socket, IPPROTO_TCP, TCP_CORK, &on, 4);
521 }
522 #else 
523 #ifdef HAVE_DARWIN
524 /* Stub functions for Darwin/OS X where TCP buffering isn't liked at all */
525 void buffer_output(void) {
526         CC->buffering = 0;
527 }
528 void unbuffer_output(void) {
529         CC->buffering = 0;
530 }
531 void flush_output(void) {
532 }
533 #else
534 void buffer_output(void) {
535         if (CC->buffering == 0) {
536                 CC->buffering = 1;
537                 CC->buffer_len = 0;
538                 CC->output_buffer = malloc(SIZ);
539         }
540 }
541
542 void flush_output(void) {
543         if (CC->buffering == 1) {
544                 client_write(CC->output_buffer, CC->buffer_len);
545                 CC->buffer_len = 0;
546         }
547 }
548
549 void unbuffer_output(void) {
550         if (CC->buffering == 1) {
551                 CC->buffering = 0;
552                 /* We don't call flush_output because we can't. */
553                 client_write(CC->output_buffer, CC->buffer_len);
554                 CC->buffer_len = 0;
555                 free(CC->output_buffer);
556                 CC->output_buffer = NULL;
557         }
558 }
559 #endif /* HAVE_DARWIN */
560 #endif /* HAVE_TCP_BUFFERING */
561
562
563
564 /*
565  * client_write()   ...    Send binary data to the client.
566  */
567 void client_write(char *buf, int nbytes)
568 {
569         int bytes_written = 0;
570         int retval;
571 #ifndef HAVE_TCP_BUFFERING
572         int old_buffer_len = 0;
573 #endif
574
575         if (CC->redirect_buffer != NULL) {
576                 if ((CC->redirect_len + nbytes + 2) >= CC->redirect_alloc) {
577                         CC->redirect_alloc = (CC->redirect_alloc * 2) + nbytes;
578                         CC->redirect_buffer = realloc(CC->redirect_buffer,
579                                                 CC->redirect_alloc);
580                 }
581                 memcpy(&CC->redirect_buffer[CC->redirect_len], buf, nbytes);
582                 CC->redirect_len += nbytes;
583                 CC->redirect_buffer[CC->redirect_len] = 0;
584                 return;
585         }
586
587 #ifndef HAVE_TCP_BUFFERING
588         /* If we're buffering for later, do that now. */
589         if (CC->buffering) {
590                 old_buffer_len = CC->buffer_len;
591                 CC->buffer_len += nbytes;
592                 CC->output_buffer = realloc(CC->output_buffer, CC->buffer_len);
593                 memcpy(&CC->output_buffer[old_buffer_len], buf, nbytes);
594                 return;
595         }
596 #endif
597
598         /* Ok, at this point we're not buffering.  Go ahead and write. */
599
600 #ifdef HAVE_OPENSSL
601         if (CC->redirect_ssl) {
602                 client_write_ssl(buf, nbytes);
603                 return;
604         }
605 #endif
606
607         while (bytes_written < nbytes) {
608                 retval = write(CC->client_socket, &buf[bytes_written],
609                         nbytes - bytes_written);
610                 if (retval < 1) {
611                         lprintf(CTDL_ERR,
612                                 "client_write(%d bytes) failed: %s (%d)\n",
613                                 nbytes - bytes_written,
614                                 strerror(errno), errno);
615                         cit_backtrace();
616                         lprintf(CTDL_DEBUG, "Tried to send: %s",  &buf[bytes_written]);
617                         CC->kill_me = 1;
618                         return;
619                 }
620                 bytes_written = bytes_written + retval;
621         }
622 }
623
624
625 /*
626  * cprintf()  ...   Send formatted printable data to the client.   It is
627  *                implemented in terms of client_write() but remains in
628  *                sysdep.c in case we port to somewhere without va_args...
629  */
630 void cprintf(const char *format, ...) {   
631         va_list arg_ptr;   
632         char buf[1024];   
633    
634         va_start(arg_ptr, format);   
635         if (vsnprintf(buf, sizeof buf, format, arg_ptr) == -1)
636                 buf[sizeof buf - 2] = '\n';
637         client_write(buf, strlen(buf)); 
638         va_end(arg_ptr);
639 }   
640
641
642 /*
643  * Read data from the client socket.
644  * Return values are:
645  *      1       Requested number of bytes has been read.
646  *      0       Request timed out.
647  *      -1      The socket is broken.
648  * If the socket breaks, the session will be terminated.
649  */
650 int client_read_to(char *buf, int bytes, int timeout)
651 {
652         int len,rlen;
653         fd_set rfds;
654         struct timeval tv;
655         int retval;
656
657 #ifdef HAVE_OPENSSL
658         if (CC->redirect_ssl) {
659                 return (client_read_ssl(buf, bytes, timeout));
660         }
661 #endif
662         len = 0;
663         while(len<bytes) {
664                 FD_ZERO(&rfds);
665                 FD_SET(CC->client_socket, &rfds);
666                 tv.tv_sec = timeout;
667                 tv.tv_usec = 0;
668
669                 retval = select( (CC->client_socket)+1, 
670                                         &rfds, NULL, NULL, &tv);
671
672                 if (FD_ISSET(CC->client_socket, &rfds) == 0) {
673                         return(0);
674                 }
675
676                 rlen = read(CC->client_socket, &buf[len], bytes-len);
677                 if (rlen<1) {
678                         /* The socket has been disconnected! */
679                         CC->kill_me = 1;
680                         return(-1);
681                 }
682                 len = len + rlen;
683         }
684         return(1);
685 }
686
687 /*
688  * Read data from the client socket with default timeout.
689  * (This is implemented in terms of client_read_to() and could be
690  * justifiably moved out of sysdep.c)
691  */
692 INLINE int client_read(char *buf, int bytes)
693 {
694         return(client_read_to(buf, bytes, config.c_sleeping));
695 }
696
697
698 /*
699  * client_getln()   ...   Get a LF-terminated line of text from the client.
700  * (This is implemented in terms of client_read() and could be
701  * justifiably moved out of sysdep.c)
702  */
703 int client_getln(char *buf, int bufsize)
704 {
705         int i, retval;
706
707         /* Read one character at a time.
708          */
709         for (i = 0;;i++) {
710                 retval = client_read(&buf[i], 1);
711                 if (retval != 1 || buf[i] == '\n' || i == (bufsize-1))
712                         break;
713         }
714
715         /* If we got a long line, discard characters until the newline.
716          */
717         if (i == (bufsize-1))
718                 while (buf[i] != '\n' && retval == 1)
719                         retval = client_read(&buf[i], 1);
720
721         /* Strip the trailing LF, and the trailing CR if present.
722          */
723         buf[i] = 0;
724         while ( (!IsEmptyStr(buf)) && ((buf[strlen(buf)-1]==10) || (buf[strlen(buf)-1] == 13)) ) {
725                 buf[strlen(buf)-1] = 0;
726         }
727         if (retval < 0) safestrncpy(buf, "000", bufsize);
728         return(retval);
729 }
730
731
732
733 /*
734  * The system-dependent part of master_cleanup() - close the master socket.
735  */
736 void sysdep_master_cleanup(void) {
737         struct ServiceFunctionHook *serviceptr;
738
739 /////   DestroyWorkerList();
740         /*
741          * close all protocol master sockets
742          */
743         for (serviceptr = ServiceHookTable; serviceptr != NULL;
744             serviceptr = serviceptr->next ) {
745
746                 if (serviceptr->tcp_port > 0)
747                         lprintf(CTDL_INFO, "Closing listener on port %d\n",
748                                 serviceptr->tcp_port);
749
750                 if (serviceptr->sockpath != NULL)
751                         lprintf(CTDL_INFO, "Closing listener on '%s'\n",
752                                 serviceptr->sockpath);
753
754                 close(serviceptr->msock);
755
756                 /* If it's a Unix domain socket, remove the file. */
757                 if (serviceptr->sockpath != NULL) {
758                         unlink(serviceptr->sockpath);
759                 }
760         }
761 #ifdef HAVE_OPENSSL
762         destruct_ssl();
763 #endif
764         serv_calendar_destroy();
765         CtdlDestroyProtoHooks();
766         CtdlDestroyDeleteHooks();
767         CtdlDestroyXmsgHooks();
768         CtdlDestroyNetprocHooks();
769         CtdlDestroyUserHooks();
770         CtdlDestroyMessageHook();
771         CtdlDestroyCleanupHooks();
772         CtdlDestroyFixedOutputHooks();  
773         CtdlDestroySessionHooks();
774         CtdlDestroyServiceHook();
775         eCrash_Uninit();
776 }
777
778
779
780
781 /*
782  * Terminate another session.
783  * (This could justifiably be moved out of sysdep.c because it
784  * no longer does anything that is system-dependent.)
785  */
786 void kill_session(int session_to_kill) {
787         struct CitContext *ptr;
788
789         begin_critical_section(S_SESSION_TABLE);
790         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
791                 if (ptr->cs_pid == session_to_kill) {
792                         ptr->kill_me = 1;
793                 }
794         }
795         end_critical_section(S_SESSION_TABLE);
796 }
797
798 pid_t current_child;
799 void graceful_shutdown(int signum) {
800         kill(current_child, signum);
801         unlink(file_pid_file);
802         exit(0);
803 }
804
805
806 /*
807  * Start running as a daemon.
808  */
809 void start_daemon(int unused) {
810         int status = 0;
811         pid_t child = 0;
812         FILE *fp;
813         int do_restart = 0;
814
815         current_child = 0;
816
817         /* Close stdin/stdout/stderr and replace them with /dev/null.
818          * We don't just call close() because we don't want these fd's
819          * to be reused for other files.
820          */
821         chdir(ctdl_run_dir);
822
823         child = fork();
824         if (child != 0) {
825                 exit(0);
826         }
827         
828         signal(SIGHUP, SIG_IGN);
829         signal(SIGINT, SIG_IGN);
830         signal(SIGQUIT, SIG_IGN);
831
832         setsid();
833         umask(0);
834         freopen("/dev/null", "r", stdin);
835         freopen("/dev/null", "w", stdout);
836         freopen("/dev/null", "w", stderr);
837
838         do {
839                 current_child = fork();
840
841                 signal(SIGTERM, graceful_shutdown);
842         
843                 if (current_child < 0) {
844                         perror("fork");
845                         exit(errno);
846                 }
847         
848                 else if (current_child == 0) {
849                         return; /* continue starting citadel. */
850                 }
851         
852                 else {
853                         fp = fopen(file_pid_file, "w");
854                         if (fp != NULL) {
855                                 fprintf(fp, ""F_PID_T"\n", child);
856                                 fclose(fp);
857                         }
858                         waitpid(current_child, &status, 0);
859                 }
860
861                 do_restart = 0;
862
863                 /* Did the main process exit with an actual exit code? */
864                 if (WIFEXITED(status)) {
865
866                         /* Exit code 0 means the watcher should exit */
867                         if (WEXITSTATUS(status) == 0) {
868                                 do_restart = 0;
869                         }
870
871                         /* Exit code 101-109 means the watcher should exit */
872                         else if ( (WEXITSTATUS(status) >= 101) && (WEXITSTATUS(status) <= 109) ) {
873                                 do_restart = 0;
874                         }
875
876                         /* Any other exit code means we should restart. */
877                         else {
878                                 do_restart = 1;
879                         }
880                 }
881
882                 /* Any other type of termination (signals, etc.) should also restart. */
883                 else {
884                         do_restart = 1;
885                 }
886
887         } while (do_restart);
888
889         unlink(file_pid_file);
890         exit(WEXITSTATUS(status));
891 }
892
893
894
895 /*
896  * Generic routine to convert a login name to a full name (gecos)
897  * Returns nonzero if a conversion took place
898  */
899 int convert_login(char NameToConvert[]) {
900         struct passwd *pw;
901         int a;
902
903         pw = getpwnam(NameToConvert);
904         if (pw == NULL) {
905                 return(0);
906         }
907         else {
908                 strcpy(NameToConvert, pw->pw_gecos);
909                 for (a=0; a<strlen(NameToConvert); ++a) {
910                         if (NameToConvert[a] == ',') NameToConvert[a] = 0;
911                 }
912                 return(1);
913         }
914 }
915
916 struct worker_node *worker_list = NULL;
917
918
919 /*
920  * create a worker thread. this function must always be called from within
921  * an S_WORKER_LIST critical section!
922  */
923 void create_worker(void) {
924         int ret;
925         struct worker_node *n;
926         pthread_attr_t attr;
927
928         n = malloc(sizeof(struct worker_node));
929         if (n == NULL) {
930                 lprintf(CTDL_EMERG, "can't allocate worker_node, exiting\n");
931                 time_to_die = -1;
932                 return;
933         }
934
935         if ((ret = pthread_attr_init(&attr))) {
936                 lprintf(CTDL_EMERG, "pthread_attr_init: %s\n", strerror(ret));
937                 time_to_die = -1;
938                 return;
939         }
940
941         /* Our per-thread stacks need to be bigger than the default size,
942          * otherwise the MIME parser crashes on FreeBSD, and the IMAP service
943          * crashes on 64-bit Linux.
944          */
945         if ((ret = pthread_attr_setstacksize(&attr, THREADSTACKSIZE))) {
946                 lprintf(CTDL_EMERG, "pthread_attr_setstacksize: %s\n",
947                         strerror(ret));
948                 time_to_die = -1;
949                 pthread_attr_destroy(&attr);
950                 return;
951         }
952
953         if ((ret = pthread_create(&n->tid, &attr, worker_thread, NULL) != 0))
954         {
955
956                 lprintf(CTDL_ALERT, "Can't create worker thread: %s\n",
957                         strerror(ret));
958         }
959
960         n->next = worker_list;
961         worker_list = n;
962         pthread_attr_destroy(&attr);
963 }
964
965 void DestroyWorkerList(void)
966 {
967         struct CitContext *ptr;         /* general-purpose utility pointer */
968         struct CitContext *rem = NULL;  /* list of sessions to be destroyed */
969
970         begin_critical_section(S_SESSION_TABLE);
971         ptr = ContextList;
972         while (ptr != NULL){
973                 /* Remove the session from the active list */
974                 rem = ptr->next;
975                 --num_sessions;
976                 
977                 lprintf(CTDL_DEBUG, "Purging session %d\n", rem->cs_pid);
978                 end_critical_section(S_SESSION_TABLE);
979                 RemoveContext(ptr);
980                 begin_critical_section(S_SESSION_TABLE);
981                 free (ptr);
982                 ptr = rem;
983         }
984         end_critical_section(S_SESSION_TABLE);
985
986         struct worker_node *cur, *p;
987         cur = worker_list;
988         while (cur != NULL)
989         {
990                 p = cur->next;
991                 free (cur);
992                 cur = p;
993         }
994         worker_list = NULL;
995 }
996
997 /*
998  * Create the maintenance threads and begin their operation.
999  */
1000 void create_maintenance_threads(void) {
1001         int ret;
1002         pthread_attr_t attr;
1003
1004         if ((ret = pthread_attr_init(&attr))) {
1005                 lprintf(CTDL_EMERG, "pthread_attr_init: %s\n", strerror(ret));
1006                 time_to_die = -1;
1007                 return;
1008         }
1009
1010         /* Our per-thread stacks need to be bigger than the default size,
1011          * otherwise the MIME parser crashes on FreeBSD, and the IMAP service
1012          * crashes on 64-bit Linux.
1013          */
1014         if ((ret = pthread_attr_setstacksize(&attr, THREADSTACKSIZE))) {
1015                 lprintf(CTDL_EMERG, "pthread_attr_setstacksize: %s\n",
1016                         strerror(ret));
1017                 time_to_die = -1;
1018                 pthread_attr_destroy(&attr);
1019                 return;
1020         }
1021         
1022         struct MaintenanceThreadHook *fcn;
1023
1024         lprintf(CTDL_DEBUG, "Performing startup of maintenance thread hooks\n");
1025
1026         for (fcn = MaintenanceThreadHookTable; fcn != NULL; fcn = fcn->next) {
1027                 if ((ret = pthread_create(&(fcn->MaintenanceThread_tid), &attr, fcn->fcn_ptr, NULL) != 0)) {
1028                         lprintf(CTDL_ALERT, "Can't create thread: %s\n", strerror(ret));
1029                 }
1030                 else
1031                 {
1032                         lprintf(CTDL_NOTICE, "Spawned a new maintenance thread \"%s\" (%ld). \n", fcn->name,
1033                                 fcn->MaintenanceThread_tid);
1034                 }
1035         }
1036
1037
1038         pthread_attr_destroy(&attr);
1039 }
1040
1041
1042
1043 /*
1044  * Purge all sessions which have the 'kill_me' flag set.
1045  * This function has code to prevent it from running more than once every
1046  * few seconds, because running it after every single unbind would waste a lot
1047  * of CPU time and keep the context list locked too much.  To force it to run
1048  * anyway, set "force" to nonzero.
1049  *
1050  *
1051  * After that's done, we raise the size of the worker thread pool
1052  * if such an action is appropriate.
1053  */
1054 void dead_session_purge(int force) {
1055         struct CitContext *ptr;         /* general-purpose utility pointer */
1056         struct CitContext *rem = NULL;  /* list of sessions to be destroyed */
1057
1058         if (force == 0) {
1059                 if ( (time(NULL) - last_purge) < 5 ) {
1060                         return; /* Too soon, go away */
1061                 }
1062         }
1063         time(&last_purge);
1064
1065         begin_critical_section(S_SESSION_TABLE);
1066         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1067                 if ( (ptr->state == CON_IDLE) && (ptr->kill_me) ) {
1068
1069                         /* Remove the session from the active list */
1070                         if (ptr->prev) {
1071                                 ptr->prev->next = ptr->next;
1072                         }
1073                         else {
1074                                 ContextList = ptr->next;
1075                         }
1076                         if (ptr->next) {
1077                                 ptr->next->prev = ptr->prev;
1078                         }
1079
1080                         --num_sessions;
1081
1082                         /* And put it on our to-be-destroyed list */
1083                         ptr->next = rem;
1084                         rem = ptr;
1085
1086                 }
1087         }
1088         end_critical_section(S_SESSION_TABLE);
1089
1090         /* Now that we no longer have the session list locked, we can take
1091          * our time and destroy any sessions on the to-be-killed list, which
1092          * is allocated privately on this thread's stack.
1093          */
1094         while (rem != NULL) {
1095                 lprintf(CTDL_DEBUG, "Purging session %d\n", rem->cs_pid);
1096                 RemoveContext(rem);
1097                 ptr = rem;
1098                 rem = rem->next;
1099                 free(ptr);
1100         }
1101
1102         /* Raise the size of the worker thread pool if necessary. */
1103         if ( (num_sessions > num_threads)
1104            && (num_threads < config.c_max_workers) ) {
1105                 begin_critical_section(S_WORKER_LIST);
1106                 create_worker();
1107                 end_critical_section(S_WORKER_LIST);
1108         }
1109 }
1110
1111
1112
1113
1114
1115 /*
1116  * masterCC is the context we use when not attached to a session.  This
1117  * function initializes it.
1118  */
1119 void InitializeMasterCC(void) {
1120         memset(&masterCC, 0, sizeof(struct CitContext));
1121         masterCC.internal_pgm = 1;
1122         masterCC.cs_pid = 0;
1123 }
1124
1125
1126
1127
1128
1129
1130 /*
1131  * Bind a thread to a context.  (It's inline merely to speed things up.)
1132  */
1133 INLINE void become_session(struct CitContext *which_con) {
1134         pthread_setspecific(MyConKey, (void *)which_con );
1135 }
1136
1137
1138
1139 /* 
1140  * This loop just keeps going and going and going...
1141  */     
1142 void *worker_thread(void *arg) {
1143         int i;
1144         int highest;
1145         struct CitContext *ptr;
1146         struct CitContext *bind_me = NULL;
1147         fd_set readfds;
1148         int retval = 0;
1149         struct CitContext *con= NULL;   /* Temporary context pointer */
1150         struct ServiceFunctionHook *serviceptr;
1151         int ssock;                      /* Descriptor for client socket */
1152         struct timeval tv;
1153         int force_purge = 0;
1154         int m;
1155
1156         num_threads++;
1157
1158         cdb_allocate_tsd();
1159
1160         // Register for tracing
1161         eCrash_RegisterThread("WorkerThread", 0);
1162
1163         while (!time_to_die) {
1164
1165                 /* make doubly sure we're not holding any stale db handles
1166                  * which might cause a deadlock.
1167                  */
1168                 cdb_check_handles();
1169 do_select:      force_purge = 0;
1170                 bind_me = NULL;         /* Which session shall we handle? */
1171
1172                 /* Initialize the fdset. */
1173                 FD_ZERO(&readfds);
1174                 highest = 0;
1175
1176                 begin_critical_section(S_SESSION_TABLE);
1177                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1178                         if (ptr->state == CON_IDLE) {
1179                                 FD_SET(ptr->client_socket, &readfds);
1180                                 if (ptr->client_socket > highest)
1181                                         highest = ptr->client_socket;
1182                         }
1183                         if ((bind_me == NULL) && (ptr->state == CON_READY)) {
1184                                 bind_me = ptr;
1185                                 ptr->state = CON_EXECUTING;
1186                         }
1187                 }
1188                 end_critical_section(S_SESSION_TABLE);
1189
1190                 if (bind_me) {
1191                         goto SKIP_SELECT;
1192                 }
1193
1194                 /* If we got this far, it means that there are no sessions
1195                  * which a previous thread marked for attention, so we go
1196                  * ahead and get ready to select().
1197                  */
1198
1199                 /* First, add the various master sockets to the fdset. */
1200                 for (serviceptr = ServiceHookTable; serviceptr != NULL;
1201                 serviceptr = serviceptr->next ) {
1202                         m = serviceptr->msock;
1203                         FD_SET(m, &readfds);
1204                         if (m > highest) {
1205                                 highest = m;
1206                         }
1207                 }
1208
1209                 if (!time_to_die) {
1210                         tv.tv_sec = 1;          /* wake up every second if no input */
1211                         tv.tv_usec = 0;
1212                         retval = select(highest + 1, &readfds, NULL, NULL, &tv);
1213                 }
1214
1215                 if (time_to_die) return(NULL);
1216
1217                 /* Now figure out who made this select() unblock.
1218                  * First, check for an error or exit condition.
1219                  */
1220                 if (retval < 0) {
1221                         if (errno == EBADF) {
1222                                 lprintf(CTDL_NOTICE, "select() failed: (%s)\n",
1223                                         strerror(errno));
1224                                 goto do_select;
1225                         }
1226                         if (errno != EINTR) {
1227                                 lprintf(CTDL_EMERG, "Exiting (%s)\n", strerror(errno));
1228                                 time_to_die = 1;
1229                         } else if (!time_to_die)
1230                                 goto do_select;
1231                 }
1232
1233                 /* Next, check to see if it's a new client connecting
1234                  * on a master socket.
1235                  */
1236                 else for (serviceptr = ServiceHookTable; serviceptr != NULL;
1237                      serviceptr = serviceptr->next ) {
1238
1239                         if (FD_ISSET(serviceptr->msock, &readfds)) {
1240                                 ssock = accept(serviceptr->msock, NULL, 0);
1241                                 if (ssock >= 0) {
1242                                         lprintf(CTDL_DEBUG,
1243                                                 "New client socket %d\n",
1244                                                 ssock);
1245
1246                                         /* The master socket is non-blocking but the client
1247                                          * sockets need to be blocking, otherwise certain
1248                                          * operations barf on FreeBSD.  Not a fatal error.
1249                                          */
1250                                         if (fcntl(ssock, F_SETFL, 0) < 0) {
1251                                                 lprintf(CTDL_EMERG,
1252                                                         "citserver: Can't set socket to blocking: %s\n",
1253                                                         strerror(errno));
1254                                         }
1255
1256                                         /* New context will be created already
1257                                          * set up in the CON_EXECUTING state.
1258                                          */
1259                                         con = CreateNewContext();
1260
1261                                         /* Assign our new socket number to it. */
1262                                         con->client_socket = ssock;
1263                                         con->h_command_function =
1264                                                 serviceptr->h_command_function;
1265                                         con->h_async_function =
1266                                                 serviceptr->h_async_function;
1267                                         con->ServiceName =
1268                                                 serviceptr->ServiceName;
1269                                         
1270                                         /* Determine whether it's a local socket */
1271                                         if (serviceptr->sockpath != NULL)
1272                                                 con->is_local_socket = 1;
1273         
1274                                         /* Set the SO_REUSEADDR socket option */
1275                                         i = 1;
1276                                         setsockopt(ssock, SOL_SOCKET,
1277                                                 SO_REUSEADDR,
1278                                                 &i, sizeof(i));
1279
1280                                         become_session(con);
1281                                         begin_session(con);
1282                                         serviceptr->h_greeting_function();
1283                                         become_session(NULL);
1284                                         con->state = CON_IDLE;
1285                                         goto do_select;
1286                                 }
1287                         }
1288                 }
1289
1290                 /* It must be a client socket.  Find a context that has data
1291                  * waiting on its socket *and* is in the CON_IDLE state.  Any
1292                  * active sockets other than our chosen one are marked as
1293                  * CON_READY so the next thread that comes around can just bind
1294                  * to one without having to select() again.
1295                  */
1296                 begin_critical_section(S_SESSION_TABLE);
1297                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1298                         if ( (FD_ISSET(ptr->client_socket, &readfds))
1299                            && (ptr->state != CON_EXECUTING) ) {
1300                                 ptr->input_waiting = 1;
1301                                 if (!bind_me) {
1302                                         bind_me = ptr;  /* I choose you! */
1303                                         bind_me->state = CON_EXECUTING;
1304                                 }
1305                                 else {
1306                                         ptr->state = CON_READY;
1307                                 }
1308                         }
1309                 }
1310                 end_critical_section(S_SESSION_TABLE);
1311
1312 SKIP_SELECT:
1313                 /* We're bound to a session */
1314                 if (bind_me != NULL) {
1315                         become_session(bind_me);
1316
1317                         /* If the client has sent a command, execute it. */
1318                         if (CC->input_waiting) {
1319                                 CC->h_command_function();
1320                                 CC->input_waiting = 0;
1321                         }
1322
1323                         /* If there are asynchronous messages waiting and the
1324                          * client supports it, do those now */
1325                         if ((CC->is_async) && (CC->async_waiting)
1326                            && (CC->h_async_function != NULL)) {
1327                                 CC->h_async_function();
1328                                 CC->async_waiting = 0;
1329                         }
1330                         
1331                         force_purge = CC->kill_me;
1332                         become_session(NULL);
1333                         bind_me->state = CON_IDLE;
1334                 }
1335
1336                 dead_session_purge(force_purge);
1337                 do_housekeeping();
1338                 check_sched_shutdown();
1339         }
1340         if (con != NULL) free (con);//// TODO: could this harm other threads? 
1341         /* If control reaches this point, the server is shutting down */        
1342         eCrash_UnregisterThread();
1343         return(NULL);
1344 }
1345
1346
1347
1348
1349 /*
1350  * SyslogFacility()
1351  * Translate text facility name to syslog.h defined value.
1352  */
1353 int SyslogFacility(char *name)
1354 {
1355         int i;
1356         struct
1357         {
1358                 int facility;
1359                 char *name;
1360         }   facTbl[] =
1361         {
1362                 {   LOG_KERN,   "kern"          },
1363                 {   LOG_USER,   "user"          },
1364                 {   LOG_MAIL,   "mail"          },
1365                 {   LOG_DAEMON, "daemon"        },
1366                 {   LOG_AUTH,   "auth"          },
1367                 {   LOG_SYSLOG, "syslog"        },
1368                 {   LOG_LPR,    "lpr"           },
1369                 {   LOG_NEWS,   "news"          },
1370                 {   LOG_UUCP,   "uucp"          },
1371                 {   LOG_LOCAL0, "local0"        },
1372                 {   LOG_LOCAL1, "local1"        },
1373                 {   LOG_LOCAL2, "local2"        },
1374                 {   LOG_LOCAL3, "local3"        },
1375                 {   LOG_LOCAL4, "local4"        },
1376                 {   LOG_LOCAL5, "local5"        },
1377                 {   LOG_LOCAL6, "local6"        },
1378                 {   LOG_LOCAL7, "local7"        },
1379                 {   0,            NULL          }
1380         };
1381         for(i = 0; facTbl[i].name != NULL; i++) {
1382                 if(!strcasecmp(name, facTbl[i].name))
1383                         return facTbl[i].facility;
1384         }
1385         enable_syslog = 0;
1386         return LOG_DAEMON;
1387 }
1388
1389
1390 /********** MEM CHEQQER ***********/
1391
1392 #ifdef DEBUG_MEMORY_LEAKS
1393
1394 #undef malloc
1395 #undef realloc
1396 #undef strdup
1397 #undef free
1398
1399 void *tracked_malloc(size_t size, char *file, int line) {
1400         struct igheap *thisheap;
1401         void *block;
1402
1403         block = malloc(size);
1404         if (block == NULL) return(block);
1405
1406         thisheap = malloc(sizeof(struct igheap));
1407         if (thisheap == NULL) {
1408                 free(block);
1409                 return(NULL);
1410         }
1411
1412         thisheap->block = block;
1413         strcpy(thisheap->file, file);
1414         thisheap->line = line;
1415         
1416         begin_critical_section(S_DEBUGMEMLEAKS);
1417         thisheap->next = igheap;
1418         igheap = thisheap;
1419         end_critical_section(S_DEBUGMEMLEAKS);
1420
1421         return(block);
1422 }
1423
1424
1425 void *tracked_realloc(void *ptr, size_t size, char *file, int line) {
1426         struct igheap *thisheap;
1427         void *block;
1428
1429         block = realloc(ptr, size);
1430         if (block == NULL) return(block);
1431
1432         thisheap = malloc(sizeof(struct igheap));
1433         if (thisheap == NULL) {
1434                 free(block);
1435                 return(NULL);
1436         }
1437
1438         thisheap->block = block;
1439         strcpy(thisheap->file, file);
1440         thisheap->line = line;
1441         
1442         begin_critical_section(S_DEBUGMEMLEAKS);
1443         thisheap->next = igheap;
1444         igheap = thisheap;
1445         end_critical_section(S_DEBUGMEMLEAKS);
1446
1447         return(block);
1448 }
1449
1450
1451
1452 void tracked_free(void *ptr) {
1453         struct igheap *thisheap;
1454         struct igheap *trash;
1455
1456         free(ptr);
1457
1458         if (igheap == NULL) return;
1459         begin_critical_section(S_DEBUGMEMLEAKS);
1460         for (thisheap = igheap; thisheap != NULL; thisheap = thisheap->next) {
1461                 if (thisheap->next != NULL) {
1462                         if (thisheap->next->block == ptr) {
1463                                 trash = thisheap->next;
1464                                 thisheap->next = thisheap->next->next;
1465                                 free(trash);
1466                         }
1467                 }
1468         }
1469         if (igheap->block == ptr) {
1470                 trash = igheap;
1471                 igheap = igheap->next;
1472                 free(trash);
1473         }
1474         end_critical_section(S_DEBUGMEMLEAKS);
1475 }
1476
1477 char *tracked_strdup(const char *s, char *file, int line) {
1478         char *ptr;
1479
1480         if (s == NULL) return(NULL);
1481         ptr = tracked_malloc(strlen(s) + 1, file, line);
1482         if (ptr == NULL) return(NULL);
1483         strncpy(ptr, s, strlen(s));
1484         return(ptr);
1485 }
1486
1487 void dump_heap(void) {
1488         struct igheap *thisheap;
1489
1490         for (thisheap = igheap; thisheap != NULL; thisheap = thisheap->next) {
1491                 lprintf(CTDL_CRIT, "UNFREED: %30s : %d\n",
1492                         thisheap->file, thisheap->line);
1493         }
1494 }
1495
1496 #endif /*  DEBUG_MEMORY_LEAKS */