a73f20cd73bf5a2d4c00b96910f2f7bd53e303f3
[openssl.git] / providers / common / ciphers / aes.c
1 /*
2  * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <string.h>
11 #include <openssl/crypto.h>
12 #include <openssl/core_numbers.h>
13 #include <openssl/core_names.h>
14 #include <openssl/evp.h>
15 #include <openssl/params.h>
16 #include "internal/cryptlib.h"
17 #include "internal/provider_algs.h"
18 #include "ciphers_locl.h"
19
20 static void PROV_AES_KEY_generic_init(PROV_AES_KEY *ctx,
21                                       const unsigned char *iv,
22                                       int enc)
23 {
24     if (iv != NULL)
25         memcpy(ctx->iv, iv, AES_BLOCK_SIZE);
26     ctx->enc = enc;
27 }
28
29 static int aes_einit(void *vctx, const unsigned char *key,
30                            const unsigned char *iv)
31 {
32     PROV_AES_KEY *ctx = (PROV_AES_KEY *)vctx;
33
34     PROV_AES_KEY_generic_init(ctx, iv, 1);
35     if (key != NULL)
36         return ctx->ciph->init(ctx, key, ctx->keylen);
37
38     return 1;
39 }
40
41 static int aes_dinit(void *vctx, const unsigned char *key,
42                      const unsigned char *iv)
43 {
44     PROV_AES_KEY *ctx = (PROV_AES_KEY *)vctx;
45
46     PROV_AES_KEY_generic_init(ctx, iv, 0);
47     if (key != NULL)
48         return ctx->ciph->init(ctx, key, ctx->keylen);
49
50     return 1;
51 }
52
53 static int aes_update(void *vctx, unsigned char *out, size_t *outl,
54                       const unsigned char *in, size_t inl)
55 {
56     PROV_AES_KEY *ctx = (PROV_AES_KEY *)vctx;
57     size_t nextblocks = fillblock(ctx->buf, &ctx->bufsz, AES_BLOCK_SIZE, &in,
58                                   &inl);
59     size_t outlint = 0;
60
61     /*
62      * If we're decrypting and we end an update on a block boundary we hold
63      * the last block back in case this is the last update call and the last
64      * block is padded.
65      */
66     if (ctx->bufsz == AES_BLOCK_SIZE
67             && (ctx->enc || inl > 0 || !ctx->pad)) {
68         if (!ctx->ciph->cipher(ctx, out, ctx->buf, AES_BLOCK_SIZE))
69             return 0;
70         ctx->bufsz = 0;
71         outlint = AES_BLOCK_SIZE;
72         out += AES_BLOCK_SIZE;
73     }
74     if (nextblocks > 0) {
75         if (!ctx->enc && ctx->pad && nextblocks == inl) {
76             if (!ossl_assert(inl >= AES_BLOCK_SIZE))
77                 return 0;
78             nextblocks -= AES_BLOCK_SIZE;
79         }
80         if (!ctx->ciph->cipher(ctx, out, in, nextblocks))
81             return 0;
82         in += nextblocks;
83         inl -= nextblocks;
84         outlint += nextblocks;
85     }
86     if (!trailingdata(ctx->buf, &ctx->bufsz, AES_BLOCK_SIZE, &in, &inl))
87         return 0;
88
89     *outl = outlint;
90     return inl == 0;
91 }
92
93 static int aes_final(void *vctx, unsigned char *out, size_t *outl)
94 {
95     PROV_AES_KEY *ctx = (PROV_AES_KEY *)vctx;
96
97     if (ctx->enc) {
98         if (ctx->pad) {
99             padblock(ctx->buf, &ctx->bufsz, AES_BLOCK_SIZE);
100         } else if (ctx->bufsz == 0) {
101             *outl = 0;
102             return 1;
103         } else if (ctx->bufsz != AES_BLOCK_SIZE) {
104             /* TODO(3.0): What is the correct error code here? */
105             return 0;
106         }
107
108         if (!ctx->ciph->cipher(ctx, out, ctx->buf, AES_BLOCK_SIZE))
109             return 0;
110         ctx->bufsz = 0;
111         *outl = AES_BLOCK_SIZE;
112         return 1;
113     }
114
115     /* Decrypting */
116     /* TODO(3.0): What's the correct error here */
117     if (ctx->bufsz != AES_BLOCK_SIZE) {
118         if (ctx->bufsz == 0 && !ctx->pad) {
119             *outl = 0;
120             return 1;
121         }
122         return 0;
123     }
124
125     if (!ctx->ciph->cipher(ctx, ctx->buf, ctx->buf, AES_BLOCK_SIZE))
126         return 0;
127
128     /* TODO(3.0): What is the correct error here */
129     if (ctx->pad && !unpadblock(ctx->buf, &ctx->bufsz, AES_BLOCK_SIZE))
130         return 0;
131
132     memcpy(out, ctx->buf, ctx->bufsz);
133     *outl = ctx->bufsz;
134     ctx->bufsz = 0;
135     return 1;
136 }
137
138 static void *aes_256_ecb_newctx(void)
139 {
140     PROV_AES_KEY *ctx = OPENSSL_zalloc(sizeof(*ctx));
141
142     ctx->pad = 1;
143     ctx->keylen = 256 / 8;
144     ctx->ciph = PROV_AES_CIPHER_ecb();
145     ctx->mode = EVP_CIPH_ECB_MODE;
146     return ctx;
147 }
148
149 static void aes_freectx(void *vctx)
150 {
151     PROV_AES_KEY *ctx = (PROV_AES_KEY *)vctx;
152
153     OPENSSL_clear_free(ctx,  sizeof(*ctx));
154 }
155
156 static void *aes_dupctx(void *ctx)
157 {
158     PROV_AES_KEY *in = (PROV_AES_KEY *)ctx;
159     PROV_AES_KEY *ret = OPENSSL_malloc(sizeof(*ret));
160
161     *ret = *in;
162
163     return ret;
164 }
165
166 static size_t key_length_256(void)
167 {
168     return 256 / 8;
169 }
170
171 static int aes_get_params(void *vctx, const OSSL_PARAM params[])
172 {
173     PROV_AES_KEY *ctx = (PROV_AES_KEY *)vctx;
174     const OSSL_PARAM *p;
175
176     p = OSSL_PARAM_locate(params, OSSL_CIPHER_PARAM_PADDING);
177     if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->pad))
178         return 0;
179
180     return 1;
181 }
182
183 static int aes_set_params(void *vctx, const OSSL_PARAM params[])
184 {
185     PROV_AES_KEY *ctx = (PROV_AES_KEY *)vctx;
186     const OSSL_PARAM *p;
187
188     p = OSSL_PARAM_locate(params, OSSL_CIPHER_PARAM_PADDING);
189     if (p != NULL) {
190         int pad;
191
192         if (!OSSL_PARAM_get_int(p, &pad))
193             return 0;
194         ctx->pad = pad ? 1 : 0;
195     }
196     return 1;
197 }
198
199 const OSSL_DISPATCH aes256ecb_functions[] = {
200     { OSSL_FUNC_CIPHER_NEWCTX, (void (*)(void))aes_256_ecb_newctx },
201     { OSSL_FUNC_CIPHER_ENCRYPT_INIT, (void (*)(void))aes_einit },
202     { OSSL_FUNC_CIPHER_DECRYPT_INIT, (void (*)(void))aes_dinit },
203     { OSSL_FUNC_CIPHER_UPDATE, (void (*)(void))aes_update },
204     { OSSL_FUNC_CIPHER_FINAL, (void (*)(void))aes_final },
205     { OSSL_FUNC_CIPHER_FREECTX, (void (*)(void))aes_freectx },
206     { OSSL_FUNC_CIPHER_DUPCTX, (void (*)(void))aes_dupctx },
207     { OSSL_FUNC_CIPHER_KEY_LENGTH, (void (*)(void))key_length_256 },
208     { OSSL_FUNC_CIPHER_GET_PARAMS, (void (*)(void))aes_get_params },
209     { OSSL_FUNC_CIPHER_SET_PARAMS, (void (*)(void))aes_set_params },
210     { 0, NULL }
211 };