* Added .ATN (DOWN) and .ATS (SCDN 1) commands to the client
[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 #include <time.h>
15 #include <limits.h>
16 #include <sys/types.h>
17 #include <sys/wait.h>
18 #include <sys/stat.h>
19 #include <sys/ioctl.h>
20 #include <signal.h>
21 #include <pwd.h>
22 #include <setjmp.h>
23 #include <stdarg.h>
24
25 #include "citadel.h"
26 #include "axdefs.h"
27 #include "serv_info.h"
28 #include "routines.h"
29 #include "routines2.h"
30 #include "rooms.h"
31 #include "messages.h"
32 #include "commands.h"
33 #include "ipc.h"
34 #include "client_chat.h"
35 #include "client_passwords.h"
36 #include "citadel_decls.h"
37 #include "tools.h"
38 #ifndef HAVE_SNPRINTF
39 #include "snprintf.h"
40 #endif
41
42 struct march {
43         struct march *next;
44         char march_name[ROOMNAMELEN];
45         char march_floor;
46         char march_order;
47 };
48
49 #define IFEXPERT if (userflags&US_EXPERT)
50 #define IFNEXPERT if ((userflags&US_EXPERT)==0)
51 #define IFAIDE if (axlevel>=6)
52 #define IFNAIDE if (axlevel<6)
53
54 struct march *march = NULL;
55
56 /* globals associated with the client program */
57 char temp[PATH_MAX];            /* Name of general temp file */
58 char temp2[PATH_MAX];           /* Name of general temp file */
59 char tempdir[PATH_MAX];         /* Name of general temp dir */
60 char editor_path[256];          /* path to external editor */
61 char printcmd[256];             /* print command */
62 int editor_pid = (-1);
63 char fullname[32];
64 jmp_buf nextbuf;
65 struct CtdlServInfo serv_info;  /* Info on the server connected */
66 int screenwidth;
67 int screenheight;
68 unsigned room_flags;
69 char room_name[ROOMNAMELEN];
70 char ugname[ROOMNAMELEN];
71 long uglsn;                     /* holds <u>ngoto info */
72 char is_mail = 0;               /* nonzero when we're in a mail room */
73 char axlevel = 0;               /* access level */
74 char is_room_aide = 0;          /* boolean flag, 1 if room aide */
75 int timescalled;
76 int posted;
77 unsigned userflags;
78 long usernum = 0L;              /* user number */
79 char newnow;
80 long highest_msg_read;          /* used for <A>bandon room cmd */
81 long maxmsgnum;                 /* used for <G>oto */
82 char sigcaught = 0;
83 char have_xterm = 0;            /* are we running on an xterm? */
84 char rc_username[32];
85 char rc_password[32];
86 char hostbuf[256];
87 char portbuf[256];
88 char rc_floor_mode;
89 char floor_mode;
90 char curr_floor = 0;            /* number of current floor */
91 char floorlist[128][256];       /* names of floors */
92 char express_msgs = 0;          /* express messages waiting! */
93
94 /*
95  * here is our 'clean up gracefully and exit' routine
96  */
97 void logoff(int code)
98 {
99         if (editor_pid > 0) {   /* kill the editor if it's running */
100                 kill(editor_pid, SIGHUP);
101         }
102 /* shut down the server... but not if the logoff code is 3, because
103  * that means we're exiting because we already lost the server
104  */
105         if (code != 3)
106                 serv_puts("QUIT");
107
108 /*
109  * now clean up various things
110  */
111
112         unlink(temp);
113         unlink(temp2);
114         nukedir(tempdir);
115
116         /* Violently kill off any child processes if Citadel is
117          * the login shell. 
118          */
119         if (getppid() == 1) {
120                 kill(0 - getpgrp(), SIGTERM);
121                 sleep(1);
122                 kill(0 - getpgrp(), SIGKILL);
123         }
124         sttybbs(SB_RESTORE);    /* return the old terminal settings */
125         exit(code);             /* exit with the proper exit code */
126 }
127
128
129
130 /*
131  * signal catching function for hangups...
132  */
133 void dropcarr(int signum)
134 {
135         logoff(SIGHUP);
136 }
137
138
139
140 /*
141  * catch SIGCONT to reset terminal modes when were are put back into the
142  * foreground.
143  */
144 void catch_sigcont(int signum)
145 {
146         sttybbs(SB_LAST);
147         signal(SIGCONT, catch_sigcont);
148 }
149
150
151
152 /* general purpose routines */
153
154 void formout(char *name)
155 {                               /* display a file */
156         char cmd[256];
157         snprintf(cmd, sizeof cmd, "MESG %s", name);
158         serv_puts(cmd);
159         serv_gets(cmd);
160         if (cmd[0] != '1') {
161                 printf("%s\n", &cmd[4]);
162                 return;
163         }
164         fmout(screenwidth, NULL,
165               ((userflags & US_PAGINATOR) ? 1 : 0),
166               screenheight, 1, 1);
167 }
168
169
170 void userlist(char *patn)
171 {
172         char buf[256];
173         char fl[256];
174         struct tm *tmbuf;
175         time_t lc;
176
177         serv_puts("LIST");
178         serv_gets(buf);
179         if (buf[0] != '1') {
180                 pprintf("%s\n", &buf[4]);
181                 return;
182         }
183         pprintf("       User Name           Num  L  LastCall  Calls Posts\n");
184         pprintf("------------------------- ----- - ---------- ----- -----\n");
185         while (serv_gets(buf), strcmp(buf, "000")) {
186                 if (sigcaught == 0) {
187                     extract(fl, buf, 0);
188                     if (pattern(fl, patn) >= 0) {
189                         pprintf("%-25s ", fl);
190                         pprintf("%5ld %d ", extract_long(buf, 2),
191                                extract_int(buf, 1));
192                         lc = extract_long(buf, 3);
193                         tmbuf = (struct tm *) localtime(&lc);
194                         pprintf("%02d/%02d/%04d ",
195                                (tmbuf->tm_mon + 1),
196                                tmbuf->tm_mday,
197                                (tmbuf->tm_year + 1900));
198                         pprintf("%5ld %5ld\n", extract_long(buf, 4), extract_long(buf, 5));
199                     }
200
201                 }
202         }
203         pprintf("\n");
204 }
205
206
207 /*
208  * grab assorted info about the user...
209  */
210 void load_user_info(char *params)
211 {
212         extract(fullname, params, 0);
213         axlevel = extract_int(params, 1);
214         timescalled = extract_int(params, 2);
215         posted = extract_int(params, 3);
216         userflags = extract_int(params, 4);
217         usernum = extract_long(params, 5);
218 }
219
220
221 /*
222  * Remove a room from the march list.  'floornum' is ignored unless
223  * 'roomname' is set to _FLOOR_, in which case all rooms on the requested
224  * floor will be removed from the march list.
225  */
226 void remove_march(char *roomname, int floornum)
227 {
228         struct march *mptr, *mptr2;
229
230         if (march == NULL)
231                 return;
232
233         if ((!strcasecmp(march->march_name, roomname))
234             || ((!strcasecmp(roomname, "_FLOOR_")) && (march->march_floor == floornum))) {
235                 mptr = march->next;
236                 free(march);
237                 march = mptr;
238                 return;
239         }
240         mptr2 = march;
241         for (mptr = march; mptr != NULL; mptr = mptr->next) {
242
243                 if ((!strcasecmp(mptr->march_name, roomname))
244                     || ((!strcasecmp(roomname, "_FLOOR_"))
245                         && (mptr->march_floor == floornum))) {
246
247                         mptr2->next = mptr->next;
248                         free(mptr);
249                         mptr = mptr2;
250                 } else {
251                         mptr2 = mptr;
252                 }
253         }
254 }
255
256
257 /*
258  * Locate the room on the march list which we most want to go to.  Each room
259  * is measured given a "weight" of preference based on various factors.
260  */
261 char *pop_march(int desired_floor)
262 {
263         static char TheRoom[ROOMNAMELEN];
264         int TheFloor = 0;
265         int TheOrder = 32767;
266         int TheWeight = 0;
267         int weight;
268         struct march *mptr = NULL;
269
270         strcpy(TheRoom, "_BASEROOM_");
271         if (march == NULL)
272                 return (TheRoom);
273
274         for (mptr = march; mptr != NULL; mptr = mptr->next) {
275                 weight = 0;
276                 if ((strcasecmp(mptr->march_name, "_BASEROOM_")))
277                         weight = weight + 10000;
278                 if (mptr->march_floor == desired_floor)
279                         weight = weight + 5000;
280
281                 weight = weight + ((128 - (mptr->march_floor)) * 128);
282                 weight = weight + (128 - (mptr->march_order));
283
284                 if (weight > TheWeight) {
285                         TheWeight = weight;
286                         strcpy(TheRoom, mptr->march_name);
287                         TheFloor = mptr->march_floor;
288                         TheOrder = mptr->march_order;
289                 }
290         }
291         return (TheRoom);
292 }
293
294
295 /*
296  * jump directly to a room
297  */
298 void dotgoto(char *towhere, int display_name)
299 {
300         char aaa[256], bbb[256], psearch[256];
301         static long ls = 0L;
302         int newmailcount;
303         static int oldmailcount = (-1);
304         int partial_match, best_match;
305         char from_floor;
306
307         /* store ungoto information */
308         strcpy(ugname, room_name);
309         uglsn = ls;
310
311         /* first try an exact match */
312         snprintf(aaa, sizeof aaa, "GOTO %s", towhere);
313         serv_puts(aaa);
314         serv_gets(aaa);
315         if (aaa[3] == '*')
316                 express_msgs = 1;
317         if (!strncmp(aaa, "54", 2)) {
318                 newprompt("Enter room password: ", bbb, 9);
319                 snprintf(aaa, sizeof aaa, "GOTO %s|%s", towhere, bbb);
320                 serv_puts(aaa);
321                 serv_gets(aaa);
322                 if (aaa[3] == '*')
323                         express_msgs = 1;
324         }
325         if (!strncmp(aaa, "54", 2)) {
326                 printf("Wrong password.\n");
327                 return;
328         }
329         /*
330          * If a match is not found, try a partial match.
331          * Partial matches anywhere in the string carry a weight of 1,
332          * left-aligned matches carry a weight of 2.  Pick the room that
333          * has the highest-weighted match.
334          */
335         if (aaa[0] != '2') {
336                 best_match = 0;
337                 strcpy(bbb, "");
338                 serv_puts("LKRA");
339                 serv_gets(aaa);
340                 if (aaa[0] == '1')
341                         while (serv_gets(aaa), strcmp(aaa, "000")) {
342                                 extract(psearch, aaa, 0);
343                                 partial_match = 0;
344                                 if (pattern(psearch, towhere) >= 0) {
345                                         partial_match = 1;
346                                 }
347                                 if (!strncasecmp(towhere, psearch, strlen(towhere))) {
348                                         partial_match = 2;
349                                 }
350                                 if (partial_match > best_match) {
351                                         strcpy(bbb, psearch);
352                                         best_match = partial_match;
353                                 }
354                         }
355                 if (strlen(bbb) == 0) {
356                         printf("No room '%s'.\n", towhere);
357                         return;
358                 }
359                 snprintf(aaa, sizeof aaa, "GOTO %s", bbb);
360                 serv_puts(aaa);
361                 serv_gets(aaa);
362                 if (aaa[3] == '*')
363                         express_msgs = 1;
364         }
365         if (aaa[0] != '2') {
366                 printf("%s\n", aaa);
367                 return;
368         }
369         extract(room_name, &aaa[4], 0);
370         room_flags = extract_int(&aaa[4], 4);
371         from_floor = curr_floor;
372         curr_floor = extract_int(&aaa[4], 10);
373
374         remove_march(room_name, 0);
375         if (!strcasecmp(towhere, "_BASEROOM_"))
376                 remove_march(towhere, 0);
377         if ((from_floor != curr_floor) && (display_name > 0) && (floor_mode == 1)) {
378                 if (floorlist[(int) curr_floor][0] == 0)
379                         load_floorlist();
380                 printf("(Entering floor: %s)\n", &floorlist[(int) curr_floor][0]);
381         }
382         if (display_name == 1) {
383                 color(BRIGHT_WHITE);
384                 printf("%s ", room_name);
385                 color(DIM_WHITE);
386                 printf("- ");
387         }
388         if (display_name != 2) {
389                 color(BRIGHT_YELLOW);
390                 printf("%d ", extract_int(&aaa[4], 1));
391                 color(DIM_WHITE);
392                 printf("new of ");
393                 color(BRIGHT_YELLOW);
394                 printf("%d ", extract_int(&aaa[4], 2));
395                 color(DIM_WHITE);
396                 printf("messages.\n");
397         }
398         highest_msg_read = extract_int(&aaa[4], 6);
399         maxmsgnum = extract_int(&aaa[4], 5);
400         is_mail = (char) extract_int(&aaa[4], 7);
401         is_room_aide = (char) extract_int(&aaa[4], 8);
402         ls = extract_long(&aaa[4], 6);
403
404         /* read info file if necessary */
405         if (extract_int(&aaa[4], 3) > 0)
406                 readinfo();
407
408         /* check for newly arrived mail if we can */
409         if (num_parms(&aaa[4]) >= 10) {
410                 newmailcount = extract_int(&aaa[4], 9);
411                 if ((oldmailcount >= 0) && (newmailcount > oldmailcount)) {
412                         color(BRIGHT_RED);
413                         printf("*** You have new mail\n");
414                         color(DIM_WHITE);
415                 }
416                 oldmailcount = newmailcount;
417         }
418 }
419
420 /* Goto next room having unread messages.
421  * We want to skip over rooms that the user has already been to, and take the
422  * user back to the lobby when done.  The room we end up in is placed in
423  * newroom - which is set to 0 (the lobby) initially.
424  */
425 void gotonext(void)
426 {
427         char buf[256];
428         struct march *mptr, *mptr2;
429         char next_room[ROOMNAMELEN];
430
431         /* Check to see if the march-mode list is already allocated.
432          * If it is, pop the first room off the list and go there.
433          */
434         if (march == NULL) {
435                 serv_puts("LKRN");
436                 serv_gets(buf);
437                 if (buf[0] == '1')
438                         while (serv_gets(buf), strcmp(buf, "000")) {
439                                 mptr = (struct march *) malloc(sizeof(struct march));
440                                 mptr->next = NULL;
441                                 extract(mptr->march_name, buf, 0);
442                                 mptr->march_floor = (char) (extract_int(buf, 2) & 0x7F);
443                                 mptr->march_order = (char) (extract_int(buf, 3) & 0x7F);
444                                 if (march == NULL) {
445                                         march = mptr;
446                                 } else {
447                                         mptr2 = march;
448                                         while (mptr2->next != NULL)
449                                                 mptr2 = mptr2->next;
450                                         mptr2->next = mptr;
451                                 }
452                         }
453 /* add _BASEROOM_ to the end of the march list, so the user will end up
454  * in the system base room (usually the Lobby>) at the end of the loop
455  */
456                 mptr = (struct march *) malloc(sizeof(struct march));
457                 mptr->next = NULL;
458                 strcpy(mptr->march_name, "_BASEROOM_");
459                 if (march == NULL) {
460                         march = mptr;
461                 } else {
462                         mptr2 = march;
463                         while (mptr2->next != NULL)
464                                 mptr2 = mptr2->next;
465                         mptr2->next = mptr;
466                 }
467 /*
468  * ...and remove the room we're currently in, so a <G>oto doesn't make us
469  * walk around in circles
470  */
471                 remove_march(room_name, 0);
472         }
473         if (march != NULL) {
474                 strcpy(next_room, pop_march(curr_floor));
475         } else {
476                 strcpy(next_room, "_BASEROOM_");
477         }
478         remove_march(next_room, 0);
479         dotgoto(next_room, 1);
480 }
481
482 /*
483  * forget all rooms on a given floor
484  */
485 void forget_all_rooms_on(int ffloor)
486 {
487         char buf[256];
488         struct march *flist, *fptr;
489
490         printf("Forgetting all rooms on %s...\r", &floorlist[ffloor][0]);
491         fflush(stdout);
492         snprintf(buf, sizeof buf, "LKRA %d", ffloor);
493         serv_puts(buf);
494         serv_gets(buf);
495         if (buf[0] != '1') {
496                 printf("%-72s\n", &buf[4]);
497                 return;
498         }
499         flist = NULL;
500         while (serv_gets(buf), strcmp(buf, "000")) {
501                 fptr = (struct march *) malloc(sizeof(struct march));
502                 fptr->next = flist;
503                 flist = fptr;
504                 extract(fptr->march_name, buf, 0);
505         }
506         while (flist != NULL) {
507                 snprintf(buf, sizeof buf, "GOTO %s", flist->march_name);
508                 serv_puts(buf);
509                 serv_gets(buf);
510                 if (buf[0] == '2') {
511                         serv_puts("FORG");
512                         serv_gets(buf);
513                 }
514                 fptr = flist;
515                 flist = flist->next;
516                 free(fptr);
517         }
518         printf("%-72s\r", "");
519 }
520
521
522 /*
523  * routine called by gotofloor() to move to a new room on a new floor
524  */
525 void gf_toroom(char *towhere, int mode)
526 {
527         int floor_being_left;
528
529         floor_being_left = curr_floor;
530
531         if (mode == GF_GOTO) {  /* <;G>oto mode */
532                 updatels();
533                 dotgoto(towhere, 1);
534         }
535         if (mode == GF_SKIP) {  /* <;S>kip mode */
536                 dotgoto(towhere, 1);
537                 remove_march("_FLOOR_", floor_being_left);
538         }
539         if (mode == GF_ZAP) {   /* <;Z>ap mode */
540                 dotgoto(towhere, 1);
541                 remove_march("_FLOOR_", floor_being_left);
542                 forget_all_rooms_on(floor_being_left);
543         }
544 }
545
546
547 /*
548  * go to a new floor
549  */
550 void gotofloor(char *towhere, int mode)
551 {
552         int a, tofloor;
553         struct march *mptr;
554         char buf[256], targ[256];
555
556         if (floorlist[0][0] == 0)
557                 load_floorlist();
558         tofloor = (-1);
559         for (a = 0; a < 128; ++a)
560                 if (!strcasecmp(&floorlist[a][0], towhere))
561                         tofloor = a;
562
563         if (tofloor < 0) {
564                 for (a = 0; a < 128; ++a) {
565                         if (!strncasecmp(&floorlist[a][0], towhere, strlen(towhere))) {
566                                 tofloor = a;
567                         }
568                 }
569         }
570         if (tofloor < 0) {
571                 for (a = 0; a < 128; ++a)
572                         if (pattern(towhere, &floorlist[a][0]) > 0)
573                                 tofloor = a;
574         }
575         if (tofloor < 0) {
576                 printf("No floor '%s'.\n", towhere);
577                 return;
578         }
579         for (mptr = march; mptr != NULL; mptr = mptr->next) {
580                 if ((mptr->march_floor) == tofloor)
581                         gf_toroom(mptr->march_name, mode);
582                 return;
583         }
584
585         strcpy(targ, "");
586         snprintf(buf, sizeof buf, "LKRA %d", tofloor);
587         serv_puts(buf);
588         serv_gets(buf);
589         if (buf[0] == '1')
590                 while (serv_gets(buf), strcmp(buf, "000")) {
591                         if ((extract_int(buf, 2) == tofloor) && (strlen(targ) == 0))
592                                 extract(targ, buf, 0);
593                 }
594         if (strlen(targ) > 0) {
595                 gf_toroom(targ, mode);
596         } else {
597                 printf("There are no rooms on '%s'.\n", &floorlist[tofloor][0]);
598         }
599 }
600
601
602 /*
603  * forget all rooms on current floor
604  */
605 void forget_this_floor(void)
606 {
607
608         if (curr_floor == 0) {
609                 printf("Can't forget this floor.\n");
610                 return;
611         }
612         if (floorlist[0][0] == 0)
613                 load_floorlist();
614         printf("Are you sure you want to forget all rooms on %s? ",
615                &floorlist[(int) curr_floor][0]);
616         if (yesno() == 0)
617                 return;
618
619         gf_toroom("_BASEROOM_", GF_ZAP);
620 }
621
622
623 /* 
624  * Figure out the physical screen dimensions, if we can
625  */
626 void check_screen_dims(void)
627 {
628 #ifdef TIOCGWINSZ
629         struct {
630                 unsigned short height;  /* rows */
631                 unsigned short width;   /* columns */
632                 unsigned short xpixels;
633                 unsigned short ypixels;         /* pixels */
634         } xwinsz;
635
636         if (have_xterm) {       /* dynamically size screen if on an xterm */
637                 if (ioctl(0, TIOCGWINSZ, &xwinsz) == 0) {
638                         if (xwinsz.height)
639                                 screenheight = (int) xwinsz.height;
640                         if (xwinsz.width)
641                                 screenwidth = (int) xwinsz.width;
642                 }
643         }
644 #endif
645 }
646
647
648 /*
649  * set floor mode depending on client, server, and user settings
650  */
651 void set_floor_mode(void)
652 {
653         if (serv_info.serv_ok_floors == 0) {
654                 floor_mode = 0; /* Don't use floors if the server */
655         }
656         /* doesn't support them!          */
657         else {
658                 if (rc_floor_mode == RC_NO) {   /* never use floors */
659                         floor_mode = 0;
660                 }
661                 if (rc_floor_mode == RC_YES) {  /* always use floors */
662                         floor_mode = 1;
663                 }
664                 if (rc_floor_mode == RC_DEFAULT) {      /* user choice */
665                         floor_mode = ((userflags & US_FLOORS) ? 1 : 0);
666                 }
667         }
668 }
669
670 /*
671  * Set or change the user's password
672  */
673 int set_password(void)
674 {
675         char pass1[20];
676         char pass2[20];
677         char buf[256];
678
679         if (strlen(rc_password) > 0) {
680                 strcpy(pass1, rc_password);
681                 strcpy(pass2, rc_password);
682         } else {
683                 IFNEXPERT formout("changepw");
684                 newprompt("Enter a new password: ", pass1, -19);
685                 newprompt("Enter it again to confirm: ", pass2, -19);
686         }
687         strproc(pass1);
688         strproc(pass2);
689         if (!strcasecmp(pass1, pass2)) {
690                 snprintf(buf, sizeof buf, "SETP %s", pass1);
691                 serv_puts(buf);
692                 serv_gets(buf);
693                 printf("%s\n", &buf[4]);
694                 offer_to_remember_password(hostbuf, portbuf, fullname, pass1);
695                 return (0);
696         } else {
697                 printf("*** They don't match... try again.\n");
698                 return (1);
699         }
700 }
701
702
703
704 /*
705  * get info about the server we've connected to
706  */
707 void get_serv_info(void)
708 {
709         char buf[512];
710
711         CtdlInternalGetServInfo(&serv_info);
712
713         /* be nice and identify ourself to the server */
714         snprintf(buf, sizeof buf, "IDEN %d|%d|%d|%s|",
715                  SERVER_TYPE, 0, REV_LEVEL,
716                  (server_is_local ? "local" : CITADEL));
717         locate_host(&buf[strlen(buf)]);         /* append to the end */
718         serv_puts(buf);
719         serv_gets(buf);         /* we don't care about the result code */
720 }
721
722
723
724
725
726 /*
727  * Display list of users currently logged on to the server
728  */
729 void who_is_online(int longlist)
730 {
731         char buf[128], username[128], roomname[128], fromhost[128],
732          flags[128];
733         char tbuf[128], clientsoft[128];
734         time_t timenow = 0;
735         time_t idletime, idlehours, idlemins, idlesecs;
736         int last_session = (-1);
737
738         if (longlist) {
739                 serv_puts("TIME");
740                 serv_gets(tbuf);
741                 if (tbuf[0] == '2') {
742                         timenow = extract_long(&tbuf[4], 0);
743                 } else {
744                         time(&timenow);
745                 }
746         } else {
747                 color(BRIGHT_WHITE);
748                 pprintf("FLG ###        User Name                 Room                 From host\n");
749                 color(DIM_WHITE);
750                 pprintf("--- --- ------------------------- -------------------- ------------------------\n");
751         }
752         serv_puts("RWHO");
753         serv_gets(buf);
754         if (buf[0] == '1') {
755                 while (serv_gets(buf), strcmp(buf, "000")) {
756                         extract(username, buf, 1);
757                         extract(roomname, buf, 2);
758                         extract(fromhost, buf, 3);
759                         extract(clientsoft, buf, 4);
760                         extract(flags, buf, 7);
761
762                         if (longlist) {
763                                 idletime = timenow - extract_long(buf, 5);
764                                 idlehours = idletime / 3600;
765                                 idlemins = (idletime - (idlehours * 3600)) / 60;
766                                 idlesecs = (idletime - (idlehours * 3600) - (idlemins * 60));
767                                 pprintf("\nFlags: %-3s  Sess# %-3d  Name: %-25s  Room: %s\n",
768                                        flags, extract_int(buf, 0), username, roomname);
769                                 pprintf("from <%s> using <%s>, idle %ld:%02ld:%02ld\n",
770                                        fromhost, clientsoft,
771                                        (long) idlehours, (long) idlemins, (long) idlesecs);
772
773                         } else {
774                                 if (extract_int(buf, 0) == last_session) {
775                                         pprintf("        ");
776                                 } else {
777                                         color(BRIGHT_MAGENTA);
778                                         pprintf("%-3s ", flags);
779                                         color(DIM_WHITE);
780                                         pprintf("%-3d ", extract_int(buf, 0));
781                                 }
782                                 last_session = extract_int(buf, 0);
783                                 color(BRIGHT_CYAN);
784                                 pprintf("%-25s ", username);
785                                 color(BRIGHT_MAGENTA);
786                                 roomname[20] = 0;
787                                 pprintf("%-20s ", roomname);
788                                 color(BRIGHT_CYAN);
789                                 pprintf("%-24s\n", fromhost);
790                                 color(DIM_WHITE);
791                         }
792                 }
793         }
794 }
795
796 void enternew(char *desc, char *buf, int maxlen)
797 {
798         char bbb[128];
799         snprintf(bbb, sizeof bbb, "Enter in your new %s: ", desc);
800         newprompt(bbb, buf, maxlen);
801 }
802
803 /*
804  * main
805  */
806 int main(int argc, char **argv)
807 {
808         int a, b, mcmd;
809         char aaa[100], bbb[100];/* general purpose variables */
810         char argbuf[32];        /* command line buf */
811         volatile int termn8 = 0;
812         int stored_password = 0;
813         char password[256];
814
815         sttybbs(SB_SAVE);       /* Store the old terminal parameters */
816         load_command_set();     /* parse the citadel.rc file */
817         sttybbs(SB_NO_INTR);    /* Install the new ones */
818         signal(SIGINT, SIG_IGN);
819         signal(SIGQUIT, SIG_IGN);
820         signal(SIGHUP, dropcarr);       /* Cleanup gracefully if carrier is dropped */
821         signal(SIGTERM, dropcarr);      /* Cleanup gracefully if terminated */
822         signal(SIGCONT, catch_sigcont);         /* Catch SIGCONT so we can reset terminal */
823
824         printf("Attaching to server... \r");
825         fflush(stdout);
826         attach_to_server(argc, argv, hostbuf, portbuf);
827
828         send_ansi_detect();
829
830         serv_gets(aaa);
831         if (aaa[0] != '2') {
832                 printf("%s\n", &aaa[4]);
833                 logoff(atoi(aaa));
834         }
835         get_serv_info();
836
837         look_for_ansi();
838         cls(0);
839         color(7);
840
841         printf("%-23s\n%s\n%s\n", serv_info.serv_software, serv_info.serv_humannode,
842                serv_info.serv_bbs_city);
843         screenwidth = 80;       /* default screen dimensions */
844         screenheight = 24;
845
846         printf(" pause    next    stop\n");
847         printf(" ctrl-s  ctrl-o  ctrl-c\n\n");
848         formout("hello");       /* print the opening greeting */
849         printf("\n");
850
851 GSTA:   /* See if we have a username and password on disk */
852         if (rc_remember_passwords) {
853                 get_stored_password(hostbuf, portbuf, fullname, password);
854                 if (strlen(fullname) > 0) {
855                         sprintf(aaa, "USER %s", fullname);
856                         serv_puts(aaa);
857                         serv_gets(aaa);
858                         sprintf(aaa, "PASS %s", password);
859                         serv_puts(aaa);
860                         serv_gets(aaa);
861                         if (aaa[0] == '2') {
862                                 load_user_info(&aaa[4]);
863                                 stored_password = 1;
864                                 goto PWOK;
865                         }
866                         else {
867                                 set_stored_password(hostbuf, portbuf, "", "");
868                         }
869                 }
870         }
871
872         termn8 = 0;
873         newnow = 0;
874         do {
875                 if (strlen(rc_username) > 0) {
876                         strcpy(fullname, rc_username);
877                 } else {
878                         newprompt("Enter your name: ", fullname, 29);
879                 }
880                 strproc(fullname);
881                 if (!strcasecmp(fullname, "new")) {     /* just in case */
882                         printf("Please enter the name you wish to log in with.\n");
883                 }
884         } while (
885                         (!strcasecmp(fullname, "bbs"))
886                         || (!strcasecmp(fullname, "new"))
887                         || (strlen(fullname) == 0));
888
889         if (!strcasecmp(fullname, "off")) {
890                 mcmd = 29;
891                 goto TERMN8;
892         }
893         /* sign on to the server */
894         snprintf(aaa, sizeof aaa, "USER %s", fullname);
895         serv_puts(aaa);
896         serv_gets(aaa);
897         if (aaa[0] != '3')
898                 goto NEWUSR;
899
900         /* password authentication */
901         if (strlen(rc_password) > 0) {
902                 strcpy(password, rc_password);
903         } else {
904                 newprompt("\rPlease enter your password: ", password, -19);
905         }
906         strproc(password);
907         snprintf(aaa, sizeof aaa, "PASS %s", password);
908         serv_puts(aaa);
909         serv_gets(aaa);
910         if (aaa[0] == '2') {
911                 load_user_info(&aaa[4]);
912                 offer_to_remember_password(hostbuf, portbuf,
913                                         fullname, password);
914                 goto PWOK;
915         }
916         printf("<< wrong password >>\n");
917         if (strlen(rc_password) > 0)
918                 logoff(0);
919         goto GSTA;
920
921 NEWUSR: if (strlen(rc_password) == 0) {
922                 printf("No record. Enter as new user? ");
923                 if (yesno() == 0)
924                         goto GSTA;
925         }
926         snprintf(aaa, sizeof aaa, "NEWU %s", fullname);
927         serv_puts(aaa);
928         serv_gets(aaa);
929         if (aaa[0] != '2') {
930                 printf("%s\n", aaa);
931                 goto GSTA;
932         }
933         load_user_info(&aaa[4]);
934
935         while (set_password() != 0);;
936         newnow = 1;
937
938         enter_config(1);
939
940
941 PWOK:   printf("%s\nAccess level: %d (%s)\nUser #%ld / Call #%d\n",
942                fullname, axlevel, axdefs[(int) axlevel],
943                usernum, timescalled);
944
945         serv_puts("CHEK");
946         serv_gets(aaa);
947         if (aaa[0] == '2') {
948                 b = extract_int(&aaa[4], 0);
949                 if (b > 0) {
950                         color(BRIGHT_RED);
951                         if (b == 1)
952                                 printf("*** You have a new private message in Mail>\n");
953                         if (b > 1)
954                                 printf("*** You have %d new private messages in Mail>\n", b);
955                         color(DIM_WHITE);
956                 }
957                 if ((axlevel >= 6) && (extract_int(&aaa[4], 2) > 0)) {
958                         printf("*** Users need validation\n");
959                 }
960                 if (extract_int(&aaa[4], 1) > 0) {
961                         printf("*** Please register.\n");
962                         formout("register");
963                         entregis();
964                 }
965         }
966         /* Make up some temporary filenames for use in various parts of the
967          * program.  Don't mess with these once they've been set, because we
968          * will be unlinking them later on in the program and we don't
969          * want to delete something that we didn't create. */
970         snprintf(temp, sizeof temp, tmpnam(NULL));
971         snprintf(temp2, sizeof temp2, tmpnam(NULL));
972         snprintf(tempdir, sizeof tempdir, tmpnam(NULL));
973
974         /* Get screen dimensions.  First we go to a default of 80x24.  Then
975          * we try to get the user's actual screen dimensions off the server.
976          * However, if we're running on an xterm, all this stuff is
977          * irrelevant because we're going to dynamically size the screen
978          * during the session.
979          */
980         screenwidth = 80;
981         screenheight = 24;
982         serv_puts("GETU");
983         serv_gets(aaa);
984         if (aaa[0] == '2') {
985                 screenwidth = extract_int(&aaa[4], 0);
986                 screenheight = extract_int(&aaa[4], 1);
987         }
988         if (getenv("TERM") != NULL)
989                 if (!strcmp(getenv("TERM"), "xterm")) {
990                         have_xterm = 1;
991                 }
992 #ifdef TIOCGWINSZ
993         check_screen_dims();
994 #endif
995
996         set_floor_mode();
997
998
999         /* Enter the lobby */
1000         dotgoto("_BASEROOM_", 1);
1001
1002 /* Main loop for the system... user is logged in. */
1003         strcpy(ugname, "");
1004         uglsn = 0L;
1005
1006         if (newnow == 1)
1007                 readmsgs(3, 1, 5);
1008         else
1009                 readmsgs(1, 1, 0);
1010
1011         do {                    /* MAIN LOOP OF PROGRAM */
1012
1013                 signal(SIGINT, SIG_IGN);
1014                 signal(SIGQUIT, SIG_IGN);
1015                 mcmd = getcmd(argbuf);
1016
1017 #ifdef TIOCGWINSZ
1018                 check_screen_dims();
1019 #endif
1020
1021                 if (termn8 == 0)
1022                         switch (mcmd) {
1023                         case 1:
1024                                 formout("help");
1025                                 break;
1026                         case 4:
1027                                 entmsg(0, 0);
1028                                 break;
1029                         case 36:
1030                                 entmsg(0, 1);
1031                                 break;
1032                         case 46:
1033                                 entmsg(0, 2);
1034                                 break;
1035                         case 78:
1036                                 newprompt("What do you want your username to be? ", aaa, 32);
1037                                 snprintf(bbb, sizeof bbb, "ENT0 2|0|0|0|%s", aaa);
1038                                 serv_puts(bbb);
1039                                 serv_gets(aaa);
1040                                 if (strncmp("200", aaa, 3))
1041                                         printf("\n%s\n", aaa);
1042                                 else
1043                                         entmsg(0, 0);
1044                                 break;
1045                         case 5:
1046                                 updatels();
1047                                 gotonext();
1048                                 break;
1049                         case 47:
1050                                 updatelsa();
1051                                 gotonext();
1052                                 break;
1053                         case 58:
1054                                 updatelsa();
1055                                 dotgoto("_MAIL_", 1);
1056                                 break;
1057                         case 20:
1058                                 updatels();
1059                         case 52:
1060                                 dotgoto(argbuf, 0);
1061                                 break;
1062                         case 10:
1063                                 readmsgs(0, 1, 0);
1064                                 break;
1065                         case 9:
1066                                 readmsgs(3, 1, 5);
1067                                 break;
1068                         case 13:
1069                                 readmsgs(1, 1, 0);
1070                                 break;
1071                         case 11:
1072                                 readmsgs(0, (-1), 0);
1073                                 break;
1074                         case 12:
1075                                 readmsgs(2, (-1), 0);
1076                                 break;
1077                         case 71:
1078                                 readmsgs(3, 1, atoi(argbuf));
1079                                 break;
1080                         case 7:
1081                                 forget();
1082                                 break;
1083                         case 18:
1084                                 subshell();
1085                                 break;
1086                         case 38:
1087                                 updatels();
1088                                 entroom();
1089                                 break;
1090                         case 22:
1091                                 killroom();
1092                                 break;
1093                         case 32:
1094                                 userlist(argbuf);
1095                                 break;
1096                         case 27:
1097                                 invite();
1098                                 break;
1099                         case 28:
1100                                 kickout();
1101                                 break;
1102                         case 23:
1103                                 editthisroom();
1104                                 break;
1105                         case 14:
1106                                 roomdir();
1107                                 break;
1108                         case 33:
1109                                 download(0);
1110                                 break;
1111                         case 34:
1112                                 download(1);
1113                                 break;
1114                         case 31:
1115                                 download(2);
1116                                 break;
1117                         case 43:
1118                                 download(3);
1119                                 break;
1120                         case 45:
1121                                 download(4);
1122                                 break;
1123                         case 55:
1124                                 download(5);
1125                                 break;
1126                         case 39:
1127                                 upload(0);
1128                                 break;
1129                         case 40:
1130                                 upload(1);
1131                                 break;
1132                         case 42:
1133                                 upload(2);
1134                                 break;
1135                         case 44:
1136                                 upload(3);
1137                                 break;
1138                         case 57:
1139                                 cli_upload();
1140                                 break;
1141                         case 16:
1142                                 ungoto();
1143                                 break;
1144                         case 24:
1145                                 whoknows();
1146                                 break;
1147                         case 26:
1148                                 validate();
1149                                 break;
1150                         case 29:
1151                                 updatels();
1152                                 termn8 = 1;
1153                                 break;
1154                         case 30:
1155                                 updatels();
1156                                 termn8 = 1;
1157                                 break;
1158                         case 48:
1159                                 enterinfo();
1160                                 break;
1161                         case 49:
1162                                 readinfo();
1163                                 break;
1164                         case 72:
1165                                 cli_image_upload("_userpic_");
1166                                 break;
1167                         case 73:
1168                                 cli_image_upload("_roompic_");
1169                                 break;
1170
1171                         case 74:
1172                                 snprintf(aaa, sizeof aaa, "_floorpic_|%d", curr_floor);
1173                                 cli_image_upload(aaa);
1174                                 break;
1175
1176                         case 75:
1177                                 enternew("roomname", aaa, 20);
1178                                 snprintf(bbb, sizeof bbb, "RCHG %s", aaa);
1179                                 serv_puts(bbb);
1180                                 serv_gets(aaa);
1181                                 if (strncmp("200", aaa, 3))
1182                                         printf("\n%s\n", aaa);
1183                                 break;
1184                         case 76:
1185                                 enternew("hostname", aaa, 25);
1186                                 snprintf(bbb, sizeof bbb, "HCHG %s", aaa);
1187                                 serv_puts(bbb);
1188                                 serv_gets(aaa);
1189                                 if (strncmp("200", aaa, 3))
1190                                         printf("\n%s\n", aaa);
1191                                 break;
1192                         case 77:
1193                                 enternew("username", aaa, 32);
1194                                 snprintf(bbb, sizeof bbb, "UCHG %s", aaa);
1195                                 serv_puts(bbb);
1196                                 serv_gets(aaa);
1197                                 if (strncmp("200", aaa, 3))
1198                                         printf("\n%s\n", aaa);
1199                                 break;
1200
1201                         case 35:
1202                                 set_password();
1203                                 break;
1204
1205                         case 21:
1206                                 if (argbuf[0] == 0)
1207                                         strcpy(aaa, "?");
1208                                 display_help(argbuf);
1209                                 break;
1210
1211                         case 41:
1212                                 formout("register");
1213                                 entregis();
1214                                 break;
1215
1216                         case 15:
1217                                 printf("Are you sure (y/n)? ");
1218                                 if (yesno() == 1) {
1219                                         updatels();
1220                                         a = 0;
1221                                         termn8 = 1;
1222                                 }
1223                                 break;
1224
1225                         case 85:
1226                                 printf("All users will be disconnected!  "
1227                                         "Really terminate the server? ");
1228                                 if (yesno() == 1) {
1229                                         serv_puts("DOWN");
1230                                         serv_gets(aaa);
1231                                         printf("%s\n", &aaa[4]);
1232                                         if (aaa[0]=='2') {
1233                                                 updatels();
1234                                                 a = 0;
1235                                                 termn8 = 1;
1236                                         }
1237                                 }
1238
1239                         case 86:
1240                                 printf("Do you really want to schedule a "
1241                                         "server shutdown? ");
1242                                 if (yesno() == 1) {
1243                                         serv_puts("SCDN 1");
1244                                         serv_gets(aaa);
1245                                         if (aaa[0]=='2') {
1246                                                 if (atoi(&aaa[4])) {
1247                                                         printf(
1248 "The Citadel server will terminate when all users are logged off.\n"
1249                                                                 );
1250                                                 }
1251                                                 else {
1252                                                         printf(
1253 "The Citadel server will not terminate.\n"
1254                                                                 );
1255                                                 }
1256                                         }
1257                                 }
1258
1259                         case 6:
1260                                 gotonext();
1261                                 break;
1262
1263                         case 3:
1264                                 chatmode();
1265                                 break;
1266
1267                         case 2:
1268                                 if (server_is_local) {
1269                                         sttybbs(SB_RESTORE);
1270                                         snprintf(aaa, sizeof aaa, "USERNAME=\042%s\042; export USERNAME;"
1271                                                  "exec ./subsystem %ld %d %d", fullname,
1272                                           usernum, screenwidth, axlevel);
1273                                         ka_system(aaa);
1274                                         sttybbs(SB_NO_INTR);
1275                                 } else {
1276                                         printf("*** Can't run doors when server is not local.\n");
1277                                 }
1278                                 break;
1279
1280                         case 17:
1281                                 who_is_online(0);
1282                                 break;
1283
1284                         case 79:
1285                                 who_is_online(1);
1286                                 break;
1287
1288                         case 80:
1289                                 do_system_configuration();
1290                                 break;
1291
1292                         case 82:
1293                                 do_internet_configuration();
1294                                 break;
1295
1296                         case 83:
1297                                 check_message_base();
1298                                 break;
1299
1300                         case 84:
1301                                 quiet_mode();
1302                                 break;
1303
1304                         case 50:
1305                                 enter_config(2);
1306                                 break;
1307
1308                         case 37:
1309                                 enter_config(0);
1310                                 set_floor_mode();
1311                                 break;
1312
1313                         case 59:
1314                                 enter_config(3);
1315                                 set_floor_mode();
1316                                 break;
1317
1318                         case 60:
1319                                 gotofloor(argbuf, GF_GOTO);
1320                                 break;
1321
1322                         case 61:
1323                                 gotofloor(argbuf, GF_SKIP);
1324                                 break;
1325
1326                         case 62:
1327                                 forget_this_floor();
1328                                 break;
1329
1330                         case 63:
1331                                 create_floor();
1332                                 break;
1333
1334                         case 64:
1335                                 edit_floor();
1336                                 break;
1337
1338                         case 65:
1339                                 kill_floor();
1340                                 break;
1341
1342                         case 66:
1343                                 enter_bio();
1344                                 break;
1345
1346                         case 67:
1347                                 read_bio();
1348                                 break;
1349
1350                         case 25:
1351                                 edituser();
1352                                 break;
1353
1354                         case 8:
1355                                 knrooms(floor_mode);
1356                                 printf("\n");
1357                                 break;
1358
1359                         case 68:
1360                                 knrooms(2);
1361                                 printf("\n");
1362                                 break;
1363
1364                         case 69:
1365                                 misc_server_cmd(argbuf);
1366                                 break;
1367
1368                         case 70:
1369                                 edit_system_message(argbuf);
1370                                 break;
1371
1372                         case 19:
1373                                 listzrooms();
1374                                 printf("\n");
1375                                 break;
1376
1377                         case 51:
1378                                 deletefile();
1379                                 break;
1380
1381                         case 53:
1382                                 netsendfile();
1383                                 break;
1384
1385                         case 54:
1386                                 movefile();
1387                                 break;
1388
1389                         case 56:
1390                                 page_user();
1391                                 break;
1392
1393                         }       /* end switch */
1394         } while (termn8 == 0);
1395
1396       TERMN8:printf("%s logged out.\n", fullname);
1397         while (march != NULL)
1398                 remove_march(march->march_name, 0);
1399         if (mcmd == 30)
1400                 printf("\n\nType 'off' to hang up, or next user...\n");
1401         snprintf(aaa, sizeof aaa, "LOUT");
1402         serv_puts(aaa);
1403         serv_gets(aaa);
1404         if ((mcmd == 29) || (mcmd == 15)) {
1405                 formout("goodbye");
1406                 logoff(0);
1407         }
1408         goto GSTA;
1409
1410 }                               /* end main() */