HMAC doesn't work with a default digest
[openssl.git] / apps / cms.c
1 /*
2  * Copyright 2008-2021 The OpenSSL Project Authors. All Rights Reserved.
3  *
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
8  */
9
10 /* CMS utility function */
11
12 #include <stdio.h>
13 #include <string.h>
14 #include "apps.h"
15 #include "progs.h"
16
17 #include <openssl/crypto.h>
18 #include <openssl/pem.h>
19 #include <openssl/err.h>
20 #include <openssl/x509_vfy.h>
21 #include <openssl/x509v3.h>
22 #include <openssl/cms.h>
23
24 static int save_certs(char *signerfile, STACK_OF(X509) *signers);
25 static int cms_cb(int ok, X509_STORE_CTX *ctx);
26 static void receipt_request_print(CMS_ContentInfo *cms);
27 static CMS_ReceiptRequest
28 *make_receipt_request(STACK_OF(OPENSSL_STRING) *rr_to, int rr_allorfirst,
29                       STACK_OF(OPENSSL_STRING) *rr_from);
30 static int cms_set_pkey_param(EVP_PKEY_CTX *pctx,
31                               STACK_OF(OPENSSL_STRING) *param);
32
33 #define SMIME_OP                0x100
34 #define SMIME_IP                0x200
35 #define SMIME_SIGNERS           0x400
36 #define SMIME_ENCRYPT           (1 | SMIME_OP)
37 #define SMIME_DECRYPT           (2 | SMIME_IP)
38 #define SMIME_SIGN              (3 | SMIME_OP | SMIME_SIGNERS)
39 #define SMIME_VERIFY            (4 | SMIME_IP)
40 #define SMIME_RESIGN            (5 | SMIME_IP | SMIME_OP | SMIME_SIGNERS)
41 #define SMIME_SIGN_RECEIPT      (6 | SMIME_IP | SMIME_OP)
42 #define SMIME_VERIFY_RECEIPT    (7 | SMIME_IP)
43 #define SMIME_DIGEST_CREATE     (8 | SMIME_OP)
44 #define SMIME_DIGEST_VERIFY     (9 | SMIME_IP)
45 #define SMIME_COMPRESS          (10 | SMIME_OP)
46 #define SMIME_UNCOMPRESS        (11 | SMIME_IP)
47 #define SMIME_ENCRYPTED_ENCRYPT (12 | SMIME_OP)
48 #define SMIME_ENCRYPTED_DECRYPT (13 | SMIME_IP)
49 #define SMIME_DATA_CREATE       (14 | SMIME_OP)
50 #define SMIME_DATA_OUT          (15 | SMIME_IP)
51 #define SMIME_CMSOUT            (16 | SMIME_IP | SMIME_OP)
52
53 static int verify_err = 0;
54
55 typedef struct cms_key_param_st cms_key_param;
56
57 struct cms_key_param_st {
58     int idx;
59     STACK_OF(OPENSSL_STRING) *param;
60     cms_key_param *next;
61 };
62
63 typedef enum OPTION_choice {
64     OPT_COMMON,
65     OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT, OPT_ENCRYPT,
66     OPT_DECRYPT, OPT_SIGN, OPT_CADES, OPT_SIGN_RECEIPT, OPT_RESIGN,
67     OPT_VERIFY, OPT_VERIFY_RETCODE, OPT_VERIFY_RECEIPT,
68     OPT_CMSOUT, OPT_DATA_OUT, OPT_DATA_CREATE, OPT_DIGEST_VERIFY,
69     OPT_DIGEST_CREATE, OPT_COMPRESS, OPT_UNCOMPRESS,
70     OPT_ED_DECRYPT, OPT_ED_ENCRYPT, OPT_DEBUG_DECRYPT, OPT_TEXT,
71     OPT_ASCIICRLF, OPT_NOINTERN, OPT_NOVERIFY, OPT_NOCERTS,
72     OPT_NOATTR, OPT_NODETACH, OPT_NOSMIMECAP, OPT_BINARY, OPT_KEYID,
73     OPT_NOSIGS, OPT_NO_CONTENT_VERIFY, OPT_NO_ATTR_VERIFY, OPT_INDEF,
74     OPT_NOINDEF, OPT_CRLFEOL, OPT_NOOUT, OPT_RR_PRINT,
75     OPT_RR_ALL, OPT_RR_FIRST, OPT_RCTFORM, OPT_CERTFILE, OPT_CAFILE,
76     OPT_CAPATH, OPT_CASTORE, OPT_NOCAPATH, OPT_NOCAFILE, OPT_NOCASTORE,
77     OPT_CONTENT, OPT_PRINT, OPT_NAMEOPT,
78     OPT_SECRETKEY, OPT_SECRETKEYID, OPT_PWRI_PASSWORD, OPT_ECONTENT_TYPE,
79     OPT_PASSIN, OPT_TO, OPT_FROM, OPT_SUBJECT, OPT_SIGNER, OPT_RECIP,
80     OPT_CERTSOUT, OPT_MD, OPT_INKEY, OPT_KEYFORM, OPT_KEYOPT, OPT_RR_FROM,
81     OPT_RR_TO, OPT_AES128_WRAP, OPT_AES192_WRAP, OPT_AES256_WRAP,
82     OPT_3DES_WRAP, OPT_WRAP, OPT_ENGINE,
83     OPT_R_ENUM,
84     OPT_PROV_ENUM, OPT_CONFIG,
85     OPT_V_ENUM,
86     OPT_CIPHER,
87     OPT_ORIGINATOR
88 } OPTION_CHOICE;
89
90 const OPTIONS cms_options[] = {
91     {OPT_HELP_STR, 1, '-', "Usage: %s [options] [cert...]\n"},
92     {"help", OPT_HELP, '-', "Display this summary"},
93
94     OPT_SECTION("General"),
95     {"in", OPT_IN, '<', "Input file"},
96     {"out", OPT_OUT, '>', "Output file"},
97     OPT_CONFIG_OPTION,
98
99     OPT_SECTION("Operation"),
100     {"encrypt", OPT_ENCRYPT, '-', "Encrypt message"},
101     {"decrypt", OPT_DECRYPT, '-', "Decrypt encrypted message"},
102     {"sign", OPT_SIGN, '-', "Sign message"},
103     {"verify", OPT_VERIFY, '-', "Verify signed message"},
104     {"resign", OPT_RESIGN, '-', "Resign a signed message"},
105     {"sign_receipt", OPT_SIGN_RECEIPT, '-',
106      "Generate a signed receipt for a message"},
107     {"verify_receipt", OPT_VERIFY_RECEIPT, '<',
108      "Verify receipts; exit if receipt signatures do not verify"},
109     {"digest_create", OPT_DIGEST_CREATE, '-',
110      "Create a CMS \"DigestedData\" object"},
111     {"digest_verify", OPT_DIGEST_VERIFY, '-',
112      "Verify a CMS \"DigestedData\" object and output it"},
113     {"compress", OPT_COMPRESS, '-', "Create a CMS \"CompressedData\" object"},
114     {"uncompress", OPT_UNCOMPRESS, '-',
115      "Uncompress a CMS \"CompressedData\" object"},
116     {"EncryptedData_encrypt", OPT_ED_ENCRYPT, '-',
117      "Create CMS \"EncryptedData\" object using symmetric key"},
118     {"EncryptedData_decrypt", OPT_ED_DECRYPT, '-',
119      "Decrypt CMS \"EncryptedData\" object using symmetric key"},
120     {"data_create", OPT_DATA_CREATE, '-', "Create a CMS \"Data\" object"},
121     {"data_out", OPT_DATA_OUT, '-', "Copy CMS \"Data\" object to output"},
122     {"cmsout", OPT_CMSOUT, '-', "Output CMS structure"},
123
124     OPT_SECTION("File format"),
125     {"inform", OPT_INFORM, 'c', "Input format SMIME (default), PEM or DER"},
126     {"outform", OPT_OUTFORM, 'c',
127      "Output format SMIME (default), PEM or DER"},
128     {"rctform", OPT_RCTFORM, 'F', "Receipt file format"},
129     {"stream", OPT_INDEF, '-', "Enable CMS streaming"},
130     {"indef", OPT_INDEF, '-', "Same as -stream"},
131     {"noindef", OPT_NOINDEF, '-', "Disable CMS streaming"},
132     {"binary", OPT_BINARY, '-',
133      "Treat input as binary: do not translate to canonical form"},
134     {"crlfeol", OPT_CRLFEOL, '-',
135      "Use CRLF as EOL termination instead of CR only" },
136     {"asciicrlf", OPT_ASCIICRLF, '-',
137      "Perform CRLF canonicalisation when signing"},
138
139     OPT_SECTION("Keys and passwords"),
140     {"pwri_password", OPT_PWRI_PASSWORD, 's',
141      "Specific password for recipient"},
142     {"secretkey", OPT_SECRETKEY, 's',
143      "Use specified hex-encoded key to decrypt/encrypt recipients or content"},
144     {"secretkeyid", OPT_SECRETKEYID, 's',
145      "Identity of the -secretkey for CMS \"KEKRecipientInfo\" object"},
146     {"inkey", OPT_INKEY, 's',
147      "Input private key (if not signer or recipient)"},
148     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
149     {"keyopt", OPT_KEYOPT, 's', "Set public key parameters as n:v pairs"},
150     {"keyform", OPT_KEYFORM, 'f',
151      "Input private key format (ENGINE, other values ignored)"},
152 #ifndef OPENSSL_NO_ENGINE
153     {"engine", OPT_ENGINE, 's', "Use engine e, possibly a hardware device"},
154 #endif
155     OPT_PROV_OPTIONS,
156     OPT_R_OPTIONS,
157
158     OPT_SECTION("Encryption and decryption"),
159     {"originator", OPT_ORIGINATOR, 's', "Originator certificate file"},
160     {"recip", OPT_RECIP, '<', "Recipient cert file"},
161     {"cert...", OPT_PARAM, '.',
162      "Recipient certs (optional; used only when encrypting)"},
163     {"", OPT_CIPHER, '-',
164      "The encryption algorithm to use (any supported cipher)"},
165     {"wrap", OPT_WRAP, 's',
166      "Key wrap algorithm to use when encrypting with key agreement"},
167     {"aes128-wrap", OPT_AES128_WRAP, '-', "Use AES128 to wrap key"},
168     {"aes192-wrap", OPT_AES192_WRAP, '-', "Use AES192 to wrap key"},
169     {"aes256-wrap", OPT_AES256_WRAP, '-', "Use AES256 to wrap key"},
170     {"des3-wrap", OPT_3DES_WRAP, '-', "Use 3DES-EDE to wrap key"},
171     {"debug_decrypt", OPT_DEBUG_DECRYPT, '-',
172      "Disable MMA protection, return error if no recipient found (see doc)"},
173
174     OPT_SECTION("Signing"),
175     {"md", OPT_MD, 's', "Digest algorithm to use"},
176     {"signer", OPT_SIGNER, 's', "Signer certificate input file"},
177     {"certfile", OPT_CERTFILE, '<', "Other certificates file"},
178     {"cades", OPT_CADES, '-',
179      "Include signingCertificate attribute (CAdES-BES)"},
180     {"nodetach", OPT_NODETACH, '-', "Use opaque signing"},
181     {"nocerts", OPT_NOCERTS, '-',
182      "Don't include signer's certificate when signing"},
183     {"noattr", OPT_NOATTR, '-', "Don't include any signed attributes"},
184     {"nosmimecap", OPT_NOSMIMECAP, '-', "Omit the SMIMECapabilities attribute"},
185     {"receipt_request_all", OPT_RR_ALL, '-',
186      "When signing, create a receipt request for all recipients"},
187     {"receipt_request_first", OPT_RR_FIRST, '-',
188      "When signing, create a receipt request for first recipient"},
189     {"receipt_request_from", OPT_RR_FROM, 's',
190      "Create signed receipt request with specified email address"},
191     {"receipt_request_to", OPT_RR_TO, 's',
192      "Create signed receipt targeted to specified address"},
193
194     OPT_SECTION("Verification"),
195     {"signer", OPT_DUP, 's', "Signer certificate(s) output file"},
196     {"content", OPT_CONTENT, '<',
197      "Supply or override content for detached signature"},
198     {"no_content_verify", OPT_NO_CONTENT_VERIFY, '-',
199      "Do not verify signed content signatures"},
200     {"no_attr_verify", OPT_NO_ATTR_VERIFY, '-',
201      "Do not verify signed attribute signatures"},
202     {"nosigs", OPT_NOSIGS, '-', "Don't verify message signature"},
203     {"noverify", OPT_NOVERIFY, '-', "Don't verify signers certificate"},
204     {"nointern", OPT_NOINTERN, '-',
205      "Don't search certificates in message for signer"},
206     {"cades", OPT_DUP, '-', "Check signingCertificate (CAdES-BES)"},
207     {"verify_retcode", OPT_VERIFY_RETCODE, '-',
208      "Exit non-zero on verification failure"},
209     {"CAfile", OPT_CAFILE, '<', "Trusted certificates file"},
210     {"CApath", OPT_CAPATH, '/', "Trusted certificates directory"},
211     {"CAstore", OPT_CASTORE, ':', "Trusted certificates store URI"},
212     {"no-CAfile", OPT_NOCAFILE, '-',
213      "Do not load the default certificates file"},
214     {"no-CApath", OPT_NOCAPATH, '-',
215      "Do not load certificates from the default certificates directory"},
216     {"no-CAstore", OPT_NOCASTORE, '-',
217      "Do not load certificates from the default certificates store"},
218
219     OPT_SECTION("Output"),
220     {"keyid", OPT_KEYID, '-', "Use subject key identifier"},
221     {"econtent_type", OPT_ECONTENT_TYPE, 's', "OID for external content"},
222     {"text", OPT_TEXT, '-', "Include or delete text MIME headers"},
223     {"certsout", OPT_CERTSOUT, '>', "Certificate output file"},
224     {"to", OPT_TO, 's', "To address"},
225     {"from", OPT_FROM, 's', "From address"},
226     {"subject", OPT_SUBJECT, 's', "Subject"},
227
228     OPT_SECTION("Printing"),
229     {"noout", OPT_NOOUT, '-',
230      "For the -cmsout operation do not output the parsed CMS structure"},
231     {"print", OPT_PRINT, '-',
232      "For the -cmsout operation print out all fields of the CMS structure"},
233     {"nameopt", OPT_NAMEOPT, 's',
234      "For the -print option specifies various strings printing options"},
235     {"receipt_request_print", OPT_RR_PRINT, '-', "Print CMS Receipt Request" },
236
237     OPT_V_OPTIONS,
238     {NULL}
239 };
240
241 static CMS_ContentInfo *load_content_info(int informat, BIO *in, int flags,
242                                           BIO **indata, const char *name)
243 {
244     CMS_ContentInfo *ret, *ci;
245
246     ret = CMS_ContentInfo_new_ex(app_get0_libctx(), app_get0_propq());
247     if (ret == NULL) {
248         BIO_printf(bio_err, "Error allocating CMS_contentinfo\n");
249         return NULL;
250     }
251     switch (informat) {
252     case FORMAT_SMIME:
253         ci = SMIME_read_CMS_ex(in, flags, indata, &ret);
254         break;
255     case FORMAT_PEM:
256         ci = PEM_read_bio_CMS(in, &ret, NULL, NULL);
257         break;
258     case FORMAT_ASN1:
259         ci = d2i_CMS_bio(in, &ret);
260         break;
261     default:
262         BIO_printf(bio_err, "Bad input format for %s\n", name);
263         goto err;
264     }
265     if (ci == NULL) {
266         BIO_printf(bio_err, "Error reading %s Content Info\n", name);
267         goto err;
268     }
269     return ret;
270  err:
271     CMS_ContentInfo_free(ret);
272     return NULL;
273 }
274
275 static void warn_binary(const char *file)
276 {
277     BIO *bio;
278     unsigned char linebuf[1024], *cur, *end;
279     int len;
280
281     if ((bio = bio_open_default(file, 'r', FORMAT_BINARY)) == NULL)
282         return; /* cannot give a proper warning since there is an error */
283     while ((len = BIO_read(bio, linebuf, sizeof(linebuf))) > 0) {
284         end = linebuf + len;
285         for (cur = linebuf; cur < end; cur++) {
286             if (*cur == '\0' || *cur >= 0x80) {
287                 BIO_printf(bio_err, "Warning: input file '%s' contains %s"
288                            " character; better use -binary option\n",
289                            file, *cur == '\0' ? "NUL" : "8-bit");
290                 break;
291             }
292         }
293     }
294     BIO_free(bio);
295 }
296
297 int cms_main(int argc, char **argv)
298 {
299     CONF *conf = NULL;
300     ASN1_OBJECT *econtent_type = NULL;
301     BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL;
302     CMS_ContentInfo *cms = NULL, *rcms = NULL;
303     CMS_ReceiptRequest *rr = NULL;
304     ENGINE *e = NULL;
305     EVP_PKEY *key = NULL;
306     EVP_CIPHER *cipher = NULL, *wrap_cipher = NULL;
307     EVP_MD *sign_md = NULL;
308     STACK_OF(OPENSSL_STRING) *rr_to = NULL, *rr_from = NULL;
309     STACK_OF(OPENSSL_STRING) *sksigners = NULL, *skkeys = NULL;
310     STACK_OF(X509) *encerts = NULL, *other = NULL;
311     X509 *cert = NULL, *recip = NULL, *signer = NULL, *originator = NULL;
312     X509_STORE *store = NULL;
313     X509_VERIFY_PARAM *vpm = NULL;
314     char *certfile = NULL, *keyfile = NULL, *contfile = NULL;
315     const char *CAfile = NULL, *CApath = NULL, *CAstore = NULL;
316     char *certsoutfile = NULL, *digestname = NULL, *wrapname = NULL;
317     int noCAfile = 0, noCApath = 0, noCAstore = 0;
318     char *infile = NULL, *outfile = NULL, *rctfile = NULL;
319     char *passinarg = NULL, *passin = NULL, *signerfile = NULL;
320     char *originatorfile = NULL, *recipfile = NULL, *ciphername = NULL;
321     char *to = NULL, *from = NULL, *subject = NULL, *prog;
322     cms_key_param *key_first = NULL, *key_param = NULL;
323     int flags = CMS_DETACHED, noout = 0, print = 0, keyidx = -1, vpmtouched = 0;
324     int informat = FORMAT_SMIME, outformat = FORMAT_SMIME;
325     int operation = 0, ret = 1, rr_print = 0, rr_allorfirst = -1;
326     int verify_retcode = 0, rctformat = FORMAT_SMIME, keyform = FORMAT_UNDEF;
327     size_t secret_keylen = 0, secret_keyidlen = 0;
328     unsigned char *pwri_pass = NULL, *pwri_tmp = NULL;
329     unsigned char *secret_key = NULL, *secret_keyid = NULL;
330     long ltmp;
331     const char *mime_eol = "\n";
332     OPTION_CHOICE o;
333     OSSL_LIB_CTX *libctx = app_get0_libctx();
334
335     if ((vpm = X509_VERIFY_PARAM_new()) == NULL)
336         return 1;
337
338     prog = opt_init(argc, argv, cms_options);
339     while ((o = opt_next()) != OPT_EOF) {
340         switch (o) {
341         case OPT_EOF:
342         case OPT_ERR:
343  opthelp:
344             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
345             goto end;
346         case OPT_HELP:
347             opt_help(cms_options);
348             ret = 0;
349             goto end;
350         case OPT_INFORM:
351             if (!opt_format(opt_arg(), OPT_FMT_PDS, &informat))
352                 goto opthelp;
353             break;
354         case OPT_OUTFORM:
355             if (!opt_format(opt_arg(), OPT_FMT_PDS, &outformat))
356                 goto opthelp;
357             break;
358         case OPT_OUT:
359             outfile = opt_arg();
360             break;
361
362         case OPT_ENCRYPT:
363             operation = SMIME_ENCRYPT;
364             break;
365         case OPT_DECRYPT:
366             operation = SMIME_DECRYPT;
367             break;
368         case OPT_SIGN:
369             operation = SMIME_SIGN;
370             break;
371         case OPT_VERIFY:
372             operation = SMIME_VERIFY;
373             break;
374         case OPT_RESIGN:
375             operation = SMIME_RESIGN;
376             break;
377         case OPT_SIGN_RECEIPT:
378             operation = SMIME_SIGN_RECEIPT;
379             break;
380         case OPT_VERIFY_RECEIPT:
381             operation = SMIME_VERIFY_RECEIPT;
382             rctfile = opt_arg();
383             break;
384         case OPT_VERIFY_RETCODE:
385             verify_retcode = 1;
386             break;
387         case OPT_DIGEST_CREATE:
388             operation = SMIME_DIGEST_CREATE;
389             break;
390         case OPT_DIGEST_VERIFY:
391             operation = SMIME_DIGEST_VERIFY;
392             break;
393         case OPT_COMPRESS:
394             operation = SMIME_COMPRESS;
395             break;
396         case OPT_UNCOMPRESS:
397             operation = SMIME_UNCOMPRESS;
398             break;
399         case OPT_ED_ENCRYPT:
400             operation = SMIME_ENCRYPTED_ENCRYPT;
401             break;
402         case OPT_ED_DECRYPT:
403             operation = SMIME_ENCRYPTED_DECRYPT;
404             break;
405         case OPT_DATA_CREATE:
406             operation = SMIME_DATA_CREATE;
407             break;
408         case OPT_DATA_OUT:
409             operation = SMIME_DATA_OUT;
410             break;
411         case OPT_CMSOUT:
412             operation = SMIME_CMSOUT;
413             break;
414
415         case OPT_DEBUG_DECRYPT:
416             flags |= CMS_DEBUG_DECRYPT;
417             break;
418         case OPT_TEXT:
419             flags |= CMS_TEXT;
420             break;
421         case OPT_ASCIICRLF:
422             flags |= CMS_ASCIICRLF;
423             break;
424         case OPT_NOINTERN:
425             flags |= CMS_NOINTERN;
426             break;
427         case OPT_NOVERIFY:
428             flags |= CMS_NO_SIGNER_CERT_VERIFY;
429             break;
430         case OPT_NOCERTS:
431             flags |= CMS_NOCERTS;
432             break;
433         case OPT_NOATTR:
434             flags |= CMS_NOATTR;
435             break;
436         case OPT_NODETACH:
437             flags &= ~CMS_DETACHED;
438             break;
439         case OPT_NOSMIMECAP:
440             flags |= CMS_NOSMIMECAP;
441             break;
442         case OPT_BINARY:
443             flags |= CMS_BINARY;
444             break;
445         case OPT_CADES:
446             flags |= CMS_CADES;
447             break;
448         case OPT_KEYID:
449             flags |= CMS_USE_KEYID;
450             break;
451         case OPT_NOSIGS:
452             flags |= CMS_NOSIGS;
453             break;
454         case OPT_NO_CONTENT_VERIFY:
455             flags |= CMS_NO_CONTENT_VERIFY;
456             break;
457         case OPT_NO_ATTR_VERIFY:
458             flags |= CMS_NO_ATTR_VERIFY;
459             break;
460         case OPT_INDEF:
461             flags |= CMS_STREAM;
462             break;
463         case OPT_NOINDEF:
464             flags &= ~CMS_STREAM;
465             break;
466         case OPT_CRLFEOL:
467             mime_eol = "\r\n";
468             flags |= CMS_CRLFEOL;
469             break;
470         case OPT_NOOUT:
471             noout = 1;
472             break;
473         case OPT_RR_PRINT:
474             rr_print = 1;
475             break;
476         case OPT_RR_ALL:
477             rr_allorfirst = 0;
478             break;
479         case OPT_RR_FIRST:
480             rr_allorfirst = 1;
481             break;
482         case OPT_RCTFORM:
483             if (rctformat == FORMAT_ASN1) {
484                 if (!opt_format(opt_arg(),
485                                 OPT_FMT_PEMDER | OPT_FMT_SMIME, &rctformat))
486                     goto opthelp;
487             } else {
488                 rcms = load_content_info(rctformat, rctin, 0, NULL, "recipient");
489             }
490             break;
491         case OPT_CERTFILE:
492             certfile = opt_arg();
493             break;
494         case OPT_CAFILE:
495             CAfile = opt_arg();
496             break;
497         case OPT_CAPATH:
498             CApath = opt_arg();
499             break;
500         case OPT_CASTORE:
501             CAstore = opt_arg();
502             break;
503         case OPT_NOCAFILE:
504             noCAfile = 1;
505             break;
506         case OPT_NOCAPATH:
507             noCApath = 1;
508             break;
509         case OPT_NOCASTORE:
510             noCAstore = 1;
511             break;
512         case OPT_IN:
513             infile = opt_arg();
514             break;
515         case OPT_CONTENT:
516             contfile = opt_arg();
517             break;
518         case OPT_RR_FROM:
519             if (rr_from == NULL
520                 && (rr_from = sk_OPENSSL_STRING_new_null()) == NULL)
521                 goto end;
522             sk_OPENSSL_STRING_push(rr_from, opt_arg());
523             break;
524         case OPT_RR_TO:
525             if (rr_to == NULL
526                 && (rr_to = sk_OPENSSL_STRING_new_null()) == NULL)
527                 goto end;
528             sk_OPENSSL_STRING_push(rr_to, opt_arg());
529             break;
530         case OPT_PRINT:
531             noout = print = 1;
532             break;
533         case OPT_NAMEOPT:
534             if (!set_nameopt(opt_arg()))
535                 goto opthelp;
536             break;
537         case OPT_SECRETKEY:
538             if (secret_key != NULL) {
539                 BIO_printf(bio_err, "Invalid key (supplied twice) %s\n",
540                            opt_arg());
541                 goto opthelp;
542             }
543             secret_key = OPENSSL_hexstr2buf(opt_arg(), &ltmp);
544             if (secret_key == NULL) {
545                 BIO_printf(bio_err, "Invalid key %s\n", opt_arg());
546                 goto end;
547             }
548             secret_keylen = (size_t)ltmp;
549             break;
550         case OPT_SECRETKEYID:
551             if (secret_keyid != NULL) {
552                 BIO_printf(bio_err, "Invalid id (supplied twice) %s\n",
553                            opt_arg());
554                 goto opthelp;
555             }
556             secret_keyid = OPENSSL_hexstr2buf(opt_arg(), &ltmp);
557             if (secret_keyid == NULL) {
558                 BIO_printf(bio_err, "Invalid id %s\n", opt_arg());
559                 goto opthelp;
560             }
561             secret_keyidlen = (size_t)ltmp;
562             break;
563         case OPT_PWRI_PASSWORD:
564             pwri_pass = (unsigned char *)opt_arg();
565             break;
566         case OPT_ECONTENT_TYPE:
567             if (econtent_type != NULL) {
568                 BIO_printf(bio_err, "Invalid OID (supplied twice) %s\n",
569                            opt_arg());
570                 goto opthelp;
571             }
572             econtent_type = OBJ_txt2obj(opt_arg(), 0);
573             if (econtent_type == NULL) {
574                 BIO_printf(bio_err, "Invalid OID %s\n", opt_arg());
575                 goto opthelp;
576             }
577             break;
578         case OPT_ENGINE:
579             e = setup_engine(opt_arg(), 0);
580             break;
581         case OPT_PASSIN:
582             passinarg = opt_arg();
583             break;
584         case OPT_TO:
585             to = opt_arg();
586             break;
587         case OPT_FROM:
588             from = opt_arg();
589             break;
590         case OPT_SUBJECT:
591             subject = opt_arg();
592             break;
593         case OPT_CERTSOUT:
594             certsoutfile = opt_arg();
595             break;
596         case OPT_MD:
597             digestname = opt_arg();
598             break;
599         case OPT_SIGNER:
600             /* If previous -signer argument add signer to list */
601             if (signerfile != NULL) {
602                 if (sksigners == NULL
603                     && (sksigners = sk_OPENSSL_STRING_new_null()) == NULL)
604                     goto end;
605                 sk_OPENSSL_STRING_push(sksigners, signerfile);
606                 if (keyfile == NULL)
607                     keyfile = signerfile;
608                 if (skkeys == NULL
609                     && (skkeys = sk_OPENSSL_STRING_new_null()) == NULL)
610                     goto end;
611                 sk_OPENSSL_STRING_push(skkeys, keyfile);
612                 keyfile = NULL;
613             }
614             signerfile = opt_arg();
615             break;
616         case OPT_ORIGINATOR:
617             originatorfile = opt_arg();
618             break;
619         case OPT_INKEY:
620             /* If previous -inkey argument add signer to list */
621             if (keyfile != NULL) {
622                 if (signerfile == NULL) {
623                     BIO_puts(bio_err, "Illegal -inkey without -signer\n");
624                     goto end;
625                 }
626                 if (sksigners == NULL
627                     && (sksigners = sk_OPENSSL_STRING_new_null()) == NULL)
628                     goto end;
629                 sk_OPENSSL_STRING_push(sksigners, signerfile);
630                 signerfile = NULL;
631                 if (skkeys == NULL
632                     && (skkeys = sk_OPENSSL_STRING_new_null()) == NULL)
633                     goto end;
634                 sk_OPENSSL_STRING_push(skkeys, keyfile);
635             }
636             keyfile = opt_arg();
637             break;
638         case OPT_KEYFORM:
639             if (!opt_format(opt_arg(), OPT_FMT_ANY, &keyform))
640                 goto opthelp;
641             break;
642         case OPT_RECIP:
643             if (operation == SMIME_ENCRYPT) {
644                 if (encerts == NULL && (encerts = sk_X509_new_null()) == NULL)
645                     goto end;
646                 cert = load_cert(opt_arg(), FORMAT_UNDEF,
647                                  "recipient certificate file");
648                 if (cert == NULL)
649                     goto end;
650                 sk_X509_push(encerts, cert);
651                 cert = NULL;
652             } else {
653                 recipfile = opt_arg();
654             }
655             break;
656         case OPT_CIPHER:
657             ciphername = opt_unknown();
658             break;
659         case OPT_KEYOPT:
660             keyidx = -1;
661             if (operation == SMIME_ENCRYPT) {
662                 if (encerts != NULL)
663                     keyidx += sk_X509_num(encerts);
664             } else {
665                 if (keyfile != NULL || signerfile != NULL)
666                     keyidx++;
667                 if (skkeys != NULL)
668                     keyidx += sk_OPENSSL_STRING_num(skkeys);
669             }
670             if (keyidx < 0) {
671                 BIO_printf(bio_err, "No key specified\n");
672                 goto opthelp;
673             }
674             if (key_param == NULL || key_param->idx != keyidx) {
675                 cms_key_param *nparam;
676                 nparam = app_malloc(sizeof(*nparam), "key param buffer");
677                 if ((nparam->param = sk_OPENSSL_STRING_new_null()) == NULL) {
678                     OPENSSL_free(nparam);
679                     goto end;
680                 }
681                 nparam->idx = keyidx;
682                 nparam->next = NULL;
683                 if (key_first == NULL)
684                     key_first = nparam;
685                 else
686                     key_param->next = nparam;
687                 key_param = nparam;
688             }
689             sk_OPENSSL_STRING_push(key_param->param, opt_arg());
690             break;
691         case OPT_V_CASES:
692             if (!opt_verify(o, vpm))
693                 goto end;
694             vpmtouched++;
695             break;
696         case OPT_R_CASES:
697             if (!opt_rand(o))
698                 goto end;
699             break;
700         case OPT_PROV_CASES:
701             if (!opt_provider(o))
702                 goto end;
703             break;
704         case OPT_CONFIG:
705             conf = app_load_config_modules(opt_arg());
706             if (conf == NULL)
707                 goto end;
708             break;
709         case OPT_WRAP:
710             wrapname = opt_unknown();
711             break;
712         case OPT_AES128_WRAP:
713         case OPT_AES192_WRAP:
714         case OPT_AES256_WRAP:
715         case OPT_3DES_WRAP:
716             wrapname = opt_flag() + 1;
717             break;
718         }
719     }
720     if (!app_RAND_load())
721         goto end;
722
723     if (digestname != NULL) {
724         if (!opt_md(digestname, &sign_md))
725             goto end;
726     }
727     if (ciphername != NULL) {
728         if (!opt_cipher(ciphername, &cipher))
729             goto end;
730     }
731     if (wrapname != NULL) {
732         if (!opt_cipher(wrapname, &wrap_cipher))
733             goto end;
734     }
735
736     /* Remaining args are files to process. */
737     argc = opt_num_rest();
738     argv = opt_rest();
739
740     if ((rr_allorfirst != -1 || rr_from != NULL) && rr_to == NULL) {
741         BIO_puts(bio_err, "No Signed Receipts Recipients\n");
742         goto opthelp;
743     }
744
745     if (!(operation & SMIME_SIGNERS) && (rr_to != NULL || rr_from != NULL)) {
746         BIO_puts(bio_err, "Signed receipts only allowed with -sign\n");
747         goto opthelp;
748     }
749     if (!(operation & SMIME_SIGNERS) && (skkeys != NULL || sksigners != NULL)) {
750         BIO_puts(bio_err, "Multiple signers or keys not allowed\n");
751         goto opthelp;
752     }
753
754     if ((flags & CMS_CADES) != 0) {
755         if ((flags & CMS_NOATTR) != 0) {
756             BIO_puts(bio_err, "Incompatible options: "
757                      "CAdES requires signed attributes\n");
758             goto opthelp;
759         }
760         if (operation == SMIME_VERIFY
761                 && (flags & (CMS_NO_SIGNER_CERT_VERIFY | CMS_NO_ATTR_VERIFY)) != 0) {
762             BIO_puts(bio_err, "Incompatible options: CAdES validation requires"
763                      " certs and signed attributes validations\n");
764             goto opthelp;
765         }
766     }
767
768     if (operation & SMIME_SIGNERS) {
769         if (keyfile != NULL && signerfile == NULL) {
770             BIO_puts(bio_err, "Illegal -inkey without -signer\n");
771             goto opthelp;
772         }
773         /* Check to see if any final signer needs to be appended */
774         if (signerfile != NULL) {
775             if (sksigners == NULL
776                 && (sksigners = sk_OPENSSL_STRING_new_null()) == NULL)
777                 goto end;
778             sk_OPENSSL_STRING_push(sksigners, signerfile);
779             if (skkeys == NULL && (skkeys = sk_OPENSSL_STRING_new_null()) == NULL)
780                 goto end;
781             if (keyfile == NULL)
782                 keyfile = signerfile;
783             sk_OPENSSL_STRING_push(skkeys, keyfile);
784         }
785         if (sksigners == NULL) {
786             BIO_printf(bio_err, "No signer certificate specified\n");
787             goto opthelp;
788         }
789         signerfile = NULL;
790         keyfile = NULL;
791     } else if (operation == SMIME_DECRYPT) {
792         if (recipfile == NULL && keyfile == NULL
793             && secret_key == NULL && pwri_pass == NULL) {
794             BIO_printf(bio_err,
795                        "No recipient certificate or key specified\n");
796             goto opthelp;
797         }
798     } else if (operation == SMIME_ENCRYPT) {
799         if (*argv == NULL && secret_key == NULL
800             && pwri_pass == NULL && encerts == NULL) {
801             BIO_printf(bio_err, "No recipient(s) certificate(s) specified\n");
802             goto opthelp;
803         }
804     } else if (!operation) {
805         BIO_printf(bio_err, "No operation option (-encrypt|-decrypt|-sign|-verify|...) specified.\n");
806         goto opthelp;
807     }
808
809     if (!app_passwd(passinarg, NULL, &passin, NULL)) {
810         BIO_printf(bio_err, "Error getting password\n");
811         goto end;
812     }
813
814     ret = 2;
815
816     if (!(operation & SMIME_SIGNERS))
817         flags &= ~CMS_DETACHED;
818
819     if ((flags & CMS_BINARY) != 0) {
820         if (!(operation & SMIME_OP))
821             outformat = FORMAT_BINARY;
822         if (!(operation & SMIME_IP))
823             informat = FORMAT_BINARY;
824     }
825
826     if (operation == SMIME_ENCRYPT) {
827         if (!cipher) {
828 #ifndef OPENSSL_NO_DES
829             cipher = (EVP_CIPHER *)EVP_des_ede3_cbc();
830 #else
831             BIO_printf(bio_err, "No cipher selected\n");
832             goto end;
833 #endif
834         }
835
836         if (secret_key && !secret_keyid) {
837             BIO_printf(bio_err, "No secret key id\n");
838             goto end;
839         }
840
841         if (*argv && encerts == NULL)
842             if ((encerts = sk_X509_new_null()) == NULL)
843                 goto end;
844         while (*argv) {
845             if ((cert = load_cert(*argv, FORMAT_UNDEF,
846                                   "recipient certificate file")) == NULL)
847                 goto end;
848             sk_X509_push(encerts, cert);
849             cert = NULL;
850             argv++;
851         }
852     }
853
854     if (certfile != NULL) {
855         if (!load_certs(certfile, 0, &other, NULL, "certificate file")) {
856             ERR_print_errors(bio_err);
857             goto end;
858         }
859     }
860
861     if (recipfile != NULL && (operation == SMIME_DECRYPT)) {
862         if ((recip = load_cert(recipfile, FORMAT_UNDEF,
863                                "recipient certificate file")) == NULL) {
864             ERR_print_errors(bio_err);
865             goto end;
866         }
867     }
868
869     if (originatorfile != NULL) {
870         if ((originator = load_cert(originatorfile, FORMAT_UNDEF,
871                                     "originator certificate file")) == NULL) {
872             ERR_print_errors(bio_err);
873             goto end;
874         }
875     }
876
877     if (operation == SMIME_SIGN_RECEIPT) {
878         if ((signer = load_cert(signerfile, FORMAT_UNDEF,
879                                 "receipt signer certificate file")) == NULL) {
880             ERR_print_errors(bio_err);
881             goto end;
882         }
883     }
884
885     if ((operation == SMIME_DECRYPT) || (operation == SMIME_ENCRYPT)) {
886         if (keyfile == NULL)
887             keyfile = recipfile;
888     } else if ((operation == SMIME_SIGN) || (operation == SMIME_SIGN_RECEIPT)) {
889         if (keyfile == NULL)
890             keyfile = signerfile;
891     } else {
892         keyfile = NULL;
893     }
894
895     if (keyfile != NULL) {
896         key = load_key(keyfile, keyform, 0, passin, e, "signing key");
897         if (key == NULL)
898             goto end;
899     }
900
901     if ((flags & CMS_BINARY) == 0)
902         warn_binary(infile);
903     in = bio_open_default(infile, 'r',
904                           (flags & CMS_BINARY) != 0 ? FORMAT_BINARY : informat);
905     if (in == NULL)
906         goto end;
907
908     if (operation & SMIME_IP) {
909         cms = load_content_info(informat, in, flags, &indata, "SMIME");
910         if (cms == NULL)
911             goto end;
912         if (contfile != NULL) {
913             BIO_free(indata);
914             if ((flags & CMS_BINARY) == 0)
915                 warn_binary(contfile);
916             if ((indata = BIO_new_file(contfile, "rb")) == NULL) {
917                 BIO_printf(bio_err, "Can't read content file %s\n", contfile);
918                 goto end;
919             }
920         }
921         if (certsoutfile != NULL) {
922             STACK_OF(X509) *allcerts;
923             allcerts = CMS_get1_certs(cms);
924             if (!save_certs(certsoutfile, allcerts)) {
925                 BIO_printf(bio_err,
926                            "Error writing certs to %s\n", certsoutfile);
927                 ret = 5;
928                 goto end;
929             }
930             sk_X509_pop_free(allcerts, X509_free);
931         }
932     }
933
934     if (rctfile != NULL) {
935         char *rctmode = (rctformat == FORMAT_ASN1) ? "rb" : "r";
936
937         if ((rctin = BIO_new_file(rctfile, rctmode)) == NULL) {
938             BIO_printf(bio_err, "Can't open receipt file %s\n", rctfile);
939             goto end;
940         }
941
942         rcms = load_content_info(rctformat, rctin, 0, NULL, "recipient");
943         if (rcms == NULL)
944             goto end;
945     }
946
947     out = bio_open_default(outfile, 'w', outformat);
948     if (out == NULL)
949         goto end;
950
951     if ((operation == SMIME_VERIFY) || (operation == SMIME_VERIFY_RECEIPT)) {
952         if ((store = setup_verify(CAfile, noCAfile, CApath, noCApath,
953                                   CAstore, noCAstore)) == NULL)
954             goto end;
955         X509_STORE_set_verify_cb(store, cms_cb);
956         if (vpmtouched)
957             X509_STORE_set1_param(store, vpm);
958     }
959
960     ret = 3;
961
962     if (operation == SMIME_DATA_CREATE) {
963         cms = CMS_data_create_ex(in, flags, libctx, app_get0_propq());
964     } else if (operation == SMIME_DIGEST_CREATE) {
965         cms = CMS_digest_create_ex(in, sign_md, flags, libctx, app_get0_propq());
966     } else if (operation == SMIME_COMPRESS) {
967         cms = CMS_compress(in, -1, flags);
968     } else if (operation == SMIME_ENCRYPT) {
969         int i;
970         flags |= CMS_PARTIAL;
971         cms = CMS_encrypt_ex(NULL, in, cipher, flags, libctx, app_get0_propq());
972         if (cms == NULL)
973             goto end;
974         for (i = 0; i < sk_X509_num(encerts); i++) {
975             CMS_RecipientInfo *ri;
976             cms_key_param *kparam;
977             int tflags = flags | CMS_KEY_PARAM;
978             /* This flag enforces allocating the EVP_PKEY_CTX for the recipient here */
979             EVP_PKEY_CTX *pctx;
980             X509 *x = sk_X509_value(encerts, i);
981             int res;
982
983             for (kparam = key_first; kparam; kparam = kparam->next) {
984                 if (kparam->idx == i) {
985                     break;
986                 }
987             }
988             ri = CMS_add1_recipient(cms, x, key, originator, tflags);
989             if (ri == NULL)
990                 goto end;
991
992             pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
993             if (kparam != NULL) {
994                 if (!cms_set_pkey_param(pctx, kparam->param))
995                     goto end;
996             }
997
998             res = EVP_PKEY_CTX_ctrl(pctx, -1, -1,
999                                     EVP_PKEY_CTRL_CIPHER,
1000                                     EVP_CIPHER_nid(cipher), NULL);
1001             if (res <= 0 && res != -2)
1002                 goto end;
1003
1004             if (CMS_RecipientInfo_type(ri) == CMS_RECIPINFO_AGREE
1005                     && wrap_cipher != NULL) {
1006                 EVP_CIPHER_CTX *wctx;
1007                 wctx = CMS_RecipientInfo_kari_get0_ctx(ri);
1008                 EVP_EncryptInit_ex(wctx, wrap_cipher, NULL, NULL, NULL);
1009             }
1010         }
1011
1012         if (secret_key != NULL) {
1013             if (!CMS_add0_recipient_key(cms, NID_undef,
1014                                         secret_key, secret_keylen,
1015                                         secret_keyid, secret_keyidlen,
1016                                         NULL, NULL, NULL))
1017                 goto end;
1018             /* NULL these because call absorbs them */
1019             secret_key = NULL;
1020             secret_keyid = NULL;
1021         }
1022         if (pwri_pass != NULL) {
1023             pwri_tmp = (unsigned char *)OPENSSL_strdup((char *)pwri_pass);
1024             if (pwri_tmp == NULL)
1025                 goto end;
1026             if (CMS_add0_recipient_password(cms,
1027                                             -1, NID_undef, NID_undef,
1028                                             pwri_tmp, -1, NULL) == NULL)
1029                 goto end;
1030             pwri_tmp = NULL;
1031         }
1032         if (!(flags & CMS_STREAM)) {
1033             if (!CMS_final(cms, in, NULL, flags))
1034                 goto end;
1035         }
1036     } else if (operation == SMIME_ENCRYPTED_ENCRYPT) {
1037         cms = CMS_EncryptedData_encrypt_ex(in, cipher, secret_key,
1038                                            secret_keylen, flags, libctx, app_get0_propq());
1039
1040     } else if (operation == SMIME_SIGN_RECEIPT) {
1041         CMS_ContentInfo *srcms = NULL;
1042         STACK_OF(CMS_SignerInfo) *sis;
1043         CMS_SignerInfo *si;
1044         sis = CMS_get0_SignerInfos(cms);
1045         if (sis == NULL)
1046             goto end;
1047         si = sk_CMS_SignerInfo_value(sis, 0);
1048         srcms = CMS_sign_receipt(si, signer, key, other, flags);
1049         if (srcms == NULL)
1050             goto end;
1051         CMS_ContentInfo_free(cms);
1052         cms = srcms;
1053     } else if (operation & SMIME_SIGNERS) {
1054         int i;
1055         /*
1056          * If detached data content we enable streaming if S/MIME output
1057          * format.
1058          */
1059         if (operation == SMIME_SIGN) {
1060
1061             if (flags & CMS_DETACHED) {
1062                 if (outformat == FORMAT_SMIME)
1063                     flags |= CMS_STREAM;
1064             }
1065             flags |= CMS_PARTIAL;
1066             cms = CMS_sign_ex(NULL, NULL, other, in, flags, libctx, app_get0_propq());
1067             if (cms == NULL)
1068                 goto end;
1069             if (econtent_type != NULL)
1070                 CMS_set1_eContentType(cms, econtent_type);
1071
1072             if (rr_to != NULL
1073                 && ((rr = make_receipt_request(rr_to, rr_allorfirst, rr_from))
1074                     == NULL)) {
1075                 BIO_puts(bio_err, "Signed Receipt Request Creation Error\n");
1076                 goto end;
1077             }
1078         } else {
1079             flags |= CMS_REUSE_DIGEST;
1080         }
1081         for (i = 0; i < sk_OPENSSL_STRING_num(sksigners); i++) {
1082             CMS_SignerInfo *si;
1083             cms_key_param *kparam;
1084             int tflags = flags;
1085             signerfile = sk_OPENSSL_STRING_value(sksigners, i);
1086             keyfile = sk_OPENSSL_STRING_value(skkeys, i);
1087
1088             signer = load_cert(signerfile, FORMAT_UNDEF, "signer certificate");
1089             if (signer == NULL) {
1090                 ret = 2;
1091                 goto end;
1092             }
1093             key = load_key(keyfile, keyform, 0, passin, e, "signing key");
1094             if (key == NULL) {
1095                 ret = 2;
1096                 goto end;
1097             }
1098
1099             for (kparam = key_first; kparam; kparam = kparam->next) {
1100                 if (kparam->idx == i) {
1101                     tflags |= CMS_KEY_PARAM;
1102                     break;
1103                 }
1104             }
1105             si = CMS_add1_signer(cms, signer, key, sign_md, tflags);
1106             if (si == NULL)
1107                 goto end;
1108             if (kparam != NULL) {
1109                 EVP_PKEY_CTX *pctx;
1110                 pctx = CMS_SignerInfo_get0_pkey_ctx(si);
1111                 if (!cms_set_pkey_param(pctx, kparam->param))
1112                     goto end;
1113             }
1114             if (rr != NULL && !CMS_add1_ReceiptRequest(si, rr))
1115                 goto end;
1116             X509_free(signer);
1117             signer = NULL;
1118             EVP_PKEY_free(key);
1119             key = NULL;
1120         }
1121         /* If not streaming or resigning finalize structure */
1122         if ((operation == SMIME_SIGN) && !(flags & CMS_STREAM)) {
1123             if (!CMS_final(cms, in, NULL, flags))
1124                 goto end;
1125         }
1126     }
1127
1128     if (cms == NULL) {
1129         BIO_printf(bio_err, "Error creating CMS structure\n");
1130         goto end;
1131     }
1132
1133     ret = 4;
1134     if (operation == SMIME_DECRYPT) {
1135         if (flags & CMS_DEBUG_DECRYPT)
1136             CMS_decrypt(cms, NULL, NULL, NULL, NULL, flags);
1137
1138         if (secret_key != NULL) {
1139             if (!CMS_decrypt_set1_key(cms,
1140                                       secret_key, secret_keylen,
1141                                       secret_keyid, secret_keyidlen)) {
1142                 BIO_puts(bio_err, "Error decrypting CMS using secret key\n");
1143                 goto end;
1144             }
1145         }
1146
1147         if (key != NULL) {
1148             if (!CMS_decrypt_set1_pkey_and_peer(cms, key, recip, originator)) {
1149                 BIO_puts(bio_err, "Error decrypting CMS using private key\n");
1150                 goto end;
1151             }
1152         }
1153
1154         if (pwri_pass != NULL) {
1155             if (!CMS_decrypt_set1_password(cms, pwri_pass, -1)) {
1156                 BIO_puts(bio_err, "Error decrypting CMS using password\n");
1157                 goto end;
1158             }
1159         }
1160
1161         if (!CMS_decrypt(cms, NULL, NULL, indata, out, flags)) {
1162             BIO_printf(bio_err, "Error decrypting CMS structure\n");
1163             goto end;
1164         }
1165     } else if (operation == SMIME_DATA_OUT) {
1166         if (!CMS_data(cms, out, flags))
1167             goto end;
1168     } else if (operation == SMIME_UNCOMPRESS) {
1169         if (!CMS_uncompress(cms, indata, out, flags))
1170             goto end;
1171     } else if (operation == SMIME_DIGEST_VERIFY) {
1172         if (CMS_digest_verify(cms, indata, out, flags) > 0) {
1173             BIO_printf(bio_err, "Verification successful\n");
1174         } else {
1175             BIO_printf(bio_err, "Verification failure\n");
1176             goto end;
1177         }
1178     } else if (operation == SMIME_ENCRYPTED_DECRYPT) {
1179         if (!CMS_EncryptedData_decrypt(cms, secret_key, secret_keylen,
1180                                        indata, out, flags))
1181             goto end;
1182     } else if (operation == SMIME_VERIFY) {
1183         if (CMS_verify(cms, other, store, indata, out, flags) > 0) {
1184             BIO_printf(bio_err, "%s Verification successful\n",
1185                        (flags & CMS_CADES) ? "CAdES" : "CMS");
1186         } else {
1187             BIO_printf(bio_err, "Verification failure\n");
1188             if (verify_retcode)
1189                 ret = verify_err + 32;
1190             goto end;
1191         }
1192         if (signerfile != NULL) {
1193             STACK_OF(X509) *signers = CMS_get0_signers(cms);
1194
1195             if (!save_certs(signerfile, signers)) {
1196                 BIO_printf(bio_err,
1197                            "Error writing signers to %s\n", signerfile);
1198                 ret = 5;
1199                 goto end;
1200             }
1201             sk_X509_free(signers);
1202         }
1203         if (rr_print)
1204             receipt_request_print(cms);
1205
1206     } else if (operation == SMIME_VERIFY_RECEIPT) {
1207         if (CMS_verify_receipt(rcms, cms, other, store, flags) > 0) {
1208             BIO_printf(bio_err, "Verification successful\n");
1209         } else {
1210             BIO_printf(bio_err, "Verification failure\n");
1211             goto end;
1212         }
1213     } else {
1214         if (noout) {
1215             if (print) {
1216                 ASN1_PCTX *pctx = NULL;
1217                 if (get_nameopt() != XN_FLAG_ONELINE) {
1218                     pctx = ASN1_PCTX_new();
1219                     if (pctx != NULL) { /* Print anyway if malloc failed */
1220                         ASN1_PCTX_set_flags(pctx, ASN1_PCTX_FLAGS_SHOW_ABSENT);
1221                         ASN1_PCTX_set_str_flags(pctx, get_nameopt());
1222                         ASN1_PCTX_set_nm_flags(pctx, get_nameopt());
1223                     }
1224                 }
1225                 CMS_ContentInfo_print_ctx(out, cms, 0, pctx);
1226                 ASN1_PCTX_free(pctx);
1227             }
1228         } else if (outformat == FORMAT_SMIME) {
1229             if (to)
1230                 BIO_printf(out, "To: %s%s", to, mime_eol);
1231             if (from)
1232                 BIO_printf(out, "From: %s%s", from, mime_eol);
1233             if (subject)
1234                 BIO_printf(out, "Subject: %s%s", subject, mime_eol);
1235             if (operation == SMIME_RESIGN)
1236                 ret = SMIME_write_CMS(out, cms, indata, flags);
1237             else
1238                 ret = SMIME_write_CMS(out, cms, in, flags);
1239         } else if (outformat == FORMAT_PEM) {
1240             ret = PEM_write_bio_CMS_stream(out, cms, in, flags);
1241         } else if (outformat == FORMAT_ASN1) {
1242             ret = i2d_CMS_bio_stream(out, cms, in, flags);
1243         } else {
1244             BIO_printf(bio_err, "Bad output format for CMS file\n");
1245             goto end;
1246         }
1247         if (ret <= 0) {
1248             ret = 6;
1249             goto end;
1250         }
1251     }
1252     ret = 0;
1253  end:
1254     if (ret)
1255         ERR_print_errors(bio_err);
1256     sk_X509_pop_free(encerts, X509_free);
1257     sk_X509_pop_free(other, X509_free);
1258     X509_VERIFY_PARAM_free(vpm);
1259     sk_OPENSSL_STRING_free(sksigners);
1260     sk_OPENSSL_STRING_free(skkeys);
1261     OPENSSL_free(secret_key);
1262     OPENSSL_free(secret_keyid);
1263     OPENSSL_free(pwri_tmp);
1264     ASN1_OBJECT_free(econtent_type);
1265     CMS_ReceiptRequest_free(rr);
1266     sk_OPENSSL_STRING_free(rr_to);
1267     sk_OPENSSL_STRING_free(rr_from);
1268     for (key_param = key_first; key_param;) {
1269         cms_key_param *tparam;
1270         sk_OPENSSL_STRING_free(key_param->param);
1271         tparam = key_param->next;
1272         OPENSSL_free(key_param);
1273         key_param = tparam;
1274     }
1275     X509_STORE_free(store);
1276     X509_free(cert);
1277     X509_free(recip);
1278     X509_free(signer);
1279     EVP_PKEY_free(key);
1280     EVP_CIPHER_free(cipher);
1281     EVP_CIPHER_free(wrap_cipher);
1282     EVP_MD_free(sign_md);
1283     CMS_ContentInfo_free(cms);
1284     CMS_ContentInfo_free(rcms);
1285     release_engine(e);
1286     BIO_free(rctin);
1287     BIO_free(in);
1288     BIO_free(indata);
1289     BIO_free_all(out);
1290     OPENSSL_free(passin);
1291     NCONF_free(conf);
1292     return ret;
1293 }
1294
1295 static int save_certs(char *signerfile, STACK_OF(X509) *signers)
1296 {
1297     int i;
1298     BIO *tmp;
1299     if (signerfile == NULL)
1300         return 1;
1301     tmp = BIO_new_file(signerfile, "w");
1302     if (tmp == NULL)
1303         return 0;
1304     for (i = 0; i < sk_X509_num(signers); i++)
1305         PEM_write_bio_X509(tmp, sk_X509_value(signers, i));
1306     BIO_free(tmp);
1307     return 1;
1308 }
1309
1310 /* Minimal callback just to output policy info (if any) */
1311
1312 static int cms_cb(int ok, X509_STORE_CTX *ctx)
1313 {
1314     int error;
1315
1316     error = X509_STORE_CTX_get_error(ctx);
1317
1318     verify_err = error;
1319
1320     if ((error != X509_V_ERR_NO_EXPLICIT_POLICY)
1321         && ((error != X509_V_OK) || (ok != 2)))
1322         return ok;
1323
1324     policies_print(ctx);
1325
1326     return ok;
1327
1328 }
1329
1330 static void gnames_stack_print(STACK_OF(GENERAL_NAMES) *gns)
1331 {
1332     STACK_OF(GENERAL_NAME) *gens;
1333     GENERAL_NAME *gen;
1334     int i, j;
1335
1336     for (i = 0; i < sk_GENERAL_NAMES_num(gns); i++) {
1337         gens = sk_GENERAL_NAMES_value(gns, i);
1338         for (j = 0; j < sk_GENERAL_NAME_num(gens); j++) {
1339             gen = sk_GENERAL_NAME_value(gens, j);
1340             BIO_puts(bio_err, "    ");
1341             GENERAL_NAME_print(bio_err, gen);
1342             BIO_puts(bio_err, "\n");
1343         }
1344     }
1345     return;
1346 }
1347
1348 static void receipt_request_print(CMS_ContentInfo *cms)
1349 {
1350     STACK_OF(CMS_SignerInfo) *sis;
1351     CMS_SignerInfo *si;
1352     CMS_ReceiptRequest *rr;
1353     int allorfirst;
1354     STACK_OF(GENERAL_NAMES) *rto, *rlist;
1355     ASN1_STRING *scid;
1356     int i, rv;
1357     sis = CMS_get0_SignerInfos(cms);
1358     for (i = 0; i < sk_CMS_SignerInfo_num(sis); i++) {
1359         si = sk_CMS_SignerInfo_value(sis, i);
1360         rv = CMS_get1_ReceiptRequest(si, &rr);
1361         BIO_printf(bio_err, "Signer %d:\n", i + 1);
1362         if (rv == 0) {
1363             BIO_puts(bio_err, "  No Receipt Request\n");
1364         } else if (rv < 0) {
1365             BIO_puts(bio_err, "  Receipt Request Parse Error\n");
1366             ERR_print_errors(bio_err);
1367         } else {
1368             const char *id;
1369             int idlen;
1370             CMS_ReceiptRequest_get0_values(rr, &scid, &allorfirst,
1371                                            &rlist, &rto);
1372             BIO_puts(bio_err, "  Signed Content ID:\n");
1373             idlen = ASN1_STRING_length(scid);
1374             id = (const char *)ASN1_STRING_get0_data(scid);
1375             BIO_dump_indent(bio_err, id, idlen, 4);
1376             BIO_puts(bio_err, "  Receipts From");
1377             if (rlist != NULL) {
1378                 BIO_puts(bio_err, " List:\n");
1379                 gnames_stack_print(rlist);
1380             } else if (allorfirst == 1) {
1381                 BIO_puts(bio_err, ": First Tier\n");
1382             } else if (allorfirst == 0) {
1383                 BIO_puts(bio_err, ": All\n");
1384             } else {
1385                 BIO_printf(bio_err, " Unknown (%d)\n", allorfirst);
1386             }
1387             BIO_puts(bio_err, "  Receipts To:\n");
1388             gnames_stack_print(rto);
1389         }
1390         CMS_ReceiptRequest_free(rr);
1391     }
1392 }
1393
1394 static STACK_OF(GENERAL_NAMES) *make_names_stack(STACK_OF(OPENSSL_STRING) *ns)
1395 {
1396     int i;
1397     STACK_OF(GENERAL_NAMES) *ret;
1398     GENERAL_NAMES *gens = NULL;
1399     GENERAL_NAME *gen = NULL;
1400     ret = sk_GENERAL_NAMES_new_null();
1401     if (ret == NULL)
1402         goto err;
1403     for (i = 0; i < sk_OPENSSL_STRING_num(ns); i++) {
1404         char *str = sk_OPENSSL_STRING_value(ns, i);
1405         gen = a2i_GENERAL_NAME(NULL, NULL, NULL, GEN_EMAIL, str, 0);
1406         if (gen == NULL)
1407             goto err;
1408         gens = GENERAL_NAMES_new();
1409         if (gens == NULL)
1410             goto err;
1411         if (!sk_GENERAL_NAME_push(gens, gen))
1412             goto err;
1413         gen = NULL;
1414         if (!sk_GENERAL_NAMES_push(ret, gens))
1415             goto err;
1416         gens = NULL;
1417     }
1418
1419     return ret;
1420
1421  err:
1422     sk_GENERAL_NAMES_pop_free(ret, GENERAL_NAMES_free);
1423     GENERAL_NAMES_free(gens);
1424     GENERAL_NAME_free(gen);
1425     return NULL;
1426 }
1427
1428 static CMS_ReceiptRequest
1429 *make_receipt_request(STACK_OF(OPENSSL_STRING) *rr_to, int rr_allorfirst,
1430                       STACK_OF(OPENSSL_STRING) *rr_from)
1431 {
1432     STACK_OF(GENERAL_NAMES) *rct_to = NULL, *rct_from = NULL;
1433
1434     rct_to = make_names_stack(rr_to);
1435     if (rct_to == NULL)
1436         goto err;
1437     if (rr_from != NULL) {
1438         rct_from = make_names_stack(rr_from);
1439         if (rct_from == NULL)
1440             goto err;
1441     } else {
1442         rct_from = NULL;
1443     }
1444     return CMS_ReceiptRequest_create0_ex(NULL, -1, rr_allorfirst, rct_from,
1445                                          rct_to, app_get0_libctx());
1446  err:
1447     sk_GENERAL_NAMES_pop_free(rct_to, GENERAL_NAMES_free);
1448     return NULL;
1449 }
1450
1451 static int cms_set_pkey_param(EVP_PKEY_CTX *pctx,
1452                               STACK_OF(OPENSSL_STRING) *param)
1453 {
1454     char *keyopt;
1455     int i;
1456     if (sk_OPENSSL_STRING_num(param) <= 0)
1457         return 1;
1458     for (i = 0; i < sk_OPENSSL_STRING_num(param); i++) {
1459         keyopt = sk_OPENSSL_STRING_value(param, i);
1460         if (pkey_ctrl_string(pctx, keyopt) <= 0) {
1461             BIO_printf(bio_err, "parameter error \"%s\"\n", keyopt);
1462             ERR_print_errors(bio_err);
1463             return 0;
1464         }
1465     }
1466     return 1;
1467 }