Fix luksFormat/luksOpen reading passphrase from stdin and "-" keyfile.
[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         const char *arg_desc;
69         const char *desc;
70 } action_types[] = {
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 }
91 };
92
93 static void clogger(struct crypt_device *cd, int level, const char *file,
94                    int line, const char *format, ...)
95 {
96         va_list argp;
97         char *target = NULL;
98
99         va_start(argp, format);
100
101         if (vasprintf(&target, format, argp) > 0) {
102                 if (level >= 0) {
103                         crypt_log(cd, level, target);
104 #ifdef CRYPT_DEBUG
105                 } else if (opt_debug)
106                         printf("# %s:%d %s\n", file ?: "?", line, target);
107 #else
108                 } else if (opt_debug)
109                         printf("# %s\n", target);
110 #endif
111         }
112
113         va_end(argp);
114         free(target);
115 }
116
117 /* Interface Callbacks */
118 static int yesDialog(char *msg)
119 {
120         char *answer = NULL;
121         size_t size = 0;
122         int r = 1;
123
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) {
128                         perror("getline");
129                         free(answer);
130                         return 0;
131                 }
132                 if(strcmp(answer, "YES\n"))
133                         r = 0;
134                 free(answer);
135         }
136
137         return r;
138 }
139
140 static void cmdLineLog(int level, char *msg) {
141     switch(level) {
142
143     case CRYPT_LOG_NORMAL:
144             fputs(msg, stdout);
145             break;
146     case CRYPT_LOG_ERROR:
147             fputs(msg, stderr);
148             break;
149     default:
150             fprintf(stderr, "Internal error on logging class for msg: %s", msg);
151             break;
152     }
153 }
154
155 static struct interface_callbacks cmd_icb = {
156         .yesDialog = yesDialog,
157         .log = cmdLineLog,
158 };
159
160 static void _log(int level, const char *msg, void *usrptr)
161 {
162         cmdLineLog(level, (char *)msg);
163 }
164
165 static int _yesDialog(const char *msg, void *usrptr)
166 {
167         return yesDialog((char*)msg);
168 }
169
170 /* End ICBs */
171
172 static void show_status(int errcode)
173 {
174         char error[256], *error_;
175
176         if(!opt_verbose)
177                 return;
178
179         if(!errcode) {
180                 log_std(_("Command successful.\n"));
181                 return;
182         }
183
184         crypt_get_error(error, sizeof(error));
185
186         if (!error[0]) {
187                 error_ = strerror_r(-errcode, error, sizeof(error));
188                 if (error_ != error) {
189                         strncpy(error, error_, sizeof(error));
190                         error[sizeof(error) - 1] = '\0';
191                 }
192         }
193
194         log_err(_("Command failed with code %i"), -errcode);
195         if (*error)
196                 log_err(": %s\n", error);
197         else
198                 log_err(".\n");
199 }
200
201 static int action_create(int reload)
202 {
203         struct crypt_options options = {
204                 .name = action_argv[0],
205                 .device = action_argv[1],
206                 .cipher = opt_cipher ? opt_cipher : DEFAULT_CIPHER(PLAIN),
207                 .hash = opt_hash ?: DEFAULT_PLAIN_HASH,
208                 .key_file = opt_key_file,
209                 .key_size = (opt_key_size ?: DEFAULT_PLAIN_KEYBITS) / 8,
210                 .key_slot = opt_key_slot,
211                 .flags = 0,
212                 .size = opt_size,
213                 .offset = opt_offset,
214                 .skip = opt_skip,
215                 .timeout = opt_timeout,
216                 .tries = opt_tries,
217                 .icb = &cmd_icb,
218         };
219         int r;
220
221         if(reload) 
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"));
223
224         if (options.hash && strcmp(options.hash, "plain") == 0)
225                 options.hash = NULL;
226         if (opt_verify_passphrase)
227                 options.flags |= CRYPT_FLAG_VERIFY;
228         if (opt_readonly)
229                 options.flags |= CRYPT_FLAG_READONLY;
230
231         if (reload)
232                 r = crypt_update_device(&options);
233         else
234                 r = crypt_create_device(&options);
235
236         return r;
237 }
238
239 static int action_remove(int arg)
240 {
241         struct crypt_options options = {
242                 .name = action_argv[0],
243                 .icb = &cmd_icb,
244         };
245
246         return crypt_remove_device(&options);
247 }
248
249 static int action_resize(int arg)
250 {
251         struct crypt_options options = {
252                 .name = action_argv[0],
253                 .size = opt_size,
254                 .icb = &cmd_icb,
255         };
256
257         return crypt_resize_device(&options);
258 }
259
260 static int action_status(int arg)
261 {
262         struct crypt_options options = {
263                 .name = action_argv[0],
264                 .icb = &cmd_icb,
265         };
266         int r;
267
268         r = crypt_query_device(&options);
269         if (r < 0)
270                 return r;
271
272         if (r == 0) {
273                 /* inactive */
274                 log_std("%s/%s is inactive.\n", crypt_get_dir(), options.name);
275                 r = 1;
276         } else {
277                 /* active */
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);
284                 if (options.skip)
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);
289                 r = 0;
290         }
291         return r;
292 }
293
294 static int _action_luksFormat_generateMK()
295 {
296         struct crypt_options options = {
297                 .key_size = (opt_key_size ?: DEFAULT_LUKS1_KEYBITS) / 8,
298                 .key_slot = opt_key_slot,
299                 .device = action_argv[0],
300                 .cipher = opt_cipher ?: DEFAULT_CIPHER(LUKS1),
301                 .hash = opt_hash ?: DEFAULT_LUKS1_HASH,
302                 .new_key_file = opt_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,
307                 .icb = &cmd_icb,
308         };
309
310         return crypt_luksFormat(&options);
311 }
312
313 static int _read_mk(const char *file, char **key, int keysize)
314 {
315         int fd;
316
317         *key = malloc(keysize);
318         if (!*key)
319                 return -ENOMEM;
320
321         fd = open(file, O_RDONLY);
322         if (fd == -1) {
323                 log_err("Cannot read keyfile %s.\n", file);
324                 return -EINVAL;
325         }
326         if ((read(fd, *key, keysize) != keysize)) {
327                 log_err("Cannot read %d bytes from keyfile %s.\n", keysize, file);
328                 close(fd);
329                 memset(*key, 0, keysize);
330                 free(*key);
331                 return -EINVAL;
332         }
333         close(fd);
334         return 0;
335 }
336
337 static int _action_luksFormat_useMK()
338 {
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_LUKS1_HASH,
344                 .data_alignment = opt_align_payload,
345         };
346
347         if (sscanf(opt_cipher ?: DEFAULT_CIPHER(LUKS1),
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");
351                 return -EINVAL;
352         }
353
354         keysize = (opt_key_size ?: DEFAULT_LUKS1_KEYBITS) / 8;
355         if (_read_mk(opt_master_key_file, &key, keysize) < 0)
356                 return -EINVAL;
357
358         if ((r = crypt_init(&cd, action_argv[0])))
359                 goto out;
360
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);
365
366         if ((r = crypt_format(cd, CRYPT_LUKS1, cipher, cipher_mode, NULL, key, keysize, &params)))
367                 goto out;
368
369         r = crypt_keyslot_add_by_volume_key(cd, opt_key_slot, key, keysize, NULL, 0);
370 out:
371
372         crypt_free(cd);
373         if (key) {
374                 memset(key, 0, keysize);
375                 free(key);
376         }
377         return r;
378 }
379
380 static int action_luksFormat(int arg)
381 {
382         int r = 0; char *msg = NULL;
383
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"); 
387                 return -EINVAL;
388         }
389
390         if (action_argc > 1 && opt_key_file)
391                 log_err(_("Option --key-file takes precedence over specified key file argument.\n"));
392
393         if(asprintf(&msg, _("This will overwrite data on %s irrevocably."), action_argv[0]) == -1) {
394                 log_err(_("memory allocation error in action_luksFormat"));
395                 return -ENOMEM;
396         }
397         r = yesDialog(msg);
398         free(msg);
399
400         if (!r)
401                 return -EINVAL;
402
403         if (opt_master_key_file)
404                 return _action_luksFormat_useMK();
405         else
406                 return _action_luksFormat_generateMK();
407 }
408
409 static int action_luksOpen(int arg)
410 {
411         struct crypt_options options = {
412                 .name = action_argv[1],
413                 .device = action_argv[0],
414                 .key_file = opt_key_file,
415                 .key_size = opt_key_file ? (opt_key_size / 8) : 0, /* limit bytes read from keyfile */
416                 .timeout = opt_timeout,
417                 .tries = opt_key_file ? 1 : opt_tries, /* verify is usefull only for tty */
418                 .icb = &cmd_icb,
419         };
420
421         if (opt_readonly)
422                 options.flags |= CRYPT_FLAG_READONLY;
423         if (opt_non_exclusive)
424                 log_err(_("Obsolete option --non-exclusive is ignored.\n"));
425
426         return crypt_luksOpen(&options);
427 }
428
429 static int action_luksDelKey(int arg)
430 {
431         log_err("luksDelKey is a deprecated action name.\nPlease use luksKillSlot.\n"); 
432         return action_luksKillSlot(arg);
433 }
434
435 static int action_luksKillSlot(int arg)
436 {
437         struct crypt_options options = {
438                 .device = action_argv[0],
439                 .key_slot = atoi(action_argv[1]),
440                 .key_file = opt_key_file,
441                 .timeout = opt_timeout,
442                 .flags = !opt_batch_mode?CRYPT_FLAG_VERIFY_ON_DELKEY : 0,
443                 .icb = &cmd_icb,
444         };
445
446         return crypt_luksKillSlot(&options);
447 }
448
449 static int action_luksRemoveKey(int arg)
450 {
451         struct crypt_options options = {
452                 .device = action_argv[0],
453                 .new_key_file = action_argc>1?action_argv[1]:NULL,
454                 .key_file = opt_key_file,
455                 .timeout = opt_timeout,
456                 .flags = !opt_batch_mode?CRYPT_FLAG_VERIFY_ON_DELKEY : 0,
457                 .icb = &cmd_icb,
458         };
459
460         return crypt_luksRemoveKey(&options);
461 }
462
463 static int _action_luksAddKey_useMK()
464 {
465         int r = -EINVAL, keysize = 0;
466         char *key = NULL;
467         struct crypt_device *cd = NULL;
468
469         if ((r = crypt_init(&cd, action_argv[0])))
470                 goto out;
471
472         if ((r = crypt_load(cd, CRYPT_LUKS1, NULL)))
473                 goto out;
474
475         keysize = crypt_get_volume_key_size(cd);
476         crypt_set_password_verify(cd, 1);
477         crypt_set_timeout(cd, opt_timeout);
478         if (opt_iteration_time)
479                 crypt_set_iterarion_time(cd, opt_iteration_time);
480
481         if (_read_mk(opt_master_key_file, &key, keysize) < 0)
482                 goto out;
483
484         r = crypt_keyslot_add_by_volume_key(cd, opt_key_slot, key, keysize, NULL, 0);
485 out:
486         crypt_free(cd);
487         if (key) {
488                 memset(key, 0, keysize);
489                 free(key);
490         }
491         return r;
492 }
493
494 static int action_luksAddKey(int arg)
495 {
496         struct crypt_options options = {
497                 .device = action_argv[0],
498                 .new_key_file = action_argc>1?action_argv[1]:NULL,
499                 .key_file = opt_key_file,
500                 .key_slot = opt_key_slot,
501                 .flags = opt_verify_passphrase ? CRYPT_FLAG_VERIFY : (!opt_batch_mode?CRYPT_FLAG_VERIFY_IF_POSSIBLE : 0),
502                 .iteration_time = opt_iteration_time,
503                 .timeout = opt_timeout,
504                 .icb = &cmd_icb,
505         };
506
507         if (opt_master_key_file)
508                 return _action_luksAddKey_useMK();
509         else
510                 return crypt_luksAddKey(&options);
511 }
512
513 static int action_isLuks(int arg)
514 {
515         struct crypt_options options = {
516                 .device = action_argv[0],
517                 .icb = &cmd_icb,
518         };
519
520         return crypt_isLuks(&options);
521 }
522
523 static int action_luksUUID(int arg)
524 {
525         struct crypt_options options = {
526                 .device = action_argv[0],
527                 .icb = &cmd_icb,
528         };
529
530         return crypt_luksUUID(&options);
531 }
532
533 static int action_luksDump(int arg)
534 {
535         struct crypt_options options = {
536                 .device = action_argv[0],
537                 .icb = &cmd_icb,
538         };
539
540         return crypt_luksDump(&options);
541 }
542
543 static int action_luksSuspend(int arg)
544 {
545         struct crypt_device *cd = NULL;
546         int r;
547
548         r = crypt_init_by_name(&cd, action_argv[0]);
549         if (!r)
550                 r = crypt_suspend(cd, action_argv[0]);
551
552         crypt_free(cd);
553         return r;
554 }
555
556 static int action_luksResume(int arg)
557 {
558         struct crypt_device *cd = NULL;
559         int r;
560
561         if ((r = crypt_init_by_name(&cd, action_argv[0])))
562                 goto out;
563
564         if ((r = crypt_load(cd, CRYPT_LUKS1, NULL)))
565                 goto out;
566
567         if (opt_key_file)
568                 r = crypt_resume_by_keyfile(cd, action_argv[0], CRYPT_ANY_SLOT,
569                                             opt_key_file, opt_key_size / 8);
570         else
571                 r = crypt_resume_by_passphrase(cd, action_argv[0], CRYPT_ANY_SLOT,
572                                                NULL, 0);
573 out:
574         crypt_free(cd);
575         return r;
576 }
577
578 static int action_luksBackup(int arg)
579 {
580         struct crypt_device *cd = NULL;
581         int r;
582
583         if (!opt_header_backup_file) {
584                 log_err(_("Option --header-backup-file is required.\n"));
585                 return -EINVAL;
586         }
587
588         if ((r = crypt_init(&cd, action_argv[0])))
589                 goto out;
590
591         crypt_set_log_callback(cd, _log, NULL);
592         crypt_set_confirm_callback(cd, _yesDialog, NULL);
593
594         r = crypt_header_backup(cd, CRYPT_LUKS1, opt_header_backup_file);
595 out:
596         crypt_free(cd);
597         return r;
598 }
599
600 static int action_luksRestore(int arg)
601 {
602         struct crypt_device *cd = NULL;
603         int r = 0;
604
605         if (!opt_header_backup_file) {
606                 log_err(_("Option --header-backup-file is required.\n"));
607                 return -EINVAL;
608         }
609
610         if ((r = crypt_init(&cd, action_argv[0])))
611                 goto out;
612
613         crypt_set_log_callback(cd, _log, NULL);
614         crypt_set_confirm_callback(cd, _yesDialog, NULL);
615         r = crypt_header_restore(cd, CRYPT_LUKS1, opt_header_backup_file);
616 out:
617         crypt_free(cd);
618         return r;
619 }
620
621 static void usage(poptContext popt_context, int exitcode,
622                   const char *error, const char *more)
623 {
624         poptPrintUsage(popt_context, stderr, 0);
625         if (error)
626                 log_err("%s: %s\n", more, error);
627         exit(exitcode);
628 }
629
630 static void help(poptContext popt_context, enum poptCallbackReason reason,
631                  struct poptOption *key, const char * arg, void *data)
632 {
633         if (key->shortName == '?') {
634                 struct action_type *action;
635
636                 log_std("%s\n",PACKAGE_STRING);
637
638                 poptPrintHelp(popt_context, stdout, 0);
639
640                 log_std(_("\n"
641                          "<action> is one of:\n"));
642
643                 for(action = action_types; action->type; action++)
644                         log_std("\t%s %s - %s\n", action->type, _(action->arg_desc), _(action->desc));
645                 
646                 log_std(_("\n"
647                          "<name> is the device to create under %s\n"
648                          "<device> is the encrypted device\n"
649                          "<key slot> is the LUKS key slot number to modify\n"
650                          "<key file> optional key file for the new key for luksAddKey action\n"),
651                         crypt_get_dir());
652
653                 log_std(_("\nDefault compiled-in device cipher parameters:\n"
654                          "\tplain: %s, Key: %d bits, Password hashing: %s\n"
655                          "\tLUKS1: %s, Key: %d bits, LUKS header hashing: %s\n"),
656                          DEFAULT_CIPHER(PLAIN), DEFAULT_PLAIN_KEYBITS, DEFAULT_PLAIN_HASH,
657                          DEFAULT_CIPHER(LUKS1), DEFAULT_LUKS1_KEYBITS, DEFAULT_LUKS1_HASH);
658                 exit(0);
659         } else
660                 usage(popt_context, 0, NULL, NULL);
661 }
662
663 void set_debug_level(int level);
664
665 static void _dbg_version_and_cmd(int argc, char **argv)
666 {
667         int i;
668
669         log_std("# %s %s processing \"", PACKAGE_NAME, PACKAGE_VERSION);
670         for (i = 0; i < argc; i++) {
671                 if (i)
672                         log_std(" ");
673                 log_std(argv[i]);
674         }
675         log_std("\"\n");
676 }
677
678 static int run_action(struct action_type *action)
679 {
680         int r;
681
682         if (action->required_memlock)
683                 crypt_memory_lock(NULL, 1);
684
685         r = action->handler(action->arg);
686
687         if (action->required_memlock)
688                 crypt_memory_lock(NULL, 0);
689
690         show_status(r);
691
692         return r;
693 }
694
695 int main(int argc, char **argv)
696 {
697         static char *popt_tmp;
698         static struct poptOption popt_help_options[] = {
699                 { NULL,    '\0', POPT_ARG_CALLBACK, help, 0, NULL,                         NULL },
700                 { "help",  '?',  POPT_ARG_NONE,     NULL, 0, N_("Show this help message"), NULL },
701                 { "usage", '\0', POPT_ARG_NONE,     NULL, 0, N_("Display brief usage"),    NULL },
702                 POPT_TABLEEND
703         };
704         static struct poptOption popt_options[] = {
705                 { NULL,                '\0', POPT_ARG_INCLUDE_TABLE, popt_help_options, 0, N_("Help options:"), NULL },
706                 { "verbose",           'v',  POPT_ARG_NONE, &opt_verbose,               0, N_("Shows more detailed error messages"), NULL },
707                 { "debug",             '\0', POPT_ARG_NONE, &opt_debug,                 0, N_("Show debug messages"), NULL },
708                 { "cipher",            'c',  POPT_ARG_STRING, &opt_cipher,              0, N_("The cipher used to encrypt the disk (see /proc/crypto)"), NULL },
709                 { "hash",              'h',  POPT_ARG_STRING, &opt_hash,                0, N_("The hash used to create the encryption key from the passphrase"), NULL },
710                 { "verify-passphrase", 'y',  POPT_ARG_NONE, &opt_verify_passphrase,     0, N_("Verifies the passphrase by asking for it twice"), NULL },
711                 { "key-file",          'd',  POPT_ARG_STRING, &opt_key_file,            0, N_("Read the key from a file (can be /dev/random)"), NULL },
712                 { "master-key-file",  '\0',  POPT_ARG_STRING, &opt_master_key_file,     0, N_("Read the volume (master) key from file."), NULL },
713                 { "key-size",          's',  POPT_ARG_INT, &opt_key_size,               0, N_("The size of the encryption key"), N_("BITS") },
714                 { "key-slot",          'S',  POPT_ARG_INT, &opt_key_slot,               0, N_("Slot number for new key (default is first free)"), NULL },
715                 { "size",              'b',  POPT_ARG_STRING, &popt_tmp,                1, N_("The size of the device"), N_("SECTORS") },
716                 { "offset",            'o',  POPT_ARG_STRING, &popt_tmp,                2, N_("The start offset in the backend device"), N_("SECTORS") },
717                 { "skip",              'p',  POPT_ARG_STRING, &popt_tmp,                3, N_("How many sectors of the encrypted data to skip at the beginning"), N_("SECTORS") },
718                 { "readonly",          'r',  POPT_ARG_NONE, &opt_readonly,              0, N_("Create a readonly mapping"), NULL },
719                 { "iter-time",         'i',  POPT_ARG_INT, &opt_iteration_time,         0, N_("PBKDF2 iteration time for LUKS (in ms)"), N_("msecs") },
720                 { "batch-mode",        'q',  POPT_ARG_NONE, &opt_batch_mode,            0, N_("Do not ask for confirmation"), NULL },
721                 { "version",           '\0', POPT_ARG_NONE, &opt_version_mode,          0, N_("Print package version"), NULL },
722                 { "timeout",           't',  POPT_ARG_INT, &opt_timeout,                0, N_("Timeout for interactive passphrase prompt (in seconds)"), N_("secs") },
723                 { "tries",             'T',  POPT_ARG_INT, &opt_tries,                  0, N_("How often the input of the passphrase can be retried"), NULL },
724                 { "align-payload",     '\0', POPT_ARG_INT, &opt_align_payload,          0, N_("Align payload at <n> sector boundaries - for luksFormat"), N_("SECTORS") },
725                 { "non-exclusive",     '\0', POPT_ARG_NONE, &opt_non_exclusive,         0, N_("(Obsoleted, see man page.)"), NULL },
726                 { "header-backup-file",'\0', POPT_ARG_STRING, &opt_header_backup_file,  0, N_("File with LUKS header and keyslots backup."), NULL },
727                 POPT_TABLEEND
728         };
729         poptContext popt_context;
730         struct action_type *action;
731         char *aname;
732         int r;
733         const char *null_action_argv[] = {NULL};
734
735         crypt_set_log_callback(NULL, _log, NULL);
736
737         setlocale(LC_ALL, "");
738         bindtextdomain(PACKAGE, LOCALEDIR);
739         textdomain(PACKAGE);
740
741         popt_context = poptGetContext(PACKAGE, argc, (const char **)argv,
742                                       popt_options, 0);
743         poptSetOtherOptionHelp(popt_context,
744                                N_("[OPTION...] <action> <action-specific>]"));
745
746         while((r = poptGetNextOpt(popt_context)) > 0) {
747                 unsigned long long ull_value;
748                 char *endp;
749
750                 ull_value = strtoull(popt_tmp, &endp, 0);
751                 if (*endp || !*popt_tmp)
752                         r = POPT_ERROR_BADNUMBER;
753
754                 switch(r) {
755                         case 1:
756                                 opt_size = ull_value;
757                                 break;
758                         case 2:
759                                 opt_offset = ull_value;
760                                 break;
761                         case 3:
762                                 opt_skip = ull_value;
763                                 break;
764                 }
765
766                 if (r < 0)
767                         break;
768         }
769
770         if (r < -1)
771                 usage(popt_context, 1, poptStrerror(r),
772                       poptBadOption(popt_context, POPT_BADOPTION_NOALIAS));
773         if (opt_version_mode) {
774                 log_std("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION);
775                 exit(0);
776         }
777
778         if (opt_key_size % 8)
779                 usage(popt_context, 1,
780                       _("Key size must be a multiple of 8 bits"),
781                       poptGetInvocationName(popt_context));
782
783         if (!(aname = (char *)poptGetArg(popt_context)))
784                 usage(popt_context, 1, _("Argument <action> missing."),
785                       poptGetInvocationName(popt_context));
786         for(action = action_types; action->type; action++)
787                 if (strcmp(action->type, aname) == 0)
788                         break;
789         if (!action->type)
790                 usage(popt_context, 1, _("Unknown action."),
791                       poptGetInvocationName(popt_context));
792
793         action_argc = 0;
794         action_argv = poptGetArgs(popt_context);
795         /* Make return values of poptGetArgs more consistent in case of remaining argc = 0 */
796         if(!action_argv) 
797                 action_argv = null_action_argv;
798
799         /* Count args, somewhat unnice, change? */
800         while(action_argv[action_argc] != NULL)
801                 action_argc++;
802
803         if(action_argc < action->required_action_argc) {
804                 char buf[128];
805                 snprintf(buf, 128,_("%s: requires %s as arguments"), action->type, action->arg_desc);
806                 usage(popt_context, 1, buf,
807                       poptGetInvocationName(popt_context));
808         }
809
810         if (opt_debug) {
811                 opt_verbose = 1;
812                 crypt_set_debug_level(-1);
813                 _dbg_version_and_cmd(argc, argv);
814         }
815
816         return run_action(action);
817 }