libical, expat, and libsieve are now *required*.
[citadel.git] / citadel / citserver.c
1 /* 
2  * $Id$
3  *
4  * Main source module for the Citadel server
5  *
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <signal.h>
14 #include <sys/types.h>
15 #include <sys/stat.h>
16
17
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
20 # include <time.h>
21 #else
22 # if HAVE_SYS_TIME_H
23 #  include <sys/time.h>
24 # else
25 #  include <time.h>
26 # endif
27 #endif
28
29 #if HAVE_BACKTRACE
30 #include <execinfo.h>
31 #endif
32
33 #include <ctype.h>
34 #include <string.h>
35 #include <dirent.h>
36 #include <errno.h>
37 #include <limits.h>
38 #include <netdb.h>
39 #include <sys/types.h>
40 #include <sys/socket.h>
41 #include <netinet/in.h>
42 #include <arpa/inet.h>
43 #include <libcitadel.h>
44 #include "citadel.h"
45 #include "server.h"
46 #include "sysdep_decls.h"
47 #include "threads.h"
48 #include "citserver.h"
49 #include "config.h"
50 #include "database.h"
51 #include "housekeeping.h"
52 #include "user_ops.h"
53 #include "msgbase.h"
54 #include "support.h"
55 #include "locate_host.h"
56 #include "room_ops.h"
57 #include "file_ops.h"
58 #include "policy.h"
59 #include "control.h"
60 #include "euidindex.h"
61
62 #ifndef HAVE_SNPRINTF
63 #include "snprintf.h"
64 #endif
65
66 #include "ctdl_module.h"
67
68
69 struct CitContext *ContextList = NULL;
70 struct CitContext* next_session = NULL;
71 char *unique_session_numbers;
72 int ScheduledShutdown = 0;
73 time_t server_startup_time;
74 int panic_fd;
75
76 /**
77  * \brief print the actual stack frame.
78  */
79 void cit_backtrace(void)
80 {
81 #ifdef HAVE_BACKTRACE
82         void *stack_frames[50];
83         size_t size, i;
84         char **strings;
85
86
87         size = backtrace(stack_frames, sizeof(stack_frames) / sizeof(void*));
88         strings = backtrace_symbols(stack_frames, size);
89         for (i = 0; i < size; i++) {
90                 if (strings != NULL)
91                         lprintf(1, "%s\n", strings[i]);
92                 else
93                         lprintf(1, "%p\n", stack_frames[i]);
94         }
95         free(strings);
96 #endif
97 }
98
99 /**
100  * \brief print the actual stack frame.
101  */
102 void cit_panic_backtrace(int SigNum)
103 {
104 #ifdef HAVE_BACKTRACE
105         void *stack_frames[10];
106         size_t size, i;
107         char **strings;
108
109         printf("caught signal 11\n");
110         size = backtrace(stack_frames, sizeof(stack_frames) / sizeof(void*));
111         strings = backtrace_symbols(stack_frames, size);
112         for (i = 0; i < size; i++) {
113                 if (strings != NULL)
114                         lprintf(1, "%s\n", strings[i]);
115                 else
116                         lprintf(1, "%p\n", stack_frames[i]);
117         }
118         free(strings);
119 #endif
120         exit(-1);
121 }
122
123 /*
124  * Various things that need to be initialized at startup
125  */
126 void master_startup(void) {
127         struct timeval tv;
128         unsigned int seed;
129         FILE *urandom;
130         struct ctdlroom qrbuf;
131         
132         lprintf(CTDL_DEBUG, "master_startup() started\n");
133         time(&server_startup_time);
134
135         lprintf(CTDL_INFO, "Opening databases\n");
136         open_databases();
137
138         ctdl_thread_internal_init_tsd();
139         
140         CtdlThreadAllocTSD();
141         
142         check_ref_counts();
143
144         lprintf(CTDL_INFO, "Creating base rooms (if necessary)\n");
145         create_room(config.c_baseroom,  0, "", 0, 1, 0, VIEW_BBS);
146         create_room(AIDEROOM,           3, "", 0, 1, 0, VIEW_BBS);
147         create_room(SYSCONFIGROOM,      3, "", 0, 1, 0, VIEW_BBS);
148         create_room(config.c_twitroom,  0, "", 0, 1, 0, VIEW_BBS);
149
150         /* The "Local System Configuration" room doesn't need to be visible */
151         if (lgetroom(&qrbuf, SYSCONFIGROOM) == 0) {
152                 qrbuf.QRflags2 |= QR2_SYSTEM;
153                 lputroom(&qrbuf);
154         }
155
156         /* Aide needs to be public postable, else we're not RFC conformant. */
157         if (lgetroom(&qrbuf, AIDEROOM) == 0) {
158                 qrbuf.QRflags2 |= QR2_SMTP_PUBLIC;
159                 lputroom(&qrbuf);
160         }
161
162         lprintf(CTDL_INFO, "Seeding the pseudo-random number generator...\n");
163         urandom = fopen("/dev/urandom", "r");
164         if (urandom != NULL) {
165                 fread(&seed, sizeof seed, 1, urandom);
166                 fclose(urandom);
167         }
168         else {
169                 gettimeofday(&tv, NULL);
170                 seed = tv.tv_usec;
171         }
172         srandom(seed);
173
174         lprintf(CTDL_INFO, "Initializing ipgm secret\n");
175         get_config();
176         config.c_ipgm_secret = rand();
177         put_config();
178
179         lprintf(CTDL_DEBUG, "master_startup() finished\n");
180 }
181
182
183 /*
184  * Cleanup routine to be called when the server is shutting down.
185  */
186 void master_cleanup(int exitcode) {
187         struct CleanupFunctionHook *fcn;
188         static int already_cleaning_up = 0;
189
190         if (already_cleaning_up) while(1) sleep(1);
191         already_cleaning_up = 1;
192
193         /* Run any cleanup routines registered by loadable modules */
194         for (fcn = CleanupHookTable; fcn != NULL; fcn = fcn->next) {
195                 (*fcn->h_function_pointer)();
196         }
197
198         /* Close the AdjRefCount queue file */
199         AdjRefCount(-1, 0);
200
201         /* Do system-dependent stuff */
202         sysdep_master_cleanup();
203         
204         /* Close databases */
205         lprintf(CTDL_INFO, "Closing databases\n");
206         close_databases();
207
208 #ifdef DEBUG_MEMORY_LEAKS
209         dump_heap();
210 #endif
211
212         /* If the operator requested a halt but not an exit, halt here. */
213         if (shutdown_and_halt) {
214                 lprintf(CTDL_NOTICE, "citserver: Halting server without exiting.\n");
215                 fflush(stdout); fflush(stderr);
216                 while(1) {
217                         sleep(32767);
218                 }
219         }
220         
221         release_control();
222
223         /* Now go away. */
224         lprintf(CTDL_NOTICE, "citserver: Exiting with status %d\n", exitcode);
225         fflush(stdout); fflush(stderr);
226         
227         if (restart_server != 0)
228                 exit(1);
229         exit(exitcode);
230 }
231
232
233
234 /*
235  * Terminate a session.
236  */
237 void RemoveContext (struct CitContext *con)
238 {
239         if (con==NULL) {
240                 lprintf(CTDL_ERR,
241                         "WARNING: RemoveContext() called with NULL!\n");
242                 return;
243         }
244         lprintf(CTDL_DEBUG, "RemoveContext() session %d\n", con->cs_pid);
245
246         /* Run any cleanup routines registered by loadable modules.
247          * Note: We have to "become_session()" because the cleanup functions
248          *       might make references to "CC" assuming it's the right one.
249          */
250         become_session(con);
251         PerformSessionHooks(EVT_STOP);
252         become_session(NULL);
253
254         /* Now handle all of the administrivia. */
255         lprintf(CTDL_DEBUG, "Calling logout(%d)\n", con->cs_pid);
256         logout(con);
257
258         lprintf(CTDL_NOTICE, "[%3d] Session ended.\n", con->cs_pid);
259
260         /* If the client is still connected, blow 'em away. */
261         lprintf(CTDL_DEBUG, "Closing socket %d\n", con->client_socket);
262         close(con->client_socket);
263
264         lprintf(CTDL_DEBUG, "Done with RemoveContext()\n");
265 }
266
267
268
269
270
271 /*
272  * cmd_info()  -  tell the client about this server
273  */
274 void cmd_info(void) {
275         cprintf("%d Server info:\n", LISTING_FOLLOWS);
276         cprintf("%d\n", CC->cs_pid);
277         cprintf("%s\n", config.c_nodename);
278         cprintf("%s\n", config.c_humannode);
279         cprintf("%s\n", config.c_fqdn);
280         cprintf("%s\n", CITADEL);
281         cprintf("%d\n", REV_LEVEL);
282         cprintf("%s\n", config.c_site_location);
283         cprintf("%s\n", config.c_sysadm);
284         cprintf("%d\n", SERVER_TYPE);
285         cprintf("%s\n", config.c_moreprompt);
286         cprintf("1\n"); /* 1 = yes, this system supports floors */
287         cprintf("1\n"); /* 1 = we support the extended paging options */
288         cprintf("%s\n", CC->cs_nonce);
289         cprintf("1\n"); /* 1 = yes, this system supports the QNOP command */
290
291 #ifdef HAVE_LDAP
292         cprintf("1\n"); /* 1 = yes, this server is LDAP-enabled */
293 #else
294         cprintf("0\n"); /* 1 = no, this server is not LDAP-enabled */
295 #endif
296
297         if (config.c_auth_mode == AUTHMODE_NATIVE) {
298                 cprintf("%d\n", config.c_disable_newu);
299         }
300         else {
301                 cprintf("1\n"); /* "create new user" does not work with non-native auth modes */
302         }
303
304         cprintf("%s\n", config.c_default_cal_zone);
305
306         /* Output load averages */
307         cprintf("%f\n", CtdlThreadLoadAvg);
308         cprintf("%f\n", CtdlThreadWorkerAvg);
309         cprintf("%d\n", CtdlThreadGetCount());
310
311         cprintf("1\n");         /* yes, Sieve mail filtering is supported */
312         cprintf("%d\n", config.c_enable_fulltext);
313         
314         cprintf("000\n");
315 }
316
317
318 /*
319  * returns an asterisk if there are any instant messages waiting,
320  * space otherwise.
321  */
322 char CtdlCheckExpress(void) {
323         if (CC->FirstExpressMessage == NULL) {
324                 return(' ');
325         }
326         else {
327                 return('*');
328         }
329 }
330
331 void cmd_time(void)
332 {
333    time_t tv;
334    struct tm tmp;
335    
336    tv = time(NULL);
337    localtime_r(&tv, &tmp);
338    
339    /* timezone and daylight global variables are not portable. */
340 #ifdef HAVE_STRUCT_TM_TM_GMTOFF
341    cprintf("%d %ld|%ld|%d\n", CIT_OK, (long)tv, tmp.tm_gmtoff, tmp.tm_isdst);
342 #else
343    cprintf("%d %ld|%ld|%d\n", CIT_OK, (long)tv, timezone, tmp.tm_isdst);
344 #endif
345 }
346
347
348 /*
349  * Check originating host against the public_clients file.  This determines
350  * whether the client is allowed to change the hostname for this session
351  * (for example, to show the location of the user rather than the location
352  * of the client).
353  */
354 int is_public_client(void)
355 {
356         char buf[1024];
357         char addrbuf[1024];
358         FILE *fp;
359         int i;
360         char *public_clientspos;
361         char *public_clientsend;
362         char *paddr = NULL;
363         struct stat statbuf;
364         static time_t pc_timestamp = 0;
365         static char public_clients[SIZ];
366         static char public_clients_file[SIZ];
367
368 #define LOCALHOSTSTR "127.0.0.1"
369
370         snprintf(public_clients_file, 
371                          sizeof public_clients_file,
372                          "%s/public_clients",
373                          ctdl_etc_dir);
374
375         /*
376          * Check the time stamp on the public_clients file.  If it's been
377          * updated since the last time we were here (or if this is the first
378          * time we've been through the loop), read its contents and learn
379          * the IP addresses of the listed hosts.
380          */
381         if (stat(public_clients_file, &statbuf) != 0) {
382                 /* No public_clients file exists, so bail out */
383                 lprintf(CTDL_WARNING, "Warning: '%s' does not exist\n", 
384                                 public_clients_file);
385                 return(0);
386         }
387
388         if (statbuf.st_mtime > pc_timestamp) {
389                 begin_critical_section(S_PUBLIC_CLIENTS);
390                 lprintf(CTDL_INFO, "Loading %s\n", public_clients_file);
391
392                 public_clientspos = &public_clients[0];
393                 public_clientsend = public_clientspos + SIZ;
394                 safestrncpy(public_clientspos, LOCALHOSTSTR, sizeof public_clients);
395                 public_clientspos += sizeof(LOCALHOSTSTR) - 1;
396                 
397                 if (hostname_to_dotted_quad(addrbuf, config.c_fqdn) == 0) {
398                         *(public_clientspos++) = '|';
399                         paddr = &addrbuf[0];
400                         while (!IsEmptyStr (paddr) && 
401                                (public_clientspos < public_clientsend))
402                                 *(public_clientspos++) = *(paddr++);
403                 }
404
405                 fp = fopen(public_clients_file, "r");
406                 if (fp != NULL) 
407                         while ((fgets(buf, sizeof buf, fp)!=NULL) &&
408                                (public_clientspos < public_clientsend)){
409                                 char *ptr;
410                                 ptr = buf;
411                                 while (!IsEmptyStr(ptr)) {
412                                         if (*ptr == '#') {
413                                                 *ptr = 0;
414                                                 break;
415                                         }
416                                 else ptr++;
417                                 }
418                                 ptr--;
419                                 while (ptr>buf && isspace(*ptr)) {
420                                         *(ptr--) = 0;
421                                 }
422                                 if (hostname_to_dotted_quad(addrbuf, buf) == 0) {
423                                         *(public_clientspos++) = '|';
424                                         paddr = addrbuf;
425                                         while (!IsEmptyStr(paddr) && 
426                                                (public_clientspos < public_clientsend)){
427                                                 *(public_clientspos++) = *(paddr++);
428                                         }
429                                 }
430                         }
431                 fclose(fp);
432                 pc_timestamp = time(NULL);
433                 end_critical_section(S_PUBLIC_CLIENTS);
434         }
435
436         lprintf(CTDL_DEBUG, "Checking whether %s is a local or public client\n",
437                 CC->cs_addr);
438         for (i=0; i<num_parms(public_clients); ++i) {
439                 extract_token(addrbuf, public_clients, i, '|', sizeof addrbuf);
440                 if (!strcasecmp(CC->cs_addr, addrbuf)) {
441                         lprintf(CTDL_DEBUG, "... yes it is.\n");
442                         return(1);
443                 }
444         }
445
446         /* No hits.  This is not a public client. */
447         lprintf(CTDL_DEBUG, "... no it isn't.\n");
448         return(0);
449 }
450
451
452 /*
453  * the client is identifying itself to the server
454  */
455 void cmd_iden(char *argbuf)
456 {
457         int dev_code;
458         int cli_code;
459         int rev_level;
460         char desc[128];
461         char from_host[128];
462         struct in_addr addr;
463         int do_lookup = 0;
464
465         if (num_parms(argbuf)<4) {
466                 cprintf("%d usage error\n", ERROR + ILLEGAL_VALUE);
467                 return;
468         }
469
470         dev_code = extract_int(argbuf,0);
471         cli_code = extract_int(argbuf,1);
472         rev_level = extract_int(argbuf,2);
473         extract_token(desc, argbuf, 3, '|', sizeof desc);
474
475         safestrncpy(from_host, config.c_fqdn, sizeof from_host);
476         from_host[sizeof from_host - 1] = 0;
477         if (num_parms(argbuf)>=5) extract_token(from_host, argbuf, 4, '|', sizeof from_host);
478
479         CC->cs_clientdev = dev_code;
480         CC->cs_clienttyp = cli_code;
481         CC->cs_clientver = rev_level;
482         safestrncpy(CC->cs_clientname, desc, sizeof CC->cs_clientname);
483         CC->cs_clientname[31] = 0;
484
485         if (!IsEmptyStr(from_host)) {
486                 if (CC->is_local_socket) do_lookup = 1;
487                 else if (is_public_client()) do_lookup = 1;
488         }
489
490         if (do_lookup) {
491                 lprintf(CTDL_DEBUG, "Looking up hostname '%s'\n", from_host);
492                 if ((addr.s_addr = inet_addr(from_host)) != -1) {
493                         locate_host(CC->cs_host, sizeof CC->cs_host,
494                                 CC->cs_addr, sizeof CC->cs_addr,
495                                 &addr);
496                 }
497                 else {
498                         safestrncpy(CC->cs_host, from_host, sizeof CC->cs_host);
499                         CC->cs_host[sizeof CC->cs_host - 1] = 0;
500                 }
501         }
502
503         lprintf(CTDL_NOTICE, "Client %d/%d/%01d.%02d (%s) from %s\n",
504                 dev_code,
505                 cli_code,
506                 (rev_level / 100),
507                 (rev_level % 100),
508                 desc,
509                 CC->cs_host);
510         cprintf("%d Ok\n",CIT_OK);
511 }
512
513
514 /*
515  * display system messages or help
516  */
517 void cmd_mesg(char *mname)
518 {
519         FILE *mfp;
520         char targ[256];
521         char buf[256];
522         char buf2[256];
523         char *dirs[2];
524         DIR *dp;
525         struct dirent *d;
526
527         extract_token(buf, mname, 0, '|', sizeof buf);
528
529         dirs[0] = strdup(ctdl_message_dir);
530         dirs[1] = strdup(ctdl_hlp_dir);
531
532         snprintf(buf2, sizeof buf2, "%s.%d.%d",
533                 buf, CC->cs_clientdev, CC->cs_clienttyp);
534
535         /* If the client requested "?" then produce a listing */
536         if (!strcmp(buf, "?")) {
537                 cprintf("%d %s\n", LISTING_FOLLOWS, buf);
538                 dp = opendir(dirs[1]);
539                 if (dp != NULL) {
540                         while (d = readdir(dp), d != NULL) {
541                                 if (d->d_name[0] != '.') {
542                                         cprintf(" %s\n", d->d_name);
543                                 }
544                         }
545                         closedir(dp);
546                 }
547                 cprintf("000\n");
548                 free(dirs[0]);
549                 free(dirs[1]);
550                 return;
551         }
552
553         /* Otherwise, look for the requested file by name. */
554         else {
555                 mesg_locate(targ, sizeof targ, buf2, 2, (const char **)dirs);
556                 if (IsEmptyStr(targ)) {
557                         snprintf(buf2, sizeof buf2, "%s.%d",
558                                                         buf, CC->cs_clientdev);
559                         mesg_locate(targ, sizeof targ, buf2, 2,
560                                                         (const char **)dirs);
561                         if (IsEmptyStr(targ)) {
562                                 mesg_locate(targ, sizeof targ, buf, 2,
563                                                         (const char **)dirs);
564                         }       
565                 }
566         }
567
568         free(dirs[0]);
569         free(dirs[1]);
570
571         if (IsEmptyStr(targ)) {
572                 cprintf("%d '%s' not found.  (Searching in %s and %s)\n",
573                         ERROR + FILE_NOT_FOUND,
574                         mname,
575                         ctdl_message_dir,
576                         ctdl_hlp_dir
577                 );
578                 return;
579         }
580
581         mfp = fopen(targ, "r");
582         if (mfp==NULL) {
583                 cprintf("%d Cannot open '%s': %s\n",
584                         ERROR + INTERNAL_ERROR, targ, strerror(errno));
585                 return;
586         }
587         cprintf("%d %s\n", LISTING_FOLLOWS,buf);
588
589         while (fgets(buf, (sizeof buf - 1), mfp) != NULL) {
590                 buf[strlen(buf)-1] = 0;
591                 do_help_subst(buf);
592                 cprintf("%s\n",buf);
593         }
594
595         fclose(mfp);
596         cprintf("000\n");
597 }
598
599
600 /*
601  * enter system messages or help
602  */
603 void cmd_emsg(char *mname)
604 {
605         FILE *mfp;
606         char targ[256];
607         char buf[256];
608         char *dirs[2];
609         int a;
610
611         unbuffer_output();
612
613         if (CtdlAccessCheck(ac_aide)) return;
614
615         extract_token(buf, mname, 0, '|', sizeof buf);
616         for (a=0; !IsEmptyStr(&buf[a]); ++a) {          /* security measure */
617                 if (buf[a] == '/') buf[a] = '.';
618         }
619
620         dirs[0] = strdup(ctdl_message_dir);
621         dirs[1] = strdup(ctdl_hlp_dir);
622
623         mesg_locate(targ, sizeof targ, buf, 2, (const char**)dirs);
624         free(dirs[0]);
625         free(dirs[1]);
626
627         if (IsEmptyStr(targ)) {
628                 snprintf(targ, sizeof targ, 
629                                  "%s/%s",
630                                  ctdl_hlp_dir, buf);
631         }
632
633         mfp = fopen(targ,"w");
634         if (mfp==NULL) {
635                 cprintf("%d Cannot open '%s': %s\n",
636                         ERROR + INTERNAL_ERROR, targ, strerror(errno));
637                 return;
638         }
639         cprintf("%d %s\n", SEND_LISTING, targ);
640
641         while (client_getln(buf, sizeof buf), strcmp(buf, "000")) {
642                 fprintf(mfp, "%s\n", buf);
643         }
644
645         fclose(mfp);
646 }
647
648
649 /* Don't show the names of private rooms unless the viewing
650  * user also knows the rooms.
651  */
652 void GenerateRoomDisplay(char *real_room,
653                         struct CitContext *viewed,
654                         struct CitContext *viewer) {
655
656         int ra;
657
658         strcpy(real_room, viewed->room.QRname);
659         if (viewed->room.QRflags & QR_MAILBOX) {
660                 strcpy(real_room, &real_room[11]);
661         }
662         if (viewed->room.QRflags & QR_PRIVATE) {
663                 CtdlRoomAccess(&viewed->room, &viewer->user, &ra, NULL);
664                 if ( (ra & UA_KNOWN) == 0) {
665                         strcpy(real_room, "<private room>");
666                 }
667         }
668
669         if (viewed->cs_flags & CS_CHAT) {
670                 while (strlen(real_room) < 14) {
671                         strcat(real_room, " ");
672                 }
673                 strcpy(&real_room[14], "<chat>");
674         }
675
676 }
677
678 /*
679  * Convenience function.
680  */
681 int CtdlAccessCheck(int required_level) {
682
683         if (CC->internal_pgm) return(0);
684         if (required_level >= ac_internal) {
685                 cprintf("%d This is not a user-level command.\n",
686                         ERROR + HIGHER_ACCESS_REQUIRED);
687                 return(-1);
688         }
689
690         if ((required_level >= ac_logged_in) && (CC->logged_in == 0)) {
691                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
692                 return(-1);
693         }
694
695         if (CC->user.axlevel >= 6) return(0);
696         if (required_level >= ac_aide) {
697                 cprintf("%d This command requires Aide access.\n",
698                         ERROR + HIGHER_ACCESS_REQUIRED);
699                 return(-1);
700         }
701
702         if (is_room_aide()) return(0);
703         if (required_level >= ac_room_aide) {
704                 cprintf("%d This command requires Aide or Room Aide access.\n",
705                         ERROR + HIGHER_ACCESS_REQUIRED);
706                 return(-1);
707         }
708
709         /* shhh ... succeed quietly */
710         return(0);
711 }
712
713
714
715 /*
716  * Terminate another running session
717  */
718 void cmd_term(char *cmdbuf)
719 {
720         int session_num;
721         struct CitContext *ccptr;
722         int found_it = 0;
723         int allowed = 0;
724
725         session_num = extract_int(cmdbuf, 0);
726         if (session_num == CC->cs_pid) {
727                 cprintf("%d You can't kill your own session.\n", ERROR + ILLEGAL_VALUE);
728                 return;
729         }
730
731         lprintf(CTDL_DEBUG, "Locating session to kill\n");
732         begin_critical_section(S_SESSION_TABLE);
733         for (ccptr = ContextList; ccptr != NULL; ccptr = ccptr->next) {
734                 if (session_num == ccptr->cs_pid) {
735                         found_it = 1;
736                         if ((ccptr->user.usernum == CC->user.usernum)
737                            || (CC->user.axlevel >= 6)) {
738                                 allowed = 1;
739                                 ccptr->kill_me = 1;
740                         }
741                         else {
742                                 allowed = 0;
743                         }
744                 }
745         }
746         end_critical_section(S_SESSION_TABLE);
747
748         if (found_it) {
749                 if (allowed) {
750                         cprintf("%d Session terminated.\n", CIT_OK);
751                 }
752                 else {
753                         cprintf("%d You are not allowed to do that.\n",
754                                 ERROR + HIGHER_ACCESS_REQUIRED);
755                 }
756         }
757         else {
758                 cprintf("%d No such session.\n", ERROR + ILLEGAL_VALUE);
759         }
760 }
761
762
763
764
765
766 /* 
767  * get the paginator prompt
768  */
769 void cmd_more(void) {
770         cprintf("%d %s\n", CIT_OK, config.c_moreprompt);
771 }
772
773 /*
774  * echo 
775  */
776 void cmd_echo(char *etext)
777 {
778         cprintf("%d %s\n", CIT_OK, etext);
779 }
780
781
782
783 /* 
784  * identify as internal program
785  */
786 void cmd_ipgm(char *argbuf)
787 {
788         int secret;
789
790         secret = extract_int(argbuf, 0);
791
792         /* For security reasons, we do NOT allow this command to run
793          * over the network.  Local sockets only.
794          */
795         if (!CC->is_local_socket) {
796                 sleep(5);
797                 cprintf("%d Authentication failed.\n",
798                         ERROR + PASSWORD_REQUIRED);
799         }
800         else if (secret == config.c_ipgm_secret) {
801                 CC->internal_pgm = 1;
802                 strcpy(CC->curr_user, "<internal program>");
803                 CC->cs_flags = CC->cs_flags|CS_STEALTH;
804                 cprintf("%d Authenticated as an internal program.\n", CIT_OK);
805         }
806         else {
807                 sleep(5);
808                 cprintf("%d Authentication failed.\n",
809                         ERROR + PASSWORD_REQUIRED);
810                 lprintf(CTDL_ERR, "Warning: ipgm authentication failed.\n");
811                 CC->kill_me = 1;
812         }
813
814         /* Now change the ipgm secret for the next round.
815          * (Disabled because it breaks concurrent scripts.  The fact that
816          * we no longer accept IPGM over the network should be sufficient
817          * to prevent brute-force attacks.  If you don't agree, uncomment
818          * this block.)
819         get_config();
820         config.c_ipgm_secret = rand();
821         put_config();
822         */
823 }
824
825
826 /*
827  * Shut down the server
828  */
829 void cmd_down(char *argbuf) {
830         char *Reply ="%d Shutting down server.  Goodbye.\n";
831
832         if (CtdlAccessCheck(ac_aide)) return;
833
834         if (!IsEmptyStr(argbuf))
835         {
836                 int state = CIT_OK;
837                 restart_server = extract_int(argbuf, 0);
838                 
839                 if (restart_server > 0)
840                         Reply = "%d Restarting server.  See you soon.\n";
841                 if ((restart_server > 0) && !running_as_daemon)
842                 {
843                         lprintf(CTDL_ERR, "The user requested restart, but not running as deamon! Geronimooooooo!\n");
844                         Reply = "%d Warning, not running in deamon mode. maybe we will come up again, but don't lean on it.\n";
845                         state = ERROR;
846                 }
847                 cprintf(Reply, state);
848         }
849         else
850         {
851                 cprintf(Reply, CIT_OK + SERVER_SHUTTING_DOWN);
852         }
853         CtdlThreadStopAll();
854 }
855
856 /*
857  * Halt the server without exiting the server process.
858  */
859 void cmd_halt(void) {
860
861         if (CtdlAccessCheck(ac_aide)) return;
862
863         cprintf("%d Halting server.  Goodbye.\n", CIT_OK);
864         CtdlThreadStopAll();
865         shutdown_and_halt = 1;
866 }
867
868 /*
869  * Schedule or cancel a server shutdown
870  */
871 void cmd_scdn(char *argbuf)
872 {
873         int new_state;
874         int state = CIT_OK;
875         char *Reply = "%d %d\n";
876
877         if (CtdlAccessCheck(ac_aide)) return;
878
879         new_state = extract_int(argbuf, 0);
880         if ((new_state == 2) || (new_state == 3))
881         {
882                 restart_server = 1;
883                 if (!running_as_daemon)
884                 {
885                         lprintf(CTDL_ERR, "The user requested restart, but not running as deamon! Geronimooooooo!\n");
886                         Reply = "%d %d Warning, not running in deamon mode. maybe we will come up again, but don't lean on it.\n";
887                         state = ERROR;
888                 }
889
890                 restart_server = extract_int(argbuf, 0);
891                 new_state -= 2;
892         }
893         if ((new_state == 0) || (new_state == 1)) {
894                 ScheduledShutdown = new_state;
895         }
896         cprintf(Reply, state, ScheduledShutdown);
897 }
898
899
900 /*
901  * Set or unset asynchronous protocol mode
902  */
903 void cmd_asyn(char *argbuf)
904 {
905         int new_state;
906
907         new_state = extract_int(argbuf, 0);
908         if ((new_state == 0) || (new_state == 1)) {
909                 CC->is_async = new_state;
910         }
911         cprintf("%d %d\n", CIT_OK, CC->is_async);
912 }
913
914
915 /*
916  * Generate a "nonce" for APOP-style authentication.
917  *
918  * RFC 1725 et al specify a PID to be placed in front of the nonce.
919  * Quoth BTX: That would be stupid.
920  */
921 void generate_nonce(struct CitContext *con) {
922         struct timeval tv;
923
924         memset(con->cs_nonce, NONCE_SIZE, 0);
925         gettimeofday(&tv, NULL);
926         memset(con->cs_nonce, NONCE_SIZE, 0);
927         snprintf(con->cs_nonce, NONCE_SIZE, "<%d%ld@%s>",
928                 rand(), (long)tv.tv_usec, config.c_fqdn);
929 }
930
931
932
933
934 /*
935  * Back-end function for starting a session
936  */
937 void begin_session(struct CitContext *con)
938 {
939         socklen_t len;
940         struct sockaddr_in sin;
941
942         /* 
943          * Initialize some variables specific to our context.
944          */
945         con->logged_in = 0;
946         con->internal_pgm = 0;
947         con->download_fp = NULL;
948         con->upload_fp = NULL;
949         con->FirstExpressMessage = NULL;
950         time(&con->lastcmd);
951         time(&con->lastidle);
952         strcpy(con->lastcmdname, "    ");
953         strcpy(con->cs_clientname, "(unknown)");
954         strcpy(con->curr_user, NLI);
955         *con->net_node = '\0';
956         *con->fake_username = '\0';
957         *con->fake_hostname = '\0';
958         *con->fake_roomname = '\0';
959         generate_nonce(con);
960         safestrncpy(con->cs_host, config.c_fqdn, sizeof con->cs_host);
961         safestrncpy(con->cs_addr, "", sizeof con->cs_addr);
962         con->cs_host[sizeof con->cs_host - 1] = 0;
963         len = sizeof sin;
964         if (!CC->is_local_socket) {
965                 if (!getpeername(con->client_socket, (struct sockaddr *) &sin, &len)) {
966                         locate_host(con->cs_host, sizeof con->cs_host,
967                                 con->cs_addr, sizeof con->cs_addr,
968                                 &sin.sin_addr
969                         );
970                 }
971         }
972         else {
973                 strcpy(con->cs_host, "");
974         }
975         con->cs_flags = 0;
976         con->upload_type = UPL_FILE;
977         con->dl_is_net = 0;
978
979         con->nologin = 0;
980         if ((config.c_maxsessions > 0)&&(num_sessions > config.c_maxsessions)) {
981                 con->nologin = 1;
982         }
983
984         if (!CC->is_local_socket) {
985                 lprintf(CTDL_NOTICE, "Session started from %s [%s].\n", con->cs_host, con->cs_addr);
986         }
987         else {
988                 lprintf(CTDL_NOTICE, "Session started via local socket.\n");
989         }
990
991         /* Run any session startup routines registered by loadable modules */
992         PerformSessionHooks(EVT_START);
993 }
994
995
996 void citproto_begin_session() {
997         if (CC->nologin==1) {
998                 cprintf("%d %s: Too many users are already online (maximum is %d)\n",
999                         ERROR + MAX_SESSIONS_EXCEEDED,
1000                         config.c_nodename, config.c_maxsessions
1001                 );
1002                 CC->kill_me = 1;
1003         }
1004         else {
1005                 cprintf("%d %s Citadel server ready.\n",
1006                         CIT_OK, config.c_nodename);
1007         }
1008 }
1009
1010
1011
1012
1013 /*
1014  * This loop recognizes all server commands.
1015  */
1016 void do_command_loop(void) {
1017         char cmdbuf[SIZ];
1018         const char *old_name = NULL;
1019         
1020         old_name = CtdlThreadName("do_command_loop");
1021         
1022         time(&CC->lastcmd);
1023         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
1024         if (client_getln(cmdbuf, sizeof cmdbuf) < 1) {
1025                 lprintf(CTDL_ERR, "Client disconnected: ending session.\n");
1026                 CC->kill_me = 1;
1027                 CtdlThreadName(old_name);
1028                 return;
1029         }
1030
1031         /* Log the server command, but don't show passwords... */
1032         if ( (strncasecmp(cmdbuf, "PASS", 4))
1033            && (strncasecmp(cmdbuf, "SETP", 4)) ) {
1034                 lprintf(CTDL_INFO, "%s\n", cmdbuf);
1035         }
1036         else {
1037                 lprintf(CTDL_INFO, "<password command sent>\n");
1038         }
1039
1040         buffer_output();
1041
1042         /*
1043          * Let other clients see the last command we executed, and
1044          * update the idle time, but not NOOP, QNOP, PEXP, GEXP, RWHO, or TIME.
1045          */
1046         if ( (strncasecmp(cmdbuf, "NOOP", 4))
1047            && (strncasecmp(cmdbuf, "QNOP", 4))
1048            && (strncasecmp(cmdbuf, "PEXP", 4))
1049            && (strncasecmp(cmdbuf, "GEXP", 4))
1050            && (strncasecmp(cmdbuf, "RWHO", 4))
1051            && (strncasecmp(cmdbuf, "TIME", 4)) ) {
1052                 strcpy(CC->lastcmdname, "    ");
1053                 safestrncpy(CC->lastcmdname, cmdbuf, sizeof(CC->lastcmdname));
1054                 time(&CC->lastidle);
1055         }
1056         
1057         CtdlThreadName(cmdbuf);
1058                 
1059         if ((strncasecmp(cmdbuf, "ENT0", 4))
1060            && (strncasecmp(cmdbuf, "MESG", 4))
1061            && (strncasecmp(cmdbuf, "MSGS", 4)))
1062         {
1063            CC->cs_flags &= ~CS_POSTING;
1064         }
1065                    
1066         if (!strncasecmp(cmdbuf, "NOOP", 4)) {
1067                 cprintf("%d%cok\n", CIT_OK, CtdlCheckExpress() );
1068         }
1069         
1070         else if (!strncasecmp(cmdbuf, "XYZZY", 5)) {
1071                 cprintf("%d Nothing happens.\n", CIT_OK);
1072         }
1073         
1074         else if (!strncasecmp(cmdbuf, "QNOP", 4)) {
1075                 /* do nothing, this command returns no response */
1076         }
1077
1078         else if (!strncasecmp(cmdbuf,"QUIT",4)) {
1079                 cprintf("%d Goodbye.\n", CIT_OK);
1080                 CC->kill_me = 1;
1081         }
1082
1083         else if (!strncasecmp(cmdbuf,"ASYN",4)) {
1084                 cmd_asyn(&cmdbuf[5]);
1085         }
1086
1087         else if (!strncasecmp(cmdbuf,"LOUT",4)) {
1088                 if (CC->logged_in) logout(CC);
1089                 cprintf("%d logged out.\n", CIT_OK);
1090         }
1091
1092         else if (!strncasecmp(cmdbuf,"USER",4)) {
1093                 cmd_user(&cmdbuf[5]);
1094         }
1095
1096         else if (!strncasecmp(cmdbuf,"PASS",4)) {
1097                 cmd_pass(&cmdbuf[5]);
1098         }
1099
1100         else if (!strncasecmp(cmdbuf,"NEWU",4)) {
1101                 cmd_newu(&cmdbuf[5]);
1102         }
1103
1104         else if (!strncasecmp(cmdbuf,"CREU",4)) {
1105                 cmd_creu(&cmdbuf[5]);
1106         }
1107
1108         else if (!strncasecmp(cmdbuf,"SETP",4)) {
1109                 cmd_setp(&cmdbuf[5]);
1110         }
1111
1112         else if (!strncasecmp(cmdbuf,"LRMS",4)) {
1113                 cmd_lrms(&cmdbuf[5]);
1114         }
1115
1116         else if (!strncasecmp(cmdbuf,"LKRA",4)) {
1117                 cmd_lkra(&cmdbuf[5]);
1118         }
1119
1120         else if (!strncasecmp(cmdbuf,"LKRN",4)) {
1121                 cmd_lkrn(&cmdbuf[5]);
1122         }
1123
1124         else if (!strncasecmp(cmdbuf,"LKRO",4)) {
1125                 cmd_lkro(&cmdbuf[5]);
1126         }
1127
1128         else if (!strncasecmp(cmdbuf,"LZRM",4)) {
1129                 cmd_lzrm(&cmdbuf[5]);
1130         }
1131
1132         else if (!strncasecmp(cmdbuf,"LPRM",4)) {
1133                 cmd_lprm(&cmdbuf[5]);
1134         }
1135
1136         else if (!strncasecmp(cmdbuf,"GETU",4)) {
1137                 cmd_getu();
1138         }
1139
1140         else if (!strncasecmp(cmdbuf,"SETU",4)) {
1141                 cmd_setu(&cmdbuf[5]);
1142         }
1143
1144         else if (!strncasecmp(cmdbuf,"GOTO",4)) {
1145                 cmd_goto(&cmdbuf[5]);
1146         }
1147
1148         else if (!strncasecmp(cmdbuf,"MSGS",4)) {
1149                 cmd_msgs(&cmdbuf[5]);
1150         }
1151
1152         else if (!strncasecmp(cmdbuf,"WHOK",4)) {
1153                 cmd_whok();
1154         }
1155
1156         else if (!strncasecmp(cmdbuf,"RDIR",4)) {
1157                 cmd_rdir();
1158         }
1159
1160         else if (!strncasecmp(cmdbuf,"EUID",4)) {
1161                 cmd_euid(&cmdbuf[5]);
1162         }
1163
1164         else if (!strncasecmp(cmdbuf,"MSG0",4)) {
1165                 cmd_msg0(&cmdbuf[5]);
1166         }
1167
1168         else if (!strncasecmp(cmdbuf,"MSG2",4)) {
1169                 cmd_msg2(&cmdbuf[5]);
1170         }
1171
1172         else if (!strncasecmp(cmdbuf,"MSG3",4)) {
1173                 cmd_msg3(&cmdbuf[5]);
1174         }
1175
1176         else if (!strncasecmp(cmdbuf,"MSG4",4)) {
1177                 cmd_msg4(&cmdbuf[5]);
1178         }
1179
1180         else if (!strncasecmp(cmdbuf,"MSGP",4)) {
1181                 cmd_msgp(&cmdbuf[5]);
1182         }
1183
1184         else if (!strncasecmp(cmdbuf,"OPNA",4)) {
1185                 cmd_opna(&cmdbuf[5]);
1186         }
1187
1188         else if (!strncasecmp(cmdbuf,"DLAT",4)) {
1189                 cmd_dlat(&cmdbuf[5]);
1190         }
1191
1192         else if (!strncasecmp(cmdbuf,"INFO",4)) {
1193                 cmd_info();
1194         }
1195
1196         else if (!strncasecmp(cmdbuf,"SLRP",4)) {
1197                 cmd_slrp(&cmdbuf[5]);
1198         }
1199
1200         else if (!strncasecmp(cmdbuf,"INVT",4)) {
1201                 cmd_invt_kick(&cmdbuf[5],1);
1202         }
1203
1204         else if (!strncasecmp(cmdbuf,"KICK",4)) {
1205                 cmd_invt_kick(&cmdbuf[5],0);
1206         }
1207
1208         else if (!strncasecmp(cmdbuf,"GETR",4)) {
1209                 cmd_getr();
1210         }
1211
1212         else if (!strncasecmp(cmdbuf,"SETR",4)) {
1213                 cmd_setr(&cmdbuf[5]);
1214         }
1215
1216         else if (!strncasecmp(cmdbuf,"GETA",4)) {
1217                 cmd_geta();
1218         }
1219
1220         else if (!strncasecmp(cmdbuf,"SETA",4)) {
1221                 cmd_seta(&cmdbuf[5]);
1222         }
1223
1224         else if (!strncasecmp(cmdbuf,"ENT0",4)) {
1225                 cmd_ent0(&cmdbuf[5]);
1226         }
1227
1228         else if (!strncasecmp(cmdbuf,"RINF",4)) {
1229                 cmd_rinf();
1230         }
1231
1232         else if (!strncasecmp(cmdbuf,"DELE",4)) {
1233                 cmd_dele(&cmdbuf[5]);
1234         }
1235
1236         else if (!strncasecmp(cmdbuf,"KILL",4)) {
1237                 cmd_kill(&cmdbuf[5]);
1238         }
1239
1240         else if (!strncasecmp(cmdbuf,"CRE8",4)) {
1241                 cmd_cre8(&cmdbuf[5]);
1242         }
1243
1244         else if (!strncasecmp(cmdbuf,"MOVE",4)) {
1245                 cmd_move(&cmdbuf[5]);
1246         }
1247
1248         else if (!strncasecmp(cmdbuf,"FORG",4)) {
1249                 cmd_forg();
1250         }
1251
1252         else if (!strncasecmp(cmdbuf,"MESG",4)) {
1253                 cmd_mesg(&cmdbuf[5]);
1254         }
1255
1256         else if (!strncasecmp(cmdbuf,"EMSG",4)) {
1257                 cmd_emsg(&cmdbuf[5]);
1258         }
1259
1260         else if (!strncasecmp(cmdbuf,"GNUR",4)) {
1261                 cmd_gnur();
1262         }
1263
1264         else if (!strncasecmp(cmdbuf,"VALI",4)) {
1265                 cmd_vali(&cmdbuf[5]);
1266         }
1267
1268         else if (!strncasecmp(cmdbuf,"EINF",4)) {
1269                 cmd_einf(&cmdbuf[5]);
1270         }
1271
1272         else if (!strncasecmp(cmdbuf,"LIST",4)) {
1273                 cmd_list(&cmdbuf[5]);
1274         }
1275
1276         else if (!strncasecmp(cmdbuf,"CHEK",4)) {
1277                 cmd_chek();
1278         }
1279
1280         else if (!strncasecmp(cmdbuf,"DELF",4)) {
1281                 cmd_delf(&cmdbuf[5]);
1282         }
1283
1284         else if (!strncasecmp(cmdbuf,"MOVF",4)) {
1285                 cmd_movf(&cmdbuf[5]);
1286         }
1287
1288         else if (!strncasecmp(cmdbuf,"NETF",4)) {
1289                 cmd_netf(&cmdbuf[5]);
1290         }
1291
1292         else if (!strncasecmp(cmdbuf,"OPEN",4)) {
1293                 cmd_open(&cmdbuf[5]);
1294         }
1295
1296         else if (!strncasecmp(cmdbuf,"CLOS",4)) {
1297                 cmd_clos();
1298         }
1299
1300         else if (!strncasecmp(cmdbuf,"UOPN",4)) {
1301                 cmd_uopn(&cmdbuf[5]);
1302         }
1303
1304         else if (!strncasecmp(cmdbuf,"UCLS",4)) {
1305                 cmd_ucls(&cmdbuf[5]);
1306         }
1307
1308         else if (!strncasecmp(cmdbuf,"READ",4)) {
1309                 cmd_read(&cmdbuf[5]);
1310         }
1311
1312         else if (!strncasecmp(cmdbuf,"WRIT",4)) {
1313                 cmd_writ(&cmdbuf[5]);
1314         }
1315
1316         else if (!strncasecmp(cmdbuf,"QUSR",4)) {
1317                 cmd_qusr(&cmdbuf[5]);
1318         }
1319
1320         else if (!strncasecmp(cmdbuf,"ECHO",4)) {
1321                 cmd_echo(&cmdbuf[5]);
1322         }
1323
1324         else if (!strncasecmp(cmdbuf,"OIMG",4)) {
1325                 cmd_oimg(&cmdbuf[5]);
1326         }
1327
1328         else if (!strncasecmp(cmdbuf,"MORE",4)) {
1329                 cmd_more();
1330         }
1331
1332         else if (!strncasecmp(cmdbuf,"NDOP",4)) {
1333                 cmd_ndop(&cmdbuf[5]);
1334         }
1335
1336         else if (!strncasecmp(cmdbuf,"NUOP",4)) {
1337                 cmd_nuop(&cmdbuf[5]);
1338         }
1339
1340         else if (!strncasecmp(cmdbuf,"LFLR",4)) {
1341                 cmd_lflr();
1342         }
1343
1344         else if (!strncasecmp(cmdbuf,"CFLR",4)) {
1345                 cmd_cflr(&cmdbuf[5]);
1346         }
1347
1348         else if (!strncasecmp(cmdbuf,"KFLR",4)) {
1349                 cmd_kflr(&cmdbuf[5]);
1350         }
1351
1352         else if (!strncasecmp(cmdbuf,"EFLR",4)) {
1353                 cmd_eflr(&cmdbuf[5]);
1354         }
1355
1356         else if (!strncasecmp(cmdbuf,"IDEN",4)) {
1357                 cmd_iden(&cmdbuf[5]);
1358         }
1359
1360         else if (!strncasecmp(cmdbuf,"IPGM",4)) {
1361                 cmd_ipgm(&cmdbuf[5]);
1362         }
1363
1364         else if (!strncasecmp(cmdbuf,"TERM",4)) {
1365                 cmd_term(&cmdbuf[5]);
1366         }
1367
1368         else if (!strncasecmp(cmdbuf,"DOWN",4)) {
1369                 cmd_down(&cmdbuf[5]);
1370         }
1371
1372         else if (!strncasecmp(cmdbuf,"HALT",4)) {
1373                 cmd_halt();
1374         }
1375
1376         else if (!strncasecmp(cmdbuf,"SCDN",4)) {
1377                 cmd_scdn(&cmdbuf[5]);
1378         }
1379
1380         else if (!strncasecmp(cmdbuf, "UIMG", 4)) {
1381                 cmd_uimg(&cmdbuf[5]);
1382         }
1383
1384         else if (!strncasecmp(cmdbuf, "TIME", 4)) {
1385                 cmd_time();
1386         }
1387
1388         else if (!strncasecmp(cmdbuf, "AGUP", 4)) {
1389                 cmd_agup(&cmdbuf[5]);
1390         }
1391
1392         else if (!strncasecmp(cmdbuf, "ASUP", 4)) {
1393                 cmd_asup(&cmdbuf[5]);
1394         }
1395
1396         else if (!strncasecmp(cmdbuf, "GPEX", 4)) {
1397                 cmd_gpex(&cmdbuf[5]);
1398         }
1399
1400         else if (!strncasecmp(cmdbuf, "SPEX", 4)) {
1401                 cmd_spex(&cmdbuf[5]);
1402         }
1403
1404         else if (!strncasecmp(cmdbuf, "CONF", 4)) {
1405                 cmd_conf(&cmdbuf[5]);
1406         }
1407
1408         else if (!strncasecmp(cmdbuf, "SEEN", 4)) {
1409                 cmd_seen(&cmdbuf[5]);
1410         }
1411
1412         else if (!strncasecmp(cmdbuf, "GTSN", 4)) {
1413                 cmd_gtsn(&cmdbuf[5]);
1414         }
1415
1416         else if (!strncasecmp(cmdbuf, "VIEW", 4)) {
1417                 cmd_view(&cmdbuf[5]);
1418         }
1419
1420         else if (!strncasecmp(cmdbuf, "ISME", 4)) {
1421                 cmd_isme(&cmdbuf[5]);
1422         }
1423
1424         else if (!strncasecmp(cmdbuf, "RENU", 4)) {
1425                 cmd_renu(&cmdbuf[5]);
1426         }
1427
1428         else if (!DLoader_Exec_Cmd(cmdbuf)) {
1429                 cprintf("%d Unrecognized or unsupported command.\n", ERROR + CMD_NOT_SUPPORTED);
1430         }
1431
1432         unbuffer_output();
1433
1434         /* Run any after-each-command routines registered by modules */
1435         PerformSessionHooks(EVT_CMD);
1436         CtdlThreadName(old_name);
1437 }
1438
1439
1440 /*
1441  * This loop performs all asynchronous functions.
1442  */
1443 void do_async_loop(void) {
1444         PerformSessionHooks(EVT_ASYNC);
1445 }