Branch data Line data Source code
1 : : /* smime.c */
2 : : /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 : : * project.
4 : : */
5 : : /* ====================================================================
6 : : * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved.
7 : : *
8 : : * Redistribution and use in source and binary forms, with or without
9 : : * modification, are permitted provided that the following conditions
10 : : * are met:
11 : : *
12 : : * 1. Redistributions of source code must retain the above copyright
13 : : * notice, this list of conditions and the following disclaimer.
14 : : *
15 : : * 2. Redistributions in binary form must reproduce the above copyright
16 : : * notice, this list of conditions and the following disclaimer in
17 : : * the documentation and/or other materials provided with the
18 : : * distribution.
19 : : *
20 : : * 3. All advertising materials mentioning features or use of this
21 : : * software must display the following acknowledgment:
22 : : * "This product includes software developed by the OpenSSL Project
23 : : * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 : : *
25 : : * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 : : * endorse or promote products derived from this software without
27 : : * prior written permission. For written permission, please contact
28 : : * licensing@OpenSSL.org.
29 : : *
30 : : * 5. Products derived from this software may not be called "OpenSSL"
31 : : * nor may "OpenSSL" appear in their names without prior written
32 : : * permission of the OpenSSL Project.
33 : : *
34 : : * 6. Redistributions of any form whatsoever must retain the following
35 : : * acknowledgment:
36 : : * "This product includes software developed by the OpenSSL Project
37 : : * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 : : *
39 : : * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 : : * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 : : * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 : : * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 : : * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 : : * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 : : * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 : : * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 : : * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 : : * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 : : * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 : : * OF THE POSSIBILITY OF SUCH DAMAGE.
51 : : * ====================================================================
52 : : *
53 : : * This product includes cryptographic software written by Eric Young
54 : : * (eay@cryptsoft.com). This product includes software written by Tim
55 : : * Hudson (tjh@cryptsoft.com).
56 : : *
57 : : */
58 : :
59 : : /* S/MIME utility function */
60 : :
61 : : #include <stdio.h>
62 : : #include <string.h>
63 : : #include "apps.h"
64 : : #include <openssl/crypto.h>
65 : : #include <openssl/pem.h>
66 : : #include <openssl/err.h>
67 : : #include <openssl/x509_vfy.h>
68 : : #include <openssl/x509v3.h>
69 : :
70 : : #undef PROG
71 : : #define PROG smime_main
72 : : static int save_certs(char *signerfile, STACK_OF(X509) *signers);
73 : : static int smime_cb(int ok, X509_STORE_CTX *ctx);
74 : :
75 : : #define SMIME_OP 0x10
76 : : #define SMIME_IP 0x20
77 : : #define SMIME_SIGNERS 0x40
78 : : #define SMIME_ENCRYPT (1 | SMIME_OP)
79 : : #define SMIME_DECRYPT (2 | SMIME_IP)
80 : : #define SMIME_SIGN (3 | SMIME_OP | SMIME_SIGNERS)
81 : : #define SMIME_VERIFY (4 | SMIME_IP)
82 : : #define SMIME_PK7OUT (5 | SMIME_IP | SMIME_OP)
83 : : #define SMIME_RESIGN (6 | SMIME_IP | SMIME_OP | SMIME_SIGNERS)
84 : :
85 : : int MAIN(int, char **);
86 : :
87 : 30 : int MAIN(int argc, char **argv)
88 : : {
89 : 30 : ENGINE *e = NULL;
90 : 30 : int operation = 0;
91 : 30 : int ret = 0;
92 : : char **args;
93 : 30 : const char *inmode = "r", *outmode = "w";
94 : 30 : char *infile = NULL, *outfile = NULL;
95 : 30 : char *signerfile = NULL, *recipfile = NULL;
96 : 30 : STACK_OF(OPENSSL_STRING) *sksigners = NULL, *skkeys = NULL;
97 : 30 : char *certfile = NULL, *keyfile = NULL, *contfile=NULL;
98 : 30 : const EVP_CIPHER *cipher = NULL;
99 : 30 : PKCS7 *p7 = NULL;
100 : 30 : X509_STORE *store = NULL;
101 : 30 : X509 *cert = NULL, *recip = NULL, *signer = NULL;
102 : 30 : EVP_PKEY *key = NULL;
103 : 30 : STACK_OF(X509) *encerts = NULL, *other = NULL;
104 : 30 : BIO *in = NULL, *out = NULL, *indata = NULL;
105 : 30 : int badarg = 0;
106 : 30 : int flags = PKCS7_DETACHED;
107 : 30 : char *to = NULL, *from = NULL, *subject = NULL;
108 : 30 : char *CAfile = NULL, *CApath = NULL;
109 : 30 : char *passargin = NULL, *passin = NULL;
110 : 30 : char *inrand = NULL;
111 : 30 : int need_rand = 0;
112 : 30 : int indef = 0;
113 : 30 : const EVP_MD *sign_md = NULL;
114 : 30 : int informat = FORMAT_SMIME, outformat = FORMAT_SMIME;
115 : 30 : int keyform = FORMAT_PEM;
116 : : #ifndef OPENSSL_NO_ENGINE
117 : 30 : char *engine=NULL;
118 : : #endif
119 : :
120 : 30 : X509_VERIFY_PARAM *vpm = NULL;
121 : :
122 : 30 : args = argv + 1;
123 : 30 : ret = 1;
124 : :
125 : 30 : apps_startup();
126 : :
127 [ - + ]: 30 : if (bio_err == NULL)
128 : : {
129 [ # # ]: 0 : if ((bio_err = BIO_new(BIO_s_file())) != NULL)
130 : 0 : BIO_set_fp(bio_err, stderr, BIO_NOCLOSE|BIO_FP_TEXT);
131 : : }
132 : :
133 [ + - ]: 30 : if (!load_config(bio_err, NULL))
134 : : goto end;
135 : :
136 [ + - ][ + + ]: 200 : while (!badarg && *args && *args[0] == '-')
[ + + ]
137 : : {
138 [ + + ]: 170 : if (!strcmp (*args, "-encrypt"))
139 : : operation = SMIME_ENCRYPT;
140 [ + + ]: 166 : else if (!strcmp (*args, "-decrypt"))
141 : : operation = SMIME_DECRYPT;
142 [ + + ]: 162 : else if (!strcmp (*args, "-sign"))
143 : : operation = SMIME_SIGN;
144 [ + + ]: 152 : else if (!strcmp (*args, "-resign"))
145 : : operation = SMIME_RESIGN;
146 [ + + ]: 151 : else if (!strcmp (*args, "-verify"))
147 : : operation = SMIME_VERIFY;
148 [ + - ]: 140 : else if (!strcmp (*args, "-pk7out"))
149 : : operation = SMIME_PK7OUT;
150 : : #ifndef OPENSSL_NO_DES
151 [ - + ]: 140 : else if (!strcmp (*args, "-des3"))
152 : 0 : cipher = EVP_des_ede3_cbc();
153 [ - + ]: 140 : else if (!strcmp (*args, "-des"))
154 : 0 : cipher = EVP_des_cbc();
155 : : #endif
156 : : #ifndef OPENSSL_NO_SEED
157 [ - + ]: 140 : else if (!strcmp (*args, "-seed"))
158 : 0 : cipher = EVP_seed_cbc();
159 : : #endif
160 : : #ifndef OPENSSL_NO_RC2
161 [ - + ]: 140 : else if (!strcmp (*args, "-rc2-40"))
162 : 0 : cipher = EVP_rc2_40_cbc();
163 [ - + ]: 140 : else if (!strcmp (*args, "-rc2-128"))
164 : 0 : cipher = EVP_rc2_cbc();
165 [ - + ]: 140 : else if (!strcmp (*args, "-rc2-64"))
166 : 0 : cipher = EVP_rc2_64_cbc();
167 : : #endif
168 : : #ifndef OPENSSL_NO_AES
169 [ - + ]: 140 : else if (!strcmp(*args,"-aes128"))
170 : 0 : cipher = EVP_aes_128_cbc();
171 [ - + ]: 140 : else if (!strcmp(*args,"-aes192"))
172 : 0 : cipher = EVP_aes_192_cbc();
173 [ + + ]: 140 : else if (!strcmp(*args,"-aes256"))
174 : 1 : cipher = EVP_aes_256_cbc();
175 : : #endif
176 : : #ifndef OPENSSL_NO_CAMELLIA
177 [ - + ]: 139 : else if (!strcmp(*args,"-camellia128"))
178 : 0 : cipher = EVP_camellia_128_cbc();
179 [ - + ]: 139 : else if (!strcmp(*args,"-camellia192"))
180 : 0 : cipher = EVP_camellia_192_cbc();
181 [ - + ]: 139 : else if (!strcmp(*args,"-camellia256"))
182 : 0 : cipher = EVP_camellia_256_cbc();
183 : : #endif
184 [ - + ]: 139 : else if (!strcmp (*args, "-text"))
185 : 0 : flags |= PKCS7_TEXT;
186 [ - + ]: 139 : else if (!strcmp (*args, "-nointern"))
187 : 0 : flags |= PKCS7_NOINTERN;
188 [ - + ]: 139 : else if (!strcmp (*args, "-noverify"))
189 : 0 : flags |= PKCS7_NOVERIFY;
190 [ - + ]: 139 : else if (!strcmp (*args, "-nochain"))
191 : 0 : flags |= PKCS7_NOCHAIN;
192 [ - + ]: 139 : else if (!strcmp (*args, "-nocerts"))
193 : 0 : flags |= PKCS7_NOCERTS;
194 [ + + ]: 139 : else if (!strcmp (*args, "-noattr"))
195 : 1 : flags |= PKCS7_NOATTR;
196 [ + + ]: 138 : else if (!strcmp (*args, "-nodetach"))
197 : 7 : flags &= ~PKCS7_DETACHED;
198 [ - + ]: 131 : else if (!strcmp (*args, "-nosmimecap"))
199 : 0 : flags |= PKCS7_NOSMIMECAP;
200 [ - + ]: 131 : else if (!strcmp (*args, "-binary"))
201 : 0 : flags |= PKCS7_BINARY;
202 [ - + ]: 131 : else if (!strcmp (*args, "-nosigs"))
203 : 0 : flags |= PKCS7_NOSIGS;
204 [ + + ]: 131 : else if (!strcmp (*args, "-stream"))
205 : : indef = 1;
206 [ + - ]: 121 : else if (!strcmp (*args, "-indef"))
207 : : indef = 1;
208 [ + - ]: 121 : else if (!strcmp (*args, "-noindef"))
209 : : indef = 0;
210 [ - + ]: 121 : else if (!strcmp (*args, "-nooldmime"))
211 : 0 : flags |= PKCS7_NOOLDMIMETYPE;
212 [ - + ]: 121 : else if (!strcmp (*args, "-crlfeol"))
213 : 0 : flags |= PKCS7_CRLFEOL;
214 [ - + ]: 121 : else if (!strcmp(*args,"-rand"))
215 : : {
216 [ # # ]: 0 : if (!args[1])
217 : : goto argerr;
218 : 0 : args++;
219 : 0 : inrand = *args;
220 : 0 : need_rand = 1;
221 : : }
222 : : #ifndef OPENSSL_NO_ENGINE
223 [ - + ]: 121 : else if (!strcmp(*args,"-engine"))
224 : : {
225 [ # # ]: 0 : if (!args[1])
226 : : goto argerr;
227 : 0 : engine = *++args;
228 : : }
229 : : #endif
230 [ - + ]: 121 : else if (!strcmp(*args,"-passin"))
231 : : {
232 [ # # ]: 0 : if (!args[1])
233 : : goto argerr;
234 : 0 : passargin = *++args;
235 : : }
236 [ - + ]: 121 : else if (!strcmp (*args, "-to"))
237 : : {
238 [ # # ]: 0 : if (!args[1])
239 : : goto argerr;
240 : 0 : to = *++args;
241 : : }
242 [ - + ]: 121 : else if (!strcmp (*args, "-from"))
243 : : {
244 [ # # ]: 0 : if (!args[1])
245 : : goto argerr;
246 : 0 : from = *++args;
247 : : }
248 [ - + ]: 121 : else if (!strcmp (*args, "-subject"))
249 : : {
250 [ # # ]: 0 : if (!args[1])
251 : : goto argerr;
252 : 0 : subject = *++args;
253 : : }
254 [ + + ]: 121 : else if (!strcmp (*args, "-signer"))
255 : : {
256 [ + - ]: 23 : if (!args[1])
257 : : goto argerr;
258 : : /* If previous -signer argument add signer to list */
259 : :
260 [ + + ]: 23 : if (signerfile)
261 : : {
262 [ + + ]: 12 : if (!sksigners)
263 : 4 : sksigners = sk_OPENSSL_STRING_new_null();
264 : 12 : sk_OPENSSL_STRING_push(sksigners, signerfile);
265 [ + - ]: 12 : if (!keyfile)
266 : 12 : keyfile = signerfile;
267 [ + + ]: 12 : if (!skkeys)
268 : 4 : skkeys = sk_OPENSSL_STRING_new_null();
269 : 12 : sk_OPENSSL_STRING_push(skkeys, keyfile);
270 : 12 : keyfile = NULL;
271 : : }
272 : 23 : signerfile = *++args;
273 : : }
274 [ + + ]: 98 : else if (!strcmp (*args, "-recip"))
275 : : {
276 [ + - ]: 3 : if (!args[1])
277 : : goto argerr;
278 : 3 : recipfile = *++args;
279 : : }
280 [ - + ]: 95 : else if (!strcmp (*args, "-md"))
281 : : {
282 [ # # ]: 0 : if (!args[1])
283 : : goto argerr;
284 : 0 : sign_md = EVP_get_digestbyname(*++args);
285 [ # # ]: 0 : if (sign_md == NULL)
286 : : {
287 : 0 : BIO_printf(bio_err, "Unknown digest %s\n",
288 : : *args);
289 : 0 : goto argerr;
290 : : }
291 : : }
292 [ + + ]: 95 : else if (!strcmp (*args, "-inkey"))
293 : : {
294 [ + - ]: 1 : if (!args[1])
295 : : goto argerr;
296 : : /* If previous -inkey arument add signer to list */
297 [ - + ]: 1 : if (keyfile)
298 : : {
299 [ # # ]: 0 : if (!signerfile)
300 : : {
301 : 0 : BIO_puts(bio_err, "Illegal -inkey without -signer\n");
302 : 0 : goto argerr;
303 : : }
304 [ # # ]: 0 : if (!sksigners)
305 : 0 : sksigners = sk_OPENSSL_STRING_new_null();
306 : 0 : sk_OPENSSL_STRING_push(sksigners, signerfile);
307 : 0 : signerfile = NULL;
308 [ # # ]: 0 : if (!skkeys)
309 : 0 : skkeys = sk_OPENSSL_STRING_new_null();
310 : 0 : sk_OPENSSL_STRING_push(skkeys, keyfile);
311 : : }
312 : 1 : keyfile = *++args;
313 : : }
314 [ - + ]: 94 : else if (!strcmp (*args, "-keyform"))
315 : : {
316 [ # # ]: 0 : if (!args[1])
317 : : goto argerr;
318 : 0 : keyform = str2fmt(*++args);
319 : : }
320 [ + + ]: 94 : else if (!strcmp (*args, "-certfile"))
321 : : {
322 [ + - ]: 1 : if (!args[1])
323 : : goto argerr;
324 : 1 : certfile = *++args;
325 : : }
326 [ + + ]: 93 : else if (!strcmp (*args, "-CAfile"))
327 : : {
328 [ + - ]: 11 : if (!args[1])
329 : : goto argerr;
330 : 11 : CAfile = *++args;
331 : : }
332 [ - + ]: 82 : else if (!strcmp (*args, "-CApath"))
333 : : {
334 [ # # ]: 0 : if (!args[1])
335 : : goto argerr;
336 : 0 : CApath = *++args;
337 : : }
338 [ + + ]: 82 : else if (!strcmp (*args, "-in"))
339 : : {
340 [ + - ]: 30 : if (!args[1])
341 : : goto argerr;
342 : 30 : infile = *++args;
343 : : }
344 [ + + ]: 52 : else if (!strcmp (*args, "-inform"))
345 : : {
346 [ + - ]: 10 : if (!args[1])
347 : : goto argerr;
348 : 10 : informat = str2fmt(*++args);
349 : : }
350 [ + + ]: 42 : else if (!strcmp (*args, "-outform"))
351 : : {
352 [ + - ]: 9 : if (!args[1])
353 : : goto argerr;
354 : 9 : outformat = str2fmt(*++args);
355 : : }
356 [ + + ]: 33 : else if (!strcmp (*args, "-out"))
357 : : {
358 [ + - ]: 30 : if (!args[1])
359 : : goto argerr;
360 : 30 : outfile = *++args;
361 : : }
362 [ + - ]: 3 : else if (!strcmp (*args, "-content"))
363 : : {
364 [ + - ]: 3 : if (!args[1])
365 : : goto argerr;
366 : 3 : contfile = *++args;
367 : : }
368 [ # # ]: 0 : else if (args_verify(&args, NULL, &badarg, bio_err, &vpm))
369 : 0 : continue;
370 [ # # ]: 0 : else if ((cipher = EVP_get_cipherbyname(*args + 1)) == NULL)
371 : 0 : badarg = 1;
372 : 170 : args++;
373 : : }
374 : :
375 [ + + ][ - + ]: 30 : if (!(operation & SMIME_SIGNERS) && (skkeys || sksigners))
376 : : {
377 : 0 : BIO_puts(bio_err, "Multiple signers or keys not allowed\n");
378 : 0 : goto argerr;
379 : : }
380 : :
381 [ + + ]: 30 : if (operation & SMIME_SIGNERS)
382 : : {
383 : : /* Check to see if any final signer needs to be appended */
384 [ - + ]: 11 : if (keyfile && !signerfile)
385 : : {
386 : 0 : BIO_puts(bio_err, "Illegal -inkey without -signer\n");
387 : 0 : goto argerr;
388 : : }
389 [ + - ]: 11 : if (signerfile)
390 : : {
391 [ + + ]: 11 : if (!sksigners)
392 : 7 : sksigners = sk_OPENSSL_STRING_new_null();
393 : 11 : sk_OPENSSL_STRING_push(sksigners, signerfile);
394 [ + + ]: 11 : if (!skkeys)
395 : 7 : skkeys = sk_OPENSSL_STRING_new_null();
396 [ + - ]: 11 : if (!keyfile)
397 : 11 : keyfile = signerfile;
398 : 11 : sk_OPENSSL_STRING_push(skkeys, keyfile);
399 : : }
400 [ - + ]: 11 : if (!sksigners)
401 : : {
402 : 0 : BIO_printf(bio_err, "No signer certificate specified\n");
403 : 0 : badarg = 1;
404 : : }
405 : : signerfile = NULL;
406 : : keyfile = NULL;
407 : : need_rand = 1;
408 : : }
409 [ + + ]: 19 : else if (operation == SMIME_DECRYPT)
410 : : {
411 [ - + ]: 4 : if (!recipfile && !keyfile)
412 : : {
413 : 0 : BIO_printf(bio_err, "No recipient certificate or key specified\n");
414 : 0 : badarg = 1;
415 : : }
416 : : }
417 [ + + ]: 15 : else if (operation == SMIME_ENCRYPT)
418 : : {
419 [ - + ]: 4 : if (!*args)
420 : : {
421 : 0 : BIO_printf(bio_err, "No recipient(s) certificate(s) specified\n");
422 : 0 : badarg = 1;
423 : : }
424 : : need_rand = 1;
425 : : }
426 [ - + ]: 11 : else if (!operation)
427 : 0 : badarg = 1;
428 : :
429 [ - + ]: 30 : if (badarg)
430 : : {
431 : : argerr:
432 : 0 : BIO_printf (bio_err, "Usage smime [options] cert.pem ...\n");
433 : 0 : BIO_printf (bio_err, "where options are\n");
434 : 0 : BIO_printf (bio_err, "-encrypt encrypt message\n");
435 : 0 : BIO_printf (bio_err, "-decrypt decrypt encrypted message\n");
436 : 0 : BIO_printf (bio_err, "-sign sign message\n");
437 : 0 : BIO_printf (bio_err, "-verify verify signed message\n");
438 : 0 : BIO_printf (bio_err, "-pk7out output PKCS#7 structure\n");
439 : : #ifndef OPENSSL_NO_DES
440 : 0 : BIO_printf (bio_err, "-des3 encrypt with triple DES\n");
441 : 0 : BIO_printf (bio_err, "-des encrypt with DES\n");
442 : : #endif
443 : : #ifndef OPENSSL_NO_SEED
444 : 0 : BIO_printf (bio_err, "-seed encrypt with SEED\n");
445 : : #endif
446 : : #ifndef OPENSSL_NO_RC2
447 : 0 : BIO_printf (bio_err, "-rc2-40 encrypt with RC2-40 (default)\n");
448 : 0 : BIO_printf (bio_err, "-rc2-64 encrypt with RC2-64\n");
449 : 0 : BIO_printf (bio_err, "-rc2-128 encrypt with RC2-128\n");
450 : : #endif
451 : : #ifndef OPENSSL_NO_AES
452 : 0 : BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
453 : 0 : BIO_printf (bio_err, " encrypt PEM output with cbc aes\n");
454 : : #endif
455 : : #ifndef OPENSSL_NO_CAMELLIA
456 : 0 : BIO_printf (bio_err, "-camellia128, -camellia192, -camellia256\n");
457 : 0 : BIO_printf (bio_err, " encrypt PEM output with cbc camellia\n");
458 : : #endif
459 : 0 : BIO_printf (bio_err, "-nointern don't search certificates in message for signer\n");
460 : 0 : BIO_printf (bio_err, "-nosigs don't verify message signature\n");
461 : 0 : BIO_printf (bio_err, "-noverify don't verify signers certificate\n");
462 : 0 : BIO_printf (bio_err, "-nocerts don't include signers certificate when signing\n");
463 : 0 : BIO_printf (bio_err, "-nodetach use opaque signing\n");
464 : 0 : BIO_printf (bio_err, "-noattr don't include any signed attributes\n");
465 : 0 : BIO_printf (bio_err, "-binary don't translate message to text\n");
466 : 0 : BIO_printf (bio_err, "-certfile file other certificates file\n");
467 : 0 : BIO_printf (bio_err, "-signer file signer certificate file\n");
468 : 0 : BIO_printf (bio_err, "-recip file recipient certificate file for decryption\n");
469 : 0 : BIO_printf (bio_err, "-in file input file\n");
470 : 0 : BIO_printf (bio_err, "-inform arg input format SMIME (default), PEM or DER\n");
471 : 0 : BIO_printf (bio_err, "-inkey file input private key (if not signer or recipient)\n");
472 : 0 : BIO_printf (bio_err, "-keyform arg input private key format (PEM or ENGINE)\n");
473 : 0 : BIO_printf (bio_err, "-out file output file\n");
474 : 0 : BIO_printf (bio_err, "-outform arg output format SMIME (default), PEM or DER\n");
475 : 0 : BIO_printf (bio_err, "-content file supply or override content for detached signature\n");
476 : 0 : BIO_printf (bio_err, "-to addr to address\n");
477 : 0 : BIO_printf (bio_err, "-from ad from address\n");
478 : 0 : BIO_printf (bio_err, "-subject s subject\n");
479 : 0 : BIO_printf (bio_err, "-text include or delete text MIME headers\n");
480 : 0 : BIO_printf (bio_err, "-CApath dir trusted certificates directory\n");
481 : 0 : BIO_printf (bio_err, "-CAfile file trusted certificates file\n");
482 : 0 : BIO_printf (bio_err, "-trusted_first use locally trusted CA's first when building trust chain\n");
483 : 0 : BIO_printf (bio_err, "-crl_check check revocation status of signer's certificate using CRLs\n");
484 : 0 : BIO_printf (bio_err, "-crl_check_all check revocation status of signer's certificate chain using CRLs\n");
485 : : #ifndef OPENSSL_NO_ENGINE
486 : 0 : BIO_printf (bio_err, "-engine e use engine e, possibly a hardware device.\n");
487 : : #endif
488 : 0 : BIO_printf (bio_err, "-passin arg input file pass phrase source\n");
489 : 0 : BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
490 : 0 : BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
491 : 0 : BIO_printf(bio_err, " the random number generator\n");
492 : 0 : BIO_printf (bio_err, "cert.pem recipient certificate(s) for encryption\n");
493 : 0 : goto end;
494 : : }
495 : :
496 : : #ifndef OPENSSL_NO_ENGINE
497 : 30 : e = setup_engine(bio_err, engine, 0);
498 : : #endif
499 : :
500 [ - + ]: 30 : if (!app_passwd(bio_err, passargin, NULL, &passin, NULL))
501 : : {
502 : 0 : BIO_printf(bio_err, "Error getting password\n");
503 : 0 : goto end;
504 : : }
505 : :
506 [ + + ]: 30 : if (need_rand)
507 : : {
508 : 15 : app_RAND_load_file(NULL, bio_err, (inrand != NULL));
509 [ - + ]: 15 : if (inrand != NULL)
510 : 0 : BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
511 : : app_RAND_load_files(inrand));
512 : : }
513 : :
514 : 30 : ret = 2;
515 : :
516 [ + + ]: 30 : if (!(operation & SMIME_SIGNERS))
517 : 19 : flags &= ~PKCS7_DETACHED;
518 : :
519 [ + + ]: 30 : if (operation & SMIME_OP)
520 : : {
521 [ + + ]: 15 : if (outformat == FORMAT_ASN1)
522 : 9 : outmode = "wb";
523 : : }
524 : : else
525 : : {
526 [ - + ]: 15 : if (flags & PKCS7_BINARY)
527 : 0 : outmode = "wb";
528 : : }
529 : :
530 [ + + ]: 30 : if (operation & SMIME_IP)
531 : : {
532 [ + + ]: 16 : if (informat == FORMAT_ASN1)
533 : 10 : inmode = "rb";
534 : : }
535 : : else
536 : : {
537 [ - + ]: 14 : if (flags & PKCS7_BINARY)
538 : 0 : inmode = "rb";
539 : : }
540 : :
541 [ + + ]: 30 : if (operation == SMIME_ENCRYPT)
542 : : {
543 [ + + ]: 4 : if (!cipher)
544 : : {
545 : : #ifndef OPENSSL_NO_DES
546 : 3 : cipher = EVP_des_ede3_cbc();
547 : : #else
548 : : BIO_printf(bio_err, "No cipher selected\n");
549 : : goto end;
550 : : #endif
551 : : }
552 : 4 : encerts = sk_X509_new_null();
553 [ + + ]: 16 : while (*args)
554 : : {
555 [ + - ]: 12 : if (!(cert = load_cert(bio_err,*args,FORMAT_PEM,
556 : : NULL, e, "recipient certificate file")))
557 : : {
558 : : #if 0 /* An appropriate message is already printed */
559 : : BIO_printf(bio_err, "Can't read recipient certificate file %s\n", *args);
560 : : #endif
561 : : goto end;
562 : : }
563 : 12 : sk_X509_push(encerts, cert);
564 : 12 : cert = NULL;
565 : 12 : args++;
566 : : }
567 : : }
568 : :
569 [ + + ]: 30 : if (certfile)
570 : : {
571 [ - + ]: 1 : if (!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL,
572 : : e, "certificate file")))
573 : : {
574 : 0 : ERR_print_errors(bio_err);
575 : 0 : goto end;
576 : : }
577 : : }
578 : :
579 [ + + ]: 30 : if (recipfile && (operation == SMIME_DECRYPT))
580 : : {
581 [ - + ]: 3 : if (!(recip = load_cert(bio_err,recipfile,FORMAT_PEM,NULL,
582 : : e, "recipient certificate file")))
583 : : {
584 : 0 : ERR_print_errors(bio_err);
585 : 0 : goto end;
586 : : }
587 : : }
588 : :
589 [ + + ]: 30 : if (operation == SMIME_DECRYPT)
590 : : {
591 [ + + ]: 4 : if (!keyfile)
592 : 3 : keyfile = recipfile;
593 : : }
594 [ + + ]: 26 : else if (operation == SMIME_SIGN)
595 : : {
596 [ + - ]: 10 : if (!keyfile)
597 : 10 : keyfile = signerfile;
598 : : }
599 : : else keyfile = NULL;
600 : :
601 [ + + ]: 30 : if (keyfile)
602 : : {
603 : 4 : key = load_key(bio_err, keyfile, keyform, 0, passin, e,
604 : : "signing key file");
605 [ + - ]: 4 : if (!key)
606 : : goto end;
607 : : }
608 : :
609 [ + - ]: 30 : if (infile)
610 : : {
611 [ - + ]: 30 : if (!(in = BIO_new_file(infile, inmode)))
612 : : {
613 : 0 : BIO_printf (bio_err,
614 : : "Can't open input file %s\n", infile);
615 : 0 : goto end;
616 : : }
617 : : }
618 : : else
619 : 0 : in = BIO_new_fp(stdin, BIO_NOCLOSE);
620 : :
621 [ + + ]: 30 : if (operation & SMIME_IP)
622 : : {
623 [ + + ]: 16 : if (informat == FORMAT_SMIME)
624 : 6 : p7 = SMIME_read_PKCS7(in, &indata);
625 [ - + ]: 10 : else if (informat == FORMAT_PEM)
626 : 0 : p7 = PEM_read_bio_PKCS7(in, NULL, NULL, NULL);
627 [ + - ]: 10 : else if (informat == FORMAT_ASN1)
628 : 10 : p7 = d2i_PKCS7_bio(in, NULL);
629 : : else
630 : : {
631 : 0 : BIO_printf(bio_err, "Bad input format for PKCS#7 file\n");
632 : 0 : goto end;
633 : : }
634 : :
635 [ - + ]: 16 : if (!p7)
636 : : {
637 : 0 : BIO_printf(bio_err, "Error reading S/MIME message\n");
638 : 0 : goto end;
639 : : }
640 [ + + ]: 16 : if (contfile)
641 : : {
642 : 3 : BIO_free(indata);
643 [ - + ]: 3 : if (!(indata = BIO_new_file(contfile, "rb")))
644 : : {
645 : 0 : BIO_printf(bio_err, "Can't read content file %s\n", contfile);
646 : 0 : goto end;
647 : : }
648 : : }
649 : : }
650 : :
651 [ + - ]: 30 : if (outfile)
652 : : {
653 [ - + ]: 30 : if (!(out = BIO_new_file(outfile, outmode)))
654 : : {
655 : 0 : BIO_printf (bio_err,
656 : : "Can't open output file %s\n", outfile);
657 : 0 : goto end;
658 : : }
659 : : }
660 : : else
661 : : {
662 : 0 : out = BIO_new_fp(stdout, BIO_NOCLOSE);
663 : : #ifdef OPENSSL_SYS_VMS
664 : : {
665 : : BIO *tmpbio = BIO_new(BIO_f_linebuffer());
666 : : out = BIO_push(tmpbio, out);
667 : : }
668 : : #endif
669 : : }
670 : :
671 [ + + ]: 30 : if (operation == SMIME_VERIFY)
672 : : {
673 [ + - ]: 11 : if (!(store = setup_verify(bio_err, CAfile, CApath)))
674 : : goto end;
675 : 11 : X509_STORE_set_verify_cb(store, smime_cb);
676 [ - + ]: 11 : if (vpm)
677 : 0 : X509_STORE_set1_param(store, vpm);
678 : : }
679 : :
680 : :
681 : 30 : ret = 3;
682 : :
683 [ + + ]: 30 : if (operation == SMIME_ENCRYPT)
684 : : {
685 [ + - ]: 4 : if (indef)
686 : 4 : flags |= PKCS7_STREAM;
687 : 4 : p7 = PKCS7_encrypt(encerts, in, cipher, flags);
688 : : }
689 [ + + ]: 26 : else if (operation & SMIME_SIGNERS)
690 : : {
691 : : int i;
692 : : /* If detached data content we only enable streaming if
693 : : * S/MIME output format.
694 : : */
695 [ + + ]: 11 : if (operation == SMIME_SIGN)
696 : : {
697 [ + + ]: 10 : if (flags & PKCS7_DETACHED)
698 : : {
699 [ + + ]: 3 : if (outformat == FORMAT_SMIME)
700 : 1 : flags |= PKCS7_STREAM;
701 : : }
702 [ + + ]: 7 : else if (indef)
703 : 5 : flags |= PKCS7_STREAM;
704 : 10 : flags |= PKCS7_PARTIAL;
705 : 10 : p7 = PKCS7_sign(NULL, NULL, other, in, flags);
706 [ + - ]: 10 : if (!p7)
707 : : goto end;
708 [ - + ]: 10 : if (flags & PKCS7_NOCERTS)
709 : : {
710 [ # # ]: 0 : for (i = 0; i < sk_X509_num(other); i++)
711 : : {
712 : 0 : X509 *x = sk_X509_value(other, i);
713 : 0 : PKCS7_add_certificate(p7, x);
714 : : }
715 : : }
716 : : }
717 : : else
718 : 1 : flags |= PKCS7_REUSE_DIGEST;
719 [ + + ]: 34 : for (i = 0; i < sk_OPENSSL_STRING_num(sksigners); i++)
720 : : {
721 : 23 : signerfile = sk_OPENSSL_STRING_value(sksigners, i);
722 : 23 : keyfile = sk_OPENSSL_STRING_value(skkeys, i);
723 : 23 : signer = load_cert(bio_err, signerfile,FORMAT_PEM, NULL,
724 : : e, "signer certificate");
725 [ + - ]: 23 : if (!signer)
726 : : goto end;
727 : 23 : key = load_key(bio_err, keyfile, keyform, 0, passin, e,
728 : : "signing key file");
729 [ + - ]: 23 : if (!key)
730 : : goto end;
731 [ + - ]: 23 : if (!PKCS7_sign_add_signer(p7, signer, key,
732 : : sign_md, flags))
733 : : goto end;
734 : 23 : X509_free(signer);
735 : 23 : signer = NULL;
736 : 23 : EVP_PKEY_free(key);
737 : 23 : key = NULL;
738 : : }
739 : : /* If not streaming or resigning finalize structure */
740 [ + + ][ + + ]: 11 : if ((operation == SMIME_SIGN) && !(flags & PKCS7_STREAM))
741 : : {
742 [ + - ]: 4 : if (!PKCS7_final(p7, in, flags))
743 : : goto end;
744 : : }
745 : : }
746 : :
747 [ - + ]: 30 : if (!p7)
748 : : {
749 : 0 : BIO_printf(bio_err, "Error creating PKCS#7 structure\n");
750 : 0 : goto end;
751 : : }
752 : :
753 : 30 : ret = 4;
754 [ + + ]: 30 : if (operation == SMIME_DECRYPT)
755 : : {
756 [ - + ]: 4 : if (!PKCS7_decrypt(p7, key, recip, out, flags))
757 : : {
758 : 0 : BIO_printf(bio_err, "Error decrypting PKCS#7 structure\n");
759 : 0 : goto end;
760 : : }
761 : : }
762 [ + + ]: 26 : else if (operation == SMIME_VERIFY)
763 : : {
764 : : STACK_OF(X509) *signers;
765 [ + - ]: 11 : if (PKCS7_verify(p7, other, store, indata, out, flags))
766 : 11 : BIO_printf(bio_err, "Verification successful\n");
767 : : else
768 : : {
769 : 0 : BIO_printf(bio_err, "Verification failure\n");
770 : 0 : goto end;
771 : : }
772 : 11 : signers = PKCS7_get0_signers(p7, other, flags);
773 [ - + ]: 11 : if (!save_certs(signerfile, signers))
774 : : {
775 : 0 : BIO_printf(bio_err, "Error writing signers to %s\n",
776 : : signerfile);
777 : 0 : ret = 5;
778 : 0 : goto end;
779 : : }
780 : 11 : sk_X509_free(signers);
781 : : }
782 [ - + ]: 15 : else if (operation == SMIME_PK7OUT)
783 : 0 : PEM_write_bio_PKCS7(out, p7);
784 : : else
785 : : {
786 [ - + ]: 15 : if (to)
787 : 0 : BIO_printf(out, "To: %s\n", to);
788 [ - + ]: 15 : if (from)
789 : 0 : BIO_printf(out, "From: %s\n", from);
790 [ - + ]: 15 : if (subject)
791 : 0 : BIO_printf(out, "Subject: %s\n", subject);
792 [ + + ]: 15 : if (outformat == FORMAT_SMIME)
793 : : {
794 [ - + ]: 6 : if (operation == SMIME_RESIGN)
795 : 0 : SMIME_write_PKCS7(out, p7, indata, flags);
796 : : else
797 : 6 : SMIME_write_PKCS7(out, p7, in, flags);
798 : : }
799 [ - + ]: 9 : else if (outformat == FORMAT_PEM)
800 : 0 : PEM_write_bio_PKCS7_stream(out, p7, in, flags);
801 [ + - ]: 9 : else if (outformat == FORMAT_ASN1)
802 : 9 : i2d_PKCS7_bio_stream(out,p7, in, flags);
803 : : else
804 : : {
805 : 0 : BIO_printf(bio_err, "Bad output format for PKCS#7 file\n");
806 : 0 : goto end;
807 : : }
808 : : }
809 : : ret = 0;
810 : : end:
811 [ + + ]: 30 : if (need_rand)
812 : 15 : app_RAND_write_file(NULL, bio_err);
813 [ - + ]: 30 : if (ret) ERR_print_errors(bio_err);
814 : 30 : sk_X509_pop_free(encerts, X509_free);
815 : 30 : sk_X509_pop_free(other, X509_free);
816 [ - + ]: 30 : if (vpm)
817 : 0 : X509_VERIFY_PARAM_free(vpm);
818 [ + + ]: 30 : if (sksigners)
819 : 11 : sk_OPENSSL_STRING_free(sksigners);
820 [ + + ]: 30 : if (skkeys)
821 : 11 : sk_OPENSSL_STRING_free(skkeys);
822 : 30 : X509_STORE_free(store);
823 : 30 : X509_free(cert);
824 : 30 : X509_free(recip);
825 : 30 : X509_free(signer);
826 : 30 : EVP_PKEY_free(key);
827 : 30 : PKCS7_free(p7);
828 : 30 : BIO_free(in);
829 : 30 : BIO_free(indata);
830 : 30 : BIO_free_all(out);
831 [ - + ]: 30 : if (passin) OPENSSL_free(passin);
832 : 30 : return (ret);
833 : : }
834 : :
835 : 11 : static int save_certs(char *signerfile, STACK_OF(X509) *signers)
836 : : {
837 : : int i;
838 : : BIO *tmp;
839 [ - + ]: 11 : if (!signerfile)
840 : : return 1;
841 : 0 : tmp = BIO_new_file(signerfile, "w");
842 [ # # ]: 0 : if (!tmp) return 0;
843 [ # # ]: 0 : for(i = 0; i < sk_X509_num(signers); i++)
844 : 0 : PEM_write_bio_X509(tmp, sk_X509_value(signers, i));
845 : 0 : BIO_free(tmp);
846 : 0 : return 1;
847 : : }
848 : :
849 : :
850 : : /* Minimal callback just to output policy info (if any) */
851 : :
852 : 48 : static int smime_cb(int ok, X509_STORE_CTX *ctx)
853 : : {
854 : : int error;
855 : :
856 : 48 : error = X509_STORE_CTX_get_error(ctx);
857 : :
858 [ + - ]: 48 : if ((error != X509_V_ERR_NO_EXPLICIT_POLICY)
859 [ - + ]: 48 : && ((error != X509_V_OK) || (ok != 2)))
860 : : return ok;
861 : :
862 : 0 : policies_print(NULL, ctx);
863 : :
864 : 0 : return ok;
865 : :
866 : : }
|