suricata
detect-ssh-hassh-server.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2020 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 Vadym Malakhatko <v.malakhatko@sirinsoftware.com>
22  */
23 
24 #include "suricata-common.h"
25 #include "threads.h"
26 #include "decode.h"
27 
28 #include "detect.h"
29 #include "detect-parse.h"
30 #include "detect-content.h"
31 
32 #include "detect-engine.h"
33 #include "detect-engine-mpm.h"
34 #include "detect-engine-state.h"
36 
37 #include "flow.h"
38 #include "flow-var.h"
39 #include "flow-util.h"
40 #include "stream-tcp.h"
41 #include "util-debug.h"
42 #include "util-unittest.h"
43 #include "util-unittest-helper.h"
44 
45 #include "app-layer.h"
46 #include "app-layer-parser.h"
47 #include "app-layer-ssh.h"
49 #include "rust.h"
50 
51 
52 #define KEYWORD_NAME "ssh.hassh.server"
53 #define KEYWORD_ALIAS "ssh-hassh-server"
54 #define KEYWORD_DOC "ssh-keywords.html#ssh.hassh.server"
55 #define BUFFER_NAME "ssh.hassh.server"
56 #define BUFFER_DESC "Ssh Client Fingerprinting For Ssh Servers"
57 static int g_ssh_hassh_buffer_id = 0;
58 
59 
60 static InspectionBuffer *GetSshData(DetectEngineThreadCtx *det_ctx,
61  const DetectEngineTransforms *transforms, Flow *_f,
62  const uint8_t flow_flags, void *txv, const int list_id)
63 {
64 
65  SCEnter();
66 
67  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
68 
69  if (buffer->inspect == NULL) {
70  const uint8_t *hasshServer = NULL;
71  uint32_t b_len = 0;
72 
73  if (rs_ssh_tx_get_hassh(txv, &hasshServer, &b_len, flow_flags) != 1)
74  return NULL;
75  if (hasshServer == NULL || b_len == 0) {
76  SCLogDebug("SSH hassh not set");
77  return NULL;
78  }
79 
80  InspectionBufferSetup(det_ctx, list_id, buffer, hasshServer, b_len);
81  InspectionBufferApplyTransforms(buffer, transforms);
82  }
83 
84  return buffer;
85 }
86 
87 /**
88  * \brief this function setup the ssh.hassh.server modifier keyword used in the rule
89  *
90  * \param de_ctx Pointer to the Detection Engine Context
91  * \param s Pointer to the Signature to which the current keyword belongs
92  * \param str Should hold an empty string always
93  *
94  * \retval 0 On success
95  * \retval -1 On failure
96  * \retval -2 on failure that should be silent after the first
97  */
98 static int DetectSshHasshServerSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg)
99 {
100  if (DetectBufferSetActiveList(de_ctx, s, g_ssh_hassh_buffer_id) < 0)
101  return -1;
102 
104  return -1;
105 
106  /* try to enable Hassh */
107  rs_ssh_enable_hassh();
108 
109  /* Check if Hassh is disabled */
110  if (!RunmodeIsUnittests() && !rs_ssh_hassh_is_enabled()) {
112  SCLogError("hassh support is not enabled");
113  }
114  return -2;
115  }
116 
117  return 0;
118 
119 }
120 
121 static bool DetectSshHasshServerHashValidateCallback(const Signature *s, const char **sigerror)
122 {
123  for (uint32_t x = 0; x < s->init_data->buffer_index; x++) {
124  if (s->init_data->buffers[x].id != (uint32_t)g_ssh_hassh_buffer_id)
125  continue;
126  const SigMatch *sm = s->init_data->buffers[x].head;
127  for (; sm != NULL; sm = sm->next) {
128  if (sm->type != DETECT_CONTENT)
129  continue;
130 
131  const DetectContentData *cd = (DetectContentData *)sm->ctx;
132 
133  if (cd->flags & DETECT_CONTENT_NOCASE) {
134  *sigerror = "ssh.hassh.server should not be used together with "
135  "nocase, since the rule is automatically "
136  "lowercased anyway which makes nocase redundant.";
137  SCLogWarning("rule %u: %s", s->id, *sigerror);
138  }
139 
140  if (cd->content_len != 32) {
141  *sigerror = "Invalid length of the specified ssh.hassh.server (should "
142  "be 32 characters long). This rule will therefore "
143  "never match.";
144  SCLogWarning("rule %u: %s", s->id, *sigerror);
145  return false;
146  }
147  for (size_t i = 0; i < cd->content_len; ++i) {
148  if (!isxdigit(cd->content[i])) {
149  *sigerror = "Invalid ssh.hassh.server string (should be string of hexadecimal "
150  "characters)."
151  "This rule will therefore never match.";
152  SCLogWarning("rule %u: %s", s->id, *sigerror);
153  return false;
154  }
155  }
156  }
157  }
158  return true;
159 }
160 
161 static void DetectSshHasshServerHashSetupCallback(const DetectEngineCtx *de_ctx,
162  Signature *s)
163 {
164  for (uint32_t x = 0; x < s->init_data->buffer_index; x++) {
165  if (s->init_data->buffers[x].id != (uint32_t)g_ssh_hassh_buffer_id)
166  continue;
167  SigMatch *sm = s->init_data->buffers[x].head;
168  for (; sm != NULL; sm = sm->next) {
169  if (sm->type != DETECT_CONTENT)
170  continue;
171 
173 
174  uint32_t u;
175  for (u = 0; u < cd->content_len; u++) {
176  if (isupper(cd->content[u])) {
177  cd->content[u] = u8_tolower(cd->content[u]);
178  }
179  }
180 
181  SpmDestroyCtx(cd->spm_ctx);
182  cd->spm_ctx =
184  }
185  }
186 }
187 
188 /**
189  * \brief Registration function for hasshServer keyword.
190  */
192 {
197  sigmatch_table[DETECT_AL_SSH_HASSH_SERVER].Setup = DetectSshHasshServerSetup;
199 
201  GetSshData, ALPROTO_SSH, SshStateBannerDone);
203  SshStateBannerDone, DetectEngineInspectBufferGeneric, GetSshData);
205 
206  g_ssh_hassh_buffer_id = DetectBufferTypeGetByName(BUFFER_NAME);
207 
208  DetectBufferTypeRegisterSetupCallback(BUFFER_NAME, DetectSshHasshServerHashSetupCallback);
209  DetectBufferTypeRegisterValidateCallback(BUFFER_NAME, DetectSshHasshServerHashValidateCallback);
210 }
DETECT_CONTENT_NOCASE
#define DETECT_CONTENT_NOCASE
Definition: detect-content.h:29
SigTableElmt_::url
const char * url
Definition: detect.h:1299
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1753
SignatureInitDataBuffer_::head
SigMatch * head
Definition: detect.h:530
detect-content.h
detect-engine.h
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1500
app-layer-ssh.h
SigTableElmt_::desc
const char * desc
Definition: detect.h:1298
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:2122
flow-util.h
SigTableElmt_::name
const char * name
Definition: detect.h:1296
stream-tcp.h
DetectEngineTransforms
Definition: detect.h:409
DETECT_CONTENT
@ DETECT_CONTENT
Definition: detect-engine-register.h:62
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1335
InspectionBuffer
Definition: detect.h:374
threads.h
Flow_
Flow data structure.
Definition: flow.h:351
DetectBufferTypeRegisterSetupCallback
void DetectBufferTypeRegisterSetupCallback(const char *name, void(*SetupCallback)(const DetectEngineCtx *, Signature *))
Definition: detect-engine.c:1266
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1290
KEYWORD_DOC
#define KEYWORD_DOC
Definition: detect-ssh-hassh-server.c:54
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:839
detect-ssh-hassh-server.h
BUFFER_DESC
#define BUFFER_DESC
Definition: detect-ssh-hassh-server.c:56
rust.h
u8_tolower
#define u8_tolower(c)
Definition: suricata-common.h:436
DETECT_AL_SSH_HASSH_SERVER
@ DETECT_AL_SSH_HASSH_SERVER
Definition: detect-engine-register.h:179
DetectSshHasshServerRegister
void DetectSshHasshServerRegister(void)
Registration function for hasshServer keyword.
Definition: detect-ssh-hassh-server.c:191
DetectContentData_
Definition: detect-content.h:93
ALPROTO_SSH
@ ALPROTO_SSH
Definition: app-layer-protos.h:34
SIG_FLAG_TOCLIENT
#define SIG_FLAG_TOCLIENT
Definition: detect.h:267
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1281
detect-engine-prefilter.h
util-unittest.h
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine.c:1479
util-unittest-helper.h
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1072
decode.h
util-debug.h
DetectBufferTypeRegisterValidateCallback
void DetectBufferTypeRegisterValidateCallback(const char *name, bool(*ValidateCallback)(const Signature *, const char **sigerror))
Definition: detect-engine.c:1284
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectEngineThreadCtx_
Definition: detect.h:1095
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
detect-engine-mpm.h
detect.h
SigMatch_::next
struct SigMatch_ * next
Definition: detect.h:354
PrefilterGenericMpmRegister
int PrefilterGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
Definition: detect-engine-prefilter.c:745
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 a MPM engine
Definition: detect-engine-mpm.c:89
app-layer-parser.h
SigMatch_::ctx
SigMatchCtx * ctx
Definition: detect.h:353
DetectContentData_::flags
uint32_t flags
Definition: detect-content.h:104
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:665
detect-engine-state.h
Data structures and function prototypes for keeping state for the detection engine.
RunmodeIsUnittests
int RunmodeIsUnittests(void)
Definition: suricata.c:257
SigMatchSilentErrorEnabled
bool SigMatchSilentErrorEnabled(const DetectEngineCtx *de_ctx, const enum DetectKeywordId id)
Definition: detect-parse.c:389
SigTableElmt_::alias
const char * alias
Definition: detect.h:1297
suricata-common.h
SigMatch_::type
uint16_t type
Definition: detect.h:351
InspectionBufferApplyTransforms
void InspectionBufferApplyTransforms(InspectionBuffer *buffer, const DetectEngineTransforms *transforms)
Definition: detect-engine.c:1678
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:127
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:586
KEYWORD_ALIAS
#define KEYWORD_ALIAS
Definition: detect-ssh-hassh-server.c:53
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:375
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
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:1574
Signature_::id
uint32_t id
Definition: detect.h:631
detect-parse.h
SignatureInitDataBuffer_::id
uint32_t id
Definition: detect.h:523
Signature_
Signature container.
Definition: detect.h:596
SigMatch_
a single match condition for a signature
Definition: detect.h:350
BUFFER_NAME
#define BUFFER_NAME
Definition: detect-ssh-hassh-server.c:55
DetectContentData_::content_len
uint16_t content_len
Definition: detect-content.h:95
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1476
DetectAppLayerInspectEngineRegister
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
register inspect engine at start up time
Definition: detect-engine.c:169
DetectEngineCtx_::spm_global_thread_ctx
SpmGlobalThreadCtx * spm_global_thread_ctx
Definition: detect.h:891
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1169
flow.h
SpmDestroyCtx
void SpmDestroyCtx(SpmCtx *ctx)
Definition: util-spm.c:183
SignatureInitData_::buffer_index
uint32_t buffer_index
Definition: detect.h:587
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
KEYWORD_NAME
#define KEYWORD_NAME
Definition: detect-ssh-hassh-server.c:52
app-layer.h