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