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