suricata
|
#include "suricata-common.h"
#include "detect.h"
#include "reputation.h"
#include "threads.h"
#include "conf.h"
#include "util-byte.h"
#include "util-debug.h"
#include "util-error.h"
#include "util-ip.h"
#include "util-path.h"
#include "util-print.h"
#include "util-unittest.h"
#include "util-validate.h"
#include "tests/reputation.c"
Go to the source code of this file.
Macros | |
#define | SREP_SHORTNAME_LEN 32 |
Functions | |
SC_ATOMIC_DECLARE (uint32_t, srep_eversion) | |
void | SRepResetVersion (void) |
int8_t | SRepCIDRGetIPRepSrc (SRepCIDRTree *cidr_ctx, Packet *p, uint8_t cat, uint32_t version) |
int8_t | SRepCIDRGetIPRepDst (SRepCIDRTree *cidr_ctx, Packet *p, uint8_t cat, uint32_t version) |
void | SRepReloadComplete (void) |
Increment effective reputation version after a rule/reputation reload is complete. More... | |
void | SRepFreeHostData (Host *h) |
int | SRepHostTimedOut (Host *h) |
Check if a Host is timed out wrt ip rep, meaning a new version is in place. More... | |
uint8_t | SRepCatGetByShortname (char *shortname) |
int | SRepLoadCatFileFromFD (FILE *fp) |
int | SRepLoadFileFromFD (SRepCIDRTree *cidr_ctx, FILE *fp) |
int | SRepInit (DetectEngineCtx *de_ctx) |
init reputation More... | |
void | SRepDestroy (DetectEngineCtx *de_ctx) |
IP Reputation Module, initial API for IPV4 and IPV6 feed
Definition in file reputation.c.
#define SREP_SHORTNAME_LEN 32 |
Definition at line 338 of file reputation.c.
SC_ATOMIC_DECLARE | ( | uint32_t | , |
srep_eversion | |||
) |
effective reputation version, atomic as the host time out code will use it to check if a host's reputation info is outdated.
uint8_t SRepCatGetByShortname | ( | char * | shortname | ) |
Definition at line 340 of file reputation.c.
References SREP_MAX_CATS.
int8_t SRepCIDRGetIPRepDst | ( | SRepCIDRTree * | cidr_ctx, |
Packet * | p, | ||
uint8_t | cat, | ||
uint32_t | version | ||
) |
Definition at line 158 of file reputation.c.
int8_t SRepCIDRGetIPRepSrc | ( | SRepCIDRTree * | cidr_ctx, |
Packet * | p, | ||
uint8_t | cat, | ||
uint32_t | version | ||
) |
Definition at line 146 of file reputation.c.
void SRepDestroy | ( | DetectEngineCtx * | de_ctx | ) |
Definition at line 654 of file reputation.c.
References de_ctx, SCFree, SCRadixReleaseRadixTree(), SREP_MAX_CATS, DetectEngineCtx_::srepCIDR_ctx, SRepCIDRTree_::srepIPV4_tree, and SRepCIDRTree_::srepIPV6_tree.
void SRepFreeHostData | ( | Host * | h | ) |
Definition at line 178 of file reputation.c.
References DEBUG_VALIDATE_BUG_ON, HostDecrUsecnt, Host_::iprep, SC_ATOMIC_GET, and SCFree.
Referenced by HostClearMemory().
int SRepHostTimedOut | ( | Host * | h | ) |
Check if a Host is timed out wrt ip rep, meaning a new version is in place.
We clean up the old version here.
h | host |
0 | not timed out |
1 | timed out |
Definition at line 204 of file reputation.c.
References BUG_ON, and Host_::iprep.
int SRepInit | ( | DetectEngineCtx * | de_ctx | ) |
init reputation
de_ctx | detection engine ctx for tracking iprep version |
0 | ok |
-1 | error |
If this function is called more than once, the category file is not reloaded.
Definition at line 577 of file reputation.c.
References de_ctx, SCCalloc, and DetectEngineCtx_::srepCIDR_ctx.
int SRepLoadCatFileFromFD | ( | FILE * | fp | ) |
Definition at line 368 of file reputation.c.
References Address_::family.
int SRepLoadFileFromFD | ( | SRepCIDRTree * | cidr_ctx, |
FILE * | fp | ||
) |
Definition at line 434 of file reputation.c.
References Address_::family, and len.
void SRepReloadComplete | ( | void | ) |
Increment effective reputation version after a rule/reputation reload is complete.
Definition at line 172 of file reputation.c.
References SC_ATOMIC_ADD, and SCLogDebug.
void SRepResetVersion | ( | void | ) |
Definition at line 62 of file reputation.c.