blob: a8026a33535b26212aaafa20bfc19ea6b26b3f4c [file] [log] [blame]
Paul Bakker20a78082011-01-21 09:32:12 +00001/*
2 * \brief Generic file encryption program using generic wrappers for configured
3 * security.
4 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02005 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02006 * SPDX-License-Identifier: Apache-2.0
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License"); you may
9 * not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
Paul Bakker20a78082011-01-21 09:32:12 +000019 */
20
Nicholas Wilson2682edf2017-12-05 12:08:15 +000021/* Enable definition of fileno() even when compiling with -std=c99. Must be
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +020022 * set before mbedtls_config.h, which pulls in glibc's features.h indirectly.
Nicholas Wilson2682edf2017-12-05 12:08:15 +000023 * Harmless on other platforms. */
nia1c0c8372020-06-11 12:03:45 +010024#define _POSIX_C_SOURCE 200112L
Nicholas Wilson2682edf2017-12-05 12:08:15 +000025
Bence Szépkútic662b362021-05-27 11:25:03 +020026#include "mbedtls/build_info.h"
Paul Bakker20a78082011-01-21 09:32:12 +000027
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000029#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000030#else
Rich Evans18b78c72015-02-11 14:06:19 +000031#include <stdio.h>
Andres Amaya Garcia4c47df62018-04-29 19:11:26 +010032#include <stdlib.h>
33#define mbedtls_fprintf fprintf
34#define mbedtls_printf printf
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010035#define mbedtls_exit exit
Andres Amaya Garcia7d429652018-04-30 22:42:33 +010036#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
Andres Amaya Garcia4c47df62018-04-29 19:11:26 +010037#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
38#endif /* MBEDTLS_PLATFORM_C */
Rich Evans18b78c72015-02-11 14:06:19 +000039
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020040#if defined(MBEDTLS_CIPHER_C) && defined(MBEDTLS_MD_C) && \
41 defined(MBEDTLS_FS_IO)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000042#include "mbedtls/cipher.h"
43#include "mbedtls/md.h"
Hanno Becker0b44d5c2018-10-12 16:46:37 +010044#include "mbedtls/platform_util.h"
Rich Evans18b78c72015-02-11 14:06:19 +000045
46#include <stdio.h>
47#include <stdlib.h>
48#include <string.h>
Rich Evansf90016a2015-01-19 14:26:37 +000049#endif
50
Paul Bakker494c0b82011-04-24 15:30:07 +000051#if defined(_WIN32)
Paul Bakker20a78082011-01-21 09:32:12 +000052#include <windows.h>
Paul Bakkercce9d772011-11-18 14:26:47 +000053#if !defined(_WIN32_WCE)
Paul Bakker20a78082011-01-21 09:32:12 +000054#include <io.h>
Paul Bakkercce9d772011-11-18 14:26:47 +000055#endif
Paul Bakker20a78082011-01-21 09:32:12 +000056#else
57#include <sys/types.h>
58#include <unistd.h>
59#endif
60
Paul Bakker20a78082011-01-21 09:32:12 +000061#define MODE_ENCRYPT 0
62#define MODE_DECRYPT 1
63
64#define USAGE \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020065 "\n crypt_and_hash <mode> <input filename> <output filename> <cipher> <mbedtls_md> <key>\n" \
Paul Bakker20a78082011-01-21 09:32:12 +000066 "\n <mode>: 0 = encrypt, 1 = decrypt\n" \
67 "\n example: crypt_and_hash 0 file file.aes AES-128-CBC SHA1 hex:E76B2413958B00E193\n" \
68 "\n"
69
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020070#if !defined(MBEDTLS_CIPHER_C) || !defined(MBEDTLS_MD_C) || \
71 !defined(MBEDTLS_FS_IO)
Rich Evans85b05ec2015-02-12 11:37:29 +000072int main( void )
Paul Bakker5690efc2011-05-26 13:16:06 +000073{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020074 mbedtls_printf("MBEDTLS_CIPHER_C and/or MBEDTLS_MD_C and/or MBEDTLS_FS_IO not defined.\n");
Krzysztof Stachowiak5e1b1952019-04-24 14:24:46 +020075 mbedtls_exit( 0 );
Paul Bakker5690efc2011-05-26 13:16:06 +000076}
77#else
Simon Butcher63cb97e2018-12-06 17:43:31 +000078
Simon Butcher63cb97e2018-12-06 17:43:31 +000079
Paul Bakker20a78082011-01-21 09:32:12 +000080int main( int argc, char *argv[] )
81{
Gilles Peskinea5fc9392020-04-14 19:34:19 +020082 int ret = 1, i;
83 unsigned n;
Andres Amaya Garcia4c47df62018-04-29 19:11:26 +010084 int exit_code = MBEDTLS_EXIT_FAILURE;
Paul Bakker243f48e2016-09-02 22:44:09 +020085 int mode;
Paul Bakker25b5fe52011-05-26 14:02:58 +000086 size_t keylen, ilen, olen;
Paul Bakker20a78082011-01-21 09:32:12 +000087 FILE *fkey, *fin = NULL, *fout = NULL;
88
89 char *p;
90 unsigned char IV[16];
91 unsigned char key[512];
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020092 unsigned char digest[MBEDTLS_MD_MAX_SIZE];
Paul Bakker20a78082011-01-21 09:32:12 +000093 unsigned char buffer[1024];
94 unsigned char output[1024];
Paul Bakker424cd692013-10-31 14:22:08 +010095 unsigned char diff;
Paul Bakker20a78082011-01-21 09:32:12 +000096
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020097 const mbedtls_cipher_info_t *cipher_info;
98 const mbedtls_md_info_t *md_info;
99 mbedtls_cipher_context_t cipher_ctx;
100 mbedtls_md_context_t md_ctx;
Paul Bakkercce9d772011-11-18 14:26:47 +0000101#if defined(_WIN32_WCE)
102 long filesize, offset;
103#elif defined(_WIN32)
Paul Bakker20a78082011-01-21 09:32:12 +0000104 LARGE_INTEGER li_size;
105 __int64 filesize, offset;
106#else
107 off_t filesize, offset;
108#endif
109
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200110 mbedtls_cipher_init( &cipher_ctx );
111 mbedtls_md_init( &md_ctx );
Paul Bakker20a78082011-01-21 09:32:12 +0000112
113 /*
114 * Parse the command-line arguments.
115 */
116 if( argc != 7 )
117 {
118 const int *list;
119
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200120 mbedtls_printf( USAGE );
Paul Bakker20a78082011-01-21 09:32:12 +0000121
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200122 mbedtls_printf( "Available ciphers:\n" );
123 list = mbedtls_cipher_list();
Paul Bakker20a78082011-01-21 09:32:12 +0000124 while( *list )
125 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200126 cipher_info = mbedtls_cipher_info_from_type( *list );
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200127 mbedtls_printf( " %s\n", cipher_info->MBEDTLS_PRIVATE(name) );
Paul Bakker20a78082011-01-21 09:32:12 +0000128 list++;
129 }
130
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200131 mbedtls_printf( "\nAvailable message digests:\n" );
132 list = mbedtls_md_list();
Paul Bakker20a78082011-01-21 09:32:12 +0000133 while( *list )
134 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200135 md_info = mbedtls_md_info_from_type( *list );
136 mbedtls_printf( " %s\n", mbedtls_md_get_name( md_info ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000137 list++;
138 }
139
Paul Bakkercce9d772011-11-18 14:26:47 +0000140#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200141 mbedtls_printf( "\n Press Enter to exit this program.\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000142 fflush( stdout ); getchar();
143#endif
144
145 goto exit;
146 }
147
148 mode = atoi( argv[1] );
149
150 if( mode != MODE_ENCRYPT && mode != MODE_DECRYPT )
151 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200152 mbedtls_fprintf( stderr, "invalid operation mode\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000153 goto exit;
154 }
155
156 if( strcmp( argv[2], argv[3] ) == 0 )
157 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200158 mbedtls_fprintf( stderr, "input and output filenames must differ\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000159 goto exit;
160 }
161
162 if( ( fin = fopen( argv[2], "rb" ) ) == NULL )
163 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200164 mbedtls_fprintf( stderr, "fopen(%s,rb) failed\n", argv[2] );
Paul Bakker20a78082011-01-21 09:32:12 +0000165 goto exit;
166 }
167
168 if( ( fout = fopen( argv[3], "wb+" ) ) == NULL )
169 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200170 mbedtls_fprintf( stderr, "fopen(%s,wb+) failed\n", argv[3] );
Paul Bakker20a78082011-01-21 09:32:12 +0000171 goto exit;
172 }
173
174 /*
175 * Read the Cipher and MD from the command line
176 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200177 cipher_info = mbedtls_cipher_info_from_string( argv[4] );
Paul Bakker20a78082011-01-21 09:32:12 +0000178 if( cipher_info == NULL )
179 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200180 mbedtls_fprintf( stderr, "Cipher '%s' not found\n", argv[4] );
Paul Bakker20a78082011-01-21 09:32:12 +0000181 goto exit;
182 }
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +0200183 if( ( ret = mbedtls_cipher_setup( &cipher_ctx, cipher_info) ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200184 {
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +0200185 mbedtls_fprintf( stderr, "mbedtls_cipher_setup failed\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200186 goto exit;
187 }
Paul Bakker20a78082011-01-21 09:32:12 +0000188
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200189 md_info = mbedtls_md_info_from_string( argv[5] );
Paul Bakker20a78082011-01-21 09:32:12 +0000190 if( md_info == NULL )
191 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200192 mbedtls_fprintf( stderr, "Message Digest '%s' not found\n", argv[5] );
Paul Bakker20a78082011-01-21 09:32:12 +0000193 goto exit;
194 }
Janos Follath8eb64132016-06-03 15:40:57 +0100195
196 if( mbedtls_md_setup( &md_ctx, md_info, 1 ) != 0 )
197 {
Janos Follath352dbe22016-06-07 10:29:05 +0100198 mbedtls_fprintf( stderr, "mbedtls_md_setup failed\n" );
Janos Follath8eb64132016-06-03 15:40:57 +0100199 goto exit;
200 }
Paul Bakker20a78082011-01-21 09:32:12 +0000201
202 /*
Hanno Becker840bace2017-06-27 11:36:21 +0100203 * Read the secret key from file or command line
Paul Bakker20a78082011-01-21 09:32:12 +0000204 */
205 if( ( fkey = fopen( argv[6], "rb" ) ) != NULL )
206 {
207 keylen = fread( key, 1, sizeof( key ), fkey );
208 fclose( fkey );
209 }
210 else
211 {
212 if( memcmp( argv[6], "hex:", 4 ) == 0 )
213 {
214 p = &argv[6][4];
215 keylen = 0;
216
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200217 while( sscanf( p, "%02X", (unsigned int*) &n ) > 0 &&
Paul Bakker20a78082011-01-21 09:32:12 +0000218 keylen < (int) sizeof( key ) )
219 {
220 key[keylen++] = (unsigned char) n;
221 p += 2;
222 }
223 }
224 else
225 {
226 keylen = strlen( argv[6] );
227
228 if( keylen > (int) sizeof( key ) )
229 keylen = (int) sizeof( key );
230
231 memcpy( key, argv[6], keylen );
232 }
233 }
234
Paul Bakkercce9d772011-11-18 14:26:47 +0000235#if defined(_WIN32_WCE)
236 filesize = fseek( fin, 0L, SEEK_END );
237#else
238#if defined(_WIN32)
Paul Bakker20a78082011-01-21 09:32:12 +0000239 /*
240 * Support large files (> 2Gb) on Win32
241 */
242 li_size.QuadPart = 0;
243 li_size.LowPart =
244 SetFilePointer( (HANDLE) _get_osfhandle( _fileno( fin ) ),
245 li_size.LowPart, &li_size.HighPart, FILE_END );
246
247 if( li_size.LowPart == 0xFFFFFFFF && GetLastError() != NO_ERROR )
248 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200249 mbedtls_fprintf( stderr, "SetFilePointer(0,FILE_END) failed\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000250 goto exit;
251 }
252
253 filesize = li_size.QuadPart;
254#else
255 if( ( filesize = lseek( fileno( fin ), 0, SEEK_END ) ) < 0 )
256 {
257 perror( "lseek" );
258 goto exit;
259 }
260#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000261#endif
Paul Bakker20a78082011-01-21 09:32:12 +0000262
263 if( fseek( fin, 0, SEEK_SET ) < 0 )
264 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200265 mbedtls_fprintf( stderr, "fseek(0,SEEK_SET) failed\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000266 goto exit;
267 }
268
269 if( mode == MODE_ENCRYPT )
270 {
271 /*
272 * Generate the initialization vector as:
Paul Bakker243f48e2016-09-02 22:44:09 +0200273 * IV = MD( filesize || filename )[0..15]
Paul Bakker20a78082011-01-21 09:32:12 +0000274 */
275 for( i = 0; i < 8; i++ )
276 buffer[i] = (unsigned char)( filesize >> ( i << 3 ) );
277
278 p = argv[2];
279
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200280 mbedtls_md_starts( &md_ctx );
281 mbedtls_md_update( &md_ctx, buffer, 8 );
282 mbedtls_md_update( &md_ctx, (unsigned char *) p, strlen( p ) );
283 mbedtls_md_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000284
285 memcpy( IV, digest, 16 );
286
287 /*
Paul Bakker20a78082011-01-21 09:32:12 +0000288 * Append the IV at the beginning of the output.
289 */
290 if( fwrite( IV, 1, 16, fout ) != 16 )
291 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200292 mbedtls_fprintf( stderr, "fwrite(%d bytes) failed\n", 16 );
Paul Bakker20a78082011-01-21 09:32:12 +0000293 goto exit;
294 }
295
296 /*
297 * Hash the IV and the secret key together 8192 times
298 * using the result to setup the AES context and HMAC.
299 */
300 memset( digest, 0, 32 );
301 memcpy( digest, IV, 16 );
302
303 for( i = 0; i < 8192; i++ )
304 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200305 mbedtls_md_starts( &md_ctx );
306 mbedtls_md_update( &md_ctx, digest, 32 );
307 mbedtls_md_update( &md_ctx, key, keylen );
308 mbedtls_md_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000309
310 }
311
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200312 if( mbedtls_cipher_setkey( &cipher_ctx, digest, cipher_info->MBEDTLS_PRIVATE(key_bitlen),
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200313 MBEDTLS_ENCRYPT ) != 0 )
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000314 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200315 mbedtls_fprintf( stderr, "mbedtls_cipher_setkey() returned error\n");
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000316 goto exit;
317 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200318 if( mbedtls_cipher_set_iv( &cipher_ctx, IV, 16 ) != 0 )
Manuel Pégourié-Gonnard9c853b92013-09-03 13:04:44 +0200319 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200320 mbedtls_fprintf( stderr, "mbedtls_cipher_set_iv() returned error\n");
Manuel Pégourié-Gonnard9c853b92013-09-03 13:04:44 +0200321 goto exit;
322 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200323 if( mbedtls_cipher_reset( &cipher_ctx ) != 0 )
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000324 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200325 mbedtls_fprintf( stderr, "mbedtls_cipher_reset() returned error\n");
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000326 goto exit;
327 }
Paul Bakker20a78082011-01-21 09:32:12 +0000328
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200329 mbedtls_md_hmac_starts( &md_ctx, digest, 32 );
Paul Bakker20a78082011-01-21 09:32:12 +0000330
331 /*
332 * Encrypt and write the ciphertext.
333 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200334 for( offset = 0; offset < filesize; offset += mbedtls_cipher_get_block_size( &cipher_ctx ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000335 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200336 ilen = ( (unsigned int) filesize - offset > mbedtls_cipher_get_block_size( &cipher_ctx ) ) ?
337 mbedtls_cipher_get_block_size( &cipher_ctx ) : (unsigned int) ( filesize - offset );
Paul Bakker20a78082011-01-21 09:32:12 +0000338
Paul Bakker25b5fe52011-05-26 14:02:58 +0000339 if( fread( buffer, 1, ilen, fin ) != ilen )
Paul Bakker20a78082011-01-21 09:32:12 +0000340 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200341 mbedtls_fprintf( stderr, "fread(%ld bytes) failed\n", (long) ilen );
Paul Bakker20a78082011-01-21 09:32:12 +0000342 goto exit;
343 }
344
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200345 if( mbedtls_cipher_update( &cipher_ctx, buffer, ilen, output, &olen ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200346 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200347 mbedtls_fprintf( stderr, "mbedtls_cipher_update() returned error\n");
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200348 goto exit;
349 }
350
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200351 mbedtls_md_hmac_update( &md_ctx, output, olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000352
Paul Bakker2c0994e2011-05-25 13:51:57 +0000353 if( fwrite( output, 1, olen, fout ) != olen )
Paul Bakker20a78082011-01-21 09:32:12 +0000354 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200355 mbedtls_fprintf( stderr, "fwrite(%ld bytes) failed\n", (long) olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000356 goto exit;
357 }
358 }
359
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200360 if( mbedtls_cipher_finish( &cipher_ctx, output, &olen ) != 0 )
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000361 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200362 mbedtls_fprintf( stderr, "mbedtls_cipher_finish() returned error\n" );
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000363 goto exit;
364 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200365 mbedtls_md_hmac_update( &md_ctx, output, olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000366
Paul Bakker2c0994e2011-05-25 13:51:57 +0000367 if( fwrite( output, 1, olen, fout ) != olen )
Paul Bakker20a78082011-01-21 09:32:12 +0000368 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200369 mbedtls_fprintf( stderr, "fwrite(%ld bytes) failed\n", (long) olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000370 goto exit;
371 }
Paul Bakker26c4e3c2012-07-04 17:08:33 +0000372
Paul Bakker20a78082011-01-21 09:32:12 +0000373 /*
374 * Finally write the HMAC.
375 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200376 mbedtls_md_hmac_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000377
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200378 if( fwrite( digest, 1, mbedtls_md_get_size( md_info ), fout ) != mbedtls_md_get_size( md_info ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000379 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200380 mbedtls_fprintf( stderr, "fwrite(%d bytes) failed\n", mbedtls_md_get_size( md_info ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000381 goto exit;
382 }
383 }
384
385 if( mode == MODE_DECRYPT )
386 {
387 /*
388 * The encrypted file must be structured as follows:
389 *
390 * 00 .. 15 Initialization Vector
Paul Bakker243f48e2016-09-02 22:44:09 +0200391 * 16 .. 31 Encrypted Block #1
Paul Bakker20a78082011-01-21 09:32:12 +0000392 * ..
Paul Bakker243f48e2016-09-02 22:44:09 +0200393 * N*16 .. (N+1)*16 - 1 Encrypted Block #N
394 * (N+1)*16 .. (N+1)*16 + n Hash(ciphertext)
Paul Bakker20a78082011-01-21 09:32:12 +0000395 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200396 if( filesize < 16 + mbedtls_md_get_size( md_info ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000397 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200398 mbedtls_fprintf( stderr, "File too short to be encrypted.\n" );
Paul Bakker20a78082011-01-21 09:32:12 +0000399 goto exit;
400 }
401
Janos Follath8eb64132016-06-03 15:40:57 +0100402 if( mbedtls_cipher_get_block_size( &cipher_ctx ) == 0 )
403 {
Janos Follath352dbe22016-06-07 10:29:05 +0100404 mbedtls_fprintf( stderr, "Invalid cipher block size: 0. \n" );
Janos Follath8eb64132016-06-03 15:40:57 +0100405 goto exit;
406 }
407
408 /*
409 * Check the file size.
410 */
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200411 if( cipher_info->MBEDTLS_PRIVATE(mode) != MBEDTLS_MODE_GCM &&
Paul Bakker243f48e2016-09-02 22:44:09 +0200412 ( ( filesize - mbedtls_md_get_size( md_info ) ) %
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200413 mbedtls_cipher_get_block_size( &cipher_ctx ) ) != 0 )
Paul Bakker20a78082011-01-21 09:32:12 +0000414 {
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200415 mbedtls_fprintf( stderr, "File content not a multiple of the block size (%u).\n",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200416 mbedtls_cipher_get_block_size( &cipher_ctx ));
Paul Bakker20a78082011-01-21 09:32:12 +0000417 goto exit;
418 }
419
420 /*
Paul Bakker60b1d102013-10-29 10:02:51 +0100421 * Subtract the IV + HMAC length.
Paul Bakker20a78082011-01-21 09:32:12 +0000422 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200423 filesize -= ( 16 + mbedtls_md_get_size( md_info ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000424
425 /*
426 * Read the IV and original filesize modulo 16.
427 */
428 if( fread( buffer, 1, 16, fin ) != 16 )
429 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200430 mbedtls_fprintf( stderr, "fread(%d bytes) failed\n", 16 );
Paul Bakker20a78082011-01-21 09:32:12 +0000431 goto exit;
432 }
433
434 memcpy( IV, buffer, 16 );
Paul Bakker20a78082011-01-21 09:32:12 +0000435
436 /*
437 * Hash the IV and the secret key together 8192 times
438 * using the result to setup the AES context and HMAC.
439 */
440 memset( digest, 0, 32 );
441 memcpy( digest, IV, 16 );
442
443 for( i = 0; i < 8192; i++ )
444 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200445 mbedtls_md_starts( &md_ctx );
446 mbedtls_md_update( &md_ctx, digest, 32 );
447 mbedtls_md_update( &md_ctx, key, keylen );
448 mbedtls_md_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000449 }
450
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200451 if( mbedtls_cipher_setkey( &cipher_ctx, digest, cipher_info->MBEDTLS_PRIVATE(key_bitlen),
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200452 MBEDTLS_DECRYPT ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200453 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200454 mbedtls_fprintf( stderr, "mbedtls_cipher_setkey() returned error\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200455 goto exit;
456 }
457
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200458 if( mbedtls_cipher_set_iv( &cipher_ctx, IV, 16 ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200459 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200460 mbedtls_fprintf( stderr, "mbedtls_cipher_set_iv() returned error\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200461 goto exit;
462 }
463
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200464 if( mbedtls_cipher_reset( &cipher_ctx ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200465 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200466 mbedtls_fprintf( stderr, "mbedtls_cipher_reset() returned error\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200467 goto exit;
468 }
Paul Bakker20a78082011-01-21 09:32:12 +0000469
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200470 mbedtls_md_hmac_starts( &md_ctx, digest, 32 );
Paul Bakker20a78082011-01-21 09:32:12 +0000471
472 /*
473 * Decrypt and write the plaintext.
474 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200475 for( offset = 0; offset < filesize; offset += mbedtls_cipher_get_block_size( &cipher_ctx ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000476 {
Paul Bakker243f48e2016-09-02 22:44:09 +0200477 ilen = ( (unsigned int) filesize - offset > mbedtls_cipher_get_block_size( &cipher_ctx ) ) ?
478 mbedtls_cipher_get_block_size( &cipher_ctx ) : (unsigned int) ( filesize - offset );
479
480 if( fread( buffer, 1, ilen, fin ) != ilen )
Paul Bakker20a78082011-01-21 09:32:12 +0000481 {
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200482 mbedtls_fprintf( stderr, "fread(%u bytes) failed\n",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200483 mbedtls_cipher_get_block_size( &cipher_ctx ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000484 goto exit;
485 }
486
Paul Bakker243f48e2016-09-02 22:44:09 +0200487 mbedtls_md_hmac_update( &md_ctx, buffer, ilen );
488 if( mbedtls_cipher_update( &cipher_ctx, buffer, ilen, output,
489 &olen ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200490 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200491 mbedtls_fprintf( stderr, "mbedtls_cipher_update() returned error\n" );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200492 goto exit;
493 }
Paul Bakker20a78082011-01-21 09:32:12 +0000494
Paul Bakker2c0994e2011-05-25 13:51:57 +0000495 if( fwrite( output, 1, olen, fout ) != olen )
Paul Bakker20a78082011-01-21 09:32:12 +0000496 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200497 mbedtls_fprintf( stderr, "fwrite(%ld bytes) failed\n", (long) olen );
Paul Bakker20a78082011-01-21 09:32:12 +0000498 goto exit;
499 }
500 }
501
502 /*
Paul Bakker20a78082011-01-21 09:32:12 +0000503 * Verify the message authentication code.
504 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200505 mbedtls_md_hmac_finish( &md_ctx, digest );
Paul Bakker20a78082011-01-21 09:32:12 +0000506
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200507 if( fread( buffer, 1, mbedtls_md_get_size( md_info ), fin ) != mbedtls_md_get_size( md_info ) )
Paul Bakker20a78082011-01-21 09:32:12 +0000508 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200509 mbedtls_fprintf( stderr, "fread(%d bytes) failed\n", mbedtls_md_get_size( md_info ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000510 goto exit;
511 }
512
Paul Bakker424cd692013-10-31 14:22:08 +0100513 /* Use constant-time buffer comparison */
514 diff = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200515 for( i = 0; i < mbedtls_md_get_size( md_info ); i++ )
Paul Bakker424cd692013-10-31 14:22:08 +0100516 diff |= digest[i] ^ buffer[i];
517
518 if( diff != 0 )
Paul Bakker20a78082011-01-21 09:32:12 +0000519 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200520 mbedtls_fprintf( stderr, "HMAC check failed: wrong key, "
Paul Bakker20a78082011-01-21 09:32:12 +0000521 "or file corrupted.\n" );
522 goto exit;
523 }
Manuel Pégourié-Gonnard0f2eacb2013-11-25 17:55:17 +0100524
525 /*
526 * Write the final block of data
527 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200528 mbedtls_cipher_finish( &cipher_ctx, output, &olen );
Manuel Pégourié-Gonnard0f2eacb2013-11-25 17:55:17 +0100529
530 if( fwrite( output, 1, olen, fout ) != olen )
531 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200532 mbedtls_fprintf( stderr, "fwrite(%ld bytes) failed\n", (long) olen );
Manuel Pégourié-Gonnard0f2eacb2013-11-25 17:55:17 +0100533 goto exit;
534 }
Paul Bakker20a78082011-01-21 09:32:12 +0000535 }
536
Andres Amaya Garcia4c47df62018-04-29 19:11:26 +0100537 exit_code = MBEDTLS_EXIT_SUCCESS;
Paul Bakker20a78082011-01-21 09:32:12 +0000538
539exit:
Paul Bakker6d440322011-02-06 12:49:19 +0000540 if( fin )
541 fclose( fin );
542 if( fout )
543 fclose( fout );
Paul Bakker20a78082011-01-21 09:32:12 +0000544
Hanno Beckerf601ec52017-06-27 08:22:17 +0100545 /* Zeroize all command line arguments to also cover
546 the case when the user has missed or reordered some,
547 in which case the key might not be in argv[6]. */
548 for( i = 0; i < argc; i++ )
Hanno Becker0b44d5c2018-10-12 16:46:37 +0100549 mbedtls_platform_zeroize( argv[i], strlen( argv[i] ) );
Hanno Beckerf601ec52017-06-27 08:22:17 +0100550
Hanno Becker0b44d5c2018-10-12 16:46:37 +0100551 mbedtls_platform_zeroize( IV, sizeof( IV ) );
552 mbedtls_platform_zeroize( key, sizeof( key ) );
553 mbedtls_platform_zeroize( buffer, sizeof( buffer ) );
554 mbedtls_platform_zeroize( output, sizeof( output ) );
555 mbedtls_platform_zeroize( digest, sizeof( digest ) );
Paul Bakker20a78082011-01-21 09:32:12 +0000556
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200557 mbedtls_cipher_free( &cipher_ctx );
558 mbedtls_md_free( &md_ctx );
Paul Bakker20a78082011-01-21 09:32:12 +0000559
Krzysztof Stachowiak5e1b1952019-04-24 14:24:46 +0200560 mbedtls_exit( exit_code );
Paul Bakker20a78082011-01-21 09:32:12 +0000561}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200562#endif /* MBEDTLS_CIPHER_C && MBEDTLS_MD_C && MBEDTLS_FS_IO */