naddy@openbsd.org | ddef999 | 2015-01-15 18:32:54 +0000 | [diff] [blame] | 1 | /* $OpenBSD: mac.c,v 1.32 2015/01/15 18:32:54 naddy Exp $ */ |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 2 | /* |
| 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 Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 27 | |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 28 | #include <sys/types.h> |
| 29 | |
Damien Miller | e3476ed | 2006-07-24 14:13:33 +1000 | [diff] [blame] | 30 | #include <string.h> |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 31 | #include <stdio.h> |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 32 | |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 33 | #include "digest.h" |
| 34 | #include "hmac.h" |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 35 | #include "umac.h" |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 36 | #include "mac.h" |
| 37 | #include "misc.h" |
| 38 | #include "ssherr.h" |
| 39 | #include "sshbuf.h" |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 40 | |
Darren Tucker | e9b3ad7 | 2012-01-17 14:03:34 +1100 | [diff] [blame] | 41 | #include "openbsd-compat/openssl-compat.h" |
| 42 | |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 43 | #define SSH_DIGEST 1 /* SSH_DIGEST_XXX */ |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 44 | #define SSH_UMAC 2 /* UMAC (not integrated with OpenSSL) */ |
Darren Tucker | 427e409 | 2012-10-05 11:02:39 +1000 | [diff] [blame] | 45 | #define SSH_UMAC128 3 |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 46 | |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 47 | struct macalg { |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 48 | char *name; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 49 | int type; |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 50 | int alg; |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 51 | int truncatebits; /* truncate digest if != 0 */ |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 52 | int key_len; /* just for UMAC */ |
| 53 | int len; /* just for UMAC */ |
Damien Miller | 37834af | 2012-12-12 11:00:37 +1100 | [diff] [blame] | 54 | int etm; /* Encrypt-then-MAC */ |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | static const struct macalg macs[] = { |
Damien Miller | af43a7a | 2012-12-12 10:46:31 +1100 | [diff] [blame] | 58 | /* Encrypt-and-MAC (encrypt-and-authenticate) variants */ |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 59 | { "hmac-sha1", SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 0 }, |
| 60 | { "hmac-sha1-96", SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 0 }, |
Tim Rice | a122682 | 2011-08-16 17:29:01 -0700 | [diff] [blame] | 61 | #ifdef HAVE_EVP_SHA256 |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 62 | { "hmac-sha2-256", SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 0 }, |
| 63 | { "hmac-sha2-512", SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 0 }, |
Tim Rice | a122682 | 2011-08-16 17:29:01 -0700 | [diff] [blame] | 64 | #endif |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 65 | { "hmac-md5", SSH_DIGEST, SSH_DIGEST_MD5, 0, 0, 0, 0 }, |
| 66 | { "hmac-md5-96", SSH_DIGEST, SSH_DIGEST_MD5, 96, 0, 0, 0 }, |
| 67 | { "hmac-ripemd160", SSH_DIGEST, SSH_DIGEST_RIPEMD160, 0, 0, 0, 0 }, |
| 68 | { "hmac-ripemd160@openssh.com", SSH_DIGEST, SSH_DIGEST_RIPEMD160, 0, 0, 0, 0 }, |
| 69 | { "umac-64@openssh.com", SSH_UMAC, 0, 0, 128, 64, 0 }, |
| 70 | { "umac-128@openssh.com", SSH_UMAC128, 0, 0, 128, 128, 0 }, |
Damien Miller | af43a7a | 2012-12-12 10:46:31 +1100 | [diff] [blame] | 71 | |
| 72 | /* Encrypt-then-MAC variants */ |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 73 | { "hmac-sha1-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 1 }, |
| 74 | { "hmac-sha1-96-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 1 }, |
Damien Miller | af43a7a | 2012-12-12 10:46:31 +1100 | [diff] [blame] | 75 | #ifdef HAVE_EVP_SHA256 |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 76 | { "hmac-sha2-256-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 1 }, |
| 77 | { "hmac-sha2-512-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 1 }, |
Damien Miller | af43a7a | 2012-12-12 10:46:31 +1100 | [diff] [blame] | 78 | #endif |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 79 | { "hmac-md5-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_MD5, 0, 0, 0, 1 }, |
| 80 | { "hmac-md5-96-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_MD5, 96, 0, 0, 1 }, |
| 81 | { "hmac-ripemd160-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_RIPEMD160, 0, 0, 0, 1 }, |
| 82 | { "umac-64-etm@openssh.com", SSH_UMAC, 0, 0, 128, 64, 1 }, |
| 83 | { "umac-128-etm@openssh.com", SSH_UMAC128, 0, 0, 128, 128, 1 }, |
Damien Miller | af43a7a | 2012-12-12 10:46:31 +1100 | [diff] [blame] | 84 | |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 85 | { NULL, 0, 0, 0, 0, 0, 0 } |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 86 | }; |
| 87 | |
Damien Miller | 690d989 | 2013-11-08 12:16:49 +1100 | [diff] [blame] | 88 | /* Returns a list of supported MACs separated by the specified char. */ |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 89 | char * |
Damien Miller | 690d989 | 2013-11-08 12:16:49 +1100 | [diff] [blame] | 90 | mac_alg_list(char sep) |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 91 | { |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 92 | char *ret = NULL, *tmp; |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 93 | size_t nlen, rlen = 0; |
| 94 | const struct macalg *m; |
| 95 | |
| 96 | for (m = macs; m->name != NULL; m++) { |
| 97 | if (ret != NULL) |
Damien Miller | 690d989 | 2013-11-08 12:16:49 +1100 | [diff] [blame] | 98 | ret[rlen++] = sep; |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 99 | nlen = strlen(m->name); |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 100 | if ((tmp = realloc(ret, rlen + nlen + 2)) == NULL) { |
| 101 | free(ret); |
| 102 | return NULL; |
| 103 | } |
| 104 | ret = tmp; |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 105 | memcpy(ret + rlen, m->name, nlen + 1); |
| 106 | rlen += nlen; |
| 107 | } |
| 108 | return ret; |
| 109 | } |
| 110 | |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 111 | static int |
| 112 | mac_setup_by_alg(struct sshmac *mac, const struct macalg *macalg) |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 113 | { |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 114 | mac->type = macalg->type; |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 115 | if (mac->type == SSH_DIGEST) { |
| 116 | if ((mac->hmac_ctx = ssh_hmac_start(macalg->alg)) == NULL) |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 117 | return SSH_ERR_ALLOC_FAIL; |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 118 | mac->key_len = mac->mac_len = ssh_hmac_bytes(macalg->alg); |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 119 | } else { |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 120 | mac->mac_len = macalg->len / 8; |
| 121 | mac->key_len = macalg->key_len / 8; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 122 | mac->umac_ctx = NULL; |
| 123 | } |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 124 | if (macalg->truncatebits != 0) |
| 125 | mac->mac_len = macalg->truncatebits / 8; |
| 126 | mac->etm = macalg->etm; |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 127 | return 0; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 128 | } |
| 129 | |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 130 | int |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 131 | mac_setup(struct sshmac *mac, char *name) |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 132 | { |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 133 | const struct macalg *m; |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 134 | |
Damien Miller | ea11119 | 2013-04-23 19:24:32 +1000 | [diff] [blame] | 135 | for (m = macs; m->name != NULL; m++) { |
| 136 | if (strcmp(name, m->name) != 0) |
| 137 | continue; |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 138 | if (mac != NULL) |
| 139 | return mac_setup_by_alg(mac, m); |
| 140 | return 0; |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 141 | } |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 142 | return SSH_ERR_INVALID_ARGUMENT; |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 145 | int |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 146 | mac_init(struct sshmac *mac) |
Darren Tucker | 5f3d5be | 2007-06-05 18:30:18 +1000 | [diff] [blame] | 147 | { |
| 148 | if (mac->key == NULL) |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 149 | return SSH_ERR_INVALID_ARGUMENT; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 150 | switch (mac->type) { |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 151 | case SSH_DIGEST: |
| 152 | if (mac->hmac_ctx == NULL || |
| 153 | ssh_hmac_init(mac->hmac_ctx, mac->key, mac->key_len) < 0) |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 154 | return SSH_ERR_INVALID_ARGUMENT; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 155 | return 0; |
| 156 | case SSH_UMAC: |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 157 | if ((mac->umac_ctx = umac_new(mac->key)) == NULL) |
| 158 | return SSH_ERR_ALLOC_FAIL; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 159 | return 0; |
Darren Tucker | 427e409 | 2012-10-05 11:02:39 +1000 | [diff] [blame] | 160 | case SSH_UMAC128: |
naddy@openbsd.org | ddef999 | 2015-01-15 18:32:54 +0000 | [diff] [blame] | 161 | if ((mac->umac_ctx = umac128_new(mac->key)) == NULL) |
| 162 | return SSH_ERR_ALLOC_FAIL; |
Darren Tucker | 427e409 | 2012-10-05 11:02:39 +1000 | [diff] [blame] | 163 | return 0; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 164 | default: |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 165 | return SSH_ERR_INVALID_ARGUMENT; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 166 | } |
Darren Tucker | 5f3d5be | 2007-06-05 18:30:18 +1000 | [diff] [blame] | 167 | } |
| 168 | |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 169 | int |
| 170 | mac_compute(struct sshmac *mac, u_int32_t seqno, const u_char *data, int datalen, |
| 171 | u_char *digest, size_t dlen) |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 172 | { |
Darren Tucker | 4ac66af | 2013-06-06 08:12:37 +1000 | [diff] [blame] | 173 | static union { |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 174 | u_char m[SSH_DIGEST_MAX_LENGTH]; |
Darren Tucker | 4ac66af | 2013-06-06 08:12:37 +1000 | [diff] [blame] | 175 | u_int64_t for_align; |
| 176 | } u; |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 177 | u_char b[4]; |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 178 | u_char nonce[8]; |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 179 | |
Darren Tucker | 4ac66af | 2013-06-06 08:12:37 +1000 | [diff] [blame] | 180 | if (mac->mac_len > sizeof(u)) |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 181 | return SSH_ERR_INTERNAL_ERROR; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 182 | |
| 183 | switch (mac->type) { |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 184 | case SSH_DIGEST: |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 185 | put_u32(b, seqno); |
| 186 | /* reset HMAC context */ |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 187 | if (ssh_hmac_init(mac->hmac_ctx, NULL, 0) < 0 || |
| 188 | ssh_hmac_update(mac->hmac_ctx, b, sizeof(b)) < 0 || |
| 189 | ssh_hmac_update(mac->hmac_ctx, data, datalen) < 0 || |
| 190 | ssh_hmac_final(mac->hmac_ctx, u.m, sizeof(u.m)) < 0) |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 191 | return SSH_ERR_LIBCRYPTO_ERROR; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 192 | break; |
| 193 | case SSH_UMAC: |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 194 | POKE_U64(nonce, seqno); |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 195 | umac_update(mac->umac_ctx, data, datalen); |
Darren Tucker | 4ac66af | 2013-06-06 08:12:37 +1000 | [diff] [blame] | 196 | umac_final(mac->umac_ctx, u.m, nonce); |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 197 | break; |
Darren Tucker | 427e409 | 2012-10-05 11:02:39 +1000 | [diff] [blame] | 198 | case SSH_UMAC128: |
| 199 | put_u64(nonce, seqno); |
| 200 | umac128_update(mac->umac_ctx, data, datalen); |
Darren Tucker | 4ac66af | 2013-06-06 08:12:37 +1000 | [diff] [blame] | 201 | umac128_final(mac->umac_ctx, u.m, nonce); |
Darren Tucker | 427e409 | 2012-10-05 11:02:39 +1000 | [diff] [blame] | 202 | break; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 203 | default: |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 204 | return SSH_ERR_INVALID_ARGUMENT; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 205 | } |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 206 | if (digest != NULL) { |
| 207 | if (dlen > mac->mac_len) |
| 208 | dlen = mac->mac_len; |
| 209 | memcpy(digest, u.m, dlen); |
| 210 | } |
| 211 | return 0; |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Darren Tucker | 5f3d5be | 2007-06-05 18:30:18 +1000 | [diff] [blame] | 214 | void |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 215 | mac_clear(struct sshmac *mac) |
Darren Tucker | 5f3d5be | 2007-06-05 18:30:18 +1000 | [diff] [blame] | 216 | { |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 217 | if (mac->type == SSH_UMAC) { |
| 218 | if (mac->umac_ctx != NULL) |
| 219 | umac_delete(mac->umac_ctx); |
Darren Tucker | 427e409 | 2012-10-05 11:02:39 +1000 | [diff] [blame] | 220 | } else if (mac->type == SSH_UMAC128) { |
| 221 | if (mac->umac_ctx != NULL) |
| 222 | umac128_delete(mac->umac_ctx); |
Damien Miller | 4e8d937 | 2014-02-04 11:02:42 +1100 | [diff] [blame] | 223 | } else if (mac->hmac_ctx != NULL) |
| 224 | ssh_hmac_free(mac->hmac_ctx); |
| 225 | mac->hmac_ctx = NULL; |
Damien Miller | e45796f | 2007-06-11 14:01:42 +1000 | [diff] [blame] | 226 | mac->umac_ctx = NULL; |
Darren Tucker | 5f3d5be | 2007-06-05 18:30:18 +1000 | [diff] [blame] | 227 | } |
| 228 | |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 229 | /* XXX copied from ciphers_valid */ |
| 230 | #define MAC_SEP "," |
| 231 | int |
| 232 | mac_valid(const char *names) |
| 233 | { |
| 234 | char *maclist, *cp, *p; |
| 235 | |
| 236 | if (names == NULL || strcmp(names, "") == 0) |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 237 | return 0; |
| 238 | if ((maclist = cp = strdup(names)) == NULL) |
| 239 | return 0; |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 240 | for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0'; |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 241 | (p = strsep(&cp, MAC_SEP))) { |
Darren Tucker | 5f3d5be | 2007-06-05 18:30:18 +1000 | [diff] [blame] | 242 | if (mac_setup(NULL, p) < 0) { |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 243 | free(maclist); |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 244 | return 0; |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 245 | } |
| 246 | } |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 247 | free(maclist); |
markus@openbsd.org | 128343b | 2015-01-13 19:31:40 +0000 | [diff] [blame] | 248 | return 1; |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 249 | } |