Go to the documentation of this file.
52 static uint32_t srep_version = 0;
54 static uint32_t SRepIncrVersion(
void)
56 return ++srep_version;
59 static uint32_t SRepGetVersion(
void)
69 static uint32_t SRepGetEffectiveVersion(
void)
74 static void SRepCIDRFreeUserData(
void *data)
80 static SCRadix4Config iprep_radix4_config = { SRepCIDRFreeUserData, NULL };
81 static SCRadix6Config iprep_radix6_config = { SRepCIDRFreeUserData, NULL };
83 static void SRepCIDRAddNetblock(
SRepCIDRTree *cidr_ctx,
char *ip,
int cat, uint8_t value)
87 FatalError(
"Error allocating memory. Exiting");
90 user_data->
version = SRepGetVersion();
91 user_data->
rep[cat] = value;
93 if (strchr(ip,
':') != NULL) {
96 &cidr_ctx->
srep_ipv6_tree[cat], &iprep_radix6_config, ip, (
void *)user_data)) {
105 &cidr_ctx->
srep_ipv4_tree[cat], &iprep_radix4_config, ip, (
void *)user_data)) {
113 static int8_t SRepCIDRGetIPv4IPRep(
SRepCIDRTree *cidr_ctx, uint8_t *ipv4_addr, uint8_t cat)
115 void *user_data = NULL;
117 if (user_data == NULL)
124 static int8_t SRepCIDRGetIPv6IPRep(
SRepCIDRTree *cidr_ctx, uint8_t *ipv6_addr, uint8_t cat)
126 void *user_data = NULL;
128 if (user_data == NULL)
141 else if (PacketIsIPv6(p))
153 else if (PacketIsIPv6(p))
164 SCLogDebug(
"effective Reputation version %u", SRepGetEffectiveVersion());
177 static void SRepInitComplete(
void)
180 SCLogDebug(
"effective Reputation version %u", SRepGetEffectiveVersion());
197 if (h->
iprep == NULL)
200 uint32_t eversion = SRepGetEffectiveVersion();
203 SCLogDebug(
"host %p has reputation version %u, "
204 "effective version is %u", h, r->
version, eversion);
212 static int SRepCatSplitLine(
char *line, uint8_t *cat,
char *shortname,
size_t shortname_len)
214 size_t line_len = strlen(line);
215 char *ptrs[2] = {NULL,NULL};
218 char *origline = line;
220 while (i < (
int)line_len) {
221 if (line[i] ==
',' || line[i] ==
'\n' || line[i] ==
'\0' || i == (
int)(line_len - 1)) {
230 if (line >= origline + line_len)
232 if (strlen(line) == 0)
252 strlcpy(shortname, ptrs[1], shortname_len);
261 static int SRepSplitLine(
SRepCIDRTree *cidr_ctx,
char *line,
Address *ip, uint8_t *cat, uint8_t *value)
263 size_t line_len = strlen(line);
264 char *ptrs[3] = {NULL,NULL,NULL};
267 char *origline = line;
269 while (i < (
int)line_len) {
270 if (line[i] ==
',' || line[i] ==
'\n' || line[i] ==
'\r' || line[i] ==
'\0' ||
271 i == (
int)(line_len - 1)) {
280 if (line >= origline + line_len)
282 if (strlen(line) == 0)
297 if (strcmp(ptrs[0],
"ip") == 0)
307 if (strchr(ptrs[0],
'/') != NULL) {
308 SRepCIDRAddNetblock(cidr_ctx, ptrs[0], c, v);
311 if (inet_pton(AF_INET, ptrs[0], &ip->
address) == 1) {
313 }
else if (inet_pton(AF_INET6, ptrs[0], &ip->
address) == 1) {
326 #define SREP_SHORTNAME_LEN 32
333 if (strcmp(srep_cat_table[cat], shortname) == 0)
340 static int SRepLoadCatFile(
const char *filename)
343 FILE *fp = fopen(filename,
"r");
346 SCLogError(
"opening ip rep file %s: %s", filename, strerror(errno));
359 char line[8192] =
"";
361 memset(&a, 0x00,
sizeof(a));
363 memset(&srep_cat_table, 0x00,
sizeof(srep_cat_table));
365 BUG_ON(SRepGetVersion() > 0);
367 while(fgets(line, (
int)
sizeof(line), fp) != NULL) {
368 size_t len = strlen(line);
373 if (line[0] ==
'\n' || line [0] ==
'\r' || line[0] ==
' ' || line[0] ==
'#' || line[0] ==
'\t')
376 while (isspace((
unsigned char)line[--
len]));
383 if (line[
len - 1] ==
'\n' || line[
len - 1] ==
'\r') {
384 line[
len - 1] =
'\0';
389 if (SRepCatSplitLine(line, &cat, shortname,
sizeof(shortname)) == 0) {
399 if (strlen(srep_cat_table[i]) == 0)
401 SCLogDebug(
"CAT %d, name %s", i, srep_cat_table[i]);
406 static int SRepLoadFile(
SRepCIDRTree *cidr_ctx,
char *filename)
409 FILE *fp = fopen(filename,
"r");
412 SCLogError(
"opening ip rep file %s: %s", filename, strerror(errno));
425 char line[8192] =
"";
427 while(fgets(line, (
int)
sizeof(line), fp) != NULL) {
428 size_t len = strlen(line);
433 if (line[0] ==
'\n' || line [0] ==
'\r' || line[0] ==
' ' || line[0] ==
'#' || line[0] ==
'\t')
436 while (isspace((
unsigned char)line[--
len]));
443 if (line[
len - 1] ==
'\n' || line[
len - 1] ==
'\r') {
444 line[
len - 1] =
'\0';
448 memset(&a, 0x00,
sizeof(a));
451 uint8_t cat = 0, value = 0;
452 int r = SRepSplitLine(cidr_ctx, line, &a, &cat, &value);
456 if (a.
family == AF_INET) {
468 SCLogError(
"failed to get a host, increase host.memcap");
473 if (h->
iprep == NULL) {
475 if (h->
iprep != NULL) {
479 if (h->
iprep != NULL) {
484 if (rep->
version != SRepGetVersion()) {
488 rep->
version = SRepGetVersion();
489 rep->
rep[cat] = value;
491 SCLogDebug(
"host %p iprep %p setting cat %u to value %u",
492 h, h->
iprep, cat, value);
497 if (rep->
rep[i] == 0)
500 SCLogDebug(
"--> host %p iprep %p cat %d to value %u",
520 static char *SRepCompleteFilePath(
char *file)
522 const char *defaultpath = NULL;
527 if (
ConfGet(
"default-reputation-path", &defaultpath) == 1) {
529 size_t path_len =
sizeof(char) * (strlen(defaultpath) +
534 strlcpy(path, defaultpath, path_len);
535 #if defined OS_WIN32 || defined __CYGWIN__
536 if (path[strlen(path) - 1] !=
'\\')
537 strlcat(path,
"\\\\", path_len);
539 if (path[strlen(path) - 1] !=
'/')
570 const char *filename = NULL;
584 if (SRepGetVersion() == 0) {
590 (void)
ConfGet(
"reputation-categories-file", &filename);
592 if (filename == NULL && files == NULL) {
603 if (filename == NULL) {
604 SCLogError(
"\"reputation-categories-file\" not set");
610 if (SRepLoadCatFile(filename) < 0) {
612 "categories file %s",
624 char *sfile = SRepCompleteFilePath(file->
val);
626 SCLogInfo(
"Loading reputation file: %s", sfile);
628 int r = SRepLoadFile(cidr_ctx, sfile);
#define SREP_SHORTNAME_LEN
uint8_t rep[SREP_MAX_CATS]
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
void SRepFreeHostData(Host *h)
uint8_t SRepCatGetByShortname(char *shortname)
SCRadix6Node * SCRadix6TreeFindBestMatch(const SCRadix6Tree *tree, const uint8_t *key, void **user_data)
#define SC_ATOMIC_SET(name, val)
Set the value for the atomic variable.
bool SCRadix4AddKeyIPV4String(SCRadix4Tree *tree, const SCRadix4Config *config, const char *str, void *user)
Adds a new IPV4/netblock to the Radix4 tree from a string.
struct HtpBodyChunk_ * next
SCRadix4Tree SCRadix4TreeInitialize(void)
ConfNode * ConfGetNode(const char *name)
Get a ConfNode by name.
SCRadix6Tree srep_ipv6_tree[SREP_MAX_CATS]
union Address_::@26 address
void HostRelease(Host *h)
#define SC_ATOMIC_ADD(name, val)
add a value to our atomic variable
main detection engine ctx
Host * HostGetHostFromHash(Address *a)
SC_ATOMIC_DECLARE(uint32_t, srep_eversion)
#define TAILQ_FOREACH(var, head, field)
#define HostDecrUsecnt(h)
#define HostIncrUsecnt(h)
#define GET_IPV6_DST_ADDR(p)
void SCRadix4TreeRelease(SCRadix4Tree *tree, const SCRadix4Config *config)
size_t strlcpy(char *dst, const char *src, size_t siz)
int ConfGet(const char *name, const char **vptr)
Retrieve the value of a configuration node.
#define GET_IPV4_DST_ADDR_PTR(p)
size_t strlcat(char *, const char *src, size_t siz)
SRepCIDRTree * srepCIDR_ctx
int StringParseI32RangeCheck(int32_t *res, int base, size_t len, const char *str, int32_t min, int32_t max)
int SRepLoadCatFileFromFD(FILE *fp)
const char * PrintInet(int af, const void *src, char *dst, socklen_t size)
#define SCLogWarning(...)
Macro used to log WARNING messages.
SCRadix4Tree srep_ipv4_tree[SREP_MAX_CATS]
int SRepLoadFileFromFD(SRepCIDRTree *cidr_ctx, FILE *fp)
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
int StringParseU8RangeCheck(uint8_t *res, int base, size_t len, const char *str, uint8_t min, uint8_t max)
void SRepReloadComplete(void)
Increment effective reputation version after a rule/reputation reload is complete.
int SRepHostTimedOut(Host *h)
Check if a Host is timed out wrt ip rep, meaning a new version is in place.
int8_t SRepCIDRGetIPRepSrc(SRepCIDRTree *cidr_ctx, Packet *p, uint8_t cat, uint32_t version)
#define GET_IPV4_SRC_ADDR_PTR(p)
SCRadix4Node * SCRadix4TreeFindBestMatch(const SCRadix4Tree *tree, const uint8_t *key, void **user_data)
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
#define SCLogError(...)
Macro used to log ERROR messages.
#define GET_IPV6_SRC_ADDR(p)
int SRepInit(DetectEngineCtx *de_ctx)
init reputation
int8_t SRepCIDRGetIPRepDst(SRepCIDRTree *cidr_ctx, Packet *p, uint8_t cat, uint32_t version)
int PathIsRelative(const char *path)
Check if a path is relative.
void HostPrintStats(void)
print some host stats
thread_local SCError sc_errno
void SRepResetVersion(void)
bool SCRadix6AddKeyIPV6String(SCRadix6Tree *tree, const SCRadix6Config *config, const char *str, void *user)
Adds a new IPV6/netblock to the Radix6 tree from a string.
SCRadix6Tree SCRadix6TreeInitialize(void)
void SCRadix6TreeRelease(SCRadix6Tree *tree, const SCRadix6Config *config)
void SRepDestroy(DetectEngineCtx *de_ctx)
#define SC_ATOMIC_GET(name)
Get the value from the atomic variable.
int SCLogDebugEnabled(void)
Returns whether debug messages are enabled to be logged or not.
#define DEBUG_VALIDATE_BUG_ON(exp)