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