213 lines
7.7 KiB
C
213 lines
7.7 KiB
C
/*
|
|
* Copyright (C) 2013-2022 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>
|
|
*
|
|
* Authors: Tomasz Kojm
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __READDB_H
|
|
#define __READDB_H
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "clamav-config.h"
|
|
#endif
|
|
|
|
#include "clamav.h"
|
|
#include "str.h"
|
|
#include "cvd.h"
|
|
#include "matcher.h"
|
|
|
|
#define MAX_LDB_SUBSIGS 64
|
|
|
|
struct cli_matcher;
|
|
|
|
/* 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. */
|
|
#ifdef HAVE_YARA
|
|
#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") || \
|
|
cli_strbcasestr(ext, ".pwdb") || \
|
|
cli_strbcasestr(ext, ".ign") || \
|
|
cli_strbcasestr(ext, ".ign2") || \
|
|
cli_strbcasestr(ext, ".imp"))
|
|
#else
|
|
#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, ".pwdb") || \
|
|
cli_strbcasestr(ext, ".ign") || \
|
|
cli_strbcasestr(ext, ".ign2") || \
|
|
cli_strbcasestr(ext, ".imp"))
|
|
#endif
|
|
|
|
char *cli_virname(const char *virname, unsigned int official);
|
|
|
|
/**
|
|
* @brief Parse & load a body-based pattern for a logical signature (LDB or Yara)
|
|
* that may have subsignature modifiers at the end.
|
|
*
|
|
* This function creates a new pattern with the required modification before calling
|
|
* cli_add_content_match_pattern() to load the content patterns to match with the AC matcher or BM matcher.
|
|
*
|
|
* For more info about subsignature modifiers: https://docs.clamav.net/manual/Signatures/LogicalSignatures.html#subsignature-modifiers
|
|
*
|
|
* @param root
|
|
* @param virname
|
|
* @param hexsig
|
|
* @param sigopts
|
|
* @param rtype
|
|
* @param type
|
|
* @param offset
|
|
* @param lsigid
|
|
* @param options
|
|
* @return cl_error_t
|
|
*/
|
|
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, const uint32_t *lsigid, unsigned int options);
|
|
|
|
/**
|
|
* @brief Parse body-based patterns that DO NOT have subsignature modifiers.
|
|
*
|
|
* This function will split up body-based signature patterns that have {n-m} and * wildcards
|
|
* into multiple subsignatures, adding each.
|
|
*
|
|
* @param root
|
|
* @param virname
|
|
* @param hexsig
|
|
* @param sigopts
|
|
* @param rtype
|
|
* @param type
|
|
* @param offset
|
|
* @param lsigid
|
|
* @param options
|
|
* @return cl_error_t
|
|
*/
|
|
cl_error_t cli_add_content_match_pattern(struct cli_matcher *root, const char *virname, const char *hexsig,
|
|
uint8_t sigopts, uint16_t rtype, uint16_t type,
|
|
const char *offset, const uint32_t *lsigid, unsigned int options);
|
|
|
|
/**
|
|
* @brief Parse a subsignature from a logical signature.
|
|
*
|
|
* Called once for each subsignature in a logical signature.
|
|
* Not for use in other signature types (ndb, yara, etc).
|
|
*
|
|
* This function determines what type of subsiganture it is, whether that's:
|
|
* - a macro subsignature
|
|
* - a pcre subsignature
|
|
* - a byte compare subsignature
|
|
* - a fuzzy hash subsignature
|
|
* - or else treated as a file content matching subsignature.
|
|
*
|
|
* @param root
|
|
* @param virname
|
|
* @param hexsig
|
|
* @param offset
|
|
* @param lsigid An array of 2 uint32_t numbers: lsig_id and subsig_id. May be NULL for testing.
|
|
* @param options
|
|
* @param current_subsig_index
|
|
* @param num_subsigs
|
|
* @param tdb
|
|
* @return cl_error_t
|
|
*/
|
|
cl_error_t readdb_parse_ldb_subsignature(struct cli_matcher *root, const char *virname, char *hexsig,
|
|
const char *offset, const uint32_t *lsigid, unsigned int options,
|
|
int current_subsig_index, int num_subsigs, struct cli_lsig_tdb *tdb);
|
|
|
|
cl_error_t cli_load(const char *filename, struct cl_engine *engine, unsigned int *signo, unsigned int options, struct cli_dbio *dbio);
|
|
|
|
char *cli_dbgets(char *buff, unsigned int size, FILE *fs, struct cli_dbio *dbio);
|
|
|
|
cl_error_t cli_initroots(struct cl_engine *engine, unsigned int options);
|
|
|
|
#ifdef HAVE_YARA
|
|
cl_error_t cli_yara_init(struct cl_engine *engine);
|
|
|
|
void cli_yara_free(struct cl_engine *engine);
|
|
#endif
|
|
|
|
#endif
|