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