Go to the documentation of this file.
40 #define PARSE_REGEX "^\\s*(stor|retr)\\s*$"
45 Flow *, uint8_t,
void *,
void *,
50 static void DetectFtpdataRegisterTests (
void);
52 static int g_ftpdata_buffer_id = 0;
99 void *state,
void *txv,
105 if (ftp_state == NULL)
134 pcre2_match_data *match = NULL;
138 SCLogError(
"parse error, ret %" PRId32
"", ret);
142 pcre2len =
sizeof(arg1);
143 int res = pcre2_substring_copy_bynumber(match, 1, (PCRE2_UCHAR8 *)arg1, &pcre2len);
145 SCLogError(
"pcre2_substring_copy_bynumber failed");
153 if (!strcmp(arg1,
"stor")) {
155 }
else if (!strcmp(arg1,
"retr")) {
162 pcre2_match_data_free(match);
167 pcre2_match_data_free(match);
191 if (ftpcommandd == NULL)
195 g_ftpdata_buffer_id) == NULL) {
196 DetectFtpdataFree(
de_ctx, ftpcommandd);
217 static int DetectFtpdataParseTest01(
void)
222 DetectFtpdataFree(NULL, ftpcommandd);
226 static int DetectFtpdataSignatureTest01(
void)
245 static void DetectFtpdataRegisterTests(
void)
247 UtRegisterTest(
"DetectFtpdataParseTest01", DetectFtpdataParseTest01);
249 DetectFtpdataSignatureTest01);
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
SigTableElmt * sigmatch_table
#define PARSE_REGEX
Regex for parsing our keyword options.
void(* Free)(DetectEngineCtx *, void *)
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
FtpRequestCommand command
main detection engine ctx
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
FtpRequestCommand command
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)
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 *)
int DetectBufferTypeGetByName(const char *name)
#define SIG_FLAG_TOSERVER
#define FAIL_IF_NOT_NULL(expr)
Fail a test if expression evaluates to non-NULL.
#define PASS
Pass the test.
void DetectSetupParseRegexes(const char *parse_str, DetectParseRegex *detect_parse)
Data structures and function prototypes for keeping state for the detection engine.
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.
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 DetectFtpdataRegister(void)
Registration function for ftpcommand: keyword.
void(* RegisterTests)(void)