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-mpm.h"
41 #include "detect-engine-state.h"
44 #include "detect-content.h"
45 #include "detect-pcre.h"
48 
49 #include "flow.h"
50 #include "flow-var.h"
51 #include "flow-util.h"
52 
53 #include "util-debug.h"
54 #include "util-unittest.h"
55 #include "util-unittest-helper.h"
56 #include "util-spm.h"
57 #include "util-print.h"
58 
59 #include "app-layer.h"
60 #include "app-layer-parser.h"
61 
62 #include "app-layer-htp.h"
63 #include "detect-http-header.h"
64 #include "stream-tcp.h"
65 
66 #define KEYWORD_NAME "http.header_names"
67 #define KEYWORD_NAME_LEGACY "http_header_names"
68 #define KEYWORD_DOC "http-keywords.html#http-header-names"
69 #define BUFFER_NAME "http_header_names"
70 #define BUFFER_DESC "http header names"
71 static int g_buffer_id = 0;
72 static int g_keyword_thread_id = 0;
73 
74 #define BUFFER_SIZE_STEP 256
76 
77 static uint8_t *GetBufferForTX(
78  htp_tx_t *tx, DetectEngineThreadCtx *det_ctx, Flow *f, uint8_t flags, uint32_t *buffer_len)
79 {
80  *buffer_len = 0;
81 
82  HttpHeaderThreadData *hdr_td = NULL;
83  HttpHeaderBuffer *buf =
84  HttpHeaderGetBufferSpace(det_ctx, f, flags, g_keyword_thread_id, &hdr_td);
85  if (unlikely(buf == NULL)) {
86  return NULL;
87  }
88 
89  htp_table_t *headers;
90  if (flags & STREAM_TOSERVER) {
91  if (AppLayerParserGetStateProgress(IPPROTO_TCP, ALPROTO_HTTP1, tx, flags) <=
92  HTP_REQUEST_HEADERS)
93  return NULL;
94  headers = tx->request_headers;
95  } else {
96  if (AppLayerParserGetStateProgress(IPPROTO_TCP, ALPROTO_HTTP1, tx, flags) <=
97  HTP_RESPONSE_HEADERS)
98  return NULL;
99  headers = tx->response_headers;
100  }
101  if (headers == NULL)
102  return NULL;
103 
104  /* fill the buffer. \r\nName1\r\nName2\r\n\r\n */
105  size_t i = 0;
106  size_t no_of_headers = htp_table_size(headers);
107  for (; i < no_of_headers; i++) {
108  htp_header_t *h = htp_table_get_index(headers, i, NULL);
109  size_t size = bstr_size(h->name) + 2; // for \r\n
110  if (i == 0)
111  size += 2;
112  if (i + 1 == no_of_headers)
113  size += 2;
114 
115  SCLogDebug("size %"PRIuMAX" + buf->len %u vs buf->size %u",
116  (uintmax_t)size, buf->len, buf->size);
117  if (size + buf->len > buf->size) {
118  if (HttpHeaderExpandBuffer(hdr_td, buf, size) != 0) {
119  return NULL;
120  }
121  }
122 
123  /* start with a \r\n */
124  if (i == 0) {
125  buf->buffer[buf->len++] = '\r';
126  buf->buffer[buf->len++] = '\n';
127  }
128 
129  memcpy(buf->buffer + buf->len, bstr_ptr(h->name), bstr_size(h->name));
130  buf->len += bstr_size(h->name);
131  buf->buffer[buf->len++] = '\r';
132  buf->buffer[buf->len++] = '\n';
133 
134  /* end with an extra \r\n */
135  if (i + 1 == no_of_headers) {
136  buf->buffer[buf->len++] = '\r';
137  buf->buffer[buf->len++] = '\n';
138  }
139  }
140 
141  *buffer_len = buf->len;
142  return buf->buffer;
143 }
144 
145 static InspectionBuffer *GetBuffer1ForTX(DetectEngineThreadCtx *det_ctx,
146  const DetectEngineTransforms *transforms, Flow *f, const uint8_t flow_flags, void *txv,
147  const int list_id)
148 {
149  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
150  if (buffer->inspect == NULL) {
151  uint32_t rawdata_len = 0;
152  uint8_t *rawdata = GetBufferForTX(txv, det_ctx, f, flow_flags, &rawdata_len);
153  if (rawdata_len == 0)
154  return NULL;
155 
156  InspectionBufferSetup(det_ctx, list_id, buffer, rawdata, rawdata_len);
157  InspectionBufferApplyTransforms(buffer, transforms);
158  }
159 
160  return buffer;
161 }
162 
163 static InspectionBuffer *GetBuffer2ForTX(DetectEngineThreadCtx *det_ctx,
164  const DetectEngineTransforms *transforms, Flow *_f, const uint8_t flow_flags, void *txv,
165  const int list_id)
166 {
167  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
168  if (buffer->inspect == NULL) {
169  uint32_t b_len = 0;
170  const uint8_t *b = NULL;
171 
172  if (rs_http2_tx_get_header_names(txv, flow_flags, &b, &b_len) != 1)
173  return NULL;
174  if (b == NULL || b_len == 0)
175  return NULL;
176 
177  InspectionBufferSetup(det_ctx, list_id, buffer, b, b_len);
178  InspectionBufferApplyTransforms(buffer, transforms);
179  }
180 
181  return buffer;
182 }
183 
184 /**
185  * \brief The setup function for the http.header_names keyword for a signature.
186  *
187  * \param de_ctx Pointer to the detection engine context.
188  * \param s Pointer to signature for the current Signature being parsed
189  * from the rules.
190  * \param m Pointer to the head of the SigMatchs for the current rule
191  * being parsed.
192  * \param arg Pointer to the string holding the keyword value.
193  *
194  * \retval 0 On success.
195  * \retval -1 On failure.
196  */
197 static int DetectHttpHeaderNamesSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg)
198 {
199  if (DetectBufferSetActiveList(de_ctx, s, g_buffer_id) < 0)
200  return -1;
201 
203  return -1;
204 
205  return 0;
206 }
207 
208 /**
209  * \brief Registers the keyword handlers for the "http.header_names" keyword.
210  */
212 {
217  sigmatch_table[DETECT_AL_HTTP_HEADER_NAMES].Setup = DetectHttpHeaderNamesSetup;
218 
220 
221  /* http1 */
223  GetBuffer1ForTX, ALPROTO_HTTP1, HTP_REQUEST_HEADERS);
225  GetBuffer1ForTX, ALPROTO_HTTP1, HTP_RESPONSE_HEADERS);
226 
228  HTP_REQUEST_HEADERS, DetectEngineInspectBufferGeneric, GetBuffer1ForTX);
230  HTP_RESPONSE_HEADERS, DetectEngineInspectBufferGeneric, GetBuffer1ForTX);
231 
232  /* http2 */
234  GetBuffer2ForTX, ALPROTO_HTTP2, HTTP2StateDataClient);
236  GetBuffer2ForTX, ALPROTO_HTTP2, HTTP2StateDataServer);
237 
239  HTTP2StateDataClient, DetectEngineInspectBufferGeneric, GetBuffer2ForTX);
241  HTTP2StateDataServer, DetectEngineInspectBufferGeneric, GetBuffer2ForTX);
242 
244  BUFFER_DESC);
245 
246  g_buffer_id = DetectBufferTypeGetByName(BUFFER_NAME);
247 
248  g_keyword_thread_id = DetectRegisterThreadCtxGlobalFuncs(KEYWORD_NAME,
250 
251  SCLogDebug("keyword %s registered. Thread id %d. "
252  "Buffer %s registered. Buffer id %d",
253  KEYWORD_NAME, g_keyword_thread_id,
254  BUFFER_NAME, g_buffer_id);
255 }
SigTableElmt_::url
const char * url
Definition: detect.h:1299
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1753
detect-content.h
detect-engine.h
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1500
SigTableElmt_::desc
const char * desc
Definition: detect.h:1298
BUFFER_SIZE_STEP
#define BUFFER_SIZE_STEP
Definition: detect-http-header-names.c:74
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:2122
flow-util.h
SigTableElmt_::name
const char * name
Definition: detect.h:1296
stream-tcp.h
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
DetectEngineTransforms
Definition: detect.h:409
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
KEYWORD_NAME_LEGACY
#define KEYWORD_NAME_LEGACY
Definition: detect-http-header-names.c:67
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1335
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:1092
InspectionBuffer
Definition: detect.h:374
threads.h
Flow_
Flow data structure.
Definition: flow.h:351
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1290
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:839
detect-http-header.h
SIG_FLAG_TOCLIENT
#define SIG_FLAG_TOCLIENT
Definition: detect.h:267
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1281
detect-pcre.h
DetectHttpHeaderNamesRegister
void DetectHttpHeaderNamesRegister(void)
Registers the keyword handlers for the "http.header_names" keyword.
Definition: detect-http-header-names.c:211
detect-engine-prefilter.h
util-unittest.h
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine.c:1479
util-unittest-helper.h
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1072
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:266
app-layer-htp.h
decode.h
util-debug.h
detect-http-header-names.h
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectEngineThreadCtx_
Definition: detect.h:1095
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:745
DetectAppLayerMpmRegister
void DetectAppLayerMpmRegister(const char *name, int direction, int priority, PrefilterRegisterFunc PrefilterRegister, InspectionBufferGetDataPtr GetData, AppProto alproto, int tx_min_progress)
register a MPM engine
Definition: detect-engine-mpm.c:89
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:70
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:62
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:69
flags
uint8_t flags
Definition: decode-gre.h:0
SigTableElmt_::alias
const char * alias
Definition: detect.h:1297
suricata-common.h
InspectionBufferApplyTransforms
void InspectionBufferApplyTransforms(InspectionBuffer *buffer, const DetectEngineTransforms *transforms)
Definition: detect-engine.c:1678
ALPROTO_HTTP1
@ ALPROTO_HTTP1
Definition: app-layer-protos.h:30
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:127
util-spm.h
HttpHeaderBuffer_::size
uint32_t size
Definition: detect-http-header-common.h:29
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:375
InspectionBufferSetup
void InspectionBufferSetup(DetectEngineThreadCtx *det_ctx, const int list_id, InspectionBuffer *buffer, const uint8_t *data, const uint32_t data_len)
setup the buffer with our initial data
Definition: detect-engine.c:1574
KEYWORD_DOC
#define KEYWORD_DOC
Definition: detect-http-header-names.c:68
detect-parse.h
Signature_
Signature container.
Definition: detect.h:596
ALPROTO_HTTP
@ ALPROTO_HTTP
Definition: app-layer-protos.h:67
DETECT_AL_HTTP_HEADER_NAMES
@ DETECT_AL_HTTP_HEADER_NAMES
Definition: detect-engine-register.h:144
HttpHeaderGetBufferSpace
HttpHeaderBuffer * HttpHeaderGetBufferSpace(DetectEngineThreadCtx *det_ctx, Flow *f, uint8_t flags, const int keyword_id, HttpHeaderThreadData **ret_hdr_td)
Definition: detect-http-header-common.c:100
KEYWORD_NAME
#define KEYWORD_NAME
Definition: detect-http-header-names.c:66
HttpHeaderExpandBuffer
int HttpHeaderExpandBuffer(HttpHeaderThreadData *td, HttpHeaderBuffer *buf, uint32_t size)
Definition: detect-http-header-common.c:81
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1476
DetectAppLayerInspectEngineRegister
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
register inspect engine at start up time
Definition: detect-engine.c:169
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1169
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:3601
app-layer.h