* Cleaned up some things that generated compiler warnings
[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
72 /*
73  * Various things that need to be initialized at startup
74  */
75 void master_startup(void) {
76         struct timeval tv;
77         unsigned int seed;
78         FILE *urandom;
79         struct ctdlroom qrbuf;
80         
81         lprintf(CTDL_DEBUG, "master_startup() started\n");
82         time(&server_startup_time);
83
84         lprintf(CTDL_INFO, "Opening databases\n");
85         open_databases();
86
87         if (do_defrag) {
88                 defrag_databases();
89         }
90
91         check_ref_counts();
92
93         lprintf(CTDL_INFO, "Creating base rooms (if necessary)\n");
94         create_room(BASEROOM,           0, "", 0, 1, 0, VIEW_BBS);
95         create_room(AIDEROOM,           3, "", 0, 1, 0, VIEW_BBS);
96         create_room(SYSCONFIGROOM,      3, "", 0, 1, 0, VIEW_BBS);
97         create_room(config.c_twitroom,  0, "", 0, 1, 0, VIEW_BBS);
98
99         /* The "Local System Configuration" room doesn't need to be visible */
100         if (lgetroom(&qrbuf, SYSCONFIGROOM) == 0) {
101                 qrbuf.QRflags2 |= QR2_SYSTEM;
102                 lputroom(&qrbuf);
103         }
104
105         lprintf(CTDL_INFO, "Seeding the pseudo-random number generator...\n");
106         urandom = fopen("/dev/urandom", "r");
107         if (urandom != NULL) {
108                 fread(&seed, sizeof seed, 1, urandom);
109                 fclose(urandom);
110         }
111         else {
112                 gettimeofday(&tv, NULL);
113                 seed = tv.tv_usec;
114         }
115         srandom(seed);
116
117         lprintf(CTDL_INFO, "Initializing ipgm secret\n");
118         get_config();
119         config.c_ipgm_secret = rand();
120         put_config();
121
122         lprintf(CTDL_DEBUG, "master_startup() finished\n");
123 }
124
125
126 /*
127  * Cleanup routine to be called when the server is shutting down.
128  * WARNING: It's no longer safe to call this function to force a shutdown.
129  * Instead, set time_to_die = 1.
130  */
131 void master_cleanup(void) {
132         struct CleanupFunctionHook *fcn;
133
134         /* Run any cleanup routines registered by loadable modules */
135         for (fcn = CleanupHookTable; fcn != NULL; fcn = fcn->next) {
136                 (*fcn->h_function_pointer)();
137         }
138
139         /* Close databases */
140         lprintf(CTDL_INFO, "Closing databases\n");
141         close_databases();
142
143         /* Do system-dependent stuff */
144         sysdep_master_cleanup();
145
146 #ifdef DEBUG_MEMORY_LEAKS
147         dump_heap();
148 #endif
149
150         /* Now go away. */
151         lprintf(CTDL_NOTICE, "citserver: exiting.\n");
152         fflush(stdout); fflush(stderr);
153         exit(0);
154 }
155
156
157 /*
158  * Free any per-session data allocated by modules or whatever
159  */
160 void deallocate_user_data(struct CitContext *con)
161 {
162         struct CtdlSessData *ptr;
163
164         begin_critical_section(S_SESSION_TABLE);
165         while (con->FirstSessData != NULL) {
166                 lprintf(CTDL_DEBUG, "Deallocating user data symbol %ld\n",
167                         con->FirstSessData->sym_id);
168                 if (con->FirstSessData->sym_data != NULL)
169                         free(con->FirstSessData->sym_data);
170                 ptr = con->FirstSessData->next;
171                 free(con->FirstSessData);
172                 con->FirstSessData = ptr;
173         }
174         end_critical_section(S_SESSION_TABLE);
175 }
176
177
178
179
180 /*
181  * Terminate a session and remove its context data structure.
182  */
183 void RemoveContext (struct CitContext *con)
184 {
185         struct CitContext *ptr = NULL;
186         struct CitContext *ToFree = NULL;
187
188         if (con==NULL) {
189                 lprintf(CTDL_ERR, "WARNING: RemoveContext() called with NULL!\n");
190                 return;
191         }
192         lprintf(CTDL_DEBUG, "RemoveContext() called\n");
193
194         /* Remove the context from the global context list.  This needs
195          * to get done FIRST to avoid concurrency problems.  It is *vitally*
196          * important to keep num_sessions accurate!!
197          */
198         lprintf(CTDL_DEBUG, "Removing context for session %d\n", con->cs_pid);
199         begin_critical_section(S_SESSION_TABLE);
200         if (ContextList == con) {
201                 ToFree = ContextList;
202                 ContextList = ContextList->next;
203                 --num_sessions;
204         }
205         else {
206                 for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
207                         if (ptr->next == con) {
208                                 /* See fair scheduling in sysdep.c */
209                                 if (next_session == ptr->next)
210                                         next_session = ptr->next->next;
211                                 ToFree = ptr->next;
212                                 ptr->next = ptr->next->next;
213                                 --num_sessions;
214                         }
215                 }
216         }
217         end_critical_section(S_SESSION_TABLE);
218
219         if (ToFree == NULL) {
220                 lprintf(CTDL_DEBUG, "RemoveContext() found nothing to remove\n");
221                 return;
222         }
223
224         /* Run any cleanup routines registered by loadable modules.
225          * Note 1: This must occur *before* deallocate_user_data() because the
226          *         cleanup functions might touch dynamic session data.
227          * Note 2: We have to "become_session()" because the cleanup functions
228          *         might make references to "CC" assuming it's the right one.
229          */
230         become_session(con);
231         PerformSessionHooks(EVT_STOP);
232         become_session(NULL);
233
234         /* Now handle all of the administrivia. */
235         lprintf(CTDL_DEBUG, "Calling logout(%d)\n", con->cs_pid);
236         logout(con);
237
238         unlink(con->temp);
239         lprintf(CTDL_NOTICE, "[%3d] Session ended.\n", con->cs_pid);
240
241         /* Deallocate any user-data attached to this session */
242         deallocate_user_data(con);
243
244         /* If the client is still connected, blow 'em away. */
245         lprintf(CTDL_DEBUG, "Closing socket %d\n", con->client_socket);
246         close(con->client_socket);
247
248         /* This is where we used to check for scheduled shutdowns. */
249
250         /* Free up the memory used by this context */
251         free(con);
252
253         lprintf(CTDL_DEBUG, "Done with RemoveContext()\n");
254 }
255
256
257
258
259
260 /*
261  * Return a pointer to some generic per-session user data.
262  * (This function returns NULL if the requested symbol is not allocated.)
263  *
264  * NOTE: we use critical sections for allocating and de-allocating these,
265  *       but not for locating one.
266  */
267 void *CtdlGetUserData(unsigned long requested_sym) 
268 {
269         struct CtdlSessData *ptr;
270
271         for (ptr = CC->FirstSessData; ptr != NULL; ptr = ptr->next)
272                 if (ptr->sym_id == requested_sym)
273                         return(ptr->sym_data);
274
275         lprintf(CTDL_ERR, "ERROR! CtdlGetUserData(%ld) symbol not allocated\n",
276                 requested_sym);
277         return NULL;
278 }
279
280
281 /*
282  * Allocate some generic per-session user data.
283  */
284 void CtdlAllocUserData(unsigned long requested_sym, size_t num_bytes)
285 {
286         struct CtdlSessData *ptr;
287
288         lprintf(CTDL_DEBUG, "CtdlAllocUserData(%ld) called\n", requested_sym);
289
290         /* Fail silently if the symbol is already registered. */
291         for (ptr = CC->FirstSessData; ptr != NULL; ptr = ptr->next)  {
292                 if (ptr->sym_id == requested_sym) {
293                         return;
294                 }
295         }
296
297         /* Grab us some memory!  Dem's good eatin' !!  */
298         ptr = malloc(sizeof(struct CtdlSessData));
299         ptr->sym_id = requested_sym;
300         ptr->sym_data = malloc(num_bytes);
301         memset(ptr->sym_data, 0, num_bytes);
302
303         begin_critical_section(S_SESSION_TABLE);
304         ptr->next = CC->FirstSessData;
305         CC->FirstSessData = ptr;
306         end_critical_section(S_SESSION_TABLE);
307
308         lprintf(CTDL_DEBUG, "CtdlAllocUserData(%ld) finished\n", requested_sym);
309 }
310
311
312 /* 
313  * Change the size of a buffer allocated with CtdlAllocUserData()
314  */
315 void CtdlReallocUserData(unsigned long requested_sym, size_t num_bytes)
316 {
317         struct CtdlSessData *ptr;
318
319         for (ptr = CC->FirstSessData; ptr != NULL; ptr = ptr->next)  {
320                 if (ptr->sym_id == requested_sym) {
321                         ptr->sym_data = realloc(ptr->sym_data, num_bytes);
322                         return;
323                 }
324         }
325
326         lprintf(CTDL_ERR, "CtdlReallocUserData() ERROR: symbol %ld not found!\n",
327                 requested_sym);
328 }
329
330
331
332
333
334
335 /*
336  * cmd_info()  -  tell the client about this server
337  */
338 void cmd_info(void) {
339         cprintf("%d Server info:\n", LISTING_FOLLOWS);
340         cprintf("%d\n", CC->cs_pid);
341         cprintf("%s\n", config.c_nodename);
342         cprintf("%s\n", config.c_humannode);
343         cprintf("%s\n", config.c_fqdn);
344         cprintf("%s\n", CITADEL);
345         cprintf("%d\n", REV_LEVEL);
346         cprintf("%s\n", config.c_bbs_city);
347         cprintf("%s\n", config.c_sysadm);
348         cprintf("%d\n", SERVER_TYPE);
349         cprintf("%s\n", config.c_moreprompt);
350         cprintf("1\n"); /* 1 = yes, this system supports floors */
351         cprintf("1\n"); /* 1 = we support the extended paging options */
352         cprintf("%s\n", CC->cs_nonce);
353         cprintf("1\n"); /* 1 = yes, this system supports the QNOP command */
354 #ifdef HAVE_LDAP
355         cprintf("1\n"); /* 1 = yes, this server is LDAP-enabled */
356 #else
357         cprintf("0\n"); /* 1 = no, this server is not LDAP-enabled */
358 #endif
359         cprintf("000\n");
360 }
361
362
363 /*
364  * returns an asterisk if there are any instant messages waiting,
365  * space otherwise.
366  */
367 char CtdlCheckExpress(void) {
368         if (CC->FirstExpressMessage == NULL) {
369                 return(' ');
370         }
371         else {
372                 return('*');
373         }
374 }
375
376 void cmd_time(void)
377 {
378    time_t tv;
379    struct tm tmp;
380    
381    tv = time(NULL);
382    localtime_r(&tv, &tmp);
383    
384    /* timezone and daylight global variables are not portable. */
385 #ifdef HAVE_STRUCT_TM_TM_GMTOFF
386    cprintf("%d %ld|%ld|%d\n", CIT_OK, (long)tv, tmp.tm_gmtoff, tmp.tm_isdst);
387 #else
388    cprintf("%d %ld|%ld|%d\n", CIT_OK, (long)tv, timezone, tmp.tm_isdst);
389 #endif
390 }
391
392
393 /*
394  * Check originating host against the public_clients file.  This determines
395  * whether the client is allowed to change the hostname for this session
396  * (for example, to show the location of the user rather than the location
397  * of the client).
398  */
399 int is_public_client(void)
400 {
401         char buf[SIZ];
402         char addrbuf[SIZ];
403         FILE *fp;
404         int i;
405         struct stat statbuf;
406         static time_t pc_timestamp = 0;
407         static char public_clients[SIZ];
408
409 #define PUBLIC_CLIENTS "./public_clients"
410
411         /*
412          * Check the time stamp on the public_clients file.  If it's been
413          * updated since the last time we were here (or if this is the first
414          * time we've been through the loop), read its contents and learn
415          * the IP addresses of the listed hosts.
416          */
417         if (stat(PUBLIC_CLIENTS, &statbuf) != 0) {
418                 /* No public_clients file exists, so bail out */
419                 lprintf(CTDL_WARNING, "Warning: '%s' does not exist\n", PUBLIC_CLIENTS);
420                 return(0);
421         }
422
423         if (statbuf.st_mtime > pc_timestamp) {
424                 begin_critical_section(S_PUBLIC_CLIENTS);
425                 lprintf(CTDL_INFO, "Loading %s\n", PUBLIC_CLIENTS);
426
427                 strcpy(public_clients, "127.0.0.1");
428                 if (hostname_to_dotted_quad(addrbuf, config.c_fqdn) == 0) {
429                         strcat(public_clients, "|");
430                         strcat(public_clients, addrbuf);
431                 }
432
433                 fp = fopen("public_clients", "r");
434                 if (fp != NULL) while (fgets(buf, sizeof buf, fp)!=NULL) {
435                         for (i=0; i<strlen(buf); ++i) {
436                                 if (buf[i] == '#') buf[i] = 0;
437                         }
438                         while (isspace((buf[strlen(buf)-1]))) {
439                                 buf[strlen(buf)-1] = 0;
440                         }
441                         if (hostname_to_dotted_quad(addrbuf, buf) == 0) {
442                                 if ((strlen(public_clients) +
443                                    strlen(addrbuf) + 2)
444                                    < sizeof(public_clients)) {
445                                         strcat(public_clients, addrbuf);
446                                 }
447                         }
448                 }
449                 fclose(fp);
450                 pc_timestamp = time(NULL);
451                 end_critical_section(S_PUBLIC_CLIENTS);
452         }
453
454         lprintf(CTDL_DEBUG, "Checking whether %s is a local or public client\n",
455                 CC->cs_addr);
456         for (i=0; i<num_parms(public_clients); ++i) {
457                 extract(addrbuf, public_clients, i);
458                 if (!strcasecmp(CC->cs_addr, addrbuf)) {
459                         lprintf(CTDL_DEBUG, "... yes it is.\n");
460                         return(1);
461                 }
462         }
463
464         /* No hits.  This is not a public client. */
465         lprintf(CTDL_DEBUG, "... no it isn't.\n");
466         return(0);
467 }
468
469
470 /*
471  * the client is identifying itself to the server
472  */
473 void cmd_iden(char *argbuf)
474 {
475         int dev_code;
476         int cli_code;
477         int rev_level;
478         char desc[SIZ];
479         char from_host[SIZ];
480         struct in_addr addr;
481         int do_lookup = 0;
482
483         if (num_parms(argbuf)<4) {
484                 cprintf("%d usage error\n", ERROR + ILLEGAL_VALUE);
485                 return;
486         }
487
488         dev_code = extract_int(argbuf,0);
489         cli_code = extract_int(argbuf,1);
490         rev_level = extract_int(argbuf,2);
491         extract(desc,argbuf,3);
492
493         safestrncpy(from_host, config.c_fqdn, sizeof from_host);
494         from_host[sizeof from_host - 1] = 0;
495         if (num_parms(argbuf)>=5) extract(from_host,argbuf,4);
496
497         CC->cs_clientdev = dev_code;
498         CC->cs_clienttyp = cli_code;
499         CC->cs_clientver = rev_level;
500         safestrncpy(CC->cs_clientname, desc, sizeof CC->cs_clientname);
501         CC->cs_clientname[31] = 0;
502
503         if (strlen(from_host) > 0) {
504                 if (CC->is_local_socket) do_lookup = 1;
505                 else if (is_public_client()) do_lookup = 1;
506         }
507
508         if (do_lookup) {
509                 lprintf(CTDL_DEBUG, "Looking up hostname '%s'\n", from_host);
510                 if ((addr.s_addr = inet_addr(from_host)) != -1) {
511                         locate_host(CC->cs_host, sizeof CC->cs_host,
512                                 NULL, 0,
513                                 &addr);
514                 }
515                 else {
516                         safestrncpy(CC->cs_host, from_host, sizeof CC->cs_host);
517                         CC->cs_host[sizeof CC->cs_host - 1] = 0;
518                 }
519         }
520
521         lprintf(CTDL_NOTICE, "Client %d/%d/%01d.%02d (%s) from %s\n",
522                 dev_code,
523                 cli_code,
524                 (rev_level / 100),
525                 (rev_level % 100),
526                 desc,
527                 CC->cs_host);
528         cprintf("%d Ok\n",CIT_OK);
529 }
530
531
532 /*
533  * display system messages or help
534  */
535 void cmd_mesg(char *mname)
536 {
537         FILE *mfp;
538         char targ[SIZ];
539         char buf[SIZ];
540         char buf2[SIZ];
541         char *dirs[2];
542
543         extract(buf,mname,0);
544
545         dirs[0]=malloc(64);
546         dirs[1]=malloc(64);
547         strcpy(dirs[0],"messages");
548         strcpy(dirs[1],"help");
549         snprintf(buf2, sizeof buf2, "%s.%d.%d", buf, CC->cs_clientdev, CC->cs_clienttyp);
550         mesg_locate(targ,sizeof targ,buf2,2,(const char **)dirs);
551         if (strlen(targ) == 0) {
552                 snprintf(buf2, sizeof buf2, "%s.%d", buf, CC->cs_clientdev);
553                 mesg_locate(targ,sizeof targ,buf2,2,(const char **)dirs);
554                 if (strlen(targ) == 0) {
555                         mesg_locate(targ,sizeof targ,buf,2,(const char **)dirs);
556                 }       
557         }
558         free(dirs[0]);
559         free(dirs[1]);
560
561         if (strlen(targ)==0) {
562                 cprintf("%d '%s' not found.\n",ERROR + FILE_NOT_FOUND, mname);
563                 return;
564         }
565
566         mfp = fopen(targ,"r");
567         if (mfp==NULL) {
568                 cprintf("%d Cannot open '%s': %s\n",
569                         ERROR + INTERNAL_ERROR, targ, strerror(errno));
570                 return;
571         }
572         cprintf("%d %s\n",LISTING_FOLLOWS,buf);
573
574         while (fgets(buf, (SIZ-1), mfp)!=NULL) {
575                 buf[strlen(buf)-1] = 0;
576                 do_help_subst(buf);
577                 cprintf("%s\n",buf);
578         }
579
580         fclose(mfp);
581         cprintf("000\n");
582 }
583
584
585 /*
586  * enter system messages or help
587  */
588 void cmd_emsg(char *mname)
589 {
590         FILE *mfp;
591         char targ[SIZ];
592         char buf[SIZ];
593         char *dirs[2];
594         int a;
595
596         unbuffer_output();
597
598         if (CtdlAccessCheck(ac_aide)) return;
599
600         extract(buf,mname,0);
601         for (a=0; a<strlen(buf); ++a) {         /* security measure */
602                 if (buf[a] == '/') buf[a] = '.';
603         }
604
605         dirs[0]=malloc(64);
606         dirs[1]=malloc(64);
607         strcpy(dirs[0],"messages");
608         strcpy(dirs[1],"help");
609         mesg_locate(targ,sizeof targ,buf,2,(const char**)dirs);
610         free(dirs[0]);
611         free(dirs[1]);
612
613         if (strlen(targ)==0) {
614                 snprintf(targ, sizeof targ, "./help/%s", buf);
615         }
616
617         mfp = fopen(targ,"w");
618         if (mfp==NULL) {
619                 cprintf("%d Cannot open '%s': %s\n",
620                         ERROR + INTERNAL_ERROR, targ, strerror(errno));
621                 return;
622         }
623         cprintf("%d %s\n", SEND_LISTING, targ);
624
625         while (client_gets(buf), strcmp(buf, "000")) {
626                 fprintf(mfp, "%s\n", buf);
627         }
628
629         fclose(mfp);
630 }
631
632
633 /* Don't show the names of private rooms unless the viewing
634  * user also knows the rooms.
635  */
636 void GenerateRoomDisplay(char *real_room,
637                         struct CitContext *viewed,
638                         struct CitContext *viewer) {
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                 if ( (CtdlRoomAccess(&viewed->room, &viewer->user)
646                    & 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         snprintf(con->temp, sizeof con->temp, tmpnam(NULL));
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_gets(cmdbuf) < 1) {
946                 lprintf(CTDL_ERR, "Client socket is broken; ending session\n");
947                 CC->kill_me = 1;
948                 return;
949         }
950         lprintf(CTDL_INFO, "Citadel: %s\n", cmdbuf);
951
952         buffer_output();
953
954         /*
955          * Let other clients see the last command we executed, and
956          * update the idle time, but not NOOP, QNOP, PEXP, or GEXP.
957          */
958         if ( (strncasecmp(cmdbuf, "NOOP", 4))
959            && (strncasecmp(cmdbuf, "QNOP", 4))
960            && (strncasecmp(cmdbuf, "PEXP", 4))
961            && (strncasecmp(cmdbuf, "GEXP", 4)) ) {
962                 strcpy(CC->lastcmdname, "    ");
963                 safestrncpy(CC->lastcmdname, cmdbuf, 
964                         sizeof(CC->lastcmdname) );
965                 time(&CC->lastidle);
966         }
967                 
968         if ((strncasecmp(cmdbuf, "ENT0", 4))
969            && (strncasecmp(cmdbuf, "MESG", 4))
970            && (strncasecmp(cmdbuf, "MSGS", 4)))
971         {
972            CC->cs_flags &= ~CS_POSTING;
973         }
974                    
975         if (!strncasecmp(cmdbuf,"NOOP",4)) {
976                 cprintf("%d%cok\n", CIT_OK, CtdlCheckExpress() );
977         }
978         
979         else if (!strncasecmp(cmdbuf,"QNOP",4)) {
980                 /* do nothing, this command returns no response */
981         }
982
983         else if (!strncasecmp(cmdbuf,"QUIT",4)) {
984                 cprintf("%d Goodbye.\n", CIT_OK);
985                 CC->kill_me = 1;
986         }
987
988         else if (!strncasecmp(cmdbuf,"ASYN",4)) {
989                 cmd_asyn(&cmdbuf[5]);
990         }
991
992         else if (!strncasecmp(cmdbuf,"LOUT",4)) {
993                 if (CC->logged_in) logout(CC);
994                 cprintf("%d logged out.\n", CIT_OK);
995         }
996
997         else if (!strncasecmp(cmdbuf,"USER",4)) {
998                 cmd_user(&cmdbuf[5]);
999         }
1000
1001         else if (!strncasecmp(cmdbuf,"PASS",4)) {
1002                 cmd_pass(&cmdbuf[5]);
1003         }
1004
1005         else if (!strncasecmp(cmdbuf,"NEWU",4)) {
1006                 cmd_newu(&cmdbuf[5]);
1007         }
1008
1009         else if (!strncasecmp(cmdbuf,"CREU",4)) {
1010                 cmd_creu(&cmdbuf[5]);
1011         }
1012
1013         else if (!strncasecmp(cmdbuf,"SETP",4)) {
1014                 cmd_setp(&cmdbuf[5]);
1015         }
1016
1017         else if (!strncasecmp(cmdbuf,"LRMS",4)) {
1018                 cmd_lrms(&cmdbuf[5]);
1019         }
1020
1021         else if (!strncasecmp(cmdbuf,"LKRA",4)) {
1022                 cmd_lkra(&cmdbuf[5]);
1023         }
1024
1025         else if (!strncasecmp(cmdbuf,"LKRN",4)) {
1026                 cmd_lkrn(&cmdbuf[5]);
1027         }
1028
1029         else if (!strncasecmp(cmdbuf,"LKRO",4)) {
1030                 cmd_lkro(&cmdbuf[5]);
1031         }
1032
1033         else if (!strncasecmp(cmdbuf,"LZRM",4)) {
1034                 cmd_lzrm(&cmdbuf[5]);
1035         }
1036
1037         else if (!strncasecmp(cmdbuf,"LPRM",4)) {
1038                 cmd_lprm(&cmdbuf[5]);
1039         }
1040
1041         else if (!strncasecmp(cmdbuf,"GETU",4)) {
1042                 cmd_getu();
1043         }
1044
1045         else if (!strncasecmp(cmdbuf,"SETU",4)) {
1046                 cmd_setu(&cmdbuf[5]);
1047         }
1048
1049         else if (!strncasecmp(cmdbuf,"GOTO",4)) {
1050                 cmd_goto(&cmdbuf[5]);
1051         }
1052
1053         else if (!strncasecmp(cmdbuf,"MSGS",4)) {
1054                 cmd_msgs(&cmdbuf[5]);
1055         }
1056
1057         else if (!strncasecmp(cmdbuf,"WHOK",4)) {
1058                 cmd_whok();
1059         }
1060
1061         else if (!strncasecmp(cmdbuf,"RDIR",4)) {
1062                 cmd_rdir();
1063         }
1064
1065         else if (!strncasecmp(cmdbuf,"MSG0",4)) {
1066                 cmd_msg0(&cmdbuf[5]);
1067         }
1068
1069         else if (!strncasecmp(cmdbuf,"MSG2",4)) {
1070                 cmd_msg2(&cmdbuf[5]);
1071         }
1072
1073         else if (!strncasecmp(cmdbuf,"MSG3",4)) {
1074                 cmd_msg3(&cmdbuf[5]);
1075         }
1076
1077         else if (!strncasecmp(cmdbuf,"MSG4",4)) {
1078                 cmd_msg4(&cmdbuf[5]);
1079         }
1080
1081         else if (!strncasecmp(cmdbuf,"MSGP",4)) {
1082                 cmd_msgp(&cmdbuf[5]);
1083         }
1084
1085         else if (!strncasecmp(cmdbuf,"OPNA",4)) {
1086                 cmd_opna(&cmdbuf[5]);
1087         }
1088
1089         else if (!strncasecmp(cmdbuf,"INFO",4)) {
1090                 cmd_info();
1091         }
1092
1093         else if (!strncasecmp(cmdbuf,"SLRP",4)) {
1094                 cmd_slrp(&cmdbuf[5]);
1095         }
1096
1097         else if (!strncasecmp(cmdbuf,"INVT",4)) {
1098                 cmd_invt_kick(&cmdbuf[5],1);
1099         }
1100
1101         else if (!strncasecmp(cmdbuf,"KICK",4)) {
1102                 cmd_invt_kick(&cmdbuf[5],0);
1103         }
1104
1105         else if (!strncasecmp(cmdbuf,"GETR",4)) {
1106                 cmd_getr();
1107         }
1108
1109         else if (!strncasecmp(cmdbuf,"SETR",4)) {
1110                 cmd_setr(&cmdbuf[5]);
1111         }
1112
1113         else if (!strncasecmp(cmdbuf,"GETA",4)) {
1114                 cmd_geta();
1115         }
1116
1117         else if (!strncasecmp(cmdbuf,"SETA",4)) {
1118                 cmd_seta(&cmdbuf[5]);
1119         }
1120
1121         else if (!strncasecmp(cmdbuf,"ENT0",4)) {
1122                 cmd_ent0(&cmdbuf[5]);
1123         }
1124
1125         else if (!strncasecmp(cmdbuf,"RINF",4)) {
1126                 cmd_rinf();
1127         }
1128
1129         else if (!strncasecmp(cmdbuf,"DELE",4)) {
1130                 cmd_dele(&cmdbuf[5]);
1131         }
1132
1133         else if (!strncasecmp(cmdbuf,"KILL",4)) {
1134                 cmd_kill(&cmdbuf[5]);
1135         }
1136
1137         else if (!strncasecmp(cmdbuf,"CRE8",4)) {
1138                 cmd_cre8(&cmdbuf[5]);
1139         }
1140
1141         else if (!strncasecmp(cmdbuf,"MOVE",4)) {
1142                 cmd_move(&cmdbuf[5]);
1143         }
1144
1145         else if (!strncasecmp(cmdbuf,"FORG",4)) {
1146                 cmd_forg();
1147         }
1148
1149         else if (!strncasecmp(cmdbuf,"MESG",4)) {
1150                 cmd_mesg(&cmdbuf[5]);
1151         }
1152
1153         else if (!strncasecmp(cmdbuf,"EMSG",4)) {
1154                 cmd_emsg(&cmdbuf[5]);
1155         }
1156
1157         else if (!strncasecmp(cmdbuf,"GNUR",4)) {
1158                 cmd_gnur();
1159         }
1160
1161         else if (!strncasecmp(cmdbuf,"VALI",4)) {
1162                 cmd_vali(&cmdbuf[5]);
1163         }
1164
1165         else if (!strncasecmp(cmdbuf,"EINF",4)) {
1166                 cmd_einf(&cmdbuf[5]);
1167         }
1168
1169         else if (!strncasecmp(cmdbuf,"LIST",4)) {
1170                 cmd_list();
1171         }
1172
1173         else if (!strncasecmp(cmdbuf,"CHEK",4)) {
1174                 cmd_chek();
1175         }
1176
1177         else if (!strncasecmp(cmdbuf,"DELF",4)) {
1178                 cmd_delf(&cmdbuf[5]);
1179         }
1180
1181         else if (!strncasecmp(cmdbuf,"MOVF",4)) {
1182                 cmd_movf(&cmdbuf[5]);
1183         }
1184
1185         else if (!strncasecmp(cmdbuf,"NETF",4)) {
1186                 cmd_netf(&cmdbuf[5]);
1187         }
1188
1189         else if (!strncasecmp(cmdbuf,"OPEN",4)) {
1190                 cmd_open(&cmdbuf[5]);
1191         }
1192
1193         else if (!strncasecmp(cmdbuf,"CLOS",4)) {
1194                 cmd_clos();
1195         }
1196
1197         else if (!strncasecmp(cmdbuf,"UOPN",4)) {
1198                 cmd_uopn(&cmdbuf[5]);
1199         }
1200
1201         else if (!strncasecmp(cmdbuf,"UCLS",4)) {
1202                 cmd_ucls(&cmdbuf[5]);
1203         }
1204
1205         else if (!strncasecmp(cmdbuf,"READ",4)) {
1206                 cmd_read(&cmdbuf[5]);
1207         }
1208
1209         else if (!strncasecmp(cmdbuf,"WRIT",4)) {
1210                 cmd_writ(&cmdbuf[5]);
1211         }
1212
1213         else if (!strncasecmp(cmdbuf,"QUSR",4)) {
1214                 cmd_qusr(&cmdbuf[5]);
1215         }
1216
1217         else if (!strncasecmp(cmdbuf,"ECHO",4)) {
1218                 cmd_echo(&cmdbuf[5]);
1219         }
1220
1221         else if (!strncasecmp(cmdbuf,"OIMG",4)) {
1222                 cmd_oimg(&cmdbuf[5]);
1223         }
1224
1225         else if (!strncasecmp(cmdbuf,"MORE",4)) {
1226                 cmd_more();
1227         }
1228
1229         else if (!strncasecmp(cmdbuf,"NDOP",4)) {
1230                 cmd_ndop(&cmdbuf[5]);
1231         }
1232
1233         else if (!strncasecmp(cmdbuf,"NUOP",4)) {
1234                 cmd_nuop(&cmdbuf[5]);
1235         }
1236
1237         else if (!strncasecmp(cmdbuf,"LFLR",4)) {
1238                 cmd_lflr();
1239         }
1240
1241         else if (!strncasecmp(cmdbuf,"CFLR",4)) {
1242                 cmd_cflr(&cmdbuf[5]);
1243         }
1244
1245         else if (!strncasecmp(cmdbuf,"KFLR",4)) {
1246                 cmd_kflr(&cmdbuf[5]);
1247         }
1248
1249         else if (!strncasecmp(cmdbuf,"EFLR",4)) {
1250                 cmd_eflr(&cmdbuf[5]);
1251         }
1252
1253         else if (!strncasecmp(cmdbuf,"IDEN",4)) {
1254                 cmd_iden(&cmdbuf[5]);
1255         }
1256
1257         else if (!strncasecmp(cmdbuf,"IPGM",4)) {
1258                 cmd_ipgm(&cmdbuf[5]);
1259         }
1260
1261         else if (!strncasecmp(cmdbuf,"TERM",4)) {
1262                 cmd_term(&cmdbuf[5]);
1263         }
1264
1265         else if (!strncasecmp(cmdbuf,"DOWN",4)) {
1266                 cmd_down();
1267         }
1268
1269         else if (!strncasecmp(cmdbuf,"SCDN",4)) {
1270                 cmd_scdn(&cmdbuf[5]);
1271         }
1272
1273         else if (!strncasecmp(cmdbuf, "UIMG", 4)) {
1274                 cmd_uimg(&cmdbuf[5]);
1275         }
1276
1277         else if (!strncasecmp(cmdbuf, "TIME", 4)) {
1278                 cmd_time();
1279         }
1280
1281         else if (!strncasecmp(cmdbuf, "AGUP", 4)) {
1282                 cmd_agup(&cmdbuf[5]);
1283         }
1284
1285         else if (!strncasecmp(cmdbuf, "ASUP", 4)) {
1286                 cmd_asup(&cmdbuf[5]);
1287         }
1288
1289         else if (!strncasecmp(cmdbuf, "GPEX", 4)) {
1290                 cmd_gpex(&cmdbuf[5]);
1291         }
1292
1293         else if (!strncasecmp(cmdbuf, "SPEX", 4)) {
1294                 cmd_spex(&cmdbuf[5]);
1295         }
1296
1297         else if (!strncasecmp(cmdbuf, "CONF", 4)) {
1298                 cmd_conf(&cmdbuf[5]);
1299         }
1300
1301         else if (!strncasecmp(cmdbuf, "SEEN", 4)) {
1302                 cmd_seen(&cmdbuf[5]);
1303         }
1304
1305         else if (!strncasecmp(cmdbuf, "GTSN", 4)) {
1306                 cmd_gtsn(&cmdbuf[5]);
1307         }
1308
1309         else if (!strncasecmp(cmdbuf, "VIEW", 4)) {
1310                 cmd_view(&cmdbuf[5]);
1311         }
1312
1313         else if (!strncasecmp(cmdbuf, "ISME", 4)) {
1314                 cmd_isme(&cmdbuf[5]);
1315         }
1316
1317         else if (!DLoader_Exec_Cmd(cmdbuf)) {
1318                 cprintf("%d Unrecognized or unsupported command.\n",
1319                         ERROR + CMD_NOT_SUPPORTED);
1320                }
1321
1322         unbuffer_output();
1323
1324         /* Run any after-each-command routines registered by modules */
1325         PerformSessionHooks(EVT_CMD);
1326 }
1327
1328
1329 /*
1330  * This loop performs all asynchronous functions.
1331  */
1332 void do_async_loop(void) {
1333         PerformSessionHooks(EVT_ASYNC);
1334 }