2 * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved.
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
10 /* S/MIME utility function */
16 #include <openssl/crypto.h>
17 #include <openssl/pem.h>
18 #include <openssl/err.h>
19 #include <openssl/x509_vfy.h>
20 #include <openssl/x509v3.h>
22 static int save_certs(char *signerfile, STACK_OF(X509) *signers);
23 static int smime_cb(int ok, X509_STORE_CTX *ctx);
27 #define SMIME_SIGNERS 0x40
28 #define SMIME_ENCRYPT (1 | SMIME_OP)
29 #define SMIME_DECRYPT (2 | SMIME_IP)
30 #define SMIME_SIGN (3 | SMIME_OP | SMIME_SIGNERS)
31 #define SMIME_VERIFY (4 | SMIME_IP)
32 #define SMIME_PK7OUT (5 | SMIME_IP | SMIME_OP)
33 #define SMIME_RESIGN (6 | SMIME_IP | SMIME_OP | SMIME_SIGNERS)
35 typedef enum OPTION_choice {
36 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
37 OPT_ENCRYPT, OPT_DECRYPT, OPT_SIGN, OPT_RESIGN, OPT_VERIFY,
38 OPT_PK7OUT, OPT_TEXT, OPT_NOINTERN, OPT_NOVERIFY, OPT_NOCHAIN,
39 OPT_NOCERTS, OPT_NOATTR, OPT_NODETACH, OPT_NOSMIMECAP,
40 OPT_BINARY, OPT_NOSIGS, OPT_STREAM, OPT_INDEF, OPT_NOINDEF,
41 OPT_CRLFEOL, OPT_ENGINE, OPT_PASSIN,
42 OPT_TO, OPT_FROM, OPT_SUBJECT, OPT_SIGNER, OPT_RECIP, OPT_MD,
43 OPT_CIPHER, OPT_INKEY, OPT_KEYFORM, OPT_CERTFILE, OPT_CAFILE,
44 OPT_CAPATH, OPT_CASTORE, OPT_NOCAFILE, OPT_NOCAPATH, OPT_NOCASTORE,
47 OPT_IN, OPT_INFORM, OPT_OUT,
48 OPT_OUTFORM, OPT_CONTENT
51 const OPTIONS smime_options[] = {
52 {OPT_HELP_STR, 1, '-', "Usage: %s [options] [cert...]\n"},
54 OPT_SECTION("General"),
55 {"help", OPT_HELP, '-', "Display this summary"},
56 {"in", OPT_IN, '<', "Input file"},
57 {"inform", OPT_INFORM, 'c', "Input format SMIME (default), PEM or DER"},
58 {"out", OPT_OUT, '>', "Output file"},
59 {"outform", OPT_OUTFORM, 'c',
60 "Output format SMIME (default), PEM or DER"},
61 {"inkey", OPT_INKEY, 's',
62 "Input private key (if not signer or recipient)"},
63 {"keyform", OPT_KEYFORM, 'f', "Input private key format (PEM or ENGINE)"},
64 #ifndef OPENSSL_NO_ENGINE
65 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
67 {"stream", OPT_STREAM, '-', "Enable CMS streaming" },
68 {"indef", OPT_INDEF, '-', "Same as -stream" },
69 {"noindef", OPT_NOINDEF, '-', "Disable CMS streaming"},
71 OPT_SECTION("Action"),
72 {"encrypt", OPT_ENCRYPT, '-', "Encrypt message"},
73 {"decrypt", OPT_DECRYPT, '-', "Decrypt encrypted message"},
74 {"sign", OPT_SIGN, '-', "Sign message"},
75 {"resign", OPT_RESIGN, '-', "Resign a signed message"},
76 {"verify", OPT_VERIFY, '-', "Verify signed message"},
78 OPT_SECTION("Signing/Encryption"),
79 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
80 {"md", OPT_MD, 's', "Digest algorithm to use when signing or resigning"},
81 {"", OPT_CIPHER, '-', "Any supported cipher"},
82 {"pk7out", OPT_PK7OUT, '-', "Output PKCS#7 structure"},
83 {"nointern", OPT_NOINTERN, '-',
84 "Don't search certificates in message for signer"},
85 {"nodetach", OPT_NODETACH, '-', "Use opaque signing"},
86 {"noattr", OPT_NOATTR, '-', "Don't include any signed attributes"},
87 {"binary", OPT_BINARY, '-', "Don't translate message to text"},
88 {"signer", OPT_SIGNER, 's', "Signer certificate file"},
89 {"content", OPT_CONTENT, '<',
90 "Supply or override content for detached signature"},
91 {"nocerts", OPT_NOCERTS, '-',
92 "Don't include signers certificate when signing"},
94 OPT_SECTION("Verification/Decryption"),
95 {"nosigs", OPT_NOSIGS, '-', "Don't verify message signature"},
96 {"noverify", OPT_NOVERIFY, '-', "Don't verify signers certificate"},
98 {"certfile", OPT_CERTFILE, '<', "Other certificates file"},
99 {"recip", OPT_RECIP, '<', "Recipient certificate file for decryption"},
101 OPT_SECTION("Email"),
102 {"to", OPT_TO, 's', "To address"},
103 {"from", OPT_FROM, 's', "From address"},
104 {"subject", OPT_SUBJECT, 's', "Subject"},
105 {"text", OPT_TEXT, '-', "Include or delete text MIME headers"},
106 {"nosmimecap", OPT_NOSMIMECAP, '-', "Omit the SMIMECapabilities attribute"},
108 OPT_SECTION("Certificate chain"),
109 {"CApath", OPT_CAPATH, '/', "Trusted certificates directory"},
110 {"CAfile", OPT_CAFILE, '<', "Trusted certificates file"},
111 {"CAstore", OPT_CASTORE, ':', "Trusted certificates store URI"},
112 {"no-CAfile", OPT_NOCAFILE, '-',
113 "Do not load the default certificates file"},
114 {"no-CApath", OPT_NOCAPATH, '-',
115 "Do not load certificates from the default certificates directory"},
116 {"no-CAstore", OPT_NOCASTORE, '-',
117 "Do not load certificates from the default certificates store"},
118 {"nochain", OPT_NOCHAIN, '-',
119 "set PKCS7_NOCHAIN so certificates contained in the message are not used as untrusted CAs" },
120 {"crlfeol", OPT_CRLFEOL, '-', "Use CRLF as EOL termination instead of CR only"},
126 {"cert", 0, 0, "Recipient certs, used when encrypting"},
130 int smime_main(int argc, char **argv)
132 BIO *in = NULL, *out = NULL, *indata = NULL;
133 EVP_PKEY *key = NULL;
135 STACK_OF(OPENSSL_STRING) *sksigners = NULL, *skkeys = NULL;
136 STACK_OF(X509) *encerts = NULL, *other = NULL;
137 X509 *cert = NULL, *recip = NULL, *signer = NULL;
138 X509_STORE *store = NULL;
139 X509_VERIFY_PARAM *vpm = NULL;
140 const EVP_CIPHER *cipher = NULL;
141 const EVP_MD *sign_md = NULL;
142 const char *CAfile = NULL, *CApath = NULL, *CAstore = NULL, *prog = NULL;
143 char *certfile = NULL, *keyfile = NULL, *contfile = NULL;
144 char *infile = NULL, *outfile = NULL, *signerfile = NULL, *recipfile = NULL;
145 char *passinarg = NULL, *passin = NULL, *to = NULL, *from = NULL, *subject = NULL;
147 int noCApath = 0, noCAfile = 0, noCAstore = 0;
148 int flags = PKCS7_DETACHED, operation = 0, ret = 0, indef = 0;
149 int informat = FORMAT_SMIME, outformat = FORMAT_SMIME, keyform =
151 int vpmtouched = 0, rv = 0;
153 const char *mime_eol = "\n";
155 if ((vpm = X509_VERIFY_PARAM_new()) == NULL)
158 prog = opt_init(argc, argv, smime_options);
159 while ((o = opt_next()) != OPT_EOF) {
164 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
167 opt_help(smime_options);
171 if (!opt_format(opt_arg(), OPT_FMT_PDS, &informat))
178 if (!opt_format(opt_arg(), OPT_FMT_PDS, &outformat))
185 operation = SMIME_ENCRYPT;
188 operation = SMIME_DECRYPT;
191 operation = SMIME_SIGN;
194 operation = SMIME_RESIGN;
197 operation = SMIME_VERIFY;
200 operation = SMIME_PK7OUT;
206 flags |= PKCS7_NOINTERN;
209 flags |= PKCS7_NOVERIFY;
212 flags |= PKCS7_NOCHAIN;
215 flags |= PKCS7_NOCERTS;
218 flags |= PKCS7_NOATTR;
221 flags &= ~PKCS7_DETACHED;
224 flags |= PKCS7_NOSMIMECAP;
227 flags |= PKCS7_BINARY;
230 flags |= PKCS7_NOSIGS;
240 flags |= PKCS7_CRLFEOL;
248 e = setup_engine(opt_arg(), 0);
251 passinarg = opt_arg();
263 /* If previous -signer argument add signer to list */
264 if (signerfile != NULL) {
265 if (sksigners == NULL
266 && (sksigners = sk_OPENSSL_STRING_new_null()) == NULL)
268 sk_OPENSSL_STRING_push(sksigners, signerfile);
270 keyfile = signerfile;
272 && (skkeys = sk_OPENSSL_STRING_new_null()) == NULL)
274 sk_OPENSSL_STRING_push(skkeys, keyfile);
277 signerfile = opt_arg();
280 recipfile = opt_arg();
283 if (!opt_md(opt_arg(), &sign_md))
287 if (!opt_cipher(opt_unknown(), &cipher))
291 /* If previous -inkey argument add signer to list */
292 if (keyfile != NULL) {
293 if (signerfile == NULL) {
295 "%s: Must have -signer before -inkey\n", prog);
298 if (sksigners == NULL
299 && (sksigners = sk_OPENSSL_STRING_new_null()) == NULL)
301 sk_OPENSSL_STRING_push(sksigners, signerfile);
304 && (skkeys = sk_OPENSSL_STRING_new_null()) == NULL)
306 sk_OPENSSL_STRING_push(skkeys, keyfile);
311 if (!opt_format(opt_arg(), OPT_FMT_ANY, &keyform))
315 certfile = opt_arg();
336 contfile = opt_arg();
339 if (!opt_verify(o, vpm))
345 argc = opt_num_rest();
348 if (!(operation & SMIME_SIGNERS) && (skkeys != NULL || sksigners != NULL)) {
349 BIO_puts(bio_err, "Multiple signers or keys not allowed\n");
353 if (operation & SMIME_SIGNERS) {
354 /* Check to see if any final signer needs to be appended */
355 if (keyfile && !signerfile) {
356 BIO_puts(bio_err, "Illegal -inkey without -signer\n");
359 if (signerfile != NULL) {
360 if (sksigners == NULL
361 && (sksigners = sk_OPENSSL_STRING_new_null()) == NULL)
363 sk_OPENSSL_STRING_push(sksigners, signerfile);
364 if (!skkeys && (skkeys = sk_OPENSSL_STRING_new_null()) == NULL)
367 keyfile = signerfile;
368 sk_OPENSSL_STRING_push(skkeys, keyfile);
370 if (sksigners == NULL) {
371 BIO_printf(bio_err, "No signer certificate specified\n");
376 } else if (operation == SMIME_DECRYPT) {
377 if (recipfile == NULL && keyfile == NULL) {
379 "No recipient certificate or key specified\n");
382 } else if (operation == SMIME_ENCRYPT) {
384 BIO_printf(bio_err, "No recipient(s) certificate(s) specified\n");
387 } else if (!operation) {
391 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
392 BIO_printf(bio_err, "Error getting password\n");
398 if (!(operation & SMIME_SIGNERS))
399 flags &= ~PKCS7_DETACHED;
401 if (!(operation & SMIME_OP)) {
402 if (flags & PKCS7_BINARY)
403 outformat = FORMAT_BINARY;
406 if (!(operation & SMIME_IP)) {
407 if (flags & PKCS7_BINARY)
408 informat = FORMAT_BINARY;
411 if (operation == SMIME_ENCRYPT) {
412 if (cipher == NULL) {
413 #ifndef OPENSSL_NO_DES
414 cipher = EVP_des_ede3_cbc();
416 BIO_printf(bio_err, "No cipher selected\n");
420 encerts = sk_X509_new_null();
423 while (*argv != NULL) {
424 cert = load_cert(*argv, FORMAT_PEM,
425 "recipient certificate file");
428 sk_X509_push(encerts, cert);
434 if (certfile != NULL) {
435 if (!load_certs(certfile, &other, FORMAT_PEM, NULL,
436 "certificate file")) {
437 ERR_print_errors(bio_err);
442 if (recipfile != NULL && (operation == SMIME_DECRYPT)) {
443 if ((recip = load_cert(recipfile, FORMAT_PEM,
444 "recipient certificate file")) == NULL) {
445 ERR_print_errors(bio_err);
450 if (operation == SMIME_DECRYPT) {
453 } else if (operation == SMIME_SIGN) {
455 keyfile = signerfile;
460 if (keyfile != NULL) {
461 key = load_key(keyfile, keyform, 0, passin, e, "signing key file");
466 in = bio_open_default(infile, 'r', informat);
470 if (operation & SMIME_IP) {
471 if (informat == FORMAT_SMIME) {
472 p7 = SMIME_read_PKCS7(in, &indata);
473 } else if (informat == FORMAT_PEM) {
474 p7 = PEM_read_bio_PKCS7(in, NULL, NULL, NULL);
475 } else if (informat == FORMAT_ASN1) {
476 p7 = d2i_PKCS7_bio(in, NULL);
478 BIO_printf(bio_err, "Bad input format for PKCS#7 file\n");
483 BIO_printf(bio_err, "Error reading S/MIME message\n");
486 if (contfile != NULL) {
488 if ((indata = BIO_new_file(contfile, "rb")) == NULL) {
489 BIO_printf(bio_err, "Can't read content file %s\n", contfile);
495 out = bio_open_default(outfile, 'w', outformat);
499 if (operation == SMIME_VERIFY) {
500 if ((store = setup_verify(CAfile, noCAfile, CApath, noCApath,
501 CAstore, noCAstore)) == NULL)
503 X509_STORE_set_verify_cb(store, smime_cb);
505 X509_STORE_set1_param(store, vpm);
510 if (operation == SMIME_ENCRYPT) {
512 flags |= PKCS7_STREAM;
513 p7 = PKCS7_encrypt(encerts, in, cipher, flags);
514 } else if (operation & SMIME_SIGNERS) {
517 * If detached data content we only enable streaming if S/MIME output
520 if (operation == SMIME_SIGN) {
521 if (flags & PKCS7_DETACHED) {
522 if (outformat == FORMAT_SMIME)
523 flags |= PKCS7_STREAM;
525 flags |= PKCS7_STREAM;
527 flags |= PKCS7_PARTIAL;
528 p7 = PKCS7_sign(NULL, NULL, other, in, flags);
531 if (flags & PKCS7_NOCERTS) {
532 for (i = 0; i < sk_X509_num(other); i++) {
533 X509 *x = sk_X509_value(other, i);
534 PKCS7_add_certificate(p7, x);
538 flags |= PKCS7_REUSE_DIGEST;
540 for (i = 0; i < sk_OPENSSL_STRING_num(sksigners); i++) {
541 signerfile = sk_OPENSSL_STRING_value(sksigners, i);
542 keyfile = sk_OPENSSL_STRING_value(skkeys, i);
543 signer = load_cert(signerfile, FORMAT_PEM,
544 "signer certificate");
547 key = load_key(keyfile, keyform, 0, passin, e, "signing key file");
550 if (!PKCS7_sign_add_signer(p7, signer, key, sign_md, flags))
557 /* If not streaming or resigning finalize structure */
558 if ((operation == SMIME_SIGN) && !(flags & PKCS7_STREAM)) {
559 if (!PKCS7_final(p7, in, flags))
565 BIO_printf(bio_err, "Error creating PKCS#7 structure\n");
570 if (operation == SMIME_DECRYPT) {
571 if (!PKCS7_decrypt(p7, key, recip, out, flags)) {
572 BIO_printf(bio_err, "Error decrypting PKCS#7 structure\n");
575 } else if (operation == SMIME_VERIFY) {
576 STACK_OF(X509) *signers;
577 if (PKCS7_verify(p7, other, store, indata, out, flags))
578 BIO_printf(bio_err, "Verification successful\n");
580 BIO_printf(bio_err, "Verification failure\n");
583 signers = PKCS7_get0_signers(p7, other, flags);
584 if (!save_certs(signerfile, signers)) {
585 BIO_printf(bio_err, "Error writing signers to %s\n", signerfile);
589 sk_X509_free(signers);
590 } else if (operation == SMIME_PK7OUT) {
591 PEM_write_bio_PKCS7(out, p7);
594 BIO_printf(out, "To: %s%s", to, mime_eol);
596 BIO_printf(out, "From: %s%s", from, mime_eol);
598 BIO_printf(out, "Subject: %s%s", subject, mime_eol);
599 if (outformat == FORMAT_SMIME) {
600 if (operation == SMIME_RESIGN)
601 rv = SMIME_write_PKCS7(out, p7, indata, flags);
603 rv = SMIME_write_PKCS7(out, p7, in, flags);
604 } else if (outformat == FORMAT_PEM) {
605 rv = PEM_write_bio_PKCS7_stream(out, p7, in, flags);
606 } else if (outformat == FORMAT_ASN1) {
607 rv = i2d_PKCS7_bio_stream(out, p7, in, flags);
609 BIO_printf(bio_err, "Bad output format for PKCS#7 file\n");
613 BIO_printf(bio_err, "Error writing output\n");
621 ERR_print_errors(bio_err);
622 sk_X509_pop_free(encerts, X509_free);
623 sk_X509_pop_free(other, X509_free);
624 X509_VERIFY_PARAM_free(vpm);
625 sk_OPENSSL_STRING_free(sksigners);
626 sk_OPENSSL_STRING_free(skkeys);
627 X509_STORE_free(store);
637 OPENSSL_free(passin);
641 static int save_certs(char *signerfile, STACK_OF(X509) *signers)
646 if (signerfile == NULL)
648 tmp = BIO_new_file(signerfile, "w");
651 for (i = 0; i < sk_X509_num(signers); i++)
652 PEM_write_bio_X509(tmp, sk_X509_value(signers, i));
657 /* Minimal callback just to output policy info (if any) */
659 static int smime_cb(int ok, X509_STORE_CTX *ctx)
663 error = X509_STORE_CTX_get_error(ctx);
665 if ((error != X509_V_ERR_NO_EXPLICIT_POLICY)
666 && ((error != X509_V_OK) || (ok != 2)))