clamav-devel/examples/ex1.c
e3aaff8e
 /*
  *  Compilation: gcc -Wall ex1.c -o ex1 -lclamav
  *
  *  Copyright (C) 2002 Tomasz Kojm <zolw@konarski.edu.pl>
  *
  *  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.
  */
 
 #include <stdio.h>
a0977bfe
 #include <stdlib.h>
e3aaff8e
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <clamav.h>
 
 int main(int argc, char **argv)
 {
6c3c779d
 	int fd, ret, no = 0;
e3aaff8e
 	unsigned long int size = 0;
 	long double mb;
 	char *virname;
 	struct cl_node *root = NULL;
 	struct cl_limits limits;
 
     if(argc != 2) {
 	printf("Usage: %s file\n", argv[0]);
 	exit(2);
     }
 
     /* load all available databases from the default (hardcoded) data
      * directory
      */
 
     if((ret = cl_loaddbdir(cl_retdbdir(), &root, &no))) {
 	printf("cl_loaddbdir: %s\n", cl_perror(ret));
 	exit(2);
     }
 
9f6cc5a3
     printf("Loaded %d signatures.\n", no);
e3aaff8e
 
     /* build the trie */
     cl_buildtrie(root);
 
     if((fd = open(argv[1], O_RDONLY)) == -1) {
 	printf("Can't open file %s\n", argv[1]);
 	exit(2);
     }
 
9f6cc5a3
     /* set up archive limits */
a6945b5d
     memset(&limits, 0, sizeof(struct cl_limits));
e3aaff8e
     limits.maxfiles = 1000; /* max files */
     limits.maxfilesize = 10 * 1048576; /* maximal archived file size == 10 Mb */
     limits.maxreclevel = 8; /* maximal recursion level */
 
9f6cc5a3
     /* scan descriptor (with archive and mail scanning enabled) */
e3aaff8e
     if((ret = cl_scandesc(fd, &virname, &size, root, &limits, CL_ARCHIVE | CL_MAIL)) == CL_VIRUS)
 	printf("Detected %s virus.\n", virname);
     else {
 	printf("No virus detected.\n");
 	if(ret != CL_CLEAN)
 	    printf("Error: %s\n", cl_perror(ret));
     }
 
     mb = size * (CL_COUNT_PRECISION / 1024) / 1024.0;
     printf("Data scanned: %2.2Lf Mb\n", mb);
 
     cl_freetrie(root);
 
     close(fd);
     exit(ret == CL_VIRUS ? 1 : 0);
 }