8 #include "libcryptsetup.h"
16 struct luks_masterkey *volume_key;
18 uint64_t iteration_time;
22 /* used in CRYPT_LUKS1 */
24 uint64_t PBKDF2_per_sec;
26 /* used in CRYPT_PLAIN */
27 struct crypt_params_plain plain_hdr;
29 char *plain_cipher_mode;
32 /* callbacks definitions */
33 void (*log)(int level, const char *msg, void *usrptr);
35 int (*confirm)(const char *msg, void *usrptr);
37 int (*password)(const char *msg, char *buf, size_t length, void *usrptr);
38 void *password_usrptr;
42 static void (*_default_log)(int level, const char *msg, void *usrptr) = NULL;
43 static int _debug_level = 0;
45 void crypt_set_debug_level(int level)
50 int crypt_get_debug_level()
55 void crypt_log(struct crypt_device *cd, int level, const char *msg)
58 cd->log(level, msg, cd->log_usrptr);
59 else if (_default_log)
60 _default_log(level, msg, NULL);
63 void logger(struct crypt_device *cd, int level, const char *file,
64 int line, const char *format, ...)
69 va_start(argp, format);
71 if (vasprintf(&target, format, argp) > 0) {
73 crypt_log(cd, level, target);
75 } else if (_debug_level)
76 printf("# %s:%d %s\n", file ?: "?", line, target);
78 } else if (_debug_level)
79 printf("# %s\n", target);
88 * Password processing behaviour matrix of process_key
90 * from binary file: check if there is sufficently large key material
91 * interactive & from fd: hash if requested, otherwise crop or pad with '0'
93 static char *process_key(struct crypt_device *cd, const char *hash_name,
94 const char *key_file, size_t key_size,
95 const char *pass, size_t passLen)
97 char *key = safe_alloc(key_size);
98 memset(key, 0, key_size);
100 /* key is coming from binary file */
101 if (key_file && strcmp(key_file, "-")) {
102 if(passLen < key_size) {
103 log_err(cd, _("Cannot not read %d bytes from key file %s.\n"),
108 memcpy(key, pass, key_size);
112 /* key is coming from tty, fd or binary stdin */
114 if (hash(NULL, hash_name, key, key_size, pass, passLen) < 0) {
115 log_err(cd, _("Key processing error (using hash algorithm %s).\n"),
120 } else if (passLen > key_size) {
121 memcpy(key, pass, key_size);
123 memcpy(key, pass, passLen);
129 int parse_into_name_and_mode(const char *nameAndMode, char *name, char *mode)
131 /* Token content stringification, see info cpp/stringification */
133 #define xstr(s) str(s)
134 #define scanpattern1 "%" xstr(LUKS_CIPHERNAME_L) "[^-]-%" xstr(LUKS_CIPHERMODE_L) "s"
135 #define scanpattern2 "%" xstr(LUKS_CIPHERNAME_L) "[^-]"
139 if(sscanf(nameAndMode,scanpattern1, name, mode) != 2) {
140 if((r = sscanf(nameAndMode,scanpattern2,name)) == 1)
141 strncpy(mode,"cbc-plain",10);
154 static int isPLAIN(const char *type)
156 return (type && !strcmp(CRYPT_PLAIN, type));
159 static int isLUKS(const char *type)
161 return (type && !strcmp(CRYPT_LUKS1, type));
164 /* keyslot helpers */
165 static int keyslot_verify_or_find_empty(struct crypt_device *cd, int *keyslot)
167 if (*keyslot == CRYPT_ANY_SLOT) {
168 *keyslot = LUKS_keyslot_find_empty(&cd->hdr);
170 log_err(cd, _("All key slots full.\n"));
175 switch (LUKS_keyslot_info(&cd->hdr, *keyslot)) {
176 case CRYPT_SLOT_INVALID:
177 log_err(cd, _("Key slot %d is invalid, please select between 0 and %d.\n"),
178 *keyslot, LUKS_NUMKEYS - 1);
180 case CRYPT_SLOT_INACTIVE:
183 log_err(cd, _("Key slot %d is full, please select another one.\n"),
191 static int verify_other_keyslot(struct crypt_device *cd,
192 const char *key_file,
196 struct luks_masterkey *mk;
197 crypt_keyslot_info ki;
199 char *password = NULL;
200 unsigned int passwordLen;
202 get_key(_("Enter any remaining LUKS passphrase: "), &password,
203 &passwordLen, 0, key_file, cd->timeout, flags, cd);
207 ki = crypt_keyslot_status(cd, keyIndex);
208 if (ki == CRYPT_SLOT_ACTIVE) /* Not last slot */
209 LUKS_keyslot_set(&cd->hdr, keyIndex, 0);
211 openedIndex = LUKS_open_key_with_hdr(cd->device, CRYPT_ANY_SLOT,
212 password, passwordLen,
215 if (ki == CRYPT_SLOT_ACTIVE)
216 LUKS_keyslot_set(&cd->hdr, keyIndex, 1);
217 LUKS_dealloc_masterkey(mk);
223 log_verbose(cd, _("Key slot %d verified.\n"), openedIndex);
227 static int find_keyslot_by_passphrase(struct crypt_device *cd,
228 const char *key_file,
232 struct luks_masterkey *mk;
233 char *password = NULL;
234 unsigned int passwordLen;
237 get_key(message,&password,&passwordLen, 0, key_file,
238 cd->timeout, flags, cd);
242 keyIndex = LUKS_open_key_with_hdr(cd->device, CRYPT_ANY_SLOT, password,
243 passwordLen, &cd->hdr, &mk, cd);
244 LUKS_dealloc_masterkey(mk);
250 static int device_check_and_adjust(struct crypt_device *cd,
252 uint64_t *size, uint64_t *offset,
255 struct device_infos infos;
257 if (!device || get_device_infos(device, &infos, cd) < 0) {
258 log_err(cd, _("Cannot get info about device %s.\n"),
266 log_err(cd, _("Device %s has zero size.\n"), device);
269 if (*size < *offset) {
270 log_err(cd, _("Device %s is too small.\n"), device);
279 log_dbg("Calculated device size is %" PRIu64 " sectors (%s), offset %" PRIu64 ".",
280 *size, *read_only ? "RO" : "RW", *offset);
284 static int luks_remove_helper(struct crypt_device *cd,
286 const char *other_key_file,
287 const char *key_file,
290 crypt_keyslot_info ki;
293 if (key_slot == CRYPT_ANY_SLOT) {
294 key_slot = find_keyslot_by_passphrase(cd, key_file, 0,
295 _("Enter LUKS passphrase to be deleted: "));
301 log_std(cd, _("key slot %d selected for deletion.\n"), key_slot);
304 ki = crypt_keyslot_status(cd, key_slot);
305 if (ki == CRYPT_SLOT_INVALID) {
306 log_err(cd, _("Key slot %d is invalid, please select between 0 and %d.\n"),
307 key_slot, LUKS_NUMKEYS - 1);
311 if (ki <= CRYPT_SLOT_INACTIVE) {
312 log_err(cd, _("Key %d not active. Can't wipe.\n"), key_slot);
317 if (ki == CRYPT_SLOT_ACTIVE_LAST && cd->confirm &&
318 !(cd->confirm(_("This is the last keyslot."
319 " Device will become unusable after purging this key."),
320 cd->confirm_usrptr))) {
326 r = verify_other_keyslot(cd, other_key_file, 0, key_slot);
331 r = crypt_keyslot_destroy(cd, key_slot);
333 return (r < 0) ? r : 0;
336 static int create_device_helper(struct crypt_device *cd,
340 const char *cipher_mode,
341 const char *key_file,
353 crypt_status_info ci;
354 char *dm_cipher = NULL;
355 char *processed_key = NULL;
361 ci = crypt_status(cd, name);
362 if (ci == CRYPT_INVALID)
365 if (reload && ci < CRYPT_ACTIVE)
368 if (!reload && ci >= CRYPT_ACTIVE) {
369 log_err(cd, _("Device %s already exists.\n"), name);
373 if (key_size < 0 || key_size > 1024) {
374 log_err(cd, _("Invalid key size %d.\n"), key_size);
378 r = device_check_and_adjust(cd, cd->device, &size, &offset, &read_only);
382 if (cipher_mode && asprintf(&dm_cipher, "%s-%s", cipher, cipher_mode) < 0)
385 processed_key = process_key(cd, hash, key_file, key_size, key, keyLen);
389 r = dm_create_device(name, cd->device, dm_cipher ?: cipher, cd->type, uuid, size, skip, offset,
390 key_size, processed_key, read_only, reload);
393 safe_free(processed_key);
397 static int open_from_hdr_and_mk(struct crypt_device *cd,
398 struct luks_masterkey *mk,
402 uint64_t size, offset;
404 int read_only, no_uuid, r;
407 offset = crypt_get_data_offset(cd);
408 read_only = flags & CRYPT_ACTIVATE_READONLY;
409 no_uuid = flags & CRYPT_ACTIVATE_NO_UUID;
411 r = device_check_and_adjust(cd, cd->device, &size, &offset, &read_only);
415 if (asprintf(&cipher, "%s-%s", crypt_get_cipher(cd),
416 crypt_get_cipher_mode(cd)) < 0)
419 r = dm_create_device(name, cd->device, cipher, cd->type,
420 no_uuid ? NULL : crypt_get_uuid(cd),
421 size, 0, offset, mk->keyLength, mk->key,
427 static void log_wrapper(int level, const char *msg, void *usrptr)
429 void (*xlog)(int level, char *msg) = usrptr;
430 xlog(level, (char *)msg);
433 static int yesDialog_wrapper(const char *msg, void *usrptr)
435 int (*xyesDialog)(char *msg) = usrptr;
436 return xyesDialog((char*)msg);
439 int crypt_confirm(struct crypt_device *cd, const char *msg)
441 if (!cd || !cd->confirm)
444 return cd->confirm(msg, cd->confirm_usrptr);
447 static void key_from_terminal(struct crypt_device *cd, char *msg, char **key,
448 unsigned int *key_len, int force_verify)
453 *key = safe_alloc(MAX_TTY_PASSWORD_LEN);
456 r = cd->password(msg, *key, (size_t)key_len, cd->password_usrptr);
463 if (force_verify || cd->password_verify)
464 flags |= CRYPT_FLAG_VERIFY_IF_POSSIBLE;
465 get_key(msg, key, key_len, 0, NULL, cd->timeout, flags, cd);
469 static int volume_key_by_terminal_passphrase(struct crypt_device *cd, int keyslot,
470 struct luks_masterkey **mk)
472 char *prompt = NULL, *passphrase_read = NULL;
473 unsigned int passphrase_size_read;
474 int r = -EINVAL, tries = cd->tries;
476 if(asprintf(&prompt, _("Enter passphrase for %s: "), cd->device) < 0)
482 LUKS_dealloc_masterkey(*mk);
485 key_from_terminal(cd, prompt, &passphrase_read,
486 &passphrase_size_read, 0);
487 if(!passphrase_read) {
492 r = LUKS_open_key_with_hdr(cd->device, keyslot, passphrase_read,
493 passphrase_size_read, &cd->hdr, mk, cd);
494 safe_free(passphrase_read);
495 passphrase_read = NULL;
496 } while (r == -EPERM && (--tries > 0));
499 LUKS_dealloc_masterkey(*mk);
508 static void key_from_file(struct crypt_device *cd, char *msg,
509 char **key, unsigned int *key_len,
510 const char *key_file, size_t key_size)
512 get_key(msg, key, key_len, key_size, key_file, cd->timeout, 0, cd);
515 static int _crypt_init(struct crypt_device **cd,
517 struct crypt_options *options,
518 int load, int need_dm)
522 /* if it is plain device and mapping table is being reloaded
523 initialize it by name*/
524 init_by_name = (type && !strcmp(type, CRYPT_PLAIN) && load);
526 /* Some of old API calls do not require DM in kernel,
527 fake initialisation by initialise it with kernel_check disabled */
529 (void)dm_init(NULL, 0);
531 r = crypt_init_by_name(cd, options->name);
533 r = crypt_init(cd, options->device);
540 crypt_set_log_callback(*cd, log_wrapper, options->icb->log);
541 crypt_set_confirm_callback(*cd, yesDialog_wrapper, options->icb->yesDialog);
543 crypt_set_timeout(*cd, options->timeout);
544 crypt_set_password_retry(*cd, options->tries);
545 crypt_set_iterarion_time(*cd, options->iteration_time ?: 1000);
546 crypt_set_password_verify(*cd, options->flags & CRYPT_FLAG_VERIFY);
548 if (load && !init_by_name)
549 r = crypt_load(*cd, type, NULL);
551 if (!r && type && !(*cd)->type) {
552 (*cd)->type = strdup(type);
563 void crypt_set_log_callback(struct crypt_device *cd,
564 void (*log)(int level, const char *msg, void *usrptr),
571 cd->log_usrptr = usrptr;
575 void crypt_set_confirm_callback(struct crypt_device *cd,
576 int (*confirm)(const char *msg, void *usrptr),
579 cd->confirm = confirm;
580 cd->confirm_usrptr = usrptr;
583 void crypt_set_password_callback(struct crypt_device *cd,
584 int (*password)(const char *msg, char *buf, size_t length, void *usrptr),
587 cd->password = password;
588 cd->password_usrptr = usrptr;
591 /* OPTIONS: name, cipher, device, hash, key_file, key_size, key_slot,
592 * offset, size, skip, timeout, tries, passphrase_fd (ignored),
594 static int crypt_create_and_update_device(struct crypt_options *options, int update)
596 struct crypt_device *cd = NULL;
601 r = _crypt_init(&cd, CRYPT_PLAIN, options, 0, 1);
605 get_key(_("Enter passphrase: "), &key, &keyLen, options->key_size,
606 options->key_file, cd->timeout, options->flags, cd);
610 r = create_device_helper(cd, options->name, options->hash,
611 options->cipher, NULL, options->key_file, key, keyLen,
612 options->key_size, options->size, options->skip,
613 options->offset, NULL, options->flags & CRYPT_FLAG_READONLY,
614 options->flags, update);
621 int crypt_create_device(struct crypt_options *options)
623 return crypt_create_and_update_device(options, 0);
626 int crypt_update_device(struct crypt_options *options)
628 return crypt_create_and_update_device(options, 1);
631 /* OPTIONS: name, size, icb */
632 int crypt_resize_device(struct crypt_options *options)
634 struct crypt_device *cd = NULL;
635 char *device = NULL, *cipher = NULL, *uuid = NULL, *key = NULL;
637 uint64_t size, skip, offset;
638 int key_size, read_only, r;
640 log_dbg("Resizing device %s to %" PRIu64 " sectors.", options->name, options->size);
642 if (dm_init(NULL, 1) < 0)
645 r = dm_query_device(options->name, &device, &size, &skip, &offset,
646 &cipher, &key_size, &key, &read_only, NULL, &uuid);
648 log_err(NULL, _("Device %s is not active.\n"), options->name);
652 /* Try to determine type of device from UUID */
655 if (!strncmp(uuid, CRYPT_PLAIN, strlen(CRYPT_PLAIN))) {
659 } else if (!strncmp(uuid, CRYPT_LUKS1, strlen(CRYPT_LUKS1)))
663 if (!options->device)
664 options->device = device;
666 r = _crypt_init(&cd, type, options, 1, 1);
670 size = options->size;
671 r = device_check_and_adjust(cd, device, &size, &offset, &read_only);
675 r = dm_create_device(options->name, device, cipher, type,
676 crypt_get_uuid(cd), size, skip, offset,
677 key_size, key, read_only, 1);
681 if (options->device == device)
682 options->device = NULL;
690 /* OPTIONS: name, icb */
691 int crypt_query_device(struct crypt_options *options)
695 log_dbg("Query device %s.", options->name);
697 if (dm_init(NULL, 1) < 0)
700 r = dm_status_device(options->name);
704 r = dm_query_device(options->name, (char **)&options->device, &options->size,
705 &options->skip, &options->offset, (char **)&options->cipher,
706 &options->key_size, NULL, &read_only, NULL, NULL);
709 options->flags |= CRYPT_FLAG_READONLY;
711 options->flags |= CRYPT_FLAG_FREE_DEVICE;
712 options->flags |= CRYPT_FLAG_FREE_CIPHER;
724 /* OPTIONS: name, icb */
725 int crypt_remove_device(struct crypt_options *options)
727 struct crypt_device *cd = NULL;
730 r = crypt_init_by_name(&cd, options->name);
732 r = crypt_deactivate(cd, options->name);
739 /* OPTIONS: device, cipher, hash, align_payload, key_size (master key), key_slot
740 * new_key_file, iteration_time, timeout, flags, icb */
741 int crypt_luksFormat(struct crypt_options *options)
743 char cipherName[LUKS_CIPHERNAME_L];
744 char cipherMode[LUKS_CIPHERMODE_L];
746 unsigned int passwordLen;
747 struct crypt_device *cd = NULL;
748 struct crypt_params_luks1 cp = {
749 .hash = options->hash,
750 .data_alignment = options->align_payload
754 r = parse_into_name_and_mode(options->cipher, cipherName, cipherMode);
756 log_err(cd, _("No known cipher specification pattern detected.\n"));
760 if ((r = _crypt_init(&cd, CRYPT_LUKS1, options, 0, 1)))
763 if (options->key_slot >= LUKS_NUMKEYS && options->key_slot != CRYPT_ANY_SLOT) {
764 log_err(cd, _("Key slot %d is invalid, please select between 0 and %d.\n"),
765 options->key_slot, LUKS_NUMKEYS - 1);
770 get_key(_("Enter LUKS passphrase: "), &password, &passwordLen, 0,
771 options->new_key_file, options->timeout, options->flags, cd);
778 r = crypt_format(cd, CRYPT_LUKS1, cipherName, cipherMode,
779 NULL, NULL, options->key_size, &cp);
783 /* Add keyslot using internally stored volume key generated during format */
784 r = crypt_keyslot_add_by_volume_key(cd, options->key_slot, NULL, 0,
785 password, passwordLen);
789 return (r < 0) ? r : 0;
792 /* OPTIONS: name, device, key_size, key_file, timeout, tries, flags, icb */
793 int crypt_luksOpen(struct crypt_options *options)
795 struct crypt_device *cd = NULL;
802 r = _crypt_init(&cd, CRYPT_LUKS1, options, 1, 1);
806 if (options->flags & CRYPT_FLAG_READONLY)
807 flags |= CRYPT_ACTIVATE_READONLY;
809 if (options->flags & CRYPT_FLAG_NON_EXCLUSIVE_ACCESS)
810 flags |= CRYPT_ACTIVATE_NO_UUID;
812 if (options->key_file)
813 r = crypt_activate_by_keyfile(cd, options->name,
814 CRYPT_ANY_SLOT, options->key_file, options->key_size,
817 r = crypt_activate_by_passphrase(cd, options->name,
818 CRYPT_ANY_SLOT, options->passphrase,
819 options->passphrase ? strlen(options->passphrase) : 0,
823 return (r < 0) ? r : 0;
826 /* OPTIONS: device, keys_slot, key_file, timeout, flags, icb */
827 int crypt_luksKillSlot(struct crypt_options *options)
829 struct crypt_device *cd = NULL;
832 r = _crypt_init(&cd, CRYPT_LUKS1, options, 1, 1);
836 r = luks_remove_helper(cd, options->key_slot, options->key_file, NULL,
837 options->flags & CRYPT_FLAG_VERIFY_ON_DELKEY);
840 return (r < 0) ? r : 0;
843 /* OPTIONS: device, new_key_file, key_file, timeout, flags, icb */
844 int crypt_luksRemoveKey(struct crypt_options *options)
846 struct crypt_device *cd = NULL;
849 r = _crypt_init(&cd, CRYPT_LUKS1, options, 1, 1);
853 r = luks_remove_helper(cd, CRYPT_ANY_SLOT, options->key_file, options->new_key_file,
854 options->flags & CRYPT_FLAG_VERIFY_ON_DELKEY);
857 return (r < 0) ? r : 0;
861 /* OPTIONS: device, new_key_file, key_file, key_slot, flags,
862 iteration_time, timeout, icb */
863 int crypt_luksAddKey(struct crypt_options *options)
865 struct crypt_device *cd = NULL;
868 r = _crypt_init(&cd, CRYPT_LUKS1, options, 1, 1);
872 if (options->key_file || options->new_key_file)
873 r = crypt_keyslot_add_by_keyfile(cd, options->key_slot,
874 options->key_file, 0,
875 options->new_key_file, 0);
877 r = crypt_keyslot_add_by_passphrase(cd, options->key_slot,
881 return (r < 0) ? r : 0;
884 /* OPTIONS: device, icb */
885 int crypt_luksUUID(struct crypt_options *options)
887 struct crypt_device *cd = NULL;
891 r = _crypt_init(&cd, CRYPT_LUKS1, options, 1, 0);
895 uuid = (char *)crypt_get_uuid(cd);
896 log_std(cd, uuid ?: "");
902 /* OPTIONS: device, icb */
903 int crypt_isLuks(struct crypt_options *options)
905 struct crypt_device *cd = NULL;
908 log_dbg("Check device %s for LUKS header.", options->device);
911 log_err(cd, _("Cannot initialize crypto backend.\n"));
915 r = crypt_init(&cd, options->device);
919 /* Do print fail here, no need to crypt_load() */
920 r = LUKS_read_phdr(cd->device, &cd->hdr, 0, cd) ? -EINVAL : 0;
926 /* OPTIONS: device, icb */
927 int crypt_luksDump(struct crypt_options *options)
929 struct crypt_device *cd = NULL;
932 r = _crypt_init(&cd, CRYPT_LUKS1, options, 1, 0);
942 void crypt_get_error(char *buf, size_t size)
944 const char *error = get_error();
946 if (!buf || size < 1)
949 strncpy(buf, error, size - 1);
950 buf[size - 1] = '\0';
956 void crypt_put_options(struct crypt_options *options)
958 if (options->flags & CRYPT_FLAG_FREE_DEVICE) {
959 free((char *)options->device);
960 options->device = NULL;
961 options->flags &= ~CRYPT_FLAG_FREE_DEVICE;
963 if (options->flags & CRYPT_FLAG_FREE_CIPHER) {
964 free((char *)options->cipher);
965 options->cipher = NULL;
966 options->flags &= ~CRYPT_FLAG_FREE_CIPHER;
970 const char *crypt_get_dir(void)
975 /////////////////////////////////
980 int crypt_init(struct crypt_device **cd, const char *device)
982 struct crypt_device *h = NULL;
987 log_dbg("Allocating crypt device %s context.", device);
989 if (device && !device_ready(NULL, device, O_RDONLY))
992 if (!(h = malloc(sizeof(struct crypt_device))))
995 memset(h, 0, sizeof(*h));
998 h->device = strdup(device);
1006 if (dm_init(h, 1) < 0) {
1011 h->iteration_time = 1000;
1012 h->password_verify = 0;
1018 int crypt_init_by_name(struct crypt_device **cd, const char *name)
1020 crypt_status_info ci;
1021 char *device = NULL;
1024 log_dbg("Allocating crypt device context by device %s.", name);
1026 ci = crypt_status(NULL, name);
1027 if (ci == CRYPT_INVALID)
1030 if (ci < CRYPT_ACTIVE) {
1031 log_err(NULL, _("Device %s is not active.\n"), name);
1035 r = dm_query_device(name, &device, NULL, NULL, NULL,
1036 NULL, NULL, NULL, NULL, NULL, NULL);
1038 /* Underlying device disappeared but mapping still active */
1039 if (r >= 0 && !device)
1040 log_verbose(NULL, _("Underlying device for crypt device %s disappeared.\n"),
1044 r = crypt_init(cd, device);
1050 static int _crypt_format_plain(struct crypt_device *cd,
1052 const char *cipher_mode,
1054 struct crypt_params_plain *params)
1056 if (!cipher || !cipher_mode) {
1057 log_err(cd, _("Invalid plain crypt parameters.\n"));
1061 if (cd->volume_key->keyLength > 1024) {
1062 log_err(cd, _("Invalid key size.\n"));
1066 cd->plain_cipher = strdup(cipher);
1067 cd->plain_cipher_mode = strdup(cipher_mode);
1070 cd->plain_uuid = strdup(uuid);
1072 if (params && params->hash)
1073 cd->plain_hdr.hash = strdup(params->hash);
1075 cd->plain_hdr.offset = params ? params->offset : 0;
1076 cd->plain_hdr.skip = params ? params->skip : 0;
1078 if (!cd->plain_cipher || !cd->plain_cipher_mode)
1084 static int _crypt_format_luks1(struct crypt_device *cd,
1086 const char *cipher_mode,
1088 struct crypt_params_luks1 *params)
1091 unsigned long required_alignment = DEFAULT_DISK_ALIGNMENT;
1092 unsigned long alignment_offset = 0;
1095 log_err(cd, _("Can't format LUKS without device.\n"));
1099 if (params && params->data_alignment)
1100 required_alignment = params->data_alignment * SECTOR_SIZE;
1102 get_topology_alignment(cd->device, &required_alignment,
1103 &alignment_offset, DEFAULT_DISK_ALIGNMENT);
1105 r = LUKS_generate_phdr(&cd->hdr, cd->volume_key, cipher, cipher_mode,
1106 (params && params->hash) ? params->hash : "sha1",
1108 required_alignment / SECTOR_SIZE,
1109 alignment_offset / SECTOR_SIZE,
1110 cd->iteration_time, &cd->PBKDF2_per_sec, cd);
1114 /* Wipe first 8 sectors - fs magic numbers etc. */
1115 r = wipe_device_header(cd->device, 8);
1117 log_err(cd, _("Can't wipe header on device %s.\n"), cd->device);
1121 r = LUKS_write_phdr(cd->device, &cd->hdr, cd);
1126 int crypt_format(struct crypt_device *cd,
1129 const char *cipher_mode,
1131 const char *volume_key,
1132 size_t volume_key_size,
1137 log_dbg("Formatting device %s as type %s.", cd->device ?: "(none)", cd->type ?: "(none)");
1142 /* Some hash functions need initialized gcrypt library */
1143 if (init_crypto()) {
1144 log_err(cd, _("Cannot initialize crypto backend.\n"));
1149 cd->volume_key = LUKS_alloc_masterkey(volume_key_size,
1152 cd->volume_key = LUKS_generate_masterkey(volume_key_size);
1158 r = _crypt_format_plain(cd, cipher, cipher_mode,
1160 else if (isLUKS(type))
1161 r = _crypt_format_luks1(cd, cipher, cipher_mode,
1164 /* FIXME: allow plugins here? */
1165 log_err(cd, _("Unknown crypt device type %s requested.\n"), type);
1169 if (!r && !(cd->type = strdup(type)))
1173 LUKS_dealloc_masterkey(cd->volume_key);
1174 cd->volume_key = NULL;
1180 int crypt_load(struct crypt_device *cd,
1181 const char *requested_type,
1184 struct luks_phdr hdr;
1187 log_dbg("Trying to load %s crypt type from device %s.",
1188 requested_type ?: "any", cd->device ?: "(none)");
1193 if (requested_type && !isLUKS(requested_type))
1196 /* Some hash functions need initialized gcrypt library */
1197 if (init_crypto()) {
1198 log_err(cd, _("Cannot initialize crypto backend.\n"));
1202 r = LUKS_read_phdr(cd->device, &hdr, 1, cd);
1205 memcpy(&cd->hdr, &hdr, sizeof(hdr));
1206 cd->type = strdup(requested_type);
1214 int crypt_header_backup(struct crypt_device *cd,
1215 const char *requested_type,
1216 const char *backup_file)
1218 if ((requested_type && !isLUKS(requested_type)) || !backup_file)
1221 /* Some hash functions need initialized gcrypt library */
1222 if (init_crypto()) {
1223 log_err(cd, _("Cannot initialize crypto backend.\n"));
1227 log_dbg("Requested header backup of device %s (%s) to "
1228 "file %s.", cd->device, requested_type, backup_file);
1230 return LUKS_hdr_backup(backup_file, cd->device, &cd->hdr, cd);
1233 int crypt_header_restore(struct crypt_device *cd,
1234 const char *requested_type,
1235 const char *backup_file)
1237 if (requested_type && !isLUKS(requested_type))
1240 /* Some hash functions need initialized gcrypt library */
1241 if (init_crypto()) {
1242 log_err(cd, _("Cannot initialize crypto backend.\n"));
1246 log_dbg("Requested header restore to device %s (%s) from "
1247 "file %s.", cd->device, requested_type, backup_file);
1249 return LUKS_hdr_restore(backup_file, cd->device, &cd->hdr, cd);
1252 void crypt_free(struct crypt_device *cd)
1255 log_dbg("Releasing crypt device %s context.", cd->device);
1259 LUKS_dealloc_masterkey(cd->volume_key);
1264 /* used in plain device only */
1265 free((char*)cd->plain_hdr.hash);
1266 free(cd->plain_cipher);
1267 free(cd->plain_cipher_mode);
1268 free(cd->plain_uuid);
1274 int crypt_suspend(struct crypt_device *cd,
1277 crypt_status_info ci;
1278 int r, suspended = 0;
1280 log_dbg("Suspending volume %s.", name);
1282 ci = crypt_status(NULL, name);
1283 if (ci < CRYPT_ACTIVE) {
1284 log_err(cd, _("Volume %s is not active.\n"), name);
1288 if (!cd && dm_init(NULL, 1) < 0)
1291 r = dm_query_device(name, NULL, NULL, NULL, NULL,
1292 NULL, NULL, NULL, NULL, &suspended, NULL);
1297 log_err(cd, _("Volume %s is already suspended.\n"), name);
1302 r = dm_suspend_and_wipe_key(name);
1304 log_err(cd, "Suspend is not supported for device %s.\n", name);
1306 log_err(cd, "Error during suspending device %s.\n", name);
1313 int crypt_resume_by_passphrase(struct crypt_device *cd,
1316 const char *passphrase,
1317 size_t passphrase_size)
1319 struct luks_masterkey *mk = NULL;
1320 int r, suspended = 0;
1322 log_dbg("Resuming volume %s.", name);
1324 if (!isLUKS(cd->type)) {
1325 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1330 r = dm_query_device(name, NULL, NULL, NULL, NULL,
1331 NULL, NULL, NULL, NULL, &suspended, NULL);
1336 log_err(cd, _("Volume %s is not suspended.\n"), name);
1341 r = LUKS_open_key_with_hdr(cd->device, keyslot, passphrase,
1342 passphrase_size, &cd->hdr, &mk, cd);
1344 r = volume_key_by_terminal_passphrase(cd, keyslot, &mk);
1348 r = dm_resume_and_reinstate_key(name, mk->keyLength, mk->key);
1350 log_err(cd, "Resume is not supported for device %s.\n", name);
1352 log_err(cd, "Error during resuming device %s.\n", name);
1356 LUKS_dealloc_masterkey(mk);
1357 return r < 0 ? r : keyslot;
1360 int crypt_resume_by_keyfile(struct crypt_device *cd,
1363 const char *keyfile,
1364 size_t keyfile_size)
1366 struct luks_masterkey *mk = NULL;
1367 char *passphrase_read = NULL;
1368 unsigned int passphrase_size_read;
1369 int r, suspended = 0;
1371 log_dbg("Resuming volume %s.", name);
1373 if (!isLUKS(cd->type)) {
1374 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1379 r = dm_query_device(name, NULL, NULL, NULL, NULL,
1380 NULL, NULL, NULL, NULL, &suspended, NULL);
1385 log_err(cd, _("Volume %s is not suspended.\n"), name);
1392 key_from_file(cd, _("Enter passphrase: "), &passphrase_read,
1393 &passphrase_size_read, keyfile, keyfile_size);
1395 if(!passphrase_read)
1398 r = LUKS_open_key_with_hdr(cd->device, keyslot, passphrase_read,
1399 passphrase_size_read, &cd->hdr, &mk, cd);
1400 safe_free(passphrase_read);
1405 r = dm_resume_and_reinstate_key(name, mk->keyLength, mk->key);
1407 log_err(cd, "Error during resuming device %s.\n", name);
1411 LUKS_dealloc_masterkey(mk);
1412 return r < 0 ? r : keyslot;
1415 // slot manipulation
1416 int crypt_keyslot_add_by_passphrase(struct crypt_device *cd,
1417 int keyslot, // -1 any
1418 const char *passphrase, // NULL -> terminal
1419 size_t passphrase_size,
1420 const char *new_passphrase, // NULL -> terminal
1421 size_t new_passphrase_size)
1423 struct luks_masterkey *mk = NULL;
1424 char *password = NULL, *new_password = NULL;
1425 unsigned int passwordLen, new_passwordLen;
1428 log_dbg("Adding new keyslot, existing passphrase %sprovided,"
1429 "new passphrase %sprovided.",
1430 passphrase ? "" : "not ", new_passphrase ? "" : "not ");
1432 if (!isLUKS(cd->type)) {
1433 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1437 r = keyslot_verify_or_find_empty(cd, &keyslot);
1441 if (!LUKS_keyslot_active_count(&cd->hdr)) {
1442 /* No slots used, try to use pre-generated key in header */
1443 if (cd->volume_key) {
1444 mk = LUKS_alloc_masterkey(cd->volume_key->keyLength, cd->volume_key->key);
1445 r = mk ? 0 : -ENOMEM;
1447 log_err(cd, _("Cannot add key slot, all slots disabled and no volume key provided.\n"));
1450 } else if (passphrase) {
1451 /* Passphrase provided, use it to unlock existing keyslot */
1452 r = LUKS_open_key_with_hdr(cd->device, CRYPT_ANY_SLOT, passphrase,
1453 passphrase_size, &cd->hdr, &mk, cd);
1455 /* Passphrase not provided, ask first and use it to unlock existing keyslot */
1456 key_from_terminal(cd, _("Enter any passphrase: "),
1457 &password, &passwordLen, 0);
1463 r = LUKS_open_key_with_hdr(cd->device, CRYPT_ANY_SLOT, password,
1464 passwordLen, &cd->hdr, &mk, cd);
1465 safe_free(password);
1471 if (new_passphrase) {
1472 new_password = (char *)new_passphrase;
1473 new_passwordLen = new_passphrase_size;
1475 key_from_terminal(cd, _("Enter new passphrase for key slot: "),
1476 &new_password, &new_passwordLen, 1);
1483 r = LUKS_set_key(cd->device, keyslot, new_password, new_passwordLen,
1484 &cd->hdr, mk, cd->iteration_time, &cd->PBKDF2_per_sec, cd);
1489 if (!new_passphrase)
1490 safe_free(new_password);
1491 LUKS_dealloc_masterkey(mk);
1492 return r ?: keyslot;
1495 int crypt_keyslot_add_by_keyfile(struct crypt_device *cd,
1497 const char *keyfile,
1498 size_t keyfile_size,
1499 const char *new_keyfile,
1500 size_t new_keyfile_size)
1502 struct luks_masterkey *mk=NULL;
1503 char *password=NULL; unsigned int passwordLen;
1504 char *new_password = NULL; unsigned int new_passwordLen;
1507 log_dbg("Adding new keyslot, existing keyfile %s, new keyfile %s.",
1508 keyfile ?: "[none]", new_keyfile ?: "[none]");
1510 if (!isLUKS(cd->type)) {
1511 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1515 r = keyslot_verify_or_find_empty(cd, &keyslot);
1519 if (!LUKS_keyslot_active_count(&cd->hdr)) {
1520 /* No slots used, try to use pre-generated key in header */
1521 if (cd->volume_key) {
1522 mk = LUKS_alloc_masterkey(cd->volume_key->keyLength, cd->volume_key->key);
1523 r = mk ? 0 : -ENOMEM;
1525 log_err(cd, _("Cannot add key slot, all slots disabled and no volume key provided.\n"));
1529 /* Read password from file of (if NULL) from terminal */
1531 key_from_file(cd, _("Enter any passphrase: "), &password, &passwordLen,
1532 keyfile, keyfile_size);
1534 key_from_terminal(cd, _("Enter any passphrase: "),
1535 &password, &passwordLen, 0);
1540 r = LUKS_open_key_with_hdr(cd->device, CRYPT_ANY_SLOT, password, passwordLen,
1542 safe_free(password);
1549 key_from_file(cd, _("Enter new passphrase for key slot: "),
1550 &new_password, &new_passwordLen, new_keyfile,
1553 key_from_terminal(cd, _("Enter new passphrase for key slot: "),
1554 &new_password, &new_passwordLen, 1);
1561 r = LUKS_set_key(cd->device, keyslot, new_password, new_passwordLen,
1562 &cd->hdr, mk, cd->iteration_time, &cd->PBKDF2_per_sec, cd);
1564 safe_free(new_password);
1565 LUKS_dealloc_masterkey(mk);
1566 return r < 0 ? r : keyslot;
1569 int crypt_keyslot_add_by_volume_key(struct crypt_device *cd,
1571 const char *volume_key,
1572 size_t volume_key_size,
1573 const char *passphrase,
1574 size_t passphrase_size)
1576 struct luks_masterkey *mk = NULL;
1578 char *new_password = NULL; unsigned int new_passwordLen;
1580 log_dbg("Adding new keyslot %d using volume key.", keyslot);
1582 if (!isLUKS(cd->type)) {
1583 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1588 mk = LUKS_alloc_masterkey(volume_key_size, volume_key);
1589 else if (cd->volume_key)
1590 mk = LUKS_alloc_masterkey(cd->volume_key->keyLength, cd->volume_key->key);
1595 r = LUKS_verify_master_key(&cd->hdr, mk);
1597 log_err(cd, _("Volume key does not match the volume.\n"));
1601 r = keyslot_verify_or_find_empty(cd, &keyslot);
1606 key_from_terminal(cd, _("Enter new passphrase for key slot: "),
1607 &new_password, &new_passwordLen, 1);
1608 passphrase = new_password;
1609 passphrase_size = new_passwordLen;
1612 r = LUKS_set_key(cd->device, keyslot, passphrase, passphrase_size,
1613 &cd->hdr, mk, cd->iteration_time, &cd->PBKDF2_per_sec, cd);
1616 safe_free(new_password);
1617 LUKS_dealloc_masterkey(mk);
1618 return r ?: keyslot;
1621 int crypt_keyslot_destroy(struct crypt_device *cd, int keyslot)
1623 crypt_keyslot_info ki;
1625 log_dbg("Destroying keyslot %d.", keyslot);
1627 if (!isLUKS(cd->type)) {
1628 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1632 ki = crypt_keyslot_status(cd, keyslot);
1633 if (ki == CRYPT_SLOT_INVALID) {
1634 log_err(cd, _("Key slot %d is invalid.\n"), keyslot);
1638 if (ki == CRYPT_SLOT_INACTIVE) {
1639 log_err(cd, _("Key slot %d is not used.\n"), keyslot);
1643 return LUKS_del_key(cd->device, keyslot, &cd->hdr, cd);
1646 // activation/deactivation of device mapping
1647 int crypt_activate_by_passphrase(struct crypt_device *cd,
1650 const char *passphrase,
1651 size_t passphrase_size,
1654 crypt_status_info ci;
1655 struct luks_masterkey *mk = NULL;
1656 char *prompt = NULL;
1659 log_dbg("%s volume %s [keyslot %d] using %spassphrase.",
1660 name ? "Activating" : "Checking", name ?: "",
1661 keyslot, passphrase ? "" : "[none] ");
1663 /* plain, use hashed passphrase */
1664 if (isPLAIN(cd->type))
1665 return create_device_helper(cd, name, cd->plain_hdr.hash,
1666 cd->plain_cipher, cd->plain_cipher_mode, NULL, passphrase, passphrase_size,
1667 cd->volume_key->keyLength, 0, cd->plain_hdr.skip,
1668 cd->plain_hdr.offset, cd->plain_uuid, flags & CRYPT_ACTIVATE_READONLY, 0, 0);
1671 ci = crypt_status(NULL, name);
1672 if (ci == CRYPT_INVALID)
1674 else if (ci >= CRYPT_ACTIVE) {
1675 log_err(cd, _("Device %s already exists.\n"), name);
1680 if(asprintf(&prompt, _("Enter passphrase for %s: "), cd->device) < 0)
1683 /* provided passphrase, do not retry */
1685 r = LUKS_open_key_with_hdr(cd->device, keyslot, passphrase,
1686 passphrase_size, &cd->hdr, &mk, cd);
1688 r = volume_key_by_terminal_passphrase(cd, keyslot, &mk);
1693 r = open_from_hdr_and_mk(cd, mk, name, flags);
1696 LUKS_dealloc_masterkey(mk);
1699 return r < 0 ? r : keyslot;
1702 int crypt_activate_by_keyfile(struct crypt_device *cd,
1705 const char *keyfile,
1706 size_t keyfile_size,
1709 crypt_status_info ci;
1710 struct luks_masterkey *mk = NULL;
1711 char *passphrase_read = NULL;
1712 unsigned int passphrase_size_read;
1715 log_dbg("Activating volume %s [keyslot %d] using keyfile %s.",
1716 name ?: "", keyslot, keyfile ?: "[none]");
1718 if (!isLUKS(cd->type)) {
1719 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1724 ci = crypt_status(NULL, name);
1725 if (ci == CRYPT_INVALID)
1727 else if (ci >= CRYPT_ACTIVE) {
1728 log_err(cd, _("Device %s already exists.\n"), name);
1736 key_from_file(cd, _("Enter passphrase: "), &passphrase_read,
1737 &passphrase_size_read, keyfile, keyfile_size);
1738 if(!passphrase_read)
1741 r = LUKS_open_key_with_hdr(cd->device, keyslot, passphrase_read,
1742 passphrase_size_read, &cd->hdr, &mk, cd);
1743 safe_free(passphrase_read);
1749 r = open_from_hdr_and_mk(cd, mk, name, flags);
1752 LUKS_dealloc_masterkey(mk);
1754 return r < 0 ? r : keyslot;
1757 int crypt_activate_by_volume_key(struct crypt_device *cd,
1759 const char *volume_key,
1760 size_t volume_key_size,
1763 crypt_status_info ci;
1764 struct luks_masterkey *mk;
1767 log_dbg("Activating volume %s by volume key.", name);
1769 /* use key directly, no hash */
1770 if (isPLAIN(cd->type))
1771 return create_device_helper(cd, name, NULL,
1772 cd->plain_cipher, cd->plain_cipher_mode, NULL, volume_key, volume_key_size,
1773 cd->volume_key->keyLength, 0, cd->plain_hdr.skip,
1774 cd->plain_hdr.offset, cd->plain_uuid, flags & CRYPT_ACTIVATE_READONLY, 0, 0);
1776 if (!isLUKS(cd->type)) {
1777 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1782 ci = crypt_status(NULL, name);
1783 if (ci == CRYPT_INVALID)
1785 else if (ci >= CRYPT_ACTIVE) {
1786 log_err(cd, _("Device %s already exists.\n"), name);
1791 mk = LUKS_alloc_masterkey(volume_key_size, volume_key);
1794 r = LUKS_verify_master_key(&cd->hdr, mk);
1797 log_err(cd, _("Volume key does not match the volume.\n"));
1800 r = open_from_hdr_and_mk(cd, mk, name, flags);
1802 LUKS_dealloc_masterkey(mk);
1807 int crypt_deactivate(struct crypt_device *cd, const char *name)
1814 log_dbg("Deactivating volume %s.", name);
1816 if (!cd && dm_init(NULL, 1) < 0)
1819 switch (crypt_status(cd, name)) {
1821 r = dm_remove_device(name, 0, 0);
1824 log_err(cd, _("Device %s is busy.\n"), name);
1827 case CRYPT_INACTIVE:
1828 log_err(cd, _("Device %s is not active.\n"), name);
1832 log_err(cd, _("Invalid device %s.\n"), name);
1842 // misc helper functions
1843 int crypt_volume_key_get(struct crypt_device *cd,
1846 size_t *volume_key_size,
1847 const char *passphrase,
1848 size_t passphrase_size)
1850 struct luks_masterkey *mk;
1851 char *processed_key = NULL;
1854 key_len = crypt_get_volume_key_size(cd);
1855 if (key_len > *volume_key_size) {
1856 log_err(cd, _("Volume key buffer too small.\n"));
1860 if (isPLAIN(cd->type) && cd->plain_hdr.hash) {
1861 processed_key = process_key(cd, cd->plain_hdr.hash, NULL, key_len,
1862 passphrase, passphrase_size);
1863 if (!processed_key) {
1864 log_err(cd, _("Cannot retrieve volume key for plain device.\n"));
1867 memcpy(volume_key, processed_key, key_len);
1868 *volume_key_size = key_len;
1869 safe_free(processed_key);
1873 if (isLUKS(cd->type)) {
1874 r = LUKS_open_key_with_hdr(cd->device, keyslot, passphrase,
1875 passphrase_size, &cd->hdr, &mk, cd);
1878 memcpy(volume_key, mk->key, mk->keyLength);
1879 *volume_key_size = mk->keyLength;
1882 LUKS_dealloc_masterkey(mk);
1886 log_err(cd, _("This operation is not supported for %s crypt device.\n"), cd->type ?: "(none)");
1890 int crypt_volume_key_verify(struct crypt_device *cd,
1891 const char *volume_key,
1892 size_t volume_key_size)
1894 struct luks_masterkey *mk;
1897 if (!isLUKS(cd->type)) {
1898 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1902 mk = LUKS_alloc_masterkey(volume_key_size, volume_key);
1906 r = LUKS_verify_master_key(&cd->hdr, mk);
1909 log_err(cd, _("Volume key does not match the volume.\n"));
1911 LUKS_dealloc_masterkey(mk);
1916 void crypt_set_timeout(struct crypt_device *cd, uint64_t timeout_sec)
1918 log_dbg("Timeout set to %" PRIu64 " miliseconds.", timeout_sec);
1919 cd->timeout = timeout_sec;
1922 void crypt_set_password_retry(struct crypt_device *cd, int tries)
1924 log_dbg("Password retry count set to %d.", tries);
1928 void crypt_set_iterarion_time(struct crypt_device *cd, uint64_t iteration_time_ms)
1930 log_dbg("Iteration time set to %" PRIu64 " miliseconds.", iteration_time_ms);
1931 cd->iteration_time = iteration_time_ms;
1934 void crypt_set_password_verify(struct crypt_device *cd, int password_verify)
1936 log_dbg("Password verification %s.", password_verify ? "enabled" : "disabled");
1937 cd->password_verify = password_verify ? 1 : 0;
1940 int crypt_memory_lock(struct crypt_device *cd, int lock)
1942 return lock ? crypt_memlock_inc(cd) : crypt_memlock_dec(cd);
1946 crypt_status_info crypt_status(struct crypt_device *cd, const char *name)
1950 if (!cd && dm_init(NULL, 1) < 0)
1951 return CRYPT_INVALID;
1953 r = dm_status_device(name);
1958 if (r < 0 && r != -ENODEV)
1959 return CRYPT_INVALID;
1962 return CRYPT_ACTIVE;
1967 return CRYPT_INACTIVE;
1970 static void hexprintICB(struct crypt_device *cd, char *d, int n)
1973 for(i = 0; i < n; i++)
1974 log_std(cd, "%02hhx ", (char)d[i]);
1977 int crypt_dump(struct crypt_device *cd)
1980 if (!isLUKS(cd->type)) { //FIXME
1981 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1985 log_std(cd, "LUKS header information for %s\n\n", cd->device);
1986 log_std(cd, "Version: \t%d\n", cd->hdr.version);
1987 log_std(cd, "Cipher name: \t%s\n", cd->hdr.cipherName);
1988 log_std(cd, "Cipher mode: \t%s\n", cd->hdr.cipherMode);
1989 log_std(cd, "Hash spec: \t%s\n", cd->hdr.hashSpec);
1990 log_std(cd, "Payload offset:\t%d\n", cd->hdr.payloadOffset);
1991 log_std(cd, "MK bits: \t%d\n", cd->hdr.keyBytes * 8);
1992 log_std(cd, "MK digest: \t");
1993 hexprintICB(cd, cd->hdr.mkDigest, LUKS_DIGESTSIZE);
1995 log_std(cd, "MK salt: \t");
1996 hexprintICB(cd, cd->hdr.mkDigestSalt, LUKS_SALTSIZE/2);
1997 log_std(cd, "\n \t");
1998 hexprintICB(cd, cd->hdr.mkDigestSalt+LUKS_SALTSIZE/2, LUKS_SALTSIZE/2);
2000 log_std(cd, "MK iterations: \t%d\n", cd->hdr.mkDigestIterations);
2001 log_std(cd, "UUID: \t%s\n\n", cd->hdr.uuid);
2002 for(i = 0; i < LUKS_NUMKEYS; i++) {
2003 if(cd->hdr.keyblock[i].active == LUKS_KEY_ENABLED) {
2004 log_std(cd, "Key Slot %d: ENABLED\n",i);
2005 log_std(cd, "\tIterations: \t%d\n",
2006 cd->hdr.keyblock[i].passwordIterations);
2007 log_std(cd, "\tSalt: \t");
2008 hexprintICB(cd, cd->hdr.keyblock[i].passwordSalt,
2010 log_std(cd, "\n\t \t");
2011 hexprintICB(cd, cd->hdr.keyblock[i].passwordSalt +
2012 LUKS_SALTSIZE/2, LUKS_SALTSIZE/2);
2015 log_std(cd, "\tKey material offset:\t%d\n",
2016 cd->hdr.keyblock[i].keyMaterialOffset);
2017 log_std(cd, "\tAF stripes: \t%d\n",
2018 cd->hdr.keyblock[i].stripes);
2021 log_std(cd, "Key Slot %d: DISABLED\n", i);
2024 log_std(cd, "DNAME: %s\n", crypt_get_device_name(cd) ?: "");
2029 const char *crypt_get_cipher(struct crypt_device *cd)
2031 if (isPLAIN(cd->type))
2032 return cd->plain_cipher;
2034 if (isLUKS(cd->type))
2035 return cd->hdr.cipherName;
2040 const char *crypt_get_cipher_mode(struct crypt_device *cd)
2042 if (isPLAIN(cd->type))
2043 return cd->plain_cipher_mode;
2045 if (isLUKS(cd->type))
2046 return cd->hdr.cipherMode;
2051 const char *crypt_get_uuid(struct crypt_device *cd)
2053 if (isLUKS(cd->type))
2054 return cd->hdr.uuid;
2059 const char *crypt_get_device_name(struct crypt_device *cd)
2064 int crypt_get_volume_key_size(struct crypt_device *cd)
2066 if (isPLAIN(cd->type))
2067 return cd->volume_key->keyLength;
2069 if (isLUKS(cd->type))
2070 return cd->hdr.keyBytes;
2075 uint64_t crypt_get_data_offset(struct crypt_device *cd)
2077 if (isPLAIN(cd->type))
2078 return cd->plain_hdr.offset;
2080 if (isLUKS(cd->type))
2081 return cd->hdr.payloadOffset;
2086 crypt_keyslot_info crypt_keyslot_status(struct crypt_device *cd, int keyslot)
2088 if (!isLUKS(cd->type)) {
2089 log_err(cd, _("This operation is supported only for LUKS device.\n"));
2090 return CRYPT_SLOT_INVALID;
2093 return LUKS_keyslot_info(&cd->hdr, keyslot);