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