blob: b66e1de71ae07df8a18177c40f098f429798b1f3 [file] [log] [blame]
Viktor Dukhovnifde22572016-05-02 14:46:51 -04001/*
Pauli8fe31272017-06-19 11:21:22 +10002 * Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved.
Viktor Dukhovnifde22572016-05-02 14:46:51 -04003 *
4 * Licensed under the OpenSSL licenses, (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 * https://www.openssl.org/source/license.html
8 * or in the file LICENSE in the source distribution.
9 */
10
11#include <stdio.h>
12#include <string.h>
13#include <errno.h>
14
15#include <openssl/x509.h>
16#include <openssl/pem.h>
17#include <openssl/conf.h>
18#include <openssl/err.h>
Rich Salz176db6d2017-08-22 08:35:43 -040019#include "internal/nelem.h"
Rich Salze2a29ad2017-04-11 16:16:33 -040020#include "testutil.h"
Viktor Dukhovnifde22572016-05-02 14:46:51 -040021
Rich Salzf1e793c2017-04-12 09:27:33 -040022static int test_certs(int num)
Viktor Dukhovnifde22572016-05-02 14:46:51 -040023{
Pauli4f58c6b2017-06-20 07:58:51 +100024 int c;
Viktor Dukhovnifde22572016-05-02 14:46:51 -040025 char *name = 0;
26 char *header = 0;
27 unsigned char *data = 0;
28 long len;
29 typedef X509 *(*d2i_X509_t)(X509 **, const unsigned char **, long);
30 typedef int (*i2d_X509_t)(X509 *, unsigned char **);
31 int err = 0;
Pauliad887412017-07-18 11:48:27 +100032 BIO *fp = BIO_new_file(test_get_argument(num), "r");
Rich Salzf1e793c2017-04-12 09:27:33 -040033
34 if (!TEST_ptr(fp))
35 return 0;
Viktor Dukhovnifde22572016-05-02 14:46:51 -040036
Pauli4f58c6b2017-06-20 07:58:51 +100037 for (c = 0; !err && PEM_read_bio(fp, &name, &header, &data, &len); ++c) {
38 const int trusted = (strcmp(name, PEM_STRING_X509_TRUSTED) == 0);
39
Viktor Dukhovnifde22572016-05-02 14:46:51 -040040 d2i_X509_t d2i = trusted ? d2i_X509_AUX : d2i_X509;
41 i2d_X509_t i2d = trusted ? i2d_X509_AUX : i2d_X509;
42 X509 *cert = NULL;
Pauli8fe31272017-06-19 11:21:22 +100043 const unsigned char *p = data;
Viktor Dukhovnifde22572016-05-02 14:46:51 -040044 unsigned char *buf = NULL;
45 unsigned char *bufp;
46 long enclen;
47
Pauli8fe31272017-06-19 11:21:22 +100048 if (!trusted
Viktor Dukhovnifde22572016-05-02 14:46:51 -040049 && strcmp(name, PEM_STRING_X509) != 0
Pauli8fe31272017-06-19 11:21:22 +100050 && strcmp(name, PEM_STRING_X509_OLD) != 0) {
51 TEST_error("unexpected PEM object: %s", name);
Viktor Dukhovnifde22572016-05-02 14:46:51 -040052 err = 1;
Pauli8fe31272017-06-19 11:21:22 +100053 goto next;
Viktor Dukhovnifde22572016-05-02 14:46:51 -040054 }
55 cert = d2i(NULL, &p, len);
56
57 if (cert == NULL || (p - data) != len) {
Pauli8fe31272017-06-19 11:21:22 +100058 TEST_error("error parsing input %s", name);
Viktor Dukhovnifde22572016-05-02 14:46:51 -040059 err = 1;
60 goto next;
61 }
62
63 /* Test traditional 2-pass encoding into caller allocated buffer */
64 enclen = i2d(cert, NULL);
65 if (len != enclen) {
Pauli8fe31272017-06-19 11:21:22 +100066 TEST_error("encoded length %ld of %s != input length %ld",
67 enclen, name, len);
Viktor Dukhovnifde22572016-05-02 14:46:51 -040068 err = 1;
69 goto next;
70 }
71 if ((buf = bufp = OPENSSL_malloc(len)) == NULL) {
Pauli8fe31272017-06-19 11:21:22 +100072 TEST_perror("malloc");
Viktor Dukhovnifde22572016-05-02 14:46:51 -040073 err = 1;
74 goto next;
75 }
76 enclen = i2d(cert, &bufp);
77 if (len != enclen) {
Pauli8fe31272017-06-19 11:21:22 +100078 TEST_error("encoded length %ld of %s != input length %ld",
79 enclen, name, len);
Viktor Dukhovnifde22572016-05-02 14:46:51 -040080 err = 1;
81 goto next;
82 }
83 enclen = (long) (bufp - buf);
84 if (enclen != len) {
Pauli8fe31272017-06-19 11:21:22 +100085 TEST_error("unexpected buffer position after encoding %s", name);
Viktor Dukhovnifde22572016-05-02 14:46:51 -040086 err = 1;
87 goto next;
88 }
89 if (memcmp(buf, data, len) != 0) {
Pauli8fe31272017-06-19 11:21:22 +100090 TEST_error("encoded content of %s does not match input", name);
Viktor Dukhovnifde22572016-05-02 14:46:51 -040091 err = 1;
92 goto next;
93 }
94 OPENSSL_free(buf);
95 buf = NULL;
96
97 /* Test 1-pass encoding into library allocated buffer */
98 enclen = i2d(cert, &buf);
99 if (len != enclen) {
Pauli8fe31272017-06-19 11:21:22 +1000100 TEST_error("encoded length %ld of %s != input length %ld",
101 enclen, name, len);
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400102 err = 1;
103 goto next;
104 }
105 if (memcmp(buf, data, len) != 0) {
Pauli8fe31272017-06-19 11:21:22 +1000106 TEST_error("encoded content of %s does not match input", name);
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400107 err = 1;
108 goto next;
109 }
110
111 if (trusted) {
112 /* Encode just the cert and compare with initial encoding */
113 OPENSSL_free(buf);
114 buf = NULL;
115
116 /* Test 1-pass encoding into library allocated buffer */
117 enclen = i2d(cert, &buf);
118 if (enclen > len) {
Pauli8fe31272017-06-19 11:21:22 +1000119 TEST_error("encoded length %ld of %s > input length %ld",
120 enclen, name, len);
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400121 err = 1;
122 goto next;
123 }
124 if (memcmp(buf, data, enclen) != 0) {
Pauli8fe31272017-06-19 11:21:22 +1000125 TEST_error("encoded cert content does not match input");
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400126 err = 1;
127 goto next;
128 }
129 }
130
Pauli8fe31272017-06-19 11:21:22 +1000131 /*
132 * If any of these were null, PEM_read() would have failed.
133 */
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400134 next:
135 X509_free(cert);
136 OPENSSL_free(buf);
Pauli8fe31272017-06-19 11:21:22 +1000137 OPENSSL_free(name);
138 OPENSSL_free(header);
139 OPENSSL_free(data);
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400140 }
Rich Salzf1e793c2017-04-12 09:27:33 -0400141 BIO_free(fp);
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400142
143 if (ERR_GET_REASON(ERR_peek_last_error()) == PEM_R_NO_START_LINE) {
144 /* Reached end of PEM file */
Pauli4f58c6b2017-06-20 07:58:51 +1000145 if (c > 0) {
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400146 ERR_clear_error();
147 return 1;
148 }
149 }
150
151 /* Some other PEM read error */
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400152 return 0;
153}
154
Pauliad887412017-07-18 11:48:27 +1000155int setup_tests(void)
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400156{
Pauliad887412017-07-18 11:48:27 +1000157 size_t n = test_get_argument_count();
158
159 if (n == 0) {
160 TEST_error("usage: %s certfile...", test_get_program_name());
Rich Salzf1e793c2017-04-12 09:27:33 -0400161 return 0;
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400162 }
Rich Salzf1e793c2017-04-12 09:27:33 -0400163
Pauliad887412017-07-18 11:48:27 +1000164 ADD_ALL_TESTS(test_certs, n);
165 return 1;
Viktor Dukhovnifde22572016-05-02 14:46:51 -0400166}