suricata
util-thash.c File Reference
#include "suricata-common.h"
#include "conf.h"
#include "util-debug.h"
#include "util-thash.h"
#include "util-random.h"
#include "util-misc.h"
#include "util-byte.h"
#include "util-hash-lookup3.h"
#include "util-validate.h"
Include dependency graph for util-thash.c:

Go to the source code of this file.

Macros

#define THASH_DEFAULT_HASHSIZE   4096
 
#define THASH_DEFAULT_MEMCAP   16777216
 
#define THASH_DEFAULT_PREALLOC   1000
 
#define GET_VAR(prefix, name)   snprintf(varname, sizeof(varname), "%s.%s", (prefix), (name))
 

Functions

void THashDataMoveToSpare (THashTableContext *ctx, THashData *h)
 
THashDataQueueTHashDataQueueNew (void)
 
THashTableContextTHashInit (const char *cnf_prefix, size_t data_size, int(*DataSet)(void *, void *), void(*DataFree)(void *), uint32_t(*DataHash)(void *), bool(*DataCompare)(void *, void *), bool reset_memcap, uint64_t memcap, uint32_t hashsize)
 
void THashConsolidateMemcap (THashTableContext *ctx)
 
void THashShutdown (THashTableContext *ctx)
 shutdown the flow engine More...
 
int THashWalk (THashTableContext *ctx, THashFormatFunc FormatterFunc, THashOutputFunc OutputterFunc, void *output_ctx)
 Walk the hash. More...
 
void THashCleanup (THashTableContext *ctx)
 Cleanup the thash engine. More...
 
struct THashDataGetResult THashGetFromHash (THashTableContext *ctx, void *data)
 
THashDataTHashLookupFromHash (THashTableContext *ctx, void *data)
 look up data in the hash More...
 
int THashRemoveFromHash (THashTableContext *ctx, void *data)
 

Detailed Description

Author
Victor Julien victo.nosp@m.r@in.nosp@m.linia.nosp@m.c.ne.nosp@m.t

Definition in file util-thash.c.

Macro Definition Documentation

◆ GET_VAR

#define GET_VAR (   prefix,
  name 
)    snprintf(varname, sizeof(varname), "%s.%s", (prefix), (name))

Definition at line 206 of file util-thash.c.

◆ THASH_DEFAULT_HASHSIZE

#define THASH_DEFAULT_HASHSIZE   4096

Definition at line 202 of file util-thash.c.

◆ THASH_DEFAULT_MEMCAP

#define THASH_DEFAULT_MEMCAP   16777216

Definition at line 203 of file util-thash.c.

◆ THASH_DEFAULT_PREALLOC

#define THASH_DEFAULT_PREALLOC   1000

Definition at line 204 of file util-thash.c.

Function Documentation

◆ THashCleanup()

void THashCleanup ( THashTableContext ctx)

Cleanup the thash engine.

Cleanup the thash engine from tag and threshold.

Definition at line 416 of file util-thash.c.

References THashTableContext_::array, THashTableContext_::config, THashDataConfig_::hash_size, HRLOCK_LOCK, HRLOCK_UNLOCK, THashData_::next, THashData_::prev, SC_ATOMIC_GET, and THashDataMoveToSpare().

Here is the call graph for this function:

◆ THashConsolidateMemcap()

void THashConsolidateMemcap ( THashTableContext ctx)

◆ THashDataMoveToSpare()

void THashDataMoveToSpare ( THashTableContext ctx,
THashData h 
)

Definition at line 41 of file util-thash.c.

Referenced by THashCleanup().

Here is the caller graph for this function:

◆ THashDataQueueNew()

THashDataQueue* THashDataQueueNew ( void  )

Definition at line 56 of file util-thash.c.

References SCLogError, and SCMalloc.

◆ THashGetFromHash()

struct THashDataGetResult THashGetFromHash ( THashTableContext ctx,
void *  data 
)

Definition at line 483 of file util-thash.c.

◆ THashInit()

THashTableContext* THashInit ( const char *  cnf_prefix,
size_t  data_size,
int(*)(void *, void *)  DataSet,
void(*)(void *)  DataFree,
uint32_t(*)(void *)  DataHash,
bool(*)(void *, void *)  DataCompare,
bool  reset_memcap,
uint64_t  memcap,
uint32_t  hashsize 
)

◆ THashLookupFromHash()

THashData* THashLookupFromHash ( THashTableContext ctx,
void *  data 
)

look up data in the hash

Parameters
datadata to look up
Return values
hLOCKED data or NULL

Definition at line 640 of file util-thash.c.

◆ THashRemoveFromHash()

int THashRemoveFromHash ( THashTableContext ctx,
void *  data 
)
Return values
int-1 not found
int0 found, but it was busy (ref cnt)
int1 found and removed

Definition at line 775 of file util-thash.c.

◆ THashShutdown()

void THashShutdown ( THashTableContext ctx)

shutdown the flow engine

Warning
Not thread safe

Definition at line 347 of file util-thash.c.

Referenced by HttpRangeContainersDestroy().

Here is the caller graph for this function:

◆ THashWalk()

int THashWalk ( THashTableContext ctx,
THashFormatFunc  FormatterFunc,
THashOutputFunc  OutputterFunc,
void *  output_ctx 
)