1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Message content preparation (sendmp()).
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 #ifndef HAVE_AMALGAMATION
42 static sigjmp_buf _send_pipejmp
;
44 /* Going for user display, print Part: info string */
45 static void _print_part_info(FILE *obuf
, struct mimepart
const *mpp
,
46 struct n_ignore
const *doitp
, int level
,
47 struct quoteflt
*qf
, ui64_t
*stats
);
49 /* Create a pipe; if mpp is not NULL, place some n_PIPEENV_* environment
50 * variables accordingly */
51 static FILE * _pipefile(struct mime_handler
*mhp
,
52 struct mimepart
const *mpp
, FILE **qbuf
,
53 char const *tmpname
, int term_infd
);
55 /* Call mime_write() as approbiate and adjust statistics */
56 SINLINE ssize_t
_out(char const *buf
, size_t len
, FILE *fp
,
57 enum conversion convert
, enum sendaction action
,
58 struct quoteflt
*qf
, ui64_t
*stats
, struct str
*outrest
,
62 static void _send_onpipe(int signo
);
65 static int sendpart(struct message
*zmp
, struct mimepart
*ip
,
66 FILE *obuf
, struct n_ignore
const *doitp
,
67 struct quoteflt
*qf
, enum sendaction action
,
68 ui64_t
*stats
, int level
);
70 /* Get a file for an attachment */
71 static FILE * newfile(struct mimepart
*ip
, bool_t
volatile *ispipe
);
73 static void pipecpy(FILE *pipebuf
, FILE *outbuf
, FILE *origobuf
,
74 struct quoteflt
*qf
, ui64_t
*stats
);
76 /* Output a reasonable looking status field */
77 static void statusput(const struct message
*mp
, FILE *obuf
,
78 struct quoteflt
*qf
, ui64_t
*stats
);
79 static void xstatusput(const struct message
*mp
, FILE *obuf
,
80 struct quoteflt
*qf
, ui64_t
*stats
);
82 static void put_from_(FILE *fp
, struct mimepart
*ip
, ui64_t
*stats
);
85 _print_part_info(FILE *obuf
, struct mimepart
const *mpp
, /* TODO strtofmt.. */
86 struct n_ignore
const *doitp
, int level
, struct quoteflt
*qf
, ui64_t
*stats
)
90 struct str
const *cpre
, *csuf
;
96 struct n_colour_pen
*cpen
= n_colour_pen_create(n_COLOUR_ID_VIEW_PARTINFO
,
98 if ((cpre
= n_colour_pen_to_str(cpen
)) != NULL
)
99 csuf
= n_colour_reset_to_str();
107 /* Take care of "99.99", i.e., 5 */
108 if ((cp
= mpp
->m_partstring
) == NULL
|| cp
[0] == '\0')
110 if (level
|| (cp
[0] != '1' && cp
[1] == '\0') || (cp
[0] == '1' && /* TODO */
111 cp
[1] == '.' && cp
[2] != '1')) /* TODO code should not look like so */
112 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
114 /* Part id, content-type, encoding, charset */
116 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
117 _out("[-- #", 5, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
118 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
120 to
.l
= snprintf(buf
, sizeof buf
, " %" PRIuZ
"/%" PRIuZ
" ",
121 (uiz_t
)mpp
->m_lines
, (uiz_t
)mpp
->m_size
);
122 _out(buf
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
124 if ((cp
= mpp
->m_ct_type_usr_ovwr
) != NULL
)
125 _out("+", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
127 cp
= mpp
->m_ct_type_plain
;
128 if ((to
.l
= strlen(cp
)) > 30 && is_asccaseprefix("application/", cp
)) {
129 size_t const al
= sizeof("appl../") -1, fl
= sizeof("application/") -1;
130 size_t i
= to
.l
- fl
;
131 char *x
= salloc(al
+ i
+1);
133 memcpy(x
, "appl../", al
);
134 memcpy(x
+ al
, cp
+ fl
, i
+1);
138 _out(cp
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
140 if (mpp
->m_multipart
== NULL
/* TODO */ && (cp
= mpp
->m_ct_enc
) != NULL
) {
141 _out(", ", 2, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
142 if (to
.l
> 25 && !asccasecmp(cp
, "quoted-printable"))
144 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
147 if (mpp
->m_multipart
== NULL
/* TODO */ && (cp
= mpp
->m_charset
) != NULL
) {
148 _out(", ", 2, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
149 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
152 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
154 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
155 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
158 if (mpp
->m_content_info
& CI_MIME_ERRORS
) {
160 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
162 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
164 ti
.l
= strlen(ti
.s
= n_UNCONST(_("Defective MIME structure")));
166 to
.l
= delctrl(to
.s
, to
.l
);
167 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
170 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
172 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
174 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
177 /* Content-Description */
178 if (n_ignore_is_ign(doitp
, "content-description", 19) &&
179 (cp
= mpp
->m_content_description
) != NULL
&& *cp
!= '\0') {
181 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
183 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
185 ti
.l
= strlen(ti
.s
= n_UNCONST(mpp
->m_content_description
));
186 mime_fromhdr(&ti
, &to
, TD_ISPR
| TD_ICONV
);
187 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
190 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
192 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
194 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
198 if (n_ignore_is_ign(doitp
, "content-disposition", 19) &&
199 mpp
->m_filename
!= NULL
&& *mpp
->m_filename
!= '\0') {
201 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
203 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
205 ti
.l
= strlen(ti
.s
= mpp
->m_filename
);
207 to
.l
= delctrl(to
.s
, to
.l
);
208 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
211 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
213 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
215 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
221 _pipefile(struct mime_handler
*mhp
, struct mimepart
const *mpp
, FILE **qbuf
,
222 char const *tmpname
, int term_infd
)
225 char const *env_addon
[8 +8/*v15*/], *cp
, *sh
;
231 if (mhp
->mh_flags
& MIME_HDL_ISQUOTE
) {
232 if ((*qbuf
= Ftmp(NULL
, "sendp", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==
234 n_perr(_("tmpfile"), 0);
239 if ((mhp
->mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_PTF
) {
240 union {int (*ptf
)(void); char const *sh
;} u
;
243 if (*qbuf
!= n_stdout
) /* xxx never? v15: it'll be a filter anyway */
247 if((rbuf
= Popen((char*)-1, "W", u
.sh
, NULL
, fileno(*qbuf
))) == NULL
)
253 if (mpp
== NULL
|| (cp
= mpp
->m_filename
) == NULL
)
255 env_addon
[0] = str_concat_csvl(&s
, n_PIPEENV_FILENAME
, "=", cp
, NULL
)->s
;
256 env_addon
[1] = str_concat_csvl(&s
, "NAIL_FILENAME", "=", cp
, NULL
)->s
;
258 /* MAILX_FILENAME_GENERATED *//* TODO pathconf NAME_MAX; but user can create
259 * TODO a file wherever he wants! *Do* create a zero-size temporary file
260 * TODO and give *that* path as MAILX_FILENAME_TEMPORARY, clean it up once
261 * TODO the pipe returns? Like this we *can* verify path/name issues! */
262 cp
= getrandstring(n_MIN(NAME_MAX
/ 4, 16));
263 env_addon
[2] = str_concat_csvl(&s
, n_PIPEENV_FILENAME_GENERATED
, "=", cp
,
265 env_addon
[3] = str_concat_csvl(&s
, "NAIL_FILENAME_GENERATED", "=", cp
,
268 /* MAILX_CONTENT{,_EVIDENCE} */
269 if (mpp
== NULL
|| (cp
= mpp
->m_ct_type_plain
) == NULL
)
271 env_addon
[4] = str_concat_csvl(&s
, n_PIPEENV_CONTENT
, "=", cp
, NULL
)->s
;
272 env_addon
[5] = str_concat_csvl(&s
, "NAIL_CONTENT", "=", cp
, NULL
)->s
;
274 if (mpp
!= NULL
&& mpp
->m_ct_type_usr_ovwr
!= NULL
)
275 cp
= mpp
->m_ct_type_usr_ovwr
;
276 env_addon
[6] = str_concat_csvl(&s
, n_PIPEENV_CONTENT_EVIDENCE
, "=", cp
,
278 env_addon
[7] = str_concat_csvl(&s
, "NAIL_CONTENT_EVIDENCE", "=", cp
,
283 /* MAILX_FILENAME_TEMPORARY? */
284 if (tmpname
!= NULL
) {
285 env_addon
[8] = str_concat_csvl(&s
,
286 n_PIPEENV_FILENAME_TEMPORARY
, "=", tmpname
, NULL
)->s
;
287 env_addon
[9] = str_concat_csvl(&s
,
288 "NAIL_FILENAME_TEMPORARY", "=", tmpname
, NULL
)->s
;
289 env_addon
[10] = NULL
;
292 sh
= ok_vlook(SHELL
);
294 if (mhp
->mh_flags
& MIME_HDL_NEEDSTERM
) {
299 pid
= run_command(sh
, &nset
, term_infd
, COMMAND_FD_PASS
, "-c",
300 mhp
->mh_shell_cmd
, NULL
, env_addon
);
301 rbuf
= (pid
< 0) ? NULL
: (FILE*)-1;
303 rbuf
= Popen(mhp
->mh_shell_cmd
, "W", sh
, env_addon
,
304 (mhp
->mh_flags
& MIME_HDL_ASYNC
? -1 : fileno(*qbuf
)));
307 n_err(_("Cannot run MIME type handler: %s: %s\n"),
308 mhp
->mh_msg
, strerror(errno
));
311 if (*qbuf
!= n_stdout
)
321 _out(char const *buf
, size_t len
, FILE *fp
, enum conversion convert
, enum
322 sendaction action
, struct quoteflt
*qf
, ui64_t
*stats
, struct str
*outrest
,
329 /* TODO We should not need is_head() here, i think in v15 the actual Mailbox
330 * TODO subclass should detect such From_ cases and either reencode the part
331 * TODO in question, or perform From_ quoting as necessary!?!?!? How?!? */
335 if((action
== SEND_MBOX
|| action
== SEND_DECRYPT
) &&
336 (from_
= is_head(buf
, len
, TRU1
))){
337 if(from_
!= TRUM1
|| ok_blook(mbox_rfc4155
)){
344 flags
= ((int)action
& _TD_EOF
);
346 n
= mime_write(buf
, len
, fp
,
347 action
== SEND_MBOX
? CONV_NONE
: convert
,
348 flags
| ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
349 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
)
351 : (action
== SEND_TOSRCH
|| action
== SEND_TOPIPE
||
352 action
== SEND_TOFILE
)
353 ? TD_ICONV
: (action
== SEND_SHOW
? TD_ISPR
: TD_NONE
)),
354 qf
, outrest
, inrest
);
367 _send_onpipe(int signo
)
369 NYD_X
; /* Signal handler */
371 siglongjmp(_send_pipejmp
, 1);
374 static sigjmp_buf __sendp_actjmp
; /* TODO someday.. */
375 static int __sendp_sig
; /* TODO someday.. */
376 static sighandler_type __sendp_opipe
;
378 __sendp_onsig(int sig
) /* TODO someday, we won't need it no more */
380 NYD_X
; /* Signal handler */
382 siglongjmp(__sendp_actjmp
, 1);
386 sendpart(struct message
*zmp
, struct mimepart
*ip
, FILE * volatile obuf
,
387 struct n_ignore
const *doitp
, struct quoteflt
*qf
,
388 enum sendaction
volatile action
, ui64_t
* volatile stats
, int level
)
391 struct mime_handler mh
;
392 struct str outrest
, inrest
;
393 char *line
= NULL
, *cp
;
394 char const * volatile tmpname
= NULL
;
395 size_t linesize
= 0, linelen
, cnt
;
396 int volatile term_infd
;
398 struct mimepart
*volatile np
;
399 FILE * volatile ibuf
= NULL
, * volatile pbuf
= obuf
,
400 * volatile qbuf
= obuf
, *origobuf
= obuf
;
401 enum conversion
volatile convert
;
402 sighandler_type
volatile oldpipe
= SIG_DFL
;
405 n_UNINIT(term_infd
, 0);
408 quoteflt_reset(qf
, obuf
);
410 if (ip
->m_mimecontent
== MIME_PKCS7
) {
411 if (ip
->m_multipart
&&
412 action
!= SEND_MBOX
&& action
!= SEND_RFC822
&& action
!= SEND_SHOW
)
419 if (!n_ignore_is_ign(doitp
, "status", 6))
421 if (!n_ignore_is_ign(doitp
, "x-status", 8))
426 if ((ibuf
= setinput(&mb
, (struct message
*)ip
, NEED_BODY
)) == NULL
) {
432 if (ip
->m_mimecontent
== MIME_DISCARD
)
435 if (!(ip
->m_flag
& MNOFROM
))
436 while (cnt
&& (c
= getc(ibuf
)) != EOF
) {
441 convert
= (action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
442 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
||
443 action
== SEND_TOSRCH
)
444 ? CONV_FROMHDR
: CONV_NONE
;
446 /* Work the headers */
448 struct n_string hl
, *hlp
;
452 hlp
= n_string_creat_auto(&hl
); /* TODO pool [or, v15: filter!] */
453 /* Reserve three lines, still not enough for references and DKIM etc. */
454 hlp
= n_string_reserve(hlp
, n_MAX(MIME_LINELEN
, MIME_LINELEN_RFC2047
) * 3);
456 for(hstop
= FAL0
; !hstop
;){
460 if(fgetline(&line
, &linesize
, &cnt
, &linelen
, ibuf
, 0) == NULL
)
463 if (linelen
== 0 || (cp
= line
)[0] == '\n')
464 /* If line is blank, we've reached end of headers */
466 if(cp
[linelen
- 1] == '\n')
467 cp
[--linelen
] = '\0';
469 /* Are we in a header? */
472 fseek(ibuf
, -(off_t
)(lcnt
- cnt
), SEEK_CUR
);
478 /* Pick up the header field if we have one */
479 while(*cp
!= ':' && !spacechar(*cp
))
481 while(spacechar(*cp
))
484 /* That won't work with MIME when saving etc., before v15 */
486 /* XXX This disturbs, and may happen multiple times, and we
487 * XXX cannot heal it for multipart except for display <v15 */
488 n_err(_("Malformed message: headers and body not separated "
489 "(with empty line)\n"));
492 fseek(ibuf
, -(off_t
)(lcnt
- cnt
), SEEK_CUR
);
498 if(convert
== CONV_NONE
){
499 hlp
= n_string_push_buf(hlp
, cp
, (ui32_t
)linelen
);
500 hlp
= n_string_push_c(hlp
, '\n');
502 bool_t lblank
, isblank
;
504 for(lblank
= FAL0
, lcnt
= 0; lcnt
< linelen
; ++cp
, ++lcnt
){
508 if(!(isblank
= blankchar(c8
)) || !lblank
){
509 if((lblank
= isblank
))
511 hlp
= n_string_push_c(hlp
, c8
);
519 /* If it is an ignored header, skip it */
520 *(cp
= memchr(hlp
->s_dat
, ':', hlp
->s_len
)) = '\0';
524 i
= PTR2SIZE(cp
- hlp
->s_dat
);
525 if((doitp
!= NULL
&& n_ignore_is_ign(doitp
, hlp
->s_dat
, i
)) ||
526 !asccasecmp(hlp
->s_dat
, "status") ||
527 !asccasecmp(hlp
->s_dat
, "x-status") ||
528 (action
== SEND_MBOX
&&
529 (!asccasecmp(hlp
->s_dat
, "content-length") ||
530 !asccasecmp(hlp
->s_dat
, "lines")) &&
531 !ok_blook(keep_content_length
)))
537 if(n_pstate
& n_PS_COLOUR_ACTIVE
)
538 n_colour_put(obuf
, n_COLOUR_ID_VIEW_HEADER
, hlp
->s_dat
);
541 _out(hlp
->s_dat
, hlp
->s_len
, obuf
, convert
, action
, qf
, stats
, NULL
,NULL
);
543 if(n_pstate
& n_PS_COLOUR_ACTIVE
)
544 n_colour_reset(obuf
);
546 if(convert
!= CONV_NONE
)
550 hlp
= n_string_trunc(hlp
, 0);
556 /* We've reached end of headers, so eventually force out status: field and
557 * note that we are no longer in header fields */
559 statusput(zmp
, obuf
, qf
, stats
);
561 xstatusput(zmp
, obuf
, qf
, stats
);
562 if(doitp
!= n_IGNORE_ALL
)
563 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
577 memset(&mh
, 0, sizeof mh
);
579 switch (ip
->m_mimecontent
) {
583 case SEND_TODISP_ALL
:
586 if (ok_blook(rfc822_body_from_
)) {
587 if (qf
->qf_pfix_len
> 0) {
588 size_t i
= fwrite(qf
->qf_pfix
, sizeof *qf
->qf_pfix
,
589 qf
->qf_pfix_len
, obuf
);
590 if (i
== qf
->qf_pfix_len
&& stats
!= NULL
)
593 put_from_(obuf
, ip
->m_multipart
, stats
);
601 if (ok_blook(rfc822_body_from_
))
602 put_from_(obuf
, ip
->m_multipart
, stats
);
612 case MIME_TEXT_PLAIN
:
615 case SEND_TODISP_ALL
:
618 switch (mime_type_handler(&mh
, ip
, action
)) {
620 _out(mh
.mh_msg
.s
, mh
.mh_msg
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
,
622 /* We would print this as plain text, so better force going home */
633 if (action
!= SEND_DECRYPT
)
637 if (action
!= SEND_MBOX
&& action
!= SEND_RFC822
&&
638 action
!= SEND_SHOW
&& ip
->m_multipart
!= NULL
)
644 case SEND_TODISP_ALL
:
647 switch (mime_type_handler(&mh
, ip
, action
)) {
649 _out(mh
.mh_msg
.s
, mh
.mh_msg
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
,
651 /* We would print this as plain text, so better force going home */
654 /* FIXME WE NEED TO DO THAT IF WE ARE THE ONLY MAIL
655 * FIXME CONTENT !! */
660 if (level
== 0 && cnt
) {
661 char const *x
= _("[-- Binary content --]\n");
662 _out(x
, strlen(x
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
678 case MIME_ALTERNATIVE
:
679 if ((action
== SEND_TODISP
|| action
== SEND_QUOTE
) &&
680 !ok_blook(print_alternatives
)) {
681 /* XXX This (a) should not remain (b) should be own fun
682 * TODO (despite the fact that v15 will do this completely differently
683 * TODO by having an action-specific "manager" that will traverse the
684 * TODO parsed MIME tree and decide for each part whether it'll be
685 * TODO displayed or not *before* we walk the tree for doing action */
687 struct mpstack
*outer
;
689 } outermost
, * volatile curr
, * volatile mpsp
;
690 bool_t
volatile neednl
, hadpart
;
691 struct n_sigman smalter
;
693 (curr
= &outermost
)->outer
= NULL
;
695 neednl
= hadpart
= FAL0
;
697 n_SIGMAN_ENTER_SWITCH(&smalter
, n_SIGMAN_ALL
) {
705 for (np
= ip
->m_multipart
;;) {
707 for (; np
!= NULL
; np
= np
->m_nextpart
) {
708 if (action
!= SEND_QUOTE
&& np
->m_ct_type_plain
!= NULL
) {
710 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
712 _print_part_info(obuf
, np
, doitp
, level
, qf
, stats
);
716 switch (np
->m_mimecontent
) {
717 case MIME_ALTERNATIVE
:
723 mpsp
= salloc(sizeof *mpsp
);
725 mpsp
->mp
= np
->m_multipart
;
734 switch (mime_type_handler(&mh
, np
, action
)) {
736 mh
.mh_flags
= MIME_HDL_NULL
;
737 continue; /* break; break; */
739 if (!ok_blook(mime_alternative_favour_rich
)) {/* TODO */
740 struct mimepart
*x
= np
;
742 while ((x
= x
->m_nextpart
) != NULL
) {
743 struct mime_handler mhx
;
745 if (x
->m_mimecontent
== MIME_TEXT_PLAIN
||
746 mime_type_handler(&mhx
, x
, action
) ==
751 continue; /* break; break; */
759 case MIME_TEXT_PLAIN
:
762 if (ok_blook(mime_alternative_favour_rich
)) { /* TODO */
763 struct mimepart
*x
= np
;
765 /* TODO twice TODO, we should dive into /related and
766 * TODO check whether that has rich parts! */
767 while ((x
= x
->m_nextpart
) != NULL
) {
768 struct mime_handler mhx
;
770 switch (mime_type_handler(&mhx
, x
, action
)) {
779 continue; /* break; break; */
783 if (action
== SEND_QUOTE
&& hadpart
) {
784 struct quoteflt
*dummy
= quoteflt_dummy();
785 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, dummy
, stats
,
787 quoteflt_flush(dummy
);
791 rv
= sendpart(zmp
, np
, obuf
, doitp
, qf
, action
, stats
,
793 quoteflt_reset(qf
, origobuf
);
796 curr
= &outermost
; /* Cause overall loop termination */
805 np
= curr
->mp
->m_nextpart
;
808 n_sigman_leave(&smalter
, n_SIGMAN_VIPSIGS_NTTYOUT
);
819 case SEND_TODISP_ALL
:
827 if ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
) &&
828 ip
->m_multipart
!= NULL
&&
829 ip
->m_multipart
->m_mimecontent
== MIME_DISCARD
&&
830 ip
->m_multipart
->m_nextpart
== NULL
) {
831 char const *x
= _("[Missing multipart boundary - use show "
832 "to display the raw message]\n");
833 _out(x
, strlen(x
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
837 for (np
= ip
->m_multipart
; np
!= NULL
; np
= np
->m_nextpart
) {
838 bool_t
volatile ispipe
;
840 if (np
->m_mimecontent
== MIME_DISCARD
&& action
!= SEND_DECRYPT
)
846 if (np
->m_partstring
&& !strcmp(np
->m_partstring
, "1"))
849 /* TODO Always open multipart on /dev/null, it's a hack to be
850 * TODO able to dive into that structure, and still better
851 * TODO than asking the user for something stupid.
852 * TODO oh, wait, we did ask for a filename for this MIME mail,
853 * TODO and that outer container is useless anyway ;-P */
854 if (np
->m_multipart
!= NULL
) {
855 if ((obuf
= Fopen("/dev/null", "w")) == NULL
)
857 } else if ((obuf
= newfile(np
, &ispipe
)) == NULL
)
861 if (sigsetjmp(_send_pipejmp
, 1)) {
865 oldpipe
= safe_signal(SIGPIPE
, &_send_onpipe
);
868 case SEND_TODISP_ALL
:
869 if (ip
->m_mimecontent
!= MIME_ALTERNATIVE
&&
870 ip
->m_mimecontent
!= MIME_RELATED
&&
871 ip
->m_mimecontent
!= MIME_DIGEST
&&
872 ip
->m_mimecontent
!= MIME_SIGNED
&&
873 ip
->m_mimecontent
!= MIME_ENCRYPTED
&&
874 ip
->m_mimecontent
!= MIME_MULTI
)
876 _print_part_info(obuf
, np
, doitp
, level
, qf
, stats
);
890 if ((action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
) &&
891 np
->m_multipart
== NULL
&& ip
->m_parent
!= NULL
) {
892 struct quoteflt
*dummy
= quoteflt_dummy();
893 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, dummy
, stats
,
895 quoteflt_flush(dummy
);
897 if (sendpart(zmp
, np
, obuf
, doitp
, qf
, action
, stats
, level
+1) < 0)
899 quoteflt_reset(qf
, origobuf
);
901 if (action
== SEND_QUOTE
) {
902 if (ip
->m_mimecontent
!= MIME_RELATED
)
905 if (action
== SEND_TOFILE
&& obuf
!= origobuf
) {
910 safe_signal(SIGPIPE
, SIG_IGN
);
912 safe_signal(SIGPIPE
, oldpipe
);
925 /* Copy out message body */
926 if (doitp
== n_IGNORE_ALL
&& level
== 0) /* skip final blank line */
928 switch (ip
->m_mime_enc
) {
935 convert
= CONV_FROMQP
;
938 switch (ip
->m_mimecontent
) {
940 case MIME_TEXT_PLAIN
:
942 convert
= CONV_FROMB64_T
;
945 switch (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) {
948 convert
= CONV_FROMB64_T
;
951 convert
= CONV_FROMB64
;
961 /* TODO Unless we have filters, ensure iconvd==-1 so that mime.c:fwrite_td()
962 * TODO cannot mess things up misusing outrest as line buffer */
964 if (iconvd
!= (iconv_t
)-1) {
965 n_iconv_close(iconvd
);
966 iconvd
= (iconv_t
)-1;
970 if (action
== SEND_DECRYPT
|| action
== SEND_MBOX
||
971 action
== SEND_RFC822
|| action
== SEND_SHOW
)
974 else if ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
975 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
||
976 action
== SEND_TOSRCH
|| action
== SEND_TOFILE
) &&
977 (ip
->m_mimecontent
== MIME_TEXT_PLAIN
||
978 ip
->m_mimecontent
== MIME_TEXT_HTML
||
979 ip
->m_mimecontent
== MIME_TEXT
||
980 (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_TEXT
||
981 (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_PTF
)) {
984 tcs
= ok_vlook(ttycharset
);
985 if (asccasecmp(tcs
, ip
->m_charset
) &&
986 asccasecmp(ok_vlook(charset_7bit
), ip
->m_charset
)) {
987 iconvd
= n_iconv_open(tcs
, ip
->m_charset
);
988 if (iconvd
== (iconv_t
)-1 && errno
== EINVAL
) {
989 n_err(_("Cannot convert from %s to %s\n"), ip
->m_charset
, tcs
);
990 /*rv = 1; goto jleave;*/
996 switch (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) {
1002 term_infd
= COMMAND_FD_PASS
;
1003 if (mh
.mh_flags
& (MIME_HDL_TMPF
| MIME_HDL_NEEDSTERM
)) {
1006 of
= OF_RDWR
| OF_REGISTER
;
1007 if (!(mh
.mh_flags
& MIME_HDL_TMPF
)) {
1009 mh
.mh_flags
|= MIME_HDL_TMPF_FILL
;
1011 } else if (mh
.mh_flags
& MIME_HDL_TMPF_UNLINK
)
1012 of
|= OF_REGISTER_UNLINK
;
1014 if ((pbuf
= Ftmp((mh
.mh_flags
& MIME_HDL_TMPF
? &cp
: NULL
),
1015 (mh
.mh_flags
& MIME_HDL_TMPF_FILL
? "mimehdlfill" : "mimehdl"),
1019 if (mh
.mh_flags
& MIME_HDL_TMPF
) {
1020 tmpname
= savestr(cp
);
1024 if (mh
.mh_flags
& MIME_HDL_TMPF_FILL
) {
1026 term_infd
= fileno(pbuf
);
1032 pbuf
= _pipefile(&mh
, ip
, n_UNVOLATILE(&qbuf
), tmpname
, term_infd
);
1038 } else if ((mh
.mh_flags
& MIME_HDL_NEEDSTERM
) && pbuf
== (FILE*)-1) {
1043 action
= SEND_TOPIPE
;
1045 oldpipe
= safe_signal(SIGPIPE
, &_send_onpipe
);
1046 if (sigsetjmp(_send_pipejmp
, 1))
1052 mh
.mh_flags
= MIME_HDL_NULL
;
1059 bool_t
volatile eof
;
1060 ui32_t save_qf_pfix_len
= qf
->qf_pfix_len
;
1061 ui64_t
*save_stats
= stats
;
1063 if (pbuf
!= origobuf
) {
1064 qf
->qf_pfix_len
= 0; /* XXX legacy (remove filter instead) */
1068 outrest
.s
= inrest
.s
= NULL
;
1069 outrest
.l
= inrest
.l
= 0;
1073 __sendp_opipe
= safe_signal(SIGPIPE
, &__sendp_onsig
);
1074 if (sigsetjmp(__sendp_actjmp
, 1)) {
1075 if (outrest
.s
!= NULL
)
1077 if (inrest
.s
!= NULL
)
1081 if (iconvd
!= (iconv_t
)-1)
1082 n_iconv_close(iconvd
);
1084 safe_signal(SIGPIPE
, __sendp_opipe
);
1085 n_raise(__sendp_sig
);
1089 quoteflt_reset(qf
, pbuf
);
1090 while (!eof
&& fgetline(&line
, &linesize
, &cnt
, &linelen
, ibuf
, 0)) {
1092 if (_out(line
, linelen
, pbuf
, convert
, action
, qf
, stats
, &outrest
,
1093 (action
& _TD_EOF
? NULL
: &inrest
)) < 0 || ferror(pbuf
)) {
1094 rv
= -1; /* XXX Should bail away?! */
1098 if(eof
<= FAL0
&& rv
>= 0 && (outrest
.l
!= 0 || inrest
.l
!= 0)){
1100 if(eof
|| inrest
.l
== 0)
1102 eof
= eof
? TRU1
: TRUM1
;
1107 /* TODO HACK: when sending to the display we yet get fooled if a message
1108 * TODO doesn't end in a newline, because of our input/output 1:1.
1109 * TODO This should be handled automatically by a display filter, then */
1110 if(rv
>= 0 && !qf
->qf_nl_last
&&
1111 (action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
))
1112 rv
= quoteflt_push(qf
, "\n", 1);
1116 if (rv
>= 0 && (mh
.mh_flags
& MIME_HDL_TMPF_FILL
)) {
1117 mh
.mh_flags
&= ~MIME_HDL_TMPF_FILL
;
1119 really_rewind(pbuf
);
1120 /* Don't Fclose() the Ftmp() thing due to OF_REGISTER_UNLINK++ */
1121 goto jpipe_for_real
;
1125 safe_signal(SIGPIPE
, __sendp_opipe
);
1127 if (outrest
.s
!= NULL
)
1129 if (inrest
.s
!= NULL
)
1132 if (pbuf
!= origobuf
) {
1133 qf
->qf_pfix_len
= save_qf_pfix_len
;
1142 safe_signal(SIGPIPE
, SIG_IGN
);
1143 Pclose(pbuf
, !(mh
.mh_flags
& MIME_HDL_ASYNC
));
1144 safe_signal(SIGPIPE
, oldpipe
);
1145 if (rv
>= 0 && qbuf
!= NULL
&& qbuf
!= obuf
)
1146 pipecpy(qbuf
, obuf
, origobuf
, qf
, stats
);
1149 if (iconvd
!= (iconv_t
)-1)
1150 n_iconv_close(iconvd
);
1158 newfile(struct mimepart
*ip
, bool_t
volatile *ispipe
)
1168 if (f
!= NULL
&& f
!= (char*)-1) {
1171 makeprint(&in
, &out
);
1172 out
.l
= delctrl(out
.s
, out
.l
);
1173 f
= savestrbuf(out
.s
, out
.l
);
1177 /* In interactive mode, let user perform all kind of expansions as desired,
1178 * and offer |SHELL-SPEC pipe targets, too */
1179 if (n_psonce
& n_PSO_INTERACTIVE
) {
1181 struct n_string shou
, *shoup
;
1184 shoup
= n_string_creat_auto(&shou
);
1186 /* TODO Generic function which asks for filename.
1187 * TODO If the current part is the first textpart the target
1188 * TODO is implicit from outer `write' etc! */
1189 /* I18N: Filename input prompt with file type indication */
1190 str_concat_csvl(&prompt
, _("Enter filename for part "),
1191 (ip
->m_partstring
!= NULL
) ? ip
->m_partstring
: _("?"),
1192 _(" ("), ip
->m_ct_type_plain
, _("): "), NULL
);
1194 f2
= n_lex_input_cp(n_LEXINPUT_CTX_DEFAULT
| n_LEXINPUT_HIST_ADD
,
1195 prompt
.s
, ((f
!= (char*)-1 && f
!= NULL
)
1196 ? n_shexp_quote_cp(f
, FAL0
) : NULL
));
1198 in
.s
= n_UNCONST(f2
);
1200 if((n_shexp_parse_token((n_SHEXP_PARSE_TRUNC
|
1201 n_SHEXP_PARSE_TRIMSPACE
| n_SHEXP_PARSE_LOG
|
1202 n_SHEXP_PARSE_IGNORE_EMPTY
), shoup
, &in
, NULL
1203 ) & (n_SHEXP_STATE_STOP
|
1204 n_SHEXP_STATE_OUTPUT
| n_SHEXP_STATE_ERR_MASK
)
1205 ) != (n_SHEXP_STATE_STOP
| n_SHEXP_STATE_OUTPUT
))
1207 f2
= n_string_cp(shoup
);
1209 if (f2
== NULL
|| *f2
== '\0') {
1210 if (n_poption
& n_PO_D_V
)
1211 n_err(_("... skipping this\n"));
1212 n_string_gut(shoup
);
1218 /* Pipes are expanded by the shell */
1220 else if ((f3
= fexpand(f2
, FEXP_LOCAL
| FEXP_NVAR
)) == NULL
)
1221 /* (Error message written by fexpand()) */
1226 n_string_gut(shoup
);
1229 if (f
== NULL
|| f
== (char*)-1 || *f
== '\0')
1231 else if (n_psonce
& n_PSO_INTERACTIVE
) {
1233 fp
= Popen(&f
[1], "w", ok_vlook(SHELL
), NULL
, 1);
1234 if (!(*ispipe
= (fp
!= NULL
)))
1236 } else if ((fp
= Fopen(f
, "w")) == NULL
)
1237 n_err(_("Cannot open %s\n"), n_shexp_quote_cp(f
, FAL0
));
1239 /* Be very picky in non-interactive mode: actively disallow pipes,
1240 * prevent directory separators, and any filename member that would
1241 * become expanded by the shell if the name would be echo(1)ed */
1242 if(anyof(f
, "/" n_SHEXP_MAGIC_PATH_CHARS
)){
1245 for(out
.s
= salloc((strlen(f
) * 3) +1), out
.l
= 0; (c
= *f
++) != '\0';)
1246 if(strchr("/" n_SHEXP_MAGIC_PATH_CHARS
, c
)){
1247 out
.s
[out
.l
++] = '%';
1248 n_c_to_hex_base16(&out
.s
[out
.l
], c
);
1252 out
.s
[out
.l
] = '\0';
1256 /* Avoid overwriting of existing files */
1257 while((fp
= Fopen(f
, "wx")) == NULL
){
1260 if((e
= errno
) != EEXIST
){
1261 n_err(_("Cannot open %s: %s\n"),
1262 n_shexp_quote_cp(f
, FAL0
), strerror(e
));
1266 if(ip
->m_partstring
!= NULL
)
1267 f
= savecatsep(f
, '#', ip
->m_partstring
);
1269 f
= savecat(f
, "#.");
1278 pipecpy(FILE *pipebuf
, FILE *outbuf
, FILE *origobuf
, struct quoteflt
*qf
,
1281 char *line
= NULL
; /* TODO line pool */
1282 size_t linesize
= 0, linelen
, cnt
;
1288 cnt
= (size_t)fsize(pipebuf
);
1291 quoteflt_reset(qf
, outbuf
);
1292 while (fgetline(&line
, &linesize
, &cnt
, &linelen
, pipebuf
, 0) != NULL
) {
1293 if ((sz
= quoteflt_push(qf
, line
, linelen
)) < 0)
1297 if ((sz
= quoteflt_flush(qf
)) > 0)
1302 if (all_sz
> 0 && outbuf
== origobuf
&& stats
!= NULL
)
1309 statusput(const struct message
*mp
, FILE *obuf
, struct quoteflt
*qf
,
1312 char statout
[3], *cp
= statout
;
1315 if (mp
->m_flag
& MREAD
)
1317 if (!(mp
->m_flag
& MNEW
))
1321 int i
= fprintf(obuf
, "%.*sStatus: %s\n", (int)qf
->qf_pfix_len
,
1322 (qf
->qf_pfix_len
> 0 ? qf
->qf_pfix
: 0), statout
);
1323 if (i
> 0 && stats
!= NULL
)
1330 xstatusput(const struct message
*mp
, FILE *obuf
, struct quoteflt
*qf
,
1334 char *xp
= xstatout
;
1337 if (mp
->m_flag
& MFLAGGED
)
1339 if (mp
->m_flag
& MANSWERED
)
1341 if (mp
->m_flag
& MDRAFTED
)
1345 int i
= fprintf(obuf
, "%.*sX-Status: %s\n", (int)qf
->qf_pfix_len
,
1346 (qf
->qf_pfix_len
> 0 ? qf
->qf_pfix
: 0), xstatout
);
1347 if (i
> 0 && stats
!= NULL
)
1354 put_from_(FILE *fp
, struct mimepart
*ip
, ui64_t
*stats
)
1356 char const *froma
, *date
, *nl
;
1360 if (ip
!= NULL
&& ip
->m_from
!= NULL
) {
1362 date
= fakedate(ip
->m_time
);
1365 froma
= ok_vlook(LOGNAME
);
1366 date
= time_current
.tc_ctime
;
1370 n_COLOUR( n_colour_put(fp
, n_COLOUR_ID_VIEW_FROM_
, NULL
); )
1371 i
= fprintf(fp
, "From %s %s%s", froma
, date
, nl
);
1372 n_COLOUR( n_colour_reset(fp
); )
1373 if (i
> 0 && stats
!= NULL
)
1379 sendmp(struct message
*mp
, FILE *obuf
, struct n_ignore
const *doitp
,
1380 char const *prefix
, enum sendaction action
, ui64_t
*stats
)
1385 enum mime_parse_flags mpf
;
1386 struct mimepart
*ip
;
1390 time_current_update(&time_current
, TRU1
);
1392 if (mp
== dot
&& action
!= SEND_TOSRCH
)
1393 n_pstate
|= n_PS_DID_PRINT_DOT
;
1396 quoteflt_init(&qf
, prefix
);
1398 /* First line is the From_ line, so no headers there to worry about */
1399 if ((ibuf
= setinput(&mb
, mp
, NEED_BODY
)) == NULL
)
1406 char const *cpre
= n_empty
, *csuf
= n_empty
;
1408 struct n_colour_pen
*cpen
= n_colour_pen_create(n_COLOUR_ID_VIEW_FROM_
,NULL
);
1409 struct str
const *sp
= n_colour_pen_to_str(cpen
);
1413 sp
= n_colour_reset_to_str();
1419 nozap
= (doitp
!= n_IGNORE_ALL
&& doitp
!= n_IGNORE_FWD
&&
1420 action
!= SEND_RFC822
&&
1421 !n_ignore_is_ign(doitp
, "from_", sizeof("from_") -1));
1422 if (mp
->m_flag
& MNOFROM
) {
1424 sz
= fprintf(obuf
, "%s%.*sFrom %s %s%s\n",
1425 cpre
, (int)qf
.qf_pfix_len
,
1426 (qf
.qf_pfix_len
!= 0 ? qf
.qf_pfix
: n_empty
), fakefrom(mp
),
1427 fakedate(mp
->m_time
), csuf
);
1429 if (qf
.qf_pfix_len
> 0) {
1430 i
= fwrite(qf
.qf_pfix
, sizeof *qf
.qf_pfix
, qf
.qf_pfix_len
, obuf
);
1431 if (i
!= qf
.qf_pfix_len
)
1438 cpre
= (char const*)0x1;
1442 while (cnt
> 0 && (c
= getc(ibuf
)) != EOF
) {
1444 if (c
== '\n' && csuf
!= NULL
) {
1445 cpre
= (char const*)0x1;
1457 if (csuf
!= NULL
&& cpre
!= (char const*)0x1)
1461 while (cnt
> 0 && (c
= getc(ibuf
)) != EOF
) {
1468 if (sz
> 0 && stats
!= NULL
)
1471 mpf
= MIME_PARSE_NONE
;
1472 if (action
!= SEND_MBOX
&& action
!= SEND_RFC822
&& action
!= SEND_SHOW
)
1473 mpf
|= MIME_PARSE_PARTS
| MIME_PARSE_DECRYPT
;
1474 if ((ip
= mime_parse_msg(mp
, mpf
)) == NULL
)
1477 rv
= sendpart(mp
, ip
, obuf
, doitp
, &qf
, action
, stats
, 0);
1479 quoteflt_destroy(&qf
);