suricata
util-reference-config.c File Reference
#include "suricata-common.h"
#include "detect.h"
#include "detect-engine.h"
#include "util-hash.h"
#include "util-reference-config.h"
#include "conf.h"
#include "util-unittest.h"
#include "util-error.h"
#include "util-debug.h"
#include "util-fmemopen.h"
Include dependency graph for util-reference-config.c:

Go to the source code of this file.

Macros

#define SC_RCONF_REGEX   "^\\s*config\\s+reference\\s*:\\s*([a-zA-Z][a-zA-Z0-9-_]*)\\s+(.+)\\s*$"
 
#define SC_RCONF_DEFAULT_FILE_PATH   CONFIG_DIR "/reference.config"
 

Functions

uint32_t SCRConfReferenceHashFunc (HashTable *ht, void *data, uint16_t datalen)
 Hashing function to be used to hash the Reference name. Would be supplied as an argument to the HashTableInit function for DetectEngineCtx->reference_conf_ht. More...
 
char SCRConfReferenceHashCompareFunc (void *data1, uint16_t datalen1, void *data2, uint16_t datalen2)
 Used to compare two References that have been stored in the HashTable. This function is supplied as an argument to the HashTableInit function for DetectionEngineCtx->reference_conf_ct. More...
 
void SCRConfReferenceHashFree (void *data)
 Used to free the Reference Config Hash Data that was stored in DetectEngineCtx->reference_conf_ht Hashtable. More...
 
void SCReferenceConfInit (DetectEngineCtx *de_ctx)
 
void SCReferenceConfDeinit (DetectEngineCtx *de_ctx)
 
void SCRConfDeInitContext (DetectEngineCtx *de_ctx)
 Releases de_ctx resources related to Reference Config API. More...
 
int SCRConfAddReference (DetectEngineCtx *de_ctx, const char *line)
 Parses a line from the reference config file and adds it to Reference Config hash table DetectEngineCtx->reference_conf_ht. More...
 
SCRConfReferenceSCRConfAllocSCRConfReference (const char *system, const char *url)
 Returns a new SCRConfReference instance. The reference string is converted into lowercase, before being assigned to the instance. More...
 
void SCRConfDeAllocSCRConfReference (SCRConfReference *ref)
 Frees a SCRConfReference instance. More...
 
int SCRConfLoadReferenceConfigFile (DetectEngineCtx *de_ctx, FILE *fd)
 Loads the Reference info from the reference.config file. More...
 
SCRConfReferenceSCRConfGetReference (const char *rconf_name, DetectEngineCtx *de_ctx)
 Gets the reference config from the corresponding hash table stored in the Detection Engine Context's reference conf ht, given the reference name. More...
 
FILE * SCRConfGenerateValidDummyReferenceConfigFD01 (void)
 Creates a dummy reference config, with all valid references, for testing purposes. More...
 
FILE * SCRConfGenerateInvalidDummyReferenceConfigFD02 (void)
 Creates a dummy reference config, with some valid references and a couple of invalid references, for testing purposes. More...
 
FILE * SCRConfGenerateInvalidDummyReferenceConfigFD03 (void)
 Creates a dummy reference config, with all invalid references, for testing purposes. More...
 
void SCRConfRegisterTests (void)
 This function registers unit tests for Reference Config API. More...
 

Detailed Description

Macro Definition Documentation

◆ SC_RCONF_DEFAULT_FILE_PATH

#define SC_RCONF_DEFAULT_FILE_PATH   CONFIG_DIR "/reference.config"

Definition at line 43 of file util-reference-config.c.

◆ SC_RCONF_REGEX

#define SC_RCONF_REGEX   "^\\s*config\\s+reference\\s*:\\s*([a-zA-Z][a-zA-Z0-9-_]*)\\s+(.+)\\s*$"

Definition at line 40 of file util-reference-config.c.

Function Documentation

◆ SCRConfAddReference()

int SCRConfAddReference ( DetectEngineCtx de_ctx,
const char *  line 
)

Parses a line from the reference config file and adds it to Reference Config hash table DetectEngineCtx->reference_conf_ht.

Parameters
rawstrPointer to the string to be parsed.
de_ctxPointer to the Detection Engine Context.
Return values
0On success.
-1On failure.

Definition at line 226 of file util-reference-config.c.

References de_ctx, HashTableAdd(), HashTableLookup(), DetectEngineCtx_::reference_conf_ht, DetectEngineCtx_::reference_conf_regex, DetectEngineCtx_::reference_conf_regex_match, REFERENCE_CONTENT_NAME_MAX, REFERENCE_SYSTEM_NAME_MAX, SCLogDebug, SCLogError, SCRConfAllocSCRConfReference(), and SCRConfDeAllocSCRConfReference().

Here is the call graph for this function:

◆ SCRConfAllocSCRConfReference()

SCRConfReference* SCRConfAllocSCRConfReference ( const char *  system,
const char *  url 
)

Returns a new SCRConfReference instance. The reference string is converted into lowercase, before being assigned to the instance.

Parameters
systemPointer to the system.
urlPointer to the reference url.
Return values
refPointer to the new instance of SCRConfReference.

Definition at line 357 of file util-reference-config.c.

References SCCalloc, SCLogError, and SCRConfReference_::system.

Referenced by SCRConfAddReference(), and SCRConfGetReference().

Here is the caller graph for this function:

◆ SCRConfDeAllocSCRConfReference()

void SCRConfDeAllocSCRConfReference ( SCRConfReference ref)

Frees a SCRConfReference instance.

Parameters
Pointerto the SCRConfReference instance that has to be freed.

Definition at line 390 of file util-reference-config.c.

References SCFree, SCRConfReference_::system, and SCRConfReference_::url.

Referenced by SCRConfAddReference(), SCRConfGetReference(), and SCRConfReferenceHashFree().

Here is the caller graph for this function:

◆ SCRConfDeInitContext()

void SCRConfDeInitContext ( DetectEngineCtx de_ctx)

Releases de_ctx resources related to Reference Config API.

Definition at line 183 of file util-reference-config.c.

References de_ctx, HashTableFree(), and DetectEngineCtx_::reference_conf_ht.

Referenced by DetectEngineCtxFree().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SCRConfGenerateInvalidDummyReferenceConfigFD02()

FILE* SCRConfGenerateInvalidDummyReferenceConfigFD02 ( void  )

Creates a dummy reference config, with some valid references and a couple of invalid references, for testing purposes.

Definition at line 568 of file util-reference-config.c.

References SCFmemopen, and SCLogDebug.

◆ SCRConfGenerateInvalidDummyReferenceConfigFD03()

FILE* SCRConfGenerateInvalidDummyReferenceConfigFD03 ( void  )

Creates a dummy reference config, with all invalid references, for testing purposes.

Definition at line 588 of file util-reference-config.c.

References SCFmemopen, and SCLogDebug.

◆ SCRConfGenerateValidDummyReferenceConfigFD01()

FILE* SCRConfGenerateValidDummyReferenceConfigFD01 ( void  )

Creates a dummy reference config, with all valid references, for testing purposes.

Definition at line 548 of file util-reference-config.c.

References SCFmemopen, and SCLogDebug.

◆ SCRConfGetReference()

SCRConfReference* SCRConfGetReference ( const char *  rconf_name,
DetectEngineCtx de_ctx 
)

Gets the reference config from the corresponding hash table stored in the Detection Engine Context's reference conf ht, given the reference name.

Parameters
ct_namePointer to the reference name that has to be looked up.
de_ctxPointer to the Detection Engine Context.
Return values
lookup_rconf_infoPointer to the SCRConfReference instance from the hash table on success; NULL on failure.

Definition at line 526 of file util-reference-config.c.

References de_ctx, HashTableLookup(), DetectEngineCtx_::reference_conf_ht, SCRConfAllocSCRConfReference(), and SCRConfDeAllocSCRConfReference().

Here is the call graph for this function:

◆ SCRConfLoadReferenceConfigFile()

int SCRConfLoadReferenceConfigFile ( DetectEngineCtx de_ctx,
FILE *  fd 
)

Loads the Reference info from the reference.config file.

   The reference.config file contains references that can be used in
   Signatures.  Each line of the file should  have the following format -
   config reference: system_name, reference_url.
Parameters
de_ctxPointer to the Detection Engine Context that should be updated with reference information.
Return values
0On success.
-1On failure.

Definition at line 495 of file util-reference-config.c.

◆ SCRConfReferenceHashCompareFunc()

char SCRConfReferenceHashCompareFunc ( void *  data1,
uint16_t  datalen1,
void *  data2,
uint16_t  datalen2 
)

Used to compare two References that have been stored in the HashTable. This function is supplied as an argument to the HashTableInit function for DetectionEngineCtx->reference_conf_ct.

Parameters
data1Pointer to the first SCRConfReference to be compared.
len1Not used by this function.
data2Pointer to the second SCRConfReference to be compared.
len2Not used by this function.
Return values
1On data1 and data2 being equal.
0On data1 and data2 not being equal.

Definition at line 444 of file util-reference-config.c.

References SCLogDebug, and SCRConfReference_::system.

◆ SCRConfReferenceHashFree()

void SCRConfReferenceHashFree ( void *  data)

Used to free the Reference Config Hash Data that was stored in DetectEngineCtx->reference_conf_ht Hashtable.

Parameters
dataPointer to the data that has to be freed.

Definition at line 475 of file util-reference-config.c.

References SCRConfDeAllocSCRConfReference().

Here is the call graph for this function:

◆ SCRConfReferenceHashFunc()

uint32_t SCRConfReferenceHashFunc ( HashTable ht,
void *  data,
uint16_t  datalen 
)

Hashing function to be used to hash the Reference name. Would be supplied as an argument to the HashTableInit function for DetectEngineCtx->reference_conf_ht.

Parameters
htPointer to the HashTable.
dataPointer to the data to be hashed. In this case, the data would be a pointer to a SCRConfReference instance.
datalenNot used by this function.

Definition at line 415 of file util-reference-config.c.

References HashTable_::array_size, len, SCRConfReference_::system, and u8_tolower.

◆ SCRConfRegisterTests()

void SCRConfRegisterTests ( void  )

This function registers unit tests for Reference Config API.

Definition at line 785 of file util-reference-config.c.

References UtRegisterTest().

Here is the call graph for this function:

◆ SCReferenceConfDeinit()

void SCReferenceConfDeinit ( DetectEngineCtx de_ctx)

◆ SCReferenceConfInit()