def_load_bio(): Free |biosk| more carefully
[openssl.git] / crypto / rsa / rsa_oaep.c
1 /*
2  * Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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 /* EME-OAEP as defined in RFC 2437 (PKCS #1 v2.0) */
11
12 /*
13  * See Victor Shoup, "OAEP reconsidered," Nov. 2000, <URL:
14  * http://www.shoup.net/papers/oaep.ps.Z> for problems with the security
15  * proof for the original OAEP scheme, which EME-OAEP is based on. A new
16  * proof can be found in E. Fujisaki, T. Okamoto, D. Pointcheval, J. Stern,
17  * "RSA-OEAP is Still Alive!", Dec. 2000, <URL:
18  * http://eprint.iacr.org/2000/061/>. The new proof has stronger requirements
19  * for the underlying permutation: "partial-one-wayness" instead of
20  * one-wayness.  For the RSA function, this is an equivalent notion.
21  */
22
23 #include "internal/constant_time_locl.h"
24
25 #include <stdio.h>
26 #include "internal/cryptlib.h"
27 #include <openssl/bn.h>
28 #include <openssl/evp.h>
29 #include <openssl/rand.h>
30 #include <openssl/sha.h>
31 #include "rsa_locl.h"
32
33 int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen,
34                                const unsigned char *from, int flen,
35                                const unsigned char *param, int plen)
36 {
37     return RSA_padding_add_PKCS1_OAEP_mgf1(to, tlen, from, flen,
38                                            param, plen, NULL, NULL);
39 }
40
41 int RSA_padding_add_PKCS1_OAEP_mgf1(unsigned char *to, int tlen,
42                                     const unsigned char *from, int flen,
43                                     const unsigned char *param, int plen,
44                                     const EVP_MD *md, const EVP_MD *mgf1md)
45 {
46     int i, emlen = tlen - 1;
47     unsigned char *db, *seed;
48     unsigned char *dbmask, seedmask[EVP_MAX_MD_SIZE];
49     int mdlen;
50
51     if (md == NULL)
52         md = EVP_sha1();
53     if (mgf1md == NULL)
54         mgf1md = md;
55
56     mdlen = EVP_MD_size(md);
57
58     if (flen > emlen - 2 * mdlen - 1) {
59         RSAerr(RSA_F_RSA_PADDING_ADD_PKCS1_OAEP_MGF1,
60                RSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE);
61         return 0;
62     }
63
64     if (emlen < 2 * mdlen + 1) {
65         RSAerr(RSA_F_RSA_PADDING_ADD_PKCS1_OAEP_MGF1,
66                RSA_R_KEY_SIZE_TOO_SMALL);
67         return 0;
68     }
69
70     to[0] = 0;
71     seed = to + 1;
72     db = to + mdlen + 1;
73
74     if (!EVP_Digest((void *)param, plen, db, NULL, md, NULL))
75         return 0;
76     memset(db + mdlen, 0, emlen - flen - 2 * mdlen - 1);
77     db[emlen - flen - mdlen - 1] = 0x01;
78     memcpy(db + emlen - flen - mdlen, from, (unsigned int)flen);
79     if (RAND_bytes(seed, mdlen) <= 0)
80         return 0;
81
82     dbmask = OPENSSL_malloc(emlen - mdlen);
83     if (dbmask == NULL) {
84         RSAerr(RSA_F_RSA_PADDING_ADD_PKCS1_OAEP_MGF1, ERR_R_MALLOC_FAILURE);
85         return 0;
86     }
87
88     if (PKCS1_MGF1(dbmask, emlen - mdlen, seed, mdlen, mgf1md) < 0)
89         goto err;
90     for (i = 0; i < emlen - mdlen; i++)
91         db[i] ^= dbmask[i];
92
93     if (PKCS1_MGF1(seedmask, mdlen, db, emlen - mdlen, mgf1md) < 0)
94         goto err;
95     for (i = 0; i < mdlen; i++)
96         seed[i] ^= seedmask[i];
97
98     OPENSSL_free(dbmask);
99     return 1;
100
101  err:
102     OPENSSL_free(dbmask);
103     return 0;
104 }
105
106 int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen,
107                                  const unsigned char *from, int flen, int num,
108                                  const unsigned char *param, int plen)
109 {
110     return RSA_padding_check_PKCS1_OAEP_mgf1(to, tlen, from, flen, num,
111                                              param, plen, NULL, NULL);
112 }
113
114 int RSA_padding_check_PKCS1_OAEP_mgf1(unsigned char *to, int tlen,
115                                       const unsigned char *from, int flen,
116                                       int num, const unsigned char *param,
117                                       int plen, const EVP_MD *md,
118                                       const EVP_MD *mgf1md)
119 {
120     int i, dblen = 0, mlen = -1, one_index = 0, msg_index;
121     unsigned int good, found_one_byte;
122     const unsigned char *maskedseed, *maskeddb;
123     /*
124      * |em| is the encoded message, zero-padded to exactly |num| bytes: em =
125      * Y || maskedSeed || maskedDB
126      */
127     unsigned char *db = NULL, *em = NULL, seed[EVP_MAX_MD_SIZE],
128         phash[EVP_MAX_MD_SIZE];
129     int mdlen;
130
131     if (md == NULL)
132         md = EVP_sha1();
133     if (mgf1md == NULL)
134         mgf1md = md;
135
136     mdlen = EVP_MD_size(md);
137
138     if (tlen <= 0 || flen <= 0)
139         return -1;
140     /*
141      * |num| is the length of the modulus; |flen| is the length of the
142      * encoded message. Therefore, for any |from| that was obtained by
143      * decrypting a ciphertext, we must have |flen| <= |num|. Similarly,
144      * num < 2 * mdlen + 2 must hold for the modulus irrespective of
145      * the ciphertext, see PKCS #1 v2.2, section 7.1.2.
146      * This does not leak any side-channel information.
147      */
148     if (num < flen || num < 2 * mdlen + 2)
149         goto decoding_err;
150
151     dblen = num - mdlen - 1;
152     db = OPENSSL_malloc(dblen);
153     if (db == NULL) {
154         RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP_MGF1, ERR_R_MALLOC_FAILURE);
155         goto cleanup;
156     }
157
158     if (flen != num) {
159         em = OPENSSL_zalloc(num);
160         if (em == NULL) {
161             RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP_MGF1,
162                    ERR_R_MALLOC_FAILURE);
163             goto cleanup;
164         }
165
166         /*
167          * Caller is encouraged to pass zero-padded message created with
168          * BN_bn2binpad, but if it doesn't, we do this zero-padding copy
169          * to avoid leaking that information. The copy still leaks some
170          * side-channel information, but it's impossible to have a fixed
171          * memory access pattern since we can't read out of the bounds of
172          * |from|.
173          */
174         memcpy(em + num - flen, from, flen);
175         from = em;
176     }
177
178     /*
179      * The first byte must be zero, however we must not leak if this is
180      * true. See James H. Manger, "A Chosen Ciphertext  Attack on RSA
181      * Optimal Asymmetric Encryption Padding (OAEP) [...]", CRYPTO 2001).
182      */
183     good = constant_time_is_zero(from[0]);
184
185     maskedseed = from + 1;
186     maskeddb = from + 1 + mdlen;
187
188     if (PKCS1_MGF1(seed, mdlen, maskeddb, dblen, mgf1md))
189         goto cleanup;
190     for (i = 0; i < mdlen; i++)
191         seed[i] ^= maskedseed[i];
192
193     if (PKCS1_MGF1(db, dblen, seed, mdlen, mgf1md))
194         goto cleanup;
195     for (i = 0; i < dblen; i++)
196         db[i] ^= maskeddb[i];
197
198     if (!EVP_Digest((void *)param, plen, phash, NULL, md, NULL))
199         goto cleanup;
200
201     good &= constant_time_is_zero(CRYPTO_memcmp(db, phash, mdlen));
202
203     found_one_byte = 0;
204     for (i = mdlen; i < dblen; i++) {
205         /*
206          * Padding consists of a number of 0-bytes, followed by a 1.
207          */
208         unsigned int equals1 = constant_time_eq(db[i], 1);
209         unsigned int equals0 = constant_time_is_zero(db[i]);
210         one_index = constant_time_select_int(~found_one_byte & equals1,
211                                              i, one_index);
212         found_one_byte |= equals1;
213         good &= (found_one_byte | equals0);
214     }
215
216     good &= found_one_byte;
217
218     /*
219      * At this point |good| is zero unless the plaintext was valid,
220      * so plaintext-awareness ensures timing side-channels are no longer a
221      * concern.
222      */
223     if (!good)
224         goto decoding_err;
225
226     msg_index = one_index + 1;
227     mlen = dblen - msg_index;
228
229     if (tlen < mlen) {
230         RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP_MGF1, RSA_R_DATA_TOO_LARGE);
231         mlen = -1;
232     } else {
233         memcpy(to, db + msg_index, mlen);
234         goto cleanup;
235     }
236
237  decoding_err:
238     /*
239      * To avoid chosen ciphertext attacks, the error message should not
240      * reveal which kind of decoding error happened.
241      */
242     RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP_MGF1,
243            RSA_R_OAEP_DECODING_ERROR);
244  cleanup:
245     OPENSSL_clear_free(db, dblen);
246     OPENSSL_clear_free(em, num);
247     return mlen;
248 }
249
250 int PKCS1_MGF1(unsigned char *mask, long len,
251                const unsigned char *seed, long seedlen, const EVP_MD *dgst)
252 {
253     long i, outlen = 0;
254     unsigned char cnt[4];
255     EVP_MD_CTX *c = EVP_MD_CTX_new();
256     unsigned char md[EVP_MAX_MD_SIZE];
257     int mdlen;
258     int rv = -1;
259
260     if (c == NULL)
261         goto err;
262     mdlen = EVP_MD_size(dgst);
263     if (mdlen < 0)
264         goto err;
265     for (i = 0; outlen < len; i++) {
266         cnt[0] = (unsigned char)((i >> 24) & 255);
267         cnt[1] = (unsigned char)((i >> 16) & 255);
268         cnt[2] = (unsigned char)((i >> 8)) & 255;
269         cnt[3] = (unsigned char)(i & 255);
270         if (!EVP_DigestInit_ex(c, dgst, NULL)
271             || !EVP_DigestUpdate(c, seed, seedlen)
272             || !EVP_DigestUpdate(c, cnt, 4))
273             goto err;
274         if (outlen + mdlen <= len) {
275             if (!EVP_DigestFinal_ex(c, mask + outlen, NULL))
276                 goto err;
277             outlen += mdlen;
278         } else {
279             if (!EVP_DigestFinal_ex(c, md, NULL))
280                 goto err;
281             memcpy(mask + outlen, md, len - outlen);
282             outlen = len;
283         }
284     }
285     rv = 0;
286  err:
287     EVP_MD_CTX_free(c);
288     return rv;
289 }