blob: 157cb943b6c78b9739608fbf0acec08767eaabf0 [file] [log] [blame]
Rich Salz846e33c2016-05-17 14:18:30 -04001/*
Pauli2b305ab2017-03-09 09:42:25 +10002 * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003 *
Rich Salz846e33c2016-05-17 14:18:30 -04004 * Licensed under the OpenSSL license (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
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00008 */
9
10#include <stdio.h>
11#include <stdlib.h>
12#include <string.h>
Rich Salzbd4850d2016-01-11 20:40:38 -050013#include <limits.h>
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000014#include "apps.h"
Bodo Möllerec577821999-04-23 22:13:45 +000015#include <openssl/bio.h>
16#include <openssl/err.h>
17#include <openssl/evp.h>
18#include <openssl/objects.h>
19#include <openssl/x509.h>
Dr. Stephen Hensonfd699ac1999-11-16 02:49:25 +000020#include <openssl/rand.h>
Bodo Möllerec577821999-04-23 22:13:45 +000021#include <openssl/pem.h>
Dr. Stephen Henson9494e992014-06-11 14:31:08 +010022#ifndef OPENSSL_NO_COMP
Matt Caswell0f113f32015-01-22 03:40:55 +000023# include <openssl/comp.h>
Dr. Stephen Henson9494e992014-06-11 14:31:08 +010024#endif
Ben Laurie646d5692000-11-20 04:14:19 +000025#include <ctype.h>
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000026
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000027#undef SIZE
28#undef BSIZE
Matt Caswell0f113f32015-01-22 03:40:55 +000029#define SIZE (512)
30#define BSIZE (8*1024)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000031
Rich Salz7e1b7482015-04-24 15:26:15 -040032static int set_hex(char *in, unsigned char *out, int size);
33static void show_ciphers(const OBJ_NAME *name, void *bio_);
34
Pauli2b305ab2017-03-09 09:42:25 +100035struct doall_enc_ciphers {
36 BIO *bio;
37 int n;
38};
39
Rich Salz7e1b7482015-04-24 15:26:15 -040040typedef enum OPTION_choice {
41 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
Rich Salz3b5bea32016-06-24 16:38:08 -040042 OPT_LIST,
Rich Salz7e1b7482015-04-24 15:26:15 -040043 OPT_E, OPT_IN, OPT_OUT, OPT_PASS, OPT_ENGINE, OPT_D, OPT_P, OPT_V,
44 OPT_NOPAD, OPT_SALT, OPT_NOSALT, OPT_DEBUG, OPT_UPPER_P, OPT_UPPER_A,
45 OPT_A, OPT_Z, OPT_BUFSIZE, OPT_K, OPT_KFILE, OPT_UPPER_K, OPT_NONE,
Rich Salz700b4a42015-12-14 15:24:27 -050046 OPT_UPPER_S, OPT_IV, OPT_MD, OPT_CIPHER
Rich Salz7e1b7482015-04-24 15:26:15 -040047} OPTION_CHOICE;
48
FdaSilvaYY44c83eb2016-03-13 14:07:50 +010049const OPTIONS enc_options[] = {
Rich Salz7e1b7482015-04-24 15:26:15 -040050 {"help", OPT_HELP, '-', "Display this summary"},
Rich Salz3b5bea32016-06-24 16:38:08 -040051 {"ciphers", OPT_LIST, '-', "List ciphers"},
Rich Salz7e1b7482015-04-24 15:26:15 -040052 {"in", OPT_IN, '<', "Input file"},
53 {"out", OPT_OUT, '>', "Output file"},
54 {"pass", OPT_PASS, 's', "Passphrase source"},
Rich Salz7e1b7482015-04-24 15:26:15 -040055 {"e", OPT_E, '-', "Encrypt"},
56 {"d", OPT_D, '-', "Decrypt"},
57 {"p", OPT_P, '-', "Print the iv/key"},
58 {"P", OPT_UPPER_P, '-', "Print the iv/key and exit"},
Rich Salz9a13bb32016-02-18 12:23:27 -050059 {"v", OPT_V, '-', "Verbose output"},
Rich Salz7e1b7482015-04-24 15:26:15 -040060 {"nopad", OPT_NOPAD, '-', "Disable standard block padding"},
Rich Salz9a13bb32016-02-18 12:23:27 -050061 {"salt", OPT_SALT, '-', "Use salt in the KDF (default)"},
62 {"nosalt", OPT_NOSALT, '-', "Do not use salt in the KDF"},
63 {"debug", OPT_DEBUG, '-', "Print debug info"},
64 {"a", OPT_A, '-', "Base64 encode/decode, depending on encryption flag"},
65 {"base64", OPT_A, '-', "Same as option -a"},
66 {"A", OPT_UPPER_A, '-',
67 "Used with -[base64|a] to specify base64 buffer as a single line"},
Rich Salz7e1b7482015-04-24 15:26:15 -040068 {"bufsize", OPT_BUFSIZE, 's', "Buffer size"},
69 {"k", OPT_K, 's', "Passphrase"},
Kurt Cancemi5507b962016-05-17 01:47:28 -040070 {"kfile", OPT_KFILE, '<', "Read passphrase from file"},
Richard Levitteb256f712015-05-04 17:33:34 +020071 {"K", OPT_UPPER_K, 's', "Raw key, in hex"},
Rich Salz7e1b7482015-04-24 15:26:15 -040072 {"S", OPT_UPPER_S, 's', "Salt, in hex"},
73 {"iv", OPT_IV, 's', "IV in hex"},
Kurt Cancemi5507b962016-05-17 01:47:28 -040074 {"md", OPT_MD, 's', "Use specified digest to create a key from the passphrase"},
Rich Salz7e1b7482015-04-24 15:26:15 -040075 {"none", OPT_NONE, '-', "Don't encrypt"},
76 {"", OPT_CIPHER, '-', "Any supported cipher"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -040077#ifdef ZLIB
78 {"z", OPT_Z, '-', "Use zlib as the 'encryption'"},
79#endif
80#ifndef OPENSSL_NO_ENGINE
81 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
82#endif
Rich Salz7e1b7482015-04-24 15:26:15 -040083 {NULL}
84};
85
86int enc_main(int argc, char **argv)
Matt Caswell0f113f32015-01-22 03:40:55 +000087{
Rich Salz7e1b7482015-04-24 15:26:15 -040088 static char buf[128];
Matt Caswell0f113f32015-01-22 03:40:55 +000089 static const char magic[] = "Salted__";
Richard Levittedd1abd42016-09-28 23:39:18 +020090 ENGINE *e = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -040091 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio =
92 NULL, *wbio = NULL;
93 EVP_CIPHER_CTX *ctx = NULL;
94 const EVP_CIPHER *cipher = NULL, *c;
95 const EVP_MD *dgst = NULL;
Rich Salz333b0702015-04-25 15:41:29 -040096 char *hkey = NULL, *hiv = NULL, *hsalt = NULL, *p;
Rich Salz7e1b7482015-04-24 15:26:15 -040097 char *infile = NULL, *outfile = NULL, *prog;
98 char *str = NULL, *passarg = NULL, *pass = NULL, *strbuf = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +000099 char mbuf[sizeof magic - 1];
Rich Salz7e1b7482015-04-24 15:26:15 -0400100 OPTION_CHOICE o;
101 int bsize = BSIZE, verbose = 0, debug = 0, olb64 = 0, nosalt = 0;
Richard Levitte5f62e042015-09-06 17:12:39 +0200102 int enc = 1, printkey = 0, i, k;
103 int base64 = 0, informat = FORMAT_BINARY, outformat = FORMAT_BINARY;
Rich Salz700b4a42015-12-14 15:24:27 -0500104 int ret = 1, inl, nopad = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000105 unsigned char key[EVP_MAX_KEY_LENGTH], iv[EVP_MAX_IV_LENGTH];
Rich Salz7e1b7482015-04-24 15:26:15 -0400106 unsigned char *buff = NULL, salt[PKCS5_SALT_LEN];
Rich Salzbd4850d2016-01-11 20:40:38 -0500107 long n;
Pauli2b305ab2017-03-09 09:42:25 +1000108 struct doall_enc_ciphers dec;
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000109#ifdef ZLIB
Matt Caswell0f113f32015-01-22 03:40:55 +0000110 int do_zlib = 0;
111 BIO *bzl = NULL;
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000112#endif
Dr. Stephen Henson3647bee2002-02-22 14:01:21 +0000113
Matt Caswell0f113f32015-01-22 03:40:55 +0000114 /* first check the program name */
Rich Salz7e1b7482015-04-24 15:26:15 -0400115 prog = opt_progname(argv[0]);
116 if (strcmp(prog, "base64") == 0)
Richard Levitte5f62e042015-09-06 17:12:39 +0200117 base64 = 1;
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000118#ifdef ZLIB
Rich Salz7e1b7482015-04-24 15:26:15 -0400119 else if (strcmp(prog, "zlib") == 0)
Matt Caswell0f113f32015-01-22 03:40:55 +0000120 do_zlib = 1;
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000121#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400122 else {
123 cipher = EVP_get_cipherbyname(prog);
124 if (cipher == NULL && strcmp(prog, "enc") != 0) {
125 BIO_printf(bio_err, "%s is not a known cipher\n", prog);
126 goto end;
127 }
Matt Caswell0f113f32015-01-22 03:40:55 +0000128 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000129
Rich Salz7e1b7482015-04-24 15:26:15 -0400130 prog = opt_init(argc, argv, enc_options);
131 while ((o = opt_next()) != OPT_EOF) {
132 switch (o) {
133 case OPT_EOF:
134 case OPT_ERR:
135 opthelp:
136 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
137 goto end;
138 case OPT_HELP:
139 opt_help(enc_options);
140 ret = 0;
Rich Salz3b5bea32016-06-24 16:38:08 -0400141 goto end;
142 case OPT_LIST:
Richard Levitte341de5f2017-02-23 00:11:18 +0100143 BIO_printf(bio_out, "Supported ciphers:\n");
Pauli2b305ab2017-03-09 09:42:25 +1000144 dec.bio = bio_out;
145 dec.n = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000146 OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH,
Pauli2b305ab2017-03-09 09:42:25 +1000147 show_ciphers, &dec);
Richard Levitte341de5f2017-02-23 00:11:18 +0100148 BIO_printf(bio_out, "\n");
149 ret = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000150 goto end;
Rich Salz7e1b7482015-04-24 15:26:15 -0400151 case OPT_E:
152 enc = 1;
153 break;
154 case OPT_IN:
155 infile = opt_arg();
156 break;
157 case OPT_OUT:
158 outfile = opt_arg();
159 break;
160 case OPT_PASS:
161 passarg = opt_arg();
162 break;
163 case OPT_ENGINE:
Richard Levittedd1abd42016-09-28 23:39:18 +0200164 e = setup_engine(opt_arg(), 0);
Rich Salz7e1b7482015-04-24 15:26:15 -0400165 break;
166 case OPT_D:
167 enc = 0;
168 break;
169 case OPT_P:
170 printkey = 1;
171 break;
172 case OPT_V:
173 verbose = 1;
174 break;
175 case OPT_NOPAD:
176 nopad = 1;
177 break;
178 case OPT_SALT:
179 nosalt = 0;
180 break;
181 case OPT_NOSALT:
182 nosalt = 1;
183 break;
184 case OPT_DEBUG:
185 debug = 1;
186 break;
187 case OPT_UPPER_P:
188 printkey = 2;
189 break;
190 case OPT_UPPER_A:
191 olb64 = 1;
192 break;
193 case OPT_A:
Richard Levitte5f62e042015-09-06 17:12:39 +0200194 base64 = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -0400195 break;
196 case OPT_Z:
197#ifdef ZLIB
198 do_zlib = 1;
199#endif
200 break;
201 case OPT_BUFSIZE:
202 p = opt_arg();
203 i = (int)strlen(p) - 1;
204 k = i >= 1 && p[i] == 'k';
205 if (k)
206 p[i] = '\0';
Rich Salzbd4850d2016-01-11 20:40:38 -0500207 if (!opt_long(opt_arg(), &n)
208 || n < 0 || (k && n >= LONG_MAX / 1024))
Rich Salz7e1b7482015-04-24 15:26:15 -0400209 goto opthelp;
210 if (k)
211 n *= 1024;
212 bsize = (int)n;
213 break;
214 case OPT_K:
215 str = opt_arg();
216 break;
217 case OPT_KFILE:
Richard Levittebdd58d92015-09-04 12:49:06 +0200218 in = bio_open_default(opt_arg(), 'r', FORMAT_TEXT);
Rich Salz7e1b7482015-04-24 15:26:15 -0400219 if (in == NULL)
220 goto opthelp;
221 i = BIO_gets(in, buf, sizeof buf);
222 BIO_free(in);
223 in = NULL;
224 if (i <= 0) {
225 BIO_printf(bio_err,
226 "%s Can't read key from %s\n", prog, opt_arg());
227 goto opthelp;
228 }
229 while (--i > 0 && (buf[i] == '\r' || buf[i] == '\n'))
230 buf[i] = '\0';
231 if (i <= 0) {
232 BIO_printf(bio_err, "%s: zero length password\n", prog);
233 goto opthelp;
234 }
235 str = buf;
236 break;
237 case OPT_UPPER_K:
238 hkey = opt_arg();
239 break;
240 case OPT_UPPER_S:
241 hsalt = opt_arg();
242 break;
243 case OPT_IV:
244 hiv = opt_arg();
245 break;
246 case OPT_MD:
247 if (!opt_md(opt_arg(), &dgst))
248 goto opthelp;
249 break;
Rich Salz7e1b7482015-04-24 15:26:15 -0400250 case OPT_CIPHER:
251 if (!opt_cipher(opt_unknown(), &c))
252 goto opthelp;
253 cipher = c;
254 break;
255 case OPT_NONE:
256 cipher = NULL;
257 break;
Matt Caswell0f113f32015-01-22 03:40:55 +0000258 }
Matt Caswell0f113f32015-01-22 03:40:55 +0000259 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000260
Matt Caswell0f113f32015-01-22 03:40:55 +0000261 if (cipher && EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400262 BIO_printf(bio_err, "%s: AEAD ciphers not supported\n", prog);
Matt Caswell0f113f32015-01-22 03:40:55 +0000263 goto end;
264 }
Dr. Stephen Hensonc3586512014-05-15 14:05:47 +0100265
Matt Caswell0f113f32015-01-22 03:40:55 +0000266 if (cipher && (EVP_CIPHER_mode(cipher) == EVP_CIPH_XTS_MODE)) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400267 BIO_printf(bio_err, "%s XTS ciphers not supported\n", prog);
Matt Caswell0f113f32015-01-22 03:40:55 +0000268 goto end;
269 }
Matt Caswell2097a172014-07-13 23:28:13 +0100270
Rich Salz7e1b7482015-04-24 15:26:15 -0400271 if (dgst == NULL)
Rich Salzf8547f62015-06-13 17:03:39 -0400272 dgst = EVP_sha256();
Richard Levitte14a948e2005-04-30 15:17:05 +0000273
Rich Salz7e1b7482015-04-24 15:26:15 -0400274 /* It must be large enough for a base64 encoded line */
Richard Levitte5f62e042015-09-06 17:12:39 +0200275 if (base64 && bsize < 80)
Rich Salz7e1b7482015-04-24 15:26:15 -0400276 bsize = 80;
277 if (verbose)
278 BIO_printf(bio_err, "bufsize=%d\n", bsize);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000279
Richard Levitte802d2242016-04-13 02:40:39 +0200280#ifdef ZLIB
281 if (!do_zlib)
282#endif
283 if (base64) {
284 if (enc)
285 outformat = FORMAT_BASE64;
286 else
287 informat = FORMAT_BASE64;
288 }
Richard Levitte5f62e042015-09-06 17:12:39 +0200289
Rich Salz68dc6822015-04-30 17:48:31 -0400290 strbuf = app_malloc(SIZE, "strbuf");
291 buff = app_malloc(EVP_ENCODE_LENGTH(bsize), "evp buffer");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000292
Rich Salz7e1b7482015-04-24 15:26:15 -0400293 if (infile == NULL) {
Richard Levitte5f62e042015-09-06 17:12:39 +0200294 in = dup_bio_in(informat);
Rich Salz7e1b7482015-04-24 15:26:15 -0400295 } else
Richard Levitte5f62e042015-09-06 17:12:39 +0200296 in = bio_open_default(infile, 'r', informat);
Rich Salz7e1b7482015-04-24 15:26:15 -0400297 if (in == NULL)
298 goto end;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000299
Matt Caswell0f113f32015-01-22 03:40:55 +0000300 if (!str && passarg) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400301 if (!app_passwd(passarg, NULL, &pass, NULL)) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000302 BIO_printf(bio_err, "Error getting password\n");
303 goto end;
304 }
305 str = pass;
306 }
Dr. Stephen Hensoncd3c54e2000-02-17 00:41:43 +0000307
Matt Caswell0f113f32015-01-22 03:40:55 +0000308 if ((str == NULL) && (cipher != NULL) && (hkey == NULL)) {
Richard Levitte923b1852016-03-21 18:08:57 +0100309 if (1) {
310#ifndef OPENSSL_NO_UI
311 for (;;) {
312 char prompt[200];
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000313
Richard Levitte923b1852016-03-21 18:08:57 +0100314 BIO_snprintf(prompt, sizeof prompt, "enter %s %s password:",
315 OBJ_nid2ln(EVP_CIPHER_nid(cipher)),
316 (enc) ? "encryption" : "decryption");
317 strbuf[0] = '\0';
318 i = EVP_read_pw_string((char *)strbuf, SIZE, prompt, enc);
319 if (i == 0) {
320 if (strbuf[0] == '\0') {
321 ret = 1;
322 goto end;
323 }
324 str = strbuf;
325 break;
326 }
327 if (i < 0) {
328 BIO_printf(bio_err, "bad password read\n");
Matt Caswell0f113f32015-01-22 03:40:55 +0000329 goto end;
330 }
Matt Caswell0f113f32015-01-22 03:40:55 +0000331 }
Richard Levitte923b1852016-03-21 18:08:57 +0100332 } else {
333#endif
334 BIO_printf(bio_err, "password required\n");
335 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +0000336 }
337 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000338
Richard Levitte5f62e042015-09-06 17:12:39 +0200339 out = bio_open_default(outfile, 'w', outformat);
Rich Salz7e1b7482015-04-24 15:26:15 -0400340 if (out == NULL)
341 goto end;
Dr. Stephen Hensonfd699ac1999-11-16 02:49:25 +0000342
Richard Levitte7a82f772016-04-13 02:43:45 +0200343 if (debug) {
344 BIO_set_callback(in, BIO_debug_callback);
345 BIO_set_callback(out, BIO_debug_callback);
346 BIO_set_callback_arg(in, (char *)bio_err);
347 BIO_set_callback_arg(out, (char *)bio_err);
348 }
349
Matt Caswell0f113f32015-01-22 03:40:55 +0000350 rbio = in;
351 wbio = out;
Dr. Stephen Hensonfd699ac1999-11-16 02:49:25 +0000352
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000353#ifdef ZLIB
Matt Caswell0f113f32015-01-22 03:40:55 +0000354 if (do_zlib) {
355 if ((bzl = BIO_new(BIO_f_zlib())) == NULL)
356 goto end;
Richard Levitte7a82f772016-04-13 02:43:45 +0200357 if (debug) {
358 BIO_set_callback(bzl, BIO_debug_callback);
359 BIO_set_callback_arg(bzl, (char *)bio_err);
360 }
Matt Caswell0f113f32015-01-22 03:40:55 +0000361 if (enc)
362 wbio = BIO_push(bzl, wbio);
363 else
364 rbio = BIO_push(bzl, rbio);
365 }
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000366#endif
367
Richard Levitte5f62e042015-09-06 17:12:39 +0200368 if (base64) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000369 if ((b64 = BIO_new(BIO_f_base64())) == NULL)
370 goto end;
371 if (debug) {
372 BIO_set_callback(b64, BIO_debug_callback);
373 BIO_set_callback_arg(b64, (char *)bio_err);
374 }
375 if (olb64)
376 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
377 if (enc)
378 wbio = BIO_push(b64, wbio);
379 else
380 rbio = BIO_push(b64, rbio);
381 }
Dr. Stephen Hensonfd699ac1999-11-16 02:49:25 +0000382
Matt Caswell0f113f32015-01-22 03:40:55 +0000383 if (cipher != NULL) {
384 /*
385 * Note that str is NULL if a key was passed on the command line, so
386 * we get no salt in that case. Is this a bug?
387 */
388 if (str != NULL) {
389 /*
390 * Salt handling: if encrypting generate a salt and write to
391 * output BIO. If decrypting read salt from input BIO.
392 */
393 unsigned char *sptr;
FdaSilvaYYf6c460e2016-05-09 18:42:58 +0200394 size_t str_len = strlen(str);
395
Matt Caswell0f113f32015-01-22 03:40:55 +0000396 if (nosalt)
397 sptr = NULL;
398 else {
399 if (enc) {
400 if (hsalt) {
401 if (!set_hex(hsalt, salt, sizeof salt)) {
402 BIO_printf(bio_err, "invalid hex salt value\n");
403 goto end;
404 }
Matt Caswell266483d2015-02-26 11:57:37 +0000405 } else if (RAND_bytes(salt, sizeof salt) <= 0)
Matt Caswell0f113f32015-01-22 03:40:55 +0000406 goto end;
407 /*
408 * If -P option then don't bother writing
409 */
410 if ((printkey != 2)
411 && (BIO_write(wbio, magic,
412 sizeof magic - 1) != sizeof magic - 1
413 || BIO_write(wbio,
414 (char *)salt,
415 sizeof salt) != sizeof salt)) {
416 BIO_printf(bio_err, "error writing output file\n");
417 goto end;
418 }
419 } else if (BIO_read(rbio, mbuf, sizeof mbuf) != sizeof mbuf
420 || BIO_read(rbio,
421 (unsigned char *)salt,
422 sizeof salt) != sizeof salt) {
423 BIO_printf(bio_err, "error reading input file\n");
424 goto end;
425 } else if (memcmp(mbuf, magic, sizeof magic - 1)) {
426 BIO_printf(bio_err, "bad magic number\n");
427 goto end;
428 }
Ben Lauriefea9afb1999-11-30 20:15:19 +0000429
Matt Caswell0f113f32015-01-22 03:40:55 +0000430 sptr = salt;
431 }
Dr. Stephen Hensonfd699ac1999-11-16 02:49:25 +0000432
Matt Caswell0f113f32015-01-22 03:40:55 +0000433 if (!EVP_BytesToKey(cipher, dgst, sptr,
434 (unsigned char *)str,
FdaSilvaYYf6c460e2016-05-09 18:42:58 +0200435 str_len, 1, key, iv)) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000436 BIO_printf(bio_err, "EVP_BytesToKey failed\n");
437 goto end;
438 }
439 /*
440 * zero the complete buffer or the string passed from the command
441 * line bug picked up by Larry J. Hughes Jr. <hughes@indiana.edu>
442 */
443 if (str == strbuf)
444 OPENSSL_cleanse(str, SIZE);
445 else
FdaSilvaYYf6c460e2016-05-09 18:42:58 +0200446 OPENSSL_cleanse(str, str_len);
Matt Caswell0f113f32015-01-22 03:40:55 +0000447 }
Richard Levitte8920a7c2015-05-04 17:34:40 +0200448 if (hiv != NULL) {
449 int siz = EVP_CIPHER_iv_length(cipher);
450 if (siz == 0) {
451 BIO_printf(bio_err, "warning: iv not use by this cipher\n");
452 } else if (!set_hex(hiv, iv, sizeof iv)) {
453 BIO_printf(bio_err, "invalid hex iv value\n");
454 goto end;
455 }
Matt Caswell0f113f32015-01-22 03:40:55 +0000456 }
457 if ((hiv == NULL) && (str == NULL)
458 && EVP_CIPHER_iv_length(cipher) != 0) {
459 /*
460 * No IV was explicitly set and no IV was generated during
461 * EVP_BytesToKey. Hence the IV is undefined, making correct
462 * decryption impossible.
463 */
464 BIO_printf(bio_err, "iv undefined\n");
465 goto end;
466 }
Richard Levitte8920a7c2015-05-04 17:34:40 +0200467 if ((hkey != NULL) && !set_hex(hkey, key, EVP_CIPHER_key_length(cipher))) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000468 BIO_printf(bio_err, "invalid hex key value\n");
469 goto end;
470 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000471
Matt Caswell0f113f32015-01-22 03:40:55 +0000472 if ((benc = BIO_new(BIO_f_cipher())) == NULL)
473 goto end;
Richard Levitte14a948e2005-04-30 15:17:05 +0000474
Matt Caswell0f113f32015-01-22 03:40:55 +0000475 /*
476 * Since we may be changing parameters work on the encryption context
477 * rather than calling BIO_set_cipher().
478 */
Richard Levitte14a948e2005-04-30 15:17:05 +0000479
Matt Caswell0f113f32015-01-22 03:40:55 +0000480 BIO_get_cipher_ctx(benc, &ctx);
Dr. Stephen Henson7951c262012-02-10 16:47:40 +0000481
Matt Caswell0f113f32015-01-22 03:40:55 +0000482 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc)) {
483 BIO_printf(bio_err, "Error setting cipher %s\n",
484 EVP_CIPHER_name(cipher));
485 ERR_print_errors(bio_err);
486 goto end;
487 }
Richard Levitte14a948e2005-04-30 15:17:05 +0000488
Matt Caswell0f113f32015-01-22 03:40:55 +0000489 if (nopad)
490 EVP_CIPHER_CTX_set_padding(ctx, 0);
Richard Levitte14a948e2005-04-30 15:17:05 +0000491
Matt Caswell0f113f32015-01-22 03:40:55 +0000492 if (!EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, enc)) {
493 BIO_printf(bio_err, "Error setting cipher %s\n",
494 EVP_CIPHER_name(cipher));
495 ERR_print_errors(bio_err);
496 goto end;
497 }
Richard Levitte14a948e2005-04-30 15:17:05 +0000498
Matt Caswell0f113f32015-01-22 03:40:55 +0000499 if (debug) {
500 BIO_set_callback(benc, BIO_debug_callback);
501 BIO_set_callback_arg(benc, (char *)bio_err);
502 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000503
Matt Caswell0f113f32015-01-22 03:40:55 +0000504 if (printkey) {
505 if (!nosalt) {
506 printf("salt=");
507 for (i = 0; i < (int)sizeof(salt); i++)
508 printf("%02X", salt[i]);
509 printf("\n");
510 }
Richard Levitte6c2ff562015-12-18 17:08:49 +0100511 if (EVP_CIPHER_key_length(cipher) > 0) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000512 printf("key=");
Richard Levitte6c2ff562015-12-18 17:08:49 +0100513 for (i = 0; i < EVP_CIPHER_key_length(cipher); i++)
Matt Caswell0f113f32015-01-22 03:40:55 +0000514 printf("%02X", key[i]);
515 printf("\n");
516 }
Richard Levitte6c2ff562015-12-18 17:08:49 +0100517 if (EVP_CIPHER_iv_length(cipher) > 0) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000518 printf("iv =");
Richard Levitte6c2ff562015-12-18 17:08:49 +0100519 for (i = 0; i < EVP_CIPHER_iv_length(cipher); i++)
Matt Caswell0f113f32015-01-22 03:40:55 +0000520 printf("%02X", iv[i]);
521 printf("\n");
522 }
523 if (printkey == 2) {
524 ret = 0;
525 goto end;
526 }
527 }
528 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000529
Matt Caswell0f113f32015-01-22 03:40:55 +0000530 /* Only encrypt/decrypt as we write the file */
531 if (benc != NULL)
532 wbio = BIO_push(benc, wbio);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000533
Matt Caswell0f113f32015-01-22 03:40:55 +0000534 for (;;) {
535 inl = BIO_read(rbio, (char *)buff, bsize);
536 if (inl <= 0)
537 break;
538 if (BIO_write(wbio, (char *)buff, inl) != inl) {
539 BIO_printf(bio_err, "error writing output file\n");
540 goto end;
541 }
542 }
543 if (!BIO_flush(wbio)) {
544 BIO_printf(bio_err, "bad decrypt\n");
545 goto end;
546 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000547
Matt Caswell0f113f32015-01-22 03:40:55 +0000548 ret = 0;
549 if (verbose) {
Andy Polyakov7d672982017-03-29 23:23:56 +0200550 BIO_printf(bio_err, "bytes read :%8ju\n", BIO_number_read(in));
551 BIO_printf(bio_err, "bytes written:%8ju\n", BIO_number_written(out));
Matt Caswell0f113f32015-01-22 03:40:55 +0000552 }
553 end:
554 ERR_print_errors(bio_err);
Rich Salzb548a1f2015-05-01 10:02:07 -0400555 OPENSSL_free(strbuf);
556 OPENSSL_free(buff);
Rich Salzca3a82c2015-03-25 11:31:18 -0400557 BIO_free(in);
558 BIO_free_all(out);
559 BIO_free(benc);
560 BIO_free(b64);
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000561#ifdef ZLIB
Rich Salzca3a82c2015-03-25 11:31:18 -0400562 BIO_free(bzl);
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000563#endif
Richard Levittedd1abd42016-09-28 23:39:18 +0200564 release_engine(e);
Rich Salzb548a1f2015-05-01 10:02:07 -0400565 OPENSSL_free(pass);
Rich Salz7e1b7482015-04-24 15:26:15 -0400566 return (ret);
Matt Caswell0f113f32015-01-22 03:40:55 +0000567}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000568
Pauli2b305ab2017-03-09 09:42:25 +1000569static void show_ciphers(const OBJ_NAME *name, void *arg)
Rich Salz7e1b7482015-04-24 15:26:15 -0400570{
Pauli2b305ab2017-03-09 09:42:25 +1000571 struct doall_enc_ciphers *dec = (struct doall_enc_ciphers *)arg;
Pauli777f1702017-03-08 11:18:55 +1000572 const EVP_CIPHER *cipher;
Rich Salz7e1b7482015-04-24 15:26:15 -0400573
574 if (!islower((unsigned char)*name->name))
575 return;
576
Pauli777f1702017-03-08 11:18:55 +1000577 /* Filter out ciphers that we cannot use */
578 cipher = EVP_get_cipherbyname(name->name);
579 if (cipher == NULL ||
580 (EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) != 0 ||
581 EVP_CIPHER_mode(cipher) == EVP_CIPH_XTS_MODE)
582 return;
583
Pauli2b305ab2017-03-09 09:42:25 +1000584 BIO_printf(dec->bio, "-%-25s", name->name);
585 if (++dec->n == 3) {
586 BIO_printf(dec->bio, "\n");
587 dec->n = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400588 } else
Pauli2b305ab2017-03-09 09:42:25 +1000589 BIO_printf(dec->bio, " ");
Rich Salz7e1b7482015-04-24 15:26:15 -0400590}
591
592static int set_hex(char *in, unsigned char *out, int size)
Matt Caswell0f113f32015-01-22 03:40:55 +0000593{
594 int i, n;
595 unsigned char j;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000596
Matt Caswell0f113f32015-01-22 03:40:55 +0000597 n = strlen(in);
598 if (n > (size * 2)) {
599 BIO_printf(bio_err, "hex string is too long\n");
600 return (0);
601 }
602 memset(out, 0, size);
603 for (i = 0; i < n; i++) {
604 j = (unsigned char)*in;
605 *(in++) = '\0';
606 if (j == 0)
607 break;
Rich Salz2fa45e62015-04-29 14:15:50 -0400608 if (!isxdigit(j)) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000609 BIO_printf(bio_err, "non-hex digit\n");
610 return (0);
611 }
Rich Salz14f051a2016-04-13 15:58:28 -0400612 j = (unsigned char)OPENSSL_hexchar2int(j);
Matt Caswell0f113f32015-01-22 03:40:55 +0000613 if (i & 1)
614 out[i / 2] |= j;
615 else
616 out[i / 2] = (j << 4);
617 }
618 return (1);
619}