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