mime-types.c: (just) (satisfy) scan-build
[s-mailx.git] / mime-types.c
blobfbe4b97966085f622954026278a351cbb4402711
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 if(blen == 0){
563 /* Real EOF, or only current buffer end? */
564 if(mtcap->mtca_len == 0){
565 lastc = c;
566 c = EOF;
567 }else
568 break;
569 }else{
570 lastc = c;
571 c = (uc_i)*buf++;
573 --blen;
575 if (c == '\0') {
576 mtc |= _MT_C_HASNUL;
577 if (!(mtc & _MT_C_ISTXTCOK)) {
578 mtc |= _MT_C_SUGGEST_DONE;
579 break;
581 continue;
583 if (c == '\n' || c == EOF) {
584 mtc &= ~_MT_C__1STLINE;
585 if (curlen >= MIME_LINELEN_LIMIT)
586 mtc |= _MT_C_LONGLINES;
587 if (c == EOF) {
588 break;
590 f_p = f_buf;
591 curlen = -1;
592 continue;
594 /* A bit hairy is handling of \r=\x0D=CR.
595 * RFC 2045, 6.7:
596 * Control characters other than TAB, or CR and LF as parts of CRLF
597 * pairs, must not appear. \r alone does not force _CTRLCHAR below since
598 * we cannot peek the next character. Thus right here, inspect the last
599 * seen character for if its \r and set _CTRLCHAR in a delayed fashion */
600 /*else*/ if (lastc == '\r')
601 mtc |= _MT_C_CTRLCHAR;
603 /* Control character? XXX this is all ASCII here */
604 if (c < 0x20 || c == 0x7F) {
605 /* RFC 2045, 6.7, as above ... */
606 if (c != '\t' && c != '\r')
607 mtc |= _MT_C_CTRLCHAR;
608 /* If there is a escape sequence in reverse solidus notation defined
609 * for this in ANSI X3.159-1989 (ANSI C89), don't treat it as a control
610 * for real. I.e., \a=\x07=BEL, \b=\x08=BS, \t=\x09=HT. Don't follow
611 * libmagic(1) in respect to \v=\x0B=VT. \f=\x0C=NP; do ignore
612 * \e=\x1B=ESC */
613 if ((c >= '\x07' && c <= '\x0D') || c == '\x1B')
614 continue;
615 mtc |= _MT_C_HASNUL; /* Force base64 */
616 if (!(mtc & _MT_C_ISTXTCOK)) {
617 mtc |= _MT_C_SUGGEST_DONE;
618 break;
620 } else if ((ui8_t)c & 0x80) {
621 mtc |= _MT_C_HIGHBIT;
622 /* TODO count chars with HIGHBIT? libmagic?
623 * TODO try encode part - base64 if bails? */
624 if (!(mtc & (_MT_C_NCTT | _MT_C_ISTXT))) { /* TODO _NCTT?? */
625 mtc |= _MT_C_HASNUL /* Force base64 */ | _MT_C_SUGGEST_DONE;
626 break;
628 } else if (!(mtc & _MT_C_FROM_) && UICMP(z, curlen, <, F_SIZEOF)) {
629 *f_p++ = (char)c;
630 if (UICMP(z, curlen, ==, F_SIZEOF - 1) &&
631 PTR2SIZE(f_p - f_buf) == F_SIZEOF &&
632 !memcmp(f_buf, F_, F_SIZEOF)){
633 mtc |= _MT_C_FROM_;
634 if (mtc & _MT_C__1STLINE)
635 mtc |= _MT_C_FROM_1STLINE;
639 if (c == EOF && lastc != '\n')
640 mtc |= _MT_C_NOTERMNL;
642 mtcap->mtca_curlen = curlen;
643 /*mtcap->mtca_lastc = lastc*/;
644 mtcap->mtca_c = c;
645 mtcap->mtca_mtc = mtc;
646 NYD2_LEAVE;
647 return mtc;
648 #undef F_
649 #undef F_SIZEOF
652 static enum mimecontent
653 _mt_classify_os_part(ui32_t mce, struct mimepart *mpp)
655 struct str in = {NULL, 0}, outrest, inrest, dec;
656 struct mt_class_arg mtca;
657 bool_t did_inrest;
658 enum mime_type_class mtc;
659 int lc, c;
660 size_t cnt, lsz;
661 FILE *ibuf;
662 off_t start_off;
663 enum mimecontent mc;
664 NYD2_ENTER;
666 assert(mpp->m_mime_enc != MIMEE_BIN);
668 outrest = inrest = dec = in;
669 mc = MIME_UNKNOWN;
670 n_UNINIT(mtc, 0);
671 did_inrest = FAL0;
673 /* TODO v15-compat Note we actually bypass our usual file handling by
674 * TODO directly using fseek() on mb.mb_itf -- the v15 rewrite will change
675 * TODO all of this, and until then doing it like this is the only option
676 * TODO to integrate nicely into whoever calls us */
677 start_off = ftell(mb.mb_itf);
678 if ((ibuf = setinput(&mb, (struct message*)mpp, NEED_BODY)) == NULL) {
679 jos_leave:
680 fseek(mb.mb_itf, start_off, SEEK_SET);
681 goto jleave;
683 cnt = mpp->m_size;
685 /* Skip part headers */
686 for (lc = '\0'; cnt > 0; lc = c, --cnt)
687 if ((c = getc(ibuf)) == EOF || (c == '\n' && lc == '\n'))
688 break;
689 if (cnt == 0 || ferror(ibuf))
690 goto jos_leave;
692 /* So now let's inspect the part content, decoding content-transfer-encoding
693 * along the way TODO this should simply be "mime_factory_create(MPP)"! */
694 _mt_classify_init(&mtca, _MT_C_ISTXT);
696 for (lsz = 0;;) {
697 bool_t dobuf;
699 c = (--cnt == 0) ? EOF : getc(ibuf);
700 if ((dobuf = (c == '\n'))) {
701 /* Ignore empty lines */
702 if (lsz == 0)
703 continue;
704 } else if ((dobuf = (c == EOF))) {
705 if (lsz == 0 && outrest.l == 0)
706 break;
709 if (in.l + 1 >= lsz)
710 in.s = srealloc(in.s, lsz += LINESIZE);
711 if (c != EOF)
712 in.s[in.l++] = (char)c;
713 if (!dobuf)
714 continue;
716 jdobuf:
717 switch (mpp->m_mime_enc) {
718 case MIMEE_B64:
719 if (!b64_decode_part(&dec, &in, &outrest,
720 (did_inrest ? NULL : &inrest))) {
721 mtca.mtca_mtc = _MT_C_HASNUL;
722 goto jstopit; /* break;break; */
724 break;
725 case MIMEE_QP:
726 /* Drin */
727 if (!qp_decode_part(&dec, &in, &outrest, &inrest)) {
728 mtca.mtca_mtc = _MT_C_HASNUL;
729 goto jstopit; /* break;break; */
731 if (dec.l == 0 && c != EOF) {
732 in.l = 0;
733 continue;
735 break;
736 default:
737 /* Temporarily switch those two buffers.. */
738 dec = in;
739 in.s = NULL;
740 in.l = 0;
741 break;
744 mtca.mtca_buf = dec.s;
745 mtca.mtca_len = (ssize_t)dec.l;
746 if ((mtc = _mt_classify_round(&mtca)) & _MT_C_SUGGEST_DONE) {
747 mtc = _MT_C_HASNUL;
748 break;
751 if (c == EOF)
752 break;
753 /* ..and restore switched */
754 if (in.s == NULL) {
755 in = dec;
756 dec.s = NULL;
758 in.l = dec.l = 0;
761 if ((in.l = inrest.l) > 0) {
762 in.s = inrest.s;
763 did_inrest = TRU1;
764 goto jdobuf;
766 if (outrest.l > 0)
767 goto jdobuf;
768 jstopit:
769 if (in.s != NULL)
770 free(in.s);
771 if (dec.s != NULL)
772 free(dec.s);
773 if (outrest.s != NULL)
774 free(outrest.s);
775 if (inrest.s != NULL)
776 free(inrest.s);
778 fseek(mb.mb_itf, start_off, SEEK_SET);
780 if (!(mtc & (_MT_C_HASNUL /*| _MT_C_CTRLCHAR XXX really? */))) {
781 mc = MIME_TEXT_PLAIN;
782 if (mce & MIMECE_ALL_OVWR)
783 mpp->m_ct_type_plain = "text/plain";
784 if (mce & (MIMECE_BIN_OVWR | MIMECE_ALL_OVWR))
785 mpp->m_ct_type_usr_ovwr = "text/plain";
787 jleave:
788 NYD2_LEAVE;
789 return mc;
792 static enum mime_handler_flags
793 a_mt_pipe_check(struct mime_handler *mhp){
794 enum mime_handler_flags rv_orig, rv;
795 char const *cp;
796 NYD2_ENTER;
798 rv_orig = rv = mhp->mh_flags;
800 /* Do we have any handler for this part? */
801 if(*(cp = mhp->mh_shell_cmd) == '\0')
802 goto jleave;
803 else if(*cp++ != '@'){
804 rv |= MIME_HDL_CMD;
805 goto jleave;
806 }else if(*cp == '\0'){
807 rv |= MIME_HDL_TEXT;
808 goto jleave;
811 jnextc:
812 switch(*cp){
813 case '*': rv |= MIME_HDL_COPIOUSOUTPUT; ++cp; goto jnextc;
814 case '#': rv |= MIME_HDL_NOQUOTE; ++cp; goto jnextc;
815 case '&': rv |= MIME_HDL_ASYNC; ++cp; goto jnextc;
816 case '!': rv |= MIME_HDL_NEEDSTERM; ++cp; goto jnextc;
817 case '+':
818 if(rv & MIME_HDL_TMPF)
819 rv |= MIME_HDL_TMPF_UNLINK;
820 rv |= MIME_HDL_TMPF;
821 ++cp;
822 goto jnextc;
823 case '=':
824 rv |= MIME_HDL_TMPF_FILL;
825 ++cp;
826 goto jnextc;
827 case '@':
828 ++cp;
829 /* FALLTHRU */
830 default:
831 break;
833 mhp->mh_shell_cmd = cp;
835 /* Implications */
836 if(rv & MIME_HDL_TMPF_FILL)
837 rv |= MIME_HDL_TMPF;
839 /* Exceptions */
840 if(rv & MIME_HDL_ISQUOTE){
841 if(rv & MIME_HDL_NOQUOTE)
842 goto jerr;
844 /* Cannot fetch data back from asynchronous process */
845 if(rv & MIME_HDL_ASYNC)
846 goto jerr;
848 /* TODO Can't use a "needsterminal" program for quoting */
849 if(rv & MIME_HDL_NEEDSTERM)
850 goto jerr;
853 if(rv & MIME_HDL_NEEDSTERM){
854 if(rv & MIME_HDL_COPIOUSOUTPUT){
855 n_err(_("MIME type handlers: cannot use needsterminal and "
856 "copiousoutput together\n"));
857 goto jerr;
859 if(rv & MIME_HDL_ASYNC){
860 n_err(_("MIME type handlers: cannot use needsterminal and "
861 "x-mailx-async together\n"));
862 goto jerr;
865 /* needsterminal needs a terminal */
866 if(!(n_psonce & n_PSO_INTERACTIVE))
867 goto jerr;
870 if(rv & MIME_HDL_ASYNC){
871 if(rv & MIME_HDL_COPIOUSOUTPUT){
872 n_err(_("MIME type handlers: cannot use x-mailx-async and "
873 "copiousoutput together\n"));
874 goto jerr;
876 if(rv & MIME_HDL_TMPF_UNLINK){
877 n_err(_("MIME type handlers: cannot use x-mailx-async and "
878 "x-mailx-tmpfile-unlink together\n"));
879 goto jerr;
883 /* TODO mailcap-only: TMPF_UNLINK): needs -tmpfile OR -tmpfile-fill */
885 rv |= MIME_HDL_CMD;
886 jleave:
887 mhp->mh_flags = rv;
888 NYD2_LEAVE;
889 return rv;
890 jerr:
891 rv = rv_orig;
892 goto jleave;
895 FL int
896 c_mimetype(void *v){
897 struct n_string s, *sp;
898 struct mtnode *mtnp;
899 char **argv;
900 NYD_ENTER;
902 if(!_mt_is_init)
903 _mt_init();
905 sp = n_string_creat_auto(&s);
907 if(*(argv = v) == NULL){
908 FILE *fp;
909 size_t l;
911 if(_mt_list == NULL){
912 fprintf(n_stdout, _("# `mimetype': no mime.types(5) available\n"));
913 goto jleave;
916 if((fp = Ftmp(NULL, "mimetype", OF_RDWR | OF_UNLINK | OF_REGISTER)
917 ) == NULL){
918 n_perr(_("tmpfile"), 0);
919 v = NULL;
920 goto jleave;
923 sp = n_string_reserve(sp, 63);
925 for(l = 0, mtnp = _mt_list; mtnp != NULL; ++l, mtnp = mtnp->mt_next){
926 char const *cp;
928 sp = n_string_trunc(sp, 0);
930 switch(mtnp->mt_flags & __MT_MARKMASK){
931 case _MT_PLAIN: cp = "@t "; break;
932 case _MT_SOUP_h: cp = "@h "; break;
933 case _MT_SOUP_H: cp = "@H "; break;
934 default: cp = NULL; break;
936 if(cp != NULL)
937 sp = n_string_push_cp(sp, cp);
939 if((mtnp->mt_flags & __MT_TMASK) != _MT_OTHER)
940 sp = n_string_push_cp(sp, _mt_typnames[mtnp->mt_flags &__MT_TMASK]);
942 sp = n_string_push_buf(sp, mtnp->mt_line, mtnp->mt_mtlen);
943 sp = n_string_push_c(sp, ' ');
944 sp = n_string_push_c(sp, ' ');
945 sp = n_string_push_cp(sp, &mtnp->mt_line[mtnp->mt_mtlen]);
947 fprintf(fp, "wysh mimetype %s%s\n", n_string_cp(sp),
948 ((n_poption & n_PO_D_V) == 0 ? n_empty
949 : (mtnp->mt_flags & _MT_USR ? " # user"
950 : (mtnp->mt_flags & _MT_SYS ? " # system"
951 : (mtnp->mt_flags & _MT_FSPEC ? " # f= file"
952 : (mtnp->mt_flags & _MT_CMD ? " # command" : " # built-in"))))));
955 page_or_print(fp, l);
956 Fclose(fp);
957 }else{
958 for(; *argv != NULL; ++argv){
959 if(sp->s_len > 0)
960 sp = n_string_push_c(sp, ' ');
961 sp = n_string_push_cp(sp, *argv);
964 mtnp = _mt_create(TRU1, _MT_CMD, n_string_cp(sp), sp->s_len);
965 if(mtnp != NULL){
966 mtnp->mt_next = _mt_list;
967 _mt_list = mtnp;
968 }else
969 v = NULL;
971 jleave:
972 NYD_LEAVE;
973 return (v == NULL ? !STOP : !OKAY); /* xxx 1:bad 0:good -- do some */
976 FL int
977 c_unmimetype(void *v)
979 char **argv = v;
980 struct mtnode *lnp, *mtnp;
981 bool_t match;
982 NYD_ENTER;
984 /* Need to load that first as necessary */
985 if (!_mt_is_init)
986 _mt_init();
988 for (; *argv != NULL; ++argv) {
989 if (!asccasecmp(*argv, "reset")) {
990 _mt_is_init = FAL0;
991 goto jdelall;
994 if (argv[0][0] == '*' && argv[0][1] == '\0') {
995 jdelall:
996 while ((mtnp = _mt_list) != NULL) {
997 _mt_list = mtnp->mt_next;
998 free(mtnp);
1000 continue;
1003 for (match = FAL0, lnp = NULL, mtnp = _mt_list; mtnp != NULL;) {
1004 char const *typ;
1005 char *val;
1006 size_t i;
1008 if ((mtnp->mt_flags & __MT_TMASK) == _MT_OTHER) {
1009 typ = n_empty;
1010 i = 0;
1011 } else {
1012 typ = _mt_typnames[mtnp->mt_flags & __MT_TMASK];
1013 i = strlen(typ);
1016 val = ac_alloc(i + mtnp->mt_mtlen +1);
1017 memcpy(val, typ, i);
1018 memcpy(val + i, mtnp->mt_line, mtnp->mt_mtlen);
1019 val[i += mtnp->mt_mtlen] = '\0';
1020 i = asccasecmp(val, *argv);
1021 ac_free(val);
1023 if (!i) {
1024 struct mtnode *nnp = mtnp->mt_next;
1025 if (lnp == NULL)
1026 _mt_list = nnp;
1027 else
1028 lnp->mt_next = nnp;
1029 free(mtnp);
1030 mtnp = nnp;
1031 match = TRU1;
1032 } else
1033 lnp = mtnp, mtnp = mtnp->mt_next;
1035 if (!match) {
1036 if (!(n_pstate & n_PS_ROBOT) || (n_poption & n_PO_D_V))
1037 n_err(_("No such MIME type: %s\n"), *argv);
1038 v = NULL;
1041 NYD_LEAVE;
1042 return (v == NULL ? !STOP : !OKAY); /* xxx 1:bad 0:good -- do some */
1045 FL bool_t
1046 n_mimetype_check_mtname(char const *name)
1048 struct mtlookup mtl;
1049 bool_t rv;
1050 NYD_ENTER;
1052 rv = (_mt_by_mtname(&mtl, name) != NULL);
1053 NYD_LEAVE;
1054 return rv;
1057 FL char *
1058 n_mimetype_classify_filename(char const *name)
1060 struct mtlookup mtl;
1061 NYD_ENTER;
1063 _mt_by_filename(&mtl, name, TRU1);
1064 NYD_LEAVE;
1065 return mtl.mtl_result;
1068 FL enum conversion
1069 n_mimetype_classify_file(FILE *fp, char const **contenttype,
1070 char const **charset, int *do_iconv)
1072 /* TODO classify once only PLEASE PLEASE PLEASE */
1073 /* TODO message/rfc822 is special in that it may only be 7bit, 8bit or
1074 * TODO binary according to RFC 2046, 5.2.1
1075 * TODO The handling of which is a hack */
1076 bool_t rfc822;
1077 enum mime_type_class mtc;
1078 enum mime_enc menc;
1079 off_t fpsz;
1080 enum conversion c;
1081 NYD_ENTER;
1083 assert(ftell(fp) == 0x0l);
1085 *do_iconv = 0;
1087 if (*contenttype == NULL) {
1088 mtc = _MT_C_NCTT;
1089 rfc822 = FAL0;
1090 } else if (!ascncasecmp(*contenttype, "text/", 5)) {
1091 mtc = ok_blook(mime_allow_text_controls)
1092 ? _MT_C_ISTXT | _MT_C_ISTXTCOK : _MT_C_ISTXT;
1093 rfc822 = FAL0;
1094 } else if (!asccasecmp(*contenttype, "message/rfc822")) {
1095 mtc = _MT_C_ISTXT;
1096 rfc822 = TRU1;
1097 } else {
1098 mtc = _MT_C_CLEAN;
1099 rfc822 = FAL0;
1102 menc = mime_enc_target();
1104 if ((fpsz = fsize(fp)) == 0)
1105 goto j7bit;
1106 else {
1107 char buf[BUFFER_SIZE];
1108 struct mt_class_arg mtca;
1110 _mt_classify_init(&mtca, mtc);
1111 for (;;) {
1112 mtca.mtca_len = fread(buf, sizeof(buf[0]), n_NELEM(buf), fp);
1113 mtca.mtca_buf = buf;
1114 if ((mtc = _mt_classify_round(&mtca)) & _MT_C_SUGGEST_DONE)
1115 break;
1116 if (mtca.mtca_len == 0)
1117 break;
1119 /* TODO ferror(fp) ! */
1120 rewind(fp);
1123 if (mtc & _MT_C_HASNUL) {
1124 menc = MIMEE_B64;
1125 /* Don't overwrite a text content-type to allow UTF-16 and such, but only
1126 * on request; else enforce what file(1)/libmagic(3) would suggest */
1127 if (mtc & _MT_C_ISTXTCOK)
1128 goto jcharset;
1129 if (mtc & (_MT_C_NCTT | _MT_C_ISTXT))
1130 *contenttype = "application/octet-stream";
1131 if (*charset == NULL)
1132 *charset = "binary";
1133 goto jleave;
1136 if (mtc &
1137 (_MT_C_LONGLINES | _MT_C_CTRLCHAR | _MT_C_NOTERMNL | _MT_C_FROM_)) {
1138 if (menc != MIMEE_B64)
1139 menc = MIMEE_QP;
1140 goto jstepi;
1142 if (mtc & _MT_C_HIGHBIT) {
1143 jstepi:
1144 if (mtc & (_MT_C_NCTT | _MT_C_ISTXT))
1145 *do_iconv = ((mtc & _MT_C_HIGHBIT) != 0);
1146 } else
1147 j7bit:
1148 menc = MIMEE_7B;
1149 if (mtc & _MT_C_NCTT)
1150 *contenttype = "text/plain";
1152 /* Not an attachment with specified charset? */
1153 jcharset:
1154 if (*charset == NULL) /* TODO MIME/send: iter active? iter! else */
1155 *charset = (mtc & _MT_C_HIGHBIT) ? charset_iter_or_fallback()
1156 : ok_vlook(charset_7bit);
1157 jleave:
1158 /* TODO mime_type_file_classify() shouldn't return conversion */
1159 if (rfc822) {
1160 if (mtc & _MT_C_FROM_1STLINE) {
1161 n_err(_("Pre-v15 %s cannot handle message/rfc822 that "
1162 "indeed is a RFC 4155 MBOX!\n"
1163 " Forcing a content-type of application/mbox!\n"),
1164 n_uagent);
1165 *contenttype = "application/mbox";
1166 goto jnorfc822;
1168 c = (menc == MIMEE_7B ? CONV_7BIT
1169 : (menc == MIMEE_8B ? CONV_8BIT
1170 : CONV_NONE));
1171 } else
1172 jnorfc822:
1173 c = (menc == MIMEE_7B ? CONV_7BIT
1174 : (menc == MIMEE_8B ? CONV_8BIT
1175 : (menc == MIMEE_QP ? CONV_TOQP : CONV_TOB64)));
1176 NYD_LEAVE;
1177 return c;
1180 FL enum mimecontent
1181 n_mimetype_classify_part(struct mimepart *mpp) /* FIXME charset=binary ??? */
1183 struct mtlookup mtl;
1184 enum mimecontent mc;
1185 char const *ct;
1186 union {char const *cp; ui32_t f;} mce;
1187 bool_t is_os;
1188 NYD_ENTER;
1190 mc = MIME_UNKNOWN;
1191 if ((ct = mpp->m_ct_type_plain) == NULL) /* TODO may not */
1192 ct = n_empty;
1194 if((mce.cp = ok_vlook(mime_counter_evidence)) != NULL && *mce.cp != '\0'){
1195 if((n_idec_ui32_cp(&mce.f, mce.cp, 0, NULL
1196 ) & (n_IDEC_STATE_EMASK | n_IDEC_STATE_CONSUMED)
1197 ) != n_IDEC_STATE_CONSUMED){
1198 n_err(_("Invalid *mime-counter-evidence* value content\n"));
1199 is_os = FAL0;
1200 }else{
1201 mce.f |= MIMECE_SET;
1202 is_os = !asccasecmp(ct, "application/octet-stream");
1204 if(mpp->m_filename != NULL && (is_os || (mce.f & MIMECE_ALL_OVWR))){
1205 if(_mt_by_filename(&mtl, mpp->m_filename, TRU1) == NULL){
1206 if(is_os)
1207 goto jos_content_check;
1208 }else if(is_os || asccasecmp(ct, mtl.mtl_result)){
1209 if(mce.f & MIMECE_ALL_OVWR)
1210 mpp->m_ct_type_plain = ct = mtl.mtl_result;
1211 if(mce.f & (MIMECE_BIN_OVWR | MIMECE_ALL_OVWR))
1212 mpp->m_ct_type_usr_ovwr = ct = mtl.mtl_result;
1216 }else
1217 is_os = FAL0;
1219 if(strchr(ct, '/') == NULL) /* For compatibility with non-MIME */
1220 mc = MIME_TEXT;
1221 else if(is_asccaseprefix("text/", ct)){
1222 ct += sizeof("text/") -1;
1223 if(!asccasecmp(ct, "plain"))
1224 mc = MIME_TEXT_PLAIN;
1225 else if(!asccasecmp(ct, "html"))
1226 mc = MIME_TEXT_HTML;
1227 else
1228 mc = MIME_TEXT;
1229 }else if(is_asccaseprefix("message/", ct)){
1230 ct += sizeof("message/") -1;
1231 if(!asccasecmp(ct, "rfc822"))
1232 mc = MIME_822;
1233 else
1234 mc = MIME_MESSAGE;
1235 }else if(is_asccaseprefix("multipart/", ct)){
1236 struct multi_types{
1237 char mt_name[12];
1238 enum mimecontent mt_mc;
1239 } const mta[] = {
1240 {"alternative\0", MIME_ALTERNATIVE},
1241 {"related", MIME_RELATED},
1242 {"digest", MIME_DIGEST},
1243 {"signed", MIME_SIGNED},
1244 {"encrypted", MIME_ENCRYPTED}
1245 }, *mtap;
1247 for(ct += sizeof("multipart/") -1, mtap = mta;;)
1248 if(!asccasecmp(ct, mtap->mt_name)){
1249 mc = mtap->mt_mc;
1250 break;
1251 }else if(++mtap == mta + n_NELEM(mta)){
1252 mc = MIME_MULTI;
1253 break;
1255 }else if(is_asccaseprefix("application/", ct)){
1256 if(is_os)
1257 goto jos_content_check;
1258 ct += sizeof("application/") -1;
1259 if(!asccasecmp(ct, "pkcs7-mime") || !asccasecmp(ct, "x-pkcs7-mime"))
1260 mc = MIME_PKCS7;
1262 jleave:
1263 NYD_LEAVE;
1264 return mc;
1266 jos_content_check:
1267 if((mce.f & MIMECE_BIN_PARSE) && mpp->m_mime_enc != MIMEE_BIN &&
1268 mpp->m_charset != NULL && asccasecmp(mpp->m_charset, "binary"))
1269 mc = _mt_classify_os_part(mce.f, mpp);
1270 goto jleave;
1273 FL enum mime_handler_flags
1274 n_mimetype_handler(struct mime_handler *mhp, struct mimepart const *mpp,
1275 enum sendaction action)
1277 #define __S "pipe-"
1278 #define __L (sizeof(__S) -1)
1279 struct mtlookup mtl;
1280 char *buf, *cp;
1281 enum mime_handler_flags rv, xrv;
1282 char const *es, *cs, *ccp;
1283 size_t el, cl, l;
1284 NYD_ENTER;
1286 memset(mhp, 0, sizeof *mhp);
1287 buf = NULL;
1289 rv = MIME_HDL_NULL;
1290 if (action == SEND_QUOTE || action == SEND_QUOTE_ALL)
1291 rv |= MIME_HDL_ISQUOTE;
1292 else if (action != SEND_TODISP && action != SEND_TODISP_ALL &&
1293 action != SEND_TODISP_PARTS)
1294 goto jleave;
1296 el = ((es = mpp->m_filename) != NULL && (es = strrchr(es, '.')) != NULL &&
1297 *++es != '\0') ? strlen(es) : 0;
1298 cl = ((cs = mpp->m_ct_type_usr_ovwr) != NULL ||
1299 (cs = mpp->m_ct_type_plain) != NULL) ? strlen(cs) : 0;
1300 if ((l = n_MAX(el, cl)) == 0) {
1301 /* TODO this should be done during parse time! */
1302 goto jleave;
1305 /* We don't pass the flags around, so ensure carrier is up-to-date */
1306 mhp->mh_flags = rv;
1308 buf = n_lofi_alloc(__L + l +1);
1309 memcpy(buf, __S, __L);
1311 /* File-extension handlers take precedence.
1312 * Yes, we really "fail" here for file extensions which clash MIME types */
1313 if (el > 0) {
1314 memcpy(buf + __L, es, el +1);
1315 for (cp = buf + __L; *cp != '\0'; ++cp)
1316 *cp = lowerconv(*cp);
1318 if ((mhp->mh_shell_cmd = ccp = n_var_vlook(buf, FAL0)) != NULL) {
1319 rv = a_mt_pipe_check(mhp);
1320 goto jleave;
1324 /* Then MIME Content-Type:, if any */
1325 if (cl == 0)
1326 goto jleave;
1328 memcpy(buf + __L, cs, cl +1);
1329 for (cp = buf + __L; *cp != '\0'; ++cp)
1330 *cp = lowerconv(*cp);
1332 if ((mhp->mh_shell_cmd = n_var_vlook(buf, FAL0)) != NULL) {
1333 rv = a_mt_pipe_check(mhp);
1334 goto jleave;
1337 if (_mt_by_mtname(&mtl, cs) != NULL)
1338 switch (mtl.mtl_node->mt_flags & __MT_MARKMASK) {
1339 #ifndef HAVE_FILTER_HTML_TAGSOUP
1340 case _MT_SOUP_H:
1341 break;
1342 #endif
1343 case _MT_SOUP_h:
1344 #ifdef HAVE_FILTER_HTML_TAGSOUP
1345 case _MT_SOUP_H:
1346 mhp->mh_ptf = &htmlflt_process_main;
1347 mhp->mh_msg.l = strlen(mhp->mh_msg.s =
1348 n_UNCONST(_("Built-in HTML tagsoup filter")));
1349 rv ^= MIME_HDL_NULL | MIME_HDL_PTF;
1350 goto jleave;
1351 #endif
1352 /* FALLTHRU */
1353 case _MT_PLAIN:
1354 mhp->mh_msg.l = strlen(mhp->mh_msg.s = n_UNCONST(_("Plain text")));
1355 rv ^= MIME_HDL_NULL | MIME_HDL_TEXT;
1356 goto jleave;
1357 default:
1358 break;
1361 jleave:
1362 if(buf != NULL)
1363 n_lofi_free(buf);
1365 xrv = rv;
1366 if((rv &= MIME_HDL_TYPE_MASK) == MIME_HDL_NULL)
1367 mhp->mh_msg.l = strlen(mhp->mh_msg.s = n_UNCONST(
1368 _("[-- No MIME handler installed, or not applicable --]\n")));
1369 else if(rv == MIME_HDL_CMD && !(xrv & MIME_HDL_COPIOUSOUTPUT) &&
1370 action != SEND_TODISP_PARTS){
1371 mhp->mh_msg.l = strlen(mhp->mh_msg.s = n_UNCONST(
1372 _("[-- Use the command `mimeview' to display this --]\n")));
1373 xrv &= ~MIME_HDL_TYPE_MASK;
1374 xrv |= (rv = MIME_HDL_MSG);
1376 mhp->mh_flags = xrv;
1378 NYD_LEAVE;
1379 return rv;
1380 #undef __L
1381 #undef __S
1384 /* s-it-mode */