Move dm backend initialisation to library calls.
[platform/upstream/cryptsetup.git] / src / cryptsetup.c
1 #include <string.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <stdint.h>
5 #include <stdarg.h>
6 #include <inttypes.h>
7 #include <errno.h>
8 #include <unistd.h>
9 #include <fcntl.h>
10 #include <assert.h>
11
12 #include <libcryptsetup.h>
13 #include <popt.h>
14
15 #include "../config.h"
16
17 #include "cryptsetup.h"
18
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;
40
41 static const char **action_argv;
42 static int action_argc;
43
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);
61
62 static struct action_type {
63         const char *type;
64         int (*handler)(int);
65         int arg;
66         int required_action_argc;
67         int required_memlock;
68         int show_status;
69         const char *arg_desc;
70         const char *desc;
71 } action_types[] = {
72         { "create",     action_create,          0, 2, 1, 1, N_("<name> <device>"),N_("create device") },
73         { "remove",     action_remove,          0, 1, 1, 1, N_("<name>"), N_("remove device") },
74         { "resize",     action_resize,          0, 1, 1, 1, N_("<name>"), N_("resize active device") },
75         { "status",     action_status,          0, 1, 0, 1, N_("<name>"), N_("show device status") },
76         { "luksFormat", action_luksFormat,      0, 1, 1, 1, N_("<device> [<new key file>]"), N_("formats a LUKS device") },
77         { "luksOpen",   action_luksOpen,        0, 2, 1, 1, N_("<device> <name> "), N_("open LUKS device as mapping <name>") },
78         { "luksAddKey", action_luksAddKey,      0, 1, 1, 1, N_("<device> [<new key file>]"), N_("add key to LUKS device") },
79         { "luksRemoveKey",action_luksRemoveKey, 0, 1, 1, 1, N_("<device> [<key file>]"), N_("removes supplied key or key file from LUKS device") },
80         { "luksKillSlot",  action_luksKillSlot, 0, 2, 1, 1, N_("<device> <key slot>"), N_("wipes key with number <key slot> from LUKS device") },
81         { "luksUUID",   action_luksUUID,        0, 1, 0, 1, N_("<device>"), N_("print UUID of LUKS device") },
82         { "isLuks",     action_isLuks,          0, 1, 0, 0, N_("<device>"), N_("tests <device> for LUKS partition header") },
83         { "luksClose",  action_remove,          0, 1, 1, 1, N_("<name>"), N_("remove LUKS mapping") },
84         { "luksDump",   action_luksDump,        0, 1, 0, 1, N_("<device>"), N_("dump LUKS partition information") },
85         { "luksSuspend",action_luksSuspend,     0, 1, 1, 1, N_("<device>"), N_("Suspend LUKS device and wipe key (all IOs are frozen).") },
86         { "luksResume", action_luksResume,      0, 1, 1, 1, N_("<device>"), N_("Resume suspended LUKS device.") },
87         { "luksHeaderBackup",action_luksBackup, 0, 1, 1, 1, N_("<device>"), N_("Backup LUKS device header and keyslots") },
88         { "luksHeaderRestore",action_luksRestore,0,1, 1, 1, N_("<device>"), N_("Restore LUKS device header and keyslots") },
89         { "luksDelKey", action_luksDelKey,      0, 2, 1, 1, N_("<device> <key slot>"), N_("identical to luksKillSlot - DEPRECATED - see man page") },
90         { "reload",     action_create,          1, 2, 1, 1, N_("<name> <device>"), N_("modify active device - DEPRECATED - see man page") },
91         { NULL, NULL, 0, 0, 0, 0, NULL, NULL }
92 };
93
94 static void clogger(struct crypt_device *cd, int class, const char *file,
95                    int line, const char *format, ...)
96 {
97         va_list argp;
98         char *target = NULL;
99
100         va_start(argp, format);
101
102         if (vasprintf(&target, format, argp) > 0) {
103                 if (class >= 0) {
104                         crypt_log(cd, class, target);
105 #ifdef CRYPT_DEBUG
106                 } else if (opt_debug)
107                         printf("# %s:%d %s\n", file ?: "?", line, target);
108 #else
109                 } else if (opt_debug)
110                         printf("# %s\n", target);
111 #endif
112         }
113
114         va_end(argp);
115         free(target);
116 }
117
118 /* Interface Callbacks */
119 static int yesDialog(char *msg)
120 {
121         char *answer = NULL;
122         size_t size = 0;
123         int r = 1;
124
125         if(isatty(0) && !opt_batch_mode) {
126                 log_std("\nWARNING!\n========\n");
127                 log_std("%s\n\nAre you sure? (Type uppercase yes): ", msg);
128                 if(getline(&answer, &size, stdin) == -1) {
129                         perror("getline");
130                         free(answer);
131                         return 0;
132                 }
133                 if(strcmp(answer, "YES\n"))
134                         r = 0;
135                 free(answer);
136         }
137
138         return r;
139 }
140
141 static void cmdLineLog(int class, char *msg) {
142     switch(class) {
143
144     case CRYPT_LOG_NORMAL:
145             fputs(msg, stdout);
146             break;
147     case CRYPT_LOG_ERROR:
148             fputs(msg, stderr);
149             break;
150     default:
151             fprintf(stderr, "Internal error on logging class for msg: %s", msg);
152             break;
153     }
154 }
155
156 static struct interface_callbacks cmd_icb = {
157         .yesDialog = yesDialog,
158         .log = cmdLineLog,
159 };
160
161 static void _log(int class, const char *msg, void *usrptr)
162 {
163         cmdLineLog(class, (char *)msg);
164 }
165
166 static int _yesDialog(const char *msg, void *usrptr)
167 {
168         return yesDialog((char*)msg);
169 }
170
171 /* End ICBs */
172
173 static void show_status(int errcode)
174 {
175         char error[256], *error_;
176
177         if(!errcode && opt_verbose) {
178                 log_std(_("Command successful.\n"));
179                 return;
180         }
181
182         crypt_get_error(error, sizeof(error));
183
184         if (!error[0]) {
185                 error_ = strerror_r(errcode, error, sizeof(error));
186                 if (error_ != error) {
187                         strncpy(error, error_, sizeof(error));
188                         error[sizeof(error) - 1] = '\0';
189                 }
190         }
191
192         log_err(_("Command failed"));
193         if (*error)
194                 log_err(": %s\n", error);
195         else
196                 log_err(".\n");
197         return;
198 }
199
200 static int action_create(int reload)
201 {
202         struct crypt_options options = {
203                 .name = action_argv[0],
204                 .device = action_argv[1],
205                 .cipher = opt_cipher?opt_cipher:DEFAULT_CIPHER,
206                 .hash = opt_hash ?: DEFAULT_HASH,
207                 .key_file = opt_key_file,
208                 .key_size = ((opt_key_size)?opt_key_size:DEFAULT_KEY_SIZE)/8,
209                 .key_slot = opt_key_slot,
210                 .flags = 0,
211                 .size = opt_size,
212                 .offset = opt_offset,
213                 .skip = opt_skip,
214                 .timeout = opt_timeout,
215                 .tries = opt_tries,
216                 .icb = &cmd_icb,
217         };
218         int r;
219
220         if(reload) 
221                 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"));
222
223         if (options.hash && strcmp(options.hash, "plain") == 0)
224                 options.hash = NULL;
225         if (opt_verify_passphrase)
226                 options.flags |= CRYPT_FLAG_VERIFY;
227         if (opt_readonly)
228                 options.flags |= CRYPT_FLAG_READONLY;
229
230         if (reload)
231                 r = crypt_update_device(&options);
232         else
233                 r = crypt_create_device(&options);
234
235         return r;
236 }
237
238 static int action_remove(int arg)
239 {
240         struct crypt_options options = {
241                 .name = action_argv[0],
242                 .icb = &cmd_icb,
243         };
244
245         return crypt_remove_device(&options);
246 }
247
248 static int action_resize(int arg)
249 {
250         struct crypt_options options = {
251                 .name = action_argv[0],
252                 .size = opt_size,
253                 .icb = &cmd_icb,
254         };
255
256         return crypt_resize_device(&options);
257 }
258
259 static int action_status(int arg)
260 {
261         struct crypt_options options = {
262                 .name = action_argv[0],
263                 .icb = &cmd_icb,
264         };
265         int r;
266
267         r = crypt_query_device(&options);
268         if (r < 0)
269                 return r;
270
271         if (r == 0) {
272                 /* inactive */
273                 log_std("%s/%s is inactive.\n", crypt_get_dir(), options.name);
274                 r = 1;
275         } else {
276                 /* active */
277                 log_std("%s/%s is active:\n", crypt_get_dir(), options.name);
278                 log_std("  cipher:  %s\n", options.cipher);
279                 log_std("  keysize: %d bits\n", options.key_size * 8);
280                 log_std("  device:  %s\n", options.device);
281                 log_std("  offset:  %" PRIu64 " sectors\n", options.offset);
282                 log_std("  size:    %" PRIu64 " sectors\n", options.size);
283                 if (options.skip)
284                         log_std("  skipped: %" PRIu64 " sectors\n", options.skip);
285                 log_std("  mode:    %s\n", (options.flags & CRYPT_FLAG_READONLY)
286                                            ? "readonly" : "read/write");
287                 crypt_put_options(&options);
288                 r = 0;
289         }
290         return r;
291 }
292
293 static int _action_luksFormat_generateMK()
294 {
295         struct crypt_options options = {
296                 .key_size = (opt_key_size ?: DEFAULT_LUKS_KEY_SIZE) / 8,
297                 .key_slot = opt_key_slot,
298                 .device = action_argv[0],
299                 .cipher = opt_cipher ?: DEFAULT_LUKS_CIPHER,
300                 .hash = opt_hash ?: DEFAULT_LUKS_HASH,
301                 .new_key_file = action_argc > 1 ? action_argv[1] : NULL,
302                 .flags = opt_verify_passphrase ? CRYPT_FLAG_VERIFY : (!opt_batch_mode?CRYPT_FLAG_VERIFY_IF_POSSIBLE :  0),
303                 .iteration_time = opt_iteration_time,
304                 .timeout = opt_timeout,
305                 .align_payload = opt_align_payload,
306                 .icb = &cmd_icb,
307         };
308
309         return crypt_luksFormat(&options);
310 }
311
312 static int _read_mk(const char *file, char **key, int keysize)
313 {
314         int fd;
315
316         *key = malloc(keysize);
317         if (!*key)
318                 return -ENOMEM;
319
320         fd = open(file, O_RDONLY);
321         if (fd == -1) {
322                 log_err("Cannot read keyfile %s.\n", file);
323                 return -EINVAL;
324         }
325         if ((read(fd, *key, keysize) != keysize)) {
326                 log_err("Cannot read %d bytes from keyfile %s.\n", keysize, file);
327                 close(fd);
328                 memset(*key, 0, keysize);
329                 free(*key);
330                 return -EINVAL;
331         }
332         close(fd);
333         return 0;
334 }
335
336 static int _action_luksFormat_useMK()
337 {
338         int r = -EINVAL, keysize;
339         char *key = NULL, cipher [MAX_CIPHER_LEN], cipher_mode[MAX_CIPHER_LEN];
340         struct crypt_device *cd = NULL;
341         struct crypt_params_luks1 params = {
342                 .hash = opt_hash ?: DEFAULT_LUKS_HASH,
343                 .data_alignment = opt_align_payload,
344         };
345
346         if (sscanf(opt_cipher ?: DEFAULT_LUKS_CIPHER,
347                    "%" MAX_CIPHER_LEN_STR "[^-]-%" MAX_CIPHER_LEN_STR "s",
348                    cipher, cipher_mode) != 2) {
349                 log_err("No known cipher specification pattern detected.\n");
350                 return -EINVAL;
351         }
352
353         keysize = (opt_key_size ?: DEFAULT_LUKS_KEY_SIZE) / 8;
354         if (_read_mk(opt_master_key_file, &key, keysize) < 0)
355                 return -EINVAL;
356
357         if ((r = crypt_init(&cd, action_argv[0])))
358                 goto out;
359
360         crypt_set_password_verify(cd, 1);
361         crypt_set_timeout(cd, opt_timeout);
362         if (opt_iteration_time)
363                 crypt_set_iterarion_time(cd, opt_iteration_time);
364
365         if ((r = crypt_format(cd, CRYPT_LUKS1, cipher, cipher_mode, NULL, key, keysize, &params)))
366                 goto out;
367
368         r = crypt_keyslot_add_by_volume_key(cd, opt_key_slot, key, keysize, NULL, 0);
369 out:
370
371         crypt_free(cd);
372         if (key) {
373                 memset(key, 0, keysize);
374                 free(key);
375         }
376         return r;
377 }
378
379 static int action_luksFormat(int arg)
380 {
381         int r = 0; char *msg = NULL;
382
383         /* Avoid overwriting possibly wrong part of device than user requested by rejecting these options */
384         if (opt_offset || opt_skip) {
385                 log_err("Options --offset and --skip are not supported for luksFormat.\n"); 
386                 return -EINVAL;
387         }
388
389         if(asprintf(&msg, _("This will overwrite data on %s irrevocably."), action_argv[0]) == -1) {
390                 log_err(_("memory allocation error in action_luksFormat"));
391                 return -ENOMEM;
392         }
393         r = yesDialog(msg);
394         free(msg);
395
396         if (!r)
397                 return -EINVAL;
398
399         if (opt_master_key_file)
400                 return _action_luksFormat_useMK();
401         else
402                 return _action_luksFormat_generateMK();
403 }
404
405 static int action_luksOpen(int arg)
406 {
407         struct crypt_options options = {
408                 .name = action_argv[1],
409                 .device = action_argv[0],
410                 .key_file = opt_key_file,
411                 .key_size = opt_key_file ? (opt_key_size / 8) : 0, /* limit bytes read from keyfile */
412                 .timeout = opt_timeout,
413                 .tries = opt_key_file ? 1 : opt_tries, /* verify is usefull only for tty */
414                 .icb = &cmd_icb,
415         };
416
417         if (opt_readonly)
418                 options.flags |= CRYPT_FLAG_READONLY;
419         if (opt_non_exclusive)
420                 log_err(_("Obsolete option --non-exclusive is ignored.\n"));
421
422         return crypt_luksOpen(&options);
423 }
424
425 static int action_luksDelKey(int arg)
426 {
427         log_err("luksDelKey is a deprecated action name.\nPlease use luksKillSlot.\n"); 
428         return action_luksKillSlot(arg);
429 }
430
431 static int action_luksKillSlot(int arg)
432 {
433         struct crypt_options options = {
434                 .device = action_argv[0],
435                 .key_slot = atoi(action_argv[1]),
436                 .key_file = opt_key_file,
437                 .timeout = opt_timeout,
438                 .flags = !opt_batch_mode?CRYPT_FLAG_VERIFY_ON_DELKEY : 0,
439                 .icb = &cmd_icb,
440         };
441
442         return crypt_luksKillSlot(&options);
443 }
444
445 static int action_luksRemoveKey(int arg)
446 {
447         struct crypt_options options = {
448                 .device = action_argv[0],
449                 .new_key_file = action_argc>1?action_argv[1]:NULL,
450                 .key_file = opt_key_file,
451                 .timeout = opt_timeout,
452                 .flags = !opt_batch_mode?CRYPT_FLAG_VERIFY_ON_DELKEY : 0,
453                 .icb = &cmd_icb,
454         };
455
456         return crypt_luksRemoveKey(&options);
457 }
458
459 static int _action_luksAddKey_useMK()
460 {
461         int r = -EINVAL, keysize;
462         char *key = NULL;
463         struct crypt_device *cd = NULL;
464
465         if ((r = crypt_init(&cd, action_argv[0])))
466                 goto out;
467
468         if ((r = crypt_load(cd, CRYPT_LUKS1, NULL)))
469                 goto out;
470
471         keysize = crypt_get_volume_key_size(cd);
472         crypt_set_password_verify(cd, 1);
473         crypt_set_timeout(cd, opt_timeout);
474         if (opt_iteration_time)
475                 crypt_set_iterarion_time(cd, opt_iteration_time);
476
477         if (_read_mk(opt_master_key_file, &key, keysize) < 0)
478                 goto out;
479
480         r = crypt_keyslot_add_by_volume_key(cd, opt_key_slot, key, keysize, NULL, 0);
481 out:
482         crypt_free(cd);
483         if (key) {
484                 memset(key, 0, keysize);
485                 free(key);
486         }
487         return r;
488 }
489
490 static int action_luksAddKey(int arg)
491 {
492         struct crypt_options options = {
493                 .device = action_argv[0],
494                 .new_key_file = action_argc>1?action_argv[1]:NULL,
495                 .key_file = opt_key_file,
496                 .key_slot = opt_key_slot,
497                 .flags = opt_verify_passphrase ? CRYPT_FLAG_VERIFY : (!opt_batch_mode?CRYPT_FLAG_VERIFY_IF_POSSIBLE : 0),
498                 .iteration_time = opt_iteration_time,
499                 .timeout = opt_timeout,
500                 .icb = &cmd_icb,
501         };
502
503         if (opt_master_key_file)
504                 return _action_luksAddKey_useMK();
505         else
506                 return crypt_luksAddKey(&options);
507 }
508
509 static int action_isLuks(int arg)
510 {
511         struct crypt_options options = {
512                 .device = action_argv[0],
513                 .icb = &cmd_icb,
514         };
515
516         return crypt_isLuks(&options);
517 }
518
519 static int action_luksUUID(int arg)
520 {
521         struct crypt_options options = {
522                 .device = action_argv[0],
523                 .icb = &cmd_icb,
524         };
525
526         return crypt_luksUUID(&options);
527 }
528
529 static int action_luksDump(int arg)
530 {
531         struct crypt_options options = {
532                 .device = action_argv[0],
533                 .icb = &cmd_icb,
534         };
535
536         return crypt_luksDump(&options);
537 }
538
539 static int action_luksSuspend(int arg)
540 {
541         struct crypt_device *cd = NULL;
542         int r;
543
544         r = crypt_init_by_name(&cd, action_argv[0]);
545         if (!r)
546                 r = crypt_suspend(cd, action_argv[0]);
547
548         crypt_free(cd);
549         return r;
550 }
551
552 static int action_luksResume(int arg)
553 {
554         struct crypt_device *cd = NULL;
555         int r;
556
557         if ((r = crypt_init_by_name(&cd, action_argv[0])))
558                 goto out;
559
560         if ((r = crypt_load(cd, CRYPT_LUKS1, NULL)))
561                 goto out;
562
563         if (opt_key_file)
564                 r = crypt_resume_by_keyfile(cd, action_argv[0], CRYPT_ANY_SLOT,
565                                             opt_key_file, opt_key_size / 8);
566         else
567                 r = crypt_resume_by_passphrase(cd, action_argv[0], CRYPT_ANY_SLOT,
568                                                NULL, 0);
569 out:
570         crypt_free(cd);
571         return r;
572 }
573
574 static int action_luksBackup(int arg)
575 {
576         struct crypt_device *cd = NULL;
577         int r;
578
579         if (!opt_header_backup_file) {
580                 log_err(_("Option --header-backup-file is required.\n"));
581                 return -EINVAL;
582         }
583
584         if ((r = crypt_init(&cd, action_argv[0])))
585                 goto out;
586
587         crypt_set_log_callback(cd, _log, NULL);
588         crypt_set_confirm_callback(cd, _yesDialog, NULL);
589
590         r = crypt_header_backup(cd, CRYPT_LUKS1, opt_header_backup_file);
591 out:
592         crypt_free(cd);
593         return r;
594 }
595
596 static int action_luksRestore(int arg)
597 {
598         struct crypt_device *cd = NULL;
599         int r = 0;
600
601         if (!opt_header_backup_file) {
602                 log_err(_("Option --header-backup-file is required.\n"));
603                 return -EINVAL;
604         }
605
606         if ((r = crypt_init(&cd, action_argv[0])))
607                 goto out;
608
609         crypt_set_log_callback(cd, _log, NULL);
610         crypt_set_confirm_callback(cd, _yesDialog, NULL);
611         r = crypt_header_restore(cd, CRYPT_LUKS1, opt_header_backup_file);
612 out:
613         crypt_free(cd);
614         return r;
615 }
616
617 static void usage(poptContext popt_context, int exitcode,
618                   const char *error, const char *more)
619 {
620         poptPrintUsage(popt_context, stderr, 0);
621         if (error)
622                 log_err("%s: %s\n", more, error);
623         exit(exitcode);
624 }
625
626 static void help(poptContext popt_context, enum poptCallbackReason reason,
627                  struct poptOption *key, const char * arg, void *data)
628 {
629         if (key->shortName == '?') {
630                 struct action_type *action;
631
632                 log_std("%s\n",PACKAGE_STRING);
633
634                 poptPrintHelp(popt_context, stdout, 0);
635
636                 log_std(_("\n"
637                          "<action> is one of:\n"));
638
639                 for(action = action_types; action->type; action++)
640                         log_std("\t%s %s - %s\n", action->type, _(action->arg_desc), _(action->desc));
641                 
642                 log_std(_("\n"
643                          "<name> is the device to create under %s\n"
644                          "<device> is the encrypted device\n"
645                          "<key slot> is the LUKS key slot number to modify\n"
646                          "<key file> optional key file for the new key for luksAddKey action\n"),
647                         crypt_get_dir());
648                 exit(0);
649         } else
650                 usage(popt_context, 0, NULL, NULL);
651 }
652
653 void set_debug_level(int level);
654
655 static void _dbg_version_and_cmd(int argc, char **argv)
656 {
657         int i;
658
659         log_std("# %s %s processing \"", PACKAGE_NAME, PACKAGE_VERSION);
660         for (i = 0; i < argc; i++) {
661                 if (i)
662                         log_std(" ");
663                 log_std(argv[i]);
664         }
665         log_std("\"\n");
666 }
667
668 static int run_action(struct action_type *action)
669 {
670         int r;
671
672         if (action->required_memlock)
673                 crypt_memory_lock(NULL, 1);
674
675         r = action->handler(action->arg);
676
677         if (action->required_memlock)
678                 crypt_memory_lock(NULL, 0);
679
680         if (r < 0 && (opt_verbose || action->show_status))
681                 show_status(-r);
682
683         return r;
684 }
685
686 int main(int argc, char **argv)
687 {
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 },
693                 POPT_TABLEEND
694         };
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)"),
711                   N_("msecs") },
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 },
719                 POPT_TABLEEND
720         };
721         poptContext popt_context;
722         struct action_type *action;
723         char *aname;
724         int r;
725         const char *null_action_argv[] = {NULL};
726
727         crypt_set_log_callback(NULL, _log, NULL);
728
729         setlocale(LC_ALL, "");
730         bindtextdomain(PACKAGE, LOCALEDIR);
731         textdomain(PACKAGE);
732
733         popt_context = poptGetContext(PACKAGE, argc, (const char **)argv,
734                                       popt_options, 0);
735         poptSetOtherOptionHelp(popt_context,
736                                N_("[OPTION...] <action> <action-specific>]"));
737
738         while((r = poptGetNextOpt(popt_context)) > 0) {
739                 unsigned long long ull_value;
740                 char *endp;
741
742                 ull_value = strtoull(popt_tmp, &endp, 0);
743                 if (*endp || !*popt_tmp)
744                         r = POPT_ERROR_BADNUMBER;
745
746                 switch(r) {
747                         case 1:
748                                 opt_size = ull_value;
749                                 break;
750                         case 2:
751                                 opt_offset = ull_value;
752                                 break;
753                         case 3:
754                                 opt_skip = ull_value;
755                                 break;
756                 }
757
758                 if (r < 0)
759                         break;
760         }
761
762         if (r < -1)
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);
767                 exit(0);
768         }
769
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));
774
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)
780                         break;
781         if (!action->type)
782                 usage(popt_context, 1, _("Unknown action."),
783                       poptGetInvocationName(popt_context));
784
785         action_argc = 0;
786         action_argv = poptGetArgs(popt_context);
787         /* Make return values of poptGetArgs more consistent in case of remaining argc = 0 */
788         if(!action_argv) 
789                 action_argv = null_action_argv;
790
791         /* Count args, somewhat unnice, change? */
792         while(action_argv[action_argc] != NULL)
793                 action_argc++;
794
795         if(action_argc < action->required_action_argc) {
796                 char buf[128];
797                 snprintf(buf, 128,_("%s: requires %s as arguments"), action->type, action->arg_desc);
798                 usage(popt_context, 1, buf,
799                       poptGetInvocationName(popt_context));
800         }
801
802         if (opt_debug) {
803                 opt_verbose = 1;
804                 crypt_set_debug_level(-1);
805                 _dbg_version_and_cmd(argc, argv);
806         }
807
808         return run_action(action);
809 }