mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.1 KiB
C
78 lines
3.1 KiB
C
/* Copyright (C) 2007-2010 Open Information Security Foundation
|
|
*
|
|
* You can copy, redistribute or modify this Program 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
|
|
* version 2 along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
/**
|
|
* \file
|
|
*
|
|
* \author Victor Julien <victor@inliniac.net>
|
|
*/
|
|
|
|
#ifndef __DETECT_ENGINE_SIGGROUP_H__
|
|
#define __DETECT_ENGINE_SIGGROUP_H__
|
|
|
|
int SigGroupHeadAppendSig(const DetectEngineCtx *, SigGroupHead **, const Signature *);
|
|
int SigGroupHeadClearSigs(SigGroupHead *);
|
|
int SigGroupHeadCopySigs(DetectEngineCtx *, SigGroupHead *, SigGroupHead **);
|
|
|
|
void SigGroupHeadFree(SigGroupHead *);
|
|
|
|
void SigGroupHeadFreeMpmArrays(DetectEngineCtx *);
|
|
|
|
SigGroupHead *SigGroupHeadHashLookup(DetectEngineCtx *, SigGroupHead *);
|
|
SigGroupHead *SigGroupHeadMpmHashLookup(DetectEngineCtx *, SigGroupHead *);
|
|
SigGroupHead *SigGroupHeadDPortHashLookup(DetectEngineCtx *, SigGroupHead *);
|
|
|
|
int SigGroupHeadMpmHashAdd(DetectEngineCtx *, SigGroupHead *);
|
|
int SigGroupHeadHashAdd(DetectEngineCtx *, SigGroupHead *);
|
|
int SigGroupHeadDPortHashAdd(DetectEngineCtx *, SigGroupHead *);
|
|
|
|
void SigGroupHeadHashFree(DetectEngineCtx *);
|
|
void SigGroupHeadMpmHashFree(DetectEngineCtx *);
|
|
void SigGroupHeadDPortHashFree(DetectEngineCtx *);
|
|
|
|
int SigGroupHeadHashInit(DetectEngineCtx *);
|
|
int SigGroupHeadMpmHashInit(DetectEngineCtx *);
|
|
int SigGroupHeadDPortHashInit(DetectEngineCtx *);
|
|
|
|
int SigGroupHeadHashRemove(DetectEngineCtx *, SigGroupHead *);
|
|
|
|
void SigGroupHeadInitDataFree(SigGroupHeadInitData *sghid);
|
|
void SigGroupHeadSetSigCnt(SigGroupHead *sgh, uint32_t max_idx);
|
|
void SigGroupHeadSetProtoAndDirection(SigGroupHead *sgh,
|
|
uint8_t ipproto, int dir);
|
|
int SigGroupHeadBuildMatchArray (DetectEngineCtx *de_ctx, SigGroupHead *sgh,
|
|
uint32_t max_idx);
|
|
void SigGroupHeadFreeSigArrays(DetectEngineCtx *de_ctx);
|
|
|
|
int SigGroupHeadContainsSigId (DetectEngineCtx *de_ctx, SigGroupHead *sgh,
|
|
uint32_t sid);
|
|
|
|
void SigGroupHeadRegisterTests(void);
|
|
void SigGroupHeadPrintSigs(DetectEngineCtx *de_ctx, SigGroupHead *sgh);
|
|
|
|
void SigGroupHeadStore(DetectEngineCtx *, SigGroupHead *);
|
|
void SigGroupHeadSetFilemagicFlag(DetectEngineCtx *, SigGroupHead *);
|
|
void SigGroupHeadSetFilestoreCount(DetectEngineCtx *, SigGroupHead *);
|
|
void SigGroupHeadSetFileHashFlag(DetectEngineCtx *, SigGroupHead *);
|
|
void SigGroupHeadSetFilesizeFlag(DetectEngineCtx *, SigGroupHead *);
|
|
uint16_t SigGroupHeadGetMinMpmSize(DetectEngineCtx *de_ctx,
|
|
SigGroupHead *sgh, int list);
|
|
|
|
int SigGroupHeadBuildNonMpmArray(DetectEngineCtx *de_ctx, SigGroupHead *sgh);
|
|
|
|
#endif /* __DETECT_ENGINE_SIGGROUP_H__ */
|