12 #include <libcryptsetup.h>
15 #include "../config.h"
17 #include "cryptsetup.h"
19 static int opt_verbose = 0;
20 static int opt_debug = 0;
21 static char *opt_cipher = NULL;
22 static char *opt_hash = NULL;
23 static int opt_verify_passphrase = 0;
24 static char *opt_key_file = NULL;
25 static char *opt_master_key_file = NULL;
26 static char *opt_header_backup_file = NULL;
27 static unsigned int opt_key_size = 0;
28 static int opt_key_slot = CRYPT_ANY_SLOT;
29 static uint64_t opt_size = 0;
30 static uint64_t opt_offset = 0;
31 static uint64_t opt_skip = 0;
32 static int opt_readonly = 0;
33 static int opt_iteration_time = 1000;
34 static int opt_batch_mode = 0;
35 static int opt_version_mode = 0;
36 static int opt_timeout = 0;
37 static int opt_tries = 3;
38 static int opt_align_payload = 0;
39 static int opt_non_exclusive = 0;
41 static const char **action_argv;
42 static int action_argc;
44 static int action_create(int arg);
45 static int action_remove(int arg);
46 static int action_resize(int arg);
47 static int action_status(int arg);
48 static int action_luksFormat(int arg);
49 static int action_luksOpen(int arg);
50 static int action_luksAddKey(int arg);
51 static int action_luksDelKey(int arg);
52 static int action_luksKillSlot(int arg);
53 static int action_luksRemoveKey(int arg);
54 static int action_isLuks(int arg);
55 static int action_luksUUID(int arg);
56 static int action_luksDump(int arg);
57 static int action_luksSuspend(int arg);
58 static int action_luksResume(int arg);
59 static int action_luksBackup(int arg);
60 static int action_luksRestore(int arg);
62 static struct action_type {
66 int required_action_argc;
71 { "create", action_create, 0, 2, 1, N_("<name> <device>"),N_("create device") },
72 { "remove", action_remove, 0, 1, 1, N_("<name>"), N_("remove device") },
73 { "resize", action_resize, 0, 1, 1, N_("<name>"), N_("resize active device") },
74 { "status", action_status, 0, 1, 0, N_("<name>"), N_("show device status") },
75 { "luksFormat", action_luksFormat, 0, 1, 1, N_("<device> [<new key file>]"), N_("formats a LUKS device") },
76 { "luksOpen", action_luksOpen, 0, 2, 1, N_("<device> <name> "), N_("open LUKS device as mapping <name>") },
77 { "luksAddKey", action_luksAddKey, 0, 1, 1, N_("<device> [<new key file>]"), N_("add key to LUKS device") },
78 { "luksRemoveKey",action_luksRemoveKey, 0, 1, 1, N_("<device> [<key file>]"), N_("removes supplied key or key file from LUKS device") },
79 { "luksKillSlot", action_luksKillSlot, 0, 2, 1, N_("<device> <key slot>"), N_("wipes key with number <key slot> from LUKS device") },
80 { "luksUUID", action_luksUUID, 0, 1, 0, N_("<device>"), N_("print UUID of LUKS device") },
81 { "isLuks", action_isLuks, 0, 1, 0, N_("<device>"), N_("tests <device> for LUKS partition header") },
82 { "luksClose", action_remove, 0, 1, 1, N_("<name>"), N_("remove LUKS mapping") },
83 { "luksDump", action_luksDump, 0, 1, 0, N_("<device>"), N_("dump LUKS partition information") },
84 { "luksSuspend",action_luksSuspend, 0, 1, 1, N_("<device>"), N_("Suspend LUKS device and wipe key (all IOs are frozen).") },
85 { "luksResume", action_luksResume, 0, 1, 1, N_("<device>"), N_("Resume suspended LUKS device.") },
86 { "luksHeaderBackup",action_luksBackup, 0, 1, 1, N_("<device>"), N_("Backup LUKS device header and keyslots") },
87 { "luksHeaderRestore",action_luksRestore,0,1, 1, N_("<device>"), N_("Restore LUKS device header and keyslots") },
88 { "luksDelKey", action_luksDelKey, 0, 2, 1, N_("<device> <key slot>"), N_("identical to luksKillSlot - DEPRECATED - see man page") },
89 { "reload", action_create, 1, 2, 1, N_("<name> <device>"), N_("modify active device - DEPRECATED - see man page") },
90 { NULL, NULL, 0, 0, 0, NULL, NULL }
93 static void clogger(struct crypt_device *cd, int class, const char *file,
94 int line, const char *format, ...)
99 va_start(argp, format);
101 if (vasprintf(&target, format, argp) > 0) {
103 crypt_log(cd, class, target);
105 } else if (opt_debug)
106 printf("# %s:%d %s\n", file ?: "?", line, target);
108 } else if (opt_debug)
109 printf("# %s\n", target);
117 /* Interface Callbacks */
118 static int yesDialog(char *msg)
124 if(isatty(0) && !opt_batch_mode) {
125 log_std("\nWARNING!\n========\n");
126 log_std("%s\n\nAre you sure? (Type uppercase yes): ", msg);
127 if(getline(&answer, &size, stdin) == -1) {
132 if(strcmp(answer, "YES\n"))
140 static void cmdLineLog(int class, char *msg) {
143 case CRYPT_LOG_NORMAL:
146 case CRYPT_LOG_ERROR:
150 fprintf(stderr, "Internal error on logging class for msg: %s", msg);
155 static struct interface_callbacks cmd_icb = {
156 .yesDialog = yesDialog,
160 static void _log(int class, const char *msg, void *usrptr)
162 cmdLineLog(class, (char *)msg);
165 static int _yesDialog(const char *msg, void *usrptr)
167 return yesDialog((char*)msg);
172 static void show_status(int errcode)
174 char error[256], *error_;
180 log_std(_("Command successful.\n"));
184 crypt_get_error(error, sizeof(error));
187 error_ = strerror_r(-errcode, error, sizeof(error));
188 if (error_ != error) {
189 strncpy(error, error_, sizeof(error));
190 error[sizeof(error) - 1] = '\0';
194 log_err(_("Command failed with code %i"), -errcode);
196 log_err(": %s\n", error);
201 static int action_create(int reload)
203 struct crypt_options options = {
204 .name = action_argv[0],
205 .device = action_argv[1],
206 .cipher = opt_cipher?opt_cipher:DEFAULT_CIPHER,
207 .hash = opt_hash ?: DEFAULT_HASH,
208 .key_file = opt_key_file,
209 .key_size = ((opt_key_size)?opt_key_size:DEFAULT_KEY_SIZE)/8,
210 .key_slot = opt_key_slot,
213 .offset = opt_offset,
215 .timeout = opt_timeout,
222 log_err(_("The reload action is deprecated. Please use \"dmsetup reload\" in case you really need this functionality.\nWARNING: do not use reload to touch LUKS devices. If that is the case, hit Ctrl-C now.\n"));
224 if (options.hash && strcmp(options.hash, "plain") == 0)
226 if (opt_verify_passphrase)
227 options.flags |= CRYPT_FLAG_VERIFY;
229 options.flags |= CRYPT_FLAG_READONLY;
232 r = crypt_update_device(&options);
234 r = crypt_create_device(&options);
239 static int action_remove(int arg)
241 struct crypt_options options = {
242 .name = action_argv[0],
246 return crypt_remove_device(&options);
249 static int action_resize(int arg)
251 struct crypt_options options = {
252 .name = action_argv[0],
257 return crypt_resize_device(&options);
260 static int action_status(int arg)
262 struct crypt_options options = {
263 .name = action_argv[0],
268 r = crypt_query_device(&options);
274 log_std("%s/%s is inactive.\n", crypt_get_dir(), options.name);
278 log_std("%s/%s is active:\n", crypt_get_dir(), options.name);
279 log_std(" cipher: %s\n", options.cipher);
280 log_std(" keysize: %d bits\n", options.key_size * 8);
281 log_std(" device: %s\n", options.device);
282 log_std(" offset: %" PRIu64 " sectors\n", options.offset);
283 log_std(" size: %" PRIu64 " sectors\n", options.size);
285 log_std(" skipped: %" PRIu64 " sectors\n", options.skip);
286 log_std(" mode: %s\n", (options.flags & CRYPT_FLAG_READONLY)
287 ? "readonly" : "read/write");
288 crypt_put_options(&options);
294 static int _action_luksFormat_generateMK()
296 struct crypt_options options = {
297 .key_size = (opt_key_size ?: DEFAULT_LUKS_KEY_SIZE) / 8,
298 .key_slot = opt_key_slot,
299 .device = action_argv[0],
300 .cipher = opt_cipher ?: DEFAULT_LUKS_CIPHER,
301 .hash = opt_hash ?: DEFAULT_LUKS_HASH,
302 .new_key_file = action_argc > 1 ? action_argv[1] : NULL,
303 .flags = opt_verify_passphrase ? CRYPT_FLAG_VERIFY : (!opt_batch_mode?CRYPT_FLAG_VERIFY_IF_POSSIBLE : 0),
304 .iteration_time = opt_iteration_time,
305 .timeout = opt_timeout,
306 .align_payload = opt_align_payload,
310 return crypt_luksFormat(&options);
313 static int _read_mk(const char *file, char **key, int keysize)
317 *key = malloc(keysize);
321 fd = open(file, O_RDONLY);
323 log_err("Cannot read keyfile %s.\n", file);
326 if ((read(fd, *key, keysize) != keysize)) {
327 log_err("Cannot read %d bytes from keyfile %s.\n", keysize, file);
329 memset(*key, 0, keysize);
337 static int _action_luksFormat_useMK()
339 int r = -EINVAL, keysize;
340 char *key = NULL, cipher [MAX_CIPHER_LEN], cipher_mode[MAX_CIPHER_LEN];
341 struct crypt_device *cd = NULL;
342 struct crypt_params_luks1 params = {
343 .hash = opt_hash ?: DEFAULT_LUKS_HASH,
344 .data_alignment = opt_align_payload,
347 if (sscanf(opt_cipher ?: DEFAULT_LUKS_CIPHER,
348 "%" MAX_CIPHER_LEN_STR "[^-]-%" MAX_CIPHER_LEN_STR "s",
349 cipher, cipher_mode) != 2) {
350 log_err("No known cipher specification pattern detected.\n");
354 keysize = (opt_key_size ?: DEFAULT_LUKS_KEY_SIZE) / 8;
355 if (_read_mk(opt_master_key_file, &key, keysize) < 0)
358 if ((r = crypt_init(&cd, action_argv[0])))
361 crypt_set_password_verify(cd, 1);
362 crypt_set_timeout(cd, opt_timeout);
363 if (opt_iteration_time)
364 crypt_set_iterarion_time(cd, opt_iteration_time);
366 if ((r = crypt_format(cd, CRYPT_LUKS1, cipher, cipher_mode, NULL, key, keysize, ¶ms)))
369 r = crypt_keyslot_add_by_volume_key(cd, opt_key_slot, key, keysize, NULL, 0);
374 memset(key, 0, keysize);
380 static int action_luksFormat(int arg)
382 int r = 0; char *msg = NULL;
384 /* Avoid overwriting possibly wrong part of device than user requested by rejecting these options */
385 if (opt_offset || opt_skip) {
386 log_err("Options --offset and --skip are not supported for luksFormat.\n");
390 if(asprintf(&msg, _("This will overwrite data on %s irrevocably."), action_argv[0]) == -1) {
391 log_err(_("memory allocation error in action_luksFormat"));
400 if (opt_master_key_file)
401 return _action_luksFormat_useMK();
403 return _action_luksFormat_generateMK();
406 static int action_luksOpen(int arg)
408 struct crypt_options options = {
409 .name = action_argv[1],
410 .device = action_argv[0],
411 .key_file = opt_key_file,
412 .key_size = opt_key_file ? (opt_key_size / 8) : 0, /* limit bytes read from keyfile */
413 .timeout = opt_timeout,
414 .tries = opt_key_file ? 1 : opt_tries, /* verify is usefull only for tty */
419 options.flags |= CRYPT_FLAG_READONLY;
420 if (opt_non_exclusive)
421 log_err(_("Obsolete option --non-exclusive is ignored.\n"));
423 return crypt_luksOpen(&options);
426 static int action_luksDelKey(int arg)
428 log_err("luksDelKey is a deprecated action name.\nPlease use luksKillSlot.\n");
429 return action_luksKillSlot(arg);
432 static int action_luksKillSlot(int arg)
434 struct crypt_options options = {
435 .device = action_argv[0],
436 .key_slot = atoi(action_argv[1]),
437 .key_file = opt_key_file,
438 .timeout = opt_timeout,
439 .flags = !opt_batch_mode?CRYPT_FLAG_VERIFY_ON_DELKEY : 0,
443 return crypt_luksKillSlot(&options);
446 static int action_luksRemoveKey(int arg)
448 struct crypt_options options = {
449 .device = action_argv[0],
450 .new_key_file = action_argc>1?action_argv[1]:NULL,
451 .key_file = opt_key_file,
452 .timeout = opt_timeout,
453 .flags = !opt_batch_mode?CRYPT_FLAG_VERIFY_ON_DELKEY : 0,
457 return crypt_luksRemoveKey(&options);
460 static int _action_luksAddKey_useMK()
462 int r = -EINVAL, keysize;
464 struct crypt_device *cd = NULL;
466 if ((r = crypt_init(&cd, action_argv[0])))
469 if ((r = crypt_load(cd, CRYPT_LUKS1, NULL)))
472 keysize = crypt_get_volume_key_size(cd);
473 crypt_set_password_verify(cd, 1);
474 crypt_set_timeout(cd, opt_timeout);
475 if (opt_iteration_time)
476 crypt_set_iterarion_time(cd, opt_iteration_time);
478 if (_read_mk(opt_master_key_file, &key, keysize) < 0)
481 r = crypt_keyslot_add_by_volume_key(cd, opt_key_slot, key, keysize, NULL, 0);
485 memset(key, 0, keysize);
491 static int action_luksAddKey(int arg)
493 struct crypt_options options = {
494 .device = action_argv[0],
495 .new_key_file = action_argc>1?action_argv[1]:NULL,
496 .key_file = opt_key_file,
497 .key_slot = opt_key_slot,
498 .flags = opt_verify_passphrase ? CRYPT_FLAG_VERIFY : (!opt_batch_mode?CRYPT_FLAG_VERIFY_IF_POSSIBLE : 0),
499 .iteration_time = opt_iteration_time,
500 .timeout = opt_timeout,
504 if (opt_master_key_file)
505 return _action_luksAddKey_useMK();
507 return crypt_luksAddKey(&options);
510 static int action_isLuks(int arg)
512 struct crypt_options options = {
513 .device = action_argv[0],
517 return crypt_isLuks(&options);
520 static int action_luksUUID(int arg)
522 struct crypt_options options = {
523 .device = action_argv[0],
527 return crypt_luksUUID(&options);
530 static int action_luksDump(int arg)
532 struct crypt_options options = {
533 .device = action_argv[0],
537 return crypt_luksDump(&options);
540 static int action_luksSuspend(int arg)
542 struct crypt_device *cd = NULL;
545 r = crypt_init_by_name(&cd, action_argv[0]);
547 r = crypt_suspend(cd, action_argv[0]);
553 static int action_luksResume(int arg)
555 struct crypt_device *cd = NULL;
558 if ((r = crypt_init_by_name(&cd, action_argv[0])))
561 if ((r = crypt_load(cd, CRYPT_LUKS1, NULL)))
565 r = crypt_resume_by_keyfile(cd, action_argv[0], CRYPT_ANY_SLOT,
566 opt_key_file, opt_key_size / 8);
568 r = crypt_resume_by_passphrase(cd, action_argv[0], CRYPT_ANY_SLOT,
575 static int action_luksBackup(int arg)
577 struct crypt_device *cd = NULL;
580 if (!opt_header_backup_file) {
581 log_err(_("Option --header-backup-file is required.\n"));
585 if ((r = crypt_init(&cd, action_argv[0])))
588 crypt_set_log_callback(cd, _log, NULL);
589 crypt_set_confirm_callback(cd, _yesDialog, NULL);
591 r = crypt_header_backup(cd, CRYPT_LUKS1, opt_header_backup_file);
597 static int action_luksRestore(int arg)
599 struct crypt_device *cd = NULL;
602 if (!opt_header_backup_file) {
603 log_err(_("Option --header-backup-file is required.\n"));
607 if ((r = crypt_init(&cd, action_argv[0])))
610 crypt_set_log_callback(cd, _log, NULL);
611 crypt_set_confirm_callback(cd, _yesDialog, NULL);
612 r = crypt_header_restore(cd, CRYPT_LUKS1, opt_header_backup_file);
618 static void usage(poptContext popt_context, int exitcode,
619 const char *error, const char *more)
621 poptPrintUsage(popt_context, stderr, 0);
623 log_err("%s: %s\n", more, error);
627 static void help(poptContext popt_context, enum poptCallbackReason reason,
628 struct poptOption *key, const char * arg, void *data)
630 if (key->shortName == '?') {
631 struct action_type *action;
633 log_std("%s\n",PACKAGE_STRING);
635 poptPrintHelp(popt_context, stdout, 0);
638 "<action> is one of:\n"));
640 for(action = action_types; action->type; action++)
641 log_std("\t%s %s - %s\n", action->type, _(action->arg_desc), _(action->desc));
644 "<name> is the device to create under %s\n"
645 "<device> is the encrypted device\n"
646 "<key slot> is the LUKS key slot number to modify\n"
647 "<key file> optional key file for the new key for luksAddKey action\n"),
651 usage(popt_context, 0, NULL, NULL);
654 void set_debug_level(int level);
656 static void _dbg_version_and_cmd(int argc, char **argv)
660 log_std("# %s %s processing \"", PACKAGE_NAME, PACKAGE_VERSION);
661 for (i = 0; i < argc; i++) {
669 static int run_action(struct action_type *action)
673 if (action->required_memlock)
674 crypt_memory_lock(NULL, 1);
676 r = action->handler(action->arg);
678 if (action->required_memlock)
679 crypt_memory_lock(NULL, 0);
686 int main(int argc, char **argv)
688 static char *popt_tmp;
689 static struct poptOption popt_help_options[] = {
690 { NULL, '\0', POPT_ARG_CALLBACK, help, 0, NULL, NULL },
691 { "help", '?', POPT_ARG_NONE, NULL, 0, N_("Show this help message"), NULL },
692 { "usage", '\0', POPT_ARG_NONE, NULL, 0, N_("Display brief usage"), NULL },
695 static struct poptOption popt_options[] = {
696 { NULL, '\0', POPT_ARG_INCLUDE_TABLE, popt_help_options, 0, N_("Help options:"), NULL },
697 { "verbose", 'v', POPT_ARG_NONE, &opt_verbose, 0, N_("Shows more detailed error messages"), NULL },
698 { "debug", '\0', POPT_ARG_NONE, &opt_debug, 0, N_("Show debug messages"), NULL },
699 { "cipher", 'c', POPT_ARG_STRING | POPT_ARGFLAG_SHOW_DEFAULT, &opt_cipher, 0, N_("The cipher used to encrypt the disk (see /proc/crypto)"), NULL },
700 { "hash", 'h', POPT_ARG_STRING | POPT_ARGFLAG_SHOW_DEFAULT, &opt_hash, 0, N_("The hash used to create the encryption key from the passphrase"), NULL },
701 { "verify-passphrase", 'y', POPT_ARG_NONE, &opt_verify_passphrase, 0, N_("Verifies the passphrase by asking for it twice"), NULL },
702 { "key-file", 'd', POPT_ARG_STRING, &opt_key_file, 0, N_("Read the key from a file (can be /dev/random)"), NULL },
703 { "master-key-file", '\0', POPT_ARG_STRING, &opt_master_key_file, 0, N_("Read the volume (master) key from file."), NULL },
704 { "key-size", 's', POPT_ARG_INT | POPT_ARGFLAG_SHOW_DEFAULT, &opt_key_size, 0, N_("The size of the encryption key"), N_("BITS") },
705 { "key-slot", 'S', POPT_ARG_INT, &opt_key_slot, 0, N_("Slot number for new key (default is first free)"), NULL },
706 { "size", 'b', POPT_ARG_STRING, &popt_tmp, 1, N_("The size of the device"), N_("SECTORS") },
707 { "offset", 'o', POPT_ARG_STRING, &popt_tmp, 2, N_("The start offset in the backend device"), N_("SECTORS") },
708 { "skip", 'p', POPT_ARG_STRING, &popt_tmp, 3, N_("How many sectors of the encrypted data to skip at the beginning"), N_("SECTORS") },
709 { "readonly", 'r', POPT_ARG_NONE, &opt_readonly, 0, N_("Create a readonly mapping"), NULL },
710 { "iter-time", 'i', POPT_ARG_INT, &opt_iteration_time, 0, N_("PBKDF2 iteration time for LUKS (in ms)"),
712 { "batch-mode", 'q', POPT_ARG_NONE, &opt_batch_mode, 0, N_("Do not ask for confirmation"), NULL },
713 { "version", '\0', POPT_ARG_NONE, &opt_version_mode, 0, N_("Print package version"), NULL },
714 { "timeout", 't', POPT_ARG_INT, &opt_timeout, 0, N_("Timeout for interactive passphrase prompt (in seconds)"), N_("secs") },
715 { "tries", 'T', POPT_ARG_INT, &opt_tries, 0, N_("How often the input of the passphrase canbe retried"), NULL },
716 { "align-payload", '\0', POPT_ARG_INT, &opt_align_payload, 0, N_("Align payload at <n> sector boundaries - for luksFormat"), N_("SECTORS") },
717 { "non-exclusive", '\0', POPT_ARG_NONE, &opt_non_exclusive, 0, N_("Allows non-exclusive access for luksOpen, WARNING see manpage."), NULL },
718 { "header-backup-file",'\0', POPT_ARG_STRING, &opt_header_backup_file,0, N_("File with LUKS header and keyslots backup."), NULL },
721 poptContext popt_context;
722 struct action_type *action;
725 const char *null_action_argv[] = {NULL};
727 crypt_set_log_callback(NULL, _log, NULL);
729 setlocale(LC_ALL, "");
730 bindtextdomain(PACKAGE, LOCALEDIR);
733 popt_context = poptGetContext(PACKAGE, argc, (const char **)argv,
735 poptSetOtherOptionHelp(popt_context,
736 N_("[OPTION...] <action> <action-specific>]"));
738 while((r = poptGetNextOpt(popt_context)) > 0) {
739 unsigned long long ull_value;
742 ull_value = strtoull(popt_tmp, &endp, 0);
743 if (*endp || !*popt_tmp)
744 r = POPT_ERROR_BADNUMBER;
748 opt_size = ull_value;
751 opt_offset = ull_value;
754 opt_skip = ull_value;
763 usage(popt_context, 1, poptStrerror(r),
764 poptBadOption(popt_context, POPT_BADOPTION_NOALIAS));
765 if (opt_version_mode) {
766 log_std("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION);
770 if (opt_key_size % 8)
771 usage(popt_context, 1,
772 _("Key size must be a multiple of 8 bits"),
773 poptGetInvocationName(popt_context));
775 if (!(aname = (char *)poptGetArg(popt_context)))
776 usage(popt_context, 1, _("Argument <action> missing."),
777 poptGetInvocationName(popt_context));
778 for(action = action_types; action->type; action++)
779 if (strcmp(action->type, aname) == 0)
782 usage(popt_context, 1, _("Unknown action."),
783 poptGetInvocationName(popt_context));
786 action_argv = poptGetArgs(popt_context);
787 /* Make return values of poptGetArgs more consistent in case of remaining argc = 0 */
789 action_argv = null_action_argv;
791 /* Count args, somewhat unnice, change? */
792 while(action_argv[action_argc] != NULL)
795 if(action_argc < action->required_action_argc) {
797 snprintf(buf, 128,_("%s: requires %s as arguments"), action->type, action->arg_desc);
798 usage(popt_context, 1, buf,
799 poptGetInvocationName(popt_context));
804 crypt_set_debug_level(-1);
805 _dbg_version_and_cmd(argc, argv);
808 return run_action(action);