suricata
detect-tls-cert-fingerprint.c
Go to the documentation of this file.
1 /* Copyright (C) 2017-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_fingerprint 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"
33 #include "detect-engine-mpm.h"
35 #include "detect-content.h"
36 #include "detect-pcre.h"
38 
39 #include "flow.h"
40 #include "flow-util.h"
41 #include "flow-var.h"
42 
43 #include "util-debug.h"
44 #include "util-spm.h"
45 #include "util-print.h"
46 
47 #include "stream-tcp.h"
48 
49 #include "app-layer.h"
50 #include "app-layer-ssl.h"
51 
52 #include "util-unittest.h"
53 #include "util-unittest-helper.h"
54 
55 static int DetectTlsFingerprintSetup(DetectEngineCtx *, Signature *, const char *);
56 #ifdef UNITTESTS
57 static void DetectTlsFingerprintRegisterTests(void);
58 #endif
59 static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
60  const DetectEngineTransforms *transforms,
61  Flow *f, const uint8_t flow_flags,
62  void *txv, const int list_id);
63 static void DetectTlsFingerprintSetupCallback(const DetectEngineCtx *de_ctx,
64  Signature *s);
65 static bool DetectTlsFingerprintValidateCallback(const Signature *s,
66  const char **sigerror);
67 static int g_tls_cert_fingerprint_buffer_id = 0;
68 
69 /**
70  * \brief Registration function for keyword: tls.cert_fingerprint
71  */
73 {
74  sigmatch_table[DETECT_TLS_CERT_FINGERPRINT].name = "tls.cert_fingerprint";
75  sigmatch_table[DETECT_TLS_CERT_FINGERPRINT].alias = "tls_cert_fingerprint";
77  "sticky buffer to match the TLS cert fingerprint buffer";
79  "/rules/tls-keywords.html#tls-cert-fingerprint";
80  sigmatch_table[DETECT_TLS_CERT_FINGERPRINT].Setup = DetectTlsFingerprintSetup;
81 #ifdef UNITTESTS
82  sigmatch_table[DETECT_TLS_CERT_FINGERPRINT].RegisterTests = DetectTlsFingerprintRegisterTests;
83 #endif
86 
89 
90  DetectAppLayerMpmRegister("tls.cert_fingerprint", SIG_FLAG_TOCLIENT, 2,
92 
95 
96  DetectAppLayerMpmRegister("tls.cert_fingerprint", SIG_FLAG_TOSERVER, 2,
98 
99  DetectBufferTypeSetDescriptionByName("tls.cert_fingerprint",
100  "TLS certificate fingerprint");
101 
102  DetectBufferTypeRegisterSetupCallback("tls.cert_fingerprint",
103  DetectTlsFingerprintSetupCallback);
104 
105  DetectBufferTypeRegisterValidateCallback("tls.cert_fingerprint",
106  DetectTlsFingerprintValidateCallback);
107 
108  g_tls_cert_fingerprint_buffer_id = DetectBufferTypeGetByName("tls.cert_fingerprint");
109 }
110 
111 /**
112  * \brief this function setup the tls_cert_fingerprint modifier keyword used in the rule
113  *
114  * \param de_ctx Pointer to the Detection Engine Context
115  * \param s Pointer to the Signature to which the current keyword belongs
116  * \param str Should hold an empty string always
117  *
118  * \retval 0 On success
119  * \retval -1 On failure
120  */
121 static int DetectTlsFingerprintSetup(DetectEngineCtx *de_ctx, Signature *s,
122  const char *str)
123 {
124  if (DetectBufferSetActiveList(de_ctx, s, g_tls_cert_fingerprint_buffer_id) < 0)
125  return -1;
126 
128  return -1;
129 
130  return 0;
131 }
132 
133 static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
134  const DetectEngineTransforms *transforms, Flow *f,
135  const uint8_t flow_flags, void *txv, const int list_id)
136 {
137  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
138  if (buffer->inspect == NULL) {
139  const SSLState *ssl_state = (SSLState *)f->alstate;
140  const SSLStateConnp *connp;
141 
142  if (flow_flags & STREAM_TOSERVER) {
143  connp = &ssl_state->client_connp;
144  } else {
145  connp = &ssl_state->server_connp;
146  }
147 
148  if (connp->cert0_fingerprint == NULL) {
149  return NULL;
150  }
151 
152  const uint32_t data_len = strlen(connp->cert0_fingerprint);
153  const uint8_t *data = (uint8_t *)connp->cert0_fingerprint;
154 
155  InspectionBufferSetup(det_ctx, list_id, buffer, data, data_len);
156  InspectionBufferApplyTransforms(buffer, transforms);
157  }
158 
159  return buffer;
160 }
161 
162 static bool DetectTlsFingerprintValidateCallback(const Signature *s,
163  const char **sigerror)
164 {
165  for (uint32_t x = 0; x < s->init_data->buffer_index; x++) {
166  if (s->init_data->buffers[x].id != (uint32_t)g_tls_cert_fingerprint_buffer_id)
167  continue;
168  const SigMatch *sm = s->init_data->buffers[x].head;
169  for (; sm != NULL; sm = sm->next) {
170  if (sm->type != DETECT_CONTENT)
171  continue;
172 
173  const DetectContentData *cd = (DetectContentData *)sm->ctx;
174 
175  if (cd->content_len != 59) {
176  *sigerror = "Invalid length of the specified fingerprint. "
177  "This rule will therefore never match.";
178  SCLogWarning("rule %u: %s", s->id, *sigerror);
179  return false;
180  }
181 
182  bool have_delimiters = false;
183  uint32_t u;
184  for (u = 0; u < cd->content_len; u++) {
185  if (cd->content[u] == ':') {
186  have_delimiters = true;
187  break;
188  }
189  }
190 
191  if (!have_delimiters) {
192  *sigerror = "No colon delimiters ':' detected in content after "
193  "tls.cert_fingerprint. This rule will therefore "
194  "never match.";
195  SCLogWarning("rule %u: %s", s->id, *sigerror);
196  return false;
197  }
198 
199  if (cd->flags & DETECT_CONTENT_NOCASE) {
200  *sigerror = "tls.cert_fingerprint should not be used together "
201  "with nocase, since the rule is automatically "
202  "lowercased anyway which makes nocase redundant.";
203  SCLogWarning("rule %u: %s", s->id, *sigerror);
204  }
205  }
206  }
207  return true;
208 }
209 
210 static void DetectTlsFingerprintSetupCallback(const DetectEngineCtx *de_ctx,
211  Signature *s)
212 {
213  for (uint32_t x = 0; x < s->init_data->buffer_index; x++) {
214  if (s->init_data->buffers[x].id != (uint32_t)g_tls_cert_fingerprint_buffer_id)
215  continue;
216  SigMatch *sm = s->init_data->buffers[x].head;
217  for (; sm != NULL; sm = sm->next) {
218  if (sm->type != DETECT_CONTENT)
219  continue;
220 
222 
223  bool changed = false;
224  uint32_t u;
225  for (u = 0; u < cd->content_len; u++) {
226  if (isupper(cd->content[u])) {
227  cd->content[u] = u8_tolower(cd->content[u]);
228  changed = true;
229  }
230  }
231 
232  /* recreate the context if changes were made */
233  if (changed) {
234  SpmDestroyCtx(cd->spm_ctx);
235  cd->spm_ctx =
237  }
238  }
239  }
240 }
241 
242 #ifdef UNITTESTS
243 #include "detect-engine-alert.h"
245 #endif
DETECT_CONTENT_NOCASE
#define DETECT_CONTENT_NOCASE
Definition: detect-content.h:29
SigTableElmt_::url
const char * url
Definition: detect.h:1314
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1765
SignatureInitDataBuffer_::head
SigMatch * head
Definition: detect.h:539
SSLState_
SSLv[2.0|3.[0|1|2|3]] state structure.
Definition: app-layer-ssl.h:296
detect-content.h
detect-engine.h
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1519
SigTableElmt_::desc
const char * desc
Definition: detect.h:1313
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:153
DetectEngineInspectBufferGeneric
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.
Definition: detect-engine.c:2157
flow-util.h
SigTableElmt_::name
const char * name
Definition: detect.h:1311
stream-tcp.h
DetectEngineTransforms
Definition: detect.h:410
DetectTlsFingerprintRegister
void DetectTlsFingerprintRegister(void)
Registration function for keyword: tls.cert_fingerprint.
Definition: detect-tls-cert-fingerprint.c:72
detect-tls-cert-fingerprint.h
SSLState_::client_connp
SSLStateConnp client_connp
Definition: app-layer-ssl.h:314
DETECT_CONTENT
@ DETECT_CONTENT
Definition: detect-engine-register.h:72
ALPROTO_TLS
@ ALPROTO_TLS
Definition: app-layer-protos.h:39
SSLState_::server_connp
SSLStateConnp server_connp
Definition: app-layer-ssl.h:315
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1359
SSLStateConnp_
Definition: app-layer-ssl.h:235
InspectionBuffer
Definition: detect.h:375
threads.h
Flow_
Flow data structure.
Definition: flow.h:354
DetectBufferTypeRegisterSetupCallback
void DetectBufferTypeRegisterSetupCallback(const char *name, void(*SetupCallback)(const DetectEngineCtx *, Signature *))
Definition: detect-engine.c:1290
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1305
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:846
DETECT_TLS_CERT_FINGERPRINT
@ DETECT_TLS_CERT_FINGERPRINT
Definition: detect-engine-register.h:257
u8_tolower
#define u8_tolower(c)
Definition: suricata-common.h:436
DetectContentData_
Definition: detect-content.h:93
SIG_FLAG_TOCLIENT
#define SIG_FLAG_TOCLIENT
Definition: detect.h:270
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1296
detect-pcre.h
detect-engine-prefilter.h
util-unittest.h
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine.c:1503
util-unittest-helper.h
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1096
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:269
decode.h
util-debug.h
DetectBufferTypeRegisterValidateCallback
void DetectBufferTypeRegisterValidateCallback(const char *name, bool(*ValidateCallback)(const Signature *, const char **sigerror))
Definition: detect-engine.c:1308
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:18
detect-tls-cert-fingerprint.c
DetectEngineThreadCtx_
Definition: detect.h:1101
util-print.h
detect-engine-mpm.h
detect.h
SigMatch_::next
struct SigMatch_ * next
Definition: detect.h:355
PrefilterGenericMpmRegister
int PrefilterGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
Definition: detect-engine-prefilter.c:750
SCLogWarning
#define SCLogWarning(...)
Macro used to log WARNING messages.
Definition: util-debug.h:249
DetectAppLayerMpmRegister
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
Definition: detect-engine-mpm.c:151
SigMatch_::ctx
SigMatchCtx * ctx
Definition: detect.h:354
detect-engine-alert.h
DetectContentData_::flags
uint32_t flags
Definition: detect-content.h:104
TLS_STATE_CERT_READY
@ TLS_STATE_CERT_READY
Definition: app-layer-ssl.h:78
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:675
SigTableElmt_::alias
const char * alias
Definition: detect.h:1312
suricata-common.h
SigMatch_::type
uint16_t type
Definition: detect.h:352
InspectionBufferApplyTransforms
void InspectionBufferApplyTransforms(InspectionBuffer *buffer, const DetectEngineTransforms *transforms)
Definition: detect-engine.c:1714
util-spm.h
DetectContentData_::content
uint8_t * content
Definition: detect-content.h:94
DetectContentData_::spm_ctx
SpmCtx * spm_ctx
Definition: detect-content.h:111
SignatureInitData_::buffers
SignatureInitDataBuffer * buffers
Definition: detect.h:596
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:376
str
#define str(s)
Definition: suricata-common.h:291
InspectionBufferSetup
void InspectionBufferSetup(DetectEngineThreadCtx *det_ctx, const int list_id, InspectionBuffer *buffer, const uint8_t *data, const uint32_t data_len)
setup the buffer with our initial data
Definition: detect-engine.c:1598
Flow_::alstate
void * alstate
Definition: flow.h:474
Signature_::id
uint32_t id
Definition: detect.h:641
detect-parse.h
SignatureInitDataBuffer_::id
uint32_t id
Definition: detect.h:532
Signature_
Signature container.
Definition: detect.h:606
SigMatch_
a single match condition for a signature
Definition: detect.h:351
DetectContentData_::content_len
uint16_t content_len
Definition: detect-content.h:95
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1495
DetectAppLayerInspectEngineRegister
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
Registers an app inspection engine.
Definition: detect-engine.c:242
DetectEngineCtx_::spm_global_thread_ctx
SpmGlobalThreadCtx * spm_global_thread_ctx
Definition: detect.h:903
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1193
flow.h
SpmDestroyCtx
void SpmDestroyCtx(SpmCtx *ctx)
Definition: util-spm.c:183
SignatureInitData_::buffer_index
uint32_t buffer_index
Definition: detect.h:597
flow-var.h
SpmInitCtx
SpmCtx * SpmInitCtx(const uint8_t *needle, uint16_t needle_len, int nocase, SpmGlobalThreadCtx *global_thread_ctx)
Definition: util-spm.c:173
app-layer-ssl.h
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1303
app-layer.h