2 * mhfixmsg.c -- rewrite a message with various tranformations
4 * This code is Copyright (c) 2002 and 2013, by the authors of nmh.
5 * See the COPYRIGHT file in the root directory of the nmh
6 * distribution for complete copyright information.
11 #include <h/mhparse.h>
13 #include <h/signals.h>
19 #define MHFIXMSG_SWITCHES \
20 X("decodetext 8bit|7bit", 0, DECODETEXTSW) \
21 X("nodecodetext", 0, NDECODETEXTSW) \
22 X("textcodeset", 0, TEXTCODESETSW) \
23 X("notextcodeset", 0, NTEXTCODESETSW) \
24 X("reformat", 0, REFORMATSW) \
25 X("noreformat", 0, NREFORMATSW) \
26 X("fixboundary", 0, FIXBOUNDARYSW) \
27 X("nofixboundary", 0, NFIXBOUNDARYSW) \
28 X("fixcte", 0, FIXCTESW) \
29 X("nofixcte", 0, NFIXCTESW) \
30 X("file file", 0, FILESW) \
31 X("outfile file", 0, OUTFILESW) \
32 X("rmmproc program", 0, RPROCSW) \
33 X("normmproc", 0, NRPRCSW) \
34 X("verbose", 0, VERBSW) \
35 X("noverbose", 0, NVERBSW) \
36 X("version", 0, VERSIONSW) \
37 X("help", 0, HELPSW) \
39 #define X(sw, minchars, id) id,
40 DEFINE_SWITCH_ENUM(MHFIXMSG
);
43 #define X(sw, minchars, id) { sw, minchars, id },
44 DEFINE_SWITCH_ARRAY(MHFIXMSG
, switches
);
49 int debugsw
; /* Needed by mhparse.c. */
51 #define quitser pipeser
54 extern char *tmp
; /* directory to place tmp files */
55 extern int skip_mp_cte_check
; /* flag to InitMultiPart */
56 extern int suppress_bogus_mp_content_warning
; /* flag to InitMultiPart */
57 extern int bogus_mp_content
; /* flag from InitMultiPart */
58 CT
parse_mime (char *);
59 void reverse_parts (CT
);
62 int output_message (CT
, char *);
65 int show_content_aux (CT
, int, int, char *, char *);
68 void flush_errors (void);
72 void freects_done (int) NORETURN
;
77 typedef struct fix_transformations
{
83 } fix_transformations
;
85 int mhfixmsgsbr (CT
*, const fix_transformations
*, char *);
86 static void reverse_alternative_parts (CT
);
87 static int fix_boundary (CT
*, int *);
88 static int get_multipart_boundary (CT
, char **);
89 static int replace_boundary (CT
, char *, const char *);
90 static char *update_attr (char *, const char *, const char *e
);
91 static int fix_multipart_cte (CT
, int *);
92 static int set_ce (CT
, int);
93 static int ensure_text_plain (CT
*, CT
, int *);
94 static CT
build_text_plain_part (CT
);
95 static CT
divide_part (CT
);
96 static void copy_ctinfo (CI
, CI
);
97 static int decode_part (CT
);
98 static int reformat_part (CT
, char *, char *, char *, int);
99 static int charset_encoding (CT
);
100 static CT
build_multipart_alt (CT
, CT
, int, int);
101 static int boundary_in_content (FILE **, char *, const char *);
102 static void transfer_noncontent_headers (CT
, CT
);
103 static int set_ct_type (CT
, int type
, int subtype
, int encoding
);
104 static int decode_text_parts (CT
, int, int *);
105 static int content_encoding (CT
);
106 static int convert_codesets (CT
, char *, int *);
107 static int convert_codeset (CT
, char *, int *);
108 static int write_content (CT
, char *, char *, int, int);
109 static int remove_file (char *);
110 static void report (char *, char *, char *, ...);
111 static char *upcase (char *);
112 static void pipeser (int);
116 main (int argc
, char **argv
) {
118 char *cp
, *file
= NULL
, *folder
= NULL
;
119 char *maildir
, buf
[100], *outfile
= NULL
;
120 char **argp
, **arguments
;
121 struct msgs_array msgs
= { 0, 0, NULL
};
122 struct msgs
*mp
= NULL
;
127 fix_transformations fx
;
128 fx
.reformat
= fx
.fixcte
= fx
.fixboundary
= 1;
129 fx
.decodetext
= CE_8BIT
;
130 fx
.textcodeset
= NULL
;
135 setlocale(LC_ALL
, "");
137 invo_name
= r1bindex (argv
[0], '/');
139 /* read user profile/context */
142 arguments
= getarguments (invo_name
, argc
, argv
, 1);
148 while ((cp
= *argp
++)) {
150 switch (smatch (++cp
, switches
)) {
152 ambigsw (cp
, switches
);
155 adios (NULL
, "-%s unknown", cp
);
158 snprintf (buf
, sizeof buf
, "%s [+folder] [msgs] [switches]",
160 print_help (buf
, switches
, 1);
163 print_version(invo_name
);
167 if (! (cp
= *argp
++) || *cp
== '-')
168 adios (NULL
, "missing argument to %s", argp
[-2]);
169 if (! strcasecmp (cp
, "8bit")) {
170 fx
.decodetext
= CE_8BIT
;
171 } else if (! strcasecmp (cp
, "7bit")) {
172 fx
.decodetext
= CE_7BIT
;
174 adios (NULL
, "invalid argument to %s", argp
[-2]);
181 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1]))
182 adios (NULL
, "missing argument to %s", argp
[-2]);
208 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1]))
209 adios (NULL
, "missing argument to %s", argp
[-2]);
210 file
= *cp
== '-' ? add (cp
, NULL
) : path (cp
, TFILE
);
214 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1]))
215 adios (NULL
, "missing argument to %s", argp
[-2]);
216 outfile
= *cp
== '-' ? add (cp
, NULL
) : path (cp
, TFILE
);
220 if (!(rmmproc
= *argp
++) || *rmmproc
== '-')
221 adios (NULL
, "missing argument to %s", argp
[-2]);
235 if (*cp
== '+' || *cp
== '@') {
237 adios (NULL
, "only one folder at a time!");
239 folder
= pluspath (cp
);
241 app_msgarg(&msgs
, cp
);
244 SIGNAL (SIGQUIT
, quitser
);
245 SIGNAL (SIGPIPE
, pipeser
);
248 * Read the standard profile setup
250 if ((fp
= fopen (cp
= etcpath ("mhn.defaults"), "r"))) {
251 readconfig ((struct node
**) 0, fp
, cp
, 0);
256 * Check for storage directory. If specified,
257 * then store temporary files there. Else we
258 * store them in standard nmh directory.
260 if ((cp
= context_find (nmhstorage
)) && *cp
)
261 tmp
= concat (cp
, "/", invo_name
, NULL
);
263 tmp
= add (m_maildir (invo_name
), NULL
);
265 suppress_bogus_mp_content_warning
= skip_mp_cte_check
= 1;
267 if (! context_find ("path"))
268 free (path ("./", TFOLDER
));
270 if (file
&& msgs
.size
)
271 adios (NULL
, "cannot specify msg and file at same time!");
274 * check if message is coming from file
277 /* If file is stdin, create a tmp file name before parse_mime()
278 has a chance, because it might put in on a different
279 filesystem than the output file. Instead, put it in the
280 user's preferred tmp directory. */
283 if (! strcmp ("-", file
)) {
289 if ((cp
= m_mktemp2 (tmp
, invo_name
, &fd
, NULL
)) == NULL
) {
290 adios (NULL
, "unable to create temporary file");
293 file
= add (cp
, NULL
);
295 cpydata (STDIN_FILENO
, fd
, "-", file
);
300 adios (NULL
, "failed to write temporary file");
304 if (! (cts
= (CT
*) calloc ((size_t) 2, sizeof *cts
)))
305 adios (NULL
, "out of memory");
308 if ((ct
= parse_mime (file
))) *ctp
++ = ct
;
311 * message(s) are coming from a folder
316 app_msgarg(&msgs
, "cur");
318 folder
= getfolder (1);
319 maildir
= m_maildir (folder
);
321 if (chdir (maildir
) == NOTOK
)
322 adios (maildir
, "unable to change directory to");
324 /* read folder and create message structure */
325 if (! (mp
= folder_read (folder
, 1)))
326 adios (NULL
, "unable to read folder %s", folder
);
328 /* check for empty folder */
330 adios (NULL
, "no messages in %s", folder
);
332 /* parse all the message ranges/sequences and set SELECTED */
333 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
334 if (! m_convert (mp
, msgs
.msgs
[msgnum
]))
336 seq_setprev (mp
); /* set the previous-sequence */
338 if (! (cts
= (CT
*) calloc ((size_t) (mp
->numsel
+ 1), sizeof *cts
)))
339 adios (NULL
, "out of memory");
342 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
343 if (is_selected(mp
, msgnum
)) {
346 msgnam
= m_name (msgnum
);
347 if ((ct
= parse_mime (msgnam
))) *ctp
++ = ct
;
351 seq_setcur (mp
, mp
->hghsel
); /* update current message */
352 seq_save (mp
); /* synchronize sequences */
353 context_replace (pfolder
, folder
);/* update current folder */
354 context_save (); /* save the context file */
358 for (ctp
= cts
; *ctp
; ++ctp
) {
359 status
+= mhfixmsgsbr (ctp
, &fx
, outfile
);
365 /* Just calling m_backup() unlinks the backup file. */
366 (void) m_backup (file
);
378 /* done is freects_done, which will clean up all of cts. */
385 mhfixmsgsbr (CT
*ctp
, const fix_transformations
*fx
, char *outfile
) {
386 /* Store input filename in case one of the transformations, i.e.,
387 fix_boundary(), rewrites to a tmp file. */
388 char *input_filename
= add ((*ctp
)->c_file
, NULL
);
389 int modify_inplace
= 0;
390 int message_mods
= 0;
393 if (outfile
== NULL
) {
396 if ((*ctp
)->c_file
) {
397 outfile
= add (m_mktemp2 (tmp
, invo_name
, NULL
, NULL
), NULL
);
399 adios (NULL
, "missing both input and output filenames\n");
403 reverse_alternative_parts (*ctp
);
404 if (status
== OK
&& fx
->fixboundary
) {
405 status
= fix_boundary (ctp
, &message_mods
);
407 if (status
== OK
&& fx
->fixcte
) {
408 status
= fix_multipart_cte (*ctp
, &message_mods
);
410 if (status
== OK
&& fx
->reformat
) {
411 status
= ensure_text_plain (ctp
, NULL
, &message_mods
);
413 if (status
== OK
&& fx
->decodetext
) {
414 status
= decode_text_parts (*ctp
, fx
->decodetext
, &message_mods
);
416 if (status
== OK
&& fx
->textcodeset
!= NULL
) {
417 status
= convert_codesets (*ctp
, fx
->textcodeset
, &message_mods
);
420 if (! (*ctp
)->c_umask
) {
421 /* Set the umask for the contents file. This currently
422 isn't used but just in case it is in the future. */
425 if (stat ((*ctp
)->c_file
, &st
) != NOTOK
) {
426 (*ctp
)->c_umask
= ~(st
.st_mode
& 0777);
428 (*ctp
)->c_umask
= ~m_gmprot();
433 * Write the content to a file
436 status
= write_content (*ctp
, input_filename
, outfile
, modify_inplace
,
438 } else if (! modify_inplace
) {
439 /* Something went wrong. Output might be expected, such
440 as if this were run as a filter. Just copy the input
442 int in
= open (input_filename
, O_RDONLY
);
443 int out
= strcmp (outfile
, "-")
444 ? open (outfile
, O_WRONLY
| O_CREAT
, m_gmprot ())
447 if (in
!= -1 && out
!= -1) {
448 cpydata (in
, out
, input_filename
, outfile
);
457 if (modify_inplace
) {
458 if (status
!= OK
) unlink (outfile
);
463 free (input_filename
);
469 /* parse_mime() arranges alternates in reverse (priority) order, so
470 reverse them back. This will put a text/plain part at the front of
471 a multipart/alternative part, for example, where it belongs. */
473 reverse_alternative_parts (CT ct
) {
474 if (ct
->c_type
== CT_MULTIPART
) {
475 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
478 if (ct
->c_subtype
== MULTI_ALTERNATE
) {
482 /* And call recursively on each part of a multipart. */
483 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
484 reverse_alternative_parts (part
->mp_part
);
491 fix_boundary (CT
*ct
, int *message_mods
) {
492 struct multipart
*mp
;
495 if (bogus_mp_content
) {
496 mp
= (struct multipart
*) (*ct
)->c_ctparams
;
499 * 1) Get boundary at end of part.
500 * 2) Get boundary at beginning of part and compare to the end-of-part
502 * 3) Write out contents of ct to tmp file, replacing boundary in
503 * header with boundary from part. Set c_unlink to 1.
505 * 5) Call parse_mime() on the tmp file, replacing ct.
508 if (mp
&& mp
->mp_start
) {
511 if (get_multipart_boundary (*ct
, &part_boundary
) == OK
) {
514 if ((fixed
= m_mktemp2 (tmp
, invo_name
, NULL
, &(*ct
)->c_fp
))) {
515 if (replace_boundary (*ct
, fixed
, part_boundary
) == OK
) {
516 char *filename
= add ((*ct
)->c_file
, NULL
);
519 if ((*ct
= parse_mime (fixed
))) {
524 report (NULL
, filename
,
525 "fix multipart boundary");
530 advise (NULL
, "unable to replace broken boundary");
534 advise (NULL
, "unable to create temporary file");
538 free (part_boundary
);
548 get_multipart_boundary (CT ct
, char **part_boundary
) {
550 char *end_boundary
= NULL
;
551 off_t begin
= (off_t
) ct
->c_end
> (off_t
) (ct
->c_begin
+ sizeof buffer
)
552 ? (off_t
) (ct
->c_end
- sizeof buffer
)
553 : (off_t
) ct
->c_begin
;
557 /* This will fail if the boundary spans fread() calls. BUFSIZ should
558 be big enough, even if it's just 1024, to make that unlikely. */
560 /* free_content() will close ct->c_fp. */
561 if (! ct
->c_fp
&& (ct
->c_fp
= fopen (ct
->c_file
, "r")) == NULL
) {
562 advise (ct
->c_file
, "unable to open for reading");
566 /* Get boundary at end of multipart. */
567 while (begin
>= (off_t
) ct
->c_begin
) {
568 fseeko (ct
->c_fp
, begin
, SEEK_SET
);
569 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, ct
->c_fp
)) > 0) {
570 char *end
= buffer
+ bytes_read
- 1;
573 if ((cp
= rfind_str (buffer
, bytes_read
, "--"))) {
574 /* Trim off trailing "--" and anything beyond. */
576 if ((end
= rfind_str (buffer
, cp
- buffer
, "\n"))) {
577 if (strlen (end
) > 3 && *end
++ == '\n' &&
578 *end
++ == '-' && *end
++ == '-') {
579 end_boundary
= add (end
, NULL
);
586 if (! end_boundary
&& begin
> (off_t
) (ct
->c_begin
+ sizeof buffer
)) {
587 begin
-= sizeof buffer
;
593 /* Get boundary at beginning of multipart. */
595 fseeko (ct
->c_fp
, ct
->c_begin
, SEEK_SET
);
596 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, ct
->c_fp
)) > 0) {
597 if (bytes_read
>= strlen (end_boundary
)) {
598 char *cp
= find_str (buffer
, bytes_read
, end_boundary
);
600 if (cp
&& cp
- buffer
>= 2 && *--cp
== '-' &&
601 *--cp
== '-' && (cp
> buffer
&& *--cp
== '\n')) {
606 /* The start and end boundaries didn't match, or the
607 start boundary doesn't begin with "\n--" (or "--"
608 if at the beginning of buffer). Keep trying. */
617 *part_boundary
= end_boundary
;
619 *part_boundary
= NULL
;
627 /* Open and copy ct->c_file to file, replacing the multipart boundary. */
629 replace_boundary (CT ct
, char *file
, const char *boundary
) {
632 char buf
[BUFSIZ
], name
[NAMESZ
];
634 m_getfld_state_t gstate
= 0;
637 if (ct
->c_file
== NULL
) {
638 advise (NULL
, "missing input filename");
642 if ((fpin
= fopen (ct
->c_file
, "r")) == NULL
) {
643 advise (ct
->c_file
, "unable to open for reading");
647 if ((fpout
= fopen (file
, "w")) == NULL
) {
649 advise (file
, "unable to open for writing");
653 for (compnum
= 1;;) {
654 int bufsz
= (int) sizeof buf
;
656 switch (state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fpin
)) {
661 /* get copies of the buffers */
662 np
= add (name
, NULL
);
663 vp
= add (buf
, NULL
);
665 /* if necessary, get rest of field */
666 while (state
== FLDPLUS
) {
668 state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fpin
);
669 vp
= add (buf
, vp
); /* add to previous value */
672 if (strcasecmp (TYPE_FIELD
, np
)) {
673 fprintf (fpout
, "%s:%s", np
, vp
);
675 char *new_boundary
= update_attr (vp
, "boundary=", boundary
);
677 fprintf (fpout
, "%s:%s\n", np
, new_boundary
);
688 /* buf will have a terminating NULL, skip it. */
689 fwrite (buf
, 1, bufsz
-1, fpout
);
697 advise (NULL
, "message format error in component #%d", compnum
);
702 advise (NULL
, "getfld() returned %d", state
);
710 m_getfld_state_destroy (&gstate
);
718 /* Change the value of a name=value pair in a header field body.
719 If the name isn't there, append them. In any case, a new
720 string will be allocated and must be free'd by the caller.
721 Trims any trailing newlines. */
723 update_attr (char *body
, const char *name
, const char *value
) {
724 char *bp
= nmh_strcasestr (body
, name
);
728 char *other_attrs
= strchr (bp
, ';');
730 *(bp
+ strlen (name
)) = '\0';
731 new_body
= concat (body
, "\"", value
, "\"", NULL
);
736 /* Trim any trailing newlines. */
737 for (cp
= &other_attrs
[strlen (other_attrs
) - 1];
738 cp
> other_attrs
&& *cp
== '\n';
739 *cp
-- = '\0') continue;
740 new_body
= add (other_attrs
, new_body
);
745 /* Append name/value pair, after first removing a final newline
746 and (extraneous) semicolon. */
747 if (*(cp
= &body
[strlen (body
) - 1]) == '\n') *cp
= '\0';
748 if (*(cp
= &body
[strlen (body
) - 1]) == ';') *cp
= '\0';
749 new_body
= concat (body
, "; ", name
, "\"", value
, "\"", NULL
);
757 fix_multipart_cte (CT ct
, int *message_mods
) {
760 if (ct
->c_type
== CT_MULTIPART
) {
764 if (ct
->c_encoding
!= CE_7BIT
&& ct
->c_encoding
!= CE_8BIT
&&
765 ct
->c_encoding
!= CE_BINARY
) {
768 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
769 char *name
= hf
->name
;
770 for (; *name
&& isspace ((unsigned char) *name
); ++name
) {
774 if (! strncasecmp (name
, ENCODING_FIELD
,
775 strlen (ENCODING_FIELD
))) {
776 char *prefix
= "Nmh-REPLACED-INVALID-";
777 HF h
= mh_xmalloc (sizeof *h
);
779 h
->name
= add (hf
->name
, NULL
);
780 h
->hf_encoding
= hf
->hf_encoding
;
784 /* Retain old header but prefix its name. */
786 hf
->name
= concat (prefix
, h
->name
, NULL
);
790 char *encoding
= cpytrim (hf
->value
);
791 report (ct
->c_partno
, ct
->c_file
,
792 "replace Content-Transfer-Encoding of %s "
793 "with 8 bit", encoding
);
797 h
->value
= add (" 8bit\n", NULL
);
799 /* Don't need to warn for multiple C-T-E header
800 fields, parse_mime() already does that. But
801 if there are any, fix them all as necessary. */
806 set_ce (ct
, CE_8BIT
);
809 m
= (struct multipart
*) ct
->c_ctparams
;
810 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
811 if (fix_multipart_cte (part
->mp_part
, message_mods
) != OK
) {
823 set_ce (CT ct
, int encoding
) {
824 const char *ce
= ce_str (encoding
);
825 const struct str2init
*ctinit
= get_ce_method (ce
);
828 char *cte
= concat (" ", ce
, "\n", NULL
);
831 /* Decoded contents might be in ct->c_cefile.ce_file, if the
832 caller is decode_text_parts (). Save because we'll
834 struct cefile decoded_content_info
= ct
->c_cefile
;
836 ct
->c_encoding
= encoding
;
838 ct
->c_ctinitfnx
= ctinit
->si_init
;
839 /* This will assign ct->c_cefile with an all-0 struct, which
841 (*ctinit
->si_init
) (ct
);
842 /* After returning, the caller should set
843 ct->c_cefile.ce_file to the name of the file containing
846 /* Restore the cefile. */
847 ct
->c_cefile
= decoded_content_info
;
849 /* Update/add Content-Transfer-Encoding header field. */
850 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
851 if (! strcasecmp (ENCODING_FIELD
, hf
->name
)) {
858 add_header (ct
, add (ENCODING_FIELD
, NULL
), cte
);
861 /* Update c_celine. It's used only by mhlist -debug. */
863 ct
->c_celine
= add (cte
, NULL
);
872 /* Make sure each text part has a corresponding text/plain part. */
874 ensure_text_plain (CT
*ct
, CT parent
, int *message_mods
) {
877 switch ((*ct
)->c_type
) {
879 int has_text_plain
= 0;
881 /* Nothing to do for text/plain. */
882 if ((*ct
)->c_subtype
== TEXT_PLAIN
) return OK
;
884 if (parent
&& parent
->c_type
== CT_MULTIPART
&&
885 parent
->c_subtype
== MULTI_ALTERNATE
) {
886 struct multipart
*mp
= (struct multipart
*) parent
->c_ctparams
;
888 int new_subpart_number
= 1;
890 /* See if there is a sibling text/plain. */
891 for (part
= mp
->mp_parts
; part
; part
= part
->mp_next
) {
892 ++new_subpart_number
;
893 if (part
->mp_part
->c_type
== CT_TEXT
&&
894 part
->mp_part
->c_subtype
== TEXT_PLAIN
) {
900 if (! has_text_plain
) {
901 /* Parent is a multipart/alternative. Insert a new
902 text/plain subpart. */
903 struct part
*new_part
= mh_xmalloc (sizeof *new_part
);
905 if ((new_part
->mp_part
= build_text_plain_part (*ct
))) {
907 snprintf (buffer
, sizeof buffer
, "%d", new_subpart_number
);
909 new_part
->mp_next
= mp
->mp_parts
;
910 mp
->mp_parts
= new_part
;
911 new_part
->mp_part
->c_partno
=
912 concat (parent
->c_partno
? parent
->c_partno
: "1", ".",
917 report (parent
->c_partno
, parent
->c_file
,
918 "insert text/plain part");
921 free_content (new_part
->mp_part
);
927 /* Slip new text/plain part into a new multipart/alternative. */
928 CT tp_part
= build_text_plain_part (*ct
);
931 CT mp_alt
= build_multipart_alt (*ct
, tp_part
, CT_MULTIPART
,
934 struct multipart
*mp
=
935 (struct multipart
*) mp_alt
->c_ctparams
;
937 if (mp
&& mp
->mp_parts
) {
938 mp
->mp_parts
->mp_part
= tp_part
;
939 /* Make the new multipart/alternative the parent. */
944 report ((*ct
)->c_partno
, (*ct
)->c_file
,
945 "insert text/plain part");
948 free_content (tp_part
);
949 free_content (mp_alt
);
963 struct multipart
*mp
= (struct multipart
*) (*ct
)->c_ctparams
;
966 for (part
= mp
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
967 if ((*ct
)->c_type
== CT_MULTIPART
) {
968 status
= ensure_text_plain (&part
->mp_part
, *ct
, message_mods
);
975 if ((*ct
)->c_subtype
== MESSAGE_EXTERNAL
) {
978 e
= (struct exbody
*) (*ct
)->c_ctparams
;
979 status
= ensure_text_plain (&e
->eb_content
, *ct
, message_mods
);
989 build_text_plain_part (CT encoded_part
) {
990 CT tp_part
= divide_part (encoded_part
);
991 char *tmp_plain_file
= NULL
;
993 if (decode_part (tp_part
) == OK
) {
994 /* Now, tp_part->c_cefile.ce_file is the name of the tmp file that
995 contains the decoded contents. And the decoding function, such
996 as openQuoted, will have set ...->ce_unlink to 1 so that it will
997 be unlinked by free_content (). */
998 tmp_plain_file
= add (m_mktemp2 (tmp
, invo_name
, NULL
, NULL
), NULL
);
999 if (reformat_part (tp_part
, tmp_plain_file
,
1000 tp_part
->c_ctinfo
.ci_type
,
1001 tp_part
->c_ctinfo
.ci_subtype
,
1002 tp_part
->c_type
) == OK
) {
1007 free_content (tp_part
);
1008 unlink (tmp_plain_file
);
1009 free (tmp_plain_file
);
1016 divide_part (CT ct
) {
1019 if ((new_part
= (CT
) calloc (1, sizeof *new_part
)) == NULL
)
1020 adios (NULL
, "out of memory");
1022 /* Just copy over what is needed for decoding. c_vrsn and
1023 c_celine aren't necessary. */
1024 new_part
->c_file
= add (ct
->c_file
, NULL
);
1025 new_part
->c_begin
= ct
->c_begin
;
1026 new_part
->c_end
= ct
->c_end
;
1027 copy_ctinfo (&new_part
->c_ctinfo
, &ct
->c_ctinfo
);
1028 new_part
->c_type
= ct
->c_type
;
1029 new_part
->c_cefile
= ct
->c_cefile
;
1030 new_part
->c_encoding
= ct
->c_encoding
;
1031 new_part
->c_ctinitfnx
= ct
->c_ctinitfnx
;
1032 new_part
->c_ceopenfnx
= ct
->c_ceopenfnx
;
1033 new_part
->c_ceclosefnx
= ct
->c_ceclosefnx
;
1034 new_part
->c_cesizefnx
= ct
->c_cesizefnx
;
1036 /* c_ctline is used by reformat__part(), so it can preserve
1037 anything after the type/subtype. */
1038 new_part
->c_ctline
= add (ct
->c_ctline
, NULL
);
1045 copy_ctinfo (CI dest
, CI src
) {
1046 char **s_ap
, **d_ap
, **s_vp
, **d_vp
;
1048 dest
->ci_type
= src
->ci_type
? add (src
->ci_type
, NULL
) : NULL
;
1049 dest
->ci_subtype
= src
->ci_subtype
? add (src
->ci_subtype
, NULL
) : NULL
;
1051 for (s_ap
= src
->ci_attrs
, d_ap
= dest
->ci_attrs
,
1052 s_vp
= src
->ci_values
, d_vp
= dest
->ci_values
;
1054 ++s_ap
, ++d_ap
, ++s_vp
, ++d_vp
) {
1055 *d_ap
= add (*s_ap
, NULL
);
1060 dest
->ci_comment
= src
->ci_comment
? add (src
->ci_comment
, NULL
) : NULL
;
1061 dest
->ci_magic
= src
->ci_magic
? add (src
->ci_magic
, NULL
) : NULL
;
1066 decode_part (CT ct
) {
1070 tmp_decoded
= add (m_mktemp2 (tmp
, invo_name
, NULL
, NULL
), NULL
);
1071 /* The following call will load ct->c_cefile.ce_file with the tmp
1072 filename of the decoded content. tmp_decoded will contain the
1073 encoded output, get rid of that. */
1074 status
= output_message (ct
, tmp_decoded
);
1075 unlink (tmp_decoded
);
1082 /* Some of the arguments aren't really needed now, but maybe will
1083 be in the future for other than text types. */
1085 reformat_part (CT ct
, char *file
, char *type
, char *subtype
, int c_type
) {
1086 int output_subtype
, output_encoding
;
1090 /* Hacky: this redirects the output from whatever command is used
1091 to show the part to a file. So, the user can't have any output
1092 redirection in that command.
1093 Could show_multi() in mhshowsbr.c avoid this? */
1095 /* Check for invo_name-format-type/subtype. */
1096 cp
= concat (invo_name
, "-format-", type
, "/", subtype
, NULL
);
1097 if ((cf
= context_find (cp
)) && *cf
!= '\0') {
1098 if (strchr (cf
, '>')) {
1100 advise (NULL
, "'>' prohibited in \"%s\",\nplease fix your "
1101 "%s-format-%s/%s profile entry", cf
, invo_name
, type
,
1108 /* Check for invo_name-format-type. */
1109 cp
= concat (invo_name
, "-format-", type
, NULL
);
1110 if (! (cf
= context_find (cp
)) || *cf
== '\0') {
1113 advise (NULL
, "Don't know how to convert %s, there is no "
1114 "%s-format-%s/%s profile entry",
1115 ct
->c_file
, invo_name
, type
, subtype
);
1120 if (strchr (cf
, '>')) {
1122 advise (NULL
, "'>' prohibited in \"%s\"", cf
);
1128 cp
= concat (cf
, " >", file
, NULL
);
1129 status
= show_content_aux (ct
, 1, 0, cp
, NULL
);
1132 /* Unlink decoded content tmp file and free its filename to avoid
1133 leaks. The file stream should already have been closed. */
1134 if (ct
->c_cefile
.ce_unlink
) {
1135 unlink (ct
->c_cefile
.ce_file
);
1136 free (ct
->c_cefile
.ce_file
);
1137 ct
->c_cefile
.ce_file
= NULL
;
1138 ct
->c_cefile
.ce_unlink
= 0;
1141 if (c_type
== CT_TEXT
) {
1142 output_subtype
= TEXT_PLAIN
;
1144 /* Set subtype to 0, which is always an UNKNOWN subtype. */
1147 output_encoding
= charset_encoding (ct
);
1149 if (set_ct_type (ct
, c_type
, output_subtype
, output_encoding
) == OK
) {
1150 ct
->c_cefile
.ce_file
= file
;
1151 ct
->c_cefile
.ce_unlink
= 1;
1153 ct
->c_cefile
.ce_unlink
= 0;
1161 /* Identifies 7bit or 8bit content based on charset, if specified. */
1163 charset_encoding (CT ct
) {
1164 int encoding
= CE_8BIT
;
1165 CI ctinfo
= &ct
->c_ctinfo
;
1168 for (ap
= ctinfo
->ci_attrs
, vp
= ctinfo
->ci_values
; *ap
; ++ap
, ++vp
) {
1169 if (! strcasecmp (*ap
, "charset")) {
1170 /* norm_charmap() is case sensitive. */
1171 char *ch
= upcase (*vp
);
1173 if (! strcmp (norm_charmap (ch
), "US-ASCII")) encoding
= CE_7BIT
;
1184 build_multipart_alt (CT first_alt
, CT new_part
, int type
, int subtype
) {
1185 char *boundary_prefix
= "----=_nmh-multipart";
1186 char *boundary
= concat (boundary_prefix
, first_alt
->c_partno
, NULL
);
1187 char *boundary_indicator
= "; boundary=";
1188 char *typename
, *subtypename
, *name
;
1191 struct multipart
*m
;
1193 const struct str2init
*ctinit
;
1195 if ((ct
= (CT
) calloc (1, sizeof *ct
)) == NULL
)
1196 adios (NULL
, "out of memory");
1198 /* Set up the multipart/alternative part. These fields of *ct were
1199 initialized to 0 by calloc():
1200 c_fp, c_unlink, c_begin, c_end,
1201 c_vrsn, c_ctline, c_celine,
1202 c_id, c_descr, c_dispo, c_partno,
1203 c_ctinfo.ci_comment, c_ctinfo.ci_magic,
1204 c_cefile, c_encoding,
1205 c_digested, c_digest[16], c_ctexbody,
1206 c_ctinitfnx, c_ceopenfnx, c_ceclosefnx, c_cesizefnx,
1207 c_umask, c_pid, c_rfc934,
1208 c_showproc, c_termproc, c_storeproc, c_storage, c_folder
1211 ct
->c_file
= add (first_alt
->c_file
, NULL
);
1213 ct
->c_subtype
= subtype
;
1215 ctinit
= get_ct_init (ct
->c_type
);
1217 typename
= ct_type_str (type
);
1218 subtypename
= ct_subtype_str (type
, subtype
);
1222 int found_boundary
= 1;
1224 while (found_boundary
&& serial
< 1000000) {
1227 /* Ensure that the boundary doesn't appear in the decoded
1229 if (new_part
->c_cefile
.ce_file
) {
1230 if ((found_boundary
=
1231 boundary_in_content (&new_part
->c_cefile
.ce_fp
,
1232 new_part
->c_cefile
.ce_file
,
1238 /* Ensure that the boundary doesn't appear in the encoded
1240 if (! found_boundary
&& new_part
->c_file
) {
1241 if ((found_boundary
= boundary_in_content (&new_part
->c_fp
,
1248 if (found_boundary
) {
1249 /* Try a slightly different boundary. */
1254 snprintf (buffer2
, sizeof buffer2
, "%d", serial
);
1256 concat (boundary_prefix
,
1257 first_alt
->c_partno
? first_alt
->c_partno
: "",
1258 "-", buffer2
, NULL
);
1262 if (found_boundary
) {
1263 advise (NULL
, "giving up trying to find a unique boundary");
1268 name
= concat (" ", typename
, "/", subtypename
, boundary_indicator
, "\"",
1269 boundary
, "\"", NULL
);
1271 /* Load c_first_hf and c_last_hf. */
1272 transfer_noncontent_headers (first_alt
, ct
);
1273 add_header (ct
, add (TYPE_FIELD
, NULL
), concat (name
, "\n", NULL
));
1276 /* Load c_partno. */
1277 if (first_alt
->c_partno
) {
1278 ct
->c_partno
= add (first_alt
->c_partno
, NULL
);
1279 free (first_alt
->c_partno
);
1280 first_alt
->c_partno
= concat (ct
->c_partno
, ".1", NULL
);
1281 new_part
->c_partno
= concat (ct
->c_partno
, ".2", NULL
);
1283 first_alt
->c_partno
= add ("1", NULL
);
1284 new_part
->c_partno
= add ("2", NULL
);
1288 ct
->c_ctinfo
.ci_type
= add (typename
, NULL
);
1289 ct
->c_ctinfo
.ci_subtype
= add (subtypename
, NULL
);
1292 name
= concat (" ", typename
, "/", subtypename
, boundary_indicator
,
1294 if ((cp
= strstr (name
, boundary_indicator
))) {
1295 ct
->c_ctinfo
.ci_attrs
[0] = name
;
1296 ct
->c_ctinfo
.ci_attrs
[1] = NULL
;
1297 /* ci_values don't get free'd, so point into ci_attrs. */
1298 ct
->c_ctinfo
.ci_values
[0] = cp
+ strlen (boundary_indicator
);
1301 p
= (struct part
*) mh_xmalloc (sizeof *p
);
1302 p
->mp_next
= (struct part
*) mh_xmalloc (sizeof *p
->mp_next
);
1303 p
->mp_next
->mp_next
= NULL
;
1304 p
->mp_next
->mp_part
= first_alt
;
1306 if ((m
= (struct multipart
*) calloc (1, sizeof (struct multipart
))) ==
1308 adios (NULL
, "out of memory");
1309 m
->mp_start
= concat (boundary
, "\n", NULL
);
1310 m
->mp_stop
= concat (boundary
, "--\n", NULL
);
1312 ct
->c_ctparams
= (void *) m
;
1320 /* Check that the boundary does not appear in the content. */
1322 boundary_in_content (FILE **fp
, char *file
, const char *boundary
) {
1323 char buffer
[BUFSIZ
];
1325 int found_boundary
= 0;
1327 /* free_content() will close *fp if we fopen it here. */
1328 if (! *fp
&& (*fp
= fopen (file
, "r")) == NULL
) {
1329 advise (file
, "unable to open %s for reading", file
);
1333 fseeko (*fp
, 0L, SEEK_SET
);
1334 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, *fp
)) > 0) {
1335 if (find_str (buffer
, bytes_read
, boundary
)) {
1341 return found_boundary
;
1345 /* Remove all non-Content headers. */
1347 transfer_noncontent_headers (CT old
, CT
new) {
1350 hp_prev
= hp
= old
->c_first_hf
;
1354 if (strncasecmp (XXX_FIELD_PRF
, hp
->name
, strlen (XXX_FIELD_PRF
))) {
1355 if (hp
== old
->c_last_hf
) {
1356 if (hp
== old
->c_first_hf
) {
1357 old
->c_last_hf
= old
->c_first_hf
= NULL
;
1359 hp_prev
->next
= NULL
;
1360 old
->c_last_hf
= hp_prev
;
1363 if (hp
== old
->c_first_hf
) {
1364 old
->c_first_hf
= next
;
1366 hp_prev
->next
= next
;
1370 /* Put node hp in the new CT. */
1371 if (new->c_first_hf
== NULL
) {
1372 new->c_first_hf
= hp
;
1374 new->c_last_hf
->next
= hp
;
1376 new->c_last_hf
= hp
;
1378 /* A Content- header, leave in old. */
1388 set_ct_type (CT ct
, int type
, int subtype
, int encoding
) {
1389 char *typename
= ct_type_str (type
);
1390 char *subtypename
= ct_subtype_str (type
, subtype
);
1391 /* E.g, " text/plain" */
1392 char *type_subtypename
= concat (" ", typename
, "/", subtypename
, NULL
);
1393 /* E.g, " text/plain\n" */
1394 char *name_plus_nl
= concat (type_subtypename
, "\n", NULL
);
1395 int found_content_type
= 0;
1397 const char *cp
= NULL
;
1401 /* Update/add Content-Type header field. */
1402 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1403 if (! strcasecmp (TYPE_FIELD
, hf
->name
)) {
1404 found_content_type
= 1;
1406 hf
->value
= (cp
= strchr (ct
->c_ctline
, ';'))
1407 ? concat (type_subtypename
, cp
, "\n", NULL
)
1408 : add (name_plus_nl
, NULL
);
1411 if (! found_content_type
) {
1412 add_header (ct
, add (TYPE_FIELD
, NULL
),
1413 (cp
= strchr (ct
->c_ctline
, ';'))
1414 ? concat (type_subtypename
, cp
, "\n", NULL
)
1415 : add (name_plus_nl
, NULL
));
1418 /* Some of these might not be used, but set them anyway. */
1420 ? concat (type_subtypename
, cp
, NULL
)
1421 : concat (type_subtypename
, NULL
);
1422 free (ct
->c_ctline
);
1423 ct
->c_ctline
= ctline
;
1424 /* Leave other ctinfo members as they were. */
1425 free (ct
->c_ctinfo
.ci_type
);
1426 ct
->c_ctinfo
.ci_type
= add (typename
, NULL
);
1427 free (ct
->c_ctinfo
.ci_subtype
);
1428 ct
->c_ctinfo
.ci_subtype
= add (subtypename
, NULL
);
1430 ct
->c_subtype
= subtype
;
1432 free (name_plus_nl
);
1433 free (type_subtypename
);
1435 status
= set_ce (ct
, encoding
);
1442 decode_text_parts (CT ct
, int encoding
, int *message_mods
) {
1445 switch (ct
->c_type
) {
1447 switch (ct
->c_encoding
) {
1452 if (decode_part (ct
) == OK
&& ct
->c_cefile
.ce_file
) {
1453 if ((ct_encoding
= content_encoding (ct
)) == CE_BINARY
&&
1454 encoding
!= CE_BINARY
) {
1456 report (ct
->c_partno
, ct
->c_file
,
1457 "will not decode%s because it is binary",
1459 : ct
->c_ctline
? ct
->c_ctline
1462 unlink (ct
->c_cefile
.ce_file
);
1463 free (ct
->c_cefile
.ce_file
);
1464 ct
->c_cefile
.ce_file
= NULL
;
1466 } else if (ct
->c_encoding
== CE_QUOTED
&&
1467 ct_encoding
== CE_8BIT
&& encoding
== CE_7BIT
) {
1469 report (ct
->c_partno
, ct
->c_file
,
1470 "will not decode%s because it is 8bit",
1472 : ct
->c_ctline
? ct
->c_ctline
1475 unlink (ct
->c_cefile
.ce_file
);
1476 free (ct
->c_cefile
.ce_file
);
1477 ct
->c_cefile
.ce_file
= NULL
;
1481 if (ct_encoding
== CE_BINARY
)
1483 else if (ct_encoding
== CE_8BIT
&& encoding
== CE_7BIT
)
1486 enc
= charset_encoding (ct
);
1487 if (set_ce (ct
, enc
) == OK
) {
1490 report (ct
->c_partno
, ct
->c_file
, "decode%s",
1491 ct
->c_ctline
? ct
->c_ctline
: "");
1507 case CT_MULTIPART
: {
1508 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
1511 /* Should check to see if the body for this part is encoded?
1512 For now, it gets passed along as-is by InitMultiPart(). */
1513 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
1514 status
= decode_text_parts (part
->mp_part
, encoding
, message_mods
);
1520 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
1523 e
= (struct exbody
*) ct
->c_ctparams
;
1524 status
= decode_text_parts (e
->eb_content
, encoding
, message_mods
);
1536 /* See if the decoded content is 7bit, 8bit, or binary. It's binary
1537 if it has any NUL characters, a CR not followed by a LF, or lines
1538 greater than 998 characters in length. */
1540 content_encoding (CT ct
) {
1541 CE ce
= &ct
->c_cefile
;
1542 int encoding
= CE_7BIT
;
1545 char buffer
[BUFSIZ
];
1548 if (! ce
->ce_fp
&& (ce
->ce_fp
= fopen (ce
->ce_file
, "r")) == NULL
) {
1549 advise (ce
->ce_file
, "unable to open for reading");
1553 fseeko (ce
->ce_fp
, 0L, SEEK_SET
);
1554 while (encoding
!= CE_BINARY
&&
1555 (inbytes
= fread (buffer
, 1, sizeof buffer
, ce
->ce_fp
)) > 0) {
1558 size_t line_len
= 0;
1559 int last_char_was_cr
= 0;
1561 for (i
= 0, cp
= buffer
; i
< inbytes
; ++i
, ++cp
) {
1562 if (*cp
== '\0' || ++line_len
> 998 ||
1563 (*cp
!= '\n' && last_char_was_cr
)) {
1564 encoding
= CE_BINARY
;
1566 } else if (*cp
== '\n') {
1568 } else if (! isascii ((unsigned char) *cp
)) {
1572 last_char_was_cr
= *cp
== '\r' ? 1 : 0;
1578 } /* else should never happen */
1585 convert_codesets (CT ct
, char *dest_codeset
, int *message_mods
) {
1588 switch (ct
->c_type
) {
1590 if (ct
->c_subtype
== TEXT_PLAIN
) {
1591 status
= convert_codeset (ct
, dest_codeset
, message_mods
);
1595 case CT_MULTIPART
: {
1596 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
1599 /* Should check to see if the body for this part is encoded?
1600 For now, it gets passed along as-is by InitMultiPart(). */
1601 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
1603 convert_codesets (part
->mp_part
, dest_codeset
, message_mods
);
1609 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
1612 e
= (struct exbody
*) ct
->c_ctparams
;
1614 convert_codesets (e
->eb_content
, dest_codeset
, message_mods
);
1627 convert_codeset (CT ct
, char *dest_codeset
, int *message_mods
) {
1628 const char *const charset
= "charset";
1629 char **src_codeset
= NULL
;
1630 char *default_codeset
= NULL
;
1631 CI ctinfo
= &ct
->c_ctinfo
;
1635 for (ap
= ctinfo
->ci_attrs
, vp
= ctinfo
->ci_values
; *ap
; ++ap
, ++vp
) {
1636 if (! strcasecmp (*ap
, charset
)) {
1641 /* RFC 2045, Sec. 5.2: default to us-ascii. */
1642 if (src_codeset
== NULL
) src_codeset
= &default_codeset
;
1643 if (*src_codeset
== NULL
) *src_codeset
= "US-ASCII";
1645 if (strcmp (norm_charmap (*src_codeset
), norm_charmap (dest_codeset
))) {
1647 iconv_t conv_desc
= NULL
;
1654 int opened_input_file
= 0;
1655 char src_buffer
[BUFSIZ
];
1658 if ((conv_desc
= iconv_open (dest_codeset
, *src_codeset
)) ==
1660 advise (NULL
, "Can't convert %s to %s", *src_codeset
, dest_codeset
);
1664 dest
= add (m_mktemp2 (tmp
, invo_name
, &fd
, NULL
), NULL
);
1666 if (ct
->c_cefile
.ce_file
) {
1667 file
= &ct
->c_cefile
.ce_file
;
1668 fp
= &ct
->c_cefile
.ce_fp
;
1671 } else if (ct
->c_file
) {
1674 begin
= ct
->c_begin
;
1676 } /* else no input file: shouldn't happen */
1678 if (file
&& *file
&& fp
) {
1680 if ((*fp
= fopen (*file
, "r")) == NULL
) {
1681 advise (*file
, "unable to open for reading");
1684 opened_input_file
= 1;
1691 size_t max
= end
> 0 ? (size_t) (end
-begin
) : sizeof src_buffer
;
1693 fseeko (*fp
, begin
, SEEK_SET
);
1694 while (status
== OK
&& max
> 0 &&
1695 (inbytes
= fread (src_buffer
, 1, max
, *fp
)) > 0) {
1696 char dest_buffer
[BUFSIZ
];
1697 char *ib
= src_buffer
, *ob
= dest_buffer
;
1698 size_t outbytes
= sizeof dest_buffer
;
1699 size_t outbytes_before
= outbytes
;
1701 if (end
> 0) max
-= inbytes
;
1703 if (iconv (conv_desc
, &ib
, &inbytes
, &ob
, &outbytes
) ==
1708 write (fd
, dest_buffer
, outbytes_before
- outbytes
);
1712 if (opened_input_file
) {
1718 iconv_close (conv_desc
);
1722 /* Replace the decoded file with the converted one. */
1723 if (ct
->c_cefile
.ce_file
) {
1724 if (ct
->c_cefile
.ce_unlink
) {
1725 unlink (ct
->c_cefile
.ce_file
);
1727 free (ct
->c_cefile
.ce_file
);
1729 ct
->c_cefile
.ce_file
= dest
;
1730 ct
->c_cefile
.ce_unlink
= 1;
1734 report (ct
->c_partno
, ct
->c_file
, "convert %s to %s",
1735 *src_codeset
, dest_codeset
);
1738 /* Update ci_attrs. */
1739 *src_codeset
= dest_codeset
;
1741 /* Update ct->c_ctline. */
1744 update_attr (ct
->c_ctline
, "charset=", dest_codeset
);
1746 free (ct
->c_ctline
);
1747 ct
->c_ctline
= ctline
;
1748 } /* else no CT line, which is odd */
1750 /* Update Content-Type header field. */
1751 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1752 if (! strcasecmp (TYPE_FIELD
, hf
->name
)) {
1753 char *ctline_less_newline
=
1754 update_attr (hf
->value
, "charset=", dest_codeset
);
1755 char *ctline
= concat (ctline_less_newline
, "\n", NULL
);
1756 free (ctline_less_newline
);
1766 #else /* ! HAVE_ICONV */
1767 NMH_UNUSED (message_mods
);
1769 advise (NULL
, "Can't convert %s to %s without iconv", *src_codeset
,
1772 #endif /* ! HAVE_ICONV */
1780 write_content (CT ct
, char *input_filename
, char *outfile
, int modify_inplace
,
1784 if (modify_inplace
) {
1785 if (message_mods
> 0) {
1786 if ((status
= output_message (ct
, outfile
)) == OK
) {
1787 char *infile
= input_filename
1788 ? add (input_filename
, NULL
)
1789 : add (ct
->c_file
? ct
->c_file
: "-", NULL
);
1791 if (remove_file (infile
) == OK
) {
1792 if (rename (outfile
, infile
)) {
1793 /* Rename didn't work, possibly because of an
1794 attempt to rename across filesystems. Try
1795 brute force copy. */
1796 int old
= open (outfile
, O_RDONLY
);
1798 open (infile
, O_WRONLY
| O_CREAT
, m_gmprot ());
1801 if (old
!= -1 && new != -1) {
1802 char buffer
[BUFSIZ
];
1804 while ((i
= read (old
, buffer
, sizeof buffer
)) >
1806 if (write (new, buffer
, i
) != i
) {
1812 if (new != -1) close (new);
1813 if (old
!= -1) close (old
);
1817 /* The -file argument processing used path() to
1818 expand filename to absolute path. */
1819 int file
= ct
->c_file
&& ct
->c_file
[0] == '/';
1821 admonish (NULL
, "unable to rename %s %s to %s",
1822 file
? "file" : "message", outfile
,
1828 admonish (NULL
, "unable to remove input file %s, "
1829 "not modifying it", infile
);
1839 /* No modifications and didn't need the tmp outfile. */
1843 /* Output is going to some file. Produce it whether or not
1844 there were modifications. */
1845 status
= output_message (ct
, outfile
);
1854 * If "rmmproc" is defined, call that to remove the file. Otherwise,
1855 * use the standard MH backup file.
1858 remove_file (char *file
) {
1860 char *rmm_command
= concat (rmmproc
, " ", file
, NULL
);
1861 int status
= system (rmm_command
);
1864 return WIFEXITED (status
) ? WEXITSTATUS (status
) : NOTOK
;
1866 /* This is OK for a non-message file, it still uses the
1867 BACKUP_PREFIX form. The backup file will be in the same
1868 directory as file. */
1869 return rename (file
, m_backup (file
));
1875 report (char *partno
, char *filename
, char *message
, ...) {
1880 va_start (args
, message
);
1881 fmt
= concat (filename
, partno
? " part " : ", ",
1882 partno
? partno
: "", partno
? ", " : "", message
, NULL
);
1884 advertise (NULL
, NULL
, fmt
, args
);
1893 upcase (char *str
) {
1894 char *up
= cpytrim (str
);
1897 for (cp
= up
; *cp
; ++cp
) *cp
= toupper ((unsigned char) *cp
);
1908 fprintf (stderr
, "\n");