/src/openssl/crypto/pem/pem_info.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* crypto/pem/pem_info.c */ |
2 | | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | | * All rights reserved. |
4 | | * |
5 | | * This package is an SSL implementation written |
6 | | * by Eric Young (eay@cryptsoft.com). |
7 | | * The implementation was written so as to conform with Netscapes SSL. |
8 | | * |
9 | | * This library is free for commercial and non-commercial use as long as |
10 | | * the following conditions are aheared to. The following conditions |
11 | | * apply to all code found in this distribution, be it the RC4, RSA, |
12 | | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
13 | | * included with this distribution is covered by the same copyright terms |
14 | | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
15 | | * |
16 | | * Copyright remains Eric Young's, and as such any Copyright notices in |
17 | | * the code are not to be removed. |
18 | | * If this package is used in a product, Eric Young should be given attribution |
19 | | * as the author of the parts of the library used. |
20 | | * This can be in the form of a textual message at program startup or |
21 | | * in documentation (online or textual) provided with the package. |
22 | | * |
23 | | * Redistribution and use in source and binary forms, with or without |
24 | | * modification, are permitted provided that the following conditions |
25 | | * are met: |
26 | | * 1. Redistributions of source code must retain the copyright |
27 | | * notice, this list of conditions and the following disclaimer. |
28 | | * 2. Redistributions in binary form must reproduce the above copyright |
29 | | * notice, this list of conditions and the following disclaimer in the |
30 | | * documentation and/or other materials provided with the distribution. |
31 | | * 3. All advertising materials mentioning features or use of this software |
32 | | * must display the following acknowledgement: |
33 | | * "This product includes cryptographic software written by |
34 | | * Eric Young (eay@cryptsoft.com)" |
35 | | * The word 'cryptographic' can be left out if the rouines from the library |
36 | | * being used are not cryptographic related :-). |
37 | | * 4. If you include any Windows specific code (or a derivative thereof) from |
38 | | * the apps directory (application code) you must include an acknowledgement: |
39 | | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
40 | | * |
41 | | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
42 | | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
43 | | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
44 | | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
45 | | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
46 | | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
47 | | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
48 | | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
49 | | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
50 | | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
51 | | * SUCH DAMAGE. |
52 | | * |
53 | | * The licence and distribution terms for any publically available version or |
54 | | * derivative of this code cannot be changed. i.e. this code cannot simply be |
55 | | * copied and put under another distribution licence |
56 | | * [including the GNU Public Licence.] |
57 | | */ |
58 | | |
59 | | #include <stdio.h> |
60 | | #include "cryptlib.h" |
61 | | #include <openssl/buffer.h> |
62 | | #include <openssl/objects.h> |
63 | | #include <openssl/evp.h> |
64 | | #include <openssl/x509.h> |
65 | | #include <openssl/pem.h> |
66 | | #ifndef OPENSSL_NO_RSA |
67 | | # include <openssl/rsa.h> |
68 | | #endif |
69 | | #ifndef OPENSSL_NO_DSA |
70 | | # include <openssl/dsa.h> |
71 | | #endif |
72 | | |
73 | | #ifndef OPENSSL_NO_FP_API |
74 | | STACK_OF(X509_INFO) *PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk, |
75 | | pem_password_cb *cb, void *u) |
76 | 0 | { |
77 | 0 | BIO *b; |
78 | 0 | STACK_OF(X509_INFO) *ret; |
79 | |
|
80 | 0 | if ((b = BIO_new(BIO_s_file())) == NULL) { |
81 | 0 | PEMerr(PEM_F_PEM_X509_INFO_READ, ERR_R_BUF_LIB); |
82 | 0 | return (0); |
83 | 0 | } |
84 | 0 | BIO_set_fp(b, fp, BIO_NOCLOSE); |
85 | 0 | ret = PEM_X509_INFO_read_bio(b, sk, cb, u); |
86 | 0 | BIO_free(b); |
87 | 0 | return (ret); |
88 | 0 | } |
89 | | #endif |
90 | | |
91 | | STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, |
92 | | pem_password_cb *cb, void *u) |
93 | 1.24k | { |
94 | 1.24k | X509_INFO *xi = NULL; |
95 | 1.24k | char *name = NULL, *header = NULL; |
96 | 1.24k | void *pp; |
97 | 1.24k | unsigned char *data = NULL; |
98 | 1.24k | const unsigned char *p; |
99 | 1.24k | long len, error = 0; |
100 | 1.24k | int ok = 0; |
101 | 1.24k | STACK_OF(X509_INFO) *ret = NULL; |
102 | 1.24k | unsigned int i, raw, ptype; |
103 | 1.24k | d2i_of_void *d2i = 0; |
104 | | |
105 | 1.24k | if (sk == NULL) { |
106 | 1.24k | if ((ret = sk_X509_INFO_new_null()) == NULL) { |
107 | 0 | PEMerr(PEM_F_PEM_X509_INFO_READ_BIO, ERR_R_MALLOC_FAILURE); |
108 | 0 | goto err; |
109 | 0 | } |
110 | 1.24k | } else |
111 | 0 | ret = sk; |
112 | | |
113 | 1.24k | if ((xi = X509_INFO_new()) == NULL) |
114 | 0 | goto err; |
115 | 159k | for (;;) { |
116 | 159k | raw = 0; |
117 | 159k | ptype = 0; |
118 | 159k | i = PEM_read_bio(bp, &name, &header, &data, &len); |
119 | 159k | if (i == 0) { |
120 | 1.24k | error = ERR_GET_REASON(ERR_peek_last_error()); |
121 | 1.24k | if (error == PEM_R_NO_START_LINE) { |
122 | 1.24k | ERR_clear_error(); |
123 | 1.24k | break; |
124 | 1.24k | } |
125 | 0 | goto err; |
126 | 1.24k | } |
127 | 314k | start: |
128 | 314k | if ((strcmp(name, PEM_STRING_X509) == 0) || |
129 | 314k | (strcmp(name, PEM_STRING_X509_OLD) == 0)) { |
130 | 314k | d2i = (D2I_OF(void)) d2i_X509; |
131 | 314k | if (xi->x509 != NULL) { |
132 | 156k | if (!sk_X509_INFO_push(ret, xi)) |
133 | 0 | goto err; |
134 | 156k | if ((xi = X509_INFO_new()) == NULL) |
135 | 0 | goto err; |
136 | 156k | goto start; |
137 | 156k | } |
138 | 157k | pp = &(xi->x509); |
139 | 157k | } else if ((strcmp(name, PEM_STRING_X509_TRUSTED) == 0)) { |
140 | 0 | d2i = (D2I_OF(void)) d2i_X509_AUX; |
141 | 0 | if (xi->x509 != NULL) { |
142 | 0 | if (!sk_X509_INFO_push(ret, xi)) |
143 | 0 | goto err; |
144 | 0 | if ((xi = X509_INFO_new()) == NULL) |
145 | 0 | goto err; |
146 | 0 | goto start; |
147 | 0 | } |
148 | 0 | pp = &(xi->x509); |
149 | 0 | } else if (strcmp(name, PEM_STRING_X509_CRL) == 0) { |
150 | 0 | d2i = (D2I_OF(void)) d2i_X509_CRL; |
151 | 0 | if (xi->crl != NULL) { |
152 | 0 | if (!sk_X509_INFO_push(ret, xi)) |
153 | 0 | goto err; |
154 | 0 | if ((xi = X509_INFO_new()) == NULL) |
155 | 0 | goto err; |
156 | 0 | goto start; |
157 | 0 | } |
158 | 0 | pp = &(xi->crl); |
159 | 0 | } else |
160 | 0 | #ifndef OPENSSL_NO_RSA |
161 | 0 | if (strcmp(name, PEM_STRING_RSA) == 0) { |
162 | 0 | d2i = (D2I_OF(void)) d2i_RSAPrivateKey; |
163 | 0 | if (xi->x_pkey != NULL) { |
164 | 0 | if (!sk_X509_INFO_push(ret, xi)) |
165 | 0 | goto err; |
166 | 0 | if ((xi = X509_INFO_new()) == NULL) |
167 | 0 | goto err; |
168 | 0 | goto start; |
169 | 0 | } |
170 | | |
171 | 0 | xi->enc_data = NULL; |
172 | 0 | xi->enc_len = 0; |
173 | |
|
174 | 0 | xi->x_pkey = X509_PKEY_new(); |
175 | 0 | if (xi->x_pkey == NULL) |
176 | 0 | goto err; |
177 | 0 | ptype = EVP_PKEY_RSA; |
178 | 0 | pp = &xi->x_pkey->dec_pkey; |
179 | 0 | if ((int)strlen(header) > 10) /* assume encrypted */ |
180 | 0 | raw = 1; |
181 | 0 | } else |
182 | 0 | #endif |
183 | 0 | #ifndef OPENSSL_NO_DSA |
184 | 0 | if (strcmp(name, PEM_STRING_DSA) == 0) { |
185 | 0 | d2i = (D2I_OF(void)) d2i_DSAPrivateKey; |
186 | 0 | if (xi->x_pkey != NULL) { |
187 | 0 | if (!sk_X509_INFO_push(ret, xi)) |
188 | 0 | goto err; |
189 | 0 | if ((xi = X509_INFO_new()) == NULL) |
190 | 0 | goto err; |
191 | 0 | goto start; |
192 | 0 | } |
193 | | |
194 | 0 | xi->enc_data = NULL; |
195 | 0 | xi->enc_len = 0; |
196 | |
|
197 | 0 | xi->x_pkey = X509_PKEY_new(); |
198 | 0 | if (xi->x_pkey == NULL) |
199 | 0 | goto err; |
200 | 0 | ptype = EVP_PKEY_DSA; |
201 | 0 | pp = &xi->x_pkey->dec_pkey; |
202 | 0 | if ((int)strlen(header) > 10) /* assume encrypted */ |
203 | 0 | raw = 1; |
204 | 0 | } else |
205 | 0 | #endif |
206 | 0 | #ifndef OPENSSL_NO_EC |
207 | 0 | if (strcmp(name, PEM_STRING_ECPRIVATEKEY) == 0) { |
208 | 0 | d2i = (D2I_OF(void)) d2i_ECPrivateKey; |
209 | 0 | if (xi->x_pkey != NULL) { |
210 | 0 | if (!sk_X509_INFO_push(ret, xi)) |
211 | 0 | goto err; |
212 | 0 | if ((xi = X509_INFO_new()) == NULL) |
213 | 0 | goto err; |
214 | 0 | goto start; |
215 | 0 | } |
216 | | |
217 | 0 | xi->enc_data = NULL; |
218 | 0 | xi->enc_len = 0; |
219 | |
|
220 | 0 | xi->x_pkey = X509_PKEY_new(); |
221 | 0 | if (xi->x_pkey == NULL) |
222 | 0 | goto err; |
223 | 0 | ptype = EVP_PKEY_EC; |
224 | 0 | pp = &xi->x_pkey->dec_pkey; |
225 | 0 | if ((int)strlen(header) > 10) /* assume encrypted */ |
226 | 0 | raw = 1; |
227 | 0 | } else |
228 | 0 | #endif |
229 | 0 | { |
230 | 0 | d2i = NULL; |
231 | 0 | pp = NULL; |
232 | 0 | } |
233 | | |
234 | 157k | if (d2i != NULL) { |
235 | 157k | if (!raw) { |
236 | 157k | EVP_CIPHER_INFO cipher; |
237 | | |
238 | 157k | if (!PEM_get_EVP_CIPHER_INFO(header, &cipher)) |
239 | 0 | goto err; |
240 | 157k | if (!PEM_do_header(&cipher, data, &len, cb, u)) |
241 | 0 | goto err; |
242 | 157k | p = data; |
243 | 157k | if (ptype) { |
244 | 0 | if (!d2i_PrivateKey(ptype, pp, &p, len)) { |
245 | 0 | PEMerr(PEM_F_PEM_X509_INFO_READ_BIO, ERR_R_ASN1_LIB); |
246 | 0 | goto err; |
247 | 0 | } |
248 | 157k | } else if (d2i(pp, &p, len) == NULL) { |
249 | 0 | PEMerr(PEM_F_PEM_X509_INFO_READ_BIO, ERR_R_ASN1_LIB); |
250 | 0 | goto err; |
251 | 0 | } |
252 | 157k | } else { /* encrypted RSA data */ |
253 | 0 | if (!PEM_get_EVP_CIPHER_INFO(header, &xi->enc_cipher)) |
254 | 0 | goto err; |
255 | 0 | xi->enc_data = (char *)data; |
256 | 0 | xi->enc_len = (int)len; |
257 | 0 | data = NULL; |
258 | 0 | } |
259 | 157k | } else { |
260 | | /* unknown */ |
261 | 0 | } |
262 | 157k | if (name != NULL) |
263 | 157k | OPENSSL_free(name); |
264 | 157k | if (header != NULL) |
265 | 157k | OPENSSL_free(header); |
266 | 157k | if (data != NULL) |
267 | 157k | OPENSSL_free(data); |
268 | 157k | name = NULL; |
269 | 157k | header = NULL; |
270 | 157k | data = NULL; |
271 | 157k | } |
272 | | |
273 | | /* |
274 | | * if the last one hasn't been pushed yet and there is anything in it |
275 | | * then add it to the stack ... |
276 | | */ |
277 | 1.24k | if ((xi->x509 != NULL) || (xi->crl != NULL) || |
278 | 1.24k | (xi->x_pkey != NULL) || (xi->enc_data != NULL)) { |
279 | 1.24k | if (!sk_X509_INFO_push(ret, xi)) |
280 | 0 | goto err; |
281 | 1.24k | xi = NULL; |
282 | 1.24k | } |
283 | 1.24k | ok = 1; |
284 | 1.24k | err: |
285 | 1.24k | if (xi != NULL) |
286 | 0 | X509_INFO_free(xi); |
287 | 1.24k | if (!ok) { |
288 | 0 | for (i = 0; ((int)i) < sk_X509_INFO_num(ret); i++) { |
289 | 0 | xi = sk_X509_INFO_value(ret, i); |
290 | 0 | X509_INFO_free(xi); |
291 | 0 | } |
292 | 0 | if (ret != sk) |
293 | 0 | sk_X509_INFO_free(ret); |
294 | 0 | ret = NULL; |
295 | 0 | } |
296 | | |
297 | 1.24k | if (name != NULL) |
298 | 0 | OPENSSL_free(name); |
299 | 1.24k | if (header != NULL) |
300 | 0 | OPENSSL_free(header); |
301 | 1.24k | if (data != NULL) |
302 | 0 | OPENSSL_free(data); |
303 | 1.24k | return (ret); |
304 | 1.24k | } |
305 | | |
306 | | /* A TJH addition */ |
307 | | int PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc, |
308 | | unsigned char *kstr, int klen, |
309 | | pem_password_cb *cb, void *u) |
310 | 0 | { |
311 | 0 | EVP_CIPHER_CTX ctx; |
312 | 0 | int i, ret = 0; |
313 | 0 | unsigned char *data = NULL; |
314 | 0 | const char *objstr = NULL; |
315 | 0 | char buf[PEM_BUFSIZE]; |
316 | 0 | unsigned char *iv = NULL; |
317 | |
|
318 | 0 | if (enc != NULL) { |
319 | 0 | objstr = OBJ_nid2sn(EVP_CIPHER_nid(enc)); |
320 | 0 | if (objstr == NULL) { |
321 | 0 | PEMerr(PEM_F_PEM_X509_INFO_WRITE_BIO, PEM_R_UNSUPPORTED_CIPHER); |
322 | 0 | goto err; |
323 | 0 | } |
324 | 0 | } |
325 | | |
326 | | /* |
327 | | * now for the fun part ... if we have a private key then we have to be |
328 | | * able to handle a not-yet-decrypted key being written out correctly ... |
329 | | * if it is decrypted or it is non-encrypted then we use the base code |
330 | | */ |
331 | 0 | if (xi->x_pkey != NULL) { |
332 | 0 | if ((xi->enc_data != NULL) && (xi->enc_len > 0)) { |
333 | 0 | if (enc == NULL) { |
334 | 0 | PEMerr(PEM_F_PEM_X509_INFO_WRITE_BIO, PEM_R_CIPHER_IS_NULL); |
335 | 0 | goto err; |
336 | 0 | } |
337 | | |
338 | | /* copy from weirdo names into more normal things */ |
339 | 0 | iv = xi->enc_cipher.iv; |
340 | 0 | data = (unsigned char *)xi->enc_data; |
341 | 0 | i = xi->enc_len; |
342 | | |
343 | | /* |
344 | | * we take the encryption data from the internal stuff rather |
345 | | * than what the user has passed us ... as we have to match |
346 | | * exactly for some strange reason |
347 | | */ |
348 | 0 | objstr = OBJ_nid2sn(EVP_CIPHER_nid(xi->enc_cipher.cipher)); |
349 | 0 | if (objstr == NULL) { |
350 | 0 | PEMerr(PEM_F_PEM_X509_INFO_WRITE_BIO, |
351 | 0 | PEM_R_UNSUPPORTED_CIPHER); |
352 | 0 | goto err; |
353 | 0 | } |
354 | | |
355 | | /* create the right magic header stuff */ |
356 | 0 | OPENSSL_assert(strlen(objstr) + 23 + 2 * enc->iv_len + 13 <= |
357 | 0 | sizeof buf); |
358 | 0 | buf[0] = '\0'; |
359 | 0 | PEM_proc_type(buf, PEM_TYPE_ENCRYPTED); |
360 | 0 | PEM_dek_info(buf, objstr, enc->iv_len, (char *)iv); |
361 | | |
362 | | /* use the normal code to write things out */ |
363 | 0 | i = PEM_write_bio(bp, PEM_STRING_RSA, buf, data, i); |
364 | 0 | if (i <= 0) |
365 | 0 | goto err; |
366 | 0 | } else { |
367 | | /* Add DSA/DH */ |
368 | 0 | #ifndef OPENSSL_NO_RSA |
369 | | /* normal optionally encrypted stuff */ |
370 | 0 | if (PEM_write_bio_RSAPrivateKey(bp, |
371 | 0 | xi->x_pkey->dec_pkey->pkey.rsa, |
372 | 0 | enc, kstr, klen, cb, u) <= 0) |
373 | 0 | goto err; |
374 | 0 | #endif |
375 | 0 | } |
376 | 0 | } |
377 | | |
378 | | /* if we have a certificate then write it out now */ |
379 | 0 | if ((xi->x509 != NULL) && (PEM_write_bio_X509(bp, xi->x509) <= 0)) |
380 | 0 | goto err; |
381 | | |
382 | | /* |
383 | | * we are ignoring anything else that is loaded into the X509_INFO |
384 | | * structure for the moment ... as I don't need it so I'm not coding it |
385 | | * here and Eric can do it when this makes it into the base library --tjh |
386 | | */ |
387 | | |
388 | 0 | ret = 1; |
389 | |
|
390 | 0 | err: |
391 | 0 | OPENSSL_cleanse((char *)&ctx, sizeof(ctx)); |
392 | 0 | OPENSSL_cleanse(buf, PEM_BUFSIZE); |
393 | 0 | return (ret); |
394 | 0 | } |