suricata
detect-krb5-sname.c
Go to the documentation of this file.
1 /* Copyright (C) 2018-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 Pierre Chifflier <chifflier@wzdftpd.net>
22  */
23 
24 #include "suricata-common.h"
25 #include "util-unittest.h"
26 
27 #include "detect-parse.h"
28 #include "detect-engine.h"
29 #include "detect-engine-mpm.h"
30 #include "detect-engine-state.h"
33 
34 #include "detect-krb5-sname.h"
35 
36 #include "rust.h"
37 #include "app-layer-krb5.h"
38 #include "util-profiling.h"
39 
40 static int g_krb5_sname_buffer_id = 0;
41 
43  uint32_t local_id; /**< used as index into thread inspect array */
44  void *txv;
45 };
46 
47 static int DetectKrb5SNameSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg)
48 {
49  if (DetectBufferSetActiveList(de_ctx, s, g_krb5_sname_buffer_id) < 0)
50  return -1;
51 
53  return -1;
54 
55  return 0;
56 }
57 
58 static InspectionBuffer *GetKrb5SNameData(DetectEngineThreadCtx *det_ctx,
59  const DetectEngineTransforms *transforms, Flow *_f,
60  const struct Krb5PrincipalNameDataArgs *cbdata, int list_id)
61 {
62  SCEnter();
63 
64  InspectionBuffer *buffer =
65  InspectionBufferMultipleForListGet(det_ctx, list_id, cbdata->local_id);
66  if (buffer == NULL)
67  return NULL;
68  if (buffer->initialized)
69  return buffer;
70 
71  uint32_t b_len = 0;
72  const uint8_t *b = NULL;
73 
74  if (rs_krb5_tx_get_sname(cbdata->txv, cbdata->local_id, &b, &b_len) != 1) {
76  return NULL;
77  }
78  if (b == NULL || b_len == 0) {
80  return NULL;
81  }
82 
83  InspectionBufferSetupMulti(buffer, transforms, b, b_len);
84 
85  SCReturnPtr(buffer, "InspectionBuffer");
86 }
87 
88 static uint8_t DetectEngineInspectKrb5SName(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx,
89  const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags,
90  void *alstate, void *txv, uint64_t tx_id)
91 {
92  uint32_t local_id = 0;
93 
94  const DetectEngineTransforms *transforms = NULL;
95  if (!engine->mpm) {
96  transforms = engine->v2.transforms;
97  }
98 
99  while (1) {
100  struct Krb5PrincipalNameDataArgs cbdata = { local_id, txv, };
101  InspectionBuffer *buffer =
102  GetKrb5SNameData(det_ctx, transforms, f, &cbdata, engine->sm_list);
103 
104  if (buffer == NULL || buffer->inspect == NULL)
105  break;
106 
107  det_ctx->buffer_offset = 0;
108  det_ctx->discontinue_matching = 0;
109  det_ctx->inspection_recursion_counter = 0;
110 
111  const int match = DetectEngineContentInspection(de_ctx, det_ctx, s, engine->smd,
112  NULL, f,
113  (uint8_t *)buffer->inspect,
114  buffer->inspect_len,
117  if (match == 1) {
119  }
120  local_id++;
121  }
122 
124 }
125 
126 typedef struct PrefilterMpmKrb5Name {
127  int list_id;
128  const MpmCtx *mpm_ctx;
131 
132 /** \brief Krb5SName Krb5SName Mpm prefilter callback
133  *
134  * \param det_ctx detection engine thread ctx
135  * \param p packet to inspect
136  * \param f flow to inspect
137  * \param txv tx to inspect
138  * \param pectx inspection context
139  */
140 static void PrefilterTxKrb5SName(DetectEngineThreadCtx *det_ctx, const void *pectx, Packet *p,
141  Flow *f, void *txv, const uint64_t idx, const AppLayerTxData *_txd, const uint8_t flags)
142 {
143  SCEnter();
144 
145  const PrefilterMpmKrb5Name *ctx = (const PrefilterMpmKrb5Name *)pectx;
146  const MpmCtx *mpm_ctx = ctx->mpm_ctx;
147  const int list_id = ctx->list_id;
148 
149  uint32_t local_id = 0;
150 
151  while(1) {
152  // loop until we get a NULL
153 
154  struct Krb5PrincipalNameDataArgs cbdata = { local_id, txv };
155  InspectionBuffer *buffer = GetKrb5SNameData(det_ctx, ctx->transforms, f, &cbdata, list_id);
156  if (buffer == NULL)
157  break;
158 
159  if (buffer->inspect_len >= mpm_ctx->minlen) {
160  (void)mpm_table[mpm_ctx->mpm_type].Search(mpm_ctx,
161  &det_ctx->mtcu, &det_ctx->pmq,
162  buffer->inspect, buffer->inspect_len);
163  PREFILTER_PROFILING_ADD_BYTES(det_ctx, buffer->inspect_len);
164  }
165 
166  local_id++;
167  }
168 }
169 
170 static void PrefilterMpmKrb5NameFree(void *ptr)
171 {
172  SCFree(ptr);
173 }
174 
175 static int PrefilterMpmKrb5SNameRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh,
176  MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
177 {
178  PrefilterMpmKrb5Name *pectx = SCCalloc(1, sizeof(*pectx));
179  if (pectx == NULL)
180  return -1;
181  pectx->list_id = list_id;
182  pectx->mpm_ctx = mpm_ctx;
183  pectx->transforms = &mpm_reg->transforms;
184 
185  return PrefilterAppendTxEngine(de_ctx, sgh, PrefilterTxKrb5SName,
186  mpm_reg->app_v2.alproto, mpm_reg->app_v2.tx_min_progress,
187  pectx, PrefilterMpmKrb5NameFree, mpm_reg->name);
188 }
189 
191 {
192  sigmatch_table[DETECT_AL_KRB5_SNAME].name = "krb5.sname";
193  sigmatch_table[DETECT_AL_KRB5_SNAME].alias = "krb5_sname";
194  sigmatch_table[DETECT_AL_KRB5_SNAME].url = "/rules/kerberos-keywords.html#krb5-sname";
195  sigmatch_table[DETECT_AL_KRB5_SNAME].Setup = DetectKrb5SNameSetup;
197  sigmatch_table[DETECT_AL_KRB5_SNAME].desc = "sticky buffer to match on Kerberos 5 server name";
198 
200  PrefilterMpmKrb5SNameRegister, NULL,
201  ALPROTO_KRB5, 1);
202 
205  DetectEngineInspectKrb5SName, NULL);
206 
208  "Kerberos 5 ticket server name");
209 
210  g_krb5_sname_buffer_id = DetectBufferTypeGetByName("krb5_sname");
211 
213 }
PrefilterMpmKrb5Name
Definition: detect-krb5-cname.c:126
DetectEngineAppInspectionEngine_
Definition: detect.h:418
SigTableElmt_::url
const char * url
Definition: detect.h:1288
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1704
DetectEngineAppInspectionEngine_::mpm
bool mpm
Definition: detect.h:422
MpmCtx_::mpm_type
uint8_t mpm_type
Definition: util-mpm.h:91
DetectEngineThreadCtx_::buffer_offset
uint32_t buffer_offset
Definition: detect.h:1103
detect-engine.h
DetectAppLayerMpmRegister2
void DetectAppLayerMpmRegister2(const char *name, int direction, int priority, PrefilterRegisterFunc PrefilterRegister, InspectionBufferGetDataPtr GetData, AppProto alproto, int tx_min_progress)
register a MPM engine
Definition: detect-engine-mpm.c:89
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1491
SigTableElmt_::desc
const char * desc
Definition: detect.h:1287
SigTableElmt_::name
const char * name
Definition: detect.h:1285
InspectionBuffer::initialized
bool initialized
Definition: detect.h:369
SigGroupHead_
Container for matching data for a signature group.
Definition: detect.h:1439
DetectEngineTransforms
Definition: detect.h:400
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1387
InspectionBuffer
Definition: detect.h:365
Flow_
Flow data structure.
Definition: flow.h:347
DetectEngineThreadCtx_::pmq
PrefilterRuleStore pmq
Definition: detect.h:1182
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1279
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:827
Krb5PrincipalNameDataArgs::txv
void * txv
Definition: detect-krb5-cname.c:44
DetectBufferTypeSupportsMultiInstance
void DetectBufferTypeSupportsMultiInstance(const char *name)
Definition: detect-engine.c:1074
rust.h
DetectBufferMpmRegistry_
one time registration of keywords at start up
Definition: detect.h:669
SIG_FLAG_TOCLIENT
#define SIG_FLAG_TOCLIENT
Definition: detect.h:256
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1270
DetectBufferMpmRegistry_::transforms
DetectEngineTransforms transforms
Definition: detect.h:682
detect-engine-prefilter.h
DetectEngineThreadCtx_::mtcu
MpmThreadCtx mtcu
Definition: detect.h:1180
util-unittest.h
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1124
ALPROTO_KRB5
@ ALPROTO_KRB5
Definition: app-layer-protos.h:50
PrefilterMpmKrb5Name::list_id
int list_id
Definition: detect-krb5-cname.c:127
DetectEngineAppInspectionEngine_::sm_list
uint16_t sm_list
Definition: detect.h:424
app-layer-krb5.h
InspectionBufferSetupMultiEmpty
void InspectionBufferSetupMultiEmpty(InspectionBuffer *buffer)
setup the buffer empty
Definition: detect-engine.c:1593
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectEngineThreadCtx_
Definition: detect.h:1075
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
detect-engine-mpm.h
DETECT_ENGINE_INSPECT_SIG_MATCH
#define DETECT_ENGINE_INSPECT_SIG_MATCH
Definition: detect-engine-state.h:39
InspectionBuffer::inspect_offset
uint64_t inspect_offset
Definition: detect.h:367
MpmCtx_::minlen
uint16_t minlen
Definition: util-mpm.h:100
util-profiling.h
Packet_
Definition: decode.h:430
DetectAppLayerInspectEngineRegister2
void DetectAppLayerInspectEngineRegister2(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr2 Callback2, InspectionBufferGetDataPtr GetData)
register inspect engine at start up time
Definition: detect-engine.c:216
SCReturnPtr
#define SCReturnPtr(x, type)
Definition: util-debug.h:287
detect-engine-state.h
Data structures and function prototypes for keeping state for the detection engine.
detect-krb5-sname.h
MpmTableElmt_::Search
uint32_t(* Search)(const struct MpmCtx_ *, struct MpmThreadCtx_ *, PrefilterRuleStore *, const uint8_t *, uint32_t)
Definition: util-mpm.h:163
detect-engine-content-inspection.h
DetectEngineThreadCtx_::discontinue_matching
uint16_t discontinue_matching
Definition: detect.h:1140
DetectEngineAppInspectionEngine_::smd
SigMatchData * smd
Definition: detect.h:435
PrefilterMpmKrb5Name::transforms
const DetectEngineTransforms * transforms
Definition: detect-krb5-cname.c:129
DetectEngineContentInspection
uint8_t DetectEngineContentInspection(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const Signature *s, const SigMatchData *smd, Packet *p, Flow *f, const uint8_t *buffer, uint32_t buffer_len, uint32_t stream_start_offset, uint8_t flags, uint8_t inspection_mode)
Run the actual payload match functions.
Definition: detect-engine-content-inspection.c:106
AppLayerTxData
struct AppLayerTxData AppLayerTxData
Definition: detect.h:1347
PREFILTER_PROFILING_ADD_BYTES
#define PREFILTER_PROFILING_ADD_BYTES(det_ctx, bytes)
Definition: util-profiling.h:287
DETECT_CI_FLAGS_SINGLE
#define DETECT_CI_FLAGS_SINGLE
Definition: detect-engine-content-inspection.h:47
flags
uint8_t flags
Definition: decode-gre.h:0
SigTableElmt_::alias
const char * alias
Definition: detect.h:1286
suricata-common.h
DetectBufferMpmRegistry_::app_v2
struct DetectBufferMpmRegistry_::@86::@88 app_v2
DetectBufferMpmRegistry_::name
const char * name
Definition: detect.h:670
DetectKrb5SNameRegister
void DetectKrb5SNameRegister(void)
Definition: detect-krb5-sname.c:190
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:129
DetectEngineThreadCtx_::inspection_recursion_counter
int inspection_recursion_counter
Definition: detect.h:1159
InspectionBufferSetupMulti
void InspectionBufferSetupMulti(InspectionBuffer *buffer, const DetectEngineTransforms *transforms, const uint8_t *data, const uint32_t data_len)
setup the buffer with our initial data
Definition: detect-engine.c:1606
PrefilterAppendTxEngine
int PrefilterAppendTxEngine(DetectEngineCtx *de_ctx, SigGroupHead *sgh, PrefilterTxFn PrefilterTxFunc, AppProto alproto, int tx_min_progress, void *pectx, void(*FreeFunc)(void *pectx), const char *name)
Definition: detect-engine-prefilter.c:270
DETECT_ENGINE_INSPECT_SIG_NO_MATCH
#define DETECT_ENGINE_INSPECT_SIG_NO_MATCH
Definition: detect-engine-state.h:38
InspectionBuffer::inspect_len
uint32_t inspect_len
Definition: detect.h:368
DetectEngineAppInspectionEngine_::v2
struct DetectEngineAppInspectionEngine_::@83 v2
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:366
Krb5PrincipalNameDataArgs::local_id
uint32_t local_id
Definition: detect-krb5-cname.c:43
SCFree
#define SCFree(p)
Definition: util-mem.h:61
Krb5PrincipalNameDataArgs
Definition: detect-krb5-cname.c:42
detect-parse.h
Signature_
Signature container.
Definition: detect.h:582
DetectEngineAppInspectionEngine_::transforms
const DetectEngineTransforms * transforms
Definition: detect.h:432
mpm_table
MpmTableElmt mpm_table[MPM_TABLE_SIZE]
Definition: util-mpm.c:48
DETECT_AL_KRB5_SNAME
@ DETECT_AL_KRB5_SNAME
Definition: detect-engine-register.h:257
InspectionBufferMultipleForListGet
InspectionBuffer * InspectionBufferMultipleForListGet(DetectEngineThreadCtx *det_ctx, const int list_id, const uint32_t local_id)
for a InspectionBufferMultipleForList get a InspectionBuffer
Definition: detect-engine.c:1546
PrefilterMpmKrb5Name
struct PrefilterMpmKrb5Name PrefilterMpmKrb5Name
DETECT_ENGINE_CONTENT_INSPECTION_MODE_STATE
@ DETECT_ENGINE_CONTENT_INSPECTION_MODE_STATE
Definition: detect-engine-content-inspection.h:36
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1467
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1221
MpmCtx_
Definition: util-mpm.h:89
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
PrefilterMpmKrb5Name::mpm_ctx
const MpmCtx * mpm_ctx
Definition: detect-krb5-cname.c:128