examples/ex1.c
e3aaff8e
 /*
  *  Compilation: gcc -Wall ex1.c -o ex1 -lclamav
  *
122bc02e
  *  Copyright (C) 2002 - 2006 Tomasz Kojm <tkojm@clamav.net>
e3aaff8e
  *
  *  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
48b7b4a7
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
e3aaff8e
  */
 
 #include <stdio.h>
a0977bfe
 #include <stdlib.h>
afb48b28
 #include <string.h>
e3aaff8e
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <clamav.h>
 
122bc02e
 /*
  * Exit codes:
  *  0: clean
  *  1: infected
  *  2: error
  */
 
e3aaff8e
 int main(int argc, char **argv)
 {
122bc02e
 	int fd, ret;
e3aaff8e
 	unsigned long int size = 0;
122bc02e
 	unsigned int sigs = 0;
e3aaff8e
 	long double mb;
afb48b28
 	const char *virname;
122bc02e
 	struct cl_engine *engine = NULL;
e3aaff8e
 	struct cl_limits limits;
 
afb48b28
 
e3aaff8e
     if(argc != 2) {
 	printf("Usage: %s file\n", argv[0]);
 	exit(2);
     }
 
afb48b28
     if((fd = open(argv[1], O_RDONLY)) == -1) {
 	printf("Can't open file %s\n", argv[1]);
 	exit(2);
     }
 
     /* load all available databases from default directory */
122bc02e
     if((ret = cl_load(cl_retdbdir(), &engine, &sigs, CL_DB_STDOPT))) {
189e688a
 	printf("cl_load: %s\n", cl_strerror(ret));
afb48b28
 	close(fd);
e3aaff8e
 	exit(2);
     }
 
122bc02e
     printf("Loaded %d signatures.\n", sigs);
e3aaff8e
 
8000d078
     /* build engine */
122bc02e
     if((ret = cl_build(engine))) {
2d70a403
 	printf("Database initialization error: %s\n", cl_strerror(ret));;
122bc02e
 	cl_free(engine);
afb48b28
 	close(fd);
e3aaff8e
 	exit(2);
     }
 
9f6cc5a3
     /* set up archive limits */
a6945b5d
     memset(&limits, 0, sizeof(struct cl_limits));
e3aaff8e
     limits.maxfiles = 1000; /* max files */
122bc02e
     limits.maxfilesize = 10 * 1048576; /* maximum size of archived/compressed
 					* file (files exceeding this limit
 					* will be ignored)
 					*/
dab42957
     limits.maxreclevel = 5; /* maximum recursion level for archives */
     limits.maxmailrec = 64; /* maximum recursion level for mail files */
122bc02e
     limits.maxratio = 200; /* maximum compression ratio */
e3aaff8e
 
122bc02e
     /* scan file descriptor */
     if((ret = cl_scandesc(fd, &virname, &size, engine, &limits, CL_SCAN_STDOPT)) == CL_VIRUS) {
afb48b28
 	printf("Virus detected: %s\n", virname);
122bc02e
     } else {
 	if(ret == CL_CLEAN) {
 	    printf("No virus detected.\n");
 	} else {
 	    printf("Error: %s\n", cl_strerror(ret));
 	    cl_free(engine);
189e688a
 	    close(fd);
122bc02e
 	    exit(2);
 	}
e3aaff8e
     }
64d54968
     close(fd);
e3aaff8e
 
122bc02e
     /* calculate size of scanned data */
e3aaff8e
     mb = size * (CL_COUNT_PRECISION / 1024) / 1024.0;
122bc02e
     printf("Data scanned: %2.2Lf MB\n", mb);
 
     /* free memory */
     cl_free(engine);
e3aaff8e
 
     exit(ret == CL_VIRUS ? 1 : 0);
 }