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