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