2003-07-29 15:48:06 +00:00
|
|
|
/*
|
|
|
|
* Compilation: gcc -Wall ex1.c -o ex1 -lclamav
|
|
|
|
*
|
2025-02-14 10:24:30 -05:00
|
|
|
* Copyright (C) 2013-2025 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
2019-01-25 10:15:50 -05:00
|
|
|
* Copyright (C) 2007-2013 Sourcefire, Inc.
|
2008-03-18 15:40:41 +00:00
|
|
|
* Author: Tomasz Kojm <tkojm@clamav.net>
|
|
|
|
*
|
2003-07-29 15:48:06 +00:00
|
|
|
* 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
|
2006-04-09 19:59:28 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
* MA 02110-1301, USA.
|
2003-07-29 15:48:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2003-11-26 13:33:51 +00:00
|
|
|
#include <stdlib.h>
|
2004-03-29 00:00:58 +00:00
|
|
|
#include <string.h>
|
2021-06-22 11:08:22 -07:00
|
|
|
#ifndef _WIN32
|
2003-07-29 15:48:06 +00:00
|
|
|
#include <unistd.h>
|
2021-06-22 11:08:22 -07:00
|
|
|
#endif
|
2003-07-29 15:48:06 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2020-12-18 09:13:17 -08:00
|
|
|
|
2003-07-29 15:48:06 +00:00
|
|
|
#include <clamav.h>
|
|
|
|
|
2020-12-07 15:18:29 -08:00
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2006-08-03 21:33:37 +00:00
|
|
|
/*
|
|
|
|
* Exit codes:
|
|
|
|
* 0: clean
|
|
|
|
* 1: infected
|
|
|
|
* 2: error
|
|
|
|
*/
|
|
|
|
|
2003-07-29 15:48:06 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
int fd, ret;
|
|
|
|
unsigned long int size = 0;
|
|
|
|
unsigned int sigs = 0;
|
|
|
|
long double mb;
|
|
|
|
const char *virname;
|
2018-11-16 11:02:15 -08:00
|
|
|
const char *filename;
|
2018-12-03 12:40:13 -05:00
|
|
|
struct cl_engine *engine;
|
2018-07-20 22:28:48 -04:00
|
|
|
struct cl_scan_options options;
|
2003-07-29 15:48:06 +00:00
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
if (argc != 2) {
|
|
|
|
printf("Usage: %s file\n", argv[0]);
|
|
|
|
return 2;
|
2003-07-29 15:48:06 +00:00
|
|
|
}
|
|
|
|
|
2018-11-16 11:02:15 -08:00
|
|
|
filename = argv[1];
|
|
|
|
|
2020-12-07 15:18:29 -08:00
|
|
|
/* Tip: Scan input should be opened as binary on Windows! */
|
|
|
|
if ((fd = open(argv[1], O_RDONLY | O_BINARY)) == -1) {
|
2018-12-03 12:40:13 -05:00
|
|
|
printf("Can't open file %s\n", argv[1]);
|
|
|
|
return 2;
|
2009-02-20 14:36:53 +00:00
|
|
|
}
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
if ((ret = cl_init(CL_INIT_DEFAULT)) != CL_SUCCESS) {
|
|
|
|
printf("Can't initialize libclamav: %s\n", cl_strerror(ret));
|
|
|
|
return 2;
|
2009-02-23 12:20:58 +00:00
|
|
|
}
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
if (!(engine = cl_engine_new())) {
|
|
|
|
printf("Can't create new engine\n");
|
|
|
|
return 2;
|
2004-03-29 00:00:58 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 11:29:15 -04:00
|
|
|
/* Example version macro usage to determine if new feature is available */
|
|
|
|
#if defined(LIBCLAMAV_VERSION_NUM) && (LIBCLAMAV_VERSION_NUM >= 0x090400)
|
|
|
|
/* Example feature usage lowering max scan time to 15 seconds. */
|
|
|
|
cl_engine_set_num(engine, CL_ENGINE_MAX_SCANTIME, 15000);
|
|
|
|
#endif
|
|
|
|
|
2004-03-29 00:00:58 +00:00
|
|
|
/* load all available databases from default directory */
|
2018-12-03 12:40:13 -05:00
|
|
|
if ((ret = cl_load(cl_retdbdir(), engine, &sigs, CL_DB_STDOPT)) != CL_SUCCESS) {
|
|
|
|
printf("cl_load: %s\n", cl_strerror(ret));
|
|
|
|
close(fd);
|
2009-02-20 14:36:53 +00:00
|
|
|
cl_engine_free(engine);
|
2018-12-03 12:40:13 -05:00
|
|
|
return 2;
|
2003-07-29 15:48:06 +00:00
|
|
|
}
|
|
|
|
|
2009-02-20 14:36:53 +00:00
|
|
|
printf("Loaded %u signatures.\n", sigs);
|
2003-07-29 15:48:06 +00:00
|
|
|
|
2004-07-19 17:54:40 +00:00
|
|
|
/* build engine */
|
2018-12-03 12:40:13 -05:00
|
|
|
if ((ret = cl_engine_compile(engine)) != CL_SUCCESS) {
|
|
|
|
printf("Database initialization error: %s\n", cl_strerror(ret));
|
2009-02-20 14:36:53 +00:00
|
|
|
cl_engine_free(engine);
|
2018-12-03 12:40:13 -05:00
|
|
|
close(fd);
|
|
|
|
return 2;
|
2003-07-29 15:48:06 +00:00
|
|
|
}
|
|
|
|
|
2006-08-03 21:33:37 +00:00
|
|
|
/* scan file descriptor */
|
2018-07-20 22:28:48 -04:00
|
|
|
memset(&options, 0, sizeof(struct cl_scan_options));
|
2018-12-03 12:40:13 -05:00
|
|
|
options.parse |= ~0; /* enable all parsers */
|
2018-07-20 22:28:48 -04:00
|
|
|
options.general |= CL_SCAN_GENERAL_HEURISTICS; /* enable heuristic alert options */
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
if ((ret = cl_scandesc(fd, filename, &virname, &size, engine, &options)) == CL_VIRUS) {
|
|
|
|
printf("Virus detected: %s\n", virname);
|
2006-08-03 21:33:37 +00:00
|
|
|
} else {
|
2018-12-03 12:40:13 -05:00
|
|
|
if (ret == CL_CLEAN) {
|
|
|
|
printf("No virus detected.\n");
|
|
|
|
} else {
|
|
|
|
printf("Error: %s\n", cl_strerror(ret));
|
|
|
|
cl_engine_free(engine);
|
|
|
|
close(fd);
|
|
|
|
return 2;
|
|
|
|
}
|
2003-07-29 15:48:06 +00:00
|
|
|
}
|
2004-09-04 21:30:11 +00:00
|
|
|
close(fd);
|
2003-07-29 15:48:06 +00:00
|
|
|
|
2009-02-20 14:36:53 +00:00
|
|
|
/* free memory */
|
|
|
|
cl_engine_free(engine);
|
|
|
|
|
2006-08-03 21:33:37 +00:00
|
|
|
/* calculate size of scanned data */
|
2003-07-29 15:48:06 +00:00
|
|
|
mb = size * (CL_COUNT_PRECISION / 1024) / 1024.0;
|
2006-08-03 21:33:37 +00:00
|
|
|
printf("Data scanned: %2.2Lf MB\n", mb);
|
|
|
|
|
2009-02-20 14:36:53 +00:00
|
|
|
return ret == CL_VIRUS ? 1 : 0;
|
2003-07-29 15:48:06 +00:00
|
|
|
}
|