summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/deattack.c
diff options
context:
space:
mode:
authorDug Song <dugsong@cvs.openbsd.org>1999-10-05 01:23:55 +0000
committerDug Song <dugsong@cvs.openbsd.org>1999-10-05 01:23:55 +0000
commit5d1fc01a498d001bd2b4571f9d539c4e8b5eb534 (patch)
treecca644f35a0e8bae6af06e2ce279ee1022ff8f5f /usr.bin/ssh/deattack.c
parentbc00f23d75877a552d317f5c603b36127df80f88 (diff)
crc32 compensation attack fix from CORE-SDI. "it's not crypto..." -- deraadt@
Diffstat (limited to 'usr.bin/ssh/deattack.c')
-rw-r--r--usr.bin/ssh/deattack.c166
1 files changed, 166 insertions, 0 deletions
diff --git a/usr.bin/ssh/deattack.c b/usr.bin/ssh/deattack.c
new file mode 100644
index 00000000000..0d762960a8e
--- /dev/null
+++ b/usr.bin/ssh/deattack.c
@@ -0,0 +1,166 @@
+/*
+ * $Id: deattack.c,v 1.1 1999/10/05 01:23:54 dugsong Exp $ Cryptographic attack
+ * detector for ssh - source code (C)1998 CORE-SDI, Buenos Aires Argentina
+ * Ariel Futoransky(futo@core-sdi.com) <http://www.core-sdi.com>
+ */
+
+#include "includes.h"
+#include "deattack.h"
+#include "ssh.h"
+#include "getput.h"
+#include "xmalloc.h"
+
+/* SSH Constants */
+#define SSH_MAXBLOCKS (32 * 1024)
+#define SSH_BLOCKSIZE (8)
+
+/* Hashing constants */
+#define HASH_MINSIZE (8 * 1024)
+#define HASH_ENTRYSIZE (2)
+#define HASH_FACTOR(x) ((x)*3/2)
+#define HASH_UNUSEDCHAR (0xff)
+#define HASH_UNUSED (0xffff)
+#define HASH_IV (0xfffe)
+
+#define HASH_MINBLOCKS (7*SSH_BLOCKSIZE)
+
+
+/* Hash function (Input keys are cipher results) */
+#define HASH(x) GET_32BIT(x)
+
+#define CMP(a,b) (memcmp(a, b, SSH_BLOCKSIZE))
+
+
+void
+crc_update(u_int32_t * a, u_int32_t b)
+{
+ b ^= *a;
+ *a = crc32((unsigned char *) &b, sizeof(b));
+}
+
+/*
+ check_crc
+ detects if a block is used in a particular pattern
+ */
+
+int
+check_crc(unsigned char *S, unsigned char *buf, u_int32_t len, unsigned char *IV)
+{
+ u_int32_t crc;
+ unsigned char *c;
+
+ crc = 0;
+ if (IV && !CMP(S, IV))
+ {
+ crc_update(&crc, 1);
+ crc_update(&crc, 0);
+ }
+ for (c = buf; c < buf + len; c += SSH_BLOCKSIZE)
+ {
+ if (!CMP(S, c))
+ {
+ crc_update(&crc, 1);
+ crc_update(&crc, 0);
+ } else
+ {
+ crc_update(&crc, 0);
+ crc_update(&crc, 0);
+ }
+ }
+
+ return (crc == 0);
+}
+
+
+/*
+ detect_attack
+ Detects a crc32 compensation attack on a packet
+ */
+int
+detect_attack(unsigned char *buf, u_int32_t len, unsigned char *IV)
+{
+ static u_int16_t *h = (u_int16_t *) NULL;
+ static u_int16_t n = HASH_MINSIZE / HASH_ENTRYSIZE;
+ register u_int32_t i, j;
+ u_int32_t l;
+ register unsigned char *c;
+ unsigned char *d;
+
+
+ assert(len <= (SSH_MAXBLOCKS * SSH_BLOCKSIZE));
+ assert(len % SSH_BLOCKSIZE == 0);
+
+ for (l = n; l < HASH_FACTOR(len / SSH_BLOCKSIZE); l = l << 2);
+
+ if (h == NULL)
+ {
+ debug("Installing crc compensation attack detector.");
+ n = l;
+ h = (u_int16_t *) xmalloc(n * HASH_ENTRYSIZE);
+ } else
+ {
+ if (l > n)
+ {
+ n = l;
+ h = (u_int16_t *) xrealloc(h, n * HASH_ENTRYSIZE);
+ }
+ }
+
+
+ if (len <= HASH_MINBLOCKS)
+ {
+ for (c = buf; c < buf + len; c += SSH_BLOCKSIZE)
+ {
+ if (IV && (!CMP(c, IV)))
+ {
+ if ((check_crc(c, buf, len, IV)))
+ return (DEATTACK_DETECTED);
+ else
+ break;
+ }
+ for (d = buf; d < c; d += SSH_BLOCKSIZE)
+ {
+ if (!CMP(c, d))
+ {
+ if ((check_crc(c, buf, len, IV)))
+ return (DEATTACK_DETECTED);
+ else
+ break;
+ }
+ }
+ }
+ return (DEATTACK_OK);
+ }
+ memset(h, HASH_UNUSEDCHAR, n * HASH_ENTRYSIZE);
+
+ if (IV)
+ h[HASH(IV) & (n - 1)] = HASH_IV;
+
+
+ for (c = buf, 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)
+ {
+ if (!CMP(c, IV))
+ {
+ if (check_crc(c, buf, len, IV))
+ return (DEATTACK_DETECTED);
+ else
+ break;
+ }
+ } else if (!CMP(c, buf + h[i] * SSH_BLOCKSIZE))
+ {
+ if (check_crc(c, buf, len, IV))
+ return (DEATTACK_DETECTED);
+ else
+ break;
+ }
+ }
+ h[i] = j;
+ }
+
+ return (DEATTACK_OK);
+}