5e508ec5672d67739758feb4802fd814b6da02b6
[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 void cmd_rchg(char *argbuf)
310 {
311         char newroomname[256];
312
313         extract(newroomname, argbuf, 0);
314         newroomname[ROOMNAMELEN-1] = 0;
315         if (strlen(newroomname) > 0) {
316                 safestrncpy(CC->fake_roomname, newroomname,
317                         sizeof(CC->fake_roomname) );
318                 }
319         else {
320                 strcpy(CC->fake_roomname, "");
321                 }
322         cprintf("%d OK\n", OK);
323 }
324
325 void cmd_hchg(char *argbuf)
326 {
327         char newhostname[256];
328
329         extract(newhostname, argbuf, 0);
330         if (strlen(newhostname) > 0) {
331                 safestrncpy(CC->fake_hostname, newhostname,
332                         sizeof(CC->fake_hostname) );
333                 }
334         else {
335                 strcpy(CC->fake_hostname, "");
336                 }
337         cprintf("%d OK\n", OK);
338 }
339
340 void cmd_uchg(char *argbuf)
341 {
342
343         char newusername[256];
344
345         extract(newusername, argbuf, 0);
346
347         if (CC->usersupp.axlevel < 6) {
348                 cprintf("%d You must be an Aide to masquerade your name.\n",
349                         ERROR+HIGHER_ACCESS_REQUIRED);
350                 return;
351         }
352
353         if (strlen(newusername) > 0) {
354                 CC->cs_flags &= ~CS_STEALTH;
355                 memset(CC->fake_username, 0, 32);
356                 if (strncasecmp(newusername, CC->curr_user,
357                                 strlen(CC->curr_user)))
358                         safestrncpy(CC->fake_username, newusername,
359                                 sizeof(CC->fake_username));
360         }
361         else {
362                 CC->fake_username[0] = '\0';
363                 CC->cs_flags |= CS_STEALTH;
364         }
365         cprintf("%d\n",OK);
366 }
367
368
369
370 /*
371  * returns an asterisk if there are any express messages waiting,
372  * space otherwise.
373  */
374 char check_express(void) {
375         if (CC->FirstExpressMessage == NULL) {
376                 return(' ');
377                 }
378         else {
379                 return('*');
380                 }
381         }
382
383 void cmd_time(void)
384 {
385    time_t tv;
386    
387    tv = time(NULL);
388    
389    cprintf("%d %ld\n", OK, tv);
390 }
391
392 /*
393  * Check whether two hostnames match.
394  * "Realname" should be an actual name of a client that is trying to connect;
395  * "testname" should be the value we are comparing it with. The idea is that we
396  * want to compare with both the abbreviated and fully-qualified versions of
397  * "testname;" some people define "localhost" as "localhost.foo.com," etc.
398  */
399 static int hostnames_match(const char *realname, const char *testname) {
400         struct hostent *he;
401         int retval = 0;
402
403         if (!strcasecmp(realname, testname))
404                 return 1;
405
406 #ifdef HAVE_NONREENTRANT_NETDB
407         begin_critical_section(S_NETDB);
408 #endif
409
410         if ((he = gethostbyname(testname)) != NULL)
411                 if (!strcasecmp(realname, he->h_name))
412                         retval = 1;
413
414 #ifdef HAVE_NONREENTRANT_NETDB
415         end_critical_section(S_NETDB);
416 #endif
417
418         return retval;
419         }
420
421 /*
422  * check a hostname against the public_clients file
423  */
424 int is_public_client(char *where)
425 {
426         char buf[256];
427         FILE *fp;
428
429         if (hostnames_match(where,"localhost")) return(1);
430         if (hostnames_match(where,config.c_fqdn)) return(1);
431
432         fp = fopen("public_clients","r");
433         if (fp == NULL) return(0);
434
435         while (fgets(buf,256,fp)!=NULL) {
436                 while (isspace((buf[strlen(buf)-1]))) 
437                         buf[strlen(buf)-1] = 0;
438                 if (hostnames_match(where,buf)) {
439                         fclose(fp);
440                         return(1);
441                         }
442                 }
443
444         fclose(fp);
445         return(0);
446         }
447
448
449 /*
450  * the client is identifying itself to the server
451  */
452 void cmd_iden(char *argbuf)
453 {
454         int dev_code;
455         int cli_code;
456         int rev_level;
457         char desc[256];
458         char from_host[256];
459         struct in_addr addr;
460
461         if (num_parms(argbuf)<4) {
462                 cprintf("%d usage error\n",ERROR);
463                 return;
464                 }
465
466         dev_code = extract_int(argbuf,0);
467         cli_code = extract_int(argbuf,1);
468         rev_level = extract_int(argbuf,2);
469         extract(desc,argbuf,3);
470
471         safestrncpy(from_host, config.c_fqdn, sizeof from_host);
472         from_host[sizeof from_host - 1] = 0;
473         if (num_parms(argbuf)>=5) extract(from_host,argbuf,4);
474
475         CC->cs_clientdev = dev_code;
476         CC->cs_clienttyp = cli_code;
477         CC->cs_clientver = rev_level;
478         safestrncpy(CC->cs_clientname, desc, sizeof CC->cs_clientname);
479         CC->cs_clientname[31] = 0;
480
481         lprintf(9, "Looking up hostname '%s'\n", from_host);
482         if ((strlen(from_host)>0) && 
483            (is_public_client(CC->cs_host))) {
484                 if ((addr.s_addr = inet_addr(from_host)) != INADDR_NONE)
485                         locate_host(CC->cs_host, &addr);
486                 else {
487                         safestrncpy(CC->cs_host, from_host, sizeof CC->cs_host);
488                         CC->cs_host[24] = 0;
489                         }
490                 }
491
492         syslog(LOG_NOTICE,"client %d/%d/%01d.%02d (%s)\n",
493                 dev_code,
494                 cli_code,
495                 (rev_level / 100),
496                 (rev_level % 100),
497                 desc);
498                 cprintf("%d Ok\n",OK);
499         }
500
501
502 /*
503  * enter or exit "stealth mode"
504  */
505 void cmd_stel(char *cmdbuf)
506 {
507         int requested_mode;
508
509         requested_mode = extract_int(cmdbuf,0);
510         if (requested_mode !=0) requested_mode = 1;
511
512         if (!CC->logged_in) {
513                 cprintf("%d Not logged in.\n",ERROR+NOT_LOGGED_IN);
514                 return;
515                 }
516
517         if (CC->usersupp.axlevel < 6) {
518                 cprintf("%d You must be an Aide to use stealth mode.\n",
519                         ERROR+HIGHER_ACCESS_REQUIRED);
520                 return;
521                 }
522
523         if (CC->cs_flags & CS_STEALTH) {
524                 if (requested_mode == 0)
525                         CC->cs_flags = CC->cs_flags-CS_STEALTH;
526                 }
527         else {
528                 if (requested_mode == 1)
529                         CC->cs_flags = CC->cs_flags|CS_STEALTH;
530                 }
531
532         cprintf("%d Ok\n",OK);
533         }
534
535
536
537
538 /*
539  * display system messages or help
540  */
541 void cmd_mesg(char *mname)
542 {
543         FILE *mfp;
544         char targ[256];
545         char buf[256];
546         char *dirs[2];
547
548         extract(buf,mname,0);
549
550
551         dirs[0]=mallok(64);
552         dirs[1]=mallok(64);
553         strcpy(dirs[0],"messages");
554         strcpy(dirs[1],"help");
555         mesg_locate(targ,buf,2,dirs);
556         phree(dirs[0]);
557         phree(dirs[1]);
558
559
560         if (strlen(targ)==0) {
561                 cprintf("%d '%s' not found.\n",ERROR,mname);
562                 return;
563                 }
564
565         mfp = fopen(targ,"r");
566         if (mfp==NULL) {
567                 cprintf("%d Cannot open '%s': %s\n",
568                         ERROR,targ,strerror(errno));
569                 return;
570                 }
571         cprintf("%d %s\n",LISTING_FOLLOWS,buf);
572
573         while (fgets(buf,255,mfp)!=NULL) {
574                 buf[strlen(buf)-1] = 0;
575                 do_help_subst(buf);
576                 cprintf("%s\n",buf);
577                 }
578
579         fclose(mfp);
580         cprintf("000\n");
581         }
582
583
584 /*
585  * enter system messages or help
586  */
587 void cmd_emsg(char *mname)
588 {
589         FILE *mfp;
590         char targ[256];
591         char buf[256];
592         char *dirs[2];
593         int a;
594
595         if (CC->usersupp.axlevel < 6) {
596                 cprintf("%d You must be an Aide to edit system messages.\n",
597                         ERROR+HIGHER_ACCESS_REQUIRED);
598                 return;
599                 }
600
601         extract(buf,mname,0);
602         for (a=0; a<strlen(buf); ++a) {         /* security measure */
603                 if (buf[a] == '/') buf[a] = '.';
604                 }
605
606         dirs[0]=mallok(64);
607         dirs[1]=mallok(64);
608         strcpy(dirs[0],"messages");
609         strcpy(dirs[1],"help");
610         mesg_locate(targ,buf,2,dirs);
611         phree(dirs[0]);
612         phree(dirs[1]);
613
614         if (strlen(targ)==0) {
615                 snprintf(targ, sizeof targ, "./help/%s", buf);
616                 }
617
618         mfp = fopen(targ,"w");
619         if (mfp==NULL) {
620                 cprintf("%d Cannot open '%s': %s\n",
621                         ERROR,targ,strerror(errno));
622                 return;
623                 }
624         cprintf("%d %s\n", SEND_LISTING, targ);
625
626         while (client_gets(buf), strcmp(buf, "000")) {
627                 fprintf(mfp, "%s\n", buf);
628                 }
629
630         fclose(mfp);
631         }
632
633
634 /* Don't show the names of private rooms unless the viewing
635  * user also knows the rooms.
636  */
637 void GenerateRoomDisplay(char *real_room,
638                         struct CitContext *viewed,
639                         struct CitContext *viewer) {
640
641         strcpy(real_room, viewed->quickroom.QRname);
642         if (viewed->quickroom.QRflags & QR_MAILBOX) {
643                 strcpy(real_room, &real_room[11]);
644         }
645         if (viewed->quickroom.QRflags & QR_PRIVATE) {
646                 if ( (CtdlRoomAccess(&viewed->quickroom, &viewer->usersupp)
647                    & UA_KNOWN) == 0) {
648                         strcpy(real_room, "<private room>");
649                 }
650         }
651
652         if (viewed->cs_flags & CS_CHAT) {
653                 while (strlen(real_room) < 14)
654                         strcat(real_room, " ");
655
656                 strcpy(&real_room[14], "<chat>");
657         }
658
659 }
660
661
662 /*
663  * who's online
664  */
665 void cmd_rwho(void) {
666         struct CitContext *cptr;
667         int spoofed = 0;
668         int aide;
669         char un[40];
670         char real_room[ROOMNAMELEN], room[ROOMNAMELEN];
671         char host[40], flags[5];
672         
673         aide = CC->usersupp.axlevel >= 6;
674         cprintf("%d%c \n", LISTING_FOLLOWS, check_express() );
675         
676         for (cptr = ContextList; cptr != NULL; cptr = cptr->next) 
677         {
678                 flags[0] = '\0';
679                 spoofed = 0;
680                 
681                 if (cptr->cs_flags & CS_POSTING)
682                    strcat(flags, "*");
683                 else
684                    strcat(flags, ".");
685                    
686                 if (cptr->fake_username[0])
687                 {
688                    strcpy(un, cptr->fake_username);
689                    spoofed = 1;
690                 }
691                 else
692                    strcpy(un, cptr->curr_user);
693                    
694                 if (cptr->fake_hostname[0])
695                 {
696                    strcpy(host, cptr->fake_hostname);
697                    spoofed = 1;
698                 }
699                 else
700                    strcpy(host, cptr->cs_host);
701
702                 GenerateRoomDisplay(real_room, cptr, CC);
703
704                 if (cptr->fake_roomname[0]) {
705                         strcpy(room, cptr->fake_roomname);
706                         spoofed = 1;
707                 }
708                 else {
709                         strcpy(room, real_room);
710                 }
711                 
712                 if ((aide) && (spoofed))
713                    strcat(flags, "+");
714                 
715                 if ((cptr->cs_flags & CS_STEALTH) && (aide))
716                    strcat(flags, "-");
717                 
718                 if (((cptr->cs_flags&CS_STEALTH)==0) || (aide))
719                 {
720                         cprintf("%d|%s|%s|%s|%s|%ld|%s|%s\n",
721                                 cptr->cs_pid, un, room,
722                                 host, cptr->cs_clientname,
723                                 (long)(cptr->lastidle),
724                                 cptr->lastcmdname, flags);
725                 }
726                 if ((spoofed) && (aide))
727                 {
728                         cprintf("%d|%s|%s|%s|%s|%ld|%s|%s\n",
729                                 cptr->cs_pid, cptr->curr_user,
730                                 real_room,
731                                 cptr->cs_host, cptr->cs_clientname,
732                                 (long)(cptr->lastidle),
733                                 cptr->lastcmdname, flags);
734                 
735                 }
736         }
737
738         /* Now it's magic time.  Before we finish, call any EVT_RWHO hooks
739          * so that external paging modules such as serv_icq can add more
740          * content to the Wholist.
741          */
742         PerformSessionHooks(EVT_RWHO);
743         cprintf("000\n");
744         }
745
746
747 /*
748  * Terminate another running session
749  */
750 void cmd_term(char *cmdbuf)
751 {
752         int session_num;
753         struct CitContext *ccptr;
754         int found_it = 0;
755
756         if (!CC->logged_in) {
757                 cprintf("%d Not logged in.\n",ERROR+NOT_LOGGED_IN);
758                 return;
759                 }
760
761         if (CC->usersupp.axlevel < 6) {
762                 cprintf("%d You must be an Aide to terminate sessions.\n",
763                         ERROR+HIGHER_ACCESS_REQUIRED);
764                 return;
765                 }
766
767         session_num = extract_int(cmdbuf, 0);
768         if (session_num == CC->cs_pid) {
769                 cprintf("%d You can't kill your own session.\n", ERROR);
770                 return;
771                 }
772
773         lprintf(9, "Locating session to kill\n");
774         begin_critical_section(S_SESSION_TABLE);
775         for (ccptr = ContextList; ccptr != NULL; ccptr = ccptr->next) {
776                 if (session_num == ccptr->cs_pid) {
777                         ccptr->kill_me = 1;
778                         found_it = 1;
779                         }
780                 }
781         end_critical_section(S_SESSION_TABLE);
782
783         if (found_it) {
784                 cprintf("%d Session terminated.\n", OK);
785                 }
786         else {
787                 cprintf("%d No such session.\n", ERROR);
788                 }
789         }
790
791
792
793
794
795 /* 
796  * get the paginator prompt
797  */
798 void cmd_more(void) {
799         cprintf("%d %s\n",OK,config.c_moreprompt);
800         }
801
802 /*
803  * echo 
804  */
805 void cmd_echo(char *etext)
806 {
807         cprintf("%d %s\n",OK,etext);
808         }
809
810
811
812 /* 
813  * identify as internal program
814  */
815 void cmd_ipgm(char *argbuf)
816 {
817         int secret;
818
819         secret = extract_int(argbuf, 0);
820         if (secret == config.c_ipgm_secret) {
821                 CC->internal_pgm = 1;
822                 strcpy(CC->curr_user, "<internal program>");
823                 CC->cs_flags = CC->cs_flags|CS_STEALTH;
824                 cprintf("%d Authenticated as an internal program.\n",OK);
825                 }
826         else {
827                 cprintf("%d Authentication failed.\n",ERROR);
828                 lprintf(3, "Warning: ipgm authentication failed.\n");
829                 }
830         }
831
832
833 /*
834  * Shut down the server
835  */
836 void cmd_down(void) {
837         if (!CC->logged_in) {
838                 cprintf("%d Not logged in.\n", ERROR+NOT_LOGGED_IN);
839                 return;
840                 }
841
842         if (CC->usersupp.axlevel < 6) {
843                 cprintf("%d You must be an Aide to shut down the server.\n",
844                         ERROR+HIGHER_ACCESS_REQUIRED);
845                 return;
846                 }
847
848         cprintf("%d Shutting down server.  Goodbye.\n", OK);
849         master_cleanup();
850         }
851
852 /*
853  * Schedule or cancel a server shutdown
854  */
855 void cmd_scdn(char *argbuf)
856 {
857         int new_state;
858
859         if (!CC->logged_in) {
860                 cprintf("%d Not logged in.\n",ERROR+NOT_LOGGED_IN);
861                 return;
862                 }
863
864         if (CC->usersupp.axlevel < 6) {
865                 cprintf("%d You must be an Aide to schedule a shutdown.\n",
866                         ERROR+HIGHER_ACCESS_REQUIRED);
867                 return;
868                 }
869
870         new_state = extract_int(argbuf, 0);
871         if ((new_state == 0) || (new_state == 1)) {
872                 ScheduledShutdown = new_state;
873                 }
874         cprintf("%d %d\n", OK, ScheduledShutdown);
875         }
876
877
878 /*
879  * Back-end function for starting a session
880  */
881 void begin_session(struct CitContext *con)
882 {
883         int len;
884         struct sockaddr_in sin;
885
886         /* 
887          * Initialize some variables specific to our context.
888          */
889         con->logged_in = 0;
890         con->internal_pgm = 0;
891         con->download_fp = NULL;
892         con->upload_fp = NULL;
893         con->FirstExpressMessage = NULL;
894         time(&con->lastcmd);
895         time(&con->lastidle);
896         strcpy(con->lastcmdname, "    ");
897         strcpy(con->cs_clientname, "(unknown)");
898         strcpy(con->curr_user, NLI);
899         strcpy(con->net_node,"");
900         snprintf(con->temp, sizeof con->temp, tmpnam(NULL));
901         safestrncpy(con->cs_host, config.c_fqdn, sizeof con->cs_host);
902         con->cs_host[sizeof con->cs_host - 1] = 0;
903         len = sizeof sin;
904         if (!getpeername(con->client_socket, (struct sockaddr *) &sin, &len))
905                 locate_host(con->cs_host, &sin.sin_addr);
906         con->cs_flags = 0;
907         con->upload_type = UPL_FILE;
908         con->dl_is_net = 0;
909         con->FirstSessData = NULL;
910
911         con->nologin = 0;
912         if ((config.c_maxsessions > 0)&&(num_sessions > config.c_maxsessions))
913                 con->nologin = 1;
914
915         lprintf(3, "citserver[%3d]: started.\n", con->cs_pid);
916
917         /* Run any session startup routines registered by loadable modules */
918         PerformSessionHooks(EVT_START);
919
920         rec_log(CL_CONNECT, "");
921 }
922
923
924 void citproto_begin_session() {
925         if (CC->nologin==1) {
926                 cprintf("%d %s: Too many users are already online "
927                         "(maximum is %d)\n",
928                         ERROR+MAX_SESSIONS_EXCEEDED,
929                         config.c_nodename, config.c_maxsessions);
930                 }
931         else {
932                 cprintf("%d %s Citadel/UX server ready.\n",
933                         OK, config.c_nodename);
934                 }
935 }
936
937
938
939
940 /*
941  * This loop recognizes all server commands.
942  */
943 void do_command_loop(void) {
944         char cmdbuf[256];
945
946         time(&CC->lastcmd);
947         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
948         if (client_gets(cmdbuf) < 1) {
949                 lprintf(3, "Client socket is broken.  Ending session.\n");
950                 CC->kill_me = 1;
951                 return;
952         }
953         lprintf(5, "citserver[%3d]: %s\n", CC->cs_pid, cmdbuf);
954
955         /*
956          * Let other clients see the last command we executed, and
957          * update the idle time, but not NOOP, PEXP, or GEXP.
958          */
959         if ( (strncasecmp(cmdbuf, "NOOP", 4))
960            && (strncasecmp(cmdbuf, "PEXP", 4))
961            && (strncasecmp(cmdbuf, "GEXP", 4)) ) {
962                 strcpy(CC->lastcmdname, "    ");
963                 safestrncpy(CC->lastcmdname, cmdbuf, 
964                         sizeof(CC->lastcmdname) );
965                 time(&CC->lastidle);
966                 }
967                 
968         if ((strncasecmp(cmdbuf, "ENT0", 4))
969            && (strncasecmp(cmdbuf, "MESG", 4))
970            && (strncasecmp(cmdbuf, "MSGS", 4)))
971         {
972            CC->cs_flags &= ~CS_POSTING;
973         }
974                    
975         if (!strncasecmp(cmdbuf,"NOOP",4)) {
976                 cprintf("%d%cok\n",OK,check_express());
977                 }
978
979         else if (!strncasecmp(cmdbuf,"QUIT",4)) {
980                 cprintf("%d Goodbye.\n",OK);
981                 CC->kill_me = 1;
982                 }
983
984         else if (!strncasecmp(cmdbuf,"LOUT",4)) {
985                 if (CC->logged_in) logout(CC);
986                 cprintf("%d logged out.\n",OK);
987                 }
988
989         else if (!strncasecmp(cmdbuf,"USER",4)) {
990                 cmd_user(&cmdbuf[5]);
991                 }
992
993         else if (!strncasecmp(cmdbuf,"PASS",4)) {
994                 cmd_pass(&cmdbuf[5]);
995                 }
996
997         else if (!strncasecmp(cmdbuf,"NEWU",4)) {
998                 cmd_newu(&cmdbuf[5]);
999                 }
1000
1001         else if (!strncasecmp(cmdbuf,"SETP",4)) {
1002                 cmd_setp(&cmdbuf[5]);
1003                 }
1004
1005         else if (!strncasecmp(cmdbuf,"LRMS",4)) {
1006                 cmd_lrms(&cmdbuf[5]);
1007                 }
1008
1009         else if (!strncasecmp(cmdbuf,"LKRA",4)) {
1010                 cmd_lkra(&cmdbuf[5]);
1011                 }
1012
1013         else if (!strncasecmp(cmdbuf,"LKRN",4)) {
1014                 cmd_lkrn(&cmdbuf[5]);
1015                 }
1016
1017         else if (!strncasecmp(cmdbuf,"LKRO",4)) {
1018                 cmd_lkro(&cmdbuf[5]);
1019                 }
1020
1021         else if (!strncasecmp(cmdbuf,"LZRM",4)) {
1022                 cmd_lzrm(&cmdbuf[5]);
1023                 }
1024
1025         else if (!strncasecmp(cmdbuf,"GETU",4)) {
1026                 cmd_getu();
1027                 }
1028
1029         else if (!strncasecmp(cmdbuf,"SETU",4)) {
1030                 cmd_setu(&cmdbuf[5]);
1031                 }
1032
1033         else if (!strncasecmp(cmdbuf,"GOTO",4)) {
1034                 cmd_goto(&cmdbuf[5]);
1035                 }
1036
1037         else if (!strncasecmp(cmdbuf,"MSGS",4)) {
1038                 cmd_msgs(&cmdbuf[5]);
1039                 }
1040
1041         else if (!strncasecmp(cmdbuf,"WHOK",4)) {
1042                 cmd_whok();
1043                 }
1044
1045         else if (!strncasecmp(cmdbuf,"RDIR",4)) {
1046                 cmd_rdir();
1047                 }
1048
1049         else if (!strncasecmp(cmdbuf,"MSG0",4)) {
1050                 cmd_msg0(&cmdbuf[5]);
1051                 }
1052
1053         else if (!strncasecmp(cmdbuf,"MSG2",4)) {
1054                 cmd_msg2(&cmdbuf[5]);
1055                 }
1056
1057         else if (!strncasecmp(cmdbuf,"MSG3",4)) {
1058                 cmd_msg3(&cmdbuf[5]);
1059                 }
1060
1061         else if (!strncasecmp(cmdbuf,"MSG4",4)) {
1062                 cmd_msg4(&cmdbuf[5]);
1063                 }
1064
1065         else if (!strncasecmp(cmdbuf,"OPNA",4)) {
1066                 cmd_opna(&cmdbuf[5]);
1067                 }
1068
1069         else if (!strncasecmp(cmdbuf,"INFO",4)) {
1070                 cmd_info();
1071                 }
1072
1073         else if (!strncasecmp(cmdbuf,"SLRP",4)) {
1074                 cmd_slrp(&cmdbuf[5]);
1075                 }
1076
1077         else if (!strncasecmp(cmdbuf,"INVT",4)) {
1078                 cmd_invt_kick(&cmdbuf[5],1);
1079                 }
1080
1081         else if (!strncasecmp(cmdbuf,"KICK",4)) {
1082                 cmd_invt_kick(&cmdbuf[5],0);
1083                 }
1084
1085         else if (!strncasecmp(cmdbuf,"GETR",4)) {
1086                 cmd_getr();
1087                 }
1088
1089         else if (!strncasecmp(cmdbuf,"SETR",4)) {
1090                 cmd_setr(&cmdbuf[5]);
1091                 }
1092
1093         else if (!strncasecmp(cmdbuf,"GETA",4)) {
1094                 cmd_geta();
1095                 }
1096
1097         else if (!strncasecmp(cmdbuf,"SETA",4)) {
1098                 cmd_seta(&cmdbuf[5]);
1099                 }
1100
1101         else if (!strncasecmp(cmdbuf,"ENT0",4)) {
1102                 cmd_ent0(&cmdbuf[5]);
1103                 }
1104
1105         else if (!strncasecmp(cmdbuf,"ENT3",4)) {
1106                 cmd_ent3(&cmdbuf[5]);
1107                 }
1108
1109         else if (!strncasecmp(cmdbuf,"RINF",4)) {
1110                 cmd_rinf();
1111                 }
1112
1113         else if (!strncasecmp(cmdbuf,"DELE",4)) {
1114                 cmd_dele(&cmdbuf[5]);
1115                 }
1116
1117         else if (!strncasecmp(cmdbuf,"KILL",4)) {
1118                 cmd_kill(&cmdbuf[5]);
1119                 }
1120
1121         else if (!strncasecmp(cmdbuf,"CRE8",4)) {
1122                 cmd_cre8(&cmdbuf[5]);
1123                 }
1124
1125         else if (!strncasecmp(cmdbuf,"MOVE",4)) {
1126                 cmd_move(&cmdbuf[5]);
1127                 }
1128
1129         else if (!strncasecmp(cmdbuf,"FORG",4)) {
1130                 cmd_forg();
1131                 }
1132
1133         else if (!strncasecmp(cmdbuf,"MESG",4)) {
1134                 cmd_mesg(&cmdbuf[5]);
1135                 }
1136
1137         else if (!strncasecmp(cmdbuf,"EMSG",4)) {
1138                 cmd_emsg(&cmdbuf[5]);
1139                 }
1140
1141         else if (!strncasecmp(cmdbuf,"GNUR",4)) {
1142                 cmd_gnur();
1143                 }
1144
1145         else if (!strncasecmp(cmdbuf,"VALI",4)) {
1146                 cmd_vali(&cmdbuf[5]);
1147                 }
1148
1149         else if (!strncasecmp(cmdbuf,"EINF",4)) {
1150                 cmd_einf(&cmdbuf[5]);
1151                 }
1152
1153         else if (!strncasecmp(cmdbuf,"LIST",4)) {
1154                 cmd_list();
1155                 }
1156
1157         else if (!strncasecmp(cmdbuf,"CHEK",4)) {
1158                 cmd_chek();
1159                 }
1160
1161         else if (!strncasecmp(cmdbuf,"DELF",4)) {
1162                 cmd_delf(&cmdbuf[5]);
1163                 }
1164
1165         else if (!strncasecmp(cmdbuf,"MOVF",4)) {
1166                 cmd_movf(&cmdbuf[5]);
1167                 }
1168
1169         else if (!strncasecmp(cmdbuf,"NETF",4)) {
1170                 cmd_netf(&cmdbuf[5]);
1171                 }
1172
1173         else if (!strncasecmp(cmdbuf,"RWHO",4)) {
1174                 cmd_rwho();
1175                 }
1176
1177         else if (!strncasecmp(cmdbuf,"OPEN",4)) {
1178                 cmd_open(&cmdbuf[5]);
1179                 }
1180
1181         else if (!strncasecmp(cmdbuf,"CLOS",4)) {
1182                 cmd_clos();
1183                 }
1184
1185         else if (!strncasecmp(cmdbuf,"UOPN",4)) {
1186                 cmd_uopn(&cmdbuf[5]);
1187                 }
1188
1189         else if (!strncasecmp(cmdbuf,"UCLS",4)) {
1190                 cmd_ucls(&cmdbuf[5]);
1191                 }
1192
1193         else if (!strncasecmp(cmdbuf,"READ",4)) {
1194                 cmd_read(&cmdbuf[5]);
1195                 }
1196
1197         else if (!strncasecmp(cmdbuf,"WRIT",4)) {
1198                 cmd_writ(&cmdbuf[5]);
1199                 }
1200
1201         else if (!strncasecmp(cmdbuf,"QUSR",4)) {
1202                 cmd_qusr(&cmdbuf[5]);
1203                 }
1204
1205         else if (!strncasecmp(cmdbuf,"ECHO",4)) {
1206                 cmd_echo(&cmdbuf[5]);
1207                 }
1208
1209         else if (!strncasecmp(cmdbuf,"OIMG",4)) {
1210                 cmd_oimg(&cmdbuf[5]);
1211                 }
1212
1213         else if (!strncasecmp(cmdbuf,"MORE",4)) {
1214                 cmd_more();
1215                 }
1216
1217         else if (!strncasecmp(cmdbuf,"NETP",4)) {
1218                 cmd_netp(&cmdbuf[5]);
1219                 }
1220
1221         else if (!strncasecmp(cmdbuf,"NDOP",4)) {
1222                 cmd_ndop(&cmdbuf[5]);
1223                 }
1224
1225         else if (!strncasecmp(cmdbuf,"NUOP",4)) {
1226                 cmd_nuop(&cmdbuf[5]);
1227                 }
1228
1229         else if (!strncasecmp(cmdbuf,"LFLR",4)) {
1230                 cmd_lflr();
1231                 }
1232
1233         else if (!strncasecmp(cmdbuf,"CFLR",4)) {
1234                 cmd_cflr(&cmdbuf[5]);
1235                 }
1236
1237         else if (!strncasecmp(cmdbuf,"KFLR",4)) {
1238                 cmd_kflr(&cmdbuf[5]);
1239                 }
1240
1241         else if (!strncasecmp(cmdbuf,"EFLR",4)) {
1242                 cmd_eflr(&cmdbuf[5]);
1243                 }
1244
1245         else if (!strncasecmp(cmdbuf,"IDEN",4)) {
1246                 cmd_iden(&cmdbuf[5]);
1247                 }
1248
1249         else if (!strncasecmp(cmdbuf,"IPGM",4)) {
1250                 cmd_ipgm(&cmdbuf[5]);
1251                 }
1252
1253         else if (!strncasecmp(cmdbuf,"EBIO",4)) {
1254                 cmd_ebio();
1255                 }
1256
1257         else if (!strncasecmp(cmdbuf,"RBIO",4)) {
1258                 cmd_rbio(&cmdbuf[5]);
1259                 }
1260
1261         else if (!strncasecmp(cmdbuf,"LBIO",4)) {
1262                 cmd_lbio();
1263                 }
1264
1265         else if (!strncasecmp(cmdbuf,"STEL",4)) {
1266                 cmd_stel(&cmdbuf[5]);
1267                 }
1268
1269         else if (!strncasecmp(cmdbuf,"TERM",4)) {
1270                 cmd_term(&cmdbuf[5]);
1271                 }
1272
1273         else if (!strncasecmp(cmdbuf,"DOWN",4)) {
1274                 cmd_down();
1275                 }
1276
1277         else if (!strncasecmp(cmdbuf,"SCDN",4)) {
1278                 cmd_scdn(&cmdbuf[5]);
1279                 }
1280
1281         else if (!strncasecmp(cmdbuf, "NSET", 4)) {
1282                 cmd_nset(&cmdbuf[5]);
1283                 }
1284
1285         else if (!strncasecmp(cmdbuf, "UIMG", 4)) {
1286                 cmd_uimg(&cmdbuf[5]);
1287                 }
1288
1289         else if (!strncasecmp(cmdbuf, "UCHG", 4)) {
1290                 cmd_uchg(&cmdbuf[5]);
1291                 }
1292
1293         else if (!strncasecmp(cmdbuf, "TIME", 4)) {
1294                 cmd_time();
1295                 }
1296
1297         else if (!strncasecmp(cmdbuf, "HCHG", 4)) {
1298                 cmd_hchg(&cmdbuf[5]);
1299                 }
1300
1301         else if (!strncasecmp(cmdbuf, "RCHG", 4)) {
1302                 cmd_rchg(&cmdbuf[5]);
1303                 }
1304
1305         else if (!strncasecmp(cmdbuf, "AGUP", 4)) {
1306                 cmd_agup(&cmdbuf[5]);
1307                 }
1308
1309         else if (!strncasecmp(cmdbuf, "ASUP", 4)) {
1310                 cmd_asup(&cmdbuf[5]);
1311                 }
1312
1313         else if (!strncasecmp(cmdbuf, "GPEX", 4)) {
1314                 cmd_gpex(&cmdbuf[5]);
1315                 }
1316
1317         else if (!strncasecmp(cmdbuf, "SPEX", 4)) {
1318                 cmd_spex(&cmdbuf[5]);
1319                 }
1320
1321         else if (!strncasecmp(cmdbuf, "CONF", 4)) {
1322                 cmd_conf(&cmdbuf[5]);
1323                 }
1324
1325 #ifdef DEBUG_MEMORY_LEAKS
1326         else if (!strncasecmp(cmdbuf, "LEAK", 4)) {
1327                 dump_tracked();
1328                 }
1329 #endif
1330
1331         else if (!DLoader_Exec_Cmd(cmdbuf))
1332                 {
1333                    cprintf("%d Unrecognized or unsupported command.\n",
1334                             ERROR);
1335                 }
1336
1337         /* Run any after-each-command outines registered by modules */
1338         PerformSessionHooks(EVT_CMD);
1339 }