Coverage Report

Created: 2025-06-20 06:24

/src/openssh/cipher.c
Line
Count
Source (jump to first uncovered line)
1
/* $OpenBSD: cipher.c,v 1.124 2025/03/14 09:49:49 tb Exp $ */
2
/*
3
 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4
 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5
 *                    All rights reserved
6
 *
7
 * As far as I am concerned, the code I have written for this software
8
 * can be used freely for any purpose.  Any derived versions of this
9
 * software must be clearly marked as such, and if the derived work is
10
 * incompatible with the protocol description in the RFC file, it must be
11
 * called by a name other than "ssh" or "Secure Shell".
12
 *
13
 *
14
 * Copyright (c) 1999 Niels Provos.  All rights reserved.
15
 * Copyright (c) 1999, 2000 Markus Friedl.  All rights reserved.
16
 *
17
 * Redistribution and use in source and binary forms, with or without
18
 * modification, are permitted provided that the following conditions
19
 * are met:
20
 * 1. Redistributions of source code must retain the above copyright
21
 *    notice, this list of conditions and the following disclaimer.
22
 * 2. Redistributions in binary form must reproduce the above copyright
23
 *    notice, this list of conditions and the following disclaimer in the
24
 *    documentation and/or other materials provided with the distribution.
25
 *
26
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
 */
37
38
#include "includes.h"
39
40
#include <sys/types.h>
41
42
#include <string.h>
43
#include <stdarg.h>
44
#include <stdio.h>
45
46
#include "cipher.h"
47
#include "misc.h"
48
#include "sshbuf.h"
49
#include "ssherr.h"
50
#include "digest.h"
51
52
#include "openbsd-compat/openssl-compat.h"
53
54
#ifndef WITH_OPENSSL
55
#define EVP_CIPHER_CTX void
56
#endif
57
58
struct sshcipher_ctx {
59
  int plaintext;
60
  int encrypt;
61
  EVP_CIPHER_CTX *evp;
62
  struct chachapoly_ctx *cp_ctx;
63
  struct aesctr_ctx ac_ctx; /* XXX union with evp? */
64
  const struct sshcipher *cipher;
65
};
66
67
struct sshcipher {
68
  char  *name;
69
  u_int block_size;
70
  u_int key_len;
71
  u_int iv_len;   /* defaults to block_size */
72
  u_int auth_len;
73
  u_int flags;
74
0
#define CFLAG_CBC   (1<<0)
75
0
#define CFLAG_CHACHAPOLY  (1<<1)
76
0
#define CFLAG_AESCTR    (1<<2)
77
0
#define CFLAG_NONE    (1<<3)
78
0
#define CFLAG_INTERNAL 0
79
#ifdef WITH_OPENSSL
80
  const EVP_CIPHER  *(*evptype)(void);
81
#else
82
  void  *ignored;
83
#endif
84
};
85
86
static const struct sshcipher ciphers[] = {
87
#ifdef WITH_OPENSSL
88
#ifndef OPENSSL_NO_DES
89
  { "3des-cbc",   8, 24, 0, 0, CFLAG_CBC, EVP_des_ede3_cbc },
90
#endif
91
  { "aes128-cbc",   16, 16, 0, 0, CFLAG_CBC, EVP_aes_128_cbc },
92
  { "aes192-cbc",   16, 24, 0, 0, CFLAG_CBC, EVP_aes_192_cbc },
93
  { "aes256-cbc",   16, 32, 0, 0, CFLAG_CBC, EVP_aes_256_cbc },
94
  { "aes128-ctr",   16, 16, 0, 0, 0, EVP_aes_128_ctr },
95
  { "aes192-ctr",   16, 24, 0, 0, 0, EVP_aes_192_ctr },
96
  { "aes256-ctr",   16, 32, 0, 0, 0, EVP_aes_256_ctr },
97
  { "aes128-gcm@openssh.com",
98
        16, 16, 12, 16, 0, EVP_aes_128_gcm },
99
  { "aes256-gcm@openssh.com",
100
        16, 32, 12, 16, 0, EVP_aes_256_gcm },
101
#else
102
  { "aes128-ctr",   16, 16, 0, 0, CFLAG_AESCTR, NULL },
103
  { "aes192-ctr",   16, 24, 0, 0, CFLAG_AESCTR, NULL },
104
  { "aes256-ctr",   16, 32, 0, 0, CFLAG_AESCTR, NULL },
105
#endif
106
  { "chacha20-poly1305@openssh.com",
107
        8, 64, 0, 16, CFLAG_CHACHAPOLY, NULL },
108
  { "none",   8, 0, 0, 0, CFLAG_NONE, NULL },
109
110
  { NULL,     0, 0, 0, 0, 0, NULL }
111
};
112
113
/*--*/
114
115
/* Returns a comma-separated list of supported ciphers. */
116
char *
117
cipher_alg_list(char sep, int auth_only)
118
0
{
119
0
  char *tmp, *ret = NULL;
120
0
  size_t nlen, rlen = 0;
121
0
  const struct sshcipher *c;
122
123
0
  for (c = ciphers; c->name != NULL; c++) {
124
0
    if ((c->flags & CFLAG_INTERNAL) != 0)
125
0
      continue;
126
0
    if (auth_only && c->auth_len == 0)
127
0
      continue;
128
0
    if (ret != NULL)
129
0
      ret[rlen++] = sep;
130
0
    nlen = strlen(c->name);
131
0
    if ((tmp = realloc(ret, rlen + nlen + 2)) == NULL) {
132
0
      free(ret);
133
0
      return NULL;
134
0
    }
135
0
    ret = tmp;
136
0
    memcpy(ret + rlen, c->name, nlen + 1);
137
0
    rlen += nlen;
138
0
  }
139
0
  return ret;
140
0
}
141
142
const char *
143
compression_alg_list(int compression)
144
0
{
145
0
#ifdef WITH_ZLIB
146
0
  return compression ? "zlib@openssh.com,none" :
147
0
      "none,zlib@openssh.com";
148
#else
149
  return "none";
150
#endif
151
0
}
152
153
u_int
154
cipher_blocksize(const struct sshcipher *c)
155
0
{
156
0
  return (c->block_size);
157
0
}
158
159
u_int
160
cipher_keylen(const struct sshcipher *c)
161
0
{
162
0
  return (c->key_len);
163
0
}
164
165
u_int
166
cipher_seclen(const struct sshcipher *c)
167
0
{
168
0
  if (strcmp("3des-cbc", c->name) == 0)
169
0
    return 14;
170
0
  return cipher_keylen(c);
171
0
}
172
173
u_int
174
cipher_authlen(const struct sshcipher *c)
175
0
{
176
0
  return (c->auth_len);
177
0
}
178
179
u_int
180
cipher_ivlen(const struct sshcipher *c)
181
0
{
182
  /*
183
   * Default is cipher block size, except for chacha20+poly1305 that
184
   * needs no IV. XXX make iv_len == -1 default?
185
   */
186
0
  return (c->iv_len != 0 || (c->flags & CFLAG_CHACHAPOLY) != 0) ?
187
0
      c->iv_len : c->block_size;
188
0
}
189
190
u_int
191
cipher_is_cbc(const struct sshcipher *c)
192
0
{
193
0
  return (c->flags & CFLAG_CBC) != 0;
194
0
}
195
196
u_int
197
cipher_ctx_is_plaintext(struct sshcipher_ctx *cc)
198
0
{
199
0
  return cc->plaintext;
200
0
}
201
202
const struct sshcipher *
203
cipher_by_name(const char *name)
204
0
{
205
0
  const struct sshcipher *c;
206
0
  for (c = ciphers; c->name != NULL; c++)
207
0
    if (strcmp(c->name, name) == 0)
208
0
      return c;
209
0
  return NULL;
210
0
}
211
212
0
#define CIPHER_SEP  ","
213
int
214
ciphers_valid(const char *names)
215
0
{
216
0
  const struct sshcipher *c;
217
0
  char *cipher_list, *cp;
218
0
  char *p;
219
220
0
  if (names == NULL || strcmp(names, "") == 0)
221
0
    return 0;
222
0
  if ((cipher_list = cp = strdup(names)) == NULL)
223
0
    return 0;
224
0
  for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0';
225
0
      (p = strsep(&cp, CIPHER_SEP))) {
226
0
    c = cipher_by_name(p);
227
0
    if (c == NULL || (c->flags & CFLAG_INTERNAL) != 0) {
228
0
      free(cipher_list);
229
0
      return 0;
230
0
    }
231
0
  }
232
0
  free(cipher_list);
233
0
  return 1;
234
0
}
235
236
const char *
237
cipher_warning_message(const struct sshcipher_ctx *cc)
238
0
{
239
0
  if (cc == NULL || cc->cipher == NULL)
240
0
    return NULL;
241
  /* XXX repurpose for CBC warning */
242
0
  return NULL;
243
0
}
244
245
int
246
cipher_init(struct sshcipher_ctx **ccp, const struct sshcipher *cipher,
247
    const u_char *key, u_int keylen, const u_char *iv, u_int ivlen,
248
    int do_encrypt)
249
0
{
250
0
  struct sshcipher_ctx *cc = NULL;
251
0
  int ret = SSH_ERR_INTERNAL_ERROR;
252
0
#ifdef WITH_OPENSSL
253
0
  const EVP_CIPHER *type;
254
0
  int klen;
255
0
#endif
256
257
0
  *ccp = NULL;
258
0
  if ((cc = calloc(1, sizeof(*cc))) == NULL)
259
0
    return SSH_ERR_ALLOC_FAIL;
260
261
0
  cc->plaintext = (cipher->flags & CFLAG_NONE) != 0;
262
0
  cc->encrypt = do_encrypt;
263
264
0
  if (keylen < cipher->key_len ||
265
0
      (iv != NULL && ivlen < cipher_ivlen(cipher))) {
266
0
    ret = SSH_ERR_INVALID_ARGUMENT;
267
0
    goto out;
268
0
  }
269
270
0
  cc->cipher = cipher;
271
0
  if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
272
0
    cc->cp_ctx = chachapoly_new(key, keylen);
273
0
    ret = cc->cp_ctx != NULL ? 0 : SSH_ERR_INVALID_ARGUMENT;
274
0
    goto out;
275
0
  }
276
0
  if ((cc->cipher->flags & CFLAG_NONE) != 0) {
277
0
    ret = 0;
278
0
    goto out;
279
0
  }
280
#ifndef WITH_OPENSSL
281
  if ((cc->cipher->flags & CFLAG_AESCTR) != 0) {
282
    aesctr_keysetup(&cc->ac_ctx, key, 8 * keylen, 8 * ivlen);
283
    aesctr_ivsetup(&cc->ac_ctx, iv);
284
    ret = 0;
285
    goto out;
286
  }
287
  ret = SSH_ERR_INVALID_ARGUMENT;
288
  goto out;
289
#else /* WITH_OPENSSL */
290
0
  type = (*cipher->evptype)();
291
0
  if ((cc->evp = EVP_CIPHER_CTX_new()) == NULL) {
292
0
    ret = SSH_ERR_ALLOC_FAIL;
293
0
    goto out;
294
0
  }
295
0
  if (EVP_CipherInit(cc->evp, type, NULL, (u_char *)iv,
296
0
      (do_encrypt == CIPHER_ENCRYPT)) == 0) {
297
0
    ret = SSH_ERR_LIBCRYPTO_ERROR;
298
0
    goto out;
299
0
  }
300
0
  if (cipher_authlen(cipher) &&
301
0
      EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_IV_FIXED,
302
0
      -1, (u_char *)iv) <= 0) {
303
0
    ret = SSH_ERR_LIBCRYPTO_ERROR;
304
0
    goto out;
305
0
  }
306
0
  klen = EVP_CIPHER_CTX_key_length(cc->evp);
307
0
  if (klen > 0 && keylen != (u_int)klen) {
308
0
    if (EVP_CIPHER_CTX_set_key_length(cc->evp, keylen) == 0) {
309
0
      ret = SSH_ERR_LIBCRYPTO_ERROR;
310
0
      goto out;
311
0
    }
312
0
  }
313
0
  if (EVP_CipherInit(cc->evp, NULL, (u_char *)key, NULL, -1) == 0) {
314
0
    ret = SSH_ERR_LIBCRYPTO_ERROR;
315
0
    goto out;
316
0
  }
317
0
  ret = 0;
318
0
#endif /* WITH_OPENSSL */
319
0
 out:
320
0
  if (ret == 0) {
321
    /* success */
322
0
    *ccp = cc;
323
0
  } else {
324
0
    if (cc != NULL) {
325
0
#ifdef WITH_OPENSSL
326
0
      EVP_CIPHER_CTX_free(cc->evp);
327
0
#endif /* WITH_OPENSSL */
328
0
      freezero(cc, sizeof(*cc));
329
0
    }
330
0
  }
331
0
  return ret;
332
0
}
333
334
/*
335
 * cipher_crypt() operates as following:
336
 * Copy 'aadlen' bytes (without en/decryption) from 'src' to 'dest'.
337
 * These bytes are treated as additional authenticated data for
338
 * authenticated encryption modes.
339
 * En/Decrypt 'len' bytes at offset 'aadlen' from 'src' to 'dest'.
340
 * Use 'authlen' bytes at offset 'len'+'aadlen' as the authentication tag.
341
 * This tag is written on encryption and verified on decryption.
342
 * Both 'aadlen' and 'authlen' can be set to 0.
343
 */
344
int
345
cipher_crypt(struct sshcipher_ctx *cc, u_int seqnr, u_char *dest,
346
   const u_char *src, u_int len, u_int aadlen, u_int authlen)
347
0
{
348
0
  if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
349
0
    return chachapoly_crypt(cc->cp_ctx, seqnr, dest, src,
350
0
        len, aadlen, authlen, cc->encrypt);
351
0
  }
352
0
  if ((cc->cipher->flags & CFLAG_NONE) != 0) {
353
0
    memcpy(dest, src, aadlen + len);
354
0
    return 0;
355
0
  }
356
#ifndef WITH_OPENSSL
357
  if ((cc->cipher->flags & CFLAG_AESCTR) != 0) {
358
    if (aadlen)
359
      memcpy(dest, src, aadlen);
360
    aesctr_encrypt_bytes(&cc->ac_ctx, src + aadlen,
361
        dest + aadlen, len);
362
    return 0;
363
  }
364
  return SSH_ERR_INVALID_ARGUMENT;
365
#else
366
0
  if (authlen) {
367
0
    u_char lastiv[1];
368
369
0
    if (authlen != cipher_authlen(cc->cipher))
370
0
      return SSH_ERR_INVALID_ARGUMENT;
371
    /* increment IV */
372
0
    if (EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_IV_GEN,
373
0
        1, lastiv) <= 0)
374
0
      return SSH_ERR_LIBCRYPTO_ERROR;
375
    /* set tag on decryption */
376
0
    if (!cc->encrypt &&
377
0
        EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_TAG,
378
0
        authlen, (u_char *)src + aadlen + len) <= 0)
379
0
      return SSH_ERR_LIBCRYPTO_ERROR;
380
0
  }
381
0
  if (aadlen) {
382
0
    if (authlen &&
383
0
        EVP_Cipher(cc->evp, NULL, (u_char *)src, aadlen) < 0)
384
0
      return SSH_ERR_LIBCRYPTO_ERROR;
385
0
    memcpy(dest, src, aadlen);
386
0
  }
387
0
  if (len % cc->cipher->block_size)
388
0
    return SSH_ERR_INVALID_ARGUMENT;
389
0
  if (EVP_Cipher(cc->evp, dest + aadlen, (u_char *)src + aadlen,
390
0
      len) < 0)
391
0
    return SSH_ERR_LIBCRYPTO_ERROR;
392
0
  if (authlen) {
393
    /* compute tag (on encrypt) or verify tag (on decrypt) */
394
0
    if (EVP_Cipher(cc->evp, NULL, NULL, 0) < 0)
395
0
      return cc->encrypt ?
396
0
          SSH_ERR_LIBCRYPTO_ERROR : SSH_ERR_MAC_INVALID;
397
0
    if (cc->encrypt &&
398
0
        EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_GET_TAG,
399
0
        authlen, dest + aadlen + len) <= 0)
400
0
      return SSH_ERR_LIBCRYPTO_ERROR;
401
0
  }
402
0
  return 0;
403
0
#endif
404
0
}
405
406
/* Extract the packet length, including any decryption necessary beforehand */
407
int
408
cipher_get_length(struct sshcipher_ctx *cc, u_int *plenp, u_int seqnr,
409
    const u_char *cp, u_int len)
410
0
{
411
0
  if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
412
0
    return chachapoly_get_length(cc->cp_ctx, plenp, seqnr,
413
0
        cp, len);
414
0
  if (len < 4)
415
0
    return SSH_ERR_MESSAGE_INCOMPLETE;
416
0
  *plenp = PEEK_U32(cp);
417
0
  return 0;
418
0
}
419
420
void
421
cipher_free(struct sshcipher_ctx *cc)
422
0
{
423
0
  if (cc == NULL)
424
0
    return;
425
0
  if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
426
0
    chachapoly_free(cc->cp_ctx);
427
0
    cc->cp_ctx = NULL;
428
0
  } else if ((cc->cipher->flags & CFLAG_AESCTR) != 0)
429
0
    explicit_bzero(&cc->ac_ctx, sizeof(cc->ac_ctx));
430
0
#ifdef WITH_OPENSSL
431
0
  EVP_CIPHER_CTX_free(cc->evp);
432
0
  cc->evp = NULL;
433
0
#endif
434
0
  freezero(cc, sizeof(*cc));
435
0
}
436
437
int
438
cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, size_t len)
439
0
{
440
0
#ifdef WITH_OPENSSL
441
0
  const struct sshcipher *c = cc->cipher;
442
0
  int evplen;
443
0
#endif
444
445
0
  if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0) {
446
0
    if (len != 0)
447
0
      return SSH_ERR_INVALID_ARGUMENT;
448
0
    return 0;
449
0
  }
450
0
  if ((cc->cipher->flags & CFLAG_AESCTR) != 0) {
451
0
    if (len != sizeof(cc->ac_ctx.ctr))
452
0
      return SSH_ERR_INVALID_ARGUMENT;
453
0
    memcpy(iv, cc->ac_ctx.ctr, len);
454
0
    return 0;
455
0
  }
456
0
  if ((cc->cipher->flags & CFLAG_NONE) != 0)
457
0
    return 0;
458
459
0
#ifdef WITH_OPENSSL
460
0
  evplen = EVP_CIPHER_CTX_iv_length(cc->evp);
461
0
  if (evplen == 0)
462
0
    return 0;
463
0
  else if (evplen < 0)
464
0
    return SSH_ERR_LIBCRYPTO_ERROR;
465
0
  if ((size_t)evplen != len)
466
0
    return SSH_ERR_INVALID_ARGUMENT;
467
0
  if (cipher_authlen(c)) {
468
0
    if (EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_IV_GEN, len,
469
0
        iv) <= 0)
470
0
      return SSH_ERR_LIBCRYPTO_ERROR;
471
0
  } else if (EVP_CIPHER_CTX_get_iv(cc->evp, iv, len) <= 0)
472
0
    return SSH_ERR_LIBCRYPTO_ERROR;
473
0
#endif
474
0
  return 0;
475
0
}
476
477
int
478
cipher_set_keyiv(struct sshcipher_ctx *cc, const u_char *iv, size_t len)
479
0
{
480
0
#ifdef WITH_OPENSSL
481
0
  const struct sshcipher *c = cc->cipher;
482
0
  int evplen = 0;
483
0
#endif
484
485
0
  if ((cc->cipher->flags & CFLAG_CHACHAPOLY) != 0)
486
0
    return 0;
487
0
  if ((cc->cipher->flags & CFLAG_NONE) != 0)
488
0
    return 0;
489
490
0
#ifdef WITH_OPENSSL
491
0
  evplen = EVP_CIPHER_CTX_iv_length(cc->evp);
492
0
  if (evplen <= 0)
493
0
    return SSH_ERR_LIBCRYPTO_ERROR;
494
0
  if ((size_t)evplen != len)
495
0
    return SSH_ERR_INVALID_ARGUMENT;
496
0
  if (cipher_authlen(c)) {
497
    /* XXX iv arg is const, but EVP_CIPHER_CTX_ctrl isn't */
498
0
    if (EVP_CIPHER_CTX_ctrl(cc->evp,
499
0
        EVP_CTRL_GCM_SET_IV_FIXED, -1, (void *)iv) <= 0)
500
0
      return SSH_ERR_LIBCRYPTO_ERROR;
501
0
  } else if (!EVP_CIPHER_CTX_set_iv(cc->evp, iv, evplen))
502
0
    return SSH_ERR_LIBCRYPTO_ERROR;
503
0
#endif
504
0
  return 0;
505
0
}