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