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