suricata
detect-http-header-names.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2017 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  * \ingroup httplayer
20  *
21  * @{
22  */
23 
24 
25 /**
26  * \file
27  *
28  * \author Victor Julien <victor@inliniac.net>
29  *
30  * Implements support http_header_names
31  */
32 
33 #include "suricata-common.h"
34 #include "threads.h"
35 #include "decode.h"
36 
37 #include "detect.h"
38 #include "detect-parse.h"
39 #include "detect-engine.h"
40 #include "detect-engine-buffer.h"
41 #include "detect-engine-mpm.h"
42 #include "detect-engine-state.h"
45 #include "detect-content.h"
46 #include "detect-pcre.h"
49 
50 #include "flow.h"
51 #include "flow-var.h"
52 #include "flow-util.h"
53 
54 #include "util-debug.h"
55 #include "util-unittest.h"
56 #include "util-unittest-helper.h"
57 #include "util-spm.h"
58 #include "util-print.h"
59 
60 #include "app-layer.h"
61 #include "app-layer-parser.h"
62 
63 #include "app-layer-htp.h"
64 #include "detect-http-header.h"
65 #include "stream-tcp.h"
66 
67 #define KEYWORD_NAME "http.header_names"
68 #define KEYWORD_NAME_LEGACY "http_header_names"
69 #define KEYWORD_DOC "http-keywords.html#http-header-names"
70 #define BUFFER_NAME "http_header_names"
71 #define BUFFER_DESC "http header names"
72 static int g_buffer_id = 0;
73 static int g_keyword_thread_id = 0;
74 static int g_http2_thread_id = 0;
75 
76 #define BUFFER_SIZE_STEP 256
78 
79 static uint8_t *GetBufferForTX(
80  htp_tx_t *tx, DetectEngineThreadCtx *det_ctx, uint8_t flags, uint32_t *buffer_len)
81 {
82  *buffer_len = 0;
83 
84  HttpHeaderThreadData *hdr_td = NULL;
85  HttpHeaderBuffer *buf = HttpHeaderGetBufferSpace(det_ctx, flags, g_keyword_thread_id, &hdr_td);
86  if (unlikely(buf == NULL)) {
87  return NULL;
88  }
89 
90  const htp_headers_t *headers;
91  if (flags & STREAM_TOSERVER) {
92  if (AppLayerParserGetStateProgress(IPPROTO_TCP, ALPROTO_HTTP1, tx, flags) <=
93  HTP_REQUEST_PROGRESS_HEADERS)
94  return NULL;
95  headers = htp_tx_request_headers(tx);
96  } else {
97  if (AppLayerParserGetStateProgress(IPPROTO_TCP, ALPROTO_HTTP1, tx, flags) <=
98  HTP_RESPONSE_PROGRESS_HEADERS)
99  return NULL;
100  headers = htp_tx_response_headers(tx);
101  }
102  if (headers == NULL)
103  return NULL;
104 
105  /* fill the buffer. \r\nName1\r\nName2\r\n\r\n */
106  size_t i = 0;
107  size_t no_of_headers = htp_headers_size(headers);
108  for (; i < no_of_headers; i++) {
109  const htp_header_t *h = htp_headers_get_index(headers, i);
110  size_t size = htp_header_name_len(h) + 2; // for \r\n
111  if (i == 0)
112  size += 2;
113  if (i + 1 == no_of_headers)
114  size += 2;
115 
116  SCLogDebug("size %"PRIuMAX" + buf->len %u vs buf->size %u",
117  (uintmax_t)size, buf->len, buf->size);
118  if (size + buf->len > buf->size) {
119  if (HttpHeaderExpandBuffer(hdr_td, buf, size) != 0) {
120  return NULL;
121  }
122  }
123 
124  /* start with a \r\n */
125  if (i == 0) {
126  buf->buffer[buf->len++] = '\r';
127  buf->buffer[buf->len++] = '\n';
128  }
129 
130  memcpy(buf->buffer + buf->len, htp_header_name_ptr(h), htp_header_name_len(h));
131  buf->len += htp_header_name_len(h);
132  buf->buffer[buf->len++] = '\r';
133  buf->buffer[buf->len++] = '\n';
134 
135  /* end with an extra \r\n */
136  if (i + 1 == no_of_headers) {
137  buf->buffer[buf->len++] = '\r';
138  buf->buffer[buf->len++] = '\n';
139  }
140  }
141 
142  *buffer_len = buf->len;
143  return buf->buffer;
144 }
145 
146 static InspectionBuffer *GetBuffer1ForTX(DetectEngineThreadCtx *det_ctx,
147  const DetectEngineTransforms *transforms, Flow *f, const uint8_t flow_flags, void *txv,
148  const int list_id)
149 {
150  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
151  if (buffer->inspect == NULL) {
152  uint32_t rawdata_len = 0;
153  uint8_t *rawdata = GetBufferForTX(txv, det_ctx, flow_flags, &rawdata_len);
154  if (rawdata_len == 0)
155  return NULL;
156 
158  det_ctx, list_id, buffer, rawdata, rawdata_len, transforms);
159  }
160 
161  return buffer;
162 }
163 
164 static InspectionBuffer *GetBuffer2ForTX(DetectEngineThreadCtx *det_ctx,
165  const DetectEngineTransforms *transforms, Flow *_f, const uint8_t flow_flags, void *txv,
166  const int list_id)
167 {
168  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
169  if (buffer->inspect == NULL) {
170  uint32_t b_len = 0;
171  const uint8_t *b = NULL;
172 
173  void *thread_buf = DetectThreadCtxGetGlobalKeywordThreadCtx(det_ctx, g_http2_thread_id);
174  if (thread_buf == NULL)
175  return NULL;
176 
177  if (SCHttp2TxGetHeaderNames(txv, flow_flags, &b, &b_len, thread_buf) != 1)
178  return NULL;
179  if (b == NULL || b_len == 0)
180  return NULL;
181 
182  InspectionBufferSetupAndApplyTransforms(det_ctx, list_id, buffer, b, b_len, transforms);
183  }
184 
185  return buffer;
186 }
187 
188 /**
189  * \brief The setup function for the http.header_names keyword for a signature.
190  *
191  * \param de_ctx Pointer to the detection engine context.
192  * \param s Pointer to signature for the current Signature being parsed
193  * from the rules.
194  * \param m Pointer to the head of the SigMatchs for the current rule
195  * being parsed.
196  * \param arg Pointer to the string holding the keyword value.
197  *
198  * \retval 0 On success.
199  * \retval -1 On failure.
200  */
201 static int DetectHttpHeaderNamesSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg)
202 {
203  if (SCDetectBufferSetActiveList(de_ctx, s, g_buffer_id) < 0)
204  return -1;
205 
207  return -1;
208 
209  return 0;
210 }
211 
212 /**
213  * \brief Registers the keyword handlers for the "http.header_names" keyword.
214  */
216 {
221  sigmatch_table[DETECT_HTTP_HEADER_NAMES].Setup = DetectHttpHeaderNamesSetup;
222 
224 
225  /* http1 */
227  GetBuffer1ForTX, ALPROTO_HTTP1, HTP_REQUEST_PROGRESS_HEADERS);
229  GetBuffer1ForTX, ALPROTO_HTTP1, HTP_RESPONSE_PROGRESS_HEADERS);
230 
232  HTP_REQUEST_PROGRESS_HEADERS, DetectEngineInspectBufferGeneric, GetBuffer1ForTX);
234  HTP_RESPONSE_PROGRESS_HEADERS, DetectEngineInspectBufferGeneric, GetBuffer1ForTX);
235 
236  /* http2 */
238  GetBuffer2ForTX, ALPROTO_HTTP2, HTTP2StateDataClient);
240  GetBuffer2ForTX, ALPROTO_HTTP2, HTTP2StateDataServer);
241 
243  HTTP2StateDataClient, DetectEngineInspectBufferGeneric, GetBuffer2ForTX);
245  HTTP2StateDataServer, DetectEngineInspectBufferGeneric, GetBuffer2ForTX);
246 
248  BUFFER_DESC);
249 
250  g_buffer_id = DetectBufferTypeGetByName(BUFFER_NAME);
251 
252  g_keyword_thread_id = DetectRegisterThreadCtxGlobalFuncs(KEYWORD_NAME,
254 
255  g_http2_thread_id = DetectRegisterThreadCtxGlobalFuncs(
256  "http2.header_names", SCHttp2ThreadBufDataInit, NULL, SCHttp2ThreadBufDataFree);
257 
258  SCLogDebug("keyword %s registered. Thread id %d. "
259  "Buffer %s registered. Buffer id %d",
260  KEYWORD_NAME, g_keyword_thread_id,
261  BUFFER_NAME, g_buffer_id);
262 }
SigTableElmt_::url
const char * url
Definition: detect.h:1464
detect-content.h
detect-engine.h
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1678
SigTableElmt_::desc
const char * desc
Definition: detect.h:1463
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:79
BUFFER_SIZE_STEP
#define BUFFER_SIZE_STEP
Definition: detect-http-header-names.c:76
DetectEngineInspectBufferGeneric
uint8_t DetectEngineInspectBufferGeneric(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const 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.
Definition: detect-engine.c:2049
flow-util.h
SigTableElmt_::name
const char * name
Definition: detect.h:1461
stream-tcp.h
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
DetectEngineTransforms
Definition: detect.h:390
SigTableElmt_::flags
uint32_t flags
Definition: detect.h:1452
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:282
KEYWORD_NAME_LEGACY
#define KEYWORD_NAME_LEGACY
Definition: detect-http-header-names.c:68
HttpHeaderBuffer_::len
uint32_t len
Definition: detect-http-header-common.h:30
AppLayerParserGetStateProgress
int AppLayerParserGetStateProgress(uint8_t ipproto, AppProto alproto, void *alstate, uint8_t flags)
get the progress value for a tx/protocol
Definition: app-layer-parser.c:1111
InspectionBuffer
Definition: detect-engine-inspect-buffer.h:34
threads.h
Flow_
Flow data structure.
Definition: flow.h:347
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:933
HttpHeaderGetBufferSpace
HttpHeaderBuffer * HttpHeaderGetBufferSpace(DetectEngineThreadCtx *det_ctx, uint8_t flags, const int keyword_id, HttpHeaderThreadData **ret_hdr_td)
Definition: detect-http-header-common.c:99
detect-http-header.h
SCDetectBufferSetActiveList
int SCDetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine-buffer.c:29
SCDetectSignatureSetAppProto
int SCDetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:2236
SIG_FLAG_TOCLIENT
#define SIG_FLAG_TOCLIENT
Definition: detect.h:271
HttpHeaderExpandBuffer
int HttpHeaderExpandBuffer(HttpHeaderThreadData *td, HttpHeaderBuffer *buf, size_t size)
Definition: detect-http-header-common.c:81
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine-inspect-buffer.c:56
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1443
detect-pcre.h
DetectHttpHeaderNamesRegister
void DetectHttpHeaderNamesRegister(void)
Registers the keyword handlers for the "http.header_names" keyword.
Definition: detect-http-header-names.c:215
detect-engine-prefilter.h
util-unittest.h
util-unittest-helper.h
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1278
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:270
app-layer-htp.h
decode.h
util-debug.h
detect-http-header-names.h
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:19
DetectEngineThreadCtx_
Definition: detect.h:1245
util-print.h
detect-engine-mpm.h
detect.h
PrefilterGenericMpmRegister
int PrefilterGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
Definition: detect-engine-prefilter.c:1577
DetectAppLayerMpmRegister
void DetectAppLayerMpmRegister(const char *name, int direction, int priority, PrefilterRegisterFunc PrefilterRegister, InspectionBufferGetDataPtr GetData, AppProto alproto, int tx_min_progress)
register an app layer keyword for mpm
Definition: detect-engine-mpm.c:152
app-layer-parser.h
detect-http-header-common.h
HttpHeaderThreadConfig_
Definition: detect-http-header-common.h:33
HttpHeaderBuffer_::buffer
uint8_t * buffer
Definition: detect-http-header-common.h:28
BUFFER_DESC
#define BUFFER_DESC
Definition: detect-http-header-names.c:71
detect-engine-state.h
Data structures and function prototypes for keeping state for the detection engine.
ALPROTO_HTTP2
@ ALPROTO_HTTP2
Definition: app-layer-protos.h:69
detect-engine-content-inspection.h
HttpHeaderThreadDataInit
void * HttpHeaderThreadDataInit(void *data)
Definition: detect-http-header-common.c:57
BUFFER_NAME
#define BUFFER_NAME
Definition: detect-http-header-names.c:70
flags
uint8_t flags
Definition: decode-gre.h:0
SigTableElmt_::alias
const char * alias
Definition: detect.h:1462
suricata-common.h
ALPROTO_HTTP1
@ ALPROTO_HTTP1
Definition: app-layer-protos.h:36
util-spm.h
detect-engine-buffer.h
HttpHeaderBuffer_::size
uint32_t size
Definition: detect-http-header-common.h:29
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect-engine-inspect-buffer.h:35
DetectThreadCtxGetGlobalKeywordThreadCtx
void * DetectThreadCtxGetGlobalKeywordThreadCtx(DetectEngineThreadCtx *det_ctx, int id)
Retrieve thread local keyword ctx by id.
Definition: detect-engine.c:3849
KEYWORD_DOC
#define KEYWORD_DOC
Definition: detect-http-header-names.c:69
detect-parse.h
Signature_
Signature container.
Definition: detect.h:668
ALPROTO_HTTP
@ ALPROTO_HTTP
Definition: app-layer-protos.h:76
InspectionBufferSetupAndApplyTransforms
void InspectionBufferSetupAndApplyTransforms(DetectEngineThreadCtx *det_ctx, const int list_id, InspectionBuffer *buffer, const uint8_t *data, const uint32_t data_len, const DetectEngineTransforms *transforms)
setup the buffer with our initial data
Definition: detect-engine-inspect-buffer.c:197
KEYWORD_NAME
#define KEYWORD_NAME
Definition: detect-http-header-names.c:67
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1653
DetectAppLayerInspectEngineRegister
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
Registers an app inspection engine.
Definition: detect-engine.c:273
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1375
DETECT_HTTP_HEADER_NAMES
@ DETECT_HTTP_HEADER_NAMES
Definition: detect-engine-register.h:166
HttpHeaderBuffer_
Definition: detect-http-header-common.h:27
flow.h
flow-var.h
HttpHeaderThreadData_
Definition: detect-http-header-common.h:37
HttpHeaderThreadDataFree
void HttpHeaderThreadDataFree(void *data)
Definition: detect-http-header-common.c:74
DetectRegisterThreadCtxGlobalFuncs
int DetectRegisterThreadCtxGlobalFuncs(const char *name, void *(*InitFunc)(void *), void *data, void(*FreeFunc)(void *))
Register Thread keyword context Funcs (Global)
Definition: detect-engine.c:3805
app-layer.h