blob: 1b37e4dabe59e4e89736b5148f85781d6ae697b6 [file] [log] [blame]
Damien Miller3c9c1fb2006-09-17 06:08:53 +10001/* $OpenBSD: deattack.c,v 1.30 2006/09/16 19:53:37 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003 * Cryptographic attack detector for ssh - source code
4 *
5 * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina.
6 *
7 * All rights reserved. Redistribution and use in source and binary
8 * forms, with or without modification, are permitted provided that
9 * this copyright notice is retained.
10 *
11 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
12 * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE
13 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR
14 * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS
15 * SOFTWARE.
16 *
17 * Ariel Futoransky <futo@core-sdi.com>
Damien Miller95def091999-11-25 00:26:21 +110018 * <http://www.core-sdi.com>
19 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
21#include "includes.h"
Ben Lindstrom05764b92002-03-05 01:53:02 +000022
Damien Millerd7834352006-08-05 12:39:39 +100023#include <sys/types.h>
Damien Millere3476ed2006-07-24 14:13:33 +100024
Damien Millerd7834352006-08-05 12:39:39 +100025#include <string.h>
26#include <stdio.h>
27#include <stdarg.h>
28
29#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100030#include "deattack.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100032#include "crc32.h"
Damien Miller3f941882006-03-31 23:13:02 +110033#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034
Damien Miller3c9c1fb2006-09-17 06:08:53 +100035/*
36 * CRC attack detection has a worst-case behaviour that is O(N^3) over
37 * the number of identical blocks in a packet. This behaviour can be
38 * exploited to create a limited denial of service attack.
39 *
40 * However, because we are dealing with encrypted data, identical
41 * blocks should only occur every 2^35 maximally-sized packets or so.
42 * Consequently, we can detect this DoS by looking for identical blocks
43 * in a packet.
44 *
45 * The parameter below determines how many identical blocks we will
46 * accept in a single packet, trading off between attack detection and
47 * likelihood of terminating a legitimate connection. A value of 32
48 * corresponds to an average of 2^40 messages before an attack is
49 * misdetected
50 */
51#define MAX_IDENTICAL 32
52
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053/* SSH Constants */
Damien Miller95def091999-11-25 00:26:21 +110054#define SSH_MAXBLOCKS (32 * 1024)
55#define SSH_BLOCKSIZE (8)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056
57/* Hashing constants */
Damien Miller95def091999-11-25 00:26:21 +110058#define HASH_MINSIZE (8 * 1024)
59#define HASH_ENTRYSIZE (2)
60#define HASH_FACTOR(x) ((x)*3/2)
61#define HASH_UNUSEDCHAR (0xff)
62#define HASH_UNUSED (0xffff)
Damien Miller9f0f5c62001-12-21 14:45:46 +110063#define HASH_IV (0xfffe)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Miller95def091999-11-25 00:26:21 +110065#define HASH_MINBLOCKS (7*SSH_BLOCKSIZE)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
67
68/* Hash function (Input keys are cipher results) */
Damien Miller3f941882006-03-31 23:13:02 +110069#define HASH(x) get_u32(x)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070
Ben Lindstrom204e4882001-03-05 06:47:00 +000071#define CMP(a, b) (memcmp(a, b, SSH_BLOCKSIZE))
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
Ben Lindstrombba81212001-06-25 05:01:22 +000073static void
Damien Miller95def091999-11-25 00:26:21 +110074crc_update(u_int32_t *a, u_int32_t b)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075{
Damien Miller95def091999-11-25 00:26:21 +110076 b ^= *a;
Damien Miller2dbbf8e2006-03-26 00:11:46 +110077 *a = ssh_crc32((u_char *)&b, sizeof(b));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078}
79
Damien Miller95def091999-11-25 00:26:21 +110080/* detect if a block is used in a particular pattern */
Ben Lindstrombba81212001-06-25 05:01:22 +000081static int
Damien Miller2dbbf8e2006-03-26 00:11:46 +110082check_crc(u_char *S, u_char *buf, u_int32_t len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083{
Damien Miller95def091999-11-25 00:26:21 +110084 u_int32_t crc;
Ben Lindstrom46c16222000-12-22 01:43:59 +000085 u_char *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Damien Miller95def091999-11-25 00:26:21 +110087 crc = 0;
Damien Miller95def091999-11-25 00:26:21 +110088 for (c = buf; c < buf + len; c += SSH_BLOCKSIZE) {
89 if (!CMP(S, c)) {
90 crc_update(&crc, 1);
91 crc_update(&crc, 0);
92 } else {
93 crc_update(&crc, 0);
94 crc_update(&crc, 0);
95 }
96 }
97 return (crc == 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098}
99
100
Damien Miller95def091999-11-25 00:26:21 +1100101/* Detect a crc32 compensation attack on a packet */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102int
Damien Miller2dbbf8e2006-03-26 00:11:46 +1100103detect_attack(u_char *buf, u_int32_t len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104{
Damien Miller95def091999-11-25 00:26:21 +1100105 static u_int16_t *h = (u_int16_t *) NULL;
Ben Lindstromf2de06b2000-11-05 05:42:36 +0000106 static u_int32_t n = HASH_MINSIZE / HASH_ENTRYSIZE;
Ben Lindstrom70a290c2001-12-06 16:39:56 +0000107 u_int32_t i, j;
Damien Miller3c9c1fb2006-09-17 06:08:53 +1000108 u_int32_t l, same;
Ben Lindstrom70a290c2001-12-06 16:39:56 +0000109 u_char *c;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000110 u_char *d;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller95def091999-11-25 00:26:21 +1100112 if (len > (SSH_MAXBLOCKS * SSH_BLOCKSIZE) ||
113 len % SSH_BLOCKSIZE != 0) {
114 fatal("detect_attack: bad length %d", len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115 }
Damien Miller95def091999-11-25 00:26:21 +1100116 for (l = n; l < HASH_FACTOR(len / SSH_BLOCKSIZE); l = l << 2)
117 ;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118
Damien Miller95def091999-11-25 00:26:21 +1100119 if (h == NULL) {
120 debug("Installing crc compensation attack detector.");
Damien Miller07d86be2006-03-26 14:19:21 +1100121 h = (u_int16_t *) xcalloc(l, HASH_ENTRYSIZE);
Damien Miller95def091999-11-25 00:26:21 +1100122 n = l;
Damien Miller95def091999-11-25 00:26:21 +1100123 } else {
124 if (l > n) {
Damien Miller36812092006-03-26 14:22:47 +1100125 h = (u_int16_t *)xrealloc(h, l, HASH_ENTRYSIZE);
Damien Miller95def091999-11-25 00:26:21 +1100126 n = l;
Damien Miller95def091999-11-25 00:26:21 +1100127 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129
Damien Miller95def091999-11-25 00:26:21 +1100130 if (len <= HASH_MINBLOCKS) {
131 for (c = buf; c < buf + len; c += SSH_BLOCKSIZE) {
Damien Miller95def091999-11-25 00:26:21 +1100132 for (d = buf; d < c; d += SSH_BLOCKSIZE) {
133 if (!CMP(c, d)) {
Damien Miller2dbbf8e2006-03-26 00:11:46 +1100134 if ((check_crc(c, buf, len)))
Damien Miller95def091999-11-25 00:26:21 +1100135 return (DEATTACK_DETECTED);
136 else
137 break;
138 }
139 }
140 }
141 return (DEATTACK_OK);
142 }
143 memset(h, HASH_UNUSEDCHAR, n * HASH_ENTRYSIZE);
144
Damien Miller3c9c1fb2006-09-17 06:08:53 +1000145 for (c = buf, same = j = 0; c < (buf + len); c += SSH_BLOCKSIZE, j++) {
Damien Miller95def091999-11-25 00:26:21 +1100146 for (i = HASH(c) & (n - 1); h[i] != HASH_UNUSED;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100147 i = (i + 1) & (n - 1)) {
Damien Miller2dbbf8e2006-03-26 00:11:46 +1100148 if (!CMP(c, buf + h[i] * SSH_BLOCKSIZE)) {
Damien Miller3c9c1fb2006-09-17 06:08:53 +1000149 if (++same > MAX_IDENTICAL)
150 return (DEATTACK_DOS_DETECTED);
Damien Miller2dbbf8e2006-03-26 00:11:46 +1100151 if (check_crc(c, buf, len))
Damien Miller95def091999-11-25 00:26:21 +1100152 return (DEATTACK_DETECTED);
153 else
154 break;
155 }
156 }
157 h[i] = j;
158 }
159 return (DEATTACK_OK);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160}