summaryrefslogtreecommitdiffstats
path: root/src/output-json-http.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:39:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:39:49 +0000
commita0aa2307322cd47bbf416810ac0292925e03be87 (patch)
tree37076262a026c4b48c8a0e84f44ff9187556ca35 /src/output-json-http.c
parentInitial commit. (diff)
downloadsuricata-a0aa2307322cd47bbf416810ac0292925e03be87.tar.xz
suricata-a0aa2307322cd47bbf416810ac0292925e03be87.zip
Adding upstream version 1:7.0.3.upstream/1%7.0.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/output-json-http.c')
-rw-r--r--src/output-json-http.c653
1 files changed, 653 insertions, 0 deletions
diff --git a/src/output-json-http.c b/src/output-json-http.c
new file mode 100644
index 0000000..5f44e95
--- /dev/null
+++ b/src/output-json-http.c
@@ -0,0 +1,653 @@
+/* Copyright (C) 2007-2021 Open Information Security Foundation
+ *
+ * You can copy, redistribute or modify this Program under the terms of
+ * the GNU General Public License version 2 as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * version 2 along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+/**
+ * \file
+ *
+ * \author Tom DeCanio <td@npulsetech.com>
+ *
+ * Implements HTTP JSON logging portion of the engine.
+ */
+
+#include "suricata-common.h"
+#include "detect.h"
+#include "pkt-var.h"
+#include "conf.h"
+
+#include "threads.h"
+#include "threadvars.h"
+#include "tm-threads.h"
+
+#include "util-print.h"
+#include "util-unittest.h"
+
+#include "util-debug.h"
+
+#include "output.h"
+#include "app-layer-htp.h"
+#include "app-layer-htp-file.h"
+#include "app-layer-htp-xff.h"
+#include "app-layer.h"
+#include "app-layer-parser.h"
+#include "util-privs.h"
+#include "util-buffer.h"
+#include "util-proto-name.h"
+#include "util-logopenfile.h"
+#include "util-time.h"
+#include "output-json.h"
+#include "output-json-alert.h"
+#include "output-json-http.h"
+#include "util-byte.h"
+
+typedef struct LogHttpFileCtx_ {
+ uint32_t flags; /** Store mode */
+ uint64_t fields;/** Store fields */
+ HttpXFFCfg *xff_cfg;
+ HttpXFFCfg *parent_xff_cfg;
+ OutputJsonCtx *eve_ctx;
+} LogHttpFileCtx;
+
+typedef struct JsonHttpLogThread_ {
+ LogHttpFileCtx *httplog_ctx;
+ uint32_t uri_cnt;
+ OutputJsonThreadCtx *ctx;
+} JsonHttpLogThread;
+
+#define MAX_SIZE_HEADER_NAME 256
+#define MAX_SIZE_HEADER_VALUE 2048
+
+#define LOG_HTTP_DEFAULT 0
+#define LOG_HTTP_EXTENDED 1
+#define LOG_HTTP_REQUEST 2 /* request field */
+#define LOG_HTTP_ARRAY 4 /* require array handling */
+#define LOG_HTTP_REQ_HEADERS 8
+#define LOG_HTTP_RES_HEADERS 16
+
+typedef enum {
+ HTTP_FIELD_ACCEPT = 0,
+ HTTP_FIELD_ACCEPT_CHARSET,
+ HTTP_FIELD_ACCEPT_ENCODING,
+ HTTP_FIELD_ACCEPT_LANGUAGE,
+ HTTP_FIELD_ACCEPT_DATETIME,
+ HTTP_FIELD_AUTHORIZATION,
+ HTTP_FIELD_CACHE_CONTROL,
+ HTTP_FIELD_COOKIE,
+ HTTP_FIELD_FROM,
+ HTTP_FIELD_MAX_FORWARDS,
+ HTTP_FIELD_ORIGIN,
+ HTTP_FIELD_PRAGMA,
+ HTTP_FIELD_PROXY_AUTHORIZATION,
+ HTTP_FIELD_RANGE,
+ HTTP_FIELD_TE,
+ HTTP_FIELD_VIA,
+ HTTP_FIELD_X_REQUESTED_WITH,
+ HTTP_FIELD_DNT,
+ HTTP_FIELD_X_FORWARDED_PROTO,
+ HTTP_FIELD_X_AUTHENTICATED_USER,
+ HTTP_FIELD_X_FLASH_VERSION,
+ HTTP_FIELD_ACCEPT_RANGES,
+ HTTP_FIELD_AGE,
+ HTTP_FIELD_ALLOW,
+ HTTP_FIELD_CONNECTION,
+ HTTP_FIELD_CONTENT_ENCODING,
+ HTTP_FIELD_CONTENT_LANGUAGE,
+ HTTP_FIELD_CONTENT_LENGTH,
+ HTTP_FIELD_CONTENT_LOCATION,
+ HTTP_FIELD_CONTENT_MD5,
+ HTTP_FIELD_CONTENT_RANGE,
+ HTTP_FIELD_CONTENT_TYPE,
+ HTTP_FIELD_DATE,
+ HTTP_FIELD_ETAG,
+ HTTP_FIELD_EXPIRES,
+ HTTP_FIELD_LAST_MODIFIED,
+ HTTP_FIELD_LINK,
+ HTTP_FIELD_LOCATION,
+ HTTP_FIELD_PROXY_AUTHENTICATE,
+ HTTP_FIELD_REFERRER,
+ HTTP_FIELD_REFRESH,
+ HTTP_FIELD_RETRY_AFTER,
+ HTTP_FIELD_SERVER,
+ HTTP_FIELD_SET_COOKIE,
+ HTTP_FIELD_TRAILER,
+ HTTP_FIELD_TRANSFER_ENCODING,
+ HTTP_FIELD_UPGRADE,
+ HTTP_FIELD_VARY,
+ HTTP_FIELD_WARNING,
+ HTTP_FIELD_WWW_AUTHENTICATE,
+ HTTP_FIELD_TRUE_CLIENT_IP,
+ HTTP_FIELD_ORG_SRC_IP,
+ HTTP_FIELD_X_BLUECOAT_VIA,
+ HTTP_FIELD_SIZE
+} HttpField;
+
+struct {
+ const char *config_field;
+ const char *htp_field;
+ uint32_t flags;
+} http_fields[] = {
+ { "accept", "accept", LOG_HTTP_REQUEST },
+ { "accept_charset", "accept-charset", LOG_HTTP_REQUEST },
+ { "accept_encoding", "accept-encoding", LOG_HTTP_REQUEST },
+ { "accept_language", "accept-language", LOG_HTTP_REQUEST },
+ { "accept_datetime", "accept-datetime", LOG_HTTP_REQUEST },
+ { "authorization", "authorization", LOG_HTTP_REQUEST },
+ { "cache_control", "cache-control", LOG_HTTP_REQUEST },
+ { "cookie", "cookie", LOG_HTTP_REQUEST | LOG_HTTP_ARRAY },
+ { "from", "from", LOG_HTTP_REQUEST },
+ { "max_forwards", "max-forwards", LOG_HTTP_REQUEST },
+ { "origin", "origin", LOG_HTTP_REQUEST },
+ { "pragma", "pragma", LOG_HTTP_REQUEST },
+ { "proxy_authorization", "proxy-authorization", LOG_HTTP_REQUEST },
+ { "range", "range", LOG_HTTP_REQUEST },
+ { "te", "te", LOG_HTTP_REQUEST },
+ { "via", "via", LOG_HTTP_REQUEST },
+ { "x_requested_with", "x-requested-with", LOG_HTTP_REQUEST },
+ { "dnt", "dnt", LOG_HTTP_REQUEST },
+ { "x_forwarded_proto", "x-forwarded-proto", LOG_HTTP_REQUEST },
+ { "x_authenticated_user", "x-authenticated-user", LOG_HTTP_REQUEST },
+ { "x_flash_version", "x-flash-version", LOG_HTTP_REQUEST },
+ { "accept_range", "accept-range", 0 },
+ { "age", "age", 0 },
+ { "allow", "allow", 0 },
+ { "connection", "connection", 0 },
+ { "content_encoding", "content-encoding", 0 },
+ { "content_language", "content-language", 0 },
+ { "content_length", "content-length", 0 },
+ { "content_location", "content-location", 0 },
+ { "content_md5", "content-md5", 0 },
+ { "content_range", "content-range", 0 },
+ { "content_type", "content-type", 0 },
+ { "date", "date", 0 },
+ { "etag", "etags", 0 },
+ { "expires", "expires", 0 },
+ { "last_modified", "last-modified", 0 },
+ { "link", "link", 0 },
+ { "location", "location", 0 },
+ { "proxy_authenticate", "proxy-authenticate", 0 },
+ { "referer", "referer", LOG_HTTP_EXTENDED },
+ { "refresh", "refresh", 0 },
+ { "retry_after", "retry-after", 0 },
+ { "server", "server", 0 },
+ { "set_cookie", "set-cookie", 0 },
+ { "trailer", "trailer", 0 },
+ { "transfer_encoding", "transfer-encoding", 0 },
+ { "upgrade", "upgrade", 0 },
+ { "vary", "vary", 0 },
+ { "warning", "warning", 0 },
+ { "www_authenticate", "www-authenticate", 0 },
+ { "true_client_ip", "true-client-ip", LOG_HTTP_REQUEST },
+ { "org_src_ip", "org-src-ip", LOG_HTTP_REQUEST },
+ { "x_bluecoat_via", "x-bluecoat-via", LOG_HTTP_REQUEST },
+};
+
+static void EveHttpLogJSONBasic(JsonBuilder *js, htp_tx_t *tx)
+{
+ /* hostname */
+ if (tx->request_hostname != NULL) {
+ jb_set_string_from_bytes(
+ js, "hostname", bstr_ptr(tx->request_hostname), bstr_len(tx->request_hostname));
+ }
+
+ /* port */
+ /* NOTE: this field will be set ONLY if the port is present in the
+ * hostname. It may be present in the header "Host" or in the URL.
+ * There is no connection (from the suricata point of view) between this
+ * port and the TCP destination port of the flow.
+ */
+ if (tx->request_port_number >= 0) {
+ jb_set_uint(js, "http_port", tx->request_port_number);
+ }
+
+ /* uri */
+ if (tx->request_uri != NULL) {
+ jb_set_string_from_bytes(js, "url", bstr_ptr(tx->request_uri), bstr_len(tx->request_uri));
+ }
+
+ if (tx->request_headers != NULL) {
+ /* user agent */
+ htp_header_t *h_user_agent = htp_table_get_c(tx->request_headers, "user-agent");
+ if (h_user_agent != NULL) {
+ jb_set_string_from_bytes(js, "http_user_agent", bstr_ptr(h_user_agent->value),
+ bstr_len(h_user_agent->value));
+ }
+
+ /* x-forwarded-for */
+ htp_header_t *h_x_forwarded_for = htp_table_get_c(tx->request_headers, "x-forwarded-for");
+ if (h_x_forwarded_for != NULL) {
+ jb_set_string_from_bytes(js, "xff", bstr_ptr(h_x_forwarded_for->value),
+ bstr_len(h_x_forwarded_for->value));
+ }
+ }
+
+ /* content-type */
+ if (tx->response_headers != NULL) {
+ htp_header_t *h_content_type = htp_table_get_c(tx->response_headers, "content-type");
+ if (h_content_type != NULL) {
+ const size_t size = bstr_len(h_content_type->value) * 2 + 1;
+ char string[size];
+ BytesToStringBuffer(bstr_ptr(h_content_type->value), bstr_len(h_content_type->value), string, size);
+ char *p = strchr(string, ';');
+ if (p != NULL)
+ *p = '\0';
+ jb_set_string(js, "http_content_type", string);
+ }
+ htp_header_t *h_content_range = htp_table_get_c(tx->response_headers, "content-range");
+ if (h_content_range != NULL) {
+ jb_open_object(js, "content_range");
+ jb_set_string_from_bytes(
+ js, "raw", bstr_ptr(h_content_range->value), bstr_len(h_content_range->value));
+ HTTPContentRange crparsed;
+ if (HTPParseContentRange(h_content_range->value, &crparsed) == 0) {
+ if (crparsed.start >= 0)
+ jb_set_uint(js, "start", crparsed.start);
+ if (crparsed.end >= 0)
+ jb_set_uint(js, "end", crparsed.end);
+ if (crparsed.size >= 0)
+ jb_set_uint(js, "size", crparsed.size);
+ }
+ jb_close(js);
+ }
+ }
+}
+
+static void EveHttpLogJSONExtended(JsonBuilder *js, htp_tx_t *tx)
+{
+ /* referer */
+ htp_header_t *h_referer = NULL;
+ if (tx->request_headers != NULL) {
+ h_referer = htp_table_get_c(tx->request_headers, "referer");
+ }
+ if (h_referer != NULL) {
+ jb_set_string_from_bytes(
+ js, "http_refer", bstr_ptr(h_referer->value), bstr_len(h_referer->value));
+ }
+
+ /* method */
+ if (tx->request_method != NULL) {
+ jb_set_string_from_bytes(
+ js, "http_method", bstr_ptr(tx->request_method), bstr_len(tx->request_method));
+ }
+
+ /* protocol */
+ if (tx->request_protocol != NULL) {
+ jb_set_string_from_bytes(
+ js, "protocol", bstr_ptr(tx->request_protocol), bstr_len(tx->request_protocol));
+ }
+
+ /* response status */
+ if (tx->response_status != NULL) {
+ const size_t status_size = bstr_len(tx->response_status) * 2 + 1;
+ char status_string[status_size];
+ BytesToStringBuffer(bstr_ptr(tx->response_status), bstr_len(tx->response_status),
+ status_string, status_size);
+ unsigned int val = strtoul(status_string, NULL, 10);
+ jb_set_uint(js, "status", val);
+
+ htp_header_t *h_location = htp_table_get_c(tx->response_headers, "location");
+ if (h_location != NULL) {
+ jb_set_string_from_bytes(
+ js, "redirect", bstr_ptr(h_location->value), bstr_len(h_location->value));
+ }
+ }
+
+ /* length */
+ jb_set_uint(js, "length", tx->response_message_len);
+}
+
+static void EveHttpLogJSONHeaders(
+ JsonBuilder *js, uint32_t direction, htp_tx_t *tx, LogHttpFileCtx *http_ctx)
+{
+ htp_table_t * headers = direction & LOG_HTTP_REQ_HEADERS ?
+ tx->request_headers : tx->response_headers;
+ char name[MAX_SIZE_HEADER_NAME] = {0};
+ char value[MAX_SIZE_HEADER_VALUE] = {0};
+ size_t n = htp_table_size(headers);
+ JsonBuilderMark mark = { 0, 0, 0 };
+ jb_get_mark(js, &mark);
+ bool array_empty = true;
+ jb_open_array(js, direction & LOG_HTTP_REQ_HEADERS ? "request_headers" : "response_headers");
+ for (size_t i = 0; i < n; i++) {
+ htp_header_t *h = htp_table_get_index(headers, i, NULL);
+ if ((http_ctx->flags & direction) == 0 && http_ctx->fields != 0) {
+ bool tolog = false;
+ for (HttpField f = HTTP_FIELD_ACCEPT; f < HTTP_FIELD_SIZE; f++) {
+ if ((http_ctx->fields & (1ULL << f)) != 0) {
+ /* prevent logging a field twice if extended logging is
+ enabled */
+ if (((http_ctx->flags & LOG_HTTP_EXTENDED) == 0) ||
+ ((http_ctx->flags & LOG_HTTP_EXTENDED) !=
+ (http_fields[f].flags & LOG_HTTP_EXTENDED))) {
+ if (bstr_cmp_c_nocase(h->name, http_fields[f].htp_field) == 0) {
+ tolog = true;
+ break;
+ }
+ }
+ }
+ }
+ if (!tolog) {
+ continue;
+ }
+ }
+ array_empty = false;
+ jb_start_object(js);
+ size_t size_name = bstr_len(h->name) < MAX_SIZE_HEADER_NAME - 1 ?
+ bstr_len(h->name) : MAX_SIZE_HEADER_NAME - 1;
+ memcpy(name, bstr_ptr(h->name), size_name);
+ name[size_name] = '\0';
+ jb_set_string(js, "name", name);
+ size_t size_value = bstr_len(h->value) < MAX_SIZE_HEADER_VALUE - 1 ?
+ bstr_len(h->value) : MAX_SIZE_HEADER_VALUE - 1;
+ memcpy(value, bstr_ptr(h->value), size_value);
+ value[size_value] = '\0';
+ jb_set_string(js, "value", value);
+ jb_close(js);
+ }
+ if (array_empty) {
+ jb_restore_mark(js, &mark);
+ } else {
+ // Close array.
+ jb_close(js);
+ }
+}
+
+static void BodyPrintableBuffer(JsonBuilder *js, HtpBody *body, const char *key)
+{
+ if (body->sb != NULL && body->sb->region.buf != NULL) {
+ uint32_t offset = 0;
+ const uint8_t *body_data;
+ uint32_t body_data_len;
+ uint64_t body_offset;
+
+ if (StreamingBufferGetData(body->sb, &body_data,
+ &body_data_len, &body_offset) == 0) {
+ return;
+ }
+
+ uint8_t printable_buf[body_data_len + 1];
+ PrintStringsToBuffer(printable_buf, &offset,
+ sizeof(printable_buf),
+ body_data, body_data_len);
+ if (offset > 0) {
+ jb_set_string(js, key, (char *)printable_buf);
+ }
+ }
+}
+
+void EveHttpLogJSONBodyPrintable(JsonBuilder *js, Flow *f, uint64_t tx_id)
+{
+ HtpState *htp_state = (HtpState *)FlowGetAppState(f);
+ if (htp_state) {
+ htp_tx_t *tx = AppLayerParserGetTx(IPPROTO_TCP, ALPROTO_HTTP1, htp_state, tx_id);
+ if (tx) {
+ HtpTxUserData *htud = (HtpTxUserData *)htp_tx_get_user_data(tx);
+ if (htud != NULL) {
+ BodyPrintableBuffer(js, &htud->request_body, "http_request_body_printable");
+ BodyPrintableBuffer(js, &htud->response_body, "http_response_body_printable");
+ }
+ }
+ }
+}
+
+static void BodyBase64Buffer(JsonBuilder *js, HtpBody *body, const char *key)
+{
+ if (body->sb != NULL && body->sb->region.buf != NULL) {
+ const uint8_t *body_data;
+ uint32_t body_data_len;
+ uint64_t body_offset;
+
+ if (StreamingBufferGetData(body->sb, &body_data,
+ &body_data_len, &body_offset) == 0) {
+ return;
+ }
+
+ jb_set_base64(js, key, body_data, body_data_len);
+ }
+}
+
+void EveHttpLogJSONBodyBase64(JsonBuilder *js, Flow *f, uint64_t tx_id)
+{
+ HtpState *htp_state = (HtpState *)FlowGetAppState(f);
+ if (htp_state) {
+ htp_tx_t *tx = AppLayerParserGetTx(IPPROTO_TCP, ALPROTO_HTTP1, htp_state, tx_id);
+ if (tx) {
+ HtpTxUserData *htud = (HtpTxUserData *)htp_tx_get_user_data(tx);
+ if (htud != NULL) {
+ BodyBase64Buffer(js, &htud->request_body, "http_request_body");
+ BodyBase64Buffer(js, &htud->response_body, "http_response_body");
+ }
+ }
+ }
+}
+
+/* JSON format logging */
+static void EveHttpLogJSON(JsonHttpLogThread *aft, JsonBuilder *js, htp_tx_t *tx, uint64_t tx_id)
+{
+ LogHttpFileCtx *http_ctx = aft->httplog_ctx;
+ jb_open_object(js, "http");
+
+ EveHttpLogJSONBasic(js, tx);
+ if (http_ctx->flags & LOG_HTTP_EXTENDED)
+ EveHttpLogJSONExtended(js, tx);
+ if (http_ctx->flags & LOG_HTTP_REQ_HEADERS || http_ctx->fields != 0)
+ EveHttpLogJSONHeaders(js, LOG_HTTP_REQ_HEADERS, tx, http_ctx);
+ if (http_ctx->flags & LOG_HTTP_RES_HEADERS || http_ctx->fields != 0)
+ EveHttpLogJSONHeaders(js, LOG_HTTP_RES_HEADERS, tx, http_ctx);
+
+ jb_close(js);
+}
+
+static int JsonHttpLogger(ThreadVars *tv, void *thread_data, const Packet *p, Flow *f, void *alstate, void *txptr, uint64_t tx_id)
+{
+ SCEnter();
+
+ htp_tx_t *tx = txptr;
+ JsonHttpLogThread *jhl = (JsonHttpLogThread *)thread_data;
+
+ JsonBuilder *js = CreateEveHeaderWithTxId(
+ p, LOG_DIR_FLOW, "http", NULL, tx_id, jhl->httplog_ctx->eve_ctx);
+ if (unlikely(js == NULL))
+ return TM_ECODE_OK;
+
+ SCLogDebug("got a HTTP request and now logging !!");
+
+ EveHttpLogJSON(jhl, js, tx, tx_id);
+ HttpXFFCfg *xff_cfg = jhl->httplog_ctx->xff_cfg != NULL ?
+ jhl->httplog_ctx->xff_cfg : jhl->httplog_ctx->parent_xff_cfg;
+
+ /* xff header */
+ if ((xff_cfg != NULL) && !(xff_cfg->flags & XFF_DISABLED) && p->flow != NULL) {
+ int have_xff_ip = 0;
+ char buffer[XFF_MAXLEN];
+
+ have_xff_ip = HttpXFFGetIPFromTx(p->flow, tx_id, xff_cfg, buffer, XFF_MAXLEN);
+
+ if (have_xff_ip) {
+ if (xff_cfg->flags & XFF_EXTRADATA) {
+ jb_set_string(js, "xff", buffer);
+ }
+ else if (xff_cfg->flags & XFF_OVERWRITE) {
+ if (p->flowflags & FLOW_PKT_TOCLIENT) {
+ jb_set_string(js, "dest_ip", buffer);
+ } else {
+ jb_set_string(js, "src_ip", buffer);
+ }
+ }
+ }
+ }
+
+ OutputJsonBuilderBuffer(js, jhl->ctx);
+ jb_free(js);
+
+ SCReturnInt(TM_ECODE_OK);
+}
+
+bool EveHttpAddMetadata(const Flow *f, uint64_t tx_id, JsonBuilder *js)
+{
+ HtpState *htp_state = (HtpState *)FlowGetAppState(f);
+ if (htp_state) {
+ htp_tx_t *tx = AppLayerParserGetTx(IPPROTO_TCP, ALPROTO_HTTP1, htp_state, tx_id);
+
+ if (tx) {
+ EveHttpLogJSONBasic(js, tx);
+ EveHttpLogJSONExtended(js, tx);
+ return true;
+ }
+ }
+
+ return false;
+}
+
+static void OutputHttpLogDeinitSub(OutputCtx *output_ctx)
+{
+ LogHttpFileCtx *http_ctx = output_ctx->data;
+ if (http_ctx->xff_cfg) {
+ SCFree(http_ctx->xff_cfg);
+ }
+ SCFree(http_ctx);
+ SCFree(output_ctx);
+}
+
+static OutputInitResult OutputHttpLogInitSub(ConfNode *conf, OutputCtx *parent_ctx)
+{
+ OutputInitResult result = { NULL, false };
+ OutputJsonCtx *ojc = parent_ctx->data;
+
+ LogHttpFileCtx *http_ctx = SCCalloc(1, sizeof(LogHttpFileCtx));
+ if (unlikely(http_ctx == NULL))
+ return result;
+ memset(http_ctx, 0x00, sizeof(*http_ctx));
+
+ OutputCtx *output_ctx = SCCalloc(1, sizeof(OutputCtx));
+ if (unlikely(output_ctx == NULL)) {
+ SCFree(http_ctx);
+ return result;
+ }
+
+ http_ctx->flags = LOG_HTTP_DEFAULT;
+ http_ctx->eve_ctx = ojc;
+
+ if (conf) {
+ const char *extended = ConfNodeLookupChildValue(conf, "extended");
+
+ if (extended != NULL) {
+ if (ConfValIsTrue(extended)) {
+ http_ctx->flags = LOG_HTTP_EXTENDED;
+ }
+ }
+
+ const char *all_headers = ConfNodeLookupChildValue(conf, "dump-all-headers");
+ if (all_headers != NULL) {
+ if (strncmp(all_headers, "both", 4) == 0) {
+ http_ctx->flags |= LOG_HTTP_REQ_HEADERS;
+ http_ctx->flags |= LOG_HTTP_RES_HEADERS;
+ } else if (strncmp(all_headers, "request", 7) == 0) {
+ http_ctx->flags |= LOG_HTTP_REQ_HEADERS;
+ } else if (strncmp(all_headers, "response", 8) == 0) {
+ http_ctx->flags |= LOG_HTTP_RES_HEADERS;
+ }
+ }
+ ConfNode *custom;
+ if ((custom = ConfNodeLookupChild(conf, "custom")) != NULL) {
+ if ((http_ctx->flags & (LOG_HTTP_REQ_HEADERS | LOG_HTTP_RES_HEADERS)) ==
+ (LOG_HTTP_REQ_HEADERS | LOG_HTTP_RES_HEADERS)) {
+ SCLogWarning("No need for custom as dump-all-headers is already present");
+ }
+ ConfNode *field;
+ TAILQ_FOREACH (field, &custom->head, next) {
+ HttpField f;
+ for (f = HTTP_FIELD_ACCEPT; f < HTTP_FIELD_SIZE; f++) {
+ if ((strcmp(http_fields[f].config_field, field->val) == 0) ||
+ (strcasecmp(http_fields[f].htp_field, field->val) == 0)) {
+ http_ctx->fields |= (1ULL << f);
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ if (conf != NULL && ConfNodeLookupChild(conf, "xff") != NULL) {
+ http_ctx->xff_cfg = SCCalloc(1, sizeof(HttpXFFCfg));
+ if (http_ctx->xff_cfg != NULL) {
+ HttpXFFGetCfg(conf, http_ctx->xff_cfg);
+ }
+ } else if (ojc->xff_cfg) {
+ http_ctx->parent_xff_cfg = ojc->xff_cfg;
+ }
+
+ output_ctx->data = http_ctx;
+ output_ctx->DeInit = OutputHttpLogDeinitSub;
+
+ /* enable the logger for the app layer */
+ AppLayerParserRegisterLogger(IPPROTO_TCP, ALPROTO_HTTP1);
+
+ result.ctx = output_ctx;
+ result.ok = true;
+ return result;
+}
+
+static TmEcode JsonHttpLogThreadInit(ThreadVars *t, const void *initdata, void **data)
+{
+ JsonHttpLogThread *aft = SCCalloc(1, sizeof(JsonHttpLogThread));
+ if (unlikely(aft == NULL))
+ return TM_ECODE_FAILED;
+
+ if(initdata == NULL)
+ {
+ SCLogDebug("Error getting context for EveLogHTTP. \"initdata\" argument NULL");
+ goto error_exit;
+ }
+
+ /* Use the Output Context (file pointer and mutex) */
+ aft->httplog_ctx = ((OutputCtx *)initdata)->data; //TODO
+
+ aft->ctx = CreateEveThreadCtx(t, aft->httplog_ctx->eve_ctx);
+ if (!aft->ctx) {
+ goto error_exit;
+ }
+
+ *data = (void *)aft;
+ return TM_ECODE_OK;
+
+error_exit:
+ SCFree(aft);
+ return TM_ECODE_FAILED;
+}
+
+static TmEcode JsonHttpLogThreadDeinit(ThreadVars *t, void *data)
+{
+ JsonHttpLogThread *aft = (JsonHttpLogThread *)data;
+ if (aft == NULL) {
+ return TM_ECODE_OK;
+ }
+
+ FreeEveThreadCtx(aft->ctx);
+
+ /* clear memory */
+ memset(aft, 0, sizeof(JsonHttpLogThread));
+
+ SCFree(aft);
+ return TM_ECODE_OK;
+}
+
+void JsonHttpLogRegister (void)
+{
+ /* register as child of eve-log */
+ OutputRegisterTxSubModule(LOGGER_JSON_TX, "eve-log", "JsonHttpLog", "eve-log.http",
+ OutputHttpLogInitSub, ALPROTO_HTTP1, JsonHttpLogger, JsonHttpLogThreadInit,
+ JsonHttpLogThreadDeinit, NULL);
+}