* Renamed "struct user" to "struct ctdluser"
[citadel.git] / citadel / citadel.c
1 /*
2  * $Id$
3  *
4  * Main source module for the client program.
5  */
6
7 #include "sysdep.h"
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <fcntl.h>
11 #include <stdio.h>
12 #include <ctype.h>
13 #include <string.h>
14
15 #if TIME_WITH_SYS_TIME
16 # include <sys/time.h>
17 # include <time.h>
18 #else
19 # if HAVE_SYS_TIME_H
20 #  include <sys/time.h>
21 # else
22 #  include <time.h>
23 # endif
24 #endif
25
26 #include <limits.h>
27 #include <sys/types.h>
28 #include <sys/wait.h>
29 #include <sys/stat.h>
30 #include <sys/ioctl.h>
31 #include <signal.h>
32 #include <pwd.h>
33 #include <stdarg.h>
34 #include <errno.h>
35
36 #include "citadel.h"
37 #include "citadel_ipc.h"
38 #include "axdefs.h"
39 #include "routines.h"
40 #include "routines2.h"
41 #include "rooms.h"
42 #include "messages.h"
43 #include "commands.h"
44 #include "client_chat.h"
45 #include "client_passwords.h"
46 #include "citadel_decls.h"
47 #include "tools.h"
48 #include "acconfig.h"
49 #ifndef HAVE_SNPRINTF
50 #include "snprintf.h"
51 #endif
52 #include "screen.h"
53
54 #include "md5.h"
55
56 #define IFEXPERT if (userflags&US_EXPERT)
57 #define IFNEXPERT if ((userflags&US_EXPERT)==0)
58 #define IFAIDE if (axlevel>=6)
59 #define IFNAIDE if (axlevel<6)
60
61 struct march *march = NULL;
62
63 /* globals associated with the client program */
64 char temp[PATH_MAX];            /* Name of general-purpose temp file */
65 char temp2[PATH_MAX];           /* Name of general-purpose temp file */
66 char tempdir[PATH_MAX];         /* Name of general-purpose temp directory */
67 char editor_paths[MAX_EDITORS][SIZ];    /* paths to external editors */
68 char printcmd[SIZ];             /* print command */
69 int editor_pid = (-1);
70 char fullname[USERNAME_SIZE];
71 struct CtdlServInfo serv_info;  /* Info on the server connected */
72 int screenwidth;
73 int screenheight;
74 unsigned room_flags;
75 char room_name[ROOMNAMELEN];
76 char *uglist[UGLISTLEN]; /* size of the ungoto list */
77 long uglistlsn[UGLISTLEN]; /* current read position for all the ungoto's. Not going to make any friends with this one. */
78 int uglistsize = 0;
79 char is_mail = 0;               /* nonzero when we're in a mail room */
80 char axlevel = 0;               /* access level */
81 char is_room_aide = 0;          /* boolean flag, 1 if room aide */
82 int timescalled;
83 int posted;
84 unsigned userflags;
85 long usernum = 0L;              /* user number */
86 time_t lastcall = 0L;           /* Date/time of previous login */
87 char newnow;
88 long highest_msg_read;          /* used for <A>bandon room cmd */
89 long maxmsgnum;                 /* used for <G>oto */
90 char sigcaught = 0;
91 char have_xterm = 0;            /* are we running on an xterm? */
92 char rc_username[USERNAME_SIZE];
93 char rc_password[32];
94 char hostbuf[SIZ];
95 char portbuf[SIZ];
96 char rc_floor_mode;
97 char floor_mode;
98 char curr_floor = 0;            /* number of current floor */
99 char floorlist[128][SIZ];       /* names of floors */
100 int termn8 = 0;                 /* Set to nonzero to cause a logoff */
101 int secure;                     /* Set to nonzero when wire is encrypted */
102 int can_do_msg4 = 0;            /* Set to nonzero if the server can handle MSG4 commands */
103
104 extern char express_msgs;       /* express messages waiting! */
105 extern int rc_ansi_color;       /* ansi color value from citadel.rc */
106 extern int next_lazy_cmd;
107
108 CtdlIPC *ipc_for_signal_handlers;       /* KLUDGE cover your eyes */
109
110 /*
111  * here is our 'clean up gracefully and exit' routine
112  */
113 void logoff(CtdlIPC *ipc, int code)
114 {
115         int lp;
116
117         if (editor_pid > 0) {   /* kill the editor if it's running */
118                 kill(editor_pid, SIGHUP);
119         }
120
121         /* Free the ungoto list */
122         for (lp = 0; lp < uglistsize; lp++) {
123                 free(uglist[lp]);
124         }
125
126 /* Shut down the server connection ... but not if the logoff code is 3,
127  * because that means we're exiting because we already lost the server.
128  */
129         if (code != 3) {
130                 CtdlIPCQuit(ipc);
131         }
132
133 /*
134  * now clean up various things
135  */
136         screen_delete();
137
138         unlink(temp);
139         unlink(temp2);
140         nukedir(tempdir);
141
142         /* Violently kill off any child processes if Citadel is
143          * the login shell. 
144          */
145         if (getppid() == 1) {
146                 kill(0 - getpgrp(), SIGTERM);
147                 sleep(1);
148                 kill(0 - getpgrp(), SIGKILL);
149         }
150         color(ORIGINAL_PAIR);   /* Restore the old color settings */
151         sttybbs(SB_RESTORE);    /* return the old terminal settings */
152         exit(code);             /* exit with the proper exit code */
153 }
154
155
156
157 /*
158  * signal catching function for hangups...
159  */
160 void dropcarr(int signum)
161 {
162         logoff(NULL, 3);        /* No IPC when server's already gone! */
163 }
164
165
166
167 /*
168  * catch SIGCONT to reset terminal modes when were are put back into the
169  * foreground.
170  */
171 void catch_sigcont(int signum)
172 {
173         sttybbs(SB_LAST);
174         signal(SIGCONT, catch_sigcont);
175 }
176
177
178 /* general purpose routines */
179
180 /* display a file */
181 void formout(CtdlIPC *ipc, char *name)
182 {
183         int r;                  /* IPC return code */
184         char buf[SIZ];
185         char *text = NULL;
186
187         r = CtdlIPCSystemMessage(ipc, name, &text, buf);
188         if (r / 100 != 1) {
189                 scr_printf("%s\n", buf);
190                 return;
191         }
192         if (text) {
193                 fmout(screenwidth, NULL, text, NULL,
194                       ((userflags & US_PAGINATOR) ? 1 : 0),
195                       screenheight, 1, 1);
196                 free(text);
197         }
198 }
199
200
201 void userlist(CtdlIPC *ipc, char *patn)
202 {
203         char buf[SIZ];
204         char fl[SIZ];
205         struct tm *tmbuf;
206         time_t lc;
207         int r;                          /* IPC response code */
208         char *listing = NULL;
209
210         r = CtdlIPCUserListing(ipc, &listing, buf);
211         if (r / 100 != 1) {
212                 pprintf("%s\n", buf);
213                 return;
214         }
215
216         pprintf("       User Name           Num  L  LastCall  Calls Posts\n");
217         pprintf("------------------------- ----- - ---------- ----- -----\n");
218         while (strlen(listing) > 0) {
219                 extract_token(buf, listing, 0, '\n');
220                 remove_token(listing, 0, '\n');
221
222                 if (sigcaught == 0) {
223                     extract(fl, buf, 0);
224                     if (pattern(fl, patn) >= 0) {
225                         pprintf("%-25s ", fl);
226                         pprintf("%5ld %d ", extract_long(buf, 2),
227                                extract_int(buf, 1));
228                         lc = extract_long(buf, 3);
229                         tmbuf = (struct tm *) localtime(&lc);
230                         pprintf("%02d/%02d/%04d ",
231                                (tmbuf->tm_mon + 1),
232                                tmbuf->tm_mday,
233                                (tmbuf->tm_year + 1900));
234                         pprintf("%5ld %5ld\n", extract_long(buf, 4), extract_long(buf, 5));
235                     }
236
237                 }
238         }
239         free(listing);
240         pprintf("\n");
241 }
242
243
244 /*
245  * grab assorted info about the user...
246  */
247 void load_user_info(char *params)
248 {
249         extract(fullname, params, 0);
250         axlevel = extract_int(params, 1);
251         timescalled = extract_int(params, 2);
252         posted = extract_int(params, 3);
253         userflags = extract_int(params, 4);
254         usernum = extract_long(params, 5);
255         lastcall = extract_long(params, 6);
256 }
257
258
259 /*
260  * Remove a room from the march list.  'floornum' is ignored unless
261  * 'roomname' is set to _FLOOR_, in which case all rooms on the requested
262  * floor will be removed from the march list.
263  */
264 void remove_march(char *roomname, int floornum)
265 {
266         struct march *mptr, *mptr2;
267
268         if (march == NULL)
269                 return;
270
271         if ((!strcasecmp(march->march_name, roomname))
272             || ((!strcasecmp(roomname, "_FLOOR_")) && (march->march_floor == floornum))) {
273                 mptr = march->next;
274                 free(march);
275                 march = mptr;
276                 return;
277         }
278         mptr2 = march;
279         for (mptr = march; mptr != NULL; mptr = mptr->next) {
280
281                 if ((!strcasecmp(mptr->march_name, roomname))
282                     || ((!strcasecmp(roomname, "_FLOOR_"))
283                         && (mptr->march_floor == floornum))) {
284
285                         mptr2->next = mptr->next;
286                         free(mptr);
287                         mptr = mptr2;
288                 } else {
289                         mptr2 = mptr;
290                 }
291         }
292 }
293
294
295 /*
296  * Locate the room on the march list which we most want to go to.  Each room
297  * is measured given a "weight" of preference based on various factors.
298  */
299 char *pop_march(int desired_floor)
300 {
301         static char TheRoom[ROOMNAMELEN];
302         int TheFloor = 0;
303         int TheOrder = 32767;
304         int TheWeight = 0;
305         int weight;
306         struct march *mptr = NULL;
307
308         strcpy(TheRoom, "_BASEROOM_");
309         if (march == NULL)
310                 return (TheRoom);
311
312         for (mptr = march; mptr != NULL; mptr = mptr->next) {
313                 weight = 0;
314                 if ((strcasecmp(mptr->march_name, "_BASEROOM_")))
315                         weight = weight + 10000;
316                 if (mptr->march_floor == desired_floor)
317                         weight = weight + 5000;
318
319                 weight = weight + ((128 - (mptr->march_floor)) * 128);
320                 weight = weight + (128 - (mptr->march_order));
321
322                 if (weight > TheWeight) {
323                         TheWeight = weight;
324                         strcpy(TheRoom, mptr->march_name);
325                         TheFloor = mptr->march_floor;
326                         TheOrder = mptr->march_order;
327                 }
328         }
329         return (TheRoom);
330 }
331
332
333 /*
334  * jump directly to a room
335  */
336 void dotgoto(CtdlIPC *ipc, char *towhere, int display_name, int fromungoto)
337 {
338         char aaa[SIZ], bbb[SIZ];
339         static long ls = 0L;
340         int newmailcount = 0;
341         int partial_match, best_match;
342         char from_floor;
343         int ugpos = uglistsize;
344         int r;                          /* IPC result code */
345         struct ctdlipcroom *room = NULL;
346
347         /* store ungoto information */
348         if (fromungoto == 0) {
349                 /* sloppy slide them all down, hey it's the client, who cares. :-) */
350                 if (uglistsize >= (UGLISTLEN-1)) {
351                         int lp;
352                         free (uglist[0]);
353                         for (lp = 0; lp < (UGLISTLEN-1); lp++) {
354                                 uglist[lp] = uglist[lp+1];
355                                 uglistlsn[lp] = uglistlsn[lp+1];
356                         }
357                         ugpos--;
358                 } else {
359                         uglistsize++;
360                 }
361         
362                 uglist[ugpos] = malloc(strlen(room_name)+1);
363                 strcpy(uglist[ugpos], room_name);
364                 uglistlsn[ugpos] = ls;
365         }
366       
367         /* first try an exact match */
368         r = CtdlIPCGotoRoom(ipc, towhere, "", &room, aaa);
369         if (r / 10 == 54) {
370                 newprompt("Enter room password: ", bbb, 9);
371                 r = CtdlIPCGotoRoom(ipc, towhere, bbb, &room, aaa);
372                 if (r / 10 == 54) {
373                         scr_printf("Wrong password.\n");
374                         return;
375                 }
376         }       
377
378         /*
379          * If a match is not found, try a partial match.
380          * Partial matches anywhere in the string carry a weight of 1,
381          * left-aligned matches carry a weight of 2.  Pick the room that
382          * has the highest-weighted match.
383          */
384         if (r / 100 != 2) {
385                 struct march *march = NULL;
386
387                 best_match = 0;
388                 strcpy(bbb, "");
389
390                 r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, AllFloors, &march, aaa);
391                 if (r / 100 == 1) {
392                         /* Run the roomlist; free the data as we go */
393                         struct march *mp = march;       /* Current */
394
395                         while (mp) {
396                                 partial_match = 0;
397                                 if (pattern(mp->march_name, towhere) >= 0) {
398                                         partial_match = 1;
399                                 }
400                                 if (!strncasecmp(mp->march_name, towhere, strlen(towhere))) {
401                                         partial_match = 2;
402                                 }
403                                 if (partial_match > best_match) {
404                                         strcpy(bbb, mp->march_name);
405                                         best_match = partial_match;
406                                 }
407                                 /* Both pointers are NULL at end of list */
408                                 march = mp->next;
409                                 free(mp);
410                                 mp = march;
411                         }
412                 }
413
414                 if (strlen(bbb) == 0) {
415                         scr_printf("No room '%s'.\n", towhere);
416                         return;
417                 }
418                 room = NULL;
419                 r = CtdlIPCGotoRoom(ipc, bbb, "", &room, aaa);
420         }
421         if (r / 100 != 1 && r / 100 != 2) {
422                 scr_printf("%s\n", aaa);
423                 return;
424         }
425         safestrncpy(room_name, room->RRname, ROOMNAMELEN);
426         room_flags = room->RRflags;
427         from_floor = curr_floor;
428         curr_floor = room->RRfloor;
429
430         remove_march(room_name, 0);
431         if (!strcasecmp(towhere, "_BASEROOM_"))
432                 remove_march(towhere, 0);
433         if (!room->RRunread)
434                 next_lazy_cmd = 5;      /* Don't read new if no new msgs */
435         if ((from_floor != curr_floor) && (display_name > 0) && (floor_mode == 1)) {
436                 if (floorlist[(int) curr_floor][0] == 0)
437                         load_floorlist(ipc);
438                 scr_printf("(Entering floor: %s)\n", &floorlist[(int) curr_floor][0]);
439         }
440         if (display_name == 1) {
441                 color(BRIGHT_WHITE);
442                 scr_printf("%s ", room_name);
443                 color(DIM_WHITE);
444                 scr_printf("- ");
445         }
446         if (display_name != 2) {
447                 color(BRIGHT_YELLOW);
448                 scr_printf("%d ", room->RRunread);
449                 color(DIM_WHITE);
450                 scr_printf("new of ");
451                 color(BRIGHT_YELLOW);
452                 scr_printf("%d ", room->RRtotal);
453                 color(DIM_WHITE);
454                 scr_printf("messages.\n");
455         }
456         highest_msg_read = room->RRlastread;
457         maxmsgnum = room->RRhighest;
458         is_mail = room->RRismailbox;
459         is_room_aide = room->RRaide;
460         ls = room->RRlastread;
461
462         /* read info file if necessary */
463         if (room->RRinfoupdated > 0)
464                 readinfo(ipc);
465
466         /* check for newly arrived mail if we can */
467         newmailcount = room->RRnewmail;
468         if (newmailcount > 0) {
469                 color(BRIGHT_RED);
470                 if (newmailcount == 1) {
471                         scr_printf("*** A new mail message has arrived.\n");
472                 }
473                 else {
474                         scr_printf("*** %d new mail messages have arrived.\n",
475                                         newmailcount);
476                 }
477                 color(DIM_WHITE);
478                 if (strlen(rc_gotmail_cmd) > 0) {
479                         system(rc_gotmail_cmd);
480                 }
481         }
482         status_line(serv_info.serv_humannode, serv_info.serv_bbs_city,
483                         room_name, secure, newmailcount);
484 }
485
486 /* Goto next room having unread messages.
487  * We want to skip over rooms that the user has already been to, and take the
488  * user back to the lobby when done.  The room we end up in is placed in
489  * newroom - which is set to 0 (the lobby) initially.
490  */
491 void gotonext(CtdlIPC *ipc)
492 {
493         char buf[SIZ];
494         struct march *mptr, *mptr2;
495         char next_room[ROOMNAMELEN];
496         int r;                          /* IPC response code */
497
498         /* Check to see if the march-mode list is already allocated.
499          * If it is, pop the first room off the list and go there.
500          */
501         if (march == NULL) {
502                 r = CtdlIPCKnownRooms(ipc, SubscribedRoomsWithNewMessages,
503                                         AllFloors, &march, buf);
504
505 /* add _BASEROOM_ to the end of the march list, so the user will end up
506  * in the system base room (usually the Lobby>) at the end of the loop
507  */
508                 mptr = (struct march *) malloc(sizeof(struct march));
509                 mptr->next = NULL;
510                 strcpy(mptr->march_name, "_BASEROOM_");
511                 if (march == NULL) {
512                         march = mptr;
513                 } else {
514                         mptr2 = march;
515                         while (mptr2->next != NULL)
516                                 mptr2 = mptr2->next;
517                         mptr2->next = mptr;
518                 }
519 /*
520  * ...and remove the room we're currently in, so a <G>oto doesn't make us
521  * walk around in circles
522  */
523                 remove_march(room_name, 0);
524         }
525         if (march != NULL) {
526                 strcpy(next_room, pop_march(curr_floor));
527         } else {
528                 strcpy(next_room, "_BASEROOM_");
529         }
530         remove_march(next_room, 0);
531         dotgoto(ipc, next_room, 1, 0);
532 }
533
534 /*
535  * forget all rooms on a given floor
536  */
537 void forget_all_rooms_on(CtdlIPC *ipc, int ffloor)
538 {
539         char buf[SIZ];
540         struct march *flist, *fptr;
541         struct ctdlipcroom *room;       /* Ignored */
542         int r;                          /* IPC response code */
543
544         scr_printf("Forgetting all rooms on %s...\r", &floorlist[ffloor][0]);
545         scr_flush();
546         r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, ffloor, &flist, buf);
547         if (r / 100 != 1) {
548                 scr_printf("%-72s\n", buf);
549                 return;
550         }
551         while (flist) {
552                 r = CtdlIPCGotoRoom(ipc, flist->march_name, "", &room, buf);
553                 if (r / 100 == 2) {
554                         r = CtdlIPCForgetRoom(ipc, buf);
555                 }
556                 fptr = flist;
557                 flist = flist->next;
558                 free(fptr);
559         }
560         scr_printf("%-72s\r", "");
561 }
562
563
564 /*
565  * routine called by gotofloor() to move to a new room on a new floor
566  */
567 void gf_toroom(CtdlIPC *ipc, char *towhere, int mode)
568 {
569         int floor_being_left;
570
571         floor_being_left = curr_floor;
572
573         if (mode == GF_GOTO) {  /* <;G>oto mode */
574                 updatels(ipc);
575                 dotgoto(ipc, towhere, 1, 0);
576         }
577         if (mode == GF_SKIP) {  /* <;S>kip mode */
578                 dotgoto(ipc, towhere, 1, 0);
579                 remove_march("_FLOOR_", floor_being_left);
580         }
581         if (mode == GF_ZAP) {   /* <;Z>ap mode */
582                 dotgoto(ipc, towhere, 1, 0);
583                 remove_march("_FLOOR_", floor_being_left);
584                 forget_all_rooms_on(ipc, floor_being_left);
585         }
586 }
587
588
589 /*
590  * go to a new floor
591  */
592 void gotofloor(CtdlIPC *ipc, char *towhere, int mode)
593 {
594         int a, tofloor;
595         int r;          /* IPC response code */
596         struct march *mptr;
597         char buf[SIZ], targ[SIZ];
598
599         if (floorlist[0][0] == 0)
600                 load_floorlist(ipc);
601         tofloor = (-1);
602         for (a = 0; a < 128; ++a)
603                 if (!strcasecmp(&floorlist[a][0], towhere))
604                         tofloor = a;
605
606         if (tofloor < 0) {
607                 for (a = 0; a < 128; ++a) {
608                         if (!strncasecmp(&floorlist[a][0], towhere, strlen(towhere))) {
609                                 tofloor = a;
610                         }
611                 }
612         }
613         if (tofloor < 0) {
614                 for (a = 0; a < 128; ++a)
615                         if (pattern(towhere, &floorlist[a][0]) > 0)
616                                 tofloor = a;
617         }
618         if (tofloor < 0) {
619                 scr_printf("No floor '%s'.\n", towhere);
620                 return;
621         }
622         for (mptr = march; mptr != NULL; mptr = mptr->next) {
623                 if ((mptr->march_floor) == tofloor)
624                         gf_toroom(ipc, mptr->march_name, mode);
625                 return;
626         }
627
628         strcpy(targ, "");
629         mptr = NULL;
630         r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, tofloor, &mptr, buf);
631         if (r / 100 == 1) {
632                 struct march *tmp = mptr;
633
634                 /* TODO: room order is being ignored? */
635                 if (mptr)
636                         strncpy(targ, mptr->march_name, ROOMNAMELEN);
637                 while (mptr) {
638                         tmp = mptr->next;
639                         free(mptr);
640                         mptr = tmp;
641                 }
642         }
643         if (strlen(targ) > 0) {
644                 gf_toroom(ipc, targ, mode);
645         } else {
646                 scr_printf("There are no rooms on '%s'.\n", &floorlist[tofloor][0]);
647         }
648 }
649
650
651 /*
652  * forget all rooms on current floor
653  */
654 void forget_this_floor(CtdlIPC *ipc)
655 {
656
657         if (curr_floor == 0) {
658                 scr_printf("Can't forget this floor.\n");
659                 return;
660         }
661         if (floorlist[0][0] == 0)
662                 load_floorlist(ipc);
663         scr_printf("Are you sure you want to forget all rooms on %s? ",
664                &floorlist[(int) curr_floor][0]);
665         if (yesno() == 0)
666                 return;
667
668         gf_toroom(ipc, "_BASEROOM_", GF_ZAP);
669 }
670
671
672 /* 
673  * Figure out the physical screen dimensions, if we can
674  * WARNING:  this is now called from a signal handler!
675  */
676 void check_screen_dims(void)
677 {
678 #ifdef TIOCGWINSZ
679         struct {
680                 unsigned short height;  /* rows */
681                 unsigned short width;   /* columns */
682                 unsigned short xpixels;
683                 unsigned short ypixels;         /* pixels */
684         } xwinsz;
685
686         if (have_xterm) {       /* dynamically size screen if on an xterm */
687                 if (ioctl(0, TIOCGWINSZ, &xwinsz) == 0) {
688                         if (xwinsz.height)
689                                 screenheight = is_curses_enabled() ? (int)xwinsz.height - 1 : (int) xwinsz.height;
690                         if (xwinsz.width)
691                                 screenwidth = (int) xwinsz.width;
692                 }
693         }
694 #endif
695 }
696
697
698 /*
699  * set floor mode depending on client, server, and user settings
700  */
701 void set_floor_mode(void)
702 {
703         if (serv_info.serv_ok_floors == 0) {
704                 floor_mode = 0; /* Don't use floors if the server */
705         }
706         /* doesn't support them!          */
707         else {
708                 if (rc_floor_mode == RC_NO) {   /* never use floors */
709                         floor_mode = 0;
710                 }
711                 if (rc_floor_mode == RC_YES) {  /* always use floors */
712                         floor_mode = 1;
713                 }
714                 if (rc_floor_mode == RC_DEFAULT) {      /* user choice */
715                         floor_mode = ((userflags & US_FLOORS) ? 1 : 0);
716                 }
717         }
718 }
719
720 /*
721  * Set or change the user's password
722  */
723 int set_password(CtdlIPC *ipc)
724 {
725         char pass1[20];
726         char pass2[20];
727         char buf[SIZ];
728
729         if (strlen(rc_password) > 0) {
730                 strcpy(pass1, rc_password);
731                 strcpy(pass2, rc_password);
732         } else {
733                 IFNEXPERT formout(ipc, "changepw");
734                 newprompt("Enter a new password: ", pass1, -19);
735                 newprompt("Enter it again to confirm: ", pass2, -19);
736         }
737         strproc(pass1);
738         strproc(pass2);
739         if (!strcasecmp(pass1, pass2)) {
740                 CtdlIPCChangePassword(ipc, pass1, buf);
741                 scr_printf("%s\n", buf);
742                 offer_to_remember_password(ipc, hostbuf, portbuf, fullname, pass1);
743                 return (0);
744         } else {
745                 scr_printf("*** They don't match... try again.\n");
746                 return (1);
747         }
748 }
749
750
751
752 /*
753  * get info about the server we've connected to
754  */
755 void get_serv_info(CtdlIPC *ipc, char *supplied_hostname)
756 {
757         char buf[SIZ];
758
759         CtdlIPCServerInfo(ipc, &serv_info, buf);
760
761         /* be nice and identify ourself to the server */
762         CtdlIPCIdentifySoftware(ipc, SERVER_TYPE, 0, REV_LEVEL,
763                  (ipc->isLocal ? "local" : CITADEL),
764                  (supplied_hostname) ? supplied_hostname : 
765                  /* Look up the , in the bible if you're confused */
766                  (locate_host(buf), buf), buf);
767
768         /* Tell the server what our preferred content formats are */
769         if ((CtdlIPCSpecifyPreferredFormats(ipc, buf, "text/html|text/plain") / 100 )== 2) {
770                 can_do_msg4 = 1;
771         }
772 }
773
774
775
776 /*
777  * Record compare function for SortOnlineUsers()
778  */
779 int idlecmp(const void *rec1, const void *rec2) {
780         time_t i1, i2;
781
782         i1 = extract_long(rec1, 5);
783         i2 = extract_long(rec2, 5);
784
785         if (i1 < i2) return(1);
786         if (i1 > i2) return(-1);
787         return(0);
788 }
789
790
791 /*
792  * Sort the list of online users by idle time.
793  * This function frees the supplied buffer, and returns a new one
794  * to the caller.  The caller is responsible for freeing the returned buffer.
795  */
796 char *SortOnlineUsers(char *listing) {
797         int rows;
798         char *sortbuf;
799         char *retbuf;
800         char buf[SIZ];
801         int i;
802
803         rows = num_tokens(listing, '\n');
804         sortbuf = malloc(rows * SIZ);
805         if (sortbuf == NULL) return(listing);
806         retbuf = malloc(rows * SIZ);
807         if (retbuf == NULL) {
808                 free(sortbuf);
809                 return(listing);
810         }
811
812         /* Copy the list into a fixed-record-size array for sorting */
813         for (i=0; i<rows; ++i) {
814                 memset(buf, 0, SIZ);
815                 extract_token(buf, listing, i, '\n');
816                 memcpy(&sortbuf[i*SIZ], buf, SIZ);
817         }
818
819         /* Do the sort */
820         qsort(sortbuf, rows, SIZ, idlecmp);
821
822         /* Copy back to a \n delimited list */
823         strcpy(retbuf, "");
824         for (i=0; i<rows; ++i) {
825                 strcat(retbuf, &sortbuf[i*SIZ]);
826                 if (i<(rows-1)) strcat(retbuf, "\n");
827         }
828         return(retbuf);
829 }
830
831
832
833 /*
834  * Display list of users currently logged on to the server
835  */
836 void who_is_online(CtdlIPC *ipc, int longlist)
837 {
838         char buf[SIZ], username[SIZ], roomname[SIZ], fromhost[SIZ];
839         char flags[SIZ];
840         char actual_user[SIZ], actual_room[SIZ], actual_host[SIZ];
841         char clientsoft[SIZ];
842         time_t timenow = 0;
843         time_t idletime, idlehours, idlemins, idlesecs;
844         int last_session = (-1);
845         int skipidle = 0;
846         char *listing = NULL;
847         int r;                          /* IPC response code */
848     
849         if (longlist == 2) {
850                 longlist = 0;
851                 skipidle = 1;
852         }
853
854         if (!longlist) {
855                 color(BRIGHT_WHITE);
856                 pprintf("           User Name               Room           Idle        From host\n");
857                 color(DIM_WHITE);
858                 pprintf("   ------------------------- -------------------- ---- ------------------------\n");
859         }
860         r = CtdlIPCOnlineUsers(ipc, &listing, &timenow, buf);
861         listing = SortOnlineUsers(listing);
862         if (r / 100 == 1) {
863                 while (strlen(listing) > 0) {
864                         int isidle = 0;
865                         
866                         /* Get another line */
867                         extract_token(buf, listing, 0, '\n');
868                         remove_token(listing, 0, '\n');
869
870                         extract(username, buf, 1);
871                         extract(roomname, buf, 2);
872                         extract(fromhost, buf, 3);
873                         extract(clientsoft, buf, 4);
874                         extract(flags, buf, 7);
875
876                         idletime = timenow - extract_long(buf, 5);
877                         idlehours = idletime / 3600;
878                         idlemins = (idletime - (idlehours * 3600)) / 60;
879                         idlesecs = (idletime - (idlehours * 3600) - (idlemins * 60));
880
881                         if (idletime > rc_idle_threshold) {
882                                 /*
883                                 while (strlen(roomname) < 20) {
884                                         strcat(roomname, " ");
885                                 }
886                                 strcpy(&roomname[14], "[idle]");
887                                 */
888                                 if (skipidle)
889                                         isidle = 1;
890                         }
891
892                         if (longlist) {
893                                 extract(actual_user, buf, 8);
894                                 extract(actual_room, buf, 9);
895                                 extract(actual_host, buf, 10);
896
897                                 pprintf("  Flags: %s\n", flags);
898                                 pprintf("Session: %d\n", extract_int(buf, 0));
899                                 pprintf("   Name: %s\n", username);
900                                 pprintf("In room: %s\n", roomname);
901                                 pprintf("   Host: %s\n", fromhost);
902                                 pprintf(" Client: %s\n", clientsoft);
903                                 pprintf("   Idle: %ld:%02ld:%02ld\n",
904                                         (long) idlehours,
905                                         (long) idlemins,
906                                         (long) idlesecs);
907
908                                 if ( (strlen(actual_user)+strlen(actual_room)+strlen(actual_host)) > 0) {
909                                         pprintf("(really ");
910                                         if (strlen(actual_user)>0) pprintf("<%s> ", actual_user);
911                                         if (strlen(actual_room)>0) pprintf("in <%s> ", actual_room);
912                                         if (strlen(actual_host)>0) pprintf("from <%s> ", actual_host);
913                                         pprintf(")\n");
914                                 }
915                                 pprintf("\n");
916
917                         } else {
918                     if (isidle == 0) {
919                                 if (extract_int(buf, 0) == last_session) {
920                                         pprintf("        ");
921                                 } else {
922                                         color(BRIGHT_MAGENTA);
923                                         pprintf("%-3s", flags);
924                                 }
925                                 last_session = extract_int(buf, 0);
926                                 color(BRIGHT_CYAN);
927                                 pprintf("%-25s ", username);
928                                 color(BRIGHT_MAGENTA);
929                                 roomname[20] = 0;
930                                 pprintf("%-20s ", roomname);
931                                 if (idletime > rc_idle_threshold) {
932                                         /* over 1000d, must be gone fishing */
933                                         if (idlehours > 23999) {
934                                                 pprintf("fish");
935                                         /* over 10 days */
936                                         } else if (idlehours > 239) {
937                                                 pprintf("%3ldd",
938                                                         idlehours / 24);
939                                         /* over 10 hours */
940                                         } else if (idlehours > 9) {
941                                                 pprintf("%1ldd%02ld",
942                                                         idlehours / 24,
943                                                         idlehours % 24);
944                                         /* less than 10 hours */
945                                         } else {
946                                                 pprintf("%1ld:%02ld",
947                                                         idlehours, idlemins);
948                                         }
949                                 }
950                                 else {
951                                         pprintf("    ");
952                                 }
953                                 pprintf(" ");
954                                 color(BRIGHT_CYAN);
955                                 fromhost[24] = '\0';
956                                 pprintf("%-24s\n", fromhost);
957                                 color(DIM_WHITE);
958                         }
959                         }
960                 }
961         }
962         free(listing);
963 }
964
965 void enternew(CtdlIPC *ipc, char *desc, char *buf, int maxlen)
966 {
967         char bbb[128];
968         snprintf(bbb, sizeof bbb, "Enter in your new %s: ", desc);
969         newprompt(bbb, buf, maxlen);
970 }
971
972
973
974 int shift(int argc, char **argv, int start, int count) {
975         int i;
976
977         for (i=start; i<(argc-count); ++i) {
978                 argv[i] = argv[i+count];
979         }
980         argc = argc - count;
981         return argc;
982 }
983
984 static void statusHook(char *s) {
985         sln_printf(s);
986         sln_flush();
987 }
988
989 /*
990  * main
991  */
992 int main(int argc, char **argv)
993 {
994         int a, b, mcmd;
995         char aaa[100], bbb[100];/* general purpose variables */
996         char argbuf[32];        /* command line buf */
997         char nonce[NONCE_SIZE];
998         char *telnet_client_host = NULL;
999         char *sptr, *sptr2;     /* USed to extract the nonce */
1000         char hexstring[MD5_HEXSTRING_SIZE];
1001         int stored_password = 0;
1002         char password[SIZ];
1003         struct ctdlipcmisc chek;
1004         struct ctdluser *myself = NULL;
1005         CtdlIPC* ipc;                   /* Our server connection */
1006         int r;                          /* IPC result code */
1007
1008         setIPCDeathHook(screen_delete);
1009         setIPCErrorPrintf(err_printf);
1010         setCryptoStatusHook(statusHook);
1011         
1012         /* Permissions sanity check - don't run citadel setuid/setgid */
1013         if (getuid() != geteuid()) {
1014                 err_printf("Please do not run citadel setuid!\n");
1015                 logoff(NULL, 3);
1016         } else if (getgid() != getegid()) {
1017                 err_printf("Please do not run citadel setgid!\n");
1018                 logoff(NULL, 3);
1019         }
1020
1021         sttybbs(SB_SAVE);       /* Store the old terminal parameters */
1022         load_command_set();     /* parse the citadel.rc file */
1023         sttybbs(SB_NO_INTR);    /* Install the new ones */
1024         signal(SIGHUP, dropcarr);       /* Cleanup gracefully if carrier is dropped */
1025         signal(SIGTERM, dropcarr);      /* Cleanup gracefully if terminated */
1026         signal(SIGCONT, catch_sigcont); /* Catch SIGCONT so we can reset terminal */
1027 #ifdef SIGWINCH
1028         signal(SIGWINCH, scr_winch);    /* Window resize signal */
1029 #endif
1030
1031 #ifdef HAVE_OPENSSL
1032         arg_encrypt = RC_DEFAULT;
1033 #endif
1034 #if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
1035         arg_screen = RC_DEFAULT;
1036 #endif
1037
1038         /* 
1039          * Handle command line options as if we were called like /bin/login
1040          * (i.e. from in.telnetd)
1041          */
1042         for (a=0; a<argc; ++a) {
1043                 if ((argc > a+1) && (!strcmp(argv[a], "-h")) ) {
1044                         telnet_client_host = argv[a+1];
1045                         argc = shift(argc, argv, a, 2);
1046                 }
1047                 if (!strcmp(argv[a], "-x")) {
1048 #ifdef HAVE_OPENSSL
1049                         arg_encrypt = RC_NO;
1050 #endif
1051                         argc = shift(argc, argv, a, 1);
1052                 }
1053                 if (!strcmp(argv[a], "-X")) {
1054 #ifdef HAVE_OPENSSL
1055                         arg_encrypt = RC_YES;
1056                         argc = shift(argc, argv, a, 1);
1057 #else
1058                         fprintf(stderr, "Not compiled with encryption support");
1059                         return 1;
1060 #endif
1061                 }
1062                 if (!strcmp(argv[a], "-s")) {
1063 #if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
1064                         arg_screen = RC_NO;
1065 #endif
1066                         argc = shift(argc, argv, a, 1);
1067                 }
1068                 if (!strcmp(argv[a], "-S")) {
1069 #if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
1070                         arg_screen = RC_YES;
1071 #endif
1072                         argc = shift(argc, argv, a, 1);
1073                 }
1074                 if (!strcmp(argv[a], "-p")) {
1075                         struct stat st;
1076                 
1077                         if (chdir(BBSDIR) < 0) {
1078                                 perror("can't change to " BBSDIR);
1079                                 logoff(NULL, 3);
1080                         }
1081
1082                         /*
1083                          * Drop privileges if necessary. We stat
1084                          * citadel.config to get the uid/gid since it's
1085                          * guaranteed to have the uid/gid we want.
1086                          */
1087                         if (!getuid() || !getgid()) {
1088                                 if (stat(BBSDIR "/citadel.config", &st) < 0) {
1089                                         perror("couldn't stat citadel.config");
1090                                         logoff(NULL, 3);
1091                                 }
1092                                 if (!getgid() && (setgid(st.st_gid) < 0)) {
1093                                         perror("couldn't change gid");
1094                                         logoff(NULL, 3);
1095                                 }
1096                                 if (!getuid() && (setuid(st.st_uid) < 0)) {
1097                                         perror("couldn't change uid");
1098                                         logoff(NULL, 3);
1099                                 }
1100                                 /*
1101                                   scr_printf("Privileges changed to uid %d gid %d\n",
1102                                   getuid(), getgid());
1103                                 */
1104                         }
1105                         argc = shift(argc, argv, a, 1);
1106                 }
1107         }
1108
1109         screen_new();
1110
1111 #ifdef __CYGWIN__
1112         newprompt("Connect to (return for local server): ", hostbuf, 64);
1113 #endif
1114
1115         sln_printf("Attaching to server... \r");
1116         sln_flush();
1117         ipc = CtdlIPC_new(argc, argv, hostbuf, portbuf);
1118         if (!ipc) {
1119                 screen_delete();
1120                 error_printf("Can't connect: %s\n", strerror(errno));
1121                 logoff(NULL, 3);
1122         }
1123 #if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES)
1124         CtdlIPC_SetNetworkStatusCallback(ipc, wait_indicator);
1125 #endif
1126         ipc_for_signal_handlers = ipc;  /* KLUDGE cover your eyes */
1127
1128         CtdlIPC_getline(ipc, aaa);
1129         if (aaa[0] != '2') {
1130                 scr_printf("%s\n", &aaa[4]);
1131                 logoff(ipc, atoi(aaa));
1132         }
1133
1134         /* If there is a [nonce] at the end, put the nonce in <nonce>, else nonce
1135          * is zeroized.
1136          */
1137         
1138         if ((sptr = strchr(aaa, '<')) == NULL)
1139                 {
1140                         nonce[0] = '\0';
1141                 }
1142         else
1143                 {
1144                         if ((sptr2 = strchr(sptr, '>')) == NULL)
1145                                 {
1146                                         nonce[0] = '\0';
1147                                 }
1148                         else
1149                                 {
1150                                         sptr2++;
1151                                         *sptr2 = '\0';
1152                                         strncpy(nonce, sptr, NONCE_SIZE);
1153                                 }
1154                 }
1155
1156 #ifdef HAVE_OPENSSL
1157         /* Evaluate encryption preferences */
1158         if (arg_encrypt != RC_NO && rc_encrypt != RC_NO) {
1159                 if (!ipc->isLocal || arg_encrypt == RC_YES || rc_encrypt == RC_YES) {
1160                         secure = (CtdlIPCStartEncryption(ipc, aaa) / 100 == 2) ? 1 : 0;
1161                         if (!secure)
1162                                 error_printf("Can't encrypt: %s\n", aaa);
1163                 }
1164         }
1165 #endif
1166
1167         get_serv_info(ipc, telnet_client_host);
1168         scr_printf("%-24s\n%s\n%s\n", serv_info.serv_software, serv_info.serv_humannode,
1169                    serv_info.serv_bbs_city);
1170         scr_flush();
1171
1172         status_line(serv_info.serv_humannode, serv_info.serv_bbs_city, NULL,
1173                     secure, -1);
1174
1175         screenwidth = 80;       /* default screen dimensions */
1176         screenheight = 24;
1177         
1178         scr_printf(" pause    next    stop\n");
1179         scr_printf(" ctrl-s  ctrl-o  ctrl-c\n\n");
1180         formout(ipc, "hello");  /* print the opening greeting */
1181         scr_printf("\n");
1182
1183  GSTA:  /* See if we have a username and password on disk */
1184         if (rc_remember_passwords) {
1185                 get_stored_password(hostbuf, portbuf, fullname, password);
1186                 if (strlen(fullname) > 0) {
1187                         r = CtdlIPCTryLogin(ipc, fullname, aaa);
1188                         if (r / 100 == 3) {
1189                                 if (*nonce) {
1190                                         r = CtdlIPCTryApopPassword(ipc, make_apop_string(password, nonce, hexstring, sizeof hexstring), aaa);
1191                                 } else {
1192                                         r = CtdlIPCTryPassword(ipc, password, aaa);
1193                                 }
1194                         }
1195
1196                         if (r / 100 == 2) {
1197                                 load_user_info(aaa);
1198                                 stored_password = 1;
1199                                 goto PWOK;
1200                         } else {
1201                                 set_stored_password(hostbuf, portbuf, "", "");
1202                         }
1203                 }
1204         }
1205
1206         termn8 = 0;
1207         newnow = 0;
1208         do {
1209                 if (strlen(rc_username) > 0) {
1210                         strcpy(fullname, rc_username);
1211                 } else {
1212                         newprompt("Enter your name: ", fullname, 29);
1213                 }
1214                 strproc(fullname);
1215                 if (!strcasecmp(fullname, "new")) {     /* just in case */
1216                         scr_printf("Please enter the name you wish to log in with.\n");
1217                 }
1218         } while (
1219                  (!strcasecmp(fullname, "bbs"))
1220                  || (!strcasecmp(fullname, "new"))
1221                  || (strlen(fullname) == 0));
1222
1223         if (!strcasecmp(fullname, "off")) {
1224                 mcmd = 29;
1225                 goto TERMN8;
1226         }
1227         /* sign on to the server */
1228         r = CtdlIPCTryLogin(ipc, fullname, aaa);
1229         if (r / 100 != 3)
1230                 goto NEWUSR;
1231
1232         /* password authentication */
1233         if (strlen(rc_password) > 0) {
1234                 strcpy(password, rc_password);
1235         } else {
1236                 newprompt("\rPlease enter your password: ", password, -19);
1237         }
1238         strproc(password);
1239
1240         if (*nonce) {
1241                 r = CtdlIPCTryApopPassword(ipc, make_apop_string(password, nonce, hexstring, sizeof hexstring), aaa);
1242         } else {
1243                 r = CtdlIPCTryPassword(ipc, password, aaa);
1244         }
1245         
1246         if (r / 100 == 2) {
1247                 load_user_info(aaa);
1248                 offer_to_remember_password(ipc, hostbuf, portbuf,
1249                                            fullname, password);
1250                 goto PWOK;
1251         }
1252         scr_printf("<< wrong password >>\n");
1253         if (strlen(rc_password) > 0)
1254                 logoff(ipc, 2);
1255         goto GSTA;
1256
1257 NEWUSR: if (strlen(rc_password) == 0) {
1258                 scr_printf("No record. Enter as new user? ");
1259                 if (yesno() == 0)
1260                         goto GSTA;
1261         }
1262
1263         r = CtdlIPCCreateUser(ipc, fullname, 1, aaa);
1264         if (r / 100 != 2) {
1265                 scr_printf("%s\n", aaa);
1266                 goto GSTA;
1267         }
1268         load_user_info(aaa);
1269
1270         while (set_password(ipc) != 0);
1271         newnow = 1;
1272
1273         enter_config(ipc, 1);
1274
1275  PWOK:
1276         /* Switch color support on or off if we're in user mode */
1277         if (rc_ansi_color == 3) {
1278                 if (userflags & US_COLOR)
1279                         enable_color = 1;
1280                 else
1281                         enable_color = 0;
1282         }
1283
1284         color(BRIGHT_WHITE);
1285         scr_printf("\n%s\nAccess level: %d (%s)\n"
1286                    "User #%ld / Login #%d",
1287                    fullname, axlevel, axdefs[(int) axlevel],
1288                    usernum, timescalled);
1289         if (lastcall > 0L) {
1290                 scr_printf(" / Last login: %s",
1291                            asctime(localtime(&lastcall)));
1292         }
1293         scr_printf("\n");
1294
1295         r = CtdlIPCMiscCheck(ipc, &chek, aaa);
1296         if (r / 100 == 2) {
1297                 b = chek.newmail;
1298                 if (b > 0) {
1299                         color(BRIGHT_RED);
1300                         if (b == 1)
1301                                 scr_printf("*** You have a new private message in Mail>\n");
1302                         if (b > 1)
1303                                 scr_printf("*** You have %d new private messages in Mail>\n", b);
1304                         color(DIM_WHITE);
1305                         if (strlen(rc_gotmail_cmd) > 0) {
1306                                 system(rc_gotmail_cmd);
1307                         }
1308                 }
1309                 if ((axlevel >= 6) && (chek.needvalid > 0)) {
1310                         scr_printf("*** Users need validation\n");
1311                 }
1312                 if (chek.needregis > 0) {
1313                         scr_printf("*** Please register.\n");
1314                         formout(ipc, "register");
1315                         entregis(ipc);
1316                 }
1317         }
1318         /* Make up some temporary filenames for use in various parts of the
1319          * program.  Don't mess with these once they've been set, because we
1320          * will be unlinking them later on in the program and we don't
1321          * want to delete something that we didn't create. */
1322         snprintf(temp, sizeof temp, tmpnam(NULL));
1323         snprintf(temp2, sizeof temp2, tmpnam(NULL));
1324         snprintf(tempdir, sizeof tempdir, tmpnam(NULL));
1325
1326         /* Get screen dimensions.  First we go to a default of 80x24.  Then
1327          * we try to get the user's actual screen dimensions off the server.
1328          * However, if we're running on an xterm, all this stuff is
1329          * irrelevant because we're going to dynamically size the screen
1330          * during the session.
1331          */
1332         screenwidth = 80;
1333         screenheight = 24;
1334         r = CtdlIPCGetConfig(ipc, &myself, aaa);
1335         if (r == 2) {
1336                 screenwidth = myself->USscreenwidth;
1337                 screenheight = myself->USscreenheight;
1338         }
1339         if (getenv("TERM") != NULL)
1340                 if (!strcmp(getenv("TERM"), "xterm")) {
1341                         have_xterm = 1;
1342                 }
1343 #ifdef TIOCGWINSZ
1344         check_screen_dims();
1345 #endif
1346
1347         set_floor_mode();
1348
1349         /* Enter the lobby */
1350         dotgoto(ipc, "_BASEROOM_", 1, 0);
1351
1352         /* Main loop for the system... user is logged in. */
1353         uglistsize = 0;
1354
1355         if (newnow == 1)
1356                 readmsgs(ipc, LastMessages, ReadForward, 5);
1357         else
1358                 readmsgs(ipc, NewMessages, ReadForward, 0);
1359
1360         /* MAIN COMMAND LOOP */
1361         do {
1362                 mcmd = getcmd(ipc, argbuf);     /* Get keyboard command */
1363
1364 #ifdef TIOCGWINSZ
1365                 check_screen_dims();            /* if xterm, get screen size */
1366 #endif
1367
1368                 if (termn8 == 0)
1369                         switch (mcmd) {
1370                         case 1:
1371                                 formout(ipc, "help");
1372                                 break;
1373                         case 4:
1374                                 entmsg(ipc, 0, 0);
1375                                 break;
1376                         case 36:
1377                                 entmsg(ipc, 0, 1);
1378                                 break;
1379                         case 46:
1380                                 entmsg(ipc, 0, 2);
1381                                 break;
1382                         case 78:
1383                                 newprompt("What do you want your username to be? ", aaa, 32);
1384                                 snprintf(bbb, sizeof bbb, "ENT0 2|0|0|0|%s", aaa);
1385                                 CtdlIPC_putline(ipc, bbb);
1386                                 CtdlIPC_getline(ipc, aaa);
1387                                 if (strncmp("200", aaa, 3))
1388                                         scr_printf("\n%s\n", aaa);
1389                                 else
1390                                         entmsg(ipc, 0, 0);
1391                                 break;
1392                         case 5:                         /* <G>oto */
1393                                 updatels(ipc);
1394                                 gotonext(ipc);
1395                                 break;
1396                         case 47:                        /* <A>bandon */
1397                                 if (!rc_alt_semantics) {
1398                                         updatelsa(ipc);
1399                                 }
1400                                 gotonext(ipc);
1401                                 break;
1402                         case 90:                        /* <.A>bandon */
1403                                 if (!rc_alt_semantics)
1404                                         updatelsa(ipc);
1405                                 dotgoto(ipc, argbuf, 0, 0);
1406                                 break;
1407                         case 58:                        /* <M>ail */
1408                                 updatelsa(ipc);
1409                                 dotgoto(ipc, "_MAIL_", 1, 0);
1410                                 break;
1411                         case 20:
1412                                 if (strlen(argbuf) > 0) {
1413                                         updatels(ipc);
1414                                         dotgoto(ipc, argbuf, 0, 0);
1415                                 }
1416                                 break;
1417                         case 52:
1418                                 if (strlen(argbuf) > 0) {
1419                                         if (rc_alt_semantics) {
1420                                                 updatelsa(ipc);
1421                                         }
1422                                         dotgoto(ipc, argbuf, 0, 0);
1423                                 }
1424                                 break;
1425                         case 95: /* what exactly is the numbering scheme supposed to be anyway? */
1426                                 dotungoto(ipc, argbuf);
1427                                 break;
1428                         case 10:
1429                                 readmsgs(ipc, AllMessages, ReadForward, 0);
1430                                 break;
1431                         case 9:
1432                                 readmsgs(ipc, LastMessages, ReadForward, 5);
1433                                 break;
1434                         case 13:
1435                                 readmsgs(ipc, NewMessages, ReadForward, 0);
1436                                 break;
1437                         case 11:
1438                                 readmsgs(ipc, AllMessages, ReadReverse, 0);
1439                                 break;
1440                         case 12:
1441                                 readmsgs(ipc, OldMessages, ReadReverse, 0);
1442                                 break;
1443                         case 71:
1444                                 readmsgs(ipc, LastMessages, ReadForward,
1445                                                 atoi(argbuf));
1446                                 break;
1447                         case 7:
1448                                 forget(ipc);
1449                                 break;
1450                         case 18:
1451                                 subshell();
1452                                 break;
1453                         case 38:
1454                                 updatels(ipc);
1455                                 entroom(ipc);
1456                                 break;
1457                         case 22:
1458                                 killroom(ipc);
1459                                 break;
1460                         case 32:
1461                                 userlist(ipc, argbuf);
1462                                 break;
1463                         case 27:
1464                                 invite(ipc);
1465                                 break;
1466                         case 28:
1467                                 kickout(ipc);
1468                                 break;
1469                         case 23:
1470                                 editthisroom(ipc);
1471                                 break;
1472                         case 14:
1473                                 roomdir(ipc);
1474                                 break;
1475                         case 33:
1476                                 download(ipc, 0);
1477                                 break;
1478                         case 34:
1479                                 download(ipc, 1);
1480                                 break;
1481                         case 31:
1482                                 download(ipc, 2);
1483                                 break;
1484                         case 43:
1485                                 download(ipc, 3);
1486                                 break;
1487                         case 45:
1488                                 download(ipc, 4);
1489                                 break;
1490                         case 55:
1491                                 download(ipc, 5);
1492                                 break;
1493                         case 39:
1494                                 upload(ipc, 0);
1495                                 break;
1496                         case 40:
1497                                 upload(ipc, 1);
1498                                 break;
1499                         case 42:
1500                                 upload(ipc, 2);
1501                                 break;
1502                         case 44:
1503                                 upload(ipc, 3);
1504                                 break;
1505                         case 57:
1506                                 cli_upload(ipc);
1507                                 break;
1508                         case 16:
1509                                 ungoto(ipc);
1510                                 break;
1511                         case 24:
1512                                 whoknows(ipc);
1513                                 break;
1514                         case 26:
1515                                 validate(ipc);
1516                                 break;
1517                         case 29:
1518                         case 30:
1519                                 if (!rc_alt_semantics) {
1520                                         updatels(ipc);
1521                                 }
1522                                 termn8 = 1;
1523                                 break;
1524                         case 48:
1525                                 enterinfo(ipc);
1526                                 break;
1527                         case 49:
1528                                 readinfo(ipc);
1529                                 break;
1530                         case 72:
1531                                 cli_image_upload(ipc, "_userpic_");
1532                                 break;
1533                         case 73:
1534                                 cli_image_upload(ipc, "_roompic_");
1535                                 break;
1536
1537                         case 74:
1538                                 snprintf(aaa, sizeof aaa, "_floorpic_|%d", curr_floor);
1539                                 cli_image_upload(ipc, aaa);
1540                                 break;
1541
1542                         case 75:
1543                                 enternew(ipc, "roomname", aaa, 20);
1544                                 r = CtdlIPCChangeRoomname(ipc, aaa, bbb);
1545                                 if (r / 100 != 2)
1546                                         scr_printf("\n%s\n", aaa);
1547                                 break;
1548                         case 76:
1549                                 enternew(ipc, "hostname", aaa, 25);
1550                                 r = CtdlIPCChangeHostname(ipc, aaa, bbb);
1551                                 if (r / 100 != 2)
1552                                         scr_printf("\n%s\n", aaa);
1553                                 break;
1554                         case 77:
1555                                 enternew(ipc, "username", aaa, 32);
1556                                 r = CtdlIPCChangeUsername(ipc, aaa, bbb);
1557                                 if (r / 100 != 2)
1558                                         scr_printf("\n%s\n", aaa);
1559                                 break;
1560
1561                         case 35:
1562                                 set_password(ipc);
1563                                 break;
1564
1565                         case 21:
1566                                 if (argbuf[0] == 0)
1567                                         strcpy(aaa, "?");
1568                                 display_help(ipc, argbuf);
1569                                 break;
1570
1571                         case 41:
1572                                 formout(ipc, "register");
1573                                 entregis(ipc);
1574                                 break;
1575
1576                         case 15:
1577                                 scr_printf("Are you sure (y/n)? ");
1578                                 if (yesno() == 1) {
1579                                         if (!rc_alt_semantics)
1580                                                 updatels(ipc);
1581                                         a = 0;
1582                                         termn8 = 1;
1583                                 }
1584                                 break;
1585
1586                         case 85:
1587                                 scr_printf("All users will be disconnected!  "
1588                                            "Really terminate the server? ");
1589                                 if (yesno() == 1) {
1590                                         if (!rc_alt_semantics)
1591                                                 updatels(ipc);
1592                                         r = CtdlIPCTerminateServerNow(ipc, aaa);
1593                                         scr_printf("%s\n", aaa);
1594                                         if (r / 100 == 2) {
1595                                                 a = 0;
1596                                                 termn8 = 1;
1597                                         }
1598                                 }
1599                                 break;
1600
1601                         case 86:
1602                                 scr_printf("Do you really want to schedule a "
1603                                            "server shutdown? ");
1604                                 if (yesno() == 1) {
1605                                         r = CtdlIPCTerminateServerScheduled(ipc, 1, aaa);
1606                                         if (r / 100 == 2) {
1607                                                 if (atoi(aaa)) {
1608                                                         scr_printf(
1609                                                                    "The Citadel server will terminate when all users are logged off.\n"
1610                                                                    );
1611                                                 } else {
1612                                                         scr_printf(
1613                                                                    "The Citadel server will not terminate.\n"
1614                                                                    );
1615                                                 }
1616                                         }
1617                                 }
1618                                 break;
1619
1620                         case 87:
1621                                 network_config_management(ipc, "listrecp",
1622                                                           "Message-by-message mailing list recipients");
1623                                 break;
1624
1625                         case 94:
1626                                 network_config_management(ipc, "digestrecp",
1627                                                           "Digest mailing list recipients");
1628                                 break;
1629
1630                         case 89:
1631                                 network_config_management(ipc, "ignet_push_share",
1632                                                           "Nodes with which we share this room");
1633                                 break;
1634
1635                         case 88:
1636                                 do_ignet_configuration(ipc);
1637                                 break;
1638
1639                         case 92:
1640                                 do_filterlist_configuration(ipc);
1641                                 break;
1642
1643                         case 6:
1644                                 if (rc_alt_semantics) {
1645                                         updatelsa(ipc);
1646                                 }
1647                                 gotonext(ipc);
1648                                 break;
1649
1650                         case 3:
1651                                 chatmode(ipc);
1652                                 break;
1653
1654                         case 2:
1655                                 if (ipc->isLocal) {
1656                                         screen_reset();
1657                                         sttybbs(SB_RESTORE);
1658                                         snprintf(aaa, sizeof aaa, "USERNAME=\042%s\042; export USERNAME;"
1659                                                  "exec ./subsystem %ld %d %d", fullname,
1660                                                  usernum, screenwidth, axlevel);
1661                                         ka_system(aaa);
1662                                         sttybbs(SB_NO_INTR);
1663                                         screen_set();
1664                                 } else {
1665                                         scr_printf("*** Can't run doors when server is not local.\n");
1666                                 }
1667                                 break;
1668
1669                         case 17:
1670                                 who_is_online(ipc, 0);
1671                                 break;
1672
1673                         case 79:
1674                                 who_is_online(ipc, 1);
1675                                 break;
1676
1677                         case 91:
1678                                 who_is_online(ipc, 2);
1679                                 break;
1680                 
1681                         case 80:
1682                                 do_system_configuration(ipc);
1683                                 break;
1684
1685                         case 82:
1686                                 do_internet_configuration(ipc);
1687                                 break;
1688
1689                         case 83:
1690                                 check_message_base(ipc);
1691                                 break;
1692
1693                         case 84:
1694                                 quiet_mode(ipc);
1695                                 break;
1696
1697                         case 93:
1698                                 stealth_mode(ipc);
1699                                 break;
1700
1701                         case 50:
1702                                 enter_config(ipc, 2);
1703                                 break;
1704
1705                         case 37:
1706                                 enter_config(ipc, 0);
1707                                 set_floor_mode();
1708                                 break;
1709
1710                         case 59:
1711                                 enter_config(ipc, 3);
1712                                 set_floor_mode();
1713                                 break;
1714
1715                         case 60:
1716                                 gotofloor(ipc, argbuf, GF_GOTO);
1717                                 break;
1718
1719                         case 61:
1720                                 gotofloor(ipc, argbuf, GF_SKIP);
1721                                 break;
1722
1723                         case 62:
1724                                 forget_this_floor(ipc);
1725                                 break;
1726
1727                         case 63:
1728                                 create_floor(ipc);
1729                                 break;
1730
1731                         case 64:
1732                                 edit_floor(ipc);
1733                                 break;
1734
1735                         case 65:
1736                                 kill_floor(ipc);
1737                                 break;
1738
1739                         case 66:
1740                                 enter_bio(ipc);
1741                                 break;
1742
1743                         case 67:
1744                                 read_bio(ipc);
1745                                 break;
1746
1747                         case 25:
1748                                 edituser(ipc);
1749                                 break;
1750
1751                         case 8:
1752                                 knrooms(ipc, floor_mode);
1753                                 scr_printf("\n");
1754                                 break;
1755
1756                         case 68:
1757                                 knrooms(ipc, 2);
1758                                 scr_printf("\n");
1759                                 break;
1760
1761                         case 69:
1762                                 misc_server_cmd(ipc, argbuf);
1763                                 break;
1764
1765                         case 70:
1766                                 edit_system_message(ipc, argbuf);
1767                                 break;
1768
1769                         case 19:
1770                                 listzrooms(ipc);
1771                                 scr_printf("\n");
1772                                 break;
1773
1774                         case 51:
1775                                 deletefile(ipc);
1776                                 break;
1777
1778                         case 53:
1779                                 netsendfile(ipc);
1780                                 break;
1781
1782                         case 54:
1783                                 movefile(ipc);
1784                                 break;
1785
1786                         case 56:
1787                                 page_user(ipc);
1788                                 break;
1789
1790                         default: /* allow some math on the command */
1791                                 /* commands 100... to 100+MAX_EDITORS-1 will
1792                                    call the appropriate editor... in other
1793                                    words, command numbers 100+ will match
1794                                    the citadel.rc keys editor0, editor1, etc.*/
1795                                 if (mcmd >= 100 && mcmd < (100+MAX_EDITORS))
1796                                 {
1797                                         /* entmsg mode >=2 select editor */
1798                                         entmsg(ipc, 0, mcmd - 100 + 2);
1799                                         break;
1800                                 }
1801                         }       /* end switch */
1802         } while (termn8 == 0);
1803
1804 TERMN8: scr_printf("%s logged out.", fullname);
1805         termn8 = 0;
1806         color(ORIGINAL_PAIR);
1807         scr_printf("\n");
1808         while (march != NULL) {
1809                 remove_march(march->march_name, 0);
1810         }
1811         if (mcmd == 30) {
1812                 sln_printf("\n\nType 'off' to disconnect, or next user...\n");
1813         }
1814         CtdlIPCLogout(ipc);
1815         if ((mcmd == 29) || (mcmd == 15)) {
1816                 screen_delete();
1817                 sttybbs(SB_RESTORE);
1818                 formout(ipc, "goodbye");
1819                 logoff(ipc, 0);
1820         }
1821         goto GSTA;
1822
1823 }       /* end main() */