1 /* mhfixmsg.c -- rewrite a message with various transformations
3 * This code is Copyright (c) 2002 and 2013, by the authors of nmh.
4 * See the COPYRIGHT file in the root directory of the nmh
5 * distribution for complete copyright information.
9 #include <h/fmt_scan.h>
11 #include <h/mhparse.h>
13 #include <h/signals.h>
14 #include "../sbr/m_maildir.h"
15 #include "../sbr/m_mktemp.h"
16 #include "../sbr/mime_type.h"
19 #include "mhshowsbr.h"
22 #define MHFIXMSG_SWITCHES \
23 X("decodetext 8bit|7bit|binary", 0, DECODETEXTSW) \
24 X("nodecodetext", 0, NDECODETEXTSW) \
25 X("decodetypes", 0, DECODETYPESW) \
26 X("crlflinebreaks", 0, CRLFLINEBREAKSSW) \
27 X("nocrlflinebreaks", 0, NCRLFLINEBREAKSSW) \
28 X("textcharset", 0, TEXTCHARSETSW) \
29 X("notextcharset", 0, NTEXTCHARSETSW) \
30 X("reformat", 0, REFORMATSW) \
31 X("noreformat", 0, NREFORMATSW) \
32 X("replacetextplain", 0, REPLACETEXTPLAINSW) \
33 X("noreplacetextplain", 0, NREPLACETEXTPLAINSW) \
34 X("fixboundary", 0, FIXBOUNDARYSW) \
35 X("nofixboundary", 0, NFIXBOUNDARYSW) \
36 X("fixcte", 0, FIXCOMPOSITECTESW) \
37 X("nofixcte", 0, NFIXCOMPOSITECTESW) \
38 X("fixtype mimetype", 0, FIXTYPESW) \
39 X("file file", 0, FILESW) \
40 X("outfile file", 0, OUTFILESW) \
41 X("rmmproc program", 0, RPROCSW) \
42 X("normmproc", 0, NRPRCSW) \
43 X("changecur", 0, CHGSW) \
44 X("nochangecur", 0, NCHGSW) \
45 X("verbose", 0, VERBSW) \
46 X("noverbose", 0, NVERBSW) \
47 X("version", 0, VERSIONSW) \
48 X("help", 0, HELPSW) \
50 #define X(sw, minchars, id) id,
51 DEFINE_SWITCH_ENUM(MHFIXMSG
);
54 #define X(sw, minchars, id) { sw, minchars, id },
55 DEFINE_SWITCH_ARRAY(MHFIXMSG
, switches
);
60 int debugsw
; /* Needed by mhparse.c. */
62 #define quitser pipeser
65 extern int skip_mp_cte_check
; /* flag to InitMultiPart */
66 extern int suppress_bogus_mp_content_warning
; /* flag to InitMultiPart */
67 extern int bogus_mp_content
; /* flag from InitMultiPart */
68 /* flags to/from parse_header_attrs */
69 extern int suppress_extraneous_trailing_semicolon_warning
;
72 void flush_errors (void);
77 typedef struct fix_transformations
{
85 /* Whether to use CRLF linebreaks, per RFC 2046 Sec. 4.1.1, par.1. */
88 } fix_transformations
;
90 int mhfixmsgsbr (CT
*, char *, const fix_transformations
*, FILE **, char *,
92 static int fix_boundary (CT
*, int *);
93 static int copy_input_to_output (const char *, FILE *, const char *, FILE *);
94 static int get_multipart_boundary (CT
, char **);
95 static int replace_boundary (CT
, char *, char *);
96 static int fix_types (CT
, svector_t
, int *);
97 static char *replace_substring (char **, const char *, const char *);
98 static char *remove_parameter (char *, const char *);
99 static int fix_composite_cte (CT
, int *);
100 static int set_ce (CT
, int);
101 static int ensure_text_plain (CT
*, CT
, int *, int);
102 static int find_textplain_sibling (CT
, int, int *);
103 static int insert_new_text_plain_part (CT
, int, CT
);
104 static CT
build_text_plain_part (CT
);
105 static int insert_into_new_mp_alt (CT
*, int *);
106 static CT
divide_part (CT
);
107 static void copy_ctinfo (CI
, CI
);
108 static int decode_part (CT
);
109 static int reformat_part (CT
, char *, char *, char *, int);
110 static CT
build_multipart_alt (CT
, CT
, int, int);
111 static int boundary_in_content (FILE **, char *, const char *);
112 static void transfer_noncontent_headers (CT
, CT
);
113 static int set_ct_type (CT
, int type
, int subtype
, int encoding
);
114 static int decode_text_parts (CT
, int, const char *, int *);
115 static int should_decode(const char *, const char *, const char *);
116 static int content_encoding (CT
, const char **);
117 static int strip_crs (CT
, int *);
118 static void update_cte (CT
);
119 static int least_restrictive_encoding (CT
);
120 static int less_restrictive (int, int);
121 static int convert_charsets (CT
, char *, int *);
122 static int fix_always (CT
, int *);
123 static int fix_filename_param (char *, char *, PM
*, PM
*);
124 static int fix_filename_encoding (CT
);
125 static int write_content (CT
, const char *, char *, FILE *, int, int);
126 static void set_text_ctparams(CT
, char *, int);
127 static int remove_file (const char *);
128 static void report (char *, char *, char *, char *, ...);
129 static void pipeser (int);
133 main (int argc
, char **argv
) {
135 char *cp
, *file
= NULL
, *folder
= NULL
;
136 char *maildir
= NULL
, buf
[100], *outfile
= NULL
;
137 char **argp
, **arguments
;
138 struct msgs_array msgs
= { 0, 0, NULL
};
139 struct msgs
*mp
= NULL
;
141 FILE *fp
, *infp
= NULL
, *outfp
= NULL
;
145 fix_transformations fx
;
146 fx
.reformat
= fx
.fixcompositecte
= fx
.fixboundary
= 1;
148 fx
.replacetextplain
= 0;
149 fx
.decodetext
= CE_8BIT
;
150 fx
.decodetypes
= "text,application/ics"; /* Default, per man page. */
151 fx
.lf_line_endings
= 0;
152 fx
.textcharset
= NULL
;
154 if (nmh_init(argv
[0], 2)) { return 1; }
156 arguments
= getarguments (invo_name
, argc
, argv
, 1);
162 while ((cp
= *argp
++)) {
164 switch (smatch (++cp
, switches
)) {
166 ambigsw (cp
, switches
);
169 adios (NULL
, "-%s unknown", cp
);
172 snprintf (buf
, sizeof buf
, "%s [+folder] [msgs] [switches]",
174 print_help (buf
, switches
, 1);
177 print_version(invo_name
);
181 if (! (cp
= *argp
++) || *cp
== '-') {
182 adios (NULL
, "missing argument to %s", argp
[-2]);
184 if (! strcasecmp (cp
, "8bit")) {
185 fx
.decodetext
= CE_8BIT
;
186 } else if (! strcasecmp (cp
, "7bit")) {
187 fx
.decodetext
= CE_7BIT
;
188 } else if (! strcasecmp (cp
, "binary")) {
189 fx
.decodetext
= CE_BINARY
;
191 adios (NULL
, "invalid argument to %s", argp
[-2]);
198 if (! (cp
= *argp
++) || *cp
== '-') {
199 adios (NULL
, "missing argument to %s", argp
[-2]);
203 case CRLFLINEBREAKSSW
:
204 fx
.lf_line_endings
= 0;
206 case NCRLFLINEBREAKSSW
:
207 fx
.lf_line_endings
= 1;
210 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1])) {
211 adios (NULL
, "missing argument to %s", argp
[-2]);
224 case FIXCOMPOSITECTESW
:
225 fx
.fixcompositecte
= 1;
227 case NFIXCOMPOSITECTESW
:
228 fx
.fixcompositecte
= 0;
231 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1])) {
232 adios (NULL
, "missing argument to %s", argp
[-2]);
234 if (! strncasecmp (cp
, "multipart/", 10) ||
235 ! strncasecmp (cp
, "message/", 8)) {
236 adios (NULL
, "-fixtype %s not allowed", cp
);
237 } else if (! strchr (cp
, '/')) {
238 adios (NULL
, "-fixtype requires type/subtype");
240 if (fx
.fixtypes
== NULL
) { fx
.fixtypes
= svector_create (10); }
241 svector_push_back (fx
.fixtypes
, cp
);
249 case REPLACETEXTPLAINSW
:
250 fx
.replacetextplain
= 1;
252 case NREPLACETEXTPLAINSW
:
253 fx
.replacetextplain
= 0;
256 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1])) {
257 adios (NULL
, "missing argument to %s", argp
[-2]);
259 file
= *cp
== '-' ? mh_xstrdup (cp
) : path (cp
, TFILE
);
262 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1])) {
263 adios (NULL
, "missing argument to %s", argp
[-2]);
265 outfile
= *cp
== '-' ? mh_xstrdup (cp
) : path (cp
, TFILE
);
268 if (!(rmmproc
= *argp
++) || *rmmproc
== '-') {
269 adios (NULL
, "missing argument to %s", argp
[-2]);
289 if (*cp
== '+' || *cp
== '@') {
291 adios (NULL
, "only one folder at a time!");
293 folder
= pluspath (cp
);
297 /* Interpret a full path as a filename, not a message. */
298 file
= mh_xstrdup (cp
);
300 app_msgarg (&msgs
, cp
);
305 SIGNAL (SIGQUIT
, quitser
);
306 SIGNAL (SIGPIPE
, pipeser
);
309 * Read the standard profile setup
311 if ((fp
= fopen (cp
= etcpath ("mhn.defaults"), "r"))) {
312 readconfig ((struct node
**) 0, fp
, cp
, 0);
316 suppress_bogus_mp_content_warning
= skip_mp_cte_check
= 1;
317 suppress_extraneous_trailing_semicolon_warning
= 1;
319 if (! context_find ("path")) {
320 free (path ("./", TFOLDER
));
323 if (file
&& msgs
.size
) {
324 adios (NULL
, "cannot specify msg and file at same time!");
328 /* Open the outfile now, so we don't have to risk opening it
329 after running out of fds. */
330 if (strcmp (outfile
, "-") == 0) {
332 } else if ((outfp
= fopen (outfile
, "w")) == NULL
) {
333 adios (outfile
, "unable to open for writing");
338 * check if message is coming from file
341 /* If file is stdin, create a tmp file name before parse_mime()
342 has a chance, because it might put in on a different
343 filesystem than the output file. Instead, put it in the
344 user's preferred tmp directory. */
347 if (! strcmp ("-", file
)) {
353 if ((cp
= m_mktemp2 (NULL
, invo_name
, &fd
, NULL
)) == NULL
) {
354 adios (NULL
, "unable to create temporary file in %s",
358 file
= mh_xstrdup (cp
);
359 cpydata (STDIN_FILENO
, fd
, "-", file
);
363 (void) m_unlink (file
);
364 adios (NULL
, "failed to write temporary file");
368 cts
= mh_xcalloc(2, sizeof *cts
);
371 if ((ct
= parse_mime (file
))) {
372 set_text_ctparams(ct
, fx
.decodetypes
, fx
.lf_line_endings
);
375 inform("unable to parse message from file %s", file
);
378 /* If there's an outfile, pass the input message unchanged, so the
379 message won't get dropped from a pipeline. */
381 /* Something went wrong. Output might be expected, such as if
382 this were run as a filter. Just copy the input to the
384 if ((infp
= fopen (file
, "r")) == NULL
) {
385 adios (file
, "unable to open for reading");
388 if (copy_input_to_output (file
, infp
, outfile
, outfp
) != OK
) {
389 inform("unable to copy message to %s, "
390 "it might be lost\n", outfile
);
399 * message(s) are coming from a folder
404 app_msgarg(&msgs
, "cur");
407 folder
= getfolder (1);
409 maildir
= mh_xstrdup(m_maildir (folder
));
411 /* chdir so that error messages, esp. from MIME parser, just
412 refer to the message and not its path. */
413 if (chdir (maildir
) == NOTOK
) {
414 adios (maildir
, "unable to change directory to");
417 /* read folder and create message structure */
418 if (! (mp
= folder_read (folder
, 1))) {
419 adios (NULL
, "unable to read folder %s", folder
);
422 /* check for empty folder */
423 if (mp
->nummsg
== 0) {
424 adios (NULL
, "no messages in %s", folder
);
427 /* parse all the message ranges/sequences and set SELECTED */
428 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
429 if (! m_convert (mp
, msgs
.msgs
[msgnum
])) {
432 seq_setprev (mp
); /* set the previous-sequence */
434 cts
= mh_xcalloc(mp
->numsel
+ 1, sizeof *cts
);
437 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
438 if (is_selected(mp
, msgnum
)) {
439 char *msgnam
= m_name (msgnum
);
441 if ((ct
= parse_mime (msgnam
))) {
442 set_text_ctparams(ct
, fx
.decodetypes
, fx
.lf_line_endings
);
445 inform("unable to parse message %s", msgnam
);
448 /* If there's an outfile, pass the input message
449 unchanged, so the message won't get dropped from a
452 /* Something went wrong. Output might be expected,
453 such as if this were run as a filter. Just copy
454 the input to the output. */
455 /* Can't use path() here because 1) it might have been
456 called before and it caches the pwd, and 2) we call
457 chdir() after that. */
458 char *input_filename
=
459 concat (maildir
, "/", msgnam
, NULL
);
461 if ((infp
= fopen (input_filename
, "r")) == NULL
) {
462 adios (input_filename
,
463 "unable to open for reading");
466 if (copy_input_to_output (input_filename
, infp
,
467 outfile
, outfp
) != OK
) {
468 inform("unable to copy message to %s, "
469 "it might be lost\n", outfile
);
474 free (input_filename
);
481 seq_setcur (mp
, mp
->hghsel
); /* update current message */
483 seq_save (mp
); /* synchronize sequences */
484 context_replace (pfolder
, folder
);/* update current folder */
485 context_save (); /* save the context file */
489 for (ctp
= cts
; *ctp
; ++ctp
) {
490 status
+= mhfixmsgsbr (ctp
, maildir
, &fx
, &infp
, outfile
, &outfp
);
494 (void) m_unlink (file
);
497 /* Just calling m_backup() unlinks the backup file. */
498 (void) m_backup (file
);
509 if (fx
.fixtypes
!= NULL
) { svector_free (fx
.fixtypes
); }
510 if (infp
) { fclose (infp
); } /* even if stdin */
511 if (outfp
) { fclose (outfp
); } /* even if stdout */
523 * Apply transformations to one message.
526 mhfixmsgsbr (CT
*ctp
, char *maildir
, const fix_transformations
*fx
,
527 FILE **infp
, char *outfile
, FILE **outfp
) {
528 /* Store input filename in case one of the transformations, i.e.,
529 fix_boundary(), rewrites to a tmp file. */
530 char *input_filename
= maildir
531 ? concat (maildir
, "/", (*ctp
)->c_file
, NULL
)
532 : mh_xstrdup ((*ctp
)->c_file
);
533 int modify_inplace
= 0;
534 int message_mods
= 0;
537 /* Though the input file won't need to be opened if everything goes
538 well, do it here just in case there's a failure, and that failure is
539 running out of file descriptors. */
540 if ((*infp
= fopen (input_filename
, "r")) == NULL
) {
541 adios (input_filename
, "unable to open for reading");
544 if (outfile
== NULL
) {
547 if ((*ctp
)->c_file
) {
549 /* outfp will be closed by the caller */
550 if ((tempfile
= m_mktemp2 (NULL
, invo_name
, NULL
, outfp
)) ==
552 adios (NULL
, "unable to create temporary file in %s",
555 outfile
= mh_xstrdup (tempfile
);
557 adios (NULL
, "missing both input and output filenames\n");
559 } /* else *outfp was defined by caller */
561 reverse_alternative_parts (*ctp
);
562 status
= fix_always (*ctp
, &message_mods
);
563 if (status
== OK
&& fx
->fixboundary
) {
564 status
= fix_boundary (ctp
, &message_mods
);
566 if (status
== OK
&& fx
->fixtypes
!= NULL
) {
567 status
= fix_types (*ctp
, fx
->fixtypes
, &message_mods
);
569 if (status
== OK
&& fx
->fixcompositecte
) {
570 status
= fix_composite_cte (*ctp
, &message_mods
);
572 if (status
== OK
&& fx
->reformat
) {
574 ensure_text_plain (ctp
, NULL
, &message_mods
, fx
->replacetextplain
);
576 if (status
== OK
&& fx
->decodetext
) {
577 status
= decode_text_parts (*ctp
, fx
->decodetext
, fx
->decodetypes
,
581 if (status
== OK
&& fx
->textcharset
!= NULL
) {
582 status
= convert_charsets (*ctp
, fx
->textcharset
, &message_mods
);
585 if (status
== OK
&& ! (*ctp
)->c_umask
) {
586 /* Set the umask for the contents file. This currently
587 isn't used but just in case it is in the future. */
590 if (stat ((*ctp
)->c_file
, &st
) != NOTOK
) {
591 (*ctp
)->c_umask
= ~(st
.st_mode
& 0777);
593 (*ctp
)->c_umask
= ~m_gmprot();
598 * Write the content to a file
601 status
= write_content (*ctp
, input_filename
, outfile
, *outfp
,
602 modify_inplace
, message_mods
);
603 } else if (! modify_inplace
) {
604 /* Something went wrong. Output might be expected, such
605 as if this were run as a filter. Just copy the input
607 if (copy_input_to_output (input_filename
, *infp
, outfile
,
609 inform("unable to copy message to %s, it might be lost\n",
614 if (modify_inplace
) {
615 if (status
!= OK
) { (void) m_unlink (outfile
); }
622 free (input_filename
);
629 * Copy input message to output. Assumes not modifying in place, so this
630 * might be running as part of a pipeline.
633 copy_input_to_output (const char *input_filename
, FILE *infp
,
634 const char *output_filename
, FILE *outfp
) {
635 int in
= fileno (infp
);
636 int out
= fileno (outfp
);
639 if (in
!= -1 && out
!= -1) {
640 cpydata (in
, out
, input_filename
, output_filename
);
650 * Fix mismatched outer level boundary.
653 fix_boundary (CT
*ct
, int *message_mods
) {
654 struct multipart
*mp
;
657 if (ct
&& (*ct
)->c_type
== CT_MULTIPART
&& bogus_mp_content
) {
658 mp
= (struct multipart
*) (*ct
)->c_ctparams
;
661 * 1) Get boundary at end of part.
662 * 2) Get boundary at beginning of part and compare to the end-of-part
664 * 3) Write out contents of ct to tmp file, replacing boundary in
665 * header with boundary from part. Set c_unlink to 1.
667 * 5) Call parse_mime() on the tmp file, replacing ct.
670 if (mp
&& mp
->mp_start
) {
673 if (get_multipart_boundary (*ct
, &part_boundary
) == OK
) {
676 if ((fixed
= m_mktemp2 (NULL
, invo_name
, NULL
, &(*ct
)->c_fp
))) {
677 if (replace_boundary (*ct
, fixed
, part_boundary
) == OK
) {
678 char *filename
= mh_xstrdup ((*ct
)->c_file
);
682 if ((fixed_ct
= parse_mime (fixed
))) {
688 report (NULL
, NULL
, filename
,
689 "fix multipart boundary");
693 inform("unable to parse fixed part");
698 inform("unable to replace broken boundary");
702 inform("unable to create temporary file in %s",
707 free (part_boundary
);
709 /* Couldn't fix the boundary. Report failure so that mhfixmsg
710 doesn't modify the message. */
714 /* No multipart struct, even though the content type is
715 CT_MULTIPART. Report failure so that mhfixmsg doesn't modify
726 * Find boundary at end of multipart.
729 get_multipart_boundary (CT ct
, char **part_boundary
) {
730 char buffer
[NMH_BUFSIZ
];
731 char *end_boundary
= NULL
;
732 off_t begin
= (off_t
) ct
->c_end
> (off_t
) (ct
->c_begin
+ sizeof buffer
)
733 ? (off_t
) (ct
->c_end
- sizeof buffer
)
734 : (off_t
) ct
->c_begin
;
738 /* This will fail if the boundary spans fread() calls. NMH_BUFSIZ should
739 be big enough, even if it's just 1024, to make that unlikely. */
741 /* free_content() will close ct->c_fp if bogus MP boundary is fixed. */
742 if (! ct
->c_fp
&& (ct
->c_fp
= fopen (ct
->c_file
, "r")) == NULL
) {
743 advise (ct
->c_file
, "unable to open for reading");
747 /* Get boundary at end of multipart. */
748 while (begin
>= (off_t
) ct
->c_begin
) {
749 fseeko (ct
->c_fp
, begin
, SEEK_SET
);
750 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, ct
->c_fp
)) > 0) {
751 char *cp
= rfind_str (buffer
, bytes_read
, "--");
756 /* Trim off trailing "--" and anything beyond. */
758 if ((end
= rfind_str (buffer
, cp
- buffer
, "\n"))) {
759 if (strlen (end
) > 3 && *end
++ == '\n' &&
760 *end
++ == '-' && *end
++ == '-') {
761 end_boundary
= mh_xstrdup (end
);
768 if (end_boundary
|| begin
<= (off_t
) (ct
->c_begin
+ sizeof buffer
))
770 begin
-= sizeof buffer
;
773 /* Get boundary at beginning of multipart. */
775 fseeko (ct
->c_fp
, ct
->c_begin
, SEEK_SET
);
776 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, ct
->c_fp
)) > 0) {
777 if (bytes_read
>= strlen (end_boundary
)) {
778 char *cp
= find_str (buffer
, bytes_read
, end_boundary
);
780 if (cp
&& cp
- buffer
>= 2 && *--cp
== '-' &&
781 *--cp
== '-' && (cp
> buffer
&& *--cp
== '\n')) {
786 /* The start and end boundaries didn't match, or the
787 start boundary doesn't begin with "\n--" (or "--"
788 if at the beginning of buffer). Keep trying. */
802 *part_boundary
= end_boundary
;
804 *part_boundary
= NULL
;
813 * Open and copy ct->c_file to file, replacing the multipart boundary.
816 replace_boundary (CT ct
, char *file
, char *boundary
) {
819 char buf
[NMH_BUFSIZ
], name
[NAMESZ
];
821 m_getfld_state_t gstate
;
824 if (ct
->c_file
== NULL
) {
825 inform("missing input filename");
829 if ((fpin
= fopen (ct
->c_file
, "r")) == NULL
) {
830 advise (ct
->c_file
, "unable to open for reading");
834 if ((fpout
= fopen (file
, "w")) == NULL
) {
836 advise (file
, "unable to open for writing");
840 gstate
= m_getfld_state_init(fpin
);
841 for (compnum
= 1;;) {
842 int bufsz
= (int) sizeof buf
;
844 switch (state
= m_getfld2(&gstate
, name
, buf
, &bufsz
)) {
849 /* get copies of the buffers */
850 np
= mh_xstrdup (name
);
851 vp
= mh_xstrdup (buf
);
853 /* if necessary, get rest of field */
854 while (state
== FLDPLUS
) {
856 state
= m_getfld2(&gstate
, name
, buf
, &bufsz
);
857 vp
= add (buf
, vp
); /* add to previous value */
860 if (strcasecmp (TYPE_FIELD
, np
)) {
861 fprintf (fpout
, "%s:%s", np
, vp
);
863 char *new_ctline
, *new_params
;
865 replace_param(&ct
->c_ctinfo
.ci_first_pm
,
866 &ct
->c_ctinfo
.ci_last_pm
, "boundary",
869 new_ctline
= concat(" ", ct
->c_ctinfo
.ci_type
, "/",
870 ct
->c_ctinfo
.ci_subtype
, NULL
);
871 new_params
= output_params(strlen(TYPE_FIELD
) +
872 strlen(new_ctline
) + 1,
873 ct
->c_ctinfo
.ci_first_pm
, NULL
, 0);
874 fprintf (fpout
, "%s:%s%s\n", np
, new_ctline
,
875 FENDNULL(new_params
));
877 mh_xfree(new_params
);
887 /* buf will have a terminating NULL, skip it. */
888 if ((int) fwrite (buf
, 1, bufsz
-1, fpout
) < bufsz
-1) {
889 advise (file
, "fwrite");
898 inform("message format error in component #%d", compnum
);
903 inform("getfld() returned %d", state
);
911 m_getfld_state_destroy (&gstate
);
920 * Fix Content-Type header to reflect the content of its part.
923 fix_types (CT ct
, svector_t fixtypes
, int *message_mods
) {
926 switch (ct
->c_type
) {
928 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
931 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
932 status
= fix_types (part
->mp_part
, fixtypes
, message_mods
);
938 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
939 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
941 status
= fix_types (e
->eb_content
, fixtypes
, message_mods
);
948 if (ct
->c_ctinfo
.ci_type
&& ct
->c_ctinfo
.ci_subtype
) {
949 for (typep
= svector_strs (fixtypes
);
950 typep
&& (type
= *typep
);
953 concat (ct
->c_ctinfo
.ci_type
, "/", ct
->c_ctinfo
.ci_subtype
,
956 if (! strcasecmp (type
, type_subtype
) &&
957 decode_part (ct
) == OK
&&
958 ct
->c_cefile
.ce_file
!= NULL
) {
959 char *ct_type_subtype
= mime_type (ct
->c_cefile
.ce_file
);
962 if ((cp
= strchr (ct_type_subtype
, ';'))) {
963 /* Truncate to remove any parameter list from
964 mime_type () result. */
968 if (strcasecmp (type
, ct_type_subtype
)) {
969 char *ct_type
, *ct_subtype
;
972 /* The Content-Type header does not match the
973 content, so update these struct Content
976 * c_ctinfo.ci_type, c_ctinfo.ci_subtype
979 /* Extract type and subtype from type/subtype. */
980 ct_type
= mh_xstrdup(ct_type_subtype
);
981 if ((cp
= strchr (ct_type
, '/'))) {
983 ct_subtype
= mh_xstrdup(++cp
);
985 inform("missing / in MIME type of %s %s",
986 ct
->c_file
, ct
->c_partno
);
991 ct
->c_type
= ct_str_type (ct_type
);
992 ct
->c_subtype
= ct_str_subtype (ct
->c_type
, ct_subtype
);
994 free (ct
->c_ctinfo
.ci_type
);
995 ct
->c_ctinfo
.ci_type
= ct_type
;
996 free (ct
->c_ctinfo
.ci_subtype
);
997 ct
->c_ctinfo
.ci_subtype
= ct_subtype
;
998 if (! replace_substring (&ct
->c_ctline
, type
,
1000 inform("did not find %s in %s",
1001 type
, ct
->c_ctline
);
1004 /* Update Content-Type header field. */
1005 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1006 if (! strcasecmp (TYPE_FIELD
, hf
->name
)) {
1007 if (replace_substring (&hf
->value
, type
,
1011 report (NULL
, ct
->c_partno
, ct
->c_file
,
1012 "change Content-Type in header "
1014 type
, ct_type_subtype
);
1018 inform("did not find %s in %s", type
, hf
->value
);
1022 free (ct_type_subtype
);
1024 free (type_subtype
);
1034 * Replace a substring, allocating space to hold the new one.
1037 replace_substring (char **str
, const char *old
, const char *new) {
1040 if ((cp
= strstr (*str
, old
))) {
1041 char *remainder
= cp
+ strlen (old
);
1042 char *prefix
, *new_str
;
1045 prefix
= mh_xstrdup(*str
);
1046 *(prefix
+ (cp
- *str
)) = '\0';
1047 new_str
= concat (prefix
, new, remainder
, NULL
);
1050 new_str
= concat (new, remainder
, NULL
);
1055 return *str
= new_str
;
1063 * Remove a name=value parameter, given just its name, from a header value.
1066 remove_parameter (char *str
, const char *name
) {
1067 /* It looks to me, based on the BNF in RFC 2045, than there can't
1068 be whitespace between the parameter name and the "=", or
1069 between the "=" and the parameter value. */
1070 char *param_name
= concat (name
, "=", NULL
);
1073 if ((cp
= strstr (str
, param_name
))) {
1077 /* Remove any leading spaces, before the parameter name. */
1079 start
> str
&& isspace ((unsigned char) *(start
-1));
1083 /* Remove a leading semicolon. */
1084 if (start
> str
&& *(start
-1) == ';') { --start
; }
1086 end
= cp
+ strlen (name
) + 1;
1088 /* Skip past the quoted value, and then the final quote. */
1089 for (++end
; *end
&& *end
!= '"'; ++end
) { continue; }
1092 /* Skip past the value. */
1093 for (++end
; *end
&& ! isspace ((unsigned char) *end
); ++end
) {}
1096 /* Count how many characters need to be moved. Include
1097 trailing null, which is accounted for by the
1098 initialization of count to 1. */
1099 for (cp
= end
; *cp
; ++cp
) { ++count
; }
1100 (void) memmove (start
, end
, count
);
1110 * Fix Content-Transfer-Encoding of composite,, e.g., message or multipart, part.
1111 * According to RFC 2045 Sec. 6.4, it must be 7bit, 8bit, or binary. Set it to
1115 fix_composite_cte (CT ct
, int *message_mods
) {
1118 if (ct
->c_type
== CT_MESSAGE
|| ct
->c_type
== CT_MULTIPART
) {
1119 if (ct
->c_encoding
!= CE_7BIT
&& ct
->c_encoding
!= CE_8BIT
&&
1120 ct
->c_encoding
!= CE_BINARY
) {
1123 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1124 char *name
= hf
->name
;
1125 for (; *name
&& isspace ((unsigned char) *name
); ++name
) {
1129 if (! strncasecmp (name
, ENCODING_FIELD
,
1130 strlen (ENCODING_FIELD
))) {
1131 char *prefix
= "Nmh-REPLACED-INVALID-";
1135 h
->name
= mh_xstrdup (hf
->name
);
1136 h
->hf_encoding
= hf
->hf_encoding
;
1140 /* Retain old header but prefix its name. */
1142 hf
->name
= concat (prefix
, h
->name
, NULL
);
1146 char *encoding
= cpytrim (hf
->value
);
1147 report (NULL
, ct
->c_partno
, ct
->c_file
,
1148 "replace Content-Transfer-Encoding of %s "
1149 "with 8 bit", encoding
);
1153 h
->value
= mh_xstrdup (" 8bit\n");
1155 /* Don't need to warn for multiple C-T-E header
1156 fields, parse_mime() already does that. But
1157 if there are any, fix them all as necessary. */
1162 set_ce (ct
, CE_8BIT
);
1165 if (ct
->c_type
== CT_MULTIPART
) {
1166 struct multipart
*m
;
1169 m
= (struct multipart
*) ct
->c_ctparams
;
1170 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
1171 if (fix_composite_cte (part
->mp_part
, message_mods
) != OK
) {
1184 * Set content encoding.
1187 set_ce (CT ct
, int encoding
) {
1188 const char *ce
= ce_str (encoding
);
1189 const struct str2init
*ctinit
= get_ce_method (ce
);
1192 char *cte
= concat (" ", ce
, "\n", NULL
);
1195 /* Decoded contents might be in ct->c_cefile.ce_file, if the
1196 caller is decode_text_parts (). Save because we'll
1198 struct cefile decoded_content_info
= ct
->c_cefile
;
1200 ct
->c_encoding
= encoding
;
1202 ct
->c_ctinitfnx
= ctinit
->si_init
;
1203 /* This will assign ct->c_cefile with an all-0 struct, which
1205 (*ctinit
->si_init
) (ct
);
1206 /* After returning, the caller should set
1207 ct->c_cefile.ce_file to the name of the file containing
1210 if (ct
->c_ceclosefnx
) {
1211 (*ct
->c_ceclosefnx
) (ct
);
1214 /* Restore the cefile. */
1215 ct
->c_cefile
= decoded_content_info
;
1217 /* Update/add Content-Transfer-Encoding header field. */
1218 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1219 if (! strcasecmp (ENCODING_FIELD
, hf
->name
)) {
1226 add_header (ct
, mh_xstrdup (ENCODING_FIELD
), cte
);
1229 /* Update c_celine. It's used only by mhlist -debug. */
1230 free (ct
->c_celine
);
1231 ct
->c_celine
= mh_xstrdup (cte
);
1241 * Make sure each text part has a corresponding text/plain part.
1244 ensure_text_plain (CT
*ct
, CT parent
, int *message_mods
, int replacetextplain
) {
1247 switch ((*ct
)->c_type
) {
1249 /* Nothing to do for text/plain. */
1250 if ((*ct
)->c_subtype
== TEXT_PLAIN
) { return OK
; }
1252 if (parent
&& parent
->c_type
== CT_MULTIPART
&&
1253 parent
->c_subtype
== MULTI_ALTERNATE
) {
1254 int new_subpart_number
= 1;
1255 int has_text_plain
=
1256 find_textplain_sibling (parent
, replacetextplain
,
1257 &new_subpart_number
);
1259 if (! has_text_plain
) {
1260 /* Parent is a multipart/alternative. Insert a new
1261 text/plain subpart. */
1262 const int inserted
=
1263 insert_new_text_plain_part (*ct
, new_subpart_number
,
1268 report (NULL
, parent
->c_partno
, parent
->c_file
,
1269 "insert text/plain part");
1275 } else if (parent
&& parent
->c_type
== CT_MULTIPART
&&
1276 parent
->c_subtype
== MULTI_RELATED
) {
1277 char *type_subtype
=
1278 concat ((*ct
)->c_ctinfo
.ci_type
, "/",
1279 (*ct
)->c_ctinfo
.ci_subtype
, NULL
);
1280 const char *parent_type
=
1281 get_param (parent
->c_ctinfo
.ci_first_pm
, "type", '?', 1);
1282 int new_subpart_number
= 1;
1283 int has_text_plain
= 0;
1285 /* Have to do string comparison on the subtype because we
1286 don't enumerate all of them in c_subtype values.
1287 parent_type will be NULL if the multipart/related part
1288 doesn't have a type parameter. The type parameter must
1289 be specified according to RFC 2387 Sec. 3.1 but not all
1291 if (parent_type
&& strcasecmp (type_subtype
, parent_type
) == 0) {
1292 /* The type of this part matches the root type of the
1293 parent multipart/related. Look to see if there's
1294 text/plain sibling. */
1296 find_textplain_sibling (parent
, replacetextplain
,
1297 &new_subpart_number
);
1300 free (type_subtype
);
1302 if (! has_text_plain
) {
1303 struct multipart
*mp
= (struct multipart
*) parent
->c_ctparams
;
1307 for (part
= mp
->mp_parts
; part
; part
= part
->mp_next
) {
1308 if (*ct
!= part
->mp_part
) {
1314 /* Parent is a multipart/related. Insert a new
1315 text/plain subpart in a new multipart/alternative. */
1316 if (insert_into_new_mp_alt (ct
, message_mods
)) {
1317 /* Not an error if text/plain couldn't be added. */
1320 /* There are no siblings, so insert a new text/plain
1321 subpart, and change the parent type from
1322 multipart/related to multipart/alternative. */
1323 const int inserted
=
1324 insert_new_text_plain_part (*ct
, new_subpart_number
,
1330 parent
->c_subtype
= MULTI_ALTERNATE
;
1331 free (parent
->c_ctinfo
.ci_subtype
);
1332 parent
->c_ctinfo
.ci_subtype
= mh_xstrdup("alternative");
1333 if (! replace_substring (&parent
->c_ctline
, "/related",
1335 inform("did not find multipart/related in %s",
1339 /* Update Content-Type header field. */
1340 for (hf
= parent
->c_first_hf
; hf
; hf
= hf
->next
) {
1341 if (! strcasecmp (TYPE_FIELD
, hf
->name
)) {
1342 if (replace_substring (&hf
->value
, "/related",
1346 report (NULL
, parent
->c_partno
,
1348 "insert text/plain part");
1351 /* Remove, e.g., type="text/html" from
1352 multipart/alternative. */
1353 remove_parameter (hf
->value
, "type");
1356 inform("did not find multipart/"
1357 "related in header %s", hf
->value
);
1361 /* Not an error if text/plain couldn't be inserted. */
1366 if (insert_into_new_mp_alt (ct
, message_mods
)) {
1373 case CT_MULTIPART
: {
1374 struct multipart
*mp
= (struct multipart
*) (*ct
)->c_ctparams
;
1377 for (part
= mp
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
1378 if ((*ct
)->c_type
== CT_MULTIPART
) {
1379 status
= ensure_text_plain (&part
->mp_part
, *ct
, message_mods
,
1387 if ((*ct
)->c_subtype
== MESSAGE_EXTERNAL
) {
1388 struct exbody
*e
= (struct exbody
*) (*ct
)->c_ctparams
;
1390 status
= ensure_text_plain (&e
->eb_content
, *ct
, message_mods
,
1401 * See if there is a sibling text/plain, and return its subpart number.
1404 find_textplain_sibling (CT parent
, int replacetextplain
,
1405 int *new_subpart_number
) {
1406 struct multipart
*mp
= (struct multipart
*) parent
->c_ctparams
;
1407 struct part
*part
, *prev
;
1408 int has_text_plain
= 0;
1410 for (prev
= part
= mp
->mp_parts
; part
; part
= part
->mp_next
) {
1411 ++*new_subpart_number
;
1412 if (part
->mp_part
->c_type
== CT_TEXT
&&
1413 part
->mp_part
->c_subtype
== TEXT_PLAIN
) {
1414 if (replacetextplain
) {
1415 struct part
*old_part
;
1416 if (part
== mp
->mp_parts
) {
1417 old_part
= mp
->mp_parts
;
1418 mp
->mp_parts
= part
->mp_next
;
1420 old_part
= prev
->mp_next
;
1421 prev
->mp_next
= part
->mp_next
;
1424 report (NULL
, parent
->c_partno
, parent
->c_file
,
1425 "remove text/plain part %s",
1426 old_part
->mp_part
->c_partno
);
1428 free_content (old_part
->mp_part
);
1438 return has_text_plain
;
1443 * Insert a new text/plain part.
1446 insert_new_text_plain_part (CT ct
, int new_subpart_number
, CT parent
) {
1447 struct multipart
*mp
= (struct multipart
*) parent
->c_ctparams
;
1448 struct part
*new_part
;
1451 if ((new_part
->mp_part
= build_text_plain_part (ct
))) {
1453 snprintf (buffer
, sizeof buffer
, "%d", new_subpart_number
);
1455 new_part
->mp_next
= mp
->mp_parts
;
1456 mp
->mp_parts
= new_part
;
1457 new_part
->mp_part
->c_partno
=
1458 concat (parent
->c_partno
? parent
->c_partno
: "1", ".",
1464 free_content (new_part
->mp_part
);
1472 * Create a text/plain part to go along with non-plain sibling part.
1475 build_text_plain_part (CT encoded_part
) {
1476 CT tp_part
= divide_part (encoded_part
);
1477 char *tmp_plain_file
= NULL
;
1479 if (decode_part (tp_part
) == OK
) {
1480 /* Now, tp_part->c_cefile.ce_file is the name of the tmp file that
1481 contains the decoded contents. And the decoding function, such
1482 as openQuoted, will have set ...->ce_unlink to 1 so that it will
1483 be unlinked by free_content (). */
1486 /* This m_mktemp2() call closes the temp file. */
1487 if ((tempfile
= m_mktemp2 (NULL
, invo_name
, NULL
, NULL
)) == NULL
) {
1488 inform("unable to create temporary file in %s",
1491 tmp_plain_file
= mh_xstrdup (tempfile
);
1492 if (reformat_part (tp_part
, tmp_plain_file
,
1493 tp_part
->c_ctinfo
.ci_type
,
1494 tp_part
->c_ctinfo
.ci_subtype
,
1495 tp_part
->c_type
) == OK
) {
1501 free_content (tp_part
);
1502 if (tmp_plain_file
) { (void) m_unlink (tmp_plain_file
); }
1503 free (tmp_plain_file
);
1510 * Slip new text/plain part into a new multipart/alternative.
1513 insert_into_new_mp_alt (CT
*ct
, int *message_mods
) {
1514 CT tp_part
= build_text_plain_part (*ct
);
1518 CT mp_alt
= build_multipart_alt (*ct
, tp_part
, CT_MULTIPART
,
1521 struct multipart
*mp
= (struct multipart
*) mp_alt
->c_ctparams
;
1523 if (mp
&& mp
->mp_parts
) {
1524 mp
->mp_parts
->mp_part
= tp_part
;
1525 /* Make the new multipart/alternative the parent. */
1530 report (NULL
, (*ct
)->c_partno
, (*ct
)->c_file
,
1531 "insert text/plain part");
1534 free_content (tp_part
);
1535 free_content (mp_alt
);
1542 /* Not an error if text/plain couldn't be built. */
1550 * Clone a MIME part.
1553 divide_part (CT ct
) {
1557 /* Just copy over what is needed for decoding. c_vrsn and
1558 c_celine aren't necessary. */
1559 new_part
->c_file
= mh_xstrdup (ct
->c_file
);
1560 new_part
->c_begin
= ct
->c_begin
;
1561 new_part
->c_end
= ct
->c_end
;
1562 copy_ctinfo (&new_part
->c_ctinfo
, &ct
->c_ctinfo
);
1563 new_part
->c_type
= ct
->c_type
;
1564 new_part
->c_cefile
= ct
->c_cefile
;
1565 new_part
->c_encoding
= ct
->c_encoding
;
1566 new_part
->c_ctinitfnx
= ct
->c_ctinitfnx
;
1567 new_part
->c_ceopenfnx
= ct
->c_ceopenfnx
;
1568 new_part
->c_ceclosefnx
= ct
->c_ceclosefnx
;
1569 new_part
->c_cesizefnx
= ct
->c_cesizefnx
;
1571 /* c_ctline is used by reformat__part(), so it can preserve
1572 anything after the type/subtype. */
1573 new_part
->c_ctline
= mh_xstrdup (ct
->c_ctline
);
1580 * Copy the content info from one part to another.
1583 copy_ctinfo (CI dest
, CI src
) {
1586 dest
->ci_type
= src
->ci_type
? mh_xstrdup (src
->ci_type
) : NULL
;
1587 dest
->ci_subtype
= src
->ci_subtype
? mh_xstrdup (src
->ci_subtype
) : NULL
;
1589 for (s_pm
= src
->ci_first_pm
; s_pm
; s_pm
= s_pm
->pm_next
) {
1590 d_pm
= add_param(&dest
->ci_first_pm
, &dest
->ci_last_pm
, s_pm
->pm_name
,
1592 if (s_pm
->pm_charset
) {
1593 d_pm
->pm_charset
= mh_xstrdup(s_pm
->pm_charset
);
1595 if (s_pm
->pm_lang
) {
1596 d_pm
->pm_lang
= mh_xstrdup(s_pm
->pm_lang
);
1600 dest
->ci_comment
= src
->ci_comment
? mh_xstrdup (src
->ci_comment
) : NULL
;
1601 dest
->ci_magic
= src
->ci_magic
? mh_xstrdup (src
->ci_magic
) : NULL
;
1609 decode_part (CT ct
) {
1615 if ((tempfile
= m_mktemp2 (NULL
, invo_name
, NULL
, &file
)) == NULL
) {
1616 adios (NULL
, "unable to create temporary file in %s", get_temp_dir());
1618 tmp_decoded
= mh_xstrdup (tempfile
);
1619 /* The following call will load ct->c_cefile.ce_file with the tmp
1620 filename of the decoded content. tmp_decoded will contain the
1621 encoded output, get rid of that. */
1622 status
= output_message_fp (ct
, file
, tmp_decoded
);
1623 (void) m_unlink (tmp_decoded
);
1625 if (fclose (file
)) {
1626 inform("unable to close temporary file %s, continuing...", tempfile
);
1634 * Reformat content as plain text.
1635 * Some of the arguments aren't really needed now, but maybe will
1636 * be in the future for other than text types.
1639 reformat_part (CT ct
, char *file
, char *type
, char *subtype
, int c_type
) {
1640 int output_subtype
, output_encoding
;
1641 const char *reason
= NULL
;
1645 /* Hacky: this redirects the output from whatever command is used
1646 to show the part to a file. So, the user can't have any output
1647 redirection in that command.
1648 Could show_multi() in mhshowsbr.c avoid this? */
1650 /* Check for invo_name-format-type/subtype. */
1651 if ((cf
= context_find_by_type ("format", type
, subtype
)) == NULL
) {
1653 inform("Don't know how to convert %s, there is no "
1654 "%s-format-%s/%s profile entry",
1655 ct
->c_file
, invo_name
, type
, subtype
);
1659 if (strchr (cf
, '>')) {
1660 inform("'>' prohibited in \"%s\",\nplease fix your "
1661 "%s-format-%s/%s profile entry", cf
, invo_name
, type
,
1667 cp
= concat (cf
, " >", file
, NULL
);
1668 status
= show_content_aux (ct
, 0, cp
, NULL
, NULL
);
1671 /* Unlink decoded content tmp file and free its filename to avoid
1672 leaks. The file stream should already have been closed. */
1673 if (ct
->c_cefile
.ce_unlink
) {
1674 (void) m_unlink (ct
->c_cefile
.ce_file
);
1675 free (ct
->c_cefile
.ce_file
);
1676 ct
->c_cefile
.ce_file
= NULL
;
1677 ct
->c_cefile
.ce_unlink
= 0;
1680 if (c_type
== CT_TEXT
) {
1681 output_subtype
= TEXT_PLAIN
;
1683 /* Set subtype to 0, which is always an UNKNOWN subtype. */
1687 output_encoding
= content_encoding (ct
, &reason
);
1689 set_ct_type (ct
, c_type
, output_subtype
, output_encoding
) == OK
) {
1690 ct
->c_cefile
.ce_file
= file
;
1691 ct
->c_cefile
.ce_unlink
= 1;
1693 ct
->c_cefile
.ce_unlink
= 0;
1702 * Fill in a multipart/alternative part.
1705 build_multipart_alt (CT first_alt
, CT new_part
, int type
, int subtype
) {
1706 char *boundary_prefix
= "----=_nmh-multipart";
1707 char *boundary
= concat (boundary_prefix
, first_alt
->c_partno
, NULL
);
1708 char *boundary_indicator
= "; boundary=";
1709 char *typename
, *subtypename
, *name
;
1712 struct multipart
*m
;
1713 const struct str2init
*ctinit
;
1717 /* Set up the multipart/alternative part. These fields of *ct were
1718 initialized to 0 by mh_xcalloc():
1719 c_fp, c_unlink, c_begin, c_end,
1720 c_vrsn, c_ctline, c_celine,
1721 c_id, c_descr, c_dispo, c_partno,
1722 c_ctinfo.ci_comment, c_ctinfo.ci_magic,
1723 c_cefile, c_encoding,
1724 c_digested, c_digest[16], c_ctexbody,
1725 c_ctinitfnx, c_ceopenfnx, c_ceclosefnx, c_cesizefnx,
1727 c_showproc, c_termproc, c_storeproc, c_storage, c_folder
1730 ct
->c_file
= mh_xstrdup (first_alt
->c_file
);
1732 ct
->c_subtype
= subtype
;
1734 ctinit
= get_ct_init (ct
->c_type
);
1736 typename
= ct_type_str (type
);
1737 subtypename
= ct_subtype_str (type
, subtype
);
1741 int found_boundary
= 1;
1743 while (found_boundary
&& serial
< 1000000) {
1746 /* Ensure that the boundary doesn't appear in the decoded
1748 if (new_part
->c_cefile
.ce_file
) {
1749 if ((found_boundary
=
1750 boundary_in_content (&new_part
->c_cefile
.ce_fp
,
1751 new_part
->c_cefile
.ce_file
,
1752 boundary
)) == NOTOK
) {
1758 /* Ensure that the boundary doesn't appear in the encoded
1760 if (! found_boundary
&& new_part
->c_file
) {
1761 if ((found_boundary
=
1762 boundary_in_content (&new_part
->c_fp
,
1764 boundary
)) == NOTOK
) {
1770 if (found_boundary
) {
1771 /* Try a slightly different boundary. */
1776 snprintf (buffer2
, sizeof buffer2
, "%d", serial
);
1778 concat (boundary_prefix
,
1779 FENDNULL(first_alt
->c_partno
),
1780 "-", buffer2
, NULL
);
1784 if (found_boundary
) {
1785 inform("giving up trying to find a unique boundary");
1791 name
= concat (" ", typename
, "/", subtypename
, boundary_indicator
, "\"",
1792 boundary
, "\"", NULL
);
1794 /* Load c_first_hf and c_last_hf. */
1795 transfer_noncontent_headers (first_alt
, ct
);
1796 add_header (ct
, mh_xstrdup (TYPE_FIELD
), concat (name
, "\n", NULL
));
1799 /* Load c_partno. */
1800 if (first_alt
->c_partno
) {
1801 ct
->c_partno
= mh_xstrdup (first_alt
->c_partno
);
1802 free (first_alt
->c_partno
);
1803 first_alt
->c_partno
= concat (ct
->c_partno
, ".1", NULL
);
1804 new_part
->c_partno
= concat (ct
->c_partno
, ".2", NULL
);
1806 first_alt
->c_partno
= mh_xstrdup ("1");
1807 new_part
->c_partno
= mh_xstrdup ("2");
1811 ct
->c_ctinfo
.ci_type
= mh_xstrdup (typename
);
1812 ct
->c_ctinfo
.ci_subtype
= mh_xstrdup (subtypename
);
1815 add_param(&ct
->c_ctinfo
.ci_first_pm
, &ct
->c_ctinfo
.ci_last_pm
,
1816 "boundary", boundary
, 0);
1820 p
->mp_next
->mp_next
= NULL
;
1821 p
->mp_next
->mp_part
= first_alt
;
1824 m
->mp_start
= concat (boundary
, "\n", NULL
);
1825 m
->mp_stop
= concat (boundary
, "--\n", NULL
);
1836 * Check that the boundary does not appear in the content.
1839 boundary_in_content (FILE **fp
, char *file
, const char *boundary
) {
1840 char buffer
[NMH_BUFSIZ
];
1842 int found_boundary
= 0;
1844 /* free_content() will close *fp if we fopen it here. */
1845 if (! *fp
&& (*fp
= fopen (file
, "r")) == NULL
) {
1846 advise (file
, "unable to open %s for reading", file
);
1850 fseeko (*fp
, 0L, SEEK_SET
);
1851 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, *fp
)) > 0) {
1852 if (find_str (buffer
, bytes_read
, boundary
)) {
1858 return found_boundary
;
1863 * Remove all non-Content headers.
1866 transfer_noncontent_headers (CT old
, CT
new) {
1869 hp_prev
= hp
= old
->c_first_hf
;
1873 if (strncasecmp (XXX_FIELD_PRF
, hp
->name
, strlen (XXX_FIELD_PRF
))) {
1874 if (hp
== old
->c_last_hf
) {
1875 if (hp
== old
->c_first_hf
) {
1876 old
->c_last_hf
= old
->c_first_hf
= NULL
;
1878 hp_prev
->next
= NULL
;
1879 old
->c_last_hf
= hp_prev
;
1882 if (hp
== old
->c_first_hf
) {
1883 old
->c_first_hf
= next
;
1885 hp_prev
->next
= next
;
1889 /* Put node hp in the new CT. */
1890 if (new->c_first_hf
== NULL
) {
1891 new->c_first_hf
= hp
;
1893 new->c_last_hf
->next
= hp
;
1895 new->c_last_hf
= hp
;
1897 /* A Content- header, leave in old. */
1910 set_ct_type (CT ct
, int type
, int subtype
, int encoding
) {
1911 char *typename
= ct_type_str (type
);
1912 char *subtypename
= ct_subtype_str (type
, subtype
);
1913 /* E.g, " text/plain" */
1914 char *type_subtypename
= concat (" ", typename
, "/", subtypename
, NULL
);
1915 /* E.g, " text/plain\n" */
1916 char *name_plus_nl
= concat (type_subtypename
, "\n", NULL
);
1917 int found_content_type
= 0;
1919 const char *cp
= NULL
;
1923 /* Update/add Content-Type header field. */
1924 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1925 if (! strcasecmp (TYPE_FIELD
, hf
->name
)) {
1926 found_content_type
= 1;
1928 hf
->value
= (cp
= strchr (ct
->c_ctline
, ';'))
1929 ? concat (type_subtypename
, cp
, "\n", NULL
)
1930 : mh_xstrdup (name_plus_nl
);
1933 if (! found_content_type
) {
1934 add_header (ct
, mh_xstrdup (TYPE_FIELD
),
1935 (cp
= strchr (ct
->c_ctline
, ';'))
1936 ? concat (type_subtypename
, cp
, "\n", NULL
)
1937 : mh_xstrdup (name_plus_nl
));
1940 /* Some of these might not be used, but set them anyway. */
1942 ? concat (type_subtypename
, cp
, NULL
)
1943 : concat (type_subtypename
, NULL
);
1944 free (ct
->c_ctline
);
1945 ct
->c_ctline
= ctline
;
1946 /* Leave other ctinfo members as they were. */
1947 free (ct
->c_ctinfo
.ci_type
);
1948 ct
->c_ctinfo
.ci_type
= mh_xstrdup (typename
);
1949 free (ct
->c_ctinfo
.ci_subtype
);
1950 ct
->c_ctinfo
.ci_subtype
= mh_xstrdup (subtypename
);
1952 ct
->c_subtype
= subtype
;
1954 free (name_plus_nl
);
1955 free (type_subtypename
);
1957 status
= set_ce (ct
, encoding
);
1964 * It's not necessary to update the charset parameter of a Content-Type
1965 * header for a text part. According to RFC 2045 Sec. 6.4, the body
1966 * (content) was originally in the specified charset, "and will be in
1967 * that character set again after decoding."
1970 decode_text_parts (CT ct
, int encoding
, const char *decodetypes
,
1971 int *message_mods
) {
1973 int lf_line_endings
= 0;
1975 switch (ct
->c_type
) {
1976 case CT_MULTIPART
: {
1977 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
1980 /* Should check to see if the body for this part is encoded?
1981 For now, it gets passed along as-is by InitMultiPart(). */
1982 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
1983 status
= decode_text_parts (part
->mp_part
, encoding
, decodetypes
,
1990 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
1991 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
1993 status
= decode_text_parts (e
->eb_content
, encoding
, decodetypes
,
1999 if (! should_decode(decodetypes
, ct
->c_ctinfo
.ci_type
, ct
->c_ctinfo
.ci_subtype
)) {
2004 ct
->c_ctparams
&& ((struct text
*) ct
->c_ctparams
)->lf_line_endings
;
2006 switch (ct
->c_encoding
) {
2011 if (decode_part (ct
) == OK
&& ct
->c_cefile
.ce_file
) {
2012 const char *reason
= NULL
;
2014 if ((ct_encoding
= content_encoding (ct
, &reason
)) == CE_BINARY
2015 && encoding
!= CE_BINARY
) {
2016 /* The decoding isn't acceptable so discard it.
2017 Leave status as OK to allow other transformations. */
2019 report (NULL
, ct
->c_partno
, ct
->c_file
,
2020 "will not decode%s because it is binary (%s)",
2022 : (FENDNULL(ct
->c_ctline
)),
2025 (void) m_unlink (ct
->c_cefile
.ce_file
);
2026 free (ct
->c_cefile
.ce_file
);
2027 ct
->c_cefile
.ce_file
= NULL
;
2028 } else if (ct
->c_encoding
== CE_QUOTED
&&
2029 ct_encoding
== CE_8BIT
&& encoding
== CE_7BIT
) {
2030 /* The decoding isn't acceptable so discard it.
2031 Leave status as OK to allow other transformations. */
2033 report (NULL
, ct
->c_partno
, ct
->c_file
,
2034 "will not decode%s because it is 8bit",
2036 : (FENDNULL(ct
->c_ctline
)));
2038 (void) m_unlink (ct
->c_cefile
.ce_file
);
2039 free (ct
->c_cefile
.ce_file
);
2040 ct
->c_cefile
.ce_file
= NULL
;
2044 if (ct_encoding
== CE_BINARY
) {
2046 } else if (ct_encoding
== CE_8BIT
&& encoding
== CE_7BIT
) {
2051 if (set_ce (ct
, enc
) == OK
) {
2054 report (NULL
, ct
->c_partno
, ct
->c_file
, "decode%s",
2055 FENDNULL(ct
->c_ctline
));
2057 if (lf_line_endings
) {
2058 strip_crs (ct
, message_mods
);
2071 if (lf_line_endings
) {
2072 strip_crs (ct
, message_mods
);
2087 * Determine if the part with type[/subtype] should be decoded, according to
2088 * decodetypes (which came from the -decodetypes switch).
2091 should_decode(const char *decodetypes
, const char *type
, const char *subtype
) {
2092 /* Quick search for matching type[/subtype] in decodetypes: bracket
2093 decodetypes with commas, then search for ,type, and ,type/subtype, in
2096 int found_match
= 0;
2097 char *delimited_decodetypes
= concat(",", decodetypes
, ",", NULL
);
2098 char *delimited_type
= concat(",", type
, ",", NULL
);
2100 if (nmh_strcasestr(delimited_decodetypes
, delimited_type
)) {
2102 } else if (subtype
!= NULL
) {
2103 char *delimited_type_subtype
=
2104 concat(",", type
, "/", subtype
, ",", NULL
);
2106 if (nmh_strcasestr(delimited_decodetypes
, delimited_type_subtype
)) {
2109 free(delimited_type_subtype
);
2112 free(delimited_type
);
2113 free(delimited_decodetypes
);
2120 * See if the decoded content is 7bit, 8bit, or binary. It's binary
2121 * if it has any NUL characters, a CR not followed by a LF, or lines
2122 * greater than 998 characters in length. If binary, reason is set
2123 * to a string explaining why.
2126 content_encoding (CT ct
, const char **reason
) {
2127 CE ce
= &ct
->c_cefile
;
2128 int encoding
= CE_7BIT
;
2131 size_t line_len
= 0;
2132 char buffer
[NMH_BUFSIZ
];
2135 if (! ce
->ce_fp
&& (ce
->ce_fp
= fopen (ce
->ce_file
, "r")) == NULL
) {
2136 advise (ce
->ce_file
, "unable to open for reading");
2140 fseeko (ce
->ce_fp
, 0L, SEEK_SET
);
2141 while (encoding
!= CE_BINARY
&&
2142 (inbytes
= fread (buffer
, 1, sizeof buffer
, ce
->ce_fp
)) > 0) {
2145 int last_char_was_cr
= 0;
2147 for (i
= 0, cp
= buffer
; i
< inbytes
; ++i
, ++cp
) {
2148 if (*cp
== '\0' || ++line_len
> 998 ||
2149 (*cp
!= '\n' && last_char_was_cr
)) {
2150 encoding
= CE_BINARY
;
2152 *reason
= "null character";
2153 } else if (line_len
> 998) {
2154 *reason
= "line length > 998";
2155 } else if (*cp
!= '\n' && last_char_was_cr
) {
2156 *reason
= "CR not followed by LF";
2158 /* Should not reach this. */
2165 } else if (! isascii ((unsigned char) *cp
)) {
2169 last_char_was_cr
= *cp
== '\r';
2175 } /* else should never happen */
2182 * Strip carriage returns from content.
2185 strip_crs (CT ct
, int *message_mods
) {
2186 char *charset
= content_charset (ct
);
2189 /* Only strip carriage returns if content is ASCII or another
2190 charset that has the same readily recognizable CR followed by a
2191 LF. We can include UTF-8 here because if the high-order bit of
2192 a UTF-8 byte is 0, then it must be a single-byte ASCII
2194 if (! strcasecmp (charset
, "US-ASCII") ||
2195 ! strcasecmp (charset
, "UTF-8") ||
2196 ! strncasecmp (charset
, "ISO-8859-", 9) ||
2197 ! strncasecmp (charset
, "WINDOWS-12", 10)) {
2203 int opened_input_file
= 0;
2205 if (ct
->c_cefile
.ce_file
) {
2206 file
= &ct
->c_cefile
.ce_file
;
2207 fp
= &ct
->c_cefile
.ce_fp
;
2209 } else if (ct
->c_file
) {
2212 begin
= (size_t) ct
->c_begin
;
2213 end
= (size_t) ct
->c_end
;
2214 } /* else don't know where the content is */
2216 if (file
&& *file
&& fp
) {
2218 if ((*fp
= fopen (*file
, "r")) == NULL
) {
2219 advise (*file
, "unable to open for reading");
2222 opened_input_file
= 1;
2228 char buffer
[NMH_BUFSIZ
];
2230 size_t bytes_to_read
=
2231 end
> 0 && end
> begin
? end
- begin
: sizeof buffer
;
2233 fseeko (*fp
, begin
, SEEK_SET
);
2234 while ((bytes_read
= fread (buffer
, 1,
2235 min (bytes_to_read
, sizeof buffer
),
2237 /* Look for CR followed by a LF. This is supposed to
2238 be text so there should be LF's. If not, don't
2239 modify the content. */
2242 int last_char_was_cr
= 0;
2244 if (end
> 0) { bytes_to_read
-= bytes_read
; }
2246 for (i
= 0, cp
= buffer
; i
< bytes_read
; ++i
, ++cp
) {
2247 if (*cp
== '\n' && last_char_was_cr
) {
2252 last_char_was_cr
= *cp
== '\r';
2258 char *stripped_content_file
;
2259 char *tempfile
= m_mktemp2 (NULL
, invo_name
, &fd
, NULL
);
2261 if (tempfile
== NULL
) {
2262 adios (NULL
, "unable to create temporary file in %s",
2265 stripped_content_file
= mh_xstrdup (tempfile
);
2267 /* Strip each CR before a LF from the content. */
2268 fseeko (*fp
, begin
, SEEK_SET
);
2269 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, *fp
)) >
2273 int last_char_was_cr
= 0;
2275 for (i
= 0, cp
= buffer
; i
< bytes_read
; ++i
, ++cp
) {
2277 last_char_was_cr
= 1;
2278 } else if (last_char_was_cr
) {
2280 if (write (fd
, "\r", 1) < 0) {
2281 advise (tempfile
, "CR write");
2284 if (write (fd
, cp
, 1) < 0) {
2285 advise (tempfile
, "write");
2287 last_char_was_cr
= 0;
2289 if (write (fd
, cp
, 1) < 0) {
2290 advise (tempfile
, "write");
2292 last_char_was_cr
= 0;
2298 inform("unable to write temporary file %s, continuing...",
2299 stripped_content_file
);
2300 (void) m_unlink (stripped_content_file
);
2303 /* Replace the decoded file with the converted one. */
2304 if (ct
->c_cefile
.ce_file
&& ct
->c_cefile
.ce_unlink
)
2305 (void) m_unlink (ct
->c_cefile
.ce_file
);
2307 mh_xfree(ct
->c_cefile
.ce_file
);
2308 ct
->c_cefile
.ce_file
= stripped_content_file
;
2309 ct
->c_cefile
.ce_unlink
= 1;
2313 report (NULL
, ct
->c_partno
,
2314 begin
== 0 && end
== 0 ? "" : *file
,
2320 if (opened_input_file
) {
2334 * Add/update, if necessary, the message C-T-E, based on the least restrictive
2335 * of the part C-T-E's.
2338 update_cte (CT ct
) {
2339 const int least_restrictive_enc
= least_restrictive_encoding (ct
);
2341 if (least_restrictive_enc
!= CE_UNKNOWN
&&
2342 least_restrictive_enc
!= CE_7BIT
) {
2343 char *cte
= concat (" ", ce_str (least_restrictive_enc
), "\n", NULL
);
2347 /* Update/add Content-Transfer-Encoding header field. */
2348 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
2349 if (! strcasecmp (ENCODING_FIELD
, hf
->name
)) {
2356 add_header (ct
, mh_xstrdup (ENCODING_FIELD
), cte
);
2363 * Find the least restrictive encoding (7bit, 8bit, binary) of the parts
2367 least_restrictive_encoding (CT ct
) {
2368 int encoding
= CE_UNKNOWN
;
2370 switch (ct
->c_type
) {
2371 case CT_MULTIPART
: {
2372 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
2375 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
2376 const int part_encoding
=
2377 least_restrictive_encoding (part
->mp_part
);
2379 if (less_restrictive (encoding
, part_encoding
)) {
2380 encoding
= part_encoding
;
2387 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
2388 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
2389 const int part_encoding
=
2390 least_restrictive_encoding (e
->eb_content
);
2392 if (less_restrictive (encoding
, part_encoding
)) {
2393 encoding
= part_encoding
;
2399 if (less_restrictive (encoding
, ct
->c_encoding
)) {
2400 encoding
= ct
->c_encoding
;
2409 * Return whether the second encoding is less restrictive than the first, where
2410 * "less restrictive" is in the sense used by RFC 2045 Secs. 6.1 and 6.4. So,
2411 * CE_BINARY is less restrictive than CE_8BIT and
2412 * CE_8BIT is less restrictive than CE_7BIT.
2415 less_restrictive (int encoding
, int second_encoding
) {
2416 switch (second_encoding
) {
2418 return encoding
!= CE_BINARY
;
2420 return encoding
!= CE_BINARY
&& encoding
!= CE_8BIT
;
2422 return encoding
!= CE_BINARY
&& encoding
!= CE_8BIT
&&
2423 encoding
!= CE_7BIT
;
2431 * Convert character set of each part.
2434 convert_charsets (CT ct
, char *dest_charset
, int *message_mods
) {
2437 switch (ct
->c_type
) {
2439 if (ct
->c_subtype
== TEXT_PLAIN
) {
2440 status
= convert_charset (ct
, dest_charset
, message_mods
);
2443 char *ct_charset
= content_charset (ct
);
2445 report (NULL
, ct
->c_partno
, ct
->c_file
,
2446 "convert %s to %s", ct_charset
, dest_charset
);
2450 char *ct_charset
= content_charset (ct
);
2452 report ("iconv", ct
->c_partno
, ct
->c_file
,
2453 "failed to convert %s to %s", ct_charset
, dest_charset
);
2459 case CT_MULTIPART
: {
2460 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
2463 /* Should check to see if the body for this part is encoded?
2464 For now, it gets passed along as-is by InitMultiPart(). */
2465 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
2467 convert_charsets (part
->mp_part
, dest_charset
, message_mods
);
2473 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
2474 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
2477 convert_charsets (e
->eb_content
, dest_charset
, message_mods
);
2490 * Fix various problems that aren't handled elsewhere. These
2491 * are fixed unconditionally: there are no switches to disable
2492 * them. Currently, "problems" are these:
2493 * 1) remove extraneous semicolon at the end of a header parameter list
2494 * 2) replace RFC 2047 encoding with RFC 2231 encoding of name and
2495 * filename parameters in Content-Type and Content-Disposition
2496 * headers, respectively.
2499 fix_always (CT ct
, int *message_mods
) {
2502 switch (ct
->c_type
) {
2503 case CT_MULTIPART
: {
2504 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
2507 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
2508 status
= fix_always (part
->mp_part
, message_mods
);
2514 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
2515 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
2517 status
= fix_always (e
->eb_content
, message_mods
);
2524 if (ct
->c_first_hf
) {
2525 fix_filename_encoding (ct
);
2528 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
2529 size_t len
= strlen (hf
->value
);
2531 if (strcasecmp (hf
->name
, TYPE_FIELD
) != 0 &&
2532 strcasecmp (hf
->name
, DISPO_FIELD
) != 0) {
2533 /* Only do this for Content-Type and
2534 Content-Disposition fields because those are the
2535 only headers that parse_mime() warns about. */
2539 /* whitespace following a trailing ';' will be nuked as well */
2540 if (hf
->value
[len
- 1] == '\n') {
2541 while (isspace((unsigned char)(hf
->value
[len
- 2]))) {
2542 if (len
-- == 0) { break; }
2546 if (hf
->value
[len
- 2] == ';') {
2547 /* Remove trailing ';' from parameter value. */
2548 hf
->value
[len
- 2] = '\n';
2549 hf
->value
[len
- 1] = '\0';
2551 /* Also, if Content-Type parameter, remove trailing ';'
2552 from ct->c_ctline. This probably isn't necessary
2554 if (strcasecmp(hf
->name
, TYPE_FIELD
) == 0 && ct
->c_ctline
) {
2555 size_t l
= strlen(ct
->c_ctline
) - 1;
2556 while (isspace((unsigned char)(ct
->c_ctline
[l
])) ||
2557 ct
->c_ctline
[l
] == ';') {
2558 ct
->c_ctline
[l
--] = '\0';
2559 if (l
== 0) { break; }
2565 report (NULL
, ct
->c_partno
, ct
->c_file
,
2566 "remove trailing ; from %s parameter value",
2578 * Factor out common code for loops in fix_filename_encoding().
2581 fix_filename_param (char *name
, char *value
, PM
*first_pm
, PM
*last_pm
) {
2584 if (has_prefix(value
, "=?") && has_suffix(value
, "?=")) {
2585 /* Looks like an RFC 2047 encoded parameter. */
2586 char decoded
[PATH_MAX
+ 1];
2588 if (decode_rfc2047 (value
, decoded
, sizeof decoded
)) {
2589 /* Encode using RFC 2231. */
2590 replace_param (first_pm
, last_pm
, name
, decoded
, 0);
2593 inform("failed to decode %s parameter %s", name
, value
);
2602 * Replace RFC 2047 encoding with RFC 2231 encoding of name and
2603 * filename parameters in Content-Type and Content-Disposition
2604 * headers, respectively.
2607 fix_filename_encoding (CT ct
) {
2612 for (pm
= ct
->c_ctinfo
.ci_first_pm
; pm
; pm
= pm
->pm_next
) {
2613 if (pm
->pm_name
&& pm
->pm_value
&&
2614 strcasecmp (pm
->pm_name
, "name") == 0) {
2615 fixed
= fix_filename_param (pm
->pm_name
, pm
->pm_value
,
2616 &ct
->c_ctinfo
.ci_first_pm
,
2617 &ct
->c_ctinfo
.ci_last_pm
);
2621 for (pm
= ct
->c_dispo_first
; pm
; pm
= pm
->pm_next
) {
2622 if (pm
->pm_name
&& pm
->pm_value
&&
2623 strcasecmp (pm
->pm_name
, "filename") == 0) {
2624 fixed
= fix_filename_param (pm
->pm_name
, pm
->pm_value
,
2630 /* Fix hf values to correspond. */
2631 for (hf
= ct
->c_first_hf
; fixed
&& hf
; hf
= hf
->next
) {
2632 enum { OTHER
, TYPE_HEADER
, DISPO_HEADER
} field
= OTHER
;
2634 if (strcasecmp (hf
->name
, TYPE_FIELD
) == 0) {
2635 field
= TYPE_HEADER
;
2636 } else if (strcasecmp (hf
->name
, DISPO_FIELD
) == 0) {
2637 field
= DISPO_HEADER
;
2640 if (field
!= OTHER
) {
2641 const char *const semicolon_loc
= strchr (hf
->value
, ';');
2643 if (semicolon_loc
) {
2645 strlen (hf
->name
) + 1 + semicolon_loc
- hf
->value
;
2646 const char *const params
=
2648 field
== TYPE_HEADER
2649 ? ct
->c_ctinfo
.ci_first_pm
2650 : ct
->c_dispo_first
,
2652 const char *const new_params
= concat (params
, "\n", NULL
);
2654 replace_substring (&hf
->value
, semicolon_loc
, new_params
);
2655 free((void *)new_params
); /* Cast away const. Sigh. */
2656 free((void *)params
);
2658 inform("did not find semicolon in %s:%s\n",
2659 hf
->name
, hf
->value
);
2669 * Output content in input file to output file.
2672 write_content (CT ct
, const char *input_filename
, char *outfile
, FILE *outfp
,
2673 int modify_inplace
, int message_mods
) {
2676 if (modify_inplace
) {
2677 if (message_mods
> 0) {
2678 if ((status
= output_message_fp (ct
, outfp
, outfile
)) == OK
) {
2679 char *infile
= input_filename
2680 ? mh_xstrdup (input_filename
)
2681 : mh_xstrdup (ct
->c_file
? ct
->c_file
: "-");
2683 if (remove_file (infile
) == OK
) {
2684 if (rename (outfile
, infile
)) {
2685 /* Rename didn't work, possibly because of an
2686 attempt to rename across filesystems. Try
2687 brute force copy. */
2688 int old
= open (outfile
, O_RDONLY
);
2690 open (infile
, O_WRONLY
| O_CREAT
, m_gmprot ());
2693 if (old
!= -1 && new != -1) {
2694 char buffer
[NMH_BUFSIZ
];
2696 while ((i
= read (old
, buffer
, sizeof buffer
)) >
2698 if (write (new, buffer
, i
) != i
) {
2704 if (new != -1) { close (new); }
2705 if (old
!= -1) { close (old
); }
2706 (void) m_unlink (outfile
);
2709 /* The -file argument processing used path() to
2710 expand filename to absolute path. */
2711 int file
= ct
->c_file
&& ct
->c_file
[0] == '/';
2713 inform("unable to rename %s %s to %s, continuing...",
2714 file
? "file" : "message", outfile
,
2720 inform("unable to remove input file %s, "
2721 "not modifying it, continuing...", infile
);
2722 (void) m_unlink (outfile
);
2731 /* No modifications and didn't need the tmp outfile. */
2732 (void) m_unlink (outfile
);
2735 /* Output is going to some file. Produce it whether or not
2736 there were modifications. */
2737 status
= output_message_fp (ct
, outfp
, outfile
);
2746 * parse_mime() does not set lf_line_endings in struct text, so use this
2747 * function to do it. It touches the parts the decodetypes identifies.
2750 set_text_ctparams(CT ct
, char *decodetypes
, int lf_line_endings
) {
2751 switch (ct
->c_type
) {
2752 case CT_MULTIPART
: {
2753 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
2756 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
2757 set_text_ctparams(part
->mp_part
, decodetypes
, lf_line_endings
);
2763 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
2764 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
2766 set_text_ctparams(e
->eb_content
, decodetypes
, lf_line_endings
);
2771 if (should_decode(decodetypes
, ct
->c_ctinfo
.ci_type
, ct
->c_ctinfo
.ci_subtype
)) {
2772 if (ct
->c_ctparams
== NULL
) {
2773 ct
->c_ctparams
= mh_xcalloc(1, sizeof (struct text
));
2775 ((struct text
*) ct
->c_ctparams
)->lf_line_endings
= lf_line_endings
;
2782 * If "rmmproc" is defined, call that to remove the file. Otherwise,
2783 * use the standard MH backup file.
2786 remove_file (const char *file
) {
2788 char *rmm_command
= concat (rmmproc
, " ", file
, NULL
);
2789 int status
= system (rmm_command
);
2792 return WIFEXITED (status
) ? WEXITSTATUS (status
) : NOTOK
;
2794 /* This is OK for a non-message file, it still uses the
2795 BACKUP_PREFIX form. The backup file will be in the same
2796 directory as file. */
2797 return rename (file
, m_backup (file
));
2802 * Output formatted message to user.
2805 report (char *what
, char *partno
, char *filename
, char *message
, ...) {
2810 va_start (args
, message
);
2811 fmt
= concat (filename
, partno
? " part " : ", ",
2812 FENDNULL(partno
), partno
? ", " : "", message
, NULL
);
2814 advertise (what
, NULL
, fmt
, args
);
2827 fprintf (stderr
, "\n");