1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
6 * Copyright (c) The Exim Maintainers 2015 - 2022
7 * Copyright (c) Tom Kistner <tom@duncanthrax.net> 2003 - 2015
11 /* Code for calling virus (malware) scanners. Called from acl.c. */
14 #ifdef WITH_CONTENT_SCAN /* entire file */
17 #ifndef DISABLE_MAL_FFROTD
20 #ifndef DISABLE_MAL_FFROT6D
23 #ifndef DISABLE_MAL_DRWEB
26 #ifndef DISABLE_MAL_AVE
29 #ifndef DISABLE_MAL_FSECURE
32 #ifndef DISABLE_MAL_KAV
35 #ifndef DISABLE_MAL_SOPHIE
38 #ifndef DISABLE_MAL_CLAM
41 #ifndef DISABLE_MAL_MKS
44 #ifndef DISABLE_MAL_AVAST
47 #ifndef DISABLE_MAL_SOCK
50 #ifndef DISABLE_MAL_CMDLINE
55 typedef enum {MC_NONE, MC_TCP, MC_UNIX, MC_STRM} contype_t;
60 const uschar * options_default;
64 #ifndef DISABLE_MAL_FFROTD
65 { M_FPROTD, US"f-protd", US"localhost 10200-10204", MC_TCP },
67 #ifndef DISABLE_MAL_FFROT6D
68 { M_FPROT6D, US"f-prot6d", US"localhost 10200", MC_TCP },
70 #ifndef DISABLE_MAL_DRWEB
71 { M_DRWEB, US"drweb", US"/usr/local/drweb/run/drwebd.sock", MC_STRM },
73 #ifndef DISABLE_MAL_AVE
74 { M_AVES, US"aveserver", US"/var/run/aveserver", MC_UNIX },
76 #ifndef DISABLE_MAL_FSECURE
77 { M_FSEC, US"fsecure", US"/var/run/.fsav", MC_UNIX },
79 #ifndef DISABLE_MAL_KAV
80 { M_KAVD, US"kavdaemon", US"/var/run/AvpCtl", MC_UNIX },
82 #ifndef DISABLE_MAL_SOPHIE
83 { M_SOPHIE, US"sophie", US"/var/run/sophie", MC_UNIX },
85 #ifndef DISABLE_MAL_CLAM
86 { M_CLAMD, US"clamd", US"/tmp/clamd", MC_NONE },
88 #ifndef DISABLE_MAL_MKS
89 { M_MKSD, US"mksd", NULL, MC_NONE },
91 #ifndef DISABLE_MAL_AVAST
92 { M_AVAST, US"avast", US"/var/run/avast/scan.sock", MC_STRM },
94 #ifndef DISABLE_MAL_SOCK
95 { M_SOCK, US"sock", US"/tmp/malware.sock", MC_STRM },
97 #ifndef DISABLE_MAL_CMDLINE
98 { M_CMDL, US"cmdline", NULL, MC_NONE },
100 { -1, NULL, NULL, MC_NONE } /* end-marker */
103 /******************************************************************************/
104 # ifdef MACRO_PREDEF /* build solely to predefine macros */
106 # include "macro_predef.h"
109 features_malware(void)
113 uschar buf[EXIM_DRIVERNAME_MAX];
115 spf(buf, sizeof(buf), US"_HAVE_MALWARE_");
117 for (const struct scan * sc = m_scans; sc->scancode != -1; sc++)
119 for (s = sc->name, t = buf+14; *s; s++) if (*s != '-')
122 builtin_macro_create(buf);
126 /******************************************************************************/
127 # else /*!MACRO_PREDEF, main build*/
130 #define MALWARE_TIMEOUT 120 /* default timeout, seconds */
132 static const uschar * malware_regex_default = US ".+";
133 static const pcre2_code * malware_default_re = NULL;
136 #ifndef DISABLE_MAL_CLAM
137 /* The maximum number of clamd servers that are supported in the configuration */
138 # define MAX_CLAMD_SERVERS 32
139 # define MAX_CLAMD_SERVERS_S "32"
141 typedef struct clamd_address {
149 #ifndef DISABLE_MAL_DRWEB
150 # define DRWEBD_SCAN_CMD (1) /* scan file, buffer or diskfile */
151 # define DRWEBD_RETURN_VIRUSES (1<<0) /* ask daemon return to us viruses names from report */
152 # define DRWEBD_IS_MAIL (1<<19) /* say to daemon that format is "archive MAIL" */
154 # define DERR_READ_ERR (1<<0) /* read error */
155 # define DERR_NOMEMORY (1<<2) /* no memory */
156 # define DERR_TIMEOUT (1<<9) /* scan timeout has run out */
157 # define DERR_BAD_CALL (1<<15) /* wrong command */
159 static const uschar * drweb_re_str = US "infected\\swith\\s*(.+?)$";
160 static const pcre2_code * drweb_re = NULL;
163 #ifndef DISABLE_MAL_FSECURE
164 static const uschar * fsec_re_str = US "\\S{0,5}INFECTED\\t[^\\t]*\\t([^\\t]+)\\t\\S*$";
165 static const pcre2_code * fsec_re = NULL;
168 #ifndef DISABLE_MAL_KAV
169 static const uschar * kav_re_sus_str = US "suspicion:\\s*(.+?)\\s*$";
170 static const uschar * kav_re_inf_str = US "infected:\\s*(.+?)\\s*$";
171 static const pcre2_code * kav_re_sus = NULL;
172 static const pcre2_code * kav_re_inf = NULL;
175 #ifndef DISABLE_MAL_AVAST
176 static const uschar * ava_re_clean_str = US "(?!\\\\)\\t\\[\\+\\]";
177 static const uschar * ava_re_virus_str = US "(?!\\\\)\\t\\[L\\]\\d+\\.0\\t0\\s(.*)";
178 static const uschar * ava_re_error_str = US "(?!\\\\)\\t\\[E\\]\\d+\\.0\\tError\\s\\d+\\s(.*)";
179 static const pcre2_code * ava_re_clean = NULL;
180 static const pcre2_code * ava_re_virus = NULL;
181 static const pcre2_code * ava_re_error = NULL;
184 #ifndef DISABLE_MAL_FFROT6D
185 static const uschar * fprot6d_re_error_str = US "^\\d+\\s<(.+?)>$";
186 static const uschar * fprot6d_re_virus_str = US "^\\d+\\s<infected:\\s+(.+?)>\\s+.+$";
187 static const pcre2_code * fprot6d_re_error = NULL;
188 static const pcre2_code * fprot6d_re_virus = NULL;
193 /******************************************************************************/
195 #ifndef DISABLE_MAL_KAV
196 /* Routine to check whether a system is big- or little-endian.
197 Ripped from http://www.faqs.org/faqs/graphics/fileformats-faq/part4/section-7.html
198 Needed for proper kavdaemon implementation. Sigh. */
199 # define BIG_MY_ENDIAN 0
200 # define LITTLE_MY_ENDIAN 1
201 static int test_byte_order(void);
205 short int word = 0x0001;
206 char *byte = CS &word;
207 return(byte[0] ? LITTLE_MY_ENDIAN : BIG_MY_ENDIAN);
211 BOOL malware_ok = FALSE;
213 /* Gross hacks for the -bmalware option; perhaps we should just create
214 the scan directory normally for that case, but look into rigging up the
215 needed header variables if not already set on the command-line? */
216 extern int spool_mbox_ok;
217 extern uschar spooled_message_id[MESSAGE_ID_LENGTH+1];
220 /* Some (currently avast only) use backslash escaped whitespace,
221 this function undoes these escapes */
223 #ifndef DISABLE_MAL_AVAST
229 if (*p == '\\' && (isspace(p[1]) || p[1] == '\\'))
230 for (p0 = p; *p0; ++p0) *p0 = p0[1];
234 /* --- malware_*_defer --- */
236 malware_panic_defer(const uschar * str)
238 log_write(0, LOG_MAIN|LOG_PANIC, "malware acl condition: %s", str);
242 malware_log_defer(const uschar * str)
244 log_write(0, LOG_MAIN, "malware acl condition: %s", str);
247 /* --- m_*_defer --- */
249 m_panic_defer(struct scan * scanent, const uschar * hostport,
252 return malware_panic_defer(string_sprintf("%s %s : %s",
253 scanent->name, hostport ? hostport : CUS"", str));
255 /* --- m_*_defer_3 */
257 m_panic_defer_3(struct scan * scanent, const uschar * hostport,
258 const uschar * str, int fd_to_close)
260 DEBUG(D_acl) debug_print_socket(fd_to_close);
261 (void) close(fd_to_close);
262 return m_panic_defer(scanent, hostport, str);
265 /*************************************************/
267 #ifndef DISABLE_MAL_CLAM
268 /* Only used by the Clamav code, which is working from a list of servers and
269 uses the returned in_addr to get a second connection to the same system.
272 m_tcpsocket(const uschar * hostname, unsigned int port,
273 host_item * host, uschar ** errstr, const blob * fastopen_blob)
275 int fd = ip_connectedsocket(SOCK_STREAM, hostname, port, port, 5,
276 host, errstr, fastopen_blob);
277 #ifdef EXIM_TFO_FREEBSD
278 /* Under some fault conditions, FreeBSD 12.2 seen to send a (non-TFO) SYN
279 and, getting no response, wait for a long time. Impose a 5s max. */
281 (void) poll_one_fd(fd, POLLOUT, 5 * 1000);
288 m_sock_send(int sock, uschar * buf, int cnt, uschar ** errstr)
290 if (send(sock, buf, cnt, 0) < 0)
294 *errstr = string_sprintf("unable to send to socket (%s): %s",
301 static const pcre2_code *
302 m_pcre_compile(const uschar * re, BOOL cacheable, uschar ** errstr)
304 return regex_compile(re, cacheable ? MCS_CACHEABLE : MCS_NOFLAGS, errstr,
309 m_pcre_exec(const pcre2_code * cre, uschar * text)
311 pcre2_match_data * md = pcre2_match_data_create(2, pcre_gen_ctx);
312 int i = pcre2_match(cre, text, PCRE2_ZERO_TERMINATED, 0, 0, md, pcre_gen_mtc_ctx);
313 PCRE2_UCHAR * substr = NULL;
316 if (i >= 2) /* Got it */
317 pcre2_substring_get_bynumber(md, 1, &substr, &slen); /* uses same ctx as md */
318 /* pcre2_match_data_free(md); gen ctx needs no free */
322 static const pcre2_code *
323 m_pcre_nextinlist(const uschar ** list, int * sep,
324 BOOL cacheable, char * listerr, uschar ** errstr)
326 const uschar * list_ele;
327 const pcre2_code * cre = NULL;
329 if (!(list_ele = string_nextinlist(list, sep, NULL, 0)))
330 *errstr = US listerr;
333 DEBUG(D_acl) debug_printf_indent("%15s%10s'%s'\n", "", "RE: ",
334 string_printing(list_ele));
335 cre = m_pcre_compile(CUS list_ele, cacheable, errstr);
342 Simple though inefficient wrapper for reading a line. Drop CRs and the
343 trailing newline. Can return early on buffer full. Null-terminate.
344 Apply initial timeout if no data ready.
346 Return: number of chars - zero for an empty line
348 -2 on timeout or error
351 recv_line(int fd, uschar * buffer, int bsize, time_t tmo)
357 if (!fd_ready(fd, tmo))
360 /*XXX tmo handling assumes we always get a whole line */
363 while ((rcv = read(fd, p, 1)) > 0)
366 if (p-buffer > bsize-2) break;
367 if (*p == '\n') break;
374 debug_printf_indent("Malware scan: read %s (%s)\n",
375 rcv==0 ? "EOF" : "error", strerror(errno));
376 debug_print_socket(fd);
378 return rcv==0 ? -1 : -2;
382 DEBUG(D_acl) debug_printf_indent("Malware scan: read '%s'\n", buffer);
386 /* return TRUE iff size as requested */
387 #ifndef DISABLE_MAL_DRWEB
389 recv_len(int sock, void * buf, int size, time_t tmo)
391 return fd_ready(sock, tmo)
392 ? recv(sock, buf, size, 0) == size
399 #ifndef DISABLE_MAL_MKS
400 /* ============= private routines for the "mksd" scanner type ============== */
402 # include <sys/uio.h>
405 mksd_writev (int sock, struct iovec * iov, int iovcnt)
412 i = writev (sock, iov, iovcnt);
413 while (i < 0 && errno == EINTR);
416 (void) malware_panic_defer(
417 US"unable to write to mksd UNIX socket (/var/run/mksd/socket)");
420 for (;;) /* check for short write */
421 if (i >= iov->iov_len)
431 iov->iov_base = CS iov->iov_base + i;
438 mksd_read_lines (int sock, uschar *av_buffer, int av_buffer_size, time_t tmo)
440 client_conn_ctx cctx = {.sock = sock};
446 i = ip_recv(&cctx, av_buffer+offset, av_buffer_size-offset, tmo);
449 (void) malware_panic_defer(US"unable to read from mksd UNIX socket (/var/run/mksd/socket)");
454 /* offset == av_buffer_size -> buffer full */
455 if (offset == av_buffer_size)
457 (void) malware_panic_defer(US"malformed reply received from mksd");
460 } while (av_buffer[offset-1] != '\n');
462 av_buffer[offset] = '\0';
467 mksd_parse_line(struct scan * scanent, char * line)
478 if ((p = strchr (line, '\n')) != NULL)
480 return m_panic_defer(scanent, NULL,
481 string_sprintf("scanner failed: %s", line));
484 if ((p = strchr (line, '\n')) != NULL)
489 && (p = strchr(line+4, ' ')) != NULL
494 malware_name = string_copy(US line+4);
498 return m_panic_defer(scanent, NULL,
499 string_sprintf("malformed reply received: %s", line));
504 mksd_scan_packed(struct scan * scanent, int sock, const uschar * scan_filename,
508 const char *cmd = "MSQ\n";
509 uschar av_buffer[1024];
511 iov[0].iov_base = (void *) cmd;
513 iov[1].iov_base = (void *) scan_filename;
514 iov[1].iov_len = Ustrlen(scan_filename);
515 iov[2].iov_base = (void *) (cmd + 3);
518 if (mksd_writev (sock, iov, 3) < 0)
521 if (mksd_read_lines (sock, av_buffer, sizeof (av_buffer), tmo) < 0)
524 return mksd_parse_line (scanent, CS av_buffer);
529 #ifndef DISABLE_MAL_CLAM
531 clamd_option(clamd_address * cd, const uschar * optstr, int * subsep)
536 while ((s = string_nextinlist(&optstr, subsep, NULL, 0)))
537 if (Ustrncmp(s, "retry=", 6) == 0)
539 int sec = readconf_readtime((s += 6), '\0', FALSE);
552 /*************************************************
553 * Scan content for malware *
554 *************************************************/
556 /* This is an internal interface for scanning an email; the normal interface
557 is via malware(), or there's malware_in_file() used for testing/debugging.
560 malware_re match condition for "malware="
561 cacheable the RE did not use any dynamic elements during expansion
562 scan_filename the file holding the email to be scanned, if we're faking
563 this up for the -bmalware test, else NULL
564 timeout if nonzero, non-default timeoutl
566 Returns: Exim message processing code (OK, FAIL, DEFER, ...)
567 where true means malware was found (condition applies)
570 malware_internal(const uschar * malware_re, BOOL cacheable,
571 const uschar * scan_filename, int timeout)
574 const uschar *av_scanner_work = av_scanner;
575 BOOL av_scanner_textonly;
576 uschar *scanner_name;
577 unsigned long mbox_size;
579 const pcre2_code *re;
581 struct scan * scanent;
582 const uschar * scanner_options;
583 client_conn_ctx malware_daemon_ctx = {.sock = -1};
585 uschar * eml_filename, * eml_dir;
588 return FAIL; /* empty means "don't match anything" */
590 /* Ensure the eml mbox file is spooled up */
592 if (!(mbox_file = spool_mbox(&mbox_size, scan_filename, &eml_filename)))
593 return malware_panic_defer(US"error while creating mbox spool file");
595 /* None of our current scanners need the mbox file as a stream (they use
596 the name), so we can close it right away. Get the directory too. */
598 (void) fclose(mbox_file);
599 eml_dir = string_copyn(eml_filename, Ustrrchr(eml_filename, '/') - eml_filename);
601 /* parse 1st option */
602 if (strcmpic(malware_re, US"false") == 0 || Ustrcmp(malware_re, "0") == 0)
603 return FAIL; /* explicitly no matching */
605 /* special cases (match anything except empty) */
606 if ( strcmpic(malware_re, US"true") == 0
607 || Ustrcmp(malware_re, "*") == 0
608 || Ustrcmp(malware_re, "1") == 0
611 if ( !malware_default_re
612 && !(malware_default_re = m_pcre_compile(malware_regex_default, FALSE, &errstr)))
613 return malware_panic_defer(errstr);
614 malware_re = malware_regex_default;
615 re = malware_default_re;
618 /* compile the regex, see if it works */
619 else if (!(re = m_pcre_compile(malware_re, cacheable, &errstr)))
620 return malware_panic_defer(errstr);
622 /* if av_scanner starts with a dollar, expand it first */
623 if (*av_scanner == '$')
625 if (!(av_scanner_work = expand_string_2(av_scanner, &av_scanner_textonly)))
626 return malware_panic_defer(
627 string_sprintf("av_scanner starts with $, but expansion failed: %s",
628 expand_string_message));
631 debug_printf_indent("Expanded av_scanner global: %s\n", av_scanner_work);
632 /* disable result caching in this case */
637 av_scanner_textonly = TRUE;
639 /* Do not scan twice (unless av_scanner is dynamic). */
642 /* find the scanner type from the av_scanner option */
643 if (!(scanner_name = string_nextinlist(&av_scanner_work, &sep, NULL, 0)))
644 return malware_panic_defer(US"av_scanner configuration variable is empty");
645 if (!timeout) timeout = MALWARE_TIMEOUT;
646 tmo = time(NULL) + timeout;
648 for (scanent = m_scans; ; scanent++)
651 return malware_panic_defer(string_sprintf("unknown scanner type '%s'",
653 if (strcmpic(scanner_name, US scanent->name) != 0)
655 DEBUG(D_acl) debug_printf_indent("Malware scan: %s tmo=%s\n",
656 scanner_name, readconf_printtime(timeout));
658 if (!(scanner_options = string_nextinlist(&av_scanner_work, &sep, NULL, 0)))
659 scanner_options = scanent->options_default;
660 if (scanent->conn == MC_NONE)
663 DEBUG(D_acl) debug_printf_indent("%15s%10s%s\n", "", "socket: ", scanner_options);
664 switch(scanent->conn)
667 malware_daemon_ctx.sock = ip_tcpsocket(scanner_options, &errstr, 5, NULL); break;
669 malware_daemon_ctx.sock = ip_unixsocket(scanner_options, &errstr); break;
671 malware_daemon_ctx.sock = ip_streamsocket(scanner_options, &errstr, 5, NULL); break;
673 /* compiler quietening */ break;
675 if (malware_daemon_ctx.sock < 0)
676 return m_panic_defer(scanent, CUS callout_address, errstr);
680 switch (scanent->scancode)
682 #ifndef DISABLE_MAL_FFROTD
683 case M_FPROTD: /* "f-protd" scanner type -------------------------------- */
685 uschar *fp_scan_option;
686 unsigned int detected=0, par_count=0;
687 uschar * scanrequest;
688 uschar buf[32768], *strhelper, *strhelper2;
689 uschar * malware_name_internal = NULL;
692 scanrequest = string_sprintf("GET %s", eml_filename);
694 while ((fp_scan_option = string_nextinlist(&av_scanner_work, &sep,
697 scanrequest = string_sprintf("%s%s%s", scanrequest,
698 par_count ? "%20" : "?", fp_scan_option);
701 scanrequest = string_sprintf("%s HTTP/1.0\r\n\r\n", scanrequest);
702 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s: %s\n",
703 scanner_name, scanrequest);
705 /* send scan request */
706 if (m_sock_send(malware_daemon_ctx.sock, scanrequest, Ustrlen(scanrequest)+1, &errstr) < 0)
707 return m_panic_defer(scanent, CUS callout_address, errstr);
709 while ((len = recv_line(malware_daemon_ctx.sock, buf, sizeof(buf), tmo)) >= 0)
712 if (Ustrstr(buf, US"<detected type=\"") != NULL)
714 else if (detected && (strhelper = Ustrstr(buf, US"<name>")))
716 if ((strhelper2 = Ustrstr(buf, US"</name>")) != NULL)
719 malware_name_internal = string_copy(strhelper+6);
722 else if (Ustrstr(buf, US"<summary code=\""))
724 malware_name = Ustrstr(buf, US"<summary code=\"11\">")
725 ? malware_name_internal : NULL;
731 (void)close(malware_daemon_ctx.sock);
738 #ifndef DISABLE_MAL_FFROT6D
739 case M_FPROT6D: /* "f-prot6d" scanner type ----------------------------------- */
742 uschar * e, * linebuffer, * scanrequest;
743 uschar av_buffer[1024];
745 if ((!fprot6d_re_virus && !(fprot6d_re_virus = m_pcre_compile(fprot6d_re_virus_str, FALSE, &errstr)))
746 || (!fprot6d_re_error && !(fprot6d_re_error = m_pcre_compile(fprot6d_re_error_str, FALSE, &errstr))))
747 return malware_panic_defer(errstr);
749 scanrequest = string_sprintf("SCAN FILE %s\n", eml_filename);
750 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s: %s\n",
751 scanner_name, scanrequest);
753 if (m_sock_send(malware_daemon_ctx.sock, scanrequest, Ustrlen(scanrequest), &errstr) < 0)
754 return m_panic_defer(scanent, CUS callout_address, errstr);
756 bread = ip_recv(&malware_daemon_ctx, av_buffer, sizeof(av_buffer), tmo);
759 return m_panic_defer_3(scanent, CUS callout_address,
760 string_sprintf("unable to read from socket (%s)", strerror(errno)),
761 malware_daemon_ctx.sock);
763 if (bread == sizeof(av_buffer))
764 return m_panic_defer_3(scanent, CUS callout_address,
765 US"buffer too small", malware_daemon_ctx.sock);
767 av_buffer[bread] = '\0';
768 linebuffer = string_copy(av_buffer);
770 m_sock_send(malware_daemon_ctx.sock, US"QUIT\n", 5, 0);
772 if ((e = m_pcre_exec(fprot6d_re_error, linebuffer)))
773 return m_panic_defer_3(scanent, CUS callout_address,
774 string_sprintf("scanner reported error (%s)", e), malware_daemon_ctx.sock);
776 if (!(malware_name = m_pcre_exec(fprot6d_re_virus, linebuffer)))
783 #ifndef DISABLE_MAL_DRWEB
784 case M_DRWEB: /* "drweb" scanner type ----------------------------------- */
785 /* v0.1 - added support for tcp sockets */
786 /* v0.0 - initial release -- support for unix sockets */
790 unsigned int fsize_uint;
791 uschar * tmpbuf, *drweb_fbuf;
792 int drweb_rc, drweb_cmd, drweb_flags = 0x0000, drweb_fd,
793 drweb_vnum, drweb_slen, drweb_fin = 0x0000;
795 /* prepare variables */
796 drweb_cmd = htonl(DRWEBD_SCAN_CMD);
797 drweb_flags = htonl(DRWEBD_RETURN_VIRUSES | DRWEBD_IS_MAIL);
799 if (*scanner_options != '/')
802 if ((drweb_fd = exim_open2(CCS eml_filename, O_RDONLY)) == -1)
803 return m_panic_defer_3(scanent, NULL,
804 string_sprintf("can't open spool file %s: %s",
805 eml_filename, strerror(errno)),
806 malware_daemon_ctx.sock);
808 if ((fsize = lseek(drweb_fd, 0, SEEK_END)) == -1)
811 badseek: err = errno;
812 (void)close(drweb_fd);
813 return m_panic_defer_3(scanent, NULL,
814 string_sprintf("can't seek spool file %s: %s",
815 eml_filename, strerror(err)),
816 malware_daemon_ctx.sock);
818 fsize_uint = (unsigned int) fsize;
819 if ((off_t)fsize_uint != fsize)
821 (void)close(drweb_fd);
822 return m_panic_defer_3(scanent, NULL,
823 string_sprintf("seeking spool file %s, size overflow",
825 malware_daemon_ctx.sock);
827 drweb_slen = htonl(fsize);
828 if (lseek(drweb_fd, 0, SEEK_SET) < 0)
831 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s remote scan [%s]\n",
832 scanner_name, scanner_options);
834 /* send scan request */
835 if ((send(malware_daemon_ctx.sock, &drweb_cmd, sizeof(drweb_cmd), 0) < 0) ||
836 (send(malware_daemon_ctx.sock, &drweb_flags, sizeof(drweb_flags), 0) < 0) ||
837 (send(malware_daemon_ctx.sock, &drweb_fin, sizeof(drweb_fin), 0) < 0) ||
838 (send(malware_daemon_ctx.sock, &drweb_slen, sizeof(drweb_slen), 0) < 0))
840 (void)close(drweb_fd);
841 return m_panic_defer_3(scanent, CUS callout_address, string_sprintf(
842 "unable to send commands to socket (%s)", scanner_options),
843 malware_daemon_ctx.sock);
846 if (!(drweb_fbuf = store_malloc(fsize_uint)))
848 (void)close(drweb_fd);
849 return m_panic_defer_3(scanent, NULL,
850 string_sprintf("unable to allocate memory %u for file (%s)",
851 fsize_uint, eml_filename),
852 malware_daemon_ctx.sock);
855 if ((result = read (drweb_fd, drweb_fbuf, fsize)) == -1)
858 (void)close(drweb_fd);
859 store_free(drweb_fbuf);
860 return m_panic_defer_3(scanent, NULL,
861 string_sprintf("can't read spool file %s: %s",
862 eml_filename, strerror(err)),
863 malware_daemon_ctx.sock);
865 (void)close(drweb_fd);
867 /* send file body to socket */
868 if (send(malware_daemon_ctx.sock, drweb_fbuf, fsize, 0) < 0)
870 store_free(drweb_fbuf);
871 return m_panic_defer_3(scanent, CUS callout_address, string_sprintf(
872 "unable to send file body to socket (%s)", scanner_options),
873 malware_daemon_ctx.sock);
875 store_free(drweb_fbuf);
879 drweb_slen = htonl(Ustrlen(eml_filename));
881 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s local scan [%s]\n",
882 scanner_name, scanner_options);
884 /* send scan request */
885 if ((send(malware_daemon_ctx.sock, &drweb_cmd, sizeof(drweb_cmd), 0) < 0) ||
886 (send(malware_daemon_ctx.sock, &drweb_flags, sizeof(drweb_flags), 0) < 0) ||
887 (send(malware_daemon_ctx.sock, &drweb_slen, sizeof(drweb_slen), 0) < 0) ||
888 (send(malware_daemon_ctx.sock, eml_filename, Ustrlen(eml_filename), 0) < 0) ||
889 (send(malware_daemon_ctx.sock, &drweb_fin, sizeof(drweb_fin), 0) < 0))
890 return m_panic_defer_3(scanent, CUS callout_address, string_sprintf(
891 "unable to send commands to socket (%s)", scanner_options),
892 malware_daemon_ctx.sock);
895 /* wait for result */
896 if (!recv_len(malware_daemon_ctx.sock, &drweb_rc, sizeof(drweb_rc), tmo))
897 return m_panic_defer_3(scanent, CUS callout_address,
898 US"unable to read return code", malware_daemon_ctx.sock);
899 drweb_rc = ntohl(drweb_rc);
901 if (!recv_len(malware_daemon_ctx.sock, &drweb_vnum, sizeof(drweb_vnum), tmo))
902 return m_panic_defer_3(scanent, CUS callout_address,
903 US"unable to read the number of viruses", malware_daemon_ctx.sock);
904 drweb_vnum = ntohl(drweb_vnum);
906 /* "virus(es) found" if virus number is > 0 */
911 /* setup default virus name */
912 malware_name = US"unknown";
914 /* set up match regex */
916 drweb_re = m_pcre_compile(drweb_re_str, FALSE, &errstr);
918 /* read and concatenate virus names into one string */
919 for (int i = 0; i < drweb_vnum; i++)
921 pcre2_match_data * md = pcre2_match_data_create(2, pcre_gen_ctx);
923 /* read the size of report */
924 if (!recv_len(malware_daemon_ctx.sock, &drweb_slen, sizeof(drweb_slen), tmo))
925 return m_panic_defer_3(scanent, CUS callout_address,
926 US"cannot read report size", malware_daemon_ctx.sock);
927 drweb_slen = ntohl(drweb_slen);
929 /* assume tainted, since it is external input */
930 tmpbuf = store_get(drweb_slen, GET_TAINTED);
932 /* read report body */
933 if (!recv_len(malware_daemon_ctx.sock, tmpbuf, drweb_slen, tmo))
934 return m_panic_defer_3(scanent, CUS callout_address,
935 US"cannot read report string", malware_daemon_ctx.sock);
936 tmpbuf[drweb_slen] = '\0';
938 /* try matcher on the line, grab substring */
939 result = pcre2_match(drweb_re, (PCRE2_SPTR)tmpbuf, PCRE2_ZERO_TERMINATED,
940 0, 0, md, pcre_gen_mtc_ctx);
943 PCRE2_SIZE * ovec = pcre2_get_ovector_pointer(md);
945 if (i==0) /* the first name we just copy to malware_name */
946 g = string_catn(NULL, US ovec[2], ovec[3] - ovec[2]);
948 else /* concatenate each new virus name to previous */
950 g = string_catn(g, US"/", 1);
951 g = string_catn(g, US ovec[2], ovec[3] - ovec[2]);
954 /* pcre2_match_data_free(md); gen ctx needs no free */
956 malware_name = string_from_gstring(g);
960 const char *drweb_s = NULL;
962 if (drweb_rc & DERR_READ_ERR) drweb_s = "read error";
963 if (drweb_rc & DERR_NOMEMORY) drweb_s = "no memory";
964 if (drweb_rc & DERR_TIMEOUT) drweb_s = "timeout";
965 if (drweb_rc & DERR_BAD_CALL) drweb_s = "wrong command";
966 /* retcodes DERR_SYMLINK, DERR_NO_REGFILE, DERR_SKIPPED.
967 * DERR_TOO_BIG, DERR_TOO_COMPRESSED, DERR_SPAM,
968 * DERR_CRC_ERROR, DERR_READSOCKET, DERR_WRITE_ERR
969 * and others are ignored */
971 return m_panic_defer_3(scanent, CUS callout_address,
972 string_sprintf("drweb daemon retcode 0x%x (%s)", drweb_rc, drweb_s),
973 malware_daemon_ctx.sock);
982 #ifndef DISABLE_MAL_AVE
983 case M_AVES: /* "aveserver" scanner type -------------------------------- */
988 /* read aveserver's greeting and see if it is ready (2xx greeting) */
990 recv_line(malware_daemon_ctx.sock, buf, sizeof(buf), tmo);
992 if (buf[0] != '2') /* aveserver is having problems */
993 return m_panic_defer_3(scanent, CUS callout_address,
994 string_sprintf("unavailable (Responded: %s).",
995 ((buf[0] != 0) ? buf : US "nothing") ),
996 malware_daemon_ctx.sock);
998 /* prepare our command */
999 (void)string_format(buf, sizeof(buf), "SCAN bPQRSTUW %s\r\n",
1003 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s %s\n",
1005 if (m_sock_send(malware_daemon_ctx.sock, buf, Ustrlen(buf), &errstr) < 0)
1006 return m_panic_defer(scanent, CUS callout_address, errstr);
1008 malware_name = NULL;
1010 /* read response lines, find malware name and final response */
1011 while (recv_line(malware_daemon_ctx.sock, buf, sizeof(buf), tmo) > 0)
1015 if (buf[0] == '5') /* aveserver is having problems */
1017 result = m_panic_defer(scanent, CUS callout_address,
1018 string_sprintf("unable to scan file %s (Responded: %s).",
1019 eml_filename, buf));
1022 if (Ustrncmp(buf,"322",3) == 0)
1024 uschar *p = Ustrchr(&buf[4], ' ');
1026 malware_name = string_copy(&buf[4]);
1030 if (m_sock_send(malware_daemon_ctx.sock, US"quit\r\n", 6, &errstr) < 0)
1031 return m_panic_defer(scanent, CUS callout_address, errstr);
1033 /* read aveserver's greeting and see if it is ready (2xx greeting) */
1035 recv_line(malware_daemon_ctx.sock, buf, sizeof(buf), tmo);
1037 if (buf[0] != '2') /* aveserver is having problems */
1038 return m_panic_defer_3(scanent, CUS callout_address,
1039 string_sprintf("unable to quit dialogue (Responded: %s).",
1040 ((buf[0] != 0) ? buf : US "nothing") ),
1041 malware_daemon_ctx.sock);
1043 if (result == DEFER)
1045 (void)close(malware_daemon_ctx.sock);
1052 #ifndef DISABLE_MAL_FSECURE
1053 case M_FSEC: /* "fsecure" scanner type ---------------------------------- */
1057 uschar av_buffer[1024];
1058 static uschar *cmdopt[] = { US"CONFIGURE\tARCHIVE\t1\n",
1059 US"CONFIGURE\tTIMEOUT\t0\n",
1060 US"CONFIGURE\tMAXARCH\t5\n",
1061 US"CONFIGURE\tMIME\t1\n" };
1063 malware_name = NULL;
1065 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s scan [%s]\n",
1066 scanner_name, scanner_options);
1068 memset(av_buffer, 0, sizeof(av_buffer));
1069 for (i = 0; i != nelem(cmdopt); i++)
1072 if (m_sock_send(malware_daemon_ctx.sock, cmdopt[i], Ustrlen(cmdopt[i]), &errstr) < 0)
1073 return m_panic_defer(scanent, CUS callout_address, errstr);
1075 bread = ip_recv(&malware_daemon_ctx, av_buffer, sizeof(av_buffer), tmo);
1076 if (bread > 0) av_buffer[bread]='\0';
1078 return m_panic_defer_3(scanent, CUS callout_address,
1079 string_sprintf("unable to read answer %d (%s)", i, strerror(errno)),
1080 malware_daemon_ctx.sock);
1081 for (int j = 0; j < bread; j++)
1082 if (av_buffer[j] == '\r' || av_buffer[j] == '\n')
1086 /* pass the mailfile to fsecure */
1087 file_name = string_sprintf("SCAN\t%s\n", eml_filename);
1089 if (m_sock_send(malware_daemon_ctx.sock, file_name, Ustrlen(file_name), &errstr) < 0)
1090 return m_panic_defer(scanent, CUS callout_address, errstr);
1093 /* todo also SUSPICION\t */
1095 fsec_re = m_pcre_compile(fsec_re_str, FALSE, &errstr);
1097 /* read report, linewise. Apply a timeout as the Fsecure daemon
1098 sometimes wants an answer to "PING" but they won't tell us what */
1100 uschar * p = av_buffer;
1106 i = av_buffer+sizeof(av_buffer)-p;
1107 if ((bread= ip_recv(&malware_daemon_ctx, p, i-1, tmo)) < 0)
1108 return m_panic_defer_3(scanent, CUS callout_address,
1109 string_sprintf("unable to read result (%s)", strerror(errno)),
1110 malware_daemon_ctx.sock);
1112 for (p[bread] = '\0'; (q = Ustrchr(p, '\n')); p = q+1)
1116 /* Really search for virus again? */
1118 /* try matcher on the line, grab substring */
1119 malware_name = m_pcre_exec(fsec_re, p);
1121 if (Ustrstr(p, "OK\tScan ok."))
1125 /* copy down the trailing partial line then read another chunk */
1126 i = av_buffer+sizeof(av_buffer)-p;
1127 memmove(av_buffer, p, i);
1137 #ifndef DISABLE_MAL_KAV
1138 case M_KAVD: /* "kavdaemon" scanner type -------------------------------- */
1141 uschar tmpbuf[1024];
1142 uschar * scanrequest;
1144 unsigned long kav_reportlen;
1146 const pcre2_code *kav_re;
1149 /* get current date and time, build scan request */
1151 /* pdp note: before the eml_filename parameter, this scanned the
1152 directory; not finding documentation, so we'll strip off the directory.
1153 The side-effect is that the test framework scanning may end up in
1154 scanning more than was requested, but for the normal interface, this is
1157 strftime(CS tmpbuf, sizeof(tmpbuf), "%d %b %H:%M:%S", localtime(&t));
1158 scanrequest = string_sprintf("<0>%s:%s", CS tmpbuf, eml_filename);
1159 p = Ustrrchr(scanrequest, '/');
1163 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s scan [%s]\n",
1164 scanner_name, scanner_options);
1166 /* send scan request */
1167 if (m_sock_send(malware_daemon_ctx.sock, scanrequest, Ustrlen(scanrequest)+1, &errstr) < 0)
1168 return m_panic_defer(scanent, CUS callout_address, errstr);
1170 /* wait for result */
1171 if (!recv_len(malware_daemon_ctx.sock, tmpbuf, 2, tmo))
1172 return m_panic_defer_3(scanent, CUS callout_address,
1173 US"unable to read 2 bytes from socket.", malware_daemon_ctx.sock);
1175 /* get errorcode from one nibble */
1176 kav_rc = tmpbuf[ test_byte_order()==LITTLE_MY_ENDIAN ? 0 : 1 ] & 0x0F;
1179 case 5: case 6: /* improper kavdaemon configuration */
1180 return m_panic_defer_3(scanent, CUS callout_address,
1181 US"please reconfigure kavdaemon to NOT disinfect or remove infected files.",
1182 malware_daemon_ctx.sock);
1184 return m_panic_defer_3(scanent, CUS callout_address,
1185 US"reported 'scanning not completed' (code 1).", malware_daemon_ctx.sock);
1187 return m_panic_defer_3(scanent, CUS callout_address,
1188 US"reported 'kavdaemon damaged' (code 7).", malware_daemon_ctx.sock);
1191 /* code 8 is not handled, since it is ambiguous. It appears mostly on
1192 bounces where part of a file has been cut off */
1194 /* "virus found" return codes (2-4) */
1195 if (kav_rc > 1 && kav_rc < 5)
1197 int report_flag = 0;
1199 /* setup default virus name */
1200 malware_name = US"unknown";
1202 report_flag = tmpbuf[ test_byte_order() == LITTLE_MY_ENDIAN ? 1 : 0 ];
1204 /* read the report, if available */
1205 if (report_flag == 1)
1207 /* read report size */
1208 if (!recv_len(malware_daemon_ctx.sock, &kav_reportlen, 4, tmo))
1209 return m_panic_defer_3(scanent, CUS callout_address,
1210 US"cannot read report size", malware_daemon_ctx.sock);
1212 /* it's possible that avp returns av_buffer[1] == 1 but the
1213 reportsize is 0 (!?) */
1214 if (kav_reportlen > 0)
1216 /* set up match regex, depends on retcode */
1219 if (!kav_re_sus) kav_re_sus = m_pcre_compile(kav_re_sus_str, FALSE, &errstr);
1220 kav_re = kav_re_sus;
1224 if (!kav_re_inf) kav_re_inf = m_pcre_compile(kav_re_inf_str, FALSE, &errstr);
1225 kav_re = kav_re_inf;
1228 /* read report, linewise. Using size from stream to read amount of data
1229 from same stream is safe enough. */
1230 /* coverity[tainted_data] */
1231 while (kav_reportlen > 0)
1233 if ((bread = recv_line(malware_daemon_ctx.sock, tmpbuf, sizeof(tmpbuf), tmo)) < 0)
1235 kav_reportlen -= bread+1;
1237 /* try matcher on the line, grab substring */
1238 if ((malware_name = m_pcre_exec(kav_re, tmpbuf)))
1244 else /* no virus found */
1245 malware_name = NULL;
1251 #ifndef DISABLE_MAL_CMDLINE
1252 case M_CMDL: /* "cmdline" scanner type ---------------------------------- */
1254 const uschar *cmdline_scanner = scanner_options;
1255 const pcre2_code *cmdline_trigger_re;
1256 const pcre2_code *cmdline_regex_re;
1258 uschar * commandline;
1259 void (*eximsigchld)(int);
1260 void (*eximsigpipe)(int);
1261 FILE *scanner_out = NULL;
1263 FILE *scanner_record = NULL;
1264 uschar linebuffer[32767];
1269 if (!cmdline_scanner)
1270 return m_panic_defer(scanent, NULL, errstr);
1272 /* find scanner output trigger */
1273 cmdline_trigger_re = m_pcre_nextinlist(&av_scanner_work, &sep, av_scanner_textonly,
1274 "missing trigger specification", &errstr);
1275 if (!cmdline_trigger_re)
1276 return m_panic_defer(scanent, NULL, errstr);
1278 /* find scanner name regex */
1279 cmdline_regex_re = m_pcre_nextinlist(&av_scanner_work, &sep, av_scanner_textonly,
1280 "missing virus name regex specification", &errstr);
1281 if (!cmdline_regex_re)
1282 return m_panic_defer(scanent, NULL, errstr);
1284 /* prepare scanner call; despite the naming, file_name holds a directory
1285 name which is documented as the value given to %s. */
1287 file_name = string_copy(eml_filename);
1288 p = Ustrrchr(file_name, '/');
1291 commandline = string_sprintf(CS cmdline_scanner, file_name);
1293 /* redirect STDERR too */
1294 commandline = string_sprintf("%s 2>&1", commandline);
1296 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s scan [%s]\n",
1297 scanner_name, commandline);
1299 /* store exims signal handlers */
1300 eximsigchld = signal(SIGCHLD,SIG_DFL);
1301 eximsigpipe = signal(SIGPIPE,SIG_DFL);
1303 if (!(scanner_out = popen(CS commandline,"r")))
1306 signal(SIGCHLD,eximsigchld); signal(SIGPIPE,eximsigpipe);
1307 return m_panic_defer(scanent, NULL,
1308 string_sprintf("call (%s) failed: %s.", commandline, strerror(err)));
1310 scanner_fd = fileno(scanner_out);
1312 file_name = string_sprintf("%s/%s_scanner_output", eml_dir, message_id);
1314 if (!(scanner_record = modefopen(file_name, "wb", SPOOL_MODE)))
1317 (void) pclose(scanner_out);
1318 signal(SIGCHLD,eximsigchld); signal(SIGPIPE,eximsigpipe);
1319 return m_panic_defer(scanent, NULL, string_sprintf(
1320 "opening scanner output file (%s) failed: %s.",
1321 file_name, strerror(err)));
1324 /* look for trigger while recording output */
1325 while ((rcnt = recv_line(scanner_fd, linebuffer,
1326 sizeof(linebuffer), tmo)))
1333 (void) pclose(scanner_out);
1334 signal(SIGCHLD,eximsigchld); signal(SIGPIPE,eximsigpipe);
1335 return m_panic_defer(scanent, NULL, string_sprintf(
1336 "unable to read from scanner (%s): %s",
1337 commandline, strerror(err)));
1340 if (Ustrlen(linebuffer) > fwrite(linebuffer, 1, Ustrlen(linebuffer), scanner_record))
1343 (void) pclose(scanner_out);
1344 signal(SIGCHLD,eximsigchld); signal(SIGPIPE,eximsigpipe);
1345 return m_panic_defer(scanent, NULL, string_sprintf(
1346 "short write on scanner output file (%s).", file_name));
1348 putc('\n', scanner_record);
1349 /* try trigger match */
1351 && regex_match_and_setup(cmdline_trigger_re, linebuffer, 0, -1)
1356 (void)fclose(scanner_record);
1357 sep = pclose(scanner_out);
1358 signal(SIGCHLD,eximsigchld); signal(SIGPIPE,eximsigpipe);
1360 return m_panic_defer(scanent, NULL,
1362 ? string_sprintf("running scanner failed: %s", strerror(sep))
1363 : string_sprintf("scanner returned error code: %d", sep));
1368 /* setup default virus name */
1369 malware_name = US"unknown";
1371 /* re-open the scanner output file, look for name match */
1372 scanner_record = Ufopen(file_name, "rb");
1373 while (Ufgets(linebuffer, sizeof(linebuffer), scanner_record))
1374 if ((s = m_pcre_exec(cmdline_regex_re, linebuffer))) /* try match */
1376 (void)fclose(scanner_record);
1378 else /* no virus found */
1379 malware_name = NULL;
1384 #ifndef DISABLE_MAL_SOPHIE
1385 case M_SOPHIE: /* "sophie" scanner type --------------------------------- */
1390 uschar av_buffer[1024];
1392 /* pass the scan directory to sophie */
1393 file_name = string_copy(eml_filename);
1394 if ((p = Ustrrchr(file_name, '/')))
1397 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s scan [%s]\n",
1398 scanner_name, scanner_options);
1400 if ( write(malware_daemon_ctx.sock, file_name, Ustrlen(file_name)) < 0
1401 || write(malware_daemon_ctx.sock, "\n", 1) != 1
1403 return m_panic_defer_3(scanent, CUS callout_address,
1404 string_sprintf("unable to write to UNIX socket (%s)", scanner_options),
1405 malware_daemon_ctx.sock);
1407 /* wait for result */
1408 memset(av_buffer, 0, sizeof(av_buffer));
1409 if ((bread = ip_recv(&malware_daemon_ctx, av_buffer, sizeof(av_buffer), tmo)) <= 0)
1410 return m_panic_defer_3(scanent, CUS callout_address,
1411 string_sprintf("unable to read from UNIX socket (%s)", scanner_options),
1412 malware_daemon_ctx.sock);
1415 if (av_buffer[0] == '1') {
1416 uschar * s = Ustrchr(av_buffer, '\n');
1419 malware_name = string_copy(&av_buffer[2]);
1421 else if (!strncmp(CS av_buffer, "-1", 2))
1422 return m_panic_defer_3(scanent, CUS callout_address,
1423 US"scanner reported error", malware_daemon_ctx.sock);
1424 else /* all ok, no virus */
1425 malware_name = NULL;
1431 #ifndef DISABLE_MAL_CLAM
1432 case M_CLAMD: /* "clamd" scanner type ----------------------------------- */
1434 /* This code was originally contributed by David Saez */
1435 /* There are three scanning methods available to us:
1436 * (1) Use the SCAN command, pointing to a file in the filesystem
1437 * (2) Use the STREAM command, send the data on a separate port
1438 * (3) Use the zINSTREAM command, send the data inline
1439 * The zINSTREAM command was introduced with ClamAV 0.95, which marked
1440 * STREAM deprecated; see: http://wiki.clamav.net/bin/view/Main/UpgradeNotes095
1441 * In Exim, we use SCAN if using a Unix-domain socket or explicitly told that
1442 * the TCP-connected daemon is actually local; otherwise we use zINSTREAM
1443 * See Exim bug 926 for details. */
1445 uschar *p, *vname, *result_tag;
1447 uschar av_buffer[1024];
1448 uschar *hostname = US"";
1451 unsigned int fsize_uint;
1452 BOOL use_scan_command = FALSE;
1453 clamd_address * cv[MAX_CLAMD_SERVERS];
1454 int num_servers = 0;
1455 uint32_t send_size, send_final_zeroblock;
1458 /*XXX if unixdomain socket, only one server supported. Needs fixing;
1459 there's no reason we should not mix local and remote servers */
1461 if (*scanner_options == '/')
1464 const uschar * sublist;
1467 /* Local file; so we def want to use_scan_command and don't want to try
1468 passing IP/port combinations */
1469 use_scan_command = TRUE;
1470 cd = (clamd_address *) store_get(sizeof(clamd_address), GET_UNTAINTED);
1472 /* extract socket-path part */
1473 sublist = scanner_options;
1474 cd->hostspec = string_nextinlist(&sublist, &subsep, NULL, 0);
1477 if (clamd_option(cd, sublist, &subsep) != OK)
1478 return m_panic_defer(scanent, NULL,
1479 string_sprintf("bad option '%s'", scanner_options));
1484 /* Go through the rest of the list of host/port and construct an array
1485 * of servers to try. The first one is the bit we just passed from
1486 * scanner_options so process that first and then scan the remainder of
1487 * the address buffer */
1491 const uschar * sublist;
1495 /* The 'local' option means use the SCAN command over the network
1496 * socket (ie common file storage in use) */
1497 /*XXX we could accept this also as a local option? */
1498 if (strcmpic(scanner_options, US"local") == 0)
1500 use_scan_command = TRUE;
1504 cd = (clamd_address *) store_get(sizeof(clamd_address), GET_UNTAINTED);
1506 /* extract host and port part */
1507 sublist = scanner_options;
1508 if (!(cd->hostspec = string_nextinlist(&sublist, &subsep, NULL, 0)))
1510 (void) m_panic_defer(scanent, NULL,
1511 string_sprintf("missing address: '%s'", scanner_options));
1514 if (!(s = string_nextinlist(&sublist, &subsep, NULL, 0)))
1516 (void) m_panic_defer(scanent, NULL,
1517 string_sprintf("missing port: '%s'", scanner_options));
1520 cd->tcp_port = atoi(CS s);
1523 /*XXX should these options be common over scanner types? */
1524 if (clamd_option(cd, sublist, &subsep) != OK)
1525 return m_panic_defer(scanent, NULL,
1526 string_sprintf("bad option '%s'", scanner_options));
1528 cv[num_servers++] = cd;
1529 if (num_servers >= MAX_CLAMD_SERVERS)
1531 (void) m_panic_defer(scanent, NULL,
1532 US"More than " MAX_CLAMD_SERVERS_S " clamd servers "
1533 "specified; only using the first " MAX_CLAMD_SERVERS_S );
1536 } while ((scanner_options = string_nextinlist(&av_scanner_work, &sep,
1539 /* check if we have at least one server */
1541 return m_panic_defer(scanent, NULL,
1542 US"no useable server addresses in malware configuration option.");
1545 /* See the discussion of response formats below to see why we really
1546 don't like colons in filenames when passing filenames to ClamAV. */
1547 if (use_scan_command && Ustrchr(eml_filename, ':'))
1548 return m_panic_defer(scanent, NULL,
1549 string_sprintf("local/SCAN mode incompatible with" \
1550 " : in path to email filename [%s]", eml_filename));
1552 /* Set up the very first data we will be sending */
1553 if (!use_scan_command)
1554 { cmd_str.data = US"zINSTREAM"; cmd_str.len = 10; }
1558 cmd_str.data = string_sprintf("SCAN %s\n%n", eml_filename, &n);
1559 cmd_str.len = n; /* .len is a size_t */
1562 /* We have some network servers specified */
1565 /* Confirmed in ClamAV source (0.95.3) that the TCPAddr option of clamd
1566 only supports AF_INET, but we should probably be looking to the
1567 future and rewriting this to be protocol-independent anyway. */
1569 while (num_servers > 0)
1571 int i = random_number(num_servers);
1572 clamd_address * cd = cv[i];
1574 DEBUG(D_acl) debug_printf_indent("trying server name %s, port %u\n",
1575 cd->hostspec, cd->tcp_port);
1577 /* Lookup the host. This is to ensure that we connect to the same IP
1578 on both connections (as one host could resolve to multiple ips) */
1581 /*XXX we trust that the cmd_str is idempotent */
1582 if ((malware_daemon_ctx.sock = m_tcpsocket(cd->hostspec, cd->tcp_port,
1584 use_scan_command ? &cmd_str : NULL)) >= 0)
1586 /* Connection successfully established with a server */
1587 hostname = cd->hostspec;
1588 if (use_scan_command) cmd_str.len = 0;
1591 if (cd->retry <= 0) break;
1592 while (cd->retry > 0) cd->retry = sleep(cd->retry);
1594 if (malware_daemon_ctx.sock >= 0)
1597 (void) m_panic_defer(scanent, CUS callout_address, errstr);
1599 /* Remove the server from the list. XXX We should free the memory */
1601 for (; i < num_servers; i++)
1605 if (num_servers == 0)
1606 return m_panic_defer(scanent, NULL, US"all servers failed");
1611 if ((malware_daemon_ctx.sock = ip_unixsocket(cv[0]->hostspec, &errstr)) >= 0)
1613 hostname = cv[0]->hostspec;
1616 if (cv[0]->retry <= 0)
1617 return m_panic_defer(scanent, CUS callout_address, errstr);
1618 while (cv[0]->retry > 0) cv[0]->retry = sleep(cv[0]->retry);
1621 /* have socket in variable "sock"; command to use is semi-independent of
1622 the socket protocol. We use SCAN if is local (either Unix/local
1623 domain socket, or explicitly told local) else we stream the data.
1624 How we stream the data depends upon how we were built. */
1626 if (!use_scan_command)
1629 #if defined(EXIM_TCP_CORK) && !defined(OS_SENDFILE)
1632 /* New protocol: "zINSTREAM\n" followed by a sequence of <length><data>
1633 chunks, <n> a 4-byte number (network order), terminated by a zero-length
1634 chunk. We only send one chunk. */
1636 DEBUG(D_acl) debug_printf_indent(
1637 "Malware scan: issuing %s new-style remote scan (zINSTREAM)\n",
1640 #if defined(EXIM_TCP_CORK)
1641 (void) setsockopt(malware_daemon_ctx.sock, IPPROTO_TCP, EXIM_TCP_CORK,
1642 US &on, sizeof(on));
1644 /* Pass the string to ClamAV (10 = "zINSTREAM\0"), if not already sent */
1646 if (send(malware_daemon_ctx.sock, cmd_str.data, cmd_str.len, 0) < 0)
1647 return m_panic_defer_3(scanent, CUS hostname,
1648 string_sprintf("unable to send zINSTREAM to socket (%s)",
1650 malware_daemon_ctx.sock);
1652 if ((clam_fd = exim_open2(CS eml_filename, O_RDONLY)) < 0)
1655 return m_panic_defer_3(scanent, NULL,
1656 string_sprintf("can't open spool file %s: %s",
1657 eml_filename, strerror(err)),
1658 malware_daemon_ctx.sock);
1660 if (fstat(clam_fd, &st) < 0)
1663 (void)close(clam_fd);
1664 return m_panic_defer_3(scanent, NULL,
1665 string_sprintf("can't stat spool file %s: %s",
1666 eml_filename, strerror(err)),
1667 malware_daemon_ctx.sock);
1669 fsize_uint = (unsigned int) st.st_size;
1670 if ((off_t)fsize_uint != st.st_size)
1672 (void)close(clam_fd);
1673 return m_panic_defer_3(scanent, NULL,
1674 string_sprintf("stat spool file %s, size overflow", eml_filename),
1675 malware_daemon_ctx.sock);
1678 /* send file size */
1679 send_size = htonl(fsize_uint);
1680 if (send(malware_daemon_ctx.sock, &send_size, sizeof(send_size), 0) < 0)
1681 return m_panic_defer_3(scanent, NULL,
1682 string_sprintf("unable to send file size to socket (%s)", hostname),
1683 malware_daemon_ctx.sock);
1685 /* send file body */
1689 int n = os_sendfile(malware_daemon_ctx.sock, clam_fd, NULL, (size_t)fsize_uint);
1691 return m_panic_defer_3(scanent, NULL,
1692 string_sprintf("unable to send file body to socket (%s): %s", hostname, strerror(errno)),
1693 malware_daemon_ctx.sock);
1696 int n = MIN(fsize_uint, big_buffer_size);
1697 if ((n = read(clam_fd, big_buffer, n)) < 0)
1698 return m_panic_defer_3(scanent, NULL,
1699 string_sprintf("can't read spool file %s: %s",
1700 eml_filename, strerror(errno)),
1701 malware_daemon_ctx.sock);
1702 if (send(malware_daemon_ctx.sock, big_buffer, (size_t)n, 0) < 0)
1703 return m_panic_defer_3(scanent, NULL,
1704 string_sprintf("unable to send file body to socket (%s): %s", hostname, strerror(errno)),
1705 malware_daemon_ctx.sock);
1707 # ifdef EXIM_TCP_CORK
1711 (void) setsockopt(malware_daemon_ctx.sock, IPPROTO_TCP, EXIM_TCP_CORK,
1712 US &off, sizeof(off));
1715 #endif /*!OS_SENDFILE*/
1719 send_final_zeroblock = 0;
1720 if (send(malware_daemon_ctx.sock, &send_final_zeroblock, sizeof(send_final_zeroblock), 0) < 0)
1721 return m_panic_defer_3(scanent, NULL,
1722 string_sprintf("unable to send file terminator to socket (%s)", hostname),
1723 malware_daemon_ctx.sock);
1725 (void) setsockopt(malware_daemon_ctx.sock, IPPROTO_TCP, EXIM_TCP_CORK,
1726 US &off, sizeof(off));
1730 { /* use scan command */
1731 /* Send a SCAN command pointing to a filename; then in the then in the
1732 scan-method-neutral part, read the response back */
1734 /* ================================================================= */
1736 /* Prior to the reworking post-Exim-4.72, this scanned a directory,
1737 which dates to when ClamAV needed us to break apart the email into the
1738 MIME parts (eg, with the now deprecated demime condition coming first).
1739 Some time back, ClamAV gained the ability to deconstruct the emails, so
1740 doing this would actually have resulted in the mail attachments being
1741 scanned twice, in the broken out files and from the original .eml.
1742 Since ClamAV now handles emails (and has for quite some time) we can
1743 just use the email file itself. */
1744 /* Pass the string to ClamAV (7 = "SCAN \n" + \0), if not already sent */
1746 DEBUG(D_acl) debug_printf_indent(
1747 "Malware scan: issuing %s local-path scan [%s]\n",
1748 scanner_name, scanner_options);
1751 if (send(malware_daemon_ctx.sock, cmd_str.data, cmd_str.len, 0) < 0)
1752 return m_panic_defer_3(scanent, CUS callout_address,
1753 string_sprintf("unable to write to socket (%s)", strerror(errno)),
1754 malware_daemon_ctx.sock);
1756 /* Do not shut down the socket for writing; a user report noted that
1757 clamd 0.70 does not react well to this. */
1759 /* Commands have been sent, no matter which scan method or connection
1760 type we're using; now just read the result, independent of method. */
1762 /* Read the result */
1763 memset(av_buffer, 0, sizeof(av_buffer));
1764 bread = ip_recv(&malware_daemon_ctx, av_buffer, sizeof(av_buffer), tmo);
1765 (void)close(malware_daemon_ctx.sock);
1766 malware_daemon_ctx.sock = -1;
1767 malware_daemon_ctx.tls_ctx = NULL;
1770 return m_panic_defer(scanent, CUS callout_address,
1771 string_sprintf("unable to read from socket (%s)",
1772 errno == 0 ? "EOF" : strerror(errno)));
1774 if (bread == sizeof(av_buffer))
1775 return m_panic_defer(scanent, CUS callout_address,
1776 US"buffer too small");
1777 /* We're now assured of a NULL at the end of av_buffer */
1779 /* Check the result. ClamAV returns one of two result formats.
1780 In the basic mode, the response is of the form:
1781 infected: -> "<filename>: <virusname> FOUND"
1782 not-infected: -> "<filename>: OK"
1783 error: -> "<filename>: <errcode> ERROR
1784 If the ExtendedDetectionInfo option has been turned on, then we get:
1785 "<filename>: <virusname>(<virushash>:<virussize>) FOUND"
1786 for the infected case. Compare:
1787 /tmp/eicar.com: Eicar-Test-Signature FOUND
1788 /tmp/eicar.com: Eicar-Test-Signature(44d88612fea8a8f36de82e1278abb02f:68) FOUND
1790 In the streaming case, clamd uses the filename "stream" which you should
1791 be able to verify with { ktrace clamdscan --stream /tmp/eicar.com }. (The
1792 client app will replace "stream" with the original filename before returning
1793 results to stdout, but the trace shows the data).
1795 We will assume that the pathname passed to clamd from Exim does not contain
1796 a colon. We will have whined loudly above if the eml_filename does (and we're
1797 passing a filename to clamd). */
1800 return m_panic_defer(scanent, CUS callout_address,
1801 US"ClamAV returned null");
1803 /* strip newline at the end (won't be present for zINSTREAM)
1804 (also any trailing whitespace, which shouldn't exist, but we depend upon
1805 this below, so double-check) */
1807 p = av_buffer + Ustrlen(av_buffer) - 1;
1808 if (*p == '\n') *p = '\0';
1810 DEBUG(D_acl) debug_printf_indent("Malware response: %s\n", av_buffer);
1812 while (isspace(*--p) && (p > av_buffer))
1816 /* colon in returned output? */
1817 if (!(p = Ustrchr(av_buffer,':')))
1818 return m_panic_defer(scanent, CUS callout_address, string_sprintf(
1819 "ClamAV returned malformed result (missing colon): %s",
1822 /* strip filename */
1823 while (*p && isspace(*++p)) /**/;
1826 /* It would be bad to encounter a virus with "FOUND" in part of the name,
1827 but we should at least be resistant to it. */
1828 p = Ustrrchr(vname, ' ');
1829 result_tag = p ? p+1 : vname;
1831 if (Ustrcmp(result_tag, "FOUND") == 0)
1833 /* p should still be the whitespace before the result_tag */
1834 while (isspace(*p)) --p;
1836 /* Strip off the extended information too, which will be in parens
1837 after the virus name, with no intervening whitespace. */
1840 /* "(hash:size)", so previous '(' will do; if not found, we have
1841 a curious virus name, but not an error. */
1842 p = Ustrrchr(vname, '(');
1846 malware_name = string_copy(vname);
1847 DEBUG(D_acl) debug_printf_indent("Malware found, name \"%s\"\n", malware_name);
1850 else if (Ustrcmp(result_tag, "ERROR") == 0)
1851 return m_panic_defer(scanent, CUS callout_address,
1852 string_sprintf("ClamAV returned: %s", av_buffer));
1854 else if (Ustrcmp(result_tag, "OK") == 0)
1856 /* Everything should be OK */
1857 malware_name = NULL;
1858 DEBUG(D_acl) debug_printf_indent("Malware not found\n");
1862 return m_panic_defer(scanent, CUS callout_address,
1863 string_sprintf("unparseable response from ClamAV: {%s}", av_buffer));
1869 #ifndef DISABLE_MAL_SOCK
1870 case M_SOCK: /* "sock" scanner type ------------------------------------- */
1871 /* This code was derived by Martin Poole from the clamd code contributed
1872 by David Saez and the cmdline code
1876 uschar * commandline;
1877 uschar av_buffer[1024];
1878 uschar * linebuffer;
1879 uschar * sockline_scanner;
1880 uschar sockline_scanner_default[] = "%s\n";
1881 const pcre2_code *sockline_trig_re;
1882 const pcre2_code *sockline_name_re;
1884 /* find scanner command line */
1885 if ( (sockline_scanner = string_nextinlist(&av_scanner_work, &sep,
1887 && *sockline_scanner
1889 { /* check for no expansions apart from one %s */
1890 uschar * s = Ustrchr(sockline_scanner, '%');
1892 if ((*s != 's' && *s != '%') || Ustrchr(s+1, '%'))
1893 return m_panic_defer_3(scanent, NULL,
1894 US"unsafe sock scanner call spec", malware_daemon_ctx.sock);
1897 sockline_scanner = sockline_scanner_default;
1898 DEBUG(D_acl) debug_printf_indent("%15s%10s'%s'\n", "", "cmdline: ",
1899 string_printing(sockline_scanner));
1901 /* find scanner output trigger */
1902 sockline_trig_re = m_pcre_nextinlist(&av_scanner_work, &sep, av_scanner_textonly,
1903 "missing trigger specification", &errstr);
1904 if (!sockline_trig_re)
1905 return m_panic_defer_3(scanent, NULL, errstr, malware_daemon_ctx.sock);
1907 /* find virus name regex */
1908 sockline_name_re = m_pcre_nextinlist(&av_scanner_work, &sep, av_scanner_textonly,
1909 "missing virus name regex specification", &errstr);
1910 if (!sockline_name_re)
1911 return m_panic_defer_3(scanent, NULL, errstr, malware_daemon_ctx.sock);
1913 /* prepare scanner call - security depends on expansions check above */
1914 commandline = string_sprintf( CS sockline_scanner, CS eml_filename);
1915 DEBUG(D_acl) debug_printf_indent("%15s%10s'%s'\n", "", "expanded: ",
1916 string_printing(commandline));
1918 /* Pass the command string to the socket */
1919 if (m_sock_send(malware_daemon_ctx.sock, commandline, Ustrlen(commandline), &errstr) < 0)
1920 return m_panic_defer(scanent, CUS callout_address, errstr);
1922 /* Read the result */
1923 bread = ip_recv(&malware_daemon_ctx, av_buffer, sizeof(av_buffer), tmo);
1926 return m_panic_defer_3(scanent, CUS callout_address,
1927 string_sprintf("unable to read from socket (%s)", strerror(errno)),
1928 malware_daemon_ctx.sock);
1930 if (bread == sizeof(av_buffer))
1931 return m_panic_defer_3(scanent, CUS callout_address,
1932 US"buffer too small", malware_daemon_ctx.sock);
1933 av_buffer[bread] = '\0';
1934 linebuffer = string_copy(av_buffer);
1935 DEBUG(D_acl) debug_printf_indent("%15s%10s'%s'\n", "", "answer: ",
1936 string_printing(linebuffer));
1938 /* try trigger match */
1939 if (regex_match_and_setup(sockline_trig_re, linebuffer, 0, -1))
1941 if (!(malware_name = m_pcre_exec(sockline_name_re, av_buffer)))
1942 malware_name = US "unknown";
1943 DEBUG(D_acl) debug_printf_indent("%15s%10s'%s'\n", "", "name: ",
1944 string_printing(malware_name));
1946 else /* no virus found */
1947 malware_name = NULL;
1952 #ifndef DISABLE_MAL_MKS
1953 case M_MKSD: /* "mksd" scanner type ------------------------------------- */
1955 char *mksd_options_end;
1956 int mksd_maxproc = 1; /* default, if no option supplied */
1959 if (scanner_options)
1961 mksd_maxproc = (int)strtol(CS scanner_options, &mksd_options_end, 10);
1962 if ( *scanner_options == '\0'
1963 || *mksd_options_end != '\0'
1965 || mksd_maxproc > 32
1967 return m_panic_defer(scanent, CUS callout_address,
1968 string_sprintf("invalid option '%s'", scanner_options));
1971 if((malware_daemon_ctx.sock = ip_unixsocket(US "/var/run/mksd/socket", &errstr)) < 0)
1972 return m_panic_defer(scanent, CUS callout_address, errstr);
1974 malware_name = NULL;
1976 DEBUG(D_acl) debug_printf_indent("Malware scan: issuing %s scan\n", scanner_name);
1978 if ((retval = mksd_scan_packed(scanent, malware_daemon_ctx.sock, eml_filename, tmo)) != OK)
1980 close (malware_daemon_ctx.sock);
1987 #ifndef DISABLE_MAL_AVAST
1988 case M_AVAST: /* "avast" scanner type ----------------------------------- */
1991 uschar * scanrequest;
1992 enum {AVA_HELO, AVA_OPT, AVA_RSP, AVA_DONE} avast_stage;
1994 uschar * error_message = NULL;
1995 BOOL more_data = FALSE;
1998 /* According to Martin Tuma @avast the protocol uses "escaped
1999 whitespace", that is, every embedded whitespace is backslash
2000 escaped, as well as backslash is protected by backslash.
2001 The returned lines contain the name of the scanned file, a tab
2005 [E] - some error occurred
2006 Such marker follows the first non-escaped TAB. For more information
2007 see avast-protocol(5)
2009 We observed two cases:
2011 <- /file [E]0.0 Error 13 Permission denied
2012 <- 451 SCAN Engine error 13 permission denied
2015 <- /file… [E]3.0 Error 41120 The file is a decompression bomb
2017 <- /file… [+]2.0 0 Eicar Test Virus!!!
2020 If the scanner returns 4xx, DEFER is a good decision, combined
2021 with a panic log entry, to get the admin's attention.
2023 If the scanner returns 200, we reject it as malware, if found any,
2024 or, in case of an error, we set the malware message to the error
2027 Some of the >= 42000 errors are message related - usually some
2028 broken archives etc, but some of them are e.g. license related.
2029 Once the license expires the engine starts returning errors for
2030 every scanning attempt. I¹ have the full list of the error codes
2031 but it is not a public API and is subject to change. It is hard
2032 for me to say what you should do in case of an engine error. You
2033 can have a “Treat * unscanned file as infection” policy or “Treat
2034 unscanned file as clean” policy. ¹) Jakub Bednar
2038 if ( ( !ava_re_clean
2039 && !(ava_re_clean = m_pcre_compile(ava_re_clean_str, FALSE, &errstr)))
2041 && !(ava_re_virus = m_pcre_compile(ava_re_virus_str, FALSE, &errstr)))
2043 && !(ava_re_error = m_pcre_compile(ava_re_error_str, FALSE, &errstr)))
2045 return malware_panic_defer(errstr);
2047 /* wait for result */
2048 for (avast_stage = AVA_HELO;
2049 (nread = recv_line(malware_daemon_ctx.sock, buf, sizeof(buf), tmo)) > 0;
2052 int slen = Ustrlen(buf);
2056 /* Multi line responses are bracketed between 210 … and nnn … */
2057 if (Ustrncmp(buf, "210", 3) == 0)
2062 else if (more_data && isdigit(buf[0])) more_data = 0;
2064 switch (avast_stage)
2067 if (more_data) continue;
2068 if (Ustrncmp(buf, "220", 3) != 0)
2069 goto endloop; /* require a 220 */
2073 if (more_data) continue;
2074 if (Ustrncmp(buf, "200", 3) != 0)
2075 goto endloop; /* require a 200 */
2080 /* Check for another option to send. Newline-terminate it. */
2081 if ((scanrequest = string_nextinlist(&av_scanner_work, &sep,
2084 if (Ustrcmp(scanrequest, "pass_unscanned") == 0)
2086 DEBUG(D_acl) debug_printf_indent("pass unscanned files as clean\n");
2090 scanrequest = string_sprintf("%s\n", scanrequest);
2091 avast_stage = AVA_OPT; /* just sent option */
2092 DEBUG(D_acl) debug_printf_indent("send to avast OPTION: %s", scanrequest);
2096 scanrequest = string_sprintf("SCAN %s\n", eml_dir);
2097 avast_stage = AVA_RSP; /* just sent command */
2098 DEBUG(D_acl) debug_printf_indent("send to avast REQUEST: SCAN %s\n", eml_dir);
2101 /* send config-cmd or scan-request to socket */
2102 len = Ustrlen(scanrequest);
2103 if (send(malware_daemon_ctx.sock, scanrequest, len, 0) == -1)
2105 scanrequest[len-1] = '\0';
2106 return m_panic_defer_3(scanent, CUS callout_address, string_sprintf(
2107 "unable to send request '%s' to socket (%s): %s",
2108 scanrequest, scanner_options, strerror(errno)), malware_daemon_ctx.sock);
2115 if (isdigit(buf[0])) /* We're done */
2118 if (malware_name) /* Nothing else matters, just read on */
2121 if (regex_match(ava_re_clean, buf, slen, NULL))
2124 if ((malware_name = m_pcre_exec(ava_re_virus, buf)))
2126 unescape(malware_name);
2128 debug_printf_indent("unescaped malware name: '%s'\n", malware_name);
2132 if (strict) /* treat scanner errors as malware */
2134 if ((malware_name = m_pcre_exec(ava_re_error, buf)))
2136 unescape(malware_name);
2138 debug_printf_indent("unescaped error message: '%s'\n", malware_name);
2142 else if (regex_match(ava_re_error, buf, slen, NULL))
2144 log_write(0, LOG_MAIN, "internal scanner error (ignored): %s", buf);
2148 /* here also for any unexpected response from the scanner */
2149 DEBUG(D_acl) debug_printf("avast response not handled: '%s'\n", buf);
2153 default: log_write(0, LOG_PANIC, "%s:%d:%s: should not happen",
2154 __FILE__, __LINE__, __FUNCTION__);
2161 if (nread == -1) error_message = US"EOF from scanner";
2162 else if (nread < 0) error_message = US"timeout from scanner";
2163 else if (nread == 0) error_message = US"got nothing from scanner";
2164 else if (buf[0] != '2') error_message = buf;
2166 DEBUG(D_acl) debug_printf_indent("sent to avast QUIT\n");
2167 if (send(malware_daemon_ctx.sock, "QUIT\n", 5, 0) == -1)
2168 return m_panic_defer_3(scanent, CUS callout_address,
2169 string_sprintf("unable to send quit request to socket (%s): %s",
2170 scanner_options, strerror(errno)), malware_daemon_ctx.sock);
2173 return m_panic_defer_3(scanent, CUS callout_address, error_message, malware_daemon_ctx.sock);
2177 } /* scanner type switch */
2179 if (malware_daemon_ctx.sock >= 0)
2180 (void) close (malware_daemon_ctx.sock);
2181 malware_ok = TRUE; /* set "been here, done that" marker */
2184 /* match virus name against pattern (caseless ------->----------v) */
2185 if (malware_name && regex_match_and_setup(re, malware_name, 0, -1))
2187 DEBUG(D_acl) debug_printf_indent(
2188 "Matched regex to malware [%s] [%s]\n", malware_re, malware_name);
2196 /*************************************************
2197 * Scan an email for malware *
2198 *************************************************/
2200 /* This is the normal interface for scanning an email, which doesn't need a
2201 filename; it's a wrapper around the malware_file function.
2204 malware_re match condition for "malware="
2205 cacheable the RE did not use any dynamic elements during expansion
2206 timeout if nonzero, timeout in seconds
2208 Returns: Exim message processing code (OK, FAIL, DEFER, ...)
2209 where true means malware was found (condition applies)
2212 malware(const uschar * malware_re, BOOL cacheable, int timeout)
2214 int ret = malware_internal(malware_re, cacheable, NULL, timeout);
2216 if (ret == DEFER) av_failed = TRUE;
2221 /*************************************************
2222 * Scan a file for malware *
2223 *************************************************/
2225 /* This is a test wrapper for scanning an email, which is not used in
2226 normal processing. Scan any file, using the Exim scanning interface.
2227 This function tampers with various global variables so is unsafe to use
2228 in any other context.
2231 eml_filename a file holding the message to be scanned
2233 Returns: Exim message processing code (OK, FAIL, DEFER, ...)
2234 where true means malware was found (condition applies)
2237 malware_in_file(uschar *eml_filename)
2239 uschar message_id_buf[64];
2242 /* spool_mbox() assumes various parameters exist, when creating
2243 the relevant directory and the email within */
2245 (void) string_format(message_id_buf, sizeof(message_id_buf),
2246 "dummy-%d", vaguely_random_number(INT_MAX));
2247 message_id = message_id_buf;
2248 sender_address = US"malware-sender@example.net";
2250 recipients_list = NULL;
2251 receive_add_recipient(US"malware-victim@example.net", -1);
2252 f.enable_dollar_recipients = TRUE;
2254 ret = malware_internal(US"*", TRUE, eml_filename, 0);
2256 Ustrncpy(spooled_message_id, message_id, sizeof(spooled_message_id));
2259 /* don't set no_mbox_unspool; at present, there's no way for it to become
2260 set, but if that changes, then it should apply to these tests too */
2264 /* silence static analysis tools */
2274 if (!malware_default_re)
2275 malware_default_re = regex_must_compile(malware_regex_default, MCS_NOFLAGS, TRUE);
2277 #ifndef DISABLE_MAL_DRWEB
2279 drweb_re = regex_must_compile(drweb_re_str, MCS_NOFLAGS, TRUE);
2281 #ifndef DISABLE_MAL_FSECURE
2283 fsec_re = regex_must_compile(fsec_re_str, MCS_NOFLAGS, TRUE);
2285 #ifndef DISABLE_MAL_KAV
2287 kav_re_sus = regex_must_compile(kav_re_sus_str, MCS_NOFLAGS, TRUE);
2289 kav_re_inf = regex_must_compile(kav_re_inf_str, MCS_NOFLAGS, TRUE);
2291 #ifndef DISABLE_MAL_AVAST
2293 ava_re_clean = regex_must_compile(ava_re_clean_str, MCS_NOFLAGS, TRUE);
2295 ava_re_virus = regex_must_compile(ava_re_virus_str, MCS_NOFLAGS, TRUE);
2297 ava_re_error = regex_must_compile(ava_re_error_str, MCS_NOFLAGS, TRUE);
2299 #ifndef DISABLE_MAL_FFROT6D
2300 if (!fprot6d_re_error)
2301 fprot6d_re_error = regex_must_compile(fprot6d_re_error_str, MCS_NOFLAGS, TRUE);
2302 if (!fprot6d_re_virus)
2303 fprot6d_re_virus = regex_must_compile(fprot6d_re_virus_str, MCS_NOFLAGS, TRUE);
2309 malware_show_supported(gstring * g)
2311 g = string_cat(g, US"Malware:");
2312 for (struct scan * sc = m_scans; sc->scancode != (scanner_t)-1; sc++)
2313 g = string_fmt_append(g, " %s", sc->name);
2314 return string_cat(g, US"\n");
2318 # endif /*!MACRO_PREDEF*/
2319 #endif /*WITH_CONTENT_SCAN*/