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);
940 if (pkt_dir & STREAM_TOSERVER) {
941 txd->updated_ts =
false;
943 txd->updated_tc =
false;
946 const int tx_progress_tc =
948 if (tx_progress_tc < tx_end_state_tc) {
949 SCLogDebug(
"%p/%"PRIu64
" skipping: tc parser not done", tx, i);
953 const int tx_progress_ts =
955 if (tx_progress_ts < tx_end_state_ts) {
956 SCLogDebug(
"%p/%"PRIu64
" skipping: ts parser not done", tx, i);
961 if (txd && has_tx_detect_flags) {
964 if (!(detect_flags_ts &
966 SCLogDebug(
"%p/%" PRIu64
" skipping: TS inspect not done: ts:%" PRIx64, tx, i,
973 if (!(detect_flags_tc &
975 SCLogDebug(
"%p/%" PRIu64
" skipping: TC inspect not done: ts:%" PRIx64, tx, i,
983 SCLogDebug(
"%p/%" PRIu64
" tx_skipped", tx, i);
988 if (txd && logger_expectation != 0) {
989 LoggerId tx_logged = GetTxLogged(txd);
990 if (tx_logged != logger_expectation) {
991 SCLogDebug(
"%p/%"PRIu64
" skipping: logging not done: want:%"PRIx32
", have:%"PRIx32,
992 tx, i, logger_expectation, tx_logged);
1001 SCLogDebug(
"files_opened %u files_logged %u files_stored %u", txd->files_opened,
1002 txd->files_logged, txd->files_stored);
1004 if (txd->files_opened) {
1021 SCLogDebug(
"skipped? %s i %"PRIu64
", new_min %"PRIu64, skipped ?
"true" :
"false", i, new_min);
1024 SCLogDebug(
"final i %"PRIu64
", new_min %"PRIu64, i, new_min);
1027 if (!ires.has_next) {
1031 SCLogDebug(
"no next: cur tx i %"PRIu64
", total %"PRIu64, i, total_txs);
1033 new_min = total_txs;
1034 SCLogDebug(
"no next: cur tx i %"PRIu64
", total %"PRIu64
": "
1035 "new_min updated to %"PRIu64, i, total_txs, new_min);
1043 SCLogDebug(
"update f->alparser->min_id? %"PRIu64
" vs %"PRIu64, new_min, alparser->
min_id);
1044 if (new_min > alparser->
min_id) {
1045 const uint64_t next_id = new_min;
1046 alparser->
min_id = next_id;
1055 static inline int StateGetProgressCompletionStatus(
const AppProto alproto,
const uint8_t
flags)
1057 if (
flags & STREAM_TOSERVER) {
1059 }
else if (
flags & STREAM_TOCLIENT) {
1073 void *alstate, uint8_t
flags)
1078 r = StateGetProgressCompletionStatus(alproto,
flags);
1080 uint8_t direction =
flags & (STREAM_TOCLIENT | STREAM_TOSERVER);
1082 alstate, direction);
1105 int r = StateGetProgressCompletionStatus(alproto, direction);
1110 uint8_t *event_id, AppLayerEventType *event_type)
1120 const char **event_name, AppLayerEventType *event_type)
1124 *event_name = (
const char *)NULL;
1175 AppLayerStateData *d =
1183 void *state,
void *tx,
enum ConfigAction mode, AppLayerTxConfig config)
1197 if ((
flags & (STREAM_EOF|STREAM_TOSERVER)) == (STREAM_EOF|STREAM_TOSERVER)) {
1198 SCLogDebug(
"setting APP_LAYER_PARSER_EOF_TS");
1200 }
else if ((
flags & (STREAM_EOF|STREAM_TOCLIENT)) == (STREAM_EOF|STREAM_TOCLIENT)) {
1201 SCLogDebug(
"setting APP_LAYER_PARSER_EOF_TC");
1210 static void HandleStreamFrames(
Flow *f, StreamSlice stream_slice,
const uint8_t *input,
1211 const uint32_t input_len,
const uint8_t
flags)
1213 const uint8_t direction = (
flags & STREAM_TOSERVER) ? 0 : 1;
1219 input != NULL && f->
proto == IPPROTO_TCP) {
1221 if (frame == NULL) {
1222 int64_t frame_len = -1;
1223 if (
flags & STREAM_EOF)
1224 frame_len = input_len;
1227 f, &stream_slice, stream_slice.offset, frame_len, direction,
FRAME_STREAM_TYPE);
1229 SCLogDebug(
"opened: frame %p id %" PRIi64, frame, frame->
id);
1234 if (direction == 0) {
1240 }
else if (
flags & STREAM_EOF) {
1245 int64_t slice_o = (int64_t)stream_slice.offset - (int64_t)frame->
offset;
1246 int64_t frame_len = slice_o + (int64_t)input_len;
1247 SCLogDebug(
"%s: EOF frame->offset %" PRIu64
" -> %" PRIi64
": o %" PRIi64,
1249 frame->
len = frame_len;
1254 static void Setup(
Flow *f,
const uint8_t direction,
const uint8_t *input, uint32_t input_len,
1255 const uint8_t
flags, StreamSlice *as)
1257 memset(as, 0,
sizeof(*as));
1259 as->input_len = input_len;
1273 uint8_t
flags,
const uint8_t *input, uint32_t input_len)
1276 #ifdef DEBUG_VALIDATION
1281 StreamSlice stream_slice;
1282 void *alstate = NULL;
1283 uint64_t p_tx_cnt = 0;
1284 uint32_t consumed = input_len;
1285 const uint8_t direction = (
flags & STREAM_TOSERVER) ? 0 : 1;
1289 if (f->
proto == IPPROTO_TCP) {
1295 if (
flags & STREAM_GAP) {
1297 SCLogDebug(
"app-layer parser does not accept gaps");
1307 if (pstate == NULL) {
1309 if (pstate == NULL) {
1315 SetEOFFlags(pstate,
flags);
1320 if (alstate == NULL) {
1324 SCLogDebug(
"alloced new app layer state %p (name %s)",
1332 SCLogDebug(
"state data: updating file_flags %04x with flow file_flags %04x",
1339 SCLogDebug(
"using existing app layer state %p (name %s))",
1346 if (input_len > 0 || (
flags & STREAM_EOF)) {
1347 Setup(f,
flags & (STREAM_TOSERVER | STREAM_TOCLIENT), input, input_len,
flags,
1349 HandleStreamFrames(f, stream_slice, input, input_len,
flags);
1352 if (((stream_slice.flags & STREAM_TOSERVER) &&
1353 stream_slice.offset >= g_eps_applayer_error_offset_ts)) {
1354 SCLogNotice(
"putting parser %s into an error state from toserver offset %" PRIu64,
1359 if (((stream_slice.flags & STREAM_TOCLIENT) &&
1360 stream_slice.offset >= g_eps_applayer_error_offset_tc)) {
1361 SCLogNotice(
"putting parser %s into an error state from toclient offset %" PRIu64,
1368 AppLayerResult res = p->
Parser[direction](f, alstate, pstate, stream_slice,
1370 if (res.status < 0) {
1373 }
else if (res.status > 0) {
1382 if (res.consumed > input_len || res.needed + res.consumed < input_len) {
1390 (
flags & STREAM_TOSERVER) ?
"toserver" :
"toclient");
1391 if (direction == 0) {
1405 consumed = res.consumed;
1413 if (f->
proto == IPPROTO_TCP) {
1435 FlowSetNoPayloadInspectionFlag(f);
1441 FlowSetNoPayloadInspectionFlag(f);
1443 if (f->
proto == IPPROTO_TCP) {
1455 if (cur_tx_cnt > p_tx_cnt &&
tv) {
1461 if (consumed != input_len && f->
proto == IPPROTO_TCP && f->
protoctx != NULL) {
1471 if (f->
proto == IPPROTO_TCP) {
1485 SCLogDebug(
"setting APP_LAYER_PARSER_EOF_TC and APP_LAYER_PARSER_EOF_TS");
1526 int r = (alp_ctx.
ctxs[ipproto_map][alproto].
logger ==
false) ? 0 : 1;
1543 if (f != NULL && f->
protoctx != NULL)
1569 if (state != NULL) {
1606 if (
ctx->StateFree != NULL && alstate != NULL)
1607 ctx->StateFree(alstate);
1621 static void ValidateParserProtoDump(
AppProto alproto, uint8_t ipproto)
1625 printf(
"ERROR: incomplete app-layer registration\n");
1626 printf(
"AppLayer protocol %s ipproto %u\n",
AppProtoToString(alproto), ipproto);
1627 printf(
"- option flags %"PRIx32
"\n",
ctx->option_flags);
1628 printf(
"- first_data_dir %"PRIx8
"\n",
ctx->first_data_dir);
1629 printf(
"Mandatory:\n");
1630 printf(
"- Parser[0] %p Parser[1] %p\n",
ctx->Parser[0],
ctx->Parser[1]);
1631 printf(
"- StateAlloc %p StateFree %p\n",
ctx->StateAlloc,
ctx->StateFree);
1632 printf(
"- StateGetTx %p StateGetTxCnt %p StateTransactionFree %p\n",
1633 ctx->StateGetTx,
ctx->StateGetTxCnt,
ctx->StateTransactionFree);
1634 printf(
"- GetTxData %p\n",
ctx->GetTxData);
1635 printf(
"- GetStateData %p\n",
ctx->GetStateData);
1636 printf(
"- StateGetProgress %p\n",
ctx->StateGetProgress);
1637 printf(
"Optional:\n");
1638 printf(
"- LocalStorageAlloc %p LocalStorageFree %p\n",
ctx->LocalStorageAlloc,
ctx->LocalStorageFree);
1639 printf(
"- StateGetEventInfo %p StateGetEventInfoById %p\n",
ctx->StateGetEventInfo,
1640 ctx->StateGetEventInfoById);
1643 #define BOTH_SET(a, b) ((a) != NULL && (b) != NULL)
1644 #define BOTH_SET_OR_BOTH_UNSET(a, b) (((a) == NULL && (b) == NULL) || ((a) != NULL && (b) != NULL))
1645 #define THREE_SET(a, b, c) ((a) != NULL && (b) != NULL && (c) != NULL)
1647 static void ValidateParserProto(
AppProto alproto, uint8_t ipproto)
1652 if (
ctx->Parser[0] == NULL &&
ctx->Parser[1] == NULL)
1664 if (
ctx->StateGetProgress == NULL) {
1671 if (
ctx->GetTxData == NULL) {
1674 if (
ctx->GetStateData == NULL) {
1679 ValidateParserProtoDump(alproto, ipproto);
1683 #undef BOTH_SET_OR_BOTH_UNSET
1684 #undef THREE_SET_OR_THREE_UNSET
1687 static void ValidateParser(
AppProto alproto)
1689 ValidateParserProto(alproto, IPPROTO_TCP);
1690 ValidateParserProto(alproto, IPPROTO_UDP);
1693 static void ValidateParsers(
void)
1709 rs_dcerpc_register_parser();
1710 rs_dcerpc_udp_register_parser();
1715 SCRegisterDnsUdpParser();
1716 SCRegisterDnsTcpParser();
1717 rs_bittorrent_dht_udp_register_parser();
1719 SCEnipRegisterParsers();
1723 rs_register_ntp_parser();
1726 rs_register_krb5_parser();
1727 rs_dhcp_register_parser();
1728 rs_register_snmp_parser();
1729 rs_sip_register_parser();
1730 rs_quic_register_parser();
1731 rs_websocket_register_parser();
1732 SCRegisterLdapTcpParser();
1733 SCRegisterLdapUdpParser();
1734 rs_template_register_parser();
1735 SCRfbRegisterParser();
1736 SCMqttRegisterParser();
1737 SCRegisterPgsqlParser();
1738 rs_rdp_register_parser();
1740 rs_telnet_register_parser();
1747 IPPROTO_TCP,
ALPROTO_POP3,
"+OK ", 4, 0, STREAM_TOCLIENT) < 0) {
1748 FatalError(
"pop3 proto registration failure");
1751 SCLogInfo(
"Protocol detection and parser disabled for pop3 protocol.");
1762 pstate->
flags |= flag;
1779 void (*RegisterUnittests)(
void))
1783 RegisterUnittests = RegisterUnittests;
1796 for (alproto = 0; alproto <
ALPROTO_MAX; alproto++) {
1797 ctx = &alp_ctx.
ctxs[ip][alproto];
1798 if (
ctx->RegisterUnittests == NULL)
1800 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)