6c9f4b8ece52b431d884a987c5ae26d1f019a47f
[openssl.git] / test / evp_test.c
1 /*
2  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3  * project.
4  */
5 /* ====================================================================
6  * Copyright (c) 2015 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  */
53
54 #include <stdio.h>
55 #include <string.h>
56 #include <stdlib.h>
57 #include <ctype.h>
58 #include <openssl/evp.h>
59 #include <openssl/pem.h>
60 #include <openssl/err.h>
61 #include <openssl/x509v3.h>
62 #include <openssl/pkcs12.h>
63 #include <openssl/kdf.h>
64 #include "internal/numbers.h"
65
66 /* Remove spaces from beginning and end of a string */
67
68 static void remove_space(char **pval)
69 {
70     unsigned char *p = (unsigned char *)*pval;
71
72     while (isspace(*p))
73         p++;
74
75     *pval = (char *)p;
76
77     p = p + strlen(*pval) - 1;
78
79     /* Remove trailing space */
80     while (isspace(*p))
81         *p-- = 0;
82 }
83
84 /*
85  * Given a line of the form:
86  *      name = value # comment
87  * extract name and value. NB: modifies passed buffer.
88  */
89
90 static int parse_line(char **pkw, char **pval, char *linebuf)
91 {
92     char *p;
93
94     p = linebuf + strlen(linebuf) - 1;
95
96     if (*p != '\n') {
97         fprintf(stderr, "FATAL: missing EOL\n");
98         exit(1);
99     }
100
101     /* Look for # */
102
103     p = strchr(linebuf, '#');
104
105     if (p)
106         *p = '\0';
107
108     /* Look for = sign */
109     p = strchr(linebuf, '=');
110
111     /* If no '=' exit */
112     if (!p)
113         return 0;
114
115     *p++ = '\0';
116
117     *pkw = linebuf;
118     *pval = p;
119
120     /* Remove spaces from keyword and value */
121     remove_space(pkw);
122     remove_space(pval);
123
124     return 1;
125 }
126
127 /*
128  * Unescape some escape sequences in string literals.
129  * Return the result in a newly allocated buffer.
130  * Currently only supports '\n'.
131  * If the input length is 0, returns a valid 1-byte buffer, but sets
132  * the length to 0.
133  */
134 static unsigned char* unescape(const char *input, size_t input_len,
135                                size_t *out_len)
136 {
137     unsigned char *ret, *p;
138     size_t i;
139     if (input_len == 0) {
140         *out_len = 0;
141         return OPENSSL_zalloc(1);
142     }
143
144     /* Escaping is non-expanding; over-allocate original size for simplicity. */
145     ret = p = OPENSSL_malloc(input_len);
146     if (ret == NULL)
147         return NULL;
148
149     for (i = 0; i < input_len; i++) {
150         if (input[i] == '\\') {
151             if (i == input_len - 1 || input[i+1] != 'n')
152                 goto err;
153             *p++ = '\n';
154             i++;
155         } else {
156             *p++ = input[i];
157         }
158     }
159
160     *out_len = p - ret;
161     return ret;
162
163  err:
164     OPENSSL_free(ret);
165     return NULL;
166 }
167
168 /* For a hex string "value" convert to a binary allocated buffer */
169 static int test_bin(const char *value, unsigned char **buf, size_t *buflen)
170 {
171     long len;
172
173     *buflen = 0;
174     if (!*value) {
175         /*
176          * Don't return NULL for zero length buffer.
177          * This is needed for some tests with empty keys: HMAC_Init_ex() expects
178          * a non-NULL key buffer even if the key length is 0, in order to detect
179          * key reset.
180          */
181         *buf = OPENSSL_malloc(1);
182         if (!*buf)
183             return 0;
184         **buf = 0;
185         *buflen = 0;
186         return 1;
187     }
188     /* Check for string literal */
189     if (value[0] == '"') {
190         size_t vlen;
191         value++;
192         vlen = strlen(value);
193         if (value[vlen - 1] != '"')
194             return 0;
195         vlen--;
196         *buf = unescape(value, vlen, buflen);
197         if (*buf == NULL)
198             return 0;
199         return 1;
200     }
201
202     *buf = string_to_hex(value, &len);
203     if (!*buf) {
204         fprintf(stderr, "Value=%s\n", value);
205         ERR_print_errors_fp(stderr);
206         return -1;
207     }
208     /* Size of input buffer means we'll never overflow */
209     *buflen = len;
210     return 1;
211 }
212 /* Parse unsigned decimal 64 bit integer value */
213 static int test_uint64(const char *value, uint64_t *pr)
214 {
215     const char *p = value;
216     if (!*p) {
217         fprintf(stderr, "Invalid empty integer value\n");
218         return -1;
219     }
220     *pr = 0;
221     while (*p) {
222         if (*pr > UINT64_MAX/10) {
223             fprintf(stderr, "Integer string overflow value=%s\n", value);
224             return -1;
225         }
226         *pr *= 10;
227         if (*p < '0' || *p > '9') {
228             fprintf(stderr, "Invalid integer string value=%s\n", value);
229             return -1;
230         }
231         *pr += *p - '0';
232         p++;
233     }
234     return 1;
235 }
236
237 /* Structure holding test information */
238 struct evp_test {
239     /* file being read */
240     FILE *in;
241     /* List of public and private keys */
242     struct key_list *private;
243     struct key_list *public;
244     /* method for this test */
245     const struct evp_test_method *meth;
246     /* current line being processed */
247     unsigned int line;
248     /* start line of current test */
249     unsigned int start_line;
250     /* Error string for test */
251     const char *err;
252     /* Expected error value of test */
253     char *expected_err;
254     /* Number of tests */
255     int ntests;
256     /* Error count */
257     int errors;
258     /* Number of tests skipped */
259     int nskip;
260     /* If output mismatch expected and got value */
261     unsigned char *out_received;
262     size_t out_received_len;
263     unsigned char *out_expected;
264     size_t out_expected_len;
265     /* test specific data */
266     void *data;
267     /* Current test should be skipped */
268     int skip;
269 };
270
271 struct key_list {
272     char *name;
273     EVP_PKEY *key;
274     struct key_list *next;
275 };
276
277 /* Test method structure */
278 struct evp_test_method {
279     /* Name of test as it appears in file */
280     const char *name;
281     /* Initialise test for "alg" */
282     int (*init) (struct evp_test * t, const char *alg);
283     /* Clean up method */
284     void (*cleanup) (struct evp_test * t);
285     /* Test specific name value pair processing */
286     int (*parse) (struct evp_test * t, const char *name, const char *value);
287     /* Run the test itself */
288     int (*run_test) (struct evp_test * t);
289 };
290
291 static const struct evp_test_method digest_test_method, cipher_test_method;
292 static const struct evp_test_method mac_test_method;
293 static const struct evp_test_method psign_test_method, pverify_test_method;
294 static const struct evp_test_method pdecrypt_test_method;
295 static const struct evp_test_method pverify_recover_test_method;
296 static const struct evp_test_method pderive_test_method;
297 static const struct evp_test_method pbe_test_method;
298 static const struct evp_test_method encode_test_method;
299 static const struct evp_test_method kdf_test_method;
300
301 static const struct evp_test_method *evp_test_list[] = {
302     &digest_test_method,
303     &cipher_test_method,
304     &mac_test_method,
305     &psign_test_method,
306     &pverify_test_method,
307     &pdecrypt_test_method,
308     &pverify_recover_test_method,
309     &pderive_test_method,
310     &pbe_test_method,
311     &encode_test_method,
312     &kdf_test_method,
313     NULL
314 };
315
316 static const struct evp_test_method *evp_find_test(const char *name)
317 {
318     const struct evp_test_method **tt;
319
320     for (tt = evp_test_list; *tt; tt++) {
321         if (strcmp(name, (*tt)->name) == 0)
322             return *tt;
323     }
324     return NULL;
325 }
326
327 static void hex_print(const char *name, const unsigned char *buf, size_t len)
328 {
329     size_t i;
330     fprintf(stderr, "%s ", name);
331     for (i = 0; i < len; i++)
332         fprintf(stderr, "%02X", buf[i]);
333     fputs("\n", stderr);
334 }
335
336 static void free_expected(struct evp_test *t)
337 {
338     OPENSSL_free(t->expected_err);
339     t->expected_err = NULL;
340     OPENSSL_free(t->out_expected);
341     OPENSSL_free(t->out_received);
342     t->out_expected = NULL;
343     t->out_received = NULL;
344     t->out_expected_len = 0;
345     t->out_received_len = 0;
346     /* Literals. */
347     t->err = NULL;
348 }
349
350 static void print_expected(struct evp_test *t)
351 {
352     if (t->out_expected == NULL && t->out_received == NULL)
353         return;
354     hex_print("Expected:", t->out_expected, t->out_expected_len);
355     hex_print("Got:     ", t->out_received, t->out_received_len);
356     free_expected(t);
357 }
358
359 static int check_test_error(struct evp_test *t)
360 {
361     if (!t->err && !t->expected_err)
362         return 1;
363     if (t->err && !t->expected_err) {
364         fprintf(stderr, "Test line %d: unexpected error %s\n",
365                 t->start_line, t->err);
366         print_expected(t);
367         return 0;
368     }
369     if (!t->err && t->expected_err) {
370         fprintf(stderr, "Test line %d: succeeded expecting %s\n",
371                 t->start_line, t->expected_err);
372         return 0;
373     }
374     if (strcmp(t->err, t->expected_err) == 0)
375         return 1;
376
377     fprintf(stderr, "Test line %d: expecting %s got %s\n",
378             t->start_line, t->expected_err, t->err);
379     return 0;
380 }
381
382 /* Setup a new test, run any existing test */
383
384 static int setup_test(struct evp_test *t, const struct evp_test_method *tmeth)
385 {
386     /* If we already have a test set up run it */
387     if (t->meth) {
388         t->ntests++;
389         if (t->skip) {
390             t->meth = tmeth;
391             t->nskip++;
392             return 1;
393         }
394         t->err = NULL;
395         if (t->meth->run_test(t) != 1) {
396             fprintf(stderr, "%s test error line %d\n",
397                     t->meth->name, t->start_line);
398             return 0;
399         }
400         if (!check_test_error(t)) {
401             if (t->err)
402                 ERR_print_errors_fp(stderr);
403             t->errors++;
404         }
405         ERR_clear_error();
406         t->meth->cleanup(t);
407         OPENSSL_free(t->data);
408         t->data = NULL;
409         OPENSSL_free(t->expected_err);
410         t->expected_err = NULL;
411         free_expected(t);
412     }
413     t->meth = tmeth;
414     return 1;
415 }
416
417 static int find_key(EVP_PKEY **ppk, const char *name, struct key_list *lst)
418 {
419     for (; lst; lst = lst->next) {
420         if (strcmp(lst->name, name) == 0) {
421             if (ppk)
422                 *ppk = lst->key;
423             return 1;
424         }
425     }
426     return 0;
427 }
428
429 static void free_key_list(struct key_list *lst)
430 {
431     while (lst != NULL) {
432         struct key_list *ltmp;
433         EVP_PKEY_free(lst->key);
434         OPENSSL_free(lst->name);
435         ltmp = lst->next;
436         OPENSSL_free(lst);
437         lst = ltmp;
438     }
439 }
440
441 static int check_unsupported()
442 {
443     long err = ERR_peek_error();
444     if (ERR_GET_LIB(err) == ERR_LIB_EVP
445         && ERR_GET_REASON(err) == EVP_R_UNSUPPORTED_ALGORITHM) {
446         ERR_clear_error();
447         return 1;
448     }
449     return 0;
450 }
451
452 static int process_test(struct evp_test *t, char *buf, int verbose)
453 {
454     char *keyword = NULL, *value = NULL;
455     int rv = 0, add_key = 0;
456     long save_pos = 0;
457     struct key_list **lst = NULL, *key = NULL;
458     EVP_PKEY *pk = NULL;
459     const struct evp_test_method *tmeth = NULL;
460     if (verbose)
461         fputs(buf, stdout);
462     if (!parse_line(&keyword, &value, buf))
463         return 1;
464     if (strcmp(keyword, "PrivateKey") == 0) {
465         save_pos = ftell(t->in);
466         pk = PEM_read_PrivateKey(t->in, NULL, 0, NULL);
467         if (pk == NULL && !check_unsupported()) {
468             fprintf(stderr, "Error reading private key %s\n", value);
469             ERR_print_errors_fp(stderr);
470             return 0;
471         }
472         lst = &t->private;
473         add_key = 1;
474     }
475     if (strcmp(keyword, "PublicKey") == 0) {
476         save_pos = ftell(t->in);
477         pk = PEM_read_PUBKEY(t->in, NULL, 0, NULL);
478         if (pk == NULL && !check_unsupported()) {
479             fprintf(stderr, "Error reading public key %s\n", value);
480             ERR_print_errors_fp(stderr);
481             return 0;
482         }
483         lst = &t->public;
484         add_key = 1;
485     }
486     /* If we have a key add to list */
487     if (add_key) {
488         char tmpbuf[80];
489         if (find_key(NULL, value, *lst)) {
490             fprintf(stderr, "Duplicate key %s\n", value);
491             return 0;
492         }
493         key = OPENSSL_malloc(sizeof(*key));
494         if (!key)
495             return 0;
496         key->name = OPENSSL_strdup(value);
497         key->key = pk;
498         key->next = *lst;
499         *lst = key;
500         /* Rewind input, read to end and update line numbers */
501         fseek(t->in, save_pos, SEEK_SET);
502         while (fgets(tmpbuf, sizeof(tmpbuf), t->in)) {
503             t->line++;
504             if (strncmp(tmpbuf, "-----END", 8) == 0)
505                 return 1;
506         }
507         fprintf(stderr, "Can't find key end\n");
508         return 0;
509     }
510
511     /* See if keyword corresponds to a test start */
512     tmeth = evp_find_test(keyword);
513     if (tmeth) {
514         if (!setup_test(t, tmeth))
515             return 0;
516         t->start_line = t->line;
517         t->skip = 0;
518         if (!tmeth->init(t, value)) {
519             fprintf(stderr, "Unknown %s: %s\n", keyword, value);
520             return 0;
521         }
522         return 1;
523     } else if (t->skip) {
524         return 1;
525     } else if (strcmp(keyword, "Result") == 0) {
526         if (t->expected_err) {
527             fprintf(stderr, "Line %d: multiple result lines\n", t->line);
528             return 0;
529         }
530         t->expected_err = OPENSSL_strdup(value);
531         if (!t->expected_err)
532             return 0;
533     } else {
534         /* Must be test specific line: try to parse it */
535         if (t->meth)
536             rv = t->meth->parse(t, keyword, value);
537
538         if (rv == 0)
539             fprintf(stderr, "line %d: unexpected keyword %s\n",
540                     t->line, keyword);
541
542         if (rv < 0)
543             fprintf(stderr, "line %d: error processing keyword %s\n",
544                     t->line, keyword);
545         if (rv <= 0)
546             return 0;
547     }
548     return 1;
549 }
550
551 static int check_var_length_output(struct evp_test *t,
552                                    const unsigned char *expected,
553                                    size_t expected_len,
554                                    const unsigned char *received,
555                                    size_t received_len)
556 {
557     if (expected_len == received_len &&
558         memcmp(expected, received, expected_len) == 0) {
559         return 0;
560     }
561
562     /* The result printing code expects a non-NULL buffer. */
563     t->out_expected = OPENSSL_memdup(expected, expected_len ? expected_len : 1);
564     t->out_expected_len = expected_len;
565     t->out_received = OPENSSL_memdup(received, received_len ? received_len : 1);
566     t->out_received_len = received_len;
567     if (t->out_expected == NULL || t->out_received == NULL) {
568         fprintf(stderr, "Memory allocation error!\n");
569         exit(1);
570     }
571     return 1;
572 }
573
574 static int check_output(struct evp_test *t,
575                         const unsigned char *expected,
576                         const unsigned char *received,
577                         size_t len)
578 {
579     return check_var_length_output(t, expected, len, received, len);
580 }
581
582 int main(int argc, char **argv)
583 {
584     FILE *in = NULL;
585     char buf[10240];
586     struct evp_test t;
587
588     if (argc != 2) {
589         fprintf(stderr, "usage: evp_test testfile.txt\n");
590         return 1;
591     }
592
593     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
594
595     ERR_load_crypto_strings();
596     OpenSSL_add_all_algorithms();
597
598     memset(&t, 0, sizeof(t));
599     t.start_line = -1;
600     in = fopen(argv[1], "r");
601     t.in = in;
602     while (fgets(buf, sizeof(buf), in)) {
603         t.line++;
604         if (!process_test(&t, buf, 0))
605             exit(1);
606     }
607     /* Run any final test we have */
608     if (!setup_test(&t, NULL))
609         exit(1);
610     fprintf(stderr, "%d tests completed with %d errors, %d skipped\n",
611             t.ntests, t.errors, t.nskip);
612     free_key_list(t.public);
613     free_key_list(t.private);
614     fclose(in);
615     EVP_cleanup();
616     CRYPTO_cleanup_all_ex_data();
617     ERR_remove_thread_state(NULL);
618     ERR_free_strings();
619 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
620     CRYPTO_mem_leaks_fp(stderr);
621 #endif
622     if (t.errors)
623         return 1;
624     return 0;
625 }
626
627 static void test_free(void *d)
628 {
629     OPENSSL_free(d);
630 }
631
632 /* Message digest tests */
633
634 struct digest_data {
635     /* Digest this test is for */
636     const EVP_MD *digest;
637     /* Input to digest */
638     unsigned char *input;
639     size_t input_len;
640     /* Repeat count for input */
641     size_t nrpt;
642     /* Expected output */
643     unsigned char *output;
644     size_t output_len;
645 };
646
647 static int digest_test_init(struct evp_test *t, const char *alg)
648 {
649     const EVP_MD *digest;
650     struct digest_data *mdat;
651     digest = EVP_get_digestbyname(alg);
652     if (!digest) {
653         /* If alg has an OID assume disabled algorithm */
654         if (OBJ_sn2nid(alg) != NID_undef || OBJ_ln2nid(alg) != NID_undef) {
655             t->skip = 1;
656             return 1;
657         }
658         return 0;
659     }
660     mdat = OPENSSL_malloc(sizeof(*mdat));
661     mdat->digest = digest;
662     mdat->input = NULL;
663     mdat->output = NULL;
664     mdat->nrpt = 1;
665     t->data = mdat;
666     return 1;
667 }
668
669 static void digest_test_cleanup(struct evp_test *t)
670 {
671     struct digest_data *mdat = t->data;
672     test_free(mdat->input);
673     test_free(mdat->output);
674 }
675
676 static int digest_test_parse(struct evp_test *t,
677                              const char *keyword, const char *value)
678 {
679     struct digest_data *mdata = t->data;
680     if (strcmp(keyword, "Input") == 0)
681         return test_bin(value, &mdata->input, &mdata->input_len);
682     if (strcmp(keyword, "Output") == 0)
683         return test_bin(value, &mdata->output, &mdata->output_len);
684     if (strcmp(keyword, "Count") == 0) {
685         long nrpt = atoi(value);
686         if (nrpt <= 0)
687             return 0;
688         mdata->nrpt = (size_t)nrpt;
689         return 1;
690     }
691     return 0;
692 }
693
694 static int digest_test_run(struct evp_test *t)
695 {
696     struct digest_data *mdata = t->data;
697     size_t i;
698     const char *err = "INTERNAL_ERROR";
699     EVP_MD_CTX *mctx;
700     unsigned char md[EVP_MAX_MD_SIZE];
701     unsigned int md_len;
702     mctx = EVP_MD_CTX_new();
703     if (!mctx)
704         goto err;
705     err = "DIGESTINIT_ERROR";
706     if (!EVP_DigestInit_ex(mctx, mdata->digest, NULL))
707         goto err;
708     err = "DIGESTUPDATE_ERROR";
709     for (i = 0; i < mdata->nrpt; i++) {
710         if (!EVP_DigestUpdate(mctx, mdata->input, mdata->input_len))
711             goto err;
712     }
713     err = "DIGESTFINAL_ERROR";
714     if (!EVP_DigestFinal(mctx, md, &md_len))
715         goto err;
716     err = "DIGEST_LENGTH_MISMATCH";
717     if (md_len != mdata->output_len)
718         goto err;
719     err = "DIGEST_MISMATCH";
720     if (check_output(t, mdata->output, md, md_len))
721         goto err;
722     err = NULL;
723  err:
724     EVP_MD_CTX_free(mctx);
725     t->err = err;
726     return 1;
727 }
728
729 static const struct evp_test_method digest_test_method = {
730     "Digest",
731     digest_test_init,
732     digest_test_cleanup,
733     digest_test_parse,
734     digest_test_run
735 };
736
737 /* Cipher tests */
738 struct cipher_data {
739     const EVP_CIPHER *cipher;
740     int enc;
741     /* EVP_CIPH_GCM_MODE, EVP_CIPH_CCM_MODE or EVP_CIPH_OCB_MODE if AEAD */
742     int aead;
743     unsigned char *key;
744     size_t key_len;
745     unsigned char *iv;
746     size_t iv_len;
747     unsigned char *plaintext;
748     size_t plaintext_len;
749     unsigned char *ciphertext;
750     size_t ciphertext_len;
751     /* GCM, CCM only */
752     unsigned char *aad;
753     size_t aad_len;
754     unsigned char *tag;
755     size_t tag_len;
756 };
757
758 static int cipher_test_init(struct evp_test *t, const char *alg)
759 {
760     const EVP_CIPHER *cipher;
761     struct cipher_data *cdat = t->data;
762     cipher = EVP_get_cipherbyname(alg);
763     if (!cipher) {
764         /* If alg has an OID assume disabled algorithm */
765         if (OBJ_sn2nid(alg) != NID_undef || OBJ_ln2nid(alg) != NID_undef) {
766             t->skip = 1;
767             return 1;
768         }
769         return 0;
770     }
771     cdat = OPENSSL_malloc(sizeof(*cdat));
772     cdat->cipher = cipher;
773     cdat->enc = -1;
774     cdat->key = NULL;
775     cdat->iv = NULL;
776     cdat->ciphertext = NULL;
777     cdat->plaintext = NULL;
778     cdat->aad = NULL;
779     cdat->tag = NULL;
780     t->data = cdat;
781     if (EVP_CIPHER_mode(cipher) == EVP_CIPH_GCM_MODE
782         || EVP_CIPHER_mode(cipher) == EVP_CIPH_OCB_MODE
783         || EVP_CIPHER_mode(cipher) == EVP_CIPH_CCM_MODE)
784         cdat->aead = EVP_CIPHER_mode(cipher);
785     else if (EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER)
786         cdat->aead = -1;
787     else
788         cdat->aead = 0;
789
790     return 1;
791 }
792
793 static void cipher_test_cleanup(struct evp_test *t)
794 {
795     struct cipher_data *cdat = t->data;
796     test_free(cdat->key);
797     test_free(cdat->iv);
798     test_free(cdat->ciphertext);
799     test_free(cdat->plaintext);
800     test_free(cdat->aad);
801     test_free(cdat->tag);
802 }
803
804 static int cipher_test_parse(struct evp_test *t, const char *keyword,
805                              const char *value)
806 {
807     struct cipher_data *cdat = t->data;
808     if (strcmp(keyword, "Key") == 0)
809         return test_bin(value, &cdat->key, &cdat->key_len);
810     if (strcmp(keyword, "IV") == 0)
811         return test_bin(value, &cdat->iv, &cdat->iv_len);
812     if (strcmp(keyword, "Plaintext") == 0)
813         return test_bin(value, &cdat->plaintext, &cdat->plaintext_len);
814     if (strcmp(keyword, "Ciphertext") == 0)
815         return test_bin(value, &cdat->ciphertext, &cdat->ciphertext_len);
816     if (cdat->aead) {
817         if (strcmp(keyword, "AAD") == 0)
818             return test_bin(value, &cdat->aad, &cdat->aad_len);
819         if (strcmp(keyword, "Tag") == 0)
820             return test_bin(value, &cdat->tag, &cdat->tag_len);
821     }
822
823     if (strcmp(keyword, "Operation") == 0) {
824         if (strcmp(value, "ENCRYPT") == 0)
825             cdat->enc = 1;
826         else if (strcmp(value, "DECRYPT") == 0)
827             cdat->enc = 0;
828         else
829             return 0;
830         return 1;
831     }
832     return 0;
833 }
834
835 static int cipher_test_enc(struct evp_test *t, int enc)
836 {
837     struct cipher_data *cdat = t->data;
838     unsigned char *in, *out, *tmp = NULL;
839     size_t in_len, out_len;
840     int tmplen, tmpflen;
841     EVP_CIPHER_CTX *ctx = NULL;
842     const char *err;
843     err = "INTERNAL_ERROR";
844     ctx = EVP_CIPHER_CTX_new();
845     if (!ctx)
846         goto err;
847     EVP_CIPHER_CTX_set_flags(ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);
848     if (enc) {
849         in = cdat->plaintext;
850         in_len = cdat->plaintext_len;
851         out = cdat->ciphertext;
852         out_len = cdat->ciphertext_len;
853     } else {
854         in = cdat->ciphertext;
855         in_len = cdat->ciphertext_len;
856         out = cdat->plaintext;
857         out_len = cdat->plaintext_len;
858     }
859     tmp = OPENSSL_malloc(in_len + 2 * EVP_MAX_BLOCK_LENGTH);
860     if (!tmp)
861         goto err;
862     err = "CIPHERINIT_ERROR";
863     if (!EVP_CipherInit_ex(ctx, cdat->cipher, NULL, NULL, NULL, enc))
864         goto err;
865     err = "INVALID_IV_LENGTH";
866     if (cdat->iv) {
867         if (cdat->aead) {
868             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN,
869                                      cdat->iv_len, 0))
870                 goto err;
871         } else if (cdat->iv_len != (size_t)EVP_CIPHER_CTX_iv_length(ctx))
872             goto err;
873     }
874     if (cdat->aead) {
875         unsigned char *tag;
876         /*
877          * If encrypting or OCB just set tag length initially, otherwise
878          * set tag length and value.
879          */
880         if (enc || cdat->aead == EVP_CIPH_OCB_MODE) {
881             err = "TAG_LENGTH_SET_ERROR";
882             tag = NULL;
883         } else {
884             err = "TAG_SET_ERROR";
885             tag = cdat->tag;
886         }
887         if (tag || cdat->aead != EVP_CIPH_GCM_MODE) {
888             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG,
889                                      cdat->tag_len, tag))
890                 goto err;
891         }
892     }
893
894     err = "INVALID_KEY_LENGTH";
895     if (!EVP_CIPHER_CTX_set_key_length(ctx, cdat->key_len))
896         goto err;
897     err = "KEY_SET_ERROR";
898     if (!EVP_CipherInit_ex(ctx, NULL, NULL, cdat->key, cdat->iv, -1))
899         goto err;
900
901     if (!enc && cdat->aead == EVP_CIPH_OCB_MODE) {
902         if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG,
903                                  cdat->tag_len, cdat->tag)) {
904             err = "TAG_SET_ERROR";
905             goto err;
906         }
907     }
908
909     if (cdat->aead == EVP_CIPH_CCM_MODE) {
910         if (!EVP_CipherUpdate(ctx, NULL, &tmplen, NULL, out_len)) {
911             err = "CCM_PLAINTEXT_LENGTH_SET_ERROR";
912             goto err;
913         }
914     }
915     if (cdat->aad) {
916         if (!EVP_CipherUpdate(ctx, NULL, &tmplen, cdat->aad, cdat->aad_len)) {
917             err = "AAD_SET_ERROR";
918             goto err;
919         }
920     }
921     EVP_CIPHER_CTX_set_padding(ctx, 0);
922     err = "CIPHERUPDATE_ERROR";
923     if (!EVP_CipherUpdate(ctx, tmp, &tmplen, in, in_len))
924         goto err;
925     if (cdat->aead == EVP_CIPH_CCM_MODE)
926         tmpflen = 0;
927     else {
928         err = "CIPHERFINAL_ERROR";
929         if (!EVP_CipherFinal_ex(ctx, tmp + tmplen, &tmpflen))
930             goto err;
931     }
932     err = "LENGTH_MISMATCH";
933     if (out_len != (size_t)(tmplen + tmpflen))
934         goto err;
935     err = "VALUE_MISMATCH";
936     if (check_output(t, out, tmp, out_len))
937         goto err;
938     if (enc && cdat->aead) {
939         unsigned char rtag[16];
940         if (cdat->tag_len > sizeof(rtag)) {
941             err = "TAG_LENGTH_INTERNAL_ERROR";
942             goto err;
943         }
944         if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_GET_TAG,
945                                  cdat->tag_len, rtag)) {
946             err = "TAG_RETRIEVE_ERROR";
947             goto err;
948         }
949         if (check_output(t, cdat->tag, rtag, cdat->tag_len)) {
950             err = "TAG_VALUE_MISMATCH";
951             goto err;
952         }
953     }
954     err = NULL;
955  err:
956     OPENSSL_free(tmp);
957     EVP_CIPHER_CTX_free(ctx);
958     t->err = err;
959     return err ? 0 : 1;
960 }
961
962 static int cipher_test_run(struct evp_test *t)
963 {
964     struct cipher_data *cdat = t->data;
965     int rv;
966     if (!cdat->key) {
967         t->err = "NO_KEY";
968         return 0;
969     }
970     if (!cdat->iv && EVP_CIPHER_iv_length(cdat->cipher)) {
971         /* IV is optional and usually omitted in wrap mode */
972         if (EVP_CIPHER_mode(cdat->cipher) != EVP_CIPH_WRAP_MODE) {
973             t->err = "NO_IV";
974             return 0;
975         }
976     }
977     if (cdat->aead && !cdat->tag) {
978         t->err = "NO_TAG";
979         return 0;
980     }
981     if (cdat->enc) {
982         rv = cipher_test_enc(t, 1);
983         /* Not fatal errors: return */
984         if (rv != 1) {
985             if (rv < 0)
986                 return 0;
987             return 1;
988         }
989     }
990     if (cdat->enc != 1) {
991         rv = cipher_test_enc(t, 0);
992         /* Not fatal errors: return */
993         if (rv != 1) {
994             if (rv < 0)
995                 return 0;
996             return 1;
997         }
998     }
999     return 1;
1000 }
1001
1002 static const struct evp_test_method cipher_test_method = {
1003     "Cipher",
1004     cipher_test_init,
1005     cipher_test_cleanup,
1006     cipher_test_parse,
1007     cipher_test_run
1008 };
1009
1010 struct mac_data {
1011     /* MAC type */
1012     int type;
1013     /* Algorithm string for this MAC */
1014     char *alg;
1015     /* MAC key */
1016     unsigned char *key;
1017     size_t key_len;
1018     /* Input to MAC */
1019     unsigned char *input;
1020     size_t input_len;
1021     /* Expected output */
1022     unsigned char *output;
1023     size_t output_len;
1024 };
1025
1026 static int mac_test_init(struct evp_test *t, const char *alg)
1027 {
1028     int type;
1029     struct mac_data *mdat;
1030     if (strcmp(alg, "HMAC") == 0)
1031         type = EVP_PKEY_HMAC;
1032     else if (strcmp(alg, "CMAC") == 0)
1033         type = EVP_PKEY_CMAC;
1034     else
1035         return 0;
1036
1037     mdat = OPENSSL_malloc(sizeof(*mdat));
1038     mdat->type = type;
1039     mdat->alg = NULL;
1040     mdat->key = NULL;
1041     mdat->input = NULL;
1042     mdat->output = NULL;
1043     t->data = mdat;
1044     return 1;
1045 }
1046
1047 static void mac_test_cleanup(struct evp_test *t)
1048 {
1049     struct mac_data *mdat = t->data;
1050     test_free(mdat->alg);
1051     test_free(mdat->key);
1052     test_free(mdat->input);
1053     test_free(mdat->output);
1054 }
1055
1056 static int mac_test_parse(struct evp_test *t,
1057                           const char *keyword, const char *value)
1058 {
1059     struct mac_data *mdata = t->data;
1060     if (strcmp(keyword, "Key") == 0)
1061         return test_bin(value, &mdata->key, &mdata->key_len);
1062     if (strcmp(keyword, "Algorithm") == 0) {
1063         mdata->alg = OPENSSL_strdup(value);
1064         if (!mdata->alg)
1065             return 0;
1066         return 1;
1067     }
1068     if (strcmp(keyword, "Input") == 0)
1069         return test_bin(value, &mdata->input, &mdata->input_len);
1070     if (strcmp(keyword, "Output") == 0)
1071         return test_bin(value, &mdata->output, &mdata->output_len);
1072     return 0;
1073 }
1074
1075 static int mac_test_run(struct evp_test *t)
1076 {
1077     struct mac_data *mdata = t->data;
1078     const char *err = "INTERNAL_ERROR";
1079     EVP_MD_CTX *mctx = NULL;
1080     EVP_PKEY_CTX *pctx = NULL, *genctx = NULL;
1081     EVP_PKEY *key = NULL;
1082     const EVP_MD *md = NULL;
1083     unsigned char *mac = NULL;
1084     size_t mac_len;
1085
1086     err = "MAC_PKEY_CTX_ERROR";
1087     genctx = EVP_PKEY_CTX_new_id(mdata->type, NULL);
1088     if (!genctx)
1089         goto err;
1090
1091     err = "MAC_KEYGEN_INIT_ERROR";
1092     if (EVP_PKEY_keygen_init(genctx) <= 0)
1093         goto err;
1094     if (mdata->type == EVP_PKEY_CMAC) {
1095         err = "MAC_ALGORITHM_SET_ERROR";
1096         if (EVP_PKEY_CTX_ctrl_str(genctx, "cipher", mdata->alg) <= 0)
1097             goto err;
1098     }
1099
1100     err = "MAC_KEY_SET_ERROR";
1101     if (EVP_PKEY_CTX_set_mac_key(genctx, mdata->key, mdata->key_len) <= 0)
1102         goto err;
1103
1104     err = "MAC_KEY_GENERATE_ERROR";
1105     if (EVP_PKEY_keygen(genctx, &key) <= 0)
1106         goto err;
1107     if (mdata->type == EVP_PKEY_HMAC) {
1108         err = "MAC_ALGORITHM_SET_ERROR";
1109         md = EVP_get_digestbyname(mdata->alg);
1110         if (!md)
1111             goto err;
1112     }
1113     mctx = EVP_MD_CTX_new();
1114     if (!mctx)
1115         goto err;
1116     err = "DIGESTSIGNINIT_ERROR";
1117     if (!EVP_DigestSignInit(mctx, &pctx, md, NULL, key))
1118         goto err;
1119
1120     err = "DIGESTSIGNUPDATE_ERROR";
1121     if (!EVP_DigestSignUpdate(mctx, mdata->input, mdata->input_len))
1122         goto err;
1123     err = "DIGESTSIGNFINAL_LENGTH_ERROR";
1124     if (!EVP_DigestSignFinal(mctx, NULL, &mac_len))
1125         goto err;
1126     mac = OPENSSL_malloc(mac_len);
1127     if (!mac) {
1128         fprintf(stderr, "Error allocating mac buffer!\n");
1129         exit(1);
1130     }
1131     if (!EVP_DigestSignFinal(mctx, mac, &mac_len))
1132         goto err;
1133     err = "MAC_LENGTH_MISMATCH";
1134     if (mac_len != mdata->output_len)
1135         goto err;
1136     err = "MAC_MISMATCH";
1137     if (check_output(t, mdata->output, mac, mac_len))
1138         goto err;
1139     err = NULL;
1140  err:
1141     EVP_MD_CTX_free(mctx);
1142     OPENSSL_free(mac);
1143     EVP_PKEY_CTX_free(genctx);
1144     EVP_PKEY_free(key);
1145     t->err = err;
1146     return 1;
1147 }
1148
1149 static const struct evp_test_method mac_test_method = {
1150     "MAC",
1151     mac_test_init,
1152     mac_test_cleanup,
1153     mac_test_parse,
1154     mac_test_run
1155 };
1156
1157 /*
1158  * Public key operations. These are all very similar and can share
1159  * a lot of common code.
1160  */
1161
1162 struct pkey_data {
1163     /* Context for this operation */
1164     EVP_PKEY_CTX *ctx;
1165     /* Key operation to perform */
1166     int (*keyop) (EVP_PKEY_CTX *ctx,
1167                   unsigned char *sig, size_t *siglen,
1168                   const unsigned char *tbs, size_t tbslen);
1169     /* Input to MAC */
1170     unsigned char *input;
1171     size_t input_len;
1172     /* Expected output */
1173     unsigned char *output;
1174     size_t output_len;
1175 };
1176
1177 /*
1178  * Perform public key operation setup: lookup key, allocated ctx and call
1179  * the appropriate initialisation function
1180  */
1181 static int pkey_test_init(struct evp_test *t, const char *name,
1182                           int use_public,
1183                           int (*keyopinit) (EVP_PKEY_CTX *ctx),
1184                           int (*keyop) (EVP_PKEY_CTX *ctx,
1185                                         unsigned char *sig, size_t *siglen,
1186                                         const unsigned char *tbs,
1187                                         size_t tbslen)
1188     )
1189 {
1190     struct pkey_data *kdata;
1191     EVP_PKEY *pkey = NULL;
1192     int rv = 0;
1193     if (use_public)
1194         rv = find_key(&pkey, name, t->public);
1195     if (!rv)
1196         rv = find_key(&pkey, name, t->private);
1197     if (!rv)
1198         return 0;
1199     if (!pkey) {
1200         t->skip = 1;
1201         return 1;
1202     }
1203
1204     kdata = OPENSSL_malloc(sizeof(*kdata));
1205     if (!kdata) {
1206         EVP_PKEY_free(pkey);
1207         return 0;
1208     }
1209     kdata->ctx = NULL;
1210     kdata->input = NULL;
1211     kdata->output = NULL;
1212     kdata->keyop = keyop;
1213     t->data = kdata;
1214     kdata->ctx = EVP_PKEY_CTX_new(pkey, NULL);
1215     if (!kdata->ctx)
1216         return 0;
1217     if (keyopinit(kdata->ctx) <= 0)
1218         return 0;
1219     return 1;
1220 }
1221
1222 static void pkey_test_cleanup(struct evp_test *t)
1223 {
1224     struct pkey_data *kdata = t->data;
1225
1226     OPENSSL_free(kdata->input);
1227     OPENSSL_free(kdata->output);
1228     EVP_PKEY_CTX_free(kdata->ctx);
1229 }
1230
1231 static int pkey_test_ctrl(EVP_PKEY_CTX *pctx, const char *value)
1232 {
1233     int rv;
1234     char *p, *tmpval;
1235
1236     tmpval = OPENSSL_strdup(value);
1237     if (tmpval == NULL)
1238         return 0;
1239     p = strchr(tmpval, ':');
1240     if (p != NULL)
1241         *p++ = 0;
1242     rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p);
1243     OPENSSL_free(tmpval);
1244     return rv > 0;
1245 }
1246
1247 static int pkey_test_parse(struct evp_test *t,
1248                            const char *keyword, const char *value)
1249 {
1250     struct pkey_data *kdata = t->data;
1251     if (strcmp(keyword, "Input") == 0)
1252         return test_bin(value, &kdata->input, &kdata->input_len);
1253     if (strcmp(keyword, "Output") == 0)
1254         return test_bin(value, &kdata->output, &kdata->output_len);
1255     if (strcmp(keyword, "Ctrl") == 0)
1256         return pkey_test_ctrl(kdata->ctx, value);
1257     return 0;
1258 }
1259
1260 static int pkey_test_run(struct evp_test *t)
1261 {
1262     struct pkey_data *kdata = t->data;
1263     unsigned char *out = NULL;
1264     size_t out_len;
1265     const char *err = "KEYOP_LENGTH_ERROR";
1266     if (kdata->keyop(kdata->ctx, NULL, &out_len, kdata->input,
1267                      kdata->input_len) <= 0)
1268         goto err;
1269     out = OPENSSL_malloc(out_len);
1270     if (!out) {
1271         fprintf(stderr, "Error allocating output buffer!\n");
1272         exit(1);
1273     }
1274     err = "KEYOP_ERROR";
1275     if (kdata->keyop
1276         (kdata->ctx, out, &out_len, kdata->input, kdata->input_len) <= 0)
1277         goto err;
1278     err = "KEYOP_LENGTH_MISMATCH";
1279     if (out_len != kdata->output_len)
1280         goto err;
1281     err = "KEYOP_MISMATCH";
1282     if (check_output(t, kdata->output, out, out_len))
1283         goto err;
1284     err = NULL;
1285  err:
1286     OPENSSL_free(out);
1287     t->err = err;
1288     return 1;
1289 }
1290
1291 static int sign_test_init(struct evp_test *t, const char *name)
1292 {
1293     return pkey_test_init(t, name, 0, EVP_PKEY_sign_init, EVP_PKEY_sign);
1294 }
1295
1296 static const struct evp_test_method psign_test_method = {
1297     "Sign",
1298     sign_test_init,
1299     pkey_test_cleanup,
1300     pkey_test_parse,
1301     pkey_test_run
1302 };
1303
1304 static int verify_recover_test_init(struct evp_test *t, const char *name)
1305 {
1306     return pkey_test_init(t, name, 1, EVP_PKEY_verify_recover_init,
1307                           EVP_PKEY_verify_recover);
1308 }
1309
1310 static const struct evp_test_method pverify_recover_test_method = {
1311     "VerifyRecover",
1312     verify_recover_test_init,
1313     pkey_test_cleanup,
1314     pkey_test_parse,
1315     pkey_test_run
1316 };
1317
1318 static int decrypt_test_init(struct evp_test *t, const char *name)
1319 {
1320     return pkey_test_init(t, name, 0, EVP_PKEY_decrypt_init,
1321                           EVP_PKEY_decrypt);
1322 }
1323
1324 static const struct evp_test_method pdecrypt_test_method = {
1325     "Decrypt",
1326     decrypt_test_init,
1327     pkey_test_cleanup,
1328     pkey_test_parse,
1329     pkey_test_run
1330 };
1331
1332 static int verify_test_init(struct evp_test *t, const char *name)
1333 {
1334     return pkey_test_init(t, name, 1, EVP_PKEY_verify_init, 0);
1335 }
1336
1337 static int verify_test_run(struct evp_test *t)
1338 {
1339     struct pkey_data *kdata = t->data;
1340     if (EVP_PKEY_verify(kdata->ctx, kdata->output, kdata->output_len,
1341                         kdata->input, kdata->input_len) <= 0)
1342         t->err = "VERIFY_ERROR";
1343     return 1;
1344 }
1345
1346 static const struct evp_test_method pverify_test_method = {
1347     "Verify",
1348     verify_test_init,
1349     pkey_test_cleanup,
1350     pkey_test_parse,
1351     verify_test_run
1352 };
1353
1354
1355 static int pderive_test_init(struct evp_test *t, const char *name)
1356 {
1357     return pkey_test_init(t, name, 0, EVP_PKEY_derive_init, 0);
1358 }
1359
1360 static int pderive_test_parse(struct evp_test *t,
1361                               const char *keyword, const char *value)
1362 {
1363     struct pkey_data *kdata = t->data;
1364
1365     if (strcmp(keyword, "PeerKey") == 0) {
1366         EVP_PKEY *peer;
1367         if (find_key(&peer, value, t->public) == 0)
1368             return 0;
1369         if (EVP_PKEY_derive_set_peer(kdata->ctx, peer) <= 0)
1370             return 0;
1371         return 1;
1372     }
1373     if (strcmp(keyword, "SharedSecret") == 0)
1374         return test_bin(value, &kdata->output, &kdata->output_len);
1375     if (strcmp(keyword, "Ctrl") == 0)
1376         return pkey_test_ctrl(kdata->ctx, value);
1377     return 0;
1378 }
1379
1380 static int pderive_test_run(struct evp_test *t)
1381 {
1382     struct pkey_data *kdata = t->data;
1383     unsigned char *out = NULL;
1384     size_t out_len;
1385     const char *err = "INTERNAL_ERROR";
1386
1387     out_len = kdata->output_len;
1388     out = OPENSSL_malloc(out_len);
1389     if (!out) {
1390         fprintf(stderr, "Error allocating output buffer!\n");
1391         exit(1);
1392     }
1393     err = "DERIVE_ERROR";
1394     if (EVP_PKEY_derive(kdata->ctx, out, &out_len) <= 0)
1395         goto err;
1396     err = "SHARED_SECRET_LENGTH_MISMATCH";
1397     if (out_len != kdata->output_len)
1398         goto err;
1399     err = "SHARED_SECRET_MISMATCH";
1400     if (check_output(t, kdata->output, out, out_len))
1401         goto err;
1402     err = NULL;
1403  err:
1404     OPENSSL_free(out);
1405     t->err = err;
1406     return 1;
1407 }
1408
1409 static const struct evp_test_method pderive_test_method = {
1410     "Derive",
1411     pderive_test_init,
1412     pkey_test_cleanup,
1413     pderive_test_parse,
1414     pderive_test_run
1415 };
1416
1417 /* PBE tests */
1418
1419 #define PBE_TYPE_SCRYPT 1
1420 #define PBE_TYPE_PBKDF2 2
1421 #define PBE_TYPE_PKCS12 3
1422
1423 struct pbe_data {
1424
1425     int pbe_type;
1426
1427     /* scrypt parameters */
1428     uint64_t N, r, p, maxmem;
1429
1430     /* PKCS#12 parameters */
1431     int id, iter;
1432     const EVP_MD *md;
1433
1434     /* password */
1435     unsigned char *pass;
1436     size_t pass_len;
1437
1438     /* salt */
1439     unsigned char *salt;
1440     size_t salt_len;
1441
1442     /* Expected output */
1443     unsigned char *key;
1444     size_t key_len;
1445 };
1446
1447 #ifndef OPENSSL_NO_SCRYPT
1448 static int scrypt_test_parse(struct evp_test *t,
1449                              const char *keyword, const char *value)
1450 {
1451     struct pbe_data *pdata = t->data;
1452
1453     if (strcmp(keyword, "N") == 0)
1454         return test_uint64(value, &pdata->N);
1455     if (strcmp(keyword, "p") == 0)
1456         return test_uint64(value, &pdata->p);
1457     if (strcmp(keyword, "r") == 0)
1458         return test_uint64(value, &pdata->r);
1459     if (strcmp(keyword, "maxmem") == 0)
1460         return test_uint64(value, &pdata->maxmem);
1461     return 0;
1462 }
1463 #endif
1464
1465 static int pbkdf2_test_parse(struct evp_test *t,
1466                              const char *keyword, const char *value)
1467 {
1468     struct pbe_data *pdata = t->data;
1469
1470     if (strcmp(keyword, "iter") == 0) {
1471         pdata->iter = atoi(value);
1472         if (pdata->iter <= 0)
1473             return 0;
1474         return 1;
1475     }
1476     if (strcmp(keyword, "MD") == 0) {
1477         pdata->md = EVP_get_digestbyname(value);
1478         if (pdata->md == NULL)
1479             return 0;
1480         return 1;
1481     }
1482     return 0;
1483 }
1484
1485 static int pkcs12_test_parse(struct evp_test *t,
1486                              const char *keyword, const char *value)
1487 {
1488     struct pbe_data *pdata = t->data;
1489
1490     if (strcmp(keyword, "id") == 0) {
1491         pdata->id = atoi(value);
1492         if (pdata->id <= 0)
1493             return 0;
1494         return 1;
1495     }
1496     return pbkdf2_test_parse(t, keyword, value);
1497 }
1498
1499 static int pbe_test_init(struct evp_test *t, const char *alg)
1500 {
1501     struct pbe_data *pdat;
1502     int pbe_type = 0;
1503
1504 #ifndef OPENSSL_NO_SCRYPT
1505     if (strcmp(alg, "scrypt") == 0)
1506         pbe_type = PBE_TYPE_SCRYPT;
1507 #endif
1508     else if (strcmp(alg, "pbkdf2") == 0)
1509         pbe_type = PBE_TYPE_PBKDF2;
1510     else if (strcmp(alg, "pkcs12") == 0)
1511         pbe_type = PBE_TYPE_PKCS12;
1512     else
1513         fprintf(stderr, "Unknown pbe algorithm %s\n", alg);
1514     pdat = OPENSSL_malloc(sizeof(*pdat));
1515     pdat->pbe_type = pbe_type;
1516     pdat->pass = NULL;
1517     pdat->salt = NULL;
1518     pdat->N = 0;
1519     pdat->r = 0;
1520     pdat->p = 0;
1521     pdat->maxmem = 0;
1522     pdat->id = 0;
1523     pdat->iter = 0;
1524     pdat->md = NULL;
1525     t->data = pdat;
1526     return 1;
1527 }
1528
1529 static void pbe_test_cleanup(struct evp_test *t)
1530 {
1531     struct pbe_data *pdat = t->data;
1532     test_free(pdat->pass);
1533     test_free(pdat->salt);
1534     test_free(pdat->key);
1535 }
1536
1537 static int pbe_test_parse(struct evp_test *t,
1538                              const char *keyword, const char *value)
1539 {
1540     struct pbe_data *pdata = t->data;
1541
1542     if (strcmp(keyword, "Password") == 0)
1543         return test_bin(value, &pdata->pass, &pdata->pass_len);
1544     if (strcmp(keyword, "Salt") == 0)
1545         return test_bin(value, &pdata->salt, &pdata->salt_len);
1546     if (strcmp(keyword, "Key") == 0)
1547         return test_bin(value, &pdata->key, &pdata->key_len);
1548     if (pdata->pbe_type == PBE_TYPE_PBKDF2)
1549         return pbkdf2_test_parse(t, keyword, value);
1550     else if (pdata->pbe_type == PBE_TYPE_PKCS12)
1551         return pkcs12_test_parse(t, keyword, value);
1552 #ifndef OPENSSL_NO_SCRYPT
1553     else if (pdata->pbe_type == PBE_TYPE_SCRYPT)
1554         return scrypt_test_parse(t, keyword, value);
1555 #endif
1556     return 0;
1557 }
1558
1559 static int pbe_test_run(struct evp_test *t)
1560 {
1561     struct pbe_data *pdata = t->data;
1562     const char *err = "INTERNAL_ERROR";
1563     unsigned char *key;
1564
1565     key = OPENSSL_malloc(pdata->key_len);
1566     if (!key)
1567         goto err;
1568     if (pdata->pbe_type == PBE_TYPE_PBKDF2) {
1569         err = "PBKDF2_ERROR";
1570         if (PKCS5_PBKDF2_HMAC((char *)pdata->pass, pdata->pass_len,
1571                               pdata->salt, pdata->salt_len,
1572                               pdata->iter, pdata->md,
1573                               pdata->key_len, key) == 0)
1574             goto err;
1575 #ifndef OPENSSL_NO_SCRYPT
1576     } else if (pdata->pbe_type == PBE_TYPE_SCRYPT) {
1577         err = "SCRYPT_ERROR";
1578         if (EVP_PBE_scrypt((const char *)pdata->pass, pdata->pass_len,
1579                            pdata->salt, pdata->salt_len,
1580                            pdata->N, pdata->r, pdata->p, pdata->maxmem,
1581                            key, pdata->key_len) == 0)
1582             goto err;
1583 #endif
1584     } else if (pdata->pbe_type == PBE_TYPE_PKCS12) {
1585         err = "PKCS12_ERROR";
1586         if (PKCS12_key_gen_uni(pdata->pass, pdata->pass_len,
1587                                pdata->salt, pdata->salt_len,
1588                                pdata->id, pdata->iter, pdata->key_len,
1589                                key, pdata->md) == 0)
1590             goto err;
1591     }
1592     err = "KEY_MISMATCH";
1593     if (check_output(t, pdata->key, key, pdata->key_len))
1594         goto err;
1595     err = NULL;
1596     err:
1597     OPENSSL_free(key);
1598     t->err = err;
1599     return 1;
1600 }
1601
1602 static const struct evp_test_method pbe_test_method = {
1603     "PBE",
1604     pbe_test_init,
1605     pbe_test_cleanup,
1606     pbe_test_parse,
1607     pbe_test_run
1608 };
1609
1610 /* Base64 tests */
1611
1612 typedef enum {
1613     BASE64_CANONICAL_ENCODING = 0,
1614     BASE64_VALID_ENCODING = 1,
1615     BASE64_INVALID_ENCODING = 2
1616 } base64_encoding_type;
1617
1618 struct encode_data {
1619     /* Input to encoding */
1620     unsigned char *input;
1621     size_t input_len;
1622     /* Expected output */
1623     unsigned char *output;
1624     size_t output_len;
1625     base64_encoding_type encoding;
1626 };
1627
1628 static int encode_test_init(struct evp_test *t, const char *encoding)
1629 {
1630     struct encode_data *edata = OPENSSL_zalloc(sizeof(*edata));
1631
1632     if (strcmp(encoding, "canonical") == 0) {
1633         edata->encoding = BASE64_CANONICAL_ENCODING;
1634     } else if (strcmp(encoding, "valid") == 0) {
1635         edata->encoding = BASE64_VALID_ENCODING;
1636     } else if (strcmp(encoding, "invalid") == 0) {
1637         edata->encoding = BASE64_INVALID_ENCODING;
1638         t->expected_err = OPENSSL_strdup("DECODE_ERROR");
1639         if (t->expected_err == NULL)
1640             return 0;
1641     } else {
1642         fprintf(stderr, "Bad encoding: %s. Should be one of "
1643                 "{canonical, valid, invalid}\n", encoding);
1644         return 0;
1645     }
1646     t->data = edata;
1647     return 1;
1648 }
1649
1650 static void encode_test_cleanup(struct evp_test *t)
1651 {
1652     struct encode_data *edata = t->data;
1653     test_free(edata->input);
1654     test_free(edata->output);
1655     memset(edata, 0, sizeof(*edata));
1656 }
1657
1658 static int encode_test_parse(struct evp_test *t,
1659                              const char *keyword, const char *value)
1660 {
1661     struct encode_data *edata = t->data;
1662     if (strcmp(keyword, "Input") == 0)
1663         return test_bin(value, &edata->input, &edata->input_len);
1664     if (strcmp(keyword, "Output") == 0)
1665         return test_bin(value, &edata->output, &edata->output_len);
1666     return 0;
1667 }
1668
1669 static int encode_test_run(struct evp_test *t)
1670 {
1671     struct encode_data *edata = t->data;
1672     unsigned char *encode_out = NULL, *decode_out = NULL;
1673     int output_len, chunk_len;
1674     const char *err = "INTERNAL_ERROR";
1675     EVP_ENCODE_CTX *decode_ctx = EVP_ENCODE_CTX_new();
1676
1677     if (decode_ctx == NULL)
1678         goto err;
1679
1680     if (edata->encoding == BASE64_CANONICAL_ENCODING) {
1681         EVP_ENCODE_CTX *encode_ctx = EVP_ENCODE_CTX_new();
1682         if (encode_ctx == NULL)
1683             goto err;
1684         encode_out = OPENSSL_malloc(EVP_ENCODE_LENGTH(edata->input_len));
1685         if (encode_out == NULL)
1686             goto err;
1687
1688         EVP_EncodeInit(encode_ctx);
1689         EVP_EncodeUpdate(encode_ctx, encode_out, &chunk_len,
1690                          edata->input, edata->input_len);
1691         output_len = chunk_len;
1692
1693         EVP_EncodeFinal(encode_ctx, encode_out + chunk_len, &chunk_len);
1694         output_len += chunk_len;
1695
1696         EVP_ENCODE_CTX_free(encode_ctx);
1697
1698         if (check_var_length_output(t, edata->output, edata->output_len,
1699                                     encode_out, output_len)) {
1700             err = "BAD_ENCODING";
1701             goto err;
1702         }
1703     }
1704
1705     decode_out = OPENSSL_malloc(EVP_DECODE_LENGTH(edata->output_len));
1706     if (decode_out == NULL)
1707         goto err;
1708
1709     EVP_DecodeInit(decode_ctx);
1710     if (EVP_DecodeUpdate(decode_ctx, decode_out, &chunk_len, edata->output,
1711                          edata->output_len) < 0) {
1712         err = "DECODE_ERROR";
1713         goto err;
1714     }
1715     output_len = chunk_len;
1716
1717     if (EVP_DecodeFinal(decode_ctx, decode_out + chunk_len, &chunk_len) != 1) {
1718         err = "DECODE_ERROR";
1719         goto err;
1720     }
1721     output_len += chunk_len;
1722
1723     if (edata->encoding != BASE64_INVALID_ENCODING &&
1724         check_var_length_output(t, edata->input, edata->input_len,
1725                                 decode_out, output_len)) {
1726         err = "BAD_DECODING";
1727         goto err;
1728     }
1729
1730     err = NULL;
1731  err:
1732     t->err = err;
1733     OPENSSL_free(encode_out);
1734     OPENSSL_free(decode_out);
1735     EVP_ENCODE_CTX_free(decode_ctx);
1736     return 1;
1737 }
1738
1739 static const struct evp_test_method encode_test_method = {
1740     "Encoding",
1741     encode_test_init,
1742     encode_test_cleanup,
1743     encode_test_parse,
1744     encode_test_run,
1745 };
1746
1747 /*
1748  * KDF operations: initially just TLS1 PRF but can be adapted.
1749  */
1750
1751 struct kdf_data {
1752     /* Context for this operation */
1753     EVP_PKEY_CTX *ctx;
1754     /* Expected output */
1755     unsigned char *output;
1756     size_t output_len;
1757 };
1758
1759 /*
1760  * Perform public key operation setup: lookup key, allocated ctx and call
1761  * the appropriate initialisation function
1762  */
1763 static int kdf_test_init(struct evp_test *t, const char *name)
1764 {
1765     struct kdf_data *kdata;
1766
1767     kdata = OPENSSL_malloc(sizeof(*kdata));
1768     if (kdata == NULL)
1769         return 0;
1770     kdata->ctx = NULL;
1771     kdata->output = NULL;
1772     t->data = kdata;
1773     kdata->ctx = EVP_PKEY_CTX_new_id(OBJ_sn2nid(name), NULL);
1774     if (kdata->ctx == NULL)
1775         return 0;
1776     if (EVP_PKEY_derive_init(kdata->ctx) <= 0)
1777         return 0;
1778     return 1;
1779 }
1780
1781 static void kdf_test_cleanup(struct evp_test *t)
1782 {
1783     struct kdf_data *kdata = t->data;
1784     OPENSSL_free(kdata->output);
1785     EVP_PKEY_CTX_free(kdata->ctx);
1786 }
1787
1788 static int kdf_ctrl(EVP_PKEY_CTX *ctx, int op, const char *value)
1789 {
1790     unsigned char *buf = NULL;
1791     size_t buf_len;
1792     int rv = 0;
1793     if (test_bin(value, &buf, &buf_len) == 0)
1794         return 0;
1795     if (EVP_PKEY_CTX_ctrl(ctx, -1, -1, op, buf_len, buf) <= 0)
1796         goto err;
1797     rv = 1;
1798     err:
1799     OPENSSL_free(buf);
1800     return rv;
1801 }
1802
1803 static int kdf_test_parse(struct evp_test *t,
1804                           const char *keyword, const char *value)
1805 {
1806     struct kdf_data *kdata = t->data;
1807     if (strcmp(keyword, "Output") == 0)
1808         return test_bin(value, &kdata->output, &kdata->output_len);
1809     else if (strcmp(keyword, "MD") == 0) {
1810         const EVP_MD *md = EVP_get_digestbyname(value);
1811         if (md == NULL)
1812             return 0;
1813         if (EVP_PKEY_CTX_set_tls1_prf_md(kdata->ctx, md) <= 0)
1814             return 0;
1815         return 1;
1816     } else if (strcmp(keyword, "Secret") == 0) {
1817         return kdf_ctrl(kdata->ctx, EVP_PKEY_CTRL_TLS_SECRET, value);
1818     } else if (strncmp("Seed", keyword, 4) == 0) {
1819         return kdf_ctrl(kdata->ctx, EVP_PKEY_CTRL_TLS_SEED, value);
1820     }
1821     return 0;
1822 }
1823
1824 static int kdf_test_run(struct evp_test *t)
1825 {
1826     struct kdf_data *kdata = t->data;
1827     unsigned char *out = NULL;
1828     size_t out_len = kdata->output_len;
1829     const char *err = "INTERNAL_ERROR";
1830     out = OPENSSL_malloc(out_len);
1831     if (!out) {
1832         fprintf(stderr, "Error allocating output buffer!\n");
1833         exit(1);
1834     }
1835     err = "KDF_DERIVE_ERROR";
1836     if (EVP_PKEY_derive(kdata->ctx, out, &out_len) <= 0)
1837         goto err;
1838     err = "KDF_LENGTH_MISMATCH";
1839     if (out_len != kdata->output_len)
1840         goto err;
1841     err = "KDF_MISMATCH";
1842     if (check_output(t, kdata->output, out, out_len))
1843         goto err;
1844     err = NULL;
1845  err:
1846     OPENSSL_free(out);
1847     t->err = err;
1848     return 1;
1849 }
1850
1851 static const struct evp_test_method kdf_test_method = {
1852     "KDF",
1853     kdf_test_init,
1854     kdf_test_cleanup,
1855     kdf_test_parse,
1856     kdf_test_run
1857 };