suricata
app-layer-htp.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2020 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  * \defgroup httplayer HTTP layer support
20  *
21  * @{
22  */
23 
24 /**
25  * \file
26  *
27  * \author Gurvinder Singh <gurvindersinghdahiya@gmail.com>
28  * \author Pablo Rincon <pablo.rincon.crespo@gmail.com>
29  *
30  * This file provides a HTTP protocol support for the engine using HTP library.
31  */
32 
33 #ifndef SURICATA_APP_LAYER_HTP_H
34 #define SURICATA_APP_LAYER_HTP_H
35 
36 #include "rust.h"
37 #include "app-layer-frames.h"
38 
39 #include <htp/htp.h>
40 
41 /* default request body limit */
42 #define HTP_CONFIG_DEFAULT_REQUEST_BODY_LIMIT 4096U
43 #define HTP_CONFIG_DEFAULT_RESPONSE_BODY_LIMIT 4096U
44 #define HTP_CONFIG_DEFAULT_REQUEST_INSPECT_MIN_SIZE 32768U
45 #define HTP_CONFIG_DEFAULT_REQUEST_INSPECT_WINDOW 4096U
46 #define HTP_CONFIG_DEFAULT_RESPONSE_INSPECT_MIN_SIZE 32768U
47 #define HTP_CONFIG_DEFAULT_RESPONSE_INSPECT_WINDOW 4096U
48 #define HTP_CONFIG_DEFAULT_FIELD_LIMIT_SOFT 9000U
49 #define HTP_CONFIG_DEFAULT_FIELD_LIMIT_HARD 18000U
50 
51 #define HTP_CONFIG_DEFAULT_LZMA_LAYERS 0U
52 /* default libhtp lzma limit, taken from libhtp. */
53 #define HTP_CONFIG_DEFAULT_LZMA_MEMLIMIT 1048576U
54 #define HTP_CONFIG_DEFAULT_COMPRESSION_BOMB_LIMIT 1048576U
55 // 100000 usec is 0.1 sec
56 #define HTP_CONFIG_DEFAULT_COMPRESSION_TIME_LIMIT 100000
57 
58 #define HTP_CONFIG_DEFAULT_RANDOMIZE 1
59 #define HTP_CONFIG_DEFAULT_RANDOMIZE_RANGE 10
60 
61 // 0x0001 not used
62 #define HTP_FLAG_STATE_CLOSED_TS 0x0002 /**< Flag to indicate that HTTP
63  connection is closed */
64 #define HTP_FLAG_STATE_CLOSED_TC \
65  0x0004 /**< Flag to indicate that HTTP \
66  connection is closed */
67 
68 enum {
71  HTP_BODY_REQUEST_POST, /* POST, no MP */
73 };
74 
75 enum {
76  /* libhtp errors/warnings */
122 
125 
129 
130  /* suricata errors/warnings */
134 
136 
138 };
139 
140 typedef enum HtpSwfCompressType_ {
146 
147 typedef struct HTPCfgDir_ {
148  uint32_t body_limit;
150  uint32_t inspect_window;
152 
153 /** Need a linked list in order to keep track of these */
154 typedef struct HTPCfgRec_ {
155  htp_cfg_t *cfg;
156  struct HTPCfgRec_ *next;
157 
158  /** max size of the client body we inspect */
162 
167 
170 
171  bool uri_include_all; /**< use all info in uri (bool) */
173 
174 /** Struct used to hold chunks of a body on a request */
176  struct HtpBodyChunk_ *next; /**< Pointer to the next chunk */
177  int logged;
178  StreamingBufferSegment sbseg;
179 } __attribute__((__packed__));
180 typedef struct HtpBodyChunk_ HtpBodyChunk;
181 
182 /** Struct used to hold all the chunks of a body on a request */
183 typedef struct HtpBody_ {
184  HtpBodyChunk *first; /**< Pointer to the first chunk */
185  HtpBodyChunk *last; /**< Pointer to the last chunk */
186 
188 
189  /* Holds the length of the htp request body seen so far */
191  /* parser tracker */
192  uint64_t body_parsed;
193  /* inspection tracker */
194  uint64_t body_inspected;
196 
197 #define HTP_BOUNDARY_SET BIT_U8(1) /**< We have a boundary string */
198 #define HTP_FILENAME_SET BIT_U8(3) /**< filename is registered in the flow */
199 #define HTP_DONTSTORE BIT_U8(4) /**< not storing this file */
200 #define HTP_STREAM_DEPTH_SET BIT_U8(5) /**< stream-depth is set */
201 
202 /** Now the Body Chunks will be stored per transaction, at
203  * the tx user data */
204 typedef struct HtpTxUserData_ {
205  /* Body of the request (if any) */
208 
211 
212  uint8_t tsflags;
213  uint8_t tcflags;
214 
216 
219 
221 
226 
227  MimeStateHTTP *mime_state;
228 
229  HttpRangeContainerBlock *file_range; /**< used to assign track ids to range file */
230 
235 
236 typedef struct HtpState_ {
237  /* Connection parser structure for each connection */
238  htp_connp_t *connp;
239  /* Connection structure for each connection */
240  htp_conn_t *conn;
241  Flow *f; /**< Needed to retrieve the original flow when using HTPLib callbacks */
242  uint64_t transaction_cnt;
243  // tx_freed is the number of already freed transactions
244  // This is needed as libhtp only keeps the live transactions :
245  // To get the total number of transactions, we need to add
246  // the number of transactions tracked by libhtp to this number.
247  // It is also needed as an offset to translate between suricata
248  // transaction id to libhtp offset in its list/array
249  uint64_t tx_freed;
250  const struct HTPCfgRec_ *cfg;
251  uint16_t flags;
252  uint16_t events;
253  uint16_t htp_messages_offset; /**< offset into conn->messages list */
254  uint32_t file_track_id; /**< used to assign file track ids to files */
257  StreamSlice *slice;
260  AppLayerStateData state_data;
262 
263 /** part of the engine needs the request body (e.g. http_client_body keyword) */
264 #define HTP_REQUIRE_REQUEST_BODY (1 << 0)
265 /** part of the engine needs the request file (e.g. log-file module) */
266 #define HTP_REQUIRE_REQUEST_FILE (1 << 2)
267 /** part of the engine needs the request body (e.g. file_data keyword) */
268 #define HTP_REQUIRE_RESPONSE_BODY (1 << 3)
269 
270 SC_ATOMIC_EXTERN(uint32_t, htp_config_flags);
271 
272 void RegisterHTPParsers(void);
273 void HTPAtExitPrintStats(void);
274 void HTPFreeConfig(void);
275 
276 /* To free the state from unittests using app-layer-htp */
277 void HTPStateFree(void *);
281 void AppLayerHtpPrintStats(void);
282 
283 void HTPConfigure(void);
284 
285 void HtpConfigCreateBackup(void);
286 void HtpConfigRestoreBackup(void);
287 
288 void *HtpGetTxForH2(void *);
289 
290 #endif /* SURICATA_APP_LAYER_HTP_H */
291 
292 /**
293  * @}
294  */
HtpState
struct HtpState_ HtpState
HtpState_::cfg
const struct HTPCfgRec_ * cfg
Definition: app-layer-htp.h:250
HtpState_::tx_freed
uint64_t tx_freed
Definition: app-layer-htp.h:249
HTTP_DECODER_EVENT_REQUEST_LINE_LEADING_WHITESPACE
@ HTTP_DECODER_EVENT_REQUEST_LINE_LEADING_WHITESPACE
Definition: app-layer-htp.h:107
HTTP_DECODER_EVENT_REQUEST_LINE_INVALID
@ HTTP_DECODER_EVENT_REQUEST_LINE_INVALID
Definition: app-layer-htp.h:120
HTP_BODY_REQUEST_POST
@ HTP_BODY_REQUEST_POST
Definition: app-layer-htp.h:71
HTTP_DECODER_EVENT_RESPONSE_FIELD_MISSING_COLON
@ HTTP_DECODER_EVENT_RESPONSE_FIELD_MISSING_COLON
Definition: app-layer-htp.h:80
FileContainer_
Definition: util-file.h:113
HTTP_DECODER_EVENT_RESPONSE_ABNORMAL_TRANSFER_ENCODING
@ HTTP_DECODER_EVENT_RESPONSE_ABNORMAL_TRANSFER_ENCODING
Definition: app-layer-htp.h:114
AppLayerHtpNeedFileInspection
void AppLayerHtpNeedFileInspection(void)
Sets a flag that informs the HTP app layer that some module in the engine needs the http request file...
Definition: app-layer-htp.c:501
HTTP_DECODER_EVENT_TOO_MANY_WARNINGS
@ HTTP_DECODER_EVENT_TOO_MANY_WARNINGS
Definition: app-layer-htp.h:135
HtpState_::slice
StreamSlice * slice
Definition: app-layer-htp.h:257
HTTP_DECODER_EVENT_REQUEST_FIELD_MISSING_COLON
@ HTTP_DECODER_EVENT_REQUEST_FIELD_MISSING_COLON
Definition: app-layer-htp.h:79
HTTP_DECODER_EVENT_INVALID_TRANSFER_ENCODING_VALUE_IN_REQUEST
@ HTTP_DECODER_EVENT_INVALID_TRANSFER_ENCODING_VALUE_IN_REQUEST
Definition: app-layer-htp.h:83
HTTP_DECODER_EVENT_URI_HOST_INVALID
@ HTTP_DECODER_EVENT_URI_HOST_INVALID
Definition: app-layer-htp.h:103
HtpTxUserData_::request_headers_raw_len
uint32_t request_headers_raw_len
Definition: app-layer-htp.h:224
HTPCfgDir_
Definition: app-layer-htp.h:147
HtpBody_::sb
StreamingBuffer * sb
Definition: app-layer-htp.h:187
HtpTxUserData_::files_tc
FileContainer files_tc
Definition: app-layer-htp.h:233
HTPCfgRec_::response
HTPCfgDir response
Definition: app-layer-htp.h:169
HtpTxUserData
struct HtpTxUserData_ HtpTxUserData
AppLayerHtpPrintStats
void AppLayerHtpPrintStats(void)
Definition: app-layer-htp.c:2625
HTTP_DECODER_EVENT_METHOD_DELIM_NON_COMPLIANT
@ HTTP_DECODER_EVENT_METHOD_DELIM_NON_COMPLIANT
Definition: app-layer-htp.h:105
HTPCfgDir_::body_limit
uint32_t body_limit
Definition: app-layer-htp.h:148
HtpSwfCompressType_
HtpSwfCompressType_
Definition: app-layer-htp.h:140
HTTP_DECODER_EVENT_MISSING_HOST_HEADER
@ HTTP_DECODER_EVENT_MISSING_HOST_HEADER
Definition: app-layer-htp.h:95
HTTP_DECODER_EVENT_INVALID_REQUEST_CHUNK_LEN
@ HTTP_DECODER_EVENT_INVALID_REQUEST_CHUNK_LEN
Definition: app-layer-htp.h:81
HtpTxUserData_::mime_state
MimeStateHTTP * mime_state
Definition: app-layer-htp.h:227
HTP_BODY_REQUEST_NONE
@ HTP_BODY_REQUEST_NONE
Definition: app-layer-htp.h:69
Flow_
Flow data structure.
Definition: flow.h:360
HtpGetTxForH2
void * HtpGetTxForH2(void *)
Definition: app-layer-htp.c:2688
HtpState_::flags
uint16_t flags
Definition: app-layer-htp.h:251
HtpState_::f
Flow * f
Definition: app-layer-htp.h:241
HTTP_DECODER_EVENT_REQUEST_BODY_UNEXPECTED
@ HTTP_DECODER_EVENT_REQUEST_BODY_UNEXPECTED
Definition: app-layer-htp.h:121
HTTP_DECODER_EVENT_DUPLICATE_CONTENT_LENGTH_FIELD_IN_RESPONSE
@ HTTP_DECODER_EVENT_DUPLICATE_CONTENT_LENGTH_FIELD_IN_RESPONSE
Definition: app-layer-htp.h:88
HtpBody_::last
HtpBodyChunk * last
Definition: app-layer-htp.h:185
HtpTxUserData_::request_body
HtpBody request_body
Definition: app-layer-htp.h:217
HTTP_DECODER_EVENT_ABNORMAL_CE_HEADER
@ HTTP_DECODER_EVENT_ABNORMAL_CE_HEADER
Definition: app-layer-htp.h:109
HtpSwfCompressType
enum HtpSwfCompressType_ HtpSwfCompressType
rust.h
HTTP_SWF_COMPRESSION_ZLIB
@ HTTP_SWF_COMPRESSION_ZLIB
Definition: app-layer-htp.h:142
HtpTxUserData_::request_uri_normalized
bstr * request_uri_normalized
Definition: app-layer-htp.h:220
HTP_BODY_REQUEST_MULTIPART
@ HTP_BODY_REQUEST_MULTIPART
Definition: app-layer-htp.h:70
HtpState_::transaction_cnt
uint64_t transaction_cnt
Definition: app-layer-htp.h:242
HTPCfgRec_::swf_compress_depth
uint32_t swf_compress_depth
Definition: app-layer-htp.h:166
HTPStateFree
void HTPStateFree(void *)
Function to frees the HTTP state memory and also frees the HTTP connection parser memory which was us...
Definition: app-layer-htp.c:389
HTTP_DECODER_EVENT_INVALID_REQUEST_FIELD_FOLDING
@ HTTP_DECODER_EVENT_INVALID_REQUEST_FIELD_FOLDING
Definition: app-layer-htp.h:97
HTTP_DECODER_EVENT_100_CONTINUE_ALREADY_SEEN
@ HTTP_DECODER_EVENT_100_CONTINUE_ALREADY_SEEN
Definition: app-layer-htp.h:89
HTPCfgDir_::inspect_window
uint32_t inspect_window
Definition: app-layer-htp.h:150
HTPConfigure
void HTPConfigure(void)
Definition: app-layer-htp.c:2550
HtpBody_::first
HtpBodyChunk * first
Definition: app-layer-htp.h:184
HtpState_
Definition: app-layer-htp.h:236
HTTP_DECODER_EVENT_REQUEST_SERVER_PORT_TCP_PORT_MISMATCH
@ HTTP_DECODER_EVENT_REQUEST_SERVER_PORT_TCP_PORT_MISMATCH
Definition: app-layer-htp.h:102
HTTP_DECODER_EVENT_RESPONSE_HEADER_INVALID
@ HTTP_DECODER_EVENT_RESPONSE_HEADER_INVALID
Definition: app-layer-htp.h:94
HTTP_DECODER_EVENT_INVALID_AUTHORITY_PORT
@ HTTP_DECODER_EVENT_INVALID_AUTHORITY_PORT
Definition: app-layer-htp.h:92
HTTP_DECODER_EVENT_REQUEST_CHUNK_EXTENSION
@ HTTP_DECODER_EVENT_REQUEST_CHUNK_EXTENSION
Definition: app-layer-htp.h:127
HtpBody_::content_len_so_far
uint64_t content_len_so_far
Definition: app-layer-htp.h:190
__attribute__
struct HtpBodyChunk_ __attribute__((__packed__))
DNP3 link header.
Definition: decode-vlan.c:103
HttpRangeContainerBlock
Definition: app-layer-htp-range.h:90
HtpState_::response_frame_id
FrameId response_frame_id
Definition: app-layer-htp.h:259
HTTP_DECODER_EVENT_INVALID_SERVER_PORT_IN_REQUEST
@ HTTP_DECODER_EVENT_INVALID_SERVER_PORT_IN_REQUEST
Definition: app-layer-htp.h:91
HtpTxUserData_::file_range
HttpRangeContainerBlock * file_range
Definition: app-layer-htp.h:229
HTTP_DECODER_EVENT_INVALID_RESPONSE_FIELD_FOLDING
@ HTTP_DECODER_EVENT_INVALID_RESPONSE_FIELD_FOLDING
Definition: app-layer-htp.h:98
HTTP_DECODER_EVENT_LZMA_MEMLIMIT_REACHED
@ HTTP_DECODER_EVENT_LZMA_MEMLIMIT_REACHED
Definition: app-layer-htp.h:123
HtpState_::last_request_data_stamp
uint64_t last_request_data_stamp
Definition: app-layer-htp.h:255
HtpBody_::body_parsed
uint64_t body_parsed
Definition: app-layer-htp.h:192
HTPCfgRec_::http_body_inline
int http_body_inline
Definition: app-layer-htp.h:161
HTPCfgRec_::randomize_range
int randomize_range
Definition: app-layer-htp.h:160
HTTP_SWF_COMPRESSION_NONE
@ HTTP_SWF_COMPRESSION_NONE
Definition: app-layer-htp.h:141
HtpConfigCreateBackup
void HtpConfigCreateBackup(void)
Definition: app-layer-htp.c:2871
HtpState_::file_track_id
uint32_t file_track_id
Definition: app-layer-htp.h:254
HTPCfgRec_::randomize
int randomize
Definition: app-layer-htp.h:159
HTPCfgDir_::inspect_min_size
uint32_t inspect_min_size
Definition: app-layer-htp.h:149
HTTP_DECODER_EVENT_INVALID_TRANSFER_ENCODING_VALUE_IN_RESPONSE
@ HTTP_DECODER_EVENT_INVALID_TRANSFER_ENCODING_VALUE_IN_RESPONSE
Definition: app-layer-htp.h:84
HTTP_DECODER_EVENT_COMPRESSION_BOMB
@ HTTP_DECODER_EVENT_COMPRESSION_BOMB
Definition: app-layer-htp.h:124
AppLayerHtpEnableRequestBodyCallback
void AppLayerHtpEnableRequestBodyCallback(void)
Sets a flag that informs the HTP app layer that some module in the engine needs the http request body...
Definition: app-layer-htp.c:474
HTTP_DECODER_EVENT_INVALID_CONTENT_LENGTH_FIELD_IN_RESPONSE
@ HTTP_DECODER_EVENT_INVALID_CONTENT_LENGTH_FIELD_IN_RESPONSE
Definition: app-layer-htp.h:86
HTTP_DECODER_EVENT_FAILED_PROTOCOL_CHANGE
@ HTTP_DECODER_EVENT_FAILED_PROTOCOL_CHANGE
Definition: app-layer-htp.h:137
HtpTxUserData_::response_has_trailers
uint8_t response_has_trailers
Definition: app-layer-htp.h:210
HtpTxUserData_::request_headers_raw
uint8_t * request_headers_raw
Definition: app-layer-htp.h:222
HtpState_::conn
htp_conn_t * conn
Definition: app-layer-htp.h:240
HTPCfgRec_::swf_decompress_depth
uint32_t swf_decompress_depth
Definition: app-layer-htp.h:165
HTPCfgRec_::swf_decompression_enabled
int swf_decompression_enabled
Definition: app-layer-htp.h:163
HtpTxUserData_::tx_data
AppLayerTxData tx_data
Definition: app-layer-htp.h:231
HtpState_::state_data
AppLayerStateData state_data
Definition: app-layer-htp.h:260
FrameId
int64_t FrameId
Definition: app-layer-frames.h:34
HTPAtExitPrintStats
void HTPAtExitPrintStats(void)
Print the stats of the HTTP requests.
Definition: app-layer-htp.c:1647
HtpTxUserData_::request_has_trailers
uint8_t request_has_trailers
Definition: app-layer-htp.h:209
HTPCfgRec
struct HTPCfgRec_ HTPCfgRec
HTTP_DECODER_EVENT_RESPONSE_MULTIPART_BYTERANGES
@ HTTP_DECODER_EVENT_RESPONSE_MULTIPART_BYTERANGES
Definition: app-layer-htp.h:113
HTPCfgRec_::uri_include_all
bool uri_include_all
Definition: app-layer-htp.h:171
HTTP_DECODER_EVENT_RANGE_INVALID
@ HTTP_DECODER_EVENT_RANGE_INVALID
Definition: app-layer-htp.h:126
HTTP_DECODER_EVENT_REQUEST_HEADER_INVALID
@ HTTP_DECODER_EVENT_REQUEST_HEADER_INVALID
Definition: app-layer-htp.h:93
HTTP_DECODER_EVENT_MULTIPART_GENERIC_ERROR
@ HTTP_DECODER_EVENT_MULTIPART_GENERIC_ERROR
Definition: app-layer-htp.h:131
HtpBody
struct HtpBody_ HtpBody
AppLayerHtpEnableResponseBodyCallback
void AppLayerHtpEnableResponseBodyCallback(void)
Sets a flag that informs the HTP app layer that some module in the engine needs the http request body...
Definition: app-layer-htp.c:487
HTTP_DECODER_EVENT_UNABLE_TO_MATCH_RESPONSE_TO_REQUEST
@ HTTP_DECODER_EVENT_UNABLE_TO_MATCH_RESPONSE_TO_REQUEST
Definition: app-layer-htp.h:90
HTPCfgRec_::swf_compression_type
HtpSwfCompressType swf_compression_type
Definition: app-layer-htp.h:164
HTTP_DECODER_EVENT_MULTIPART_NO_FILEDATA
@ HTTP_DECODER_EVENT_MULTIPART_NO_FILEDATA
Definition: app-layer-htp.h:132
HtpTxUserData_::response_body
HtpBody response_body
Definition: app-layer-htp.h:218
HtpBodyChunk_::logged
int logged
Definition: app-layer-htp.h:177
HTTP_DECODER_EVENT_UNKNOWN_ERROR
@ HTTP_DECODER_EVENT_UNKNOWN_ERROR
Definition: app-layer-htp.h:77
HTTP_DECODER_EVENT_RESPONSE_HEADER_REPETITION
@ HTTP_DECODER_EVENT_RESPONSE_HEADER_REPETITION
Definition: app-layer-htp.h:112
HTPCfgRec_::next
struct HTPCfgRec_ * next
Definition: app-layer-htp.h:156
StreamingBuffer_
Definition: util-streaming-buffer.h:108
HTTP_DECODER_EVENT_DUPLICATE_CONTENT_LENGTH_FIELD_IN_REQUEST
@ HTTP_DECODER_EVENT_DUPLICATE_CONTENT_LENGTH_FIELD_IN_REQUEST
Definition: app-layer-htp.h:87
HTTP_DECODER_EVENT_RESPONSE_INVALID_STATUS
@ HTTP_DECODER_EVENT_RESPONSE_INVALID_STATUS
Definition: app-layer-htp.h:117
AppLayerTxData
struct AppLayerTxData AppLayerTxData
Definition: detect.h:1364
HtpTxUserData_::request_body_type
uint8_t request_body_type
Definition: app-layer-htp.h:215
HTPCfgRec_::cfg
htp_cfg_t * cfg
Definition: app-layer-htp.h:155
app-layer-frames.h
HtpBody_
Definition: app-layer-htp.h:183
HTPCfgRec_::request
HTPCfgDir request
Definition: app-layer-htp.h:168
HtpTxUserData_::response_headers_raw
uint8_t * response_headers_raw
Definition: app-layer-htp.h:223
HtpBodyChunk_
Definition: app-layer-htp.h:175
HtpState_::connp
htp_connp_t * connp
Definition: app-layer-htp.h:238
HtpTxUserData_::tcflags
uint8_t tcflags
Definition: app-layer-htp.h:213
SC_ATOMIC_EXTERN
SC_ATOMIC_EXTERN(uint32_t, htp_config_flags)
HtpTxUserData_
Definition: app-layer-htp.h:204
HtpState_::last_response_data_stamp
uint64_t last_response_data_stamp
Definition: app-layer-htp.h:256
HTTP_DECODER_EVENT_INVALID_CONTENT_LENGTH_FIELD_IN_REQUEST
@ HTTP_DECODER_EVENT_INVALID_CONTENT_LENGTH_FIELD_IN_REQUEST
Definition: app-layer-htp.h:85
HTTP_DECODER_EVENT_REQUEST_LINE_MISSING_PROTOCOL
@ HTTP_DECODER_EVENT_REQUEST_LINE_MISSING_PROTOCOL
Definition: app-layer-htp.h:128
HTTP_DECODER_EVENT_HEADER_HOST_INVALID
@ HTTP_DECODER_EVENT_HEADER_HOST_INVALID
Definition: app-layer-htp.h:104
HtpConfigRestoreBackup
void HtpConfigRestoreBackup(void)
Definition: app-layer-htp.c:2876
HTTP_DECODER_EVENT_GZIP_DECOMPRESSION_FAILED
@ HTTP_DECODER_EVENT_GZIP_DECOMPRESSION_FAILED
Definition: app-layer-htp.h:78
HtpState_::events
uint16_t events
Definition: app-layer-htp.h:252
HtpBodyChunk_::next
struct HtpBodyChunk_ * next
Definition: app-layer-htp.h:176
HtpTxUserData_::response_body_init
uint8_t response_body_init
Definition: app-layer-htp.h:207
HTTP_DECODER_EVENT_AUTH_UNRECOGNIZED
@ HTTP_DECODER_EVENT_AUTH_UNRECOGNIZED
Definition: app-layer-htp.h:110
HTTP_DECODER_EVENT_REQUEST_FIELD_TOO_LONG
@ HTTP_DECODER_EVENT_REQUEST_FIELD_TOO_LONG
Definition: app-layer-htp.h:99
HTTP_DECODER_EVENT_INVALID_RESPONSE_CHUNK_LEN
@ HTTP_DECODER_EVENT_INVALID_RESPONSE_CHUNK_LEN
Definition: app-layer-htp.h:82
HTTP_DECODER_EVENT_RESPONSE_FIELD_TOO_LONG
@ HTTP_DECODER_EVENT_RESPONSE_FIELD_TOO_LONG
Definition: app-layer-htp.h:100
HTP_BODY_REQUEST_PUT
@ HTP_BODY_REQUEST_PUT
Definition: app-layer-htp.h:72
HTTP_SWF_COMPRESSION_BOTH
@ HTTP_SWF_COMPRESSION_BOTH
Definition: app-layer-htp.h:144
HTPCfgRec_
Definition: app-layer-htp.h:154
RegisterHTPParsers
void RegisterHTPParsers(void)
Register the HTTP protocol and state handling functions to APP layer of the engine.
Definition: app-layer-htp.c:2803
HTTP_SWF_COMPRESSION_LZMA
@ HTTP_SWF_COMPRESSION_LZMA
Definition: app-layer-htp.h:143
HTTP_DECODER_EVENT_REQUEST_LINE_INCOMPLETE
@ HTTP_DECODER_EVENT_REQUEST_LINE_INCOMPLETE
Definition: app-layer-htp.h:118
HtpState_::request_frame_id
FrameId request_frame_id
Definition: app-layer-htp.h:258
HTTP_DECODER_EVENT_FILE_NAME_TOO_LONG
@ HTTP_DECODER_EVENT_FILE_NAME_TOO_LONG
Definition: app-layer-htp.h:101
HTTP_DECODER_EVENT_HOST_HEADER_AMBIGUOUS
@ HTTP_DECODER_EVENT_HOST_HEADER_AMBIGUOUS
Definition: app-layer-htp.h:96
HTPCfgDir
struct HTPCfgDir_ HTPCfgDir
HTTP_DECODER_EVENT_MULTIPART_INVALID_HEADER
@ HTTP_DECODER_EVENT_MULTIPART_INVALID_HEADER
Definition: app-layer-htp.h:133
HTTP_DECODER_EVENT_RESPONSE_INVALID_PROTOCOL
@ HTTP_DECODER_EVENT_RESPONSE_INVALID_PROTOCOL
Definition: app-layer-htp.h:116
HtpTxUserData_::files_ts
FileContainer files_ts
Definition: app-layer-htp.h:232
HTTP_DECODER_EVENT_TOO_MANY_ENCODING_LAYERS
@ HTTP_DECODER_EVENT_TOO_MANY_ENCODING_LAYERS
Definition: app-layer-htp.h:108
HTTP_DECODER_EVENT_DOUBLE_ENCODED_URI
@ HTTP_DECODER_EVENT_DOUBLE_ENCODED_URI
Definition: app-layer-htp.h:119
HTTP_DECODER_EVENT_REQUEST_HEADER_REPETITION
@ HTTP_DECODER_EVENT_REQUEST_HEADER_REPETITION
Definition: app-layer-htp.h:111
HTPFreeConfig
void HTPFreeConfig(void)
Clears the HTTP server configuration memory used by HTP library.
Definition: app-layer-htp.c:1660
HtpTxUserData_::response_headers_raw_len
uint32_t response_headers_raw_len
Definition: app-layer-htp.h:225
HTTP_DECODER_EVENT_URI_DELIM_NON_COMPLIANT
@ HTTP_DECODER_EVENT_URI_DELIM_NON_COMPLIANT
Definition: app-layer-htp.h:106
HtpTxUserData_::request_body_init
uint8_t request_body_init
Definition: app-layer-htp.h:206
HtpBodyChunk_::sbseg
StreamingBufferSegment sbseg
Definition: app-layer-htp.h:178
HTTP_DECODER_EVENT_RESPONSE_CHUNKED_OLD_PROTO
@ HTTP_DECODER_EVENT_RESPONSE_CHUNKED_OLD_PROTO
Definition: app-layer-htp.h:115
HtpTxUserData_::tsflags
uint8_t tsflags
Definition: app-layer-htp.h:212
HtpBody_::body_inspected
uint64_t body_inspected
Definition: app-layer-htp.h:194
HtpState_::htp_messages_offset
uint16_t htp_messages_offset
Definition: app-layer-htp.h:253