]> andersk Git - openssh.git/blame - deattack.c
- djm@cvs.openbsd.org 2006/03/25 01:13:23
[openssh.git] / deattack.c
CommitLineData
8efc0c15 1/*
8efc0c15 2 * 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>
5260325f 17 * <http://www.core-sdi.com>
18 */
8efc0c15 19
20#include "includes.h"
93c3b6de 21
8efc0c15 22#include "deattack.h"
42f11eb2 23#include "log.h"
8efc0c15 24#include "crc32.h"
25#include "getput.h"
26#include "xmalloc.h"
27
28/* SSH Constants */
5260325f 29#define SSH_MAXBLOCKS (32 * 1024)
30#define SSH_BLOCKSIZE (8)
8efc0c15 31
32/* Hashing constants */
5260325f 33#define HASH_MINSIZE (8 * 1024)
34#define HASH_ENTRYSIZE (2)
35#define HASH_FACTOR(x) ((x)*3/2)
36#define HASH_UNUSEDCHAR (0xff)
37#define HASH_UNUSED (0xffff)
184eed6a 38#define HASH_IV (0xfffe)
8efc0c15 39
5260325f 40#define HASH_MINBLOCKS (7*SSH_BLOCKSIZE)
8efc0c15 41
42
43/* Hash function (Input keys are cipher results) */
5260325f 44#define HASH(x) GET_32BIT(x)
8efc0c15 45
12bf85ed 46#define CMP(a, b) (memcmp(a, b, SSH_BLOCKSIZE))
8efc0c15 47
396c147e 48static void
5260325f 49crc_update(u_int32_t *a, u_int32_t b)
8efc0c15 50{
5260325f 51 b ^= *a;
69753336 52 *a = ssh_crc32((u_char *)&b, sizeof(b));
8efc0c15 53}
54
5260325f 55/* detect if a block is used in a particular pattern */
396c147e 56static int
69753336 57check_crc(u_char *S, u_char *buf, u_int32_t len)
8efc0c15 58{
5260325f 59 u_int32_t crc;
1e3b8b07 60 u_char *c;
5260325f 61
62 crc = 0;
5260325f 63 for (c = buf; c < buf + len; c += SSH_BLOCKSIZE) {
64 if (!CMP(S, c)) {
65 crc_update(&crc, 1);
66 crc_update(&crc, 0);
67 } else {
68 crc_update(&crc, 0);
69 crc_update(&crc, 0);
70 }
71 }
72 return (crc == 0);
8efc0c15 73}
74
75
5260325f 76/* Detect a crc32 compensation attack on a packet */
8efc0c15 77int
69753336 78detect_attack(u_char *buf, u_int32_t len)
8efc0c15 79{
5260325f 80 static u_int16_t *h = (u_int16_t *) NULL;
b850ecd9 81 static u_int32_t n = HASH_MINSIZE / HASH_ENTRYSIZE;
44c2ab73 82 u_int32_t i, j;
5260325f 83 u_int32_t l;
44c2ab73 84 u_char *c;
1e3b8b07 85 u_char *d;
5260325f 86
87 if (len > (SSH_MAXBLOCKS * SSH_BLOCKSIZE) ||
88 len % SSH_BLOCKSIZE != 0) {
89 fatal("detect_attack: bad length %d", len);
90 }
91 for (l = n; l < HASH_FACTOR(len / SSH_BLOCKSIZE); l = l << 2)
92 ;
93
94 if (h == NULL) {
95 debug("Installing crc compensation attack detector.");
52e3daed 96 h = (u_int16_t *) xcalloc(l, HASH_ENTRYSIZE);
5260325f 97 n = l;
5260325f 98 } else {
99 if (l > n) {
c5d10563 100 h = (u_int16_t *)xrealloc(h, l, HASH_ENTRYSIZE);
5260325f 101 n = l;
5260325f 102 }
103 }
104
105 if (len <= HASH_MINBLOCKS) {
106 for (c = buf; c < buf + len; c += SSH_BLOCKSIZE) {
5260325f 107 for (d = buf; d < c; d += SSH_BLOCKSIZE) {
108 if (!CMP(c, d)) {
69753336 109 if ((check_crc(c, buf, len)))
5260325f 110 return (DEATTACK_DETECTED);
111 else
112 break;
113 }
114 }
115 }
116 return (DEATTACK_OK);
8efc0c15 117 }
5260325f 118 memset(h, HASH_UNUSEDCHAR, n * HASH_ENTRYSIZE);
119
5260325f 120 for (c = buf, j = 0; c < (buf + len); c += SSH_BLOCKSIZE, j++) {
121 for (i = HASH(c) & (n - 1); h[i] != HASH_UNUSED;
184eed6a 122 i = (i + 1) & (n - 1)) {
69753336 123 if (!CMP(c, buf + h[i] * SSH_BLOCKSIZE)) {
124 if (check_crc(c, buf, len))
5260325f 125 return (DEATTACK_DETECTED);
126 else
127 break;
128 }
129 }
130 h[i] = j;
8efc0c15 131 }
5260325f 132 return (DEATTACK_OK);
8efc0c15 133}
This page took 0.198773 seconds and 5 git commands to generate.