s_client.pod: Fix grammar in NOTES section.
[openssl.git] / test / ecdsatest.c
1 /*
2  * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4  *
5  * Licensed under the Apache License 2.0 (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 /*
12  * Low level APIs are deprecated for public use, but still ok for internal use.
13  */
14 #include "internal/deprecated.h"
15
16 #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_EC is defined */
17 #include "testutil.h"
18
19 #ifndef OPENSSL_NO_EC
20
21 # include <openssl/evp.h>
22 # include <openssl/bn.h>
23 # include <openssl/ec.h>
24 # include <openssl/rand.h>
25 # include "internal/nelem.h"
26 # include "ecdsatest.h"
27
28 /* functions to change the RAND_METHOD */
29 static int fbytes(unsigned char *buf, int num);
30
31 static RAND_METHOD fake_rand;
32 static const RAND_METHOD *old_rand;
33 static int use_fake = 0;
34 static const char *numbers[2];
35 static size_t crv_len = 0;
36 static EC_builtin_curve *curves = NULL;
37
38 static int change_rand(void)
39 {
40     /* save old rand method */
41     if (!TEST_ptr(old_rand = RAND_get_rand_method()))
42         return 0;
43
44     fake_rand = *old_rand;
45     /* use own random function */
46     fake_rand.bytes = fbytes;
47     /* set new RAND_METHOD */
48     if (!TEST_true(RAND_set_rand_method(&fake_rand)))
49         return 0;
50     return 1;
51 }
52
53 static int restore_rand(void)
54 {
55     if (!TEST_true(RAND_set_rand_method(old_rand)))
56         return 0;
57     return 1;
58 }
59
60 static int fbytes(unsigned char *buf, int num)
61 {
62     int ret = 0;
63     static int fbytes_counter = 0;
64     BIGNUM *tmp = NULL;
65
66     if (use_fake == 0)
67         return old_rand->bytes(buf, num);
68
69     use_fake = 0;
70
71     if (!TEST_ptr(tmp = BN_new())
72         || !TEST_int_lt(fbytes_counter, OSSL_NELEM(numbers))
73         || !TEST_true(BN_hex2bn(&tmp, numbers[fbytes_counter]))
74         /* tmp might need leading zeros so pad it out */
75         || !TEST_int_le(BN_num_bytes(tmp), num)
76         || !TEST_true(BN_bn2binpad(tmp, buf, num)))
77         goto err;
78
79     fbytes_counter = (fbytes_counter + 1) % OSSL_NELEM(numbers);
80     ret = 1;
81  err:
82     BN_free(tmp);
83     return ret;
84 }
85
86 /*-
87  * This function hijacks the RNG to feed it the chosen ECDSA key and nonce.
88  * The ECDSA KATs are from:
89  * - the X9.62 draft (4)
90  * - NIST CAVP (720)
91  *
92  * It uses the low-level ECDSA_sign_setup instead of EVP to control the RNG.
93  * NB: This is not how applications should use ECDSA; this is only for testing.
94  *
95  * Tests the library can successfully:
96  * - generate public keys that matches those KATs
97  * - create ECDSA signatures that match those KATs
98  * - accept those signatures as valid
99  */
100 static int x9_62_tests(int n)
101 {
102     int nid, md_nid, ret = 0;
103     const char *r_in = NULL, *s_in = NULL, *tbs = NULL;
104     unsigned char *pbuf = NULL, *qbuf = NULL, *message = NULL;
105     unsigned char digest[EVP_MAX_MD_SIZE];
106     unsigned int dgst_len = 0;
107     long q_len, msg_len = 0;
108     size_t p_len;
109     EVP_MD_CTX *mctx = NULL;
110     EC_KEY *key = NULL;
111     ECDSA_SIG *signature = NULL;
112     BIGNUM *r = NULL, *s = NULL;
113     BIGNUM *kinv = NULL, *rp = NULL;
114     const BIGNUM *sig_r = NULL, *sig_s = NULL;
115
116     nid = ecdsa_cavs_kats[n].nid;
117     md_nid = ecdsa_cavs_kats[n].md_nid;
118     r_in = ecdsa_cavs_kats[n].r;
119     s_in = ecdsa_cavs_kats[n].s;
120     tbs = ecdsa_cavs_kats[n].msg;
121     numbers[0] = ecdsa_cavs_kats[n].d;
122     numbers[1] = ecdsa_cavs_kats[n].k;
123
124     TEST_info("ECDSA KATs for curve %s", OBJ_nid2sn(nid));
125
126 #ifdef FIPS_MODULE
127     if (EC_curve_nid2nist(nid) == NULL)
128         return TEST_skip("skip non approved curves");
129 #endif /* FIPS_MODULE */
130
131     if (!TEST_ptr(mctx = EVP_MD_CTX_new())
132         /* get the message digest */
133         || !TEST_ptr(message = OPENSSL_hexstr2buf(tbs, &msg_len))
134         || !TEST_true(EVP_DigestInit_ex(mctx, EVP_get_digestbynid(md_nid), NULL))
135         || !TEST_true(EVP_DigestUpdate(mctx, message, msg_len))
136         || !TEST_true(EVP_DigestFinal_ex(mctx, digest, &dgst_len))
137         /* create the key */
138         || !TEST_ptr(key = EC_KEY_new_by_curve_name(nid))
139         /* load KAT variables */
140         || !TEST_ptr(r = BN_new())
141         || !TEST_ptr(s = BN_new())
142         || !TEST_true(BN_hex2bn(&r, r_in))
143         || !TEST_true(BN_hex2bn(&s, s_in))
144         /* swap the RNG source */
145         || !TEST_true(change_rand()))
146         goto err;
147
148     /* public key must match KAT */
149     use_fake = 1;
150     if (!TEST_true(EC_KEY_generate_key(key))
151         || !TEST_true(p_len = EC_KEY_key2buf(key, POINT_CONVERSION_UNCOMPRESSED,
152                                              &pbuf, NULL))
153         || !TEST_ptr(qbuf = OPENSSL_hexstr2buf(ecdsa_cavs_kats[n].Q, &q_len))
154         || !TEST_int_eq(q_len, p_len)
155         || !TEST_mem_eq(qbuf, q_len, pbuf, p_len))
156         goto err;
157
158     /* create the signature via ECDSA_sign_setup to avoid use of ECDSA nonces */
159     use_fake = 1;
160     if (!TEST_true(ECDSA_sign_setup(key, NULL, &kinv, &rp))
161         || !TEST_ptr(signature = ECDSA_do_sign_ex(digest, dgst_len,
162                                                   kinv, rp, key))
163         /* verify the signature */
164         || !TEST_int_eq(ECDSA_do_verify(digest, dgst_len, signature, key), 1))
165         goto err;
166
167     /* compare the created signature with the expected signature */
168     ECDSA_SIG_get0(signature, &sig_r, &sig_s);
169     if (!TEST_BN_eq(sig_r, r)
170         || !TEST_BN_eq(sig_s, s))
171         goto err;
172
173     ret = 1;
174
175  err:
176     /* restore the RNG source */
177     if (!TEST_true(restore_rand()))
178         ret = 0;
179
180     OPENSSL_free(message);
181     OPENSSL_free(pbuf);
182     OPENSSL_free(qbuf);
183     EC_KEY_free(key);
184     ECDSA_SIG_free(signature);
185     BN_free(r);
186     BN_free(s);
187     EVP_MD_CTX_free(mctx);
188     BN_clear_free(kinv);
189     BN_clear_free(rp);
190     return ret;
191 }
192
193 /*-
194  * Positive and negative ECDSA testing through EVP interface:
195  * - EVP_DigestSign (this is the one-shot version)
196  * - EVP_DigestVerify
197  *
198  * Tests the library can successfully:
199  * - create a key
200  * - create a signature
201  * - accept that signature
202  * - reject that signature with a different public key
203  * - reject that signature if its length is not correct
204  * - reject that signature after modifying the message
205  * - accept that signature after un-modifying the message
206  * - reject that signature after modifying the signature
207  * - accept that signature after un-modifying the signature
208  */
209 static int set_sm2_id(EVP_MD_CTX *mctx, EVP_PKEY *pkey)
210 {
211     /* With the SM2 key type, the SM2 ID is mandatory */
212     static const char sm2_id[] = { 1, 2, 3, 4, 'l', 'e', 't', 't', 'e', 'r' };
213     EVP_PKEY_CTX *pctx;
214
215     if (!TEST_ptr(pctx = EVP_MD_CTX_pkey_ctx(mctx))
216         || !TEST_int_gt(EVP_PKEY_CTX_set1_id(pctx, sm2_id, sizeof(sm2_id)), 0))
217         return 0;
218     return 1;
219 }
220
221 static int test_builtin(int n, int as)
222 {
223     EC_KEY *eckey_neg = NULL, *eckey = NULL;
224     unsigned char dirt, offset, tbs[128];
225     unsigned char *sig = NULL;
226     EVP_PKEY *pkey_neg = NULL, *pkey = NULL;
227     EVP_MD_CTX *mctx = NULL;
228     size_t sig_len;
229     int nid, ret = 0;
230     int temp;
231
232     nid = curves[n].nid;
233
234     /* skip built-in curves where ord(G) is not prime */
235     if (nid == NID_ipsec4 || nid == NID_ipsec3) {
236         TEST_info("skipped: ECDSA unsupported for curve %s", OBJ_nid2sn(nid));
237         return 1;
238     }
239
240     TEST_info("testing ECDSA for curve %s as %s key type", OBJ_nid2sn(nid),
241               as == EVP_PKEY_EC ? "EC" : "SM2");
242
243     if (!TEST_ptr(mctx = EVP_MD_CTX_new())
244         /* get some random message data */
245         || !TEST_true(RAND_bytes(tbs, sizeof(tbs)))
246         /* real key */
247         || !TEST_ptr(eckey = EC_KEY_new_by_curve_name(nid))
248         || !TEST_true(EC_KEY_generate_key(eckey))
249         || !TEST_ptr(pkey = EVP_PKEY_new())
250         || !TEST_true(EVP_PKEY_assign_EC_KEY(pkey, eckey))
251         /* fake key for negative testing */
252         || !TEST_ptr(eckey_neg = EC_KEY_new_by_curve_name(nid))
253         || !TEST_true(EC_KEY_generate_key(eckey_neg))
254         || !TEST_ptr(pkey_neg = EVP_PKEY_new())
255         || !TEST_false(EVP_PKEY_assign_EC_KEY(pkey_neg, NULL))
256         || !TEST_true(EVP_PKEY_assign_EC_KEY(pkey_neg, eckey_neg)))
257         goto err;
258
259     temp = ECDSA_size(eckey);
260
261     /*
262      * |as| indicates how we want to treat the key, i.e. what sort of
263      * computation we want to do with it.  The two choices are the key
264      * types EVP_PKEY_EC and EVP_PKEY_SM2.  It's perfectly possible to
265      * switch back and forth between those two key types, regardless of
266      * curve, even though the default is to have EVP_PKEY_SM2 for the
267      * SM2 curve and EVP_PKEY_EC for all other curves.
268      */
269     if (!TEST_true(EVP_PKEY_set_alias_type(pkey, as))
270         || !TEST_true(EVP_PKEY_set_alias_type(pkey_neg, as)))
271             goto err;
272
273     if (!TEST_int_ge(temp, 0)
274         || !TEST_ptr(sig = OPENSSL_malloc(sig_len = (size_t)temp))
275         /* create a signature */
276         || !TEST_true(EVP_DigestSignInit(mctx, NULL, NULL, NULL, pkey))
277         || (as == EVP_PKEY_SM2 && !set_sm2_id(mctx, pkey))
278         || !TEST_true(EVP_DigestSign(mctx, sig, &sig_len, tbs, sizeof(tbs)))
279         || !TEST_int_le(sig_len, ECDSA_size(eckey))
280         || !TEST_true(EVP_MD_CTX_reset(mctx))
281         /* negative test, verify with wrong key, 0 return */
282         || !TEST_true(EVP_DigestVerifyInit(mctx, NULL, NULL, NULL, pkey_neg))
283         || (as == EVP_PKEY_SM2 && !set_sm2_id(mctx, pkey_neg))
284         || !TEST_int_eq(EVP_DigestVerify(mctx, sig, sig_len, tbs, sizeof(tbs)), 0)
285         || !TEST_true(EVP_MD_CTX_reset(mctx))
286         /* negative test, verify with wrong signature length, -1 return */
287         || !TEST_true(EVP_DigestVerifyInit(mctx, NULL, NULL, NULL, pkey))
288         || (as == EVP_PKEY_SM2 && !set_sm2_id(mctx, pkey))
289         || !TEST_int_eq(EVP_DigestVerify(mctx, sig, sig_len - 1, tbs, sizeof(tbs)), -1)
290         || !TEST_true(EVP_MD_CTX_reset(mctx))
291         /* positive test, verify with correct key, 1 return */
292         || !TEST_true(EVP_DigestVerifyInit(mctx, NULL, NULL, NULL, pkey))
293         || (as == EVP_PKEY_SM2 && !set_sm2_id(mctx, pkey))
294         || !TEST_int_eq(EVP_DigestVerify(mctx, sig, sig_len, tbs, sizeof(tbs)), 1)
295         || !TEST_true(EVP_MD_CTX_reset(mctx)))
296         goto err;
297
298     /* muck with the message, test it fails with 0 return */
299     tbs[0] ^= 1;
300     if (!TEST_true(EVP_DigestVerifyInit(mctx, NULL, NULL, NULL, pkey))
301         || (as == EVP_PKEY_SM2 && !set_sm2_id(mctx, pkey))
302         || !TEST_int_eq(EVP_DigestVerify(mctx, sig, sig_len, tbs, sizeof(tbs)), 0)
303         || !TEST_true(EVP_MD_CTX_reset(mctx)))
304         goto err;
305     /* un-muck and test it verifies */
306     tbs[0] ^= 1;
307     if (!TEST_true(EVP_DigestVerifyInit(mctx, NULL, NULL, NULL, pkey))
308         || (as == EVP_PKEY_SM2 && !set_sm2_id(mctx, pkey))
309         || !TEST_int_eq(EVP_DigestVerify(mctx, sig, sig_len, tbs, sizeof(tbs)), 1)
310         || !TEST_true(EVP_MD_CTX_reset(mctx)))
311         goto err;
312
313     /*-
314      * Muck with the ECDSA signature. The DER encoding is one of:
315      * - 30 LL 02 ..
316      * - 30 81 LL 02 ..
317      *
318      * - Sometimes this mucks with the high level DER sequence wrapper:
319      *   in that case, DER-parsing of the whole signature should fail.
320      *
321      * - Sometimes this mucks with the DER-encoding of ECDSA.r:
322      *   in that case, DER-parsing of ECDSA.r should fail.
323      *
324      * - Sometimes this mucks with the DER-encoding of ECDSA.s:
325      *   in that case, DER-parsing of ECDSA.s should fail.
326      *
327      * - Sometimes this mucks with ECDSA.r:
328      *   in that case, the signature verification should fail.
329      *
330      * - Sometimes this mucks with ECDSA.s:
331      *   in that case, the signature verification should fail.
332      *
333      * The usual case is changing the integer value of ECDSA.r or ECDSA.s.
334      * Because the ratio of DER overhead to signature bytes is small.
335      * So most of the time it will be one of the last two cases.
336      *
337      * In any case, EVP_PKEY_verify should not return 1 for valid.
338      */
339     offset = tbs[0] % sig_len;
340     dirt = tbs[1] ? tbs[1] : 1;
341     sig[offset] ^= dirt;
342     if (!TEST_true(EVP_DigestVerifyInit(mctx, NULL, NULL, NULL, pkey))
343         || (as == EVP_PKEY_SM2 && !set_sm2_id(mctx, pkey))
344         || !TEST_int_ne(EVP_DigestVerify(mctx, sig, sig_len, tbs, sizeof(tbs)), 1)
345         || !TEST_true(EVP_MD_CTX_reset(mctx)))
346         goto err;
347     /* un-muck and test it verifies */
348     sig[offset] ^= dirt;
349     if (!TEST_true(EVP_DigestVerifyInit(mctx, NULL, NULL, NULL, pkey))
350         || (as == EVP_PKEY_SM2 && !set_sm2_id(mctx, pkey))
351         || !TEST_int_eq(EVP_DigestVerify(mctx, sig, sig_len, tbs, sizeof(tbs)), 1)
352         || !TEST_true(EVP_MD_CTX_reset(mctx)))
353         goto err;
354
355     ret = 1;
356  err:
357     EVP_PKEY_free(pkey);
358     EVP_PKEY_free(pkey_neg);
359     EVP_MD_CTX_free(mctx);
360     OPENSSL_free(sig);
361     return ret;
362 }
363
364 static int test_builtin_as_ec(int n)
365 {
366     return test_builtin(n, EVP_PKEY_EC);
367 }
368
369 # ifndef OPENSSL_NO_SM2
370 static int test_builtin_as_sm2(int n)
371 {
372     return test_builtin(n, EVP_PKEY_SM2);
373 }
374 # endif
375 #endif /* OPENSSL_NO_EC */
376
377 int setup_tests(void)
378 {
379 #ifdef OPENSSL_NO_EC
380     TEST_note("Elliptic curves are disabled.");
381 #else
382     /* get a list of all internal curves */
383     crv_len = EC_get_builtin_curves(NULL, 0);
384     if (!TEST_ptr(curves = OPENSSL_malloc(sizeof(*curves) * crv_len))
385         || !TEST_true(EC_get_builtin_curves(curves, crv_len)))
386         return 0;
387     ADD_ALL_TESTS(test_builtin_as_ec, crv_len);
388 # ifndef OPENSSL_NO_SM2
389     ADD_ALL_TESTS(test_builtin_as_sm2, crv_len);
390 # endif
391     ADD_ALL_TESTS(x9_62_tests, OSSL_NELEM(ecdsa_cavs_kats));
392 #endif
393     return 1;
394 }
395
396 void cleanup_tests(void)
397 {
398 #ifndef OPENSSL_NO_EC
399     OPENSSL_free(curves);
400 #endif
401 }