Go to the documentation of this file.
38 #define PARSE_REGEX "^\\s*([A-z0-9\\.]+|\"[A-z0-9_\\.]+\")\\s*$"
43 uint8_t,
void *,
void *,
const Signature *,
48 static void DetectKrb5ErrCodeRegisterTests (
void);
51 static int g_krb5_err_code_list_id = 0;
81 SCLogDebug(
"g_krb5_err_code_list_id %d", g_krb5_err_code_list_id);
106 ret = rs_krb5_tx_get_errcode(txv, &err_code);
131 pcre2_match_data *match = NULL;
134 SCLogError(
"parse error, ret %" PRId32
"", ret);
138 pcre2len =
sizeof(arg1);
139 res = pcre2_substring_copy_bynumber(match, 1, (PCRE2_UCHAR8 *)arg1, &pcre2len);
141 SCLogError(
"pcre2_substring_copy_bynumber failed");
149 (
const char *)arg1) < 0) {
152 pcre2_match_data_free(match);
157 pcre2_match_data_free(match);
182 krb5d = DetectKrb5ErrCodeParse(krb5str);
187 g_krb5_err_code_list_id) == NULL) {
195 DetectKrb5ErrCodeFree(
de_ctx, krb5d);
215 static int DetectKrb5ErrCodeParseTest01 (
void)
220 DetectKrb5ErrCodeFree(NULL, krb5d);
224 static int DetectKrb5ErrCodeSignatureTest01 (
void)
239 static void DetectKrb5ErrCodeRegisterTests(
void)
241 UtRegisterTest(
"DetectKrb5ErrCodeParseTest01", DetectKrb5ErrCodeParseTest01);
243 DetectKrb5ErrCodeSignatureTest01);
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
SigTableElmt * sigmatch_table
void(* Free)(DetectEngineCtx *, void *)
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
main detection engine ctx
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
int(* AppLayerTxMatch)(DetectEngineThreadCtx *, Flow *, uint8_t flags, void *alstate, void *txv, const Signature *, const SigMatchCtx *)
int DetectParsePcreExec(DetectParseRegex *parse_regex, pcre2_match_data **match, const char *str, int start_offset, int options)
int StringParseInt32(int32_t *res, int base, size_t len, const char *str)
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
#define SIG_FLAG_TOCLIENT
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
#define SIG_FLAG_TOSERVER
#define PASS
Pass the test.
void DetectKrb5ErrCodeRegister(void)
Registration function for krb5_err_code: keyword.
void DetectSetupParseRegexes(const char *parse_str, DetectParseRegex *detect_parse)
#define PARSE_REGEX
Regex for parsing our keyword options.
int(* Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *)
Used to start a pointer to SigMatch context Should never be dereferenced without casting to something...
#define FAIL_IF(expr)
Fail a test if expression evaluates to true.
int DetectBufferTypeRegister(const char *name)
uint8_t DetectEngineInspectGenericList(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const struct DetectEngineAppInspectionEngine_ *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
Do the content inspection & validation for a signature.
#define SCLogError(...)
Macro used to log ERROR messages.
DetectEngineCtx * DetectEngineCtxInit(void)
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
Registers an app inspection engine.
SigMatch * SigMatchAppendSMToList(DetectEngineCtx *de_ctx, Signature *s, uint16_t type, SigMatchCtx *ctx, const int list)
Append a SigMatch to the list type.
void(* RegisterTests)(void)