Go to the documentation of this file.
83 void *(*LocalStorageAlloc)(void);
92 void *(*StateGetTx)(
void *alstate, uint64_t tx_id);
97 uint8_t event_id,
const char **event_name, AppLayerEventType *event_type);
99 const char *event_name, uint8_t *event_id, AppLayerEventType *event_type);
101 AppLayerStateData *(*GetStateData)(
void *state);
151 static void AppLayerConfig(
void)
158 if (frames != NULL) {
175 if (f == NULL || f->
alparser == NULL)
221 return (alp_ctx.
ctxs[ipproto_map][alproto].
StateAlloc != NULL) ? 1 : 0;
242 AppLayerParserFramesFreeContainer(pstate->
frames);
251 memset(&alp_ctx, 0,
sizeof(alp_ctx));
321 const char *alproto_name)
333 r = snprintf(param,
sizeof(param),
"%s%s%s",
"app-layer.protocols.",
334 alproto_name,
".enabled");
337 }
else if (r > (
int)
sizeof(param)) {
338 FatalError(
"buffer not big enough to write param.");
344 r = snprintf(param,
sizeof(param),
"%s%s%s%s%s",
"app-layer.protocols.",
345 alproto_name,
".", ipproto,
".enabled");
348 }
else if (r > (
int)
sizeof(param)) {
349 FatalError(
"buffer not big enough to write param.");
363 }
else if (strcasecmp(node->
val,
"detection-only") == 0) {
366 SCLogError(
"Invalid value found for %s.", param);
385 Parser[(direction & STREAM_TOSERVER) ? 0 : 1] = Parser;
396 (direction & (STREAM_TOSERVER | STREAM_TOCLIENT));
412 void *(*StateAlloc)(
void *,
AppProto),
void (*StateFree)(
void *))
425 void *(*LocalStorageAlloc)(
void),
426 void (*LocalStorageFree)(
void *))
439 uint8_t ipproto,
AppProto alproto, AppLayerGetFileState (*GetTxFiles)(
void *, uint8_t))
467 int (*StateGetProgress)(
void *alstate, uint8_t direction))
472 StateGetProgress = StateGetProgress;
478 void (*StateTransactionFree)(
void *, uint64_t))
483 StateTransactionFree = StateTransactionFree;
489 uint64_t (*StateGetTxCnt)(
void *alstate))
494 StateGetTxCnt = StateGetTxCnt;
500 void *(StateGetTx)(
void *alstate, uint64_t tx_id))
505 StateGetTx = StateGetTx;
523 BUG_ON(!AppProtoIsValid(alproto));
534 int (*StateGetEventInfoById)(
535 uint8_t event_id,
const char **event_name, AppLayerEventType *event_type))
540 StateGetEventInfoById = StateGetEventInfoById;
556 int (*StateGetEventInfo)(
557 const char *event_name, uint8_t *event_id, AppLayerEventType *event_type))
562 StateGetEventInfo = StateGetEventInfo;
578 uint8_t ipproto,
AppProto alproto, AppLayerStateData *(*GetStateData)(
void *state))
588 bool (*ApplyTxConfig)(
void *state,
void *tx,
int mode, AppLayerTxConfig))
598 void (*SetStreamDepthFlag)(
void *tx, uint8_t
flags))
615 LocalStorageAlloc != NULL)
630 LocalStorageFree != NULL)
633 LocalStorageFree(local_data);
647 static AppLayerGetTxIterTuple AppLayerDefaultGetTxIterator(
648 const uint8_t ipproto,
const AppProto alproto,
649 void *alstate, uint64_t min_tx_id, uint64_t max_tx_id,
652 uint64_t ustate = *(uint64_t *)state;
653 uint64_t tx_id =
MAX(min_tx_id, ustate);
654 for ( ; tx_id < max_tx_id; tx_id++) {
656 if (tx_ptr != NULL) {
659 AppLayerGetTxIterTuple tuple = {
662 .has_next = (tx_id + 1 < max_tx_id),
664 SCLogDebug(
"tuple: %p/%"PRIu64
"/%s", tuple.tx_ptr, tuple.tx_id,
665 tuple.has_next ?
"true" :
"false");
670 AppLayerGetTxIterTuple no_tuple = { NULL, 0,
false };
679 return Func ? Func : AppLayerDefaultGetTxIterator;
711 uint64_t detect_flags =
712 (dir & STREAM_TOSERVER) ? txd->detect_flags_ts : txd->detect_flags_tc;
716 static inline void SetTxDetectFlags(
AppLayerTxData *txd,
const uint8_t dir,
const uint64_t detect_flags)
718 if (dir & STREAM_TOSERVER) {
719 txd->detect_flags_ts = detect_flags;
721 txd->detect_flags_tc = detect_flags;
727 return txd->logged.flags;
731 void *alstate,
const uint8_t
flags,
732 bool tag_txs_as_inspected)
736 const int direction = (
flags & STREAM_TOSERVER) ? 0 : 1;
740 const uint8_t ipproto = f->
proto;
746 SCLogDebug(
"called: %s, tag_txs_as_inspected %s",direction==0?
"toserver":
"toclient",
747 tag_txs_as_inspected?
"true":
"false");
752 AppLayerGetTxIterTuple ires = IterFunc(ipproto, alproto, alstate, idx, total_txs, &state);
753 if (ires.tx_ptr == NULL)
756 void *tx = ires.tx_ptr;
760 if (state_progress < state_done_progress)
764 if (txd && tag_txs_as_inspected) {
768 SetTxDetectFlags(txd,
flags, detect_flags);
769 SCLogDebug(
"%p/%"PRIu64
" in-order tx is done for direction %s. Flag %016"PRIx64,
770 tx, idx,
flags & STREAM_TOSERVER ?
"toserver" :
"toclient", detect_flags);
782 if (tag_txs_as_inspected) {
785 AppLayerGetTxIterTuple ires = IterFunc(ipproto, alproto, alstate, idx, total_txs, &state);
786 if (ires.tx_ptr == NULL)
789 void *tx = ires.tx_ptr;
793 if (ires.tx_id > idx && pstate->
inspect_id[direction] == idx) {
799 if (state_progress < state_done_progress)
808 SetTxDetectFlags(txd,
flags, detect_flags);
809 SCLogDebug(
"%p/%"PRIu64
" out of order tx is done for direction %s. Flag %016"PRIx64,
810 tx, idx,
flags & STREAM_TOSERVER ?
"toserver" :
"toclient", detect_flags);
812 SCLogDebug(
"%p/%"PRIu64
" out of order tx. Update inspect_id? %"PRIu64,
835 "AppLayerDecoderEvents *");
847 if (txd != NULL && txd->events != NULL) {
862 AppLayerGetFileState files = { .fc = NULL, .cfg = NULL };
866 static void AppLayerParserFileTxHousekeeping(
867 const Flow *f,
void *tx,
const uint8_t pkt_dir,
const bool trunc)
875 #define IS_DISRUPTED(flags) ((flags) & (STREAM_DEPTH | STREAM_GAP))
894 const uint8_t ipproto = f->
proto;
896 void *
const alstate = f->
alstate;
899 if (alstate == NULL || alparser == NULL)
902 const uint64_t min = alparser->
min_id;
910 int pkt_dir_trunc = -1;
914 memset(&state, 0,
sizeof(state));
916 uint64_t new_min = min;
918 bool skipped =
false;
922 AppLayerGetTxIterTuple ires = IterFunc(ipproto, alproto, alstate, i, total_txs, &state);
923 if (ires.tx_ptr == NULL)
926 bool tx_skipped =
false;
927 void *tx = ires.tx_ptr;
932 if (txd != NULL && AppLayerParserHasFilesInDir(txd, pkt_dir)) {
933 if (pkt_dir_trunc == -1)
935 (pkt_dir == STREAM_TOSERVER) ? ts_disrupt_flags : tc_disrupt_flags);
936 AppLayerParserFileTxHousekeeping(f, tx, pkt_dir, (
bool)pkt_dir_trunc);
939 const int tx_progress_tc =
941 if (tx_progress_tc < tx_end_state_tc) {
942 SCLogDebug(
"%p/%"PRIu64
" skipping: tc parser not done", tx, i);
946 const int tx_progress_ts =
948 if (tx_progress_ts < tx_end_state_ts) {
949 SCLogDebug(
"%p/%"PRIu64
" skipping: ts parser not done", tx, i);
954 if (txd && has_tx_detect_flags) {
957 if (!(detect_flags_ts &
959 SCLogDebug(
"%p/%" PRIu64
" skipping: TS inspect not done: ts:%" PRIx64, tx, i,
966 if (!(detect_flags_tc &
968 SCLogDebug(
"%p/%" PRIu64
" skipping: TC inspect not done: ts:%" PRIx64, tx, i,
976 SCLogDebug(
"%p/%" PRIu64
" tx_skipped", tx, i);
981 if (txd && logger_expectation != 0) {
982 LoggerId tx_logged = GetTxLogged(txd);
983 if (tx_logged != logger_expectation) {
984 SCLogDebug(
"%p/%"PRIu64
" skipping: logging not done: want:%"PRIx32
", have:%"PRIx32,
985 tx, i, logger_expectation, tx_logged);
994 SCLogDebug(
"files_opened %u files_logged %u files_stored %u", txd->files_opened,
995 txd->files_logged, txd->files_stored);
997 if (txd->files_opened) {
1014 SCLogDebug(
"skipped? %s i %"PRIu64
", new_min %"PRIu64, skipped ?
"true" :
"false", i, new_min);
1017 SCLogDebug(
"final i %"PRIu64
", new_min %"PRIu64, i, new_min);
1020 if (!ires.has_next) {
1024 SCLogDebug(
"no next: cur tx i %"PRIu64
", total %"PRIu64, i, total_txs);
1026 new_min = total_txs;
1027 SCLogDebug(
"no next: cur tx i %"PRIu64
", total %"PRIu64
": "
1028 "new_min updated to %"PRIu64, i, total_txs, new_min);
1036 SCLogDebug(
"update f->alparser->min_id? %"PRIu64
" vs %"PRIu64, new_min, alparser->
min_id);
1037 if (new_min > alparser->
min_id) {
1038 const uint64_t next_id = new_min;
1039 alparser->
min_id = next_id;
1048 static inline int StateGetProgressCompletionStatus(
const AppProto alproto,
const uint8_t
flags)
1050 if (
flags & STREAM_TOSERVER) {
1052 }
else if (
flags & STREAM_TOCLIENT) {
1066 void *alstate, uint8_t
flags)
1071 r = StateGetProgressCompletionStatus(alproto,
flags);
1073 uint8_t direction =
flags & (STREAM_TOCLIENT | STREAM_TOSERVER);
1075 alstate, direction);
1098 int r = StateGetProgressCompletionStatus(alproto, direction);
1103 uint8_t *event_id, AppLayerEventType *event_type)
1113 const char **event_name, AppLayerEventType *event_type)
1117 *event_name = (
const char *)NULL;
1168 AppLayerStateData *d =
1176 void *state,
void *tx,
enum ConfigAction mode, AppLayerTxConfig config)
1190 if ((
flags & (STREAM_EOF|STREAM_TOSERVER)) == (STREAM_EOF|STREAM_TOSERVER)) {
1191 SCLogDebug(
"setting APP_LAYER_PARSER_EOF_TS");
1193 }
else if ((
flags & (STREAM_EOF|STREAM_TOCLIENT)) == (STREAM_EOF|STREAM_TOCLIENT)) {
1194 SCLogDebug(
"setting APP_LAYER_PARSER_EOF_TC");
1203 static void HandleStreamFrames(
Flow *f, StreamSlice stream_slice,
const uint8_t *input,
1204 const uint32_t input_len,
const uint8_t
flags)
1206 const uint8_t direction = (
flags & STREAM_TOSERVER) ? 0 : 1;
1212 input != NULL && f->
proto == IPPROTO_TCP) {
1214 if (frame == NULL) {
1215 int64_t frame_len = -1;
1216 if (
flags & STREAM_EOF)
1217 frame_len = input_len;
1220 f, &stream_slice, stream_slice.offset, frame_len, direction,
FRAME_STREAM_TYPE);
1222 SCLogDebug(
"opened: frame %p id %" PRIi64, frame, frame->
id);
1227 if (direction == 0) {
1233 }
else if (
flags & STREAM_EOF) {
1238 int64_t slice_o = (int64_t)stream_slice.offset - (int64_t)frame->
offset;
1239 int64_t frame_len = slice_o + (int64_t)input_len;
1240 SCLogDebug(
"%s: EOF frame->offset %" PRIu64
" -> %" PRIi64
": o %" PRIi64,
1242 frame->
len = frame_len;
1247 static void Setup(
Flow *f,
const uint8_t direction,
const uint8_t *input, uint32_t input_len,
1248 const uint8_t
flags, StreamSlice *as)
1250 memset(as, 0,
sizeof(*as));
1252 as->input_len = input_len;
1266 uint8_t
flags,
const uint8_t *input, uint32_t input_len)
1269 #ifdef DEBUG_VALIDATION
1274 StreamSlice stream_slice;
1275 void *alstate = NULL;
1276 uint64_t p_tx_cnt = 0;
1277 uint32_t consumed = input_len;
1278 const uint8_t direction = (
flags & STREAM_TOSERVER) ? 0 : 1;
1282 if (f->
proto == IPPROTO_TCP) {
1288 if (
flags & STREAM_GAP) {
1290 SCLogDebug(
"app-layer parser does not accept gaps");
1300 if (pstate == NULL) {
1302 if (pstate == NULL) {
1308 SetEOFFlags(pstate,
flags);
1313 if (alstate == NULL) {
1317 SCLogDebug(
"alloced new app layer state %p (name %s)",
1325 SCLogDebug(
"state data: updating file_flags %04x with flow file_flags %04x",
1332 SCLogDebug(
"using existing app layer state %p (name %s))",
1339 if (input_len > 0 || (
flags & STREAM_EOF)) {
1340 Setup(f,
flags & (STREAM_TOSERVER | STREAM_TOCLIENT), input, input_len,
flags,
1342 HandleStreamFrames(f, stream_slice, input, input_len,
flags);
1345 if (((stream_slice.flags & STREAM_TOSERVER) &&
1346 stream_slice.offset >= g_eps_applayer_error_offset_ts)) {
1347 SCLogNotice(
"putting parser %s into an error state from toserver offset %" PRIu64,
1352 if (((stream_slice.flags & STREAM_TOCLIENT) &&
1353 stream_slice.offset >= g_eps_applayer_error_offset_tc)) {
1354 SCLogNotice(
"putting parser %s into an error state from toclient offset %" PRIu64,
1361 AppLayerResult res = p->
Parser[direction](f, alstate, pstate, stream_slice,
1363 if (res.status < 0) {
1366 }
else if (res.status > 0) {
1375 if (res.consumed > input_len || res.needed + res.consumed < input_len) {
1383 (
flags & STREAM_TOSERVER) ?
"toserver" :
"toclient");
1384 if (direction == 0) {
1398 consumed = res.consumed;
1406 if (f->
proto == IPPROTO_TCP) {
1428 FlowSetNoPayloadInspectionFlag(f);
1434 FlowSetNoPayloadInspectionFlag(f);
1436 if (f->
proto == IPPROTO_TCP) {
1448 if (cur_tx_cnt > p_tx_cnt &&
tv) {
1454 if (consumed != input_len && f->
proto == IPPROTO_TCP && f->
protoctx != NULL) {
1464 if (f->
proto == IPPROTO_TCP) {
1478 SCLogDebug(
"setting APP_LAYER_PARSER_EOF_TC and APP_LAYER_PARSER_EOF_TS");
1519 int r = (alp_ctx.
ctxs[ipproto_map][alproto].
logger ==
false) ? 0 : 1;
1536 if (f != NULL && f->
protoctx != NULL)
1562 if (state != NULL) {
1599 if (
ctx->StateFree != NULL && alstate != NULL)
1600 ctx->StateFree(alstate);
1614 static void ValidateParserProtoDump(
AppProto alproto, uint8_t ipproto)
1618 printf(
"ERROR: incomplete app-layer registration\n");
1619 printf(
"AppLayer protocol %s ipproto %u\n",
AppProtoToString(alproto), ipproto);
1620 printf(
"- option flags %"PRIx32
"\n",
ctx->option_flags);
1621 printf(
"- first_data_dir %"PRIx8
"\n",
ctx->first_data_dir);
1622 printf(
"Mandatory:\n");
1623 printf(
"- Parser[0] %p Parser[1] %p\n",
ctx->Parser[0],
ctx->Parser[1]);
1624 printf(
"- StateAlloc %p StateFree %p\n",
ctx->StateAlloc,
ctx->StateFree);
1625 printf(
"- StateGetTx %p StateGetTxCnt %p StateTransactionFree %p\n",
1626 ctx->StateGetTx,
ctx->StateGetTxCnt,
ctx->StateTransactionFree);
1627 printf(
"- GetTxData %p\n",
ctx->GetTxData);
1628 printf(
"- GetStateData %p\n",
ctx->GetStateData);
1629 printf(
"- StateGetProgress %p\n",
ctx->StateGetProgress);
1630 printf(
"Optional:\n");
1631 printf(
"- LocalStorageAlloc %p LocalStorageFree %p\n",
ctx->LocalStorageAlloc,
ctx->LocalStorageFree);
1632 printf(
"- StateGetEventInfo %p StateGetEventInfoById %p\n",
ctx->StateGetEventInfo,
1633 ctx->StateGetEventInfoById);
1636 #define BOTH_SET(a, b) ((a) != NULL && (b) != NULL)
1637 #define BOTH_SET_OR_BOTH_UNSET(a, b) (((a) == NULL && (b) == NULL) || ((a) != NULL && (b) != NULL))
1638 #define THREE_SET(a, b, c) ((a) != NULL && (b) != NULL && (c) != NULL)
1640 static void ValidateParserProto(
AppProto alproto, uint8_t ipproto)
1645 if (
ctx->Parser[0] == NULL &&
ctx->Parser[1] == NULL)
1657 if (
ctx->StateGetProgress == NULL) {
1664 if (
ctx->GetTxData == NULL) {
1667 if (
ctx->GetStateData == NULL) {
1672 ValidateParserProtoDump(alproto, ipproto);
1676 #undef BOTH_SET_OR_BOTH_UNSET
1677 #undef THREE_SET_OR_THREE_UNSET
1680 static void ValidateParser(
AppProto alproto)
1682 ValidateParserProto(alproto, IPPROTO_TCP);
1683 ValidateParserProto(alproto, IPPROTO_UDP);
1686 static void ValidateParsers(
void)
1702 rs_dcerpc_register_parser();
1703 rs_dcerpc_udp_register_parser();
1708 SCRegisterDnsUdpParser();
1709 SCRegisterDnsTcpParser();
1710 rs_bittorrent_dht_udp_register_parser();
1712 SCEnipRegisterParsers();
1716 rs_register_ntp_parser();
1719 rs_register_krb5_parser();
1720 rs_dhcp_register_parser();
1721 rs_register_snmp_parser();
1722 rs_sip_register_parser();
1723 rs_quic_register_parser();
1724 rs_websocket_register_parser();
1725 SCRegisterLdapTcpParser();
1726 SCRegisterLdapUdpParser();
1727 rs_template_register_parser();
1728 SCRfbRegisterParser();
1729 SCMqttRegisterParser();
1730 SCRegisterPgsqlParser();
1731 rs_rdp_register_parser();
1733 rs_telnet_register_parser();
1740 IPPROTO_TCP,
ALPROTO_POP3,
"+OK ", 4, 0, STREAM_TOCLIENT) < 0) {
1741 FatalError(
"pop3 proto registration failure");
1744 SCLogInfo(
"Protocol detection and parser disabled for pop3 protocol.");
1755 pstate->
flags |= flag;
1772 void (*RegisterUnittests)(
void))
1776 RegisterUnittests = RegisterUnittests;
1789 for (alproto = 0; alproto <
ALPROTO_MAX; alproto++) {
1790 ctx = &alp_ctx.
ctxs[ip][alproto];
1791 if (
ctx->RegisterUnittests == NULL)
1793 ctx->RegisterUnittests();
void AppLayerParserRegisterGetStateProgressFunc(uint8_t ipproto, AppProto alproto, int(*StateGetProgress)(void *alstate, uint8_t direction))
int AppLayerParserDeSetup(void)
AppLayerStateData *(* GetStateData)(void *state)
uint64_t(* StateGetTxCnt)(void *alstate)
enum ExceptionPolicy g_applayerparser_error_policy
AppLayerTxData *(* GetTxData)(void *tx)
AppLayerParserProtoCtx ctxs[FLOW_PROTO_MAX][ALPROTO_MAX]
void RegisterSMBParsers(void)
void RegisterIKEParsers(void)
int AppLayerParserIsEnabled(AppProto alproto)
simple way to globally test if a alproto is registered and fully enabled in the configuration.
void AppLayerParserRegisterLocalStorageFunc(uint8_t ipproto, AppProto alproto, void *(*LocalStorageAlloc)(void), void(*LocalStorageFree)(void *))
int AppLayerParserProtocolHasLogger(uint8_t ipproto, AppProto alproto)
void AppLayerParserRegisterOptionFlags(uint8_t ipproto, AppProto alproto, uint32_t flags)
void FramesFree(Frames *frames)
void AppLayerParserSetStreamDepthFlag(uint8_t ipproto, AppProto alproto, void *state, uint64_t tx_id, uint8_t flags)
void AppLayerParserSetTransactionLogId(AppLayerParserState *pstate, uint64_t tx_id)
bool g_filedata_logger_enabled
void AppLayerParserSetStreamDepth(uint8_t ipproto, AppProto alproto, uint32_t stream_depth)
void AppLayerParserApplyTxConfig(uint8_t ipproto, AppProto alproto, void *state, void *tx, enum ConfigAction mode, AppLayerTxConfig config)
void AppLayerParserTransactionsCleanup(Flow *f, const uint8_t pkt_dir)
remove obsolete (inspected and logged) transactions
void * AppLayerParserGetProtocolParserLocalStorage(uint8_t ipproto, AppProto alproto)
void(* LocalStorageFree)(void *)
App layer protocol parser context.
void RegisterSSHParsers(void)
Function to register the SSH protocol parsers and other functions.
void *(* StateGetTx)(void *alstate, uint64_t tx_id)
void AppLayerParserSetTransactionInspectId(const Flow *f, AppLayerParserState *pstate, void *alstate, const uint8_t flags, bool tag_txs_as_inspected)
#define APP_LAYER_PARSER_BYPASS_READY
AppLayerDecoderEvents * AppLayerParserGetEventsByTx(uint8_t ipproto, AppProto alproto, void *tx)
AppLayerGetTxIteratorFunc AppLayerGetTxIterator(const uint8_t ipproto, const AppProto alproto)
struct HtpBodyChunk_ * next
void RegisterModbusParsers(void)
Function to register the Modbus protocol parser.
void StreamTcpSetDisableRawReassemblyFlag(TcpSession *, char)
Set the No reassembly flag for the given direction in given TCP session.
FramesContainer * AppLayerFramesSetupContainer(Flow *f)
int AppLayerParserConfParserEnabled(const char *ipproto, const char *alproto_name)
check if a parser is enabled in the config Returns enabled always if: were running unittests
int AppLayerParserGetStateProgress(uint8_t ipproto, AppProto alproto, void *alstate, uint8_t flags)
get the progress value for a tx/protocol
void AppLayerParserTriggerRawStreamReassembly(Flow *f, int direction)
ConfNode * ConfGetNode(const char *name)
Get a ConfNode by name.
uint32_t reassembly_depth
void AppLayerIncGapErrorCounter(ThreadVars *tv, Flow *f)
#define APP_LAYER_PARSER_INT_STREAM_DEPTH_SET
void StreamTcpReassembleTriggerRawReassembly(TcpSession *ssn, int direction)
Trigger RAW stream reassembly.
uint64_t AppLayerParserGetTransactionLogId(AppLayerParserState *pstate)
const char * AppProtoToString(AppProto alproto)
Maps the ALPROTO_*, to its string equivalent.
bool AppLayerParserSupportsFiles(uint8_t ipproto, AppProto alproto)
void AppLayerParserRegisterStateProgressCompletionStatus(AppProto alproto, const int ts, const int tc)
void AppLayerParserRegisterParserAcceptableDataDirection(uint8_t ipproto, AppProto alproto, uint8_t direction)
int AppLayerParserGetStateProgressCompletionStatus(AppProto alproto, uint8_t direction)
uint8_t AppLayerParserGetFirstDataDir(uint8_t ipproto, AppProto alproto)
int AppLayerParserProtoIsRegistered(uint8_t ipproto, AppProto alproto)
void AppLayerParserRegisterTxFreeFunc(uint8_t ipproto, AppProto alproto, void(*StateTransactionFree)(void *, uint64_t))
#define FLOW_NOPAYLOAD_INSPECTION
#define APP_LAYER_TX_SKIP_INSPECT_FLAG
void AppLayerParserStateProtoCleanup(uint8_t protomap, AppProto alproto, void *alstate, AppLayerParserState *pstate)
AppLayerGetTxIteratorFunc StateGetTxIterator
void AppLayerParserThreadCtxFree(AppLayerParserThreadCtx *tctx)
Destroys the app layer parser thread context obtained using AppLayerParserThreadCtxAlloc().
void AppLayerDecoderEventsFreeEvents(AppLayerDecoderEvents **events)
void StreamTcpUpdateAppLayerProgress(TcpSession *ssn, char direction, const uint32_t progress)
update reassembly progress
#define APP_LAYER_TX_INSPECTED_FLAG
AppLayerStateData * AppLayerParserGetStateData(uint8_t ipproto, AppProto alproto, void *state)
Frame * AppLayerFrameNewByAbsoluteOffset(Flow *f, const StreamSlice *stream_slice, const uint64_t frame_start, const int64_t len, int dir, uint8_t frame_type)
create new frame using the absolute offset from the start of the stream
Frame * AppLayerFrameGetLastOpenByType(Flow *f, const int dir, const uint8_t frame_type)
TcpStreamCnf stream_config
#define APP_LAYER_PARSER_EOF_TS
void AppLayerIncAllocErrorCounter(ThreadVars *tv, Flow *f)
@ EXCEPTION_POLICY_NOT_SET
enum ExceptionPolicy ExceptionPolicyParse(const char *option, bool support_flow)
void AppLayerParserRegisterUnittests(void)
uint64_t AppLayerParserGetTransactionInspectId(AppLayerParserState *pstate, uint8_t direction)
Data structure to store app layer decoder events.
bool(* ApplyTxConfig)(void *state, void *tx, int mode, AppLayerTxConfig)
uint8_t FlowGetReverseProtoMapping(uint8_t rproto)
void RegisterDNP3Parsers(void)
Register the DNP3 application protocol parser.
int ConfValIsTrue(const char *val)
Check if a value is true.
int(* StateGetEventInfoById)(uint8_t event_id, const char **event_name, AppLayerEventType *event_type)
void FTPParserCleanup(void)
Free memory allocated for global FTP parser state.
AppLayerGetFileState AppLayerParserGetTxFiles(const Flow *f, void *tx, const uint8_t direction)
const struct SigGroupHead_ * sgh_toserver
AppLayerResult(* AppLayerParserFPtr)(Flow *f, void *protocol_state, AppLayerParserState *pstate, StreamSlice stream_slice, void *local_storage)
Prototype for parsing functions.
struct AppLayerParserCtx_ AppLayerParserCtx
AppLayerParserState * alparser
void AppLayerParserRegisterProtocolParsers(void)
#define APP_LAYER_PARSER_SFRAME_TS
int AppLayerParserGetEventInfoById(uint8_t ipproto, AppProto alproto, uint8_t event_id, const char **event_name, AppLayerEventType *event_type)
AppLayerParserGetFrameIdByNameFn GetFrameIdByName
const char * AppLayerParserGetFrameNameById(uint8_t ipproto, AppProto alproto, const uint8_t id)
uint64_t AppLayerParserGetTransactionActive(const Flow *f, AppLayerParserState *pstate, uint8_t direction)
void AppLayerFramesFreeContainer(Flow *f)
uint64_t AppLayerParserGetTxDetectFlags(AppLayerTxData *txd, const uint8_t dir)
int(* StateGetEventInfo)(const char *event_name, uint8_t *event_id, AppLayerEventType *event_type)
AppLayerParserThreadCtx * alp_tctx
void AppLayerParserRegisterLogger(uint8_t ipproto, AppProto alproto)
void AppLayerParserRegisterGetFrameFuncs(uint8_t ipproto, AppProto alproto, AppLayerParserGetFrameIdByNameFn GetIdByNameFunc, AppLayerParserGetFrameNameByIdFn GetNameByIdFunc)
void(* SetStreamDepthFlag)(void *tx, uint8_t flags)
Per thread variable structure.
void AppLayerParserRegisterLoggerBits(uint8_t ipproto, AppProto alproto, LoggerId bits)
void AppLayerParserRegisterStateFuncs(uint8_t ipproto, AppProto alproto, void *(*StateAlloc)(void *, AppProto), void(*StateFree)(void *))
#define APP_LAYER_PARSER_NO_REASSEMBLY
#define IS_DISRUPTED(flags)
void AppLayerParserSetEOF(AppLayerParserState *pstate)
void(* RegisterUnittests)(void)
void AppLayerParserStateFree(AppLayerParserState *pstate)
void AppLayerParserStateCleanup(const Flow *f, void *alstate, AppLayerParserState *pstate)
const struct SigGroupHead_ * sgh_toclient
void RegisterNFSTCPParsers(void)
void AppLayerParserRegisterGetEventInfo(uint8_t ipproto, AppProto alproto, int(*StateGetEventInfo)(const char *event_name, uint8_t *event_id, AppLayerEventType *event_type))
AppLayerParserGetFrameNameByIdFn GetFrameNameById
struct AppLayerParserProtoCtx_ AppLayerParserProtoCtx
App layer protocol parser context.
int AppLayerParserSetup(void)
void RegisterFTPParsers(void)
void AppLayerParserRegisterProtocolUnittests(uint8_t ipproto, AppProto alproto, void(*RegisterUnittests)(void))
void *(* StateAlloc)(void *, AppProto)
uint8_t FlowGetProtoMapping(uint8_t proto)
Function to map the protocol to the defined FLOW_PROTO_* enumeration.
void RegisterTFTPParsers(void)
#define FLOW_PROTO_APPLAYER_MAX
#define APP_LAYER_PARSER_EOF_TC
#define DEBUG_ASSERT_FLOW_LOCKED(f)
#define BOTH_SET_OR_BOTH_UNSET(a, b)
void * alproto_local_storage[FLOW_PROTO_MAX][ALPROTO_MAX]
#define SCReturnPtr(x, type)
void(* StateFree)(void *)
void AppLayerParserRegisterGetTxFilesFunc(uint8_t ipproto, AppProto alproto, AppLayerGetFileState(*GetTxFiles)(void *, uint8_t))
void AppLayerProtoDetectRegisterProtocol(AppProto alproto, const char *alproto_name)
Registers a protocol for protocol detection phase.
void AppLayerParserRegisterSetStreamDepthFlag(uint8_t ipproto, AppProto alproto, void(*SetStreamDepthFlag)(void *tx, uint8_t flags))
#define APP_LAYER_PARSER_SFRAME_TC
void AppLayerIncParserErrorCounter(ThreadVars *tv, Flow *f)
int RunmodeIsUnittests(void)
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
#define APP_LAYER_PARSER_NO_INSPECTION
void * AppLayerParserGetTx(uint8_t ipproto, AppProto alproto, void *alstate, uint64_t tx_id)
int AppLayerParserRegisterParser(uint8_t ipproto, AppProto alproto, uint8_t direction, AppLayerParserFPtr Parser)
Register app layer parser for the protocol.
AppLayerParserThreadCtx * AppLayerParserThreadCtxAlloc(void)
Gets a new app layer protocol's parser thread context.
void AppLayerParserRegisterGetTx(uint8_t ipproto, AppProto alproto, void *(StateGetTx)(void *alstate, uint64_t tx_id))
void AppLayerParserStateSetFlag(AppLayerParserState *pstate, uint16_t flag)
AppLayerParserFPtr Parser[2]
struct AppLayerTxData AppLayerTxData
void(* StateTransactionFree)(void *, uint64_t)
void RegisterSSLParsers(void)
Function to register the SSL protocol parser and other functions.
void StreamTcpSetSessionNoReassemblyFlag(TcpSession *, char)
disable reassembly
int AppLayerParserParse(ThreadVars *tv, AppLayerParserThreadCtx *alp_tctx, Flow *f, AppProto alproto, uint8_t flags, const uint8_t *input, uint32_t input_len)
const char *(* AppLayerParserGetFrameNameByIdFn)(const uint8_t id)
void StreamTcpDisableAppLayer(Flow *f)
int AppLayerParserGetFrameIdByName(uint8_t ipproto, AppProto alproto, const char *name)
void AppLayerParserRegisterApplyTxConfigFunc(uint8_t ipproto, AppProto alproto, bool(*ApplyTxConfig)(void *state, void *tx, int mode, AppLayerTxConfig))
void AppLayerParserRegisterStateDataFunc(uint8_t ipproto, AppProto alproto, AppLayerStateData *(*GetStateData)(void *state))
void FilesPrune(FileContainer *fc, const StreamingBufferConfig *sbcfg, const bool trunc)
void AppLayerIncInternalErrorCounter(ThreadVars *tv, Flow *f)
AppLayerTxData * AppLayerParserGetTxData(uint8_t ipproto, AppProto alproto, void *tx)
void AppLayerParserRegisterTxDataFunc(uint8_t ipproto, AppProto alproto, AppLayerTxData *(*GetTxData)(void *tx))
uint32_t AppLayerParserGetStreamDepth(const Flow *f)
void RegisterIMAPParsers(void)
AppLayerGetFileState(* GetTxFiles)(void *, uint8_t)
#define FRAME_STREAM_TYPE
#define APP_LAYER_PARSER_OPT_ACCEPT_GAPS
void AppLayerParserRegisterGetTxIterator(uint8_t ipproto, AppProto alproto, AppLayerGetTxIteratorFunc Func)
FramesContainer * AppLayerFramesGetContainer(Flow *f)
#define SCLogError(...)
Macro used to log ERROR messages.
void AppLayerParserPostStreamSetup(void)
AppLayerDecoderEvents * AppLayerParserGetDecoderEvents(AppLayerParserState *pstate)
#define THREE_SET(a, b, c)
const char * AppLayerGetProtoName(AppProto alproto)
Given the internal protocol id, returns a string representation of the protocol.
void UTHAppLayerParserStateGetIds(void *ptr, uint64_t *i1, uint64_t *i2, uint64_t *log, uint64_t *min)
int ConfValIsFalse(const char *val)
Check if a value is false.
void RegisterHTPParsers(void)
Register the HTTP protocol and state handling functions to APP layer of the engine.
void AppLayerIncTxCounter(ThreadVars *tv, Flow *f, uint64_t step)
#define FRAME_FLAG_ENDS_AT_EOF
void RegisterSMTPParsers(void)
Register the SMTP Protocol parser.
AppLayerParserState * AppLayerParserStateAlloc(void)
#define SCReturnCT(x, type)
AppLayerDecoderEvents * decoder_events
void AppLayerParserRegisterGetTxCnt(uint8_t ipproto, AppProto alproto, uint64_t(*StateGetTxCnt)(void *alstate))
int(* StateGetProgress)(void *alstate, uint8_t direction)
LoggerId AppLayerParserProtocolGetLoggerBits(uint8_t ipproto, AppProto alproto)
void AppLayerParserRegisterGetEventInfoById(uint8_t ipproto, AppProto alproto, int(*StateGetEventInfoById)(uint8_t event_id, const char **event_name, AppLayerEventType *event_type))
AppLayerGetTxIterTuple(* AppLayerGetTxIteratorFunc)(const uint8_t ipproto, const AppProto alproto, void *alstate, uint64_t min_tx_id, uint64_t max_tx_id, AppLayerGetTxIterState *state)
tx iterator prototype
bool g_file_logger_enabled
void RegisterHTTP2Parsers(void)
#define STREAM_APP_PROGRESS(stream)
int AppLayerProtoDetectPMRegisterPatternCS(uint8_t ipproto, AppProto alproto, const char *pattern, uint16_t depth, uint16_t offset, uint8_t direction)
Registers a case-sensitive pattern for protocol detection.
#define APP_LAYER_PARSER_NO_INSPECTION_PAYLOAD
int FlowChangeProto(Flow *f)
Check if change proto flag is set for flow.
uint8_t FlowGetDisruptionFlags(const Flow *f, uint8_t flags)
get 'disruption' flags: GAP/DEPTH/PASS
uint16_t AppLayerParserStateIssetFlag(AppLayerParserState *pstate, uint16_t flag)
#define SCLogNotice(...)
Macro used to log NOTICE messages.
void RegisterNFSUDPParsers(void)
AppProto alproto
application level protocol
void AppLayerParserDestroyProtocolParserLocalStorage(uint8_t ipproto, AppProto alproto, void *local_data)
uint64_t AppLayerParserGetTxCnt(const Flow *f, void *alstate)
int AppLayerProtoDetectConfProtoDetectionEnabled(const char *ipproto, const char *alproto)
Given a protocol name, checks if proto detection is enabled in the conf file.
void SMTPParserCleanup(void)
Free memory allocated for global SMTP parser state.
bool AppLayerParserHasDecoderEvents(AppLayerParserState *pstate)
int(* AppLayerParserGetFrameIdByNameFn)(const char *frame_name)
void StreamTcpSetSessionBypassFlag(TcpSession *)
enable bypass
#define DEBUG_VALIDATE_BUG_ON(exp)
void *(* LocalStorageAlloc)(void)
int AppLayerParserGetEventInfo(uint8_t ipproto, AppProto alproto, const char *event_name, uint8_t *event_id, AppLayerEventType *event_type)