summaryrefslogtreecommitdiff
path: root/deattack.c
diff options
context:
space:
mode:
authordjm <djm>2006-09-16 20:08:53 +0000
committerdjm <djm>2006-09-16 20:08:53 +0000
commitccfd10633fada0635604ec99fdbebf2d44a0eab2 (patch)
tree6e94968fb42517bce88e9541b7d8913d0dec11f9 /deattack.c
parent751c2f1c08c24669f887ad894e14f7dc88619e16 (diff)
downloadopenssh-ccfd10633fada0635604ec99fdbebf2d44a0eab2.tar.gz
- djm@cvs.openbsd.org 2006/09/16 19:53:37
[deattack.c deattack.h packet.c] limit maximum work performed by the CRC compensation attack detector, problem reported by Tavis Ormandy, Google Security Team; ok markus@ deraadt@
Diffstat (limited to 'deattack.c')
-rw-r--r--deattack.c26
1 files changed, 23 insertions, 3 deletions
diff --git a/deattack.c b/deattack.c
index b4fed7f8..1b37e4da 100644
--- a/deattack.c
+++ b/deattack.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: deattack.c,v 1.29 2006/08/03 03:34:42 deraadt Exp $ */
+/* $OpenBSD: deattack.c,v 1.30 2006/09/16 19:53:37 djm Exp $ */
/*
* Cryptographic attack detector for ssh - source code
*
@@ -32,6 +32,24 @@
#include "crc32.h"
#include "misc.h"
+/*
+ * CRC attack detection has a worst-case behaviour that is O(N^3) 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)
@@ -87,7 +105,7 @@ detect_attack(u_char *buf, u_int32_t len)
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;
@@ -124,10 +142,12 @@ detect_attack(u_char *buf, u_int32_t len)
}
memset(h, HASH_UNUSEDCHAR, n * HASH_ENTRYSIZE);
- 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 (!CMP(c, buf + h[i] * SSH_BLOCKSIZE)) {
+ if (++same > MAX_IDENTICAL)
+ return (DEATTACK_DOS_DETECTED);
if (check_crc(c, buf, len))
return (DEATTACK_DETECTED);
else