Coverage Report

Created: 2026-05-30 06:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssh/mac.c
Line
Count
Source
1
/* $OpenBSD: mac.c,v 1.39 2026/05/13 05:58:58 djm Exp $ */
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"
27
28
#include <sys/types.h>
29
30
#include <stdio.h>
31
#include <stdlib.h>
32
#include <string.h>
33
34
#include "digest.h"
35
#include "hmac.h"
36
#include "umac.h"
37
#include "mac.h"
38
#include "misc.h"
39
#include "ssherr.h"
40
#include "sshbuf.h"
41
42
#include "openbsd-compat/openssl-compat.h"
43
44
93.1k
#define SSH_DIGEST  1  /* SSH_DIGEST_XXX */
45
84.5k
#define SSH_UMAC  2  /* UMAC (not integrated with OpenSSL) */
46
86.8k
#define SSH_UMAC128 3
47
48
struct macalg {
49
  char    *name;
50
  int   type;
51
  int   alg;
52
  int   truncatebits; /* truncate digest if != 0 */
53
  int   key_len;  /* just for UMAC */
54
  int   len;    /* just for UMAC */
55
  int   etm;    /* Encrypt-then-MAC */
56
};
57
58
static const struct macalg macs[] = {
59
  /* Encrypt-and-MAC (encrypt-and-authenticate) variants */
60
  { "hmac-sha1",        SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 0 },
61
  { "hmac-sha1-96",     SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 0 },
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 },
64
  { "hmac-md5",       SSH_DIGEST, SSH_DIGEST_MD5, 0, 0, 0, 0 },
65
  { "hmac-md5-96",      SSH_DIGEST, SSH_DIGEST_MD5, 96, 0, 0, 0 },
66
  { "umac-64@openssh.com",    SSH_UMAC, 0, 0, 128, 64, 0 },
67
  { "umac-128@openssh.com",   SSH_UMAC128, 0, 0, 128, 128, 0 },
68
69
  /* Encrypt-then-MAC variants */
70
  { "hmac-sha1-etm@openssh.com",    SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 1 },
71
  { "hmac-sha1-96-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 1 },
72
  { "hmac-sha2-256-etm@openssh.com",  SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 1 },
73
  { "hmac-sha2-512-etm@openssh.com",  SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 1 },
74
  { "hmac-md5-etm@openssh.com",   SSH_DIGEST, SSH_DIGEST_MD5, 0, 0, 0, 1 },
75
  { "hmac-md5-96-etm@openssh.com",  SSH_DIGEST, SSH_DIGEST_MD5, 96, 0, 0, 1 },
76
  { "umac-64-etm@openssh.com",    SSH_UMAC, 0, 0, 128, 64, 1 },
77
  { "umac-128-etm@openssh.com",   SSH_UMAC128, 0, 0, 128, 128, 1 },
78
79
  { NULL,         0, 0, 0, 0, 0, 0 }
80
};
81
82
/* Returns a list of supported MACs separated by the specified char. */
83
char *
84
mac_alg_list(char sep)
85
0
{
86
0
  char *ret = NULL;
87
0
  const struct macalg *m;
88
0
  char sep_str[2] = {sep, '\0'};
89
90
0
  for (m = macs; m->name != NULL; m++)
91
0
    xextendf(&ret, sep_str, "%s", m->name);
92
93
0
  return ret;
94
0
}
95
96
static int
97
mac_setup_by_alg(struct sshmac *mac, const struct macalg *macalg)
98
27.9k
{
99
27.9k
  mac->type = macalg->type;
100
27.9k
  if (mac->type == SSH_DIGEST) {
101
4.78k
    if ((mac->hmac_ctx = ssh_hmac_start(macalg->alg)) == NULL)
102
0
      return SSH_ERR_ALLOC_FAIL;
103
4.78k
    mac->key_len = mac->mac_len = ssh_hmac_bytes(macalg->alg);
104
23.1k
  } else {
105
23.1k
    mac->mac_len = macalg->len / 8;
106
23.1k
    mac->key_len = macalg->key_len / 8;
107
23.1k
    mac->umac_ctx = NULL;
108
23.1k
  }
109
27.9k
  if (macalg->truncatebits != 0)
110
0
    mac->mac_len = macalg->truncatebits / 8;
111
27.9k
  mac->etm = macalg->etm;
112
27.9k
  return 0;
113
27.9k
}
114
115
int
116
mac_setup(struct sshmac *mac, char *name)
117
27.9k
{
118
27.9k
  const struct macalg *m;
119
120
352k
  for (m = macs; m->name != NULL; m++) {
121
352k
    if (strcmp(name, m->name) != 0)
122
324k
      continue;
123
27.9k
    if (mac != NULL)
124
27.9k
      return mac_setup_by_alg(mac, m);
125
0
    return 0;
126
27.9k
  }
127
0
  return SSH_ERR_INVALID_ARGUMENT;
128
27.9k
}
129
130
int
131
mac_init(struct sshmac *mac)
132
1.33k
{
133
1.33k
  if (mac->key == NULL)
134
0
    return SSH_ERR_INVALID_ARGUMENT;
135
1.33k
  switch (mac->type) {
136
284
  case SSH_DIGEST:
137
284
    if (mac->hmac_ctx == NULL ||
138
284
        ssh_hmac_init(mac->hmac_ctx, mac->key, mac->key_len) < 0)
139
0
      return SSH_ERR_INVALID_ARGUMENT;
140
284
    return 0;
141
495
  case SSH_UMAC:
142
495
    if ((mac->umac_ctx = umac_new(mac->key)) == NULL)
143
0
      return SSH_ERR_ALLOC_FAIL;
144
495
    return 0;
145
553
  case SSH_UMAC128:
146
553
    if ((mac->umac_ctx = umac128_new(mac->key)) == NULL)
147
0
      return SSH_ERR_ALLOC_FAIL;
148
553
    return 0;
149
0
  default:
150
0
    return SSH_ERR_INVALID_ARGUMENT;
151
1.33k
  }
152
1.33k
}
153
154
int
155
mac_compute(struct sshmac *mac, uint32_t seqno,
156
    const u_char *data, int datalen,
157
    u_char *digest, size_t dlen)
158
200k
{
159
200k
  static union {
160
200k
    u_char m[SSH_DIGEST_MAX_LENGTH];
161
200k
    uint64_t for_align;
162
200k
  } u;
163
200k
  u_char b[4];
164
200k
  u_char nonce[8];
165
166
200k
  if (mac->mac_len > sizeof(u))
167
0
    return SSH_ERR_INTERNAL_ERROR;
168
169
200k
  switch (mac->type) {
170
64.9k
  case SSH_DIGEST:
171
64.9k
    put_u32(b, seqno);
172
    /* reset HMAC context */
173
64.9k
    if (ssh_hmac_init(mac->hmac_ctx, NULL, 0) < 0 ||
174
64.9k
        ssh_hmac_update(mac->hmac_ctx, b, sizeof(b)) < 0 ||
175
64.9k
        ssh_hmac_update(mac->hmac_ctx, data, datalen) < 0 ||
176
64.9k
        ssh_hmac_final(mac->hmac_ctx, u.m, sizeof(u.m)) < 0)
177
0
      return SSH_ERR_LIBCRYPTO_ERROR;
178
64.9k
    break;
179
64.9k
  case SSH_UMAC:
180
56.0k
    POKE_U64(nonce, seqno);
181
56.0k
    umac_update(mac->umac_ctx, data, datalen);
182
56.0k
    umac_final(mac->umac_ctx, u.m, nonce);
183
56.0k
    break;
184
79.0k
  case SSH_UMAC128:
185
79.0k
    put_u64(nonce, seqno);
186
79.0k
    umac128_update(mac->umac_ctx, data, datalen);
187
79.0k
    umac128_final(mac->umac_ctx, u.m, nonce);
188
79.0k
    break;
189
0
  default:
190
0
    return SSH_ERR_INVALID_ARGUMENT;
191
200k
  }
192
200k
  if (digest != NULL) {
193
200k
    if (dlen > mac->mac_len)
194
137k
      dlen = mac->mac_len;
195
200k
    memcpy(digest, u.m, dlen);
196
200k
  }
197
200k
  return 0;
198
200k
}
199
200
int
201
mac_check(struct sshmac *mac, uint32_t seqno,
202
    const u_char *data, size_t dlen,
203
    const u_char *theirmac, size_t mlen)
204
339
{
205
339
  u_char ourmac[SSH_DIGEST_MAX_LENGTH];
206
339
  int r;
207
208
339
  if (mac->mac_len > mlen)
209
0
    return SSH_ERR_INVALID_ARGUMENT;
210
339
  if ((r = mac_compute(mac, seqno, data, dlen,
211
339
      ourmac, sizeof(ourmac))) != 0)
212
0
    return r;
213
339
  if (timingsafe_bcmp(ourmac, theirmac, mac->mac_len) != 0)
214
339
    return SSH_ERR_MAC_INVALID;
215
0
  return 0;
216
339
}
217
218
void
219
mac_clear(struct sshmac *mac)
220
28.0k
{
221
28.0k
  if (mac->type == SSH_UMAC) {
222
20.8k
    if (mac->umac_ctx != NULL)
223
495
      umac_delete(mac->umac_ctx);
224
20.8k
  } else if (mac->type == SSH_UMAC128) {
225
2.36k
    if (mac->umac_ctx != NULL)
226
553
      umac128_delete(mac->umac_ctx);
227
4.81k
  } else if (mac->hmac_ctx != NULL)
228
4.78k
    ssh_hmac_free(mac->hmac_ctx);
229
28.0k
  mac->hmac_ctx = NULL;
230
28.0k
  mac->umac_ctx = NULL;
231
28.0k
}
232
233
/* XXX copied from ciphers_valid */
234
0
#define MAC_SEP ","
235
int
236
mac_valid(const char *names)
237
0
{
238
0
  char *maclist, *cp, *p;
239
0
  int found = 0;
240
241
0
  if (names == NULL || strcmp(names, "") == 0)
242
0
    return 0;
243
0
  if ((maclist = cp = strdup(names)) == NULL)
244
0
    return 0;
245
0
  for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0';
246
0
      (p = strsep(&cp, MAC_SEP))) {
247
0
    if (mac_setup(NULL, p) < 0) {
248
0
      free(maclist);
249
0
      return 0;
250
0
    } else
251
0
      found = 1;
252
0
  }
253
0
  free(maclist);
254
0
  return found;
255
0
}