]> code.citadel.org Git - citadel.git/blob - citadel/routines.c
* Fixed the "idle timeout during paginator prompt" bug by reintroducting the
[citadel.git] / citadel / routines.c
1 /*
2  * $Id$
3  *
4  * Client-side support functions.
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 <sys/types.h>
16 #include <sys/ioctl.h>
17 #include <pwd.h>
18 #include <signal.h>
19 #include <dirent.h>
20 #include <errno.h>
21
22 #if TIME_WITH_SYS_TIME
23 # include <sys/time.h>
24 # include <time.h>
25 #else
26 # if HAVE_SYS_TIME_H
27 #  include <sys/time.h>
28 # else
29 #  include <time.h>
30 # endif
31 #endif
32 #ifdef HAVE_LIMITS_H
33 #include <limits.h>
34 #endif
35 #ifdef HAVE_UTMP_H
36 #include <utmp.h>
37 #endif
38 #ifdef HAVE_UTMPX_H
39 #include <utmpx.h>
40 #endif
41 #include "screen.h"
42
43 #ifndef HAVE_GETUTLINE
44 struct utmp *getutline(struct utmp *ut);
45 #endif
46
47 #define ROUTINES_C
48
49 #include "citadel.h"
50 #include "routines.h"
51 #include "commands.h"
52 #include "tools.h"
53 #include "citadel_decls.h"
54 #include "routines2.h"
55
56 #define IFAIDE if(axlevel>=6)
57 #define IFNAIDE if (axlevel<6)
58
59 extern unsigned userflags;
60 extern char *axdefs[7];
61 extern char sigcaught;
62 extern struct CtdlServInfo serv_info;
63 extern char rc_floor_mode;
64 extern int rc_ansi_color;
65 extern int rc_prompt_control;
66
67 /* Destructive backspace */
68 void back(int spaces) {
69         int a;
70         for (a=0; a<spaces; ++a) {
71                 scr_putc(8);
72                 scr_putc(32);
73                 scr_putc(8);
74         }
75 }
76
77 void hit_any_key(void) {                /* hit any key to continue */
78         int a,b;
79
80         color(COLOR_PUSH);
81         color(DIM_RED);
82         scr_printf("%s\r",serv_info.serv_moreprompt);
83         color(COLOR_POP);
84         sttybbs(0);
85         b=inkey();
86         for (a=0; a<strlen(serv_info.serv_moreprompt); ++a)
87                 scr_putc(' ');
88         scr_putc(13);
89         sttybbs(1);
90         if ( (rc_prompt_control == 1)
91            || ((rc_prompt_control == 3) && (userflags & US_PROMPTCTL)) ) {
92                 if (b == 'q' || b == 'Q' || b == 's' || b == 'S')
93                         b = STOP_KEY;
94                 if (b == 'n' || b == 'N')
95                         b = NEXT_KEY;
96         }
97         if (b==NEXT_KEY) sigcaught = SIGINT;
98         if (b==STOP_KEY) sigcaught = SIGQUIT;
99 }
100
101 /*
102  * change a user's access level
103  */
104 void edituser(void)
105 {
106         char buf[SIZ];
107         char who[SIZ];
108         char pass[SIZ];
109         int flags;
110         int timescalled;
111         int posted;
112         int axlevel;
113         long usernum;
114         time_t lastcall;
115         int userpurge;
116         int newnow = 0;
117
118         newprompt("User name: ",who,25);
119 AGUP:   snprintf(buf, sizeof buf, "AGUP %s",who);
120         serv_puts(buf);
121         serv_gets(buf);
122         if (buf[0]!='2') {
123                 scr_printf("%s\n",&buf[4]);
124                 scr_printf("Do you want to create this user? ");
125                 if (yesno()) {
126                         snprintf(buf, sizeof buf, "CREU %s", who);
127                         serv_puts(buf);
128                         serv_gets(buf);
129                         if (buf[0] == '2') {
130                                 newnow = 1;
131                                 goto AGUP;
132                         }
133                         scr_printf("%s\n",&buf[4]);
134                         return;
135                 }
136                 return;
137         }
138         extract(who, &buf[4], 0);
139         extract(pass, &buf[4], 1);
140         flags = extract_int(&buf[4], 2);
141         timescalled = extract_int(&buf[4], 3);
142         posted = extract_int(&buf[4], 4);
143         axlevel = extract_int(&buf[4], 5);
144         usernum = extract_long(&buf[4], 6);
145         lastcall = extract_long(&buf[4], 7);
146         userpurge = extract_int(&buf[4], 8);
147
148         val_user(who, 0); /* Display registration */
149
150         if (newnow) {
151                 newprompt("Password: ", pass, -19);
152         }
153         else if (boolprompt("Change password", 0)) {
154                 strprompt("Password", pass, -19);
155         }
156
157         axlevel = intprompt("Access level", axlevel, 0, 6);
158         if (boolprompt("Ask user to register again", !(flags & US_REGIS)))
159                 flags &= ~US_REGIS;
160         else
161                 flags |= US_REGIS;
162         timescalled = intprompt("Times called", timescalled, 0, INT_MAX);
163         posted = intprompt("Messages posted", posted, 0, INT_MAX);
164         lastcall = (boolprompt("Set last call to now", 0)?time(NULL):lastcall);
165         userpurge = intprompt("Purge time (in days, 0 for system default",
166                                 userpurge, 0, INT_MAX);
167
168         snprintf(buf, sizeof buf, "ASUP %s|%s|%d|%d|%d|%d|%ld|%ld|%d",
169                 who, pass, flags, timescalled, posted, axlevel, usernum,
170                 (long)lastcall, userpurge);
171         serv_puts(buf);
172         serv_gets(buf);
173         if (buf[0]!='2') {
174                 scr_printf("%s\n",&buf[4]);
175         }
176 }
177
178
179 int set_attr(int sval, char *prompt, unsigned int sbit)
180 {
181         int a;
182         int temp;
183
184         temp = sval;
185         color(DIM_WHITE);
186         scr_printf("%45s ", prompt);
187         color(DIM_MAGENTA);
188         scr_printf("[");
189         color(BRIGHT_MAGENTA);
190         scr_printf("%3s", ((temp&sbit) ? "Yes":"No"));
191         color(DIM_MAGENTA);
192         scr_printf("]? ");
193         color(BRIGHT_CYAN);
194         a=yesno_d(temp&sbit);
195         color(DIM_WHITE);
196         temp=(temp|sbit);
197         if (!a) temp=(temp^sbit);
198         return(temp);
199 }
200
201 /*
202  * modes are:  0 - .EC command, 1 - .EC for new user,
203  *             2 - toggle Xpert mode  3 - toggle floor mode
204  */
205 void enter_config(int mode)
206 {
207         int width, height, flags, filter;
208         char buf[128];
209
210         snprintf(buf, sizeof buf, "GETU");
211         serv_puts(buf);
212         serv_gets(buf);
213         if (buf[0]!='2') {
214                 scr_printf("%s\n",&buf[4]);
215                 return;
216         }
217
218         width = extract_int(&buf[4],0);
219         height = extract_int(&buf[4],1);
220         flags = extract_int(&buf[4],2);
221         filter = extract_int(&buf[4],3);
222
223         if ((mode==0)||(mode==1)) {
224
225          width = intprompt("Enter your screen width",width,20,255);
226          height = intprompt("Enter your screen height",height,3,255);
227  
228          flags = set_attr(flags,
229                 "Are you an experienced Citadel user",US_EXPERT);
230          if ( ((flags&US_EXPERT)==0) && (mode==1))
231                 return;
232          flags = set_attr(flags,
233                 "Print last old message on New message request",US_LASTOLD);
234          if ((flags&US_EXPERT)==0) formout("unlisted");
235          flags = set_attr(flags,"Be unlisted in userlog",US_UNLISTED);
236          flags = set_attr(flags,"Suppress message prompts",US_NOPROMPT);
237          if ((flags & US_NOPROMPT)==0)
238             flags = set_attr(flags,"Use 'disappearing' prompts",US_DISAPPEAR);
239          flags = set_attr(flags,
240                 "Pause after each screenful of text",US_PAGINATOR);
241          if ( (rc_prompt_control == 3) && (flags & US_PAGINATOR) ) {
242                 flags = set_attr(flags,
243                 "<N>ext and <S>top work at paginator prompt", US_PROMPTCTL);
244          }
245          if (rc_floor_mode == RC_DEFAULT) {
246           flags = set_attr(flags,
247                 "View rooms by floor",US_FLOORS);
248           }
249          if (rc_ansi_color == 3) {
250           flags = set_attr(flags,
251                 "Enable color support",US_COLOR);
252           }
253         
254          }
255
256         if (mode==2) {
257          if (flags & US_EXPERT) {
258                 flags = (flags ^ US_EXPERT);
259                 scr_printf("Expert mode now OFF\n");
260                 }
261          else {
262                 flags = (flags | US_EXPERT);
263                 scr_printf("Expert mode now ON\n");
264                 }
265          }
266
267         if (mode==3) {
268          if (flags & US_FLOORS) {
269                 flags = (flags ^ US_FLOORS);
270                 scr_printf("Floor mode now OFF\n");
271                 }
272          else {
273                 flags = (flags | US_FLOORS);
274                 scr_printf("Floor mode now ON\n");
275                 }
276          }
277
278         snprintf(buf, sizeof buf, "SETU %d|%d|%d|%d",width,height,flags,filter);
279         serv_puts(buf);
280         serv_gets(buf);
281         if (buf[0]!='2') scr_printf("%s\n",&buf[4]);
282         userflags = flags;
283 }
284
285 /*
286  * getstring()  -  get a line of text from a file
287  *                 ignores lines beginning with "#"
288  */
289 int getstring(FILE *fp, char *string)
290 {
291         int a,c;
292         do {
293                 strcpy(string,"");
294                 a=0;
295                 do {
296                         c=getc(fp);
297                         if (c<0) {
298                                 string[a]=0;
299                                 return(-1);
300                         }
301                         string[a++]=c;
302                 } while(c!=10);
303                         string[a-1]=0;
304         } while(string[0]=='#');
305         return(strlen(string));
306 }
307
308
309 /* Searches for patn in search string */
310 int pattern(char *search, char *patn) {
311         int a,b;
312
313         for (a=0; a<strlen(search); ++a) {
314                 b=strncasecmp(&search[a],patn,strlen(patn));
315                 if (b==0) return(b);
316         }
317         return(-1);
318 }
319
320
321 /* display internal error as defined in errmsgs */
322 void interr(int errnum) {
323         scr_printf("*** INTERNAL ERROR %d\n"
324                 "(Press any key to continue)\n", errnum);
325         inkey();
326         logoff(errnum);
327 }
328
329 void strproc(char *string)
330 {
331         int a;
332
333         if (strlen(string)==0) return;
334
335         /* Convert non-printable characters to blanks */
336         for (a=0; a<strlen(string); ++a) {
337                 if (string[a]<32) string[a]=32;
338                 if (string[a]>126) string[a]=32;
339         }
340
341         /* Remove leading and trailing blanks */
342         while(string[0]<33) strcpy(string,&string[1]);
343         while(string[strlen(string)-1]<33) string[strlen(string)-1]=0;
344
345         /* Remove double blanks */
346         for (a=0; a<strlen(string); ++a) {
347                 if ((string[a]==32)&&(string[a+1]==32)) {
348                         strcpy(&string[a],&string[a+1]);
349                         a=0;
350                 }
351         }
352
353         /* remove characters which would interfere with the network */
354         for (a=0; a<strlen(string); ++a) {
355                 if (string[a]=='!') strcpy(&string[a],&string[a+1]);
356                 if (string[a]=='@') strcpy(&string[a],&string[a+1]);
357                 if (string[a]=='_') strcpy(&string[a],&string[a+1]);
358                 if (string[a]==',') strcpy(&string[a],&string[a+1]);
359                 if (string[a]=='%') strcpy(&string[a],&string[a+1]);
360                 if (string[a]=='|') strcpy(&string[a],&string[a+1]);
361         }
362
363 }
364
365
366 #ifndef HAVE_STRERROR
367 /*
368  * replacement strerror() for systems that don't have it
369  */
370 char *strerror(int e)
371 {
372         static char buf[128];
373
374         snprintf(buf, sizeof buf, "errno = %d",e);
375         return(buf);
376 }
377 #endif
378
379
380 void progress(long int curr, long int cmax)
381 {
382         static long dots_printed;
383         long a;
384
385         if (curr==0) {
386                 scr_printf(".......................................");
387                 scr_printf(".......................................\r");
388                 scr_flush();
389                 dots_printed = 0;
390         }
391         else if (curr==cmax) {
392                 scr_printf("\r%79s\n","");
393         }
394         else {
395                 a=(curr * 100) / cmax;
396                 a=a*78; a=a/100;
397                 while (dots_printed < a) {
398                         scr_printf("*");
399                         ++dots_printed;
400                         scr_flush();
401                 }
402         }
403 }
404
405
406 /*
407  * NOT the same locate_host() in locate_host.c.  This one just does a
408  * 'who am i' to try to discover where the user is...
409  */
410 void locate_host(char *hbuf)
411 {
412 #ifndef HAVE_UTMP_H
413         char buf[SIZ];
414         FILE *who;
415         int a,b;
416
417         who = (FILE *)popen("who am i","r");
418         if (who==NULL) {
419                 strcpy(hbuf,serv_info.serv_fqdn);
420                 return; 
421         }
422         fgets(buf,sizeof buf,who);
423         pclose(who);
424
425         b = 0;
426         for (a=0; a<strlen(buf); ++a) {
427                 if ((buf[a]=='(')||(buf[a]==')')) ++b;
428         }
429         if (b<2) {
430                 strcpy(hbuf,serv_info.serv_fqdn);
431                 return;
432         }
433
434         for (a=0; a<strlen(buf); ++a) {
435                 if (buf[a]=='(') {
436                         strcpy(buf,&buf[a+1]);
437                 }
438         }
439         for (a=0; a<strlen(buf); ++a) {
440                 if (buf[a]==')') buf[a] = 0;
441         }
442
443         if (strlen(buf)==0) strcpy(hbuf,serv_info.serv_fqdn);
444         else strncpy(hbuf,buf,24);
445 #else
446         char *tty = ttyname(0);
447 #ifdef HAVE_GETUTXLINE
448         struct utmpx ut, *put;
449 #else
450         struct utmp ut, *put;
451 #endif
452
453         if (tty == NULL) {
454             fail:
455                 safestrncpy(hbuf, serv_info.serv_fqdn, 24);
456                 return;
457         }
458
459         if (strncmp(tty, "/dev/", 5))
460                 goto fail;
461
462         safestrncpy(ut.ut_line, &tty[5], sizeof ut.ut_line);
463
464 #ifdef HAVE_GETUTXLINE /* Solaris uses this */
465         if ((put = getutxline(&ut)) == NULL)
466 #else
467         if ((put = getutline(&ut)) == NULL)
468 #endif
469                 goto fail;
470
471 #if defined(HAVE_UT_TYPE) || defined(HAVE_GETUTXLINE)
472         if (put->ut_type == USER_PROCESS) {
473 #endif
474 #if defined(HAVE_UT_HOST) || defined(HAVE_GETUTXLINE)
475                 if (*put->ut_host)
476                         safestrncpy(hbuf, put->ut_host, 24);
477                 else
478 #endif
479                         safestrncpy(hbuf, put->ut_line, 24);
480 #if defined(HAVE_UT_TYPE) || defined(HAVE_GETUTXLINE)
481         }
482         else goto fail;
483 #endif
484 #endif /* HAVE_UTMP_H */
485 }
486
487 /*
488  * miscellaneous server commands (testing, etc.)
489  */
490 void misc_server_cmd(char *cmd) {
491         char buf[SIZ];
492
493         serv_puts(cmd);
494         serv_gets(buf);
495         scr_printf("%s\n",buf);
496         if (buf[0]=='1') {
497                 set_keepalives(KA_HALF);
498                 while (serv_gets(buf), strcmp(buf,"000")) {
499                         scr_printf("%s\n",buf);
500                 }
501                 set_keepalives(KA_YES);
502                 return;
503         }
504         if (buf[0]=='4') {
505                 do {
506                         newprompt("> ",buf,255);
507                         serv_puts(buf);
508                 } while(strcmp(buf,"000"));
509                 return;
510         }
511 }
512
513
514 /*
515  * compute the checksum of a file
516  */
517 int file_checksum(char *filename)
518 {
519         int cksum = 0;
520         int ch;
521         FILE *fp;
522
523         fp = fopen(filename,"r");
524         if (fp == NULL) return(0);
525
526         /* yes, this algorithm may allow cksum to overflow, but that's ok
527          * as long as it overflows consistently, which it will.
528          */
529         while (ch=getc(fp), ch>=0) {
530                 cksum = (cksum + ch);
531         }
532
533         fclose(fp);
534         return(cksum);
535 }
536
537 /*
538  * nuke a directory and its contents
539  */
540 int nukedir(char *dirname)
541 {
542         DIR *dp;
543         struct dirent *d;
544         char filename[SIZ];
545
546         dp = opendir(dirname);
547         if (dp == NULL) {
548                 return(errno);
549         }
550
551         while (d = readdir(dp), d != NULL) {
552                 snprintf(filename, sizeof filename, "%s/%s",
553                         dirname, d->d_name);
554                 unlink(filename);
555         }
556
557         closedir(dp);
558         return(rmdir(dirname));
559 }