]> git.ipfire.org Git - thirdparty/openssl.git/blame - test/x509aux.c
Fix possible leaks on sk_X509_EXTENSION_push() failure ...
[thirdparty/openssl.git] / test / x509aux.c
CommitLineData
fde2257f 1/*
8fe3127c 2 * Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved.
fde2257f
VD
3 *
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>
176db6dc 19#include "internal/nelem.h"
e2a29ad6 20#include "testutil.h"
fde2257f 21
f1e793cc 22static int test_certs(int num)
fde2257f 23{
4f58c6b9 24 int c;
fde2257f
VD
25 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;
ad887416 32 BIO *fp = BIO_new_file(test_get_argument(num), "r");
f1e793cc
RS
33
34 if (!TEST_ptr(fp))
35 return 0;
fde2257f 36
4f58c6b9
P
37 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
fde2257f
VD
40 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;
8fe3127c 43 const unsigned char *p = data;
fde2257f
VD
44 unsigned char *buf = NULL;
45 unsigned char *bufp;
46 long enclen;
47
8fe3127c 48 if (!trusted
fde2257f 49 && strcmp(name, PEM_STRING_X509) != 0
8fe3127c
P
50 && strcmp(name, PEM_STRING_X509_OLD) != 0) {
51 TEST_error("unexpected PEM object: %s", name);
fde2257f 52 err = 1;
8fe3127c 53 goto next;
fde2257f
VD
54 }
55 cert = d2i(NULL, &p, len);
56
57 if (cert == NULL || (p - data) != len) {
8fe3127c 58 TEST_error("error parsing input %s", name);
fde2257f
VD
59 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) {
8fe3127c
P
66 TEST_error("encoded length %ld of %s != input length %ld",
67 enclen, name, len);
fde2257f
VD
68 err = 1;
69 goto next;
70 }
71 if ((buf = bufp = OPENSSL_malloc(len)) == NULL) {
8fe3127c 72 TEST_perror("malloc");
fde2257f
VD
73 err = 1;
74 goto next;
75 }
76 enclen = i2d(cert, &bufp);
77 if (len != enclen) {
8fe3127c
P
78 TEST_error("encoded length %ld of %s != input length %ld",
79 enclen, name, len);
fde2257f
VD
80 err = 1;
81 goto next;
82 }
83 enclen = (long) (bufp - buf);
84 if (enclen != len) {
8fe3127c 85 TEST_error("unexpected buffer position after encoding %s", name);
fde2257f
VD
86 err = 1;
87 goto next;
88 }
89 if (memcmp(buf, data, len) != 0) {
8fe3127c 90 TEST_error("encoded content of %s does not match input", name);
fde2257f
VD
91 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) {
8fe3127c
P
100 TEST_error("encoded length %ld of %s != input length %ld",
101 enclen, name, len);
fde2257f
VD
102 err = 1;
103 goto next;
104 }
105 if (memcmp(buf, data, len) != 0) {
8fe3127c 106 TEST_error("encoded content of %s does not match input", name);
fde2257f
VD
107 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) {
8fe3127c
P
119 TEST_error("encoded length %ld of %s > input length %ld",
120 enclen, name, len);
fde2257f
VD
121 err = 1;
122 goto next;
123 }
124 if (memcmp(buf, data, enclen) != 0) {
8fe3127c 125 TEST_error("encoded cert content does not match input");
fde2257f
VD
126 err = 1;
127 goto next;
128 }
129 }
130
8fe3127c
P
131 /*
132 * If any of these were null, PEM_read() would have failed.
133 */
fde2257f
VD
134 next:
135 X509_free(cert);
136 OPENSSL_free(buf);
8fe3127c
P
137 OPENSSL_free(name);
138 OPENSSL_free(header);
139 OPENSSL_free(data);
fde2257f 140 }
f1e793cc 141 BIO_free(fp);
fde2257f
VD
142
143 if (ERR_GET_REASON(ERR_peek_last_error()) == PEM_R_NO_START_LINE) {
144 /* Reached end of PEM file */
4f58c6b9 145 if (c > 0) {
fde2257f
VD
146 ERR_clear_error();
147 return 1;
148 }
149 }
150
151 /* Some other PEM read error */
fde2257f
VD
152 return 0;
153}
154
ad887416 155int setup_tests(void)
fde2257f 156{
ad887416
P
157 size_t n = test_get_argument_count();
158
159 if (n == 0) {
160 TEST_error("usage: %s certfile...", test_get_program_name());
f1e793cc 161 return 0;
fde2257f 162 }
f1e793cc 163
ad887416
P
164 ADD_ALL_TESTS(test_certs, n);
165 return 1;
fde2257f 166}