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