* Convert room listings and some aide functions to new IPC code
[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 <setjmp.h>
34 #include <stdarg.h>
35 #include <errno.h>
36
37 #include "citadel.h"
38 #include "citadel_ipc.h"
39 #include "axdefs.h"
40 #include "routines.h"
41 #include "routines2.h"
42 #include "rooms.h"
43 #include "messages.h"
44 #include "commands.h"
45 #include "client_chat.h"
46 #include "client_passwords.h"
47 #include "citadel_decls.h"
48 #include "tools.h"
49 #include "acconfig.h"
50 #ifndef HAVE_SNPRINTF
51 #include "snprintf.h"
52 #endif
53 #include "screen.h"
54
55 #include "md5.h"
56
57 #define IFEXPERT if (userflags&US_EXPERT)
58 #define IFNEXPERT if ((userflags&US_EXPERT)==0)
59 #define IFAIDE if (axlevel>=6)
60 #define IFNAIDE if (axlevel<6)
61
62 struct march *march = NULL;
63
64 /* globals associated with the client program */
65 char temp[PATH_MAX];            /* Name of general temp file */
66 char temp2[PATH_MAX];           /* Name of general temp file */
67 char tempdir[PATH_MAX];         /* Name of general temp dir */
68 char editor_path[SIZ];          /* path to external editor */
69 char printcmd[SIZ];             /* print command */
70 int editor_pid = (-1);
71 char fullname[32];
72 jmp_buf nextbuf;
73 struct CtdlServInfo serv_info;  /* Info on the server connected */
74 int screenwidth;
75 int screenheight;
76 unsigned room_flags;
77 char room_name[ROOMNAMELEN];
78 char *uglist[UGLISTLEN]; /* size of the ungoto list */
79 long uglistlsn[UGLISTLEN]; /* current read position for all the ungoto's. Not going to make any friends with this one. */
80 int uglistsize = 0;
81 char is_mail = 0;               /* nonzero when we're in a mail room */
82 char axlevel = 0;               /* access level */
83 char is_room_aide = 0;          /* boolean flag, 1 if room aide */
84 int timescalled;
85 int posted;
86 unsigned userflags;
87 long usernum = 0L;              /* user number */
88 time_t lastcall = 0L;           /* Date/time of previous login */
89 char newnow;
90 long highest_msg_read;          /* used for <A>bandon room cmd */
91 long maxmsgnum;                 /* used for <G>oto */
92 char sigcaught = 0;
93 char have_xterm = 0;            /* are we running on an xterm? */
94 char rc_username[32];
95 char rc_password[32];
96 char hostbuf[SIZ];
97 char portbuf[SIZ];
98 char rc_floor_mode;
99 char floor_mode;
100 char curr_floor = 0;            /* number of current floor */
101 char floorlist[128][SIZ];       /* names of floors */
102 int termn8 = 0;                 /* Set to nonzero to cause a logoff */
103 int secure;                     /* Set to nonzero when wire is encrypted */
104 int can_do_msg4 = 0;            /* Set to nonzero if the server can handle MSG4 commands */
105
106 extern char express_msgs;       /* express messages waiting! */
107 extern int rc_ansi_color;       /* ansi color value from citadel.rc */
108 extern int next_lazy_cmd;
109
110 CtdlIPC *ipc_for_signal_handlers;       /* KLUDGE cover your eyes */
111
112 /*
113  * here is our 'clean up gracefully and exit' routine
114  */
115 void logoff(CtdlIPC *ipc, int code)
116 {
117     int lp;
118         if (editor_pid > 0) {   /* kill the editor if it's running */
119                 kill(editor_pid, SIGHUP);
120         }
121
122     /* Free the ungoto list */
123     for (lp = 0; lp < uglistsize; lp++)
124       free (uglist[lp]);
125
126 /* shut down the server... but not if the logoff code is 3, because
127  * that means we're exiting because we already lost the server
128  */
129         if (code != 3)
130                 CtdlIPCQuit(ipc);
131
132 /*
133  * now clean up various things
134  */
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
179 /* general purpose routines */
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 *roomrec = 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                 uglist[ugpos] = malloc(strlen(room_name)+1);
362                 strcpy(uglist[ugpos], room_name);
363                 uglistlsn[ugpos] = ls;
364         }
365       
366         /* first try an exact match */
367         r = CtdlIPCGotoRoom(ipc, towhere, "", &roomrec, aaa);
368         if (r / 10 == 54) {
369                 newprompt("Enter room password: ", bbb, 9);
370                 r = CtdlIPCGotoRoom(ipc, towhere, bbb, &roomrec, aaa);
371                 if (r / 10 == 54) {
372                         scr_printf("Wrong password.\n");
373                         return;
374                 }
375         }       
376
377         /*
378          * If a match is not found, try a partial match.
379          * Partial matches anywhere in the string carry a weight of 1,
380          * left-aligned matches carry a weight of 2.  Pick the room that
381          * has the highest-weighted match.
382          */
383         if (r / 100 != 2) {
384                 struct march *march = NULL;
385                 int r;  /* IPC result code; hides higher-level r */
386
387                 best_match = 0;
388                 strcpy(bbb, "");
389
390                 r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, -1, &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                 roomrec = NULL;
419                 r = CtdlIPCGotoRoom(ipc, bbb, "", &roomrec, aaa);
420         }
421         if (r / 100 != 1 && r / 100 != 2) {
422                 scr_printf("%s\n", aaa);
423                 return;
424         }
425         safestrncpy(room_name, roomrec->RRname, ROOMNAMELEN);
426         room_flags = roomrec->RRflags;
427         from_floor = curr_floor;
428         curr_floor = roomrec->RRfloor;
429
430         remove_march(room_name, 0);
431         if (!strcasecmp(towhere, "_BASEROOM_"))
432                 remove_march(towhere, 0);
433         if (!roomrec->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 ", roomrec->RRunread);
449                 color(DIM_WHITE);
450                 scr_printf("new of ");
451                 color(BRIGHT_YELLOW);
452                 scr_printf("%d ", roomrec->RRtotal);
453                 color(DIM_WHITE);
454                 scr_printf("messages.\n");
455         }
456         highest_msg_read = roomrec->RRlastread;
457         maxmsgnum = roomrec->RRhighest;
458         is_mail = roomrec->RRismailbox;
459         is_room_aide = roomrec->RRaide;
460         ls = roomrec->RRlastread;
461
462         /* read info file if necessary */
463         if (roomrec->RRinfoupdated > 0)
464                 readinfo(ipc);
465
466         /* check for newly arrived mail if we can */
467         newmailcount = roomrec->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, -1, &march, buf);
503 /* add _BASEROOM_ to the end of the march list, so the user will end up
504  * in the system base room (usually the Lobby>) at the end of the loop
505  */
506                 mptr = (struct march *) malloc(sizeof(struct march));
507                 mptr->next = NULL;
508                 strcpy(mptr->march_name, "_BASEROOM_");
509                 if (march == NULL) {
510                         march = mptr;
511                 } else {
512                         mptr2 = march;
513                         while (mptr2->next != NULL)
514                                 mptr2 = mptr2->next;
515                         mptr2->next = mptr;
516                 }
517 /*
518  * ...and remove the room we're currently in, so a <G>oto doesn't make us
519  * walk around in circles
520  */
521                 remove_march(room_name, 0);
522         }
523         if (march != NULL) {
524                 strcpy(next_room, pop_march(curr_floor));
525         } else {
526                 strcpy(next_room, "_BASEROOM_");
527         }
528         remove_march(next_room, 0);
529         dotgoto(ipc, next_room, 1, 0);
530 }
531
532 /*
533  * forget all rooms on a given floor
534  */
535 void forget_all_rooms_on(CtdlIPC *ipc, int ffloor)
536 {
537         char buf[SIZ];
538         struct march *flist, *fptr;
539         struct ctdlipcroom *roomrec;    /* Ignored */
540         int r;                          /* IPC response code */
541
542         scr_printf("Forgetting all rooms on %s...\r", &floorlist[ffloor][0]);
543         scr_flush();
544         r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, ffloor, &flist, buf);
545         if (r / 100 != 1) {
546                 scr_printf("%-72s\n", buf);
547                 return;
548         }
549         while (flist) {
550                 r = CtdlIPCGotoRoom(ipc, flist->march_name, "", &roomrec, buf);
551                 if (r / 100 == 2) {
552                         r = CtdlIPCForgetRoom(ipc, buf);
553                 }
554                 fptr = flist;
555                 flist = flist->next;
556                 free(fptr);
557         }
558         scr_printf("%-72s\r", "");
559 }
560
561
562 /*
563  * routine called by gotofloor() to move to a new room on a new floor
564  */
565 void gf_toroom(CtdlIPC *ipc, char *towhere, int mode)
566 {
567         int floor_being_left;
568
569         floor_being_left = curr_floor;
570
571         if (mode == GF_GOTO) {  /* <;G>oto mode */
572                 updatels(ipc);
573                 dotgoto(ipc, towhere, 1, 0);
574         }
575         if (mode == GF_SKIP) {  /* <;S>kip mode */
576                 dotgoto(ipc, towhere, 1, 0);
577                 remove_march("_FLOOR_", floor_being_left);
578         }
579         if (mode == GF_ZAP) {   /* <;Z>ap mode */
580                 dotgoto(ipc, towhere, 1, 0);
581                 remove_march("_FLOOR_", floor_being_left);
582                 forget_all_rooms_on(ipc, floor_being_left);
583         }
584 }
585
586
587 /*
588  * go to a new floor
589  */
590 void gotofloor(CtdlIPC *ipc, char *towhere, int mode)
591 {
592         int a, tofloor;
593         int r;          /* IPC response code */
594         struct march *mptr;
595         char buf[SIZ], targ[SIZ];
596
597         if (floorlist[0][0] == 0)
598                 load_floorlist(ipc);
599         tofloor = (-1);
600         for (a = 0; a < 128; ++a)
601                 if (!strcasecmp(&floorlist[a][0], towhere))
602                         tofloor = a;
603
604         if (tofloor < 0) {
605                 for (a = 0; a < 128; ++a) {
606                         if (!strncasecmp(&floorlist[a][0], towhere, strlen(towhere))) {
607                                 tofloor = a;
608                         }
609                 }
610         }
611         if (tofloor < 0) {
612                 for (a = 0; a < 128; ++a)
613                         if (pattern(towhere, &floorlist[a][0]) > 0)
614                                 tofloor = a;
615         }
616         if (tofloor < 0) {
617                 scr_printf("No floor '%s'.\n", towhere);
618                 return;
619         }
620         for (mptr = march; mptr != NULL; mptr = mptr->next) {
621                 if ((mptr->march_floor) == tofloor)
622                         gf_toroom(ipc, mptr->march_name, mode);
623                 return;
624         }
625
626         strcpy(targ, "");
627         mptr = NULL;
628         r = CtdlIPCKnownRooms(ipc, AllAccessibleRooms, tofloor, &mptr, buf);
629         if (r / 100 == 1) {
630                 struct march *tmp = mptr;
631
632                 /* TODO: room order is being ignored? */
633                 if (mptr)
634                         strncpy(targ, mptr->march_name, ROOMNAMELEN);
635                 while (mptr) {
636                         tmp = mptr->next;
637                         free(mptr);
638                         mptr = tmp;
639                 }
640         }
641         if (strlen(targ) > 0) {
642                 gf_toroom(ipc, targ, mode);
643         } else {
644                 scr_printf("There are no rooms on '%s'.\n", &floorlist[tofloor][0]);
645         }
646 }
647
648
649 /*
650  * forget all rooms on current floor
651  */
652 void forget_this_floor(CtdlIPC *ipc)
653 {
654
655         if (curr_floor == 0) {
656                 scr_printf("Can't forget this floor.\n");
657                 return;
658         }
659         if (floorlist[0][0] == 0)
660                 load_floorlist(ipc);
661         scr_printf("Are you sure you want to forget all rooms on %s? ",
662                &floorlist[(int) curr_floor][0]);
663         if (yesno() == 0)
664                 return;
665
666         gf_toroom(ipc, "_BASEROOM_", GF_ZAP);
667 }
668
669
670 /* 
671  * Figure out the physical screen dimensions, if we can
672  * WARNING:  this is now called from a signal handler!
673  */
674 void check_screen_dims(void)
675 {
676 #ifdef TIOCGWINSZ
677         struct {
678                 unsigned short height;  /* rows */
679                 unsigned short width;   /* columns */
680                 unsigned short xpixels;
681                 unsigned short ypixels;         /* pixels */
682         } xwinsz;
683
684         if (have_xterm) {       /* dynamically size screen if on an xterm */
685                 if (ioctl(0, TIOCGWINSZ, &xwinsz) == 0) {
686                         if (xwinsz.height)
687                                 screenheight = is_curses_enabled() ? (int)xwinsz.height - 1 : (int) xwinsz.height;
688                         if (xwinsz.width)
689                                 screenwidth = (int) xwinsz.width;
690                 }
691         }
692 #endif
693 }
694
695
696 /*
697  * set floor mode depending on client, server, and user settings
698  */
699 void set_floor_mode(void)
700 {
701         if (serv_info.serv_ok_floors == 0) {
702                 floor_mode = 0; /* Don't use floors if the server */
703         }
704         /* doesn't support them!          */
705         else {
706                 if (rc_floor_mode == RC_NO) {   /* never use floors */
707                         floor_mode = 0;
708                 }
709                 if (rc_floor_mode == RC_YES) {  /* always use floors */
710                         floor_mode = 1;
711                 }
712                 if (rc_floor_mode == RC_DEFAULT) {      /* user choice */
713                         floor_mode = ((userflags & US_FLOORS) ? 1 : 0);
714                 }
715         }
716 }
717
718 /*
719  * Set or change the user's password
720  */
721 int set_password(CtdlIPC *ipc)
722 {
723         char pass1[20];
724         char pass2[20];
725         char buf[SIZ];
726
727         if (strlen(rc_password) > 0) {
728                 strcpy(pass1, rc_password);
729                 strcpy(pass2, rc_password);
730         } else {
731                 IFNEXPERT formout(ipc, "changepw");
732                 newprompt("Enter a new password: ", pass1, -19);
733                 newprompt("Enter it again to confirm: ", pass2, -19);
734         }
735         strproc(pass1);
736         strproc(pass2);
737         if (!strcasecmp(pass1, pass2)) {
738                 CtdlIPCChangePassword(ipc, pass1, buf);
739                 scr_printf("%s\n", buf);
740                 offer_to_remember_password(hostbuf, portbuf, fullname, pass1);
741                 return (0);
742         } else {
743                 scr_printf("*** They don't match... try again.\n");
744                 return (1);
745         }
746 }
747
748
749
750 /*
751  * get info about the server we've connected to
752  */
753 void get_serv_info(CtdlIPC *ipc, char *supplied_hostname)
754 {
755         char buf[SIZ];
756
757         CtdlIPCServerInfo(ipc, &serv_info, buf);
758
759         /* be nice and identify ourself to the server */
760         CtdlIPCIdentifySoftware(ipc, SERVER_TYPE, 0, REV_LEVEL,
761                  (ipc->isLocal ? "local" : CITADEL),
762                  (supplied_hostname) ? supplied_hostname : "", buf);
763                  /* (locate_host(buf), buf)); */
764
765         /* Tell the server what our preferred content formats are */
766         if ((CtdlIPCSpecifyPreferredFormats(ipc, buf, "text/html|text/plain") / 100 )== 2) {
767                 can_do_msg4 = 1;
768         }
769 }
770
771
772
773
774
775 /*
776  * Display list of users currently logged on to the server
777  */
778 void who_is_online(CtdlIPC *ipc, int longlist)
779 {
780         char buf[SIZ], username[SIZ], roomname[SIZ], fromhost[SIZ];
781         char flags[SIZ];
782         char actual_user[SIZ], actual_room[SIZ], actual_host[SIZ];
783         char clientsoft[SIZ];
784         time_t timenow = 0;
785         time_t idletime, idlehours, idlemins, idlesecs;
786         int last_session = (-1);
787         int skipidle = 0;
788         char *listing = NULL;
789         int r;                          /* IPC response code */
790     
791         if (longlist == 2) {
792                 longlist = 0;
793                 skipidle = 1;
794         }
795
796         if (!longlist) {
797                 color(BRIGHT_WHITE);
798                 pprintf("FLG ###        User Name                 Room                 From host\n");
799                 color(DIM_WHITE);
800                 pprintf("--- --- ------------------------- -------------------- ------------------------\n");
801         }
802         r = CtdlIPCOnlineUsers(ipc, &listing, &timenow, buf);
803         if (r / 100 == 1) {
804                 while (strlen(listing) > 0) {
805                         int isidle = 0;
806                         
807                         /* Get another line */
808                         extract_token(buf, listing, 0, '\n');
809                         remove_token(listing, 0, '\n');
810
811                         extract(username, buf, 1);
812                         extract(roomname, buf, 2);
813                         extract(fromhost, buf, 3);
814                         extract(clientsoft, buf, 4);
815                         extract(flags, buf, 7);
816
817                         idletime = timenow - extract_long(buf, 5);
818                         idlehours = idletime / 3600;
819                         idlemins = (idletime - (idlehours * 3600)) / 60;
820                         idlesecs = (idletime - (idlehours * 3600) - (idlemins * 60));
821
822                         if (idletime > rc_idle_threshold) {
823                                 while (strlen(roomname) < 20) {
824                                         strcat(roomname, " ");
825                                 }
826                                 strcpy(&roomname[14], "[idle]");
827                                 if (skipidle)
828                                         isidle = 1;
829                         }
830
831                         if (longlist) {
832                                 extract(actual_user, buf, 8);
833                                 extract(actual_room, buf, 9);
834                                 extract(actual_host, buf, 10);
835
836                                 pprintf("  Flags: %s\n", flags);
837                                 pprintf("Session: %d\n", extract_int(buf, 0));
838                                 pprintf("   Name: %s\n", username);
839                                 pprintf("In room: %s\n", roomname);
840                                 pprintf("   Host: %s\n", fromhost);
841                                 pprintf(" Client: %s\n", clientsoft);
842                                 pprintf("   Idle: %ld:%02ld:%02ld\n",
843                                         (long) idlehours,
844                                         (long) idlemins,
845                                         (long) idlesecs);
846
847                                 if ( (strlen(actual_user)+strlen(actual_room)+strlen(actual_host)) > 0) {
848                                         pprintf("(really ");
849                                         if (strlen(actual_user)>0) pprintf("<%s> ", actual_user);
850                                         if (strlen(actual_room)>0) pprintf("in <%s> ", actual_room);
851                                         if (strlen(actual_host)>0) pprintf("from <%s> ", actual_host);
852                                         pprintf(")\n");
853                                 }
854                                 pprintf("\n");
855
856                         } else {
857                     if (isidle == 0) {
858                                 if (extract_int(buf, 0) == last_session) {
859                                         pprintf("        ");
860                                 } else {
861                                         color(BRIGHT_MAGENTA);
862                                         pprintf("%-3s ", flags);
863                                         color(DIM_WHITE);
864                                         pprintf("%-3d ", extract_int(buf, 0));
865                                 }
866                                 last_session = extract_int(buf, 0);
867                                 color(BRIGHT_CYAN);
868                                 pprintf("%-25s ", username);
869                                 color(BRIGHT_MAGENTA);
870                                 roomname[20] = 0;
871                                 pprintf("%-20s ", roomname);
872                                 color(BRIGHT_CYAN);
873                                 fromhost[24] = '\0';
874                                 pprintf("%-24s\n", fromhost);
875                                 color(DIM_WHITE);
876                         }
877                         }
878                 }
879         }
880         free(listing);
881 }
882
883 void enternew(CtdlIPC *ipc, char *desc, char *buf, int maxlen)
884 {
885         char bbb[128];
886         snprintf(bbb, sizeof bbb, "Enter in your new %s: ", desc);
887         newprompt(bbb, buf, maxlen);
888 }
889
890
891
892 int shift(int argc, char **argv, int start, int count) {
893         int i;
894
895         for (i=start; i<(argc-count); ++i) {
896                 argv[i] = argv[i+count];
897         }
898         argc = argc - count;
899         return argc;
900 }
901
902 static void statusHook(char *s) {
903         sln_printf(s);
904         sln_flush();
905 }
906
907 /*
908  * main
909  */
910 int main(int argc, char **argv)
911 {
912         int a, b, mcmd;
913         char aaa[100], bbb[100];/* general purpose variables */
914         char argbuf[32];        /* command line buf */
915         char nonce[NONCE_SIZE];
916         char *telnet_client_host = NULL;
917         char *sptr, *sptr2;     /* USed to extract the nonce */
918         char hexstring[MD5_HEXSTRING_SIZE];
919         int stored_password = 0;
920         char password[SIZ];
921         struct ctdlipcmisc chek;
922         struct usersupp *myself = NULL;
923         CtdlIPC* ipc;                   /* Our server connection */
924         int r;                          /* IPC result code */
925
926         setIPCDeathHook(screen_delete);
927         setIPCErrorPrintf(err_printf);
928         setCryptoStatusHook(statusHook);
929         
930         /* Permissions sanity check - don't run citadel setuid/setgid */
931         if (getuid() != geteuid()) {
932                 err_printf("Please do not run citadel setuid!\n");
933                 logoff(NULL, 3);
934         } else if (getgid() != getegid()) {
935                 err_printf("Please do not run citadel setgid!\n");
936                 logoff(NULL, 3);
937         }
938
939         sttybbs(SB_SAVE);       /* Store the old terminal parameters */
940         load_command_set();     /* parse the citadel.rc file */
941         sttybbs(SB_NO_INTR);    /* Install the new ones */
942         signal(SIGHUP, dropcarr);       /* Cleanup gracefully if carrier is dropped */
943         signal(SIGTERM, dropcarr);      /* Cleanup gracefully if terminated */
944         signal(SIGCONT, catch_sigcont); /* Catch SIGCONT so we can reset terminal */
945 #ifdef SIGWINCH
946         signal(SIGWINCH, scr_winch);    /* Window resize signal */
947 #endif
948
949 #ifdef HAVE_OPENSSL
950         arg_encrypt = RC_DEFAULT;
951 #endif
952 #ifdef HAVE_CURSES_H
953         arg_screen = RC_DEFAULT;
954 #endif
955
956         /* 
957          * Handle command line options as if we were called like /bin/login
958          * (i.e. from in.telnetd)
959          */
960         for (a=0; a<argc; ++a) {
961                 if ((argc > a+1) && (!strcmp(argv[a], "-h")) ) {
962                         telnet_client_host = argv[a+1];
963                         argc = shift(argc, argv, a, 2);
964                 }
965                 if (!strcmp(argv[a], "-x")) {
966 #ifdef HAVE_OPENSSL
967                         arg_encrypt = RC_NO;
968 #endif
969                         argc = shift(argc, argv, a, 1);
970                 }
971                 if (!strcmp(argv[a], "-X")) {
972 #ifdef HAVE_OPENSSL
973                         arg_encrypt = RC_YES;
974                         argc = shift(argc, argv, a, 1);
975 #else
976                         fprintf(stderr, "Not compiled with encryption support");
977                         return 1;
978 #endif
979                 }
980                 if (!strcmp(argv[a], "-s")) {
981 #ifdef HAVE_CURSES_H
982                         arg_screen = RC_NO;
983 #endif
984                         argc = shift(argc, argv, a, 1);
985                 }
986                 if (!strcmp(argv[a], "-S")) {
987 #ifdef HAVE_CURSES_H
988                         arg_screen = RC_YES;
989 #endif
990                         argc = shift(argc, argv, a, 1);
991                 }
992                 if (!strcmp(argv[a], "-p")) {
993                         struct stat st;
994                 
995                         if (chdir(BBSDIR) < 0) {
996                                 perror("can't change to " BBSDIR);
997                                 logoff(NULL, 3);
998                         }
999
1000                         /*
1001                          * Drop privileges if necessary. We stat
1002                          * citadel.config to get the uid/gid since it's
1003                          * guaranteed to have the uid/gid we want.
1004                          */
1005                         if (!getuid() || !getgid()) {
1006                                 if (stat(BBSDIR "/citadel.config", &st) < 0) {
1007                                         perror("couldn't stat citadel.config");
1008                                         logoff(NULL, 3);
1009                                 }
1010                                 if (!getgid() && (setgid(st.st_gid) < 0)) {
1011                                         perror("couldn't change gid");
1012                                         logoff(NULL, 3);
1013                                 }
1014                                 if (!getuid() && (setuid(st.st_uid) < 0)) {
1015                                         perror("couldn't change uid");
1016                                         logoff(NULL, 3);
1017                                 }
1018                                 /*
1019                                   scr_printf("Privileges changed to uid %d gid %d\n",
1020                                   getuid(), getgid());
1021                                 */
1022                         }
1023                         argc = shift(argc, argv, a, 1);
1024                 }
1025         }
1026
1027         screen_new();
1028
1029         sln_printf("Attaching to server... \r");
1030         sln_flush();
1031         ipc = CtdlIPC_new(argc, argv, hostbuf, portbuf);
1032         if (!ipc) {
1033                 screen_delete();
1034                 error_printf("Can't connect: %s\n", strerror(errno));
1035                 logoff(NULL, 3);
1036         }
1037         ipc_for_signal_handlers = ipc;  /* KLUDGE cover your eyes */
1038
1039         CtdlIPC_getline(ipc, aaa);
1040         if (aaa[0] != '2') {
1041                 scr_printf("%s\n", &aaa[4]);
1042                 logoff(ipc, atoi(aaa));
1043         }
1044
1045         /* If there is a [nonce] at the end, put the nonce in <nonce>, else nonce
1046          * is zeroized.
1047          */
1048         
1049         if ((sptr = strchr(aaa, '<')) == NULL)
1050                 {
1051                         nonce[0] = '\0';
1052                 }
1053         else
1054                 {
1055                         if ((sptr2 = strchr(sptr, '>')) == NULL)
1056                                 {
1057                                         nonce[0] = '\0';
1058                                 }
1059                         else
1060                                 {
1061                                         sptr2++;
1062                                         *sptr2 = '\0';
1063                                         strncpy(nonce, sptr, NONCE_SIZE);
1064                                 }
1065                 }
1066
1067 #ifdef HAVE_OPENSSL
1068         /* Evaluate encryption preferences */
1069         if (arg_encrypt != RC_NO && rc_encrypt != RC_NO) {
1070                 if (!ipc->isLocal || arg_encrypt == RC_YES || rc_encrypt == RC_YES) {
1071                         secure = (CtdlIPCStartEncryption(ipc, aaa) / 100 == 2) ? 1 : 0;
1072                         if (!secure)
1073                                 error_printf("Can't encrypt: %s\n", aaa);
1074                 }
1075         }
1076 #endif
1077
1078         get_serv_info(ipc, telnet_client_host);
1079         scr_printf("%-24s\n%s\n%s\n", serv_info.serv_software, serv_info.serv_humannode,
1080                    serv_info.serv_bbs_city);
1081         scr_flush();
1082
1083         status_line(serv_info.serv_humannode, serv_info.serv_bbs_city, NULL,
1084                     secure, -1);
1085
1086         screenwidth = 80;       /* default screen dimensions */
1087         screenheight = 24;
1088         
1089         scr_printf(" pause    next    stop\n");
1090         scr_printf(" ctrl-s  ctrl-o  ctrl-c\n\n");
1091         formout(ipc, "hello");  /* print the opening greeting */
1092         scr_printf("\n");
1093
1094  GSTA:  /* See if we have a username and password on disk */
1095         if (rc_remember_passwords) {
1096                 get_stored_password(hostbuf, portbuf, fullname, password);
1097                 if (strlen(fullname) > 0) {
1098                         r = CtdlIPCTryLogin(ipc, fullname, aaa);
1099                         if (r / 100 == 3) {
1100                                 if (*nonce) {
1101                                         r = CtdlIPCTryApopPassword(ipc, make_apop_string(password, nonce, hexstring, sizeof hexstring), aaa);
1102                                 } else {
1103                                         r = CtdlIPCTryPassword(ipc, password, aaa);
1104                                 }
1105                         }
1106
1107                         if (r / 100 == 2) {
1108                                 load_user_info(aaa);
1109                                 stored_password = 1;
1110                                 goto PWOK;
1111                         } else {
1112                                 set_stored_password(hostbuf, portbuf, "", "");
1113                         }
1114                 }
1115         }
1116
1117         termn8 = 0;
1118         newnow = 0;
1119         do {
1120                 if (strlen(rc_username) > 0) {
1121                         strcpy(fullname, rc_username);
1122                 } else {
1123                         newprompt("Enter your name: ", fullname, 29);
1124                 }
1125                 strproc(fullname);
1126                 if (!strcasecmp(fullname, "new")) {     /* just in case */
1127                         scr_printf("Please enter the name you wish to log in with.\n");
1128                 }
1129         } while (
1130                  (!strcasecmp(fullname, "bbs"))
1131                  || (!strcasecmp(fullname, "new"))
1132                  || (strlen(fullname) == 0));
1133
1134         if (!strcasecmp(fullname, "off")) {
1135                 mcmd = 29;
1136                 goto TERMN8;
1137         }
1138         /* sign on to the server */
1139         r = CtdlIPCTryLogin(ipc, fullname, aaa);
1140         if (r / 100 != 3)
1141                 goto NEWUSR;
1142
1143         /* password authentication */
1144         if (strlen(rc_password) > 0) {
1145                 strcpy(password, rc_password);
1146         } else {
1147                 newprompt("\rPlease enter your password: ", password, -19);
1148         }
1149         strproc(password);
1150
1151         if (*nonce) {
1152                 r = CtdlIPCTryApopPassword(ipc, make_apop_string(password, nonce, hexstring, sizeof hexstring), aaa);
1153         } else {
1154                 r = CtdlIPCTryPassword(ipc, password, aaa);
1155         }
1156         
1157         if (r / 100 == 2) {
1158                 load_user_info(aaa);
1159                 offer_to_remember_password(hostbuf, portbuf,
1160                                            fullname, password);
1161                 goto PWOK;
1162         }
1163         scr_printf("<< wrong password >>\n");
1164         if (strlen(rc_password) > 0)
1165                 logoff(ipc, 0);
1166         goto GSTA;
1167
1168 NEWUSR: if (strlen(rc_password) == 0) {
1169                 scr_printf("No record. Enter as new user? ");
1170                 if (yesno() == 0)
1171                         goto GSTA;
1172         }
1173
1174         r = CtdlIPCCreateUser(ipc, fullname, 0, aaa);
1175         if (r / 100 != 2) {
1176                 scr_printf("%s\n", aaa);
1177                 goto GSTA;
1178         }
1179         load_user_info(aaa);
1180
1181         while (set_password(ipc) != 0);
1182         newnow = 1;
1183
1184         enter_config(ipc, 1);
1185
1186  PWOK:
1187         /* Switch color support on or off if we're in user mode */
1188         if (rc_ansi_color == 3) {
1189                 if (userflags & US_COLOR)
1190                         enable_color = 1;
1191                 else
1192                         enable_color = 0;
1193         }
1194
1195         scr_printf("%s\nAccess level: %d (%s)\n"
1196                    "User #%ld / Login #%d",
1197                    fullname, axlevel, axdefs[(int) axlevel],
1198                    usernum, timescalled);
1199         if (lastcall > 0L) {
1200                 scr_printf(" / Last login: %s\n",
1201                            asctime(localtime(&lastcall)));
1202         }
1203         scr_printf("\n");
1204
1205         r = CtdlIPCMiscCheck(ipc, &chek, aaa);
1206         if (r / 100 == 2) {
1207                 b = chek.newmail;
1208                 if (b > 0) {
1209                         color(BRIGHT_RED);
1210                         if (b == 1)
1211                                 scr_printf("*** You have a new private message in Mail>\n");
1212                         if (b > 1)
1213                                 scr_printf("*** You have %d new private messages in Mail>\n", b);
1214                         color(DIM_WHITE);
1215                         if (strlen(rc_gotmail_cmd) > 0) {
1216                                 system(rc_gotmail_cmd);
1217                         }
1218                 }
1219                 if ((axlevel >= 6) && (chek.needvalid > 0)) {
1220                         scr_printf("*** Users need validation\n");
1221                 }
1222                 if (chek.needregis > 0) {
1223                         scr_printf("*** Please register.\n");
1224                         formout(ipc, "register");
1225                         entregis(ipc);
1226                 }
1227         }
1228         /* Make up some temporary filenames for use in various parts of the
1229          * program.  Don't mess with these once they've been set, because we
1230          * will be unlinking them later on in the program and we don't
1231          * want to delete something that we didn't create. */
1232         snprintf(temp, sizeof temp, tmpnam(NULL));
1233         snprintf(temp2, sizeof temp2, tmpnam(NULL));
1234         snprintf(tempdir, sizeof tempdir, tmpnam(NULL));
1235
1236         /* Get screen dimensions.  First we go to a default of 80x24.  Then
1237          * we try to get the user's actual screen dimensions off the server.
1238          * However, if we're running on an xterm, all this stuff is
1239          * irrelevant because we're going to dynamically size the screen
1240          * during the session.
1241          */
1242         screenwidth = 80;
1243         screenheight = 24;
1244         r = CtdlIPCGetConfig(ipc, &myself, aaa);
1245         if (r == 2) {
1246                 screenwidth = myself->USscreenwidth;
1247                 screenheight = myself->USscreenheight;
1248         }
1249         if (getenv("TERM") != NULL)
1250                 if (!strcmp(getenv("TERM"), "xterm")) {
1251                         have_xterm = 1;
1252                 }
1253 #ifdef TIOCGWINSZ
1254         check_screen_dims();
1255 #endif
1256
1257         set_floor_mode();
1258
1259
1260         /* Enter the lobby */
1261         dotgoto(ipc, "_BASEROOM_", 1, 0);
1262
1263         /* Main loop for the system... user is logged in. */
1264         uglistsize = 0;
1265
1266         if (newnow == 1)
1267                 readmsgs(ipc, 3, 1, 5);
1268         else
1269                 readmsgs(ipc, 1, 1, 0);
1270
1271         /* MAIN COMMAND LOOP */
1272         do {
1273                 mcmd = getcmd(ipc, argbuf);     /* Get keyboard command */
1274
1275 #ifdef TIOCGWINSZ
1276                 check_screen_dims();            /* if xterm, get screen size */
1277 #endif
1278
1279                 if (termn8 == 0)
1280                         switch (mcmd) {
1281                         case 1:
1282                                 formout(ipc, "help");
1283                                 break;
1284                         case 4:
1285                                 entmsg(ipc, 0, 0);
1286                                 break;
1287                         case 36:
1288                                 entmsg(ipc, 0, 1);
1289                                 break;
1290                         case 46:
1291                                 entmsg(ipc, 0, 2);
1292                                 break;
1293                         case 78:
1294                                 newprompt("What do you want your username to be? ", aaa, 32);
1295                                 snprintf(bbb, sizeof bbb, "ENT0 2|0|0|0|%s", aaa);
1296                                 CtdlIPC_putline(ipc, bbb);
1297                                 CtdlIPC_getline(ipc, aaa);
1298                                 if (strncmp("200", aaa, 3))
1299                                         scr_printf("\n%s\n", aaa);
1300                                 else
1301                                         entmsg(ipc, 0, 0);
1302                                 break;
1303                         case 5:
1304                                 updatels(ipc);
1305                                 gotonext(ipc);
1306                                 break;
1307                         case 47:
1308                                 if (!rc_alt_semantics)
1309                                         updatelsa(ipc);
1310                                 gotonext(ipc);
1311                                 break;
1312                         case 90:
1313                                 if (!rc_alt_semantics)
1314                                         updatelsa(ipc);
1315                                 dotgoto(ipc, argbuf, 0, 0);
1316                                 break;
1317                         case 58:
1318                                 updatelsa(ipc);
1319                                 dotgoto(ipc, "_MAIL_", 1, 0);
1320                                 break;
1321                         case 20:
1322                                 updatels(ipc);
1323                                 dotgoto(ipc, argbuf, 0, 0);
1324                                 break;
1325                         case 52:
1326                                 if (rc_alt_semantics)
1327                                         updatelsa(ipc);
1328                                 dotgoto(ipc, argbuf, 0, 0);
1329                                 break;
1330                         case 10:
1331                                 readmsgs(ipc, 0, 1, 0);
1332                                 break;
1333                         case 9:
1334                                 readmsgs(ipc, 3, 1, 5);
1335                                 break;
1336                         case 13:
1337                                 readmsgs(ipc, 1, 1, 0);
1338                                 break;
1339                         case 11:
1340                                 readmsgs(ipc, 0, (-1), 0);
1341                                 break;
1342                         case 12:
1343                                 readmsgs(ipc, 2, (-1), 0);
1344                                 break;
1345                         case 71:
1346                                 readmsgs(ipc, 3, 1, atoi(argbuf));
1347                                 break;
1348                         case 7:
1349                                 forget(ipc);
1350                                 break;
1351                         case 18:
1352                                 subshell();
1353                                 break;
1354                         case 38:
1355                                 updatels(ipc);
1356                                 entroom(ipc);
1357                                 break;
1358                         case 22:
1359                                 killroom(ipc);
1360                                 break;
1361                         case 32:
1362                                 userlist(ipc, argbuf);
1363                                 break;
1364                         case 27:
1365                                 invite(ipc);
1366                                 break;
1367                         case 28:
1368                                 kickout(ipc);
1369                                 break;
1370                         case 23:
1371                                 editthisroom(ipc);
1372                                 break;
1373                         case 14:
1374                                 roomdir(ipc);
1375                                 break;
1376                         case 33:
1377                                 download(ipc, 0);
1378                                 break;
1379                         case 34:
1380                                 download(ipc, 1);
1381                                 break;
1382                         case 31:
1383                                 download(ipc, 2);
1384                                 break;
1385                         case 43:
1386                                 download(ipc, 3);
1387                                 break;
1388                         case 45:
1389                                 download(ipc, 4);
1390                                 break;
1391                         case 55:
1392                                 download(ipc, 5);
1393                                 break;
1394                         case 39:
1395                                 upload(ipc, 0);
1396                                 break;
1397                         case 40:
1398                                 upload(ipc, 1);
1399                                 break;
1400                         case 42:
1401                                 upload(ipc, 2);
1402                                 break;
1403                         case 44:
1404                                 upload(ipc, 3);
1405                                 break;
1406                         case 57:
1407                                 cli_upload(ipc);
1408                                 break;
1409                         case 16:
1410                                 ungoto(ipc);
1411                                 break;
1412                         case 24:
1413                                 whoknows(ipc);
1414                                 break;
1415                         case 26:
1416                                 validate(ipc);
1417                                 break;
1418                         case 29:
1419                                 if (!rc_alt_semantics)
1420                                         updatels(ipc);
1421                                 termn8 = 1;
1422                                 break;
1423                         case 30:
1424                                 if (!rc_alt_semantics)
1425                                         updatels(ipc);
1426                                 termn8 = 1;
1427                                 break;
1428                         case 48:
1429                                 enterinfo(ipc);
1430                                 break;
1431                         case 49:
1432                                 readinfo(ipc);
1433                                 break;
1434                         case 72:
1435                                 cli_image_upload(ipc, "_userpic_");
1436                                 break;
1437                         case 73:
1438                                 cli_image_upload(ipc, "_roompic_");
1439                                 break;
1440
1441                         case 74:
1442                                 snprintf(aaa, sizeof aaa, "_floorpic_|%d", curr_floor);
1443                                 cli_image_upload(ipc, aaa);
1444                                 break;
1445
1446                         case 75:
1447                                 enternew(ipc, "roomname", aaa, 20);
1448                                 r = CtdlIPCChangeRoomname(ipc, aaa, bbb);
1449                                 if (r / 100 != 2)
1450                                         scr_printf("\n%s\n", aaa);
1451                                 break;
1452                         case 76:
1453                                 enternew(ipc, "hostname", aaa, 25);
1454                                 r = CtdlIPCChangeHostname(ipc, aaa, bbb);
1455                                 if (r / 100 != 2)
1456                                         scr_printf("\n%s\n", aaa);
1457                                 break;
1458                         case 77:
1459                                 enternew(ipc, "username", aaa, 32);
1460                                 r = CtdlIPCChangeUsername(ipc, aaa, bbb);
1461                                 if (r / 100 != 2)
1462                                         scr_printf("\n%s\n", aaa);
1463                                 break;
1464
1465                         case 35:
1466                                 set_password(ipc);
1467                                 break;
1468
1469                         case 21:
1470                                 if (argbuf[0] == 0)
1471                                         strcpy(aaa, "?");
1472                                 display_help(ipc, argbuf);
1473                                 break;
1474
1475                         case 41:
1476                                 formout(ipc, "register");
1477                                 entregis(ipc);
1478                                 break;
1479
1480                         case 15:
1481                                 scr_printf("Are you sure (y/n)? ");
1482                                 if (yesno() == 1) {
1483                                         updatels(ipc);
1484                                         a = 0;
1485                                         termn8 = 1;
1486                                 }
1487                                 break;
1488
1489                         case 85:
1490                                 scr_printf("All users will be disconnected!  "
1491                                            "Really terminate the server? ");
1492                                 if (yesno() == 1) {
1493                                         r = CtdlIPCTerminateServerNow(ipc, aaa);
1494                                         scr_printf("%s\n", aaa);
1495                                         if (r / 100 == 2) {
1496                                                 updatels(ipc);
1497                                                 a = 0;
1498                                                 termn8 = 1;
1499                                         }
1500                                 }
1501                                 break;
1502
1503                         case 86:
1504                                 scr_printf("Do you really want to schedule a "
1505                                            "server shutdown? ");
1506                                 if (yesno() == 1) {
1507                                         r = CtdlIPCTerminateServerScheduled(ipc, 1, aaa);
1508                                         if (r / 100 == 2) {
1509                                                 if (atoi(aaa)) {
1510                                                         scr_printf(
1511                                                                    "The Citadel server will terminate when all users are logged off.\n"
1512                                                                    );
1513                                                 } else {
1514                                                         scr_printf(
1515                                                                    "The Citadel server will not terminate.\n"
1516                                                                    );
1517                                                 }
1518                                         }
1519                                 }
1520                                 break;
1521
1522                         case 87:
1523                                 network_config_management(ipc, "listrecp",
1524                                                           "Message-by-message mailing list recipients");
1525                                 break;
1526
1527                         case 94:
1528                                 network_config_management(ipc, "digestrecp",
1529                                                           "Digest mailing list recipients");
1530                                 break;
1531
1532                         case 89:
1533                                 network_config_management(ipc, "ignet_push_share",
1534                                                           "Nodes with which we share this room");
1535                                 break;
1536
1537                         case 88:
1538                                 do_ignet_configuration(ipc);
1539                                 break;
1540
1541                         case 92:
1542                                 do_filterlist_configuration(ipc);
1543                                 break;
1544
1545                         case 6:
1546                                 if (rc_alt_semantics)
1547                                         updatelsa(ipc);
1548                                 gotonext(ipc);
1549                                 break;
1550
1551                         case 3:
1552                                 chatmode(ipc);
1553                                 break;
1554
1555                         case 2:
1556                                 if (ipc->isLocal) {
1557                                         screen_reset();
1558                                         sttybbs(SB_RESTORE);
1559                                         snprintf(aaa, sizeof aaa, "USERNAME=\042%s\042; export USERNAME;"
1560                                                  "exec ./subsystem %ld %d %d", fullname,
1561                                                  usernum, screenwidth, axlevel);
1562                                         ka_system(aaa);
1563                                         sttybbs(SB_NO_INTR);
1564                                         screen_set();
1565                                 } else {
1566                                         scr_printf("*** Can't run doors when server is not local.\n");
1567                                 }
1568                                 break;
1569
1570                         case 17:
1571                                 who_is_online(ipc, 0);
1572                                 break;
1573
1574                         case 79:
1575                                 who_is_online(ipc, 1);
1576                                 break;
1577
1578                         case 91:
1579                                 who_is_online(ipc, 2);
1580                                 break;
1581                 
1582                         case 80:
1583                                 do_system_configuration(ipc);
1584                                 break;
1585
1586                         case 82:
1587                                 do_internet_configuration(ipc);
1588                                 break;
1589
1590                         case 83:
1591                                 check_message_base(ipc);
1592                                 break;
1593
1594                         case 84:
1595                                 quiet_mode(ipc);
1596                                 break;
1597
1598                         case 93:
1599                                 stealth_mode(ipc);
1600                                 break;
1601
1602                         case 50:
1603                                 enter_config(ipc, 2);
1604                                 break;
1605
1606                         case 37:
1607                                 enter_config(ipc, 0);
1608                                 set_floor_mode();
1609                                 break;
1610
1611                         case 59:
1612                                 enter_config(ipc, 3);
1613                                 set_floor_mode();
1614                                 break;
1615
1616                         case 60:
1617                                 gotofloor(ipc, argbuf, GF_GOTO);
1618                                 break;
1619
1620                         case 61:
1621                                 gotofloor(ipc, argbuf, GF_SKIP);
1622                                 break;
1623
1624                         case 62:
1625                                 forget_this_floor(ipc);
1626                                 break;
1627
1628                         case 63:
1629                                 create_floor(ipc);
1630                                 break;
1631
1632                         case 64:
1633                                 edit_floor(ipc);
1634                                 break;
1635
1636                         case 65:
1637                                 kill_floor(ipc);
1638                                 break;
1639
1640                         case 66:
1641                                 enter_bio(ipc);
1642                                 break;
1643
1644                         case 67:
1645                                 read_bio(ipc);
1646                                 break;
1647
1648                         case 25:
1649                                 edituser(ipc);
1650                                 break;
1651
1652                         case 8:
1653                                 knrooms(ipc, floor_mode);
1654                                 scr_printf("\n");
1655                                 break;
1656
1657                         case 68:
1658                                 knrooms(ipc, 2);
1659                                 scr_printf("\n");
1660                                 break;
1661
1662                         case 69:
1663                                 misc_server_cmd(ipc, argbuf);
1664                                 break;
1665
1666                         case 70:
1667                                 edit_system_message(argbuf);
1668                                 break;
1669
1670                         case 19:
1671                                 listzrooms(ipc);
1672                                 scr_printf("\n");
1673                                 break;
1674
1675                         case 51:
1676                                 deletefile(ipc);
1677                                 break;
1678
1679                         case 53:
1680                                 netsendfile(ipc);
1681                                 break;
1682
1683                         case 54:
1684                                 movefile(ipc);
1685                                 break;
1686
1687                         case 56:
1688                                 page_user(ipc);
1689                                 break;
1690
1691                         }       /* end switch */
1692         } while (termn8 == 0);
1693
1694  TERMN8:        scr_printf("%s logged out.\n", fullname);
1695         while (march != NULL) {
1696                 remove_march(march->march_name, 0);
1697         }
1698         if (mcmd == 30) {
1699                 sln_printf("\n\nType 'off' to disconnect, or next user...\n");
1700         }
1701         CtdlIPCLogout(ipc);
1702         if ((mcmd == 29) || (mcmd == 15)) {
1703                 screen_delete();
1704                 sttybbs(SB_RESTORE);
1705                 formout(ipc, "goodbye");
1706                 logoff(ipc, 0);
1707         }
1708         goto GSTA;
1709
1710 }       /* end main() */