libclamav/readdb.h
9b8e00a0
 /*
e1cbc270
  *  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
 
a2f27109
 #if HAVE_CONFIG_H
 #include "clamav-config.h"
 #endif
 
53721687
 #include "clamav.h"
056d95dc
 #include "str.h"
e8ae4fae
 #include "cvd.h"
056d95dc
 
a2f27109
 struct cli_matcher;
 
8650c790
 /* NOTE: We don't include .info in CLI_DBEXT because they are only used for
  * one specific purpose - verifying the contents of database container files.
  * This list is geared towards file extensions of files that users can provide
  * to ClamAV directly. */
baeb6253
 #ifdef HAVE_YARA
288057e9
 #define CLI_DBEXT(ext)                   \
     (                                    \
         cli_strbcasestr(ext, ".db") ||   \
         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") ||  \
         cli_strbcasestr(ext, ".yar") ||  \
         cli_strbcasestr(ext, ".yara") || \
afe940da
         cli_strbcasestr(ext, ".pwdb") || \
         cli_strbcasestr(ext, ".ign") ||  \
         cli_strbcasestr(ext, ".ign2") || \
         cli_strbcasestr(ext, ".imp"))
baeb6253
 #else
e1ad6559
 #define CLI_DBEXT(ext)                   \
     (                                    \
         cli_strbcasestr(ext, ".db") ||   \
         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") ||  \
afe940da
         cli_strbcasestr(ext, ".ioc") ||  \
         cli_strbcasestr(ext, ".pwdb") || \
         cli_strbcasestr(ext, ".ign") ||  \
         cli_strbcasestr(ext, ".ign2") || \
         cli_strbcasestr(ext, ".imp"))
baeb6253
 #endif
056d95dc
 
86eddf11
 char *cli_virname(const char *virname, unsigned int official);
9b8e00a0
 
102cd430
 cl_error_t 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);
b2197a09
 
102cd430
 cl_error_t 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
 
102cd430
 cl_error_t 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
 
102cd430
 cl_error_t cli_initroots(struct cl_engine *engine, unsigned int options);
a96eead4
 
baeb6253
 #ifdef HAVE_YARA
102cd430
 cl_error_t cli_yara_init(struct cl_engine *engine);
5842265f
 
b6ad4322
 void cli_yara_free(struct cl_engine *engine);
baeb6253
 #endif
5842265f
 
9b8e00a0
 #endif