LUKS header and Type needs to be set in context before crypt_check_data_device_size...
[platform/upstream/cryptsetup.git] / ChangeLog
1 2011-08-22  Milan Broz  <mbroz@redhat.com>
2         * Add more paranoid checks for LUKS header and keyslot attributes.
3         * Fix crypt_load to properly check device size.
4
5 2011-07-25  Milan Broz  <mbroz@redhat.com>
6         * Remove hash/hmac restart from crypto backend and make it part of hash/hmac final.
7         * Improve check for invalid offset and size values.
8
9 2011-07-19  Milan Broz  <mbroz@redhat.com>
10         * Revert default initialisation of volume key in crypt_init_by_name().
11         * Do not allow key retrieval while suspended (key could be wiped).
12         * Do not allow suspend for non-LUKS devices.
13         * Support retries and timeout parameters for luksSuspend.
14         * Add --header option for detached metadata (on-disk LUKS header) device.
15         * Add crypt_init_by_name_and_header() and crypt_set_data_device() to API.
16         * Allow different data offset setting for detached header.
17
18 2011-07-07  Milan Broz  <mbroz@redhat.com>
19         * Remove old API functions (all functions using crypt_options).
20         * Add --enable-discards option to allow discards/TRIM requests.
21         * Add crypt_get_iv_offset() function to API.
22
23 2011-07-01  Milan Broz  <mbroz@redhat.com>
24         * Add --shared option for creating non-overlapping crypt segments.
25         * Add shared flag to libcryptsetup api.
26         * Fix plain crypt format parameters to include size option (API change).
27
28 2011-06-08  Milan Broz  <mbroz@redhat.com>
29         * Fix return code for status command when device doesn't exists.
30
31 2011-05-24  Milan Broz  <mbroz@redhat.com>
32         * Version 1.3.1.
33
34 2011-05-17  Milan Broz  <mbroz@redhat.com>
35         * Fix keyfile=- processing in create command (1.3.0).
36         * Simplify device path status check.
37
38 2011-05-03  Milan Broz  <mbroz@redhat.com>
39         * Do not ignore size argument for create command (1.2.0).
40
41 2011-04-18  Milan Broz  <mbroz@redhat.com>
42         * Fix error paths in blockwise code and lseek_write call.
43         * Add Nettle crypto backend support.
44
45 2011-04-05  Milan Broz  <mbroz@redhat.com>
46         * Version 1.3.0.
47
48 2011-03-22  Milan Broz  <mbroz@redhat.com>
49         * Also support --skip and --hash option for loopaesOpen.
50         * Fix return code when passphrase is read from pipe.
51         * Document cryptsetup exit codes.
52
53 2011-03-18  Milan Broz  <mbroz@redhat.com>
54         * Respect maximum keyfile size paramater.
55         * Introduce maximum default keyfile size, add configure option.
56         * Require the whole key read from keyfile in create command (broken in 1.2.0).
57         * Fix offset option for loopaesOpen.
58         * Lock memory also in luksDump command.
59         * Version 1.3.0-rc2.
60
61 2011-03-14  Milan Broz  <mbroz@redhat.com>
62         * Version 1.3.0-rc1.
63
64 2011-03-11  Milan Broz  <mbroz@redhat.com>
65         * Add loop manipulation code and support mapping of images in file.
66         * Add backing device loop info into status message.
67         * Add luksChangeKey command.
68
69 2011-03-05  Milan Broz  <mbroz@redhat.com>
70         * Add exception to COPYING for binary distribution linked with OpenSSL library.
71         * Set secure data flag (wipe all ioclt buffers) if devmapper library supports it.
72
73 2011-01-29  Milan Broz  <mbroz@redhat.com>
74         * Fix mapping removal if device disappeared but node still exists.
75         * Fix luksAddKey return code if master key is used.
76
77 2011-01-25  Milan Broz  <mbroz@redhat.com>
78         * Add loop-AES handling (loopaesOpen and loopaesClose commands).
79          (requires kernel 2.6.38 and above)
80
81 2011-01-05  Milan Broz  <mbroz@redhat.com>
82         * Fix static build (--disable-static-cryptsetup now works properly).
83
84 2010-12-30  Milan Broz  <mbroz@redhat.com>
85         * Add compile time crypto backends implementation
86           (gcrypt, OpenSSL, NSS and userspace Linux kernel crypto api).
87         * Currently NSS is lacking ripemd160, cannot provide full plain compatibility.
88         * Use --with-crypto_backend=[gcrypt|openssl|nss|kernel] to configure.
89
90 2010-12-20  Milan Broz  <mbroz@redhat.com>
91         * Version 1.2.0.
92
93 2010-11-25  Milan Broz  <mbroz@redhat.com>
94         * Fix crypt_activate_by_keyfile() to work with PLAIN devices.
95         * Fix create command to properly handle keyfile size.
96
97 2010-11-16  Milan Broz  <mbroz@redhat.com>
98         * Version 1.2.0-rc1.
99
100 2010-11-13  Milan Broz  <mbroz@redhat.com>
101         * Fix password callback call.
102         * Fix default plain password entry from terminal in activate_by_passphrase.
103         * Add --dump-master-key option for luksDump to allow volume key dump.
104         * Allow to activate by internally cached volume key
105           (format/activate without keyslots active - used for temporary devices).
106         * Initialize volume key from active device in crypt_init_by_name()
107         * Fix cryptsetup binary exitcodes.
108         * Increase library version (still binary compatible with 1.1.x release).
109
110 2010-11-01  Milan Broz  <mbroz@redhat.com>
111         * No longer support luksDelKey, reload and --non-exclusive.
112         * Remove some obsolete info from man page.
113         * Add crypt_get_type(), crypt_resize(), crypt_keyslot_max()
114         and crypt_get_active_device() to API.
115         * Rewrite all implementations in cryptsetup to new API.
116         * Fix luksRemoveKey to behave as documented (do not ask
117         for remaining keyslot passphrase).
118         * Add more regression tests for commands.
119         * Disallow mapping of device which is already in use (mapped or mounted).
120         * Disallow luksFormat on device in use.
121
122 2010-10-27  Milan Broz  <mbroz@redhat.com>
123         * Rewrite cryptsetup luksFormat, luksOpen, luksAddKey to use new API
124           to allow adding new features.
125         * Implement --use-random and --use-urandom for luksFormat to allow
126           setting of RNG for volume key generator.
127         * Add crypt_set_rng_type() and crypt_get_rng_type() to API.
128         * Add crypt_set_uuid() to API.
129         * Allow UUID setting in luksFormat and luksUUID (--uuid parameter).
130         * Add --keyfile-size and --new-keyfile-size (in bytes) size and disallow overloading
131           of --key-size for limiting keyfile reads.
132         * Fix luksFormat to properly use key file with --master-key-file switch.
133         * Fix possible double free when handling master key file.
134
135 2010-10-17  Milan Broz  <mbroz@redhat.com>
136         * Add crypt_get_device_name() to API (get underlying device name).
137         * Change detection for static libraries.
138         * Fix pkg-config use in automake scripts.
139         * Remove --disable-shared-library switch and handle static library build
140           by common libtool logic (using --enable-static).
141         * Add --enable-static-cryptsetup option to build cryptsetup.static binary
142           together with shared build.
143
144 2010-08-05  Milan Broz  <mbroz@redhat.com>
145         * Wipe iteration and salt after KillSlot in LUKS header.
146         * Rewrite file differ test to C (and fix it to really work).
147         * Switch to 1MiB default alignment of data.
148           For more info see https://bugzilla.redhat.com/show_bug.cgi?id=621684
149         * Do not query non-existent device twice (cryptsetup status /dev/nonexistent).
150         * Check if requested hash is supported before writing LUKS header.
151
152 2010-07-28  Arno Wagner <arno@wagner.name>
153         * Add FAQ (Frequently Asked Questions) file to distribution.
154
155 2010-07-03  Milan Broz  <mbroz@redhat.com>
156         * Fix udev support for old libdevmapper with not compatible definition.
157         * Version 1.1.3.
158
159 2010-06-01  Milan Broz  <mbroz@redhat.com>
160         * Fix device alignment ioctl calls parameters.
161         * Fix activate_by_* API calls to handle NULL device name as documented.
162
163 2010-05-30  Milan Broz  <mbroz@redhat.com>
164         * Version 1.1.2.
165
166 2010-05-27  Milan Broz  <mbroz@redhat.com>
167         * Fix luksFormat/luksOpen reading passphrase from stdin and "-" keyfile.
168         * Support --key-file/-d option for luksFormat.
169         * Fix description of --key-file and add --verbose and --debug options to man page.
170         * Add verbose log level and move unlocking message there.
171         * Remove device even if underlying device disappeared.
172         * Fix (deprecated) reload device command to accept new device argument.
173
174 2010-05-23  Milan Broz  <mbroz@redhat.com>
175         * Fix luksClose operation for stacked DM devices.
176         * Version 1.1.1.
177
178 2010-05-03  Milan Broz  <mbroz@redhat.com>
179         * Fix automatic dm-crypt module loading.
180         * Escape hyphens in man page.
181         * Version 1.1.1-rc2.
182
183 2010-04-30  Milan Broz  <mbroz@redhat.com>
184         * Try to use pkgconfig for device mapper library.
185         * Detect old dm-crypt module and disable LUKS suspend/resume.
186         * Fix apitest to work on older systems.
187         * Allow no hash specification in plain device constructor.
188         * Fix luksOpen reading of passphrase on stdin (if "-" keyfile specified).
189         * Fix isLuks to initialise crypto backend (blkid instead is suggested anyway).
190         * Version 1.1.1-rc1.
191
192 2010-04-12  Milan Broz  <mbroz@redhat.com>
193         * Fix package config to use proper package version.
194         * Avoid class C++ keyword in library header.
195         * Detect and use devmapper udev support if available (disable by --disable-udev).
196
197 2010-04-06  Milan Broz  <mbroz@redhat.com>
198         * Prefer some device paths in status display.
199         * Support device topology detectionfor data alignment.
200
201 2010-02-25  Milan Broz  <mbroz@redhat.com>
202         * Do not verify unlocking passphrase in luksAddKey command.
203         * Properly initialise crypto backend in header backup/restore commands.
204
205 2010-01-17  Milan Broz  <mbroz@redhat.com>
206         * If gcrypt compiled with capabilities, document workaround for cryptsetup (see lib/gcrypt.c).
207         * Version 1.1.0.
208
209 2010-01-10  Milan Broz  <mbroz@redhat.com>
210         * Fix initialisation of gcrypt duting luksFormat.
211         * Convert hash name to lower case in header (fix sha1 backward comatible header)
212         * Check for minimum required gcrypt version.
213
214 2009-12-30  Milan Broz  <mbroz@redhat.com>
215         * Fix key slot iteration count calculation (small -i value was the same as default).
216         * The slot and key digest iteration minimun is now 1000.
217         * The key digest iteration # is calculated from iteration time (approx 1/8 of that).
218         * Version 1.1.0-rc4.
219
220 2009-12-11  Milan Broz  <mbroz@redhat.com>
221         * Fix error handling during reading passhrase.
222
223 2009-12-01  Milan Broz  <mbroz@redhat.com>
224         * Allow changes of default compiled-in cipher parameters through configure.
225         * Switch default key size for LUKS to 256bits.
226         * Switch default plain mode to aes-cbc-essiv:sha256 (default is backward incompatible!).
227
228 2009-11-14  Milan Broz  <mbroz@redhat.com>
229         * Add CRYPT_ prefix to enum defined in libcryptsetup.h.
230         * Fix status call to fail when running as non-root user.
231         * Check in configure if selinux libraries are required in static version.
232         * Add temporary debug code to find processes locking internal device.
233         * Simplify build system, use autopoint and clean gettext processing.
234         * Use proper NLS macros and detection (so the message translation works again).
235         * Version 1.1.0-rc3.
236
237 2009-09-30  Milan Broz  <mbroz@redhat.com>
238         * Fix exported symbols and versions in libcryptsetup.
239         * Do not use internal lib functions in cryptsetup.
240         * Add crypt_log to library.
241         * Fix crypt_remove_device (remove, luksClose) implementation.
242         * Move dm backend initialisation to library calls.
243         * Move duplicate Command failed message to verbose level (error is printed always).
244         * Add some password and used algorithms notes to man page.
245         * Version 1.1.0-rc2.
246
247 2009-09-28  Milan Broz  <mbroz@redhat.com>
248         * Add luksHeaderBackup and luksHeaderRestore commands.
249         * Fail passphrase read if piped input no longer exists.
250         * Version 1.1.0-rc1.
251
252 2009-09-15  Milan Broz  <mbroz@redhat.com>
253         * Initialize crypto library before LUKS header load.
254         * Fix manpage to not require --size which expands to device size by default.
255
256 2009-09-10  Milan Broz  <mbroz@redhat.com>
257         * Clean up Makefiles and configure script.
258         * Version 1.1.0-test0.
259
260 2009-09-08  Milan Broz  <mbroz@redhat.com>
261         * Use dm-uuid for all crypt devices, contains device type and name now.
262         * Try to read first sector from device to properly check that device is ready.
263
264 2009-09-02  Milan Broz  <mbroz@redhat.com>
265         * Add luksSuspend (freeze device and wipe key) and luksResume (with provided passphrase).
266
267 2009-08-30  Milan Broz  <mbroz@redhat.com>
268         * Require device device-mapper to build and do not use backend wrapper for dm calls.
269         * Move memory locking and dm initialization to command layer.
270         * Increase priority of process if memory is locked.
271         * Add log macros and make logging modre consitent.
272         * Move command successful messages to verbose level.
273         * Introduce --debug parameter.
274         * Move device utils code and provide context parameter (for log).
275         * Keyfile now must be provided by path, only stdin file descriptor is used (api only).
276         * Do not call isatty() on closed keyfile descriptor.
277         * Run performance check for PBKDF2 from LUKS code, do not mix hash algoritms results.
278         * Add ability to provide pre-generated master key and UUID in LUKS header format.
279         * Add LUKS function to verify master key digest.
280         * Move key slot manuipulation function into LUKS specific code.
281         * Replace global options struct with separate parameters in helper functions.
282         * Add new libcryptsetup API (documented in libcryptsetup.h).
283         * Implement old API calls using new functions.
284         * Remove old API code helper functions.
285         * Add --master-key-file option for luksFormat and luksAddKey.
286
287 2009-08-17  Milan Broz  <mbroz@redhat.com>
288         * Fix PBKDF2 speed calculation for large passhrases.
289         * Allow using passphrase provided in options struct for LuksOpen.
290         * Allow restrict keys size in LuksOpen.
291
292 2009-07-30  Milan Broz  <mbroz@redhat.com>
293         * Fix errors when compiled with LUKS_DEBUG.
294         * Print error when getline fails.
295         * Remove po/cryptsetup-luks.pot, it's autogenerated.
296         * Return ENOENT for empty keyslots, EINVAL will be used later for other type of error.
297         * Switch PBKDF2 from internal SHA1 to libgcrypt, make hash algorithm not hardcoded to SHA1 here.
298         * Add required parameters for changing hash used in LUKS key setup scheme.
299         * Do not export simple XOR helper now used only inside AF functions.
300         * Completely remove internal SHA1 implementanion code, not needed anymore.
301         * Enable hash algorithm selection for LUKS through -h luksFormat option.
302
303 2009-07-28  Milan Broz  <mbroz@redhat.com>
304         * Pad luks header to 512 sector size.
305         * Rework read/write blockwise to not split operation to many pieces.
306         * Use posix_memalign if available.
307
308 2009-07-22  Milan Broz  <mbroz@redhat.com>
309         * Fix segfault if provided slot in luksKillslot is invalid.
310         * Remove unneeded timeout when remove of temporary device succeeded.
311
312 2009-07-22  Milan Broz  <mbroz@redhat.com>
313         * version 1.0.7
314
315 2009-07-16  Milan Broz  <mbroz@redhat.com>
316         * Allow removal of last slot in luksRemoveKey and luksKillSlot.
317
318 2009-07-11  Milan Broz  <mbroz@redhat.com>
319
320         * Add --disable-selinux option and fix static build if selinux is required.
321         * Reject unsupported --offset and --skip options for luksFormat and update man page.
322
323 2009-06-22  Milan Broz  <mbroz@redhat.com>
324
325         * Summary of changes in subversion for 1.0.7-rc1:
326         * Various man page fixes.
327         * Set UUID in device-mapper for LUKS devices.
328         * Retain readahead of underlying device.
329         * Display device name when asking for password.
330         * Check device size when loading LUKS header. Remove misleading error message later.
331         * Add error hint if dm-crypt mapping failed.
332         * Use better error messages if device doesn't exist or is already used by other mapping.
333         * Fix make distcheck.
334         * Check if all slots are full during luksAddKey.
335         * Fix segfault in set_error.
336         * Code cleanups, remove precompiled pot files, remove unnecessary files from po directory
337         * Fix uninitialized return value variable in setup.c.
338         * Code cleanups. (thanks to Ivan Stankovic)
339         * Fix wrong output for remaining key at key deletion.
340         * Allow deletion of key slot while other keys have the same key information.
341         * Add missing AM_PROG_CC_C_O to configure.in
342         * Remove duplicate sentence in man page.
343         * Wipe start of device (possible fs signature) before LUKS-formatting.
344         * Do not process configure.in in hidden directories.
345         * Return more descriptive error in case of IO or header format error.
346         * Use remapping to error target instead of calling udevsettle for temporary crypt device.
347         * Check device mapper communication and warn user if device-mapper support missing in kernel.
348         * Fix signal handler to properly close device.
349         * write_lseek_blockwise: declare innerCount outside the if block.
350         * add -Wall to the default CFLAGS. fix some signedness issues.
351         * Error handling improvement.
352         * Add non-exclusive override to interface definition.
353         * Refactor key slot selection into keyslot_from_option.
354
355 2007-05-01  Clemens Fruhwirth  <clemens@endorphin.org>
356
357         * lib/backends.c, man/cryptsetup.8: Apply patch from Ludwig Nussel
358         <ludwig.nussel@suse.de>, for old SuSE compat hashing.
359
360 2007-04-16  Clemens Fruhwirth  <clemens@endorphin.org>
361
362         * Summary of changes in subversion:
363         Fix segfault for key size > 32 bytes.
364         Kick ancient header version conversion. 
365         Fix http://bugs.debian.org/403075
366         No passwort retrying for I/O errors.
367         Fix hang on "-i 0".
368         Fix parenthesization error that prevented --tries from working
369         correctly.
370
371 2006-11-28  gettextize  <bug-gnu-gettext@gnu.org>
372
373         * m4/gettext.m4: Upgrade to gettext-0.15.
374         * m4/glibc2.m4: New file, from gettext-0.15.
375         * m4/intmax.m4: New file, from gettext-0.15.
376         * m4/inttypes-h.m4: New file, from gettext-0.15.
377         * m4/inttypes-pri.m4: Upgrade to gettext-0.15.
378         * m4/lib-link.m4: Upgrade to gettext-0.15.
379         * m4/lib-prefix.m4: Upgrade to gettext-0.15.
380         * m4/lock.m4: New file, from gettext-0.15.
381         * m4/longdouble.m4: New file, from gettext-0.15.
382         * m4/longlong.m4: New file, from gettext-0.15.
383         * m4/nls.m4: Upgrade to gettext-0.15.
384         * m4/po.m4: Upgrade to gettext-0.15.
385         * m4/printf-posix.m4: New file, from gettext-0.15.
386         * m4/signed.m4: New file, from gettext-0.15.
387         * m4/size_max.m4: New file, from gettext-0.15.
388         * m4/visibility.m4: New file, from gettext-0.15.
389         * m4/wchar_t.m4: New file, from gettext-0.15.
390         * m4/wint_t.m4: New file, from gettext-0.15.
391         * m4/xsize.m4: New file, from gettext-0.15.
392         * m4/Makefile.am: New file.
393         * configure.in (AC_OUTPUT): Add m4/Makefile.
394         (AM_GNU_GETTEXT_VERSION): Bump to 0.15.
395
396 2006-10-22  David Härdeman  <david@hardeman.nu>
397
398         * Allow hashing of keys passed through stdin.
399
400 2006-10-13  Clemens Fruhwirth  <clemens@endorphin.org>
401
402         * configure.in: 1.0.4 release
403
404 2006-10-13  Clemens Fruhwirth  <clemens@endorphin.org>
405
406         * man/cryptsetup.8: Document --tries switch; patch by Jonas
407         Meurer.
408
409 2006-10-13  Clemens Fruhwirth  <clemens@endorphin.org>
410
411         * lib/setup.c: Added terminal timeout rewrite as forwarded by
412         Jonas Meurer
413
414 2006-10-04  Clemens Fruhwirth  <clemens@endorphin.org>
415
416         * Merged patch from Marc Merlin <marc@merlins.org> to allow user
417         selection of key slot.
418
419 2006-09-26  gettextize  <bug-gnu-gettext@gnu.org>
420
421         * m4/codeset.m4: Upgrade to gettext-0.14.4.
422         * m4/gettext.m4: Upgrade to gettext-0.14.4.
423         * m4/glibc2.m4: New file, from gettext-0.14.4.
424         * m4/glibc21.m4: Upgrade to gettext-0.14.4.
425         * m4/iconv.m4: Upgrade to gettext-0.14.4.
426         * m4/intdiv0.m4: Upgrade to gettext-0.14.4.
427         * m4/intmax.m4: New file, from gettext-0.14.4.
428         * m4/inttypes.m4: Upgrade to gettext-0.14.4.
429         * m4/inttypes_h.m4: Upgrade to gettext-0.14.4.
430         * m4/inttypes-pri.m4: Upgrade to gettext-0.14.4.
431         * m4/isc-posix.m4: Upgrade to gettext-0.14.4.
432         * m4/lcmessage.m4: Upgrade to gettext-0.14.4.
433         * m4/lib-ld.m4: Upgrade to gettext-0.14.4.
434         * m4/lib-link.m4: Upgrade to gettext-0.14.4.
435         * m4/lib-prefix.m4: Upgrade to gettext-0.14.4.
436         * m4/longdouble.m4: New file, from gettext-0.14.4.
437         * m4/longlong.m4: New file, from gettext-0.14.4.
438         * m4/nls.m4: Upgrade to gettext-0.14.4.
439         * m4/po.m4: Upgrade to gettext-0.14.4.
440         * m4/printf-posix.m4: New file, from gettext-0.14.4.
441         * m4/progtest.m4: Upgrade to gettext-0.14.4.
442         * m4/signed.m4: New file, from gettext-0.14.4.
443         * m4/size_max.m4: New file, from gettext-0.14.4.
444         * m4/stdint_h.m4: Upgrade to gettext-0.14.4.
445         * m4/uintmax_t.m4: Upgrade to gettext-0.14.4.
446         * m4/ulonglong.m4: Upgrade to gettext-0.14.4.
447         * m4/wchar_t.m4: New file, from gettext-0.14.4.
448         * m4/wint_t.m4: New file, from gettext-0.14.4.
449         * m4/xsize.m4: New file, from gettext-0.14.4.
450         * Makefile.am (ACLOCAL_AMFLAGS): New variable.
451         * configure.in (AM_GNU_GETTEXT_VERSION): Bump to 0.14.4.
452
453 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
454
455         * configure.in: 1.0.4-rc2
456
457 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
458
459         * luks/Makefile.am: Add a few regression tests 
460
461 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
462
463         * lib/setup.c (get_key): Applied patch from David Härdeman
464         <david@2gen.com> for reading binary keys from stdin using
465         the "-" as key file.
466
467 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
468
469         * lib/setup.c (__crypt_luks_add_key): For checking options struct
470         (optionsCheck) filter out CRYPT_FLAG_VERIFY and
471         CRYPT_FLAG_VERIFY_IF_POSSIBLE, so that in no case password verification is done
472         for password retrieval.
473
474 2006-08-04  Clemens Fruhwirth  <clemens@endorphin.org>
475
476         * configure.in: Merge Patch from http://bugs.gentoo.org/show_bug.cgi?id=132126 for sepol
477
478 2006-07-23  Clemens Fruhwirth  <clemens@endorphin.org>
479
480         * Applied patches from David Härdeman <david@2gen.com> to fix 64
481         bit compiler warning issues.
482
483 2006-05-19  Clemens Fruhwirth  <clemens@endorphin.org>
484
485         * Applied patches from Jonas Meurer
486           - fix terminal status after timeout
487           - add remark for --tries to manpage
488           - allow more than 32 chars from standard input.
489           - exit status fix for cryptsetup status.
490
491 2006-05-06  Clemens Fruhwirth  <clemens@endorphin.org>
492
493         * src/cryptsetup.c (yesDialog): Fix getline problem for 64-bit archs. 
494
495 2006-04-05  Clemens Fruhwirth  <clemens@endorphin.org>
496
497         * configure.in: Release 1.0.3.
498
499         * Applied patch by Johannes Weißl for more meaningful exit codes
500         and password retries
501
502 2006-03-30  Clemens Fruhwirth  <clemens@endorphin.org>
503
504         * lib/setup.c (__crypt_create_device): (char *) -> (const char *)
505
506 2006-03-30  Clemens Fruhwirth  <clemens@endorphin.org>
507
508         * Apply alignPayload patch from Peter Palfrader <weasel@debian.org>
509
510 2006-03-15  Clemens Fruhwirth  <clemens@endorphin.org>
511
512         * configure.in: 1.0.3-rc3. Most unplease release ever. 
513         * lib/setup.c (__crypt_create_device): More verbose error message.
514
515 2006-02-26  Clemens Fruhwirth  <clemens@endorphin.org>
516
517         * lib/setup.c: Revert to 1.0.1 key reading.
518
519 2006-02-25  Clemens Fruhwirth  <clemens@endorphin.org>
520
521         * man/cryptsetup.8: merge patch from Jonas Meurer
522
523 2006-02-25  Clemens Fruhwirth  <clemens@endorphin.org>
524
525         * configure.in: 1.0.3-rc2
526
527 2006-02-25  Clemens Fruhwirth  <clemens@endorphin.org>
528
529         * lib/libdevmapper.c (dm_create_device): Remove dup check here.
530         * lib/setup.c (__crypt_luks_open): Adopt same dup check as regular
531         create command.
532
533 2006-02-22  Clemens Fruhwirth  <clemens@endorphin.org>
534
535         * configure.in: Spin 1.0.3-rc1
536
537 2006-02-22  Clemens Fruhwirth  <clemens@endorphin.org>
538
539         * src/cryptsetup.c (action_create): Change defaulting.
540         (action_luksFormat): Change defaulting.
541
542         * lib/setup.c (parse_into_name_and_mode): Revert that default
543         change. This is FORBIDDEN here, as it will change cryptsetup
544         entire default. This is BAD in a non-LUKS world.
545
546 2006-02-21  Clemens Fruhwirth  <clemens@endorphin.org>
547
548         * luks/keyencryption.c (setup_mapping): Add proper size restriction to mapping. 
549         (LUKS_endec_template): Add more verbose error message.
550
551 2006-02-21  Clemens Fruhwirth  <clemens@endorphin.org>
552
553         * lib/libdevmapper.c (dm_query_device): Incorporate patch from
554         Bastian Blank
555         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=344313
556
557 2006-02-21  Clemens Fruhwirth  <clemens@endorphin.org>
558
559         * src/cryptsetup.c: Rename show_error -> show_status.
560
561 2006-02-20  Clemens Fruhwirth  <clemens@endorphin.org>
562
563         * lib/libdevmapper.c (dm_create_device): Prevent existing mapping
564         from being removed when a mapping with the same name is added
565
566         * Add timeout patch from Jonas Meurer 
567
568         * src/cryptsetup.c: Remove conditional error printing to enable
569         printing the no-error msg (Command successful). Verify passphrase
570         for LUKS volumes.
571         (main): Add no-verify-passphrase
572
573         * lib/setup.c (parse_into_name_and_mode): Change default mode complition to essiv:sha256.
574
575 2006-01-04  Clemens Fruhwirth  <clemens@endorphin.org>
576
577         * src/cryptsetup.c (help): Merge patch from Gentoo: change gettext(..) to _(..).
578
579 2005-12-06  Clemens Fruhwirth  <clemens@endorphin.org>
580
581         * man/cryptsetup.8: Correct "seconds" to "microseconds" in the explaination for -i.
582
583 2005-11-09  Clemens Fruhwirth  <clemens@endorphin.org>
584
585         * src/cryptsetup.c (main): Add version string.
586
587 2005-11-08  Clemens Fruhwirth  <clemens@endorphin.org>
588
589         * lib/backends.c: compile fix. 
590
591 2005-09-11  Clemens Fruhwirth  <clemens@endorphin.org>
592
593         * lib/setup.c (get_key): Fixed another incompatibility from my
594         get_key rewrite with original cryptsetup.
595
596 2005-09-11  Clemens Fruhwirth  <clemens@endorphin.org>
597
598         * Merged changes from Florian Knauf's fk02 branch.
599
600 2005-09-08  Clemens Fruhwirth  <clemens@endorphin.org>
601
602         * lib/setup.c (get_key): Fixed another incompatiblity with
603         original cryptsetup.
604
605 2005-08-20  Clemens Fruhwirth  <clemens@endorphin.org>
606
607         * Checked in a patch from Michael Gebetsroither <gebi@sbox.tugraz.at>
608           to silent all confirmation dialogs.
609
610 2005-06-23  Clemens Fruhwirth  <clemens@endorphin.org>
611
612         * src/cryptsetup.c (help): print PACKAGE_STRING
613
614 2005-06-20  Clemens Fruhwirth  <clemens@endorphin.org>
615
616         * luks/keymanage.c (LUKS_set_key): Security check against header manipulation
617
618         * src/cryptsetup.c (action_luksDelKey): Safety check in luksDelKey
619
620         * luks/keymanage.c: Changed disk layout generation to align key material to 4k boundaries.
621         (LUKS_is_last_keyslot): Added LUKS_is_last_keyslot function.
622
623         * Applied patch from Bill Nottingham fixing a lot of prototypes.
624
625         * src/cryptsetup.c (action_luksOpen): Add support for -r flag.
626
627         * configure.in: Version bump 1.0.1
628
629 2005-06-16  Clemens Fruhwirth  <clemens@endorphin.org>
630
631         * lib/setup.c (__crypt_luks_open): Remove mem leaking of dmCipherSpec.
632         (get_key): Fix missing zero termination for read string. 
633
634 2005-06-12  Clemens Fruhwirth  <clemens@endorphin.org>
635
636         * luks/keyencryption.c (setup_mapping): Added CRYPT_FLAG_READONLY in case of O_RDONLY mode
637
638 2005-06-11  Clemens Fruhwirth  <clemens@endorphin.org>
639
640         * configure.in: Version bump 1.0.1-pre
641
642 2005-06-09  Clemens Fruhwirth  <clemens@endorphin.org>
643
644         * lib/utils.c: Added write_llseek_blocksize method to support sector wiping on sector_size != 512 
645         media
646
647 2005-05-23  Clemens Fruhwirth  <clemens@endorphin.org>
648
649         * lib/setup.c (crypt_luksDelKey): Added missing return statement
650         (setup_leave): Added missing return statement
651
652         * luks/keyencryption.c (clear_mapping): Added missing return statement
653
654 2005-05-19  Clemens Fruhwirth  <clemens@endorphin.org>
655
656         * lib/utils.c (write_blockwise, read_blockwise): Changed to soft bsize instead of SECTOR_SIZE
657
658         * luks/keymanage.c (wipe): Changed open mode to O_DIRECT | O_SYNC, and changed write 
659         to use the blockwise write helper
660
661 2005-04-21  Clemens Fruhwirth  <clemens@endorphin.org>
662
663         * man/cryptsetup.8: Corrected an error, thanks to Dick Middleton.
664
665 2005-04-09  Clemens Fruhwirth  <clemens@endorphin.org>
666
667         * luks/sha/hmac.c: Add 64 bit bug fix courtesy to 
668         Oliver Paukstadt <pstadt@sourcentral.org>.
669
670         * luks/pbkdf.c, luks/keyencryption.c, luks/keymanage.c, luks/af.c: Added a license 
671         disclaimer and remove option for "any future GPL versions".
672
673 2005-03-25  Clemens Fruhwirth  <clemens@endorphin.org>
674
675         * configure.in: man page Makefile. Version bump 1.0.
676
677         * man/cryptsetup.8: finalize man page and move to section 8.
678
679         * src/cryptsetup.c (action_luksFormat): Add "are you sure" for interactive sessions.
680
681         * lib/setup.c (crypt_luksDump), src/cryptsetup.c: add LUKS dump command
682
683 2005-03-24  Clemens Fruhwirth  <clemens@endorphin.org>
684
685         * src/cryptsetup.c, luks/Makefile.am (test), lib/setup.c (setup_enter): 
686         rename luksInit to luksFormat
687
688 2005-03-12  Clemens Fruhwirth  <clemens@endorphin.org>
689
690         * man/cryptsetup.1: Add man page.
691
692         * lib/setup.c: Remove unneccessary LUKS_write_phdr call, so the
693         phdr is written after passphrase reading, so the user can change
694         his mind, and not have a partial written LUKS header on it's disk.
695
696 2005-02-09  Clemens Fruhwirth  <clemens@endorphin.org>
697
698         * luks/keymanage.c (LUKS_write_phdr): converted argument phdr to
699         pointer, and make a copy of phdr for conversion
700
701         * configure.in: Version dump.
702
703         * luks/keyencryption.c: Convert to read|write_blockwise.
704
705         * luks/keymanage.c: Convert to read|write_blockwise.
706
707         * lib/utils.c: Add read|write_blockwise functions, to use in
708         O_DIRECT file accesses. 
709
710 2004-03-11 Thursday 15:52   Christophe Saout <christophe@saout.de>
711
712         * lib/blockdev.h: BLKGETSIZE64 really uses size_t as third
713           argument, the rest is wrong.
714
715 2004-03-10 Wednesday 17:50   Christophe Saout <christophe@saout.de>
716
717         * lib/: libcryptsetup.h, libdevmapper.c: Small fixes.
718
719 2004-03-09 Tuesday 21:41   Christophe Saout <christophe@saout.de>
720
721         * lib/internal.h, lib/libcryptsetup.h, lib/libdevmapper.c,
722           lib/setup.c, po/de.po, src/cryptsetup.c: Added internal flags to
723           keep track of malloc'ed return values in struct crypt_options and
724           add a function to free the memory. Also add a readonly flag to
725           libcryptsetup.
726
727 2004-03-09 Tuesday 16:03   Christophe Saout <christophe@saout.de>
728
729         * ChangeLog, configure.in, setup-gettext, lib/Makefile.am,
730           lib/backends.c, lib/blockdev.h, lib/gcrypt.c, lib/internal.h,
731           lib/libcryptsetup.h, lib/libdevmapper.c, lib/setup.c,
732           lib/utils.c, po/de.po, src/Makefile.am, src/cryptsetup.c: More
733           reorganization work.
734
735 2004-03-08 Monday 01:38   Christophe Saout <christophe@saout.de>
736
737         * ChangeLog, Makefile.am, acinclude.m4, configure.in,
738           lib/Makefile.am, lib/backends.c, lib/blockdev.h, lib/gcrypt.c,
739           lib/libdevmapper.c, lib/setup.c, lib/utils.c, po/de.po,
740           src/Makefile.am: BLKGETSIZE64 fixes and started modularity
741           enhancements
742
743 2004-03-04 Thursday 21:06   Christophe Saout <christophe@saout.de>
744
745         * Makefile.am, po/de.po, src/cryptsetup.c, src/cryptsetup.h: First
746           backward compatible working version.
747
748 2004-03-04 Thursday 00:42   Christophe Saout <christophe@saout.de>
749
750         * NEWS, AUTHORS, ChangeLog, Makefile.am, README, autogen.sh,
751           configure.in, setup-gettext, po/ChangeLog, po/LINGUAS,
752           po/POTFILES.in, po/de.po, src/cryptsetup.c, src/cryptsetup.h,
753           src/Makefile.am (utags: initial): Initial checkin.
754
755 2004-03-04 Thursday 00:42   Christophe Saout <christophe@saout.de>
756
757         * NEWS, AUTHORS, ChangeLog, Makefile.am, README, autogen.sh,
758           configure.in, setup-gettext, po/ChangeLog, po/LINGUAS,
759           po/POTFILES.in, po/de.po, src/cryptsetup.c, src/cryptsetup.h,
760           src/Makefile.am: Initial revision