tidying
[exim.git] / src / src / mime.c
CommitLineData
8523533c
TK
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
80fea873
JH
5/* Copyright (c) Tom Kistner <tom@duncanthrax.net> 2004, 2015
6 * License: GPL
7 * Copyright (c) The Exim Maintainers 2016
8 */
8523533c
TK
9
10#include "exim.h"
c007c974 11#ifdef WITH_CONTENT_SCAN /* entire file */
8523533c
TK
12#include "mime.h"
13#include <sys/stat.h>
14
15FILE *mime_stream = NULL;
16uschar *mime_current_boundary = NULL;
f2cb6292
JH
17
18static mime_header mime_header_list[] = {
19 { US"content-type:", 13, &mime_content_type },
20 { US"content-disposition:", 20, &mime_content_disposition },
21 { US"content-transfer-encoding:", 26, &mime_content_transfer_encoding },
22 { US"content-id:", 11, &mime_content_id },
23 { US"content-description:", 20, &mime_content_description }
24};
25
26static int mime_header_list_size = nelem(mime_header_list);
3c51463e
JH
27
28static mime_parameter mime_parameter_list[] = {
29 { US"name=", 5, &mime_filename },
30 { US"filename=", 9, &mime_filename },
31 { US"charset=", 8, &mime_charset },
32 { US"boundary=", 9, &mime_boundary }
33};
34
8523533c
TK
35
36/*************************************************
37* set MIME anomaly level + text *
38*************************************************/
39
40/* Small wrapper to set the two expandables which
41 give info on detected "problems" in MIME
f4d091fb 42 encodings. Indexes are defined in mime.h. */
8523533c 43
f4d091fb
JH
44void
45mime_set_anomaly(int idx)
c007c974 46{
f4d091fb
JH
47struct anom {
48 int level;
49 const uschar * text;
50} anom[] = { {1, CUS"Broken Quoted-Printable encoding detected"},
51 {2, CUS"Broken BASE64 encoding detected"} };
52
53mime_anomaly_level = anom[idx].level;
54mime_anomaly_text = anom[idx].text;
f7b63901 55}
8523533c
TK
56
57
58/*************************************************
59* decode quoted-printable chars *
60*************************************************/
61
62/* gets called when we hit a =
63 returns: new pointer position
64 result code in c:
65 -2 - decode error
66 -1 - soft line break, no char
67 0-255 - char to write
68*/
69
f846c8f5 70static uschar *
c007c974
JH
71mime_decode_qp_char(uschar *qp_p, int *c)
72{
73uschar *initial_pos = qp_p;
74
75/* advance one char */
76qp_p++;
77
78/* Check for two hex digits and decode them */
79if (isxdigit(*qp_p) && isxdigit(qp_p[1]))
80 {
81 /* Do hex conversion */
82 *c = (isdigit(*qp_p) ? *qp_p - '0' : toupper(*qp_p) - 'A' + 10) <<4;
83 qp_p++;
84 *c |= isdigit(*qp_p) ? *qp_p - '0' : toupper(*qp_p) - 'A' + 10;
85 return qp_p + 1;
86 }
8e669ac1 87
c007c974
JH
88/* tab or whitespace may follow just ignore it if it precedes \n */
89while (*qp_p == '\t' || *qp_p == ' ' || *qp_p == '\r')
8523533c 90 qp_p++;
8e669ac1 91
c007c974
JH
92if (*qp_p == '\n') /* hit soft line break */
93 {
94 *c = -1;
95 return qp_p;
96 }
97
98/* illegal char here */
99*c = -2;
100return initial_pos;
8523533c
TK
101}
102
103
baee9eee 104/* just dump MIME part without any decoding */
eb02738d
PP
105static ssize_t
106mime_decode_asis(FILE* in, FILE* out, uschar* boundary)
baee9eee 107{
eb02738d 108 ssize_t len, size = 0;
baee9eee 109 uschar buffer[MIME_MAX_LINE_LENGTH];
d203e649 110
c007c974
JH
111 while(fgets(CS buffer, MIME_MAX_LINE_LENGTH, mime_stream) != NULL)
112 {
baee9eee 113 if (boundary != NULL
c007c974
JH
114 && Ustrncmp(buffer, "--", 2) == 0
115 && Ustrncmp((buffer+2), boundary, Ustrlen(boundary)) == 0
116 )
baee9eee
NM
117 break;
118
119 len = Ustrlen(buffer);
120 if (fwrite(buffer, 1, (size_t)len, out) < len)
121 return -1;
122 size += len;
c007c974 123 } /* while */
baee9eee
NM
124 return size;
125}
84330b7b 126
8523533c 127
8e669ac1 128
baee9eee 129/* decode quoted-printable MIME part */
eb02738d
PP
130static ssize_t
131mime_decode_qp(FILE* in, FILE* out, uschar* boundary)
baee9eee 132{
c007c974
JH
133uschar ibuf[MIME_MAX_LINE_LENGTH], obuf[MIME_MAX_LINE_LENGTH];
134uschar *ipos, *opos;
135ssize_t len, size = 0;
baee9eee 136
c007c974 137while (fgets(CS ibuf, MIME_MAX_LINE_LENGTH, in) != NULL)
baee9eee 138 {
c007c974
JH
139 if (boundary != NULL
140 && Ustrncmp(ibuf, "--", 2) == 0
141 && Ustrncmp((ibuf+2), boundary, Ustrlen(boundary)) == 0
142 )
143 break; /* todo: check for missing boundary */
8523533c 144
c007c974
JH
145 ipos = ibuf;
146 opos = obuf;
8e669ac1 147
c007c974
JH
148 while (*ipos != 0)
149 {
150 if (*ipos == '=')
151 {
152 int decode_qp_result;
153
154 ipos = mime_decode_qp_char(ipos, &decode_qp_result);
155
156 if (decode_qp_result == -2)
157 {
158 /* Error from decoder. ipos is unchanged. */
159 mime_set_anomaly(MIME_ANOMALY_BROKEN_QP);
f4bb363f 160 *opos++ = '=';
c007c974
JH
161 ++ipos;
162 }
163 else if (decode_qp_result == -1)
164 break;
165 else if (decode_qp_result >= 0)
f4bb363f 166 *opos++ = decode_qp_result;
8523533c 167 }
c007c974 168 else
f4bb363f 169 *opos++ = *ipos++;
baee9eee 170 }
c007c974
JH
171 /* something to write? */
172 len = opos - obuf;
173 if (len > 0)
174 {
175 if (fwrite(obuf, 1, len, out) != len) return -1; /* error */
176 size += len;
baee9eee 177 }
8523533c 178 }
c007c974 179return size;
8523533c
TK
180}
181
182
f1d38a56
JH
183/*
184 * Return open filehandle for combo of path and file.
185 * Side-effect: set mime_decoded_filename, to copy in allocated mem
186 */
f846c8f5 187static FILE *
c007c974
JH
188mime_get_decode_file(uschar *pname, uschar *fname)
189{
c007c974 190if (pname && fname)
f1d38a56 191 mime_decoded_filename = string_sprintf("%s/%s", pname, fname);
c007c974 192else if (!pname)
f1d38a56 193 mime_decoded_filename = string_copy(fname);
c007c974
JH
194else if (!fname)
195 {
196 int file_nr = 0;
197 int result = 0;
198
199 /* must find first free sequential filename */
200 do
201 {
202 struct stat mystat;
f1d38a56 203 mime_decoded_filename = string_sprintf("%s/%s-%05u", pname, message_id, file_nr++);
c007c974
JH
204 /* security break */
205 if (file_nr >= 1024)
206 break;
f1d38a56 207 result = stat(CS mime_decoded_filename, &mystat);
c007c974 208 } while(result != -1);
c007c974 209 }
8e669ac1 210
f1d38a56 211return modefopen(mime_decoded_filename, "wb+", SPOOL_MODE);
8523533c
TK
212}
213
214
c007c974 215int
55414b25 216mime_decode(const uschar **listptr)
c007c974
JH
217{
218int sep = 0;
55414b25 219const uschar *list = *listptr;
040721f2
JH
220uschar * option;
221uschar * decode_path;
c007c974
JH
222FILE *decode_file = NULL;
223long f_pos = 0;
224ssize_t size_counter = 0;
225ssize_t (*decode_function)(FILE*, FILE*, uschar*);
226
dc5d51dc 227if (!mime_stream || (f_pos = ftell(mime_stream)) < 0)
c007c974
JH
228 return FAIL;
229
c007c974 230/* build default decode path (will exist since MBOX must be spooled up) */
040721f2 231decode_path = string_sprintf("%s/scan/%s", spool_directory, message_id);
c007c974
JH
232
233/* try to find 1st option */
040721f2 234if ((option = string_nextinlist(&list, &sep, NULL, 0)))
c007c974
JH
235 {
236 /* parse 1st option */
dc5d51dc 237 if ((Ustrcmp(option,"false") == 0) || (Ustrcmp(option,"0") == 0))
c007c974 238 /* explicitly no decoding */
8523533c 239 return FAIL;
8e669ac1 240
c007c974
JH
241 if (Ustrcmp(option,"default") == 0)
242 /* explicit default path + file names */
243 goto DEFAULT_PATH;
8e669ac1 244
c007c974
JH
245 if (option[0] == '/')
246 {
247 struct stat statbuf;
8e669ac1 248
c007c974 249 memset(&statbuf,0,sizeof(statbuf));
8e669ac1 250
c007c974
JH
251 /* assume either path or path+file name */
252 if ( (stat(CS option, &statbuf) == 0) && S_ISDIR(statbuf.st_mode) )
253 /* is directory, use it as decode_path */
254 decode_file = mime_get_decode_file(option, NULL);
8523533c 255 else
c007c974
JH
256 /* does not exist or is a file, use as full file name */
257 decode_file = mime_get_decode_file(NULL, option);
258 }
baee9eee 259 else
c007c974
JH
260 /* assume file name only, use default path */
261 decode_file = mime_get_decode_file(decode_path, option);
262 }
263else
264 {
265 /* no option? patch default path */
266DEFAULT_PATH:
267 decode_file = mime_get_decode_file(decode_path, NULL);
268 }
8e669ac1 269
c007c974
JH
270if (!decode_file)
271 return DEFER;
8e669ac1 272
c007c974
JH
273/* decode according to mime type */
274decode_function =
275 !mime_content_transfer_encoding
276 ? mime_decode_asis /* no encoding, dump as-is */
277 : Ustrcmp(mime_content_transfer_encoding, "base64") == 0
278 ? mime_decode_base64
279 : Ustrcmp(mime_content_transfer_encoding, "quoted-printable") == 0
280 ? mime_decode_qp
281 : mime_decode_asis; /* unknown encoding type, just dump as-is */
8e669ac1 282
c007c974 283size_counter = decode_function(mime_stream, decode_file, mime_current_boundary);
baee9eee 284
c007c974 285clearerr(mime_stream);
d4ff61d1
JH
286if (fseek(mime_stream, f_pos, SEEK_SET))
287 return DEFER;
8e669ac1 288
c007c974
JH
289if (fclose(decode_file) != 0 || size_counter < 0)
290 return DEFER;
8523533c 291
c007c974
JH
292/* round up to the next KiB */
293mime_content_size = (size_counter + 1023) / 1024;
8e669ac1 294
c007c974
JH
295return OK;
296}
8e669ac1 297
f846c8f5
JH
298
299static int
c007c974
JH
300mime_get_header(FILE *f, uschar *header)
301{
302int c = EOF;
303int done = 0;
304int header_value_mode = 0;
305int header_open_brackets = 0;
306int num_copied = 0;
8e669ac1 307
c007c974
JH
308while(!done)
309 {
310 if ((c = fgetc(f)) == EOF) break;
311
312 /* always skip CRs */
313 if (c == '\r') continue;
314
315 if (c == '\n')
316 {
317 if (num_copied > 0)
318 {
319 /* look if next char is '\t' or ' ' */
320 if ((c = fgetc(f)) == EOF) break;
321 if ( (c == '\t') || (c == ' ') ) continue;
322 (void)ungetc(c,f);
323 }
324 /* end of the header, terminate with ';' */
325 c = ';';
326 done = 1;
327 }
8e669ac1 328
c007c974
JH
329 /* skip control characters */
330 if (c < 32) continue;
331
332 if (header_value_mode)
333 {
334 /* --------- value mode ----------- */
335 /* skip leading whitespace */
336 if ( ((c == '\t') || (c == ' ')) && (header_value_mode == 1) )
337 continue;
8e669ac1 338
8523533c
TK
339 /* we have hit a non-whitespace char, start copying value data */
340 header_value_mode = 2;
8e669ac1 341
1bd0d12b
JH
342 if (c == '"') /* flip "quoted" mode */
343 header_value_mode = header_value_mode==2 ? 3 : 2;
8e669ac1 344
1bd0d12b
JH
345 /* leave value mode on unquoted ';' */
346 if (header_value_mode == 2 && c == ';') {
8523533c
TK
347 header_value_mode = 0;
348 };
349 /* -------------------------------- */
350 }
c007c974
JH
351 else
352 {
353 /* -------- non-value mode -------- */
354 /* skip whitespace + tabs */
355 if ( (c == ' ') || (c == '\t') )
356 continue;
357 if (c == '\\')
358 {
359 /* quote next char. can be used
360 to escape brackets. */
361 if ((c = fgetc(f)) == EOF) break;
8523533c 362 }
c007c974
JH
363 else if (c == '(')
364 {
365 header_open_brackets++;
366 continue;
8523533c 367 }
c007c974
JH
368 else if ((c == ')') && header_open_brackets)
369 {
370 header_open_brackets--;
371 continue;
8523533c 372 }
c007c974
JH
373 else if ( (c == '=') && !header_open_brackets ) /* enter value mode */
374 header_value_mode = 1;
8e669ac1 375
c007c974
JH
376 /* skip chars while we are in a comment */
377 if (header_open_brackets > 0)
378 continue;
379 /* -------------------------------- */
380 }
8e669ac1 381
c007c974
JH
382 /* copy the char to the buffer */
383 header[num_copied++] = (uschar)c;
8e669ac1 384
c007c974
JH
385 /* break if header buffer is full */
386 if (num_copied > MIME_MAX_HEADER_SIZE-1)
387 done = 1;
388 }
8523533c 389
c007c974
JH
390if ((num_copied > 0) && (header[num_copied-1] != ';'))
391 header[num_copied-1] = ';';
8523533c 392
c007c974
JH
393/* 0-terminate */
394header[num_copied] = '\0';
8e669ac1 395
c007c974
JH
396/* return 0 for EOF or empty line */
397if ((c == EOF) || (num_copied == 1))
398 return 0;
399else
400 return 1;
8523533c
TK
401}
402
403
f846c8f5
JH
404static void
405mime_vars_reset(void)
406{
407mime_anomaly_level = 0;
408mime_anomaly_text = NULL;
409mime_boundary = NULL;
410mime_charset = NULL;
411mime_decoded_filename = NULL;
412mime_filename = NULL;
413mime_content_description = NULL;
414mime_content_disposition = NULL;
415mime_content_id = NULL;
416mime_content_transfer_encoding = NULL;
417mime_content_type = NULL;
418mime_is_multipart = 0;
419mime_content_size = 0;
420}
421
422
423/* Grab a parameter value, dealing with quoting.
424
425Arguments:
426 str Input string. Updated on return to point to terminating ; or NUL
427
428Return:
429 Allocated string with parameter value
430*/
431static uschar *
432mime_param_val(uschar ** sp)
433{
434uschar * s = *sp;
435uschar * val = NULL;
436int size = 0, ptr = 0;
437
e1d04f48 438/* debug_printf_indent(" considering paramval '%s'\n", s); */
f846c8f5
JH
439
440while (*s && *s != ';') /* ; terminates */
441 if (*s == '"')
442 {
443 s++; /* skip opening " */
444 while (*s && *s != '"') /* " protects ; */
c2f669a4 445 val = string_catn(val, &size, &ptr, s++, 1);
f846c8f5
JH
446 if (*s) s++; /* skip closing " */
447 }
448 else
c2f669a4 449 val = string_catn(val, &size, &ptr, s++, 1);
f846c8f5
JH
450if (val) val[ptr] = '\0';
451*sp = s;
452return val;
453}
454
455static uschar *
456mime_next_semicolon(uschar * s)
457{
458while (*s && *s != ';') /* ; terminates */
459 if (*s == '"')
460 {
461 s++; /* skip opening " */
462 while (*s && *s != '"') /* " protects ; */
463 s++;
464 if (*s) s++; /* skip closing " */
465 }
466 else
467 s++;
468return s;
469}
470
471
627d1a1b
JH
472static uschar *
473rfc2231_to_2047(const uschar * fname, const uschar * charset, int * len)
474{
475int size = 0, ptr = 0;
c2f669a4 476uschar * val = string_catn(NULL, &size, &ptr, US"=?", 2);
627d1a1b
JH
477uschar c;
478
622dbd6a 479if (charset)
c2f669a4
JH
480 val = string_cat(val, &size, &ptr, charset);
481val = string_catn(val, &size, &ptr, US"?Q?", 3);
627d1a1b
JH
482
483while ((c = *fname))
484 if (c == '%' && isxdigit(fname[1]) && isxdigit(fname[2]))
485 {
c2f669a4
JH
486 val = string_catn(val, &size, &ptr, US"=", 1);
487 val = string_catn(val, &size, &ptr, ++fname, 2);
627d1a1b
JH
488 fname += 2;
489 }
490 else
c2f669a4 491 val = string_catn(val, &size, &ptr, fname++, 1);
627d1a1b 492
c2f669a4 493val = string_catn(val, &size, &ptr, US"?=", 2);
627d1a1b
JH
494val[*len = ptr] = '\0';
495return val;
496}
497
498
c007c974
JH
499int
500mime_acl_check(uschar *acl, FILE *f, struct mime_boundary_context *context,
f846c8f5 501 uschar **user_msgptr, uschar **log_msgptr)
c007c974
JH
502{
503int rc = OK;
f846c8f5 504uschar * header = NULL;
c007c974
JH
505struct mime_boundary_context nested_context;
506
507/* reserve a line buffer to work in */
f846c8f5 508header = store_get(MIME_MAX_HEADER_SIZE+1);
c007c974
JH
509
510/* Not actually used at the moment, but will be vital to fixing
511 * some RFC 2046 nonconformance later... */
512nested_context.parent = context;
513
514/* loop through parts */
515while(1)
516 {
517 /* reset all per-part mime variables */
f846c8f5
JH
518 mime_vars_reset();
519
520 /* If boundary is null, we assume that *f is positioned on the start of
521 headers (for example, at the very beginning of a message. If a boundary is
522 given, we must first advance to it to reach the start of the next header
523 block. */
c007c974
JH
524
525 /* NOTE -- there's an error here -- RFC2046 specifically says to
526 * check for outer boundaries. This code doesn't do that, and
527 * I haven't fixed this.
528 *
529 * (I have moved partway towards adding support, however, by adding
530 * a "parent" field to my new boundary-context structure.)
531 */
f846c8f5 532 if (context) for (;;)
c007c974 533 {
f846c8f5 534 if (!fgets(CS header, MIME_MAX_HEADER_SIZE, f))
c007c974 535 {
f846c8f5 536 /* Hit EOF or read error. Ugh. */
e1d04f48 537 DEBUG(D_acl) debug_printf_indent("MIME: Hit EOF ...\n");
f846c8f5
JH
538 return rc;
539 }
5c6cf6a0 540
f846c8f5
JH
541 /* boundary line must start with 2 dashes */
542 if ( Ustrncmp(header, "--", 2) == 0
543 && Ustrncmp(header+2, context->boundary, Ustrlen(context->boundary)) == 0
544 )
545 { /* found boundary */
546 if (Ustrncmp((header+2+Ustrlen(context->boundary)), "--", 2) == 0)
547 {
548 /* END boundary found */
e1d04f48 549 DEBUG(D_acl) debug_printf_indent("MIME: End boundary found %s\n",
f846c8f5
JH
550 context->boundary);
551 return rc;
c007c974 552 }
f846c8f5 553
e1d04f48 554 DEBUG(D_acl) debug_printf_indent("MIME: Next part with boundary %s\n",
f846c8f5
JH
555 context->boundary);
556 break;
8523533c 557 }
c007c974 558 }
8e669ac1 559
c007c974 560 /* parse headers, set up expansion variables */
5c6cf6a0 561 while (mime_get_header(f, header))
c007c974 562 {
f846c8f5
JH
563 struct mime_header * mh;
564
565 /* look for interesting headers */
566 for (mh = mime_header_list;
567 mh < mime_header_list + mime_header_list_size;
568 mh++) if (strncmpic(mh->name, header, mh->namelen) == 0)
569 {
f846c8f5
JH
570 uschar * p = header + mh->namelen;
571 uschar * q;
c007c974 572
f846c8f5
JH
573 /* grab the value (normalize to lower case)
574 and copy to its corresponding expansion variable */
575
576 for (q = p; *q != ';' && *q; q++) ;
577 *mh->value = string_copynlc(p, q-p);
e1d04f48 578 DEBUG(D_acl) debug_printf_indent("MIME: found %s header, value is '%s'\n",
f846c8f5
JH
579 mh->name, *mh->value);
580
581 if (*(p = q)) p++; /* jump past the ; */
582
583 {
584 uschar * mime_fname = NULL;
585 uschar * mime_fname_rfc2231 = NULL;
586 uschar * mime_filename_charset = NULL;
587 BOOL decoding_failed = FALSE;
c007c974 588
5c6cf6a0
JH
589 /* grab all param=value tags on the remaining line,
590 check if they are interesting */
f846c8f5 591
5c6cf6a0 592 while (*p)
c007c974
JH
593 {
594 mime_parameter * mp;
f846c8f5 595
e1d04f48 596 DEBUG(D_acl) debug_printf_indent("MIME: considering paramlist '%s'\n", p);
f846c8f5
JH
597
598 if ( !mime_filename
fc362fc5
JH
599 && strncmpic(CUS"content-disposition:", header, 20) == 0
600 && strncmpic(CUS"filename*", p, 9) == 0
f846c8f5
JH
601 )
602 { /* RFC 2231 filename */
603 uschar * q;
604
605 /* find value of the filename */
606 p += 9;
607 while(*p != '=' && *p) p++;
608 if (*p) p++; /* p is filename or NUL */
609 q = mime_param_val(&p); /* p now trailing ; or NUL */
610
611 if (q && *q)
c007c974 612 {
f846c8f5
JH
613 uschar * temp_string, * err_msg;
614 int slen;
4fd5d2bf 615
f846c8f5
JH
616 /* build up an un-decoded filename over successive
617 filename*= parameters (for use when 2047 decode fails) */
618
619 mime_fname_rfc2231 = string_sprintf("%#s%s",
620 mime_fname_rfc2231, q);
621
622 if (!decoding_failed)
623 {
624 int size;
625 if (!mime_filename_charset)
4fd5d2bf 626 {
f846c8f5
JH
627 uschar * s = q;
628
629 /* look for a ' in the "filename" */
622dbd6a 630 while(*s != '\'' && *s) s++; /* s is 1st ' or NUL */
f846c8f5
JH
631
632 if ((size = s-q) > 0)
f846c8f5 633 mime_filename_charset = string_copyn(q, size);
f846c8f5 634
622dbd6a
JH
635 if (*(p = s)) p++;
636 while(*p == '\'') p++; /* p is after 2nd ' */
4fd5d2bf
JH
637 }
638 else
f846c8f5 639 p = q;
5c6cf6a0 640
e1d04f48 641 DEBUG(D_acl) debug_printf_indent("MIME: charset %s fname '%s'\n",
622dbd6a
JH
642 mime_filename_charset ? mime_filename_charset : US"<NULL>", p);
643
627d1a1b 644 temp_string = rfc2231_to_2047(p, mime_filename_charset, &slen);
e1d04f48 645 DEBUG(D_acl) debug_printf_indent("MIME: 2047-name %s\n", temp_string);
622dbd6a
JH
646
647 temp_string = rfc2047_decode(temp_string, FALSE, NULL, ' ',
f846c8f5 648 NULL, &err_msg);
e1d04f48 649 DEBUG(D_acl) debug_printf_indent("MIME: plain-name %s\n", temp_string);
622dbd6a 650
f846c8f5
JH
651 size = Ustrlen(temp_string);
652
653 if (size == slen)
654 decoding_failed = TRUE;
655 else
656 /* build up a decoded filename over successive
657 filename*= parameters */
658
659 mime_filename = mime_fname = mime_fname
660 ? string_sprintf("%s%s", mime_fname, temp_string)
661 : temp_string;
93cad488 662 }
f846c8f5 663 }
5c6cf6a0 664 }
f846c8f5 665
e7c25d5b 666 else
f846c8f5
JH
667 /* look for interesting parameters */
668 for (mp = mime_parameter_list;
669 mp < mime_parameter_list + nelem(mime_parameter_list);
670 mp++
671 ) if (strncmpic(mp->name, p, mp->namelen) == 0)
672 {
673 uschar * q;
674 uschar * dummy_errstr;
675
676 /* grab the value and copy to its expansion variable */
677 p += mp->namelen;
678 q = mime_param_val(&p); /* p now trailing ; or NUL */
679
680 *mp->value = q && *q
681 ? rfc2047_decode(q, check_rfc2047_length, NULL, 32, NULL,
682 &dummy_errstr)
683 : NULL;
e1d04f48 684 DEBUG(D_acl) debug_printf_indent(
622dbd6a 685 "MIME: found %s parameter in %s header, value '%s'\n",
f846c8f5
JH
686 mp->name, mh->name, *mp->value);
687
688 break; /* done matching param names */
689 }
690
691
692 /* There is something, but not one of our interesting parameters.
693 Advance past the next semicolon */
694 p = mime_next_semicolon(p);
695 if (*p) p++;
696 } /* param scan on line */
697
fc362fc5 698 if (strncmpic(CUS"content-disposition:", header, 20) == 0)
f846c8f5
JH
699 {
700 if (decoding_failed) mime_filename = mime_fname_rfc2231;
701
e1d04f48 702 DEBUG(D_acl) debug_printf_indent(
622dbd6a 703 "MIME: found %s parameter in %s header, value is '%s'\n",
f846c8f5
JH
704 "filename", mh->name, mime_filename);
705 }
c007c974
JH
706 }
707 }
f846c8f5 708 }
8e669ac1 709
c007c974 710 /* set additional flag variables (easier access) */
f846c8f5
JH
711 if ( mime_content_type
712 && Ustrncmp(mime_content_type,"multipart",9) == 0
713 )
c007c974 714 mime_is_multipart = 1;
8e669ac1 715
c007c974
JH
716 /* Make a copy of the boundary pointer.
717 Required since mime_boundary is global
718 and can be overwritten further down in recursion */
719 nested_context.boundary = mime_boundary;
8e669ac1 720
c007c974
JH
721 /* raise global counter */
722 mime_part_count++;
8523533c 723
c007c974
JH
724 /* copy current file handle to global variable */
725 mime_stream = f;
726 mime_current_boundary = context ? context->boundary : 0;
8e669ac1 727
c007c974
JH
728 /* Note the context */
729 mime_is_coverletter = !(context && context->context == MBC_ATTACHMENT);
8e669ac1 730
c007c974
JH
731 /* call ACL handling function */
732 rc = acl_check(ACL_WHERE_MIME, NULL, acl, user_msgptr, log_msgptr);
8e669ac1 733
c007c974
JH
734 mime_stream = NULL;
735 mime_current_boundary = NULL;
736
737 if (rc != OK) break;
8e669ac1 738
c007c974
JH
739 /* If we have a multipart entity and a boundary, go recursive */
740 if ( (mime_content_type != NULL) &&
741 (nested_context.boundary != NULL) &&
742 (Ustrncmp(mime_content_type,"multipart",9) == 0) )
743 {
622dbd6a 744 DEBUG(D_acl)
e1d04f48 745 debug_printf_indent("MIME: Entering multipart recursion, boundary '%s'\n",
622dbd6a 746 nested_context.boundary);
c007c974
JH
747
748 nested_context.context =
749 context && context->context == MBC_ATTACHMENT
750 ? MBC_ATTACHMENT
751 : Ustrcmp(mime_content_type,"multipart/alternative") == 0
752 || Ustrcmp(mime_content_type,"multipart/related") == 0
753 ? MBC_COVERLETTER_ALL
754 : MBC_COVERLETTER_ONESHOT;
755
756 rc = mime_acl_check(acl, f, &nested_context, user_msgptr, log_msgptr);
757 if (rc != OK) break;
8523533c 758 }
c007c974
JH
759 else if ( (mime_content_type != NULL) &&
760 (Ustrncmp(mime_content_type,"message/rfc822",14) == 0) )
761 {
55414b25 762 const uschar *rfc822name = NULL;
c007c974
JH
763 uschar filename[2048];
764 int file_nr = 0;
765 int result = 0;
8e669ac1 766
c007c974
JH
767 /* must find first free sequential filename */
768 do
769 {
770 struct stat mystat;
771 (void)string_format(filename, 2048,
772 "%s/scan/%s/__rfc822_%05u", spool_directory, message_id, file_nr++);
773 /* security break */
774 if (file_nr >= 128)
775 goto NO_RFC822;
776 result = stat(CS filename,&mystat);
777 } while (result != -1);
778
779 rfc822name = filename;
780
781 /* decode RFC822 attachment */
782 mime_decoded_filename = NULL;
783 mime_stream = f;
784 mime_current_boundary = context ? context->boundary : NULL;
785 mime_decode(&rfc822name);
786 mime_stream = NULL;
787 mime_current_boundary = NULL;
788 if (!mime_decoded_filename) /* decoding failed */
789 {
790 log_write(0, LOG_MAIN,
f1d38a56 791 "MIME acl condition warning - could not decode RFC822 MIME part to file.");
f846c8f5
JH
792 rc = DEFER;
793 goto out;
c007c974
JH
794 }
795 mime_decoded_filename = NULL;
796 }
8523533c 797
c007c974
JH
798NO_RFC822:
799 /* If the boundary of this instance is NULL, we are finished here */
f846c8f5 800 if (!context) break;
8e669ac1 801
c007c974
JH
802 if (context->context == MBC_COVERLETTER_ONESHOT)
803 context->context = MBC_ATTACHMENT;
804 }
8523533c 805
f846c8f5
JH
806out:
807mime_vars_reset();
c007c974 808return rc;
8523533c
TK
809}
810
c007c974
JH
811#endif /*WITH_CONTENT_SCAN*/
812
813/* vi: sw ai sw=2
814*/