Coverage Report

Created: 2022-08-24 06:30

/src/libressl/crypto/pem/pem_lib.c
Line
Count
Source (jump to first uncovered line)
1
/* $OpenBSD: pem_lib.c,v 1.51 2022/07/31 09:48:27 tb Exp $ */
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 <ctype.h>
60
#include <stdio.h>
61
#include <stdlib.h>
62
#include <string.h>
63
64
#include <openssl/opensslconf.h>
65
66
#include <openssl/buffer.h>
67
#include <openssl/err.h>
68
#include <openssl/evp.h>
69
#include <openssl/objects.h>
70
#include <openssl/pem.h>
71
#include <openssl/pkcs12.h>
72
#include <openssl/x509.h>
73
74
#ifndef OPENSSL_NO_DES
75
#include <openssl/des.h>
76
#endif
77
#ifndef OPENSSL_NO_ENGINE
78
#include <openssl/engine.h>
79
#endif
80
81
#include "asn1_locl.h"
82
#include "evp_locl.h"
83
84
0
#define MIN_LENGTH  4
85
86
static int load_iv(char **fromp, unsigned char *to, int num);
87
static int check_pem(const char *nm, const char *name);
88
int pem_check_suffix(const char *pem_str, const char *suffix);
89
90
/* XXX LSSL ABI XXX return value and `num' ought to be size_t */
91
int
92
PEM_def_callback(char *buf, int num, int w, void *key)
93
0
{
94
0
  size_t l;
95
0
  int i;
96
0
  const char *prompt;
97
98
0
  if (num < 0)
99
0
    return -1;
100
101
0
  if (key) {
102
0
    l = strlen(key);
103
0
    if (l > (size_t)num)
104
0
      l = (size_t)num;
105
0
    memcpy(buf, key, l);
106
0
    return (int)l;
107
0
  }
108
109
0
  prompt = EVP_get_pw_prompt();
110
0
  if (prompt == NULL)
111
0
    prompt = "Enter PEM pass phrase:";
112
113
0
  for (;;) {
114
0
    i = EVP_read_pw_string_min(buf, MIN_LENGTH, num, prompt, w);
115
0
    if (i != 0) {
116
0
      PEMerror(PEM_R_PROBLEMS_GETTING_PASSWORD);
117
0
      memset(buf, 0, num);
118
0
      return (-1);
119
0
    }
120
0
    l = strlen(buf);
121
0
    if (l < MIN_LENGTH) {
122
0
      fprintf(stderr, "phrase is too short, "
123
0
          "needs to be at least %zu chars\n",
124
0
          (size_t)MIN_LENGTH);
125
0
    } else
126
0
      break;
127
0
  }
128
0
  return (int)l;
129
0
}
130
131
void
132
PEM_proc_type(char *buf, int type)
133
0
{
134
0
  const char *str;
135
136
0
  if (type == PEM_TYPE_ENCRYPTED)
137
0
    str = "ENCRYPTED";
138
0
  else if (type == PEM_TYPE_MIC_CLEAR)
139
0
    str = "MIC-CLEAR";
140
0
  else if (type == PEM_TYPE_MIC_ONLY)
141
0
    str = "MIC-ONLY";
142
0
  else
143
0
    str = "BAD-TYPE";
144
145
0
  strlcat(buf, "Proc-Type: 4,", PEM_BUFSIZE);
146
0
  strlcat(buf, str, PEM_BUFSIZE);
147
0
  strlcat(buf, "\n", PEM_BUFSIZE);
148
0
}
149
150
void
151
PEM_dek_info(char *buf, const char *type, int len, char *str)
152
0
{
153
0
  static const unsigned char map[17] = "0123456789ABCDEF";
154
0
  long i;
155
0
  int j;
156
157
0
  strlcat(buf, "DEK-Info: ", PEM_BUFSIZE);
158
0
  strlcat(buf, type, PEM_BUFSIZE);
159
0
  strlcat(buf, ",", PEM_BUFSIZE);
160
0
  j = strlen(buf);
161
0
  if (j + (len * 2) + 1 > PEM_BUFSIZE)
162
0
    return;
163
0
  for (i = 0; i < len; i++) {
164
0
    buf[j + i * 2] = map[(str[i] >> 4) & 0x0f];
165
0
    buf[j + i * 2 + 1] = map[(str[i]) & 0x0f];
166
0
  }
167
0
  buf[j + i * 2] = '\n';
168
0
  buf[j + i * 2 + 1] = '\0';
169
0
}
170
171
void *
172
PEM_ASN1_read(d2i_of_void *d2i, const char *name, FILE *fp, void **x,
173
    pem_password_cb *cb, void *u)
174
0
{
175
0
  BIO *b;
176
0
  void *ret;
177
178
0
  if ((b = BIO_new(BIO_s_file())) == NULL) {
179
0
    PEMerror(ERR_R_BUF_LIB);
180
0
    return (0);
181
0
  }
182
0
  BIO_set_fp(b, fp, BIO_NOCLOSE);
183
0
  ret = PEM_ASN1_read_bio(d2i, name, b, x, cb, u);
184
0
  BIO_free(b);
185
0
  return (ret);
186
0
}
187
188
static int
189
check_pem(const char *nm, const char *name)
190
0
{
191
  /* Normal matching nm and name */
192
0
  if (!strcmp(nm, name))
193
0
    return 1;
194
195
  /* Make PEM_STRING_EVP_PKEY match any private key */
196
197
0
  if (!strcmp(name, PEM_STRING_EVP_PKEY)) {
198
0
    int slen;
199
0
    const EVP_PKEY_ASN1_METHOD *ameth;
200
0
    if (!strcmp(nm, PEM_STRING_PKCS8))
201
0
      return 1;
202
0
    if (!strcmp(nm, PEM_STRING_PKCS8INF))
203
0
      return 1;
204
0
    slen = pem_check_suffix(nm, "PRIVATE KEY");
205
0
    if (slen > 0) {
206
      /* NB: ENGINE implementations wont contain
207
       * a deprecated old private key decode function
208
       * so don't look for them.
209
       */
210
0
      ameth = EVP_PKEY_asn1_find_str(NULL, nm, slen);
211
0
      if (ameth && ameth->old_priv_decode)
212
0
        return 1;
213
0
    }
214
0
    return 0;
215
0
  }
216
217
0
  if (!strcmp(name, PEM_STRING_PARAMETERS)) {
218
0
    int slen;
219
0
    const EVP_PKEY_ASN1_METHOD *ameth;
220
0
    slen = pem_check_suffix(nm, "PARAMETERS");
221
0
    if (slen > 0) {
222
0
      ENGINE *e;
223
0
      ameth = EVP_PKEY_asn1_find_str(&e, nm, slen);
224
0
      if (ameth) {
225
0
        int r;
226
0
        if (ameth->param_decode)
227
0
          r = 1;
228
0
        else
229
0
          r = 0;
230
0
#ifndef OPENSSL_NO_ENGINE
231
0
        ENGINE_finish(e);
232
0
#endif
233
0
        return r;
234
0
      }
235
0
    }
236
0
    return 0;
237
0
  }
238
239
  /* Permit older strings */
240
241
0
  if (!strcmp(nm, PEM_STRING_X509_OLD) &&
242
0
      !strcmp(name, PEM_STRING_X509))
243
0
    return 1;
244
245
0
  if (!strcmp(nm, PEM_STRING_X509_REQ_OLD) &&
246
0
      !strcmp(name, PEM_STRING_X509_REQ))
247
0
    return 1;
248
249
  /* Allow normal certs to be read as trusted certs */
250
0
  if (!strcmp(nm, PEM_STRING_X509) &&
251
0
      !strcmp(name, PEM_STRING_X509_TRUSTED))
252
0
    return 1;
253
254
0
  if (!strcmp(nm, PEM_STRING_X509_OLD) &&
255
0
      !strcmp(name, PEM_STRING_X509_TRUSTED))
256
0
    return 1;
257
258
  /* Some CAs use PKCS#7 with CERTIFICATE headers */
259
0
  if (!strcmp(nm, PEM_STRING_X509) &&
260
0
      !strcmp(name, PEM_STRING_PKCS7))
261
0
    return 1;
262
263
0
  if (!strcmp(nm, PEM_STRING_PKCS7_SIGNED) &&
264
0
      !strcmp(name, PEM_STRING_PKCS7))
265
0
    return 1;
266
267
0
#ifndef OPENSSL_NO_CMS
268
0
  if (strcmp(nm, PEM_STRING_X509) == 0 &&
269
0
      strcmp(name, PEM_STRING_CMS) == 0)
270
0
    return 1;
271
272
  /* Allow CMS to be read from PKCS#7 headers */
273
0
  if (strcmp(nm, PEM_STRING_PKCS7) == 0 &&
274
0
      strcmp(name, PEM_STRING_CMS) == 0)
275
0
    return 1;
276
0
#endif
277
278
0
  return 0;
279
0
}
280
281
int
282
PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm,
283
    const char *name, BIO *bp, pem_password_cb *cb, void *u)
284
0
{
285
0
  EVP_CIPHER_INFO cipher;
286
0
  char *nm = NULL, *header = NULL;
287
0
  unsigned char *data = NULL;
288
0
  long len;
289
0
  int ret = 0;
290
291
0
  for (;;) {
292
0
    if (!PEM_read_bio(bp, &nm, &header, &data, &len)) {
293
0
      if (ERR_GET_REASON(ERR_peek_error()) ==
294
0
          PEM_R_NO_START_LINE)
295
0
        ERR_asprintf_error_data("Expecting: %s", name);
296
0
      return 0;
297
0
    }
298
0
    if (check_pem(nm, name))
299
0
      break;
300
0
    free(nm);
301
0
    free(header);
302
0
    free(data);
303
0
  }
304
0
  if (!PEM_get_EVP_CIPHER_INFO(header, &cipher))
305
0
    goto err;
306
0
  if (!PEM_do_header(&cipher, data, &len, cb, u))
307
0
    goto err;
308
309
0
  *pdata = data;
310
0
  *plen = len;
311
312
0
  if (pnm)
313
0
    *pnm = nm;
314
315
0
  ret = 1;
316
317
0
err:
318
0
  if (!ret || !pnm)
319
0
    free(nm);
320
0
  free(header);
321
0
  if (!ret)
322
0
    free(data);
323
0
  return ret;
324
0
}
325
326
int
327
PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp, void *x,
328
    const EVP_CIPHER *enc, unsigned char *kstr, int klen,
329
    pem_password_cb *callback, void *u)
330
0
{
331
0
  BIO *b;
332
0
  int ret;
333
334
0
  if ((b = BIO_new(BIO_s_file())) == NULL) {
335
0
    PEMerror(ERR_R_BUF_LIB);
336
0
    return (0);
337
0
  }
338
0
  BIO_set_fp(b, fp, BIO_NOCLOSE);
339
0
  ret = PEM_ASN1_write_bio(i2d, name, b, x, enc, kstr, klen, callback, u);
340
0
  BIO_free(b);
341
0
  return (ret);
342
0
}
343
344
int
345
PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, void *x,
346
    const EVP_CIPHER *enc, unsigned char *kstr, int klen,
347
    pem_password_cb *callback, void *u)
348
0
{
349
0
  EVP_CIPHER_CTX ctx;
350
0
  int dsize = 0, i, j, ret = 0;
351
0
  unsigned char *p, *data = NULL;
352
0
  const char *objstr = NULL;
353
0
  char buf[PEM_BUFSIZE];
354
0
  unsigned char key[EVP_MAX_KEY_LENGTH];
355
0
  unsigned char iv[EVP_MAX_IV_LENGTH];
356
357
0
  if (enc != NULL) {
358
0
    objstr = OBJ_nid2sn(EVP_CIPHER_nid(enc));
359
0
    if (objstr == NULL) {
360
0
      PEMerror(PEM_R_UNSUPPORTED_CIPHER);
361
0
      goto err;
362
0
    }
363
0
  }
364
365
0
  if ((dsize = i2d(x, NULL)) < 0) {
366
0
    PEMerror(ERR_R_ASN1_LIB);
367
0
    dsize = 0;
368
0
    goto err;
369
0
  }
370
  /* dzise + 8 bytes are needed */
371
  /* actually it needs the cipher block size extra... */
372
0
  data = malloc(dsize + 20);
373
0
  if (data == NULL) {
374
0
    PEMerror(ERR_R_MALLOC_FAILURE);
375
0
    goto err;
376
0
  }
377
0
  p = data;
378
0
  i = i2d(x, &p);
379
380
0
  if (enc != NULL) {
381
0
    if (kstr == NULL) {
382
0
      if (callback == NULL)
383
0
        klen = PEM_def_callback(buf, PEM_BUFSIZE, 1, u);
384
0
      else
385
0
        klen = (*callback)(buf, PEM_BUFSIZE, 1, u);
386
0
      if (klen <= 0) {
387
0
        PEMerror(PEM_R_READ_KEY);
388
0
        goto err;
389
0
      }
390
0
      kstr = (unsigned char *)buf;
391
0
    }
392
0
    if ((size_t)enc->iv_len > sizeof(iv)) {
393
0
      PEMerror(EVP_R_IV_TOO_LARGE);
394
0
      goto err;
395
0
    }
396
0
    arc4random_buf(iv, enc->iv_len); /* Generate a salt */
397
    /* The 'iv' is used as the iv and as a salt.  It is
398
     * NOT taken from the BytesToKey function */
399
0
    if (!EVP_BytesToKey(enc, EVP_md5(), iv, kstr, klen, 1,
400
0
        key, NULL))
401
0
      goto err;
402
403
0
    if (kstr == (unsigned char *)buf)
404
0
      explicit_bzero(buf, PEM_BUFSIZE);
405
406
0
    if (strlen(objstr) + 23 + 2 * enc->iv_len + 13 > sizeof buf) {
407
0
      PEMerror(ASN1_R_BUFFER_TOO_SMALL);
408
0
      goto err;
409
0
    }
410
411
0
    buf[0] = '\0';
412
0
    PEM_proc_type(buf, PEM_TYPE_ENCRYPTED);
413
0
    PEM_dek_info(buf, objstr, enc->iv_len, (char *)iv);
414
    /* k=strlen(buf); */
415
416
0
    EVP_CIPHER_CTX_init(&ctx);
417
0
    ret = 1;
418
0
    if (!EVP_EncryptInit_ex(&ctx, enc, NULL, key, iv) ||
419
0
        !EVP_EncryptUpdate(&ctx, data, &j, data, i) ||
420
0
        !EVP_EncryptFinal_ex(&ctx, &(data[j]), &i))
421
0
      ret = 0;
422
0
    EVP_CIPHER_CTX_cleanup(&ctx);
423
0
    if (ret == 0)
424
0
      goto err;
425
0
    i += j;
426
0
  } else {
427
0
    ret = 1;
428
0
    buf[0] = '\0';
429
0
  }
430
0
  i = PEM_write_bio(bp, name, buf, data, i);
431
0
  if (i <= 0)
432
0
    ret = 0;
433
0
err:
434
0
  explicit_bzero(key, sizeof(key));
435
0
  explicit_bzero(iv, sizeof(iv));
436
0
  explicit_bzero((char *)&ctx, sizeof(ctx));
437
0
  explicit_bzero(buf, PEM_BUFSIZE);
438
0
  freezero(data, (unsigned int)dsize);
439
0
  return (ret);
440
0
}
441
442
int
443
PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *plen,
444
    pem_password_cb *callback, void *u)
445
0
{
446
0
  int i, j, o, klen;
447
0
  long len;
448
0
  EVP_CIPHER_CTX ctx;
449
0
  unsigned char key[EVP_MAX_KEY_LENGTH];
450
0
  char buf[PEM_BUFSIZE];
451
452
0
  len = *plen;
453
454
0
  if (cipher->cipher == NULL)
455
0
    return (1);
456
0
  if (callback == NULL)
457
0
    klen = PEM_def_callback(buf, PEM_BUFSIZE, 0, u);
458
0
  else
459
0
    klen = callback(buf, PEM_BUFSIZE, 0, u);
460
0
  if (klen <= 0) {
461
0
    PEMerror(PEM_R_BAD_PASSWORD_READ);
462
0
    return (0);
463
0
  }
464
0
  if (!EVP_BytesToKey(cipher->cipher, EVP_md5(), &(cipher->iv[0]),
465
0
      (unsigned char *)buf, klen, 1, key, NULL))
466
0
    return 0;
467
468
0
  j = (int)len;
469
0
  EVP_CIPHER_CTX_init(&ctx);
470
0
  o = EVP_DecryptInit_ex(&ctx, cipher->cipher, NULL, key,
471
0
      &(cipher->iv[0]));
472
0
  if (o)
473
0
    o = EVP_DecryptUpdate(&ctx, data, &i, data, j);
474
0
  if (o)
475
0
    o = EVP_DecryptFinal_ex(&ctx, &(data[i]), &j);
476
0
  EVP_CIPHER_CTX_cleanup(&ctx);
477
0
  explicit_bzero((char *)buf, sizeof(buf));
478
0
  explicit_bzero((char *)key, sizeof(key));
479
0
  if (!o) {
480
0
    PEMerror(PEM_R_BAD_DECRYPT);
481
0
    return (0);
482
0
  }
483
0
  *plen = j + i;
484
0
  return (1);
485
0
}
486
487
int
488
PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher)
489
0
{
490
0
  const EVP_CIPHER *enc = NULL;
491
0
  char *p, c;
492
0
  char **header_pp = &header;
493
494
0
  cipher->cipher = NULL;
495
0
  if ((header == NULL) || (*header == '\0') || (*header == '\n'))
496
0
    return (1);
497
0
  if (strncmp(header, "Proc-Type: ", 11) != 0) {
498
0
    PEMerror(PEM_R_NOT_PROC_TYPE);
499
0
    return (0);
500
0
  }
501
0
  header += 11;
502
0
  if (*header != '4')
503
0
    return (0);
504
0
  header++;
505
0
  if (*header != ',')
506
0
    return (0);
507
0
  header++;
508
0
  if (strncmp(header, "ENCRYPTED", 9) != 0) {
509
0
    PEMerror(PEM_R_NOT_ENCRYPTED);
510
0
    return (0);
511
0
  }
512
0
  for (; (*header != '\n') && (*header != '\0'); header++)
513
0
    ;
514
0
  if (*header == '\0') {
515
0
    PEMerror(PEM_R_SHORT_HEADER);
516
0
    return (0);
517
0
  }
518
0
  header++;
519
0
  if (strncmp(header, "DEK-Info: ", 10) != 0) {
520
0
    PEMerror(PEM_R_NOT_DEK_INFO);
521
0
    return (0);
522
0
  }
523
0
  header += 10;
524
525
0
  p = header;
526
0
  for (;;) {
527
0
    c= *header;
528
0
    if (!(  ((c >= 'A') && (c <= 'Z')) || (c == '-') ||
529
0
        ((c >= '0') && (c <= '9'))))
530
0
      break;
531
0
    header++;
532
0
  }
533
0
  *header = '\0';
534
0
  cipher->cipher = enc = EVP_get_cipherbyname(p);
535
0
  *header = c;
536
0
  header++;
537
538
0
  if (enc == NULL) {
539
0
    PEMerror(PEM_R_UNSUPPORTED_ENCRYPTION);
540
0
    return (0);
541
0
  }
542
0
  if (!load_iv(header_pp, &(cipher->iv[0]), enc->iv_len))
543
0
    return (0);
544
545
0
  return (1);
546
0
}
547
548
static int
549
load_iv(char **fromp, unsigned char *to, int num)
550
0
{
551
0
  int v, i;
552
0
  char *from;
553
554
0
  from= *fromp;
555
0
  for (i = 0; i < num; i++)
556
0
    to[i] = 0;
557
0
  num *= 2;
558
0
  for (i = 0; i < num; i++) {
559
0
    if ((*from >= '0') && (*from <= '9'))
560
0
      v = *from - '0';
561
0
    else if ((*from >= 'A') && (*from <= 'F'))
562
0
      v = *from - 'A' + 10;
563
0
    else if ((*from >= 'a') && (*from <= 'f'))
564
0
      v = *from - 'a' + 10;
565
0
    else {
566
0
      PEMerror(PEM_R_BAD_IV_CHARS);
567
0
      return (0);
568
0
    }
569
0
    from++;
570
0
    to[i / 2] |= v << (long)((!(i & 1)) * 4);
571
0
  }
572
573
0
  *fromp = from;
574
0
  return (1);
575
0
}
576
577
int
578
PEM_write(FILE *fp, const char *name, const char *header,
579
    const unsigned char *data, long len)
580
0
{
581
0
  BIO *b;
582
0
  int ret;
583
584
0
  if ((b = BIO_new(BIO_s_file())) == NULL) {
585
0
    PEMerror(ERR_R_BUF_LIB);
586
0
    return (0);
587
0
  }
588
0
  BIO_set_fp(b, fp, BIO_NOCLOSE);
589
0
  ret = PEM_write_bio(b, name, header, data, len);
590
0
  BIO_free(b);
591
0
  return (ret);
592
0
}
593
594
int
595
PEM_write_bio(BIO *bp, const char *name, const char *header,
596
    const unsigned char *data, long len)
597
0
{
598
0
  int nlen, n, i, j, outl;
599
0
  unsigned char *buf = NULL;
600
0
  EVP_ENCODE_CTX ctx;
601
0
  int reason = ERR_R_BUF_LIB;
602
603
0
  EVP_EncodeInit(&ctx);
604
0
  nlen = strlen(name);
605
606
0
  if ((BIO_write(bp, "-----BEGIN ", 11) != 11) ||
607
0
      (BIO_write(bp, name, nlen) != nlen) ||
608
0
      (BIO_write(bp, "-----\n", 6) != 6))
609
0
    goto err;
610
611
0
  if (header != NULL && (i = strlen(header)) > 0) {
612
0
    if ((BIO_write(bp, header, i) != i) ||
613
0
        (BIO_write(bp, "\n", 1) != 1))
614
0
      goto err;
615
0
  }
616
617
0
  buf = reallocarray(NULL, PEM_BUFSIZE, 8);
618
0
  if (buf == NULL) {
619
0
    reason = ERR_R_MALLOC_FAILURE;
620
0
    goto err;
621
0
  }
622
623
0
  i = j = 0;
624
0
  while (len > 0) {
625
0
    n = (int)((len > (PEM_BUFSIZE * 5)) ? (PEM_BUFSIZE * 5) : len);
626
0
    if (!EVP_EncodeUpdate(&ctx, buf, &outl, &(data[j]), n))
627
0
      goto err;
628
0
    if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl))
629
0
      goto err;
630
0
    i += outl;
631
0
    len -= n;
632
0
    j += n;
633
0
  }
634
0
  EVP_EncodeFinal(&ctx, buf, &outl);
635
0
  if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl))
636
0
    goto err;
637
0
  freezero(buf, PEM_BUFSIZE * 8);
638
0
  buf = NULL;
639
0
  if ((BIO_write(bp, "-----END ", 9) != 9) ||
640
0
      (BIO_write(bp, name, nlen) != nlen) ||
641
0
      (BIO_write(bp, "-----\n", 6) != 6))
642
0
    goto err;
643
0
  return (i + outl);
644
645
0
err:
646
0
  freezero(buf, PEM_BUFSIZE * 8);
647
0
  PEMerror(reason);
648
0
  return (0);
649
0
}
650
651
int
652
PEM_read(FILE *fp, char **name, char **header, unsigned char **data, long *len)
653
0
{
654
0
  BIO *b;
655
0
  int ret;
656
657
0
  if ((b = BIO_new(BIO_s_file())) == NULL) {
658
0
    PEMerror(ERR_R_BUF_LIB);
659
0
    return (0);
660
0
  }
661
0
  BIO_set_fp(b, fp, BIO_NOCLOSE);
662
0
  ret = PEM_read_bio(b, name, header, data, len);
663
0
  BIO_free(b);
664
0
  return (ret);
665
0
}
666
667
int
668
PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data,
669
    long *len)
670
0
{
671
0
  EVP_ENCODE_CTX ctx;
672
0
  int end = 0, i, k, bl = 0, hl = 0, nohead = 0;
673
0
  char buf[256];
674
0
  BUF_MEM *nameB;
675
0
  BUF_MEM *headerB;
676
0
  BUF_MEM *dataB, *tmpB;
677
678
0
  nameB = BUF_MEM_new();
679
0
  headerB = BUF_MEM_new();
680
0
  dataB = BUF_MEM_new();
681
0
  if ((nameB == NULL) || (headerB == NULL) || (dataB == NULL)) {
682
0
    BUF_MEM_free(nameB);
683
0
    BUF_MEM_free(headerB);
684
0
    BUF_MEM_free(dataB);
685
0
    PEMerror(ERR_R_MALLOC_FAILURE);
686
0
    return (0);
687
0
  }
688
689
0
  buf[254] = '\0';
690
0
  for (;;) {
691
0
    i = BIO_gets(bp, buf, 254);
692
693
0
    if (i <= 0) {
694
0
      PEMerror(PEM_R_NO_START_LINE);
695
0
      goto err;
696
0
    }
697
698
0
    while ((i >= 0) && (buf[i] <= ' '))
699
0
      i--;
700
0
    buf[++i] = '\n';
701
0
    buf[++i] = '\0';
702
703
0
    if (strncmp(buf, "-----BEGIN ", 11) == 0) {
704
0
      i = strlen(&(buf[11]));
705
706
0
      if (strncmp(&(buf[11 + i - 6]), "-----\n", 6) != 0)
707
0
        continue;
708
0
      if (!BUF_MEM_grow(nameB, i + 9)) {
709
0
        PEMerror(ERR_R_MALLOC_FAILURE);
710
0
        goto err;
711
0
      }
712
0
      memcpy(nameB->data, &(buf[11]), i - 6);
713
0
      nameB->data[i - 6] = '\0';
714
0
      break;
715
0
    }
716
0
  }
717
0
  hl = 0;
718
0
  if (!BUF_MEM_grow(headerB, 256)) {
719
0
    PEMerror(ERR_R_MALLOC_FAILURE);
720
0
    goto err;
721
0
  }
722
0
  headerB->data[0] = '\0';
723
0
  for (;;) {
724
0
    i = BIO_gets(bp, buf, 254);
725
0
    if (i <= 0)
726
0
      break;
727
728
0
    while ((i >= 0) && (buf[i] <= ' '))
729
0
      i--;
730
0
    buf[++i] = '\n';
731
0
    buf[++i] = '\0';
732
733
0
    if (buf[0] == '\n')
734
0
      break;
735
0
    if (!BUF_MEM_grow(headerB, hl + i + 9)) {
736
0
      PEMerror(ERR_R_MALLOC_FAILURE);
737
0
      goto err;
738
0
    }
739
0
    if (strncmp(buf, "-----END ", 9) == 0) {
740
0
      nohead = 1;
741
0
      break;
742
0
    }
743
0
    memcpy(&(headerB->data[hl]), buf, i);
744
0
    headerB->data[hl + i] = '\0';
745
0
    hl += i;
746
0
  }
747
748
0
  bl = 0;
749
0
  if (!BUF_MEM_grow(dataB, 1024)) {
750
0
    PEMerror(ERR_R_MALLOC_FAILURE);
751
0
    goto err;
752
0
  }
753
0
  dataB->data[0] = '\0';
754
0
  if (!nohead) {
755
0
    for (;;) {
756
0
      i = BIO_gets(bp, buf, 254);
757
0
      if (i <= 0)
758
0
        break;
759
760
0
      while ((i >= 0) && (buf[i] <= ' '))
761
0
        i--;
762
0
      buf[++i] = '\n';
763
0
      buf[++i] = '\0';
764
765
0
      if (i != 65)
766
0
        end = 1;
767
0
      if (strncmp(buf, "-----END ", 9) == 0)
768
0
        break;
769
0
      if (i > 65)
770
0
        break;
771
0
      if (!BUF_MEM_grow_clean(dataB, i + bl + 9)) {
772
0
        PEMerror(ERR_R_MALLOC_FAILURE);
773
0
        goto err;
774
0
      }
775
0
      memcpy(&(dataB->data[bl]), buf, i);
776
0
      dataB->data[bl + i] = '\0';
777
0
      bl += i;
778
0
      if (end) {
779
0
        buf[0] = '\0';
780
0
        i = BIO_gets(bp, buf, 254);
781
0
        if (i <= 0)
782
0
          break;
783
784
0
        while ((i >= 0) && (buf[i] <= ' '))
785
0
          i--;
786
0
        buf[++i] = '\n';
787
0
        buf[++i] = '\0';
788
789
0
        break;
790
0
      }
791
0
    }
792
0
  } else {
793
0
    tmpB = headerB;
794
0
    headerB = dataB;
795
0
    dataB = tmpB;
796
0
    bl = hl;
797
0
  }
798
0
  i = strlen(nameB->data);
799
0
  if ((strncmp(buf, "-----END ", 9) != 0) ||
800
0
      (strncmp(nameB->data, &(buf[9]), i) != 0) ||
801
0
      (strncmp(&(buf[9 + i]), "-----\n", 6) != 0)) {
802
0
    PEMerror(PEM_R_BAD_END_LINE);
803
0
    goto err;
804
0
  }
805
806
0
  EVP_DecodeInit(&ctx);
807
0
  i = EVP_DecodeUpdate(&ctx,
808
0
      (unsigned char *)dataB->data, &bl,
809
0
      (unsigned char *)dataB->data, bl);
810
0
  if (i < 0) {
811
0
    PEMerror(PEM_R_BAD_BASE64_DECODE);
812
0
    goto err;
813
0
  }
814
0
  i = EVP_DecodeFinal(&ctx, (unsigned char *)&(dataB->data[bl]), &k);
815
0
  if (i < 0) {
816
0
    PEMerror(PEM_R_BAD_BASE64_DECODE);
817
0
    goto err;
818
0
  }
819
0
  bl += k;
820
821
0
  if (bl == 0)
822
0
    goto err;
823
0
  *name = nameB->data;
824
0
  *header = headerB->data;
825
0
  *data = (unsigned char *)dataB->data;
826
0
  *len = bl;
827
0
  free(nameB);
828
0
  free(headerB);
829
0
  free(dataB);
830
0
  return (1);
831
832
0
err:
833
0
  BUF_MEM_free(nameB);
834
0
  BUF_MEM_free(headerB);
835
0
  BUF_MEM_free(dataB);
836
0
  return (0);
837
0
}
838
839
/* Check pem string and return prefix length.
840
 * If for example the pem_str == "RSA PRIVATE KEY" and suffix = "PRIVATE KEY"
841
 * the return value is 3 for the string "RSA".
842
 */
843
844
int
845
pem_check_suffix(const char *pem_str, const char *suffix)
846
0
{
847
0
  int pem_len = strlen(pem_str);
848
0
  int suffix_len = strlen(suffix);
849
0
  const char *p;
850
851
0
  if (suffix_len + 1 >= pem_len)
852
0
    return 0;
853
0
  p = pem_str + pem_len - suffix_len;
854
0
  if (strcmp(p, suffix))
855
0
    return 0;
856
0
  p--;
857
0
  if (*p != ' ')
858
0
    return 0;
859
0
  return p - pem_str;
860
0
}