blob: 4965f38c8936eb7c735b5a315ebd345cf39bc62b [file] [log] [blame]
Damien Miller20bd4532011-08-06 06:17:30 +10001/* $OpenBSD: mac.c,v 1.16 2011/08/02 01:22:11 djm Exp $ */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00002/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000027
Damien Millerd7834352006-08-05 12:39:39 +100028#include <sys/types.h>
29
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000030#include <openssl/hmac.h>
31
Damien Millerded319c2006-09-01 15:38:36 +100032#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100033#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100034#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100035
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000036#include "xmalloc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000037#include "log.h"
38#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100039#include "buffer.h"
40#include "key.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000041#include "kex.h"
42#include "mac.h"
Damien Miller3f941882006-03-31 23:13:02 +110043#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000044
Damien Millere45796f2007-06-11 14:01:42 +100045#include "umac.h"
46
47#define SSH_EVP 1 /* OpenSSL EVP-based MAC */
48#define SSH_UMAC 2 /* UMAC (not integrated with OpenSSL) */
49
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000050struct {
51 char *name;
Damien Millere45796f2007-06-11 14:01:42 +100052 int type;
Ben Lindstrom6a246412002-06-06 19:48:16 +000053 const EVP_MD * (*mdfunc)(void);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000054 int truncatebits; /* truncate digest if != 0 */
Damien Millere45796f2007-06-11 14:01:42 +100055 int key_len; /* just for UMAC */
56 int len; /* just for UMAC */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000057} macs[] = {
Damien Millere45796f2007-06-11 14:01:42 +100058 { "hmac-sha1", SSH_EVP, EVP_sha1, 0, -1, -1 },
59 { "hmac-sha1-96", SSH_EVP, EVP_sha1, 96, -1, -1 },
Damien Miller20bd4532011-08-06 06:17:30 +100060 { "hmac-sha2-256", SSH_EVP, EVP_sha256, 0, -1, -1 },
61 { "hmac-sha2-256-96", SSH_EVP, EVP_sha256, 96, -1, -1 },
62 { "hmac-sha2-512", SSH_EVP, EVP_sha512, 0, -1, -1 },
63 { "hmac-sha2-512-96", SSH_EVP, EVP_sha512, 96, -1, -1 },
Damien Millere45796f2007-06-11 14:01:42 +100064 { "hmac-md5", SSH_EVP, EVP_md5, 0, -1, -1 },
65 { "hmac-md5-96", SSH_EVP, EVP_md5, 96, -1, -1 },
66 { "hmac-ripemd160", SSH_EVP, EVP_ripemd160, 0, -1, -1 },
67 { "hmac-ripemd160@openssh.com", SSH_EVP, EVP_ripemd160, 0, -1, -1 },
68 { "umac-64@openssh.com", SSH_UMAC, NULL, 0, 128, 64 },
69 { NULL, 0, NULL, 0, -1, -1 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000070};
71
Damien Millere45796f2007-06-11 14:01:42 +100072static void
73mac_setup_by_id(Mac *mac, int which)
74{
75 int evp_len;
76 mac->type = macs[which].type;
77 if (mac->type == SSH_EVP) {
78 mac->evp_md = (*macs[which].mdfunc)();
79 if ((evp_len = EVP_MD_size(mac->evp_md)) <= 0)
80 fatal("mac %s len %d", mac->name, evp_len);
81 mac->key_len = mac->mac_len = (u_int)evp_len;
82 } else {
83 mac->mac_len = macs[which].len / 8;
84 mac->key_len = macs[which].key_len / 8;
85 mac->umac_ctx = NULL;
86 }
87 if (macs[which].truncatebits != 0)
88 mac->mac_len = macs[which].truncatebits / 8;
89}
90
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000091int
Darren Tucker5f3d5be2007-06-05 18:30:18 +100092mac_setup(Mac *mac, char *name)
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000093{
Damien Millere45796f2007-06-11 14:01:42 +100094 int i;
Damien Millereccb9de2005-06-17 12:59:34 +100095
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000096 for (i = 0; macs[i].name; i++) {
97 if (strcmp(name, macs[i].name) == 0) {
Damien Millere45796f2007-06-11 14:01:42 +100098 if (mac != NULL)
99 mac_setup_by_id(mac, i);
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000100 debug2("mac_setup: found %s", name);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000101 return (0);
102 }
103 }
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000104 debug2("mac_setup: unknown %s", name);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000105 return (-1);
106}
107
Damien Millere45796f2007-06-11 14:01:42 +1000108int
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000109mac_init(Mac *mac)
110{
111 if (mac->key == NULL)
112 fatal("mac_init: no key");
Damien Millere45796f2007-06-11 14:01:42 +1000113 switch (mac->type) {
114 case SSH_EVP:
115 if (mac->evp_md == NULL)
116 return -1;
117 HMAC_Init(&mac->evp_ctx, mac->key, mac->key_len, mac->evp_md);
118 return 0;
119 case SSH_UMAC:
120 mac->umac_ctx = umac_new(mac->key);
121 return 0;
122 default:
123 return -1;
124 }
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000125}
126
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000127u_char *
128mac_compute(Mac *mac, u_int32_t seqno, u_char *data, int datalen)
129{
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000130 static u_char m[EVP_MAX_MD_SIZE];
Damien Millere45796f2007-06-11 14:01:42 +1000131 u_char b[4], nonce[8];
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000132
Damien Millereccb9de2005-06-17 12:59:34 +1000133 if (mac->mac_len > sizeof(m))
Damien Millere45796f2007-06-11 14:01:42 +1000134 fatal("mac_compute: mac too long %u %lu",
Darren Tuckerc7e030f2008-06-13 10:58:50 +1000135 mac->mac_len, (u_long)sizeof(m));
Damien Millere45796f2007-06-11 14:01:42 +1000136
137 switch (mac->type) {
138 case SSH_EVP:
139 put_u32(b, seqno);
140 /* reset HMAC context */
141 HMAC_Init(&mac->evp_ctx, NULL, 0, NULL);
142 HMAC_Update(&mac->evp_ctx, b, sizeof(b));
143 HMAC_Update(&mac->evp_ctx, data, datalen);
144 HMAC_Final(&mac->evp_ctx, m, NULL);
145 break;
146 case SSH_UMAC:
147 put_u64(nonce, seqno);
148 umac_update(mac->umac_ctx, data, datalen);
149 umac_final(mac->umac_ctx, m, nonce);
150 break;
151 default:
152 fatal("mac_compute: unknown MAC type");
153 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000154 return (m);
155}
156
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000157void
158mac_clear(Mac *mac)
159{
Damien Millere45796f2007-06-11 14:01:42 +1000160 if (mac->type == SSH_UMAC) {
161 if (mac->umac_ctx != NULL)
162 umac_delete(mac->umac_ctx);
163 } else if (mac->evp_md != NULL)
164 HMAC_cleanup(&mac->evp_ctx);
165 mac->evp_md = NULL;
166 mac->umac_ctx = NULL;
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000167}
168
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000169/* XXX copied from ciphers_valid */
170#define MAC_SEP ","
171int
172mac_valid(const char *names)
173{
174 char *maclist, *cp, *p;
175
176 if (names == NULL || strcmp(names, "") == 0)
177 return (0);
178 maclist = cp = xstrdup(names);
179 for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +1100180 (p = strsep(&cp, MAC_SEP))) {
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000181 if (mac_setup(NULL, p) < 0) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000182 debug("bad mac %s [%s]", p, names);
183 xfree(maclist);
184 return (0);
185 } else {
186 debug3("mac ok: %s [%s]", p, names);
187 }
188 }
189 debug3("macs ok: [%s]", names);
190 xfree(maclist);
191 return (1);
192}