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