n_idna_to_ascii(): add support for idnkit 2.3
[s-mailx.git] / mime.c
blobb46b4d5b1ba94f754c014d3e06fda2637b77145d
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ MIME support functions.
3 *@ TODO Complete rewrite.
5 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
6 * Copyright (c) 2012 - 2018 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
7 */
8 /*
9 * Copyright (c) 2000
10 * Gunnar Ritter. All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by Gunnar Ritter
23 * and his contributors.
24 * 4. Neither the name of Gunnar Ritter nor the names of his contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY GUNNAR RITTER AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL GUNNAR RITTER OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
40 #undef n_FILE
41 #define n_FILE mime
43 #ifndef HAVE_AMALGAMATION
44 # include "nail.h"
45 #endif
47 /* Don't ask, but it keeps body and soul together */
48 enum a_mime_structure_hack{
49 a_MIME_SH_NONE,
50 a_MIME_SH_COMMENT,
51 a_MIME_SH_QUOTE
54 static char *_cs_iter_base, *_cs_iter;
55 #ifdef HAVE_ICONV
56 # define _CS_ITER_GET() \
57 ((_cs_iter != NULL) ? _cs_iter : ok_vlook(CHARSET_8BIT_OKEY))
58 #else
59 # define _CS_ITER_GET() ((_cs_iter != NULL) ? _cs_iter : ok_vlook(ttycharset))
60 #endif
61 #define _CS_ITER_STEP() _cs_iter = n_strsep(&_cs_iter_base, ',', TRU1)
63 /* Is 7-bit enough? */
64 #ifdef HAVE_ICONV
65 static bool_t _has_highbit(char const *s);
66 static bool_t _name_highbit(struct name *np);
67 #endif
69 /* fwrite(3) while checking for displayability */
70 static ssize_t _fwrite_td(struct str const *input,
71 bool_t failiconv, enum tdflags flags,
72 struct str *outrest, struct quoteflt *qf);
74 /* Convert header fields to RFC 2047 format and write to the file fo */
75 static ssize_t mime_write_tohdr(struct str *in, FILE *fo,
76 size_t *colp, enum a_mime_structure_hack msh);
78 #ifdef HAVE_ICONV
79 static ssize_t a_mime__convhdra(struct str *inp, FILE *fp, size_t *colp,
80 enum a_mime_structure_hack msh);
81 #else
82 # define a_mime__convhdra(S,F,C,MSH) mime_write_tohdr(S, F, C, MSH)
83 #endif
85 /* Write an address to a header field */
86 static ssize_t mime_write_tohdr_a(struct str *in, FILE *f,
87 size_t *colp, enum a_mime_structure_hack msh);
89 /* Append to buf, handling resizing */
90 static void _append_str(char **buf, size_t *sz, size_t *pos,
91 char const *str, size_t len);
92 static void _append_conv(char **buf, size_t *sz, size_t *pos,
93 char const *str, size_t len);
95 #ifdef HAVE_ICONV
96 static bool_t
97 _has_highbit(char const *s)
99 bool_t rv = TRU1;
100 NYD_ENTER;
102 if (s) {
104 if ((ui8_t)*s & 0x80)
105 goto jleave;
106 while (*s++ != '\0');
108 rv = FAL0;
109 jleave:
110 NYD_LEAVE;
111 return rv;
114 static bool_t
115 _name_highbit(struct name *np)
117 bool_t rv = TRU1;
118 NYD_ENTER;
120 while (np) {
121 if (_has_highbit(np->n_name) || _has_highbit(np->n_fullname))
122 goto jleave;
123 np = np->n_flink;
125 rv = FAL0;
126 jleave:
127 NYD_LEAVE;
128 return rv;
130 #endif /* HAVE_ICONV */
132 static sigjmp_buf __mimefwtd_actjmp; /* TODO someday.. */
133 static int __mimefwtd_sig; /* TODO someday.. */
134 static sighandler_type __mimefwtd_opipe;
135 static void
136 __mimefwtd_onsig(int sig) /* TODO someday, we won't need it no more */
138 NYD_X; /* Signal handler */
139 __mimefwtd_sig = sig;
140 siglongjmp(__mimefwtd_actjmp, 1);
143 static ssize_t
144 _fwrite_td(struct str const *input, bool_t failiconv, enum tdflags flags,
145 struct str *outrest, struct quoteflt *qf)
147 /* TODO note: after send/MIME layer rewrite we will have a string pool
148 * TODO so that memory allocation count drops down massively; for now,
149 * TODO v14.* that is, we pay a lot & heavily depend on the allocator */
150 /* TODO well if we get a broken pipe here, and it happens to
151 * TODO happen pretty easy when sleeping in a full pipe buffer,
152 * TODO then the current codebase performs longjump away;
153 * TODO this leaves memory leaks behind ('think up to 3 per,
154 * TODO dep. upon alloca availability). For this to be fixed
155 * TODO we either need to get rid of the longjmp()s (tm) or
156 * TODO the storage must come from the outside or be tracked
157 * TODO in a carrier struct. Best both. But storage reuse
158 * TODO would be a bigbig win besides */
159 /* *input* _may_ point to non-modifyable buffer; but even then it only
160 * needs to be dup'ed away if we have to transform the content */
161 struct str in, out;
162 ssize_t rv;
163 NYD_ENTER;
164 n_UNUSED(failiconv);
165 n_UNUSED(outrest);
167 in = *input;
168 out.s = NULL;
169 out.l = 0;
171 #ifdef HAVE_ICONV
172 if ((flags & TD_ICONV) && iconvd != (iconv_t)-1) {
173 int err;
174 char *buf;
176 buf = NULL;
178 if (outrest != NULL && outrest->l > 0) {
179 in.l = outrest->l + input->l;
180 in.s = buf = smalloc(in.l +1);
181 memcpy(in.s, outrest->s, outrest->l);
182 memcpy(&in.s[outrest->l], input->s, input->l);
183 outrest->l = 0;
186 rv = 0;
187 if((err = n_iconv_str(iconvd,
188 (failiconv ? n_ICONV_NONE : n_ICONV_UNIDEFAULT),
189 &out, &in, &in)) != 0){
190 if(err != n_ERR_INVAL)
191 n_iconv_reset(iconvd);
193 if(outrest != NULL && in.l > 0){
194 /* Incomplete multibyte at EOF is special xxx _INVAL? */
195 if (flags & _TD_EOF) {
196 out.s = srealloc(out.s, out.l + sizeof(n_unirepl));
197 if(n_psonce & n_PSO_UNICODE){
198 memcpy(&out.s[out.l], n_unirepl, sizeof(n_unirepl) -1);
199 out.l += sizeof(n_unirepl) -1;
200 }else
201 out.s[out.l++] = '?';
202 } else
203 n_str_add(outrest, &in);
204 }else
205 rv = -1;
207 in = out;
208 out.l = 0;
209 out.s = NULL;
210 flags &= ~_TD_BUFCOPY;
212 if(buf != NULL)
213 n_free(buf);
214 if(rv < 0)
215 goto jleave;
216 }else
217 #endif /* HAVE_ICONV */
218 /* Else, if we will modify the data bytes and thus introduce the potential
219 * of messing up multibyte sequences which become splitted over buffer
220 * boundaries TODO and unless we don't have our filter chain which will
221 * TODO make these hacks go by, buffer data until we see a NL */
222 if((flags & (TD_ISPR | TD_DELCTRL)) && outrest != NULL &&
223 #ifdef HAVE_ICONV
224 iconvd == (iconv_t)-1 &&
225 #endif
226 (!(flags & _TD_EOF) || outrest->l > 0)
228 size_t i;
229 char *cp;
231 for (cp = &in.s[in.l]; cp > in.s && cp[-1] != '\n'; --cp)
233 i = PTR2SIZE(cp - in.s);
235 if (i != in.l) {
236 if (i > 0) {
237 n_str_assign_buf(outrest, cp, in.l - i);
238 cp = smalloc(i +1);
239 memcpy(cp, in.s, in.l = i);
240 (in.s = cp)[in.l = i] = '\0';
241 flags &= ~_TD_BUFCOPY;
242 } else {
243 n_str_add_buf(outrest, input->s, input->l);
244 rv = 0;
245 goto jleave;
250 if (flags & TD_ISPR)
251 makeprint(&in, &out);
252 else if (flags & _TD_BUFCOPY)
253 n_str_dup(&out, &in);
254 else
255 out = in;
256 if (flags & TD_DELCTRL)
257 out.l = delctrl(out.s, out.l);
259 __mimefwtd_sig = 0;
260 __mimefwtd_opipe = safe_signal(SIGPIPE, &__mimefwtd_onsig);
261 if (sigsetjmp(__mimefwtd_actjmp, 1)) {
262 rv = 0;
263 goto j__sig;
266 rv = quoteflt_push(qf, out.s, out.l);
268 j__sig:
269 if (out.s != in.s)
270 n_free(out.s);
271 if (in.s != input->s)
272 n_free(in.s);
273 safe_signal(SIGPIPE, __mimefwtd_opipe);
274 if (__mimefwtd_sig != 0)
275 n_raise(__mimefwtd_sig);
276 jleave:
277 NYD_LEAVE;
278 return rv;
281 static ssize_t
282 mime_write_tohdr(struct str *in, FILE *fo, size_t *colp,
283 enum a_mime_structure_hack msh)
285 /* TODO mime_write_tohdr(): we don't know the name of our header->maxcol..
286 * TODO MIME/send layer rewrite: more available state!!
287 * TODO Because of this we cannot make a difference in between structured
288 * TODO and unstructured headers (RFC 2047, 5. (2))
289 * TODO This means, e.g., that this gets called multiple times for a
290 * TODO structured header and always starts thinking it is at column 0.
291 * TODO I.e., it may get called for only the content of a comment etc.,
292 * TODO not knowing anything of its context.
293 * TODO Instead we should have a list of header body content tokens,
294 * TODO convert them, and then dump the converted tokens, breaking lines.
295 * TODO I.e., get rid of convhdra, mime_write_tohdr_a and such...
296 * TODO Somewhen, the following should produce smooth stuff:
297 * TODO ' "Hallo\"," Dr. Backe "Bl\"ö\"d" (Gell) <ha@llöch.en>
298 * TODO "Nochm\"a\"l"<ta@tu.da>(Dümm)'
299 * TODO NOT MULTIBYTE SAFE IF AN ENCODED WORD HAS TO BE SPLITTED!
300 * TODO To be better we had to mbtowc_l() (non-std! and no locale!!) and
301 * TODO work char-wise! -> S-CText..
302 * TODO The real problem for STD compatibility is however that "in" is
303 * TODO already iconv(3) encoded to the target character set! We could
304 * TODO also solve it (very expensively!) if we would narrow down to an
305 * TODO encoded word and then iconv(3)+MIME encode in one go, in which
306 * TODO case multibyte errors could be catched! */
307 enum {
308 /* Maximum line length */
309 a_MAXCOL_NENC = MIME_LINELEN,
310 a_MAXCOL = MIME_LINELEN_RFC2047
313 struct str cout, cin;
314 enum {
315 _FIRST = 1<<0, /* Nothing written yet, start of string */
316 _MSH_NOTHING = 1<<1, /* Now, really: nothing at all has been written */
317 a_ANYENC = 1<<2, /* We have RFC 2047 anything at least once */
318 _NO_QP = 1<<3, /* No quoted-printable allowed */
319 _NO_B64 = 1<<4, /* Ditto, base64 */
320 _ENC_LAST = 1<<5, /* Last round generated encoded word */
321 _SHOULD_BEE = 1<<6, /* Avoid lines longer than SHOULD via encoding */
322 _RND_SHIFT = 7,
323 _RND_MASK = (1<<_RND_SHIFT) - 1,
324 _SPACE = 1<<(_RND_SHIFT+1), /* Leading whitespace */
325 _8BIT = 1<<(_RND_SHIFT+2), /* High bit set */
326 _ENCODE = 1<<(_RND_SHIFT+3), /* Need encoding */
327 _ENC_B64 = 1<<(_RND_SHIFT+4), /* - let it be base64 */
328 _OVERLONG = 1<<(_RND_SHIFT+5) /* Temporarily rised limit */
329 } flags;
330 char const *cset7, *cset8, *wbot, *upper, *wend, *wcur;
331 ui32_t cset7_len, cset8_len;
332 size_t col, i, j;
333 ssize_t sz;
335 NYD_ENTER;
337 cout.s = NULL, cout.l = 0;
338 cset7 = ok_vlook(charset_7bit);
339 cset7_len = (ui32_t)strlen(cset7);
340 cset8 = _CS_ITER_GET(); /* TODO MIME/send layer: iter active? iter! else */
341 cset8_len = (ui32_t)strlen(cset8);
343 flags = _FIRST;
344 if(msh != a_MIME_SH_NONE)
345 flags |= _MSH_NOTHING;
347 /* RFC 1468, "MIME Considerations":
348 * ISO-2022-JP may also be used in MIME Part 2 headers. The "B"
349 * encoding should be used with ISO-2022-JP text. */
350 /* TODO of course, our current implementation won't deal properly with
351 * TODO any stateful encoding at all... (the standard says each encoded
352 * TODO word must include all necessary reset sequences..., i.e., each
353 * TODO encoded word must be a self-contained iconv(3) life cycle) */
354 if (!asccasecmp(cset8, "iso-2022-jp") || mime_enc_target() == MIMEE_B64)
355 flags |= _NO_QP;
357 wbot = in->s;
358 upper = wbot + in->l;
359 sz = 0;
361 if(colp == NULL || (col = *colp) == 0)
362 col = sizeof("Mail-Followup-To: ") -1; /* TODO dreadful thing */
364 /* The user may specify empy quoted-strings or comments, keep them! */
365 if(wbot == upper) {
366 if(flags & _MSH_NOTHING){
367 flags &= ~_MSH_NOTHING;
368 putc((msh == a_MIME_SH_COMMENT ? '(' : '"'), fo);
369 sz = 1;
370 ++col;
372 } else for (; wbot < upper; flags &= ~_FIRST, wbot = wend) {
373 flags &= _RND_MASK;
374 wcur = wbot;
375 while (wcur < upper && whitechar(*wcur)) {
376 flags |= _SPACE;
377 ++wcur;
380 /* Any occurrence of whitespace resets prevention of lines >SHOULD via
381 * enforced encoding (xxx SHOULD, but.. encoding is expensive!!) */
382 if (flags & _SPACE)
383 flags &= ~_SHOULD_BEE;
385 /* Data ends with WS - dump it and done.
386 * Also, if we have seen multiple successive whitespace characters, then
387 * if there was no encoded word last, i.e., if we can simply take them
388 * over to the output as-is, keep one WS for possible later separation
389 * purposes and simply print the others as-is, directly! */
390 if (wcur == upper) {
391 wend = wcur;
392 goto jnoenc_putws;
394 if ((flags & (_ENC_LAST | _SPACE)) == _SPACE && wcur - wbot > 1) {
395 wend = wcur - 1;
396 goto jnoenc_putws;
399 /* Skip over a word to next non-whitespace, keep track along the way
400 * whether our 7-bit charset suffices to represent the data */
401 for (wend = wcur; wend < upper; ++wend) {
402 if (whitechar(*wend))
403 break;
404 if ((uc_i)*wend & 0x80)
405 flags |= _8BIT;
408 /* Decide whether the range has to become encoded or not */
409 i = PTR2SIZE(wend - wcur);
410 j = mime_enc_mustquote(wcur, i, MIMEEF_ISHEAD);
411 /* If it just cannot fit on a SHOULD line length, force encode */
412 if (i > a_MAXCOL_NENC) {
413 flags |= _SHOULD_BEE; /* (Sigh: SHOULD only, not MUST..) */
414 goto j_beejump;
416 if ((flags & _SHOULD_BEE) || j > 0) {
417 j_beejump:
418 flags |= _ENCODE;
419 /* Use base64 if requested or more than 50% -37.5-% of the bytes of
420 * the string need to be encoded */
421 if ((flags & _NO_QP) || j >= i >> 1)/*(i >> 2) + (i >> 3))*/
422 flags |= _ENC_B64;
424 DBG( if (flags & _8BIT) assert(flags & _ENCODE); )
426 if (!(flags & _ENCODE)) {
427 /* Encoded word produced, but no linear whitespace for necessary RFC
428 * 2047 separation? Generate artificial data (bad standard!) */
429 if ((flags & (_ENC_LAST | _SPACE)) == _ENC_LAST) {
430 if (col >= a_MAXCOL) {
431 putc('\n', fo);
432 ++sz;
433 col = 0;
435 if(flags & _MSH_NOTHING){
436 flags &= ~_MSH_NOTHING;
437 putc((msh == a_MIME_SH_COMMENT ? '(' : '"'), fo);
438 ++sz;
439 ++col;
441 putc(' ', fo);
442 ++sz;
443 ++col;
446 jnoenc_putws:
447 flags &= ~_ENC_LAST;
449 /* todo No effort here: (1) v15.0 has to bring complete rewrite,
450 * todo (2) the standard is braindead and (3) usually this is one
451 * todo word only, and why be smarter than the standard? */
452 jnoenc_retry:
453 i = PTR2SIZE(wend - wbot);
454 if (i + col + ((flags & _MSH_NOTHING) != 0) <=
455 (flags & _OVERLONG ? MIME_LINELEN_MAX
456 : (flags & a_ANYENC ? a_MAXCOL : a_MAXCOL_NENC))) {
457 if(flags & _MSH_NOTHING){
458 flags &= ~_MSH_NOTHING;
459 putc((msh == a_MIME_SH_COMMENT ? '(' : '"'), fo);
460 ++sz;
461 ++col;
463 i = fwrite(wbot, sizeof *wbot, i, fo);
464 sz += i;
465 col += i;
466 continue;
469 /* Doesn't fit, try to break the line first; */
470 if (col > 1) {
471 putc('\n', fo);
472 if (whitechar(*wbot)) {
473 putc((uc_i)*wbot, fo);
474 ++wbot;
475 } else
476 putc(' ', fo); /* Bad standard: artificial data! */
477 sz += 2;
478 col = 1;
479 if(flags & _MSH_NOTHING){
480 flags &= ~_MSH_NOTHING;
481 putc((msh == a_MIME_SH_COMMENT ? '(' : '"'), fo);
482 ++sz;
483 ++col;
485 flags |= _OVERLONG;
486 goto jnoenc_retry;
489 /* It is so long that it needs to be broken, effectively causing
490 * artificial spaces to be inserted (bad standard), yuck */
491 /* todo This is not multibyte safe, as above; and completely stupid
492 * todo P.S.: our _SHOULD_BEE prevents these cases in the meanwhile */
493 /* FIXME n_PSO_UNICODE and parse using UTF-8 sync possibility! */
494 wcur = wbot + MIME_LINELEN_MAX - 8;
495 while (wend > wcur)
496 wend -= 4;
497 goto jnoenc_retry;
498 } else {
499 /* Encoding to encoded word(s); deal with leading whitespace, place
500 * a separator first as necessary: encoded words must always be
501 * separated from text and other encoded words with linear WS.
502 * And if an encoded word was last, intermediate whitespace must
503 * also be encoded, otherwise it would get stripped away! */
504 wcur = n_UNCONST(n_empty);
505 if ((flags & (_ENC_LAST | _SPACE)) != _SPACE) {
506 /* Reinclude whitespace */
507 flags &= ~_SPACE;
508 /* We don't need to place a separator at the very beginning */
509 if (!(flags & _FIRST))
510 wcur = n_UNCONST(" ");
511 } else
512 wcur = wbot++;
514 flags |= a_ANYENC | _ENC_LAST;
515 n_pstate |= n_PS_HEADER_NEEDED_MIME;
517 /* RFC 2047:
518 * An 'encoded-word' may not be more than 75 characters long,
519 * including 'charset', 'encoding', 'encoded-text', and
520 * delimiters. If it is desirable to encode more text than will
521 * fit in an 'encoded-word' of 75 characters, multiple
522 * 'encoded-word's (separated by CRLF SPACE) may be used.
524 * While there is no limit to the length of a multiple-line
525 * header field, each line of a header field that contains one
526 * or more 'encoded-word's is limited to 76 characters */
527 jenc_retry:
528 cin.s = n_UNCONST(wbot);
529 cin.l = PTR2SIZE(wend - wbot);
531 /* C99 */{
532 struct str *xout;
534 if(flags & _ENC_B64)
535 xout = b64_encode(&cout, &cin, B64_ISHEAD | B64_ISENCWORD);
536 else
537 xout = qp_encode(&cout, &cin, QP_ISHEAD | QP_ISENCWORD);
538 if(xout == NULL){
539 sz = -1;
540 break;
542 j = xout->l;
544 /* (Avoid trigraphs in the RFC 2047 placeholder..) */
545 i = j + (flags & _8BIT ? cset8_len : cset7_len) + sizeof("=!!B!!=") -1;
546 if (*wcur != '\0')
547 ++i;
549 jenc_retry_same:
550 /* Unfortunately RFC 2047 explicitly disallows encoded words to be
551 * longer (just like RFC 5322's "a line SHOULD fit in 78 but MAY be
552 * 998 characters long"), so we cannot use the _OVERLONG mechanism,
553 * even though all tested mailers seem to support it */
554 if (i + col <= (/*flags & _OVERLONG ? MIME_LINELEN_MAX :*/ a_MAXCOL)) {
555 if(flags & _MSH_NOTHING){
556 flags &= ~_MSH_NOTHING;
557 putc((msh == a_MIME_SH_COMMENT ? '(' : '"'), fo);
558 ++sz;
559 ++col;
561 fprintf(fo, "%.1s=?%s?%c?%.*s?=",
562 wcur, (flags & _8BIT ? cset8 : cset7),
563 (flags & _ENC_B64 ? 'B' : 'Q'),
564 (int)cout.l, cout.s);
565 sz += i;
566 col += i;
567 continue;
570 /* Doesn't fit, try to break the line first */
571 /* TODO I've commented out the _FIRST test since we (1) cannot do
572 * TODO _OVERLONG since (MUAs support but) the standard disallows,
573 * TODO and because of our iconv problem i prefer an empty first line
574 * TODO in favour of a possibly messed up multibytes character. :-( */
575 if (col > 1 /* TODO && !(flags & _FIRST)*/) {
576 putc('\n', fo);
577 sz += 2;
578 col = 1;
579 if (!(flags & _SPACE)) {
580 putc(' ', fo);
581 wcur = n_UNCONST(n_empty);
582 /*flags |= _OVERLONG;*/
583 goto jenc_retry_same;
584 } else {
585 putc((uc_i)*wcur, fo);
586 if (whitechar(*(wcur = wbot)))
587 ++wbot;
588 else {
589 flags &= ~_SPACE;
590 wcur = n_UNCONST(n_empty);
592 /*flags &= ~_OVERLONG;*/
593 goto jenc_retry;
597 /* It is so long that it needs to be broken, effectively causing
598 * artificial data to be inserted (bad standard), yuck */
599 /* todo This is not multibyte safe, as above */
600 /*if (!(flags & _OVERLONG)) { Mechanism explicitly forbidden by 2047
601 flags |= _OVERLONG;
602 goto jenc_retry;
605 /* FIXME n_PSO_UNICODE and parse using UTF-8 sync possibility! */
606 i = PTR2SIZE(wend - wbot) + !!(flags & _SPACE);
607 j = 3 + !(flags & _ENC_B64);
608 for (;;) {
609 wend -= j;
610 i -= j;
611 /* (Note the problem most likely is the transfer-encoding blow,
612 * which is why we test this *after* the decrements.. */
613 if (i <= a_MAXCOL)
614 break;
616 goto jenc_retry;
620 if(!(flags & _MSH_NOTHING) && msh != a_MIME_SH_NONE){
621 putc((msh == a_MIME_SH_COMMENT ? ')' : '"'), fo);
622 ++sz;
623 ++col;
626 if(cout.s != NULL)
627 n_free(cout.s);
629 if(colp != NULL)
630 *colp = col;
631 NYD_LEAVE;
632 return sz;
635 #ifdef HAVE_ICONV
636 static ssize_t
637 a_mime__convhdra(struct str *inp, FILE *fp, size_t *colp,
638 enum a_mime_structure_hack msh){
639 struct str ciconv;
640 ssize_t rv;
641 NYD_ENTER;
643 rv = 0;
644 ciconv.s = NULL;
646 if(inp->l > 0 && iconvd != (iconv_t)-1){
647 ciconv.l = 0;
648 if(n_iconv_str(iconvd, n_ICONV_NONE, &ciconv, inp, NULL) != 0){
649 n_iconv_reset(iconvd);
650 goto jleave;
652 *inp = ciconv;
655 rv = mime_write_tohdr(inp, fp, colp, msh);
656 jleave:
657 if(ciconv.s != NULL)
658 n_free(ciconv.s);
659 NYD_LEAVE;
660 return rv;
662 #endif /* HAVE_ICONV */
664 static ssize_t
665 mime_write_tohdr_a(struct str *in, FILE *f, size_t *colp,
666 enum a_mime_structure_hack msh)
668 struct str xin;
669 size_t i;
670 char const *cp, *lastcp;
671 ssize_t sz, x;
672 NYD_ENTER;
674 in->s[in->l] = '\0';
676 if((cp = routeaddr(lastcp = in->s)) != NULL && cp > lastcp) {
677 xin.s = n_UNCONST(lastcp);
678 xin.l = PTR2SIZE(cp - lastcp);
679 if ((sz = a_mime__convhdra(&xin, f, colp, msh)) < 0)
680 goto jleave;
681 lastcp = cp;
682 } else {
683 cp = lastcp;
684 sz = 0;
687 for( ; *cp != '\0'; ++cp){
688 switch(*cp){
689 case '(':
690 i = PTR2SIZE(cp - lastcp);
691 if(i > 0){
692 if(fwrite(lastcp, 1, i, f) != i)
693 goto jerr;
694 sz += i;
696 lastcp = ++cp;
697 cp = skip_comment(cp);
698 if(cp > lastcp)
699 --cp;
700 /* We want to keep empty comments, too! */
701 xin.s = n_UNCONST(lastcp);
702 xin.l = PTR2SIZE(cp - lastcp);
703 if ((x = a_mime__convhdra(&xin, f, colp, a_MIME_SH_COMMENT)) < 0)
704 goto jerr;
705 sz += x;
706 lastcp = &cp[1];
707 break;
708 case '"':
709 i = PTR2SIZE(cp - lastcp);
710 if(i > 0){
711 if(fwrite(lastcp, 1, i, f) != i)
712 goto jerr;
713 sz += i;
715 for(lastcp = ++cp; *cp != '\0'; ++cp){
716 if(*cp == '"')
717 break;
718 if(*cp == '\\' && cp[1] != '\0')
719 ++cp;
721 /* We want to keep empty quoted-strings, too! */
722 xin.s = n_UNCONST(lastcp);
723 xin.l = PTR2SIZE(cp - lastcp);
724 if((x = a_mime__convhdra(&xin, f, colp, a_MIME_SH_QUOTE)) < 0)
725 goto jerr;
726 sz += x;
727 ++sz;
728 lastcp = &cp[1];
729 break;
733 i = PTR2SIZE(cp - lastcp);
734 if(i > 0){
735 if(fwrite(lastcp, 1, i, f) != i)
736 goto jerr;
737 sz += i;
739 jleave:
740 NYD_LEAVE;
741 return sz;
742 jerr:
743 sz = -1;
744 goto jleave;
747 static void
748 _append_str(char **buf, size_t *sz, size_t *pos, char const *str, size_t len)
750 NYD_ENTER;
751 *buf = srealloc(*buf, *sz += len);
752 memcpy(&(*buf)[*pos], str, len);
753 *pos += len;
754 NYD_LEAVE;
757 static void
758 _append_conv(char **buf, size_t *sz, size_t *pos, char const *str, size_t len)
760 struct str in, out;
761 NYD_ENTER;
763 in.s = n_UNCONST(str);
764 in.l = len;
765 mime_fromhdr(&in, &out, TD_ISPR | TD_ICONV);
766 _append_str(buf, sz, pos, out.s, out.l);
767 n_free(out.s);
768 NYD_LEAVE;
771 FL bool_t
772 charset_iter_reset(char const *a_charset_to_try_first) /* TODO elim. dups! */
774 char const *sarr[3];
775 size_t sarrl[3], len;
776 char *cp;
777 NYD_ENTER;
778 n_UNUSED(a_charset_to_try_first);
780 #ifdef HAVE_ICONV
781 sarr[2] = ok_vlook(CHARSET_8BIT_OKEY);
783 if(a_charset_to_try_first != NULL && strcmp(a_charset_to_try_first, sarr[2]))
784 sarr[0] = a_charset_to_try_first;
785 else
786 sarr[0] = NULL;
788 if((sarr[1] = ok_vlook(sendcharsets)) == NULL &&
789 ok_blook(sendcharsets_else_ttycharset)){
790 cp = n_UNCONST(ok_vlook(ttycharset));
791 if(strcmp(cp, sarr[2]) && (sarr[0] == NULL || strcmp(cp, sarr[0])))
792 sarr[1] = cp;
794 #else
795 sarr[2] = ok_vlook(ttycharset);
796 #endif
798 sarrl[2] = len = strlen(sarr[2]);
799 #ifdef HAVE_ICONV
800 if ((cp = n_UNCONST(sarr[1])) != NULL)
801 len += (sarrl[1] = strlen(cp));
802 else
803 sarrl[1] = 0;
804 if ((cp = n_UNCONST(sarr[0])) != NULL)
805 len += (sarrl[0] = strlen(cp));
806 else
807 sarrl[0] = 0;
808 #endif
810 _cs_iter_base = cp = salloc(len + 1 + 1 +1);
812 #ifdef HAVE_ICONV
813 if ((len = sarrl[0]) != 0) {
814 memcpy(cp, sarr[0], len);
815 cp[len] = ',';
816 cp += ++len;
818 if ((len = sarrl[1]) != 0) {
819 memcpy(cp, sarr[1], len);
820 cp[len] = ',';
821 cp += ++len;
823 #endif
824 len = sarrl[2];
825 memcpy(cp, sarr[2], len);
826 cp[len] = '\0';
828 _CS_ITER_STEP();
829 NYD_LEAVE;
830 return (_cs_iter != NULL);
833 FL bool_t
834 charset_iter_next(void)
836 bool_t rv;
837 NYD_ENTER;
839 _CS_ITER_STEP();
840 rv = (_cs_iter != NULL);
841 NYD_LEAVE;
842 return rv;
845 FL bool_t
846 charset_iter_is_valid(void)
848 bool_t rv;
849 NYD_ENTER;
851 rv = (_cs_iter != NULL);
852 NYD_LEAVE;
853 return rv;
856 FL char const *
857 charset_iter(void)
859 char const *rv;
860 NYD_ENTER;
862 rv = _cs_iter;
863 NYD_LEAVE;
864 return rv;
867 FL char const *
868 charset_iter_or_fallback(void)
870 char const *rv;
871 NYD_ENTER;
873 rv = _CS_ITER_GET();
874 NYD_LEAVE;
875 return rv;
878 FL void
879 charset_iter_recurse(char *outer_storage[2]) /* TODO LEGACY FUN, REMOVE */
881 NYD_ENTER;
882 outer_storage[0] = _cs_iter_base;
883 outer_storage[1] = _cs_iter;
884 NYD_LEAVE;
887 FL void
888 charset_iter_restore(char *outer_storage[2]) /* TODO LEGACY FUN, REMOVE */
890 NYD_ENTER;
891 _cs_iter_base = outer_storage[0];
892 _cs_iter = outer_storage[1];
893 NYD_LEAVE;
896 #ifdef HAVE_ICONV
897 FL char const *
898 need_hdrconv(struct header *hp) /* TODO once only, then iter */
900 struct n_header_field *hfp;
901 char const *rv;
902 NYD_ENTER;
904 rv = NULL;
906 /* C99 */{
907 struct n_header_field *chlp[3]; /* TODO JOINED AFTER COMPOSE! */
908 ui32_t i;
910 chlp[0] = n_poption_arg_C;
911 chlp[1] = n_customhdr_list;
912 chlp[2] = hp->h_user_headers;
914 for(i = 0; i < n_NELEM(chlp); ++i)
915 if((hfp = chlp[i]) != NULL)
916 do if(_has_highbit(hfp->hf_dat + hfp->hf_nl +1))
917 goto jneeds;
918 while((hfp = hfp->hf_next) != NULL);
921 if (hp->h_mft != NULL) {
922 if (_name_highbit(hp->h_mft))
923 goto jneeds;
925 if (hp->h_from != NULL) {
926 if (_name_highbit(hp->h_from))
927 goto jneeds;
928 } else if (_has_highbit(myaddrs(NULL)))
929 goto jneeds;
930 if (hp->h_reply_to) {
931 if (_name_highbit(hp->h_reply_to))
932 goto jneeds;
933 } else {
934 char const *v15compat;
936 if((v15compat = ok_vlook(replyto)) != NULL)
937 n_OBSOLETE(_("please use *reply-to*, not *replyto*"));
938 if(_has_highbit(v15compat))
939 goto jneeds;
940 if(_has_highbit(ok_vlook(reply_to)))
941 goto jneeds;
943 if (hp->h_sender) {
944 if (_name_highbit(hp->h_sender))
945 goto jneeds;
946 } else if (_has_highbit(ok_vlook(sender)))
947 goto jneeds;
949 if (_name_highbit(hp->h_to))
950 goto jneeds;
951 if (_name_highbit(hp->h_cc))
952 goto jneeds;
953 if (_name_highbit(hp->h_bcc))
954 goto jneeds;
955 if (_has_highbit(hp->h_subject))
956 jneeds:
957 rv = _CS_ITER_GET(); /* TODO MIME/send: iter active? iter! else */
958 NYD_LEAVE;
959 return rv;
961 #endif /* HAVE_ICONV */
963 FL void
964 mime_fromhdr(struct str const *in, struct str *out, enum tdflags flags)
966 /* TODO mime_fromhdr(): is called with strings that contain newlines;
967 * TODO this is the usual newline problem all around the codebase;
968 * TODO i.e., if we strip it, then the display misses it ;>
969 * TODO this is why it is so messy and why S-nail v14.2 plus additional
970 * TODO patch for v14.5.2 (and maybe even v14.5.3 subminor) occurred, and
971 * TODO why our display reflects what is contained in the message: the 1:1
972 * TODO relationship of message content and display!
973 * TODO instead a header line should be decoded to what it is (a single
974 * TODO line that is) and it should be objective to the backend whether
975 * TODO it'll be folded to fit onto the display or not, e.g., for search
976 * TODO purposes etc. then the only condition we have to honour in here
977 * TODO is that whitespace in between multiple adjacent MIME encoded words
978 * TODO á la RFC 2047 is discarded; i.e.: this function should deal with
979 * TODO RFC 2047 and be renamed: mime_fromhdr() -> mime_rfc2047_decode() */
980 struct str cin, cout;
981 char *p, *op, *upper;
982 ui32_t convert, lastenc, lastoutl;
983 #ifdef HAVE_ICONV
984 char const *tcs;
985 char *cbeg;
986 iconv_t fhicd = (iconv_t)-1;
987 #endif
988 NYD_ENTER;
990 out->l = 0;
991 if (in->l == 0) {
992 *(out->s = smalloc(1)) = '\0';
993 goto jleave;
995 out->s = NULL;
997 #ifdef HAVE_ICONV
998 tcs = ok_vlook(ttycharset);
999 #endif
1000 p = in->s;
1001 upper = p + in->l;
1002 lastenc = lastoutl = 0;
1004 while (p < upper) {
1005 op = p;
1006 if (*p == '=' && *(p + 1) == '?') {
1007 p += 2;
1008 #ifdef HAVE_ICONV
1009 cbeg = p;
1010 #endif
1011 while (p < upper && *p != '?')
1012 ++p; /* strip charset */
1013 if (p >= upper)
1014 goto jnotmime;
1015 ++p;
1016 #ifdef HAVE_ICONV
1017 if (flags & TD_ICONV) {
1018 size_t i = PTR2SIZE(p - cbeg);
1019 char *ltag, *cs = ac_alloc(i);
1021 memcpy(cs, cbeg, --i);
1022 cs[i] = '\0';
1023 /* RFC 2231 extends the RFC 2047 character set definition in
1024 * encoded words by language tags - silently strip those off */
1025 if ((ltag = strchr(cs, '*')) != NULL)
1026 *ltag = '\0';
1028 if (fhicd != (iconv_t)-1)
1029 n_iconv_close(fhicd);
1030 fhicd = asccasecmp(cs, tcs) ? n_iconv_open(tcs, cs) : (iconv_t)-1;
1031 ac_free(cs);
1033 #endif
1034 switch (*p) {
1035 case 'B': case 'b':
1036 convert = CONV_FROMB64;
1037 break;
1038 case 'Q': case 'q':
1039 convert = CONV_FROMQP;
1040 break;
1041 default: /* invalid, ignore */
1042 goto jnotmime;
1044 if (*++p != '?')
1045 goto jnotmime;
1046 cin.s = ++p;
1047 cin.l = 1;
1048 for (;;) {
1049 if (PTRCMP(p + 1, >=, upper))
1050 goto jnotmime;
1051 if (*p++ == '?' && *p == '=')
1052 break;
1053 ++cin.l;
1055 ++p;
1056 --cin.l;
1058 cout.s = NULL;
1059 cout.l = 0;
1060 if (convert == CONV_FROMB64) {
1061 if(!b64_decode_header(&cout, &cin))
1062 n_str_assign_cp(&cout, _("[Invalid Base64 encoding]"));
1063 }else if(!qp_decode_header(&cout, &cin))
1064 n_str_assign_cp(&cout, _("[Invalid Quoted-Printable encoding]"));
1065 /* Normalize all decoded newlines to spaces XXX only \0/\n yet */
1066 /* C99 */{
1067 char const *xcp;
1068 bool_t any;
1069 uiz_t i, j;
1071 for(any = FAL0, i = cout.l; i-- != 0;)
1072 switch(cout.s[i]){
1073 case '\0':
1074 case '\n':
1075 any = TRU1;
1076 cout.s[i] = ' ';
1077 /* FALLTHRU */
1078 default:
1079 break;
1083 if(any){
1084 /* I18N: must be non-empty, last must be closing bracket/xy */
1085 xcp = _("[Content normalized: ]");
1086 i = strlen(xcp);
1087 j = cout.l;
1088 n_str_add_buf(&cout, xcp, i);
1089 memmove(&cout.s[i - 1], cout.s, j);
1090 memcpy(&cout.s[0], xcp, i - 1);
1091 cout.s[cout.l - 1] = xcp[i - 1];
1096 out->l = lastenc;
1097 #ifdef HAVE_ICONV
1098 /* TODO Does not really work if we have assigned some ASCII or even
1099 * TODO translated strings because of errors! */
1100 if ((flags & TD_ICONV) && fhicd != (iconv_t)-1) {
1101 cin.s = NULL, cin.l = 0; /* XXX string pool ! */
1102 convert = n_iconv_str(fhicd, n_ICONV_UNIDEFAULT, &cin, &cout, NULL);
1103 out = n_str_add(out, &cin);
1104 if (convert) {/* n_ERR_INVAL at EOS */
1105 n_iconv_reset(fhicd);
1106 out = n_str_add_buf(out, n_qm, 1); /* TODO unicode replacement */
1108 n_free(cin.s);
1109 } else
1110 #endif
1111 out = n_str_add(out, &cout);
1112 lastenc = lastoutl = out->l;
1113 n_free(cout.s);
1114 } else
1115 jnotmime: {
1116 bool_t onlyws;
1118 p = op;
1119 onlyws = (lastenc > 0);
1120 for (;;) {
1121 if (++op == upper)
1122 break;
1123 if (op[0] == '=' && (PTRCMP(op + 1, ==, upper) || op[1] == '?'))
1124 break;
1125 if (onlyws && !blankchar(*op))
1126 onlyws = FAL0;
1129 out = n_str_add_buf(out, p, PTR2SIZE(op - p));
1130 p = op;
1131 if (!onlyws || lastoutl != lastenc)
1132 lastenc = out->l;
1133 lastoutl = out->l;
1136 out->s[out->l] = '\0';
1138 if (flags & TD_ISPR) {
1139 makeprint(out, &cout);
1140 n_free(out->s);
1141 *out = cout;
1143 if (flags & TD_DELCTRL)
1144 out->l = delctrl(out->s, out->l);
1145 #ifdef HAVE_ICONV
1146 if (fhicd != (iconv_t)-1)
1147 n_iconv_close(fhicd);
1148 #endif
1149 jleave:
1150 NYD_LEAVE;
1151 return;
1154 FL char *
1155 mime_fromaddr(char const *name)
1157 char const *cp, *lastcp;
1158 char *res = NULL;
1159 size_t ressz = 1, rescur = 0;
1160 NYD_ENTER;
1162 if (name == NULL)
1163 goto jleave;
1164 if (*name == '\0') {
1165 res = savestr(name);
1166 goto jleave;
1169 if ((cp = routeaddr(name)) != NULL && cp > name) {
1170 _append_conv(&res, &ressz, &rescur, name, PTR2SIZE(cp - name));
1171 lastcp = cp;
1172 } else
1173 cp = lastcp = name;
1175 for ( ; *cp; ++cp) {
1176 switch (*cp) {
1177 case '(':
1178 _append_str(&res, &ressz, &rescur, lastcp, PTR2SIZE(cp - lastcp + 1));
1179 lastcp = ++cp;
1180 cp = skip_comment(cp);
1181 if (--cp > lastcp)
1182 _append_conv(&res, &ressz, &rescur, lastcp, PTR2SIZE(cp - lastcp));
1183 lastcp = cp;
1184 break;
1185 case '"':
1186 while (*cp) {
1187 if (*++cp == '"')
1188 break;
1189 if (*cp == '\\' && cp[1] != '\0')
1190 ++cp;
1192 break;
1195 if (cp > lastcp)
1196 _append_str(&res, &ressz, &rescur, lastcp, PTR2SIZE(cp - lastcp));
1197 /* C99 */{
1198 char *x;
1200 x = res;
1201 res = savestrbuf(res, rescur);
1202 if(x != NULL)
1203 n_free(x);
1205 jleave:
1206 NYD_LEAVE;
1207 return res;
1210 FL ssize_t
1211 xmime_write(char const *ptr, size_t size, FILE *f, enum conversion convert,
1212 enum tdflags dflags, struct str * volatile outrest,
1213 struct str * volatile inrest)
1215 ssize_t rv;
1216 struct quoteflt *qf;
1217 NYD_ENTER;
1219 quoteflt_reset(qf = quoteflt_dummy(), f);
1220 rv = mime_write(ptr, size, f, convert, dflags, qf, outrest, inrest);
1221 quoteflt_flush(qf);
1222 NYD_LEAVE;
1223 return rv;
1226 static sigjmp_buf __mimemw_actjmp; /* TODO someday.. */
1227 static int __mimemw_sig; /* TODO someday.. */
1228 static sighandler_type __mimemw_opipe;
1229 static void
1230 __mimemw_onsig(int sig) /* TODO someday, we won't need it no more */
1232 NYD_X; /* Signal handler */
1233 __mimemw_sig = sig;
1234 siglongjmp(__mimemw_actjmp, 1);
1237 FL ssize_t
1238 mime_write(char const *ptr, size_t size, FILE *f,
1239 enum conversion convert, enum tdflags volatile dflags,
1240 struct quoteflt *qf, struct str * volatile outrest,
1241 struct str * volatile inrest)
1243 /* TODO note: after send/MIME layer rewrite we will have a string pool
1244 * TODO so that memory allocation count drops down massively; for now,
1245 * TODO v14.0 that is, we pay a lot & heavily depend on the allocator.
1246 * TODO P.S.: furthermore all this encapsulated in filter objects instead */
1247 struct str in, out;
1248 ssize_t volatile sz;
1249 NYD_ENTER;
1251 dflags |= _TD_BUFCOPY;
1252 in.s = n_UNCONST(ptr);
1253 in.l = size;
1254 out.s = NULL;
1255 out.l = 0;
1257 if((sz = size) == 0){
1258 if(inrest != NULL && inrest->l != 0)
1259 goto jinrest;
1260 if(outrest != NULL && outrest->l != 0)
1261 goto jconvert;
1262 goto jleave;
1265 /* TODO This crap requires linewise input, then. We need a filter chain
1266 * TODO as in input->iconv->base64 where each filter can have its own
1267 * TODO buffer, with a filter->fflush() call to get rid of those! */
1268 #ifdef HAVE_ICONV
1269 if ((dflags & TD_ICONV) && iconvd != (iconv_t)-1 &&
1270 (convert == CONV_TOQP || convert == CONV_8BIT ||
1271 convert == CONV_TOB64 || convert == CONV_TOHDR)) {
1272 if (n_iconv_str(iconvd, n_ICONV_NONE, &out, &in, NULL) != 0) {
1273 n_iconv_reset(iconvd);
1274 /* TODO This causes hard-failure. We would need to have an action
1275 * TODO policy FAIL|IGNORE|SETERROR(but continue) */
1276 sz = -1;
1277 goto jleave;
1279 in = out;
1280 out.s = NULL;
1281 dflags &= ~_TD_BUFCOPY;
1283 #endif
1285 jinrest:
1286 if(inrest != NULL && inrest->l > 0){
1287 if(size == 0){
1288 in = *inrest;
1289 inrest->s = NULL;
1290 inrest->l = 0;
1291 }else{
1292 out.s = n_alloc(in.l + inrest->l + 1);
1293 memcpy(out.s, inrest->s, inrest->l);
1294 if(in.l > 0)
1295 memcpy(&out.s[inrest->l], in.s, in.l);
1296 if(in.s != ptr)
1297 n_free(in.s);
1298 (in.s = out.s)[in.l += inrest->l] = '\0';
1299 inrest->l = 0;
1300 out.s = NULL;
1302 dflags &= ~_TD_BUFCOPY;
1305 jconvert:
1306 __mimemw_sig = 0;
1307 __mimemw_opipe = safe_signal(SIGPIPE, &__mimemw_onsig);
1308 if (sigsetjmp(__mimemw_actjmp, 1))
1309 goto jleave;
1311 switch (convert) {
1312 case CONV_FROMQP:
1313 if(!qp_decode_part(&out, &in, outrest, inrest)){
1314 n_err(_("Invalid Quoted-Printable encoding ignored\n"));
1315 sz = 0; /* TODO sz = -1 stops outer levels! */
1316 break;
1318 goto jqpb64_dec;
1319 case CONV_TOQP:
1320 if(qp_encode(&out, &in, QP_NONE) == NULL){
1321 sz = 0; /* TODO sz = -1 stops outer levels! */
1322 break;
1324 goto jqpb64_enc;
1325 case CONV_8BIT:
1326 sz = quoteflt_push(qf, in.s, in.l);
1327 break;
1328 case CONV_FROMB64:
1329 if(!b64_decode_part(&out, &in, outrest, inrest))
1330 goto jeb64;
1331 outrest = NULL;
1332 if(0){
1333 /* FALLTHRU */
1334 case CONV_FROMB64_T:
1335 if(!b64_decode_part(&out, &in, outrest, inrest)){
1336 jeb64:
1337 n_err(_("Invalid Base64 encoding ignored\n"));
1338 sz = 0; /* TODO sz = -1 stops outer levels! */
1339 break;
1342 jqpb64_dec:
1343 if ((sz = out.l) != 0) {
1344 ui32_t opl = qf->qf_pfix_len;
1345 sz = _fwrite_td(&out, FAL0, (dflags & ~_TD_BUFCOPY), outrest, qf);
1346 qf->qf_pfix_len = opl;
1348 break;
1349 case CONV_TOB64:
1350 /* TODO hack which is necessary unless this is a filter based approach
1351 * TODO and each filter has its own buffer (as necessary): we must not
1352 * TODO pass through a number of bytes which causes padding, otherwise we
1353 * TODO produce multiple adjacent base64 streams, and that is not treated
1354 * TODO in the same relaxed fashion like completely bogus bytes by at
1355 * TODO least mutt and OpenSSL. So we need an expensive workaround
1356 * TODO unless we have input->iconv->base64 filter chain as such!! :( */
1357 if(size != 0 && /* for Coverity, else assert() */ inrest != NULL){
1358 if(in.l > B64_ENCODE_INPUT_PER_LINE){
1359 size_t i;
1361 i = in.l % B64_ENCODE_INPUT_PER_LINE;
1362 in.l -= i;
1364 if(i != 0){
1365 assert(inrest->l == 0);
1366 inrest->s = n_realloc(inrest->s, i +1);
1367 memcpy(inrest->s, &in.s[in.l], i);
1368 inrest->s[inrest->l = i] = '\0';
1370 }else if(in.l < B64_ENCODE_INPUT_PER_LINE){
1371 inrest->s = n_realloc(inrest->s, in.l +1);
1372 memcpy(inrest->s, in.s, in.l);
1373 inrest->s[inrest->l = in.l] = '\0';
1374 in.l = 0;
1375 sz = 0;
1376 break;
1379 if(b64_encode(&out, &in, B64_LF | B64_MULTILINE) == NULL){
1380 sz = -1;
1381 break;
1383 jqpb64_enc:
1384 sz = fwrite(out.s, sizeof *out.s, out.l, f);
1385 if (sz != (ssize_t)out.l)
1386 sz = -1;
1387 break;
1388 case CONV_FROMHDR:
1389 mime_fromhdr(&in, &out, TD_ISPR | TD_ICONV | (dflags & TD_DELCTRL));
1390 sz = quoteflt_push(qf, out.s, out.l);
1391 break;
1392 case CONV_TOHDR:
1393 sz = mime_write_tohdr(&in, f, NULL, a_MIME_SH_NONE);
1394 break;
1395 case CONV_TOHDR_A:{
1396 size_t col;
1398 if(dflags & _TD_BUFCOPY){
1399 n_str_dup(&out, &in);
1400 in = out;
1401 out.s = NULL;
1402 dflags &= ~_TD_BUFCOPY;
1404 col = 0;
1405 sz = mime_write_tohdr_a(&in, f, &col, a_MIME_SH_NONE);
1406 }break;
1407 default:
1408 sz = _fwrite_td(&in, TRU1, dflags, NULL, qf);
1409 break;
1412 jleave:
1413 if (out.s != NULL)
1414 n_free(out.s);
1415 if (in.s != ptr)
1416 n_free(in.s);
1417 safe_signal(SIGPIPE, __mimemw_opipe);
1418 if (__mimemw_sig != 0)
1419 n_raise(__mimemw_sig);
1420 NYD_LEAVE;
1421 return sz;
1424 /* s-it-mode */