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.
20 #define n_FILE mime_types
22 #ifndef HAVE_AMALGAMATION
36 __MT_TMAX
= _MT_OTHER
,
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 /* .. */
73 struct mtnode
*mt_next
;
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 */
84 struct mtnode
const *mtl_node
;
85 char *mtl_result
; /* If requested, salloc()ed MIME type */
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/",
106 n_CTAV(_MT_APPLICATION
== 0 && _MT_AUDIO
== 1 && _MT_IMAGE
== 2 &&
107 _MT_MESSAGE
== 3 && _MT_MULTIPART
== 4 && _MT_TEXT
== 5 &&
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
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
,
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
);
151 char c
, *line
; /* TODO line pool (below) */
154 char const *srcs_arr
[10], *ccp
, **srcs
;
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
);
166 tail
->mt_next
= 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
)
179 else if (*ccp
== '\0')
183 srcs
[-1] = srcs
[-2] = NULL
;
185 if (strchr(ccp
, '=') != NULL
) {
188 while ((ccp
= n_strsep(&line
, ',', TRU1
)) != NULL
) {
189 switch ((c
= *ccp
)) {
191 srcs_arr
[1] = VAL_MIME_TYPES_SYS
;
195 srcs_arr
[0] = VAL_MIME_TYPES_USR
;
201 if (*++ccp
== '=' && *++ccp
!= '\0') {
202 if (PTR2SIZE(srcs
- srcs_arr
) < n_NELEM(srcs_arr
))
205 n_err(_("*mimetypes-load-control*: too many sources, "
206 "skipping %s\n"), n_shexp_quote_cp(ccp
, FAL0
));
214 } else for (i
= 0; (c
= ccp
[i
]) != '\0'; ++i
)
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;
220 n_err(_("*mimetypes-load-control*: unsupported content: %s\n"), ccp
);
224 /* Load all file-based sources in the desired order */
227 for (j
= 0, i
= (ui32_t
)PTR2SIZE(srcs
- srcs_arr
), srcs
= srcs_arr
;
228 i
> 0; ++j
, ++srcs
, --i
)
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
));
245 __mt_load_file(ui32_t orflags
, char const *file
, char **line
, size_t *linesize
)
249 struct mtnode
*head
, *tail
, *mtnp
;
253 if ((cp
= fexpand(file
, FEXP_LOCAL
| FEXP_NOPROTO
)) == NULL
||
254 (fp
= Fopen(cp
, "r")) == NULL
) {
259 for (head
= tail
= NULL
; fgetline(line
, linesize
, NULL
, &len
, fp
, 0) != 0;)
260 if ((mtnp
= _mt_create(FAL0
, orflags
, *line
, len
)) != NULL
) {
264 tail
->mt_next
= mtnp
;
268 tail
->mt_next
= _mt_list
;
278 static struct mtnode
*
279 _mt_create(bool_t cmdcalled
, ui32_t orflags
, char const *line
, size_t len
)
282 char const *typ
, *subtyp
;
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) */
296 work
.s
= n_UNCONST(line
);
298 line
= n_str_trim(&work
)->s
;
303 /* (But wait - is there a type marker?) */
305 if(!(orflags
& (_MT_USR
| _MT_SYS
)) && *typ
== '@'){
309 orflags
|= _MT_PLAIN
;
316 else if(len
> 4 && typ
[2] == '@' && typ
[3] == ' '){
317 n_OBSOLETE("`mimetype': the trailing \"@\" in \"type-marker\" "
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;
336 while (len
> 0 && !blankchar(*line
))
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
)) {
343 line
= _("(no value)");
346 n_err(_("Empty MIME type or no extensions given: %.*s\n"),
352 if ((subtyp
= memchr(typ
, '/', tlen
)) == NULL
|| subtyp
[1] == '\0' ||
353 spacechar(subtyp
[1])) {
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")),
363 /* Map to mime_type */
364 tlen
= PTR2SIZE(subtyp
- typ
);
365 for (i
= __MT_TMIN
;;) {
366 if (!ascncasecmp(_mt_typnames
[i
], typ
, tlen
)) {
368 tlen
= PTR2SIZE(line
- subtyp
);
372 if (++i
== __MT_TMAX
) {
373 orflags
|= _MT_OTHER
;
374 tlen
= PTR2SIZE(line
- typ
);
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
))
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);
394 memcpy(l
, typ
, tlen
);
395 memcpy(l
+ tlen
, line
, len
);
405 static struct mtlookup
*
406 _mt_by_filename(struct mtlookup
*mtlp
, char const *name
, bool_t with_result
)
410 char const *ext
, *cp
;
413 memset(mtlp
, 0, sizeof *mtlp
);
415 if ((nlen
= strlen(name
)) == 0) /* TODO name should be a URI */
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 */
421 /* While here, basename() it */
422 while (i
> 0 && name
[i
- 1] != '/')
426 mtlp
->mtl_name
= name
;
427 mtlp
->mtl_nlen
= nlen
;
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
) {
436 while (whitechar(*cp
))
439 while (!whitechar(*cp
) && *cp
!= '\0')
442 if ((i
= PTR2SIZE(cp
- ext
)) == 0)
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
))
450 mtlp
->mtl_node
= mtnp
;
455 if ((mtnp
->mt_flags
& __MT_TMASK
) == _MT_OTHER
) {
459 name
= _mt_typnames
[mtnp
->mt_flags
& __MT_TMASK
];
463 mtlp
->mtl_result
= salloc(i
+ j
+1);
465 memcpy(mtlp
->mtl_result
, name
, j
);
466 memcpy(mtlp
->mtl_result
+ j
, mtnp
->mt_line
, i
);
467 mtlp
->mtl_result
[j
+= i
] = '\0';
477 static struct mtlookup
*
478 _mt_by_mtname(struct mtlookup
*mtlp
, char const *mtname
)
485 memset(mtlp
, 0, sizeof *mtlp
);
487 if ((mtlp
->mtl_nlen
= nlen
= strlen(mtlp
->mtl_name
= mtname
)) == 0)
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
) {
499 cp
= _mt_typnames
[mtnp
->mt_flags
& __MT_TMASK
];
504 if (i
+ j
== mtlp
->mtl_nlen
) {
505 char *xmt
= ac_alloc(i
+ j
+1);
508 memcpy(xmt
+ j
, mtnp
->mt_line
, i
);
510 i
= asccasecmp(mtname
, xmt
);
515 mtlp
->mtl_node
= mtnp
;
527 SINLINE
struct mt_class_arg
*
528 _mt_classify_init(struct mt_class_arg
* mtcap
, enum mime_type_class initval
)
531 memset(mtcap
, 0, sizeof *mtcap
);
532 mtcap
->mtca_lastc
= mtcap
->mtca_c
= EOF
;
533 mtcap
->mtca_mtc
= initval
| _MT_C__1STLINE
;
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 */
545 #define F_SIZEOF (sizeof(F_) -1)
546 char f_buf
[F_SIZEOF
], *f_p
= f_buf
;
551 enum mime_type_class mtc
;
554 buf
= mtcap
->mtca_buf
;
555 blen
= mtcap
->mtca_len
;
556 curlen
= mtcap
->mtca_curlen
;
558 lastc
= mtcap
->mtca_lastc
;
559 mtc
= mtcap
->mtca_mtc
;
564 /* Real EOF, or only current buffer end? */
565 if (mtcap
->mtca_len
== 0)
575 if (!(mtc
& _MT_C_ISTXTCOK
)) {
576 mtc
|= _MT_C_SUGGEST_DONE
;
581 if (c
== '\n' || c
== EOF
) {
582 mtc
&= ~_MT_C__1STLINE
;
583 if (curlen
>= MIME_LINELEN_LIMIT
)
584 mtc
|= _MT_C_LONGLINES
;
592 /* A bit hairy is handling of \r=\x0D=CR.
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
611 if ((c
>= '\x07' && c
<= '\x0D') || c
== '\x1B')
613 mtc
|= _MT_C_HASNUL
; /* Force base64 */
614 if (!(mtc
& _MT_C_ISTXTCOK
)) {
615 mtc
|= _MT_C_SUGGEST_DONE
;
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
;
626 } else if (!(mtc
& _MT_C_FROM_
) && UICMP(z
, curlen
, <, F_SIZEOF
)) {
628 if (UICMP(z
, curlen
, ==, F_SIZEOF
- 1) &&
629 PTR2SIZE(f_p
- f_buf
) == F_SIZEOF
&&
630 !memcmp(f_buf
, F_
, F_SIZEOF
)){
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
;
643 mtcap
->mtca_mtc
= mtc
;
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
;
656 enum mime_type_class mtc
;
664 assert(mpp
->m_mime_enc
!= MIMEE_BIN
);
666 outrest
= inrest
= dec
= in
;
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
) {
677 fseek(mb
.mb_itf
, start_off
, SEEK_SET
);
682 /* Skip part headers */
683 for (lc
= '\0'; cnt
> 0; lc
= c
, --cnt
)
684 if ((c
= getc(ibuf
)) == EOF
|| (c
== '\n' && lc
== '\n'))
686 if (cnt
== 0 || ferror(ibuf
))
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
);
696 c
= (--cnt
== 0) ? EOF
: getc(ibuf
);
697 if ((dobuf
= (c
== '\n'))) {
698 /* Ignore empty lines */
701 } else if ((dobuf
= (c
== EOF
))) {
702 if (lsz
== 0 && outrest
.l
== 0)
707 in
.s
= srealloc(in
.s
, lsz
+= LINESIZE
);
709 in
.s
[in
.l
++] = (char)c
;
714 switch (mpp
->m_mime_enc
) {
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; */
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
) {
734 /* Temporarily switch those two buffers.. */
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
) {
750 /* ..and restore switched */
758 if ((in
.l
= inrest
.l
) > 0) {
770 if (outrest
.s
!= NULL
)
772 if (inrest
.s
!= NULL
)
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";
789 static enum mime_handler_flags
790 a_mt_pipe_check(struct mime_handler
*mhp
){
791 enum mime_handler_flags rv_orig
, rv
;
795 rv_orig
= rv
= mhp
->mh_flags
;
797 /* Do we have any handler for this part? */
798 if(*(cp
= mhp
->mh_shell_cmd
) == '\0')
800 else if(*cp
++ != '@'){
803 }else if(*cp
== '\0'){
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
;
815 if(rv
& MIME_HDL_TMPF
)
816 rv
|= MIME_HDL_TMPF_UNLINK
;
821 rv
|= MIME_HDL_TMPF_FILL
;
830 mhp
->mh_shell_cmd
= cp
;
833 if(rv
& MIME_HDL_TMPF_FILL
)
837 if(rv
& MIME_HDL_ISQUOTE
){
838 if(rv
& MIME_HDL_NOQUOTE
)
841 /* Cannot fetch data back from asynchronous process */
842 if(rv
& MIME_HDL_ASYNC
)
845 /* TODO Can't use a "needsterminal" program for quoting */
846 if(rv
& MIME_HDL_NEEDSTERM
)
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"));
856 if(rv
& MIME_HDL_ASYNC
){
857 n_err(_("MIME type handlers: cannot use needsterminal and "
858 "x-mailx-async together\n"));
862 /* needsterminal needs a terminal */
863 if(!(n_psonce
& n_PSO_INTERACTIVE
))
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"));
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"));
880 /* TODO mailcap-only: TMPF_UNLINK): needs -tmpfile OR -tmpfile-fill */
894 struct n_string s
, *sp
;
902 sp
= n_string_creat_auto(&s
);
904 if(*(argv
= v
) == NULL
){
908 if(_mt_list
== NULL
){
909 fprintf(n_stdout
, _("# `mimetype': no mime.types(5) available\n"));
913 if((fp
= Ftmp(NULL
, "mimetype", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)
915 n_perr(_("tmpfile"), 0);
920 sp
= n_string_reserve(sp
, 63);
922 for(l
= 0, mtnp
= _mt_list
; mtnp
!= NULL
; ++l
, mtnp
= mtnp
->mt_next
){
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;
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
);
955 for(; *argv
!= NULL
; ++argv
){
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
);
963 mtnp
->mt_next
= _mt_list
;
970 return (v
== NULL
? !STOP
: !OKAY
); /* xxx 1:bad 0:good -- do some */
974 c_unmimetype(void *v
)
977 struct mtnode
*lnp
, *mtnp
;
981 /* Need to load that first as necessary */
985 for (; *argv
!= NULL
; ++argv
) {
986 if (!asccasecmp(*argv
, "reset")) {
991 if (argv
[0][0] == '*' && argv
[0][1] == '\0') {
993 while ((mtnp
= _mt_list
) != NULL
) {
994 _mt_list
= mtnp
->mt_next
;
1000 for (match
= FAL0
, lnp
= NULL
, mtnp
= _mt_list
; mtnp
!= NULL
;) {
1005 if ((mtnp
->mt_flags
& __MT_TMASK
) == _MT_OTHER
) {
1009 typ
= _mt_typnames
[mtnp
->mt_flags
& __MT_TMASK
];
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
);
1021 struct mtnode
*nnp
= mtnp
->mt_next
;
1030 lnp
= mtnp
, mtnp
= mtnp
->mt_next
;
1033 if (!(n_pstate
& n_PS_ROBOT
) || (n_poption
& n_PO_D_V
))
1034 n_err(_("No such MIME type: %s\n"), *argv
);
1039 return (v
== NULL
? !STOP
: !OKAY
); /* xxx 1:bad 0:good -- do some */
1043 n_mimetype_check_mtname(char const *name
)
1045 struct mtlookup mtl
;
1049 rv
= (_mt_by_mtname(&mtl
, name
) != NULL
);
1055 n_mimetype_classify_filename(char const *name
)
1057 struct mtlookup mtl
;
1060 _mt_by_filename(&mtl
, name
, TRU1
);
1062 return mtl
.mtl_result
;
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 */
1074 enum mime_type_class mtc
;
1080 assert(ftell(fp
) == 0x0l
);
1084 if (*contenttype
== NULL
) {
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
;
1091 } else if (!asccasecmp(*contenttype
, "message/rfc822")) {
1099 menc
= mime_enc_target();
1101 if ((fpsz
= fsize(fp
)) == 0)
1104 char buf
[BUFFER_SIZE
];
1105 struct mt_class_arg mtca
;
1107 _mt_classify_init(&mtca
, mtc
);
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
)
1113 if (mtca
.mtca_len
== 0)
1116 /* TODO ferror(fp) ! */
1120 if (mtc
& _MT_C_HASNUL
) {
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
)
1126 if (mtc
& (_MT_C_NCTT
| _MT_C_ISTXT
))
1127 *contenttype
= "application/octet-stream";
1128 if (*charset
== NULL
)
1129 *charset
= "binary";
1134 (_MT_C_LONGLINES
| _MT_C_CTRLCHAR
| _MT_C_NOTERMNL
| _MT_C_FROM_
)) {
1135 if (menc
!= MIMEE_B64
)
1139 if (mtc
& _MT_C_HIGHBIT
) {
1141 if (mtc
& (_MT_C_NCTT
| _MT_C_ISTXT
))
1142 *do_iconv
= ((mtc
& _MT_C_HIGHBIT
) != 0);
1146 if (mtc
& _MT_C_NCTT
)
1147 *contenttype
= "text/plain";
1149 /* Not an attachment with specified charset? */
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
);
1155 /* TODO mime_type_file_classify() shouldn't return conversion */
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"),
1162 *contenttype
= "application/mbox";
1165 c
= (menc
== MIMEE_7B
? CONV_7BIT
1166 : (menc
== MIMEE_8B
? CONV_8BIT
1170 c
= (menc
== MIMEE_7B
? CONV_7BIT
1171 : (menc
== MIMEE_8B
? CONV_8BIT
1172 : (menc
== MIMEE_QP
? CONV_TOQP
: CONV_TOB64
)));
1178 n_mimetype_classify_part(struct mimepart
*mpp
) /* FIXME charset=binary ??? */
1180 struct mtlookup mtl
;
1181 enum mimecontent mc
;
1183 union {char const *cp
; ui32_t f
;} mce
;
1188 if ((ct
= mpp
->m_ct_type_plain
) == NULL
) /* TODO may not */
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"));
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
){
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
;
1216 if(strchr(ct
, '/') == NULL
) /* For compatibility with non-MIME */
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
;
1226 }else if(is_asccaseprefix("message/", ct
)){
1227 ct
+= sizeof("message/") -1;
1228 if(!asccasecmp(ct
, "rfc822"))
1232 }else if(is_asccaseprefix("multipart/", ct
)){
1235 enum mimecontent mt_mc
;
1237 {"alternative\0", MIME_ALTERNATIVE
},
1238 {"related", MIME_RELATED
},
1239 {"digest", MIME_DIGEST
},
1240 {"signed", MIME_SIGNED
},
1241 {"encrypted", MIME_ENCRYPTED
}
1244 for(ct
+= sizeof("multipart/") -1, mtap
= mta
;;)
1245 if(!asccasecmp(ct
, mtap
->mt_name
)){
1248 }else if(++mtap
== mta
+ n_NELEM(mta
)){
1252 }else if(is_asccaseprefix("application/", ct
)){
1254 goto jos_content_check
;
1255 ct
+= sizeof("application/") -1;
1256 if(!asccasecmp(ct
, "pkcs7-mime") || !asccasecmp(ct
, "x-pkcs7-mime"))
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
);
1270 FL
enum mime_handler_flags
1271 n_mimetype_handler(struct mime_handler
*mhp
, struct mimepart
const *mpp
,
1272 enum sendaction action
)
1275 #define __L (sizeof(__S) -1)
1276 struct mtlookup mtl
;
1278 enum mime_handler_flags rv
, xrv
;
1279 char const *es
, *cs
, *ccp
;
1283 memset(mhp
, 0, sizeof *mhp
);
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
)
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! */
1302 /* We don't pass the flags around, so ensure carrier is up-to-date */
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 */
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
);
1321 /* Then MIME Content-Type:, if any */
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
);
1334 if (_mt_by_mtname(&mtl
, cs
) != NULL
)
1335 switch (mtl
.mtl_node
->mt_flags
& __MT_MARKMASK
) {
1336 #ifndef HAVE_FILTER_HTML_TAGSOUP
1341 #ifdef HAVE_FILTER_HTML_TAGSOUP
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
;
1351 mhp
->mh_msg
.l
= strlen(mhp
->mh_msg
.s
= n_UNCONST(_("Plain text")));
1352 rv
^= MIME_HDL_NULL
| MIME_HDL_TEXT
;
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
;