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