1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) Tom Kistner <tom@duncanthrax.net> 2004, 2015
7 * Copyright (c) The Exim Maintainers 2016
11 #ifdef WITH_CONTENT_SCAN /* entire file */
15 FILE *mime_stream = NULL;
16 uschar *mime_current_boundary = NULL;
18 static mime_header mime_header_list[] = {
19 /* name namelen value */
20 { US"content-type:", 13, &mime_content_type },
21 { US"content-disposition:", 20, &mime_content_disposition },
22 { US"content-transfer-encoding:", 26, &mime_content_transfer_encoding },
23 { US"content-id:", 11, &mime_content_id },
24 { US"content-description:", 20, &mime_content_description }
27 static int mime_header_list_size = nelem(mime_header_list);
29 static mime_parameter mime_parameter_list[] = {
30 /* name namelen value */
31 { US"name=", 5, &mime_filename },
32 { US"filename=", 9, &mime_filename },
33 { US"charset=", 8, &mime_charset },
34 { US"boundary=", 9, &mime_boundary }
38 /*************************************************
39 * set MIME anomaly level + text *
40 *************************************************/
42 /* Small wrapper to set the two expandables which
43 give info on detected "problems" in MIME
44 encodings. Indexes are defined in mime.h. */
47 mime_set_anomaly(int idx)
52 } anom[] = { {1, CUS"Broken Quoted-Printable encoding detected"},
53 {2, CUS"Broken BASE64 encoding detected"} };
55 mime_anomaly_level = anom[idx].level;
56 mime_anomaly_text = anom[idx].text;
60 /*************************************************
61 * decode quoted-printable chars *
62 *************************************************/
64 /* gets called when we hit a =
65 returns: new pointer position
68 -1 - soft line break, no char
73 mime_decode_qp_char(uschar *qp_p, int *c)
75 uschar *initial_pos = qp_p;
77 /* advance one char */
80 /* Check for two hex digits and decode them */
81 if (isxdigit(*qp_p) && isxdigit(qp_p[1]))
83 /* Do hex conversion */
84 *c = (isdigit(*qp_p) ? *qp_p - '0' : toupper(*qp_p) - 'A' + 10) <<4;
86 *c |= isdigit(*qp_p) ? *qp_p - '0' : toupper(*qp_p) - 'A' + 10;
90 /* tab or whitespace may follow just ignore it if it precedes \n */
91 while (*qp_p == '\t' || *qp_p == ' ' || *qp_p == '\r')
94 if (*qp_p == '\n') /* hit soft line break */
100 /* illegal char here */
106 /* just dump MIME part without any decoding */
108 mime_decode_asis(FILE* in, FILE* out, uschar* boundary)
110 ssize_t len, size = 0;
111 uschar buffer[MIME_MAX_LINE_LENGTH];
113 while(fgets(CS buffer, MIME_MAX_LINE_LENGTH, mime_stream) != NULL)
116 && Ustrncmp(buffer, "--", 2) == 0
117 && Ustrncmp((buffer+2), boundary, Ustrlen(boundary)) == 0
121 len = Ustrlen(buffer);
122 if (fwrite(buffer, 1, (size_t)len, out) < len)
131 /* decode quoted-printable MIME part */
133 mime_decode_qp(FILE* in, FILE* out, uschar* boundary)
135 uschar ibuf[MIME_MAX_LINE_LENGTH], obuf[MIME_MAX_LINE_LENGTH];
137 ssize_t len, size = 0;
139 while (fgets(CS ibuf, MIME_MAX_LINE_LENGTH, in) != NULL)
142 && Ustrncmp(ibuf, "--", 2) == 0
143 && Ustrncmp((ibuf+2), boundary, Ustrlen(boundary)) == 0
145 break; /* todo: check for missing boundary */
154 int decode_qp_result;
156 ipos = mime_decode_qp_char(ipos, &decode_qp_result);
158 if (decode_qp_result == -2)
160 /* Error from decoder. ipos is unchanged. */
161 mime_set_anomaly(MIME_ANOMALY_BROKEN_QP);
165 else if (decode_qp_result == -1)
167 else if (decode_qp_result >= 0)
168 *opos++ = decode_qp_result;
173 /* something to write? */
177 if (fwrite(obuf, 1, len, out) != len) return -1; /* error */
186 * Return open filehandle for combo of path and file.
187 * Side-effect: set mime_decoded_filename, to copy in allocated mem
190 mime_get_decode_file(uschar *pname, uschar *fname)
193 mime_decoded_filename = string_sprintf("%s/%s", pname, fname);
195 mime_decoded_filename = string_copy(fname);
201 /* must find first free sequential filename */
205 mime_decoded_filename = string_sprintf("%s/%s-%05u", pname, message_id, file_nr++);
209 result = stat(CS mime_decoded_filename, &mystat);
210 } while(result != -1);
213 return modefopen(mime_decoded_filename, "wb+", SPOOL_MODE);
218 mime_decode(const uschar **listptr)
221 const uschar *list = *listptr;
223 uschar * decode_path;
224 FILE *decode_file = NULL;
226 ssize_t size_counter = 0;
227 ssize_t (*decode_function)(FILE*, FILE*, uschar*);
229 if (!mime_stream || (f_pos = ftell(mime_stream)) < 0)
232 /* build default decode path (will exist since MBOX must be spooled up) */
233 decode_path = string_sprintf("%s/scan/%s", spool_directory, message_id);
235 /* try to find 1st option */
236 if ((option = string_nextinlist(&list, &sep, NULL, 0)))
238 /* parse 1st option */
239 if ((Ustrcmp(option,"false") == 0) || (Ustrcmp(option,"0") == 0))
240 /* explicitly no decoding */
243 if (Ustrcmp(option,"default") == 0)
244 /* explicit default path + file names */
247 if (option[0] == '/')
251 memset(&statbuf,0,sizeof(statbuf));
253 /* assume either path or path+file name */
254 if ( (stat(CS option, &statbuf) == 0) && S_ISDIR(statbuf.st_mode) )
255 /* is directory, use it as decode_path */
256 decode_file = mime_get_decode_file(option, NULL);
258 /* does not exist or is a file, use as full file name */
259 decode_file = mime_get_decode_file(NULL, option);
262 /* assume file name only, use default path */
263 decode_file = mime_get_decode_file(decode_path, option);
267 /* no option? patch default path */
269 decode_file = mime_get_decode_file(decode_path, NULL);
275 /* decode according to mime type */
277 !mime_content_transfer_encoding
278 ? mime_decode_asis /* no encoding, dump as-is */
279 : Ustrcmp(mime_content_transfer_encoding, "base64") == 0
281 : Ustrcmp(mime_content_transfer_encoding, "quoted-printable") == 0
283 : mime_decode_asis; /* unknown encoding type, just dump as-is */
285 size_counter = decode_function(mime_stream, decode_file, mime_current_boundary);
287 clearerr(mime_stream);
288 if (fseek(mime_stream, f_pos, SEEK_SET))
291 if (fclose(decode_file) != 0 || size_counter < 0)
294 /* round up to the next KiB */
295 mime_content_size = (size_counter + 1023) / 1024;
302 mime_get_header(FILE *f, uschar *header)
306 int header_value_mode = 0;
307 int header_open_brackets = 0;
312 if ((c = fgetc(f)) == EOF) break;
314 /* always skip CRs */
315 if (c == '\r') continue;
321 /* look if next char is '\t' or ' ' */
322 if ((c = fgetc(f)) == EOF) break;
323 if ( (c == '\t') || (c == ' ') ) continue;
326 /* end of the header, terminate with ';' */
331 /* skip control characters */
332 if (c < 32) continue;
334 if (header_value_mode)
336 /* --------- value mode ----------- */
337 /* skip leading whitespace */
338 if ( ((c == '\t') || (c == ' ')) && (header_value_mode == 1) )
341 /* we have hit a non-whitespace char, start copying value data */
342 header_value_mode = 2;
344 if (c == '"') /* flip "quoted" mode */
345 header_value_mode = header_value_mode==2 ? 3 : 2;
347 /* leave value mode on unquoted ';' */
348 if (header_value_mode == 2 && c == ';') {
349 header_value_mode = 0;
351 /* -------------------------------- */
355 /* -------- non-value mode -------- */
356 /* skip whitespace + tabs */
357 if ( (c == ' ') || (c == '\t') )
361 /* quote next char. can be used
362 to escape brackets. */
363 if ((c = fgetc(f)) == EOF) break;
367 header_open_brackets++;
370 else if ((c == ')') && header_open_brackets)
372 header_open_brackets--;
375 else if ( (c == '=') && !header_open_brackets ) /* enter value mode */
376 header_value_mode = 1;
378 /* skip chars while we are in a comment */
379 if (header_open_brackets > 0)
381 /* -------------------------------- */
384 /* copy the char to the buffer */
385 header[num_copied++] = (uschar)c;
387 /* break if header buffer is full */
388 if (num_copied > MIME_MAX_HEADER_SIZE-1)
392 if ((num_copied > 0) && (header[num_copied-1] != ';'))
393 header[num_copied-1] = ';';
396 header[num_copied] = '\0';
398 /* return 0 for EOF or empty line */
399 if ((c == EOF) || (num_copied == 1))
407 mime_vars_reset(void)
409 mime_anomaly_level = 0;
410 mime_anomaly_text = NULL;
411 mime_boundary = NULL;
413 mime_decoded_filename = NULL;
414 mime_filename = NULL;
415 mime_content_description = NULL;
416 mime_content_disposition = NULL;
417 mime_content_id = NULL;
418 mime_content_transfer_encoding = NULL;
419 mime_content_type = NULL;
420 mime_is_multipart = 0;
421 mime_content_size = 0;
425 /* Grab a parameter value, dealing with quoting.
428 str Input string. Updated on return to point to terminating ; or NUL
431 Allocated string with parameter value
434 mime_param_val(uschar ** sp)
438 int size = 0, ptr = 0;
440 /* debug_printf_indent(" considering paramval '%s'\n", s); */
442 while (*s && *s != ';') /* ; terminates */
445 s++; /* skip opening " */
446 while (*s && *s != '"') /* " protects ; */
447 val = string_catn(val, &size, &ptr, s++, 1);
448 if (*s) s++; /* skip closing " */
451 val = string_catn(val, &size, &ptr, s++, 1);
452 if (val) val[ptr] = '\0';
458 mime_next_semicolon(uschar * s)
460 while (*s && *s != ';') /* ; terminates */
463 s++; /* skip opening " */
464 while (*s && *s != '"') /* " protects ; */
466 if (*s) s++; /* skip closing " */
475 rfc2231_to_2047(const uschar * fname, const uschar * charset, int * len)
477 int size = 0, ptr = 0;
478 uschar * val = string_catn(NULL, &size, &ptr, US"=?", 2);
482 val = string_cat(val, &size, &ptr, charset);
483 val = string_catn(val, &size, &ptr, US"?Q?", 3);
486 if (c == '%' && isxdigit(fname[1]) && isxdigit(fname[2]))
488 val = string_catn(val, &size, &ptr, US"=", 1);
489 val = string_catn(val, &size, &ptr, ++fname, 2);
493 val = string_catn(val, &size, &ptr, fname++, 1);
495 val = string_catn(val, &size, &ptr, US"?=", 2);
496 val[*len = ptr] = '\0';
502 mime_acl_check(uschar *acl, FILE *f, struct mime_boundary_context *context,
503 uschar **user_msgptr, uschar **log_msgptr)
506 uschar * header = NULL;
507 struct mime_boundary_context nested_context;
509 /* reserve a line buffer to work in */
510 header = store_get(MIME_MAX_HEADER_SIZE+1);
512 /* Not actually used at the moment, but will be vital to fixing
513 * some RFC 2046 nonconformance later... */
514 nested_context.parent = context;
516 /* loop through parts */
519 /* reset all per-part mime variables */
522 /* If boundary is null, we assume that *f is positioned on the start of
523 headers (for example, at the very beginning of a message. If a boundary is
524 given, we must first advance to it to reach the start of the next header
527 /* NOTE -- there's an error here -- RFC2046 specifically says to
528 * check for outer boundaries. This code doesn't do that, and
529 * I haven't fixed this.
531 * (I have moved partway towards adding support, however, by adding
532 * a "parent" field to my new boundary-context structure.)
534 if (context) for (;;)
536 if (!fgets(CS header, MIME_MAX_HEADER_SIZE, f))
538 /* Hit EOF or read error. Ugh. */
539 DEBUG(D_acl) debug_printf_indent("MIME: Hit EOF ...\n");
543 /* boundary line must start with 2 dashes */
544 if ( Ustrncmp(header, "--", 2) == 0
545 && Ustrncmp(header+2, context->boundary, Ustrlen(context->boundary)) == 0
547 { /* found boundary */
548 if (Ustrncmp((header+2+Ustrlen(context->boundary)), "--", 2) == 0)
550 /* END boundary found */
551 DEBUG(D_acl) debug_printf_indent("MIME: End boundary found %s\n",
556 DEBUG(D_acl) debug_printf_indent("MIME: Next part with boundary %s\n",
562 /* parse headers, set up expansion variables */
563 while (mime_get_header(f, header))
565 struct mime_header * mh;
567 /* look for interesting headers */
568 for (mh = mime_header_list;
569 mh < mime_header_list + mime_header_list_size;
570 mh++) if (strncmpic(mh->name, header, mh->namelen) == 0)
572 uschar * p = header + mh->namelen;
575 /* grab the value (normalize to lower case)
576 and copy to its corresponding expansion variable */
578 for (q = p; *q != ';' && *q; q++) ;
579 *mh->value = string_copynlc(p, q-p);
580 DEBUG(D_acl) debug_printf_indent("MIME: found %s header, value is '%s'\n",
581 mh->name, *mh->value);
583 if (*(p = q)) p++; /* jump past the ; */
586 uschar * mime_fname = NULL;
587 uschar * mime_fname_rfc2231 = NULL;
588 uschar * mime_filename_charset = NULL;
589 BOOL decoding_failed = FALSE;
591 /* grab all param=value tags on the remaining line,
592 check if they are interesting */
598 DEBUG(D_acl) debug_printf_indent("MIME: considering paramlist '%s'\n", p);
601 && strncmpic(CUS"content-disposition:", header, 20) == 0
602 && strncmpic(CUS"filename*", p, 9) == 0
604 { /* RFC 2231 filename */
607 /* find value of the filename */
609 while(*p != '=' && *p) p++;
610 if (*p) p++; /* p is filename or NUL */
611 q = mime_param_val(&p); /* p now trailing ; or NUL */
615 uschar * temp_string, * err_msg;
618 /* build up an un-decoded filename over successive
619 filename*= parameters (for use when 2047 decode fails) */
621 mime_fname_rfc2231 = string_sprintf("%#s%s",
622 mime_fname_rfc2231, q);
624 if (!decoding_failed)
627 if (!mime_filename_charset)
631 /* look for a ' in the "filename" */
632 while(*s != '\'' && *s) s++; /* s is 1st ' or NUL */
634 if ((size = s-q) > 0)
635 mime_filename_charset = string_copyn(q, size);
638 while(*p == '\'') p++; /* p is after 2nd ' */
643 DEBUG(D_acl) debug_printf_indent("MIME: charset %s fname '%s'\n",
644 mime_filename_charset ? mime_filename_charset : US"<NULL>", p);
646 temp_string = rfc2231_to_2047(p, mime_filename_charset, &slen);
647 DEBUG(D_acl) debug_printf_indent("MIME: 2047-name %s\n", temp_string);
649 temp_string = rfc2047_decode(temp_string, FALSE, NULL, ' ',
651 DEBUG(D_acl) debug_printf_indent("MIME: plain-name %s\n", temp_string);
653 size = Ustrlen(temp_string);
656 decoding_failed = TRUE;
658 /* build up a decoded filename over successive
659 filename*= parameters */
661 mime_filename = mime_fname = mime_fname
662 ? string_sprintf("%s%s", mime_fname, temp_string)
669 /* look for interesting parameters */
670 for (mp = mime_parameter_list;
671 mp < mime_parameter_list + nelem(mime_parameter_list);
673 ) if (strncmpic(mp->name, p, mp->namelen) == 0)
676 uschar * dummy_errstr;
678 /* grab the value and copy to its expansion variable */
680 q = mime_param_val(&p); /* p now trailing ; or NUL */
683 ? rfc2047_decode(q, check_rfc2047_length, NULL, 32, NULL,
686 DEBUG(D_acl) debug_printf_indent(
687 "MIME: found %s parameter in %s header, value '%s'\n",
688 mp->name, mh->name, *mp->value);
690 break; /* done matching param names */
694 /* There is something, but not one of our interesting parameters.
695 Advance past the next semicolon */
696 p = mime_next_semicolon(p);
698 } /* param scan on line */
700 if (strncmpic(CUS"content-disposition:", header, 20) == 0)
702 if (decoding_failed) mime_filename = mime_fname_rfc2231;
704 DEBUG(D_acl) debug_printf_indent(
705 "MIME: found %s parameter in %s header, value is '%s'\n",
706 "filename", mh->name, mime_filename);
712 /* set additional flag variables (easier access) */
713 if ( mime_content_type
714 && Ustrncmp(mime_content_type,"multipart",9) == 0
716 mime_is_multipart = 1;
718 /* Make a copy of the boundary pointer.
719 Required since mime_boundary is global
720 and can be overwritten further down in recursion */
721 nested_context.boundary = mime_boundary;
723 /* raise global counter */
726 /* copy current file handle to global variable */
728 mime_current_boundary = context ? context->boundary : 0;
730 /* Note the context */
731 mime_is_coverletter = !(context && context->context == MBC_ATTACHMENT);
733 /* call ACL handling function */
734 rc = acl_check(ACL_WHERE_MIME, NULL, acl, user_msgptr, log_msgptr);
737 mime_current_boundary = NULL;
741 /* If we have a multipart entity and a boundary, go recursive */
742 if ( (mime_content_type != NULL) &&
743 (nested_context.boundary != NULL) &&
744 (Ustrncmp(mime_content_type,"multipart",9) == 0) )
747 debug_printf_indent("MIME: Entering multipart recursion, boundary '%s'\n",
748 nested_context.boundary);
750 nested_context.context =
751 context && context->context == MBC_ATTACHMENT
753 : Ustrcmp(mime_content_type,"multipart/alternative") == 0
754 || Ustrcmp(mime_content_type,"multipart/related") == 0
755 ? MBC_COVERLETTER_ALL
756 : MBC_COVERLETTER_ONESHOT;
758 rc = mime_acl_check(acl, f, &nested_context, user_msgptr, log_msgptr);
761 else if ( (mime_content_type != NULL) &&
762 (Ustrncmp(mime_content_type,"message/rfc822",14) == 0) )
764 const uschar *rfc822name = NULL;
765 uschar filename[2048];
769 /* must find first free sequential filename */
773 (void)string_format(filename, 2048,
774 "%s/scan/%s/__rfc822_%05u", spool_directory, message_id, file_nr++);
778 result = stat(CS filename,&mystat);
779 } while (result != -1);
781 rfc822name = filename;
783 /* decode RFC822 attachment */
784 mime_decoded_filename = NULL;
786 mime_current_boundary = context ? context->boundary : NULL;
787 mime_decode(&rfc822name);
789 mime_current_boundary = NULL;
790 if (!mime_decoded_filename) /* decoding failed */
792 log_write(0, LOG_MAIN,
793 "MIME acl condition warning - could not decode RFC822 MIME part to file.");
797 mime_decoded_filename = NULL;
801 /* If the boundary of this instance is NULL, we are finished here */
804 if (context->context == MBC_COVERLETTER_ONESHOT)
805 context->context = MBC_ATTACHMENT;
813 #endif /*WITH_CONTENT_SCAN*/