mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1085 lines
27 KiB
1085 lines
27 KiB
/*
|
|
* Copyright (C) 2007-2010 Sourcefire, Inc.
|
|
*
|
|
* Authors: Tomasz Kojm, Trog
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "clamav-config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <dirent.h>
|
|
#ifndef _WIN32
|
|
#include <sys/wait.h>
|
|
#include <sys/time.h>
|
|
#endif
|
|
#include <time.h>
|
|
#include <fcntl.h>
|
|
#ifdef HAVE_PWD_H
|
|
#include <pwd.h>
|
|
#endif
|
|
#include <errno.h>
|
|
#include "target.h"
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
#include <sys/param.h>
|
|
#endif
|
|
#ifdef HAVE_MALLOC_H
|
|
#include <malloc.h>
|
|
#endif
|
|
|
|
#if defined(HAVE_READDIR_R_3) || defined(HAVE_READDIR_R_2)
|
|
#include <limits.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
|
|
#include "clamav.h"
|
|
#include "others.h"
|
|
#include "md5.h"
|
|
#include "sha1.h"
|
|
#include "sha256.h"
|
|
#include "cltypes.h"
|
|
#include "regex/regex.h"
|
|
#include "ltdl.h"
|
|
#include "matcher-ac.h"
|
|
#include "default.h"
|
|
#include "scanners.h"
|
|
#include "bytecode.h"
|
|
#include "bytecode_api_impl.h"
|
|
|
|
int (*cli_unrar_open)(int fd, const char *dirname, unrar_state_t *state);
|
|
int (*cli_unrar_extract_next_prepare)(unrar_state_t *state, const char *dirname);
|
|
int (*cli_unrar_extract_next)(unrar_state_t *state, const char *dirname);
|
|
void (*cli_unrar_close)(unrar_state_t *state);
|
|
int have_rar = 0;
|
|
static int is_rar_initd = 0;
|
|
|
|
static int warn_dlerror(const char *msg)
|
|
{
|
|
const char *err = lt_dlerror();
|
|
if (err)
|
|
cli_warnmsg("%s: %s\n", msg, err);
|
|
else
|
|
cli_warnmsg("%s\n", err);
|
|
return 0;
|
|
}
|
|
|
|
#if 0
|
|
#define lt_preload_symbols lt_libclamav_LTX_preloaded_symbols
|
|
extern const lt_dlsymlist lt_preload_symbols[];
|
|
#endif
|
|
|
|
static int lt_init(void) {
|
|
#if 0
|
|
/* doesn't work yet */
|
|
if (lt_dlpreload_default(lt_preload_symbols)) {
|
|
warn_dlerror("Cannot init ltdl preloaded symbols");
|
|
/* not fatal */
|
|
}
|
|
#endif
|
|
if(lt_dlinit()) {
|
|
warn_dlerror("Cannot init ltdl - unrar support unavailable");
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
#define PASTE2(a,b) a#b
|
|
#define PASTE(a,b) PASTE2(a,b)
|
|
|
|
static lt_dlhandle lt_dlfind(const char *name, const char *featurename)
|
|
{
|
|
static const char *suffixes[] = {
|
|
LT_MODULE_EXT"."LIBCLAMAV_FULLVER,
|
|
PASTE(LT_MODULE_EXT".", LIBCLAMAV_MAJORVER),
|
|
LT_MODULE_EXT,
|
|
"."LT_LIBEXT
|
|
};
|
|
|
|
const char *searchpath;
|
|
const lt_dlinfo *info;
|
|
char modulename[128];
|
|
lt_dlhandle rhandle;
|
|
unsigned i;
|
|
|
|
if (lt_dladdsearchdir(SEARCH_LIBDIR)) {
|
|
cli_dbgmsg("lt_dladdsearchdir failed for %s\n", SEARCH_LIBDIR);
|
|
}
|
|
|
|
searchpath = lt_dlgetsearchpath();
|
|
if (!searchpath)
|
|
searchpath = "";
|
|
|
|
cli_dbgmsg("searching for %s, user-searchpath: %s\n", featurename, searchpath);
|
|
for (i = 0; i < sizeof(suffixes)/sizeof(suffixes[0]); i++) {
|
|
snprintf(modulename, sizeof(modulename), "%s%s", name, suffixes[i]);
|
|
rhandle = lt_dlopen(modulename);
|
|
if (rhandle)
|
|
break;
|
|
cli_dbgmsg("searching for %s: %s not found\n", featurename, modulename);
|
|
}
|
|
|
|
if (!rhandle) {
|
|
const char *err = lt_dlerror();
|
|
if (!err) err = "";
|
|
#ifdef WARN_DLOPEN_FAIL
|
|
cli_warnmsg("Cannot dlopen %s: %s - %s support unavailable\n", name, err, featurename);
|
|
#else
|
|
cli_dbgmsg("Cannot dlopen %s: %s - %s support unavailable\n", name, err, featurename);
|
|
#endif
|
|
return rhandle;
|
|
}
|
|
|
|
info = lt_dlgetinfo(rhandle);
|
|
if (info)
|
|
cli_dbgmsg("%s support loaded from %s %s\n", featurename, info->filename ? info->filename : "?", info->name ? info->name : "");
|
|
return rhandle;
|
|
}
|
|
|
|
static void cli_rarload(void) {
|
|
lt_dlhandle rhandle;
|
|
|
|
if(is_rar_initd) return;
|
|
is_rar_initd = 1;
|
|
|
|
rhandle = lt_dlfind("libclamunrar_iface", "unrar");
|
|
if (!rhandle)
|
|
return;
|
|
|
|
if (!(cli_unrar_open = (int(*)(int, const char *, unrar_state_t *))lt_dlsym(rhandle, "libclamunrar_iface_LTX_unrar_open")) ||
|
|
!(cli_unrar_extract_next_prepare = (int(*)(unrar_state_t *, const char *))lt_dlsym(rhandle, "libclamunrar_iface_LTX_unrar_extract_next_prepare")) ||
|
|
!(cli_unrar_extract_next = (int(*)(unrar_state_t *, const char *))lt_dlsym(rhandle, "libclamunrar_iface_LTX_unrar_extract_next")) ||
|
|
!(cli_unrar_close = (void(*)(unrar_state_t *))lt_dlsym(rhandle, "libclamunrar_iface_LTX_unrar_close"))
|
|
) {
|
|
/* ideally we should never land here, we'd better warn so */
|
|
cli_warnmsg("Cannot resolve: %s (version mismatch?) - unrar support unavailable\n", lt_dlerror());
|
|
return;
|
|
}
|
|
have_rar = 1;
|
|
}
|
|
|
|
void cl_debug(void)
|
|
{
|
|
cli_debug_flag = 1;
|
|
}
|
|
|
|
unsigned int cl_retflevel(void)
|
|
{
|
|
return CL_FLEVEL;
|
|
}
|
|
|
|
const char *cl_strerror(int clerror)
|
|
{
|
|
switch(clerror) {
|
|
/* libclamav specific codes */
|
|
case CL_CLEAN:
|
|
return "No viruses detected";
|
|
case CL_VIRUS:
|
|
return "Virus(es) detected";
|
|
case CL_ENULLARG:
|
|
return "Null argument passed to function";
|
|
case CL_EARG:
|
|
return "Invalid argument passed to function";
|
|
case CL_EMALFDB:
|
|
return "Malformed database";
|
|
case CL_ECVD:
|
|
return "Broken or not a CVD file";
|
|
case CL_EVERIFY:
|
|
return "Can't verify database integrity";
|
|
case CL_EUNPACK:
|
|
return "Can't unpack some data";
|
|
case CL_EPARSE: /* like CL_EFORMAT but reported outside magicscan() */
|
|
return "Can't parse data";
|
|
|
|
/* I/O and memory errors */
|
|
case CL_EOPEN:
|
|
return "Can't open file or directory";
|
|
case CL_ECREAT:
|
|
return "Can't create new file";
|
|
case CL_EUNLINK:
|
|
return "Can't unlink file";
|
|
case CL_ESTAT:
|
|
return "Can't get file status";
|
|
case CL_EREAD:
|
|
return "Can't read file";
|
|
case CL_ESEEK:
|
|
return "Can't set file offset";
|
|
case CL_EWRITE:
|
|
return "Can't write to file";
|
|
case CL_EDUP:
|
|
return "Can't duplicate file descriptor";
|
|
case CL_EACCES:
|
|
return "Can't access file";
|
|
case CL_ETMPFILE:
|
|
return "Can't create temporary file";
|
|
case CL_ETMPDIR:
|
|
return "Can't create temporary directory";
|
|
case CL_EMAP:
|
|
return "Can't map file into memory";
|
|
case CL_EMEM:
|
|
return "Can't allocate memory";
|
|
case CL_ETIMEOUT:
|
|
return "Time limit reached";
|
|
/* internal (needed for debug messages) */
|
|
case CL_EMAXREC:
|
|
return "CL_EMAXREC";
|
|
case CL_EMAXSIZE:
|
|
return "CL_EMAXSIZE";
|
|
case CL_EMAXFILES:
|
|
return "CL_EMAXFILES";
|
|
case CL_EFORMAT:
|
|
return "CL_EFORMAT: Bad format or broken data";
|
|
case CL_EBYTECODE:
|
|
return "Error during bytecode execution";
|
|
case CL_EBYTECODE_TESTFAIL:
|
|
return "Failure in bytecode testmode";
|
|
case CL_ELOCK:
|
|
return "Mutex lock failed";
|
|
case CL_EBUSY:
|
|
return "Scanner still active";
|
|
case CL_ESTATE:
|
|
return "Bad state (engine not initialized, or already initialized)";
|
|
default:
|
|
return "Unknown error code";
|
|
}
|
|
}
|
|
|
|
int cl_init(unsigned int initoptions)
|
|
{
|
|
int rc;
|
|
struct timeval tv;
|
|
unsigned int pid = (unsigned int) getpid();
|
|
|
|
{
|
|
unrar_main_header_t x;
|
|
if (((char*)&x.flags - (char*)&x) != 3) {
|
|
cli_errmsg("Structure packing not working, got %u offset, expected %u\n",
|
|
(unsigned)((char*)&x.flags - (char*)&x), 3);
|
|
return CL_EARG;
|
|
}
|
|
}
|
|
/* put dlopen() stuff here, etc. */
|
|
if (lt_init() == 0) {
|
|
cli_rarload();
|
|
}
|
|
gettimeofday(&tv, (struct timezone *) 0);
|
|
srand(pid + tv.tv_usec*(pid+1) + clock());
|
|
rc = bytecode_init();
|
|
if (rc)
|
|
return rc;
|
|
return CL_SUCCESS;
|
|
}
|
|
|
|
struct cl_engine *cl_engine_new(void)
|
|
{
|
|
struct cl_engine *new;
|
|
|
|
|
|
new = (struct cl_engine *) cli_calloc(1, sizeof(struct cl_engine));
|
|
if(!new) {
|
|
cli_errmsg("cl_engine_new: Can't allocate memory for cl_engine\n");
|
|
return NULL;
|
|
}
|
|
|
|
/* Setup default limits */
|
|
new->maxscansize = CLI_DEFAULT_MAXSCANSIZE;
|
|
new->maxfilesize = CLI_DEFAULT_MAXFILESIZE;
|
|
new->maxreclevel = CLI_DEFAULT_MAXRECLEVEL;
|
|
new->maxfiles = CLI_DEFAULT_MAXFILES;
|
|
new->min_cc_count = CLI_DEFAULT_MIN_CC_COUNT;
|
|
new->min_ssn_count = CLI_DEFAULT_MIN_SSN_COUNT;
|
|
|
|
new->bytecode_security = CL_BYTECODE_TRUST_SIGNED;
|
|
/* 5 seconds timeout */
|
|
new->bytecode_timeout = 60000;
|
|
new->bytecode_mode = CL_BYTECODE_MODE_AUTO;
|
|
new->refcount = 1;
|
|
new->ac_only = 0;
|
|
new->ac_mindepth = CLI_DEFAULT_AC_MINDEPTH;
|
|
new->ac_maxdepth = CLI_DEFAULT_AC_MAXDEPTH;
|
|
|
|
#ifdef USE_MPOOL
|
|
if(!(new->mempool = mpool_create())) {
|
|
cli_errmsg("cl_engine_new: Can't allocate memory for memory pool\n");
|
|
free(new);
|
|
return NULL;
|
|
}
|
|
#endif
|
|
|
|
new->root = mpool_calloc(new->mempool, CLI_MTARGETS, sizeof(struct cli_matcher *));
|
|
if(!new->root) {
|
|
cli_errmsg("cl_engine_new: Can't allocate memory for roots\n");
|
|
#ifdef USE_MPOOL
|
|
mpool_destroy(new->mempool);
|
|
#endif
|
|
free(new);
|
|
return NULL;
|
|
}
|
|
|
|
new->dconf = cli_mpool_dconf_init(new->mempool);
|
|
if(!new->dconf) {
|
|
cli_errmsg("cl_engine_new: Can't initialize dynamic configuration\n");
|
|
mpool_free(new->mempool, new->root);
|
|
#ifdef USE_MPOOL
|
|
mpool_destroy(new->mempool);
|
|
#endif
|
|
free(new);
|
|
return NULL;
|
|
}
|
|
|
|
crtmgr_init(&new->cmgr);
|
|
if(crtmgr_add_roots(&new->cmgr)) {
|
|
cli_errmsg("cl_engine_new: Can't initialize root certificates\n");
|
|
mpool_free(new->mempool, new->dconf);
|
|
mpool_free(new->mempool, new->root);
|
|
#ifdef USE_MPOOL
|
|
mpool_destroy(new->mempool);
|
|
#endif
|
|
free(new);
|
|
return NULL;
|
|
}
|
|
|
|
cli_dbgmsg("Initialized %s engine\n", cl_retver());
|
|
return new;
|
|
}
|
|
|
|
int cl_engine_set_num(struct cl_engine *engine, enum cl_engine_field field, long long num)
|
|
{
|
|
if(!engine)
|
|
return CL_ENULLARG;
|
|
|
|
/* TODO: consider adding checks and warn/errs when num overflows the
|
|
* destination type
|
|
*/
|
|
switch(field) {
|
|
case CL_ENGINE_MAX_SCANSIZE:
|
|
engine->maxscansize = num;
|
|
break;
|
|
case CL_ENGINE_MAX_FILESIZE:
|
|
engine->maxfilesize = num;
|
|
break;
|
|
case CL_ENGINE_MAX_RECURSION:
|
|
if(!num) {
|
|
cli_warnmsg("MaxRecursion: the value of 0 is not allowed, using default: %u\n", CLI_DEFAULT_MAXRECLEVEL);
|
|
engine->maxreclevel = CLI_DEFAULT_MAXRECLEVEL;
|
|
} else
|
|
engine->maxreclevel = num;
|
|
break;
|
|
case CL_ENGINE_MAX_FILES:
|
|
engine->maxfiles = num;
|
|
break;
|
|
case CL_ENGINE_MIN_CC_COUNT:
|
|
engine->min_cc_count = num;
|
|
break;
|
|
case CL_ENGINE_MIN_SSN_COUNT:
|
|
engine->min_ssn_count = num;
|
|
break;
|
|
case CL_ENGINE_DB_OPTIONS:
|
|
case CL_ENGINE_DB_VERSION:
|
|
case CL_ENGINE_DB_TIME:
|
|
cli_warnmsg("cl_engine_set_num: The field is read only\n");
|
|
return CL_EARG;
|
|
case CL_ENGINE_AC_ONLY:
|
|
engine->ac_only = num;
|
|
break;
|
|
case CL_ENGINE_AC_MINDEPTH:
|
|
engine->ac_mindepth = num;
|
|
break;
|
|
case CL_ENGINE_AC_MAXDEPTH:
|
|
engine->ac_maxdepth = num;
|
|
break;
|
|
case CL_ENGINE_KEEPTMP:
|
|
engine->keeptmp = num;
|
|
break;
|
|
case CL_ENGINE_BYTECODE_SECURITY:
|
|
if (engine->dboptions & CL_DB_COMPILED) {
|
|
cli_errmsg("cl_engine_set_num: CL_ENGINE_BYTECODE_SECURITY cannot be set after engine was compiled\n");
|
|
return CL_EARG;
|
|
}
|
|
engine->bytecode_security = num;
|
|
break;
|
|
case CL_ENGINE_BYTECODE_TIMEOUT:
|
|
engine->bytecode_timeout = num;
|
|
break;
|
|
case CL_ENGINE_BYTECODE_MODE:
|
|
if (engine->dboptions & CL_DB_COMPILED) {
|
|
cli_errmsg("cl_engine_set_num: CL_ENGINE_BYTECODE_MODE cannot be set after engine was compiled\n");
|
|
return CL_EARG;
|
|
}
|
|
if (num == CL_BYTECODE_MODE_OFF) {
|
|
cli_errmsg("cl_engine_set_num: CL_BYTECODE_MODE_OFF is not settable, use dboptions to turn off!\n");
|
|
return CL_EARG;
|
|
}
|
|
engine->bytecode_mode = num;
|
|
if (num == CL_BYTECODE_MODE_TEST)
|
|
cli_infomsg(NULL, "bytecode engine in test mode\n");
|
|
break;
|
|
default:
|
|
cli_errmsg("cl_engine_set_num: Incorrect field number\n");
|
|
return CL_EARG;
|
|
}
|
|
|
|
return CL_SUCCESS;
|
|
}
|
|
|
|
long long cl_engine_get_num(const struct cl_engine *engine, enum cl_engine_field field, int *err)
|
|
{
|
|
if(!engine) {
|
|
cli_errmsg("cl_engine_get_num: engine == NULL\n");
|
|
if(err)
|
|
*err = CL_ENULLARG;
|
|
return -1;
|
|
}
|
|
|
|
if(err)
|
|
*err = CL_SUCCESS;
|
|
|
|
switch(field) {
|
|
case CL_ENGINE_DB_OPTIONS:
|
|
return engine->dboptions;
|
|
case CL_ENGINE_MAX_SCANSIZE:
|
|
return engine->maxscansize;
|
|
case CL_ENGINE_MAX_FILESIZE:
|
|
return engine->maxfilesize;
|
|
case CL_ENGINE_MAX_RECURSION:
|
|
return engine->maxreclevel;
|
|
case CL_ENGINE_MAX_FILES:
|
|
return engine->maxfiles;
|
|
case CL_ENGINE_MIN_CC_COUNT:
|
|
return engine->min_cc_count;
|
|
case CL_ENGINE_MIN_SSN_COUNT:
|
|
return engine->min_ssn_count;
|
|
case CL_ENGINE_DB_VERSION:
|
|
return engine->dbversion[0];
|
|
case CL_ENGINE_DB_TIME:
|
|
return engine->dbversion[1];
|
|
case CL_ENGINE_AC_ONLY:
|
|
return engine->ac_only;
|
|
case CL_ENGINE_AC_MINDEPTH:
|
|
return engine->ac_mindepth;
|
|
case CL_ENGINE_AC_MAXDEPTH:
|
|
return engine->ac_maxdepth;
|
|
case CL_ENGINE_KEEPTMP:
|
|
return engine->keeptmp;
|
|
case CL_ENGINE_BYTECODE_SECURITY:
|
|
return engine->bytecode_security;
|
|
case CL_ENGINE_BYTECODE_TIMEOUT:
|
|
return engine->bytecode_timeout;
|
|
case CL_ENGINE_BYTECODE_MODE:
|
|
return engine->bytecode_mode;
|
|
default:
|
|
cli_errmsg("cl_engine_get: Incorrect field number\n");
|
|
if(err)
|
|
*err = CL_EARG;
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
int cl_engine_set_str(struct cl_engine *engine, enum cl_engine_field field, const char *str)
|
|
{
|
|
if(!engine)
|
|
return CL_ENULLARG;
|
|
|
|
switch(field) {
|
|
case CL_ENGINE_PUA_CATEGORIES:
|
|
engine->pua_cats = cli_mpool_strdup(engine->mempool, str);
|
|
if(!engine->pua_cats)
|
|
return CL_EMEM;
|
|
break;
|
|
case CL_ENGINE_TMPDIR:
|
|
engine->tmpdir = cli_mpool_strdup(engine->mempool, str);
|
|
if(!engine->tmpdir)
|
|
return CL_EMEM;
|
|
break;
|
|
default:
|
|
cli_errmsg("cl_engine_set_num: Incorrect field number\n");
|
|
return CL_EARG;
|
|
}
|
|
|
|
return CL_SUCCESS;
|
|
}
|
|
|
|
const char *cl_engine_get_str(const struct cl_engine *engine, enum cl_engine_field field, int *err)
|
|
{
|
|
if(!engine) {
|
|
cli_errmsg("cl_engine_get_str: engine == NULL\n");
|
|
if(err)
|
|
*err = CL_ENULLARG;
|
|
return NULL;
|
|
}
|
|
|
|
if(err)
|
|
*err = CL_SUCCESS;
|
|
|
|
switch(field) {
|
|
case CL_ENGINE_PUA_CATEGORIES:
|
|
return engine->pua_cats;
|
|
case CL_ENGINE_TMPDIR:
|
|
return engine->tmpdir;
|
|
default:
|
|
cli_errmsg("cl_engine_get: Incorrect field number\n");
|
|
if(err)
|
|
*err = CL_EARG;
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
struct cl_settings *cl_engine_settings_copy(const struct cl_engine *engine)
|
|
{
|
|
struct cl_settings *settings;
|
|
|
|
settings = (struct cl_settings *) malloc(sizeof(struct cl_settings));
|
|
if(!settings)
|
|
return NULL;
|
|
|
|
settings->ac_only = engine->ac_only;
|
|
settings->ac_mindepth = engine->ac_mindepth;
|
|
settings->ac_maxdepth = engine->ac_maxdepth;
|
|
settings->tmpdir = engine->tmpdir ? strdup(engine->tmpdir) : NULL;
|
|
settings->keeptmp = engine->keeptmp;
|
|
settings->maxscansize = engine->maxscansize;
|
|
settings->maxfilesize = engine->maxfilesize;
|
|
settings->maxreclevel = engine->maxreclevel;
|
|
settings->maxfiles = engine->maxfiles;
|
|
settings->min_cc_count = engine->min_cc_count;
|
|
settings->min_ssn_count = engine->min_ssn_count;
|
|
settings->bytecode_security = engine->bytecode_security;
|
|
settings->bytecode_timeout = engine->bytecode_timeout;
|
|
settings->bytecode_mode = engine->bytecode_mode;
|
|
settings->pua_cats = engine->pua_cats ? strdup(engine->pua_cats) : NULL;
|
|
|
|
settings->cb_pre_cache = engine->cb_pre_cache;
|
|
settings->cb_pre_scan = engine->cb_pre_scan;
|
|
settings->cb_post_scan = engine->cb_post_scan;
|
|
settings->cb_sigload = engine->cb_sigload;
|
|
settings->cb_sigload_ctx = engine->cb_sigload_ctx;
|
|
settings->cb_hash = engine->cb_hash;
|
|
|
|
return settings;
|
|
}
|
|
|
|
int cl_engine_settings_apply(struct cl_engine *engine, const struct cl_settings *settings)
|
|
{
|
|
engine->ac_only = settings->ac_only;
|
|
engine->ac_mindepth = settings->ac_mindepth;
|
|
engine->ac_maxdepth = settings->ac_maxdepth;
|
|
engine->keeptmp = settings->keeptmp;
|
|
engine->maxscansize = settings->maxscansize;
|
|
engine->maxfilesize = settings->maxfilesize;
|
|
engine->maxreclevel = settings->maxreclevel;
|
|
engine->maxfiles = settings->maxfiles;
|
|
engine->min_cc_count = settings->min_cc_count;
|
|
engine->min_ssn_count = settings->min_ssn_count;
|
|
engine->bytecode_security = settings->bytecode_security;
|
|
engine->bytecode_timeout = settings->bytecode_timeout;
|
|
engine->bytecode_mode = settings->bytecode_mode;
|
|
|
|
if(engine->tmpdir)
|
|
mpool_free(engine->mempool, engine->tmpdir);
|
|
if(settings->tmpdir) {
|
|
engine->tmpdir = cli_mpool_strdup(engine->mempool, settings->tmpdir);
|
|
if(!engine->tmpdir)
|
|
return CL_EMEM;
|
|
} else {
|
|
engine->tmpdir = NULL;
|
|
}
|
|
|
|
if(engine->pua_cats)
|
|
mpool_free(engine->mempool, engine->pua_cats);
|
|
if(settings->pua_cats) {
|
|
engine->pua_cats = cli_mpool_strdup(engine->mempool, settings->pua_cats);
|
|
if(!engine->pua_cats)
|
|
return CL_EMEM;
|
|
} else {
|
|
engine->pua_cats = NULL;
|
|
}
|
|
|
|
engine->cb_pre_cache = settings->cb_pre_cache;
|
|
engine->cb_pre_scan = settings->cb_pre_scan;
|
|
engine->cb_post_scan = settings->cb_post_scan;
|
|
engine->cb_sigload = settings->cb_sigload;
|
|
engine->cb_sigload_ctx = settings->cb_sigload_ctx;
|
|
engine->cb_hash = settings->cb_hash;
|
|
|
|
return CL_SUCCESS;
|
|
}
|
|
|
|
int cl_engine_settings_free(struct cl_settings *settings)
|
|
{
|
|
if(!settings)
|
|
return CL_ENULLARG;
|
|
|
|
free(settings->tmpdir);
|
|
free(settings->pua_cats);
|
|
free(settings);
|
|
return CL_SUCCESS;
|
|
}
|
|
|
|
int cli_checklimits(const char *who, cli_ctx *ctx, unsigned long need1, unsigned long need2, unsigned long need3) {
|
|
int ret = CL_SUCCESS;
|
|
unsigned long needed;
|
|
|
|
/* if called without limits, go on, unpack, scan */
|
|
if(!ctx) return CL_CLEAN;
|
|
|
|
needed = (need1>need2)?need1:need2;
|
|
needed = (needed>need3)?needed:need3;
|
|
|
|
/* if we have global scan limits */
|
|
if(needed && ctx->engine->maxscansize) {
|
|
/* if the remaining scansize is too small... */
|
|
if(ctx->engine->maxscansize-ctx->scansize<needed) {
|
|
/* ... we tell the caller to skip this file */
|
|
cli_dbgmsg("%s: scansize exceeded (initial: %lu, consumed: %lu, needed: %lu)\n", who, (unsigned long int) ctx->engine->maxscansize, (unsigned long int) ctx->scansize, needed);
|
|
ret = CL_EMAXSIZE;
|
|
}
|
|
}
|
|
|
|
/* if we have per-file size limits, and we are overlimit... */
|
|
if(needed && ctx->engine->maxfilesize && ctx->engine->maxfilesize<needed) {
|
|
/* ... we tell the caller to skip this file */
|
|
cli_dbgmsg("%s: filesize exceeded (allowed: %lu, needed: %lu)\n", who, (unsigned long int) ctx->engine->maxfilesize, needed);
|
|
ret = CL_EMAXSIZE;
|
|
}
|
|
|
|
if(ctx->engine->maxfiles && ctx->scannedfiles>=ctx->engine->maxfiles) {
|
|
cli_dbgmsg("%s: files limit reached (max: %u)\n", who, ctx->engine->maxfiles);
|
|
return CL_EMAXFILES;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
int cli_updatelimits(cli_ctx *ctx, unsigned long needed) {
|
|
int ret=cli_checklimits("cli_updatelimits", ctx, needed, 0, 0);
|
|
|
|
if (ret != CL_CLEAN) return ret;
|
|
ctx->scannedfiles++;
|
|
ctx->scansize+=needed;
|
|
if(ctx->scansize > ctx->engine->maxscansize)
|
|
ctx->scansize = ctx->engine->maxscansize;
|
|
return CL_CLEAN;
|
|
}
|
|
|
|
/*
|
|
* Type: 1 = MD5, 2 = SHA1, 3 = SHA256
|
|
*/
|
|
char *cli_hashstream(FILE *fs, unsigned char *digcpy, int type)
|
|
{
|
|
unsigned char digest[32];
|
|
char buff[FILEBUFF];
|
|
cli_md5_ctx md5;
|
|
SHA1Context sha1;
|
|
SHA256_CTX sha256;
|
|
char *hashstr, *pt;
|
|
int i, bytes, size;
|
|
|
|
|
|
if(type == 1)
|
|
cli_md5_init(&md5);
|
|
else if(type == 2)
|
|
SHA1Init(&sha1);
|
|
else
|
|
sha256_init(&sha256);
|
|
|
|
while((bytes = fread(buff, 1, FILEBUFF, fs))) {
|
|
if(type == 1)
|
|
cli_md5_update(&md5, buff, bytes);
|
|
else if(type == 2)
|
|
SHA1Update(&sha1, buff, bytes);
|
|
else
|
|
sha256_update(&sha256, buff, bytes);
|
|
}
|
|
|
|
if(type == 1) {
|
|
cli_md5_final(digest, &md5);
|
|
size = 16;
|
|
} else if(type == 2) {
|
|
SHA1Final(&sha1, digest);
|
|
size = 20;
|
|
} else {
|
|
sha256_final(&sha256, digest);
|
|
size = 32;
|
|
}
|
|
|
|
if(!(hashstr = (char *) cli_calloc(size*2 + 1, sizeof(char))))
|
|
return NULL;
|
|
|
|
pt = hashstr;
|
|
for(i = 0; i < size; i++) {
|
|
sprintf(pt, "%02x", digest[i]);
|
|
pt += 2;
|
|
}
|
|
|
|
if(digcpy)
|
|
memcpy(digcpy, digest, size);
|
|
|
|
return hashstr;
|
|
}
|
|
|
|
char *cli_hashfile(const char *filename, int type)
|
|
{
|
|
FILE *fs;
|
|
char *hashstr;
|
|
|
|
|
|
if((fs = fopen(filename, "rb")) == NULL) {
|
|
cli_errmsg("cli_hashfile(): Can't open file %s\n", filename);
|
|
return NULL;
|
|
}
|
|
|
|
hashstr = cli_hashstream(fs, NULL, type);
|
|
|
|
fclose(fs);
|
|
return hashstr;
|
|
}
|
|
|
|
/* Function: unlink
|
|
unlink() with error checking
|
|
*/
|
|
int cli_unlink(const char *pathname)
|
|
{
|
|
if (unlink(pathname)==-1) {
|
|
char err[128];
|
|
cli_warnmsg("cli_unlink: failure - %s\n", cli_strerror(errno, err, sizeof(err)));
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void cli_append_virus(cli_ctx * ctx, const char * virname)
|
|
{
|
|
if (!ctx->virname)
|
|
return;
|
|
if (SCAN_ALL) {
|
|
if (ctx->size_viruses == 0) {
|
|
ctx->size_viruses = 2;
|
|
if (!(ctx->virname = malloc(ctx->size_viruses * sizeof(char *)))) {
|
|
cli_errmsg("cli_append_virus: fails on malloc() - virus %s virname not appended.\n", virname);
|
|
return;
|
|
}
|
|
} else if (ctx->num_viruses+1 == ctx->size_viruses) {
|
|
ctx->size_viruses *= 2;
|
|
if ((ctx->virname = realloc((void *)ctx->virname, ctx->size_viruses * sizeof (char *))) == NULL) {
|
|
cli_errmsg("cli_append_virus: fails on realloc() - virus %s virname not appended.\n", virname);
|
|
return;
|
|
}
|
|
}
|
|
ctx->virname[ctx->num_viruses++] = virname;
|
|
ctx->virname[ctx->num_viruses] = NULL;
|
|
}
|
|
else
|
|
*ctx->virname = virname;
|
|
}
|
|
|
|
const char * cli_get_last_virus(const cli_ctx * ctx)
|
|
{
|
|
if (!ctx->virname)
|
|
return NULL;
|
|
|
|
if (SCAN_ALL && ctx->num_viruses) {
|
|
return ctx->virname[ctx->num_viruses-1];
|
|
}
|
|
else
|
|
return *ctx->virname;
|
|
}
|
|
|
|
|
|
#ifdef C_WINDOWS
|
|
/*
|
|
* Windows doesn't allow you to delete a directory while it is still open
|
|
*/
|
|
int
|
|
cli_rmdirs(const char *name)
|
|
{
|
|
int rc;
|
|
STATBUF statb;
|
|
DIR *dd;
|
|
struct dirent *dent;
|
|
#if defined(HAVE_READDIR_R_3) || defined(HAVE_READDIR_R_2)
|
|
union {
|
|
struct dirent d;
|
|
char b[offsetof(struct dirent, d_name) + NAME_MAX + 1];
|
|
} result;
|
|
#endif
|
|
char err[128];
|
|
|
|
|
|
if(STAT(name, &statb) < 0) {
|
|
cli_warnmsg("cli_rmdirs: Can't locate %s: %s\n", name, cli_strerror(errno, err, sizeof(err)));
|
|
return -1;
|
|
}
|
|
|
|
if(!S_ISDIR(statb.st_mode)) {
|
|
if(cli_unlink(name)) return -1;
|
|
return 0;
|
|
}
|
|
|
|
if((dd = opendir(name)) == NULL)
|
|
return -1;
|
|
|
|
rc = 0;
|
|
|
|
#ifdef HAVE_READDIR_R_3
|
|
while((readdir_r(dd, &result.d, &dent) == 0) && dent) {
|
|
#elif defined(HAVE_READDIR_R_2)
|
|
while((dent = (struct dirent *)readdir_r(dd, &result.d)) != NULL) {
|
|
#else
|
|
while((dent = readdir(dd)) != NULL) {
|
|
#endif
|
|
char *path;
|
|
|
|
if(strcmp(dent->d_name, ".") == 0)
|
|
continue;
|
|
if(strcmp(dent->d_name, "..") == 0)
|
|
continue;
|
|
|
|
path = cli_malloc(strlen(name) + strlen(dent->d_name) + 2);
|
|
|
|
if(path == NULL) {
|
|
closedir(dd);
|
|
return -1;
|
|
}
|
|
|
|
sprintf(path, "%s\\%s", name, dent->d_name);
|
|
rc = cli_rmdirs(path);
|
|
free(path);
|
|
if(rc != 0)
|
|
break;
|
|
}
|
|
|
|
closedir(dd);
|
|
|
|
if(rmdir(name) < 0) {
|
|
cli_errmsg("cli_rmdirs: Can't remove temporary directory %s: %s\n", name, cli_strerror(errno, err, sizeof(err)));
|
|
return -1;
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
#else
|
|
int cli_rmdirs(const char *dirname)
|
|
{
|
|
DIR *dd;
|
|
struct dirent *dent;
|
|
#if defined(HAVE_READDIR_R_3) || defined(HAVE_READDIR_R_2)
|
|
union {
|
|
struct dirent d;
|
|
char b[offsetof(struct dirent, d_name) + NAME_MAX + 1];
|
|
} result;
|
|
#endif
|
|
STATBUF maind, statbuf;
|
|
char *path;
|
|
char err[128];
|
|
|
|
|
|
chmod(dirname, 0700);
|
|
if((dd = opendir(dirname)) != NULL) {
|
|
while(STAT(dirname, &maind) != -1) {
|
|
if(!rmdir(dirname)) break;
|
|
if(errno != ENOTEMPTY && errno != EEXIST && errno != EBADF) {
|
|
cli_errmsg("cli_rmdirs: Can't remove temporary directory %s: %s\n", dirname, cli_strerror(errno, err, sizeof(err)));
|
|
closedir(dd);
|
|
return -1;
|
|
}
|
|
|
|
#ifdef HAVE_READDIR_R_3
|
|
while(!readdir_r(dd, &result.d, &dent) && dent) {
|
|
#elif defined(HAVE_READDIR_R_2)
|
|
while((dent = (struct dirent *) readdir_r(dd, &result.d))) {
|
|
#else
|
|
while((dent = readdir(dd))) {
|
|
#endif
|
|
if(dent->d_ino)
|
|
{
|
|
if(strcmp(dent->d_name, ".") && strcmp(dent->d_name, "..")) {
|
|
path = cli_malloc(strlen(dirname) + strlen(dent->d_name) + 2);
|
|
if(!path) {
|
|
closedir(dd);
|
|
return -1;
|
|
}
|
|
|
|
sprintf(path, "%s"PATHSEP"%s", dirname, dent->d_name);
|
|
|
|
/* stat the file */
|
|
if(LSTAT(path, &statbuf) != -1) {
|
|
if(S_ISDIR(statbuf.st_mode) && !S_ISLNK(statbuf.st_mode)) {
|
|
if(rmdir(path) == -1) { /* can't be deleted */
|
|
if(errno == EACCES) {
|
|
cli_errmsg("cli_rmdirs: Can't remove some temporary directories due to access problem.\n");
|
|
closedir(dd);
|
|
free(path);
|
|
return -1;
|
|
}
|
|
if(cli_rmdirs(path)) {
|
|
cli_warnmsg("cli_rmdirs: Can't remove nested directory %s\n", path);
|
|
free(path);
|
|
closedir(dd);
|
|
return -1;
|
|
}
|
|
}
|
|
} else {
|
|
if(cli_unlink(path)) {
|
|
free(path);
|
|
closedir(dd);
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
free(path);
|
|
}
|
|
}
|
|
}
|
|
rewinddir(dd);
|
|
}
|
|
|
|
} else {
|
|
return -1;
|
|
}
|
|
|
|
closedir(dd);
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
/* Implement a generic bitset, trog@clamav.net */
|
|
|
|
#define BITS_PER_CHAR (8)
|
|
#define BITSET_DEFAULT_SIZE (1024)
|
|
|
|
static unsigned long nearest_power(unsigned long num)
|
|
{
|
|
unsigned long n = BITSET_DEFAULT_SIZE;
|
|
|
|
while (n < num) {
|
|
n <<= 1;
|
|
if (n == 0) {
|
|
return num;
|
|
}
|
|
}
|
|
return n;
|
|
}
|
|
|
|
bitset_t *cli_bitset_init(void)
|
|
{
|
|
bitset_t *bs;
|
|
|
|
bs = cli_malloc(sizeof(bitset_t));
|
|
if (!bs) {
|
|
return NULL;
|
|
}
|
|
bs->length = BITSET_DEFAULT_SIZE;
|
|
bs->bitset = cli_calloc(BITSET_DEFAULT_SIZE, 1);
|
|
if (!bs->bitset) {
|
|
free(bs);
|
|
return NULL;
|
|
}
|
|
return bs;
|
|
}
|
|
|
|
void cli_bitset_free(bitset_t *bs)
|
|
{
|
|
if (!bs) {
|
|
return;
|
|
}
|
|
if (bs->bitset) {
|
|
free(bs->bitset);
|
|
}
|
|
free(bs);
|
|
}
|
|
|
|
static bitset_t *bitset_realloc(bitset_t *bs, unsigned long min_size)
|
|
{
|
|
unsigned long new_length;
|
|
unsigned char *new_bitset;
|
|
|
|
new_length = nearest_power(min_size);
|
|
new_bitset = (unsigned char *) cli_realloc(bs->bitset, new_length);
|
|
if (!new_bitset) {
|
|
return NULL;
|
|
}
|
|
bs->bitset = new_bitset;
|
|
memset(bs->bitset+bs->length, 0, new_length-bs->length);
|
|
bs->length = new_length;
|
|
return bs;
|
|
}
|
|
|
|
int cli_bitset_set(bitset_t *bs, unsigned long bit_offset)
|
|
{
|
|
unsigned long char_offset;
|
|
|
|
char_offset = bit_offset / BITS_PER_CHAR;
|
|
bit_offset = bit_offset % BITS_PER_CHAR;
|
|
|
|
if (char_offset >= bs->length) {
|
|
bs = bitset_realloc(bs, char_offset+1);
|
|
if (!bs) {
|
|
return FALSE;
|
|
}
|
|
}
|
|
bs->bitset[char_offset] |= ((unsigned char)1 << bit_offset);
|
|
return TRUE;
|
|
}
|
|
|
|
int cli_bitset_test(bitset_t *bs, unsigned long bit_offset)
|
|
{
|
|
unsigned long char_offset;
|
|
|
|
char_offset = bit_offset / BITS_PER_CHAR;
|
|
bit_offset = bit_offset % BITS_PER_CHAR;
|
|
|
|
if (char_offset >= bs->length) {
|
|
return FALSE;
|
|
}
|
|
return (bs->bitset[char_offset] & ((unsigned char)1 << bit_offset));
|
|
}
|
|
|
|
void cl_engine_set_clcb_pre_cache(struct cl_engine *engine, clcb_pre_cache callback) {
|
|
engine->cb_pre_cache = callback;
|
|
}
|
|
|
|
void cl_engine_set_clcb_pre_scan(struct cl_engine *engine, clcb_pre_scan callback) {
|
|
engine->cb_pre_scan = callback;
|
|
}
|
|
|
|
void cl_engine_set_clcb_post_scan(struct cl_engine *engine, clcb_post_scan callback) {
|
|
engine->cb_post_scan = callback;
|
|
}
|
|
|
|
void cl_engine_set_clcb_sigload(struct cl_engine *engine, clcb_sigload callback, void *context) {
|
|
engine->cb_sigload = callback;
|
|
engine->cb_sigload_ctx = callback ? context : NULL;
|
|
}
|
|
|
|
void cl_engine_set_clcb_hash(struct cl_engine *engine, clcb_hash callback)
|
|
{
|
|
engine->cb_hash = callback;
|
|
}
|
|
|
|
void cl_engine_set_clcb_meta(struct cl_engine *engine, clcb_meta callback)
|
|
{
|
|
engine->cb_meta = callback;
|
|
}
|
|
|