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