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