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