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