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