blob: 0442501e7a17b6ddf4c6f7ae15770c8aa29129fc [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002 * Cryptographic attack detector for ssh - source code
3 *
4 * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina.
5 *
6 * All rights reserved. Redistribution and use in source and binary
7 * forms, with or without modification, are permitted provided that
8 * this copyright notice is retained.
9 *
10 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
11 * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE
12 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR
13 * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS
14 * SOFTWARE.
15 *
16 * Ariel Futoransky <futo@core-sdi.com>
Damien Miller95def091999-11-25 00:26:21 +110017 * <http://www.core-sdi.com>
18 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100019
20#include "includes.h"
Ben Lindstrom05764b92002-03-05 01:53:02 +000021RCSID("$OpenBSD: deattack.c,v 1.18 2002/03/04 17:27:39 stevesk Exp $");
22
Damien Millerd4a8b7e1999-10-27 13:42:43 +100023#include "deattack.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000024#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025#include "crc32.h"
26#include "getput.h"
27#include "xmalloc.h"
Ben Lindstrom3c36bb22001-12-06 17:55:26 +000028#include "deattack.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029
30/* SSH Constants */
Damien Miller95def091999-11-25 00:26:21 +110031#define SSH_MAXBLOCKS (32 * 1024)
32#define SSH_BLOCKSIZE (8)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033
34/* Hashing constants */
Damien Miller95def091999-11-25 00:26:21 +110035#define HASH_MINSIZE (8 * 1024)
36#define HASH_ENTRYSIZE (2)
37#define HASH_FACTOR(x) ((x)*3/2)
38#define HASH_UNUSEDCHAR (0xff)
39#define HASH_UNUSED (0xffff)
Damien Miller9f0f5c62001-12-21 14:45:46 +110040#define HASH_IV (0xfffe)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
Damien Miller95def091999-11-25 00:26:21 +110042#define HASH_MINBLOCKS (7*SSH_BLOCKSIZE)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44
45/* Hash function (Input keys are cipher results) */
Damien Miller95def091999-11-25 00:26:21 +110046#define HASH(x) GET_32BIT(x)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Ben Lindstrom204e4882001-03-05 06:47:00 +000048#define CMP(a, b) (memcmp(a, b, SSH_BLOCKSIZE))
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
Ben Lindstrombba81212001-06-25 05:01:22 +000050static void
Damien Miller95def091999-11-25 00:26:21 +110051crc_update(u_int32_t *a, u_int32_t b)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052{
Damien Miller95def091999-11-25 00:26:21 +110053 b ^= *a;
Ben Lindstrom46c16222000-12-22 01:43:59 +000054 *a = ssh_crc32((u_char *) &b, sizeof(b));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055}
56
Damien Miller95def091999-11-25 00:26:21 +110057/* detect if a block is used in a particular pattern */
Ben Lindstrombba81212001-06-25 05:01:22 +000058static int
Ben Lindstrom46c16222000-12-22 01:43:59 +000059check_crc(u_char *S, u_char *buf, u_int32_t len,
60 u_char *IV)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061{
Damien Miller95def091999-11-25 00:26:21 +110062 u_int32_t crc;
Ben Lindstrom46c16222000-12-22 01:43:59 +000063 u_char *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Miller95def091999-11-25 00:26:21 +110065 crc = 0;
66 if (IV && !CMP(S, IV)) {
67 crc_update(&crc, 1);
68 crc_update(&crc, 0);
69 }
70 for (c = buf; c < buf + len; c += SSH_BLOCKSIZE) {
71 if (!CMP(S, c)) {
72 crc_update(&crc, 1);
73 crc_update(&crc, 0);
74 } else {
75 crc_update(&crc, 0);
76 crc_update(&crc, 0);
77 }
78 }
79 return (crc == 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080}
81
82
Damien Miller95def091999-11-25 00:26:21 +110083/* Detect a crc32 compensation attack on a packet */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084int
Ben Lindstrom46c16222000-12-22 01:43:59 +000085detect_attack(u_char *buf, u_int32_t len, u_char *IV)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086{
Damien Miller95def091999-11-25 00:26:21 +110087 static u_int16_t *h = (u_int16_t *) NULL;
Ben Lindstromf2de06b2000-11-05 05:42:36 +000088 static u_int32_t n = HASH_MINSIZE / HASH_ENTRYSIZE;
Ben Lindstrom70a290c2001-12-06 16:39:56 +000089 u_int32_t i, j;
Damien Miller95def091999-11-25 00:26:21 +110090 u_int32_t l;
Ben Lindstrom70a290c2001-12-06 16:39:56 +000091 u_char *c;
Ben Lindstrom46c16222000-12-22 01:43:59 +000092 u_char *d;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Miller95def091999-11-25 00:26:21 +110094 if (len > (SSH_MAXBLOCKS * SSH_BLOCKSIZE) ||
95 len % SSH_BLOCKSIZE != 0) {
96 fatal("detect_attack: bad length %d", len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097 }
Damien Miller95def091999-11-25 00:26:21 +110098 for (l = n; l < HASH_FACTOR(len / SSH_BLOCKSIZE); l = l << 2)
99 ;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Miller95def091999-11-25 00:26:21 +1100101 if (h == NULL) {
102 debug("Installing crc compensation attack detector.");
103 n = l;
104 h = (u_int16_t *) xmalloc(n * HASH_ENTRYSIZE);
105 } else {
106 if (l > n) {
107 n = l;
108 h = (u_int16_t *) xrealloc(h, n * HASH_ENTRYSIZE);
109 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller95def091999-11-25 00:26:21 +1100112 if (len <= HASH_MINBLOCKS) {
113 for (c = buf; c < buf + len; c += SSH_BLOCKSIZE) {
114 if (IV && (!CMP(c, IV))) {
115 if ((check_crc(c, buf, len, IV)))
116 return (DEATTACK_DETECTED);
117 else
118 break;
119 }
120 for (d = buf; d < c; d += SSH_BLOCKSIZE) {
121 if (!CMP(c, d)) {
122 if ((check_crc(c, buf, len, IV)))
123 return (DEATTACK_DETECTED);
124 else
125 break;
126 }
127 }
128 }
129 return (DEATTACK_OK);
130 }
131 memset(h, HASH_UNUSEDCHAR, n * HASH_ENTRYSIZE);
132
133 if (IV)
134 h[HASH(IV) & (n - 1)] = HASH_IV;
135
136 for (c = buf, j = 0; c < (buf + len); c += SSH_BLOCKSIZE, j++) {
137 for (i = HASH(c) & (n - 1); h[i] != HASH_UNUSED;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100138 i = (i + 1) & (n - 1)) {
Damien Miller95def091999-11-25 00:26:21 +1100139 if (h[i] == HASH_IV) {
140 if (!CMP(c, IV)) {
141 if (check_crc(c, buf, len, IV))
142 return (DEATTACK_DETECTED);
143 else
144 break;
145 }
146 } else if (!CMP(c, buf + h[i] * SSH_BLOCKSIZE)) {
147 if (check_crc(c, buf, len, IV))
148 return (DEATTACK_DETECTED);
149 else
150 break;
151 }
152 }
153 h[i] = j;
154 }
155 return (DEATTACK_OK);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156}