suricata
|
#include "threadvars.h"
#include "decode.h"
#include "flow.h"
#include "stream-tcp-private.h"
#include "stream-tcp-reassemble.h"
#include "rust.h"
Go to the source code of this file.
Macros | |
#define | APP_LAYER_DATA_ALREADY_SENT_TO_APP_LAYER (~STREAM_TOSERVER & ~STREAM_TOCLIENT) |
#define | AppLayerProfilingReset(app_tctx) AppLayerProfilingResetInternal(app_tctx) |
#define | AppLayerProfilingStore(app_tctx, p) AppLayerProfilingStoreInternal(app_tctx, p) |
Functions | |
int | AppLayerHandleTCPData (ThreadVars *tv, TcpReassemblyThreadCtx *ra_ctx, Packet *p, Flow *f, TcpSession *ssn, TcpStream **stream, uint8_t *data, uint32_t data_len, uint8_t flags, enum StreamUpdateDir dir) |
Handles reassembled tcp stream. More... | |
int | AppLayerHandleUdp (ThreadVars *tv, AppLayerThreadCtx *app_tctx, Packet *p, Flow *f) |
Handles an udp chunk. More... | |
AppProto | AppLayerGetProtoByName (char *alproto_name) |
Given a protocol string, returns the corresponding internal protocol id. More... | |
const char * | AppLayerGetProtoName (AppProto alproto) |
Given the internal protocol id, returns a string representation of the protocol. More... | |
void | AppLayerListSupportedProtocols (void) |
int | AppLayerSetup (void) |
Setup the app layer. More... | |
int | AppLayerDeSetup (void) |
De initializes the app layer. More... | |
AppLayerThreadCtx * | AppLayerGetCtxThread (void) |
Creates a new app layer thread context. More... | |
void | AppLayerDestroyCtxThread (AppLayerThreadCtx *tctx) |
Destroys the context created by AppLayerGetCtxThread(). More... | |
void | AppLayerRegisterThreadCounters (ThreadVars *tv) |
Registers per flow counters for all protocols. More... | |
void | AppLayerProfilingResetInternal (AppLayerThreadCtx *app_tctx) |
void | AppLayerProfilingStoreInternal (AppLayerThreadCtx *app_tctx, Packet *p) |
void | AppLayerRegisterGlobalCounters (void) |
HACK to work around our broken unix manager (re)init loop. More... | |
void | AppLayerUnittestsRegister (void) |
void | AppLayerIncTxCounter (ThreadVars *tv, Flow *f, uint64_t step) |
void | AppLayerIncGapErrorCounter (ThreadVars *tv, Flow *f) |
void | AppLayerIncAllocErrorCounter (ThreadVars *tv, Flow *f) |
void | AppLayerIncParserErrorCounter (ThreadVars *tv, Flow *f) |
void | AppLayerIncInternalErrorCounter (ThreadVars *tv, Flow *f) |
Application layer handling and protocols implementation
Definition in file app-layer.h.
#define APP_LAYER_DATA_ALREADY_SENT_TO_APP_LAYER (~STREAM_TOSERVER & ~STREAM_TOCLIENT) |
Definition at line 41 of file app-layer.h.
#define AppLayerProfilingReset | ( | app_tctx | ) | AppLayerProfilingResetInternal(app_tctx) |
Definition at line 128 of file app-layer.h.
#define AppLayerProfilingStore | ( | app_tctx, | |
p | |||
) | AppLayerProfilingStoreInternal(app_tctx, p) |
Definition at line 129 of file app-layer.h.
int AppLayerDeSetup | ( | void | ) |
De initializes the app layer.
Includes de initializing protocol detection and the protocol parser.
Definition at line 1047 of file app-layer.c.
References AppLayerDeSetupCounters(), AppLayerParserDeSetup(), AppLayerProtoDetectDeSetup(), SCEnter, and SCReturnInt.
Referenced by GlobalsDestroy().
void AppLayerDestroyCtxThread | ( | AppLayerThreadCtx * | tctx | ) |
Destroys the context created by AppLayerGetCtxThread().
tctx | Pointer to the thread context to destroy. |
Definition at line 1080 of file app-layer.c.
References AppLayerThreadCtx_::alp_tctx, AppLayerThreadCtx_::alpd_tctx, AppLayerParserThreadCtxFree(), AppLayerProtoDetectDestroyCtxThread(), SCEnter, SCFree, and SCReturn.
Referenced by AppLayerGetCtxThread(), DecodeThreadVarsFree(), and StreamTcpReassembleFreeThreadCtx().
AppLayerThreadCtx* AppLayerGetCtxThread | ( | void | ) |
Creates a new app layer thread context.
Pointer | to the newly create thread context, on success; NULL, on failure. |
Definition at line 1059 of file app-layer.c.
References AppLayerThreadCtx_::alp_tctx, AppLayerThreadCtx_::alpd_tctx, AppLayerDestroyCtxThread(), AppLayerParserThreadCtxAlloc(), AppLayerProtoDetectGetCtxThread(), SCCalloc, SCEnter, and SCReturnPtr.
Referenced by DecodeThreadVarsAlloc(), and StreamTcpReassembleInitThreadCtx().
AppProto AppLayerGetProtoByName | ( | char * | alproto_name | ) |
Given a protocol string, returns the corresponding internal protocol id.
The | internal protocol id. |
Definition at line 998 of file app-layer.c.
References AppLayerProtoDetectGetProtoByName(), SCEnter, and SCReturnCT.
const char* AppLayerGetProtoName | ( | AppProto | alproto | ) |
Given the internal protocol id, returns a string representation of the protocol.
alproto | The internal protocol id. |
String | representation of the protocol. |
Definition at line 1005 of file app-layer.c.
References AppLayerProtoDetectGetProtoName(), SCEnter, and SCReturnCT.
Referenced by AppLayerListSupportedProtocols().
int AppLayerHandleTCPData | ( | ThreadVars * | tv, |
TcpReassemblyThreadCtx * | ra_ctx, | ||
Packet * | p, | ||
Flow * | f, | ||
TcpSession * | ssn, | ||
TcpStream ** | stream, | ||
uint8_t * | data, | ||
uint32_t | data_len, | ||
uint8_t | flags, | ||
enum StreamUpdateDir | app_update_dir | ||
) |
Handles reassembled tcp stream.
Handles reassembled tcp stream.
First run protocol detection and then when the protocol is known invoke the app layer parser.
stream | ptr-to-ptr to stream object. Might change if flow dir is reversed. |
Definition at line 708 of file app-layer.c.
References Flow_::alproto, Flow_::alproto_tc, Flow_::alproto_ts, ALPROTO_UNKNOWN, TcpReassemblyThreadCtx_::app_tctx, DEBUG_ASSERT_FLOW_LOCKED, DEBUG_VALIDATE_BUG_ON, flags, TcpSession_::flags, SCEnter, SCLogDebug, STREAMTCP_FLAG_APP_LAYER_DISABLED, and StreamTcpSetStreamFlagAppProtoDetectionCompleted.
Referenced by StreamTcpReassembleAppLayer().
int AppLayerHandleUdp | ( | ThreadVars * | tv, |
AppLayerThreadCtx * | tctx, | ||
Packet * | p, | ||
Flow * | f | ||
) |
Handles an udp chunk.
Handles an udp chunk.
If the protocol is yet unknown, the proto detection code is run first.
dp_ctx | Thread app layer detect context |
f | locked flow |
p | UDP packet |
0 | ok |
-1 | error |
Definition at line 874 of file app-layer.c.
References AppLayerThreadCtx_::alpd_tctx, Flow_::alproto, ALPROTO_FAILED, Flow_::alproto_tc, Flow_::alproto_ts, ALPROTO_UNKNOWN, Packet_::app_layer_events, APPLAYER_MISMATCH_PROTOCOL_BOTH_DIRECTIONS, AppLayerDecoderEventsSetEventRaw(), AppLayerProfilingReset, AppLayerProtoDetectGetProto(), flags, FLOW_PKT_TOSERVER, Packet_::flowflags, PACKET_PROFILING_APP_PD_END, PACKET_PROFILING_APP_PD_START, Packet_::payload, Packet_::payload_len, SCEnter, SCLogDebug, and SCReturnInt.
void AppLayerIncAllocErrorCounter | ( | ThreadVars * | tv, |
Flow * | f | ||
) |
Definition at line 170 of file app-layer.c.
References AppLayerCounters_::alloc_error_id, Flow_::alproto, applayer_counters, likely, Flow_::protomap, StatsIncr(), and tv.
void AppLayerIncGapErrorCounter | ( | ThreadVars * | tv, |
Flow * | f | ||
) |
Definition at line 162 of file app-layer.c.
References Flow_::alproto, applayer_counters, AppLayerCounters_::gap_error_id, likely, Flow_::protomap, StatsIncr(), and tv.
void AppLayerIncInternalErrorCounter | ( | ThreadVars * | tv, |
Flow * | f | ||
) |
Definition at line 186 of file app-layer.c.
References Flow_::alproto, applayer_counters, AppLayerCounters_::internal_error_id, likely, Flow_::protomap, StatsIncr(), and tv.
void AppLayerIncParserErrorCounter | ( | ThreadVars * | tv, |
Flow * | f | ||
) |
Definition at line 178 of file app-layer.c.
References Flow_::alproto, applayer_counters, likely, AppLayerCounters_::parser_error_id, Flow_::protomap, StatsIncr(), and tv.
void AppLayerIncTxCounter | ( | ThreadVars * | tv, |
Flow * | f, | ||
uint64_t | step | ||
) |
Definition at line 154 of file app-layer.c.
References Flow_::alproto, applayer_counters, AppLayerCounters_::counter_tx_id, likely, Flow_::protomap, StatsAddUI64(), and tv.
void AppLayerListSupportedProtocols | ( | void | ) |
Definition at line 1012 of file app-layer.c.
References ALPROTO_MAX, AppLayerGetProtoName(), AppLayerProtoDetectSupportedAppProtocols(), SCEnter, and SCReturn.
Referenced by ListAppLayerProtocols().
void AppLayerProfilingResetInternal | ( | AppLayerThreadCtx * | app_tctx | ) |
Definition at line 1097 of file app-layer.c.
References PACKET_PROFILING_APP_RESET.
void AppLayerProfilingStoreInternal | ( | AppLayerThreadCtx * | app_tctx, |
Packet * | p | ||
) |
Definition at line 1102 of file app-layer.c.
References PACKET_PROFILING_APP_STORE.
void AppLayerRegisterGlobalCounters | ( | void | ) |
HACK to work around our broken unix manager (re)init loop.
Definition at line 1110 of file app-layer.c.
References ExpectationGetCounter(), FTPMemcapGlobalCounter(), FTPMemuseGlobalCounter(), HostGetMemcap(), HostGetMemuse(), HTPByteRangeMemcapGlobalCounter(), HTPByteRangeMemuseGlobalCounter(), HTPMemcapGlobalCounter(), HTPMemuseGlobalCounter(), IPPairGetMemuse(), and StatsRegisterGlobalCounter().
Referenced by PreRunInit().
void AppLayerRegisterThreadCounters | ( | ThreadVars * | tv | ) |
Registers per flow counters for all protocols.
Definition at line 1249 of file app-layer.c.
References ALPROTO_MAX, AppLayerProtoDetectSupportedAppProtocols(), EXCEPTION_POLICY_MAX, EXCEPTION_POLICY_NOT_SET, and g_applayerparser_error_policy.
int AppLayerSetup | ( | void | ) |
Setup the app layer.
Includes protocol detection setup and the protocol parser setup.
0 | On success. |
-1 | On failure. |
Definition at line 1032 of file app-layer.c.
References AppLayerParserRegisterProtocolParsers(), AppLayerParserSetup(), AppLayerProtoDetectPrepareState(), AppLayerProtoDetectSetup(), AppLayerSetupCounters(), SCEnter, and SCReturnInt.
Referenced by ListAppLayerProtocols(), ListKeywords(), PostConfLoadedSetup(), and RunUnittests().
void AppLayerUnittestsRegister | ( | void | ) |
Definition at line 2952 of file app-layer.c.
References SCEnter, and UtRegisterTest().