Removed the hostable option from mts.conf because it's no longer used.
[mmh] / uip / mhlsbr.c
1
2 /*
3  * mhlsbr.c -- main routines for nmh message lister
4  *
5  * This code is Copyright (c) 2002, by the authors of nmh.  See the
6  * COPYRIGHT file in the root directory of the nmh distribution for
7  * complete copyright information.
8  */
9
10 #include <h/mh.h>
11 #include <h/signals.h>
12 #include <h/addrsbr.h>
13 #include <h/fmt_scan.h>
14 #include <h/tws.h>
15 #include <h/utils.h>
16 #include <h/m_setjmp.h>
17 #include <signal.h>
18 #include <errno.h>
19 #include <sys/wait.h>
20 #include <sys/types.h>
21
22 /*
23  * MAJOR BUG:
24  * for a component containing addresses, ADDRFMT, if COMPRESS is also
25  * set, then addresses get split wrong (not at the spaces between commas).
26  * To fix this correctly, putstr() should know about "atomic" strings that
27  * must NOT be broken across lines.  That's too difficult for right now
28  * (it turns out that there are a number of degernate cases), so in
29  * oneline(), instead of
30  *
31  *       (*onelp == '\n' && !onelp[1])
32  *
33  * being a terminating condition,
34  *
35  *       (*onelp == '\n' && (!onelp[1] || (flags & ADDRFMT)))
36  *
37  * is used instead.  This cuts the line prematurely, and gives us a much
38  * better chance of getting things right.
39  */
40
41 #define ONECOMP  0
42 #define TWOCOMP  1
43 #define BODYCOMP 2
44
45 #define QUOTE   '\\'
46
47 static struct swit mhlswitches[] = {
48 #define BELLSW         0
49     { "bell", 0 },
50 #define NBELLSW        1
51     { "nobell", 0 },
52 #define CLRSW          2
53     { "clear", 0 },
54 #define NCLRSW         3
55     { "noclear", 0 },
56 #define FACESW         4
57     { "faceproc program", 0 },
58 #define NFACESW        5
59     { "nofaceproc", 0 },
60 #define FOLDSW         6
61     { "folder +folder", 0 },
62 #define FORMSW         7
63     { "form formfile", 0 },
64 #define PROGSW         8
65     { "moreproc program", 0 },
66 #define NPROGSW        9
67     { "nomoreproc", 0 },
68 #define LENSW         10
69     { "length lines", 0 },
70 #define WIDTHSW       11
71     { "width columns", 0 },
72 #define SLEEPSW       12
73     { "sleep seconds",  0 },
74 #define BITSTUFFSW    13
75     { "dashstuffing", -12 },    /* interface from forw */
76 #define NBITSTUFFSW   14
77     { "nodashstuffing", -14 },  /* interface from forw */
78 #define VERSIONSW     15
79     { "version", 0 },
80 #define HELPSW        16
81     { "help", 0 },
82 #define FORW1SW       17
83     { "forward", -7 },          /* interface from forw */
84 #define FORW2SW       18
85     { "forwall", -7 },          /* interface from forw */
86 #define DGSTSW        19
87     { "digest list", -6 },
88 #define VOLUMSW       20
89     { "volume number", -6 },
90 #define ISSUESW       21
91     { "issue number", -5 },
92 #define NBODYSW       22
93     { "nobody", -6 },
94 #define FMTPROCSW     23
95     { "fmtproc program", 0 },
96 #define NFMTPROCSW    24
97     { "nofmtproc", 0 },
98     { NULL, 0 }
99 };
100
101 #define NOCOMPONENT 0x000001    /* don't show component name         */
102 #define UPPERCASE   0x000002    /* display in all upper case         */
103 #define CENTER      0x000004    /* center line                       */
104 #define CLEARTEXT   0x000008    /* cleartext                         */
105 #define EXTRA       0x000010    /* an "extra" component              */
106 #define HDROUTPUT   0x000020    /* already output                    */
107 #define CLEARSCR    0x000040    /* clear screen                      */
108 #define LEFTADJUST  0x000080    /* left justify multiple lines       */
109 #define COMPRESS    0x000100    /* compress text                     */
110 #define ADDRFMT     0x000200    /* contains addresses                */
111 #define BELL        0x000400    /* sound bell at EOP                 */
112 #define DATEFMT     0x000800    /* contains dates                    */
113 #define FORMAT      0x001000    /* parse address/date/RFC-2047 field */
114 #define INIT        0x002000    /* initialize component              */
115 #define FACEFMT     0x004000    /* contains face                     */
116 #define FACEDFLT    0x008000    /* default for face                  */
117 #define SPLIT       0x010000    /* split headers (don't concatenate) */
118 #define NONEWLINE   0x020000    /* don't write trailing newline      */
119 #define NOWRAP      0x040000    /* Don't wrap lines ever             */
120 #define FMTFILTER   0x080000    /* Filter through format filter      */
121 #define LBITS   "\020\01NOCOMPONENT\02UPPERCASE\03CENTER\04CLEARTEXT\05EXTRA\06HDROUTPUT\07CLEARSCR\010LEFTADJUST\011COMPRESS\012ADDRFMT\013BELL\014DATEFMT\015FORMAT\016INIT\017FACEFMT\020FACEDFLT\021SPLIT\022NONEWLINE\023NOWRAP\024FMTFILTER"
122 #define GFLAGS  (NOCOMPONENT | UPPERCASE | CENTER | LEFTADJUST | COMPRESS | SPLIT | NOWRAP)
123
124 /*
125  * A list of format arguments
126  */
127
128 struct arglist {
129     struct format *a_fmt;
130     char *a_nfs;
131     struct arglist *a_next;
132 };
133
134 struct mcomp {
135     char *c_name;               /* component name          */
136     char *c_text;               /* component text          */
137     char *c_ovtxt;              /* text overflow indicator */
138     char *c_nfs;                /* iff FORMAT              */
139     struct format *c_fmt;       /*   ..                    */
140     char *c_face;               /* face designator         */
141     int c_offset;               /* left margin indentation */
142     int c_ovoff;                /* overflow indentation    */
143     int c_width;                /* width of field          */
144     int c_cwidth;               /* width of component      */
145     int c_length;               /* length in lines         */
146     long c_flags;
147     struct arglist *c_f_args;   /* Argument list for filter*/
148     struct arglist *c_f_tail;   /* Pointer to tail of list */
149     int c_nargs;                /* Number of arguments     */
150     struct mcomp *c_next;
151 };
152
153 static struct mcomp *msghd = NULL;
154 static struct mcomp *msgtl = NULL;
155 static struct mcomp *fmthd = NULL;
156 static struct mcomp *fmttl = NULL;
157
158 static struct mcomp global = {
159     NULL, NULL, NULL, NULL, NULL, NULL, 0, -1, 80, -1, 40, BELL, NULL, NULL,
160     0, NULL
161 };
162
163 static struct mcomp holder = {
164     NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, NOCOMPONENT, NULL, NULL,
165     0, NULL
166 };
167
168 struct pair {
169     char *p_name;
170     long p_flags;
171 };
172
173 static struct pair pairs[] = {
174     { "Date",            DATEFMT },
175     { "From",            ADDRFMT|FACEDFLT },
176     { "Sender",          ADDRFMT },
177     { "Reply-To",        ADDRFMT },
178     { "To",              ADDRFMT },
179     { "cc",              ADDRFMT },
180     { "Bcc",             ADDRFMT },
181     { "Resent-Date",     DATEFMT },
182     { "Resent-From",     ADDRFMT },
183     { "Resent-Sender",   ADDRFMT },
184     { "Resent-Reply-To", ADDRFMT },
185     { "Resent-To",       ADDRFMT },
186     { "Resent-cc",       ADDRFMT },
187     { "Resent-Bcc",      ADDRFMT },
188     { "Face",            FACEFMT },
189     { NULL,              0 }
190 };
191
192 struct triple {
193     char *t_name;
194     long t_on;
195     long t_off;
196 };
197
198 static struct triple triples[] = {
199     { "nocomponent",   NOCOMPONENT, 0 },
200     { "uppercase",     UPPERCASE,   0 },
201     { "nouppercase",   0,           UPPERCASE },
202     { "center",        CENTER,      0 },
203     { "nocenter",      0,           CENTER },
204     { "clearscreen",   CLEARSCR,    0 },
205     { "noclearscreen", 0,           CLEARSCR },
206     { "noclear",       0,           CLEARSCR },
207     { "leftadjust",    LEFTADJUST,  0 },
208     { "noleftadjust",  0,           LEFTADJUST },
209     { "compress",      COMPRESS,    0 },
210     { "nocompress",    0,           COMPRESS },
211     { "split",         SPLIT,       0 },
212     { "nosplit",       0,           SPLIT },
213     { "addrfield",     ADDRFMT,     DATEFMT },
214     { "bell",          BELL,        0 },
215     { "nobell",        0,           BELL },
216     { "datefield",     DATEFMT,     ADDRFMT },
217     { "newline",       0,           NONEWLINE },
218     { "nonewline",     NONEWLINE,   0 },
219     { "wrap",          0,           NOWRAP },
220     { "nowrap",        NOWRAP,      0 },
221     { "format",        FMTFILTER,   0 },
222     { "noformat",      0,           FMTFILTER },
223     { NULL,            0,           0 }
224 };
225
226
227 static int bellflg   = 0;
228 static int clearflg  = 0;
229 static int dashstuff = 0;
230 static int dobody    = 1;
231 static int forwflg   = 0;
232 static int forwall   = 0;
233
234 static int sleepsw = NOTOK;
235
236 static char *digest = NULL;
237 static int volume = 0;
238 static int issue = 0;
239
240 static int exitstat = 0;
241 static int mhldebug = 0;
242
243 static int filesize = 0;
244
245 #define PITTY   (-1)
246 #define NOTTY   0
247 #define ISTTY   1
248 static int ontty = NOTTY;
249
250 static int row;
251 static unsigned int column;
252
253 static int lm;
254 static int llim;
255 static int ovoff;
256 static int term;
257 static unsigned int wid;
258
259 static char *ovtxt;
260
261 static unsigned char *onelp;
262
263 static char *parptr;
264
265 static int num_ignores = 0;
266 static char *ignores[MAXARGS];
267
268 static  jmp_buf env;
269 static  jmp_buf mhlenv;
270
271 static char delim3[] =          /* from forw.c */
272     "\n----------------------------------------------------------------------\n\n";
273 static char delim4[] = "\n------------------------------\n\n";
274
275 static FILE *(*mhl_action) () = (FILE *(*) ()) 0;
276
277 static struct comp *mhlcomp[128];
278
279 /*
280  * Redefine a couple of functions.
281  * These are undefined later in the code.
282  */
283 #define adios mhladios
284 #define done  mhldone
285
286 /*
287  * prototypes
288  */
289 static void mhl_format (char *, int, int);
290 static int evalvar (struct mcomp *);
291 static int ptoi (char *, int *);
292 static int ptos (char *, char **);
293 static char *parse (void);
294 static void process (char *, char *, int, int);
295 static void mhlfile (FILE *, char *, int, int);
296 static int mcomp_flags (char *);
297 static char *mcomp_add (long, char *, char *);
298 static void mcomp_format (struct mcomp *, struct mcomp *);
299 static struct mcomp *add_queue (struct mcomp **, struct mcomp **, char *, char *, int);
300 static void free_queue (struct mcomp **, struct mcomp **);
301 static void putcomp (struct mcomp *, struct mcomp *, int);
302 static char *oneline (char *, long);
303 static void putstr (char *, long);
304 static void putch (char, long);
305 static void intrser (int);
306 static void pipeser (int);
307 static void quitser (int);
308 static void face_format (struct mcomp *);
309 static int doface (struct mcomp *);
310 static void mhladios (char *, char *, ...);
311 static void mhldone (int);
312 static void m_popen (char *);
313 static void filterbody (struct mcomp *, char *, int, int, FILE *);
314 static int compileargs (struct mcomp *, char *);
315 static int checkcomp (char *, char *);
316 static void addcomp (int, char *, char *);
317 static void freecomps (void);
318 static void freecomptext (void);
319
320
321 int
322 mhl (int argc, char **argv)
323 {
324     int length = 0, nomore = 0;
325     unsigned int i, vecp = 0;;
326     int width = 0;
327     char *cp, *folder = NULL, *form = NULL;
328     char buf[BUFSIZ], *files[MAXARGS];
329     char **argp, **arguments;
330
331     invo_name = r1bindex (argv[0], '/');
332
333     /* read user profile/context */
334     context_read();
335
336     arguments = getarguments (invo_name, argc, argv, 1);
337     argp = arguments;
338
339     if ((cp = getenv ("MHLDEBUG")) && *cp)
340         mhldebug++;
341
342     if ((cp = getenv ("FACEPROC")))
343         faceproc = cp;
344
345     while ((cp = *argp++)) {
346         if (*cp == '-') {
347             switch (smatch (++cp, mhlswitches)) {
348                 case AMBIGSW: 
349                     ambigsw (cp, mhlswitches);
350                     done (1);
351                 case UNKWNSW: 
352                     adios (NULL, "-%s unknown\n", cp);
353
354                 case HELPSW: 
355                     snprintf (buf, sizeof(buf), "%s [switches] [files ...]", invo_name);
356                     print_help (buf, mhlswitches, 1);
357                     done (1);
358                 case VERSIONSW:
359                     print_version(invo_name);
360                     done (1);
361
362                 case BELLSW: 
363                     bellflg = 1;
364                     continue;
365                 case NBELLSW: 
366                     bellflg = -1;
367                     continue;
368
369                 case CLRSW: 
370                     clearflg = 1;
371                     continue;
372                 case NCLRSW: 
373                     clearflg = -1;
374                     continue;
375
376                 case FOLDSW: 
377                     if (!(folder = *argp++) || *folder == '-')
378                         adios (NULL, "missing argument to %s", argp[-2]);
379                     continue;
380                 case FORMSW: 
381                     if (!(form = *argp++) || *form == '-')
382                         adios (NULL, "missing argument to %s", argp[-2]);
383                     continue;
384
385                 case FACESW:
386                     if (!(faceproc = *argp++) || *faceproc == '-')
387                         adios (NULL, "missing argument to %s", argp[-2]);
388                     continue;
389                 case NFACESW:
390                     faceproc = NULL;
391                     continue;
392                 case SLEEPSW:
393                     if (!(cp = *argp++) || *cp == '-')
394                         adios (NULL, "missing argument to %s", argp[-2]);
395                     sleepsw = atoi (cp);/* ZERO ok! */
396                     continue;
397
398                 case PROGSW:
399                     if (!(moreproc = *argp++) || *moreproc == '-')
400                         adios (NULL, "missing argument to %s", argp[-2]);
401                     continue;
402                 case NPROGSW:
403                     nomore++;
404                     continue;
405
406                 case FMTPROCSW:
407                     if (!(formatproc = *argp++) || *formatproc == '-')
408                         adios (NULL, "missing argument to %s", argp[-2]);
409                     continue;
410                 case NFMTPROCSW:
411                     formatproc = NULL;
412                     continue;
413
414                 case LENSW: 
415                     if (!(cp = *argp++) || *cp == '-')
416                         adios (NULL, "missing argument to %s", argp[-2]);
417                     if ((length = atoi (cp)) < 1)
418                         adios (NULL, "bad argument %s %s", argp[-2], cp);
419                     continue;
420                 case WIDTHSW: 
421                     if (!(cp = *argp++) || *cp == '-')
422                         adios (NULL, "missing argument to %s", argp[-2]);
423                     if ((width = atoi (cp)) < 1)
424                         adios (NULL, "bad argument %s %s", argp[-2], cp);
425                     continue;
426
427                 case DGSTSW: 
428                     if (!(digest = *argp++) || *digest == '-')
429                         adios (NULL, "missing argument to %s", argp[-2]);
430                     continue;
431                 case ISSUESW:
432                     if (!(cp = *argp++) || *cp == '-')
433                         adios (NULL, "missing argument to %s", argp[-2]);
434                     if ((issue = atoi (cp)) < 1)
435                         adios (NULL, "bad argument %s %s", argp[-2], cp);
436                     continue;
437                 case VOLUMSW:
438                     if (!(cp = *argp++) || *cp == '-')
439                         adios (NULL, "missing argument to %s", argp[-2]);
440                     if ((volume = atoi (cp)) < 1)
441                         adios (NULL, "bad argument %s %s", argp[-2], cp);
442                     continue;
443
444                 case FORW2SW: 
445                     forwall++;  /* fall */
446                 case FORW1SW: 
447                     forwflg++;
448                     clearflg = -1;/* XXX */
449                     continue;
450
451                 case BITSTUFFSW: 
452                     dashstuff = 1;      /* trinary logic */
453                     continue;
454                 case NBITSTUFFSW: 
455                     dashstuff = -1;     /* trinary logic */
456                     continue;
457
458                 case NBODYSW: 
459                     dobody = 0;
460                     continue;
461             }
462         }
463         files[vecp++] = cp;
464     }
465
466     if (!folder)
467         folder = getenv ("mhfolder");
468
469     if (isatty (fileno (stdout))) {
470         if (!nomore && !sc_hardcopy() && moreproc && *moreproc != '\0') {
471             if (mhl_action) {
472                 SIGNAL (SIGINT, SIG_IGN);
473                 SIGNAL2 (SIGQUIT, quitser);
474             }
475             SIGNAL2 (SIGPIPE, pipeser);
476             m_popen (moreproc);
477             ontty = PITTY;
478         } else {
479             SIGNAL (SIGINT, SIG_IGN);
480             SIGNAL2 (SIGQUIT, quitser);
481             ontty = ISTTY;
482         }
483     } else {
484         ontty = NOTTY;
485     }
486
487     for (i = 0; i < sizeof(mhlcomp)/sizeof(mhlcomp[0]); i++)
488         mhlcomp[i] = NULL;
489
490     mhl_format (form ? form : mhlformat, length, width);
491
492     if (vecp == 0) {
493         process (folder, NULL, 1, vecp = 1);
494     } else {
495         for (i = 0; i < vecp; i++)
496             process (folder, files[i], i + 1, vecp);
497     }
498
499     freecomps();
500
501     if (forwall) {
502         if (digest) {
503             printf ("%s", delim4);
504             if (volume == 0) {
505                 snprintf (buf, sizeof(buf), "End of %s Digest\n", digest);
506             } else {
507                 snprintf (buf, sizeof(buf), "End of %s Digest [Volume %d Issue %d]\n",
508                         digest, volume, issue);
509             }
510             i = strlen (buf);
511             for (cp = buf + i; i > 1; i--)
512                 *cp++ = '*';
513             *cp++ = '\n';
514             *cp = 0;
515             printf ("%s", buf);
516         }
517         else
518             printf ("\n------- End of Forwarded Message%s\n",
519                     vecp > 1 ? "s" : "");
520     }
521
522     fflush(stdout);
523     if(ferror(stdout)){
524             adios("output", "error writing");
525     }
526     
527     if (clearflg > 0 && ontty == NOTTY)
528         clear_screen ();
529
530     if (ontty == PITTY)
531         m_pclose ();
532
533     return exitstat;
534 }
535
536
537 static void
538 mhl_format (char *file, int length, int width)
539 {
540     int i;
541     char *bp, *cp, **ip;
542     char *ap, buffer[BUFSIZ], name[NAMESZ];
543     struct mcomp *c1;
544     struct stat st;
545     FILE *fp;
546     static dev_t dev = 0;
547     static ino_t ino = 0;
548     static time_t mtime = 0;
549
550     if (fmthd != NULL) {
551         if (stat (etcpath (file), &st) != NOTOK
552                 && mtime == st.st_mtime
553                 && dev == st.st_dev
554                 && ino == st.st_ino)
555             goto out;
556         else
557             free_queue (&fmthd, &fmttl);
558     }
559
560     if ((fp = fopen (etcpath (file), "r")) == NULL)
561         adios (file, "unable to open format file");
562
563     if (fstat (fileno (fp), &st) != NOTOK) {
564         mtime = st.st_mtime;
565         dev = st.st_dev;
566         ino = st.st_ino;
567     }
568
569     global.c_ovtxt = global.c_nfs = NULL;
570     global.c_fmt = NULL;
571     global.c_offset = 0;
572     global.c_ovoff = -1;
573     if ((i = sc_width ()) > 5)
574         global.c_width = i;
575     global.c_cwidth = -1;
576     if ((i = sc_length ()) > 5)
577         global.c_length = i - 1;
578     global.c_flags = BELL;              /* BELL is default */
579     *(ip = ignores) = NULL;
580
581     while (vfgets (fp, &ap) == OK) {
582         bp = ap;
583         if (*bp == ';')
584             continue;
585
586         if ((cp = strchr(bp, '\n')))
587             *cp = 0;
588
589         if (*bp == ':') {
590             c1 = add_queue (&fmthd, &fmttl, NULL, bp + 1, CLEARTEXT);
591             continue;
592         }
593
594         parptr = bp;
595         strncpy (name, parse(), sizeof(name));
596         switch (*parptr) {
597             case '\0': 
598             case ',': 
599             case '=': 
600                 /*
601                  * Split this list of fields to ignore, and copy
602                  * it to the end of the current "ignores" list.
603                  */
604                 if (!mh_strcasecmp (name, "ignores")) {
605                     char **tmparray, **p;
606                     int n = 0;
607
608                     /* split the fields */
609                     tmparray = brkstring (getcpy (++parptr), ",", NULL);
610
611                     /* count number of fields split */
612                     p = tmparray;
613                     while (*p++)
614                         n++;
615
616                     /* copy pointers to split fields to ignores array */
617                     ip = copyip (tmparray, ip, MAXARGS - num_ignores);
618                     num_ignores += n;
619                     continue;
620                 }
621                 parptr = bp;
622                 while (*parptr) {
623                     if (evalvar (&global))
624                         adios (NULL, "format file syntax error: %s", bp);
625                     if (*parptr)
626                         parptr++;
627                 }
628                 continue;
629
630             case ':': 
631                 c1 = add_queue (&fmthd, &fmttl, name, NULL, INIT);
632                 while (*parptr == ':' || *parptr == ',') {
633                     parptr++;
634                     if (evalvar (c1))
635                         adios (NULL, "format file syntax error: %s", bp);
636                 }
637                 if (!c1->c_nfs && global.c_nfs) {
638                     if (c1->c_flags & DATEFMT) {
639                         if (global.c_flags & DATEFMT)
640                             c1->c_nfs = getcpy (global.c_nfs);
641                     }
642                     else
643                         if (c1->c_flags & ADDRFMT) {
644                             if (global.c_flags & ADDRFMT)
645                                 c1->c_nfs = getcpy (global.c_nfs);
646                         }
647                 }
648                 continue;
649
650             default: 
651                 adios (NULL, "format file syntax error: %s", bp);
652         }
653     }
654     fclose (fp);
655
656     if (mhldebug) {
657         for (c1 = fmthd; c1; c1 = c1->c_next) {
658             fprintf (stderr, "c1: name=\"%s\" text=\"%s\" ovtxt=\"%s\"\n",
659                     c1->c_name, c1->c_text, c1->c_ovtxt);
660             fprintf (stderr, "\tnfs=0x%x fmt=0x%x\n",
661                      (unsigned int)(unsigned long) c1->c_nfs,
662                      (unsigned int)(unsigned long) c1->c_fmt);
663             fprintf (stderr, "\toffset=%d ovoff=%d width=%d cwidth=%d length=%d\n",
664                     c1->c_offset, c1->c_ovoff, c1->c_width,
665                     c1->c_cwidth, c1->c_length);
666             fprintf (stderr, "\tflags=%s\n",
667                     snprintb (buffer, sizeof(buffer), (unsigned) c1->c_flags, LBITS));
668         }
669     }
670
671 out:
672     if (clearflg == 1) {
673         global.c_flags |= CLEARSCR;
674     } else {
675         if (clearflg == -1)
676             global.c_flags &= ~CLEARSCR;
677     }
678
679     switch (bellflg) {          /* command line may override format file */
680         case 1: 
681             global.c_flags |= BELL;
682             break;
683         case -1: 
684             global.c_flags &= ~BELL;
685             break;
686     }
687
688     if (length)
689         global.c_length = length;
690     if (width)
691         global.c_width = width;
692     if (global.c_length < 5)
693         global.c_length = 10000;
694     if (global.c_width < 5)
695         global.c_width = 10000;
696 }
697
698
699 static int
700 evalvar (struct mcomp *c1)
701 {
702     char *cp, name[NAMESZ];
703     struct triple *ap;
704
705     if (!*parptr)
706         return 0;
707     strncpy (name, parse(), sizeof(name));
708
709     if (!mh_strcasecmp (name, "component")) {
710         if (ptos (name, &c1->c_text))
711             return 1;
712         c1->c_flags &= ~NOCOMPONENT;
713         return 0;
714     }
715
716     if (!mh_strcasecmp (name, "overflowtext"))
717         return ptos (name, &c1->c_ovtxt);
718
719     if (!mh_strcasecmp (name, "formatfield")) {
720         char *nfs;
721
722         if (ptos (name, &cp))
723             return 1;
724         nfs = new_fs (NULL, NULL, cp);
725         c1->c_nfs = getcpy (nfs);
726         c1->c_flags |= FORMAT;
727         return 0;
728     }
729
730     if (!mh_strcasecmp (name, "decode")) {
731         char *nfs;
732
733         nfs = new_fs (NULL, NULL, "%(decode{text})");
734         c1->c_nfs = getcpy (nfs);
735         c1->c_flags |= FORMAT;
736         return 0;
737     }
738
739     if (!mh_strcasecmp (name, "offset"))
740         return ptoi (name, &c1->c_offset);
741     if (!mh_strcasecmp (name, "overflowoffset"))
742         return ptoi (name, &c1->c_ovoff);
743     if (!mh_strcasecmp (name, "width"))
744         return ptoi (name, &c1->c_width);
745     if (!mh_strcasecmp (name, "compwidth"))
746         return ptoi (name, &c1->c_cwidth);
747     if (!mh_strcasecmp (name, "length"))
748         return ptoi (name, &c1->c_length);
749     if (!mh_strcasecmp (name, "nodashstuffing"))
750         return (dashstuff = -1);
751
752     for (ap = triples; ap->t_name; ap++)
753         if (!mh_strcasecmp (ap->t_name, name)) {
754             c1->c_flags |= ap->t_on;
755             c1->c_flags &= ~ap->t_off;
756             return 0;
757         }
758
759    if (!mh_strcasecmp (name, "formatarg")) {
760         char *nfs;
761         int rc;
762
763         if (ptos (name, &cp))
764             return 1;
765         nfs = new_fs (NULL, NULL, cp);
766
767         rc = compileargs(c1, nfs);
768
769         return rc;
770     }
771
772
773     return 1;
774 }
775
776
777 static int
778 ptoi (char *name, int *i)
779 {
780     char *cp;
781
782     if (*parptr++ != '=' || !*(cp = parse ())) {
783         advise (NULL, "missing argument to variable %s", name);
784         return 1;
785     }
786
787     *i = atoi (cp);
788     return 0;
789 }
790
791
792 static int
793 ptos (char *name, char **s)
794 {
795     char c, *cp;
796
797     if (*parptr++ != '=') {
798         advise (NULL, "missing argument to variable %s", name);
799         return 1;
800     }
801
802     if (*parptr != '"') {
803         for (cp = parptr;
804                 *parptr && *parptr != ':' && *parptr != ',';
805                 parptr++)
806             continue;
807     } else {
808         for (cp = ++parptr; *parptr && *parptr != '"'; parptr++)
809             if (*parptr == QUOTE)
810                 if (!*++parptr)
811                     parptr--;
812     }
813     c = *parptr;
814     *parptr = 0;
815     *s = getcpy (cp);
816     if ((*parptr = c) == '"')
817         parptr++;
818     return 0;
819 }
820
821
822 static char *
823 parse (void)
824 {
825     int c;
826     char *cp;
827     static char result[NAMESZ];
828
829     for (cp = result; *parptr && (cp - result < NAMESZ); parptr++) {
830         c = *parptr;
831         if (isalnum (c)
832                 || c == '.'
833                 || c == '-'
834                 || c == '_'
835                 || c =='['
836                 || c == ']')
837             *cp++ = c;
838         else
839             break;
840     }
841     *cp = '\0';
842
843     return result;
844 }
845
846
847 static void
848 process (char *folder, char *fname, int ofilen, int ofilec)
849 {
850     char *cp = NULL;
851     FILE *fp = NULL;
852     struct mcomp *c1;
853     struct stat st;
854
855     switch (m_setjmp (env)) {
856         case OK: 
857             if (fname) {
858                 fp = mhl_action ? (*mhl_action) (fname) : fopen (fname, "r");
859                 if (fp == NULL) {
860                     advise (fname, "unable to open");
861                     exitstat++;
862                     return;
863                 }
864             } else {
865                 fname = "(stdin)";
866                 fp = stdin;
867             }
868             if (fstat(fileno(fp), &st) == 0) {
869                 filesize = st.st_size;
870             } else {
871                 filesize = 0;
872             }
873             cp = folder ? concat (folder, ":", fname, NULL) : getcpy (fname);
874             if (ontty != PITTY)
875                 SIGNAL (SIGINT, intrser);
876             mhlfile (fp, cp, ofilen, ofilec);  /* FALL THROUGH! */
877
878         default: 
879             if (ontty != PITTY)
880                 SIGNAL (SIGINT, SIG_IGN);
881             if (mhl_action == NULL && fp != stdin)
882                 fclose (fp);
883             free (cp);
884             if (holder.c_text) {
885                 free (holder.c_text);
886                 holder.c_text = NULL;
887             }
888             free_queue (&msghd, &msgtl);
889             for (c1 = fmthd; c1; c1 = c1->c_next)
890                 c1->c_flags &= ~HDROUTPUT;
891             break;
892     }
893
894     freecomptext();
895 }
896
897
898 static void
899 mhlfile (FILE *fp, char *mname, int ofilen, int ofilec)
900 {
901     int state, bucket;
902     struct mcomp *c1, *c2, *c3;
903     char **ip, name[NAMESZ], buf[BUFSIZ];
904
905     if (forwall) {
906         if (digest)
907             printf ("%s", ofilen == 1 ? delim3 : delim4);
908         else {
909             printf ("\n-------");
910             if (ofilen == 1)
911                 printf (" Forwarded Message%s", ofilec > 1 ? "s" : "");
912             else
913                 printf (" Message %d", ofilen);
914             printf ("\n\n");
915         }
916     } else {
917         switch (ontty) {
918             case PITTY: 
919                 if (ofilec > 1) {
920                     if (ofilen > 1) {
921                         if ((global.c_flags & CLEARSCR))
922                             clear_screen ();
923                         else
924                             printf ("\n\n\n");
925                     }
926                     printf (">>> %s\n\n", mname);
927                 }
928                 break;
929
930             case ISTTY: 
931                 strncpy (buf, "\n", sizeof(buf));
932                 if (ofilec > 1) {
933                     if (SOprintf ("Press <return> to list \"%s\"...", mname)) {
934                         if (ofilen > 1)
935                             printf ("\n\n\n");
936                         printf ("Press <return> to list \"%s\"...", mname);
937                     }
938                     fflush (stdout);
939                     buf[0] = 0;
940                     read (fileno (stdout), buf, sizeof(buf));
941                 }
942                 if (strchr(buf, '\n')) {
943                     if ((global.c_flags & CLEARSCR))
944                         clear_screen ();
945                 }
946                 else
947                     printf ("\n");
948                 break;
949
950             default: 
951                 if (ofilec > 1) {
952                     if (ofilen > 1) {
953                         printf ("\n\n\n");
954                         if (clearflg > 0)
955                             clear_screen ();
956                     }
957                     printf (">>> %s\n\n", mname);
958                 }
959                 break;
960         }
961     }
962
963     for (state = FLD;;) {
964         switch (state = m_getfld (state, name, buf, sizeof(buf), fp)) {
965             case FLD: 
966             case FLDPLUS: 
967                 bucket = checkcomp(name, buf);
968                 for (ip = ignores; *ip; ip++)
969                     if (!mh_strcasecmp (name, *ip)) {
970                         while (state == FLDPLUS) {
971                             state = m_getfld (state, name, buf, sizeof(buf), fp);
972                             addcomp(bucket, name, buf);
973                         }
974                         break;
975                     }
976                 if (*ip)
977                     continue;
978
979                 for (c2 = fmthd; c2; c2 = c2->c_next)
980                     if (!mh_strcasecmp (c2->c_name, name))
981                         break;
982                 c1 = NULL;
983                 if (!((c3 = c2 ? c2 : &global)->c_flags & SPLIT))
984                     for (c1 = msghd; c1; c1 = c1->c_next)
985                         if (!mh_strcasecmp (c1->c_name, c3->c_name)) {
986                             c1->c_text =
987                                 mcomp_add (c1->c_flags, buf, c1->c_text);
988                             break;
989                         }
990                 if (c1 == NULL)
991                     c1 = add_queue (&msghd, &msgtl, name, buf, 0);
992                 while (state == FLDPLUS) {
993                     state = m_getfld (state, name, buf, sizeof(buf), fp);
994                     c1->c_text = add (buf, c1->c_text);
995                     addcomp(bucket, name, buf);
996                 }
997                 if (c2 == NULL)
998                     c1->c_flags |= EXTRA;
999                 continue;
1000
1001             case BODY: 
1002             case FILEEOF: 
1003                 row = column = 0;
1004                 for (c1 = fmthd; c1; c1 = c1->c_next) {
1005                     if (c1->c_flags & CLEARTEXT) {
1006                         putcomp (c1, c1, ONECOMP);
1007                         continue;
1008                     }
1009                     if (!mh_strcasecmp (c1->c_name, "messagename")) {
1010                         holder.c_text = concat ("(Message ", mname, ")\n",
1011                                             NULL);
1012                         putcomp (c1, &holder, ONECOMP);
1013                         free (holder.c_text);
1014                         holder.c_text = NULL;
1015                         continue;
1016                     }
1017                     if (!mh_strcasecmp (c1->c_name, "extras")) {
1018                         for (c2 = msghd; c2; c2 = c2->c_next)
1019                             if (c2->c_flags & EXTRA)
1020                                 putcomp (c1, c2, TWOCOMP);
1021                         continue;
1022                     }
1023                     if (dobody && !mh_strcasecmp (c1->c_name, "body")) {
1024                         if (c1->c_flags & FMTFILTER && state == BODY &&
1025                                                         formatproc != NULL) {
1026                             filterbody(c1, buf, sizeof(buf), state, fp);
1027                         } else {
1028                             holder.c_text = mh_xmalloc (sizeof(buf));
1029                             strncpy (holder.c_text, buf, sizeof(buf));
1030                             while (state == BODY) {
1031                                 putcomp (c1, &holder, BODYCOMP);
1032                                 state = m_getfld (state, name, holder.c_text,
1033                                             sizeof(buf), fp);
1034                             }
1035                             free (holder.c_text);
1036                             holder.c_text = NULL;
1037                         }
1038                         continue;
1039                     }
1040                     for (c2 = msghd; c2; c2 = c2->c_next)
1041                         if (!mh_strcasecmp (c2->c_name, c1->c_name)) {
1042                             putcomp (c1, c2, ONECOMP);
1043                             if (!(c1->c_flags & SPLIT))
1044                                 break;
1045                         }
1046                     if (faceproc && c2 == NULL && (c1->c_flags & FACEFMT))
1047                         for (c2 = msghd; c2; c2 = c2->c_next)
1048                             if (c2->c_flags & FACEDFLT) {
1049                                 if (c2->c_face == NULL)
1050                                     face_format (c2);
1051                                 if ((holder.c_text = c2->c_face)) {
1052                                     putcomp (c1, &holder, ONECOMP);
1053                                     holder.c_text = NULL;
1054                                 }
1055                                 break;
1056                             }
1057                 }
1058                 return;
1059
1060             case LENERR: 
1061             case FMTERR: 
1062                 advise (NULL, "format error in message %s", mname);
1063                 exitstat++;
1064                 return;
1065
1066             default: 
1067                 adios (NULL, "getfld() returned %d", state);
1068         }
1069     }
1070 }
1071
1072
1073 static int
1074 mcomp_flags (char *name)
1075 {
1076     struct pair *ap;
1077
1078     for (ap = pairs; ap->p_name; ap++)
1079         if (!mh_strcasecmp (ap->p_name, name))
1080             return (ap->p_flags);
1081
1082     return 0;
1083 }
1084
1085
1086 static char *
1087 mcomp_add (long flags, char *s1, char *s2)
1088 {
1089     char *dp;
1090
1091     if (!(flags & ADDRFMT))
1092         return add (s1, s2);
1093
1094     if (s2 && *(dp = s2 + strlen (s2) - 1) == '\n')
1095         *dp = 0;
1096
1097     return add (s1, add (",\n", s2));
1098 }
1099
1100
1101 struct pqpair {
1102     char *pq_text;
1103     char *pq_error;
1104     struct pqpair *pq_next;
1105 };
1106
1107
1108 static void
1109 mcomp_format (struct mcomp *c1, struct mcomp *c2)
1110 {
1111     int dat[5];
1112     char *ap, *cp;
1113     char buffer[BUFSIZ], error[BUFSIZ];
1114     struct comp *cptr;
1115     struct pqpair *p, *q;
1116     struct pqpair pq;
1117     struct mailname *mp;
1118
1119     ap = c2->c_text;
1120     c2->c_text = NULL;
1121     dat[0] = 0;
1122     dat[1] = 0;
1123     dat[2] = filesize;
1124     dat[3] = sizeof(buffer) - 1;
1125     dat[4] = 0;
1126     fmt_compile (c1->c_nfs, &c1->c_fmt);
1127
1128     if (!(c1->c_flags & ADDRFMT)) {
1129         FINDCOMP (cptr, "text");
1130         if (cptr)
1131             cptr->c_text = ap;
1132         if ((cp = strrchr(ap, '\n')))   /* drop ending newline */
1133             if (!cp[1])
1134                 *cp = 0;
1135
1136         fmt_scan (c1->c_fmt, buffer, sizeof(buffer) - 1, dat);
1137         /* Don't need to append a newline, dctime() already did */
1138         c2->c_text = getcpy (buffer);
1139
1140         free (ap);
1141         return;
1142     }
1143
1144     (q = &pq)->pq_next = NULL;
1145     while ((cp = getname (ap))) {
1146         if ((p = (struct pqpair *) calloc ((size_t) 1, sizeof(*p))) == NULL)
1147             adios (NULL, "unable to allocate pqpair memory");
1148
1149         if ((mp = getm (cp, NULL, 0, AD_NAME, error)) == NULL) {
1150             p->pq_text = getcpy (cp);
1151             p->pq_error = getcpy (error);
1152         } else {
1153             if ((c1->c_flags & FACEDFLT) && c2->c_face == NULL) {
1154                 char *h = mp->m_host  ?  mp->m_host  :  LocalName (0);
1155                 c2->c_face = concat ("address ", h, " ", mp->m_mbox, NULL);
1156             }
1157             p->pq_text = getcpy (mp->m_text);
1158             mnfree (mp);
1159         }
1160         q = (q->pq_next = p);
1161     }
1162
1163     for (p = pq.pq_next; p; p = q) {
1164         FINDCOMP (cptr, "text");
1165         if (cptr)
1166             cptr->c_text = p->pq_text;
1167         FINDCOMP (cptr, "error");
1168         if (cptr)
1169             cptr->c_text = p->pq_error;
1170
1171         fmt_scan (c1->c_fmt, buffer, sizeof(buffer) - 1, dat);
1172         if (*buffer) {
1173             if (c2->c_text)
1174                 c2->c_text = add (",\n", c2->c_text);
1175             if (*(cp = buffer + strlen (buffer) - 1) == '\n')
1176                 *cp = 0;
1177             c2->c_text = add (buffer, c2->c_text);
1178         }
1179
1180         free (p->pq_text);
1181         if (p->pq_error)
1182             free (p->pq_error);
1183         q = p->pq_next;
1184         free ((char *) p);
1185     }
1186
1187     c2->c_text = add ("\n", c2->c_text);
1188     free (ap);
1189 }
1190
1191
1192 static struct mcomp *
1193 add_queue (struct mcomp **head, struct mcomp **tail, char *name, char *text, int flags)
1194 {
1195     struct mcomp *c1;
1196
1197     if ((c1 = (struct mcomp *) calloc ((size_t) 1, sizeof(*c1))) == NULL)
1198         adios (NULL, "unable to allocate comp memory");
1199
1200     c1->c_flags = flags & ~INIT;
1201     if ((c1->c_name = name ? getcpy (name) : NULL))
1202         c1->c_flags |= mcomp_flags (c1->c_name);
1203     c1->c_text = text ? getcpy (text) : NULL;
1204     if (flags & INIT) {
1205         if (global.c_ovtxt)
1206             c1->c_ovtxt = getcpy (global.c_ovtxt);
1207         c1->c_offset = global.c_offset;
1208         c1->c_ovoff = global. c_ovoff;
1209         c1->c_width = c1->c_length = 0;
1210         c1->c_cwidth = global.c_cwidth;
1211         c1->c_flags |= global.c_flags & GFLAGS;
1212     }
1213     if (*head == NULL)
1214         *head = c1;
1215     if (*tail != NULL)
1216         (*tail)->c_next = c1;
1217     *tail = c1;
1218
1219     return c1;
1220 }
1221
1222
1223 static void
1224 free_queue (struct mcomp **head, struct mcomp **tail)
1225 {
1226     struct mcomp *c1, *c2;
1227
1228     for (c1 = *head; c1; c1 = c2) {
1229         c2 = c1->c_next;
1230         if (c1->c_name)
1231             free (c1->c_name);
1232         if (c1->c_text)
1233             free (c1->c_text);
1234         if (c1->c_ovtxt)
1235             free (c1->c_ovtxt);
1236         if (c1->c_nfs)
1237             free (c1->c_nfs);
1238         if (c1->c_fmt)
1239             free ((char *) c1->c_fmt);
1240         if (c1->c_face)
1241             free (c1->c_face);
1242         if (c1->c_f_args) {
1243             struct arglist *a1, *a2;
1244             for (a1 = c1->c_f_args; a1; a1 = a2) {
1245                 a2 = a1->a_next;
1246                 if (a1->a_fmt)
1247                     free(a1->a_fmt);
1248                 if (a1->a_nfs)
1249                     free(a1->a_nfs);
1250             }
1251             free(a1);
1252         }
1253         free ((char *) c1);
1254     }
1255
1256     *head = *tail = NULL;
1257 }
1258
1259
1260 static void
1261 putcomp (struct mcomp *c1, struct mcomp *c2, int flag)
1262 {
1263     int count, cchdr;
1264     unsigned char *cp;
1265
1266     cchdr = 0;
1267     lm = 0;
1268     llim = c1->c_length ? c1->c_length : -1;
1269     wid = c1->c_width ? c1->c_width : global.c_width;
1270     ovoff = (c1->c_ovoff >= 0 ? c1->c_ovoff : global.c_ovoff)
1271         + c1->c_offset;
1272     if ((ovtxt = c1->c_ovtxt ? c1->c_ovtxt : global.c_ovtxt) == NULL)
1273         ovtxt = "";
1274     if (wid < ovoff + strlen (ovtxt) + 5)
1275         adios (NULL, "component: %s width(%d) too small for overflow(%d)",
1276                 c1->c_name, wid, ovoff + strlen (ovtxt) + 5);
1277     onelp = NULL;
1278
1279     if (c1->c_flags & CLEARTEXT) {
1280         putstr (c1->c_text, c1->c_flags);
1281         putstr ("\n", c1->c_flags);
1282         return;
1283     }
1284
1285     if (c1->c_flags & FACEFMT)
1286         switch (doface (c2)) {
1287             case NOTOK:         /* error */
1288             case OK:            /* async faceproc */
1289                 return;
1290
1291             default:            /* sync faceproc */
1292                 break;
1293         }
1294
1295     if (c1->c_nfs && (c1->c_flags & (ADDRFMT | DATEFMT | FORMAT)))
1296         mcomp_format (c1, c2);
1297
1298     if (c1->c_flags & CENTER) {
1299         count = (c1->c_width ? c1->c_width : global.c_width)
1300             - c1->c_offset - strlen (c2->c_text);
1301         if (!(c1->c_flags & HDROUTPUT) && !(c1->c_flags & NOCOMPONENT))
1302             count -= strlen (c1->c_text ? c1->c_text : c1->c_name) + 2;
1303         lm = c1->c_offset + (count / 2);
1304     } else {
1305         if (c1->c_offset)
1306             lm = c1->c_offset;
1307     }
1308
1309     if (!(c1->c_flags & HDROUTPUT) && !(c1->c_flags & NOCOMPONENT)) {
1310         if (c1->c_flags & UPPERCASE)            /* uppercase component also */
1311             for (cp = (c1->c_text ? c1->c_text : c1->c_name); *cp; cp++)
1312                 if (islower (*cp))
1313                     *cp = toupper (*cp);
1314         putstr (c1->c_text ? c1->c_text : c1->c_name, c1->c_flags);
1315         if (flag != BODYCOMP) {
1316             putstr (": ", c1->c_flags);
1317             if (!(c1->c_flags & SPLIT))
1318                 c1->c_flags |= HDROUTPUT;
1319
1320         cchdr++;
1321         if ((count = c1->c_cwidth -
1322                 strlen (c1->c_text ? c1->c_text : c1->c_name) - 2) > 0)
1323             while (count--)
1324                 putstr (" ", c1->c_flags);
1325         }
1326         else
1327             c1->c_flags |= HDROUTPUT;           /* for BODYCOMP */
1328     }
1329
1330     if (flag == TWOCOMP
1331             && !(c2->c_flags & HDROUTPUT)
1332             && !(c2->c_flags & NOCOMPONENT)) {
1333         if (c1->c_flags & UPPERCASE)
1334             for (cp = c2->c_name; *cp; cp++)
1335                 if (islower (*cp))
1336                     *cp = toupper (*cp);
1337         putstr (c2->c_name, c1->c_flags);
1338         putstr (": ", c1->c_flags);
1339         if (!(c1->c_flags & SPLIT))
1340             c2->c_flags |= HDROUTPUT;
1341
1342         cchdr++;
1343         if ((count = c1->c_cwidth - strlen (c2->c_name) - 2) > 0)
1344             while (count--)
1345                 putstr (" ", c1->c_flags);
1346     }
1347     if (c1->c_flags & UPPERCASE)
1348         for (cp = c2->c_text; *cp; cp++)
1349             if (islower (*cp))
1350                 *cp = toupper (*cp);
1351
1352     count = 0;
1353     if (cchdr) {
1354         if (flag == TWOCOMP)
1355             count = (c1->c_cwidth >= 0) ? c1->c_cwidth
1356                         : (int) strlen (c2->c_name) + 2;
1357         else
1358             count = (c1->c_cwidth >= 0) ? (size_t) c1->c_cwidth
1359                         : strlen (c1->c_text ? c1->c_text : c1->c_name) + 2;
1360     }
1361     count += c1->c_offset;
1362
1363     if ((cp = oneline (c2->c_text, c1->c_flags)))
1364        putstr(cp, c1->c_flags);
1365     if (term == '\n')
1366         putstr ("\n", c1->c_flags);
1367     while ((cp = oneline (c2->c_text, c1->c_flags))) {
1368         lm = count;
1369         if (flag == BODYCOMP
1370                 && !(c1->c_flags & NOCOMPONENT))
1371             putstr (c1->c_text ? c1->c_text : c1->c_name, c1->c_flags);
1372         if (*cp)
1373             putstr (cp, c1->c_flags);
1374         if (term == '\n')
1375             putstr ("\n", c1->c_flags);
1376     }
1377     if (flag == BODYCOMP && term == '\n')
1378         c1->c_flags &= ~HDROUTPUT;              /* Buffer ended on a newline */
1379 }
1380
1381
1382 static char *
1383 oneline (char *stuff, long flags)
1384 {
1385     int spc;
1386     char *cp, *ret;
1387
1388     if (onelp == NULL)
1389         onelp = stuff;
1390     if (*onelp == 0)
1391         return (onelp = NULL);
1392
1393     ret = onelp;
1394     term = 0;
1395     if (flags & COMPRESS) {
1396         for (spc = 1, cp = ret; *onelp; onelp++)
1397             if (isspace (*onelp)) {
1398                 if (*onelp == '\n' && (!onelp[1] || (flags & ADDRFMT))) {
1399                     term = '\n';
1400                     *onelp++ = 0;
1401                     break;
1402                 }
1403                 else
1404                     if (!spc) {
1405                         *cp++ = ' ';
1406                         spc++;
1407                     }
1408             }
1409             else {
1410                 *cp++ = *onelp;
1411                 spc = 0;
1412             }
1413
1414         *cp = 0;
1415     }
1416     else {
1417         while (*onelp && *onelp != '\n')
1418             onelp++;
1419         if (*onelp == '\n') {
1420             term = '\n';
1421             *onelp++ = 0;
1422         }
1423         if (flags & LEFTADJUST)
1424             while (*ret == ' ' || *ret == '\t')
1425                 ret++;
1426     }
1427     if (*onelp == 0 && term == '\n' && (flags & NONEWLINE))
1428         term = 0;
1429
1430     return ret;
1431 }
1432
1433
1434 static void
1435 putstr (char *string, long flags)
1436 {
1437     if (!column && lm > 0) {
1438         while (lm > 0)
1439             if (lm >= 8) {
1440                 putch ('\t', flags);
1441                 lm -= 8;
1442             }
1443             else {
1444                 putch (' ', flags);
1445                 lm--;
1446             }
1447     }
1448     lm = 0;
1449     while (*string)
1450         putch (*string++, flags);
1451 }
1452
1453
1454 static void
1455 putch (char ch, long flags)
1456 {
1457     char buf[BUFSIZ];
1458
1459     if (llim == 0)
1460         return;
1461
1462     switch (ch) {
1463         case '\n': 
1464             if (llim > 0)
1465                 llim--;
1466             column = 0;
1467             row++;
1468             if (ontty != ISTTY || row != global.c_length)
1469                 break;
1470             if (global.c_flags & BELL)
1471                 putchar ('\007');
1472             fflush (stdout);
1473             buf[0] = 0;
1474             read (fileno (stdout), buf, sizeof(buf));
1475             if (strchr(buf, '\n')) {
1476                 if (global.c_flags & CLEARSCR)
1477                     clear_screen ();
1478                 row = 0;
1479             } else {
1480                 putchar ('\n');
1481                 row = global.c_length / 3;
1482             }
1483             return;
1484
1485         case '\t': 
1486             column |= 07;
1487             column++;
1488             break;
1489
1490         case '\b': 
1491             column--;
1492             break;
1493
1494         case '\r': 
1495             column = 0;
1496             break;
1497
1498         default: 
1499             /*
1500              * If we are forwarding this message, and the first
1501              * column contains a dash, then add a dash and a space.
1502              */
1503             if (column == 0 && forwflg && (dashstuff >= 0) && ch == '-') {
1504                 putchar ('-');
1505                 putchar (' ');
1506             }
1507             if (ch >= ' ')
1508                 column++;
1509             break;
1510     }
1511
1512     if (column >= wid && (flags & NOWRAP) == 0) {
1513         putch ('\n', flags);
1514         if (ovoff > 0)
1515             lm = ovoff;
1516         putstr (ovtxt ? ovtxt : "", flags);
1517         putch (ch, flags);
1518         return;
1519     }
1520
1521     putchar (ch);
1522 }
1523
1524
1525 static void
1526 intrser (int i)
1527 {
1528     NMH_UNUSED (i);
1529
1530     discard (stdout);
1531     putchar ('\n');
1532     longjmp (env, DONE);
1533 }
1534
1535
1536 static void
1537 pipeser (int i)
1538 {
1539     NMH_UNUSED (i);
1540
1541     done (NOTOK);
1542 }
1543
1544
1545 static void
1546 quitser (int i)
1547 {
1548     NMH_UNUSED (i);
1549
1550     putchar ('\n');
1551     fflush (stdout);
1552     done (NOTOK);
1553 }
1554
1555
1556 static void
1557 face_format (struct mcomp *c1)
1558 {
1559     char *cp;
1560     struct mailname *mp;
1561
1562     if ((cp = c1->c_text) == NULL)
1563         return;
1564
1565     if ((cp = getname (cp))) {
1566         if ((mp = getm (cp, NULL, 0, AD_NAME, NULL))) {
1567             char *h = mp->m_host  ?  mp->m_host  :  LocalName (0);
1568             c1->c_face = concat ("address ", h, " ", mp->m_mbox, NULL);
1569         }
1570
1571         while ((cp = getname (cp)))
1572             continue;
1573     }
1574 }
1575
1576
1577 /*
1578  * faceproc is two elements defining the image agent's location:
1579  *     Internet host
1580  *     UDP port
1581  */
1582
1583 #include <sys/socket.h>
1584 #include <netinet/in.h>
1585 #include <netdb.h>
1586 #include <arpa/inet.h>
1587
1588 static int
1589 doface (struct mcomp *c1)
1590 {
1591     int result, sd;
1592     static int inited = OK;
1593     static struct sockaddr_storage ss;
1594     static socklen_t socklen;
1595     static int socktype;
1596     static int protocol;
1597
1598     if (inited == OK) {
1599         char *cp;
1600         char **ap = brkstring (cp = getcpy (faceproc), " ", "\n");
1601         struct addrinfo hints, *res;
1602
1603         if (ap[0] == NULL || ap[1] == NULL) {
1604 bad_faceproc: ;
1605             free (cp);
1606             return (inited = NOTOK);
1607         }
1608
1609         memset(&hints, 0, sizeof(hints));
1610 #ifdef AI_ADDRCONFIG
1611         hints.ai_flags = AI_ADDRCONFIG;
1612 #endif
1613         hints.ai_family = PF_UNSPEC;
1614         hints.ai_socktype = SOCK_DGRAM;
1615
1616         if (getaddrinfo(ap[0], ap[1], &hints, &res) != 0)
1617             goto bad_faceproc;
1618
1619         memcpy(&ss, res->ai_addr, res->ai_addrlen);
1620         socklen = res->ai_addrlen;
1621         socktype = res->ai_socktype;
1622         protocol = res->ai_protocol;
1623         freeaddrinfo(res);
1624
1625         inited = DONE;
1626     }
1627     if (inited == NOTOK)
1628         return NOTOK;
1629
1630     if ((sd = socket (ss.ss_family, socktype, protocol)) == NOTOK)
1631         return NOTOK;
1632
1633     result = sendto (sd, c1->c_text, strlen (c1->c_text), 0,
1634                 (struct sockaddr *) &ss, socklen);
1635
1636     close (sd);
1637
1638     return (result != NOTOK ? OK : NOTOK);
1639 }
1640
1641 /*
1642  * COMMENTED OUT
1643  * This version doesn't use sockets
1644  */
1645 #if 0
1646
1647 static int
1648 doface (struct mcomp *c1)
1649 {
1650     int i, len, vecp;
1651     pid_t child_id;
1652     int result, pdi[2], pdo[2];
1653     char *bp, *cp;
1654     char buffer[BUFSIZ], *vec[10];
1655
1656     if (pipe (pdi) == NOTOK)
1657         return NOTOK;
1658     if (pipe (pdo) == NOTOK) {
1659         close (pdi[0]);
1660         close (pdi[1]);
1661         return NOTOK;
1662     }
1663
1664     for (i = 0; (child_id = vfork()) == NOTOK && i < 5; i++)
1665         sleep (5);
1666
1667     switch (child_id) {
1668         case NOTOK: 
1669             /* oops... fork error */
1670             return NOTOK;
1671
1672         case OK: 
1673             /* child process */
1674             SIGNAL (SIGINT, SIG_IGN);
1675             SIGNAL (SIGQUIT, SIG_IGN);
1676             if (pdi[0] != fileno (stdin)) {
1677                 dup2 (pdi[0], fileno (stdin));
1678                 close (pdi[0]);
1679             }
1680             close (pdi[1]);
1681             close (pdo[0]);
1682             if (pdo[1] != fileno (stdout)) {
1683                 dup2 (pdo[1], fileno (stdout));
1684                 close (pdo[1]);
1685             }
1686             vecp = 0;
1687             vec[vecp++] = r1bindex (faceproc, '/');
1688             vec[vecp++] = "-e";
1689             if (sleepsw != NOTOK) {
1690                 vec[vecp++] = "-s";
1691                 snprintf (buffer, sizeof(buffer), "%d", sleepsw);
1692                 vec[vecp++] = buffer;
1693             }
1694             vec[vecp] = NULL;
1695             execvp (faceproc, vec);
1696             fprintf (stderr, "unable to exec ");
1697             perror (faceproc);
1698             _exit (-1);         /* NOTREACHED */
1699
1700         default: 
1701             /* parent process */
1702             close (pdi[0]);
1703             i = strlen (c1->c_text);
1704             if (write (pdi[1], c1->c_text, i) != i)
1705                 adios ("pipe", "error writing to");
1706             free (c1->c_text), c1->c_text = NULL;
1707             close (pdi[1]);
1708
1709             close (pdo[1]);
1710             cp = NULL, len = 0;
1711             result = DONE;
1712             while ((i = read (pdo[0], buffer, strlen (buffer))) > 0) {
1713                 if (cp) {
1714                     int j;
1715                     char *dp;
1716                     dp = mh_xrealloc (cp, (unsigned) (j = len + i));
1717                     memcpy(dp + len, buffer, i);
1718                     cp = dp, len = j;
1719                 }
1720                 else {
1721                     cp = mh_xmalloc ((unsigned) i);
1722                     memcpy(cp, buffer, i);
1723                     len = i;
1724                 }
1725                 if (result == DONE)
1726                     for (bp = buffer + i - 1; bp >= buffer; bp--)
1727                         if (!isascii (*bp) || iscntrl (*bp)) {
1728                             result = OK;
1729                             break;
1730                         }
1731             }
1732             close (pdo[0]);
1733
1734 /* no waiting for child... */
1735
1736             if (result == OK) { /* binary */
1737                 if (write (1, cp, len) != len)
1738                     adios ("writing", "error");
1739                 free (cp);
1740             }
1741             else                /* empty */
1742                 if ((c1->c_text = cp) == NULL)
1743                     result = OK;
1744             break;
1745     }
1746
1747     return result;
1748 }
1749 #endif /* COMMENTED OUT */
1750
1751
1752 int
1753 mhlsbr (int argc, char **argv, FILE *(*action)())
1754 {
1755     SIGNAL_HANDLER istat = NULL, pstat = NULL, qstat = NULL;
1756     char *cp = NULL;
1757     struct mcomp *c1;
1758
1759     switch (m_setjmp (mhlenv)) {
1760         case OK: 
1761             cp = invo_name;
1762             sleepsw = 0;        /* XXX */
1763             bellflg = clearflg = forwflg = forwall = exitstat = 0;
1764             digest = NULL;
1765             ontty = NOTTY;
1766             mhl_action = action;
1767
1768             /*
1769              * If signal is at default action, then start ignoring
1770              * it, else let it set to its current action.
1771              */
1772             if ((istat = SIGNAL (SIGINT, SIG_IGN)) != SIG_DFL)
1773                 SIGNAL (SIGINT, istat);
1774             if ((qstat = SIGNAL (SIGQUIT, SIG_IGN)) != SIG_DFL)
1775                 SIGNAL (SIGQUIT, qstat);
1776             pstat = SIGNAL (SIGPIPE, pipeser);
1777             mhl (argc, argv);                  /* FALL THROUGH! */
1778
1779         default: 
1780             SIGNAL (SIGINT, istat);
1781             SIGNAL (SIGQUIT, qstat);
1782             SIGNAL (SIGPIPE, SIG_IGN);/* should probably change to block instead */
1783             if (ontty == PITTY)
1784                 m_pclose ();
1785             SIGNAL (SIGPIPE, pstat);
1786             invo_name = cp;
1787             if (holder.c_text) {
1788                 free (holder.c_text);
1789                 holder.c_text = NULL;
1790             }
1791             free_queue (&msghd, &msgtl);
1792             for (c1 = fmthd; c1; c1 = c1->c_next)
1793                 c1->c_flags &= ~HDROUTPUT;
1794             return exitstat;
1795     }
1796 }
1797
1798 #undef adios
1799 #undef done
1800
1801 static void
1802 mhladios (char *what, char *fmt, ...)
1803 {
1804     va_list ap;
1805
1806     va_start(ap, fmt);
1807     advertise (what, NULL, fmt, ap);
1808     va_end(ap);
1809     mhldone (1);
1810 }
1811
1812
1813 static void
1814 mhldone (int status)
1815 {
1816     exitstat = status;
1817     if (mhl_action)
1818         longjmp (mhlenv, DONE);
1819     else
1820         done (exitstat);
1821 }
1822
1823
1824 static  int m_pid = NOTOK;
1825 static  int sd = NOTOK;
1826
1827 static void
1828 m_popen (char *name)
1829 {
1830     int pd[2];
1831
1832     if (mhl_action && (sd = dup (fileno (stdout))) == NOTOK)
1833         adios ("standard output", "unable to dup()");
1834
1835     if (pipe (pd) == NOTOK)
1836         adios ("pipe", "unable to");
1837
1838     switch (m_pid = vfork()) {
1839         case NOTOK: 
1840             adios ("fork", "unable to");
1841
1842         case OK: 
1843             SIGNAL (SIGINT, SIG_DFL);
1844             SIGNAL (SIGQUIT, SIG_DFL);
1845
1846             close (pd[1]);
1847             if (pd[0] != fileno (stdin)) {
1848                 dup2 (pd[0], fileno (stdin));
1849                 close (pd[0]);
1850             }
1851             execlp (name, r1bindex (name, '/'), NULL);
1852             fprintf (stderr, "unable to exec ");
1853             perror (name);
1854             _exit (-1);
1855
1856         default: 
1857             close (pd[0]);
1858             if (pd[1] != fileno (stdout)) {
1859                 dup2 (pd[1], fileno (stdout));
1860                 close (pd[1]);
1861             }
1862     }
1863 }
1864
1865
1866 void
1867 m_pclose (void)
1868 {
1869     if (m_pid == NOTOK)
1870         return;
1871
1872     if (sd != NOTOK) {
1873         fflush (stdout);
1874         if (dup2 (sd, fileno (stdout)) == NOTOK)
1875             adios ("standard output", "unable to dup2()");
1876
1877         clearerr (stdout);
1878         close (sd);
1879         sd = NOTOK;
1880     }
1881     else
1882         fclose (stdout);
1883
1884     pidwait (m_pid, OK);
1885     m_pid = NOTOK;
1886 }
1887
1888
1889 /*
1890  * Compile a format string and add it to the list of arguments used by
1891  * the formatproc.
1892  *
1893  * This deserves some explanation.  Here's the deal:
1894  *
1895  * We want to keep track of components used as arguments by formatproc,
1896  * but the hash table is reset every time fmt_compile is called.  So we
1897  * iterate through the function list looking for things that use components
1898  * and save the name.  And because we might get the same components used
1899  * by different arguments we need to keep track to every reference of
1900  * every component so we can add them when the message is processed.  So
1901  * we compile the argument string now (to get the components we use) and
1902  * save them for later.
1903  */
1904
1905 static int
1906 compileargs (struct mcomp *c1, char *nfs)
1907 {
1908     struct format *fmt;
1909     struct arglist *args;
1910     unsigned int i;
1911
1912     i = fmt_compile(nfs, &fmt);
1913
1914     args = (struct arglist *) mh_xmalloc(sizeof(struct arglist));
1915
1916     if (! args)
1917         adios (NULL, "Unable to allocate formatproc args storage");
1918
1919     args->a_fmt = fmt;
1920     args->a_nfs = format_string;
1921     args->a_next = NULL;
1922     c1->c_nargs++;
1923     format_string = NULL;
1924
1925     if (c1->c_f_tail)
1926         c1->c_f_tail->a_next = args;
1927
1928     c1->c_f_tail = args;
1929
1930     if (! c1->c_f_args)
1931         c1->c_f_args = args;
1932
1933     if (i == 0)
1934         return 0;
1935
1936     /*
1937      * If wantcomp ever changes size, we need to change the size
1938      * of mhlcomp as well
1939      */
1940
1941     for (i = 0; i < sizeof(wantcomp)/sizeof(wantcomp[0]); i++) {
1942         if (wantcomp[i]) {
1943             if (mhlcomp[i]) {
1944                 struct comp *c;
1945                 for (c = mhlcomp[i]; c->c_next != NULL; c = c->c_next)
1946                     ;
1947                 c->c_next = wantcomp[i];
1948             } else
1949                 mhlcomp[i] = wantcomp[i];
1950         }
1951     }
1952
1953     return 0;
1954 }
1955
1956 /*
1957  * Check to see if we are interested in a component.  If we are, save
1958  * the text.
1959  */
1960
1961 static int
1962 checkcomp(char *name, char *buf)
1963 {
1964     int found = 0, i;
1965     struct comp *c;
1966     int bucket = CHASH(name);
1967     char *cp;
1968  
1969     if ((c = mhlcomp[bucket])) {
1970         do {
1971             if (mh_strcasecmp(name, c->c_name) == 0) {
1972                 found++;
1973                 if (! c->c_text) {
1974                     i = strlen(c->c_text = strdup(buf)) - 1;
1975                     if (c->c_text[i] == '\n')
1976                         c->c_text[i] = '\0';
1977                 } else {
1978                     i = strlen(cp = c->c_text) - 1;
1979                     if (cp[i] == '\n') {
1980                         if (c->c_type & CT_ADDR) {
1981                             cp[i] = '\0';
1982                             cp = add (",\n\t", cp);
1983                         } else {
1984                             cp = add ("\t", cp);
1985                         }
1986                     }
1987                     c->c_text = add (buf, cp);
1988                 }
1989             }
1990         } while ((c = c->c_next));
1991     }
1992
1993     return found ? bucket : -1;
1994 }
1995
1996 /*
1997  * Add text to an existing component
1998  */
1999
2000 static void
2001 addcomp(int bucket, char *name, char *buf)
2002 {
2003     struct comp *c;
2004
2005     if (bucket != -1) {
2006         c = mhlcomp[bucket];
2007         do {
2008             if (mh_strcasecmp(name, c->c_name) == 0)
2009                 c->c_text = add (buf, c->c_text);
2010         } while ((c = c->c_next));
2011     }
2012 }
2013
2014 /*
2015  * Free up saved component structures
2016  */
2017
2018 static void
2019 freecomps(void)
2020 {
2021     struct comp *c1, *c2;
2022     unsigned int i;
2023
2024     for (i = 0; i < sizeof(mhlcomp)/sizeof(mhlcomp[0]); i++) {
2025         if ((c1 = mhlcomp[i]))
2026             for (; c1; c1 = c2) {
2027                 c2 = c1->c_next;
2028                 if (c1->c_text)
2029                     free(c1->c_text);
2030                 free(c1);
2031             }
2032     }
2033 }
2034
2035 /*
2036  * Just free up the component text.
2037  */
2038
2039 static void
2040 freecomptext(void)
2041 {
2042     struct comp *c1;
2043     unsigned int i;
2044
2045     for (i = 0; i < sizeof(mhlcomp)/sizeof(mhlcomp[0]); i++) {
2046         if ((c1 = mhlcomp[i]))
2047             for (; c1; c1 = c1->c_next) {
2048                 if (c1->c_text) {
2049                     free(c1->c_text);
2050                     c1->c_text = NULL;
2051                 }
2052             }
2053     }
2054 }
2055
2056 /*
2057  * Filter the body of a message through a specified format program
2058  */
2059
2060 static void
2061 filterbody (struct mcomp *c1, char *buf, int bufsz, int state, FILE *fp)
2062 {
2063     struct mcomp holder;
2064     char name[NAMESZ];
2065     int fdinput[2], fdoutput[2], waitstat;
2066     ssize_t cc;
2067     pid_t writerpid, filterpid;
2068
2069     /*
2070      * Create pipes so we can communicate with our filter process.
2071      */
2072
2073     if (pipe(fdinput) < 0) {
2074         adios(NULL, "Unable to create input pipe");
2075     }
2076
2077     if (pipe(fdoutput) < 0) {
2078         adios(NULL, "Unable to create output pipe");
2079     }
2080
2081     /*
2082      * Here's what we're doing to do.
2083      *
2084      * - Fork ourselves and start writing data to the write side of the
2085      *   input pipe (fdinput[1]).
2086      *
2087      * - Fork and exec our filter program.  We set the standard input of
2088      *   our filter program to be the read side of our input pipe (fdinput[0]).
2089      *   Standard output is set to the write side of our output pipe
2090      *   (fdoutput[1]).
2091      *
2092      * - We read from the read side of the output pipe (fdoutput[0]).
2093      *
2094      * We're forking because that's the simplest way to prevent any deadlocks.
2095      * (without doing something like switching to non-blocking I/O and using
2096      * select or poll, and I'm not interested in doing that).
2097      */
2098
2099     switch (writerpid = fork()) {
2100     case 0:
2101         /*
2102          * Our child process - just write to the filter input (fdinput[1]).
2103          * Close all other descriptors that we don't need.
2104          */
2105
2106         close(fdinput[0]);
2107         close(fdoutput[0]);
2108         close(fdoutput[1]);
2109
2110         /*
2111          * Call m_getfld() until we're no longer in the BODY state
2112          */
2113
2114         while (state == BODY) {
2115             write(fdinput[1], buf, strlen(buf));
2116             state = m_getfld(state, name, buf, bufsz, fp);
2117         }
2118
2119         /*
2120          * We should be done; time to exit.
2121          */
2122
2123         close(fdinput[1]);
2124         /*
2125          * Make sure we call _exit(), otherwise we may flush out the stdio
2126          * buffers that we have duplicated from the parent.
2127          */
2128         _exit(0);
2129         break;
2130     case -1:
2131         adios(NULL, "Unable to fork for filter writer process");
2132         break;
2133     }
2134
2135     /*
2136      * Fork and exec() our filter program, after redirecting standard in
2137      * and standard out appropriately.
2138      */
2139
2140     switch (filterpid = fork()) {
2141         char **args;
2142         struct arglist *a;
2143         int i, dat[5], s;
2144
2145     case 0:
2146         /*
2147          * Allocate an argument array for us
2148          */
2149
2150         args = (char **) mh_xmalloc((c1->c_nargs + 2) * sizeof(char *));
2151         args[0] = formatproc;
2152         args[c1->c_nargs + 1] = NULL;
2153         dat[0] = 0;
2154         dat[1] = 0;
2155         dat[2] = 0;
2156         dat[3] = BUFSIZ;
2157         dat[4] = 0;
2158
2159         /*
2160          * Pull out each argument and scan them.
2161          */
2162
2163         for (a = c1->c_f_args, i = 1; a != NULL; a = a->a_next, i++) {
2164             args[i] = mh_xmalloc(BUFSIZ);
2165             fmt_scan(a->a_fmt, args[i], BUFSIZ, dat);
2166             /*
2167              * fmt_scan likes to put a trailing newline at the end of the
2168              * format string.  If we have one, get rid of it.
2169              */
2170             s = strlen(args[i]);
2171             if (args[i][s - 1] == '\n')
2172                 args[i][s - 1] = '\0';
2173         }
2174
2175         if (dup2(fdinput[0], STDIN_FILENO) < 0) {
2176             adios("formatproc", "Unable to dup2() standard input");
2177         }
2178         if (dup2(fdoutput[1], STDOUT_FILENO) < 0) {
2179             adios("formatproc", "Unable to dup2() standard output");
2180         }
2181
2182         /*
2183          * Close everything (especially the old input and output
2184          * descriptors, since they've been dup'd to stdin and stdout),
2185          * and exec the formatproc.
2186          */
2187
2188         close(fdinput[0]);
2189         close(fdinput[1]);
2190         close(fdoutput[0]);
2191         close(fdoutput[1]);
2192
2193         execvp(formatproc, args);
2194
2195         adios(formatproc, "Unable to execute filter");
2196
2197         break;
2198
2199     case -1:
2200         adios(NULL, "Unable to fork format program");
2201     }
2202
2203     /*
2204      * Close everything except our reader (fdoutput[0]);
2205      */
2206
2207     close(fdinput[0]);
2208     close(fdinput[1]);
2209     close(fdoutput[1]);
2210
2211     /*
2212      * As we read in this data, send it to putcomp
2213      */
2214
2215     holder.c_text = buf;
2216
2217     while ((cc = read(fdoutput[0], buf, bufsz - 1)) > 0) {
2218         buf[cc] = '\0';
2219         putcomp(c1, &holder, BODYCOMP);
2220     }
2221
2222     if (cc < 0) {
2223         adios(NULL, "reading from formatproc");
2224     }
2225
2226     /*
2227      * See if we got any errors along the way.  I'm a little leery of calling
2228      * waitpid() without WNOHANG, but it seems to be the most correct solution.
2229      */
2230
2231     if (waitpid(filterpid, &waitstat, 0) < 0) {
2232         if (errno != ECHILD) {
2233             adios("filterproc", "Unable to determine status");
2234         }
2235     } else {
2236         if (! (WIFEXITED(waitstat) && WEXITSTATUS(waitstat) == 0)) {
2237             pidstatus(waitstat, stderr, "filterproc");
2238         }
2239     }
2240
2241     if (waitpid(writerpid, &waitstat, 0) < 0) {
2242         if (errno != ECHILD) {
2243             adios("writer process", "Unable to determine status");
2244             done(1);
2245         }
2246     } else {
2247         if (! (WIFEXITED(waitstat) && WEXITSTATUS(waitstat) == 0)) {
2248             pidstatus(waitstat, stderr, "writer process");
2249             done(1);
2250         }
2251     }
2252
2253     close(fdoutput[0]);
2254 }