blob: 32771f28743be2b853566224aeeee814ca26df7f [file] [log] [blame]
Damien Miller9a3d0dc2010-10-07 22:06:42 +11001/* $OpenBSD: cipher-ctr.c,v 1.11 2010/10/01 23:05:32 djm Exp $ */
Damien Millerf5399c22003-05-18 20:53:59 +10002/*
Damien Miller0275b522003-06-18 20:29:35 +10003 * Copyright (c) 2003 Markus Friedl <markus@openbsd.org>
Damien Millerf5399c22003-05-18 20:53:59 +10004 *
Damien Miller0275b522003-06-18 20:29:35 +10005 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
Damien Millerf5399c22003-05-18 20:53:59 +10008 *
Damien Miller0275b522003-06-18 20:29:35 +10009 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Damien Millerf5399c22003-05-18 20:53:59 +100016 */
17#include "includes.h"
Damien Millerf5399c22003-05-18 20:53:59 +100018
Damien Miller72ef7c12015-01-15 02:21:31 +110019#if defined(WITH_OPENSSL) && !defined(OPENSSL_HAVE_EVPCTR)
Damien Millerd7834352006-08-05 12:39:39 +100020#include <sys/types.h>
21
Damien Millerded319c2006-09-01 15:38:36 +100022#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100023#include <string.h>
24
Damien Millerf5399c22003-05-18 20:53:59 +100025#include <openssl/evp.h>
26
Damien Millerf5399c22003-05-18 20:53:59 +100027#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100028#include "log.h"
Damien Millerf5399c22003-05-18 20:53:59 +100029
Darren Tucker129d0bb2005-12-19 17:40:40 +110030/* compatibility with old or broken OpenSSL versions */
31#include "openbsd-compat/openssl-compat.h"
Damien Miller5c3a5582003-09-23 22:12:38 +100032
Darren Tuckercb520172007-06-14 23:21:32 +100033#ifndef USE_BUILTIN_RIJNDAEL
Damien Millerf5399c22003-05-18 20:53:59 +100034#include <openssl/aes.h>
35#endif
36
Damien Millerf5399c22003-05-18 20:53:59 +100037struct ssh_aes_ctr_ctx
38{
39 AES_KEY aes_ctx;
40 u_char aes_counter[AES_BLOCK_SIZE];
41};
42
43/*
44 * increment counter 'ctr',
45 * the counter is of size 'len' bytes and stored in network-byte-order.
46 * (LSB at ctr[len-1], MSB at ctr[0])
47 */
48static void
Damien Miller9a3d0dc2010-10-07 22:06:42 +110049ssh_ctr_inc(u_char *ctr, size_t len)
Damien Millerf5399c22003-05-18 20:53:59 +100050{
51 int i;
52
53 for (i = len - 1; i >= 0; i--)
54 if (++ctr[i]) /* continue on overflow */
55 return;
56}
57
58static int
59ssh_aes_ctr(EVP_CIPHER_CTX *ctx, u_char *dest, const u_char *src,
Damien Miller9a3d0dc2010-10-07 22:06:42 +110060 LIBCRYPTO_EVP_INL_TYPE len)
Damien Millerf5399c22003-05-18 20:53:59 +100061{
62 struct ssh_aes_ctr_ctx *c;
Damien Miller9a3d0dc2010-10-07 22:06:42 +110063 size_t n = 0;
Damien Millerf5399c22003-05-18 20:53:59 +100064 u_char buf[AES_BLOCK_SIZE];
65
66 if (len == 0)
67 return (1);
68 if ((c = EVP_CIPHER_CTX_get_app_data(ctx)) == NULL)
69 return (0);
70
71 while ((len--) > 0) {
72 if (n == 0) {
73 AES_encrypt(c->aes_counter, buf, &c->aes_ctx);
74 ssh_ctr_inc(c->aes_counter, AES_BLOCK_SIZE);
75 }
76 *(dest++) = *(src++) ^ buf[n];
77 n = (n + 1) % AES_BLOCK_SIZE;
78 }
79 return (1);
80}
81
82static int
83ssh_aes_ctr_init(EVP_CIPHER_CTX *ctx, const u_char *key, const u_char *iv,
84 int enc)
85{
86 struct ssh_aes_ctr_ctx *c;
87
88 if ((c = EVP_CIPHER_CTX_get_app_data(ctx)) == NULL) {
89 c = xmalloc(sizeof(*c));
90 EVP_CIPHER_CTX_set_app_data(ctx, c);
91 }
92 if (key != NULL)
Darren Tuckerfc57f712004-02-07 10:41:48 +110093 AES_set_encrypt_key(key, EVP_CIPHER_CTX_key_length(ctx) * 8,
Damien Miller0dc1bef2005-07-17 17:22:45 +100094 &c->aes_ctx);
Damien Millerf5399c22003-05-18 20:53:59 +100095 if (iv != NULL)
96 memcpy(c->aes_counter, iv, AES_BLOCK_SIZE);
97 return (1);
98}
99
100static int
101ssh_aes_ctr_cleanup(EVP_CIPHER_CTX *ctx)
102{
103 struct ssh_aes_ctr_ctx *c;
104
105 if ((c = EVP_CIPHER_CTX_get_app_data(ctx)) != NULL) {
106 memset(c, 0, sizeof(*c));
Darren Tuckerf60845f2013-06-02 08:07:31 +1000107 free(c);
Damien Millerf5399c22003-05-18 20:53:59 +1000108 EVP_CIPHER_CTX_set_app_data(ctx, NULL);
109 }
110 return (1);
111}
112
113void
Damien Miller9a3d0dc2010-10-07 22:06:42 +1100114ssh_aes_ctr_iv(EVP_CIPHER_CTX *evp, int doset, u_char * iv, size_t len)
Damien Millerf5399c22003-05-18 20:53:59 +1000115{
116 struct ssh_aes_ctr_ctx *c;
117
118 if ((c = EVP_CIPHER_CTX_get_app_data(evp)) == NULL)
119 fatal("ssh_aes_ctr_iv: no context");
120 if (doset)
121 memcpy(c->aes_counter, iv, len);
122 else
123 memcpy(iv, c->aes_counter, len);
124}
125
126const EVP_CIPHER *
127evp_aes_128_ctr(void)
128{
129 static EVP_CIPHER aes_ctr;
130
131 memset(&aes_ctr, 0, sizeof(EVP_CIPHER));
132 aes_ctr.nid = NID_undef;
133 aes_ctr.block_size = AES_BLOCK_SIZE;
134 aes_ctr.iv_len = AES_BLOCK_SIZE;
135 aes_ctr.key_len = 16;
136 aes_ctr.init = ssh_aes_ctr_init;
137 aes_ctr.cleanup = ssh_aes_ctr_cleanup;
138 aes_ctr.do_cipher = ssh_aes_ctr;
Damien Miller5c3a5582003-09-23 22:12:38 +1000139#ifndef SSH_OLD_EVP
Damien Millerf5399c22003-05-18 20:53:59 +1000140 aes_ctr.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH |
141 EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV;
Damien Miller5c3a5582003-09-23 22:12:38 +1000142#endif
Damien Millerf5399c22003-05-18 20:53:59 +1000143 return (&aes_ctr);
144}
Damien Miller25a02b02012-12-13 08:18:56 +1100145
Damien Miller72ef7c12015-01-15 02:21:31 +1100146#endif /* defined(WITH_OPENSSL) && !defined(OPENSSL_HAVE_EVPCTR) */