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