ad24903ac0a448077878425a390014c1cbf6b7a6
[citadel.git] / citadel / citadel.c
1 /*
2  * $Id$
3  *
4  * Main source module for the client program.
5  */
6
7 #include "sysdep.h"
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <fcntl.h>
11 #include <stdio.h>
12 #include <ctype.h>
13 #include <string.h>
14
15 #if TIME_WITH_SYS_TIME
16 # include <sys/time.h>
17 # include <time.h>
18 #else
19 # if HAVE_SYS_TIME_H
20 #  include <sys/time.h>
21 # else
22 #  include <time.h>
23 # endif
24 #endif
25
26 #include <limits.h>
27 #include <sys/types.h>
28 #include <sys/wait.h>
29 #include <sys/stat.h>
30 #include <sys/ioctl.h>
31 #include <signal.h>
32 #include <pwd.h>
33 #include <stdarg.h>
34 #include <errno.h>
35
36 #include "citadel.h"
37 #include "citadel_ipc.h"
38 #include "axdefs.h"
39 #include "routines.h"
40 #include "routines2.h"
41 #include "rooms.h"
42 #include "messages.h"
43 #include "commands.h"
44 #include "client_chat.h"
45 #include "client_passwords.h"
46 #include "citadel_decls.h"
47 #include "tools.h"
48 #include "acconfig.h"
49 #ifndef HAVE_SNPRINTF
50 #include "snprintf.h"
51 #endif
52 #include "screen.h"
53 #include "citadel_dirs.h"
54
55 #include "md5.h"
56
57 #define IFEXPERT if (userflags&US_EXPERT)
58 #define IFNEXPERT if ((userflags&US_EXPERT)==0)
59 #define IFAIDE if (axlevel>=6)
60 #define IFNAIDE if (axlevel<6)
61
62 int rordercmp(struct ctdlroomlisting *r1, struct ctdlroomlisting *r2);
63
64 struct march *march = NULL;
65
66 /* globals associated with the client program */
67 char temp[PATH_MAX];            /* Name of general-purpose temp file */
68 char temp2[PATH_MAX];           /* Name of general-purpose temp file */
69 char tempdir[PATH_MAX];         /* Name of general-purpose temp directory */
70 char editor_paths[MAX_EDITORS][SIZ];    /* paths to external editors */
71 char printcmd[SIZ];             /* print command */
72 int editor_pid = (-1);
73 char fullname[USERNAME_SIZE];
74 int screenwidth;
75 int screenheight;
76 unsigned room_flags;
77 char room_name[ROOMNAMELEN];
78 char *uglist[UGLISTLEN]; /* size of the ungoto list */
79 long uglistlsn[UGLISTLEN]; /* current read position for all the ungoto's. Not going to make any friends with this one. */
80 int uglistsize = 0;
81 char is_mail = 0;               /* nonzero when we're in a mail room */
82 char axlevel = 0;               /* access level */
83 char is_room_aide = 0;          /* boolean flag, 1 if room aide */
84 int timescalled;
85 int posted;
86 unsigned userflags;
87 long usernum = 0L;              /* user number */
88 time_t lastcall = 0L;           /* Date/time of previous login */
89 char newnow;
90 long highest_msg_read;          /* used for <A>bandon room cmd */
91 long maxmsgnum;                 /* used for <G>oto */
92 char sigcaught = 0;
93 char have_xterm = 0;            /* are we running on an xterm? */
94 char rc_username[USERNAME_SIZE];
95 char rc_password[32];
96 char hostbuf[SIZ];
97 char portbuf[SIZ];
98 char rc_floor_mode;
99 char floor_mode;
100 char curr_floor = 0;            /* number of current floor */
101 char floorlist[128][SIZ];       /* names of floors */
102 int termn8 = 0;                 /* Set to nonzero to cause a logoff */
103 int secure;                     /* Set to nonzero when wire is encrypted */
104 int can_do_msg4 = 0;            /* Set to nonzero if the server can handle MSG4 commands */
105
106 extern char instant_msgs;       /* instant messages waiting! */
107 extern int rc_ansi_color;       /* ansi color value from citadel.rc */
108 extern int next_lazy_cmd;
109
110 CtdlIPC *ipc_for_signal_handlers;       /* KLUDGE cover your eyes */
111
112 /*
113  * here is our 'clean up gracefully and exit' routine
114  */
115 void ctdl_logoff(char *file, int line, CtdlIPC *ipc, int code)
116 {
117         int lp;
118
119         if (editor_pid > 0) {   /* kill the editor if it's running */
120                 kill(editor_pid, SIGHUP);
121         }
122
123         /* Free the ungoto list */
124         for (lp = 0; lp < uglistsize; lp++) {
125                 free(uglist[lp]);
126         }
127
128 /* Shut down the server connection ... but not if the logoff code is 3,
129  * because that means we're exiting because we already lost the server.
130  */
131         if (code != 3) {
132                 CtdlIPCQuit(ipc);
133         }
134
135 /*
136  * now clean up various things
137  */
138         screen_delete();
139
140         unlink(temp);
141         unlink(temp2);
142         nukedir(tempdir);
143
144         /* Violently kill off any child processes if Citadel is
145          * the login shell. 
146          */
147         if (getppid() == 1) {
148                 kill(0 - getpgrp(), SIGTERM);
149                 sleep(1);
150                 kill(0 - getpgrp(), SIGKILL);
151         }
152         color(ORIGINAL_PAIR);   /* Restore the old color settings */
153         stty_ctdl(SB_RESTORE);  /* return the old terminal settings */
154         /* 
155          * uncomment the following if you need to know why Citadel exited
156         printf("*** Exit code %d at %s:%d\n", code, file, line);
157         sleep(2);
158          */
159         exit(code);             /* exit with the proper exit code */
160 }
161
162
163
164 /*
165  * signal catching function for hangups...
166  */
167 void dropcarr(int signum)
168 {
169         logoff(NULL, 3);        /* No IPC when server's already gone! */
170 }
171
172
173
174 /*
175  * catch SIGCONT to reset terminal modes when were are put back into the
176  * foreground.
177  */
178 void catch_sigcont(int signum)
179 {
180         stty_ctdl(SB_LAST);
181         signal(SIGCONT, catch_sigcont);
182 }
183
184
185 /* general purpose routines */
186
187 /* display a file */
188 void formout(CtdlIPC *ipc, char *name)
189 {
190         int r;                  /* IPC return code */
191         char buf[SIZ];
192         char *text = NULL;
193
194         r = CtdlIPCSystemMessage(ipc, name, &text, buf);
195         if (r / 100 != 1) {
196                 scr_printf("%s\n", buf);
197                 return;
198         }
199         if (text) {
200                 fmout(screenwidth, NULL, text, NULL,
201                       ((userflags & US_PAGINATOR) ? 1 : 0),
202                       screenheight, 1, 1);
203                 free(text);
204         }
205 }
206
207
208 void userlist(CtdlIPC *ipc, char *patn)
209 {
210         char buf[SIZ];
211         char fl[SIZ];
212         struct tm tmbuf;
213         time_t lc;
214         int r;                          /* IPC response code */
215         char *listing = NULL;
216
217         r = CtdlIPCUserListing(ipc, patn, &listing, buf);
218         if (r / 100 != 1) {
219                 pprintf("%s\n", buf);
220                 return;
221         }
222
223         pprintf("       User Name           Num  L  LastCall  Calls Posts\n");
224         pprintf("------------------------- ----- - ---------- ----- -----\n");
225         if (listing != NULL) while (strlen(listing) > 0) {
226                 extract_token(buf, listing, 0, '\n', sizeof buf);
227                 remove_token(listing, 0, '\n');
228
229                 if (sigcaught == 0) {
230                     extract_token(fl, buf, 0, '|', sizeof fl);
231                     if (pattern(fl, patn) >= 0) {
232                         pprintf("%-25s ", fl);
233                         pprintf("%5ld %d ", extract_long(buf, 2),
234                                extract_int(buf, 1));
235                         lc = extract_long(buf, 3);
236                         localtime_r(&lc, &tmbuf);
237                         pprintf("%02d/%02d/%04d ",
238                                (tmbuf.tm_mon + 1),
239                                tmbuf.tm_mday,
240                                (tmbuf.tm_year + 1900));
241                         pprintf("%5ld %5ld\n", extract_long(buf, 4), extract_long(buf, 5));
242                     }
243
244                 }
245         }
246         free(listing);
247         pprintf("\n");
248 }
249
250
251 /*
252  * grab assorted info about the user...
253  */
254 void load_user_info(char *params)
255 {
256         extract_token(fullname, params, 0, '|', sizeof fullname);
257         axlevel = extract_int(params, 1);
258         timescalled = extract_int(params, 2);
259         posted = extract_int(params, 3);
260         userflags = extract_int(params, 4);
261         usernum = extract_long(params, 5);
262         lastcall = extract_long(params, 6);
263 }
264
265
266 /*
267  * Remove a room from the march list.  'floornum' is ignored unless
268  * 'roomname' is set to _FLOOR_, in which case all rooms on the requested
269  * floor will be removed from the march list.
270  */
271 void remove_march(char *roomname, int floornum)
272 {
273         struct march *mptr, *mptr2;
274
275         if (march == NULL)
276                 return;
277
278         if ((!strcasecmp(march->march_name, roomname))
279             || ((!strcasecmp(roomname, "_FLOOR_")) && (march->march_floor == floornum))) {
280                 mptr = march->next;
281                 free(march);
282                 march = mptr;
283                 return;
284         }
285         mptr2 = march;
286         for (mptr = march; mptr != NULL; mptr = mptr->next) {
287
288                 if ((!strcasecmp(mptr->march_name, roomname))
289                     || ((!strcasecmp(roomname, "_FLOOR_"))
290                         && (mptr->march_floor == floornum))) {
291
292                         mptr2->next = mptr->next;
293                         free(mptr);
294                         mptr = mptr2;
295                 } else {
296                         mptr2 = mptr;
297                 }
298         }
299 }
300
301
302 /*
303  * Locate the room on the march list which we most want to go to.  Each room
304  * is measured given a "weight" of preference based on various factors.
305  */
306 char *pop_march(int desired_floor, struct march *_march)
307 {
308         static char TheRoom[ROOMNAMELEN];
309         int TheFloor = 0;
310         int TheOrder = 32767;
311         int TheWeight = 0;
312         int weight;
313         struct march *mptr = NULL;
314
315         strcpy(TheRoom, "_BASEROOM_");
316         if (_march == NULL)
317                 return (TheRoom);
318
319         for (mptr = _march; mptr != NULL; mptr = mptr->next) {
320                 weight = 0;
321                 if ((strcasecmp(mptr->march_name, "_BASEROOM_")))
322                         weight = weight + 10000;
323                 if (mptr->march_floor == desired_floor)
324                         weight = weight + 5000;
325
326                 weight = weight + ((128 - (mptr->march_floor)) * 128);
327                 weight = weight + (128 - (mptr->march_order));
328
329                 if (weight > TheWeight) {
330                         TheWeight = weight;
331                         strcpy(TheRoom, mptr->march_name);
332                         TheFloor = mptr->march_floor;
333                         TheOrder = mptr->march_order;
334                 }
335         }
336         return (TheRoom);
337 }
338
339
340 /*
341  * jump directly to a room
342  */
343 void dotgoto(CtdlIPC *ipc, char *towhere, int display_name, int fromungoto)
344 {
345         char aaa[SIZ], bbb[SIZ];
346         static long ls = 0L;
347         int newmailcount = 0;
348         int partial_match, best_match;
349         char from_floor;
350         int ugpos = uglistsize;
351         int r;                          /* IPC result code */
352         struct ctdlipcroom *room = NULL;
353
354         /* store ungoto information */
355         if (fromungoto == 0) {
356                 /* sloppy slide them all down, hey it's the client, who cares. :-) */
357                 if (uglistsize >= (UGLISTLEN-1)) {
358                         int lp;
359                         free (uglist[0]);
360                         for (lp = 0; lp < (UGLISTLEN-1); lp++) {
361                                 uglist[lp] = uglist[lp+1];
362                                 uglistlsn[lp] = uglistlsn[lp+1];
363                         }
364                         ugpos--;
365                 } else {
366                         uglistsize++;
367                 }
368         
369                 uglist[ugpos] = malloc(strlen(room_name)+1);
370                 strcpy(uglist[ugpos], room_name);
371                 uglistlsn[ugpos] = ls;
372         }
373       
374         /* first try an exact match */
375         r = CtdlIPCGotoRoom(ipc, towhere, "", &room, aaa);
376         if (r / 10 == 54) {
377                 newprompt("Enter room password: ", bbb, 9);
378                 r = CtdlIPCGotoRoom(ipc, towhere, bbb, &room, aaa);
379                 if (r / 10 == 54) {
380                         scr_printf("Wrong password.\n");
381                         return;
382                 }
383         }       
384
385         /*
386          * If a match is not found, try a partial match.
387          * Partial matches anywhere in the string carry a weight of 1,
388          * left-aligned matches carry a weight of 2.  Pick the room that
389          * has the highest-weighted match.  Do not match on forgotten
390          * rooms.
391          */
392         if (r / 100 != 2) {
393                 struct march *march = NULL;
394
395                 best_match = 0;
396                 strcpy(bbb, "");
397
398                 r = CtdlIPCKnownRooms(ipc, SubscribedRooms, AllFloors, &march, aaa);
399                 if (r / 100 == 1) {
400                         /* Run the roomlist; free the data as we go */
401                         struct march *mp = march;       /* Current */
402
403                         while (mp) {
404                                 partial_match = 0;
405                                 if (pattern(mp->march_name, towhere) >= 0) {
406                                         partial_match = 1;
407                                 }
408                                 if (!strncasecmp(mp->march_name, towhere, strlen(towhere))) {
409                                         partial_match = 2;
410                                 }
411                                 if (partial_match > best_match) {
412                                         strcpy(bbb, mp->march_name);
413                                         best_match = partial_match;
414                                 }
415                                 /* Both pointers are NULL at end of list */
416                                 march = mp->next;
417                                 free(mp);
418                                 mp = march;
419                         }
420                 }
421
422                 if (strlen(bbb) == 0) {
423                         scr_printf("No room '%s'.\n", towhere);
424                         return;
425                 }
426                 r = CtdlIPCGotoRoom(ipc, bbb, "", &room, aaa);
427         }
428         if (r / 100 != 1 && r / 100 != 2) {
429                 scr_printf("%s\n", aaa);
430                 return;
431         }
432         safestrncpy(room_name, room->RRname, ROOMNAMELEN);
433         room_flags = room->RRflags;
434         from_floor = curr_floor;
435         curr_floor = room->RRfloor;
436
437         remove_march(room_name, 0);
438         if (!strcasecmp(towhere, "_BASEROOM_"))
439                 remove_march(towhere, 0);
440         if (!room->RRunread)
441                 next_lazy_cmd = 5;      /* Don't read new if no new msgs */
442         if ((from_floor != curr_floor) && (display_name > 0) && (floor_mode == 1)) {
443                 if (floorlist[(int) curr_floor][0] == 0)
444                         load_floorlist(ipc);
445                 scr_printf("(Entering floor: %s)\n", &floorlist[(int) curr_floor][0]);
446         }
447         if (display_name == 1) {
448                 color(BRIGHT_WHITE);
449                 scr_printf("%s ", room_name);
450                 color(DIM_WHITE);
451                 scr_printf("- ");
452         }
453         if (display_name != 2) {
454                 color(BRIGHT_YELLOW);
455                 scr_printf("%d ", room->RRunread);
456                 color(DIM_WHITE);
457                 scr_printf("new of ");
458                 color(BRIGHT_YELLOW);
459                 scr_printf("%d ", room->RRtotal);
460                 color(DIM_WHITE);
461                 scr_printf("messages.\n");
462         }
463         highest_msg_read = room->RRlastread;
464         maxmsgnum = room->RRhighest;
465         is_mail = room->RRismailbox;
466         is_room_aide = room->RRaide;
467         ls = room->RRlastread;
468
469         /* read info file if necessary */
470         if (room->RRinfoupdated > 0)
471                 readinfo(ipc);
472
473         /* check for newly arrived mail if we can */
474         newmailcount = room->RRnewmail;
475         if (newmailcount > 0) {
476                 color(BRIGHT_RED);
477                 if (newmailcount == 1) {
478                         scr_printf("*** A new mail message has arrived.\n");
479                 }
480                 else {
481                         scr_printf("*** %d new mail messages have arrived.\n",
482                                         newmailcount);
483                 }
484                 color(DIM_WHITE);
485                 if (strlen(rc_gotmail_cmd) > 0) {
486                         system(rc_gotmail_cmd);
487                 }
488         }
489         status_line(ipc->ServInfo.humannode, ipc->ServInfo.site_location,
490                         room_name, secure, newmailcount);
491         free(room);
492 }
493
494 /* Goto next room having unread messages.
495  * We want to skip over rooms that the user has already been to, and take the
496  * user back to the lobby when done.  The room we end up in is placed in
497  * newroom - which is set to 0 (the lobby) initially.
498  */
499 void gotonext(CtdlIPC *ipc)
500 {
501         char buf[SIZ];
502         struct march *mptr, *mptr2;
503         char next_room[ROOMNAMELEN];
504         int r;                          /* IPC response code */
505
506         /* Check to see if the march-mode list is already allocated.
507          * If it is, pop the first room off the list and go there.
508          */
509         if (march == NULL) {
510                 r = CtdlIPCKnownRooms(ipc, SubscribedRoomsWithNewMessages,
511                                         AllFloors, &march, buf);
512
513 /* add _BASEROOM_ to the end of the march list, so the user will end up
514  * in the system base room (usually the Lobby>) at the end of the loop
515  */
516                 mptr = (struct march *) malloc(sizeof(struct march));
517                 mptr->next = NULL;
518                 strcpy(mptr->march_name, "_BASEROOM_");
519                 if (march == NULL) {
520                         march = mptr;
521                 } else {
522                         mptr2 = march;
523                         while (mptr2->next != NULL)
524                                 mptr2 = mptr2->next;
525                         mptr2->next = mptr;
526                 }
527 /*
528  * ...and remove the room we're currently in, so a <G>oto doesn't make us
529  * walk around in circles
530  */
531                 remove_march(room_name, 0);
532         }
533         if (march != NULL) {
534                 strcpy(next_room, pop_march(curr_floor, march));
535         } else {
536                 strcpy(next_room, "_BASEROOM_");
537         }
538         remove_march(next_room, 0);
539         dotgoto(ipc, next_room, 1, 0);
540 }
541
542 /*
543  * forget all rooms on a given floor
544  */
545 void forget_all_rooms_on(CtdlIPC *ipc, int ffloor)
546 {
547         char buf[SIZ];
548         struct march *flist = NULL;
549         struct march *fptr = NULL;
550         struct ctdlipcroom *room = NULL;
551         int r;                          /* IPC response code */
552
553         scr_printf("Forgetting all rooms on %s...\n", &floorlist[ffloor][0]);
554         scr_flush();
555         remove_march("_FLOOR_", ffloor);
556         r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, ffloor, &flist, buf);
557         if (r / 100 != 1) {
558                 scr_printf("Error %d: %s\n", r, buf);
559                 return;
560         }
561         while (flist) {
562                 r = CtdlIPCGotoRoom(ipc, flist->march_name, "", &room, buf);
563                 if (r / 100 == 2) {
564                         r = CtdlIPCForgetRoom(ipc, buf);
565                         if (r / 100 != 2) {
566                                 scr_printf("Error %d: %s\n", r, buf);
567                         }
568
569                 }
570                 fptr = flist;
571                 flist = flist->next;
572                 free(fptr);
573         }
574         if (room) free(room);
575 }
576
577
578 /*
579  * routine called by gotofloor() to move to a new room on a new floor
580  */
581 void gf_toroom(CtdlIPC *ipc, char *towhere, int mode)
582 {
583         int floor_being_left;
584
585         floor_being_left = curr_floor;
586
587         if (mode == GF_GOTO) {          /* <;G>oto mode */
588                 updatels(ipc);
589                 dotgoto(ipc, towhere, 1, 0);
590         }
591         else if (mode == GF_SKIP) {     /* <;S>kip mode */
592                 dotgoto(ipc, towhere, 1, 0);
593                 remove_march("_FLOOR_", floor_being_left);
594         }
595         else if (mode == GF_ZAP) {      /* <;Z>ap mode */
596                 dotgoto(ipc, towhere, 1, 0);
597                 remove_march("_FLOOR_", floor_being_left);
598                 forget_all_rooms_on(ipc, floor_being_left);
599         }
600 }
601
602
603 /*
604  * go to a new floor
605  */
606 void gotofloor(CtdlIPC *ipc, char *towhere, int mode)
607 {
608         int a, tofloor;
609         int r;          /* IPC response code */
610         struct march *mptr;
611         char buf[SIZ], targ[SIZ];
612
613         if (floorlist[0][0] == 0)
614                 load_floorlist(ipc);
615         tofloor = (-1);
616         for (a = 0; a < 128; ++a)
617                 if (!strcasecmp(&floorlist[a][0], towhere))
618                         tofloor = a;
619
620         if (tofloor < 0) {
621                 for (a = 0; a < 128; ++a) {
622                         if (!strncasecmp(&floorlist[a][0], towhere, strlen(towhere))) {
623                                 tofloor = a;
624                         }
625                 }
626         }
627         if (tofloor < 0) {
628                 for (a = 0; a < 128; ++a)
629                         if (pattern(towhere, &floorlist[a][0]) > 0)
630                                 tofloor = a;
631         }
632         if (tofloor < 0) {
633                 scr_printf("No floor '%s'.\n", towhere);
634                 return;
635         }
636         for (mptr = march; mptr != NULL; mptr = mptr->next) {
637                 if ((mptr->march_floor) == tofloor) {
638                         gf_toroom(ipc, mptr->march_name, mode);
639                         return;
640                 }
641         }
642
643         /* Find first known room on the floor */
644
645         strcpy(targ, "");
646         mptr = NULL;
647         r = CtdlIPCKnownRooms(ipc, SubscribedRooms, tofloor, &mptr, buf);
648         if (r / 100 == 1) {
649                 struct march *tmp = mptr;
650
651                 /*. . . according to room order */
652                 if (mptr)
653             strcpy(targ, pop_march(tofloor, mptr));
654                 while (mptr) {
655                         tmp = mptr->next;
656                         free(mptr);
657                         mptr = tmp;
658                 }
659         }
660         if (strlen(targ) > 0) {
661                 gf_toroom(ipc, targ, mode);
662                 return;
663         }
664
665         /* No known rooms on the floor; unzap the first one then */
666
667         strcpy(targ, "");
668         mptr = NULL;
669         r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, tofloor, &mptr, buf);
670         if (r / 100 == 1) {
671                 struct march *tmp = mptr;
672                 
673         /*. . . according to room order */
674                 if (mptr)
675                         strcpy(targ, pop_march(tofloor, mptr));
676                 while (mptr) {
677                         tmp = mptr->next;
678                         free(mptr);
679                         mptr = tmp;
680                 }
681         }
682         if (strlen(targ) > 0) {
683                 gf_toroom(ipc, targ, mode);
684         } else {
685                 scr_printf("There are no rooms on '%s'.\n", &floorlist[tofloor][0]);
686         }
687 }
688
689 /*
690  * Indexing mechanism for a room list, called by gotoroomstep()
691  */
692 void room_tree_list_query(struct ctdlroomlisting *rp, char *findrmname, int findrmslot, char *rmname, int *rmslot, int *rmtotal)
693 {
694         char roomname[ROOMNAMELEN];
695         static int cur_rmslot = 0;
696
697         if (rp == NULL) {
698                 cur_rmslot = 0;
699                 return;
700         }
701
702         if (rp->lnext != NULL) {
703                 room_tree_list_query(rp->lnext, findrmname, findrmslot, rmname, rmslot, rmtotal);
704         }
705
706         if (sigcaught == 0) {
707                 strcpy(roomname, rp->rlname);
708
709                 if (rmname != NULL) {
710                         if (cur_rmslot == findrmslot) {
711                                 strcpy(rmname, roomname);
712                         }
713                 }
714                 if (rmslot != NULL) {
715                         if (!strcmp(roomname, findrmname)) {
716                                 *rmslot = cur_rmslot;
717                         }
718                 }
719                 cur_rmslot++;
720         }
721
722         if (rp->rnext != NULL) {
723                 room_tree_list_query(rp->rnext, findrmname, findrmslot, rmname, rmslot, rmtotal);
724         }
725
726         if ((rmname == NULL) && (rmslot == NULL))
727                 free(rp);
728
729         if (rmtotal != NULL) {
730                 *rmtotal = cur_rmslot;
731         }
732 }
733
734 /*
735  * step through rooms on current floor
736  */
737 void  gotoroomstep(CtdlIPC *ipc, int direction, int mode)
738 {
739         struct march *listing = NULL;
740         struct march *mptr;
741         int r;          /* IPC response code */
742         char buf[SIZ];
743         struct ctdlroomlisting *rl = NULL;
744         struct ctdlroomlisting *rp;
745         struct ctdlroomlisting *rs;
746         int list_it;
747         char rmname[ROOMNAMELEN];
748         int rmslot;
749         int rmtotal;
750
751         /* Ask the server for a room list */
752         r = CtdlIPCKnownRooms(ipc, SubscribedRooms, (-1), &listing, buf);
753         if (r / 100 != 1) {
754                 listing = NULL;
755         }
756
757         load_floorlist(ipc);
758
759         for (mptr = listing; mptr != NULL; mptr = mptr->next) {
760                 list_it = 1;
761
762                 if ( floor_mode 
763                          && (mptr->march_floor != curr_floor))
764                         list_it = 0;
765
766                 if (list_it) {
767                         rp = malloc(sizeof(struct ctdlroomlisting));
768                         strncpy(rp->rlname, mptr->march_name, ROOMNAMELEN);
769                         rp->rlflags = mptr->march_flags;
770                         rp->rlfloor = mptr->march_floor;
771                         rp->rlorder = mptr->march_order;
772                         rp->lnext = NULL;
773                         rp->rnext = NULL;
774
775                         rs = rl;
776                         if (rl == NULL) {
777                                 rl = rp;
778                         } else {
779                                 while (rp != NULL) {
780                                         if (rordercmp(rp, rs) < 0) {
781                                                 if (rs->lnext == NULL) {
782                                                         rs->lnext = rp;
783                                                         rp = NULL;
784                                                 } else {
785                                                         rs = rs->lnext;
786                                                 }
787                                         } else {
788                                                 if (rs->rnext == NULL) {
789                                                         rs->rnext = rp;
790                                                         rp = NULL;
791                                                 } else {
792                                                         rs = rs->rnext;
793                                                 }
794                                         }
795                                 }
796                         }
797                 }
798         }
799
800         /* Find position of current room */
801         room_tree_list_query(NULL, NULL, 0, NULL, NULL, NULL);
802         room_tree_list_query(rl,  room_name, 0, NULL, &rmslot, &rmtotal);
803
804         if (direction == 0) { /* Previous room */
805                 /* If we're at the first room, wrap to the last room */
806                 if (rmslot == 0) {
807                         rmslot = rmtotal - 1;
808                 } else {
809                         rmslot--;
810                 }
811         } else {                 /* Next room */
812                 /* If we're at the last room, wrap to the first room */
813                 if (rmslot == rmtotal - 1) {
814                         rmslot = 0; 
815                 } else {
816                         rmslot++;
817                 }
818         }
819
820         /* Get name of next/previous room */
821         room_tree_list_query(NULL, NULL, 0, NULL, NULL, NULL);
822         room_tree_list_query(rl,  NULL, rmslot, rmname, NULL, NULL);
823
824         /* Free the tree */
825         room_tree_list_query(rl, NULL, 0, NULL, NULL, NULL);
826
827         if (mode == 0) { /* not skipping */
828             updatels(ipc);
829         } else {
830                 if (rc_alt_semantics) {
831                 updatelsa(ipc);
832                 }
833         }
834
835         /* Free the room list */
836         while (listing) {
837                 mptr = listing->next;
838                 free(listing);
839                 listing = mptr;
840         };
841
842         dotgoto(ipc, rmname, 1, 0);
843 }
844
845
846 /*
847  * step through floors on system
848  */
849 void  gotofloorstep(CtdlIPC *ipc, int direction, int mode)
850 {
851         int  tofloor;
852
853         if (floorlist[0][0] == 0)
854                 load_floorlist(ipc);
855
856         empty_keep_going:
857
858         if (direction == 0) { /* Previous floor */
859                 if (curr_floor) tofloor = curr_floor - 1;
860                 else tofloor = 127;
861
862                 while (!floorlist[tofloor][0]) tofloor--;
863         } else {                   /* Next floor */
864                 if (curr_floor < 127) tofloor = curr_floor + 1;
865                 else tofloor = 0;
866
867                 while (!floorlist[tofloor][0] && tofloor < 127) tofloor++;
868                 if (!floorlist[tofloor][0])     tofloor = 0;
869         }
870         /* ;g works when not in floor mode so . . . */
871         if (!floor_mode) {
872                 scr_printf("(%s)\n", floorlist[tofloor] );
873         }
874
875         gotofloor(ipc, floorlist[tofloor], mode);
876         if (curr_floor != tofloor) { /* gotofloor failed */
877              curr_floor = tofloor;
878              goto empty_keep_going;
879         }            
880 }
881
882 /* 
883  * Display user 'preferences'.
884  */
885 extern int rc_prompt_control;
886 void read_config(CtdlIPC *ipc)
887 {
888         char buf[SIZ];
889         char *resp = NULL;
890         int r;                  /* IPC response code */
891     char _fullname[USERNAME_SIZE];
892         long _usernum;
893         int _axlevel, _timescalled, _posted;
894         time_t _lastcall;
895         struct ctdluser *user = NULL;
896
897         /* get misc user info */   
898         r = CtdlIPCGetBio(ipc, fullname, &resp, buf);
899         if (r / 100 != 1) {
900                 pprintf("%s\n", buf);
901                 return;
902         }
903         extract_token(_fullname, buf, 1, '|', sizeof fullname);
904         _usernum = extract_long(buf, 2);
905         _axlevel = extract_int(buf, 3);
906         _lastcall = extract_long(buf, 4);
907     _timescalled = extract_int(buf, 5);
908         _posted = extract_int(buf, 6);
909         free(resp);
910         resp = NULL;
911    
912         /* get preferences */
913         r = CtdlIPCGetConfig(ipc, &user, buf);
914         if (r / 100 != 2) {
915                 scr_printf("%s\n", buf);
916                 free(user);
917                 return;
918         }
919
920         /* show misc user info */
921         scr_printf("%s\nAccess level: %d (%s)\n"
922                    "User #%ld / %d Calls / %d Posts",
923                    _fullname, _axlevel, axdefs[(int) _axlevel],
924                    _usernum, _timescalled, _posted);
925         if (_lastcall > 0L) {
926                 scr_printf(" / Curr login: %s",
927                            asctime(localtime(&_lastcall)));
928         }
929         scr_printf("\n");
930
931         /* show preferences */
932         scr_printf("Your screen width: ");                                     color(BRIGHT_CYAN); scr_printf("%d",   /*user->USscreenwidth*/ screenwidth);          color(DIM_WHITE); 
933         scr_printf(", height: ");                                              color(BRIGHT_CYAN); scr_printf("%d\n", /*user->USscreenheight*/ screenheight);        color(DIM_WHITE);  
934         scr_printf("Are you an experienced Citadel user: ");                   color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_EXPERT) ? "Yes" : "No");     color(DIM_WHITE);
935         scr_printf("Print last old message on New message request: ");         color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_LASTOLD)? "Yes" : "No");     color(DIM_WHITE);
936         scr_printf("Prompt after each message: ");                             color(BRIGHT_CYAN); scr_printf("%s\n", (!(user->flags & US_NOPROMPT))? "Yes" : "No"); color(DIM_WHITE);
937         if ((user->flags & US_NOPROMPT) == 0) {
938         scr_printf("Use 'disappearing' prompts: ");                        color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_DISAPPEAR)? "Yes" : "No");   color(DIM_WHITE);
939         }
940         scr_printf("Pause after each screenful of text: ");                    color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_PAGINATOR)? "Yes" : "No");   color(DIM_WHITE);
941     if (rc_prompt_control == 3 && (user->flags & US_PAGINATOR)) {
942         scr_printf("<N>ext and <S>top work at paginator prompt: ");        color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_PROMPTCTL)? "Yes" : "No");   color(DIM_WHITE);
943         }
944     if (rc_floor_mode == RC_DEFAULT) {
945         scr_printf("View rooms by floor: ");                               color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_FLOORS)? "Yes" : "No");          color(DIM_WHITE);
946         }
947         if (rc_ansi_color == 3) {
948             scr_printf("Enable color support: ");                              color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_COLOR)? "Yes" : "No");       color(DIM_WHITE);
949         }
950         scr_printf("Be unlisted in userlog: ");                                color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_UNLISTED)? "Yes" : "No");    color(DIM_WHITE);
951         if (strlen(editor_paths[0]) > 0) {
952         scr_printf("Always enter messages with the full-screen editor: "); color(BRIGHT_CYAN); scr_printf("%s\n", (user->flags & US_EXTEDIT)? "Yes" : "No");     color(DIM_WHITE);
953         }
954         free(user);
955 }
956
957 /*
958  * Display system statistics.
959  */
960 void system_info(CtdlIPC *ipc)
961 {
962         char buf[SIZ];
963         char *resp = NULL;
964         size_t bytes;
965         int mrtg_users, mrtg_active_users; 
966         char mrtg_server_uptime[40];
967         long mrtg_himessage;
968         int ret;                        /* IPC response code */
969
970         /* get #users, #active & server uptime */
971         ret = CtdlIPCGenericCommand(ipc, "MRTG|users", NULL, 0, &resp, &bytes, buf);
972         mrtg_users = extract_int(resp, 0);
973         remove_token(resp, 0, '\n');
974         mrtg_active_users = extract_int(resp, 0);
975         remove_token(resp, 0, '\n');
976         extract_token(mrtg_server_uptime, resp, 0, '\n', sizeof mrtg_server_uptime);
977     free(resp);
978         resp = NULL;
979
980         /* get high message# */
981         ret = CtdlIPCGenericCommand(ipc, "MRTG|messages", NULL, 0, &resp, &bytes, buf);
982         mrtg_himessage = extract_long(resp, 0);
983         free(resp);
984         resp = NULL;
985
986         /* refresh server info just in case */
987         CtdlIPCServerInfo(ipc, buf);
988
989         scr_printf("You are connected to %s (%s) @%s\n", ipc->ServInfo.nodename, ipc->ServInfo.humannode, ipc->ServInfo.fqdn);
990         scr_printf("running %s with text client v%.2f,\n", ipc->ServInfo.software, (float)REV_LEVEL/100);
991     scr_printf("and located in %s.\n", ipc->ServInfo.site_location);
992     scr_printf("Connected users %d / Active users %d / Highest message #%ld\n", mrtg_users, mrtg_active_users, mrtg_himessage);
993     scr_printf("Server uptime: %s\n", mrtg_server_uptime);
994     scr_printf("Your system administrator is %s.\n", ipc->ServInfo.sysadm);
995     scr_printf("Copyright (C)1987-2007 by the Citadel development team\n");
996 }
997
998 /*
999  * forget all rooms on current floor
1000  */
1001 void forget_this_floor(CtdlIPC *ipc)
1002 {
1003         if (curr_floor == 0) {
1004                 scr_printf("Can't forget this floor.\n");
1005                 return;
1006         }
1007         if (floorlist[0][0] == 0) {
1008                 load_floorlist(ipc);
1009         }
1010         scr_printf("Are you sure you want to forget all rooms on %s? ",
1011                &floorlist[(int) curr_floor][0]);
1012         if (yesno() == 0) {
1013                 return;
1014         }
1015
1016         gf_toroom(ipc, "_BASEROOM_", GF_ZAP);
1017 }
1018
1019
1020 /* 
1021  * Figure out the physical screen dimensions, if we can
1022  * WARNING:  this is now called from a signal handler!
1023  */
1024 void check_screen_dims(void)
1025 {
1026 #ifdef TIOCGWINSZ
1027         struct {
1028                 unsigned short height;  /* rows */
1029                 unsigned short width;   /* columns */
1030                 unsigned short xpixels;
1031                 unsigned short ypixels;         /* pixels */
1032         } xwinsz;
1033
1034         if (have_xterm) {       /* dynamically size screen if on an xterm */
1035                 if (ioctl(0, TIOCGWINSZ, &xwinsz) == 0) {
1036                         if (xwinsz.height)
1037                                 screenheight = is_curses_enabled() ? (int)xwinsz.height - 1 : (int) xwinsz.height;
1038                         if (xwinsz.width)
1039                                 screenwidth = (int) xwinsz.width;
1040                 }
1041         }
1042 #endif
1043 }
1044
1045
1046 /*
1047  * set floor mode depending on client, server, and user settings
1048  */
1049 void set_floor_mode(CtdlIPC* ipc)
1050 {
1051         if (ipc->ServInfo.ok_floors == 0) {
1052                 floor_mode = 0; /* Don't use floors if the server */
1053         }
1054         /* doesn't support them!          */
1055         else {
1056                 if (rc_floor_mode == RC_NO) {   /* never use floors */
1057                         floor_mode = 0;
1058                 }
1059                 if (rc_floor_mode == RC_YES) {  /* always use floors */
1060                         floor_mode = 1;
1061                 }
1062                 if (rc_floor_mode == RC_DEFAULT) {      /* user choice */
1063                         floor_mode = ((userflags & US_FLOORS) ? 1 : 0);
1064                 }
1065         }
1066 }
1067
1068 /*
1069  * Set or change the user's password
1070  */
1071 int set_password(CtdlIPC *ipc)
1072 {
1073         char pass1[20];
1074         char pass2[20];
1075         char buf[SIZ];
1076
1077         if (strlen(rc_password) > 0) {
1078                 strcpy(pass1, rc_password);
1079                 strcpy(pass2, rc_password);
1080         } else {
1081                 IFNEXPERT formout(ipc, "changepw");
1082                 newprompt("Enter a new password: ", pass1, -19);
1083                 newprompt("Enter it again to confirm: ", pass2, -19);
1084         }
1085         strproc(pass1);
1086         strproc(pass2);
1087         if (!strcasecmp(pass1, pass2)) {
1088                 CtdlIPCChangePassword(ipc, pass1, buf);
1089                 scr_printf("%s\n", buf);
1090                 offer_to_remember_password(ipc, hostbuf, portbuf, fullname, pass1);
1091                 return (0);
1092         } else {
1093                 scr_printf("*** They don't match... try again.\n");
1094                 return (1);
1095         }
1096 }
1097
1098
1099
1100 /*
1101  * get info about the server we've connected to
1102  */
1103 void get_serv_info(CtdlIPC *ipc, char *supplied_hostname)
1104 {
1105         char buf[SIZ];
1106
1107         CtdlIPCServerInfo(ipc, buf);
1108
1109         /* be nice and identify ourself to the server */
1110         CtdlIPCIdentifySoftware(ipc, SERVER_TYPE, 0, REV_LEVEL,
1111                  (ipc->isLocal ? "local" : CITADEL),
1112                  (supplied_hostname) ? supplied_hostname : 
1113                  /* Look up the , in the bible if you're confused */
1114                  (locate_host(ipc, buf), buf), buf);
1115
1116         /*
1117          * Tell the server what our preferred content formats are.
1118          *
1119          * Originally we preferred HTML over plain text because we can format
1120          * it to the reader's screen width, but since our HTML-to-text parser
1121          * isn't really all that great, it's probably better to just go with
1122          * the plain text when we have it available.
1123          */
1124         if ((CtdlIPCSpecifyPreferredFormats(ipc, buf, "text/plain|text/html") / 100 )== 2) {
1125                 can_do_msg4 = 1;
1126         }
1127 }
1128
1129
1130
1131 /*
1132  * Record compare function for SortOnlineUsers()
1133  */
1134 int idlecmp(const void *rec1, const void *rec2) {
1135         time_t i1, i2;
1136
1137         i1 = extract_long(rec1, 5);
1138         i2 = extract_long(rec2, 5);
1139
1140         if (i1 < i2) return(1);
1141         if (i1 > i2) return(-1);
1142         return(0);
1143 }
1144
1145
1146 /*
1147  * Sort the list of online users by idle time.
1148  * This function frees the supplied buffer, and returns a new one
1149  * to the caller.  The caller is responsible for freeing the returned buffer.
1150  */
1151 char *SortOnlineUsers(char *listing) {
1152         int rows;
1153         char *sortbuf;
1154         char *retbuf;
1155         char buf[SIZ];
1156         int i;
1157
1158         rows = num_tokens(listing, '\n');
1159         sortbuf = malloc(rows * SIZ);
1160         if (sortbuf == NULL) return(listing);
1161         retbuf = malloc(rows * SIZ);
1162         if (retbuf == NULL) {
1163                 free(sortbuf);
1164                 return(listing);
1165         }
1166
1167         /* Copy the list into a fixed-record-size array for sorting */
1168         for (i=0; i<rows; ++i) {
1169                 memset(buf, 0, SIZ);
1170                 extract_token(buf, listing, i, '\n', sizeof buf);
1171                 memcpy(&sortbuf[i*SIZ], buf, (size_t)SIZ);
1172         }
1173
1174         /* Do the sort */
1175         qsort(sortbuf, rows, SIZ, idlecmp);
1176
1177         /* Copy back to a \n delimited list */
1178         strcpy(retbuf, "");
1179         for (i=0; i<rows; ++i) {
1180                 strcat(retbuf, &sortbuf[i*SIZ]);
1181                 if (i<(rows-1)) strcat(retbuf, "\n");
1182         }
1183     free(listing);
1184     free(sortbuf);
1185         return(retbuf);
1186 }
1187
1188
1189
1190 /*
1191  * Display list of users currently logged on to the server
1192  */
1193 void who_is_online(CtdlIPC *ipc, int longlist)
1194 {
1195         char buf[SIZ], username[SIZ], roomname[SIZ], fromhost[SIZ];
1196         char flags[SIZ];
1197         char actual_user[SIZ], actual_room[SIZ], actual_host[SIZ];
1198         char clientsoft[SIZ];
1199         time_t timenow = 0;
1200         time_t idletime, idlehours, idlemins, idlesecs;
1201         int last_session = (-1);
1202         int skipidle = 0;
1203         char *listing = NULL;
1204         int r;                          /* IPC response code */
1205     
1206         if (longlist == 2) {
1207                 longlist = 0;
1208                 skipidle = 1;
1209         }
1210
1211         if (!longlist) {
1212                 color(BRIGHT_WHITE);
1213                 pprintf("           User Name               Room           Idle        From host\n");
1214                 color(DIM_WHITE);
1215                 pprintf("   ------------------------- -------------------- ---- ------------------------\n");
1216         }
1217         r = CtdlIPCOnlineUsers(ipc, &listing, &timenow, buf);
1218         listing = SortOnlineUsers(listing);
1219         if (r / 100 == 1) {
1220                 while (strlen(listing) > 0) {
1221                         int isidle = 0;
1222                         
1223                         /* Get another line */
1224                         extract_token(buf, listing, 0, '\n', sizeof buf);
1225                         remove_token(listing, 0, '\n');
1226
1227                         extract_token(username, buf, 1, '|', sizeof username);
1228                         extract_token(roomname, buf, 2, '|', sizeof roomname);
1229                         extract_token(fromhost, buf, 3, '|', sizeof fromhost);
1230                         extract_token(clientsoft, buf, 4, '|', sizeof clientsoft);
1231                         extract_token(flags, buf, 7, '|', sizeof flags);
1232
1233                         idletime = timenow - extract_long(buf, 5);
1234                         idlehours = idletime / 3600;
1235                         idlemins = (idletime - (idlehours * 3600)) / 60;
1236                         idlesecs = (idletime - (idlehours * 3600) - (idlemins * 60));
1237
1238                         if (idletime > rc_idle_threshold) {
1239                                 /*
1240                                 while (strlen(roomname) < 20) {
1241                                         strcat(roomname, " ");
1242                                 }
1243                                 strcpy(&roomname[14], "[idle]");
1244                                 */
1245                                 if (skipidle)
1246                                         isidle = 1;
1247                         }
1248
1249                         if (longlist) {
1250                                 extract_token(actual_user, buf, 8, '|', sizeof actual_user);
1251                                 extract_token(actual_room, buf, 9, '|', sizeof actual_room);
1252                                 extract_token(actual_host, buf, 10, '|', sizeof actual_host);
1253
1254                                 pprintf("  Flags: %s\n", flags);
1255                                 pprintf("Session: %d\n", extract_int(buf, 0));
1256                                 pprintf("   Name: %s\n", username);
1257                                 pprintf("In room: %s\n", roomname);
1258                                 pprintf("   Host: %s\n", fromhost);
1259                                 pprintf(" Client: %s\n", clientsoft);
1260                                 pprintf("   Idle: %ld:%02ld:%02ld\n",
1261                                         (long) idlehours,
1262                                         (long) idlemins,
1263                                         (long) idlesecs);
1264
1265                                 if ( (strlen(actual_user)+strlen(actual_room)+strlen(actual_host)) > 0) {
1266                                         pprintf("(really ");
1267                                         if (strlen(actual_user)>0) pprintf("<%s> ", actual_user);
1268                                         if (strlen(actual_room)>0) pprintf("in <%s> ", actual_room);
1269                                         if (strlen(actual_host)>0) pprintf("from <%s> ", actual_host);
1270                                         pprintf(")\n");
1271                                 }
1272                                 pprintf("\n");
1273
1274                         } else {
1275                     if (isidle == 0) {
1276                                 if (extract_int(buf, 0) == last_session) {
1277                                         pprintf("        ");
1278                                 } else {
1279                                         color(BRIGHT_MAGENTA);
1280                                         pprintf("%-3s", flags);
1281                                 }
1282                                 last_session = extract_int(buf, 0);
1283                                 color(BRIGHT_CYAN);
1284                                 pprintf("%-25s ", username);
1285                                 color(BRIGHT_MAGENTA);
1286                                 roomname[20] = 0;
1287                                 pprintf("%-20s ", roomname);
1288                                 if (idletime > rc_idle_threshold) {
1289                                         /* over 1000d, must be gone fishing */
1290                                         if (idlehours > 23999) {
1291                                                 pprintf("fish");
1292                                         /* over 10 days */
1293                                         } else if (idlehours > 239) {
1294                                                 pprintf("%3ldd",
1295                                                         idlehours / 24);
1296                                         /* over 10 hours */
1297                                         } else if (idlehours > 9) {
1298                                                 pprintf("%1ldd%02ld",
1299                                                         idlehours / 24,
1300                                                         idlehours % 24);
1301                                         /* less than 10 hours */
1302                                         } else {
1303                                                 pprintf("%1ld:%02ld",
1304                                                         idlehours, idlemins);
1305                                         }
1306                                 }
1307                                 else {
1308                                         pprintf("    ");
1309                                 }
1310                                 pprintf(" ");
1311                                 color(BRIGHT_CYAN);
1312                                 fromhost[24] = '\0';
1313                                 pprintf("%-24s\n", fromhost);
1314                                 color(DIM_WHITE);
1315                         }
1316                         }
1317                 }
1318         }
1319         free(listing);
1320 }
1321
1322 void enternew(CtdlIPC *ipc, char *desc, char *buf, int maxlen)
1323 {
1324         char bbb[128];
1325         snprintf(bbb, sizeof bbb, "Enter in your new %s: ", desc);
1326         newprompt(bbb, buf, maxlen);
1327 }
1328
1329
1330
1331 int shift(int argc, char **argv, int start, int count) {
1332         int i;
1333
1334         for (i=start; i<(argc-count); ++i) {
1335                 argv[i] = argv[i+count];
1336         }
1337         argc = argc - count;
1338         return argc;
1339 }
1340
1341 static void statusHook(char *s) {
1342         sln_printf(s);
1343         sln_flush();
1344 }
1345
1346 /*
1347  * main
1348  */
1349 int main(int argc, char **argv)
1350 {
1351         int a, b, mcmd;
1352         char aaa[100], bbb[100];/* general purpose variables */
1353         char argbuf[32];        /* command line buf */
1354         char nonce[NONCE_SIZE];
1355         char *telnet_client_host = NULL;
1356         char *sptr, *sptr2;     /* USed to extract the nonce */
1357         char hexstring[MD5_HEXSTRING_SIZE];
1358         int stored_password = 0;
1359         char password[SIZ];
1360         struct ctdlipcmisc chek;
1361         struct ctdluser *myself = NULL;
1362         CtdlIPC* ipc;                   /* Our server connection */
1363         int r;                          /* IPC result code */
1364
1365         int relh=0;
1366         int home=0;
1367         char relhome[PATH_MAX]="";
1368         char ctdldir[PATH_MAX]=CTDLDIR;
1369     
1370
1371
1372         calc_dirs_n_files(relh, home, relhome, ctdldir);
1373         
1374         setIPCDeathHook(screen_delete);
1375         setIPCErrorPrintf(err_printf);
1376         setCryptoStatusHook(statusHook);
1377         
1378         /* Permissions sanity check - don't run citadel setuid/setgid */
1379         if (getuid() != geteuid()) {
1380                 err_printf("Please do not run citadel setuid!\n");
1381                 logoff(NULL, 3);
1382         } else if (getgid() != getegid()) {
1383                 err_printf("Please do not run citadel setgid!\n");
1384                 logoff(NULL, 3);
1385         }
1386
1387         stty_ctdl(SB_SAVE);     /* Store the old terminal parameters */
1388         load_command_set();     /* parse the citadel.rc file */
1389         stty_ctdl(SB_NO_INTR);  /* Install the new ones */
1390         /* signal(SIGHUP, dropcarr);FIXME */    /* Cleanup gracefully if carrier is dropped */
1391         signal(SIGPIPE, dropcarr);      /* Cleanup gracefully if local conn. dropped */
1392         signal(SIGTERM, dropcarr);      /* Cleanup gracefully if terminated */
1393         signal(SIGCONT, catch_sigcont); /* Catch SIGCONT so we can reset terminal */
1394 #ifdef SIGWINCH
1395         signal(SIGWINCH, scr_winch);    /* Window resize signal */
1396 #endif
1397
1398 #ifdef HAVE_OPENSSL
1399         arg_encrypt = RC_DEFAULT;
1400 #endif
1401 #if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
1402         arg_screen = RC_DEFAULT;
1403 #endif
1404
1405         /* 
1406          * Handle command line options as if we were called like /bin/login
1407          * (i.e. from in.telnetd)
1408          */
1409         for (a=0; a<argc; ++a) {
1410                 if ((argc > a+1) && (!strcmp(argv[a], "-h")) ) {
1411                         telnet_client_host = argv[a+1];
1412                         argc = shift(argc, argv, a, 2);
1413                 }
1414                 if (!strcmp(argv[a], "-x")) {
1415 #ifdef HAVE_OPENSSL
1416                         arg_encrypt = RC_NO;
1417 #endif
1418                         argc = shift(argc, argv, a, 1);
1419                 }
1420                 if (!strcmp(argv[a], "-X")) {
1421 #ifdef HAVE_OPENSSL
1422                         arg_encrypt = RC_YES;
1423                         argc = shift(argc, argv, a, 1);
1424 #else
1425                         fprintf(stderr, "Not compiled with encryption support");
1426                         return 1;
1427 #endif
1428                 }
1429                 if (!strcmp(argv[a], "-s")) {
1430 #if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
1431                         arg_screen = RC_NO;
1432 #endif
1433                         argc = shift(argc, argv, a, 1);
1434                 }
1435                 if (!strcmp(argv[a], "-S")) {
1436 #if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
1437                         arg_screen = RC_YES;
1438 #endif
1439                         argc = shift(argc, argv, a, 1);
1440                 }
1441                 if (!strcmp(argv[a], "-p")) {
1442                         struct stat st;
1443                 
1444                         if (chdir(CTDLDIR) < 0) {
1445                                 perror("can't change to " CTDLDIR);
1446                                 logoff(NULL, 3);
1447                         }
1448
1449                         /*
1450                          * Drop privileges if necessary. We stat
1451                          * citadel.config to get the uid/gid since it's
1452                          * guaranteed to have the uid/gid we want.
1453                          */
1454                         if (!getuid() || !getgid()) {
1455                                 if (stat(file_citadel_config, &st) < 0) {
1456                                         perror("couldn't stat citadel.config");
1457                                         logoff(NULL, 3);
1458                                 }
1459                                 if (!getgid() && (setgid(st.st_gid) < 0)) {
1460                                         perror("couldn't change gid");
1461                                         logoff(NULL, 3);
1462                                 }
1463                                 if (!getuid() && (setuid(st.st_uid) < 0)) {
1464                                         perror("couldn't change uid");
1465                                         logoff(NULL, 3);
1466                                 }
1467                                 /*
1468                                   scr_printf("Privileges changed to uid %d gid %d\n",
1469                                   getuid(), getgid());
1470                                 */
1471                         }
1472                         argc = shift(argc, argv, a, 1);
1473                 }
1474         }
1475         
1476
1477         screen_new();
1478
1479 #ifdef __CYGWIN__
1480         newprompt("Connect to (return for local server): ", hostbuf, 64);
1481 #endif
1482
1483         sln_printf("Attaching to server... \r");
1484         sln_flush();
1485         ipc = CtdlIPC_new(argc, argv, hostbuf, portbuf);
1486         if (!ipc) {
1487                 screen_delete();
1488                 error_printf("Can't connect: %s\n", strerror(errno));
1489                 logoff(NULL, 3);
1490         }
1491 #if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
1492         CtdlIPC_SetNetworkStatusCallback(ipc, wait_indicator);
1493 #endif
1494         ipc_for_signal_handlers = ipc;  /* KLUDGE cover your eyes */
1495
1496         CtdlIPC_chat_recv(ipc, aaa);
1497         if (aaa[0] != '2') {
1498                 scr_printf("%s\n", &aaa[4]);
1499                 logoff(ipc, atoi(aaa));
1500         }
1501
1502         /* If there is a [nonce] at the end, put the nonce in <nonce>, else nonce
1503          * is zeroized.
1504          */
1505         
1506         if ((sptr = strchr(aaa, '<')) == NULL)
1507                 {
1508                         nonce[0] = '\0';
1509                 }
1510         else
1511                 {
1512                         if ((sptr2 = strchr(sptr, '>')) == NULL)
1513                                 {
1514                                         nonce[0] = '\0';
1515                                 }
1516                         else
1517                                 {
1518                                         sptr2++;
1519                                         *sptr2 = '\0';
1520                                         strncpy(nonce, sptr, (size_t)NONCE_SIZE);
1521                                 }
1522                 }
1523
1524 #ifdef HAVE_OPENSSL
1525         /* Evaluate encryption preferences */
1526         if (arg_encrypt != RC_NO && rc_encrypt != RC_NO) {
1527                 if (!ipc->isLocal || arg_encrypt == RC_YES || rc_encrypt == RC_YES) {
1528                         secure = (CtdlIPCStartEncryption(ipc, aaa) / 100 == 2) ? 1 : 0;
1529                         if (!secure)
1530                                 error_printf("Can't encrypt: %s\n", aaa);
1531                 }
1532         }
1533 #endif
1534
1535         get_serv_info(ipc, telnet_client_host);
1536         scr_printf("%-24s\n%s\n%s\n", ipc->ServInfo.software, ipc->ServInfo.humannode,
1537                    ipc->ServInfo.site_location);
1538         scr_flush();
1539
1540         status_line(ipc->ServInfo.humannode, ipc->ServInfo.site_location, NULL,
1541                     secure, -1);
1542
1543         screenwidth = 80;       /* default screen dimensions */
1544         screenheight = 24;
1545         
1546         scr_printf(" pause    next    stop\n");
1547         scr_printf(" ctrl-s  ctrl-o  ctrl-c\n\n");
1548         formout(ipc, "hello");  /* print the opening greeting */
1549         scr_printf("\n");
1550
1551  GSTA:  /* See if we have a username and password on disk */
1552         if (rc_remember_passwords) {
1553                 get_stored_password(hostbuf, portbuf, fullname, password);
1554                 if (strlen(fullname) > 0) {
1555                         r = CtdlIPCTryLogin(ipc, fullname, aaa);
1556                         if (r / 100 == 3) {
1557                                 if (*nonce) {
1558                                         r = CtdlIPCTryApopPassword(ipc, make_apop_string(password, nonce, hexstring, sizeof hexstring), aaa);
1559                                 } else {
1560                                         r = CtdlIPCTryPassword(ipc, password, aaa);
1561                                 }
1562                         }
1563
1564                         if (r / 100 == 2) {
1565                                 load_user_info(aaa);
1566                                 stored_password = 1;
1567                                 goto PWOK;
1568                         } else {
1569                                 set_stored_password(hostbuf, portbuf, "", "");
1570                         }
1571                 }
1572         }
1573
1574         termn8 = 0;
1575         newnow = 0;
1576         do {
1577                 if (strlen(rc_username) > 0) {
1578                         strcpy(fullname, rc_username);
1579                 } else {
1580                         newprompt("Enter your name: ", fullname, 29);
1581                 }
1582                 strproc(fullname);
1583                 if (!strcasecmp(fullname, "new")) {     /* just in case */
1584                         scr_printf("Please enter the name you wish to log in with.\n");
1585                 }
1586         } while (
1587                  (!strcasecmp(fullname, "bbs"))
1588                  || (!strcasecmp(fullname, "new"))
1589                  || (strlen(fullname) == 0));
1590
1591         if (!strcasecmp(fullname, "off")) {
1592                 mcmd = 29;
1593                 goto TERMN8;
1594         }
1595         /* sign on to the server */
1596         r = CtdlIPCTryLogin(ipc, fullname, aaa);
1597         if (r / 100 != 3)
1598                 goto NEWUSR;
1599
1600         /* password authentication */
1601         if (strlen(rc_password) > 0) {
1602                 strcpy(password, rc_password);
1603         } else {
1604                 newprompt("\rPlease enter your password: ", password, -19);
1605         }
1606         strproc(password);
1607
1608         if (*nonce) {
1609                 r = CtdlIPCTryApopPassword(ipc, make_apop_string(password, nonce, hexstring, sizeof hexstring), aaa);
1610         } else {
1611                 r = CtdlIPCTryPassword(ipc, password, aaa);
1612         }
1613         
1614         if (r / 100 == 2) {
1615                 load_user_info(aaa);
1616                 offer_to_remember_password(ipc, hostbuf, portbuf,
1617                                            fullname, password);
1618                 goto PWOK;
1619         }
1620         scr_printf("<< wrong password >>\n");
1621         if (strlen(rc_password) > 0)
1622                 logoff(ipc, 2);
1623         goto GSTA;
1624
1625 NEWUSR: if (strlen(rc_password) == 0) {
1626                 scr_printf("'%s' not found.\n", fullname);
1627                 scr_printf("Type 'off' if you would like to exit.\n");
1628                 if (ipc->ServInfo.newuser_disabled == 1) {
1629                         goto GSTA;
1630                 }
1631                 scr_printf("Do you want to create a new user account called '%s'? ",
1632                         fullname);
1633                 if (yesno() == 0) {
1634                         goto GSTA;
1635                 }
1636         }
1637
1638         r = CtdlIPCCreateUser(ipc, fullname, 1, aaa);
1639         if (r / 100 != 2) {
1640                 scr_printf("%s\n", aaa);
1641                 goto GSTA;
1642         }
1643         load_user_info(aaa);
1644
1645         while (set_password(ipc) != 0);
1646         newnow = 1;
1647
1648         enter_config(ipc, 1);
1649
1650  PWOK:
1651         /* Switch color support on or off if we're in user mode */
1652         if (rc_ansi_color == 3) {
1653                 if (userflags & US_COLOR)
1654                         enable_color = 1;
1655                 else
1656                         enable_color = 0;
1657         }
1658
1659         color(BRIGHT_WHITE);
1660         scr_printf("\n%s\nAccess level: %d (%s)\n"
1661                    "User #%ld / Login #%d",
1662                    fullname, axlevel, axdefs[(int) axlevel],
1663                    usernum, timescalled);
1664         if (lastcall > 0L) {
1665                 scr_printf(" / Last login: %s",
1666                            asctime(localtime(&lastcall)));
1667         }
1668         scr_printf("\n");
1669
1670         r = CtdlIPCMiscCheck(ipc, &chek, aaa);
1671         if (r / 100 == 2) {
1672                 b = chek.newmail;
1673                 if (b > 0) {
1674                         color(BRIGHT_RED);
1675                         if (b == 1)
1676                                 scr_printf("*** You have a new private message in Mail>\n");
1677                         if (b > 1)
1678                                 scr_printf("*** You have %d new private messages in Mail>\n", b);
1679                         color(DIM_WHITE);
1680                         if (strlen(rc_gotmail_cmd) > 0) {
1681                                 system(rc_gotmail_cmd);
1682                         }
1683                 }
1684                 if ((axlevel >= 6) && (chek.needvalid > 0)) {
1685                         scr_printf("*** Users need validation\n");
1686                 }
1687                 if (chek.needregis > 0) {
1688                         scr_printf("*** Please register.\n");
1689                         formout(ipc, "register");
1690                         entregis(ipc);
1691                 }
1692         }
1693         /* Make up some temporary filenames for use in various parts of the
1694          * program.  Don't mess with these once they've been set, because we
1695          * will be unlinking them later on in the program and we don't
1696          * want to delete something that we didn't create. */
1697         CtdlMakeTempFileName(temp, sizeof temp);
1698         CtdlMakeTempFileName(temp2, sizeof temp2);
1699         CtdlMakeTempFileName(tempdir, sizeof tempdir);
1700
1701         /* Get screen dimensions.  First we go to a default of 80x24.  Then
1702          * we try to get the user's actual screen dimensions off the server.
1703          * However, if we're running on an xterm, all this stuff is
1704          * irrelevant because we're going to dynamically size the screen
1705          * during the session.
1706          */
1707         screenwidth = 80;
1708         screenheight = 24;
1709         r = CtdlIPCGetConfig(ipc, &myself, aaa);
1710         if (r == 2) {
1711                 screenwidth = myself->USscreenwidth;
1712                 screenheight = myself->USscreenheight;
1713         }
1714         if (getenv("TERM") != NULL)
1715                 if (!strcmp(getenv("TERM"), "xterm")) {
1716                         have_xterm = 1;
1717                 }
1718 #ifdef TIOCGWINSZ
1719         check_screen_dims();
1720 #endif
1721
1722         set_floor_mode(ipc);
1723
1724         /* Enter the lobby */
1725         dotgoto(ipc, "_BASEROOM_", 1, 0);
1726
1727         /* Main loop for the system... user is logged in. */
1728     free(uglist[0]);
1729         uglistsize = 0;
1730
1731         if (newnow == 1)
1732                 readmsgs(ipc, LastMessages, ReadForward, 5);
1733         else
1734                 readmsgs(ipc, NewMessages, ReadForward, 0);
1735
1736         /* MAIN COMMAND LOOP */
1737         do {
1738                 mcmd = getcmd(ipc, argbuf);     /* Get keyboard command */
1739
1740 #ifdef TIOCGWINSZ
1741                 check_screen_dims();            /* if xterm, get screen size */
1742 #endif
1743
1744                 if (termn8 == 0)
1745                         switch (mcmd) {
1746                         case 1:
1747                                 formout(ipc, "help");
1748                                 break;
1749                         case 4:
1750                                 entmsg(ipc, 0, ((userflags & US_EXTEDIT) ? 2 : 0));
1751                                 break;
1752                         case 36:
1753                                 entmsg(ipc, 0, 1);
1754                                 break;
1755                         case 46:
1756                                 entmsg(ipc, 0, 2);
1757                                 break;
1758                         case 78:
1759                                 {
1760                                         /* Only m.author is used */
1761                                         struct ctdlipcmessage m;
1762                                         newprompt("What do you want your username to be? ",
1763                                                 m.author, USERNAME_SIZE - 1);
1764                                         m.text = "";
1765                                         r = CtdlIPCPostMessage(ipc, 2, &m, aaa);
1766                                         if (r / 100 != 2)
1767                                                 scr_printf("%s\n", aaa);
1768                                         else
1769                                                 entmsg(ipc, 0, 0);
1770                                 }
1771                                 break;
1772                         case 5:                         /* <G>oto */
1773                                 updatels(ipc);
1774                                 gotonext(ipc);
1775                                 break;
1776                         case 47:                        /* <A>bandon */
1777                                 if (!rc_alt_semantics) {
1778                                         updatelsa(ipc);
1779                                 }
1780                                 gotonext(ipc);
1781                                 break;
1782                         case 90:                        /* <.A>bandon */
1783                                 if (!rc_alt_semantics)
1784                                         updatelsa(ipc);
1785                                 dotgoto(ipc, argbuf, 0, 0);
1786                                 break;
1787                         case 58:                        /* <M>ail */
1788                                 updatelsa(ipc);
1789                                 dotgoto(ipc, "_MAIL_", 1, 0);
1790                                 break;
1791                         case 20:
1792                                 if (strlen(argbuf) > 0) {
1793                                         updatels(ipc);
1794                                         dotgoto(ipc, argbuf, 0, 0);
1795                                 }
1796                                 break;
1797                         case 52:
1798                                 if (strlen(argbuf) > 0) {
1799                                         if (rc_alt_semantics) {
1800                                                 updatelsa(ipc);
1801                                         }
1802                                         dotgoto(ipc, argbuf, 0, 0);
1803                                 }
1804                                 break;
1805                         case 95: /* what exactly is the numbering scheme supposed to be anyway? --Ford, there isn't one. -IO */
1806                                 dotungoto(ipc, argbuf);
1807                                 break;
1808                         case 10:
1809                                 readmsgs(ipc, AllMessages, ReadForward, 0);
1810                                 break;
1811                         case 9:
1812                                 readmsgs(ipc, LastMessages, ReadForward, 5);
1813                                 break;
1814                         case 13:
1815                                 readmsgs(ipc, NewMessages, ReadForward, 0);
1816                                 break;
1817                         case 11:
1818                                 readmsgs(ipc, AllMessages, ReadReverse, 0);
1819                                 break;
1820                         case 12:
1821                                 readmsgs(ipc, OldMessages, ReadReverse, 0);
1822                                 break;
1823                         case 71:
1824                                 readmsgs(ipc, LastMessages, ReadForward,
1825                                                 atoi(argbuf));
1826                                 break;
1827                         case 7:
1828                                 forget(ipc);
1829                                 break;
1830                         case 18:
1831                                 subshell();
1832                                 break;
1833                         case 38:
1834                                 updatels(ipc);
1835                                 entroom(ipc);
1836                                 break;
1837                         case 22:
1838                                 killroom(ipc);
1839                                 break;
1840                         case 32:
1841                                 userlist(ipc, argbuf);
1842                                 break;
1843                         case 27:
1844                                 invite(ipc);
1845                                 break;
1846                         case 28:
1847                                 kickout(ipc);
1848                                 break;
1849                         case 23:
1850                                 editthisroom(ipc);
1851                                 break;
1852                         case 14:
1853                                 roomdir(ipc);
1854                                 break;
1855                         case 33:
1856                                 download(ipc, 0);
1857                                 break;
1858                         case 34:
1859                                 download(ipc, 1);
1860                                 break;
1861                         case 31:
1862                                 download(ipc, 2);
1863                                 break;
1864                         case 43:
1865                                 download(ipc, 3);
1866                                 break;
1867                         case 45:
1868                                 download(ipc, 4);
1869                                 break;
1870                         case 55:
1871                                 download(ipc, 5);
1872                                 break;
1873                         case 39:
1874                                 upload(ipc, 0);
1875                                 break;
1876                         case 40:
1877                                 upload(ipc, 1);
1878                                 break;
1879                         case 42:
1880                                 upload(ipc, 2);
1881                                 break;
1882                         case 44:
1883                                 upload(ipc, 3);
1884                                 break;
1885                         case 57:
1886                                 cli_upload(ipc);
1887                                 break;
1888                         case 16:
1889                                 ungoto(ipc);
1890                                 break;
1891                         case 24:
1892                                 whoknows(ipc);
1893                                 break;
1894                         case 26:
1895                                 validate(ipc);
1896                                 break;
1897                         case 29:
1898                         case 30:
1899                                 if (!rc_alt_semantics) {
1900                                         updatels(ipc);
1901                                 }
1902                                 termn8 = 1;
1903                                 break;
1904                         case 48:
1905                                 enterinfo(ipc);
1906                                 break;
1907                         case 49:
1908                                 readinfo(ipc);
1909                                 break;
1910                         case 72:
1911                                 cli_image_upload(ipc, "_userpic_");
1912                                 break;
1913                         case 73:
1914                                 cli_image_upload(ipc, "_roompic_");
1915                                 break;
1916
1917                         case 74:
1918                                 snprintf(aaa, sizeof aaa, "_floorpic_|%d", curr_floor);
1919                                 cli_image_upload(ipc, aaa);
1920                                 break;
1921
1922                         case 75:
1923                                 enternew(ipc, "roomname", aaa, 20);
1924                                 r = CtdlIPCChangeRoomname(ipc, aaa, bbb);
1925                                 if (r / 100 != 2)
1926                                         scr_printf("\n%s\n", bbb);
1927                                 break;
1928                         case 76:
1929                                 enternew(ipc, "hostname", aaa, 25);
1930                                 r = CtdlIPCChangeHostname(ipc, aaa, bbb);
1931                                 if (r / 100 != 2)
1932                                         scr_printf("\n%s\n", bbb);
1933                                 break;
1934                         case 77:
1935                                 enternew(ipc, "username", aaa, 32);
1936                                 r = CtdlIPCChangeUsername(ipc, aaa, bbb);
1937                                 if (r / 100 != 2)
1938                                         scr_printf("\n%s\n", bbb);
1939                                 break;
1940
1941                         case 35:
1942                                 set_password(ipc);
1943                                 break;
1944
1945                         case 21:
1946                                 if (argbuf[0] == 0)
1947                                         strcpy(aaa, "?");
1948                                 display_help(ipc, argbuf);
1949                                 break;
1950
1951                         case 41:
1952                                 formout(ipc, "register");
1953                                 entregis(ipc);
1954                                 break;
1955
1956                         case 15:
1957                                 scr_printf("Are you sure (y/n)? ");
1958                                 if (yesno() == 1) {
1959                                         if (!rc_alt_semantics)
1960                                                 updatels(ipc);
1961                                         a = 0;
1962                                         termn8 = 1;
1963                                 }
1964                                 break;
1965
1966                         case 85:
1967                                 scr_printf("All users will be disconnected!  "
1968                                            "Really terminate the server? ");
1969                                 if (yesno() == 1) {
1970                                         if (!rc_alt_semantics)
1971                                                 updatels(ipc);
1972                                         r = CtdlIPCTerminateServerNow(ipc, aaa);
1973                                         scr_printf("%s\n", aaa);
1974                                         if (r / 100 == 2) {
1975                                                 a = 0;
1976                                                 termn8 = 1;
1977                                         }
1978                                 }
1979                                 break;
1980
1981                         case 86:
1982                                 scr_printf("Do you really want to schedule a "
1983                                            "server shutdown? ");
1984                                 if (yesno() == 1) {
1985                                         r = CtdlIPCTerminateServerScheduled(ipc, 1, aaa);
1986                                         if (r / 100 == 2) {
1987                                                 if (atoi(aaa)) {
1988                                                         scr_printf(
1989                                                                    "The Citadel server will terminate when all users are logged off.\n"
1990                                                                    );
1991                                                 } else {
1992                                                         scr_printf(
1993                                                                    "The Citadel server will not terminate.\n"
1994                                                                    );
1995                                                 }
1996                                         }
1997                                 }
1998                                 break;
1999
2000                         case 87:
2001                                 network_config_management(ipc, "listrecp",
2002                                                           "Message-by-message mailing list recipients");
2003                                 break;
2004
2005                         case 94:
2006                                 network_config_management(ipc, "digestrecp",
2007                                                           "Digest mailing list recipients");
2008                                 break;
2009
2010                         case 89:
2011                                 network_config_management(ipc, "ignet_push_share",
2012                                                           "Nodes with which we share this room");
2013                                 break;
2014
2015                         case 88:
2016                                 do_ignet_configuration(ipc);
2017                                 break;
2018
2019                         case 92:
2020                                 do_filterlist_configuration(ipc);
2021                                 break;
2022
2023                         case 6:
2024                                 if (rc_alt_semantics) {
2025                                         updatelsa(ipc);
2026                                 }
2027                                 gotonext(ipc);
2028                                 break;
2029
2030                         case 3:
2031                                 chatmode(ipc);
2032                                 break;
2033
2034                         case 2:
2035                                 if (ipc->isLocal) {
2036                                         screen_reset();
2037                                         stty_ctdl(SB_RESTORE);
2038                                         snprintf(aaa, sizeof aaa, "USERNAME=\042%s\042; export USERNAME;"
2039                                                  "exec ./subsystem %ld %d %d", fullname,
2040                                                  usernum, screenwidth, axlevel);
2041                                         ka_system(aaa);
2042                                         stty_ctdl(SB_NO_INTR);
2043                                         screen_set();
2044                                 } else {
2045                                         scr_printf("*** Can't run doors when server is not local.\n");
2046                                 }
2047                                 break;
2048
2049                         case 17:
2050                                 who_is_online(ipc, 0);
2051                                 break;
2052
2053                         case 79:
2054                                 who_is_online(ipc, 1);
2055                                 break;
2056
2057                         case 91:
2058                                 who_is_online(ipc, 2);
2059                                 break;
2060                 
2061                         case 80:
2062                                 do_system_configuration(ipc);
2063                                 break;
2064
2065                         case 82:
2066                                 do_internet_configuration(ipc);
2067                                 break;
2068
2069                         case 83:
2070                                 check_message_base(ipc);
2071                                 break;
2072
2073                         case 84:
2074                                 quiet_mode(ipc);
2075                                 break;
2076
2077                         case 93:
2078                                 stealth_mode(ipc);
2079                                 break;
2080
2081                         case 50:
2082                                 enter_config(ipc, 2);
2083                                 break;
2084
2085                         case 37:
2086                                 enter_config(ipc, 0);
2087                                 set_floor_mode(ipc);
2088                                 break;
2089
2090                         case 59:
2091                                 enter_config(ipc, 3);
2092                                 set_floor_mode(ipc);
2093                                 break;
2094
2095                         case 60:
2096                                 gotofloor(ipc, argbuf, GF_GOTO);
2097                                 break;
2098
2099                         case 61:
2100                                 gotofloor(ipc, argbuf, GF_SKIP);
2101                                 break;
2102
2103                         case 62:
2104                                 forget_this_floor(ipc);
2105                                 break;
2106
2107                         case 63:
2108                                 create_floor(ipc);
2109                                 break;
2110
2111                         case 64:
2112                                 edit_floor(ipc);
2113                                 break;
2114
2115                         case 65:
2116                                 kill_floor(ipc);
2117                                 break;
2118
2119                         case 66:
2120                                 enter_bio(ipc);
2121                                 break;
2122
2123                         case 67:
2124                                 read_bio(ipc);
2125                                 break;
2126
2127                         case 25:
2128                                 edituser(ipc, 25);
2129                                 break;
2130
2131                         case 96:
2132                                 edituser(ipc, 96);
2133                                 break;
2134
2135                         case 8:
2136                                 knrooms(ipc, floor_mode);
2137                                 scr_printf("\n");
2138                                 break;
2139
2140                         case 68:
2141                                 knrooms(ipc, 2);
2142                                 scr_printf("\n");
2143                                 break;
2144
2145                         case 69:
2146                                 misc_server_cmd(ipc, argbuf);
2147                                 break;
2148
2149                         case 70:
2150                                 edit_system_message(ipc, argbuf);
2151                                 break;
2152
2153                         case 19:
2154                                 listzrooms(ipc);
2155                                 scr_printf("\n");
2156                                 break;
2157
2158                         case 51:
2159                                 deletefile(ipc);
2160                                 break;
2161
2162                         case 53:
2163                                 netsendfile(ipc);
2164                                 break;
2165
2166                         case 54:
2167                                 movefile(ipc);
2168                                 break;
2169
2170                         case 56:
2171                                 page_user(ipc);
2172                                 break;
2173
2174             case 110:           /* <+> Next room */
2175                                  gotoroomstep(ipc, 1, 0);
2176                              break;
2177
2178             case 111:           /* <-> Previous room */
2179                  gotoroomstep(ipc, 0, 0);
2180                              break;
2181
2182                         case 112:           /* <>> Next floor */
2183                  gotofloorstep(ipc, 1, GF_GOTO);
2184                              break;
2185
2186                         case 113:           /* <<> Previous floor */
2187                  gotofloorstep(ipc, 0, GF_GOTO);
2188                                  break;
2189
2190             case 116:           /* <.> skip to <+> Next room */
2191                  gotoroomstep(ipc, 1, 1);
2192                              break;
2193
2194             case 117:           /* <.> skip to <-> Previous room */
2195                  gotoroomstep(ipc, 0, 1);
2196                              break;
2197
2198                         case 118:           /* <.> skip to <>> Next floor */
2199                  gotofloorstep(ipc, 1, GF_SKIP);
2200                              break;
2201
2202                         case 119:           /* <.> skip to <<> Previous floor */
2203                  gotofloorstep(ipc, 0, GF_SKIP);
2204                                  break;
2205
2206                         case 114:           
2207                  read_config(ipc);
2208                                  break;
2209
2210                         case 115:           
2211                  system_info(ipc);
2212                                  break;
2213
2214                         case 120:           /* .KAnonymous */
2215                          dotknown(ipc, 0, NULL);
2216                                  break;
2217
2218                         case 121:           /* .KDirectory */
2219                          dotknown(ipc, 1, NULL);
2220                                  break;
2221
2222                         case 122:           /* .KMatch */
2223                          dotknown(ipc, 2, argbuf);
2224                                  break;
2225
2226                         case 123:           /* .KpreferredOnly */
2227                          dotknown(ipc, 3, NULL);
2228                                  break;
2229
2230                         case 124:           /* .KPrivate */
2231                          dotknown(ipc, 4, NULL);
2232                                  break;
2233
2234                         case 125:           /* .KRead only */
2235                          dotknown(ipc, 5, NULL);
2236                                  break;
2237
2238                         case 126:           /* .KShared */
2239                          dotknown(ipc, 6, NULL);
2240                                  break;
2241
2242                         default: /* allow some math on the command */
2243                                 /* commands 100... to 100+MAX_EDITORS-1 will
2244                                    call the appropriate editor... in other
2245                                    words, command numbers 100+ will match
2246                                    the citadel.rc keys editor0, editor1, etc.*/
2247                                 if (mcmd >= 100 && mcmd < (100+MAX_EDITORS))
2248                                 {
2249                                         /* entmsg mode >=2 select editor */
2250                                         entmsg(ipc, 0, mcmd - 100 + 2);
2251                                         break;
2252                                 }
2253                         }       /* end switch */
2254         } while (termn8 == 0);
2255
2256 TERMN8: scr_printf("%s logged out.", fullname);
2257         termn8 = 0;
2258         color(ORIGINAL_PAIR);
2259         scr_printf("\n");
2260         while (march != NULL) {
2261                 remove_march(march->march_name, 0);
2262         }
2263         if (mcmd == 30) {
2264                 sln_printf("\n\nType 'off' to disconnect, or next user...\n");
2265         }
2266         CtdlIPCLogout(ipc);
2267         if ((mcmd == 29) || (mcmd == 15)) {
2268                 screen_delete();
2269                 stty_ctdl(SB_RESTORE);
2270                 formout(ipc, "goodbye");
2271                 logoff(ipc, 0);
2272         }
2273         goto GSTA;
2274
2275 }       /* end main() */