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