libclamav/scanners.c
b151ef55
 /*
1f301ecc
  *  Copyright (C) 2002 - 2004 Tomasz Kojm <tkojm@clamav.net>
8b242bb9
  *  With enhancements from Thomas Lamy <Thomas.Lamy@in-online.net>
b151ef55
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
8b242bb9
 #if HAVE_CONFIG_H
 #include "clamav-config.h"
 #endif
 
b151ef55
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <dirent.h>
 
 #ifdef CL_THREAD_SAFE
 #  include <pthread.h>
 pthread_mutex_t cli_scanrar_mutex = PTHREAD_MUTEX_INITIALIZER;
 #endif
8b242bb9
 int cli_scanrar_inuse = 0;
b151ef55
 
 #include "clamav.h"
 #include "others.h"
 #include "matcher.h"
 #include "unrarlib.h"
c561d2a3
 #include "ole2_extract.h"
 #include "vba_extract.h"
b151ef55
 
 #ifdef HAVE_ZLIB_H
 #include <zlib.h>
 #include <zzip.h>
 #endif
 
 #ifdef HAVE_BZLIB_H
 #include <bzlib.h>
 #endif
 
510c466b
 #define SCAN_ARCHIVE	    (options & CL_ARCHIVE)
 #define SCAN_MAIL	    (options & CL_MAIL)
 #define SCAN_OLE2	    (options & CL_OLE2)
 #define DISABLE_RAR	    (options & CL_DISABLERAR)
 #define DETECT_ENCRYPTED    (options & CL_ENCRYPTED)
8b242bb9
 
 typedef enum {
     CL_UNKNOWN_TYPE = 0,
     CL_MAILFILE,
     CL_GZFILE,
     CL_ZIPFILE,
     CL_BZFILE,
     CL_RARFILE,
     CL_OLE2FILE
 } cl_file_t;
 
 struct cl_magic_s {
     int offset;
     char *magic;
     size_t length;
     char *descr;
     cl_file_t type;
 };
 
e3f75357
 #define MAGIC_BUFFER_SIZE 26
8b242bb9
 static const struct cl_magic_s cl_magic[] = {
e3f75357
     {0,  "Rar!",			4, "RAR",	    CL_RARFILE},
     {0,  "PK\003\004",			4, "ZIP",	    CL_ZIPFILE},
     {0,  "\037\213",			2, "GZip",	    CL_GZFILE},
     {0,  "BZh",				3, "BZip",	    CL_BZFILE},
     {0,  "From ",			5, "MBox",	    CL_MAILFILE},
     {0,  "Received: ",			10, "Raw mail",	    CL_MAILFILE},
     {0,  "Return-Path: ",		13, "Maildir",	    CL_MAILFILE},
     {0,  "Return-path: ",		13, "Maildir",	    CL_MAILFILE},
     {0,  "Delivered-To: ",		14, "Mail",	    CL_MAILFILE},
     {0,  "X-UIDL: ",			8, "Mail",	    CL_MAILFILE},
     {0,  "For: ",			5, "Eserv mail",    CL_MAILFILE},
     {0,  "From: ",			6, "Exim mail",	    CL_MAILFILE},
     {0,  "X-Symantec-",			11, "Symantec",	    CL_MAILFILE},
     {0,  "Hi. This is the qmail-send",  26, "Qmail bounce", CL_MAILFILE},
8b242bb9
     {0,  "\320\317\021\340\241\261\032\341",
 	                    8, "OLE2 container",  CL_OLE2FILE},
     {-1, NULL,              0, NULL,              CL_UNKNOWN_TYPE}
 };
 
 cl_file_t cl_filetype(const char *buf, size_t buflen)
 {
 	int i;
 
     for (i = 0; cl_magic[i].magic; i++) {
 	if (buflen >= cl_magic[i].offset+cl_magic[i].length) {
 	    if (memcmp(buf+cl_magic[i].offset, cl_magic[i].magic, cl_magic[i].length) == 0) {
 		cli_dbgmsg("Recognized %s file\n", cl_magic[i].descr);
 		return cl_magic[i].type;
 	    }
 	}
     }
7c8d00e3
 
8b242bb9
     return CL_UNKNOWN_TYPE;
 }
b151ef55
 
 int cli_magic_scandesc(int desc, char **virname, long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options, int *reclev);
 
 int cli_scandesc(int desc, char **virname, long int *scanned, const struct 
 cl_node *root)
 {
  	char *buffer, *buff, *endbl, *pt;
8b242bb9
 	int bytes, buffsize, length, ret;
b151ef55
 
     /* prepare the buffer */
7b7b3ca5
     buffsize = root->maxpatlen + SCANBUFF;
9c1c9007
     if(!(buffer = (char *) cli_calloc(buffsize, sizeof(char)))) {
 	cli_dbgmsg("cli_scandesc(): unable to malloc(%d)\n", buffsize);
b151ef55
 	return CL_EMEM;
9c1c9007
     }
b151ef55
 
     buff = buffer;
     buff += root->maxpatlen; /* pointer to read data block */
7b7b3ca5
     endbl = buff + SCANBUFF - root->maxpatlen; /* pointer to the last block
b151ef55
 						* length of root->maxpatlen
 						*/
 
     pt= buff;
7b7b3ca5
     length = SCANBUFF;
b151ef55
 
7b7b3ca5
     while((bytes = read(desc, buff, SCANBUFF)) > 0) {
b151ef55
 
 	if(scanned != NULL)
 	    *scanned += bytes / CL_COUNT_PRECISION;
 
7b7b3ca5
 	if(bytes < SCANBUFF)
 	    length -= SCANBUFF - bytes;
b151ef55
 
8b242bb9
 	if((ret = cl_scanbuff(pt, length, virname, root)) != CL_CLEAN) {
b151ef55
 	    free(buffer);
8b242bb9
 	    return ret;
b151ef55
 	}
 
7b7b3ca5
 	if(bytes == SCANBUFF)
b151ef55
 	    memmove(buffer, endbl, root->maxpatlen);
 
         pt = buffer;
         length=buffsize;
 
     }
 
     free(buffer);
     return CL_CLEAN;
 }
 
 #ifdef CL_THREAD_SAFE
 void cli_unlock_mutex(void *mtx)
 {
     cli_dbgmsg("Pthread cancelled. Unlocking mutex.\n");
     pthread_mutex_unlock(mtx);
 }
 #endif
 
 int cli_scanrar(int desc, char **virname, long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options, int *reclev)
 {
97de3c9d
 	FILE *tmp = NULL;
b151ef55
 	int files = 0, fd, ret = CL_CLEAN;
 	ArchiveList_struct *rarlist = NULL;
 	char *rar_data_ptr;
 	unsigned long rar_data_size;
 
     cli_dbgmsg("Starting scanrar()\n");
 
 
 #ifdef CL_THREAD_SAFE
     pthread_cleanup_push(cli_unlock_mutex, &cli_scanrar_mutex);
     pthread_mutex_lock(&cli_scanrar_mutex);
     cli_scanrar_inuse = 1;
 #endif
 
     if(!urarlib_list(desc, (ArchiveList_struct *) &rarlist)) {
 #ifdef CL_THREAD_SAFE
 	pthread_mutex_unlock(&cli_scanrar_mutex);
 	cli_scanrar_inuse = 0;
 #endif
 	return CL_ERAR;
     }
 
     while(rarlist) {
 
 	if(limits) {
 	    if(limits->maxfilesize && (rarlist->item.UnpSize > limits->maxfilesize)) {
 		cli_dbgmsg("RAR->%s: Size exceeded (%d, max: %d)\n", rarlist->item.Name, rarlist->item.UnpSize, limits->maxfilesize);
 		rarlist = rarlist->next;
 		files++;
ae1f747c
 		/* ret = CL_EMAXSIZE; */
b151ef55
 		continue;
 	    }
 
 	    if(limits->maxfiles && (files > limits->maxfiles)) {
 		cli_dbgmsg("RAR: Files limit reached (max: %d)\n", limits->maxfiles);
ae1f747c
 		/* ret = CL_EMAXFILES; */
b151ef55
 		break;
 	    }
 	}
 
 	if((tmp = tmpfile()) == NULL) {
 	    cli_dbgmsg("RAR -> Can't generate tmpfile().\n");
 #ifdef CL_THREAD_SAFE
 	    pthread_mutex_unlock(&cli_scanrar_mutex);
 	    cli_scanrar_inuse = 0;
 #endif
 	    return CL_ETMPFILE;
 	}
 	fd = fileno(tmp);
 
 	if(urarlib_get(&rar_data_ptr, &rar_data_size, rarlist->item.Name, desc, "clam")) {
 	    cli_dbgmsg("RAR -> Extracted: %s, size: %d\n", rarlist->item.Name, rar_data_size);
d3d2fb1e
 	    if(fwrite(rar_data_ptr, rar_data_size, 1, tmp) != 1) {
b151ef55
 		cli_dbgmsg("RAR -> Can't write() file.\n");
d3d2fb1e
 		fclose(tmp);
b151ef55
 		tmp = NULL;
 		ret = CL_ERAR;
d3d2fb1e
 		if(rar_data_ptr) {
b151ef55
 		    free(rar_data_ptr);
d3d2fb1e
 		    rar_data_ptr = NULL;
 		}
60286ab1
 		break;
b151ef55
 	    }
 
d3d2fb1e
 	    if(rar_data_ptr) {
b151ef55
 		free(rar_data_ptr);
d3d2fb1e
 		rar_data_ptr = NULL;
 	    }
 	    if(fflush(tmp) != 0) {
 		cli_dbgmsg("fflush() failed: %s\n", strerror(errno));
 		fclose(tmp);
b151ef55
 		urarlib_freelist(rarlist);
 #ifdef CL_THREAD_SAFE
 		pthread_mutex_unlock(&cli_scanrar_mutex);
 		cli_scanrar_inuse = 0;
 #endif
 		return CL_EFSYNC;
 	    }
 
 	    lseek(fd, 0, SEEK_SET);
8b242bb9
 	    if((ret = cli_magic_scandesc(fd, virname, scanned, root, limits, options, reclev)) == CL_CLEAN ) {
 		if(ret == CL_VIRUS)
 		    cli_dbgmsg("RAR -> Found %s virus.\n", *virname);
 
d3d2fb1e
 		fclose(tmp);
b151ef55
 		urarlib_freelist(rarlist);
 #ifdef CL_THREAD_SAFE
 		pthread_mutex_unlock(&cli_scanrar_mutex);
 		cli_scanrar_inuse = 0;
 #endif
8b242bb9
 		return ret;
b151ef55
 	    }
 
 	} else {
 	    cli_dbgmsg("RAR -> Can't decompress file %s\n", rarlist->item.Name);
d3d2fb1e
 	    fclose(tmp);
 	    ret = CL_ERAR; /* WinRAR 3.0 ? */
 	    break;
b151ef55
 	}
 
d3d2fb1e
 	fclose(tmp);
b151ef55
 	tmp = NULL;
 	rarlist = rarlist->next;
 	files++;
     }
 
     urarlib_freelist(rarlist);
 #ifdef CL_THREAD_SAFE
     pthread_mutex_unlock(&cli_scanrar_mutex);
     cli_scanrar_inuse = 0;
     pthread_cleanup_pop(0);
 #endif
     return ret;
 }
 
 #ifdef HAVE_ZLIB_H
 int cli_scanzip(int desc, char **virname, long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options, int *reclev)
 {
 	ZZIP_DIR *zdir;
 	ZZIP_DIRENT zdirent;
 	ZZIP_FILE *zfp;
97de3c9d
 	FILE *tmp = NULL;
7b7b3ca5
 	char *buff;
50099661
 	int fd, bytes, files = 0, ret = CL_CLEAN;
97de3c9d
 	struct stat source;
50099661
 	zzip_error_t err;
b151ef55
 
     cli_dbgmsg("Starting scanzip()\n");
 
c6259ac5
     if((zdir = zzip_dir_fdopen(dup(desc), &err)) == NULL) {
 	cli_dbgmsg("Zip -> Not supported file format ?.\n");
 	cli_dbgmsg("zzip_dir_fdopen() return code: %d\n", err);
10971328
 	/* no return with CL_EZIP due to password protected zips */
 	return CL_CLEAN;
b151ef55
     }
 
97de3c9d
     fstat(desc, &source);
 
f5cd5991
     if(!(buff = (char *) cli_malloc(FILEBUFF))) {
9c1c9007
 	cli_dbgmsg("cli_scanzip(): unable to malloc(%d)\n", FILEBUFF);
f5cd5991
 	zzip_dir_close(zdir);
 	return CL_EMEM;
     }
 
b151ef55
     while(zzip_dir_read(zdir, &zdirent)) {
97de3c9d
 
 	if(!zdirent.d_name || !strlen(zdirent.d_name)) { /* Mimail fix */
 	    cli_dbgmsg("strlen(zdirent.d_name) == %d\n", strlen(zdirent.d_name));
1065f138
 	    *virname = "Suspected.Zip";
97de3c9d
 	    ret = CL_VIRUS;
 	    break;
 	}
 
510c466b
 	cli_dbgmsg("Zip -> %s, compressed: %d, normal: %d, encrypted flag: %d\n", zdirent.d_name, zdirent.d_csize, zdirent.st_size, zdirent.d_flags);
b151ef55
 
cf899a29
 	if(limits && limits->maxratio > 0 && source.st_size && (zdirent.st_size / source.st_size) >= limits->maxratio) {
1065f138
 	    *virname = "Oversized.Zip";
97de3c9d
 	    ret = CL_VIRUS;
 	    break;
 	}
 
b151ef55
 	if(!zdirent.st_size) { /* omit directories and null files */
 	    files++;
 	    continue;
 	}
 
 	/* work-around for problematic zips (zziplib crashes with them) */
 	if(zdirent.d_csize < 0 || zdirent.st_size < 0) {
 	    files++;
 	    cli_dbgmsg("Zip -> Malformed archive detected.\n");
97de3c9d
 	    /* ret = CL_EMALFZIP; */
 	    /* report it as a virus */
1065f138
 	    *virname = "Suspected.Zip";
97de3c9d
 	    ret = CL_VIRUS;
b151ef55
 	    break;
 	}
 
510c466b
 	if(DETECT_ENCRYPTED && (zdirent.d_flags & (1 | 2^6))) {
 	    files++;
 	    cli_dbgmsg("Zip -> Encrypted files found in archive.\n");
 	    *virname = "Encrypted.Zip";
 	    ret = CL_VIRUS;
 	    break;
 	}
 
b151ef55
 	if(limits) {
 	    if(limits->maxfilesize && (zdirent.st_size > limits->maxfilesize)) {
 		cli_dbgmsg("Zip -> %s: Size exceeded (%d, max: %d)\n", zdirent.d_name, zdirent.st_size, limits->maxfilesize);
 		files++;
ae1f747c
 		/* ret = CL_EMAXSIZE; */
97de3c9d
 		continue; /* this is not a bug */
b151ef55
 	    }
 
 	    if(limits->maxfiles && (files > limits->maxfiles)) {
 		cli_dbgmsg("Zip: Files limit reached (max: %d)\n", limits->maxfiles);
ae1f747c
 		/* ret = CL_EMAXFILES; */
b151ef55
 		break;
 	    }
 	}
 
 	/* generate temporary file and get its descriptor */
 	if((tmp = tmpfile()) == NULL) {
 	    cli_dbgmsg("Zip -> Can't generate tmpfile().\n");
97de3c9d
 	    ret = CL_ETMPFILE;
 	    break;
b151ef55
 	}
 
 	if((zfp = zzip_file_open(zdir, zdirent.d_name, 0)) == NULL) {
 	    cli_dbgmsg("Zip -> %s: Can't open file.\n", zdirent.d_name);
 	    ret = CL_EZIP;
97de3c9d
 	    break;
b151ef55
 	}
 
7b7b3ca5
 
 	while((bytes = zzip_file_read(zfp, buff, FILEBUFF)) > 0) {
d3d2fb1e
 	    if(fwrite(buff, bytes, 1, tmp)*bytes != bytes) {
 		cli_dbgmsg("Zip -> Can't fwrite() file: %s\n", strerror(errno));
b151ef55
 		zzip_file_close(zfp);
f5cd5991
 		zzip_dir_close(zdir);
 		fclose(tmp);
7b7b3ca5
 		free(buff);
f5cd5991
 		return CL_EZIP;
b151ef55
 	    }
 	}
 
 	zzip_file_close(zfp);
 
d3d2fb1e
 	if(fflush(tmp) != 0) {
 	    cli_errmsg("fflush() failed: %s\n", strerror(errno));
97de3c9d
 	    ret = CL_EFSYNC;
 	    break;
b151ef55
 	}
 
d3d2fb1e
 	fd = fileno(tmp);
 
b151ef55
 	lseek(fd, 0, SEEK_SET);
 	if((ret = cli_magic_scandesc(fd, virname, scanned, root, limits, options, reclev)) == CL_VIRUS ) {
 	    cli_dbgmsg("Zip -> Found %s virus.\n", *virname);
 	    ret = CL_VIRUS;
 	    break;
 	} else if(ret == CL_EMALFZIP) {
 	    /* 
97de3c9d
 	     * The trick with detection of ZoD only works with higher (>= 5)
b151ef55
 	     * recursion limit level.
 	     */
 	    cli_dbgmsg("Zip -> Malformed Zip, scanning stopped.\n");
1065f138
 	    *virname = "Suspected.Zip";
b151ef55
 	    ret = CL_VIRUS;
 	    break;
 	}
 
d3d2fb1e
 	if (tmp) {
 	    fclose(tmp);
 	    tmp = NULL;
 	}
b151ef55
 	files++;
     }
 
     zzip_dir_close(zdir);
d3d2fb1e
     if (tmp) {
 	fclose(tmp);
 	tmp = NULL;
     }
f5cd5991
 
     free(buff);
b151ef55
     return ret;
 }
 
 int cli_scangzip(int desc, char **virname, long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options, int *reclev)
 {
 	int fd, bytes, ret = CL_CLEAN;
 	long int size = 0;
7b7b3ca5
 	char *buff;
97de3c9d
 	FILE *tmp = NULL;
b151ef55
 	gzFile gd;
 
 
97de3c9d
     cli_dbgmsg("in cli_scangzip()\n");
 
b151ef55
     if((gd = gzdopen(dup(desc), "rb")) == NULL) {
 	cli_dbgmsg("Can't gzdopen() descriptor %d.\n", desc);
 	return CL_EGZIP;
     }
 
     if((tmp = tmpfile()) == NULL) {
 	cli_dbgmsg("Can't generate tmpfile().\n");
 	gzclose(gd);
 	return CL_ETMPFILE;
     }
     fd = fileno(tmp);
 
97de3c9d
     if(!(buff = (char *) cli_malloc(FILEBUFF))) {
9c1c9007
 	cli_dbgmsg("cli_scangzip(): unable to malloc(%d)\n", FILEBUFF);
97de3c9d
 	gzclose(gd);
7b7b3ca5
 	return CL_EMEM;
97de3c9d
     }
7b7b3ca5
 
97de3c9d
     while((bytes = gzread(gd, buff, FILEBUFF)) > 0) {
b151ef55
 	size += bytes;
 
 	if(limits)
97de3c9d
 	    if(limits->maxfilesize && (size + FILEBUFF > limits->maxfilesize)) {
b151ef55
 		cli_dbgmsg("Gzip->desc(%d): Size exceeded (stopped at %d, max: %d)\n", desc, size, limits->maxfilesize);
ae1f747c
 		/* ret = CL_EMAXSIZE; */
b151ef55
 		break;
 	    }
 
 	if(write(fd, buff, bytes) != bytes) {
 	    cli_dbgmsg("Gzip -> Can't write() file.\n");
d3d2fb1e
 	    fclose(tmp);
b151ef55
 	    gzclose(gd);
7b7b3ca5
 	    free(buff);
b151ef55
 	    return CL_EGZIP;
 	}
     }
 
7b7b3ca5
     free(buff);
b151ef55
     gzclose(gd);
     if(fsync(fd) == -1) {
 	cli_dbgmsg("fsync() failed for descriptor %d\n", fd);
d3d2fb1e
 	fclose(tmp);
b151ef55
 	return CL_EFSYNC;
     }
 
     lseek(fd, 0, SEEK_SET);
     if((ret = cli_magic_scandesc(fd, virname, scanned, root, limits, options, reclev)) == CL_VIRUS ) {
 	cli_dbgmsg("Gzip -> Found %s virus.\n", *virname);
d3d2fb1e
 	fclose(tmp);
b151ef55
 	return CL_VIRUS;
     }
d3d2fb1e
     fclose(tmp);
b151ef55
 
     return ret;
 }
 #endif
 
 #ifdef HAVE_BZLIB_H
 
 #ifdef NOBZ2PREFIX
 #define BZ2_bzReadOpen bzReadOpen
 #define BZ2_bzReadClose bzReadClose
 #define BZ2_bzRead bzRead
 #endif
 
 int cli_scanbzip(int desc, char **virname, long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options, int *reclev)
 {
 	int fd, bytes, ret = CL_CLEAN, bzerror = 0;
 	short memlim = 0;
 	long int size = 0;
7b7b3ca5
 	char *buff;
97de3c9d
 	FILE *fs, *tmp = NULL;
b151ef55
 	BZFILE *bfd;
 
 
9c1c9007
     if((fs = fdopen(dup(desc), "rb")) == NULL) {
b151ef55
 	cli_errmsg("Can't fdopen() descriptor %d.\n", desc);
 	return CL_EBZIP;
     }
 
     if(limits)
 	if(limits->archivememlim)
 	    memlim = 1;
 
61ff3bda
     if((bfd = BZ2_bzReadOpen(&bzerror, fs, 0, memlim, NULL, 0)) == NULL) {
b151ef55
 	cli_dbgmsg("Can't initialize bzip2 library (descriptor %d).\n", desc);
9c1c9007
 	fclose(fs);
b151ef55
 	return CL_EBZIP;
     }
 
     if((tmp = tmpfile()) == NULL) {
 	cli_dbgmsg("Can't generate tmpfile().\n");
 	BZ2_bzReadClose(&bzerror, bfd);
9c1c9007
 	fclose(fs);
b151ef55
 	return CL_ETMPFILE;
     }
     fd = fileno(tmp);
 
9c1c9007
     if(!(buff = (char *) malloc(FILEBUFF))) {
 	cli_dbgmsg("cli_scanbzip(): unable to malloc(%d)\n", FILEBUFF);
 	fclose(tmp);
 	fclose(fs);
 	BZ2_bzReadClose(&bzerror, bfd);
7b7b3ca5
 	return CL_EMEM;
9c1c9007
     }
7b7b3ca5
 
97de3c9d
     while((bytes = BZ2_bzRead(&bzerror, bfd, buff, FILEBUFF)) > 0) {
b151ef55
 	size += bytes;
 
 	if(limits)
97de3c9d
 	    if(limits->maxfilesize && (size + FILEBUFF > limits->maxfilesize)) {
b151ef55
 		cli_dbgmsg("Bzip2->desc(%d): Size exceeded (stopped at %d, max: %d)\n", desc, size, limits->maxfilesize);
ae1f747c
 		/* ret = CL_EMAXSIZE; */
b151ef55
 		break;
 	    }
 
 	if(write(fd, buff, bytes) != bytes) {
 	    cli_dbgmsg("Bzip2 -> Can't write() file.\n");
 	    BZ2_bzReadClose(&bzerror, bfd);
d3d2fb1e
 	    fclose(tmp);
7b7b3ca5
 	    free(buff);
9c1c9007
 	    fclose(fs);
b151ef55
 	    return CL_EGZIP;
 	}
     }
 
7b7b3ca5
     free(buff);
b151ef55
     BZ2_bzReadClose(&bzerror, bfd);
     if(fsync(fd) == -1) {
 	cli_dbgmsg("fsync() failed for descriptor %d\n", fd);
d3d2fb1e
 	fclose(tmp);
9c1c9007
 	fclose(fs);
b151ef55
 	return CL_EFSYNC;
     }
 
     lseek(fd, 0, SEEK_SET);
     if((ret = cli_magic_scandesc(fd, virname, scanned, root, limits, options, reclev)) == CL_VIRUS ) {
 	cli_dbgmsg("Bzip2 -> Found %s virus.\n", *virname);
     }
d3d2fb1e
     fclose(tmp);
9c1c9007
     fclose(fs);
b151ef55
 
     return ret;
 }
 #endif
 
c561d2a3
 int cli_scanole2(int desc, char **virname, long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options, int *reclev)
 {
 	const char *tmpdir;
 	char *dir, *fullname;
 	unsigned char *data;
c6b7542f
 	int ret = CL_CLEAN, fd, i, data_len;
c561d2a3
 	vba_project_t *vba_project;
 
     cli_dbgmsg("in cli_scanole2()\n");
 
     tmpdir = getenv("TMPDIR");
 
     if(tmpdir == NULL)
 #ifdef P_tmpdir
 	tmpdir = P_tmpdir;
 #else
 	tmpdir = "/tmp";
 #endif
 
 	/* generate the temporary directory */
 	dir = cl_gentemp(tmpdir);
 	if(mkdir(dir, 0700)) {
 	    cli_errmsg("ScanOLE2 -> Can't create temporary directory %s\n", dir);
 	    return CL_ETMPDIR;
 	}
 
 	if((ret = cli_ole2_extract(desc, dir))) {
 	    cli_errmsg("ScanOLE2 -> %s\n", cl_strerror(ret));
 	    cli_rmdirs(dir);
 	    free(dir);
 	    return ret;
 	}
 
 	if((vba_project = (vba_project_t *) vba56_dir_read(dir))) {
 
 	    for(i = 0; i < vba_project->count; i++) {
 		fullname = (char *) malloc(strlen(vba_project->dir) + strlen(vba_project->name[i]) + 2);
 		sprintf(fullname, "%s/%s", vba_project->dir, vba_project->name[i]);
 		fd = open(fullname, O_RDONLY);
 		if(fd == -1) {
 			cli_errmsg("Scan->OLE2 -> Can't open file %s\n", fullname);
 			free(fullname);
 			ret = CL_EOPEN;
 			break;
 		}
 		free(fullname);
3ccd73ad
                 cli_dbgmsg("decompress VBA project '%s'\n", vba_project->name[i]);
c6b7542f
 		data = (unsigned char *) vba_decompress(fd, vba_project->offset[i], &data_len);
804f9ba6
 		close(fd);
c561d2a3
 
3ccd73ad
 		if(!data) {
 		    cli_dbgmsg("WARNING: VBA project '%s' decompressed to NULL\n", vba_project->name[i]);
4213abf7
 		} else {
c6b7542f
 		    if(cl_scanbuff(data, data_len, virname, root) == CL_VIRUS) {
3ccd73ad
 			free(data);
 			ret = CL_VIRUS;
 			break;
 		    }
 
c561d2a3
 		    free(data);
 		}
 	    }
 
1f301ecc
 	    for(i = 0; i < vba_project->count; i++)
 		free(vba_project->name[i]);
 	    free(vba_project->name);
 	    free(vba_project->dir);
 	    free(vba_project->offset);
804f9ba6
 	    free(vba_project);
c561d2a3
 	}
 
 
 	cli_rmdirs(dir);
 	free(dir);
 	return ret;
 }
b151ef55
 int cli_scandir(char *dirname, char **virname, long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options, int *reclev)
 {
 	DIR *dd;
 	struct dirent *dent;
 	struct stat statbuf;
 	char *fname;
 
 
     if((dd = opendir(dirname)) != NULL) {
 	while((dent = readdir(dd))) {
 	    if(dent->d_ino) {
 		if(strcmp(dent->d_name, ".") && strcmp(dent->d_name, "..")) {
 		    /* build the full name */
 		    fname = cli_calloc(strlen(dirname) + strlen(dent->d_name) + 2, sizeof(char));
 		    sprintf(fname, "%s/%s", dirname, dent->d_name);
 
 		    /* stat the file */
 		    if(lstat(fname, &statbuf) != -1) {
 			if(S_ISDIR(statbuf.st_mode) && !S_ISLNK(statbuf.st_mode))
f1708da2
 			    cli_scandir(fname, virname, scanned, root, limits, options, reclev);
b151ef55
 			else
 			    if(S_ISREG(statbuf.st_mode))
 				if(cl_scanfile(fname, virname, scanned, root, limits, options) == CL_VIRUS) {
 				    free(fname);
 				    closedir(dd);
 				    return CL_VIRUS;
 				}
 
 		    }
 		    free(fname);
 		}
 	    }
 	}
     } else {
 	cli_errmsg("ScanDir -> Can't open directory %s.\n", dirname);
 	return CL_EOPEN;
     }
 
     closedir(dd);
     return 0;
 }
 
 int cli_scanmail(int desc, char **virname, long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options, int *reclev)
 {
 	const char *tmpdir;
 	char *dir;
 	int ret;
 
 
a8aba90a
     cli_dbgmsg("Starting cli_scanmail()\n");
 
2e3769eb
     if(*reclev > 5) /* FIXME: a temporary workaround */
a8aba90a
 	return CL_CLEAN;
b151ef55
 
     tmpdir = getenv("TMPDIR");
 
     if(tmpdir == NULL)
 #ifdef P_tmpdir
 	tmpdir = P_tmpdir;
 #else
 	tmpdir = "/tmp";
 #endif
 
 	/* generate the temporary directory */
4cd4319e
 	dir = cl_gentemp(tmpdir);
b151ef55
 	if(mkdir(dir, 0700)) {
 	    cli_errmsg("ScanMail -> Can't create temporary directory %s\n", dir);
 	    return CL_ETMPDIR;
 	}
 
 	/*
 	 * Extract the attachments into the temporary directory
 	 */
 	ret = cl_mbox(dir, desc);
 	/* FIXME: check mbox return code */
 
 	ret = cli_scandir(dir, virname, scanned, root, limits, options, reclev);
 
 	cli_rmdirs(dir);
 	free(dir);
 
 	return ret;
 }
 
 int cli_magic_scandesc(int desc, char **virname, long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options, int *reclev)
 {
d3d2fb1e
 	char magic[MAGIC_BUFFER_SIZE+1];
b151ef55
 	int ret = CL_CLEAN;
d3d2fb1e
 	int bread = 0;
8b242bb9
 	cl_file_t type;
b151ef55
 
 
     if(!root) {
 	cli_errmsg("root == NULL\n");
 	return -1;
     }
 
510c466b
 
d3d2fb1e
     if(SCAN_ARCHIVE || SCAN_MAIL) {
         /* Need to examine file type */
b151ef55
 
18a89742
 	if(SCAN_ARCHIVE && limits && limits->maxreclevel)
b151ef55
 	    if(*reclev > limits->maxreclevel)
ae1f747c
 		/* return CL_EMAXREC; */
 		return CL_CLEAN;
b151ef55
 
 	(*reclev)++;
 
 
d3d2fb1e
 	lseek(desc, 0, SEEK_SET);
 	bread = read(desc, magic, MAGIC_BUFFER_SIZE);
 	magic[MAGIC_BUFFER_SIZE] = '\0';	/* terminate magic string properly */
b151ef55
 	lseek(desc, 0, SEEK_SET);
 
 
65c4d8bc
 	if (bread != MAGIC_BUFFER_SIZE) {
 	    /* short read: No need to do magic */
4cd4319e
 	    (*reclev)--;
65c4d8bc
 	    return ret;
 	}
8b242bb9
 
 	type = cl_filetype(magic, bread);
 
 	switch(type) {
 	    case CL_RARFILE:
 		if(!DISABLE_RAR && SCAN_ARCHIVE && !cli_scanrar_inuse) {
 		    ret = cli_scanrar(desc, virname, scanned, root, limits, options, reclev);
 		}
 		break;
 
 	    case CL_ZIPFILE:
 		if(SCAN_ARCHIVE) {
 		    ret = cli_scanzip(desc, virname, scanned, root, limits, options, reclev);
 		}
 		break;
 
 	    case CL_GZFILE:
 		if(SCAN_ARCHIVE) {
 		    ret = cli_scangzip(desc, virname, scanned, root, limits, options, reclev);
 		}
 		break;
 
b151ef55
 #ifdef HAVE_BZLIB_H
8b242bb9
 	    case CL_BZFILE:
 		if(SCAN_ARCHIVE) {
 		    ret = cli_scanbzip(desc, virname, scanned, root, limits, options, reclev);
 		}
 		break;
b151ef55
 #endif
8b242bb9
 
 	    case CL_MAILFILE:
 		if (SCAN_MAIL) {
 		    ret = cli_scanmail(desc, virname, scanned, root, limits, options, reclev);
 		}
 		break;
 
 	    case CL_OLE2FILE:
 		if(SCAN_OLE2) {
 		    ret = cli_scanole2(desc, virname, scanned, root, limits, options, reclev);
 		}
 		break;
b151ef55
 	}
8b242bb9
 
d3d2fb1e
 	(*reclev)--;
b151ef55
     }
 
5aad47ca
     if(ret != CL_VIRUS) { /* scan the raw file */
d3d2fb1e
 	lseek(desc, 0, SEEK_SET); /* If archive scan didn't rewind desc */
b151ef55
 	if(cli_scandesc(desc, virname, scanned, root) == CL_VIRUS) {
 	    cli_dbgmsg("%s virus found in descriptor %d.\n", *virname, desc);
 	    return CL_VIRUS;
 	}
5aad47ca
     }
b151ef55
 
     return ret;
 }
 
 int cl_scandesc(int desc, char **virname, unsigned long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options)
 {
 	int reclev = 0;
 
     return cli_magic_scandesc(desc, virname, scanned, root, limits, options, &reclev);
 }
 
 int cl_scanfile(const char *filename, char **virname, unsigned long int *scanned, const struct cl_node *root, const struct cl_limits *limits, int options)
 {
 	int fd, ret;
 
     if((fd = open(filename, O_RDONLY)) == -1)
 	return CL_EOPEN;
 
     cli_dbgmsg("Scanning %s\n", filename);
     ret = cl_scandesc(fd, virname, scanned, root, limits, options);
     close(fd);
 
     return ret;
 }