]>
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
564 free_queue (&fmthd
, &fmttl
);
567 if ((fp
= fopen (etcpath (file
), "r")) == NULL
)
568 adios (file
, "unable to open format file");
570 if (fstat (fileno (fp
), &st
) != NOTOK
) {
576 global
.c_ovtxt
= global
.c_nfs
= NULL
;
580 if ((i
= sc_width ()) > 5)
582 global
.c_cwidth
= -1;
583 if ((i
= sc_length ()) > 5)
584 global
.c_length
= i
- 1;
585 global
.c_flags
= BELL
; /* BELL is default */
586 *(ip
= ignores
) = NULL
;
589 while (vfgets (fp
, &ap
) == OK
) {
594 if ((cp
= strchr(bp
, '\n')))
598 (void) add_queue (&fmthd
, &fmttl
, NULL
, bp
+ 1, CLEARTEXT
);
603 strncpy (name
, parse(), sizeof(name
));
609 * Split this list of fields to ignore, and copy
610 * it to the end of the current "ignores" list.
612 if (!strcasecmp (name
, "ignores")) {
613 char **tmparray
, **p
;
616 /* split the fields */
617 tmparray
= brkstring (getcpy (++parptr
), ",", NULL
);
619 /* count number of fields split */
624 /* copy pointers to split fields to ignores array */
625 ip
= copyip (tmparray
, ip
, MAXARGS
- num_ignores
);
631 if (evalvar (&global
))
632 adios (NULL
, "format file syntax error: %s", bp
);
639 c1
= add_queue (&fmthd
, &fmttl
, name
, NULL
, INIT
);
640 while (*parptr
== ':' || *parptr
== ',') {
643 adios (NULL
, "format file syntax error: %s", bp
);
645 if (!c1
->c_nfs
&& global
.c_nfs
) {
646 if (c1
->c_flags
& DATEFMT
) {
647 if (global
.c_flags
& DATEFMT
) {
648 c1
->c_nfs
= getcpy (global
.c_nfs
);
649 compile_formatfield(c1
);
653 if (c1
->c_flags
& ADDRFMT
) {
654 if (global
.c_flags
& ADDRFMT
) {
655 c1
->c_nfs
= getcpy (global
.c_nfs
);
656 compile_formatfield(c1
);
663 adios (NULL
, "format file syntax error: %s", bp
);
669 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
));
687 global
.c_flags
|= CLEARSCR
;
690 global
.c_flags
&= ~CLEARSCR
;
693 switch (bellflg
) { /* command line may override format file */
695 global
.c_flags
|= BELL
;
698 global
.c_flags
&= ~BELL
;
703 global
.c_length
= length
;
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;
714 evalvar (struct mcomp
*c1
)
716 char *cp
, name
[NAMESZ
];
721 strncpy (name
, parse(), sizeof(name
));
723 if (!strcasecmp (name
, "component")) {
724 if (ptos (name
, &c1
->c_text
))
726 c1
->c_flags
&= ~NOCOMPONENT
;
730 if (!strcasecmp (name
, "overflowtext"))
731 return ptos (name
, &c1
->c_ovtxt
);
733 if (!strcasecmp (name
, "formatfield")) {
734 if (ptos (name
, &cp
))
736 c1
->c_nfs
= getcpy (new_fs (NULL
, NULL
, cp
));
737 compile_formatfield(c1
);
738 c1
->c_flags
|= FORMAT
;
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
;
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);
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
;
769 if (!strcasecmp (name
, "formatarg")) {
770 struct arglist
*args
;
772 if (ptos (name
, &cp
))
775 if (! c1
->c_name
|| strcasecmp (c1
->c_name
, "body")) {
776 advise (NULL
, "format filters are currently only supported on "
777 "the \"body\" component");
781 args
= (struct arglist
*) mh_xcalloc ((size_t) 1, sizeof(struct arglist
));
784 arglist_tail
->a_next
= args
;
791 args
->a_nfs
= getcpy (new_fs (NULL
, NULL
, cp
));
802 ptoi (char *name
, int *i
)
806 if (*parptr
++ != '=' || !*(cp
= parse ())) {
807 advise (NULL
, "missing argument to variable %s", name
);
817 ptos (char *name
, char **s
)
821 if (*parptr
++ != '=') {
822 advise (NULL
, "missing argument to variable %s", name
);
826 if (*parptr
!= '"') {
828 *parptr
&& *parptr
!= ':' && *parptr
!= ',';
832 for (cp
= ++parptr
; *parptr
&& *parptr
!= '"'; parptr
++)
833 if (*parptr
== QUOTE
)
840 if ((*parptr
= c
) == '"')
851 static char result
[NAMESZ
];
853 for (cp
= result
; *parptr
&& (cp
- result
< NAMESZ
); parptr
++) {
872 * Process one file/message
876 process (char *folder
, char *fname
, int ofilen
, int ofilec
)
878 /* static to prevent "might be clobbered" warning from gcc 4.9.2: */
884 /* volatile to prevent "might be clobbered" warning from gcc: */
885 char *volatile fname2
= fname
? fname
: "(stdin)";
890 switch (setjmp (env
)) {
893 fp
= mhl_action
? (*mhl_action
) (fname
) : fopen (fname
, "r");
895 advise (fname
, "unable to open");
902 if (fstat(fileno(fp
), &st
) == 0) {
903 filesize
= st
.st_size
;
907 cp
= folder
? concat (folder
, ":", fname2
, NULL
) : getcpy (fname2
);
909 SIGNAL (SIGINT
, intrser
);
910 mhlfile (fp
, cp
, ofilen
, ofilec
); /* FALL THROUGH! */
912 for (ap
= arglist_head
; ap
; ap
= ap
->a_next
) {
913 fmt_free(ap
->a_fmt
, 0);
922 SIGNAL (SIGINT
, SIG_IGN
);
923 if (mhl_action
== NULL
&& fp
!= stdin
&& fp
!= NULL
)
927 free (holder
.c_text
);
928 holder
.c_text
= NULL
;
930 free_queue (&msghd
, &msgtl
);
931 for (c1
= fmthd
; c1
; c1
= c1
->c_next
)
932 c1
->c_flags
&= ~HDROUTPUT
;
940 mhlfile (FILE *fp
, char *mname
, int ofilen
, int ofilec
)
943 struct mcomp
*c1
, *c2
, *c3
;
944 char **ip
, name
[NAMESZ
], buf
[BUFSIZ
];
945 m_getfld_state_t gstate
= 0;
947 compile_filterargs();
951 printf ("%s", ofilen
== 1 ? delim3
: delim4
);
953 printf ("\n-------");
955 printf (" Forwarded Message%s", ofilec
> 1 ? "s" : "");
957 printf (" Message %d", ofilen
);
965 if ((global
.c_flags
& CLEARSCR
))
970 printf (">>> %s\n\n", mname
);
975 strncpy (buf
, "\n", sizeof(buf
));
977 if (SOprintf ("Press <return> to list \"%s\"...", mname
)) {
980 printf ("Press <return> to list \"%s\"...", mname
);
984 if (read (fileno (stdout
), buf
, sizeof(buf
)) < 0) {
985 advise ("stdout", "read");
988 if (strchr(buf
, '\n')) {
989 if ((global
.c_flags
& CLEARSCR
))
1001 nmh_clear_screen ();
1003 printf (">>> %s\n\n", mname
);
1010 int bufsz
= sizeof buf
;
1011 switch (state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fp
)) {
1014 bucket
= fmt_addcomptext(name
, buf
);
1015 for (ip
= ignores
; *ip
; ip
++)
1016 if (!strcasecmp (name
, *ip
)) {
1017 while (state
== FLDPLUS
) {
1019 state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fp
);
1020 fmt_appendcomp(bucket
, name
, buf
);
1027 for (c2
= fmthd
; c2
; c2
= c2
->c_next
)
1028 if (!strcasecmp (c2
->c_name
? c2
->c_name
: "", name
))
1031 if (!((c3
= c2
? c2
: &global
)->c_flags
& SPLIT
))
1032 for (c1
= msghd
; c1
; c1
= c1
->c_next
)
1033 if (!strcasecmp (c1
->c_name
? c1
->c_name
: "",
1034 c3
->c_name
? c3
->c_name
: "")) {
1036 mcomp_add (c1
->c_flags
, buf
, c1
->c_text
);
1040 c1
= add_queue (&msghd
, &msgtl
, name
, buf
, 0);
1041 while (state
== FLDPLUS
) {
1043 state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fp
);
1044 c1
->c_text
= add (buf
, c1
->c_text
);
1045 fmt_appendcomp(bucket
, name
, buf
);
1048 c1
->c_flags
|= EXTRA
;
1054 for (c1
= fmthd
; c1
; c1
= c1
->c_next
) {
1055 if (c1
->c_flags
& CLEARTEXT
) {
1056 putcomp (c1
, c1
, ONECOMP
);
1060 !strcasecmp (c1
->c_name
, "messagename")) {
1061 holder
.c_text
= concat ("(Message ", mname
, ")\n",
1063 putcomp (c1
, &holder
, ONECOMP
);
1064 free (holder
.c_text
);
1065 holder
.c_text
= NULL
;
1068 if (!c1
->c_name
|| !strcasecmp (c1
->c_name
, "extras")) {
1069 for (c2
= msghd
; c2
; c2
= c2
->c_next
)
1070 if (c2
->c_flags
& EXTRA
)
1071 putcomp (c1
, c2
, TWOCOMP
);
1074 if (dobody
&& (!c1
->c_name
||
1075 !strcasecmp (c1
->c_name
, "body"))) {
1076 if (c1
->c_flags
& FMTFILTER
&& state
== BODY
&&
1077 formatproc
!= NULL
) {
1078 filterbody(c1
, buf
, sizeof(buf
), state
, fp
, gstate
);
1080 holder
.c_text
= mh_xmalloc (sizeof(buf
));
1081 strncpy (holder
.c_text
, buf
, sizeof(buf
));
1082 while (state
== BODY
) {
1083 putcomp (c1
, &holder
, BODYCOMP
);
1085 state
= m_getfld (&gstate
, name
, holder
.c_text
,
1088 free (holder
.c_text
);
1089 holder
.c_text
= NULL
;
1093 for (c2
= msghd
; c2
; c2
= c2
->c_next
)
1094 if (!strcasecmp (c2
->c_name
? c2
->c_name
: "",
1095 c1
->c_name
? c1
->c_name
: "")) {
1096 putcomp (c1
, c2
, ONECOMP
);
1097 if (!(c1
->c_flags
& SPLIT
))
1101 m_getfld_state_destroy (&gstate
);
1106 advise (NULL
, "format error in message %s", mname
);
1108 m_getfld_state_destroy (&gstate
);
1112 adios (NULL
, "getfld() returned %d", state
);
1119 mcomp_flags (char *name
)
1123 for (ap
= pairs
; ap
->p_name
; ap
++)
1124 if (!strcasecmp (ap
->p_name
, name
))
1125 return (ap
->p_flags
);
1132 mcomp_add (long flags
, char *s1
, char *s2
)
1136 if (!(flags
& ADDRFMT
))
1137 return add (s1
, s2
);
1139 if (s2
&& *(dp
= s2
+ strlen (s2
) - 1) == '\n')
1142 return add (s1
, add (",\n", s2
));
1149 struct pqpair
*pq_next
;
1154 mcomp_format (struct mcomp
*c1
, struct mcomp
*c2
)
1159 struct pqpair
*p
, *q
;
1161 struct mailname
*mp
;
1168 dat
[3] = BUFSIZ
- 1;
1171 if (!(c1
->c_flags
& ADDRFMT
)) {
1172 charstring_t scanl
= charstring_create (BUFSIZ
);
1175 c1
->c_c_text
->c_text
= ap
;
1176 if ((cp
= strrchr(ap
, '\n'))) /* drop ending newline */
1180 fmt_scan (c1
->c_fmt
, scanl
, BUFSIZ
- 1, dat
, NULL
);
1181 /* Don't need to append a newline, dctime() already did */
1182 c2
->c_text
= charstring_buffer_copy (scanl
);
1183 charstring_free (scanl
);
1185 /* ap is now owned by the component struct, so do NOT free it here */
1189 (q
= &pq
)->pq_next
= NULL
;
1190 while ((cp
= getname (ap
))) {
1191 if ((p
= (struct pqpair
*) mh_xcalloc ((size_t) 1, sizeof(*p
))) == NULL
)
1192 adios (NULL
, "unable to allocate pqpair memory");
1194 if ((mp
= getm (cp
, NULL
, 0, error
, sizeof(error
))) == NULL
) {
1195 p
->pq_text
= getcpy (cp
);
1196 p
->pq_error
= getcpy (error
);
1198 p
->pq_text
= getcpy (mp
->m_text
);
1201 q
= (q
->pq_next
= p
);
1205 for (p
= pq
.pq_next
; p
; p
= q
) {
1206 charstring_t scanl
= charstring_create (BUFSIZ
);
1210 c1
->c_c_text
->c_text
= p
->pq_text
;
1213 if (c1
->c_c_error
) {
1214 c1
->c_c_error
->c_text
= p
->pq_error
;
1218 fmt_scan (c1
->c_fmt
, scanl
, BUFSIZ
- 1, dat
, NULL
);
1219 buffer
= charstring_buffer_copy (scanl
);
1220 if (strlen (buffer
) > 0) {
1222 c2
->c_text
= add (",\n", c2
->c_text
);
1223 if (*(cp
= buffer
+ strlen (buffer
) - 1) == '\n')
1225 c2
->c_text
= add (buffer
, c2
->c_text
);
1227 charstring_free (scanl
);
1237 c2
->c_text
= add ("\n", c2
->c_text
);
1242 static struct mcomp
*
1243 add_queue (struct mcomp
**head
, struct mcomp
**tail
, char *name
, char *text
, int flags
)
1247 if ((c1
= (struct mcomp
*) mh_xcalloc ((size_t) 1, sizeof(*c1
))) == NULL
)
1248 adios (NULL
, "unable to allocate comp memory");
1250 c1
->c_flags
= flags
& ~INIT
;
1251 if ((c1
->c_name
= name
? getcpy (name
) : NULL
))
1252 c1
->c_flags
|= mcomp_flags (c1
->c_name
);
1253 c1
->c_text
= text
? getcpy (text
) : NULL
;
1256 c1
->c_ovtxt
= getcpy (global
.c_ovtxt
);
1257 c1
->c_offset
= global
.c_offset
;
1258 c1
->c_ovoff
= global
. c_ovoff
;
1259 c1
->c_width
= c1
->c_length
= 0;
1260 c1
->c_cwidth
= global
.c_cwidth
;
1261 c1
->c_flags
|= global
.c_flags
& GFLAGS
;
1267 (*tail
)->c_next
= c1
;
1275 free_queue (struct mcomp
**head
, struct mcomp
**tail
)
1277 struct mcomp
*c1
, *c2
;
1279 for (c1
= *head
; c1
; c1
= c2
) {
1290 fmt_free (c1
->c_fmt
, 0);
1294 *head
= *tail
= NULL
;
1299 putcomp (struct mcomp
*c1
, struct mcomp
*c2
, int flag
)
1304 * Create a copy of c1->c_text with trailing whitespace
1305 * trimmed, for use with blank lines.
1307 char *trimmed_prefix
=
1308 rtrim (add (c1
->c_text
? c1
->c_text
: c1
->c_name
, NULL
));
1312 llim
= c1
->c_length
? c1
->c_length
: -1;
1313 wid
= c1
->c_width
? c1
->c_width
: global
.c_width
;
1314 ovoff
= (c1
->c_ovoff
>= 0 ? c1
->c_ovoff
: global
.c_ovoff
)
1316 if ((ovtxt
= c1
->c_ovtxt
? c1
->c_ovtxt
: global
.c_ovtxt
) == NULL
)
1318 if (wid
< ovoff
+ strlen (ovtxt
) + 5)
1319 adios (NULL
, "component: %s width(%d) too small for overflow(%d)",
1320 c1
->c_name
, wid
, ovoff
+ strlen (ovtxt
) + 5);
1323 if (c1
->c_flags
& CLEARTEXT
) {
1324 putstr (c1
->c_flags
& RTRIM
? rtrim (c1
->c_text
) : c1
->c_text
,
1326 putstr ("\n", c1
->c_flags
);
1330 if (c1
->c_nfs
&& (c1
->c_flags
& (ADDRFMT
| DATEFMT
| FORMAT
)))
1331 mcomp_format (c1
, c2
);
1333 if (c1
->c_flags
& CENTER
) {
1334 count
= (c1
->c_width
? c1
->c_width
: global
.c_width
)
1335 - c1
->c_offset
- strlen (c2
->c_text
);
1336 if (!(c1
->c_flags
& HDROUTPUT
) && !(c1
->c_flags
& NOCOMPONENT
))
1337 count
-= strlen (c1
->c_text
? c1
->c_text
: c1
->c_name
) + 2;
1338 lm
= c1
->c_offset
+ (count
/ 2);
1344 if (!(c1
->c_flags
& HDROUTPUT
) && !(c1
->c_flags
& NOCOMPONENT
)) {
1345 if (c1
->c_flags
& UPPERCASE
) /* uppercase component also */
1346 for (cp
= (c1
->c_text
? c1
->c_text
: c1
->c_name
); *cp
; cp
++)
1347 if (islower ((unsigned char) *cp
))
1348 *cp
= toupper ((unsigned char) *cp
);
1349 putstr (c1
->c_text
? c1
->c_text
: c1
->c_name
, c1
->c_flags
);
1350 if (flag
!= BODYCOMP
) {
1351 putstr (": ", c1
->c_flags
);
1352 if (!(c1
->c_flags
& SPLIT
))
1353 c1
->c_flags
|= HDROUTPUT
;
1356 if ((count
= c1
->c_cwidth
-
1357 strlen (c1
->c_text
? c1
->c_text
: c1
->c_name
) - 2) > 0)
1359 putstr (" ", c1
->c_flags
);
1362 c1
->c_flags
|= HDROUTPUT
; /* for BODYCOMP */
1366 && !(c2
->c_flags
& HDROUTPUT
)
1367 && !(c2
->c_flags
& NOCOMPONENT
)) {
1368 if (c1
->c_flags
& UPPERCASE
)
1369 for (cp
= c2
->c_name
; *cp
; cp
++)
1370 if (islower ((unsigned char) *cp
))
1371 *cp
= toupper ((unsigned char) *cp
);
1372 putstr (c2
->c_name
, c1
->c_flags
);
1373 putstr (": ", c1
->c_flags
);
1374 if (!(c1
->c_flags
& SPLIT
))
1375 c2
->c_flags
|= HDROUTPUT
;
1378 if ((count
= c1
->c_cwidth
- strlen (c2
->c_name
) - 2) > 0)
1380 putstr (" ", c1
->c_flags
);
1382 if (c1
->c_flags
& UPPERCASE
)
1383 for (cp
= c2
->c_text
; *cp
; cp
++)
1384 if (islower ((unsigned char) *cp
))
1385 *cp
= toupper ((unsigned char) *cp
);
1389 if (flag
== TWOCOMP
)
1390 count
= (c1
->c_cwidth
>= 0) ? c1
->c_cwidth
1391 : (int) strlen (c2
->c_name
) + 2;
1393 count
= (c1
->c_cwidth
>= 0) ? (size_t) c1
->c_cwidth
1394 : strlen (c1
->c_text
? c1
->c_text
: c1
->c_name
) + 2;
1396 count
+= c1
->c_offset
;
1398 if ((cp
= oneline (c2
->c_text
, c1
->c_flags
)))
1399 /* Output line, trimming trailing whitespace if requested. */
1400 putstr (c1
->c_flags
& RTRIM
? rtrim (cp
) : cp
, c1
->c_flags
);
1402 putstr ("\n", c1
->c_flags
);
1403 while ((cp
= oneline (c2
->c_text
, c1
->c_flags
))) {
1405 if (flag
== BODYCOMP
1406 && !(c1
->c_flags
& NOCOMPONENT
)) {
1407 /* Output component, trimming trailing whitespace if there
1408 is no text on the line. */
1410 putstr (c1
->c_text
? c1
->c_text
: c1
->c_name
, c1
->c_flags
);
1412 putstr (trimmed_prefix
, c1
->c_flags
);
1416 /* Output line, trimming trailing whitespace if requested. */
1417 putstr (c1
->c_flags
& RTRIM
? rtrim (cp
) : cp
, c1
->c_flags
);
1420 putstr ("\n", c1
->c_flags
);
1422 if (flag
== BODYCOMP
&& term
== '\n')
1423 c1
->c_flags
&= ~HDROUTPUT
; /* Buffer ended on a newline */
1425 free (trimmed_prefix
);
1430 oneline (char *stuff
, long flags
)
1438 return (onelp
= NULL
);
1442 if (flags
& COMPRESS
) {
1443 for (spc
= 1, cp
= ret
; *onelp
; onelp
++)
1444 if (isspace ((unsigned char) *onelp
)) {
1445 if (*onelp
== '\n' && (!onelp
[1] || (flags
& ADDRFMT
))) {
1464 while (*onelp
&& *onelp
!= '\n')
1466 if (*onelp
== '\n') {
1470 if (flags
& LEFTADJUST
)
1471 while (*ret
== ' ' || *ret
== '\t')
1474 if (*onelp
== 0 && term
== '\n' && (flags
& NONEWLINE
))
1482 putstr (char *string
, long flags
)
1484 if (!column
&& lm
> 0) {
1487 putch ('\t', flags
);
1497 putch (*string
++, flags
);
1502 putch (char ch
, long flags
)
1515 if (ontty
!= ISTTY
|| row
!= global
.c_length
)
1517 if (global
.c_flags
& BELL
)
1521 if (read (fileno (stdout
), buf
, sizeof(buf
)) < 0) {
1522 advise ("stdout", "read");
1524 if (strchr(buf
, '\n')) {
1525 if (global
.c_flags
& CLEARSCR
)
1526 nmh_clear_screen ();
1530 row
= global
.c_length
/ 3;
1549 * If we are forwarding this message, and the first
1550 * column contains a dash, then add a dash and a space.
1552 if (column
== 0 && forwflg
&& (dashstuff
>= 0) && ch
== '-') {
1561 if (column
>= wid
&& (flags
& NOWRAP
) == 0) {
1562 putch ('\n', flags
);
1565 putstr (ovtxt
? ovtxt
: "", flags
);
1581 longjmp (env
, DONE
);
1609 mhladios (char *what
, char *fmt
, ...)
1614 advertise (what
, NULL
, fmt
, ap
);
1621 mhldone (int status
)
1625 longjmp (mhlenv
, DONE
);
1632 * Compile a format string used by the formatfield option and save it
1635 * We will want the {text} (and possibly {error}) components for later,
1636 * so look for them and save them if we find them.
1640 compile_formatfield(struct mcomp
*c1
)
1642 fmt_compile(c1
->c_nfs
, &c1
->c_fmt
, 1);
1645 * As a note to myself and any other poor bastard who is looking through
1646 * this code in the future ....
1648 * When the format hash table is reset later on (as it almost certainly
1649 * will be), there will still be references to these components in the
1650 * compiled format instructions. Thus these component references will
1651 * be free'd when the format instructions are free'd (by fmt_free()).
1653 * So, in other words ... don't go free'ing them yourself!
1656 c1
->c_c_text
= fmt_findcomp("text");
1657 c1
->c_c_error
= fmt_findcomp("error");
1661 * Compile all of the arguments for our format list.
1663 * Iterate through the linked list of format strings and compile them.
1664 * Note that we reset the format hash table before we start, but we do NOT
1665 * reset it between calls to fmt_compile().
1670 compile_filterargs (void)
1672 struct arglist
*arg
= arglist_head
;
1679 fmt_compile(arg
->a_nfs
, &arg
->a_fmt
, 0);
1684 * Search through and mark any components that are address components
1687 for (ap
= addrcomps
; *ap
; ap
++) {
1688 cptr
= fmt_findcomp (*ap
);
1690 cptr
->c_type
|= CT_ADDR
;
1695 * Filter the body of a message through a specified format program
1699 filterbody (struct mcomp
*c1
, char *buf
, int bufsz
, int state
, FILE *fp
,
1700 m_getfld_state_t gstate
)
1702 struct mcomp holder
;
1704 int fdinput
[2], fdoutput
[2], waitstat
;
1706 pid_t writerpid
, filterpid
;
1709 * Create pipes so we can communicate with our filter process.
1712 if (pipe(fdinput
) < 0) {
1713 adios(NULL
, "Unable to create input pipe");
1716 if (pipe(fdoutput
) < 0) {
1717 adios(NULL
, "Unable to create output pipe");
1721 * Here's what we're doing to do.
1723 * - Fork ourselves and start writing data to the write side of the
1724 * input pipe (fdinput[1]).
1726 * - Fork and exec our filter program. We set the standard input of
1727 * our filter program to be the read side of our input pipe (fdinput[0]).
1728 * Standard output is set to the write side of our output pipe
1731 * - We read from the read side of the output pipe (fdoutput[0]).
1733 * We're forking because that's the simplest way to prevent any deadlocks.
1734 * (without doing something like switching to non-blocking I/O and using
1735 * select or poll, and I'm not interested in doing that).
1738 switch (writerpid
= fork()) {
1741 * Our child process - just write to the filter input (fdinput[1]).
1742 * Close all other descriptors that we don't need.
1750 * Call m_getfld() until we're no longer in the BODY state
1753 while (state
== BODY
) {
1755 if (write(fdinput
[1], buf
, strlen(buf
)) < 0) {
1756 advise ("pipe output", "write");
1758 state
= m_getfld (&gstate
, name
, buf
, &bufsz2
, fp
);
1762 * We should be done; time to exit.
1767 * Make sure we call _exit(), otherwise we may flush out the stdio
1768 * buffers that we have duplicated from the parent.
1772 adios(NULL
, "Unable to fork for filter writer process");
1777 * Fork and exec() our filter program, after redirecting standard in
1778 * and standard out appropriately.
1781 switch (filterpid
= fork()) {
1782 char **args
, *program
;
1784 int i
, dat
[5], s
, argp
;
1788 * Configure an argument array for us
1791 args
= argsplit(formatproc
, &program
, &argp
);
1792 args
[argp
+ filter_nargs
] = NULL
;
1800 * Pull out each argument and scan them.
1803 for (a
= arglist_head
, i
= argp
; a
!= NULL
; a
= a
->a_next
, i
++) {
1804 charstring_t scanl
= charstring_create (BUFSIZ
);
1806 fmt_scan(a
->a_fmt
, scanl
, BUFSIZ
, dat
, NULL
);
1807 args
[i
] = charstring_buffer_copy (scanl
);
1808 charstring_free (scanl
);
1810 * fmt_scan likes to put a trailing newline at the end of the
1811 * format string. If we have one, get rid of it.
1813 s
= strlen(args
[i
]);
1814 if (args
[i
][s
- 1] == '\n')
1815 args
[i
][s
- 1] = '\0';
1818 fprintf(stderr
, "filterarg: fmt=\"%s\", output=\"%s\"\n",
1822 if (dup2(fdinput
[0], STDIN_FILENO
) < 0) {
1823 adios("formatproc", "Unable to dup2() standard input");
1825 if (dup2(fdoutput
[1], STDOUT_FILENO
) < 0) {
1826 adios("formatproc", "Unable to dup2() standard output");
1830 * Close everything (especially the old input and output
1831 * descriptors, since they've been dup'd to stdin and stdout),
1832 * and exec the formatproc.
1840 execvp(formatproc
, args
);
1842 adios(formatproc
, "Unable to execute filter");
1847 adios(NULL
, "Unable to fork format program");
1851 * Close everything except our reader (fdoutput[0]);
1859 * As we read in this data, send it to putcomp
1862 holder
.c_text
= buf
;
1864 while ((cc
= read(fdoutput
[0], buf
, bufsz
- 1)) > 0) {
1866 putcomp(c1
, &holder
, BODYCOMP
);
1870 adios(NULL
, "reading from formatproc");
1874 * See if we got any errors along the way. I'm a little leery of calling
1875 * waitpid() without WNOHANG, but it seems to be the most correct solution.
1878 if (waitpid(filterpid
, &waitstat
, 0) < 0) {
1879 if (errno
!= ECHILD
) {
1880 adios("filterproc", "Unable to determine status");
1883 if (! (WIFEXITED(waitstat
) && WEXITSTATUS(waitstat
) == 0)) {
1884 pidstatus(waitstat
, stderr
, "filterproc");
1888 if (waitpid(writerpid
, &waitstat
, 0) < 0) {
1889 if (errno
!= ECHILD
) {
1890 adios("writer process", "Unable to determine status");
1894 if (! (WIFEXITED(waitstat
) && WEXITSTATUS(waitstat
) == 0)) {
1895 pidstatus(waitstat
, stderr
, "writer process");