]>
diplodocus.org Git - nmh/blob - uip/mhlsbr.c
3 * mhlsbr.c -- main routines for nmh message lister
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.
11 #include <h/signals.h>
12 #include <h/addrsbr.h>
13 #include <h/fmt_scan.h>
17 #include <sys/types.h>
21 * for a component containing addresses, ADDRFMT, if COMPRESS is also
22 * set, then addresses get split wrong (not at the spaces between commas).
23 * To fix this correctly, putstr() should know about "atomic" strings that
24 * must NOT be broken across lines. That's too difficult for right now
25 * (it turns out that there are a number of degernate cases), so in
26 * oneline(), instead of
28 * (*onelp == '\n' && !onelp[1])
30 * being a terminating condition,
32 * (*onelp == '\n' && (!onelp[1] || (flags & ADDRFMT)))
34 * is used instead. This cuts the line prematurely, and gives us a much
35 * better chance of getting things right.
44 #define MHL_SWITCHES \
45 X("bell", 0, BELLSW) \
46 X("nobell", 0, NBELLSW) \
47 X("clear", 0, CLRSW) \
48 X("noclear", 0, NCLRSW) \
49 X("folder +folder", 0, FOLDSW) \
50 X("form formfile", 0, FORMSW) \
51 X("moreproc program", 0, PROGSW) \
52 X("nomoreproc", 0, NPROGSW) \
53 X("length lines", 0, LENSW) \
54 X("width columns", 0, WIDTHSW) \
55 X("sleep seconds", 0, SLEEPSW) \
56 X("dashstuffing", -12, BITSTUFFSW) /* interface from forw */ \
57 X("nodashstuffing", -14, NBITSTUFFSW) /* interface from forw */ \
58 X("version", 0, VERSIONSW) \
59 X("help", 0, HELPSW) \
60 X("forward", -7, FORW1SW) /* interface from forw */ \
61 X("forwall", -7, FORW2SW) /* interface from forw */ \
62 X("digest list", -6, DGSTSW) \
63 X("volume number", -6, VOLUMSW) \
64 X("issue number", -5, ISSUESW) \
65 X("nobody", -6, NBODYSW) \
66 X("fmtproc program", 0, FMTPROCSW) \
67 X("nofmtproc", 0, NFMTPROCSW) \
69 #define X(sw, minchars, id) id,
70 DEFINE_SWITCH_ENUM(MHL
);
73 #define X(sw, minchars, id) { sw, minchars, id },
74 DEFINE_SWITCH_ARRAY(MHL
, mhlswitches
);
77 #define NOCOMPONENT 0x000001 /* don't show component name */
78 #define UPPERCASE 0x000002 /* display in all upper case */
79 #define CENTER 0x000004 /* center line */
80 #define CLEARTEXT 0x000008 /* cleartext */
81 #define EXTRA 0x000010 /* an "extra" component */
82 #define HDROUTPUT 0x000020 /* already output */
83 #define CLEARSCR 0x000040 /* clear screen */
84 #define LEFTADJUST 0x000080 /* left justify multiple lines */
85 #define COMPRESS 0x000100 /* compress text */
86 #define ADDRFMT 0x000200 /* contains addresses */
87 #define BELL 0x000400 /* sound bell at EOP */
88 #define DATEFMT 0x000800 /* contains dates */
89 #define FORMAT 0x001000 /* parse address/date/RFC-2047 field */
90 #define INIT 0x002000 /* initialize component */
91 #define RTRIM 0x004000 /* trim trailing whitespace */
92 #define SPLIT 0x010000 /* split headers (don't concatenate) */
93 #define NONEWLINE 0x020000 /* don't write trailing newline */
94 #define NOWRAP 0x040000 /* Don't wrap lines ever */
95 #define FMTFILTER 0x080000 /* Filter through format filter */
96 #define LBITS "\020\01NOCOMPONENT\02UPPERCASE\03CENTER\04CLEARTEXT\05EXTRA\06HDROUTPUT\07CLEARSCR\010LEFTADJUST\011COMPRESS\012ADDRFMT\013BELL\014DATEFMT\015FORMAT\016INIT\017RTRIM\021SPLIT\022NONEWLINE\023NOWRAP\024FMTFILTER"
97 #define GFLAGS (NOCOMPONENT | UPPERCASE | CENTER | LEFTADJUST | COMPRESS | SPLIT | NOWRAP)
100 * A format string to be used as a command-line argument to the body
105 struct format
*a_fmt
;
107 struct arglist
*a_next
;
111 * Linked list of command line arguments for the body format filter. This
112 * USED to be in "struct mcomp", but the format API got cleaned up and even
113 * though it reduced the code we had to do, it make things more complicated
114 * for us. Specifically:
116 * - The interface to the hash table has been cleaned up, which means the
117 * rooting around in the hash table is no longer necessary (yay!). But
118 * this ALSO means that we have to make sure that we call our format
119 * compilation routines before we process the message, because the
120 * components need to be visible in the hash table so we can save them for
121 * later. So we moved them out of "mcomp" and now compile them right before
122 * header processing starts.
123 * - We also use format strings to handle other components in the mhl
124 * configuration (using "formatfield" and "decode"), but here life
125 * gets complicated: they aren't dealt with in the normal way. Instead
126 * of referring to a component like {from}, each component is processed
127 * using the special {text} component. But these format strings need to be
128 * compiled BEFORE we compile the format arguments; in the previous
129 * implementation they were compiled and scanned as the headers were
130 * read, and that would reset the hash table that we need to populate
131 * the components used by the body format filter. So we are compiling
132 * the formatfield component strings ahead of time and then scanning them
135 * Okay, fine ... this was broken before. But you know what? Fixing this
136 * the right way will make things easier down the road.
138 * One side-effect to this change: format strings are now compiled only once
139 * for components specified with "formatfield", but they are compiled for
140 * every message for format arguments.
143 static struct arglist
*arglist_head
;
144 static struct arglist
*arglist_tail
;
145 static int filter_nargs
= 0;
148 * Flags/options for each component
152 char *c_name
; /* component name */
153 char *c_text
; /* component text */
154 char *c_ovtxt
; /* text overflow indicator */
155 char *c_nfs
; /* iff FORMAT */
156 struct format
*c_fmt
; /* .. */
157 struct comp
*c_c_text
; /* Ref to {text} in FORMAT */
158 struct comp
*c_c_error
; /* Ref to {error} */
159 int c_offset
; /* left margin indentation */
160 int c_ovoff
; /* overflow indentation */
161 int c_width
; /* width of field */
162 int c_cwidth
; /* width of component */
163 int c_length
; /* length in lines */
165 struct mcomp
*c_next
;
168 static struct mcomp
*msghd
= NULL
;
169 static struct mcomp
*msgtl
= NULL
;
170 static struct mcomp
*fmthd
= NULL
;
171 static struct mcomp
*fmttl
= NULL
;
173 static struct mcomp global
= {
174 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, 0, -1, 80, -1, 40, BELL
, NULL
177 static struct mcomp holder
= {
178 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, 0, 0, 0, 0, 0, NOCOMPONENT
, NULL
186 static struct pair pairs
[] = {
189 { "Sender", ADDRFMT
},
190 { "Reply-To", ADDRFMT
},
194 { "Resent-Date", DATEFMT
},
195 { "Resent-From", ADDRFMT
},
196 { "Resent-Sender", ADDRFMT
},
197 { "Resent-Reply-To", ADDRFMT
},
198 { "Resent-To", ADDRFMT
},
199 { "Resent-cc", ADDRFMT
},
200 { "Resent-Bcc", ADDRFMT
},
210 static struct triple triples
[] = {
211 { "nocomponent", NOCOMPONENT
, 0 },
212 { "uppercase", UPPERCASE
, 0 },
213 { "nouppercase", 0, UPPERCASE
},
214 { "center", CENTER
, 0 },
215 { "nocenter", 0, CENTER
},
216 { "clearscreen", CLEARSCR
, 0 },
217 { "noclearscreen", 0, CLEARSCR
},
218 { "noclear", 0, CLEARSCR
},
219 { "leftadjust", LEFTADJUST
, 0 },
220 { "noleftadjust", 0, LEFTADJUST
},
221 { "compress", COMPRESS
, 0 },
222 { "nocompress", 0, COMPRESS
},
223 { "split", SPLIT
, 0 },
224 { "nosplit", 0, SPLIT
},
225 { "rtrim", RTRIM
, 0 },
226 { "nortrim", 0, RTRIM
},
227 { "addrfield", ADDRFMT
, DATEFMT
},
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
},
240 static char *addrcomps
[] = {
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;
264 static int sleepsw
= NOTOK
;
266 static char *digest
= NULL
;
267 static int volume
= 0;
268 static int issue
= 0;
270 static int exitstat
= 0;
271 static int mhldebug
= 0;
273 static int filesize
= 0;
278 static int ontty
= NOTTY
;
281 static unsigned int column
;
287 static unsigned int wid
;
295 static int num_ignores
= 0;
296 static char *ignores
[MAXARGS
];
299 static jmp_buf mhlenv
;
301 static char delim3
[] = /* from forw.c */
302 "\n----------------------------------------------------------------------\n\n";
303 static char delim4
[] = "\n------------------------------\n\n";
305 static FILE *(*mhl_action
) () = (FILE *(*) ()) 0;
308 * Redefine a couple of functions.
309 * These are undefined later in the code.
311 #define adios mhladios
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 filterbody (struct mcomp
*, char *, int, int, FILE *,
340 static void compile_formatfield(struct mcomp
*);
341 static void compile_filterargs (void);
345 mhl (int argc
, char **argv
)
347 int length
= 0, nomore
= 0;
348 unsigned int i
, vecp
= 0;
350 char *cp
, *folder
= NULL
, *form
= NULL
;
351 char buf
[BUFSIZ
], *files
[MAXARGS
];
352 char **argp
, **arguments
;
354 /* Need this if called from main() of show(1). */
355 invo_name
= r1bindex (argv
[0], '/');
357 arguments
= getarguments (invo_name
, argc
, argv
, 1);
360 if ((cp
= getenv ("MHLDEBUG")) && *cp
)
363 while ((cp
= *argp
++)) {
365 switch (smatch (++cp
, mhlswitches
)) {
367 ambigsw (cp
, mhlswitches
);
370 adios (NULL
, "-%s unknown\n", cp
);
373 snprintf (buf
, sizeof(buf
), "%s [switches] [files ...]", invo_name
);
374 print_help (buf
, mhlswitches
, 1);
377 print_version(invo_name
);
395 if (!(folder
= *argp
++) || *folder
== '-')
396 adios (NULL
, "missing argument to %s", argp
[-2]);
399 if (!(form
= *argp
++) || *form
== '-')
400 adios (NULL
, "missing argument to %s", argp
[-2]);
404 if (!(cp
= *argp
++) || *cp
== '-')
405 adios (NULL
, "missing argument to %s", argp
[-2]);
407 sleepsw
= atoi (cp
);/* ZERO ok! */
411 if (!(moreproc
= *argp
++) || *moreproc
== '-')
412 adios (NULL
, "missing argument to %s", argp
[-2]);
419 if (!(formatproc
= *argp
++) || *formatproc
== '-')
420 adios (NULL
, "missing argument to %s", argp
[-2]);
427 if (!(cp
= *argp
++) || *cp
== '-')
428 adios (NULL
, "missing argument to %s", argp
[-2]);
429 else if ((length
= atoi (cp
)) < 1)
430 adios (NULL
, "bad argument %s %s", argp
[-2], cp
);
433 if (!(cp
= *argp
++) || *cp
== '-')
434 adios (NULL
, "missing argument to %s", argp
[-2]);
435 else if ((width
= atoi (cp
)) < 1)
436 adios (NULL
, "bad argument %s %s", argp
[-2], cp
);
440 if (!(digest
= *argp
++) || *digest
== '-')
441 adios (NULL
, "missing argument to %s", argp
[-2]);
444 if (!(cp
= *argp
++) || *cp
== '-')
445 adios (NULL
, "missing argument to %s", argp
[-2]);
446 else if ((issue
= atoi (cp
)) < 1)
447 adios (NULL
, "bad argument %s %s", argp
[-2], cp
);
450 if (!(cp
= *argp
++) || *cp
== '-')
451 adios (NULL
, "missing argument to %s", argp
[-2]);
452 else if ((volume
= atoi (cp
)) < 1)
453 adios (NULL
, "bad argument %s %s", argp
[-2], cp
);
457 forwall
++; /* fall */
460 clearflg
= -1;/* XXX */
464 dashstuff
= 1; /* trinary logic */
467 dashstuff
= -1; /* trinary logic */
479 folder
= getenv ("mhfolder");
481 if (isatty (fileno (stdout
))) {
482 if (!nomore
&& moreproc
&& *moreproc
!= '\0') {
484 SIGNAL (SIGINT
, SIG_IGN
);
485 SIGNAL2 (SIGQUIT
, quitser
);
487 SIGNAL2 (SIGPIPE
, pipeser
);
488 m_popen (moreproc
, mhl_action
!= NULL
);
491 SIGNAL (SIGINT
, SIG_IGN
);
492 SIGNAL2 (SIGQUIT
, quitser
);
499 mhl_format (form
? form
: mhlformat
, length
, width
);
502 process (folder
, NULL
, 1, vecp
= 1);
504 for (i
= 0; i
< vecp
; i
++)
505 process (folder
, files
[i
], i
+ 1, vecp
);
510 printf ("%s", delim4
);
512 snprintf (buf
, sizeof(buf
), "End of %s Digest\n", digest
);
514 snprintf (buf
, sizeof(buf
), "End of %s Digest [Volume %d Issue %d]\n",
515 digest
, volume
, issue
);
518 for (cp
= buf
+ i
; i
> 1; i
--)
525 printf ("\n------- End of Forwarded Message%s\n",
526 vecp
> 1 ? "s" : "");
531 adios("output", "error writing");
534 if (clearflg
> 0 && ontty
== NOTTY
)
545 mhl_format (char *file
, int length
, int width
)
549 char *ap
, name
[NAMESZ
];
553 static dev_t dev
= 0;
554 static ino_t ino
= 0;
555 static time_t mtime
= 0;
558 if (stat (etcpath (file
), &st
) != NOTOK
559 && mtime
== st
.st_mtime
563 free_queue (&fmthd
, &fmttl
);
566 if ((fp
= fopen (etcpath (file
), "r")) == NULL
)
567 adios (file
, "unable to open format file");
569 if (fstat (fileno (fp
), &st
) != NOTOK
) {
575 global
.c_ovtxt
= global
.c_nfs
= NULL
;
579 if ((i
= sc_width ()) > 5)
581 global
.c_cwidth
= -1;
582 if ((i
= sc_length ()) > 5)
583 global
.c_length
= i
- 1;
584 global
.c_flags
= BELL
; /* BELL is default */
585 *(ip
= ignores
) = NULL
;
588 while (vfgets (fp
, &ap
) == OK
) {
593 TrimSuffixC(bp
, '\n');
596 (void) add_queue (&fmthd
, &fmttl
, NULL
, bp
+ 1, CLEARTEXT
);
601 strncpy (name
, parse(), sizeof(name
));
607 * Split this list of fields to ignore, and copy
608 * it to the end of the current "ignores" list.
610 if (!strcasecmp (name
, "ignores")) {
611 char **tmparray
, **p
;
614 /* split the fields */
615 tmparray
= brkstring (mh_xstrdup(++parptr
), ",", NULL
);
617 /* count number of fields split */
622 /* copy pointers to split fields to ignores array */
623 ip
= copyip (tmparray
, ip
, MAXARGS
- num_ignores
);
629 if (evalvar (&global
))
630 adios (NULL
, "format file syntax error: %s", bp
);
637 c1
= add_queue (&fmthd
, &fmttl
, name
, NULL
, INIT
);
638 while (*parptr
== ':' || *parptr
== ',') {
641 adios (NULL
, "format file syntax error: %s", bp
);
643 if (!c1
->c_nfs
&& global
.c_nfs
) {
644 if (c1
->c_flags
& DATEFMT
) {
645 if (global
.c_flags
& DATEFMT
) {
646 c1
->c_nfs
= mh_xstrdup(global
.c_nfs
);
647 compile_formatfield(c1
);
651 if (c1
->c_flags
& ADDRFMT
) {
652 if (global
.c_flags
& ADDRFMT
) {
653 c1
->c_nfs
= mh_xstrdup(global
.c_nfs
);
654 compile_formatfield(c1
);
661 adios (NULL
, "format file syntax error: %s", bp
);
667 for (c1
= fmthd
; c1
; c1
= c1
->c_next
) {
670 fprintf (stderr
, "c1: name=\"%s\" text=\"%s\" ovtxt=\"%s\"\n",
671 c1
->c_name
, c1
->c_text
, c1
->c_ovtxt
);
672 fprintf (stderr
, "\tnfs=0x%x fmt=0x%x\n",
673 (unsigned int)(unsigned long) c1
->c_nfs
,
674 (unsigned int)(unsigned long) c1
->c_fmt
);
675 fprintf (stderr
, "\toffset=%d ovoff=%d width=%d cwidth=%d length=%d\n",
676 c1
->c_offset
, c1
->c_ovoff
, c1
->c_width
,
677 c1
->c_cwidth
, c1
->c_length
);
678 fprintf (stderr
, "\tflags=%s\n",
679 snprintb (buffer
, sizeof(buffer
), (unsigned) c1
->c_flags
, LBITS
));
685 global
.c_flags
|= CLEARSCR
;
688 global
.c_flags
&= ~CLEARSCR
;
691 switch (bellflg
) { /* command line may override format file */
693 global
.c_flags
|= BELL
;
696 global
.c_flags
&= ~BELL
;
701 global
.c_length
= length
;
703 global
.c_width
= width
;
704 if (global
.c_length
< 5)
705 global
.c_length
= 10000;
706 if (global
.c_width
< 5)
707 global
.c_width
= 10000;
712 evalvar (struct mcomp
*c1
)
714 char *cp
, name
[NAMESZ
];
719 strncpy (name
, parse(), sizeof(name
));
721 if (!strcasecmp (name
, "component")) {
722 if (ptos (name
, &c1
->c_text
))
724 c1
->c_flags
&= ~NOCOMPONENT
;
728 if (!strcasecmp (name
, "overflowtext"))
729 return ptos (name
, &c1
->c_ovtxt
);
731 if (!strcasecmp (name
, "formatfield")) {
732 if (ptos (name
, &cp
))
734 c1
->c_nfs
= getcpy (new_fs (NULL
, NULL
, cp
));
735 compile_formatfield(c1
);
736 c1
->c_flags
|= FORMAT
;
740 if (!strcasecmp (name
, "decode")) {
741 c1
->c_nfs
= getcpy (new_fs (NULL
, NULL
, "%(decode{text})"));
742 compile_formatfield(c1
);
743 c1
->c_flags
|= FORMAT
;
747 if (!strcasecmp (name
, "offset"))
748 return ptoi (name
, &c1
->c_offset
);
749 if (!strcasecmp (name
, "overflowoffset"))
750 return ptoi (name
, &c1
->c_ovoff
);
751 if (!strcasecmp (name
, "width"))
752 return ptoi (name
, &c1
->c_width
);
753 if (!strcasecmp (name
, "compwidth"))
754 return ptoi (name
, &c1
->c_cwidth
);
755 if (!strcasecmp (name
, "length"))
756 return ptoi (name
, &c1
->c_length
);
757 if (!strcasecmp (name
, "nodashstuffing"))
758 return (dashstuff
= -1);
760 for (ap
= triples
; ap
->t_name
; ap
++)
761 if (!strcasecmp (ap
->t_name
, name
)) {
762 c1
->c_flags
|= ap
->t_on
;
763 c1
->c_flags
&= ~ap
->t_off
;
767 if (!strcasecmp (name
, "formatarg")) {
768 struct arglist
*args
;
770 if (ptos (name
, &cp
))
773 if (! c1
->c_name
|| strcasecmp (c1
->c_name
, "body")) {
774 advise (NULL
, "format filters are currently only supported on "
775 "the \"body\" component");
782 arglist_tail
->a_next
= args
;
789 args
->a_nfs
= getcpy (new_fs (NULL
, NULL
, cp
));
800 ptoi (char *name
, int *i
)
804 if (*parptr
++ != '=' || !*(cp
= parse ())) {
805 advise (NULL
, "missing argument to variable %s", name
);
815 ptos (char *name
, char **s
)
819 if (*parptr
++ != '=') {
820 advise (NULL
, "missing argument to variable %s", name
);
824 if (*parptr
!= '"') {
826 *parptr
&& *parptr
!= ':' && *parptr
!= ',';
830 for (cp
= ++parptr
; *parptr
&& *parptr
!= '"'; parptr
++)
831 if (*parptr
== QUOTE
)
838 if ((*parptr
= c
) == '"')
849 static char result
[NAMESZ
];
851 for (cp
= result
; *parptr
&& (cp
- result
< NAMESZ
); parptr
++) {
870 * Process one file/message
874 process (char *folder
, char *fname
, int ofilen
, int ofilec
)
876 /* static to prevent "might be clobbered" warning from gcc 4.9.2: */
882 /* volatile to prevent "might be clobbered" warning from gcc: */
883 char *volatile fname2
= fname
? fname
: "(stdin)";
888 switch (setjmp (env
)) {
891 fp
= mhl_action
? (*mhl_action
) (fname
) : fopen (fname
, "r");
893 advise (fname
, "unable to open");
900 if (fstat(fileno(fp
), &st
) == 0) {
901 filesize
= st
.st_size
;
905 cp
= folder
? concat (folder
, ":", fname2
, NULL
) : mh_xstrdup(fname2
);
907 SIGNAL (SIGINT
, intrser
);
908 mhlfile (fp
, cp
, ofilen
, ofilec
); /* FALL THROUGH! */
911 for (ap
= arglist_head
; ap
; ap
= ap
->a_next
) {
912 fmt_free(ap
->a_fmt
, 0);
921 SIGNAL (SIGINT
, SIG_IGN
);
922 if (mhl_action
== NULL
&& fp
!= stdin
&& fp
!= NULL
)
924 mh_xfree(holder
.c_text
);
925 holder
.c_text
= NULL
;
926 free_queue (&msghd
, &msgtl
);
927 for (c1
= fmthd
; c1
; c1
= c1
->c_next
)
928 c1
->c_flags
&= ~HDROUTPUT
;
936 mhlfile (FILE *fp
, char *mname
, int ofilen
, int ofilec
)
939 struct mcomp
*c1
, *c2
, *c3
;
940 char **ip
, name
[NAMESZ
], buf
[BUFSIZ
];
941 m_getfld_state_t gstate
= 0;
943 compile_filterargs();
947 printf ("%s", ofilen
== 1 ? delim3
: delim4
);
949 printf ("\n-------");
951 printf (" Forwarded Message%s", ofilec
> 1 ? "s" : "");
953 printf (" Message %d", ofilen
);
961 if ((global
.c_flags
& CLEARSCR
))
966 printf (">>> %s\n\n", mname
);
971 strncpy (buf
, "\n", sizeof(buf
));
973 if (SOprintf ("Press <return> to list \"%s\"...", mname
)) {
976 printf ("Press <return> to list \"%s\"...", mname
);
980 if (read (fileno (stdout
), buf
, sizeof(buf
)) < 0) {
981 advise ("stdout", "read");
984 if (strchr(buf
, '\n')) {
985 if ((global
.c_flags
& CLEARSCR
))
999 printf (">>> %s\n\n", mname
);
1006 int bufsz
= sizeof buf
;
1007 switch (state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fp
)) {
1010 bucket
= fmt_addcomptext(name
, buf
);
1011 for (ip
= ignores
; *ip
; ip
++)
1012 if (!strcasecmp (name
, *ip
)) {
1013 while (state
== FLDPLUS
) {
1015 state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fp
);
1016 fmt_appendcomp(bucket
, name
, buf
);
1023 for (c2
= fmthd
; c2
; c2
= c2
->c_next
)
1024 if (!strcasecmp (c2
->c_name
? c2
->c_name
: "", name
))
1027 if (!((c3
= c2
? c2
: &global
)->c_flags
& SPLIT
))
1028 for (c1
= msghd
; c1
; c1
= c1
->c_next
)
1029 if (!strcasecmp (c1
->c_name
? c1
->c_name
: "",
1030 c3
->c_name
? c3
->c_name
: "")) {
1032 mcomp_add (c1
->c_flags
, buf
, c1
->c_text
);
1036 c1
= add_queue (&msghd
, &msgtl
, name
, buf
, 0);
1037 while (state
== FLDPLUS
) {
1039 state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fp
);
1040 c1
->c_text
= add (buf
, c1
->c_text
);
1041 fmt_appendcomp(bucket
, name
, buf
);
1044 c1
->c_flags
|= EXTRA
;
1050 for (c1
= fmthd
; c1
; c1
= c1
->c_next
) {
1051 if (c1
->c_flags
& CLEARTEXT
) {
1052 putcomp (c1
, c1
, ONECOMP
);
1056 !strcasecmp (c1
->c_name
, "messagename")) {
1057 holder
.c_text
= concat ("(Message ", mname
, ")\n",
1059 putcomp (c1
, &holder
, ONECOMP
);
1060 free (holder
.c_text
);
1061 holder
.c_text
= NULL
;
1064 if (!c1
->c_name
|| !strcasecmp (c1
->c_name
, "extras")) {
1065 for (c2
= msghd
; c2
; c2
= c2
->c_next
)
1066 if (c2
->c_flags
& EXTRA
)
1067 putcomp (c1
, c2
, TWOCOMP
);
1070 if (dobody
&& (!c1
->c_name
||
1071 !strcasecmp (c1
->c_name
, "body"))) {
1072 if (c1
->c_flags
& FMTFILTER
&& state
== BODY
&&
1073 formatproc
!= NULL
) {
1074 filterbody(c1
, buf
, sizeof(buf
), state
, fp
, gstate
);
1076 holder
.c_text
= mh_xmalloc (sizeof(buf
));
1077 strncpy (holder
.c_text
, buf
, sizeof(buf
));
1078 while (state
== BODY
) {
1079 putcomp (c1
, &holder
, BODYCOMP
);
1081 state
= m_getfld (&gstate
, name
, holder
.c_text
,
1084 free (holder
.c_text
);
1085 holder
.c_text
= NULL
;
1089 for (c2
= msghd
; c2
; c2
= c2
->c_next
)
1090 if (!strcasecmp (c2
->c_name
? c2
->c_name
: "",
1091 c1
->c_name
? c1
->c_name
: "")) {
1092 putcomp (c1
, c2
, ONECOMP
);
1093 if (!(c1
->c_flags
& SPLIT
))
1097 m_getfld_state_destroy (&gstate
);
1102 advise (NULL
, "format error in message %s", mname
);
1104 m_getfld_state_destroy (&gstate
);
1108 adios (NULL
, "getfld() returned %d", state
);
1115 mcomp_flags (char *name
)
1119 for (ap
= pairs
; ap
->p_name
; ap
++)
1120 if (!strcasecmp (ap
->p_name
, name
))
1121 return (ap
->p_flags
);
1128 mcomp_add (long flags
, char *s1
, char *s2
)
1132 if (!(flags
& ADDRFMT
))
1133 return add (s1
, s2
);
1135 if (s2
&& *(dp
= s2
+ strlen (s2
) - 1) == '\n')
1138 return add (s1
, add (",\n", s2
));
1145 struct pqpair
*pq_next
;
1150 mcomp_format (struct mcomp
*c1
, struct mcomp
*c2
)
1155 struct pqpair
*p
, *q
;
1157 struct mailname
*mp
;
1164 dat
[3] = BUFSIZ
- 1;
1167 if (!(c1
->c_flags
& ADDRFMT
)) {
1168 charstring_t scanl
= charstring_create (BUFSIZ
);
1171 c1
->c_c_text
->c_text
= ap
;
1172 if ((cp
= strrchr(ap
, '\n'))) /* drop ending newline */
1176 fmt_scan (c1
->c_fmt
, scanl
, BUFSIZ
- 1, dat
, NULL
);
1177 /* Don't need to append a newline, dctime() already did */
1178 c2
->c_text
= charstring_buffer_copy (scanl
);
1179 charstring_free (scanl
);
1181 /* ap is now owned by the component struct, so do NOT free it here */
1185 (q
= &pq
)->pq_next
= NULL
;
1186 while ((cp
= getname (ap
))) {
1188 if ((mp
= getm (cp
, NULL
, 0, error
, sizeof(error
))) == NULL
) {
1189 p
->pq_text
= mh_xstrdup(cp
);
1190 p
->pq_error
= mh_xstrdup(error
);
1192 p
->pq_text
= getcpy (mp
->m_text
);
1195 q
= (q
->pq_next
= p
);
1198 for (p
= pq
.pq_next
; p
; p
= q
) {
1199 charstring_t scanl
= charstring_create (BUFSIZ
);
1203 c1
->c_c_text
->c_text
= p
->pq_text
;
1206 if (c1
->c_c_error
) {
1207 c1
->c_c_error
->c_text
= p
->pq_error
;
1211 fmt_scan (c1
->c_fmt
, scanl
, BUFSIZ
- 1, dat
, NULL
);
1212 buffer
= charstring_buffer_copy (scanl
);
1215 c2
->c_text
= add (",\n", c2
->c_text
);
1216 if (*(cp
= buffer
+ strlen (buffer
) - 1) == '\n')
1218 c2
->c_text
= add (buffer
, c2
->c_text
);
1220 charstring_free (scanl
);
1222 mh_xfree(p
->pq_text
);
1223 mh_xfree(p
->pq_error
);
1228 c2
->c_text
= add ("\n", c2
->c_text
);
1233 static struct mcomp
*
1234 add_queue (struct mcomp
**head
, struct mcomp
**tail
, char *name
, char *text
, int flags
)
1239 c1
->c_flags
= flags
& ~INIT
;
1240 if ((c1
->c_name
= name
? mh_xstrdup(name
) : NULL
))
1241 c1
->c_flags
|= mcomp_flags (c1
->c_name
);
1242 c1
->c_text
= text
? mh_xstrdup(text
) : NULL
;
1245 c1
->c_ovtxt
= mh_xstrdup(global
.c_ovtxt
);
1246 c1
->c_offset
= global
.c_offset
;
1247 c1
->c_ovoff
= global
. c_ovoff
;
1248 c1
->c_width
= c1
->c_length
= 0;
1249 c1
->c_cwidth
= global
.c_cwidth
;
1250 c1
->c_flags
|= global
.c_flags
& GFLAGS
;
1255 (*tail
)->c_next
= c1
;
1263 free_queue (struct mcomp
**head
, struct mcomp
**tail
)
1265 struct mcomp
*c1
, *c2
;
1267 for (c1
= *head
; c1
; c1
= c2
) {
1269 mh_xfree(c1
->c_name
);
1270 mh_xfree(c1
->c_text
);
1271 mh_xfree(c1
->c_ovtxt
);
1272 mh_xfree(c1
->c_nfs
);
1274 fmt_free (c1
->c_fmt
, 0);
1278 *head
= *tail
= NULL
;
1283 putcomp (struct mcomp
*c1
, struct mcomp
*c2
, int flag
)
1285 char *text
; /* c1's text, or the name as a fallback. */
1286 char *trimmed_prefix
;
1290 text
= c1
->c_text
? c1
->c_text
: c1
->c_name
;
1291 /* Create a copy with trailing whitespace trimmed, for use with
1293 trimmed_prefix
= rtrim(add(text
, NULL
));
1297 llim
= c1
->c_length
? c1
->c_length
: -1;
1298 wid
= c1
->c_width
? c1
->c_width
: global
.c_width
;
1299 ovoff
= (c1
->c_ovoff
>= 0 ? c1
->c_ovoff
: global
.c_ovoff
)
1301 if ((ovtxt
= c1
->c_ovtxt
? c1
->c_ovtxt
: global
.c_ovtxt
) == NULL
)
1303 if (wid
< ovoff
+ strlen (ovtxt
) + 5)
1304 adios (NULL
, "component: %s width(%d) too small for overflow(%d)",
1305 c1
->c_name
, wid
, ovoff
+ strlen (ovtxt
) + 5);
1308 if (c1
->c_flags
& CLEARTEXT
) {
1309 putstr (c1
->c_flags
& RTRIM
? rtrim (c1
->c_text
) : c1
->c_text
,
1311 putstr ("\n", c1
->c_flags
);
1315 if (c1
->c_nfs
&& (c1
->c_flags
& (ADDRFMT
| DATEFMT
| FORMAT
)))
1316 mcomp_format (c1
, c2
);
1318 if (c1
->c_flags
& CENTER
) {
1319 count
= (c1
->c_width
? c1
->c_width
: global
.c_width
)
1320 - c1
->c_offset
- strlen (c2
->c_text
);
1321 if (!(c1
->c_flags
& HDROUTPUT
) && !(c1
->c_flags
& NOCOMPONENT
))
1322 count
-= strlen(text
) + 2;
1323 lm
= c1
->c_offset
+ (count
/ 2);
1329 if (!(c1
->c_flags
& HDROUTPUT
) && !(c1
->c_flags
& NOCOMPONENT
)) {
1330 if (c1
->c_flags
& UPPERCASE
) /* uppercase component also */
1332 putstr(text
, c1
->c_flags
);
1333 if (flag
!= BODYCOMP
) {
1334 putstr (": ", c1
->c_flags
);
1335 if (!(c1
->c_flags
& SPLIT
))
1336 c1
->c_flags
|= HDROUTPUT
;
1339 if ((count
= c1
->c_cwidth
- strlen(text
) - 2) > 0)
1341 putstr (" ", c1
->c_flags
);
1344 c1
->c_flags
|= HDROUTPUT
; /* for BODYCOMP */
1348 && !(c2
->c_flags
& HDROUTPUT
)
1349 && !(c2
->c_flags
& NOCOMPONENT
)) {
1350 if (c1
->c_flags
& UPPERCASE
)
1351 ToUpper(c2
->c_name
);
1352 putstr (c2
->c_name
, c1
->c_flags
);
1353 putstr (": ", c1
->c_flags
);
1354 if (!(c1
->c_flags
& SPLIT
))
1355 c2
->c_flags
|= HDROUTPUT
;
1358 if ((count
= c1
->c_cwidth
- strlen (c2
->c_name
) - 2) > 0)
1360 putstr (" ", c1
->c_flags
);
1362 if (c1
->c_flags
& UPPERCASE
)
1363 ToUpper(c2
->c_text
);
1367 if (flag
== TWOCOMP
)
1368 count
= (c1
->c_cwidth
>= 0) ? c1
->c_cwidth
1369 : (int) strlen (c2
->c_name
) + 2;
1371 count
= (c1
->c_cwidth
>= 0) ? (size_t) c1
->c_cwidth
1374 count
+= c1
->c_offset
;
1376 if ((cp
= oneline (c2
->c_text
, c1
->c_flags
)))
1377 /* Output line, trimming trailing whitespace if requested. */
1378 putstr (c1
->c_flags
& RTRIM
? rtrim (cp
) : cp
, c1
->c_flags
);
1380 putstr ("\n", c1
->c_flags
);
1381 while ((cp
= oneline (c2
->c_text
, c1
->c_flags
))) {
1383 if (flag
== BODYCOMP
1384 && !(c1
->c_flags
& NOCOMPONENT
)) {
1385 /* Output component, trimming trailing whitespace if there
1386 is no text on the line. */
1388 putstr(text
, c1
->c_flags
);
1390 putstr (trimmed_prefix
, c1
->c_flags
);
1394 /* Output line, trimming trailing whitespace if requested. */
1395 putstr (c1
->c_flags
& RTRIM
? rtrim (cp
) : cp
, c1
->c_flags
);
1398 putstr ("\n", c1
->c_flags
);
1400 if (flag
== BODYCOMP
&& term
== '\n')
1401 c1
->c_flags
&= ~HDROUTPUT
; /* Buffer ended on a newline */
1403 free (trimmed_prefix
);
1408 oneline (char *stuff
, long flags
)
1416 return (onelp
= NULL
);
1420 if (flags
& COMPRESS
) {
1421 for (spc
= 1, cp
= ret
; *onelp
; onelp
++)
1422 if (isspace ((unsigned char) *onelp
)) {
1423 if (*onelp
== '\n' && (!onelp
[1] || (flags
& ADDRFMT
))) {
1442 while (*onelp
&& *onelp
!= '\n')
1444 if (*onelp
== '\n') {
1448 if (flags
& LEFTADJUST
)
1449 while (*ret
== ' ' || *ret
== '\t')
1452 if (*onelp
== 0 && term
== '\n' && (flags
& NONEWLINE
))
1460 putstr (char *string
, long flags
)
1462 if (!column
&& lm
> 0) {
1465 putch ('\t', flags
);
1475 putch (*string
++, flags
);
1480 putch (char ch
, long flags
)
1493 if (ontty
!= ISTTY
|| row
!= global
.c_length
)
1495 if (global
.c_flags
& BELL
)
1499 if (read (fileno (stdout
), buf
, sizeof(buf
)) < 0) {
1500 advise ("stdout", "read");
1502 if (strchr(buf
, '\n')) {
1503 if (global
.c_flags
& CLEARSCR
)
1504 nmh_clear_screen ();
1508 row
= global
.c_length
/ 3;
1527 * If we are forwarding this message, and the first
1528 * column contains a dash, then add a dash and a space.
1530 if (column
== 0 && forwflg
&& (dashstuff
>= 0) && ch
== '-') {
1539 if (column
>= wid
&& (flags
& NOWRAP
) == 0) {
1540 putch ('\n', flags
);
1543 putstr (ovtxt
? ovtxt
: "", flags
);
1559 longjmp (env
, DONE
);
1587 mhladios (char *what
, char *fmt
, ...)
1592 advertise (what
, NULL
, fmt
, ap
);
1599 mhldone (int status
)
1603 longjmp (mhlenv
, DONE
);
1610 * Compile a format string used by the formatfield option and save it
1613 * We will want the {text} (and possibly {error}) components for later,
1614 * so look for them and save them if we find them.
1618 compile_formatfield(struct mcomp
*c1
)
1620 fmt_compile(c1
->c_nfs
, &c1
->c_fmt
, 1);
1623 * As a note to myself and any other poor bastard who is looking through
1624 * this code in the future ....
1626 * When the format hash table is reset later on (as it almost certainly
1627 * will be), there will still be references to these components in the
1628 * compiled format instructions. Thus these component references will
1629 * be free'd when the format instructions are free'd (by fmt_free()).
1631 * So, in other words ... don't go free'ing them yourself!
1634 c1
->c_c_text
= fmt_findcomp("text");
1635 c1
->c_c_error
= fmt_findcomp("error");
1639 * Compile all of the arguments for our format list.
1641 * Iterate through the linked list of format strings and compile them.
1642 * Note that we reset the format hash table before we start, but we do NOT
1643 * reset it between calls to fmt_compile().
1648 compile_filterargs (void)
1650 struct arglist
*arg
= arglist_head
;
1657 fmt_compile(arg
->a_nfs
, &arg
->a_fmt
, 0);
1662 * Search through and mark any components that are address components
1665 for (ap
= addrcomps
; *ap
; ap
++) {
1666 cptr
= fmt_findcomp (*ap
);
1668 cptr
->c_type
|= CT_ADDR
;
1673 * Filter the body of a message through a specified format program
1677 filterbody (struct mcomp
*c1
, char *buf
, int bufsz
, int state
, FILE *fp
,
1678 m_getfld_state_t gstate
)
1680 struct mcomp holder
;
1682 int fdinput
[2], fdoutput
[2], waitstat
;
1684 pid_t writerpid
, filterpid
;
1687 * Create pipes so we can communicate with our filter process.
1690 if (pipe(fdinput
) < 0) {
1691 adios(NULL
, "Unable to create input pipe");
1694 if (pipe(fdoutput
) < 0) {
1695 adios(NULL
, "Unable to create output pipe");
1699 * Here's what we're doing to do.
1701 * - Fork ourselves and start writing data to the write side of the
1702 * input pipe (fdinput[1]).
1704 * - Fork and exec our filter program. We set the standard input of
1705 * our filter program to be the read side of our input pipe (fdinput[0]).
1706 * Standard output is set to the write side of our output pipe
1709 * - We read from the read side of the output pipe (fdoutput[0]).
1711 * We're forking because that's the simplest way to prevent any deadlocks.
1712 * (without doing something like switching to non-blocking I/O and using
1713 * select or poll, and I'm not interested in doing that).
1716 switch (writerpid
= fork()) {
1719 * Our child process - just write to the filter input (fdinput[1]).
1720 * Close all other descriptors that we don't need.
1728 * Call m_getfld() until we're no longer in the BODY state
1731 while (state
== BODY
) {
1733 if (write(fdinput
[1], buf
, strlen(buf
)) < 0) {
1734 advise ("pipe output", "write");
1736 state
= m_getfld (&gstate
, name
, buf
, &bufsz2
, fp
);
1740 * We should be done; time to exit.
1745 * Make sure we call _exit(), otherwise we may flush out the stdio
1746 * buffers that we have duplicated from the parent.
1750 adios(NULL
, "Unable to fork for filter writer process");
1755 * Fork and exec() our filter program, after redirecting standard in
1756 * and standard out appropriately.
1759 switch (filterpid
= fork()) {
1760 char **args
, *program
;
1762 int i
, dat
[5], s
, argp
;
1766 * Configure an argument array for us
1769 args
= argsplit(formatproc
, &program
, &argp
);
1770 args
[argp
+ filter_nargs
] = NULL
;
1778 * Pull out each argument and scan them.
1781 for (a
= arglist_head
, i
= argp
; a
!= NULL
; a
= a
->a_next
, i
++) {
1782 charstring_t scanl
= charstring_create (BUFSIZ
);
1784 fmt_scan(a
->a_fmt
, scanl
, BUFSIZ
, dat
, NULL
);
1785 args
[i
] = charstring_buffer_copy (scanl
);
1786 charstring_free (scanl
);
1788 * fmt_scan likes to put a trailing newline at the end of the
1789 * format string. If we have one, get rid of it.
1791 s
= strlen(args
[i
]);
1792 if (args
[i
][s
- 1] == '\n')
1793 args
[i
][s
- 1] = '\0';
1796 fprintf(stderr
, "filterarg: fmt=\"%s\", output=\"%s\"\n",
1800 if (dup2(fdinput
[0], STDIN_FILENO
) < 0) {
1801 adios("formatproc", "Unable to dup2() standard input");
1803 if (dup2(fdoutput
[1], STDOUT_FILENO
) < 0) {
1804 adios("formatproc", "Unable to dup2() standard output");
1808 * Close everything (especially the old input and output
1809 * descriptors, since they've been dup'd to stdin and stdout),
1810 * and exec the formatproc.
1818 execvp(formatproc
, args
);
1820 adios(formatproc
, "Unable to execute filter");
1825 adios(NULL
, "Unable to fork format program");
1829 * Close everything except our reader (fdoutput[0]);
1837 * As we read in this data, send it to putcomp
1840 holder
.c_text
= buf
;
1842 while ((cc
= read(fdoutput
[0], buf
, bufsz
- 1)) > 0) {
1844 putcomp(c1
, &holder
, BODYCOMP
);
1848 adios(NULL
, "reading from formatproc");
1852 * See if we got any errors along the way. I'm a little leery of calling
1853 * waitpid() without WNOHANG, but it seems to be the most correct solution.
1856 if (waitpid(filterpid
, &waitstat
, 0) < 0) {
1857 if (errno
!= ECHILD
) {
1858 adios("filterproc", "Unable to determine status");
1861 if (! (WIFEXITED(waitstat
) && WEXITSTATUS(waitstat
) == 0)) {
1862 pidstatus(waitstat
, stderr
, "filterproc");
1866 if (waitpid(writerpid
, &waitstat
, 0) < 0) {
1867 if (errno
!= ECHILD
) {
1868 adios("writer process", "Unable to determine status");
1872 if (! (WIFEXITED(waitstat
) && WEXITSTATUS(waitstat
) == 0)) {
1873 pidstatus(waitstat
, stderr
, "writer process");