libclamav/readdb.h
9b8e00a0
 /*
c442ca9c
  *  Copyright (C) 2013-2019 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
  *  Copyright (C) 2007-2013 Sourcefire, Inc.
  *  Copyright (C) 2002-2007 Tomasz Kojm <tkojm@clamav.net>
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"
e8ae4fae
 #include "cvd.h"
056d95dc
 
baeb6253
 #ifdef HAVE_YARA
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")   ||	\
0fcc8112
 	cli_strbcasestr(ext, ".hsb")   ||	\
 	cli_strbcasestr(ext, ".hsu")   ||	\
 	cli_strbcasestr(ext, ".sfp")   ||	\
 	cli_strbcasestr(ext, ".msb")   ||	\
 	cli_strbcasestr(ext, ".msu")   ||	\
056d95dc
 	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")   ||	\
cdddd014
 	cli_strbcasestr(ext, ".cud")   ||	\
55094a9c
 	cli_strbcasestr(ext, ".cdb")   ||	\
b0357255
 	cli_strbcasestr(ext, ".cat")   ||	\
c05ac24f
 	cli_strbcasestr(ext, ".crb")   ||	\
2abe7362
 	cli_strbcasestr(ext, ".idb")   ||	\
186d22d1
 	cli_strbcasestr(ext, ".ioc")   ||	\
 	cli_strbcasestr(ext, ".yar")   ||	\
ac0cbde8
 	cli_strbcasestr(ext, ".yara")  ||	\
 	cli_strbcasestr(ext, ".pwdb")		\
056d95dc
     )
baeb6253
 #else
 #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, ".hsb")   ||	\
 	cli_strbcasestr(ext, ".hsu")   ||	\
 	cli_strbcasestr(ext, ".sfp")   ||	\
 	cli_strbcasestr(ext, ".msb")   ||	\
 	cli_strbcasestr(ext, ".msu")   ||	\
 	cli_strbcasestr(ext, ".ndb")   ||	\
 	cli_strbcasestr(ext, ".ndu")   ||	\
 	cli_strbcasestr(ext, ".ldb")   ||	\
 	cli_strbcasestr(ext, ".ldu")   ||	\
 	cli_strbcasestr(ext, ".sdb")   ||	\
 	cli_strbcasestr(ext, ".zmd")   ||	\
 	cli_strbcasestr(ext, ".rmd")   ||	\
 	cli_strbcasestr(ext, ".pdb")   ||	\
 	cli_strbcasestr(ext, ".gdb")   ||	\
 	cli_strbcasestr(ext, ".wdb")   ||	\
 	cli_strbcasestr(ext, ".cbc")   ||	\
 	cli_strbcasestr(ext, ".ftm")   ||	\
 	cli_strbcasestr(ext, ".cfg")   ||	\
 	cli_strbcasestr(ext, ".cvd")   ||	\
 	cli_strbcasestr(ext, ".cld")   ||	\
 	cli_strbcasestr(ext, ".cud")   ||	\
 	cli_strbcasestr(ext, ".cdb")   ||	\
 	cli_strbcasestr(ext, ".cat")   ||	\
 	cli_strbcasestr(ext, ".crb")   ||	\
 	cli_strbcasestr(ext, ".idb")   ||	\
 	cli_strbcasestr(ext, ".ioc")		\
     )
 #endif
056d95dc
 
86eddf11
 char *cli_virname(const char *virname, unsigned int official);
9b8e00a0
 
b2197a09
 int cli_sigopts_handler(struct cli_matcher *root, const char *virname, const char *hexsig, uint8_t sigopts, uint16_t rtype, uint16_t type, const char *offset, uint8_t target, const uint32_t *lsigid, unsigned int options);
 
dc70379a
 int cli_parse_add(struct cli_matcher *root, const char *virname, const char *hexsig, uint8_t sigopts, uint16_t rtype, uint16_t type, const char *offset, uint8_t target, const uint32_t *lsigid, unsigned int options);
ec285505
 
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);
 
baeb6253
 #ifdef HAVE_YARA
b6ad4322
 int cli_yara_init(struct cl_engine *engine);
5842265f
 
b6ad4322
 void cli_yara_free(struct cl_engine *engine);
baeb6253
 #endif
5842265f
 
9b8e00a0
 #endif