a_nag_group_lookup(): FIX used case-i?sensitive hash function!
[s-mailx.git] / send.c
blob84e560107989248920fb6323cde196f62a51b236
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>.
6 */
7 /*
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
13 * are met:
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
33 * SUCH DAMAGE.
35 #undef n_FILE
36 #define n_FILE send
38 #ifndef HAVE_AMALGAMATION
39 # include "nail.h"
40 #endif
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,
59 struct str *inrest);
61 /* SIGPIPE handler */
62 static void _send_onpipe(int signo);
64 /* Send one part */
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 char **linedat, size_t *linesize,
69 ui64_t *stats, int level);
71 /* Get a file for an attachment */
72 static FILE * newfile(struct mimepart *ip, bool_t volatile *ispipe);
74 static void pipecpy(FILE *pipebuf, FILE *outbuf, FILE *origobuf,
75 struct quoteflt *qf, ui64_t *stats);
77 /* Output a reasonable looking status field */
78 static void statusput(const struct message *mp, FILE *obuf,
79 struct quoteflt *qf, ui64_t *stats);
80 static void xstatusput(const struct message *mp, FILE *obuf,
81 struct quoteflt *qf, ui64_t *stats);
83 static void put_from_(FILE *fp, struct mimepart *ip, ui64_t *stats);
85 static void
86 _print_part_info(FILE *obuf, struct mimepart const *mpp, /* TODO strtofmt.. */
87 struct n_ignore const *doitp, int level, struct quoteflt *qf, ui64_t *stats)
89 char buf[64];
90 struct str ti, to;
91 bool_t want_ct, needsep;
92 struct str const *cpre, *csuf;
93 char const *cp;
94 NYD2_ENTER;
96 cpre = csuf = NULL;
97 #ifdef HAVE_COLOUR
98 if(n_COLOUR_IS_ACTIVE()){
99 struct n_colour_pen *cpen;
101 cpen = n_colour_pen_create(n_COLOUR_ID_VIEW_PARTINFO, NULL);
102 if((cpre = n_colour_pen_to_str(cpen)) != NULL)
103 csuf = n_colour_reset_to_str();
105 #endif
107 /* Take care of "99.99", i.e., 5 */
108 if ((cp = mpp->m_partstring) == NULL || cp[0] == '\0')
109 cp = n_qm;
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 */
115 if (cpre != NULL)
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 needsep = FAL0;
126 if((cp = mpp->m_ct_type_usr_ovwr) != NULL){
127 _out("+", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
128 want_ct = TRU1;
129 }else if((want_ct = n_ignore_is_ign(doitp,
130 "content-type", sizeof("content-type") -1)))
131 cp = mpp->m_ct_type_plain;
132 if (want_ct &&
133 (to.l = strlen(cp)) > 30 && is_asccaseprefix("application/", cp)) {
134 size_t const al = sizeof("appl../") -1, fl = sizeof("application/") -1;
135 size_t i = to.l - fl;
136 char *x = salloc(al + i +1);
138 memcpy(x, "appl../", al);
139 memcpy(x + al, cp + fl, i +1);
140 cp = x;
141 to.l = al + i;
143 if(cp != NULL){
144 _out(cp, to.l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
145 needsep = TRU1;
148 if(mpp->m_multipart == NULL/* TODO */ && (cp = mpp->m_ct_enc) != NULL &&
149 (!asccasecmp(cp, "7bit") ||
150 n_ignore_is_ign(doitp, "content-transfer-encoding",
151 sizeof("content-transfer-encoding") -1))){
152 if(needsep)
153 _out(", ", 2, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
154 if (to.l > 25 && !asccasecmp(cp, "quoted-printable"))
155 cp = "qu.-pr.";
156 _out(cp, strlen(cp), obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
157 needsep = TRU1;
160 if (want_ct && mpp->m_multipart == NULL/* TODO */ &&
161 (cp = mpp->m_charset) != NULL) {
162 if(needsep)
163 _out(", ", 2, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
164 _out(cp, strlen(cp), obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
167 needsep = !needsep;
168 _out(&" --]"[needsep], 4 - needsep,
169 obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
170 if (csuf != NULL)
171 _out(csuf->s, csuf->l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
172 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
174 /* */
175 if (mpp->m_content_info & CI_MIME_ERRORS) {
176 if (cpre != NULL)
177 _out(cpre->s, cpre->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
178 NULL, NULL);
179 _out("[-- ", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
181 ti.l = strlen(ti.s = n_UNCONST(_("Defective MIME structure")));
182 makeprint(&ti, &to);
183 to.l = delctrl(to.s, to.l);
184 _out(to.s, to.l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
185 free(to.s);
187 _out(" --]", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
188 if (csuf != NULL)
189 _out(csuf->s, csuf->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
190 NULL, NULL);
191 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
194 /* Content-Description */
195 if (n_ignore_is_ign(doitp, "content-description", 19) &&
196 (cp = mpp->m_content_description) != NULL && *cp != '\0') {
197 if (cpre != NULL)
198 _out(cpre->s, cpre->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
199 NULL, NULL);
200 _out("[-- ", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
202 ti.l = strlen(ti.s = n_UNCONST(mpp->m_content_description));
203 mime_fromhdr(&ti, &to, TD_ISPR | TD_ICONV);
204 _out(to.s, to.l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
205 free(to.s);
207 _out(" --]", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
208 if (csuf != NULL)
209 _out(csuf->s, csuf->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
210 NULL, NULL);
211 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
214 /* Filename */
215 if (n_ignore_is_ign(doitp, "content-disposition", 19) &&
216 mpp->m_filename != NULL && *mpp->m_filename != '\0') {
217 if (cpre != NULL)
218 _out(cpre->s, cpre->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
219 NULL, NULL);
220 _out("[-- ", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
222 ti.l = strlen(ti.s = mpp->m_filename);
223 makeprint(&ti, &to);
224 to.l = delctrl(to.s, to.l);
225 _out(to.s, to.l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
226 free(to.s);
228 _out(" --]", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
229 if (csuf != NULL)
230 _out(csuf->s, csuf->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
231 NULL, NULL);
232 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
234 NYD2_LEAVE;
237 static FILE *
238 _pipefile(struct mime_handler *mhp, struct mimepart const *mpp, FILE **qbuf,
239 char const *tmpname, int term_infd)
241 struct str s;
242 char const *env_addon[8 +8/*v15*/], *cp, *sh;
243 FILE *rbuf;
244 NYD_ENTER;
246 rbuf = *qbuf;
248 if (mhp->mh_flags & MIME_HDL_ISQUOTE) {
249 if ((*qbuf = Ftmp(NULL, "sendp", OF_RDWR | OF_UNLINK | OF_REGISTER)) ==
250 NULL) {
251 n_perr(_("tmpfile"), 0);
252 *qbuf = rbuf;
256 if ((mhp->mh_flags & MIME_HDL_TYPE_MASK) == MIME_HDL_PTF) {
257 union {int (*ptf)(void); char const *sh;} u;
259 fflush(*qbuf);
260 if (*qbuf != n_stdout) /* xxx never? v15: it'll be a filter anyway */
261 fflush(n_stdout);
263 u.ptf = mhp->mh_ptf;
264 if((rbuf = Popen((char*)-1, "W", u.sh, NULL, fileno(*qbuf))) == NULL)
265 goto jerror;
266 goto jleave;
269 /* MAILX_FILENAME */
270 if (mpp == NULL || (cp = mpp->m_filename) == NULL)
271 cp = n_empty;
272 env_addon[0] = str_concat_csvl(&s, n_PIPEENV_FILENAME, "=", cp, NULL)->s;
273 env_addon[1] = str_concat_csvl(&s, "NAIL_FILENAME", "=", cp, NULL)->s;/* v15 */
275 /* MAILX_FILENAME_GENERATED *//* TODO pathconf NAME_MAX; but user can create
276 * TODO a file wherever he wants! *Do* create a zero-size temporary file
277 * TODO and give *that* path as MAILX_FILENAME_TEMPORARY, clean it up once
278 * TODO the pipe returns? Like this we *can* verify path/name issues! */
279 cp = n_random_create_cp(n_MIN(NAME_MAX / 4, 16), NULL);
280 env_addon[2] = str_concat_csvl(&s, n_PIPEENV_FILENAME_GENERATED, "=", cp,
281 NULL)->s;
282 env_addon[3] = str_concat_csvl(&s, "NAIL_FILENAME_GENERATED", "=", cp,/* v15 */
283 NULL)->s;
285 /* MAILX_CONTENT{,_EVIDENCE} */
286 if (mpp == NULL || (cp = mpp->m_ct_type_plain) == NULL)
287 cp = n_empty;
288 env_addon[4] = str_concat_csvl(&s, n_PIPEENV_CONTENT, "=", cp, NULL)->s;
289 env_addon[5] = str_concat_csvl(&s, "NAIL_CONTENT", "=", cp, NULL)->s;/* v15 */
291 if (mpp != NULL && mpp->m_ct_type_usr_ovwr != NULL)
292 cp = mpp->m_ct_type_usr_ovwr;
293 env_addon[6] = str_concat_csvl(&s, n_PIPEENV_CONTENT_EVIDENCE, "=", cp,
294 NULL)->s;
295 env_addon[7] = str_concat_csvl(&s, "NAIL_CONTENT_EVIDENCE", "=", cp,/* v15 */
296 NULL)->s;
298 env_addon[8] = NULL;
300 /* MAILX_FILENAME_TEMPORARY? */
301 if (tmpname != NULL) {
302 env_addon[8] = str_concat_csvl(&s,
303 n_PIPEENV_FILENAME_TEMPORARY, "=", tmpname, NULL)->s;
304 env_addon[9] = str_concat_csvl(&s,
305 "NAIL_FILENAME_TEMPORARY", "=", tmpname, NULL)->s;/* v15 */
306 env_addon[10] = NULL;
309 sh = ok_vlook(SHELL);
311 if (mhp->mh_flags & MIME_HDL_NEEDSTERM) {
312 sigset_t nset;
313 int pid;
315 sigemptyset(&nset);
316 pid = n_child_run(sh, &nset, term_infd, n_CHILD_FD_PASS, "-c",
317 mhp->mh_shell_cmd, NULL, env_addon, NULL);
318 rbuf = (pid < 0) ? NULL : (FILE*)-1;
319 } else {
320 rbuf = Popen(mhp->mh_shell_cmd, "W", sh, env_addon,
321 (mhp->mh_flags & MIME_HDL_ASYNC ? -1 : fileno(*qbuf)));
322 jerror:
323 if (rbuf == NULL)
324 n_err(_("Cannot run MIME type handler: %s: %s\n"),
325 mhp->mh_msg, n_err_to_doc(n_err_no));
326 else {
327 fflush(*qbuf);
328 if (*qbuf != n_stdout)
329 fflush(n_stdout);
332 jleave:
333 NYD_LEAVE;
334 return rbuf;
337 SINLINE ssize_t
338 _out(char const *buf, size_t len, FILE *fp, enum conversion convert, enum
339 sendaction action, struct quoteflt *qf, ui64_t *stats, struct str *outrest,
340 struct str *inrest)
342 ssize_t sz = 0, n;
343 int flags;
344 NYD_ENTER;
346 /* TODO We should not need is_head() here, i think in v15 the actual Mailbox
347 * TODO subclass should detect such From_ cases and either reencode the part
348 * TODO in question, or perform From_ quoting as necessary!?!?!? How?!? */
349 /* C99 */{
350 bool_t from_;
352 if((action == SEND_MBOX || action == SEND_DECRYPT) &&
353 (from_ = is_head(buf, len, TRU1))){
354 if(from_ != TRUM1 || ok_blook(mbox_rfc4155)){
355 putc('>', fp);
356 ++sz;
361 flags = ((int)action & _TD_EOF);
362 action &= ~_TD_EOF;
363 n = mime_write(buf, len, fp,
364 action == SEND_MBOX ? CONV_NONE : convert,
365 flags | ((action == SEND_TODISP || action == SEND_TODISP_ALL ||
366 action == SEND_TODISP_PARTS ||
367 action == SEND_QUOTE || action == SEND_QUOTE_ALL)
368 ? TD_ISPR | TD_ICONV
369 : (action == SEND_TOSRCH || action == SEND_TOPIPE ||
370 action == SEND_TOFILE)
371 ? TD_ICONV : (action == SEND_SHOW ? TD_ISPR : TD_NONE)),
372 qf, outrest, inrest);
373 if (n < 0)
374 sz = n;
375 else if (n > 0) {
376 sz += n;
377 if (stats != NULL)
378 *stats += sz;
380 NYD_LEAVE;
381 return sz;
384 static void
385 _send_onpipe(int signo)
387 NYD_X; /* Signal handler */
388 n_UNUSED(signo);
389 siglongjmp(_send_pipejmp, 1);
392 static sigjmp_buf __sendp_actjmp; /* TODO someday.. */
393 static int __sendp_sig; /* TODO someday.. */
394 static sighandler_type __sendp_opipe;
395 static void
396 __sendp_onsig(int sig) /* TODO someday, we won't need it no more */
398 NYD_X; /* Signal handler */
399 __sendp_sig = sig;
400 siglongjmp(__sendp_actjmp, 1);
403 static int
404 sendpart(struct message *zmp, struct mimepart *ip, FILE * volatile obuf,
405 struct n_ignore const *doitp, struct quoteflt *qf,
406 enum sendaction volatile action,
407 char **linedat, size_t *linesize, ui64_t * volatile stats, int level)
409 int volatile rv = 0;
410 struct mime_handler mh;
411 struct str outrest, inrest;
412 char *cp;
413 char const * volatile tmpname = NULL;
414 size_t linelen, cnt;
415 int volatile dostat, term_infd;
416 int c;
417 struct mimepart * volatile np;
418 FILE * volatile ibuf = NULL, * volatile pbuf = obuf,
419 * volatile qbuf = obuf, *origobuf = obuf;
420 enum conversion volatile convert;
421 sighandler_type volatile oldpipe = SIG_DFL;
422 NYD_ENTER;
424 n_UNINIT(term_infd, 0);
425 n_UNINIT(cnt, 0);
427 quoteflt_reset(qf, obuf);
429 #if 0 /* TODO PART_INFO should be displayed here!! search PART_INFO */
430 if(ip->m_mimecontent != MIME_DISCARD && level > 0)
431 _print_part_info(obuf, ip, doitp, level, qf, stats);
432 #endif
434 if (ip->m_mimecontent == MIME_PKCS7) {
435 if (ip->m_multipart &&
436 action != SEND_MBOX && action != SEND_RFC822 && action != SEND_SHOW)
437 goto jheaders_skip;
440 dostat = 0;
441 if (level == 0 && action != SEND_TODISP_PARTS) {
442 if (doitp != NULL) {
443 if (!n_ignore_is_ign(doitp, "status", 6))
444 dostat |= 1;
445 if (!n_ignore_is_ign(doitp, "x-status", 8))
446 dostat |= 2;
447 } else
448 dostat = 3;
451 if ((ibuf = setinput(&mb, (struct message*)ip, NEED_BODY)) == NULL) {
452 rv = -1;
453 goto jleave;
456 if(action == SEND_TODISP || action == SEND_TODISP_ALL ||
457 action == SEND_TODISP_PARTS ||
458 action == SEND_QUOTE || action == SEND_QUOTE_ALL ||
459 action == SEND_TOSRCH)
460 dostat |= 4;
462 cnt = ip->m_size;
464 if (ip->m_mimecontent == MIME_DISCARD)
465 goto jheaders_skip;
467 if (!(ip->m_flag & MNOFROM))
468 while (cnt && (c = getc(ibuf)) != EOF) {
469 cnt--;
470 if (c == '\n')
471 break;
473 convert = (dostat & 4) ? CONV_FROMHDR : CONV_NONE;
475 /* Work the headers */
476 /* C99 */{
477 struct n_string hl, *hlp;
478 size_t lineno = 0;
479 bool_t hstop/*see below, hany*/;
481 hlp = n_string_creat_auto(&hl); /* TODO pool [or, v15: filter!] */
482 /* Reserve three lines, still not enough for references and DKIM etc. */
483 hlp = n_string_reserve(hlp, n_MAX(MIME_LINELEN, MIME_LINELEN_RFC2047) * 3);
485 for(hstop = /*see below hany =*/ FAL0; !hstop;){
486 size_t lcnt;
488 lcnt = cnt;
489 if(fgetline(linedat, linesize, &cnt, &linelen, ibuf, 0) == NULL)
490 break;
491 ++lineno;
492 if (linelen == 0 || (cp = *linedat)[0] == '\n')
493 /* If line is blank, we've reached end of headers */
494 break;
495 if(cp[linelen - 1] == '\n'){
496 cp[--linelen] = '\0';
497 if(linelen == 0)
498 break;
501 /* Are we in a header? */
502 if(hlp->s_len > 0){
503 if(!blankchar(*cp)){
504 fseek(ibuf, -(off_t)(lcnt - cnt), SEEK_CUR);
505 cnt = lcnt;
506 goto jhdrput;
508 goto jhdrpush;
509 }else{
510 /* Pick up the header field if we have one */
511 while((c = *cp) != ':' && !spacechar(c) && c != '\0')
512 ++cp;
513 for(;;){
514 if(!spacechar(c) || c == '\0')
515 break;
516 c = *++cp;
518 if(c != ':'){
519 /* That won't work with MIME when saving etc., before v15 */
520 if (lineno != 1)
521 /* XXX This disturbs, and may happen multiple times, and we
522 * XXX cannot heal it for multipart except for display <v15 */
523 n_err(_("Malformed message: headers and body not separated "
524 "(with empty line)\n"));
525 if(level != 0)
526 dostat &= ~(1 | 2);
527 fseek(ibuf, -(off_t)(lcnt - cnt), SEEK_CUR);
528 cnt = lcnt;
529 break;
532 cp = *linedat;
533 jhdrpush:
534 if(!(dostat & 4)){
535 hlp = n_string_push_buf(hlp, cp, (ui32_t)linelen);
536 hlp = n_string_push_c(hlp, '\n');
537 }else{
538 bool_t lblank, isblank;
540 for(lblank = FAL0, lcnt = 0; lcnt < linelen; ++cp, ++lcnt){
541 char c8;
543 c8 = *cp;
544 if(!(isblank = blankchar(c8)) || !lblank){
545 if((lblank = isblank))
546 c8 = ' ';
547 hlp = n_string_push_c(hlp, c8);
551 continue;
554 jhdrput:
555 /* If it is an ignored header, skip it */
556 *(cp = memchr(hlp->s_dat, ':', hlp->s_len)) = '\0';
557 /* C99 */{
558 size_t i;
560 i = PTR2SIZE(cp - hlp->s_dat);
561 if((doitp != NULL && n_ignore_is_ign(doitp, hlp->s_dat, i)) ||
562 !asccasecmp(hlp->s_dat, "status") ||
563 !asccasecmp(hlp->s_dat, "x-status") ||
564 (action == SEND_MBOX &&
565 (!asccasecmp(hlp->s_dat, "content-length") ||
566 !asccasecmp(hlp->s_dat, "lines")) &&
567 !ok_blook(keep_content_length)))
568 goto jhdrtrunc;
571 /* Dump it */
572 n_COLOUR(
573 if(n_COLOUR_IS_ACTIVE())
574 n_colour_put(n_COLOUR_ID_VIEW_HEADER, hlp->s_dat);
576 *cp = ':';
577 _out(hlp->s_dat, hlp->s_len, obuf, convert, action, qf, stats, NULL,NULL);
578 n_COLOUR(
579 if(n_COLOUR_IS_ACTIVE())
580 n_colour_reset();
582 if(dostat & 4)
583 putc('\n', obuf);
584 /*see below hany = TRU1;*/
586 jhdrtrunc:
587 hlp = n_string_trunc(hlp, 0);
589 hstop = TRU1;
590 if(hlp->s_len > 0)
591 goto jhdrput;
593 /* We've reached end of headers, so eventually force out status: field and
594 * note that we are no longer in header fields */
595 if(dostat & 1){
596 statusput(zmp, obuf, qf, stats);
597 /*see below hany = TRU1;*/
599 if(dostat & 2){
600 xstatusput(zmp, obuf, qf, stats);
601 /*see below hany = TRU1;*/
603 if(/* TODO PART_INFO hany && */ doitp != n_IGNORE_ALL)
604 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
605 } /* C99 */
607 quoteflt_flush(qf);
609 if(ferror(obuf)){
610 rv = -1;
611 goto jleave;
614 jheaders_skip:
615 memset(&mh, 0, sizeof mh);
617 switch (ip->m_mimecontent) {
618 case MIME_822:
619 switch (action) {
620 case SEND_TODISP_PARTS:
621 goto jleave;
622 case SEND_TODISP:
623 case SEND_TODISP_ALL:
624 case SEND_QUOTE:
625 case SEND_QUOTE_ALL:
626 if (ok_blook(rfc822_body_from_)) {
627 if (qf->qf_pfix_len > 0) {
628 size_t i = fwrite(qf->qf_pfix, sizeof *qf->qf_pfix,
629 qf->qf_pfix_len, obuf);
630 if (i == qf->qf_pfix_len && stats != NULL)
631 *stats += i;
633 put_from_(obuf, ip->m_multipart, stats);
635 /* FALLTHRU */
636 case SEND_TOSRCH:
637 case SEND_DECRYPT:
638 goto jmulti;
639 case SEND_TOFILE:
640 case SEND_TOPIPE:
641 put_from_(obuf, ip->m_multipart, stats);
642 /* FALLTHRU */
643 case SEND_MBOX:
644 case SEND_RFC822:
645 case SEND_SHOW:
646 break;
648 break;
649 case MIME_TEXT_HTML:
650 case MIME_TEXT:
651 case MIME_TEXT_PLAIN:
652 switch (action) {
653 case SEND_TODISP:
654 case SEND_TODISP_ALL:
655 case SEND_TODISP_PARTS:
656 case SEND_QUOTE:
657 case SEND_QUOTE_ALL:
658 switch (n_mimetype_handler(&mh, ip, action)) {
659 case MIME_HDL_NULL:
660 if(action != SEND_TODISP_PARTS)
661 break;
662 /* FALLTHRU */
663 case MIME_HDL_MSG:/* TODO these should be part of partinfo! */
664 _out(mh.mh_msg.s, mh.mh_msg.l, obuf, CONV_NONE, SEND_MBOX, qf,
665 stats, NULL, NULL);
666 /* We would print this as plain text, so better force going home */
667 goto jleave;
668 case MIME_HDL_CMD:
669 if(action == SEND_TODISP_PARTS &&
670 (mh.mh_flags & MIME_HDL_COPIOUSOUTPUT))
671 goto jleave;
672 break;
673 case MIME_HDL_TEXT:
674 case MIME_HDL_PTF:
675 if(action == SEND_TODISP_PARTS)
676 goto jleave;
677 break;
678 default:
679 break;
681 /* FALLTRHU */
682 default:
683 break;
685 break;
686 case MIME_DISCARD:
687 if (action != SEND_DECRYPT)
688 goto jleave;
689 break;
690 case MIME_PKCS7:
691 if (action != SEND_MBOX && action != SEND_RFC822 &&
692 action != SEND_SHOW && ip->m_multipart != NULL)
693 goto jmulti;
694 /* FALLTHRU */
695 default:
696 switch (action) {
697 case SEND_TODISP:
698 case SEND_TODISP_ALL:
699 case SEND_TODISP_PARTS:
700 case SEND_QUOTE:
701 case SEND_QUOTE_ALL:
702 switch (n_mimetype_handler(&mh, ip, action)) {
703 default:
704 case MIME_HDL_NULL:
705 if (action != SEND_TODISP && action != SEND_TODISP_ALL &&
706 (level != 0 || cnt))
707 goto jleave;
708 /* FALLTHRU */
709 case MIME_HDL_MSG:/* TODO these should be part of partinfo! */
710 _out(mh.mh_msg.s, mh.mh_msg.l, obuf, CONV_NONE, SEND_MBOX, qf,
711 stats, NULL, NULL);
712 /* We would print this as plain text, so better force going home */
713 goto jleave;
714 case MIME_HDL_CMD:
715 if(action == SEND_TODISP_PARTS){
716 if(mh.mh_flags & MIME_HDL_COPIOUSOUTPUT)
717 goto jleave;
718 else{
719 _print_part_info(obuf, ip, doitp, level, qf, stats);
720 if(!getapproval(_("Run MIME handler for this part?"), FAL0))
721 goto jleave;
724 break;
725 case MIME_HDL_TEXT:
726 case MIME_HDL_PTF:
727 if(action == SEND_TODISP_PARTS)
728 goto jleave;
729 break;
731 break;
732 case SEND_TOFILE:
733 case SEND_TOPIPE:
734 case SEND_TOSRCH:
735 case SEND_DECRYPT:
736 case SEND_MBOX:
737 case SEND_RFC822:
738 case SEND_SHOW:
739 break;
741 break;
742 case MIME_ALTERNATIVE:
743 if ((action == SEND_TODISP || action == SEND_QUOTE) &&
744 !ok_blook(print_alternatives)) {
745 /* XXX This (a) should not remain (b) should be own fun
746 * TODO (despite the fact that v15 will do this completely differently
747 * TODO by having an action-specific "manager" that will traverse the
748 * TODO parsed MIME tree and decide for each part whether it'll be
749 * TODO displayed or not *before* we walk the tree for doing action */
750 struct mpstack {
751 struct mpstack *outer;
752 struct mimepart *mp;
753 } outermost, * volatile curr, * volatile mpsp;
754 bool_t volatile neednl, hadpart;
755 struct n_sigman smalter;
757 (curr = &outermost)->outer = NULL;
758 curr->mp = ip;
759 neednl = hadpart = FAL0;
761 n_SIGMAN_ENTER_SWITCH(&smalter, n_SIGMAN_ALL) {
762 case 0:
763 break;
764 default:
765 rv = -1;
766 goto jalter_leave;
769 for (np = ip->m_multipart;;) {
770 jalter_redo:
771 for (; np != NULL; np = np->m_nextpart) {
772 if (action != SEND_QUOTE && np->m_ct_type_plain != NULL) {
773 if (neednl)
774 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats,
775 NULL, NULL);
776 _print_part_info(obuf, np, doitp, level, qf, stats);
778 neednl = TRU1;
780 switch (np->m_mimecontent) {
781 case MIME_ALTERNATIVE:
782 case MIME_RELATED:
783 case MIME_DIGEST:
784 case MIME_SIGNED:
785 case MIME_ENCRYPTED:
786 case MIME_MULTI:
787 mpsp = salloc(sizeof *mpsp);
788 mpsp->outer = curr;
789 mpsp->mp = np->m_multipart;
790 curr->mp = np;
791 curr = mpsp;
792 np = mpsp->mp;
793 neednl = FAL0;
794 goto jalter_redo;
795 default:
796 if (hadpart)
797 break;
798 switch (n_mimetype_handler(&mh, np, action)) {
799 default:
800 mh.mh_flags = MIME_HDL_NULL;
801 continue; /* break; break; */
802 case MIME_HDL_CMD:
803 if(!(mh.mh_flags & MIME_HDL_COPIOUSOUTPUT)){
804 mh.mh_flags = MIME_HDL_NULL;
805 continue; /* break; break; */
807 /* FALLTHRU */
808 case MIME_HDL_PTF:
809 if (!ok_blook(mime_alternative_favour_rich)) {/* TODO */
810 struct mimepart *x = np;
812 while ((x = x->m_nextpart) != NULL) {
813 struct mime_handler mhx;
815 if (x->m_mimecontent == MIME_TEXT_PLAIN ||
816 n_mimetype_handler(&mhx, x, action) ==
817 MIME_HDL_TEXT)
818 break;
820 if (x != NULL)
821 continue; /* break; break; */
822 goto jalter_plain;
824 /* FALLTHRU */
825 case MIME_HDL_TEXT:
826 break;
828 /* FALLTHRU */
829 case MIME_TEXT_PLAIN:
830 if (hadpart)
831 break;
832 if (ok_blook(mime_alternative_favour_rich)) { /* TODO */
833 struct mimepart *x = np;
835 /* TODO twice TODO, we should dive into /related and
836 * TODO check whether that has rich parts! */
837 while ((x = x->m_nextpart) != NULL) {
838 struct mime_handler mhx;
840 switch (n_mimetype_handler(&mhx, x, action)) {
841 case MIME_HDL_CMD:
842 if(!(mhx.mh_flags & MIME_HDL_COPIOUSOUTPUT))
843 continue;
844 /* FALLTHRU */
845 case MIME_HDL_PTF:
846 break;
847 default:
848 continue;
850 break;
852 if (x != NULL)
853 continue; /* break; break; */
855 jalter_plain:
856 quoteflt_flush(qf);
857 if (action == SEND_QUOTE && hadpart) {
858 struct quoteflt *dummy = quoteflt_dummy();
859 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, dummy, stats,
860 NULL,NULL);
861 quoteflt_flush(dummy);
863 hadpart = TRU1;
864 neednl = FAL0;
865 rv = sendpart(zmp, np, obuf, doitp, qf, action,
866 linedat, linesize, stats, level + 1);
867 quoteflt_reset(qf, origobuf);
869 if (rv < 0)
870 curr = &outermost; /* Cause overall loop termination */
871 break;
875 mpsp = curr->outer;
876 if (mpsp == NULL)
877 break;
878 curr = mpsp;
879 np = curr->mp->m_nextpart;
881 jalter_leave:
882 n_sigman_leave(&smalter, n_SIGMAN_VIPSIGS_NTTYOUT);
883 goto jleave;
885 /* FALLTHRU */
886 case MIME_RELATED:
887 case MIME_DIGEST:
888 case MIME_SIGNED:
889 case MIME_ENCRYPTED:
890 case MIME_MULTI:
891 switch (action) {
892 case SEND_TODISP:
893 case SEND_TODISP_ALL:
894 case SEND_TODISP_PARTS:
895 case SEND_QUOTE:
896 case SEND_QUOTE_ALL:
897 case SEND_TOFILE:
898 case SEND_TOPIPE:
899 case SEND_TOSRCH:
900 case SEND_DECRYPT:
901 jmulti:
902 if ((action == SEND_TODISP || action == SEND_TODISP_ALL) &&
903 ip->m_multipart != NULL &&
904 ip->m_multipart->m_mimecontent == MIME_DISCARD &&
905 ip->m_multipart->m_nextpart == NULL) {
906 char const *x = _("[Missing multipart boundary - use `show' "
907 "to display the raw message]\n");
908 _out(x, strlen(x), obuf, CONV_NONE, SEND_MBOX, qf, stats,
909 NULL,NULL);
912 for (np = ip->m_multipart; np != NULL; np = np->m_nextpart) {
913 bool_t volatile ispipe;
915 if (np->m_mimecontent == MIME_DISCARD && action != SEND_DECRYPT)
916 continue;
918 ispipe = FAL0;
919 switch (action) {
920 case SEND_TOFILE:
921 if (np->m_partstring &&
922 np->m_partstring[0] == '1' && np->m_partstring[1] == '\0')
923 break;
924 stats = NULL;
925 /* TODO Always open multipart on /dev/null, it's a hack to be
926 * TODO able to dive into that structure, and still better
927 * TODO than asking the user for something stupid.
928 * TODO oh, wait, we did ask for a filename for this MIME mail,
929 * TODO and that outer container is useless anyway ;-P */
930 if (np->m_multipart != NULL && np->m_mimecontent != MIME_822) {
931 if ((obuf = Fopen(n_path_devnull, "w")) == NULL)
932 continue;
933 } else if ((obuf = newfile(np, &ispipe)) == NULL)
934 continue;
935 if (!ispipe)
936 break;
937 if (sigsetjmp(_send_pipejmp, 1)) {
938 rv = -1;
939 goto jpipe_close;
941 oldpipe = safe_signal(SIGPIPE, &_send_onpipe);
942 break;
943 case SEND_TODISP:
944 case SEND_TODISP_ALL:
945 if (ip->m_mimecontent != MIME_ALTERNATIVE &&
946 ip->m_mimecontent != MIME_RELATED &&
947 ip->m_mimecontent != MIME_DIGEST &&
948 ip->m_mimecontent != MIME_SIGNED &&
949 ip->m_mimecontent != MIME_ENCRYPTED &&
950 ip->m_mimecontent != MIME_MULTI)
951 break;
952 _print_part_info(obuf, np, doitp, level, qf, stats);
953 break;
954 case SEND_TODISP_PARTS:
955 case SEND_QUOTE:
956 case SEND_QUOTE_ALL:
957 case SEND_MBOX:
958 case SEND_RFC822:
959 case SEND_SHOW:
960 case SEND_TOSRCH:
961 case SEND_DECRYPT:
962 case SEND_TOPIPE:
963 break;
966 quoteflt_flush(qf);
967 if ((action == SEND_QUOTE || action == SEND_QUOTE_ALL) &&
968 np->m_multipart == NULL && ip->m_parent != NULL) {
969 struct quoteflt *dummy = quoteflt_dummy();
970 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, dummy, stats,
971 NULL,NULL);
972 quoteflt_flush(dummy);
974 if (sendpart(zmp, np, obuf, doitp, qf, action, linedat, linesize,
975 stats, level+1) < 0)
976 rv = -1;
977 quoteflt_reset(qf, origobuf);
979 if (action == SEND_QUOTE) {
980 if (ip->m_mimecontent != MIME_RELATED)
981 break;
983 if (action == SEND_TOFILE && obuf != origobuf) {
984 if (!ispipe)
985 Fclose(obuf);
986 else {
987 jpipe_close:
988 safe_signal(SIGPIPE, SIG_IGN);
989 Pclose(obuf, TRU1);
990 safe_signal(SIGPIPE, oldpipe);
994 goto jleave;
995 case SEND_MBOX:
996 case SEND_RFC822:
997 case SEND_SHOW:
998 break;
1000 break;
1003 /* Copy out message body */
1004 if (doitp == n_IGNORE_ALL && level == 0) /* skip final blank line */
1005 --cnt;
1006 switch (ip->m_mime_enc) {
1007 case MIMEE_BIN:
1008 case MIMEE_7B:
1009 case MIMEE_8B:
1010 convert = CONV_NONE;
1011 break;
1012 case MIMEE_QP:
1013 convert = CONV_FROMQP;
1014 break;
1015 case MIMEE_B64:
1016 switch (ip->m_mimecontent) {
1017 case MIME_TEXT:
1018 case MIME_TEXT_PLAIN:
1019 case MIME_TEXT_HTML:
1020 convert = CONV_FROMB64_T;
1021 break;
1022 default:
1023 switch (mh.mh_flags & MIME_HDL_TYPE_MASK) {
1024 case MIME_HDL_TEXT:
1025 case MIME_HDL_PTF:
1026 convert = CONV_FROMB64_T;
1027 break;
1028 default:
1029 convert = CONV_FROMB64;
1030 break;
1032 break;
1034 break;
1035 default:
1036 convert = CONV_NONE;
1039 /* TODO Unless we have filters, ensure iconvd==-1 so that mime.c:fwrite_td()
1040 * TODO cannot mess things up misusing outrest as line buffer */
1041 #ifdef HAVE_ICONV
1042 if (iconvd != (iconv_t)-1) {
1043 n_iconv_close(iconvd);
1044 iconvd = (iconv_t)-1;
1046 #endif
1048 if (action == SEND_DECRYPT || action == SEND_MBOX ||
1049 action == SEND_RFC822 || action == SEND_SHOW)
1050 convert = CONV_NONE;
1051 #ifdef HAVE_ICONV
1052 else if ((action == SEND_TODISP || action == SEND_TODISP_ALL ||
1053 action == SEND_TODISP_PARTS ||
1054 action == SEND_QUOTE || action == SEND_QUOTE_ALL ||
1055 action == SEND_TOSRCH || action == SEND_TOFILE) &&
1056 (ip->m_mimecontent == MIME_TEXT_PLAIN ||
1057 ip->m_mimecontent == MIME_TEXT_HTML ||
1058 ip->m_mimecontent == MIME_TEXT ||
1059 (mh.mh_flags & MIME_HDL_TYPE_MASK) == MIME_HDL_TEXT ||
1060 (mh.mh_flags & MIME_HDL_TYPE_MASK) == MIME_HDL_PTF)) {
1061 char const *tcs;
1063 tcs = ok_vlook(ttycharset);
1064 if (asccasecmp(tcs, ip->m_charset) &&
1065 asccasecmp(ok_vlook(charset_7bit), ip->m_charset)) {
1066 iconvd = n_iconv_open(tcs, ip->m_charset);
1067 if (iconvd == (iconv_t)-1 && n_err_no == n_ERR_INVAL) {
1068 n_err(_("Cannot convert from %s to %s\n"), ip->m_charset, tcs);
1069 /*rv = 1; goto jleave;*/
1073 #endif
1075 switch (mh.mh_flags & MIME_HDL_TYPE_MASK) {
1076 case MIME_HDL_CMD:
1077 if(!(mh.mh_flags & MIME_HDL_COPIOUSOUTPUT) &&
1078 action != SEND_TODISP_PARTS)
1079 goto jmhp_default;
1080 /* FALLTHRU */
1081 case MIME_HDL_PTF:
1082 tmpname = NULL;
1083 qbuf = obuf;
1085 term_infd = n_CHILD_FD_PASS;
1086 if (mh.mh_flags & (MIME_HDL_TMPF | MIME_HDL_NEEDSTERM)) {
1087 enum oflags of;
1089 of = OF_RDWR | OF_REGISTER;
1090 if (!(mh.mh_flags & MIME_HDL_TMPF)) {
1091 term_infd = 0;
1092 mh.mh_flags |= MIME_HDL_TMPF_FILL;
1093 of |= OF_UNLINK;
1094 } else if (mh.mh_flags & MIME_HDL_TMPF_UNLINK)
1095 of |= OF_REGISTER_UNLINK;
1097 if ((pbuf = Ftmp((mh.mh_flags & MIME_HDL_TMPF ? &cp : NULL),
1098 (mh.mh_flags & MIME_HDL_TMPF_FILL ? "mimehdlfill" : "mimehdl"),
1099 of)) == NULL)
1100 goto jesend;
1102 if (mh.mh_flags & MIME_HDL_TMPF) {
1103 tmpname = savestr(cp);
1104 Ftmp_free(&cp);
1107 if (mh.mh_flags & MIME_HDL_TMPF_FILL) {
1108 if (term_infd == 0)
1109 term_infd = fileno(pbuf);
1110 goto jsend;
1114 jpipe_for_real:
1115 pbuf = _pipefile(&mh, ip, n_UNVOLATILE(&qbuf), tmpname, term_infd);
1116 if (pbuf == NULL) {
1117 jesend:
1118 pbuf = qbuf = NULL;
1119 rv = -1;
1120 goto jend;
1121 } else if ((mh.mh_flags & MIME_HDL_NEEDSTERM) && pbuf == (FILE*)-1) {
1122 pbuf = qbuf = NULL;
1123 goto jend;
1125 tmpname = NULL;
1126 action = SEND_TOPIPE;
1127 if (pbuf != qbuf) {
1128 oldpipe = safe_signal(SIGPIPE, &_send_onpipe);
1129 if (sigsetjmp(_send_pipejmp, 1))
1130 goto jend;
1132 break;
1134 default:
1135 jmhp_default:
1136 mh.mh_flags = MIME_HDL_NULL;
1137 pbuf = qbuf = obuf;
1138 break;
1141 jsend:
1143 bool_t volatile eof;
1144 ui32_t save_qf_pfix_len = qf->qf_pfix_len;
1145 ui64_t *save_stats = stats;
1147 if (pbuf != origobuf) {
1148 qf->qf_pfix_len = 0; /* XXX legacy (remove filter instead) */
1149 stats = NULL;
1151 eof = FAL0;
1152 outrest.s = inrest.s = NULL;
1153 outrest.l = inrest.l = 0;
1155 if (pbuf == qbuf) {
1156 __sendp_sig = 0;
1157 __sendp_opipe = safe_signal(SIGPIPE, &__sendp_onsig);
1158 if (sigsetjmp(__sendp_actjmp, 1)) {
1159 n_pstate &= ~n_PS_BASE64_STRIP_CR;/* (but protected by outer sigman) */
1160 if (outrest.s != NULL)
1161 free(outrest.s);
1162 if (inrest.s != NULL)
1163 free(inrest.s);
1164 #ifdef HAVE_ICONV
1165 if (iconvd != (iconv_t)-1)
1166 n_iconv_close(iconvd);
1167 #endif
1168 safe_signal(SIGPIPE, __sendp_opipe);
1169 n_raise(__sendp_sig);
1173 quoteflt_reset(qf, pbuf);
1174 if(dostat & 4)
1175 n_pstate |= n_PS_BASE64_STRIP_CR;
1176 while (!eof && fgetline(linedat, linesize, &cnt, &linelen, ibuf, 0)) {
1177 joutln:
1178 if (_out(*linedat, linelen, pbuf, convert, action, qf, stats, &outrest,
1179 (action & _TD_EOF ? NULL : &inrest)) < 0 || ferror(pbuf)) {
1180 rv = -1; /* XXX Should bail away?! */
1181 break;
1184 if(eof <= FAL0 && rv >= 0 && (outrest.l != 0 || inrest.l != 0)){
1185 linelen = 0;
1186 if(eof || inrest.l == 0)
1187 action |= _TD_EOF;
1188 eof = eof ? TRU1 : TRUM1;
1189 goto joutln;
1191 n_pstate &= ~n_PS_BASE64_STRIP_CR;
1192 action &= ~_TD_EOF;
1194 /* TODO HACK: when sending to the display we yet get fooled if a message
1195 * TODO doesn't end in a newline, because of our input/output 1:1.
1196 * TODO This should be handled automatically by a display filter, then */
1197 if(rv >= 0 && !qf->qf_nl_last &&
1198 (action == SEND_TODISP || action == SEND_TODISP_ALL))
1199 rv = quoteflt_push(qf, "\n", 1);
1201 quoteflt_flush(qf);
1203 if (rv >= 0 && (mh.mh_flags & MIME_HDL_TMPF_FILL)) {
1204 mh.mh_flags &= ~MIME_HDL_TMPF_FILL;
1205 fflush(pbuf);
1206 really_rewind(pbuf);
1207 /* Don't Fclose() the Ftmp() thing due to OF_REGISTER_UNLINK++ */
1208 goto jpipe_for_real;
1211 if (pbuf == qbuf)
1212 safe_signal(SIGPIPE, __sendp_opipe);
1214 if (outrest.s != NULL)
1215 free(outrest.s);
1216 if (inrest.s != NULL)
1217 free(inrest.s);
1219 if (pbuf != origobuf) {
1220 qf->qf_pfix_len = save_qf_pfix_len;
1221 stats = save_stats;
1225 jend:
1226 if (pbuf != qbuf) {
1227 safe_signal(SIGPIPE, SIG_IGN);
1228 Pclose(pbuf, !(mh.mh_flags & MIME_HDL_ASYNC));
1229 safe_signal(SIGPIPE, oldpipe);
1230 if (rv >= 0 && qbuf != NULL && qbuf != obuf)
1231 pipecpy(qbuf, obuf, origobuf, qf, stats);
1233 #ifdef HAVE_ICONV
1234 if (iconvd != (iconv_t)-1)
1235 n_iconv_close(iconvd);
1236 #endif
1237 jleave:
1238 NYD_LEAVE;
1239 return rv;
1242 static FILE *
1243 newfile(struct mimepart *ip, bool_t volatile *ispipe)
1245 struct str in, out;
1246 char *f;
1247 FILE *fp;
1248 NYD_ENTER;
1250 f = ip->m_filename;
1251 *ispipe = FAL0;
1253 if (f != NULL && f != (char*)-1) {
1254 in.s = f;
1255 in.l = strlen(f);
1256 makeprint(&in, &out);
1257 out.l = delctrl(out.s, out.l);
1258 f = savestrbuf(out.s, out.l);
1259 free(out.s);
1262 /* In interactive mode, let user perform all kind of expansions as desired,
1263 * and offer |SHELL-SPEC pipe targets, too */
1264 if (n_psonce & n_PSO_INTERACTIVE) {
1265 struct str prompt;
1266 struct n_string shou, *shoup;
1267 char *f2, *f3;
1269 shoup = n_string_creat_auto(&shou);
1271 /* TODO Generic function which asks for filename.
1272 * TODO If the current part is the first textpart the target
1273 * TODO is implicit from outer `write' etc! */
1274 /* I18N: Filename input prompt with file type indication */
1275 str_concat_csvl(&prompt, _("Enter filename for part "),
1276 (ip->m_partstring != NULL ? ip->m_partstring : n_qm),
1277 " (", ip->m_ct_type_plain, "): ", NULL);
1278 jgetname:
1279 f2 = n_go_input_cp(n_GO_INPUT_CTX_DEFAULT | n_GO_INPUT_HIST_ADD,
1280 prompt.s, ((f != (char*)-1 && f != NULL)
1281 ? n_shexp_quote_cp(f, FAL0) : NULL));
1282 if(f2 != NULL){
1283 in.s = n_UNCONST(f2);
1284 in.l = UIZ_MAX;
1285 if((n_shexp_parse_token((n_SHEXP_PARSE_TRUNC |
1286 n_SHEXP_PARSE_TRIM_SPACE | n_SHEXP_PARSE_TRIM_IFSSPACE |
1287 n_SHEXP_PARSE_LOG | n_SHEXP_PARSE_IGNORE_EMPTY),
1288 shoup, &in, NULL
1289 ) & (n_SHEXP_STATE_STOP |
1290 n_SHEXP_STATE_OUTPUT | n_SHEXP_STATE_ERR_MASK)
1291 ) != (n_SHEXP_STATE_STOP | n_SHEXP_STATE_OUTPUT))
1292 goto jgetname;
1293 f2 = n_string_cp(shoup);
1295 if (f2 == NULL || *f2 == '\0') {
1296 if (n_poption & n_PO_D_V)
1297 n_err(_("... skipping this\n"));
1298 n_string_gut(shoup);
1299 fp = NULL;
1300 goto jleave;
1303 if (*f2 == '|')
1304 /* Pipes are expanded by the shell */
1305 f = f2;
1306 else if ((f3 = fexpand(f2, FEXP_LOCAL | FEXP_NVAR)) == NULL)
1307 /* (Error message written by fexpand()) */
1308 goto jgetname;
1309 else
1310 f = f3;
1312 n_string_gut(shoup);
1315 if (f == NULL || f == (char*)-1 || *f == '\0')
1316 fp = NULL;
1317 else if (n_psonce & n_PSO_INTERACTIVE) {
1318 if (*f == '|') {
1319 fp = Popen(&f[1], "w", ok_vlook(SHELL), NULL, 1);
1320 if (!(*ispipe = (fp != NULL)))
1321 n_perr(f, 0);
1322 } else if ((fp = Fopen(f, "w")) == NULL)
1323 n_err(_("Cannot open %s\n"), n_shexp_quote_cp(f, FAL0));
1324 } else {
1325 /* Be very picky in non-interactive mode: actively disallow pipes,
1326 * prevent directory separators, and any filename member that would
1327 * become expanded by the shell if the name would be echo(1)ed */
1328 if(anyof(f, "/" n_SHEXP_MAGIC_PATH_CHARS)){
1329 char c;
1331 for(out.s = salloc((strlen(f) * 3) +1), out.l = 0; (c = *f++) != '\0';)
1332 if(strchr("/" n_SHEXP_MAGIC_PATH_CHARS, c)){
1333 out.s[out.l++] = '%';
1334 n_c_to_hex_base16(&out.s[out.l], c);
1335 out.l += 2;
1336 }else
1337 out.s[out.l++] = c;
1338 out.s[out.l] = '\0';
1339 f = out.s;
1342 /* Avoid overwriting of existing files */
1343 while((fp = Fopen(f, "wx")) == NULL){
1344 int e;
1346 if((e = n_err_no) != n_ERR_EXIST){
1347 n_err(_("Cannot open %s: %s\n"),
1348 n_shexp_quote_cp(f, FAL0), n_err_to_doc(e));
1349 break;
1352 if(ip->m_partstring != NULL)
1353 f = savecatsep(f, '#', ip->m_partstring);
1354 else
1355 f = savecat(f, "#.");
1358 jleave:
1359 NYD_LEAVE;
1360 return fp;
1363 static void
1364 pipecpy(FILE *pipebuf, FILE *outbuf, FILE *origobuf, struct quoteflt *qf,
1365 ui64_t *stats)
1367 char *line = NULL; /* TODO line pool */
1368 size_t linesize = 0, linelen, cnt;
1369 ssize_t all_sz, sz;
1370 NYD_ENTER;
1372 fflush(pipebuf);
1373 rewind(pipebuf);
1374 cnt = (size_t)fsize(pipebuf);
1375 all_sz = 0;
1377 quoteflt_reset(qf, outbuf);
1378 while (fgetline(&line, &linesize, &cnt, &linelen, pipebuf, 0) != NULL) {
1379 if ((sz = quoteflt_push(qf, line, linelen)) < 0)
1380 break;
1381 all_sz += sz;
1383 if ((sz = quoteflt_flush(qf)) > 0)
1384 all_sz += sz;
1385 if (line)
1386 free(line);
1388 if (all_sz > 0 && outbuf == origobuf && stats != NULL)
1389 *stats += all_sz;
1390 Fclose(pipebuf);
1391 NYD_LEAVE;
1394 static void
1395 statusput(const struct message *mp, FILE *obuf, struct quoteflt *qf,
1396 ui64_t *stats)
1398 char statout[3], *cp = statout;
1399 NYD_ENTER;
1401 if (mp->m_flag & MREAD)
1402 *cp++ = 'R';
1403 if (!(mp->m_flag & MNEW))
1404 *cp++ = 'O';
1405 *cp = 0;
1406 if (statout[0]) {
1407 int i = fprintf(obuf, "%.*sStatus: %s\n", (int)qf->qf_pfix_len,
1408 (qf->qf_pfix_len > 0 ? qf->qf_pfix : 0), statout);
1409 if (i > 0 && stats != NULL)
1410 *stats += i;
1412 NYD_LEAVE;
1415 static void
1416 xstatusput(const struct message *mp, FILE *obuf, struct quoteflt *qf,
1417 ui64_t *stats)
1419 char xstatout[4];
1420 char *xp = xstatout;
1421 NYD_ENTER;
1423 if (mp->m_flag & MFLAGGED)
1424 *xp++ = 'F';
1425 if (mp->m_flag & MANSWERED)
1426 *xp++ = 'A';
1427 if (mp->m_flag & MDRAFTED)
1428 *xp++ = 'T';
1429 *xp = 0;
1430 if (xstatout[0]) {
1431 int i = fprintf(obuf, "%.*sX-Status: %s\n", (int)qf->qf_pfix_len,
1432 (qf->qf_pfix_len > 0 ? qf->qf_pfix : 0), xstatout);
1433 if (i > 0 && stats != NULL)
1434 *stats += i;
1436 NYD_LEAVE;
1439 static void
1440 put_from_(FILE *fp, struct mimepart *ip, ui64_t *stats)
1442 char const *froma, *date, *nl;
1443 int i;
1444 NYD_ENTER;
1446 if (ip != NULL && ip->m_from != NULL) {
1447 froma = ip->m_from;
1448 date = fakedate(ip->m_time);
1449 nl = "\n";
1450 } else {
1451 froma = ok_vlook(LOGNAME);
1452 date = time_current.tc_ctime;
1453 nl = n_empty;
1456 n_COLOUR(
1457 if(n_COLOUR_IS_ACTIVE())
1458 n_colour_put(n_COLOUR_ID_VIEW_FROM_, NULL);
1460 i = fprintf(fp, "From %s %s%s", froma, date, nl);
1461 n_COLOUR(
1462 if(n_COLOUR_IS_ACTIVE())
1463 n_colour_reset();
1465 if (i > 0 && stats != NULL)
1466 *stats += i;
1467 NYD_LEAVE;
1470 FL int
1471 sendmp(struct message *mp, FILE *obuf, struct n_ignore const *doitp,
1472 char const *prefix, enum sendaction action, ui64_t *stats)
1474 struct n_sigman linedat_protect;
1475 struct quoteflt qf;
1476 FILE *ibuf;
1477 enum mime_parse_flags mpf;
1478 struct mimepart *ip;
1479 size_t linesize, cnt, sz, i;
1480 char *linedat;
1481 int rv, c;
1482 NYD_ENTER;
1484 time_current_update(&time_current, TRU1);
1485 rv = -1;
1486 linedat = NULL;
1487 linesize = 0;
1488 quoteflt_init(&qf, prefix);
1490 n_SIGMAN_ENTER_SWITCH(&linedat_protect, n_SIGMAN_ALL){
1491 case 0:
1492 break;
1493 default:
1494 goto jleave;
1497 if (mp == dot && action != SEND_TOSRCH)
1498 n_pstate |= n_PS_DID_PRINT_DOT;
1499 if (stats != NULL)
1500 *stats = 0;
1502 /* First line is the From_ line, so no headers there to worry about */
1503 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
1504 goto jleave;
1506 cnt = mp->m_size;
1507 sz = 0;
1509 bool_t nozap;
1510 char const *cpre = n_empty, *csuf = n_empty;
1512 #ifdef HAVE_COLOUR
1513 if(n_COLOUR_IS_ACTIVE()){
1514 struct n_colour_pen *cpen;
1515 struct str const *sp;
1517 cpen = n_colour_pen_create(n_COLOUR_ID_VIEW_FROM_,NULL);
1518 if((sp = n_colour_pen_to_str(cpen)) != NULL){
1519 cpre = sp->s;
1520 sp = n_colour_reset_to_str();
1521 if(sp != NULL)
1522 csuf = sp->s;
1525 #endif
1527 nozap = (doitp != n_IGNORE_ALL && doitp != n_IGNORE_FWD &&
1528 action != SEND_RFC822 &&
1529 !n_ignore_is_ign(doitp, "from_", sizeof("from_") -1));
1530 if (mp->m_flag & MNOFROM) {
1531 if (nozap)
1532 sz = fprintf(obuf, "%s%.*sFrom %s %s%s\n",
1533 cpre, (int)qf.qf_pfix_len,
1534 (qf.qf_pfix_len != 0 ? qf.qf_pfix : n_empty), fakefrom(mp),
1535 fakedate(mp->m_time), csuf);
1536 } else if (nozap) {
1537 if (qf.qf_pfix_len > 0) {
1538 i = fwrite(qf.qf_pfix, sizeof *qf.qf_pfix, qf.qf_pfix_len, obuf);
1539 if (i != qf.qf_pfix_len)
1540 goto jleave;
1541 sz += i;
1543 #ifdef HAVE_COLOUR
1544 if(*cpre != '\0'){
1545 fputs(cpre, obuf);
1546 cpre = (char const*)0x1;
1548 #endif
1550 while (cnt > 0 && (c = getc(ibuf)) != EOF) {
1551 #ifdef HAVE_COLOUR
1552 if(c == '\n' && *csuf != '\0'){
1553 cpre = (char const*)0x1;
1554 fputs(csuf, obuf);
1556 #endif
1557 putc(c, obuf);
1558 ++sz;
1559 --cnt;
1560 if (c == '\n')
1561 break;
1564 #ifdef HAVE_COLOUR
1565 if(*csuf != '\0' && cpre != (char const*)0x1 && *cpre != '\0')
1566 fputs(csuf, obuf);
1567 #endif
1568 } else {
1569 while (cnt > 0 && (c = getc(ibuf)) != EOF) {
1570 --cnt;
1571 if (c == '\n')
1572 break;
1576 if (sz > 0 && stats != NULL)
1577 *stats += sz;
1579 mpf = MIME_PARSE_NONE;
1580 if (action != SEND_MBOX && action != SEND_RFC822 && action != SEND_SHOW)
1581 mpf |= MIME_PARSE_PARTS | MIME_PARSE_DECRYPT;
1582 if ((ip = mime_parse_msg(mp, mpf)) == NULL)
1583 goto jleave;
1585 rv = sendpart(mp, ip, obuf, doitp, &qf, action, &linedat, &linesize,
1586 stats, 0);
1588 n_sigman_cleanup_ping(&linedat_protect);
1589 jleave:
1590 n_pstate &= ~n_PS_BASE64_STRIP_CR;
1591 quoteflt_destroy(&qf);
1592 if(linedat != NULL)
1593 free(linedat);
1594 NYD_LEAVE;
1595 n_sigman_leave(&linedat_protect, n_SIGMAN_VIPSIGS_NTTYOUT);
1596 return rv;
1599 /* s-it-mode */