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