]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
add united TLS JSON logging
authorTom DeCanio <decanio.tom@gmail.com>
Wed, 6 Nov 2013 23:12:43 +0000 (15:12 -0800)
committerVictor Julien <victor@inliniac.net>
Wed, 29 Jan 2014 10:07:51 +0000 (11:07 +0100)
src/Makefile.am
src/alert-json.c
src/alert-json.h
src/output-tlslog.c [new file with mode: 0644]
src/output-tlslog.h [new file with mode: 0644]

index c3c184361aa999f880f7f4b71a32faef1d85e82e..78243183139fb21dbecfcc3d66ffdf2ec0ee11ba 100644 (file)
@@ -221,6 +221,7 @@ output-packet.c output-packet.h \
 output-tx.c output-tx.h \
 output-dnslog.c output-dnslog.h \
 output-httplog.c output-httplog.h \
+output-tlslog.c output-tlslog.h \
 packet-queue.c packet-queue.h \
 pkt-var.c pkt-var.h \
 reputation.c reputation.h \
index d3d41bfbb794ec63cd40b8f69903ac4130401029..96875c9ba662725c6ac344105b8b6c7e07a49809 100644 (file)
@@ -49,6 +49,7 @@
 #include "output.h"
 #include "output-dnslog.h"
 #include "output-httplog.h"
+#include "output-tlslog.h"
 
 #include "util-byte.h"
 #include "util-privs.h"
@@ -160,6 +161,7 @@ static enum json_output json_out = ALERT_FILE;
 #define OUTPUT_ALERTS (1<<0)
 #define OUTPUT_DNS    (1<<1)
 #define OUTPUT_HTTP   (1<<2)
+#define OUTPUT_TLS    (1<<3)
 
 static uint32_t outputFlags = 0;
 
@@ -528,6 +530,10 @@ TmEcode AlertJson (ThreadVars *tv, Packet *p, void *data, PacketQueue *pq, Packe
         OutputHttpLog(tv, p, data, pq, postpq);
     }
 
+    if (outputFlags & OUTPUT_TLS) {
+        OutputTlsLog(tv, p, data, pq, postpq);
+    }
+
     return TM_ECODE_OK;
 }
 
@@ -554,6 +560,7 @@ TmEcode AlertJsonThreadInit(ThreadVars *t, void *initdata, void **data)
     if (json_ctx != NULL) {
         aft->file_ctx = json_ctx->file_ctx;
         aft->http_ctx = json_ctx->http_ctx;
+        aft->tls_ctx = json_ctx->tls_ctx;
     }
 
     *data = (void *)aft;
@@ -716,6 +723,23 @@ OutputCtx *AlertJsonInitCtx(ConfNode *conf)
                     }
                     continue;
                 }
+                if (strcmp(output->val, "tls") == 0) {
+                    SCLogDebug("Enabling TLS output");
+                    ConfNode *child = ConfNodeLookupChild(output, "tls");
+#if 1
+                    json_ctx->tls_ctx = OutputTlsLogInit(child);
+                    outputFlags |= OUTPUT_TLS;
+#else
+                    if (child) {
+                        json_ctx->tls_ctx = OutputTlsLogInit(child);
+                        if (json_ctx->tls_ctx != NULL)
+                            outputFlags |= OUTPUT_TLS;
+                    } else {
+                        outputFlags |= OUTPUT_TLS;
+                    }
+#endif
+                    continue;
+                }
             }
         }
     }
index 34bf4a8edcae864eed30ea654a2804243086cd2f..da84d645dc40c0f9ead98d04def1caaaced5bf05 100644 (file)
@@ -39,6 +39,7 @@ OutputCtx *AlertJsonInitCtx(ConfNode *);
 typedef struct OutputJsonCtx_ {
     LogFileCtx *file_ctx;
     OutputCtx *http_ctx;
+    OutputCtx *tls_ctx;
 } OutputJsonCtx;
 
 typedef struct AlertJsonThread_ {
@@ -50,8 +51,10 @@ typedef struct AlertJsonThread_ {
     uint64_t alert_cnt;
     uint64_t dns_cnt;
     uint64_t http_cnt;
+    uint64_t tls_cnt;
     //uint32_t http_flags;
     OutputCtx *http_ctx;
+    OutputCtx *tls_ctx;
 } AlertJsonThread;
 
 #endif /* __ALERT_JSON_H__ */
diff --git a/src/output-tlslog.c b/src/output-tlslog.c
new file mode 100644 (file)
index 0000000..ead31a7
--- /dev/null
@@ -0,0 +1,217 @@
+/* Copyright (C) 2007-2012 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 TLS JSON logging portion of the engine.
+ */
+
+#include "suricata-common.h"
+#include "debug.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 "log-tlslog.h"
+#include "app-layer-ssl.h"
+#include "app-layer.h"
+#include "util-privs.h"
+#include "util-buffer.h"
+
+#include "util-logopenfile.h"
+#include "util-crypt.h"
+
+#include "alert-json.h"
+
+#ifdef HAVE_LIBJANSSON
+#include <jansson.h>
+
+SC_ATOMIC_DECLARE(unsigned int, cert_id);
+
+#define MODULE_NAME "LogTlsLog"
+
+#define LOG_TLS_DEFAULT     0
+#define LOG_TLS_EXTENDED    (1 << 0)
+
+typedef struct OutputTlsCtx_ {
+    uint32_t flags; /** Store mode */
+} OutputTlsCtx;
+
+#define SSL_VERSION_LENGTH 13
+
+static void LogTlsLogExtendedJSON(json_t *tjs, SSLState * state)
+{
+    char ssl_version[SSL_VERSION_LENGTH + 1];
+
+    /* tls.fingerprint */
+    json_object_set_new(tjs, "fingerprint",
+                        json_string(state->server_connp.cert0_fingerprint));
+
+    /* tls.version */
+    switch (state->server_connp.version) {
+        case TLS_VERSION_UNKNOWN:
+            snprintf(ssl_version, SSL_VERSION_LENGTH, "UNDETERMINED");
+            break;
+        case SSL_VERSION_2:
+            snprintf(ssl_version, SSL_VERSION_LENGTH, "SSLv2");
+            break;
+        case SSL_VERSION_3:
+            snprintf(ssl_version, SSL_VERSION_LENGTH, "SSLv3");
+            break;
+        case TLS_VERSION_10:
+            snprintf(ssl_version, SSL_VERSION_LENGTH, "TLSv1");
+            break;
+        case TLS_VERSION_11:
+            snprintf(ssl_version, SSL_VERSION_LENGTH, "TLS 1.1");
+            break;
+        case TLS_VERSION_12:
+            snprintf(ssl_version, SSL_VERSION_LENGTH, "TLS 1.2");
+            break;
+        default:
+            snprintf(ssl_version, SSL_VERSION_LENGTH, "0x%04x",
+                     state->server_connp.version);
+            break;
+    }
+    json_object_set_new(tjs, "version", json_string(ssl_version));
+
+}
+
+
+static TmEcode LogTlsLogIPWrapperJSON(ThreadVars *tv, Packet *p, void *data, PacketQueue *pq, PacketQueue *postpq)
+{
+    SCEnter();
+    AlertJsonThread *aft = (AlertJsonThread *)data;
+    MemBuffer *buffer = (MemBuffer *)aft->buffer;
+    OutputTlsCtx *tls_ctx = aft->tls_ctx->data;
+
+    /* no flow, no tls state */
+    if (p->flow == NULL) {
+        SCReturnInt(TM_ECODE_OK);
+    }
+
+    /* check if we have TLS state or not */
+    FLOWLOCK_WRLOCK(p->flow);
+    uint16_t proto = AppLayerGetProtoFromPacket(p);
+    if (proto != ALPROTO_TLS)
+        goto end;
+
+    SSLState *ssl_state = (SSLState *) AppLayerGetProtoStateFromPacket(p);
+    if (ssl_state == NULL) {
+        SCLogDebug("no tls state, so no request logging");
+        goto end;
+    }
+
+    if (ssl_state->server_connp.cert0_issuerdn == NULL || ssl_state->server_connp.cert0_subject == NULL)
+        goto end;
+
+    if (AppLayerTransactionGetLogId(p->flow) != 0)
+        goto end;
+
+    json_t *js = CreateJSONHeader(p, 0);
+    if (unlikely(js == NULL))
+        goto end;
+
+    json_t *tjs = json_object();
+    if (tjs == NULL) {
+        free(js);
+        goto end;
+    }
+
+    /* reset */
+    MemBufferReset(buffer);
+
+    /* tls.subject */
+    json_object_set_new(tjs, "subject",
+                        json_string(ssl_state->server_connp.cert0_subject));
+
+    /* tls.issuerdn */
+    json_object_set_new(tjs, "issuerdn",
+                        json_string(ssl_state->server_connp.cert0_issuerdn));
+
+    if (tls_ctx->flags & LOG_TLS_EXTENDED) {
+        LogTlsLogExtendedJSON(tjs, ssl_state);
+    }
+
+    json_object_set_new(js, "tls", tjs);
+
+    OutputJSON(js, aft, &aft->tls_cnt);
+    json_object_clear(js);
+    json_decref(js);
+
+end:
+    FLOWLOCK_UNLOCK(p->flow);
+    SCReturnInt(TM_ECODE_OK);
+
+}
+
+TmEcode OutputTlsLog(ThreadVars *tv, Packet *p, void *data, PacketQueue *pq, PacketQueue *postpq)
+{
+    SCEnter();
+
+    /* no flow, no htp state */
+    if (p->flow == NULL) {
+        SCReturnInt(TM_ECODE_OK);
+    }
+
+    if (!(PKT_IS_TCP(p))) {
+        SCReturnInt(TM_ECODE_OK);
+    }
+
+    LogTlsLogIPWrapperJSON(tv, p, data, pq, postpq);
+
+    SCReturnInt(TM_ECODE_OK);
+}
+
+OutputCtx *OutputTlsLogInit(ConfNode *conf)
+{
+    OutputTlsCtx *tls_ctx = SCMalloc(sizeof(OutputTlsCtx));
+    if (unlikely(tls_ctx == NULL))
+        return NULL;
+
+    OutputCtx *output_ctx = SCCalloc(1, sizeof(OutputCtx));
+    if (unlikely(output_ctx == NULL))
+        return NULL;
+
+    tls_ctx->flags = LOG_TLS_DEFAULT;
+    if (conf) {
+        const char *extended = ConfNodeLookupChildValue(conf, "extended");
+
+        if (extended != NULL) {
+            if (ConfValIsTrue(extended)) {
+                tls_ctx->flags = LOG_TLS_EXTENDED;
+            }
+        }
+    }
+    output_ctx->data = tls_ctx;
+    output_ctx->DeInit = NULL;
+
+    return output_ctx;
+}
+#endif
diff --git a/src/output-tlslog.h b/src/output-tlslog.h
new file mode 100644 (file)
index 0000000..be98a4e
--- /dev/null
@@ -0,0 +1,30 @@
+/* Copyright (C) 2007-2012 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>
+ */
+
+#ifndef __OUTPUT_TLSLOG_H__
+#define __OUTPUT_TLSLOG_H__
+
+TmEcode OutputTlsLog (ThreadVars *tv, Packet *p, void *data, PacketQueue *pq, PacketQueue *postpq);
+OutputCtx *OutputTlsLogInit(ConfNode *);
+
+#endif /* __OUTPUT_TLSLOG_H__ */