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