70 #define MAX_SIZE_HEADER_NAME 256
71 #define MAX_SIZE_HEADER_VALUE 2048
73 #define LOG_HTTP_DEFAULT 0
74 #define LOG_HTTP_EXTENDED 1
75 #define LOG_HTTP_REQUEST 2
76 #define LOG_HTTP_ARRAY 4
77 #define LOG_HTTP_REQ_HEADERS 8
78 #define LOG_HTTP_RES_HEADERS 16
163 {
"accept_range",
"accept-range", 0 },
165 {
"allow",
"allow", 0 },
166 {
"connection",
"connection", 0 },
167 {
"content_encoding",
"content-encoding", 0 },
168 {
"content_language",
"content-language", 0 },
169 {
"content_length",
"content-length", 0 },
170 {
"content_location",
"content-location", 0 },
171 {
"content_md5",
"content-md5", 0 },
172 {
"content_range",
"content-range", 0 },
173 {
"content_type",
"content-type", 0 },
174 {
"date",
"date", 0 },
175 {
"etag",
"etags", 0 },
176 {
"expires",
"expires", 0 },
177 {
"last_modified",
"last-modified", 0 },
178 {
"link",
"link", 0 },
179 {
"location",
"location", 0 },
180 {
"proxy_authenticate",
"proxy-authenticate", 0 },
182 {
"refresh",
"refresh", 0 },
183 {
"retry_after",
"retry-after", 0 },
184 {
"server",
"server", 0 },
185 {
"set_cookie",
"set-cookie", 0 },
186 {
"trailer",
"trailer", 0 },
187 {
"transfer_encoding",
"transfer-encoding", 0 },
188 {
"upgrade",
"upgrade", 0 },
189 {
"vary",
"vary", 0 },
190 {
"warning",
"warning", 0 },
191 {
"www_authenticate",
"www-authenticate", 0 },
197 static void EveHttpLogJSONBasic(JsonBuilder *js, htp_tx_t *tx)
200 if (tx->request_hostname != NULL) {
201 jb_set_string_from_bytes(js,
"hostname", bstr_ptr(tx->request_hostname),
202 (uint32_t)bstr_len(tx->request_hostname));
211 if (tx->request_port_number >= 0) {
212 jb_set_uint(js,
"http_port", tx->request_port_number);
216 if (tx->request_uri != NULL) {
217 jb_set_string_from_bytes(
218 js,
"url", bstr_ptr(tx->request_uri), (uint32_t)bstr_len(tx->request_uri));
221 if (tx->request_headers != NULL) {
223 htp_header_t *h_user_agent = htp_table_get_c(tx->request_headers,
"user-agent");
224 if (h_user_agent != NULL) {
225 jb_set_string_from_bytes(js,
"http_user_agent", bstr_ptr(h_user_agent->value),
226 (uint32_t)bstr_len(h_user_agent->value));
230 htp_header_t *h_x_forwarded_for = htp_table_get_c(tx->request_headers,
"x-forwarded-for");
231 if (h_x_forwarded_for != NULL) {
232 jb_set_string_from_bytes(js,
"xff", bstr_ptr(h_x_forwarded_for->value),
233 (uint32_t)bstr_len(h_x_forwarded_for->value));
238 if (tx->response_headers != NULL) {
239 htp_header_t *h_content_type = htp_table_get_c(tx->response_headers,
"content-type");
240 if (h_content_type != NULL) {
241 const size_t size = bstr_len(h_content_type->value) * 2 + 1;
243 BytesToStringBuffer(bstr_ptr(h_content_type->value), bstr_len(h_content_type->value),
string, size);
244 char *p = strchr(
string,
';');
247 jb_set_string(js,
"http_content_type",
string);
249 htp_header_t *h_content_range = htp_table_get_c(tx->response_headers,
"content-range");
250 if (h_content_range != NULL) {
251 jb_open_object(js,
"content_range");
252 jb_set_string_from_bytes(js,
"raw", bstr_ptr(h_content_range->value),
253 (uint32_t)bstr_len(h_content_range->value));
254 HTTPContentRange crparsed;
256 if (crparsed.start >= 0)
257 jb_set_uint(js,
"start", crparsed.start);
258 if (crparsed.end >= 0)
259 jb_set_uint(js,
"end", crparsed.end);
260 if (crparsed.size >= 0)
261 jb_set_uint(js,
"size", crparsed.size);
268 static void EveHttpLogJSONExtended(JsonBuilder *js, htp_tx_t *tx)
271 htp_header_t *h_referer = NULL;
272 if (tx->request_headers != NULL) {
273 h_referer = htp_table_get_c(tx->request_headers,
"referer");
275 if (h_referer != NULL) {
276 jb_set_string_from_bytes(
277 js,
"http_refer", bstr_ptr(h_referer->value), (uint32_t)bstr_len(h_referer->value));
281 if (tx->request_method != NULL) {
282 jb_set_string_from_bytes(js,
"http_method", bstr_ptr(tx->request_method),
283 (uint32_t)bstr_len(tx->request_method));
287 if (tx->request_protocol != NULL) {
288 jb_set_string_from_bytes(js,
"protocol", bstr_ptr(tx->request_protocol),
289 (uint32_t)bstr_len(tx->request_protocol));
295 const int resp = tx->response_status_number;
297 jb_set_uint(js,
"status", (uint32_t)resp);
298 }
else if (tx->response_status != NULL) {
299 const size_t status_size = bstr_len(tx->response_status) * 2 + 1;
300 char status_string[status_size];
302 status_string, status_size);
303 unsigned int val = strtoul(status_string, NULL, 10);
304 jb_set_uint(js,
"status", val);
307 htp_header_t *h_location = htp_table_get_c(tx->response_headers,
"location");
308 if (h_location != NULL) {
309 jb_set_string_from_bytes(
310 js,
"redirect", bstr_ptr(h_location->value), (uint32_t)bstr_len(h_location->value));
314 jb_set_uint(js,
"length", tx->response_message_len);
317 static void EveHttpLogJSONHeaders(
318 JsonBuilder *js, uint32_t direction, htp_tx_t *tx,
LogHttpFileCtx *http_ctx)
321 tx->request_headers : tx->response_headers;
324 size_t n = htp_table_size(headers);
325 JsonBuilderMark mark = { 0, 0, 0 };
326 jb_get_mark(js, &mark);
327 bool array_empty =
true;
329 for (
size_t i = 0; i < n; i++) {
330 htp_header_t *h = htp_table_get_index(headers, i, NULL);
331 if ((http_ctx->
flags & direction) == 0 && http_ctx->
fields != 0) {
334 if ((http_ctx->
fields & (1ULL << f)) != 0) {
340 if (bstr_cmp_c_nocase(h->name,
http_fields[f].htp_field) == 0) {
355 memcpy(name, bstr_ptr(h->name), size_name);
356 name[size_name] =
'\0';
357 jb_set_string(js,
"name", name);
360 memcpy(value, bstr_ptr(h->value), size_value);
361 value[size_value] =
'\0';
362 jb_set_string(js,
"value", value);
366 jb_restore_mark(js, &mark);
373 static void BodyPrintableBuffer(JsonBuilder *js,
HtpBody *body,
const char *key)
377 const uint8_t *body_data;
378 uint32_t body_data_len;
379 uint64_t body_offset;
382 &body_data_len, &body_offset) == 0) {
386 uint8_t printable_buf[body_data_len + 1];
389 jb_set_string(js, key, (
char *)printable_buf);
402 BodyPrintableBuffer(js, &htud->
request_body,
"http_request_body_printable");
403 BodyPrintableBuffer(js, &htud->
response_body,
"http_response_body_printable");
409 static void BodyBase64Buffer(JsonBuilder *js,
HtpBody *body,
const char *key)
412 const uint8_t *body_data;
413 uint32_t body_data_len;
414 uint64_t body_offset;
417 &body_data_len, &body_offset) == 0) {
421 jb_set_base64(js, key, body_data, body_data_len);
433 BodyBase64Buffer(js, &htud->
request_body,
"http_request_body");
434 BodyBase64Buffer(js, &htud->
response_body,
"http_response_body");
441 static void EveHttpLogJSON(
JsonHttpLogThread *aft, JsonBuilder *js, htp_tx_t *tx, uint64_t tx_id)
444 jb_open_object(js,
"http");
446 EveHttpLogJSONBasic(js, tx);
448 EveHttpLogJSONExtended(js, tx);
457 static int JsonHttpLogger(
ThreadVars *
tv,
void *thread_data,
const Packet *p,
Flow *f,
void *alstate,
void *txptr, uint64_t tx_id)
461 htp_tx_t *tx = txptr;
469 SCLogDebug(
"got a HTTP request and now logging !!");
471 EveHttpLogJSON(jhl, js, tx, tx_id);
484 jb_set_string(js,
"xff", buffer);
488 jb_set_string(js,
"dest_ip", buffer);
490 jb_set_string(js,
"src_ip", buffer);
509 EveHttpLogJSONBasic(js, tx);
510 EveHttpLogJSONExtended(js, tx);
518 static void OutputHttpLogDeinitSub(
OutputCtx *output_ctx)
536 memset(http_ctx, 0x00,
sizeof(*http_ctx));
550 if (extended != NULL) {
557 if (all_headers != NULL) {
558 if (strncmp(all_headers,
"both", 4) == 0) {
561 }
else if (strncmp(all_headers,
"request", 7) == 0) {
563 }
else if (strncmp(all_headers,
"response", 8) == 0) {
571 SCLogWarning(
"No need for custom as dump-all-headers is already present");
579 http_ctx->
fields |= (1ULL << f);
589 if (http_ctx->
xff_cfg != NULL) {
596 output_ctx->
data = http_ctx;
597 output_ctx->
DeInit = OutputHttpLogDeinitSub;
602 result.
ctx = output_ctx;
607 static TmEcode JsonHttpLogThreadInit(
ThreadVars *t,
const void *initdata,
void **data)
615 SCLogDebug(
"Error getting context for EveLogHTTP. \"initdata\" argument NULL");
655 OutputHttpLogInitSub,
ALPROTO_HTTP1, JsonHttpLogger, JsonHttpLogThreadInit,
656 JsonHttpLogThreadDeinit);