nail.1: some tweaks
[s-mailx.git] / mime-types.c
blob0cf806fde1a7d09ac4f8e6e96e1c4516668768b2
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ `(un)?mimetype' and other mime.types(5) related facilities.
3 *@ "Keep in sync with" ./mime.types.
5 * Copyright (c) 2012 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #undef n_FILE
20 #define n_FILE mime_types
22 #ifndef HAVE_AMALGAMATION
23 # include "nail.h"
24 #endif
26 enum mime_type {
27 _MT_APPLICATION,
28 _MT_AUDIO,
29 _MT_IMAGE,
30 _MT_MESSAGE,
31 _MT_MULTIPART,
32 _MT_TEXT,
33 _MT_VIDEO,
34 _MT_OTHER,
35 __MT_TMIN = 0,
36 __MT_TMAX = _MT_OTHER,
37 __MT_TMASK = 0x07,
39 _MT_CMD = 1<< 8, /* Via `mimetype' (not struct mtbltin) */
40 _MT_USR = 1<< 9, /* VAL_MIME_TYPES_USR */
41 _MT_SYS = 1<<10, /* VAL_MIME_TYPES_SYS */
42 _MT_FSPEC = 1<<11, /* Loaded via f= *mimetypes-load-control* spec. */
44 _MT_PLAIN = 1<<16, /* Without pipe handler display as text */
45 _MT_SOUP_h = 2<<16, /* Ditto, but HTML tagsoup parser if possible */
46 _MT_SOUP_H = 3<<16, /* HTML tagsoup parser, else NOT plain text */
47 __MT_MARKMASK = _MT_SOUP_H
50 enum mime_type_class {
51 _MT_C_CLEAN = 0, /* Plain RFC 5322 message */
52 _MT_C_NCTT = 1<<0, /* *contenttype == NULL */
53 _MT_C_ISTXT = 1<<1, /* *contenttype =~ text\/ */
54 _MT_C_ISTXTCOK = 1<<2, /* _ISTXT + *mime-allow-text-controls* */
55 _MT_C_HIGHBIT = 1<<3, /* Not 7bit clean */
56 _MT_C_LONGLINES = 1<<4, /* MIME_LINELEN_LIMIT exceed. */
57 _MT_C_CTRLCHAR = 1<<5, /* Control characters seen */
58 _MT_C_HASNUL = 1<<6, /* Contains \0 characters */
59 _MT_C_NOTERMNL = 1<<7, /* Lacks a final newline */
60 _MT_C_FROM_ = 1<<8, /* ^From_ seen */
61 _MT_C_FROM_1STLINE = 1<<9, /* From_ line seen */
62 _MT_C_SUGGEST_DONE = 1<<16, /* Inspector suggests to stop further parse */
63 _MT_C__1STLINE = 1<<17 /* .. */
66 struct mtbltin {
67 ui32_t mtb_flags;
68 ui32_t mtb_mtlen;
69 char const *mtb_line;
72 struct mtnode {
73 struct mtnode *mt_next;
74 ui32_t mt_flags;
75 ui32_t mt_mtlen; /* Length of MIME type string, rest thereafter */
76 /* C99 forbids flexible arrays in union, so unfortunately we waste a pointer
77 * that could already store character data here */
78 char const *mt_line;
81 struct mtlookup {
82 char const *mtl_name;
83 size_t mtl_nlen;
84 struct mtnode const *mtl_node;
85 char *mtl_result; /* If requested, salloc()ed MIME type */
88 struct mt_class_arg {
89 char const *mtca_buf;
90 size_t mtca_len;
91 ssize_t mtca_curlen;
92 char mtca_lastc;
93 char mtca_c;
94 enum mime_type_class mtca_mtc;
97 static struct mtbltin const _mt_bltin[] = {
98 #include "gen-mime-types.h"
101 static char const _mt_typnames[][16] = {
102 "application/", "audio/", "image/",
103 "message/", "multipart/", "text/",
104 "video/"
106 n_CTAV(_MT_APPLICATION == 0 && _MT_AUDIO == 1 && _MT_IMAGE == 2 &&
107 _MT_MESSAGE == 3 && _MT_MULTIPART == 4 && _MT_TEXT == 5 &&
108 _MT_VIDEO == 6);
110 /* */
111 static bool_t _mt_is_init;
112 static struct mtnode *_mt_list;
114 /* Initialize MIME type list in order */
115 static void _mt_init(void);
116 static bool_t __mt_load_file(ui32_t orflags,
117 char const *file, char **line, size_t *linesize);
119 /* Create (prepend) a new MIME type; cmdcalled results in a bit more verbosity
120 * for `mimetype' */
121 static struct mtnode * _mt_create(bool_t cmdcalled, ui32_t orflags,
122 char const *line, size_t len);
124 /* Try to find MIME type by X (after zeroing mtlp), return NULL if not found;
125 * if with_result >mtl_result will be created upon success for the former */
126 static struct mtlookup * _mt_by_filename(struct mtlookup *mtlp,
127 char const *name, bool_t with_result);
128 static struct mtlookup * _mt_by_mtname(struct mtlookup *mtlp,
129 char const *mtname);
131 /* In-depth inspection of raw content: call _round() repeatedly, last time with
132 * a 0 length buffer, finally check .mtca_mtc for result.
133 * No further call is needed if _round() return includes _MT_C_SUGGEST_DONE,
134 * as the resulting classification is unambiguous */
135 SINLINE struct mt_class_arg * _mt_classify_init(struct mt_class_arg *mtcap,
136 enum mime_type_class initval);
137 static enum mime_type_class _mt_classify_round(struct mt_class_arg *mtcap);
139 /* We need an in-depth inspection of an application/octet-stream part */
140 static enum mimecontent _mt_classify_os_part(ui32_t mce, struct mimepart *mpp);
142 /* Check whether a *pipe-XY* handler is applicable, and adjust flags according
143 * to the defined trigger characters; upon entry MIME_HDL_NULL is set, and that
144 * isn't changed if mhp doesn't apply */
145 static enum mime_handler_flags a_mt_pipe_check(struct mime_handler *mhp);
147 static void
148 _mt_init(void)
150 struct mtnode *tail;
151 char c, *line; /* TODO line pool (below) */
152 size_t linesize;
153 ui32_t i, j;
154 char const *srcs_arr[10], *ccp, **srcs;
155 NYD_ENTER;
157 /*if (_mt_is_init)
158 * goto jleave;*/
160 /* Always load our built-ins */
161 for (tail = NULL, i = 0; i < n_NELEM(_mt_bltin); ++i) {
162 struct mtbltin const *mtbp = _mt_bltin + i;
163 struct mtnode *mtnp = smalloc(sizeof *mtnp);
165 if (tail != NULL)
166 tail->mt_next = mtnp;
167 else
168 _mt_list = mtnp;
169 tail = mtnp;
170 mtnp->mt_next = NULL;
171 mtnp->mt_flags = mtbp->mtb_flags;
172 mtnp->mt_mtlen = mtbp->mtb_mtlen;
173 mtnp->mt_line = mtbp->mtb_line;
176 /* Decide which files sources have to be loaded */
177 if ((ccp = ok_vlook(mimetypes_load_control)) == NULL)
178 ccp = "US";
179 else if (*ccp == '\0')
180 goto jleave;
182 srcs = srcs_arr + 2;
183 srcs[-1] = srcs[-2] = NULL;
185 if (strchr(ccp, '=') != NULL) {
186 line = savestr(ccp);
188 while ((ccp = n_strsep(&line, ',', TRU1)) != NULL) {
189 switch ((c = *ccp)) {
190 case 'S': case 's':
191 srcs_arr[1] = VAL_MIME_TYPES_SYS;
192 if (0) {
193 /* FALLTHRU */
194 case 'U': case 'u':
195 srcs_arr[0] = VAL_MIME_TYPES_USR;
197 if (ccp[1] != '\0')
198 goto jecontent;
199 break;
200 case 'F': case 'f':
201 if (*++ccp == '=' && *++ccp != '\0') {
202 if (PTR2SIZE(srcs - srcs_arr) < n_NELEM(srcs_arr))
203 *srcs++ = ccp;
204 else
205 n_err(_("*mimetypes-load-control*: too many sources, "
206 "skipping %s\n"), n_shexp_quote_cp(ccp, FAL0));
207 continue;
209 /* FALLTHRU */
210 default:
211 goto jecontent;
214 } else for (i = 0; (c = ccp[i]) != '\0'; ++i)
215 switch (c) {
216 case 'S': case 's': srcs_arr[1] = VAL_MIME_TYPES_SYS; break;
217 case 'U': case 'u': srcs_arr[0] = VAL_MIME_TYPES_USR; break;
218 default:
219 jecontent:
220 n_err(_("*mimetypes-load-control*: unsupported content: %s\n"), ccp);
221 goto jleave;
224 /* Load all file-based sources in the desired order */
225 line = NULL;
226 linesize = 0;
227 for (j = 0, i = (ui32_t)PTR2SIZE(srcs - srcs_arr), srcs = srcs_arr;
228 i > 0; ++j, ++srcs, --i)
229 if (*srcs == NULL)
230 continue;
231 else if (!__mt_load_file((j == 0 ? _MT_USR
232 : (j == 1 ? _MT_SYS : _MT_FSPEC)), *srcs, &line, &linesize)) {
233 if ((n_poption & n_PO_D_V) || j > 1)
234 n_err(_("*mimetypes-load-control*: cannot open or load %s\n"),
235 n_shexp_quote_cp(*srcs, FAL0));
237 if (line != NULL)
238 free(line);
239 jleave:
240 _mt_is_init = TRU1;
241 NYD_LEAVE;
244 static bool_t
245 __mt_load_file(ui32_t orflags, char const *file, char **line, size_t *linesize)
247 char const *cp;
248 FILE *fp;
249 struct mtnode *head, *tail, *mtnp;
250 size_t len;
251 NYD_ENTER;
253 if ((cp = fexpand(file, FEXP_LOCAL | FEXP_NOPROTO)) == NULL ||
254 (fp = Fopen(cp, "r")) == NULL) {
255 cp = NULL;
256 goto jleave;
259 for (head = tail = NULL; fgetline(line, linesize, NULL, &len, fp, 0) != 0;)
260 if ((mtnp = _mt_create(FAL0, orflags, *line, len)) != NULL) {
261 if (head == NULL)
262 head = tail = mtnp;
263 else
264 tail->mt_next = mtnp;
265 tail = mtnp;
267 if (head != NULL) {
268 tail->mt_next = _mt_list;
269 _mt_list = head;
272 Fclose(fp);
273 jleave:
274 NYD_LEAVE;
275 return (cp != NULL);
278 static struct mtnode *
279 _mt_create(bool_t cmdcalled, ui32_t orflags, char const *line, size_t len)
281 struct mtnode *mtnp;
282 char const *typ, *subtyp;
283 size_t tlen, i;
284 NYD_ENTER;
286 mtnp = NULL;
288 /* Drop anything after a comment first TODO v15: only when read from file */
289 if ((typ = memchr(line, '#', len)) != NULL)
290 len = PTR2SIZE(typ - line);
292 /* Then trim any trailing whitespace from line (including NL/CR) */
293 /* C99 */{
294 struct str work;
296 work.s = n_UNCONST(line);
297 work.l = len;
298 line = n_str_trim(&work)->s;
299 len = work.l;
301 typ = line;
303 /* (But wait - is there a type marker?) */
304 tlen = len;
305 if(!(orflags & (_MT_USR | _MT_SYS)) && *typ == '@'){
306 if(len < 2)
307 goto jeinval;
308 if(typ[1] == ' '){
309 orflags |= _MT_PLAIN;
310 typ += 2;
311 len -= 2;
312 line += 2;
313 }else if(len > 3){
314 if(typ[2] == ' ')
315 i = 3;
316 else if(len > 4 && typ[2] == '@' && typ[3] == ' '){
317 n_OBSOLETE("`mimetype': the trailing \"@\" in \"type-marker\" "
318 "is redundant");
319 i = 4;
320 }else
321 goto jeinval;
323 switch(typ[1]){
324 default: goto jeinval;
325 case 't': orflags |= _MT_PLAIN; break;
326 case 'h': orflags |= _MT_SOUP_h; break;
327 case 'H': orflags |= _MT_SOUP_H; break;
329 typ += i;
330 len -= i;
331 line += i;
332 }else
333 goto jeinval;
336 while (len > 0 && !blankchar(*line))
337 ++line, --len;
338 /* Ignore empty lines and even incomplete specifications (only MIME type)
339 * because this is quite common in mime.types(5) files */
340 if (len == 0 || (tlen = PTR2SIZE(line - typ)) == 0) {
341 if (cmdcalled || (orflags & _MT_FSPEC)) {
342 if(len == 0){
343 line = _("(no value)");
344 len = strlen(line);
346 n_err(_("Empty MIME type or no extensions given: %.*s\n"),
347 (int)len, line);
349 goto jleave;
352 if ((subtyp = memchr(typ, '/', tlen)) == NULL || subtyp[1] == '\0' ||
353 spacechar(subtyp[1])) {
354 jeinval:
355 if(cmdcalled || (orflags & _MT_FSPEC) || (n_poption & n_PO_D_V))
356 n_err(_("%s MIME type: %.*s\n"),
357 (cmdcalled ? _("Invalid") : _("mime.types(5): invalid")),
358 (int)tlen, typ);
359 goto jleave;
361 ++subtyp;
363 /* Map to mime_type */
364 tlen = PTR2SIZE(subtyp - typ);
365 for (i = __MT_TMIN;;) {
366 if (!ascncasecmp(_mt_typnames[i], typ, tlen)) {
367 orflags |= i;
368 tlen = PTR2SIZE(line - subtyp);
369 typ = subtyp;
370 break;
372 if (++i == __MT_TMAX) {
373 orflags |= _MT_OTHER;
374 tlen = PTR2SIZE(line - typ);
375 break;
379 /* Strip leading whitespace from the list of extensions;
380 * trailing WS has already been trimmed away above.
381 * Be silent on slots which define a mimetype without any value */
382 while (len > 0 && blankchar(*line))
383 ++line, --len;
384 if (len == 0)
385 goto jleave;
387 /* */
388 mtnp = smalloc(sizeof(*mtnp) + tlen + len +1);
389 mtnp->mt_next = NULL;
390 mtnp->mt_flags = orflags;
391 mtnp->mt_mtlen = (ui32_t)tlen;
392 { char *l = (char*)(mtnp + 1);
393 mtnp->mt_line = l;
394 memcpy(l, typ, tlen);
395 memcpy(l + tlen, line, len);
396 tlen += len;
397 l[tlen] = '\0';
400 jleave:
401 NYD_LEAVE;
402 return mtnp;
405 static struct mtlookup *
406 _mt_by_filename(struct mtlookup *mtlp, char const *name, bool_t with_result)
408 struct mtnode *mtnp;
409 size_t nlen, i, j;
410 char const *ext, *cp;
411 NYD2_ENTER;
413 memset(mtlp, 0, sizeof *mtlp);
415 if ((nlen = strlen(name)) == 0) /* TODO name should be a URI */
416 goto jnull_leave;
417 /* We need a period TODO we should support names like README etc. */
418 for (i = nlen; name[--i] != '.';)
419 if (i == 0 || name[i] == '/') /* XXX no magics */
420 goto jnull_leave;
421 /* While here, basename() it */
422 while (i > 0 && name[i - 1] != '/')
423 --i;
424 name += i;
425 nlen -= i;
426 mtlp->mtl_name = name;
427 mtlp->mtl_nlen = nlen;
429 if (!_mt_is_init)
430 _mt_init();
432 /* ..all the MIME types */
433 for (mtnp = _mt_list; mtnp != NULL; mtnp = mtnp->mt_next)
434 for (ext = mtnp->mt_line + mtnp->mt_mtlen;; ext = cp) {
435 cp = ext;
436 while (whitechar(*cp))
437 ++cp;
438 ext = cp;
439 while (!whitechar(*cp) && *cp != '\0')
440 ++cp;
442 if ((i = PTR2SIZE(cp - ext)) == 0)
443 break;
444 /* Don't allow neither of ".txt" or "txt" to match "txt" */
445 else if (i + 1 >= nlen || name[(j = nlen - i) - 1] != '.' ||
446 ascncasecmp(name + j, ext, i))
447 continue;
449 /* Found it */
450 mtlp->mtl_node = mtnp;
452 if (!with_result)
453 goto jleave;
455 if ((mtnp->mt_flags & __MT_TMASK) == _MT_OTHER) {
456 name = n_empty;
457 j = 0;
458 } else {
459 name = _mt_typnames[mtnp->mt_flags & __MT_TMASK];
460 j = strlen(name);
462 i = mtnp->mt_mtlen;
463 mtlp->mtl_result = salloc(i + j +1);
464 if (j > 0)
465 memcpy(mtlp->mtl_result, name, j);
466 memcpy(mtlp->mtl_result + j, mtnp->mt_line, i);
467 mtlp->mtl_result[j += i] = '\0';
468 goto jleave;
470 jnull_leave:
471 mtlp = NULL;
472 jleave:
473 NYD2_LEAVE;
474 return mtlp;
477 static struct mtlookup *
478 _mt_by_mtname(struct mtlookup *mtlp, char const *mtname)
480 struct mtnode *mtnp;
481 size_t nlen, i, j;
482 char const *cp;
483 NYD2_ENTER;
485 memset(mtlp, 0, sizeof *mtlp);
487 if ((mtlp->mtl_nlen = nlen = strlen(mtlp->mtl_name = mtname)) == 0)
488 goto jnull_leave;
490 if (!_mt_is_init)
491 _mt_init();
493 /* ..all the MIME types */
494 for (mtnp = _mt_list; mtnp != NULL; mtnp = mtnp->mt_next) {
495 if ((mtnp->mt_flags & __MT_TMASK) == _MT_OTHER) {
496 cp = n_empty;
497 j = 0;
498 } else {
499 cp = _mt_typnames[mtnp->mt_flags & __MT_TMASK];
500 j = strlen(cp);
502 i = mtnp->mt_mtlen;
504 if (i + j == mtlp->mtl_nlen) {
505 char *xmt = ac_alloc(i + j +1);
506 if (j > 0)
507 memcpy(xmt, cp, j);
508 memcpy(xmt + j, mtnp->mt_line, i);
509 xmt[j += i] = '\0';
510 i = asccasecmp(mtname, xmt);
511 ac_free(xmt);
513 if (!i) {
514 /* Found it */
515 mtlp->mtl_node = mtnp;
516 goto jleave;
520 jnull_leave:
521 mtlp = NULL;
522 jleave:
523 NYD2_LEAVE;
524 return mtlp;
527 SINLINE struct mt_class_arg *
528 _mt_classify_init(struct mt_class_arg * mtcap, enum mime_type_class initval)
530 NYD2_ENTER;
531 memset(mtcap, 0, sizeof *mtcap);
532 mtcap->mtca_lastc = mtcap->mtca_c = EOF;
533 mtcap->mtca_mtc = initval | _MT_C__1STLINE;
534 NYD2_LEAVE;
535 return mtcap;
538 static enum mime_type_class
539 _mt_classify_round(struct mt_class_arg *mtcap) /* TODO dig UTF-8 for !text/!! */
541 /* TODO BTW., after the MIME/send layer rewrite we could use a MIME
542 * TODO boundary of "=-=-=" if we would add a B_ in EQ spirit to F_,
543 * TODO and report that state to the outer world */
544 #define F_ "From "
545 #define F_SIZEOF (sizeof(F_) -1)
546 char f_buf[F_SIZEOF], *f_p = f_buf;
547 char const *buf;
548 size_t blen;
549 ssize_t curlen;
550 int c, lastc;
551 enum mime_type_class mtc;
552 NYD2_ENTER;
554 buf = mtcap->mtca_buf;
555 blen = mtcap->mtca_len;
556 curlen = mtcap->mtca_curlen;
557 c = mtcap->mtca_c;
558 lastc = mtcap->mtca_lastc;
559 mtc = mtcap->mtca_mtc;
561 for (;; ++curlen) {
562 lastc = c;
563 if (blen == 0) {
564 /* Real EOF, or only current buffer end? */
565 if (mtcap->mtca_len == 0)
566 c = EOF;
567 else
568 break;
569 } else
570 c = (uc_i)*buf++;
571 --blen;
573 if (c == '\0') {
574 mtc |= _MT_C_HASNUL;
575 if (!(mtc & _MT_C_ISTXTCOK)) {
576 mtc |= _MT_C_SUGGEST_DONE;
577 break;
579 continue;
581 if (c == '\n' || c == EOF) {
582 mtc &= ~_MT_C__1STLINE;
583 if (curlen >= MIME_LINELEN_LIMIT)
584 mtc |= _MT_C_LONGLINES;
585 if (c == EOF) {
586 break;
588 f_p = f_buf;
589 curlen = -1;
590 continue;
592 /* A bit hairy is handling of \r=\x0D=CR.
593 * RFC 2045, 6.7:
594 * Control characters other than TAB, or CR and LF as parts of CRLF
595 * pairs, must not appear. \r alone does not force _CTRLCHAR below since
596 * we cannot peek the next character. Thus right here, inspect the last
597 * seen character for if its \r and set _CTRLCHAR in a delayed fashion */
598 /*else*/ if (lastc == '\r')
599 mtc |= _MT_C_CTRLCHAR;
601 /* Control character? XXX this is all ASCII here */
602 if (c < 0x20 || c == 0x7F) {
603 /* RFC 2045, 6.7, as above ... */
604 if (c != '\t' && c != '\r')
605 mtc |= _MT_C_CTRLCHAR;
606 /* If there is a escape sequence in reverse solidus notation defined
607 * for this in ANSI X3.159-1989 (ANSI C89), don't treat it as a control
608 * for real. I.e., \a=\x07=BEL, \b=\x08=BS, \t=\x09=HT. Don't follow
609 * libmagic(1) in respect to \v=\x0B=VT. \f=\x0C=NP; do ignore
610 * \e=\x1B=ESC */
611 if ((c >= '\x07' && c <= '\x0D') || c == '\x1B')
612 continue;
613 mtc |= _MT_C_HASNUL; /* Force base64 */
614 if (!(mtc & _MT_C_ISTXTCOK)) {
615 mtc |= _MT_C_SUGGEST_DONE;
616 break;
618 } else if ((ui8_t)c & 0x80) {
619 mtc |= _MT_C_HIGHBIT;
620 /* TODO count chars with HIGHBIT? libmagic?
621 * TODO try encode part - base64 if bails? */
622 if (!(mtc & (_MT_C_NCTT | _MT_C_ISTXT))) { /* TODO _NCTT?? */
623 mtc |= _MT_C_HASNUL /* Force base64 */ | _MT_C_SUGGEST_DONE;
624 break;
626 } else if (!(mtc & _MT_C_FROM_) && UICMP(z, curlen, <, F_SIZEOF)) {
627 *f_p++ = (char)c;
628 if (UICMP(z, curlen, ==, F_SIZEOF - 1) &&
629 PTR2SIZE(f_p - f_buf) == F_SIZEOF &&
630 !memcmp(f_buf, F_, F_SIZEOF)){
631 mtc |= _MT_C_FROM_;
632 if (mtc & _MT_C__1STLINE)
633 mtc |= _MT_C_FROM_1STLINE;
637 if (c == EOF && lastc != '\n')
638 mtc |= _MT_C_NOTERMNL;
640 mtcap->mtca_curlen = curlen;
641 mtcap->mtca_lastc = lastc;
642 mtcap->mtca_c = c;
643 mtcap->mtca_mtc = mtc;
644 NYD2_LEAVE;
645 return mtc;
646 #undef F_
647 #undef F_SIZEOF
650 static enum mimecontent
651 _mt_classify_os_part(ui32_t mce, struct mimepart *mpp)
653 struct str in = {NULL, 0}, outrest, inrest, dec;
654 struct mt_class_arg mtca;
655 bool_t did_inrest;
656 enum mime_type_class mtc;
657 int lc, c;
658 size_t cnt, lsz;
659 FILE *ibuf;
660 off_t start_off;
661 enum mimecontent mc;
662 NYD2_ENTER;
664 assert(mpp->m_mime_enc != MIMEE_BIN);
666 outrest = inrest = dec = in;
667 mc = MIME_UNKNOWN;
668 n_UNINIT(mtc, 0);
670 /* TODO v15-compat Note we actually bypass our usual file handling by
671 * TODO directly using fseek() on mb.mb_itf -- the v15 rewrite will change
672 * TODO all of this, and until then doing it like this is the only option
673 * TODO to integrate nicely into whoever calls us */
674 start_off = ftell(mb.mb_itf);
675 if ((ibuf = setinput(&mb, (struct message*)mpp, NEED_BODY)) == NULL) {
676 jos_leave:
677 fseek(mb.mb_itf, start_off, SEEK_SET);
678 goto jleave;
680 cnt = mpp->m_size;
682 /* Skip part headers */
683 for (lc = '\0'; cnt > 0; lc = c, --cnt)
684 if ((c = getc(ibuf)) == EOF || (c == '\n' && lc == '\n'))
685 break;
686 if (cnt == 0 || ferror(ibuf))
687 goto jos_leave;
689 /* So now let's inspect the part content, decoding content-transfer-encoding
690 * along the way TODO this should simply be "mime_factory_create(MPP)"! */
691 _mt_classify_init(&mtca, _MT_C_ISTXT);
693 for (lsz = 0;;) {
694 bool_t dobuf;
696 c = (--cnt == 0) ? EOF : getc(ibuf);
697 if ((dobuf = (c == '\n'))) {
698 /* Ignore empty lines */
699 if (lsz == 0)
700 continue;
701 } else if ((dobuf = (c == EOF))) {
702 if (lsz == 0 && outrest.l == 0)
703 break;
706 if (in.l + 1 >= lsz)
707 in.s = srealloc(in.s, lsz += LINESIZE);
708 if (c != EOF)
709 in.s[in.l++] = (char)c;
710 if (!dobuf)
711 continue;
713 jdobuf:
714 switch (mpp->m_mime_enc) {
715 case MIMEE_B64:
716 if (!b64_decode_part(&dec, &in, &outrest,
717 (did_inrest ? NULL : &inrest))) {
718 mtca.mtca_mtc = _MT_C_HASNUL;
719 goto jstopit; /* break;break; */
721 break;
722 case MIMEE_QP:
723 /* Drin */
724 if (!qp_decode_part(&dec, &in, &outrest, &inrest)) {
725 mtca.mtca_mtc = _MT_C_HASNUL;
726 goto jstopit; /* break;break; */
728 if (dec.l == 0 && c != EOF) {
729 in.l = 0;
730 continue;
732 break;
733 default:
734 /* Temporarily switch those two buffers.. */
735 dec = in;
736 in.s = NULL;
737 in.l = 0;
738 break;
741 mtca.mtca_buf = dec.s;
742 mtca.mtca_len = (ssize_t)dec.l;
743 if ((mtc = _mt_classify_round(&mtca)) & _MT_C_SUGGEST_DONE) {
744 mtc = _MT_C_HASNUL;
745 break;
748 if (c == EOF)
749 break;
750 /* ..and restore switched */
751 if (in.s == NULL) {
752 in = dec;
753 dec.s = NULL;
755 in.l = dec.l = 0;
758 if ((in.l = inrest.l) > 0) {
759 in.s = inrest.s;
760 did_inrest = TRU1;
761 goto jdobuf;
763 if (outrest.l > 0)
764 goto jdobuf;
765 jstopit:
766 if (in.s != NULL)
767 free(in.s);
768 if (dec.s != NULL)
769 free(dec.s);
770 if (outrest.s != NULL)
771 free(outrest.s);
772 if (inrest.s != NULL)
773 free(inrest.s);
775 fseek(mb.mb_itf, start_off, SEEK_SET);
777 if (!(mtc & (_MT_C_HASNUL /*| _MT_C_CTRLCHAR XXX really? */))) {
778 mc = MIME_TEXT_PLAIN;
779 if (mce & MIMECE_ALL_OVWR)
780 mpp->m_ct_type_plain = "text/plain";
781 if (mce & (MIMECE_BIN_OVWR | MIMECE_ALL_OVWR))
782 mpp->m_ct_type_usr_ovwr = "text/plain";
784 jleave:
785 NYD2_LEAVE;
786 return mc;
789 static enum mime_handler_flags
790 a_mt_pipe_check(struct mime_handler *mhp){
791 enum mime_handler_flags rv_orig, rv;
792 char const *cp;
793 NYD2_ENTER;
795 rv_orig = rv = mhp->mh_flags;
797 /* Do we have any handler for this part? */
798 if(*(cp = mhp->mh_shell_cmd) == '\0')
799 goto jleave;
800 else if(*cp++ != '@'){
801 rv |= MIME_HDL_CMD;
802 goto jleave;
803 }else if(*cp == '\0'){
804 rv |= MIME_HDL_TEXT;
805 goto jleave;
808 jnextc:
809 switch(*cp){
810 case '*': rv |= MIME_HDL_COPIOUSOUTPUT; ++cp; goto jnextc;
811 case '#': rv |= MIME_HDL_NOQUOTE; ++cp; goto jnextc;
812 case '&': rv |= MIME_HDL_ASYNC; ++cp; goto jnextc;
813 case '!': rv |= MIME_HDL_NEEDSTERM; ++cp; goto jnextc;
814 case '+':
815 if(rv & MIME_HDL_TMPF)
816 rv |= MIME_HDL_TMPF_UNLINK;
817 rv |= MIME_HDL_TMPF;
818 ++cp;
819 goto jnextc;
820 case '=':
821 rv |= MIME_HDL_TMPF_FILL;
822 ++cp;
823 goto jnextc;
824 case '@':
825 ++cp;
826 /* FALLTHRU */
827 default:
828 break;
830 mhp->mh_shell_cmd = cp;
832 /* Implications */
833 if(rv & MIME_HDL_TMPF_FILL)
834 rv |= MIME_HDL_TMPF;
836 /* Exceptions */
837 if(rv & MIME_HDL_ISQUOTE){
838 if(rv & MIME_HDL_NOQUOTE)
839 goto jerr;
841 /* Cannot fetch data back from asynchronous process */
842 if(rv & MIME_HDL_ASYNC)
843 goto jerr;
845 /* TODO Can't use a "needsterminal" program for quoting */
846 if(rv & MIME_HDL_NEEDSTERM)
847 goto jerr;
850 if(rv & MIME_HDL_NEEDSTERM){
851 if(rv & MIME_HDL_COPIOUSOUTPUT){
852 n_err(_("MIME type handlers: cannot use needsterminal and "
853 "copiousoutput together\n"));
854 goto jerr;
856 if(rv & MIME_HDL_ASYNC){
857 n_err(_("MIME type handlers: cannot use needsterminal and "
858 "x-mailx-async together\n"));
859 goto jerr;
862 /* needsterminal needs a terminal */
863 if(!(n_psonce & n_PSO_INTERACTIVE))
864 goto jerr;
867 if(rv & MIME_HDL_ASYNC){
868 if(rv & MIME_HDL_COPIOUSOUTPUT){
869 n_err(_("MIME type handlers: cannot use x-mailx-async and "
870 "copiousoutput together\n"));
871 goto jerr;
873 if(rv & MIME_HDL_TMPF_UNLINK){
874 n_err(_("MIME type handlers: cannot use x-mailx-async and "
875 "x-mailx-tmpfile-unlink together\n"));
876 goto jerr;
880 /* TODO mailcap-only: TMPF_UNLINK): needs -tmpfile OR -tmpfile-fill */
882 rv |= MIME_HDL_CMD;
883 jleave:
884 mhp->mh_flags = rv;
885 NYD2_LEAVE;
886 return rv;
887 jerr:
888 rv = rv_orig;
889 goto jleave;
892 FL int
893 c_mimetype(void *v){
894 struct n_string s, *sp;
895 struct mtnode *mtnp;
896 char **argv;
897 NYD_ENTER;
899 if(!_mt_is_init)
900 _mt_init();
902 sp = n_string_creat_auto(&s);
904 if(*(argv = v) == NULL){
905 FILE *fp;
906 size_t l;
908 if(_mt_list == NULL){
909 fprintf(n_stdout, _("# `mimetype': no mime.types(5) available\n"));
910 goto jleave;
913 if((fp = Ftmp(NULL, "mimetype", OF_RDWR | OF_UNLINK | OF_REGISTER)
914 ) == NULL){
915 n_perr(_("tmpfile"), 0);
916 v = NULL;
917 goto jleave;
920 sp = n_string_reserve(sp, 63);
922 for(l = 0, mtnp = _mt_list; mtnp != NULL; ++l, mtnp = mtnp->mt_next){
923 char const *cp;
925 sp = n_string_trunc(sp, 0);
927 switch(mtnp->mt_flags & __MT_MARKMASK){
928 case _MT_PLAIN: cp = "@t "; break;
929 case _MT_SOUP_h: cp = "@h "; break;
930 case _MT_SOUP_H: cp = "@H "; break;
931 default: cp = NULL; break;
933 if(cp != NULL)
934 sp = n_string_push_cp(sp, cp);
936 if((mtnp->mt_flags & __MT_TMASK) != _MT_OTHER)
937 sp = n_string_push_cp(sp, _mt_typnames[mtnp->mt_flags &__MT_TMASK]);
939 sp = n_string_push_buf(sp, mtnp->mt_line, mtnp->mt_mtlen);
940 sp = n_string_push_c(sp, ' ');
941 sp = n_string_push_c(sp, ' ');
942 sp = n_string_push_cp(sp, &mtnp->mt_line[mtnp->mt_mtlen]);
944 fprintf(fp, "wysh mimetype %s%s\n", n_string_cp(sp),
945 ((n_poption & n_PO_D_V) == 0 ? n_empty
946 : (mtnp->mt_flags & _MT_USR ? " # user"
947 : (mtnp->mt_flags & _MT_SYS ? " # system"
948 : (mtnp->mt_flags & _MT_FSPEC ? " # f= file"
949 : (mtnp->mt_flags & _MT_CMD ? " # command" : " # built-in"))))));
952 page_or_print(fp, l);
953 Fclose(fp);
954 }else{
955 for(; *argv != NULL; ++argv){
956 if(sp->s_len > 0)
957 sp = n_string_push_c(sp, ' ');
958 sp = n_string_push_cp(sp, *argv);
961 mtnp = _mt_create(TRU1, _MT_CMD, n_string_cp(sp), sp->s_len);
962 if(mtnp != NULL){
963 mtnp->mt_next = _mt_list;
964 _mt_list = mtnp;
965 }else
966 v = NULL;
968 jleave:
969 NYD_LEAVE;
970 return (v == NULL ? !STOP : !OKAY); /* xxx 1:bad 0:good -- do some */
973 FL int
974 c_unmimetype(void *v)
976 char **argv = v;
977 struct mtnode *lnp, *mtnp;
978 bool_t match;
979 NYD_ENTER;
981 /* Need to load that first as necessary */
982 if (!_mt_is_init)
983 _mt_init();
985 for (; *argv != NULL; ++argv) {
986 if (!asccasecmp(*argv, "reset")) {
987 _mt_is_init = FAL0;
988 goto jdelall;
991 if (argv[0][0] == '*' && argv[0][1] == '\0') {
992 jdelall:
993 while ((mtnp = _mt_list) != NULL) {
994 _mt_list = mtnp->mt_next;
995 free(mtnp);
997 continue;
1000 for (match = FAL0, lnp = NULL, mtnp = _mt_list; mtnp != NULL;) {
1001 char const *typ;
1002 char *val;
1003 size_t i;
1005 if ((mtnp->mt_flags & __MT_TMASK) == _MT_OTHER) {
1006 typ = n_empty;
1007 i = 0;
1008 } else {
1009 typ = _mt_typnames[mtnp->mt_flags & __MT_TMASK];
1010 i = strlen(typ);
1013 val = ac_alloc(i + mtnp->mt_mtlen +1);
1014 memcpy(val, typ, i);
1015 memcpy(val + i, mtnp->mt_line, mtnp->mt_mtlen);
1016 val[i += mtnp->mt_mtlen] = '\0';
1017 i = asccasecmp(val, *argv);
1018 ac_free(val);
1020 if (!i) {
1021 struct mtnode *nnp = mtnp->mt_next;
1022 if (lnp == NULL)
1023 _mt_list = nnp;
1024 else
1025 lnp->mt_next = nnp;
1026 free(mtnp);
1027 mtnp = nnp;
1028 match = TRU1;
1029 } else
1030 lnp = mtnp, mtnp = mtnp->mt_next;
1032 if (!match) {
1033 if (!(n_pstate & n_PS_ROBOT) || (n_poption & n_PO_D_V))
1034 n_err(_("No such MIME type: %s\n"), *argv);
1035 v = NULL;
1038 NYD_LEAVE;
1039 return (v == NULL ? !STOP : !OKAY); /* xxx 1:bad 0:good -- do some */
1042 FL bool_t
1043 n_mimetype_check_mtname(char const *name)
1045 struct mtlookup mtl;
1046 bool_t rv;
1047 NYD_ENTER;
1049 rv = (_mt_by_mtname(&mtl, name) != NULL);
1050 NYD_LEAVE;
1051 return rv;
1054 FL char *
1055 n_mimetype_classify_filename(char const *name)
1057 struct mtlookup mtl;
1058 NYD_ENTER;
1060 _mt_by_filename(&mtl, name, TRU1);
1061 NYD_LEAVE;
1062 return mtl.mtl_result;
1065 FL enum conversion
1066 n_mimetype_classify_file(FILE *fp, char const **contenttype,
1067 char const **charset, int *do_iconv)
1069 /* TODO classify once only PLEASE PLEASE PLEASE */
1070 /* TODO message/rfc822 is special in that it may only be 7bit, 8bit or
1071 * TODO binary according to RFC 2046, 5.2.1
1072 * TODO The handling of which is a hack */
1073 bool_t rfc822;
1074 enum mime_type_class mtc;
1075 enum mime_enc menc;
1076 off_t fpsz;
1077 enum conversion c;
1078 NYD_ENTER;
1080 assert(ftell(fp) == 0x0l);
1082 *do_iconv = 0;
1084 if (*contenttype == NULL) {
1085 mtc = _MT_C_NCTT;
1086 rfc822 = FAL0;
1087 } else if (!ascncasecmp(*contenttype, "text/", 5)) {
1088 mtc = ok_blook(mime_allow_text_controls)
1089 ? _MT_C_ISTXT | _MT_C_ISTXTCOK : _MT_C_ISTXT;
1090 rfc822 = FAL0;
1091 } else if (!asccasecmp(*contenttype, "message/rfc822")) {
1092 mtc = _MT_C_ISTXT;
1093 rfc822 = TRU1;
1094 } else {
1095 mtc = _MT_C_CLEAN;
1096 rfc822 = FAL0;
1099 menc = mime_enc_target();
1101 if ((fpsz = fsize(fp)) == 0)
1102 goto j7bit;
1103 else {
1104 char buf[BUFFER_SIZE];
1105 struct mt_class_arg mtca;
1107 _mt_classify_init(&mtca, mtc);
1108 for (;;) {
1109 mtca.mtca_len = fread(buf, sizeof(buf[0]), n_NELEM(buf), fp);
1110 mtca.mtca_buf = buf;
1111 if ((mtc = _mt_classify_round(&mtca)) & _MT_C_SUGGEST_DONE)
1112 break;
1113 if (mtca.mtca_len == 0)
1114 break;
1116 /* TODO ferror(fp) ! */
1117 rewind(fp);
1120 if (mtc & _MT_C_HASNUL) {
1121 menc = MIMEE_B64;
1122 /* Don't overwrite a text content-type to allow UTF-16 and such, but only
1123 * on request; else enforce what file(1)/libmagic(3) would suggest */
1124 if (mtc & _MT_C_ISTXTCOK)
1125 goto jcharset;
1126 if (mtc & (_MT_C_NCTT | _MT_C_ISTXT))
1127 *contenttype = "application/octet-stream";
1128 if (*charset == NULL)
1129 *charset = "binary";
1130 goto jleave;
1133 if (mtc &
1134 (_MT_C_LONGLINES | _MT_C_CTRLCHAR | _MT_C_NOTERMNL | _MT_C_FROM_)) {
1135 if (menc != MIMEE_B64)
1136 menc = MIMEE_QP;
1137 goto jstepi;
1139 if (mtc & _MT_C_HIGHBIT) {
1140 jstepi:
1141 if (mtc & (_MT_C_NCTT | _MT_C_ISTXT))
1142 *do_iconv = ((mtc & _MT_C_HIGHBIT) != 0);
1143 } else
1144 j7bit:
1145 menc = MIMEE_7B;
1146 if (mtc & _MT_C_NCTT)
1147 *contenttype = "text/plain";
1149 /* Not an attachment with specified charset? */
1150 jcharset:
1151 if (*charset == NULL) /* TODO MIME/send: iter active? iter! else */
1152 *charset = (mtc & _MT_C_HIGHBIT) ? charset_iter_or_fallback()
1153 : ok_vlook(charset_7bit);
1154 jleave:
1155 /* TODO mime_type_file_classify() shouldn't return conversion */
1156 if (rfc822) {
1157 if (mtc & _MT_C_FROM_1STLINE) {
1158 n_err(_("Pre-v15 %s cannot handle message/rfc822 that "
1159 "indeed is a RFC 4155 MBOX!\n"
1160 " Forcing a content-type of application/mbox!\n"),
1161 n_uagent);
1162 *contenttype = "application/mbox";
1163 goto jnorfc822;
1165 c = (menc == MIMEE_7B ? CONV_7BIT
1166 : (menc == MIMEE_8B ? CONV_8BIT
1167 : CONV_NONE));
1168 } else
1169 jnorfc822:
1170 c = (menc == MIMEE_7B ? CONV_7BIT
1171 : (menc == MIMEE_8B ? CONV_8BIT
1172 : (menc == MIMEE_QP ? CONV_TOQP : CONV_TOB64)));
1173 NYD_LEAVE;
1174 return c;
1177 FL enum mimecontent
1178 n_mimetype_classify_part(struct mimepart *mpp) /* FIXME charset=binary ??? */
1180 struct mtlookup mtl;
1181 enum mimecontent mc;
1182 char const *ct;
1183 union {char const *cp; ui32_t f;} mce;
1184 bool_t is_os;
1185 NYD_ENTER;
1187 mc = MIME_UNKNOWN;
1188 if ((ct = mpp->m_ct_type_plain) == NULL) /* TODO may not */
1189 ct = n_empty;
1191 if((mce.cp = ok_vlook(mime_counter_evidence)) != NULL && *mce.cp != '\0'){
1192 if((n_idec_ui32_cp(&mce.f, mce.cp, 0, NULL
1193 ) & (n_IDEC_STATE_EMASK | n_IDEC_STATE_CONSUMED)
1194 ) != n_IDEC_STATE_CONSUMED){
1195 n_err(_("Invalid *mime-counter-evidence* value content\n"));
1196 is_os = FAL0;
1197 }else{
1198 mce.f |= MIMECE_SET;
1199 is_os = !asccasecmp(ct, "application/octet-stream");
1201 if(mpp->m_filename != NULL && (is_os || (mce.f & MIMECE_ALL_OVWR))){
1202 if(_mt_by_filename(&mtl, mpp->m_filename, TRU1) == NULL){
1203 if(is_os)
1204 goto jos_content_check;
1205 }else if(is_os || asccasecmp(ct, mtl.mtl_result)){
1206 if(mce.f & MIMECE_ALL_OVWR)
1207 mpp->m_ct_type_plain = ct = mtl.mtl_result;
1208 if(mce.f & (MIMECE_BIN_OVWR | MIMECE_ALL_OVWR))
1209 mpp->m_ct_type_usr_ovwr = ct = mtl.mtl_result;
1213 }else
1214 is_os = FAL0;
1216 if(strchr(ct, '/') == NULL) /* For compatibility with non-MIME */
1217 mc = MIME_TEXT;
1218 else if(is_asccaseprefix("text/", ct)){
1219 ct += sizeof("text/") -1;
1220 if(!asccasecmp(ct, "plain"))
1221 mc = MIME_TEXT_PLAIN;
1222 else if(!asccasecmp(ct, "html"))
1223 mc = MIME_TEXT_HTML;
1224 else
1225 mc = MIME_TEXT;
1226 }else if(is_asccaseprefix("message/", ct)){
1227 ct += sizeof("message/") -1;
1228 if(!asccasecmp(ct, "rfc822"))
1229 mc = MIME_822;
1230 else
1231 mc = MIME_MESSAGE;
1232 }else if(is_asccaseprefix("multipart/", ct)){
1233 struct multi_types{
1234 char mt_name[12];
1235 enum mimecontent mt_mc;
1236 } const mta[] = {
1237 {"alternative\0", MIME_ALTERNATIVE},
1238 {"related", MIME_RELATED},
1239 {"digest", MIME_DIGEST},
1240 {"signed", MIME_SIGNED},
1241 {"encrypted", MIME_ENCRYPTED}
1242 }, *mtap;
1244 for(ct += sizeof("multipart/") -1, mtap = mta;;)
1245 if(!asccasecmp(ct, mtap->mt_name)){
1246 mc = mtap->mt_mc;
1247 break;
1248 }else if(++mtap == mta + n_NELEM(mta)){
1249 mc = MIME_MULTI;
1250 break;
1252 }else if(is_asccaseprefix("application/", ct)){
1253 if(is_os)
1254 goto jos_content_check;
1255 ct += sizeof("application/") -1;
1256 if(!asccasecmp(ct, "pkcs7-mime") || !asccasecmp(ct, "x-pkcs7-mime"))
1257 mc = MIME_PKCS7;
1259 jleave:
1260 NYD_LEAVE;
1261 return mc;
1263 jos_content_check:
1264 if((mce.f & MIMECE_BIN_PARSE) && mpp->m_mime_enc != MIMEE_BIN &&
1265 mpp->m_charset != NULL && asccasecmp(mpp->m_charset, "binary"))
1266 mc = _mt_classify_os_part(mce.f, mpp);
1267 goto jleave;
1270 FL enum mime_handler_flags
1271 n_mimetype_handler(struct mime_handler *mhp, struct mimepart const *mpp,
1272 enum sendaction action)
1274 #define __S "pipe-"
1275 #define __L (sizeof(__S) -1)
1276 struct mtlookup mtl;
1277 char *buf, *cp;
1278 enum mime_handler_flags rv, xrv;
1279 char const *es, *cs, *ccp;
1280 size_t el, cl, l;
1281 NYD_ENTER;
1283 memset(mhp, 0, sizeof *mhp);
1284 buf = NULL;
1286 rv = MIME_HDL_NULL;
1287 if (action == SEND_QUOTE || action == SEND_QUOTE_ALL)
1288 rv |= MIME_HDL_ISQUOTE;
1289 else if (action != SEND_TODISP && action != SEND_TODISP_ALL &&
1290 action != SEND_TODISP_PARTS)
1291 goto jleave;
1293 el = ((es = mpp->m_filename) != NULL && (es = strrchr(es, '.')) != NULL &&
1294 *++es != '\0') ? strlen(es) : 0;
1295 cl = ((cs = mpp->m_ct_type_usr_ovwr) != NULL ||
1296 (cs = mpp->m_ct_type_plain) != NULL) ? strlen(cs) : 0;
1297 if ((l = n_MAX(el, cl)) == 0) {
1298 /* TODO this should be done during parse time! */
1299 goto jleave;
1302 /* We don't pass the flags around, so ensure carrier is up-to-date */
1303 mhp->mh_flags = rv;
1305 buf = n_lofi_alloc(__L + l +1);
1306 memcpy(buf, __S, __L);
1308 /* File-extension handlers take precedence.
1309 * Yes, we really "fail" here for file extensions which clash MIME types */
1310 if (el > 0) {
1311 memcpy(buf + __L, es, el +1);
1312 for (cp = buf + __L; *cp != '\0'; ++cp)
1313 *cp = lowerconv(*cp);
1315 if ((mhp->mh_shell_cmd = ccp = n_var_vlook(buf, FAL0)) != NULL) {
1316 rv = a_mt_pipe_check(mhp);
1317 goto jleave;
1321 /* Then MIME Content-Type:, if any */
1322 if (cl == 0)
1323 goto jleave;
1325 memcpy(buf + __L, cs, cl +1);
1326 for (cp = buf + __L; *cp != '\0'; ++cp)
1327 *cp = lowerconv(*cp);
1329 if ((mhp->mh_shell_cmd = n_var_vlook(buf, FAL0)) != NULL) {
1330 rv = a_mt_pipe_check(mhp);
1331 goto jleave;
1334 if (_mt_by_mtname(&mtl, cs) != NULL)
1335 switch (mtl.mtl_node->mt_flags & __MT_MARKMASK) {
1336 #ifndef HAVE_FILTER_HTML_TAGSOUP
1337 case _MT_SOUP_H:
1338 break;
1339 #endif
1340 case _MT_SOUP_h:
1341 #ifdef HAVE_FILTER_HTML_TAGSOUP
1342 case _MT_SOUP_H:
1343 mhp->mh_ptf = &htmlflt_process_main;
1344 mhp->mh_msg.l = strlen(mhp->mh_msg.s =
1345 n_UNCONST(_("Built-in HTML tagsoup filter")));
1346 rv ^= MIME_HDL_NULL | MIME_HDL_PTF;
1347 goto jleave;
1348 #endif
1349 /* FALLTHRU */
1350 case _MT_PLAIN:
1351 mhp->mh_msg.l = strlen(mhp->mh_msg.s = n_UNCONST(_("Plain text")));
1352 rv ^= MIME_HDL_NULL | MIME_HDL_TEXT;
1353 goto jleave;
1354 default:
1355 break;
1358 jleave:
1359 if(buf != NULL)
1360 n_lofi_free(buf);
1362 xrv = rv;
1363 if((rv &= MIME_HDL_TYPE_MASK) == MIME_HDL_NULL)
1364 mhp->mh_msg.l = strlen(mhp->mh_msg.s = n_UNCONST(
1365 _("[-- No MIME handler installed, or not applicable --]\n")));
1366 else if(rv == MIME_HDL_CMD && !(xrv & MIME_HDL_COPIOUSOUTPUT) &&
1367 action != SEND_TODISP_PARTS){
1368 mhp->mh_msg.l = strlen(mhp->mh_msg.s = n_UNCONST(
1369 _("[-- Use the command `partview' to display this --]\n")));
1370 xrv &= ~MIME_HDL_TYPE_MASK;
1371 xrv |= (rv = MIME_HDL_MSG);
1373 mhp->mh_flags = xrv;
1375 NYD_LEAVE;
1376 return rv;
1377 #undef __L
1378 #undef __S
1381 /* s-it-mode */