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