blob: e76481a6d08eb53fcc0fae8a838166fc1b985bd3 [file] [log] [blame]
deraadt@openbsd.org087266e2015-01-20 23:14:00 +00001/* $OpenBSD: deattack.c,v 1.32 2015/01/20 23:14:00 deraadt 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 <string.h>
24#include <stdio.h>
markus@openbsd.org091c3022015-01-19 19:52:16 +000025#include <stdlib.h>
Damien Millerd7834352006-08-05 12:39:39 +100026
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027#include "deattack.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028#include "crc32.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000029#include "sshbuf.h"
Damien Miller3f941882006-03-31 23:13:02 +110030#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031
Damien Miller3c9c1fb2006-09-17 06:08:53 +100032/*
33 * CRC attack detection has a worst-case behaviour that is O(N^3) over
34 * the number of identical blocks in a packet. This behaviour can be
35 * exploited to create a limited denial of service attack.
36 *
37 * However, because we are dealing with encrypted data, identical
38 * blocks should only occur every 2^35 maximally-sized packets or so.
39 * Consequently, we can detect this DoS by looking for identical blocks
40 * in a packet.
41 *
42 * The parameter below determines how many identical blocks we will
43 * accept in a single packet, trading off between attack detection and
44 * likelihood of terminating a legitimate connection. A value of 32
45 * corresponds to an average of 2^40 messages before an attack is
46 * misdetected
47 */
48#define MAX_IDENTICAL 32
49
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050/* SSH Constants */
Damien Miller95def091999-11-25 00:26:21 +110051#define SSH_MAXBLOCKS (32 * 1024)
52#define SSH_BLOCKSIZE (8)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
54/* Hashing constants */
Damien Miller95def091999-11-25 00:26:21 +110055#define HASH_MINSIZE (8 * 1024)
56#define HASH_ENTRYSIZE (2)
57#define HASH_FACTOR(x) ((x)*3/2)
58#define HASH_UNUSEDCHAR (0xff)
59#define HASH_UNUSED (0xffff)
Damien Miller9f0f5c62001-12-21 14:45:46 +110060#define HASH_IV (0xfffe)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
Damien Miller95def091999-11-25 00:26:21 +110062#define HASH_MINBLOCKS (7*SSH_BLOCKSIZE)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
64
65/* Hash function (Input keys are cipher results) */
markus@openbsd.org091c3022015-01-19 19:52:16 +000066#define HASH(x) PEEK_U32(x)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067
Ben Lindstrom204e4882001-03-05 06:47:00 +000068#define CMP(a, b) (memcmp(a, b, SSH_BLOCKSIZE))
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Ben Lindstrombba81212001-06-25 05:01:22 +000070static void
Damien Miller95def091999-11-25 00:26:21 +110071crc_update(u_int32_t *a, u_int32_t b)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072{
Damien Miller95def091999-11-25 00:26:21 +110073 b ^= *a;
Damien Miller2dbbf8e2006-03-26 00:11:46 +110074 *a = ssh_crc32((u_char *)&b, sizeof(b));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075}
76
Damien Miller95def091999-11-25 00:26:21 +110077/* detect if a block is used in a particular pattern */
Ben Lindstrombba81212001-06-25 05:01:22 +000078static int
markus@openbsd.org091c3022015-01-19 19:52:16 +000079check_crc(const u_char *S, const u_char *buf, u_int32_t len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080{
Damien Miller95def091999-11-25 00:26:21 +110081 u_int32_t crc;
markus@openbsd.org091c3022015-01-19 19:52:16 +000082 const u_char *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
Damien Miller95def091999-11-25 00:26:21 +110084 crc = 0;
Damien Miller95def091999-11-25 00:26:21 +110085 for (c = buf; c < buf + len; c += SSH_BLOCKSIZE) {
86 if (!CMP(S, c)) {
87 crc_update(&crc, 1);
88 crc_update(&crc, 0);
89 } else {
90 crc_update(&crc, 0);
91 crc_update(&crc, 0);
92 }
93 }
markus@openbsd.org091c3022015-01-19 19:52:16 +000094 return crc == 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095}
96
markus@openbsd.org091c3022015-01-19 19:52:16 +000097void
98deattack_init(struct deattack_ctx *dctx)
99{
100 bzero(dctx, sizeof(*dctx));
101 dctx->n = HASH_MINSIZE / HASH_ENTRYSIZE;
102}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Damien Miller95def091999-11-25 00:26:21 +1100104/* Detect a crc32 compensation attack on a packet */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000106detect_attack(struct deattack_ctx *dctx, const u_char *buf, u_int32_t len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000108 u_int32_t i, j, l, same;
109 u_int16_t *tmp;
110 const u_char *c, *d;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller95def091999-11-25 00:26:21 +1100112 if (len > (SSH_MAXBLOCKS * SSH_BLOCKSIZE) ||
markus@openbsd.org091c3022015-01-19 19:52:16 +0000113 len % SSH_BLOCKSIZE != 0)
114 return DEATTACK_ERROR;
115 for (l = dctx->n; l < HASH_FACTOR(len / SSH_BLOCKSIZE); l = l << 2)
Damien Miller95def091999-11-25 00:26:21 +1100116 ;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117
markus@openbsd.org091c3022015-01-19 19:52:16 +0000118 if (dctx->h == NULL) {
119 if ((dctx->h = calloc(l, HASH_ENTRYSIZE)) == NULL)
120 return DEATTACK_ERROR;
121 dctx->n = l;
Damien Miller95def091999-11-25 00:26:21 +1100122 } else {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000123 if (l > dctx->n) {
124 if ((tmp = reallocarray(dctx->h, l, HASH_ENTRYSIZE))
125 == NULL) {
126 free(dctx->h);
127 dctx->h = NULL;
128 return DEATTACK_ERROR;
129 }
130 dctx->h = tmp;
131 dctx->n = l;
Damien Miller95def091999-11-25 00:26:21 +1100132 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134
Damien Miller95def091999-11-25 00:26:21 +1100135 if (len <= HASH_MINBLOCKS) {
136 for (c = buf; c < buf + len; c += SSH_BLOCKSIZE) {
Damien Miller95def091999-11-25 00:26:21 +1100137 for (d = buf; d < c; d += SSH_BLOCKSIZE) {
138 if (!CMP(c, d)) {
Damien Miller2dbbf8e2006-03-26 00:11:46 +1100139 if ((check_crc(c, buf, len)))
markus@openbsd.org091c3022015-01-19 19:52:16 +0000140 return DEATTACK_DETECTED;
Damien Miller95def091999-11-25 00:26:21 +1100141 else
142 break;
143 }
144 }
145 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000146 return DEATTACK_OK;
Damien Miller95def091999-11-25 00:26:21 +1100147 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000148 memset(dctx->h, HASH_UNUSEDCHAR, dctx->n * HASH_ENTRYSIZE);
Damien Miller95def091999-11-25 00:26:21 +1100149
Damien Miller3c9c1fb2006-09-17 06:08:53 +1000150 for (c = buf, same = j = 0; c < (buf + len); c += SSH_BLOCKSIZE, j++) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000151 for (i = HASH(c) & (dctx->n - 1); dctx->h[i] != HASH_UNUSED;
152 i = (i + 1) & (dctx->n - 1)) {
153 if (!CMP(c, buf + dctx->h[i] * SSH_BLOCKSIZE)) {
Damien Miller3c9c1fb2006-09-17 06:08:53 +1000154 if (++same > MAX_IDENTICAL)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000155 return DEATTACK_DOS_DETECTED;
Damien Miller2dbbf8e2006-03-26 00:11:46 +1100156 if (check_crc(c, buf, len))
markus@openbsd.org091c3022015-01-19 19:52:16 +0000157 return DEATTACK_DETECTED;
Damien Miller95def091999-11-25 00:26:21 +1100158 else
159 break;
160 }
161 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000162 dctx->h[i] = j;
Damien Miller95def091999-11-25 00:26:21 +1100163 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000164 return DEATTACK_OK;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165}