blob: 47db127f56e55e54c146fc1d3706b66749f158cb [file] [log] [blame]
Darren Tucker427e4092012-10-05 11:02:39 +10001/* $OpenBSD: mac.c,v 1.19 2012/10/04 13:21:50 markus 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
Darren Tuckere9b3ad72012-01-17 14:03:34 +110047#include "openbsd-compat/openssl-compat.h"
48
Damien Millere45796f2007-06-11 14:01:42 +100049#define SSH_EVP 1 /* OpenSSL EVP-based MAC */
50#define SSH_UMAC 2 /* UMAC (not integrated with OpenSSL) */
Darren Tucker427e4092012-10-05 11:02:39 +100051#define SSH_UMAC128 3
Damien Millere45796f2007-06-11 14:01:42 +100052
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000053struct {
54 char *name;
Damien Millere45796f2007-06-11 14:01:42 +100055 int type;
Ben Lindstrom6a246412002-06-06 19:48:16 +000056 const EVP_MD * (*mdfunc)(void);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000057 int truncatebits; /* truncate digest if != 0 */
Damien Millere45796f2007-06-11 14:01:42 +100058 int key_len; /* just for UMAC */
59 int len; /* just for UMAC */
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000060} macs[] = {
Damien Millere45796f2007-06-11 14:01:42 +100061 { "hmac-sha1", SSH_EVP, EVP_sha1, 0, -1, -1 },
62 { "hmac-sha1-96", SSH_EVP, EVP_sha1, 96, -1, -1 },
Tim Ricea1226822011-08-16 17:29:01 -070063#ifdef HAVE_EVP_SHA256
Damien Miller20bd4532011-08-06 06:17:30 +100064 { "hmac-sha2-256", SSH_EVP, EVP_sha256, 0, -1, -1 },
Damien Miller20bd4532011-08-06 06:17:30 +100065 { "hmac-sha2-512", SSH_EVP, EVP_sha512, 0, -1, -1 },
Tim Ricea1226822011-08-16 17:29:01 -070066#endif
Damien Millere45796f2007-06-11 14:01:42 +100067 { "hmac-md5", SSH_EVP, EVP_md5, 0, -1, -1 },
68 { "hmac-md5-96", SSH_EVP, EVP_md5, 96, -1, -1 },
69 { "hmac-ripemd160", SSH_EVP, EVP_ripemd160, 0, -1, -1 },
70 { "hmac-ripemd160@openssh.com", SSH_EVP, EVP_ripemd160, 0, -1, -1 },
71 { "umac-64@openssh.com", SSH_UMAC, NULL, 0, 128, 64 },
Darren Tucker427e4092012-10-05 11:02:39 +100072 { "umac-128@openssh.com", SSH_UMAC128, NULL, 0, 128, 128 },
Damien Millere45796f2007-06-11 14:01:42 +100073 { NULL, 0, NULL, 0, -1, -1 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000074};
75
Damien Millere45796f2007-06-11 14:01:42 +100076static void
77mac_setup_by_id(Mac *mac, int which)
78{
79 int evp_len;
80 mac->type = macs[which].type;
81 if (mac->type == SSH_EVP) {
82 mac->evp_md = (*macs[which].mdfunc)();
83 if ((evp_len = EVP_MD_size(mac->evp_md)) <= 0)
84 fatal("mac %s len %d", mac->name, evp_len);
85 mac->key_len = mac->mac_len = (u_int)evp_len;
86 } else {
87 mac->mac_len = macs[which].len / 8;
88 mac->key_len = macs[which].key_len / 8;
89 mac->umac_ctx = NULL;
90 }
91 if (macs[which].truncatebits != 0)
92 mac->mac_len = macs[which].truncatebits / 8;
93}
94
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000095int
Darren Tucker5f3d5be2007-06-05 18:30:18 +100096mac_setup(Mac *mac, char *name)
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000097{
Damien Millere45796f2007-06-11 14:01:42 +100098 int i;
Damien Millereccb9de2005-06-17 12:59:34 +100099
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000100 for (i = 0; macs[i].name; i++) {
101 if (strcmp(name, macs[i].name) == 0) {
Damien Millere45796f2007-06-11 14:01:42 +1000102 if (mac != NULL)
103 mac_setup_by_id(mac, i);
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000104 debug2("mac_setup: found %s", name);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000105 return (0);
106 }
107 }
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000108 debug2("mac_setup: unknown %s", name);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000109 return (-1);
110}
111
Damien Millere45796f2007-06-11 14:01:42 +1000112int
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000113mac_init(Mac *mac)
114{
115 if (mac->key == NULL)
116 fatal("mac_init: no key");
Damien Millere45796f2007-06-11 14:01:42 +1000117 switch (mac->type) {
118 case SSH_EVP:
119 if (mac->evp_md == NULL)
120 return -1;
Damien Millerd0e582c2011-12-19 10:51:39 +1100121 HMAC_CTX_init(&mac->evp_ctx);
Damien Millere45796f2007-06-11 14:01:42 +1000122 HMAC_Init(&mac->evp_ctx, mac->key, mac->key_len, mac->evp_md);
123 return 0;
124 case SSH_UMAC:
125 mac->umac_ctx = umac_new(mac->key);
126 return 0;
Darren Tucker427e4092012-10-05 11:02:39 +1000127 case SSH_UMAC128:
128 mac->umac_ctx = umac128_new(mac->key);
129 return 0;
Damien Millere45796f2007-06-11 14:01:42 +1000130 default:
131 return -1;
132 }
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000133}
134
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000135u_char *
136mac_compute(Mac *mac, u_int32_t seqno, u_char *data, int datalen)
137{
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000138 static u_char m[EVP_MAX_MD_SIZE];
Damien Millere45796f2007-06-11 14:01:42 +1000139 u_char b[4], nonce[8];
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000140
Damien Millereccb9de2005-06-17 12:59:34 +1000141 if (mac->mac_len > sizeof(m))
Damien Millere45796f2007-06-11 14:01:42 +1000142 fatal("mac_compute: mac too long %u %lu",
Darren Tuckerc7e030f2008-06-13 10:58:50 +1000143 mac->mac_len, (u_long)sizeof(m));
Damien Millere45796f2007-06-11 14:01:42 +1000144
145 switch (mac->type) {
146 case SSH_EVP:
147 put_u32(b, seqno);
148 /* reset HMAC context */
149 HMAC_Init(&mac->evp_ctx, NULL, 0, NULL);
150 HMAC_Update(&mac->evp_ctx, b, sizeof(b));
151 HMAC_Update(&mac->evp_ctx, data, datalen);
152 HMAC_Final(&mac->evp_ctx, m, NULL);
153 break;
154 case SSH_UMAC:
155 put_u64(nonce, seqno);
156 umac_update(mac->umac_ctx, data, datalen);
157 umac_final(mac->umac_ctx, m, nonce);
158 break;
Darren Tucker427e4092012-10-05 11:02:39 +1000159 case SSH_UMAC128:
160 put_u64(nonce, seqno);
161 umac128_update(mac->umac_ctx, data, datalen);
162 umac128_final(mac->umac_ctx, m, nonce);
163 break;
Damien Millere45796f2007-06-11 14:01:42 +1000164 default:
165 fatal("mac_compute: unknown MAC type");
166 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000167 return (m);
168}
169
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000170void
171mac_clear(Mac *mac)
172{
Damien Millere45796f2007-06-11 14:01:42 +1000173 if (mac->type == SSH_UMAC) {
174 if (mac->umac_ctx != NULL)
175 umac_delete(mac->umac_ctx);
Darren Tucker427e4092012-10-05 11:02:39 +1000176 } else if (mac->type == SSH_UMAC128) {
177 if (mac->umac_ctx != NULL)
178 umac128_delete(mac->umac_ctx);
Damien Millere45796f2007-06-11 14:01:42 +1000179 } else if (mac->evp_md != NULL)
180 HMAC_cleanup(&mac->evp_ctx);
181 mac->evp_md = NULL;
182 mac->umac_ctx = NULL;
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000183}
184
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000185/* XXX copied from ciphers_valid */
186#define MAC_SEP ","
187int
188mac_valid(const char *names)
189{
190 char *maclist, *cp, *p;
191
192 if (names == NULL || strcmp(names, "") == 0)
193 return (0);
194 maclist = cp = xstrdup(names);
195 for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +1100196 (p = strsep(&cp, MAC_SEP))) {
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000197 if (mac_setup(NULL, p) < 0) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000198 debug("bad mac %s [%s]", p, names);
199 xfree(maclist);
200 return (0);
201 } else {
202 debug3("mac ok: %s [%s]", p, names);
203 }
204 }
205 debug3("macs ok: [%s]", names);
206 xfree(maclist);
207 return (1);
208}