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