mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
370 lines
9.7 KiB
C
370 lines
9.7 KiB
C
12 years ago
|
/* 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"
|
||
12 years ago
|
#include "app-layer-parser.h"
|
||
12 years ago
|
#include "output.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"
|
||
|
|
||
12 years ago
|
#include "output-json.h"
|
||
12 years ago
|
|
||
|
#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_ {
|
||
12 years ago
|
LogFileCtx *file_ctx;
|
||
12 years ago
|
uint32_t flags; /** Store mode */
|
||
|
} OutputTlsCtx;
|
||
|
|
||
12 years ago
|
|
||
|
typedef struct JsonTlsLogThread_ {
|
||
|
OutputTlsCtx *tlslog_ctx;
|
||
|
MemBuffer *buffer;
|
||
|
} JsonTlsLogThread;
|
||
|
|
||
12 years ago
|
#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));
|
||
|
}
|
||
|
|
||
12 years ago
|
static int JsonTlsLogger(ThreadVars *tv, void *thread_data, const Packet *p) {
|
||
|
JsonTlsLogThread *aft = (JsonTlsLogThread *)thread_data;
|
||
12 years ago
|
MemBuffer *buffer = (MemBuffer *)aft->buffer;
|
||
12 years ago
|
OutputTlsCtx *tls_ctx = aft->tlslog_ctx;
|
||
12 years ago
|
|
||
12 years ago
|
if (unlikely(p->flow == NULL)) {
|
||
|
return 0;
|
||
12 years ago
|
}
|
||
|
|
||
|
/* check if we have TLS state or not */
|
||
|
FLOWLOCK_WRLOCK(p->flow);
|
||
12 years ago
|
uint16_t proto = FlowGetAppProtocol(p->flow);
|
||
12 years ago
|
if (proto != ALPROTO_TLS)
|
||
|
goto end;
|
||
|
|
||
12 years ago
|
SSLState *ssl_state = (SSLState *)FlowGetAppState(p->flow);
|
||
|
if (unlikely(ssl_state == NULL)) {
|
||
12 years ago
|
goto end;
|
||
|
}
|
||
|
|
||
|
if (ssl_state->server_connp.cert0_issuerdn == NULL || ssl_state->server_connp.cert0_subject == NULL)
|
||
|
goto end;
|
||
|
|
||
12 years ago
|
json_t *js = CreateJSONHeader((Packet *)p, 0);//TODO
|
||
12 years ago
|
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);
|
||
|
|
||
12 years ago
|
OutputJSONBuffer(js, tls_ctx->file_ctx, buffer);
|
||
12 years ago
|
json_object_clear(js);
|
||
|
json_decref(js);
|
||
|
|
||
12 years ago
|
/* we only log the state once */
|
||
|
ssl_state->flags |= SSL_AL_FLAG_STATE_LOGGED;
|
||
12 years ago
|
end:
|
||
|
FLOWLOCK_UNLOCK(p->flow);
|
||
12 years ago
|
return 0;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
#define OUTPUT_BUFFER_SIZE 65535
|
||
|
static TmEcode JsonTlsLogThreadInit(ThreadVars *t, void *initdata, void **data)
|
||
12 years ago
|
{
|
||
12 years ago
|
JsonTlsLogThread *aft = SCMalloc(sizeof(JsonTlsLogThread));
|
||
|
if (unlikely(aft == NULL))
|
||
|
return TM_ECODE_FAILED;
|
||
|
memset(aft, 0, sizeof(JsonTlsLogThread));
|
||
|
|
||
|
if(initdata == NULL)
|
||
|
{
|
||
|
SCLogDebug("Error getting context for HTTPLog. \"initdata\" argument NULL");
|
||
|
SCFree(aft);
|
||
|
return TM_ECODE_FAILED;
|
||
|
}
|
||
12 years ago
|
|
||
12 years ago
|
/* Use the Ouptut Context (file pointer and mutex) */
|
||
|
aft->tlslog_ctx = ((OutputCtx *)initdata)->data;
|
||
|
|
||
|
aft->buffer = MemBufferCreateNew(OUTPUT_BUFFER_SIZE);
|
||
|
if (aft->buffer == NULL) {
|
||
|
SCFree(aft);
|
||
|
return TM_ECODE_FAILED;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
*data = (void *)aft;
|
||
|
return TM_ECODE_OK;
|
||
|
}
|
||
|
|
||
|
static TmEcode JsonTlsLogThreadDeinit(ThreadVars *t, void *data)
|
||
|
{
|
||
|
JsonTlsLogThread *aft = (JsonTlsLogThread *)data;
|
||
|
if (aft == NULL) {
|
||
|
return TM_ECODE_OK;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
MemBufferFree(aft->buffer);
|
||
|
/* clear memory */
|
||
|
memset(aft, 0, sizeof(JsonTlsLogThread));
|
||
12 years ago
|
|
||
12 years ago
|
SCFree(aft);
|
||
|
return TM_ECODE_OK;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
|
||
|
#define DEFAULT_LOG_FILENAME "tls.json"
|
||
12 years ago
|
OutputCtx *OutputTlsLogInit(ConfNode *conf)
|
||
|
{
|
||
12 years ago
|
if (OutputTlsLoggerEnable() != 0) {
|
||
|
SCLogError(SC_ERR_CONF_YAML_ERROR, "only one 'tls' logger "
|
||
|
"can be enabled");
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
12 years ago
|
LogFileCtx *file_ctx = LogFileNewCtx();
|
||
|
if(file_ctx == NULL) {
|
||
|
SCLogError(SC_ERR_HTTP_LOG_GENERIC, "couldn't create new file_ctx");
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
if (SCConfLogOpenGeneric(conf, file_ctx, DEFAULT_LOG_FILENAME) < 0) {
|
||
|
LogFileFreeCtx(file_ctx);
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
12 years ago
|
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;
|
||
|
|
||
12 years ago
|
tls_ctx->file_ctx = file_ctx;
|
||
12 years ago
|
tls_ctx->flags = LOG_TLS_DEFAULT;
|
||
12 years ago
|
|
||
12 years ago
|
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;
|
||
|
}
|
||
12 years ago
|
|
||
|
OutputCtx *OutputTlsLogInitSub(ConfNode *conf, OutputCtx *parent_ctx)
|
||
|
{
|
||
|
AlertJsonThread *ajt = parent_ctx->data;
|
||
|
|
||
12 years ago
|
if (OutputTlsLoggerEnable() != 0) {
|
||
|
SCLogError(SC_ERR_CONF_YAML_ERROR, "only one 'tls' logger "
|
||
|
"can be enabled");
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
12 years ago
|
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->file_ctx = ajt->file_ctx;
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
/** \internal
|
||
|
* \brief Condition function for TLS logger
|
||
|
* \retval bool true or false -- log now?
|
||
|
*/
|
||
|
static int JsonTlsCondition(ThreadVars *tv, const Packet *p) {
|
||
|
if (p->flow == NULL) {
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
if (!(PKT_IS_TCP(p))) {
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
FLOWLOCK_RDLOCK(p->flow);
|
||
|
uint16_t proto = FlowGetAppProtocol(p->flow);
|
||
|
if (proto != ALPROTO_TLS)
|
||
|
goto dontlog;
|
||
|
|
||
|
SSLState *ssl_state = (SSLState *)FlowGetAppState(p->flow);
|
||
|
if (ssl_state == NULL) {
|
||
|
SCLogDebug("no tls state, so no request logging");
|
||
|
goto dontlog;
|
||
|
}
|
||
|
|
||
|
/* we only log the state once */
|
||
|
if (ssl_state->flags & SSL_AL_FLAG_STATE_LOGGED)
|
||
|
goto dontlog;
|
||
|
|
||
|
if (ssl_state->server_connp.cert0_issuerdn == NULL ||
|
||
|
ssl_state->server_connp.cert0_subject == NULL)
|
||
|
goto dontlog;
|
||
|
|
||
|
/* todo: logic to log once */
|
||
|
|
||
|
FLOWLOCK_UNLOCK(p->flow);
|
||
|
return TRUE;
|
||
|
dontlog:
|
||
|
FLOWLOCK_UNLOCK(p->flow);
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
void TmModuleJsonTlsLogRegister (void) {
|
||
|
tmm_modules[TMM_JSONTLSLOG].name = "JsonTlsLog";
|
||
|
tmm_modules[TMM_JSONTLSLOG].ThreadInit = JsonTlsLogThreadInit;
|
||
|
tmm_modules[TMM_JSONTLSLOG].ThreadDeinit = JsonTlsLogThreadDeinit;
|
||
|
tmm_modules[TMM_JSONTLSLOG].RegisterTests = NULL;
|
||
|
tmm_modules[TMM_JSONTLSLOG].cap_flags = 0;
|
||
|
|
||
|
/* register as separate module */
|
||
|
OutputRegisterPacketModule("JsonTlsLog", "tls-json-log", OutputTlsLogInit,
|
||
|
JsonTlsLogger, JsonTlsCondition);
|
||
|
|
||
|
/* also register as child of eve-log */
|
||
|
OutputRegisterPacketSubModule("eve-log", "JsonTlsLog", "eve-log.tls", OutputTlsLogInitSub,
|
||
|
JsonTlsLogger, JsonTlsCondition);
|
||
|
}
|
||
|
|
||
|
#else
|
||
|
|
||
|
static TmEcode OutputJsonThreadInit(ThreadVars *t, void *initdata, void **data)
|
||
|
{
|
||
|
SCLogInfo("Can't init JSON output - JSON support was disabled during build.");
|
||
|
return TM_ECODE_FAILED;
|
||
|
}
|
||
|
|
||
|
void TmModuleJsonTlsLogRegister (void)
|
||
|
{
|
||
|
tmm_modules[TMM_JSONTLSLOG].name = "JsonTlsLog";
|
||
|
tmm_modules[TMM_JSONTLSLOG].ThreadInit = OutputJsonThreadInit;
|
||
|
}
|
||
|
|
||
12 years ago
|
#endif
|