libclamav/regex_list.h
bd912dd8
 /*
  *  Match a string against a list of patterns/regexes.
  *
e1cbc270
  *  Copyright (C) 2013-2019 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
  *  Copyright (C) 2007-2013 Sourcefire, Inc.
2023340a
  *
  *  Authors: Török Edvin
bd912dd8
  *
  *  This program is free software; you can redistribute it and/or modify
2023340a
  *  it under the terms of the GNU General Public License version 2 as
38a00199
  *  published by the Free Software Foundation.
bd912dd8
  *
  *  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 _REGEX_LIST_H
 #define _REGEX_LIST_H
 
b5341ac0
 #include "phishcheck.h"
e8ae4fae
 #include "readdb.h"
 #include "matcher.h"
e0ac80ab
 #include "filtering.h"
9309eff0
 #include "hashtab.h"
056d95dc
 #include <zlib.h> /* for gzFile */
2e11bcdf
 
0728972e
 #include "mpool.h"
 
a2d14e06
 struct regex_list_ht {
288057e9
     struct regex_list* head;
     struct regex_list* tail;
a2d14e06
 };
 
bd912dd8
 struct regex_matcher {
288057e9
     struct cli_hashtable suffix_hash;
     size_t suffix_cnt;
     struct regex_list_ht* suffix_regexes;
     size_t root_regex_idx;
     size_t regex_cnt;
     regex_t** all_pregs;
     struct cli_matcher suffixes;
     struct cli_matcher sha256_hashes;
     struct cli_hashset sha256_pfx_set;
     struct cli_matcher hostkey_prefix;
     struct filter filter;
0728972e
 #ifdef USE_MPOOL
288057e9
     mpool_t* mempool;
0728972e
 #endif
288057e9
     int list_inited : 2;
     int list_loaded : 2;
     int list_built : 2;
bd912dd8
 };
 
102cd430
 cl_error_t cli_build_regex_list(struct regex_matcher* matcher);
 cl_error_t regex_list_add_pattern(struct regex_matcher* matcher, char* pattern);
 cl_error_t regex_list_match(struct regex_matcher* matcher, char* real_url, const char* display_url, const struct pre_fixup_info* pre_fixup, int hostOnly, const char** info, int is_whitelist);
 cl_error_t init_regex_list(struct regex_matcher* matcher, uint8_t dconf_prefiltering);
 cl_error_t load_regex_matcher(struct cl_engine* engine, struct regex_matcher* matcher, FILE* fd, unsigned int* signo, unsigned int options, int is_whitelist, struct cli_dbio* dbio, uint8_t dconf_prefiltering);
bd912dd8
 void regex_list_cleanup(struct regex_matcher* matcher);
 void regex_list_done(struct regex_matcher* matcher);
 int is_regex_ok(struct regex_matcher* matcher);
3da4dd4c
 
bd912dd8
 #endif