smime.c 21.5 KB
Newer Older
1
/*
M
Matt Caswell 已提交
2
 * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
R
Rich Salz 已提交
5 6 7
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8 9 10 11 12 13
 */

/* S/MIME utility function */

#include <stdio.h>
#include <string.h>
14
#include "apps.h"
15
#include "progs.h"
16
#include <openssl/crypto.h>
17 18
#include <openssl/pem.h>
#include <openssl/err.h>
19 20
#include <openssl/x509_vfy.h>
#include <openssl/x509v3.h>
21

22
static int save_certs(char *signerfile, STACK_OF(X509) *signers);
23
static int smime_cb(int ok, X509_STORE_CTX *ctx);
24

25 26 27 28 29 30 31 32 33
#define SMIME_OP        0x10
#define SMIME_IP        0x20
#define SMIME_SIGNERS   0x40
#define SMIME_ENCRYPT   (1 | SMIME_OP)
#define SMIME_DECRYPT   (2 | SMIME_IP)
#define SMIME_SIGN      (3 | SMIME_OP | SMIME_SIGNERS)
#define SMIME_VERIFY    (4 | SMIME_IP)
#define SMIME_PK7OUT    (5 | SMIME_IP | SMIME_OP)
#define SMIME_RESIGN    (6 | SMIME_IP | SMIME_OP | SMIME_SIGNERS)
34

35 36 37 38 39 40
typedef enum OPTION_choice {
    OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
    OPT_ENCRYPT, OPT_DECRYPT, OPT_SIGN, OPT_RESIGN, OPT_VERIFY,
    OPT_PK7OUT, OPT_TEXT, OPT_NOINTERN, OPT_NOVERIFY, OPT_NOCHAIN,
    OPT_NOCERTS, OPT_NOATTR, OPT_NODETACH, OPT_NOSMIMECAP,
    OPT_BINARY, OPT_NOSIGS, OPT_STREAM, OPT_INDEF, OPT_NOINDEF,
R
Rich Salz 已提交
41
    OPT_CRLFEOL, OPT_ENGINE, OPT_PASSIN,
42 43
    OPT_TO, OPT_FROM, OPT_SUBJECT, OPT_SIGNER, OPT_RECIP, OPT_MD,
    OPT_CIPHER, OPT_INKEY, OPT_KEYFORM, OPT_CERTFILE, OPT_CAFILE,
44
    OPT_CAPATH, OPT_CASTORE, OPT_NOCAFILE, OPT_NOCAPATH, OPT_NOCASTORE,
R
Rich Salz 已提交
45
    OPT_R_ENUM,
46
    OPT_V_ENUM,
47
    OPT_IN, OPT_INFORM, OPT_OUT,
48
    OPT_OUTFORM, OPT_CONTENT
49 50
} OPTION_CHOICE;

F
FdaSilvaYY 已提交
51
const OPTIONS smime_options[] = {
52 53 54
    {OPT_HELP_STR, 1, '-', "Usage: %s [options] cert.pem...\n"},
    {OPT_HELP_STR, 1, '-',
        "  cert.pem... recipient certs for encryption\n"},
R
Rich Salz 已提交
55 56

    OPT_SECTION("General"),
57
    {"help", OPT_HELP, '-', "Display this summary"},
R
Rich Salz 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
    {"in", OPT_IN, '<', "Input file"},
    {"inform", OPT_INFORM, 'c', "Input format SMIME (default), PEM or DER"},
    {"out", OPT_OUT, '>', "Output file"},
    {"outform", OPT_OUTFORM, 'c',
     "Output format SMIME (default), PEM or DER"},
    {"inkey", OPT_INKEY, 's',
     "Input private key (if not signer or recipient)"},
    {"keyform", OPT_KEYFORM, 'f', "Input private key format (PEM or ENGINE)"},
#ifndef OPENSSL_NO_ENGINE
    {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
#endif
    {"stream", OPT_STREAM, '-', "Enable CMS streaming" },
    {"indef", OPT_INDEF, '-', "Same as -stream" },
    {"noindef", OPT_NOINDEF, '-', "Disable CMS streaming"},

    OPT_SECTION("Action"),
74 75 76
    {"encrypt", OPT_ENCRYPT, '-', "Encrypt message"},
    {"decrypt", OPT_DECRYPT, '-', "Decrypt encrypted message"},
    {"sign", OPT_SIGN, '-', "Sign message"},
R
Rich Salz 已提交
77
    {"resign", OPT_RESIGN, '-', "Resign a signed message"},
78
    {"verify", OPT_VERIFY, '-', "Verify signed message"},
R
Rich Salz 已提交
79 80 81 82 83

    OPT_SECTION("Signing/Encryption"),
    {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
    {"md", OPT_MD, 's', "Digest algorithm to use when signing or resigning"},
    {"", OPT_CIPHER, '-', "Any supported cipher"},
84 85 86 87 88 89
    {"pk7out", OPT_PK7OUT, '-', "Output PKCS#7 structure"},
    {"nointern", OPT_NOINTERN, '-',
     "Don't search certificates in message for signer"},
    {"nodetach", OPT_NODETACH, '-', "Use opaque signing"},
    {"noattr", OPT_NOATTR, '-', "Don't include any signed attributes"},
    {"binary", OPT_BINARY, '-', "Don't translate message to text"},
90
    {"signer", OPT_SIGNER, 's', "Signer certificate file"},
91 92
    {"content", OPT_CONTENT, '<',
     "Supply or override content for detached signature"},
R
Rich Salz 已提交
93 94 95 96 97 98 99 100 101 102 103
    {"nocerts", OPT_NOCERTS, '-',
     "Don't include signers certificate when signing"},

    OPT_SECTION("Verification/Decryption"),
    {"nosigs", OPT_NOSIGS, '-', "Don't verify message signature"},
    {"noverify", OPT_NOVERIFY, '-', "Don't verify signers certificate"},

    {"certfile", OPT_CERTFILE, '<', "Other certificates file"},
    {"recip", OPT_RECIP, '<', "Recipient certificate file for decryption"},

    OPT_SECTION("Email"),
104 105 106 107
    {"to", OPT_TO, 's', "To address"},
    {"from", OPT_FROM, 's', "From address"},
    {"subject", OPT_SUBJECT, 's', "Subject"},
    {"text", OPT_TEXT, '-', "Include or delete text MIME headers"},
R
Rich Salz 已提交
108 109 110
    {"nosmimecap", OPT_NOSMIMECAP, '-', "Omit the SMIMECapabilities attribute"},

    OPT_SECTION("Certificate chain"),
111 112
    {"CApath", OPT_CAPATH, '/', "Trusted certificates directory"},
    {"CAfile", OPT_CAFILE, '<', "Trusted certificates file"},
113
    {"CAstore", OPT_CASTORE, ':', "Trusted certificates store URI"},
114 115 116 117
    {"no-CAfile", OPT_NOCAFILE, '-',
     "Do not load the default certificates file"},
    {"no-CApath", OPT_NOCAPATH, '-',
     "Do not load certificates from the default certificates directory"},
118 119
    {"no-CAstore", OPT_NOCASTORE, '-',
     "Do not load certificates from the default certificates store"},
120
    {"nochain", OPT_NOCHAIN, '-',
121 122
     "set PKCS7_NOCHAIN so certificates contained in the message are not used as untrusted CAs" },
    {"crlfeol", OPT_CRLFEOL, '-', "Use CRLF as EOL termination instead of CR only"},
R
Rich Salz 已提交
123

R
Rich Salz 已提交
124
    OPT_R_OPTIONS,
125 126 127
    OPT_V_OPTIONS,
    {NULL}
};
128

129
int smime_main(int argc, char **argv)
130
{
131
    BIO *in = NULL, *out = NULL, *indata = NULL;
132
    EVP_PKEY *key = NULL;
133 134
    PKCS7 *p7 = NULL;
    STACK_OF(OPENSSL_STRING) *sksigners = NULL, *skkeys = NULL;
135
    STACK_OF(X509) *encerts = NULL, *other = NULL;
136 137 138 139
    X509 *cert = NULL, *recip = NULL, *signer = NULL;
    X509_STORE *store = NULL;
    X509_VERIFY_PARAM *vpm = NULL;
    const EVP_CIPHER *cipher = NULL;
140
    const EVP_MD *sign_md = NULL;
141
    const char *CAfile = NULL, *CApath = NULL, *CAstore = NULL, *prog = NULL;
R
Rich Salz 已提交
142 143 144
    char *certfile = NULL, *keyfile = NULL, *contfile = NULL;
    char *infile = NULL, *outfile = NULL, *signerfile = NULL, *recipfile = NULL;
    char *passinarg = NULL, *passin = NULL, *to = NULL, *from = NULL, *subject = NULL;
145
    OPTION_CHOICE o;
146
    int noCApath = 0, noCAfile = 0, noCAstore = 0;
R
Rich Salz 已提交
147
    int flags = PKCS7_DETACHED, operation = 0, ret = 0, indef = 0;
148 149 150 151
    int informat = FORMAT_SMIME, outformat = FORMAT_SMIME, keyform =
        FORMAT_PEM;
    int vpmtouched = 0, rv = 0;
    ENGINE *e = NULL;
D
Dr. Stephen Henson 已提交
152
    const char *mime_eol = "\n";
153

154 155
    if ((vpm = X509_VERIFY_PARAM_new()) == NULL)
        return 1;
156

157 158 159 160 161 162 163 164 165 166 167 168 169
    prog = opt_init(argc, argv, smime_options);
    while ((o = opt_next()) != OPT_EOF) {
        switch (o) {
        case OPT_EOF:
        case OPT_ERR:
 opthelp:
            BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
            goto end;
        case OPT_HELP:
            opt_help(smime_options);
            ret = 0;
            goto end;
        case OPT_INFORM:
170
            if (!opt_format(opt_arg(), OPT_FMT_PDS, &informat))
171 172 173 174 175 176
                goto opthelp;
            break;
        case OPT_IN:
            infile = opt_arg();
            break;
        case OPT_OUTFORM:
177
            if (!opt_format(opt_arg(), OPT_FMT_PDS, &outformat))
178 179 180 181 182 183
                goto opthelp;
            break;
        case OPT_OUT:
            outfile = opt_arg();
            break;
        case OPT_ENCRYPT:
184
            operation = SMIME_ENCRYPT;
185 186
            break;
        case OPT_DECRYPT:
187
            operation = SMIME_DECRYPT;
188 189
            break;
        case OPT_SIGN:
190
            operation = SMIME_SIGN;
191 192
            break;
        case OPT_RESIGN:
193
            operation = SMIME_RESIGN;
194 195
            break;
        case OPT_VERIFY:
196
            operation = SMIME_VERIFY;
197 198
            break;
        case OPT_PK7OUT:
199
            operation = SMIME_PK7OUT;
200 201
            break;
        case OPT_TEXT:
202
            flags |= PKCS7_TEXT;
203 204
            break;
        case OPT_NOINTERN:
205
            flags |= PKCS7_NOINTERN;
206 207
            break;
        case OPT_NOVERIFY:
208
            flags |= PKCS7_NOVERIFY;
209 210
            break;
        case OPT_NOCHAIN:
211
            flags |= PKCS7_NOCHAIN;
212 213
            break;
        case OPT_NOCERTS:
214
            flags |= PKCS7_NOCERTS;
215 216
            break;
        case OPT_NOATTR:
217
            flags |= PKCS7_NOATTR;
218 219
            break;
        case OPT_NODETACH:
220
            flags &= ~PKCS7_DETACHED;
221 222
            break;
        case OPT_NOSMIMECAP:
223
            flags |= PKCS7_NOSMIMECAP;
224 225
            break;
        case OPT_BINARY:
226
            flags |= PKCS7_BINARY;
227 228
            break;
        case OPT_NOSIGS:
229
            flags |= PKCS7_NOSIGS;
230 231 232
            break;
        case OPT_STREAM:
        case OPT_INDEF:
233
            indef = 1;
234 235
            break;
        case OPT_NOINDEF:
236
            indef = 0;
237 238
            break;
        case OPT_CRLFEOL:
239
            flags |= PKCS7_CRLFEOL;
D
Dr. Stephen Henson 已提交
240
            mime_eol = "\r\n";
241
            break;
R
Rich Salz 已提交
242 243 244
        case OPT_R_CASES:
            if (!opt_rand(o))
                goto end;
245 246
            break;
        case OPT_ENGINE:
R
Rich Salz 已提交
247
            e = setup_engine(opt_arg(), 0);
248 249 250 251 252 253 254 255 256 257 258 259 260 261
            break;
        case OPT_PASSIN:
            passinarg = opt_arg();
            break;
        case OPT_TO:
            to = opt_arg();
            break;
        case OPT_FROM:
            from = opt_arg();
            break;
        case OPT_SUBJECT:
            subject = opt_arg();
            break;
        case OPT_SIGNER:
262
            /* If previous -signer argument add signer to list */
263
            if (signerfile != NULL) {
264 265 266
                if (sksigners == NULL
                    && (sksigners = sk_OPENSSL_STRING_new_null()) == NULL)
                    goto end;
267
                sk_OPENSSL_STRING_push(sksigners, signerfile);
268
                if (keyfile == NULL)
269
                    keyfile = signerfile;
270 271 272
                if (skkeys == NULL
                    && (skkeys = sk_OPENSSL_STRING_new_null()) == NULL)
                    goto end;
273 274 275
                sk_OPENSSL_STRING_push(skkeys, keyfile);
                keyfile = NULL;
            }
276 277 278 279 280 281 282 283 284 285 286 287 288 289
            signerfile = opt_arg();
            break;
        case OPT_RECIP:
            recipfile = opt_arg();
            break;
        case OPT_MD:
            if (!opt_md(opt_arg(), &sign_md))
                goto opthelp;
            break;
        case OPT_CIPHER:
            if (!opt_cipher(opt_unknown(), &cipher))
                goto opthelp;
            break;
        case OPT_INKEY:
F
FdaSilvaYY 已提交
290
            /* If previous -inkey argument add signer to list */
291
            if (keyfile != NULL) {
292 293 294 295
                if (signerfile == NULL) {
                    BIO_printf(bio_err,
                               "%s: Must have -signer before -inkey\n", prog);
                    goto opthelp;
296
                }
297 298 299
                if (sksigners == NULL
                    && (sksigners = sk_OPENSSL_STRING_new_null()) == NULL)
                    goto end;
300 301
                sk_OPENSSL_STRING_push(sksigners, signerfile);
                signerfile = NULL;
302 303 304
                if (skkeys == NULL
                    && (skkeys = sk_OPENSSL_STRING_new_null()) == NULL)
                    goto end;
305 306
                sk_OPENSSL_STRING_push(skkeys, keyfile);
            }
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
            keyfile = opt_arg();
            break;
        case OPT_KEYFORM:
            if (!opt_format(opt_arg(), OPT_FMT_ANY, &keyform))
                goto opthelp;
            break;
        case OPT_CERTFILE:
            certfile = opt_arg();
            break;
        case OPT_CAFILE:
            CAfile = opt_arg();
            break;
        case OPT_CAPATH:
            CApath = opt_arg();
            break;
322 323 324
        case OPT_CASTORE:
            CAstore = opt_arg();
            break;
325 326 327 328 329 330
        case OPT_NOCAFILE:
            noCAfile = 1;
            break;
        case OPT_NOCAPATH:
            noCApath = 1;
            break;
331 332 333
        case OPT_NOCASTORE:
            noCAstore = 1;
            break;
334 335 336 337 338 339 340 341 342
        case OPT_CONTENT:
            contfile = opt_arg();
            break;
        case OPT_V_CASES:
            if (!opt_verify(o, vpm))
                goto opthelp;
            vpmtouched++;
            break;
        }
343
    }
344 345
    argc = opt_num_rest();
    argv = opt_rest();
346

347
    if (!(operation & SMIME_SIGNERS) && (skkeys != NULL || sksigners != NULL)) {
348
        BIO_puts(bio_err, "Multiple signers or keys not allowed\n");
349
        goto opthelp;
350 351 352 353 354 355
    }

    if (operation & SMIME_SIGNERS) {
        /* Check to see if any final signer needs to be appended */
        if (keyfile && !signerfile) {
            BIO_puts(bio_err, "Illegal -inkey without -signer\n");
356
            goto opthelp;
357
        }
358 359
        if (signerfile != NULL) {
            if (sksigners == NULL
360 361
                && (sksigners = sk_OPENSSL_STRING_new_null()) == NULL)
                goto end;
362
            sk_OPENSSL_STRING_push(sksigners, signerfile);
363 364
            if (!skkeys && (skkeys = sk_OPENSSL_STRING_new_null()) == NULL)
                goto end;
365 366 367 368
            if (!keyfile)
                keyfile = signerfile;
            sk_OPENSSL_STRING_push(skkeys, keyfile);
        }
369
        if (sksigners == NULL) {
370
            BIO_printf(bio_err, "No signer certificate specified\n");
371
            goto opthelp;
372 373 374 375
        }
        signerfile = NULL;
        keyfile = NULL;
    } else if (operation == SMIME_DECRYPT) {
376
        if (recipfile == NULL && keyfile == NULL) {
377 378
            BIO_printf(bio_err,
                       "No recipient certificate or key specified\n");
379
            goto opthelp;
380 381
        }
    } else if (operation == SMIME_ENCRYPT) {
382
        if (argc == 0) {
383
            BIO_printf(bio_err, "No recipient(s) certificate(s) specified\n");
384
            goto opthelp;
385
        }
386
    } else if (!operation) {
387
        goto opthelp;
388
    }
389 390

    if (!app_passwd(passinarg, NULL, &passin, NULL)) {
391 392 393 394 395 396 397 398 399
        BIO_printf(bio_err, "Error getting password\n");
        goto end;
    }

    ret = 2;

    if (!(operation & SMIME_SIGNERS))
        flags &= ~PKCS7_DETACHED;

400
    if (!(operation & SMIME_OP)) {
401
        if (flags & PKCS7_BINARY)
402
            outformat = FORMAT_BINARY;
403 404
    }

405
    if (!(operation & SMIME_IP)) {
406
        if (flags & PKCS7_BINARY)
407
            informat = FORMAT_BINARY;
408 409 410
    }

    if (operation == SMIME_ENCRYPT) {
411
        if (cipher == NULL) {
412 413
#ifndef OPENSSL_NO_DES
            cipher = EVP_des_ede3_cbc();
B
Bodo Möller 已提交
414
#else
415 416
            BIO_printf(bio_err, "No cipher selected\n");
            goto end;
B
Bodo Möller 已提交
417
#endif
418 419
        }
        encerts = sk_X509_new_null();
420
        if (encerts == NULL)
421
            goto end;
422
        while (*argv != NULL) {
423
            cert = load_cert(*argv, FORMAT_PEM,
424
                             "recipient certificate file");
425
            if (cert == NULL)
426 427 428
                goto end;
            sk_X509_push(encerts, cert);
            cert = NULL;
429
            argv++;
430 431 432
        }
    }

433
    if (certfile != NULL) {
434
        if (!load_certs(certfile, &other, FORMAT_PEM, NULL,
435
                        "certificate file")) {
436 437 438 439 440
            ERR_print_errors(bio_err);
            goto end;
        }
    }

441
    if (recipfile != NULL && (operation == SMIME_DECRYPT)) {
442 443
        if ((recip = load_cert(recipfile, FORMAT_PEM,
                               "recipient certificate file")) == NULL) {
444 445 446 447 448 449
            ERR_print_errors(bio_err);
            goto end;
        }
    }

    if (operation == SMIME_DECRYPT) {
450
        if (keyfile == NULL)
451 452
            keyfile = recipfile;
    } else if (operation == SMIME_SIGN) {
453
        if (keyfile == NULL)
454
            keyfile = signerfile;
455
    } else {
456
        keyfile = NULL;
457
    }
458

459
    if (keyfile != NULL) {
460
        key = load_key(keyfile, keyform, 0, passin, e, "signing key file");
461
        if (key == NULL)
462 463 464
            goto end;
    }

465
    in = bio_open_default(infile, 'r', informat);
466 467
    if (in == NULL)
        goto end;
468 469

    if (operation & SMIME_IP) {
470
        if (informat == FORMAT_SMIME) {
471
            p7 = SMIME_read_PKCS7(in, &indata);
472
        } else if (informat == FORMAT_PEM) {
473
            p7 = PEM_read_bio_PKCS7(in, NULL, NULL, NULL);
474
        } else if (informat == FORMAT_ASN1) {
475
            p7 = d2i_PKCS7_bio(in, NULL);
476
        } else {
477 478 479 480
            BIO_printf(bio_err, "Bad input format for PKCS#7 file\n");
            goto end;
        }

481
        if (p7 == NULL) {
482 483 484
            BIO_printf(bio_err, "Error reading S/MIME message\n");
            goto end;
        }
485
        if (contfile != NULL) {
486
            BIO_free(indata);
487
            if ((indata = BIO_new_file(contfile, "rb")) == NULL) {
488 489 490 491 492 493
                BIO_printf(bio_err, "Can't read content file %s\n", contfile);
                goto end;
            }
        }
    }

494
    out = bio_open_default(outfile, 'w', outformat);
495 496
    if (out == NULL)
        goto end;
497 498

    if (operation == SMIME_VERIFY) {
499 500
        if ((store = setup_verify(CAfile, noCAfile, CApath, noCApath,
                                  CAstore, noCAstore)) == NULL)
501 502
            goto end;
        X509_STORE_set_verify_cb(store, smime_cb);
503
        if (vpmtouched)
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
            X509_STORE_set1_param(store, vpm);
    }

    ret = 3;

    if (operation == SMIME_ENCRYPT) {
        if (indef)
            flags |= PKCS7_STREAM;
        p7 = PKCS7_encrypt(encerts, in, cipher, flags);
    } else if (operation & SMIME_SIGNERS) {
        int i;
        /*
         * If detached data content we only enable streaming if S/MIME output
         * format.
         */
        if (operation == SMIME_SIGN) {
            if (flags & PKCS7_DETACHED) {
                if (outformat == FORMAT_SMIME)
                    flags |= PKCS7_STREAM;
523
            } else if (indef) {
524
                flags |= PKCS7_STREAM;
525
            }
526 527
            flags |= PKCS7_PARTIAL;
            p7 = PKCS7_sign(NULL, NULL, other, in, flags);
528
            if (p7 == NULL)
529 530 531 532 533 534 535
                goto end;
            if (flags & PKCS7_NOCERTS) {
                for (i = 0; i < sk_X509_num(other); i++) {
                    X509 *x = sk_X509_value(other, i);
                    PKCS7_add_certificate(p7, x);
                }
            }
536
        } else {
537
            flags |= PKCS7_REUSE_DIGEST;
538
        }
539 540 541
        for (i = 0; i < sk_OPENSSL_STRING_num(sksigners); i++) {
            signerfile = sk_OPENSSL_STRING_value(sksigners, i);
            keyfile = sk_OPENSSL_STRING_value(skkeys, i);
542 543
            signer = load_cert(signerfile, FORMAT_PEM,
                               "signer certificate");
544
            if (signer == NULL)
545
                goto end;
546
            key = load_key(keyfile, keyform, 0, passin, e, "signing key file");
547
            if (key == NULL)
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
                goto end;
            if (!PKCS7_sign_add_signer(p7, signer, key, sign_md, flags))
                goto end;
            X509_free(signer);
            signer = NULL;
            EVP_PKEY_free(key);
            key = NULL;
        }
        /* If not streaming or resigning finalize structure */
        if ((operation == SMIME_SIGN) && !(flags & PKCS7_STREAM)) {
            if (!PKCS7_final(p7, in, flags))
                goto end;
        }
    }

563
    if (p7 == NULL) {
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
        BIO_printf(bio_err, "Error creating PKCS#7 structure\n");
        goto end;
    }

    ret = 4;
    if (operation == SMIME_DECRYPT) {
        if (!PKCS7_decrypt(p7, key, recip, out, flags)) {
            BIO_printf(bio_err, "Error decrypting PKCS#7 structure\n");
            goto end;
        }
    } else if (operation == SMIME_VERIFY) {
        STACK_OF(X509) *signers;
        if (PKCS7_verify(p7, other, store, indata, out, flags))
            BIO_printf(bio_err, "Verification successful\n");
        else {
            BIO_printf(bio_err, "Verification failure\n");
            goto end;
        }
        signers = PKCS7_get0_signers(p7, other, flags);
        if (!save_certs(signerfile, signers)) {
            BIO_printf(bio_err, "Error writing signers to %s\n", signerfile);
            ret = 5;
            goto end;
        }
        sk_X509_free(signers);
589
    } else if (operation == SMIME_PK7OUT) {
590
        PEM_write_bio_PKCS7(out, p7);
591
    } else {
592
        if (to)
D
Dr. Stephen Henson 已提交
593
            BIO_printf(out, "To: %s%s", to, mime_eol);
594
        if (from)
D
Dr. Stephen Henson 已提交
595
            BIO_printf(out, "From: %s%s", from, mime_eol);
596
        if (subject)
D
Dr. Stephen Henson 已提交
597
            BIO_printf(out, "Subject: %s%s", subject, mime_eol);
598 599
        if (outformat == FORMAT_SMIME) {
            if (operation == SMIME_RESIGN)
600
                rv = SMIME_write_PKCS7(out, p7, indata, flags);
601
            else
602
                rv = SMIME_write_PKCS7(out, p7, in, flags);
603
        } else if (outformat == FORMAT_PEM) {
604
            rv = PEM_write_bio_PKCS7_stream(out, p7, in, flags);
605
        } else if (outformat == FORMAT_ASN1) {
606
            rv = i2d_PKCS7_bio_stream(out, p7, in, flags);
607
        } else {
608 609 610
            BIO_printf(bio_err, "Bad output format for PKCS#7 file\n");
            goto end;
        }
611 612 613 614 615
        if (rv == 0) {
            BIO_printf(bio_err, "Error writing output\n");
            ret = 3;
            goto end;
        }
616 617 618 619 620 621 622
    }
    ret = 0;
 end:
    if (ret)
        ERR_print_errors(bio_err);
    sk_X509_pop_free(encerts, X509_free);
    sk_X509_pop_free(other, X509_free);
R
Rich Salz 已提交
623
    X509_VERIFY_PARAM_free(vpm);
R
Rich Salz 已提交
624 625
    sk_OPENSSL_STRING_free(sksigners);
    sk_OPENSSL_STRING_free(skkeys);
626 627 628 629 630 631
    X509_STORE_free(store);
    X509_free(cert);
    X509_free(recip);
    X509_free(signer);
    EVP_PKEY_free(key);
    PKCS7_free(p7);
632
    release_engine(e);
633 634 635
    BIO_free(in);
    BIO_free(indata);
    BIO_free_all(out);
R
Rich Salz 已提交
636
    OPENSSL_free(passin);
K
KaoruToda 已提交
637
    return ret;
638 639
}

B
Bodo Möller 已提交
640
static int save_certs(char *signerfile, STACK_OF(X509) *signers)
641 642 643
{
    int i;
    BIO *tmp;
644 645

    if (signerfile == NULL)
646 647
        return 1;
    tmp = BIO_new_file(signerfile, "w");
648
    if (tmp == NULL)
649 650 651 652 653 654
        return 0;
    for (i = 0; i < sk_X509_num(signers); i++)
        PEM_write_bio_X509(tmp, sk_X509_value(signers, i));
    BIO_free(tmp);
    return 1;
}
655 656 657 658

/* Minimal callback just to output policy info (if any) */

static int smime_cb(int ok, X509_STORE_CTX *ctx)
659 660
{
    int error;
661

662
    error = X509_STORE_CTX_get_error(ctx);
663

664 665 666
    if ((error != X509_V_ERR_NO_EXPLICIT_POLICY)
        && ((error != X509_V_OK) || (ok != 2)))
        return ok;
667

R
Rich Salz 已提交
668
    policies_print(ctx);
669

670 671
    return ok;
}