freebsd-src/crypto/openssh/mac.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

263 lines
7.2 KiB
C
Raw Normal View History

2021-02-14 21:00:25 +00:00
/* $OpenBSD: mac.c,v 1.35 2019/09/06 04:53:27 djm Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "includes.h"
2006-09-30 13:29:51 +00:00
#include <sys/types.h>
2021-02-14 21:00:25 +00:00
#include <stdlib.h>
2006-09-30 13:29:51 +00:00
#include <string.h>
2015-07-02 13:15:34 +00:00
#include <stdio.h>
2014-03-22 15:23:38 +00:00
#include "digest.h"
#include "hmac.h"
#include "umac.h"
2015-07-02 13:15:34 +00:00
#include "mac.h"
#include "misc.h"
#include "ssherr.h"
#include "sshbuf.h"
2012-08-29 15:46:01 +00:00
#include "openbsd-compat/openssl-compat.h"
2014-03-22 15:23:38 +00:00
#define SSH_DIGEST 1 /* SSH_DIGEST_XXX */
#define SSH_UMAC 2 /* UMAC (not integrated with OpenSSL) */
2013-03-22 11:19:48 +00:00
#define SSH_UMAC128 3
2013-09-18 17:27:38 +00:00
struct macalg {
char *name;
int type;
2014-03-22 15:23:38 +00:00
int alg;
int truncatebits; /* truncate digest if != 0 */
int key_len; /* just for UMAC */
int len; /* just for UMAC */
2013-03-22 11:19:48 +00:00
int etm; /* Encrypt-then-MAC */
2013-09-18 17:27:38 +00:00
};
static const struct macalg macs[] = {
2013-03-22 11:19:48 +00:00
/* Encrypt-and-MAC (encrypt-and-authenticate) variants */
2014-03-22 15:23:38 +00:00
{ "hmac-sha1", SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 0 },
{ "hmac-sha1-96", SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 0 },
{ "hmac-sha2-256", SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 0 },
{ "hmac-sha2-512", SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 0 },
{ "hmac-md5", SSH_DIGEST, SSH_DIGEST_MD5, 0, 0, 0, 0 },
{ "hmac-md5-96", SSH_DIGEST, SSH_DIGEST_MD5, 96, 0, 0, 0 },
{ "umac-64@openssh.com", SSH_UMAC, 0, 0, 128, 64, 0 },
{ "umac-128@openssh.com", SSH_UMAC128, 0, 0, 128, 128, 0 },
2013-03-22 11:19:48 +00:00
/* Encrypt-then-MAC variants */
2014-03-22 15:23:38 +00:00
{ "hmac-sha1-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 1 },
{ "hmac-sha1-96-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 1 },
{ "hmac-sha2-256-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 1 },
{ "hmac-sha2-512-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 1 },
{ "hmac-md5-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_MD5, 0, 0, 0, 1 },
{ "hmac-md5-96-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_MD5, 96, 0, 0, 1 },
{ "umac-64-etm@openssh.com", SSH_UMAC, 0, 0, 128, 64, 1 },
{ "umac-128-etm@openssh.com", SSH_UMAC128, 0, 0, 128, 128, 1 },
2013-03-22 11:19:48 +00:00
2014-03-22 15:23:38 +00:00
{ NULL, 0, 0, 0, 0, 0, 0 }
};
2014-01-30 10:56:49 +00:00
/* Returns a list of supported MACs separated by the specified char. */
2013-09-18 17:27:38 +00:00
char *
2014-01-30 10:56:49 +00:00
mac_alg_list(char sep)
2013-09-18 17:27:38 +00:00
{
2015-07-02 13:15:34 +00:00
char *ret = NULL, *tmp;
2013-09-18 17:27:38 +00:00
size_t nlen, rlen = 0;
const struct macalg *m;
for (m = macs; m->name != NULL; m++) {
if (ret != NULL)
2014-01-30 10:56:49 +00:00
ret[rlen++] = sep;
2013-09-18 17:27:38 +00:00
nlen = strlen(m->name);
2015-07-02 13:15:34 +00:00
if ((tmp = realloc(ret, rlen + nlen + 2)) == NULL) {
free(ret);
return NULL;
}
ret = tmp;
2013-09-18 17:27:38 +00:00
memcpy(ret + rlen, m->name, nlen + 1);
rlen += nlen;
}
return ret;
}
2015-07-02 13:15:34 +00:00
static int
mac_setup_by_alg(struct sshmac *mac, const struct macalg *macalg)
{
2013-09-18 17:27:38 +00:00
mac->type = macalg->type;
2014-03-22 15:23:38 +00:00
if (mac->type == SSH_DIGEST) {
if ((mac->hmac_ctx = ssh_hmac_start(macalg->alg)) == NULL)
2015-07-02 13:15:34 +00:00
return SSH_ERR_ALLOC_FAIL;
2014-03-22 15:23:38 +00:00
mac->key_len = mac->mac_len = ssh_hmac_bytes(macalg->alg);
} else {
2013-09-18 17:27:38 +00:00
mac->mac_len = macalg->len / 8;
mac->key_len = macalg->key_len / 8;
mac->umac_ctx = NULL;
}
2013-09-18 17:27:38 +00:00
if (macalg->truncatebits != 0)
mac->mac_len = macalg->truncatebits / 8;
mac->etm = macalg->etm;
2015-07-02 13:15:34 +00:00
return 0;
}
int
2015-07-02 13:15:34 +00:00
mac_setup(struct sshmac *mac, char *name)
{
2013-09-18 17:27:38 +00:00
const struct macalg *m;
for (m = macs; m->name != NULL; m++) {
if (strcmp(name, m->name) != 0)
continue;
2015-07-02 13:15:34 +00:00
if (mac != NULL)
return mac_setup_by_alg(mac, m);
return 0;
}
2015-07-02 13:15:34 +00:00
return SSH_ERR_INVALID_ARGUMENT;
}
int
2015-07-02 13:15:34 +00:00
mac_init(struct sshmac *mac)
{
if (mac->key == NULL)
2015-07-02 13:15:34 +00:00
return SSH_ERR_INVALID_ARGUMENT;
switch (mac->type) {
2014-03-22 15:23:38 +00:00
case SSH_DIGEST:
if (mac->hmac_ctx == NULL ||
ssh_hmac_init(mac->hmac_ctx, mac->key, mac->key_len) < 0)
2015-07-02 13:15:34 +00:00
return SSH_ERR_INVALID_ARGUMENT;
return 0;
case SSH_UMAC:
2015-07-02 13:15:34 +00:00
if ((mac->umac_ctx = umac_new(mac->key)) == NULL)
return SSH_ERR_ALLOC_FAIL;
return 0;
2013-03-22 11:19:48 +00:00
case SSH_UMAC128:
2015-07-02 13:15:34 +00:00
if ((mac->umac_ctx = umac128_new(mac->key)) == NULL)
return SSH_ERR_ALLOC_FAIL;
2013-03-22 11:19:48 +00:00
return 0;
default:
2015-07-02 13:15:34 +00:00
return SSH_ERR_INVALID_ARGUMENT;
}
}
2015-07-02 13:15:34 +00:00
int
2017-01-31 12:29:48 +00:00
mac_compute(struct sshmac *mac, u_int32_t seqno,
const u_char *data, int datalen,
2015-07-02 13:15:34 +00:00
u_char *digest, size_t dlen)
{
2013-09-18 17:27:38 +00:00
static union {
2015-07-02 13:15:34 +00:00
u_char m[SSH_DIGEST_MAX_LENGTH];
2013-09-18 17:27:38 +00:00
u_int64_t for_align;
} u;
2015-01-05 16:09:55 +00:00
u_char b[4];
u_char nonce[8];
2013-09-18 17:27:38 +00:00
if (mac->mac_len > sizeof(u))
2015-07-02 13:15:34 +00:00
return SSH_ERR_INTERNAL_ERROR;
switch (mac->type) {
2014-03-22 15:23:38 +00:00
case SSH_DIGEST:
put_u32(b, seqno);
/* reset HMAC context */
2014-03-22 15:23:38 +00:00
if (ssh_hmac_init(mac->hmac_ctx, NULL, 0) < 0 ||
ssh_hmac_update(mac->hmac_ctx, b, sizeof(b)) < 0 ||
ssh_hmac_update(mac->hmac_ctx, data, datalen) < 0 ||
ssh_hmac_final(mac->hmac_ctx, u.m, sizeof(u.m)) < 0)
2015-07-02 13:15:34 +00:00
return SSH_ERR_LIBCRYPTO_ERROR;
break;
case SSH_UMAC:
2015-07-02 13:15:34 +00:00
POKE_U64(nonce, seqno);
umac_update(mac->umac_ctx, data, datalen);
2013-09-18 17:27:38 +00:00
umac_final(mac->umac_ctx, u.m, nonce);
break;
2013-03-22 11:19:48 +00:00
case SSH_UMAC128:
put_u64(nonce, seqno);
umac128_update(mac->umac_ctx, data, datalen);
2013-09-18 17:27:38 +00:00
umac128_final(mac->umac_ctx, u.m, nonce);
2013-03-22 11:19:48 +00:00
break;
default:
2015-07-02 13:15:34 +00:00
return SSH_ERR_INVALID_ARGUMENT;
}
2015-07-02 13:15:34 +00:00
if (digest != NULL) {
if (dlen > mac->mac_len)
dlen = mac->mac_len;
memcpy(digest, u.m, dlen);
}
return 0;
}
2017-01-31 12:29:48 +00:00
int
mac_check(struct sshmac *mac, u_int32_t seqno,
const u_char *data, size_t dlen,
const u_char *theirmac, size_t mlen)
{
u_char ourmac[SSH_DIGEST_MAX_LENGTH];
int r;
if (mac->mac_len > mlen)
return SSH_ERR_INVALID_ARGUMENT;
if ((r = mac_compute(mac, seqno, data, dlen,
ourmac, sizeof(ourmac))) != 0)
return r;
if (timingsafe_bcmp(ourmac, theirmac, mac->mac_len) != 0)
return SSH_ERR_MAC_INVALID;
return 0;
}
void
2015-07-02 13:15:34 +00:00
mac_clear(struct sshmac *mac)
{
if (mac->type == SSH_UMAC) {
if (mac->umac_ctx != NULL)
umac_delete(mac->umac_ctx);
2013-03-22 11:19:48 +00:00
} else if (mac->type == SSH_UMAC128) {
if (mac->umac_ctx != NULL)
umac128_delete(mac->umac_ctx);
2014-03-22 15:23:38 +00:00
} else if (mac->hmac_ctx != NULL)
ssh_hmac_free(mac->hmac_ctx);
mac->hmac_ctx = NULL;
mac->umac_ctx = NULL;
}
/* XXX copied from ciphers_valid */
#define MAC_SEP ","
int
mac_valid(const char *names)
{
char *maclist, *cp, *p;
if (names == NULL || strcmp(names, "") == 0)
2015-07-02 13:15:34 +00:00
return 0;
if ((maclist = cp = strdup(names)) == NULL)
return 0;
for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0';
2002-03-18 09:55:03 +00:00
(p = strsep(&cp, MAC_SEP))) {
if (mac_setup(NULL, p) < 0) {
2013-09-18 17:27:38 +00:00
free(maclist);
2015-07-02 13:15:34 +00:00
return 0;
}
}
2013-09-18 17:27:38 +00:00
free(maclist);
2015-07-02 13:15:34 +00:00
return 1;
}