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