]> code.citadel.org Git - citadel.git/blob - citadel/citadel.c
* citadel.c, citadel.h, commands.c: make client suspendable
[citadel.git] / citadel / citadel.c
1 /*
2  * Citadel/UX  
3  *
4  * citadel.c - Main source file.
5  *
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         sprintf(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         sprintf(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                 sprintf(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                 sprintf(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         sprintf(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                 sprintf(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         sprintf(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                 sprintf(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         sprintf(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], timestr[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            extract(timestr, tbuf, 1);
744            timenow = atol(timestr);
745         }
746         else {
747         printf("FLG ###        User Name                 Room                 From host\n");
748         printf("--- --- ------------------------- -------------------- ------------------------\n");
749                 }
750         serv_puts("RWHO");
751         serv_gets(buf);
752         if (buf[0]=='1') 
753         {
754                 while(serv_gets(buf), strcmp(buf,"000")) 
755                 {
756                         extract(username,buf,1);
757                         extract(roomname,buf,2);
758                         extract(fromhost,buf,3);
759                         extract(clientsoft, buf, 4);
760                         extract(idlebuf, buf,5);
761                         extract(flags,buf,7);
762
763                         if (longlist) {
764                                 idletime = timenow - atol(idlebuf);
765                                 idlehours = idletime / 3600;
766                                 idlemins = (idletime - (idlehours*3600)) / 60;
767                                 idlesecs = (idletime - (idlehours*3600) - (idlemins*60) );
768                                 printf("\nFlags: %-3s  Sess# %-3d  Name: %-25s  Room: %s\n",
769                                         flags, extract_int(buf,0), username, roomname);
770                                 printf("from <%s> using <%s>, idle %ld:%02ld:%02ld\n",
771                                         fromhost, clientsoft,
772                                         (long)idlehours, (long)idlemins, (long)idlesecs);
773
774                                 }
775                         else {
776                         printf("%-3s %-3d %-25s %-20s %-24s\n",
777                                 flags, extract_int(buf,0), username,
778                                 roomname, fromhost);
779                                 }
780                         }
781                 }
782         }
783
784 void enternew(char *desc, char *buf, int maxlen)
785 {
786    char bbb[128];
787    sprintf(bbb, "Enter in your new %s: ", desc);
788    newprompt(bbb, buf, maxlen);
789 }
790
791 /*
792  * main
793  */
794 int main(int argc, char **argv)
795 {
796 int a,b,mcmd;
797 int termn8 = 0;
798 char aaa[100],bbb[100],ccc[100],eee[100];       /* general purpose variables */
799 char argbuf[32];                                /* command line buf */
800
801
802 load_command_set();             /* parse the citadel.rc file */
803 sttybbs(SB_SAVE);               /* Store the old terminal parameters */
804 sttybbs(SB_NO_INTR);            /* Install the new ones */
805 signal(SIGINT,SIG_IGN);
806 signal(SIGQUIT,SIG_IGN);
807 signal(SIGHUP,dropcarr);        /* Cleanup gracefully if carrier is dropped */
808 signal(SIGTERM,dropcarr);       /* Cleanup gracefully if terminated */
809 signal(SIGCONT,catch_sigcont);  /* Catch SIGCONT so we can reset terminal */
810
811 send_ansi_detect();
812 printf("Attaching to server...\r");
813 fflush(stdout);
814 attach_to_server(argc,argv);
815
816 cls();
817 color(7);
818 serv_gets(aaa);
819 if (aaa[0]!='2') {
820         printf("%s\n",&aaa[4]);
821         logoff(atoi(aaa));
822         }
823 get_serv_info();
824
825 printf("%-22s\n%s\n%s\n",serv_info.serv_software,serv_info.serv_humannode,
826         serv_info.serv_bbs_city);
827 screenwidth = 80;               /* default screen dimensions */
828 screenheight = 24;
829
830 printf(" pause    next    stop\n");
831 printf(" ctrl-s  ctrl-o  ctrl-c\n\n");
832 formout("hello");               /* print the opening greeting */
833 printf("\n");
834
835         /* if we're not the login shell, try auto-login */
836 if (getppid()!=1) {
837         serv_puts("AUTO");
838         serv_gets(aaa);
839         if (aaa[0]=='2') {
840                 load_user_info(&aaa[4]);
841                 goto PWOK;
842                 }
843         }
844
845 look_for_ansi();
846
847 GSTA:   termn8=0; newnow=0;
848         do {
849                 if (strlen(rc_username) > 0) {
850                         strcpy(fullname,rc_username);
851                         }
852                 else {
853                         newprompt("Enter your name: ",fullname,29);
854                         }
855                 strproc(fullname); 
856                 if (!strucmp(fullname,"new")) {         /* just in case */
857                    printf("Please enter the name you wish to log in with.\n");
858                    }
859                 } while( 
860                         (!strucmp(fullname,"bbs"))
861                         || (!strucmp(fullname,"new"))
862                         || (strlen(fullname)==0) );
863
864         if (!strucmp(fullname,"off")) {
865                 mcmd=29;
866                 goto TERMN8;
867                 }
868
869         /* sign on to the server */
870         sprintf(aaa,"USER %s",fullname);
871         serv_puts(aaa);
872         serv_gets(aaa);
873         if (aaa[0]!='3') goto NEWUSR;
874
875         /* password authentication */
876         if (strlen(rc_password)>0) {
877                 strcpy(eee,rc_password);
878                 }
879         else {
880                 newprompt("\rPlease enter your password: ",eee,-19);
881                 }
882         strproc(eee);
883         sprintf(aaa,"PASS %s",eee);
884         serv_puts(aaa);
885         serv_gets(aaa);
886         if (aaa[0]=='2') {
887                 load_user_info(&aaa[4]);
888                 goto PWOK;
889                 }
890         
891         printf("<< wrong password >>\n");
892         if (strlen(rc_password)>0) logoff(0);
893         goto GSTA;
894
895 NEWUSR: if (strlen(rc_password)==0) {
896                 printf("No record. Enter as new user? ");
897                 if (yesno()==0) goto GSTA;
898                 }
899
900         sprintf(aaa,"NEWU %s",fullname);
901         serv_puts(aaa);
902         serv_gets(aaa);
903         if (aaa[0]!='2') {
904                 printf("%s\n",aaa);
905                 goto GSTA;
906                 }
907         load_user_info(&aaa[4]);
908
909         while (set_password() != 0) ;;
910         newnow=1;
911
912         enter_config(1);
913         
914
915 PWOK:   printf("%s\nAccess level: %d (%s)\nUser #%ld / Call #%d\n",
916                 fullname,axlevel,axdefs[(int)axlevel],
917                 usernum,timescalled);
918
919         serv_puts("CHEK");
920         serv_gets(aaa);
921         if (aaa[0]=='2') {
922                 b = extract_int(&aaa[4],0);
923                 if (b==1) printf("*** You have a new private message in Mail>\n");
924                 if (b>1)  printf("*** You have %d new private messages in Mail>\n",b);
925
926                 if ((axlevel>=6) && (extract_int(&aaa[4],2)>0)) {
927                         printf("*** Users need validation\n");
928                         }
929
930                 if (extract_int(&aaa[4],1)>0) {
931                         printf("*** Please register.\n");
932                         formout("register");
933                         entregis();
934                         }
935                 }
936
937         /* Make up some temporary filenames for use in various parts of the
938          * program.  Don't mess with these once they've been set, because we
939          * will be unlinking them later on in the program and we don't
940          * want to delete something that we didn't create. */
941         sprintf(temp,"/tmp/citA%d",getpid());
942         sprintf(temp2,"/tmp/citB%d",getpid());
943         sprintf(tempdir,"/tmp/citC%d",getpid());
944
945         /* Get screen dimensions.  First we go to a default of 80x24.  Then
946          * we try to get the user's actual screen dimensions off the server.
947          * However, if we're running on an xterm, all this stuff is
948          * irrelevant because we're going to dynamically size the screen
949          * during the session.
950          */
951         screenwidth = 80;
952         screenheight = 24;
953         serv_puts("GETU");
954         serv_gets(aaa);
955         if (aaa[0]=='2') {
956                 screenwidth = extract_int(&aaa[4],0);
957                 screenheight = extract_int(&aaa[4],1);
958                 }
959         if (getenv("TERM")!=NULL) if (!strcmp(getenv("TERM"),"xterm")) {
960                 have_xterm = 1;
961                 }
962 #ifdef TIOCGWINSZ
963         check_screen_dims();
964 #endif
965
966         set_floor_mode();
967
968
969         /* Enter the lobby */
970         dotgoto("_BASEROOM_",1);
971
972 /* Main loop for the system... user is logged in. */
973         strcpy(ugname,"");
974         uglsn = 0L;
975
976         if (newnow==1)  readmsgs(3,1,5);
977                 else    readmsgs(1,1,0);
978
979 do {    /* MAIN LOOP OF PROGRAM */
980         signal(SIGINT,SIG_IGN);
981         signal(SIGQUIT,SIG_IGN);
982         mcmd=getcmd(argbuf);
983
984 #ifdef TIOCGWINSZ
985         check_screen_dims();
986 #endif
987
988         if (termn8==0) switch(mcmd) {
989            case 1:      formout("help");
990                         break;
991            case 4:      entmsg(0,0);
992                         break;
993            case 36:     entmsg(0,1);
994                         break;
995            case 46:     entmsg(0,2);
996                         break;
997            case 78:     newprompt("What do you want your username to be? ", aaa, 32);
998                         sprintf(bbb, "ENT0 2|0|0|0|%s", aaa);
999                         serv_puts(bbb);
1000                         serv_gets(aaa);
1001                         if (strncmp("200", aaa, 3))
1002                            printf("\n%s\n", aaa);
1003                         else
1004                            entmsg(0, 0);
1005                         break;
1006            case 5:      updatels();
1007                         gotonext();
1008                         break;
1009            case 47:     updatelsa();
1010                         gotonext();
1011                         break;
1012            case 58:     updatelsa();
1013                         dotgoto("_MAIL_",1);
1014                         break;
1015            case 20:     updatels();
1016            case 52:     dotgoto(argbuf,0);
1017                         break;
1018            case 10:     readmsgs(0,1,0);
1019                         break;
1020            case 9:      readmsgs(3,1,5);
1021                         break;
1022            case 13:     readmsgs(1,1,0);
1023                         break;
1024            case 11:     readmsgs(0,(-1),0);
1025                         break;
1026            case 12:     readmsgs(2,(-1),0);
1027                         break;
1028            case 71:     readmsgs(3, 1, atoi(argbuf));
1029                         break;
1030            case 7:      forget();       break;
1031            case 18:     subshell();     break;
1032            case 38:     updatels();
1033                         entroom();      break;
1034            case 22:     killroom();     break;
1035            case 32:     userlist();     break;
1036            case 27:     invite();       break;
1037            case 28:     kickout();      break;
1038            case 23:     editthisroom(); break;
1039            case 14:     roomdir();      break;
1040            case 33:     download(0);    break;
1041            case 34:     download(1);    break;
1042            case 31:     download(2);    break;
1043            case 43:     download(3);    break;
1044            case 45:     download(4);    break;
1045            case 55:     download(5);    break;
1046            case 39:     upload(0);      break;
1047            case 40:     upload(1);      break;
1048            case 42:     upload(2);      break;
1049            case 44:     upload(3);      break;
1050            case 57:     cli_upload();   break;
1051            case 16:     ungoto();       break;
1052            case 24:     whoknows();     break;
1053            case 26:     validate();     break;
1054            case 29:     updatels();
1055                         termn8=1;
1056                         break;
1057            case 30:     updatels();
1058                         termn8=1;
1059                         break;
1060            case 48:     enterinfo();
1061                         break;
1062            case 49:     readinfo();
1063                         break;
1064            case 72:     cli_image_upload("_userpic_");
1065                         break;
1066            case 73:     cli_image_upload("_roompic_");
1067                         break;
1068
1069 case 74:
1070         sprintf(aaa, "_floorpic_|%d", curr_floor);
1071         cli_image_upload(aaa);
1072         break;
1073         
1074 case 75:
1075         enternew("roomname", aaa, 20);
1076         sprintf(bbb, "RCHG %s", aaa);
1077         serv_puts(bbb);
1078         serv_gets(aaa);
1079         if (strncmp("200",aaa, 3))
1080            printf("\n%s\n", aaa);
1081         break;
1082 case 76:
1083         enternew("hostname", aaa, 25);
1084         sprintf(bbb, "HCHG %s", aaa);
1085         serv_puts(bbb);
1086         serv_gets(aaa);
1087         if (strncmp("200",aaa, 3))
1088            printf("\n%s\n", aaa);
1089         break;
1090 case 77:
1091         enternew("username", aaa, 32);
1092         sprintf(bbb, "UCHG %s", aaa);
1093         serv_puts(bbb);
1094         serv_gets(aaa);
1095         if (strncmp("200",aaa, 3))
1096            printf("\n%s\n", aaa);
1097         break;
1098
1099 case 35:
1100         set_password();
1101         break;
1102
1103 case 21:
1104         if (argbuf[0]==0) strcpy(aaa,"?");
1105         display_help(argbuf);
1106         break;
1107
1108 case 41:
1109         formout("register");
1110         entregis();
1111         break;
1112
1113 case 15:
1114         printf("Are you sure (y/n)? ");
1115         if (yesno()==1) {
1116                 updatels();
1117                 a=0;
1118                 termn8=1;
1119                 }
1120         break;
1121
1122 case 6:
1123         gotonext();
1124         break;
1125
1126 case 3: chatmode();
1127         break;
1128
1129 case 2: if (server_is_local) {
1130                 sttybbs(SB_RESTORE);
1131 sprintf(aaa,"USERNAME=\042%s\042; export USERNAME; exec ./subsystem %ld %d %d",
1132                         fullname,
1133                         usernum,screenwidth,axlevel);
1134                 ka_system(aaa);
1135                 sttybbs(SB_NO_INTR);
1136                 }
1137         else {
1138                 printf("*** Can't run doors when server is not local.\n");
1139                 }
1140         break;
1141
1142 case 17:
1143         who_is_online(0);
1144         break;
1145
1146 case 79:
1147         who_is_online(1);
1148         break;
1149
1150 case 50:
1151         enter_config(2);
1152         break;
1153
1154 case 37:
1155         enter_config(0);
1156         set_floor_mode();
1157         break;
1158
1159 case 59:
1160         enter_config(3);
1161         set_floor_mode();
1162         break;
1163
1164 case 60:
1165         gotofloor(argbuf,GF_GOTO);
1166         break;
1167         
1168 case 61:
1169         gotofloor(argbuf,GF_SKIP);
1170         break;
1171         
1172 case 62:
1173         forget_this_floor();
1174         break;
1175
1176 case 63:
1177         create_floor();
1178         break;
1179
1180 case 64:
1181         edit_floor();
1182         break;
1183
1184 case 65:
1185         kill_floor();
1186         break;
1187
1188 case 66:
1189         enter_bio();
1190         break;
1191
1192 case 67:
1193         read_bio();
1194         break;
1195
1196 case 25:
1197         edituser();
1198         break;
1199
1200 case 8:
1201         knrooms(floor_mode);
1202         printf("\n");
1203         break;
1204
1205 case 68:
1206         knrooms(2);
1207         printf("\n");
1208         break;
1209
1210 case 69:
1211         misc_server_cmd(argbuf);
1212         break;
1213
1214 case 70:
1215         edit_system_message(argbuf);
1216         break;
1217
1218 case 19:
1219         listzrooms();
1220         printf("\n");
1221         break;
1222
1223 case 51:
1224         deletefile();
1225         break;
1226
1227 case 53:
1228         netsendfile();
1229         break;
1230
1231 case 54:
1232         movefile();
1233         break;
1234
1235 case 56:
1236         if (last_paged[0])
1237            sprintf(bbb, "Page who [%s]? ", last_paged);
1238         else
1239            sprintf(bbb, "Page who? ");
1240         newprompt(bbb,aaa,30);
1241         if (!aaa[0])
1242            strcpy(aaa, last_paged);
1243         strproc(aaa);
1244         newprompt("Message:  ",bbb,69);
1245         sprintf(ccc,"SEXP %s|%s",aaa,bbb);
1246         serv_puts(ccc);
1247         serv_gets(ccc);
1248         if (!strncmp("200", ccc, 3))
1249            strcpy(last_paged, aaa);
1250         printf("%s\n",&ccc[4]);
1251         break;
1252
1253         } /* end switch */
1254     } while(termn8==0);
1255
1256 TERMN8: printf("%s logged out.\n",fullname);
1257         while (march!=NULL) remove_march(march->march_name,0);
1258         if (mcmd==30)
1259                 printf("\n\nType 'off' to hang up, or next user...\n");
1260         sprintf(aaa,"LOUT");
1261         serv_puts(aaa);
1262         serv_gets(aaa);
1263         if ((mcmd==29)||(mcmd==15)) {
1264                 formout("goodbye");
1265                 logoff(0);
1266                 }
1267         goto GSTA;
1268
1269 } /* end main() */
1270