suricata
detect-tls-cert-subject.c
Go to the documentation of this file.
1/* Copyright (C) 2007-2022 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 * \file
20 *
21 * \author Mats Klepsland <mats.klepsland@gmail.com>
22 *
23 * Implements support for tls.cert_subject keyword.
24 */
25
26#include "suricata-common.h"
27#include "threads.h"
28#include "decode.h"
29#include "detect.h"
30
31#include "detect-parse.h"
32#include "detect-engine.h"
34#include "detect-engine-mpm.h"
36#include "detect-content.h"
37#include "detect-pcre.h"
39
40#include "flow.h"
41#include "flow-util.h"
42#include "flow-var.h"
43
44#include "util-debug.h"
45#include "util-spm.h"
46#include "util-print.h"
47
48#include "stream-tcp.h"
49
50#include "app-layer.h"
51#include "app-layer-ssl.h"
52
53#include "util-unittest.h"
55
56static int DetectTlsSubjectSetup(DetectEngineCtx *, Signature *, const char *);
57#ifdef UNITTESTS
58static void DetectTlsSubjectRegisterTests(void);
59#endif
60static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
61 const DetectEngineTransforms *transforms,
62 Flow *f, const uint8_t flow_flags,
63 void *txv, const int list_id);
64static int g_tls_cert_subject_buffer_id = 0;
65
66/**
67 * \brief Registration function for keyword: tls.cert_subject
68 */
70{
71 sigmatch_table[DETECT_TLS_CERT_SUBJECT].name = "tls.cert_subject";
72 sigmatch_table[DETECT_TLS_CERT_SUBJECT].alias = "tls_cert_subject";
74 "sticky buffer to match specifically and only on the TLS cert subject buffer";
75 sigmatch_table[DETECT_TLS_CERT_SUBJECT].url = "/rules/tls-keywords.html#tls-cert-subject";
76 sigmatch_table[DETECT_TLS_CERT_SUBJECT].Setup = DetectTlsSubjectSetup;
77#ifdef UNITTESTS
78 sigmatch_table[DETECT_TLS_CERT_SUBJECT].RegisterTests = DetectTlsSubjectRegisterTests;
79#endif
82
85
88
91
94
95 DetectBufferTypeSupportsMultiInstance("tls.cert_subject");
96
97 DetectBufferTypeSetDescriptionByName("tls.cert_subject",
98 "TLS certificate subject");
99
100 g_tls_cert_subject_buffer_id = DetectBufferTypeGetByName("tls.cert_subject");
101}
102
103/**
104 * \brief this function setup the tls.cert_subject modifier keyword used in the rule
105 *
106 * \param de_ctx Pointer to the Detection Engine Context
107 * \param s Pointer to the Signature to which the current keyword belongs
108 * \param str Should hold an empty string always
109 *
110 * \retval 0 On success
111 * \retval -1 On failure
112 */
113static int DetectTlsSubjectSetup(DetectEngineCtx *de_ctx, Signature *s, const char *str)
114{
115 if (SCDetectBufferSetActiveList(de_ctx, s, g_tls_cert_subject_buffer_id) < 0)
116 return -1;
117
119 return -1;
120
121 return 0;
122}
123
124static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
125 const DetectEngineTransforms *transforms, Flow *f,
126 const uint8_t flow_flags, void *txv, const int list_id)
127{
128 InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
129 if (buffer->inspect == NULL) {
130 const SSLState *ssl_state = (SSLState *)f->alstate;
131 const SSLStateConnp *connp;
132
133 if (flow_flags & STREAM_TOSERVER) {
134 connp = &ssl_state->client_connp;
135 } else {
136 connp = &ssl_state->server_connp;
137 }
138
139 if (connp->cert0_subject == NULL) {
140 return NULL;
141 }
142
143 const uint32_t data_len = (uint32_t)strlen(connp->cert0_subject);
144 const uint8_t *data = (uint8_t *)connp->cert0_subject;
145
147 det_ctx, list_id, buffer, data, data_len, transforms);
148 }
149
150 return buffer;
151}
152
153#ifdef UNITTESTS
155#endif
@ ALPROTO_TLS
@ TLS_STATE_CLIENT_CERT_DONE
@ TLS_STATE_SERVER_CERT_DONE
int SCDetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
void InspectionBufferSetupAndApplyTransforms(DetectEngineThreadCtx *det_ctx, const int list_id, InspectionBuffer *buffer, const uint8_t *data, const uint32_t data_len, const DetectEngineTransforms *transforms)
setup the buffer with our initial data
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
void DetectAppLayerMpmRegister(const char *name, int direction, int priority, PrefilterRegisterFunc PrefilterRegister, InspectionBufferGetDataPtr GetData, AppProto alproto, int tx_min_progress)
register an app layer keyword for mpm
int PrefilterGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
@ DETECT_TLS_CERT_SUBJECT
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
void DetectBufferTypeSupportsMultiInstance(const char *name)
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.
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
Registers an app inspection engine.
int DetectBufferTypeGetByName(const char *name)
int SCDetectSignatureSetAppProto(Signature *s, AppProto alproto)
SigTableElmt * sigmatch_table
void DetectTlsSubjectRegister(void)
Registration function for keyword: tls.cert_subject.
#define SIGMATCH_NOOPT
Definition detect.h:1651
#define SIG_FLAG_TOCLIENT
Definition detect.h:272
#define SIGMATCH_INFO_STICKY_BUFFER
Definition detect.h:1676
#define SIG_FLAG_TOSERVER
Definition detect.h:271
DetectEngineCtx * de_ctx
main detection engine ctx
Definition detect.h:932
Flow data structure.
Definition flow.h:356
void * alstate
Definition flow.h:479
SSLv[2.0|3.[0|1|2|3]] state structure.
const char * url
Definition detect.h:1462
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition detect.h:1441
uint16_t flags
Definition detect.h:1450
const char * desc
Definition detect.h:1461
void(* RegisterTests)(void)
Definition detect.h:1448
const char * alias
Definition detect.h:1460
const char * name
Definition detect.h:1459
Signature container.
Definition detect.h:668
#define str(s)