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