libclamav/readdb.h
9b8e00a0
 /*
33872a43
  *  Copyright (C) 2007-2009 Sourcefire, Inc.
2023340a
  *
  *  Authors: Tomasz Kojm
9b8e00a0
  *
  *  This program is free software; you can redistribute it and/or modify
bb34cb31
  *  it under the terms of the GNU General Public License version 2 as
  *  published by the Free Software Foundation.
9b8e00a0
  *
  *  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.
9b8e00a0
  */
 
888f5794
 #ifndef __READDB_H
 #define __READDB_H
9b8e00a0
 
53721687
 #include "clamav.h"
bedc58de
 #include "matcher.h"
056d95dc
 #include "str.h"
6038397e
 #include "cltypes.h"
e8ae4fae
 #include "cvd.h"
056d95dc
 
 #define CLI_DBEXT(ext)				\
     (						\
 	cli_strbcasestr(ext, ".db")    ||	\
 	cli_strbcasestr(ext, ".db2")   ||	\
 	cli_strbcasestr(ext, ".db3")   ||	\
 	cli_strbcasestr(ext, ".hdb")   ||	\
 	cli_strbcasestr(ext, ".hdu")   ||	\
 	cli_strbcasestr(ext, ".fp")    ||	\
 	cli_strbcasestr(ext, ".mdb")   ||	\
 	cli_strbcasestr(ext, ".mdu")   ||	\
 	cli_strbcasestr(ext, ".ndb")   ||	\
 	cli_strbcasestr(ext, ".ndu")   ||	\
677fc4ba
 	cli_strbcasestr(ext, ".ldb")   ||	\
 	cli_strbcasestr(ext, ".ldu")   ||	\
056d95dc
 	cli_strbcasestr(ext, ".sdb")   ||	\
 	cli_strbcasestr(ext, ".zmd")   ||	\
 	cli_strbcasestr(ext, ".rmd")   ||	\
 	cli_strbcasestr(ext, ".pdb")   ||	\
0810d861
 	cli_strbcasestr(ext, ".gdb")   ||	\
056d95dc
 	cli_strbcasestr(ext, ".wdb")   ||	\
52dd3a6b
 	cli_strbcasestr(ext, ".cbc")   ||	\
6038397e
 	cli_strbcasestr(ext, ".ftm")   ||	\
ef5a679d
 	cli_strbcasestr(ext, ".cfg")   ||	\
9d193ff2
 	cli_strbcasestr(ext, ".cvd")   ||	\
93e08be5
 	cli_strbcasestr(ext, ".cld")   ||	\
55094a9c
 	cli_strbcasestr(ext, ".cdb")   ||	\
93e08be5
 	cli_strbcasestr(ext, ".idb")		\
056d95dc
     )
 
d6e1ef16
 char *cli_virname(char *virname, unsigned int official);
9b8e00a0
 
ec285505
 int cli_parse_add(struct cli_matcher *root, const char *virname, const char *hexsig, uint16_t rtype, uint16_t type, const char *offset, uint8_t target, const uint32_t *lsigid, unsigned int options);
 
15850fc6
 int cli_load(const char *filename, struct cl_engine *engine, unsigned int *signo, unsigned int options, struct cli_dbio *dbio);
056d95dc
 
e8ae4fae
 char *cli_dbgets(char *buff, unsigned int size, FILE *fs, struct cli_dbio *dbio);
056d95dc
 
a96eead4
 int cli_initroots(struct cl_engine *engine, unsigned int options);
 
9b8e00a0
 #endif