If memory debugging enabled return error on leaks.
[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     if (CRYPTO_mem_leaks_fp(stderr) <= 0)
621         return 1;
622 #endif
623     if (t.errors)
624         return 1;
625     return 0;
626 }
627
628 static void test_free(void *d)
629 {
630     OPENSSL_free(d);
631 }
632
633 /* Message digest tests */
634
635 struct digest_data {
636     /* Digest this test is for */
637     const EVP_MD *digest;
638     /* Input to digest */
639     unsigned char *input;
640     size_t input_len;
641     /* Repeat count for input */
642     size_t nrpt;
643     /* Expected output */
644     unsigned char *output;
645     size_t output_len;
646 };
647
648 static int digest_test_init(struct evp_test *t, const char *alg)
649 {
650     const EVP_MD *digest;
651     struct digest_data *mdat;
652     digest = EVP_get_digestbyname(alg);
653     if (!digest) {
654         /* If alg has an OID assume disabled algorithm */
655         if (OBJ_sn2nid(alg) != NID_undef || OBJ_ln2nid(alg) != NID_undef) {
656             t->skip = 1;
657             return 1;
658         }
659         return 0;
660     }
661     mdat = OPENSSL_malloc(sizeof(*mdat));
662     mdat->digest = digest;
663     mdat->input = NULL;
664     mdat->output = NULL;
665     mdat->nrpt = 1;
666     t->data = mdat;
667     return 1;
668 }
669
670 static void digest_test_cleanup(struct evp_test *t)
671 {
672     struct digest_data *mdat = t->data;
673     test_free(mdat->input);
674     test_free(mdat->output);
675 }
676
677 static int digest_test_parse(struct evp_test *t,
678                              const char *keyword, const char *value)
679 {
680     struct digest_data *mdata = t->data;
681     if (strcmp(keyword, "Input") == 0)
682         return test_bin(value, &mdata->input, &mdata->input_len);
683     if (strcmp(keyword, "Output") == 0)
684         return test_bin(value, &mdata->output, &mdata->output_len);
685     if (strcmp(keyword, "Count") == 0) {
686         long nrpt = atoi(value);
687         if (nrpt <= 0)
688             return 0;
689         mdata->nrpt = (size_t)nrpt;
690         return 1;
691     }
692     return 0;
693 }
694
695 static int digest_test_run(struct evp_test *t)
696 {
697     struct digest_data *mdata = t->data;
698     size_t i;
699     const char *err = "INTERNAL_ERROR";
700     EVP_MD_CTX *mctx;
701     unsigned char md[EVP_MAX_MD_SIZE];
702     unsigned int md_len;
703     mctx = EVP_MD_CTX_new();
704     if (!mctx)
705         goto err;
706     err = "DIGESTINIT_ERROR";
707     if (!EVP_DigestInit_ex(mctx, mdata->digest, NULL))
708         goto err;
709     err = "DIGESTUPDATE_ERROR";
710     for (i = 0; i < mdata->nrpt; i++) {
711         if (!EVP_DigestUpdate(mctx, mdata->input, mdata->input_len))
712             goto err;
713     }
714     err = "DIGESTFINAL_ERROR";
715     if (!EVP_DigestFinal(mctx, md, &md_len))
716         goto err;
717     err = "DIGEST_LENGTH_MISMATCH";
718     if (md_len != mdata->output_len)
719         goto err;
720     err = "DIGEST_MISMATCH";
721     if (check_output(t, mdata->output, md, md_len))
722         goto err;
723     err = NULL;
724  err:
725     EVP_MD_CTX_free(mctx);
726     t->err = err;
727     return 1;
728 }
729
730 static const struct evp_test_method digest_test_method = {
731     "Digest",
732     digest_test_init,
733     digest_test_cleanup,
734     digest_test_parse,
735     digest_test_run
736 };
737
738 /* Cipher tests */
739 struct cipher_data {
740     const EVP_CIPHER *cipher;
741     int enc;
742     /* EVP_CIPH_GCM_MODE, EVP_CIPH_CCM_MODE or EVP_CIPH_OCB_MODE if AEAD */
743     int aead;
744     unsigned char *key;
745     size_t key_len;
746     unsigned char *iv;
747     size_t iv_len;
748     unsigned char *plaintext;
749     size_t plaintext_len;
750     unsigned char *ciphertext;
751     size_t ciphertext_len;
752     /* GCM, CCM only */
753     unsigned char *aad;
754     size_t aad_len;
755     unsigned char *tag;
756     size_t tag_len;
757 };
758
759 static int cipher_test_init(struct evp_test *t, const char *alg)
760 {
761     const EVP_CIPHER *cipher;
762     struct cipher_data *cdat = t->data;
763     cipher = EVP_get_cipherbyname(alg);
764     if (!cipher) {
765         /* If alg has an OID assume disabled algorithm */
766         if (OBJ_sn2nid(alg) != NID_undef || OBJ_ln2nid(alg) != NID_undef) {
767             t->skip = 1;
768             return 1;
769         }
770         return 0;
771     }
772     cdat = OPENSSL_malloc(sizeof(*cdat));
773     cdat->cipher = cipher;
774     cdat->enc = -1;
775     cdat->key = NULL;
776     cdat->iv = NULL;
777     cdat->ciphertext = NULL;
778     cdat->plaintext = NULL;
779     cdat->aad = NULL;
780     cdat->tag = NULL;
781     t->data = cdat;
782     if (EVP_CIPHER_mode(cipher) == EVP_CIPH_GCM_MODE
783         || EVP_CIPHER_mode(cipher) == EVP_CIPH_OCB_MODE
784         || EVP_CIPHER_mode(cipher) == EVP_CIPH_CCM_MODE)
785         cdat->aead = EVP_CIPHER_mode(cipher);
786     else if (EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER)
787         cdat->aead = -1;
788     else
789         cdat->aead = 0;
790
791     return 1;
792 }
793
794 static void cipher_test_cleanup(struct evp_test *t)
795 {
796     struct cipher_data *cdat = t->data;
797     test_free(cdat->key);
798     test_free(cdat->iv);
799     test_free(cdat->ciphertext);
800     test_free(cdat->plaintext);
801     test_free(cdat->aad);
802     test_free(cdat->tag);
803 }
804
805 static int cipher_test_parse(struct evp_test *t, const char *keyword,
806                              const char *value)
807 {
808     struct cipher_data *cdat = t->data;
809     if (strcmp(keyword, "Key") == 0)
810         return test_bin(value, &cdat->key, &cdat->key_len);
811     if (strcmp(keyword, "IV") == 0)
812         return test_bin(value, &cdat->iv, &cdat->iv_len);
813     if (strcmp(keyword, "Plaintext") == 0)
814         return test_bin(value, &cdat->plaintext, &cdat->plaintext_len);
815     if (strcmp(keyword, "Ciphertext") == 0)
816         return test_bin(value, &cdat->ciphertext, &cdat->ciphertext_len);
817     if (cdat->aead) {
818         if (strcmp(keyword, "AAD") == 0)
819             return test_bin(value, &cdat->aad, &cdat->aad_len);
820         if (strcmp(keyword, "Tag") == 0)
821             return test_bin(value, &cdat->tag, &cdat->tag_len);
822     }
823
824     if (strcmp(keyword, "Operation") == 0) {
825         if (strcmp(value, "ENCRYPT") == 0)
826             cdat->enc = 1;
827         else if (strcmp(value, "DECRYPT") == 0)
828             cdat->enc = 0;
829         else
830             return 0;
831         return 1;
832     }
833     return 0;
834 }
835
836 static int cipher_test_enc(struct evp_test *t, int enc)
837 {
838     struct cipher_data *cdat = t->data;
839     unsigned char *in, *out, *tmp = NULL;
840     size_t in_len, out_len;
841     int tmplen, tmpflen;
842     EVP_CIPHER_CTX *ctx = NULL;
843     const char *err;
844     err = "INTERNAL_ERROR";
845     ctx = EVP_CIPHER_CTX_new();
846     if (!ctx)
847         goto err;
848     EVP_CIPHER_CTX_set_flags(ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);
849     if (enc) {
850         in = cdat->plaintext;
851         in_len = cdat->plaintext_len;
852         out = cdat->ciphertext;
853         out_len = cdat->ciphertext_len;
854     } else {
855         in = cdat->ciphertext;
856         in_len = cdat->ciphertext_len;
857         out = cdat->plaintext;
858         out_len = cdat->plaintext_len;
859     }
860     tmp = OPENSSL_malloc(in_len + 2 * EVP_MAX_BLOCK_LENGTH);
861     if (!tmp)
862         goto err;
863     err = "CIPHERINIT_ERROR";
864     if (!EVP_CipherInit_ex(ctx, cdat->cipher, NULL, NULL, NULL, enc))
865         goto err;
866     err = "INVALID_IV_LENGTH";
867     if (cdat->iv) {
868         if (cdat->aead) {
869             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN,
870                                      cdat->iv_len, 0))
871                 goto err;
872         } else if (cdat->iv_len != (size_t)EVP_CIPHER_CTX_iv_length(ctx))
873             goto err;
874     }
875     if (cdat->aead) {
876         unsigned char *tag;
877         /*
878          * If encrypting or OCB just set tag length initially, otherwise
879          * set tag length and value.
880          */
881         if (enc || cdat->aead == EVP_CIPH_OCB_MODE) {
882             err = "TAG_LENGTH_SET_ERROR";
883             tag = NULL;
884         } else {
885             err = "TAG_SET_ERROR";
886             tag = cdat->tag;
887         }
888         if (tag || cdat->aead != EVP_CIPH_GCM_MODE) {
889             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG,
890                                      cdat->tag_len, tag))
891                 goto err;
892         }
893     }
894
895     err = "INVALID_KEY_LENGTH";
896     if (!EVP_CIPHER_CTX_set_key_length(ctx, cdat->key_len))
897         goto err;
898     err = "KEY_SET_ERROR";
899     if (!EVP_CipherInit_ex(ctx, NULL, NULL, cdat->key, cdat->iv, -1))
900         goto err;
901
902     if (!enc && cdat->aead == EVP_CIPH_OCB_MODE) {
903         if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG,
904                                  cdat->tag_len, cdat->tag)) {
905             err = "TAG_SET_ERROR";
906             goto err;
907         }
908     }
909
910     if (cdat->aead == EVP_CIPH_CCM_MODE) {
911         if (!EVP_CipherUpdate(ctx, NULL, &tmplen, NULL, out_len)) {
912             err = "CCM_PLAINTEXT_LENGTH_SET_ERROR";
913             goto err;
914         }
915     }
916     if (cdat->aad) {
917         if (!EVP_CipherUpdate(ctx, NULL, &tmplen, cdat->aad, cdat->aad_len)) {
918             err = "AAD_SET_ERROR";
919             goto err;
920         }
921     }
922     EVP_CIPHER_CTX_set_padding(ctx, 0);
923     err = "CIPHERUPDATE_ERROR";
924     if (!EVP_CipherUpdate(ctx, tmp, &tmplen, in, in_len))
925         goto err;
926     if (cdat->aead == EVP_CIPH_CCM_MODE)
927         tmpflen = 0;
928     else {
929         err = "CIPHERFINAL_ERROR";
930         if (!EVP_CipherFinal_ex(ctx, tmp + tmplen, &tmpflen))
931             goto err;
932     }
933     err = "LENGTH_MISMATCH";
934     if (out_len != (size_t)(tmplen + tmpflen))
935         goto err;
936     err = "VALUE_MISMATCH";
937     if (check_output(t, out, tmp, out_len))
938         goto err;
939     if (enc && cdat->aead) {
940         unsigned char rtag[16];
941         if (cdat->tag_len > sizeof(rtag)) {
942             err = "TAG_LENGTH_INTERNAL_ERROR";
943             goto err;
944         }
945         if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_GET_TAG,
946                                  cdat->tag_len, rtag)) {
947             err = "TAG_RETRIEVE_ERROR";
948             goto err;
949         }
950         if (check_output(t, cdat->tag, rtag, cdat->tag_len)) {
951             err = "TAG_VALUE_MISMATCH";
952             goto err;
953         }
954     }
955     err = NULL;
956  err:
957     OPENSSL_free(tmp);
958     EVP_CIPHER_CTX_free(ctx);
959     t->err = err;
960     return err ? 0 : 1;
961 }
962
963 static int cipher_test_run(struct evp_test *t)
964 {
965     struct cipher_data *cdat = t->data;
966     int rv;
967     if (!cdat->key) {
968         t->err = "NO_KEY";
969         return 0;
970     }
971     if (!cdat->iv && EVP_CIPHER_iv_length(cdat->cipher)) {
972         /* IV is optional and usually omitted in wrap mode */
973         if (EVP_CIPHER_mode(cdat->cipher) != EVP_CIPH_WRAP_MODE) {
974             t->err = "NO_IV";
975             return 0;
976         }
977     }
978     if (cdat->aead && !cdat->tag) {
979         t->err = "NO_TAG";
980         return 0;
981     }
982     if (cdat->enc) {
983         rv = cipher_test_enc(t, 1);
984         /* Not fatal errors: return */
985         if (rv != 1) {
986             if (rv < 0)
987                 return 0;
988             return 1;
989         }
990     }
991     if (cdat->enc != 1) {
992         rv = cipher_test_enc(t, 0);
993         /* Not fatal errors: return */
994         if (rv != 1) {
995             if (rv < 0)
996                 return 0;
997             return 1;
998         }
999     }
1000     return 1;
1001 }
1002
1003 static const struct evp_test_method cipher_test_method = {
1004     "Cipher",
1005     cipher_test_init,
1006     cipher_test_cleanup,
1007     cipher_test_parse,
1008     cipher_test_run
1009 };
1010
1011 struct mac_data {
1012     /* MAC type */
1013     int type;
1014     /* Algorithm string for this MAC */
1015     char *alg;
1016     /* MAC key */
1017     unsigned char *key;
1018     size_t key_len;
1019     /* Input to MAC */
1020     unsigned char *input;
1021     size_t input_len;
1022     /* Expected output */
1023     unsigned char *output;
1024     size_t output_len;
1025 };
1026
1027 static int mac_test_init(struct evp_test *t, const char *alg)
1028 {
1029     int type;
1030     struct mac_data *mdat;
1031     if (strcmp(alg, "HMAC") == 0)
1032         type = EVP_PKEY_HMAC;
1033     else if (strcmp(alg, "CMAC") == 0)
1034         type = EVP_PKEY_CMAC;
1035     else
1036         return 0;
1037
1038     mdat = OPENSSL_malloc(sizeof(*mdat));
1039     mdat->type = type;
1040     mdat->alg = NULL;
1041     mdat->key = NULL;
1042     mdat->input = NULL;
1043     mdat->output = NULL;
1044     t->data = mdat;
1045     return 1;
1046 }
1047
1048 static void mac_test_cleanup(struct evp_test *t)
1049 {
1050     struct mac_data *mdat = t->data;
1051     test_free(mdat->alg);
1052     test_free(mdat->key);
1053     test_free(mdat->input);
1054     test_free(mdat->output);
1055 }
1056
1057 static int mac_test_parse(struct evp_test *t,
1058                           const char *keyword, const char *value)
1059 {
1060     struct mac_data *mdata = t->data;
1061     if (strcmp(keyword, "Key") == 0)
1062         return test_bin(value, &mdata->key, &mdata->key_len);
1063     if (strcmp(keyword, "Algorithm") == 0) {
1064         mdata->alg = OPENSSL_strdup(value);
1065         if (!mdata->alg)
1066             return 0;
1067         return 1;
1068     }
1069     if (strcmp(keyword, "Input") == 0)
1070         return test_bin(value, &mdata->input, &mdata->input_len);
1071     if (strcmp(keyword, "Output") == 0)
1072         return test_bin(value, &mdata->output, &mdata->output_len);
1073     return 0;
1074 }
1075
1076 static int mac_test_run(struct evp_test *t)
1077 {
1078     struct mac_data *mdata = t->data;
1079     const char *err = "INTERNAL_ERROR";
1080     EVP_MD_CTX *mctx = NULL;
1081     EVP_PKEY_CTX *pctx = NULL, *genctx = NULL;
1082     EVP_PKEY *key = NULL;
1083     const EVP_MD *md = NULL;
1084     unsigned char *mac = NULL;
1085     size_t mac_len;
1086
1087     err = "MAC_PKEY_CTX_ERROR";
1088     genctx = EVP_PKEY_CTX_new_id(mdata->type, NULL);
1089     if (!genctx)
1090         goto err;
1091
1092     err = "MAC_KEYGEN_INIT_ERROR";
1093     if (EVP_PKEY_keygen_init(genctx) <= 0)
1094         goto err;
1095     if (mdata->type == EVP_PKEY_CMAC) {
1096         err = "MAC_ALGORITHM_SET_ERROR";
1097         if (EVP_PKEY_CTX_ctrl_str(genctx, "cipher", mdata->alg) <= 0)
1098             goto err;
1099     }
1100
1101     err = "MAC_KEY_SET_ERROR";
1102     if (EVP_PKEY_CTX_set_mac_key(genctx, mdata->key, mdata->key_len) <= 0)
1103         goto err;
1104
1105     err = "MAC_KEY_GENERATE_ERROR";
1106     if (EVP_PKEY_keygen(genctx, &key) <= 0)
1107         goto err;
1108     if (mdata->type == EVP_PKEY_HMAC) {
1109         err = "MAC_ALGORITHM_SET_ERROR";
1110         md = EVP_get_digestbyname(mdata->alg);
1111         if (!md)
1112             goto err;
1113     }
1114     mctx = EVP_MD_CTX_new();
1115     if (!mctx)
1116         goto err;
1117     err = "DIGESTSIGNINIT_ERROR";
1118     if (!EVP_DigestSignInit(mctx, &pctx, md, NULL, key))
1119         goto err;
1120
1121     err = "DIGESTSIGNUPDATE_ERROR";
1122     if (!EVP_DigestSignUpdate(mctx, mdata->input, mdata->input_len))
1123         goto err;
1124     err = "DIGESTSIGNFINAL_LENGTH_ERROR";
1125     if (!EVP_DigestSignFinal(mctx, NULL, &mac_len))
1126         goto err;
1127     mac = OPENSSL_malloc(mac_len);
1128     if (!mac) {
1129         fprintf(stderr, "Error allocating mac buffer!\n");
1130         exit(1);
1131     }
1132     if (!EVP_DigestSignFinal(mctx, mac, &mac_len))
1133         goto err;
1134     err = "MAC_LENGTH_MISMATCH";
1135     if (mac_len != mdata->output_len)
1136         goto err;
1137     err = "MAC_MISMATCH";
1138     if (check_output(t, mdata->output, mac, mac_len))
1139         goto err;
1140     err = NULL;
1141  err:
1142     EVP_MD_CTX_free(mctx);
1143     OPENSSL_free(mac);
1144     EVP_PKEY_CTX_free(genctx);
1145     EVP_PKEY_free(key);
1146     t->err = err;
1147     return 1;
1148 }
1149
1150 static const struct evp_test_method mac_test_method = {
1151     "MAC",
1152     mac_test_init,
1153     mac_test_cleanup,
1154     mac_test_parse,
1155     mac_test_run
1156 };
1157
1158 /*
1159  * Public key operations. These are all very similar and can share
1160  * a lot of common code.
1161  */
1162
1163 struct pkey_data {
1164     /* Context for this operation */
1165     EVP_PKEY_CTX *ctx;
1166     /* Key operation to perform */
1167     int (*keyop) (EVP_PKEY_CTX *ctx,
1168                   unsigned char *sig, size_t *siglen,
1169                   const unsigned char *tbs, size_t tbslen);
1170     /* Input to MAC */
1171     unsigned char *input;
1172     size_t input_len;
1173     /* Expected output */
1174     unsigned char *output;
1175     size_t output_len;
1176 };
1177
1178 /*
1179  * Perform public key operation setup: lookup key, allocated ctx and call
1180  * the appropriate initialisation function
1181  */
1182 static int pkey_test_init(struct evp_test *t, const char *name,
1183                           int use_public,
1184                           int (*keyopinit) (EVP_PKEY_CTX *ctx),
1185                           int (*keyop) (EVP_PKEY_CTX *ctx,
1186                                         unsigned char *sig, size_t *siglen,
1187                                         const unsigned char *tbs,
1188                                         size_t tbslen)
1189     )
1190 {
1191     struct pkey_data *kdata;
1192     EVP_PKEY *pkey = NULL;
1193     int rv = 0;
1194     if (use_public)
1195         rv = find_key(&pkey, name, t->public);
1196     if (!rv)
1197         rv = find_key(&pkey, name, t->private);
1198     if (!rv)
1199         return 0;
1200     if (!pkey) {
1201         t->skip = 1;
1202         return 1;
1203     }
1204
1205     kdata = OPENSSL_malloc(sizeof(*kdata));
1206     if (!kdata) {
1207         EVP_PKEY_free(pkey);
1208         return 0;
1209     }
1210     kdata->ctx = NULL;
1211     kdata->input = NULL;
1212     kdata->output = NULL;
1213     kdata->keyop = keyop;
1214     t->data = kdata;
1215     kdata->ctx = EVP_PKEY_CTX_new(pkey, NULL);
1216     if (!kdata->ctx)
1217         return 0;
1218     if (keyopinit(kdata->ctx) <= 0)
1219         return 0;
1220     return 1;
1221 }
1222
1223 static void pkey_test_cleanup(struct evp_test *t)
1224 {
1225     struct pkey_data *kdata = t->data;
1226
1227     OPENSSL_free(kdata->input);
1228     OPENSSL_free(kdata->output);
1229     EVP_PKEY_CTX_free(kdata->ctx);
1230 }
1231
1232 static int pkey_test_ctrl(EVP_PKEY_CTX *pctx, const char *value)
1233 {
1234     int rv;
1235     char *p, *tmpval;
1236
1237     tmpval = OPENSSL_strdup(value);
1238     if (tmpval == NULL)
1239         return 0;
1240     p = strchr(tmpval, ':');
1241     if (p != NULL)
1242         *p++ = 0;
1243     rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p);
1244     OPENSSL_free(tmpval);
1245     return rv > 0;
1246 }
1247
1248 static int pkey_test_parse(struct evp_test *t,
1249                            const char *keyword, const char *value)
1250 {
1251     struct pkey_data *kdata = t->data;
1252     if (strcmp(keyword, "Input") == 0)
1253         return test_bin(value, &kdata->input, &kdata->input_len);
1254     if (strcmp(keyword, "Output") == 0)
1255         return test_bin(value, &kdata->output, &kdata->output_len);
1256     if (strcmp(keyword, "Ctrl") == 0)
1257         return pkey_test_ctrl(kdata->ctx, value);
1258     return 0;
1259 }
1260
1261 static int pkey_test_run(struct evp_test *t)
1262 {
1263     struct pkey_data *kdata = t->data;
1264     unsigned char *out = NULL;
1265     size_t out_len;
1266     const char *err = "KEYOP_LENGTH_ERROR";
1267     if (kdata->keyop(kdata->ctx, NULL, &out_len, kdata->input,
1268                      kdata->input_len) <= 0)
1269         goto err;
1270     out = OPENSSL_malloc(out_len);
1271     if (!out) {
1272         fprintf(stderr, "Error allocating output buffer!\n");
1273         exit(1);
1274     }
1275     err = "KEYOP_ERROR";
1276     if (kdata->keyop
1277         (kdata->ctx, out, &out_len, kdata->input, kdata->input_len) <= 0)
1278         goto err;
1279     err = "KEYOP_LENGTH_MISMATCH";
1280     if (out_len != kdata->output_len)
1281         goto err;
1282     err = "KEYOP_MISMATCH";
1283     if (check_output(t, kdata->output, out, out_len))
1284         goto err;
1285     err = NULL;
1286  err:
1287     OPENSSL_free(out);
1288     t->err = err;
1289     return 1;
1290 }
1291
1292 static int sign_test_init(struct evp_test *t, const char *name)
1293 {
1294     return pkey_test_init(t, name, 0, EVP_PKEY_sign_init, EVP_PKEY_sign);
1295 }
1296
1297 static const struct evp_test_method psign_test_method = {
1298     "Sign",
1299     sign_test_init,
1300     pkey_test_cleanup,
1301     pkey_test_parse,
1302     pkey_test_run
1303 };
1304
1305 static int verify_recover_test_init(struct evp_test *t, const char *name)
1306 {
1307     return pkey_test_init(t, name, 1, EVP_PKEY_verify_recover_init,
1308                           EVP_PKEY_verify_recover);
1309 }
1310
1311 static const struct evp_test_method pverify_recover_test_method = {
1312     "VerifyRecover",
1313     verify_recover_test_init,
1314     pkey_test_cleanup,
1315     pkey_test_parse,
1316     pkey_test_run
1317 };
1318
1319 static int decrypt_test_init(struct evp_test *t, const char *name)
1320 {
1321     return pkey_test_init(t, name, 0, EVP_PKEY_decrypt_init,
1322                           EVP_PKEY_decrypt);
1323 }
1324
1325 static const struct evp_test_method pdecrypt_test_method = {
1326     "Decrypt",
1327     decrypt_test_init,
1328     pkey_test_cleanup,
1329     pkey_test_parse,
1330     pkey_test_run
1331 };
1332
1333 static int verify_test_init(struct evp_test *t, const char *name)
1334 {
1335     return pkey_test_init(t, name, 1, EVP_PKEY_verify_init, 0);
1336 }
1337
1338 static int verify_test_run(struct evp_test *t)
1339 {
1340     struct pkey_data *kdata = t->data;
1341     if (EVP_PKEY_verify(kdata->ctx, kdata->output, kdata->output_len,
1342                         kdata->input, kdata->input_len) <= 0)
1343         t->err = "VERIFY_ERROR";
1344     return 1;
1345 }
1346
1347 static const struct evp_test_method pverify_test_method = {
1348     "Verify",
1349     verify_test_init,
1350     pkey_test_cleanup,
1351     pkey_test_parse,
1352     verify_test_run
1353 };
1354
1355
1356 static int pderive_test_init(struct evp_test *t, const char *name)
1357 {
1358     return pkey_test_init(t, name, 0, EVP_PKEY_derive_init, 0);
1359 }
1360
1361 static int pderive_test_parse(struct evp_test *t,
1362                               const char *keyword, const char *value)
1363 {
1364     struct pkey_data *kdata = t->data;
1365
1366     if (strcmp(keyword, "PeerKey") == 0) {
1367         EVP_PKEY *peer;
1368         if (find_key(&peer, value, t->public) == 0)
1369             return 0;
1370         if (EVP_PKEY_derive_set_peer(kdata->ctx, peer) <= 0)
1371             return 0;
1372         return 1;
1373     }
1374     if (strcmp(keyword, "SharedSecret") == 0)
1375         return test_bin(value, &kdata->output, &kdata->output_len);
1376     if (strcmp(keyword, "Ctrl") == 0)
1377         return pkey_test_ctrl(kdata->ctx, value);
1378     return 0;
1379 }
1380
1381 static int pderive_test_run(struct evp_test *t)
1382 {
1383     struct pkey_data *kdata = t->data;
1384     unsigned char *out = NULL;
1385     size_t out_len;
1386     const char *err = "INTERNAL_ERROR";
1387
1388     out_len = kdata->output_len;
1389     out = OPENSSL_malloc(out_len);
1390     if (!out) {
1391         fprintf(stderr, "Error allocating output buffer!\n");
1392         exit(1);
1393     }
1394     err = "DERIVE_ERROR";
1395     if (EVP_PKEY_derive(kdata->ctx, out, &out_len) <= 0)
1396         goto err;
1397     err = "SHARED_SECRET_LENGTH_MISMATCH";
1398     if (out_len != kdata->output_len)
1399         goto err;
1400     err = "SHARED_SECRET_MISMATCH";
1401     if (check_output(t, kdata->output, out, out_len))
1402         goto err;
1403     err = NULL;
1404  err:
1405     OPENSSL_free(out);
1406     t->err = err;
1407     return 1;
1408 }
1409
1410 static const struct evp_test_method pderive_test_method = {
1411     "Derive",
1412     pderive_test_init,
1413     pkey_test_cleanup,
1414     pderive_test_parse,
1415     pderive_test_run
1416 };
1417
1418 /* PBE tests */
1419
1420 #define PBE_TYPE_SCRYPT 1
1421 #define PBE_TYPE_PBKDF2 2
1422 #define PBE_TYPE_PKCS12 3
1423
1424 struct pbe_data {
1425
1426     int pbe_type;
1427
1428     /* scrypt parameters */
1429     uint64_t N, r, p, maxmem;
1430
1431     /* PKCS#12 parameters */
1432     int id, iter;
1433     const EVP_MD *md;
1434
1435     /* password */
1436     unsigned char *pass;
1437     size_t pass_len;
1438
1439     /* salt */
1440     unsigned char *salt;
1441     size_t salt_len;
1442
1443     /* Expected output */
1444     unsigned char *key;
1445     size_t key_len;
1446 };
1447
1448 #ifndef OPENSSL_NO_SCRYPT
1449 static int scrypt_test_parse(struct evp_test *t,
1450                              const char *keyword, const char *value)
1451 {
1452     struct pbe_data *pdata = t->data;
1453
1454     if (strcmp(keyword, "N") == 0)
1455         return test_uint64(value, &pdata->N);
1456     if (strcmp(keyword, "p") == 0)
1457         return test_uint64(value, &pdata->p);
1458     if (strcmp(keyword, "r") == 0)
1459         return test_uint64(value, &pdata->r);
1460     if (strcmp(keyword, "maxmem") == 0)
1461         return test_uint64(value, &pdata->maxmem);
1462     return 0;
1463 }
1464 #endif
1465
1466 static int pbkdf2_test_parse(struct evp_test *t,
1467                              const char *keyword, const char *value)
1468 {
1469     struct pbe_data *pdata = t->data;
1470
1471     if (strcmp(keyword, "iter") == 0) {
1472         pdata->iter = atoi(value);
1473         if (pdata->iter <= 0)
1474             return 0;
1475         return 1;
1476     }
1477     if (strcmp(keyword, "MD") == 0) {
1478         pdata->md = EVP_get_digestbyname(value);
1479         if (pdata->md == NULL)
1480             return 0;
1481         return 1;
1482     }
1483     return 0;
1484 }
1485
1486 static int pkcs12_test_parse(struct evp_test *t,
1487                              const char *keyword, const char *value)
1488 {
1489     struct pbe_data *pdata = t->data;
1490
1491     if (strcmp(keyword, "id") == 0) {
1492         pdata->id = atoi(value);
1493         if (pdata->id <= 0)
1494             return 0;
1495         return 1;
1496     }
1497     return pbkdf2_test_parse(t, keyword, value);
1498 }
1499
1500 static int pbe_test_init(struct evp_test *t, const char *alg)
1501 {
1502     struct pbe_data *pdat;
1503     int pbe_type = 0;
1504
1505 #ifndef OPENSSL_NO_SCRYPT
1506     if (strcmp(alg, "scrypt") == 0)
1507         pbe_type = PBE_TYPE_SCRYPT;
1508 #endif
1509     else if (strcmp(alg, "pbkdf2") == 0)
1510         pbe_type = PBE_TYPE_PBKDF2;
1511     else if (strcmp(alg, "pkcs12") == 0)
1512         pbe_type = PBE_TYPE_PKCS12;
1513     else
1514         fprintf(stderr, "Unknown pbe algorithm %s\n", alg);
1515     pdat = OPENSSL_malloc(sizeof(*pdat));
1516     pdat->pbe_type = pbe_type;
1517     pdat->pass = NULL;
1518     pdat->salt = NULL;
1519     pdat->N = 0;
1520     pdat->r = 0;
1521     pdat->p = 0;
1522     pdat->maxmem = 0;
1523     pdat->id = 0;
1524     pdat->iter = 0;
1525     pdat->md = NULL;
1526     t->data = pdat;
1527     return 1;
1528 }
1529
1530 static void pbe_test_cleanup(struct evp_test *t)
1531 {
1532     struct pbe_data *pdat = t->data;
1533     test_free(pdat->pass);
1534     test_free(pdat->salt);
1535     test_free(pdat->key);
1536 }
1537
1538 static int pbe_test_parse(struct evp_test *t,
1539                              const char *keyword, const char *value)
1540 {
1541     struct pbe_data *pdata = t->data;
1542
1543     if (strcmp(keyword, "Password") == 0)
1544         return test_bin(value, &pdata->pass, &pdata->pass_len);
1545     if (strcmp(keyword, "Salt") == 0)
1546         return test_bin(value, &pdata->salt, &pdata->salt_len);
1547     if (strcmp(keyword, "Key") == 0)
1548         return test_bin(value, &pdata->key, &pdata->key_len);
1549     if (pdata->pbe_type == PBE_TYPE_PBKDF2)
1550         return pbkdf2_test_parse(t, keyword, value);
1551     else if (pdata->pbe_type == PBE_TYPE_PKCS12)
1552         return pkcs12_test_parse(t, keyword, value);
1553 #ifndef OPENSSL_NO_SCRYPT
1554     else if (pdata->pbe_type == PBE_TYPE_SCRYPT)
1555         return scrypt_test_parse(t, keyword, value);
1556 #endif
1557     return 0;
1558 }
1559
1560 static int pbe_test_run(struct evp_test *t)
1561 {
1562     struct pbe_data *pdata = t->data;
1563     const char *err = "INTERNAL_ERROR";
1564     unsigned char *key;
1565
1566     key = OPENSSL_malloc(pdata->key_len);
1567     if (!key)
1568         goto err;
1569     if (pdata->pbe_type == PBE_TYPE_PBKDF2) {
1570         err = "PBKDF2_ERROR";
1571         if (PKCS5_PBKDF2_HMAC((char *)pdata->pass, pdata->pass_len,
1572                               pdata->salt, pdata->salt_len,
1573                               pdata->iter, pdata->md,
1574                               pdata->key_len, key) == 0)
1575             goto err;
1576 #ifndef OPENSSL_NO_SCRYPT
1577     } else if (pdata->pbe_type == PBE_TYPE_SCRYPT) {
1578         err = "SCRYPT_ERROR";
1579         if (EVP_PBE_scrypt((const char *)pdata->pass, pdata->pass_len,
1580                            pdata->salt, pdata->salt_len,
1581                            pdata->N, pdata->r, pdata->p, pdata->maxmem,
1582                            key, pdata->key_len) == 0)
1583             goto err;
1584 #endif
1585     } else if (pdata->pbe_type == PBE_TYPE_PKCS12) {
1586         err = "PKCS12_ERROR";
1587         if (PKCS12_key_gen_uni(pdata->pass, pdata->pass_len,
1588                                pdata->salt, pdata->salt_len,
1589                                pdata->id, pdata->iter, pdata->key_len,
1590                                key, pdata->md) == 0)
1591             goto err;
1592     }
1593     err = "KEY_MISMATCH";
1594     if (check_output(t, pdata->key, key, pdata->key_len))
1595         goto err;
1596     err = NULL;
1597     err:
1598     OPENSSL_free(key);
1599     t->err = err;
1600     return 1;
1601 }
1602
1603 static const struct evp_test_method pbe_test_method = {
1604     "PBE",
1605     pbe_test_init,
1606     pbe_test_cleanup,
1607     pbe_test_parse,
1608     pbe_test_run
1609 };
1610
1611 /* Base64 tests */
1612
1613 typedef enum {
1614     BASE64_CANONICAL_ENCODING = 0,
1615     BASE64_VALID_ENCODING = 1,
1616     BASE64_INVALID_ENCODING = 2
1617 } base64_encoding_type;
1618
1619 struct encode_data {
1620     /* Input to encoding */
1621     unsigned char *input;
1622     size_t input_len;
1623     /* Expected output */
1624     unsigned char *output;
1625     size_t output_len;
1626     base64_encoding_type encoding;
1627 };
1628
1629 static int encode_test_init(struct evp_test *t, const char *encoding)
1630 {
1631     struct encode_data *edata = OPENSSL_zalloc(sizeof(*edata));
1632
1633     if (strcmp(encoding, "canonical") == 0) {
1634         edata->encoding = BASE64_CANONICAL_ENCODING;
1635     } else if (strcmp(encoding, "valid") == 0) {
1636         edata->encoding = BASE64_VALID_ENCODING;
1637     } else if (strcmp(encoding, "invalid") == 0) {
1638         edata->encoding = BASE64_INVALID_ENCODING;
1639         t->expected_err = OPENSSL_strdup("DECODE_ERROR");
1640         if (t->expected_err == NULL)
1641             return 0;
1642     } else {
1643         fprintf(stderr, "Bad encoding: %s. Should be one of "
1644                 "{canonical, valid, invalid}\n", encoding);
1645         return 0;
1646     }
1647     t->data = edata;
1648     return 1;
1649 }
1650
1651 static void encode_test_cleanup(struct evp_test *t)
1652 {
1653     struct encode_data *edata = t->data;
1654     test_free(edata->input);
1655     test_free(edata->output);
1656     memset(edata, 0, sizeof(*edata));
1657 }
1658
1659 static int encode_test_parse(struct evp_test *t,
1660                              const char *keyword, const char *value)
1661 {
1662     struct encode_data *edata = t->data;
1663     if (strcmp(keyword, "Input") == 0)
1664         return test_bin(value, &edata->input, &edata->input_len);
1665     if (strcmp(keyword, "Output") == 0)
1666         return test_bin(value, &edata->output, &edata->output_len);
1667     return 0;
1668 }
1669
1670 static int encode_test_run(struct evp_test *t)
1671 {
1672     struct encode_data *edata = t->data;
1673     unsigned char *encode_out = NULL, *decode_out = NULL;
1674     int output_len, chunk_len;
1675     const char *err = "INTERNAL_ERROR";
1676     EVP_ENCODE_CTX *decode_ctx = EVP_ENCODE_CTX_new();
1677
1678     if (decode_ctx == NULL)
1679         goto err;
1680
1681     if (edata->encoding == BASE64_CANONICAL_ENCODING) {
1682         EVP_ENCODE_CTX *encode_ctx = EVP_ENCODE_CTX_new();
1683         if (encode_ctx == NULL)
1684             goto err;
1685         encode_out = OPENSSL_malloc(EVP_ENCODE_LENGTH(edata->input_len));
1686         if (encode_out == NULL)
1687             goto err;
1688
1689         EVP_EncodeInit(encode_ctx);
1690         EVP_EncodeUpdate(encode_ctx, encode_out, &chunk_len,
1691                          edata->input, edata->input_len);
1692         output_len = chunk_len;
1693
1694         EVP_EncodeFinal(encode_ctx, encode_out + chunk_len, &chunk_len);
1695         output_len += chunk_len;
1696
1697         EVP_ENCODE_CTX_free(encode_ctx);
1698
1699         if (check_var_length_output(t, edata->output, edata->output_len,
1700                                     encode_out, output_len)) {
1701             err = "BAD_ENCODING";
1702             goto err;
1703         }
1704     }
1705
1706     decode_out = OPENSSL_malloc(EVP_DECODE_LENGTH(edata->output_len));
1707     if (decode_out == NULL)
1708         goto err;
1709
1710     EVP_DecodeInit(decode_ctx);
1711     if (EVP_DecodeUpdate(decode_ctx, decode_out, &chunk_len, edata->output,
1712                          edata->output_len) < 0) {
1713         err = "DECODE_ERROR";
1714         goto err;
1715     }
1716     output_len = chunk_len;
1717
1718     if (EVP_DecodeFinal(decode_ctx, decode_out + chunk_len, &chunk_len) != 1) {
1719         err = "DECODE_ERROR";
1720         goto err;
1721     }
1722     output_len += chunk_len;
1723
1724     if (edata->encoding != BASE64_INVALID_ENCODING &&
1725         check_var_length_output(t, edata->input, edata->input_len,
1726                                 decode_out, output_len)) {
1727         err = "BAD_DECODING";
1728         goto err;
1729     }
1730
1731     err = NULL;
1732  err:
1733     t->err = err;
1734     OPENSSL_free(encode_out);
1735     OPENSSL_free(decode_out);
1736     EVP_ENCODE_CTX_free(decode_ctx);
1737     return 1;
1738 }
1739
1740 static const struct evp_test_method encode_test_method = {
1741     "Encoding",
1742     encode_test_init,
1743     encode_test_cleanup,
1744     encode_test_parse,
1745     encode_test_run,
1746 };
1747
1748 /*
1749  * KDF operations: initially just TLS1 PRF but can be adapted.
1750  */
1751
1752 struct kdf_data {
1753     /* Context for this operation */
1754     EVP_PKEY_CTX *ctx;
1755     /* Expected output */
1756     unsigned char *output;
1757     size_t output_len;
1758 };
1759
1760 /*
1761  * Perform public key operation setup: lookup key, allocated ctx and call
1762  * the appropriate initialisation function
1763  */
1764 static int kdf_test_init(struct evp_test *t, const char *name)
1765 {
1766     struct kdf_data *kdata;
1767
1768     kdata = OPENSSL_malloc(sizeof(*kdata));
1769     if (kdata == NULL)
1770         return 0;
1771     kdata->ctx = NULL;
1772     kdata->output = NULL;
1773     t->data = kdata;
1774     kdata->ctx = EVP_PKEY_CTX_new_id(OBJ_sn2nid(name), NULL);
1775     if (kdata->ctx == NULL)
1776         return 0;
1777     if (EVP_PKEY_derive_init(kdata->ctx) <= 0)
1778         return 0;
1779     return 1;
1780 }
1781
1782 static void kdf_test_cleanup(struct evp_test *t)
1783 {
1784     struct kdf_data *kdata = t->data;
1785     OPENSSL_free(kdata->output);
1786     EVP_PKEY_CTX_free(kdata->ctx);
1787 }
1788
1789 static int kdf_ctrl(EVP_PKEY_CTX *ctx, int op, const char *value)
1790 {
1791     unsigned char *buf = NULL;
1792     size_t buf_len;
1793     int rv = 0;
1794     if (test_bin(value, &buf, &buf_len) == 0)
1795         return 0;
1796     if (EVP_PKEY_CTX_ctrl(ctx, -1, -1, op, buf_len, buf) <= 0)
1797         goto err;
1798     rv = 1;
1799     err:
1800     OPENSSL_free(buf);
1801     return rv;
1802 }
1803
1804 static int kdf_test_parse(struct evp_test *t,
1805                           const char *keyword, const char *value)
1806 {
1807     struct kdf_data *kdata = t->data;
1808     if (strcmp(keyword, "Output") == 0)
1809         return test_bin(value, &kdata->output, &kdata->output_len);
1810     else if (strcmp(keyword, "MD") == 0) {
1811         const EVP_MD *md = EVP_get_digestbyname(value);
1812         if (md == NULL)
1813             return 0;
1814         if (EVP_PKEY_CTX_set_tls1_prf_md(kdata->ctx, md) <= 0)
1815             return 0;
1816         return 1;
1817     } else if (strcmp(keyword, "Secret") == 0) {
1818         return kdf_ctrl(kdata->ctx, EVP_PKEY_CTRL_TLS_SECRET, value);
1819     } else if (strncmp("Seed", keyword, 4) == 0) {
1820         return kdf_ctrl(kdata->ctx, EVP_PKEY_CTRL_TLS_SEED, value);
1821     }
1822     return 0;
1823 }
1824
1825 static int kdf_test_run(struct evp_test *t)
1826 {
1827     struct kdf_data *kdata = t->data;
1828     unsigned char *out = NULL;
1829     size_t out_len = kdata->output_len;
1830     const char *err = "INTERNAL_ERROR";
1831     out = OPENSSL_malloc(out_len);
1832     if (!out) {
1833         fprintf(stderr, "Error allocating output buffer!\n");
1834         exit(1);
1835     }
1836     err = "KDF_DERIVE_ERROR";
1837     if (EVP_PKEY_derive(kdata->ctx, out, &out_len) <= 0)
1838         goto err;
1839     err = "KDF_LENGTH_MISMATCH";
1840     if (out_len != kdata->output_len)
1841         goto err;
1842     err = "KDF_MISMATCH";
1843     if (check_output(t, kdata->output, out, out_len))
1844         goto err;
1845     err = NULL;
1846  err:
1847     OPENSSL_free(out);
1848     t->err = err;
1849     return 1;
1850 }
1851
1852 static const struct evp_test_method kdf_test_method = {
1853     "KDF",
1854     kdf_test_init,
1855     kdf_test_cleanup,
1856     kdf_test_parse,
1857     kdf_test_run
1858 };