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