blob: b4fed7f85749eba9b46164737b19c6b0623e530c [file] [log] [blame]
Damien Millerd7834352006-08-05 12:39:39 +10001/* $OpenBSD: deattack.c,v 1.29 2006/08/03 03:34:42 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 <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
35/* SSH Constants */
Damien Miller95def091999-11-25 00:26:21 +110036#define SSH_MAXBLOCKS (32 * 1024)
37#define SSH_BLOCKSIZE (8)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038
39/* Hashing constants */
Damien Miller95def091999-11-25 00:26:21 +110040#define HASH_MINSIZE (8 * 1024)
41#define HASH_ENTRYSIZE (2)
42#define HASH_FACTOR(x) ((x)*3/2)
43#define HASH_UNUSEDCHAR (0xff)
44#define HASH_UNUSED (0xffff)
Damien Miller9f0f5c62001-12-21 14:45:46 +110045#define HASH_IV (0xfffe)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
Damien Miller95def091999-11-25 00:26:21 +110047#define HASH_MINBLOCKS (7*SSH_BLOCKSIZE)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048
49
50/* Hash function (Input keys are cipher results) */
Damien Miller3f941882006-03-31 23:13:02 +110051#define HASH(x) get_u32(x)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052
Ben Lindstrom204e4882001-03-05 06:47:00 +000053#define CMP(a, b) (memcmp(a, b, SSH_BLOCKSIZE))
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054
Ben Lindstrombba81212001-06-25 05:01:22 +000055static void
Damien Miller95def091999-11-25 00:26:21 +110056crc_update(u_int32_t *a, u_int32_t b)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057{
Damien Miller95def091999-11-25 00:26:21 +110058 b ^= *a;
Damien Miller2dbbf8e2006-03-26 00:11:46 +110059 *a = ssh_crc32((u_char *)&b, sizeof(b));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060}
61
Damien Miller95def091999-11-25 00:26:21 +110062/* detect if a block is used in a particular pattern */
Ben Lindstrombba81212001-06-25 05:01:22 +000063static int
Damien Miller2dbbf8e2006-03-26 00:11:46 +110064check_crc(u_char *S, u_char *buf, u_int32_t len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065{
Damien Miller95def091999-11-25 00:26:21 +110066 u_int32_t crc;
Ben Lindstrom46c16222000-12-22 01:43:59 +000067 u_char *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
Damien Miller95def091999-11-25 00:26:21 +110069 crc = 0;
Damien Miller95def091999-11-25 00:26:21 +110070 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
Damien Miller2dbbf8e2006-03-26 00:11:46 +110085detect_attack(u_char *buf, u_int32_t len)
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.");
Damien Miller07d86be2006-03-26 14:19:21 +1100103 h = (u_int16_t *) xcalloc(l, HASH_ENTRYSIZE);
Damien Miller95def091999-11-25 00:26:21 +1100104 n = l;
Damien Miller95def091999-11-25 00:26:21 +1100105 } else {
106 if (l > n) {
Damien Miller36812092006-03-26 14:22:47 +1100107 h = (u_int16_t *)xrealloc(h, l, HASH_ENTRYSIZE);
Damien Miller95def091999-11-25 00:26:21 +1100108 n = l;
Damien Miller95def091999-11-25 00:26:21 +1100109 }
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) {
Damien Miller95def091999-11-25 00:26:21 +1100114 for (d = buf; d < c; d += SSH_BLOCKSIZE) {
115 if (!CMP(c, d)) {
Damien Miller2dbbf8e2006-03-26 00:11:46 +1100116 if ((check_crc(c, buf, len)))
Damien Miller95def091999-11-25 00:26:21 +1100117 return (DEATTACK_DETECTED);
118 else
119 break;
120 }
121 }
122 }
123 return (DEATTACK_OK);
124 }
125 memset(h, HASH_UNUSEDCHAR, n * HASH_ENTRYSIZE);
126
Damien Miller95def091999-11-25 00:26:21 +1100127 for (c = buf, j = 0; c < (buf + len); c += SSH_BLOCKSIZE, j++) {
128 for (i = HASH(c) & (n - 1); h[i] != HASH_UNUSED;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100129 i = (i + 1) & (n - 1)) {
Damien Miller2dbbf8e2006-03-26 00:11:46 +1100130 if (!CMP(c, buf + h[i] * SSH_BLOCKSIZE)) {
131 if (check_crc(c, buf, len))
Damien Miller95def091999-11-25 00:26:21 +1100132 return (DEATTACK_DETECTED);
133 else
134 break;
135 }
136 }
137 h[i] = j;
138 }
139 return (DEATTACK_OK);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140}