summaryrefslogtreecommitdiff
path: root/usr/src/cmd/ssh/libssh/common/deattack.c
diff options
context:
space:
mode:
authorjp161948 <none@none>2006-11-13 09:43:40 -0800
committerjp161948 <none@none>2006-11-13 09:43:40 -0800
commit60779adb24bbd974e68a9993a8eafd79a30ad887 (patch)
tree46745cb8248ea0c916f22d1053ef6e7a5c0d8906 /usr/src/cmd/ssh/libssh/common/deattack.c
parent84d68d8e929eb898bba40f17b9966212f1a66de8 (diff)
downloadillumos-joyent-60779adb24bbd974e68a9993a8eafd79a30ad887.tar.gz
6477720 possible DoS in CRC compensation attack detector for SSH protocol 1
6481229 potential race in fatal_cleanup() in ssh
Diffstat (limited to 'usr/src/cmd/ssh/libssh/common/deattack.c')
-rw-r--r--usr/src/cmd/ssh/libssh/common/deattack.c24
1 files changed, 22 insertions, 2 deletions
diff --git a/usr/src/cmd/ssh/libssh/common/deattack.c b/usr/src/cmd/ssh/libssh/common/deattack.c
index a5e5fde167..82afd4f16b 100644
--- a/usr/src/cmd/ssh/libssh/common/deattack.c
+++ b/usr/src/cmd/ssh/libssh/common/deattack.c
@@ -29,6 +29,24 @@ RCSID("$OpenBSD: deattack.c,v 1.18 2002/03/04 17:27:39 stevesk Exp $");
#include "xmalloc.h"
#include "deattack.h"
+/*
+ * CRC attack detection has a worst-case behaviour that is O(N^2) over
+ * the number of identical blocks in a packet. This behaviour can be
+ * exploited to create a limited denial of service attack.
+ *
+ * However, because we are dealing with encrypted data, identical
+ * blocks should only occur every 2^35 maximally-sized packets or so.
+ * Consequently, we can detect this DoS by looking for identical blocks
+ * in a packet.
+ *
+ * The parameter below determines how many identical blocks we will
+ * accept in a single packet, trading off between attack detection and
+ * likelihood of terminating a legitimate connection. A value of 32
+ * corresponds to an average of 2^40 messages before an attack is
+ * misdetected
+ */
+#define MAX_IDENTICAL 32
+
/* SSH Constants */
#define SSH_MAXBLOCKS (32 * 1024)
#define SSH_BLOCKSIZE (8)
@@ -89,7 +107,7 @@ detect_attack(u_char *buf, u_int32_t len, u_char *IV)
static u_int16_t *h = (u_int16_t *) NULL;
static u_int32_t n = HASH_MINSIZE / HASH_ENTRYSIZE;
u_int32_t i, j;
- u_int32_t l;
+ u_int32_t l, same;
u_char *c;
u_char *d;
@@ -135,7 +153,7 @@ detect_attack(u_char *buf, u_int32_t len, u_char *IV)
if (IV)
h[HASH(IV) & (n - 1)] = HASH_IV;
- for (c = buf, j = 0; c < (buf + len); c += SSH_BLOCKSIZE, j++) {
+ for (c = buf, same = j = 0; c < (buf + len); c += SSH_BLOCKSIZE, j++) {
for (i = HASH(c) & (n - 1); h[i] != HASH_UNUSED;
i = (i + 1) & (n - 1)) {
if (h[i] == HASH_IV) {
@@ -146,6 +164,8 @@ detect_attack(u_char *buf, u_int32_t len, u_char *IV)
break;
}
} else if (!CMP(c, buf + h[i] * SSH_BLOCKSIZE)) {
+ if (++same > MAX_IDENTICAL)
+ return (DEATTACK_DOS_DETECTED);
if (check_crc(c, buf, len, IV))
return (DEATTACK_DETECTED);
else