a69a5ffa177ae345a3d7d915e768a6a5d2292ac2
[platform/upstream/cryptsetup.git] / lib / setup.c
1 /*
2  * libcryptsetup - cryptsetup library
3  *
4  * Copyright (C) 2004, Christophe Saout <christophe@saout.de>
5  * Copyright (C) 2004-2007, Clemens Fruhwirth <clemens@endorphin.org>
6  * Copyright (C) 2009-2011, Red Hat, Inc. All rights reserved.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * version 2 as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include <string.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <stdarg.h>
26 #include <fcntl.h>
27 #include <errno.h>
28
29 #include "libcryptsetup.h"
30 #include "luks.h"
31 #include "loopaes.h"
32 #include "internal.h"
33 #include "crypto_backend.h"
34
35 struct crypt_device {
36         char *type;
37
38         char *device;
39         char *metadata_device;
40
41         char *backing_file;
42         int loop_fd;
43         struct volume_key *volume_key;
44         uint64_t timeout;
45         uint64_t iteration_time;
46         int tries;
47         int password_verify;
48         int rng_type;
49
50         /* used in CRYPT_LUKS1 */
51         struct luks_phdr hdr;
52         uint64_t PBKDF2_per_sec;
53
54         /* used in CRYPT_PLAIN */
55         struct crypt_params_plain plain_hdr;
56         char *plain_cipher;
57         char *plain_cipher_mode;
58         char *plain_uuid;
59
60         /* used in CRYPT_LOOPAES */
61         struct crypt_params_loopaes loopaes_hdr;
62         char *loopaes_cipher;
63         char *loopaes_cipher_mode;
64         char *loopaes_uuid;
65         unsigned int loopaes_key_size;
66
67         /* callbacks definitions */
68         void (*log)(int level, const char *msg, void *usrptr);
69         void *log_usrptr;
70         int (*confirm)(const char *msg, void *usrptr);
71         void *confirm_usrptr;
72         int (*password)(const char *msg, char *buf, size_t length, void *usrptr);
73         void *password_usrptr;
74 };
75
76 /* Log helper */
77 static void (*_default_log)(int level, const char *msg, void *usrptr) = NULL;
78 static int _debug_level = 0;
79
80 void crypt_set_debug_level(int level)
81 {
82         _debug_level = level;
83 }
84
85 int crypt_get_debug_level(void)
86 {
87         return _debug_level;
88 }
89
90 void crypt_log(struct crypt_device *cd, int level, const char *msg)
91 {
92         if (cd && cd->log)
93                 cd->log(level, msg, cd->log_usrptr);
94         else if (_default_log)
95                 _default_log(level, msg, NULL);
96 }
97
98 __attribute__((format(printf, 5, 6)))
99 void logger(struct crypt_device *cd, int level, const char *file,
100             int line, const char *format, ...)
101 {
102         va_list argp;
103         char *target = NULL;
104
105         va_start(argp, format);
106
107         if (vasprintf(&target, format, argp) > 0) {
108                 if (level >= 0) {
109                         crypt_log(cd, level, target);
110 #ifdef CRYPT_DEBUG
111                 } else if (_debug_level)
112                         printf("# %s:%d %s\n", file ?: "?", line, target);
113 #else
114                 } else if (_debug_level)
115                         printf("# %s\n", target);
116 #endif
117         }
118
119         va_end(argp);
120         free(target);
121 }
122
123 static const char *mdata_device(struct crypt_device *cd)
124 {
125         return cd->metadata_device ?: cd->device;
126 }
127
128 static int init_crypto(struct crypt_device *ctx)
129 {
130         int r;
131
132         r = crypt_random_init(ctx);
133         if (r < 0) {
134                 log_err(ctx, _("Cannot initialize crypto RNG backend.\n"));
135                 return r;
136         }
137
138         r = crypt_backend_init(ctx);
139         if (r < 0)
140                 log_err(ctx, _("Cannot initialize crypto backend.\n"));
141
142         return r;
143 }
144
145 static int process_key(struct crypt_device *cd, const char *hash_name,
146                        size_t key_size, const char *pass, size_t passLen,
147                        struct volume_key **vk)
148 {
149         int r;
150
151         if (!key_size)
152                 return -EINVAL;
153
154         *vk = crypt_alloc_volume_key(key_size, NULL);
155         if (!*vk)
156                 return -ENOMEM;
157
158         if (hash_name) {
159                 r = crypt_plain_hash(cd, hash_name, (*vk)->key, key_size, pass, passLen);
160                 if (r < 0) {
161                         if (r == -ENOENT)
162                                 log_err(cd, _("Hash algorithm %s not supported.\n"),
163                                         hash_name);
164                         else
165                                 log_err(cd, _("Key processing error (using hash %s).\n"),
166                                         hash_name);
167                         crypt_free_volume_key(*vk);
168                         *vk = NULL;
169                         return -EINVAL;
170                 }
171         } else if (passLen > key_size) {
172                 memcpy((*vk)->key, pass, key_size);
173         } else {
174                 memcpy((*vk)->key, pass, passLen);
175         }
176
177         return 0;
178 }
179
180 static int isPLAIN(const char *type)
181 {
182         return (type && !strcmp(CRYPT_PLAIN, type));
183 }
184
185 static int isLUKS(const char *type)
186 {
187         return (type && !strcmp(CRYPT_LUKS1, type));
188 }
189
190 static int isLOOPAES(const char *type)
191 {
192         return (type && !strcmp(CRYPT_LOOPAES, type));
193 }
194
195 /* keyslot helpers */
196 static int keyslot_verify_or_find_empty(struct crypt_device *cd, int *keyslot)
197 {
198         if (*keyslot == CRYPT_ANY_SLOT) {
199                 *keyslot = LUKS_keyslot_find_empty(&cd->hdr);
200                 if (*keyslot < 0) {
201                         log_err(cd, _("All key slots full.\n"));
202                         return -EINVAL;
203                 }
204         }
205
206         switch (LUKS_keyslot_info(&cd->hdr, *keyslot)) {
207                 case CRYPT_SLOT_INVALID:
208                         log_err(cd, _("Key slot %d is invalid, please select between 0 and %d.\n"),
209                                 *keyslot, LUKS_NUMKEYS - 1);
210                         return -EINVAL;
211                 case CRYPT_SLOT_INACTIVE:
212                         break;
213                 default:
214                         log_err(cd, _("Key slot %d is full, please select another one.\n"),
215                                 *keyslot);
216                         return -EINVAL;
217         }
218
219         return 0;
220 }
221
222 int PLAIN_activate(struct crypt_device *cd,
223                      const char *name,
224                      struct volume_key *vk,
225                      uint64_t size,
226                      uint32_t flags)
227 {
228         int r;
229         char *dm_cipher = NULL;
230         struct crypt_dm_active_device dmd = {
231                 .device = crypt_get_device_name(cd),
232                 .cipher = NULL,
233                 .uuid   = crypt_get_uuid(cd),
234                 .vk    = vk,
235                 .offset = crypt_get_data_offset(cd),
236                 .iv_offset = crypt_get_iv_offset(cd),
237                 .size   = size,
238                 .flags  = flags
239         };
240
241         r = device_check_and_adjust(cd, dmd.device,
242                                     (dmd.flags & CRYPT_ACTIVATE_SHARED) ? DEV_SHARED : DEV_EXCL,
243                                     &dmd.size, &dmd.offset, &flags);
244         if (r)
245                 return r;
246
247         if (crypt_get_cipher_mode(cd))
248                 r = asprintf(&dm_cipher, "%s-%s", crypt_get_cipher(cd), crypt_get_cipher_mode(cd));
249         else
250                 r = asprintf(&dm_cipher, "%s", crypt_get_cipher(cd));
251         if (r < 0)
252                 return -ENOMEM;
253
254         dmd.cipher = dm_cipher;
255         log_dbg("Trying to activate PLAIN device %s using cipher %s.", name, dmd.cipher);
256
257         r = dm_create_device(name, CRYPT_PLAIN, &dmd, 0);
258
259         // FIXME
260         if (!cd->plain_uuid && dm_query_device(name, DM_ACTIVE_UUID, &dmd) >= 0)
261                 cd->plain_uuid = (char*)dmd.uuid;
262
263         free(dm_cipher);
264         return r;
265 }
266
267 int crypt_confirm(struct crypt_device *cd, const char *msg)
268 {
269         if (!cd || !cd->confirm)
270                 return 1;
271         else
272                 return cd->confirm(msg, cd->confirm_usrptr);
273 }
274
275 static int key_from_terminal(struct crypt_device *cd, char *msg, char **key,
276                               size_t *key_len, int force_verify)
277 {
278         char *prompt = NULL;
279         int r;
280
281         *key = NULL;
282         if(!msg && asprintf(&prompt, _("Enter passphrase for %s: "),
283                             cd->backing_file ?: crypt_get_device_name(cd)) < 0)
284                 return -ENOMEM;
285
286         if (!msg)
287                 msg = prompt;
288
289         if (cd->password) {
290                 *key = crypt_safe_alloc(DEFAULT_PASSPHRASE_SIZE_MAX);
291                 if (!*key) {
292                         r = -ENOMEM;
293                         goto out;
294                 }
295                 r = cd->password(msg, *key, DEFAULT_PASSPHRASE_SIZE_MAX,
296                                  cd->password_usrptr);
297                 if (r < 0) {
298                         crypt_safe_free(*key);
299                         *key = NULL;
300                 } else
301                         *key_len = r;
302         } else
303                 r = crypt_get_key(msg, key, key_len, 0, NULL, cd->timeout,
304                                   (force_verify || cd->password_verify), cd);
305 out:
306         free(prompt);
307         return (r < 0) ? r: 0;
308 }
309
310 static int volume_key_by_terminal_passphrase(struct crypt_device *cd, int keyslot,
311                                              struct volume_key **vk)
312 {
313         char *passphrase_read = NULL;
314         size_t passphrase_size_read;
315         int r = -EINVAL, eperm = 0, tries = cd->tries;
316
317         *vk = NULL;
318         do {
319                 crypt_free_volume_key(*vk);
320                 *vk = NULL;
321
322                 r = key_from_terminal(cd, NULL, &passphrase_read,
323                                       &passphrase_size_read, 0);
324                 if(r < 0)
325                         goto out;
326
327                 r = LUKS_open_key_with_hdr(mdata_device(cd), keyslot, passphrase_read,
328                                            passphrase_size_read, &cd->hdr, vk, cd);
329                 if (r == -EPERM)
330                         eperm = 1;
331                 crypt_safe_free(passphrase_read);
332                 passphrase_read = NULL;
333         } while (r == -EPERM && (--tries > 0));
334 out:
335         if (r < 0) {
336                 crypt_free_volume_key(*vk);
337                 *vk = NULL;
338
339                 /* Report wrong passphrase if at least one try failed */
340                 if (eperm && r == -EPIPE)
341                         r = -EPERM;
342         }
343
344         crypt_safe_free(passphrase_read);
345         return r;
346 }
347
348 static int key_from_file(struct crypt_device *cd, char *msg,
349                           char **key, size_t *key_len,
350                           const char *key_file, size_t key_size)
351 {
352         return crypt_get_key(msg, key, key_len, key_size, key_file,
353                              cd->timeout, 0, cd);
354 }
355
356 void crypt_set_log_callback(struct crypt_device *cd,
357         void (*log)(int level, const char *msg, void *usrptr),
358         void *usrptr)
359 {
360         if (!cd)
361                 _default_log = log;
362         else {
363                 cd->log = log;
364                 cd->log_usrptr = usrptr;
365         }
366 }
367
368 void crypt_set_confirm_callback(struct crypt_device *cd,
369         int (*confirm)(const char *msg, void *usrptr),
370         void *usrptr)
371 {
372         cd->confirm = confirm;
373         cd->confirm_usrptr = usrptr;
374 }
375
376 void crypt_set_password_callback(struct crypt_device *cd,
377         int (*password)(const char *msg, char *buf, size_t length, void *usrptr),
378         void *usrptr)
379 {
380         cd->password = password;
381         cd->password_usrptr = usrptr;
382 }
383
384 void crypt_get_error(char *buf, size_t size)
385 {
386         const char *error = get_error();
387
388         if (!buf || size < 1)
389                 set_error(NULL);
390         else if (error) {
391                 strncpy(buf, error, size - 1);
392                 buf[size - 1] = '\0';
393                 set_error(NULL);
394         } else
395                 buf[0] = '\0';
396 }
397
398 const char *crypt_get_dir(void)
399 {
400         return dm_get_dir();
401 }
402
403 int crypt_init(struct crypt_device **cd, const char *device)
404 {
405         struct crypt_device *h = NULL;
406         int r, readonly = 0;
407
408         if (!cd)
409                 return -EINVAL;
410
411         log_dbg("Allocating crypt device %s context.", device);
412
413         if (!(h = malloc(sizeof(struct crypt_device))))
414                 return -ENOMEM;
415
416         memset(h, 0, sizeof(*h));
417         h->loop_fd = -1;
418
419         if (device) {
420                 r = device_ready(NULL, device, O_RDONLY);
421                 if (r == -ENOTBLK) {
422                         h->device = crypt_loop_get_device();
423                         log_dbg("Not a block device, %s%s.",
424                                 h->device ? "using free loop device " :
425                                          "no free loop device found",
426                                 h->device ?: "");
427                         if (!h->device) {
428                                 log_err(NULL, _("Cannot find a free loopback device.\n"));
429                                 r = -ENOSYS;
430                                 goto bad;
431                         }
432
433                         /* Keep the loop open, dettached on last close. */
434                         h->loop_fd = crypt_loop_attach(h->device, device, 0, 1, &readonly);
435                         if (h->loop_fd == -1) {
436                                 log_err(NULL, _("Attaching loopback device failed "
437                                         "(loop device with autoclear flag is required).\n"));
438                                 r = -EINVAL;
439                                 goto bad;
440                         }
441
442                         h->backing_file = crypt_loop_backing_file(h->device);
443                         r = device_ready(NULL, h->device, O_RDONLY);
444                 }
445                 if (r < 0) {
446                         r = -ENOTBLK;
447                         goto bad;
448                 }
449         }
450
451         if (!h->device && device && !(h->device = strdup(device))) {
452                 r = -ENOMEM;
453                 goto bad;
454         }
455
456         if (dm_init(h, 1) < 0) {
457                 r = -ENOSYS;
458                 goto bad;
459         }
460
461         h->iteration_time = 1000;
462         h->password_verify = 0;
463         h->tries = 3;
464         h->rng_type = crypt_random_default_key_rng();
465         *cd = h;
466         return 0;
467 bad:
468
469         if (h) {
470                 if (h->loop_fd != -1)
471                         close(h->loop_fd);
472                 free(h->device);
473                 free(h->backing_file);
474         }
475         free(h);
476         return r;
477 }
478
479 static int crypt_check_data_device_size(struct crypt_device *cd)
480 {
481         int r;
482         uint64_t size, size_min;
483
484         /* Check data device size, require at least one sector */
485         size_min = crypt_get_data_offset(cd) ?: SECTOR_SIZE;
486
487         r = device_size(crypt_get_device_name(cd), &size);
488         if (r < 0)
489                 return r;
490
491         if (size < size_min) {
492                 log_err(cd, _("LUKS header detected but device %s is too small.\n"),
493                         crypt_get_device_name(cd));
494                 return -EINVAL;
495         }
496
497         return r;
498 }
499
500 int crypt_set_data_device(struct crypt_device *cd, const char *device)
501 {
502         char *data_device;
503         int r;
504
505         log_dbg("Setting ciphertext data device to %s.", device ?: "(none)");
506
507         if (!isLUKS(cd->type)) {
508                 log_err(cd, _("This operation is not supported for this device type.\n"));
509                 return  -EINVAL;
510         }
511
512         /* metadata device must be set */
513         if (!cd->device)
514                 return -EINVAL;
515
516         r = device_ready(NULL, device, O_RDONLY);
517         if (r < 0)
518                 return r;
519
520         if (!(data_device = strdup(device)))
521                 return -ENOMEM;
522
523         if (!cd->metadata_device)
524                 cd->metadata_device = cd->device;
525         else
526                 free(cd->device);
527
528         cd->device = data_device;
529
530         return crypt_check_data_device_size(cd);
531 }
532
533 int crypt_init_by_name_and_header(struct crypt_device **cd,
534                                   const char *name,
535                                   const char *header_device)
536 {
537         crypt_status_info ci;
538         struct crypt_dm_active_device dmd;
539         char cipher[MAX_CIPHER_LEN], cipher_mode[MAX_CIPHER_LEN];
540         int key_nums, r;
541
542
543         log_dbg("Allocating crypt device context by device %s.", name);
544
545         ci = crypt_status(NULL, name);
546         if (ci == CRYPT_INVALID)
547                 return -ENODEV;
548
549         if (ci < CRYPT_ACTIVE) {
550                 log_err(NULL, _("Device %s is not active.\n"), name);
551                 return -ENODEV;
552         }
553
554         r = dm_query_device(name, DM_ACTIVE_DEVICE | DM_ACTIVE_CIPHER |
555                                   DM_ACTIVE_UUID | DM_ACTIVE_KEYSIZE, &dmd);
556         if (r < 0)
557                 goto out;
558
559         *cd = NULL;
560
561         if (header_device) {
562                 r = crypt_init(cd, header_device);
563         } else {
564                 r = crypt_init(cd, dmd.device);
565
566                 /* Underlying device disappeared but mapping still active */
567                 if (!dmd.device || r == -ENOTBLK)
568                         log_verbose(NULL, _("Underlying device for crypt device %s disappeared.\n"),
569                                     name);
570
571                 /* Underlying device is not readable but crypt mapping exists */
572                 if (r == -ENOTBLK) {
573                         free((char*)dmd.device);
574                         dmd.device = NULL;
575                         r = crypt_init(cd, NULL);
576                 }
577         }
578
579         if (r < 0)
580                 goto out;
581
582         if (dmd.uuid) {
583                 if (!strncmp(CRYPT_PLAIN, dmd.uuid, sizeof(CRYPT_PLAIN)-1))
584                         (*cd)->type = strdup(CRYPT_PLAIN);
585                 else if (!strncmp(CRYPT_LOOPAES, dmd.uuid, sizeof(CRYPT_LOOPAES)-1))
586                         (*cd)->type = strdup(CRYPT_LOOPAES);
587                 else if (!strncmp(CRYPT_LUKS1, dmd.uuid, sizeof(CRYPT_LUKS1)-1))
588                         (*cd)->type = strdup(CRYPT_LUKS1);
589                 else
590                         log_dbg("Unknown UUID set, some parameters are not set.");
591         } else
592                 log_dbg("Active device has no UUID set, some parameters are not set.");
593
594         if (header_device) {
595                 r = crypt_set_data_device(*cd, dmd.device);
596                 if (r < 0)
597                         goto out;
598         }
599
600         /* Try to initialise basic parameters from active device */
601
602         if (!(*cd)->backing_file && dmd.device && crypt_loop_device(dmd.device) &&
603             !((*cd)->backing_file = crypt_loop_backing_file(dmd.device))) {
604                 r = -ENOMEM;
605                 goto out;
606         }
607
608         if (isPLAIN((*cd)->type)) {
609                 (*cd)->type = strdup(CRYPT_PLAIN);
610                 (*cd)->plain_uuid = strdup(dmd.uuid);
611                 (*cd)->plain_hdr.hash = NULL; /* no way to get this */
612                 (*cd)->plain_hdr.offset = dmd.offset;
613                 (*cd)->plain_hdr.skip = dmd.iv_offset;
614
615                 r = crypt_parse_name_and_mode(dmd.cipher, cipher, NULL, cipher_mode);
616                 if (!r) {
617                         (*cd)->plain_cipher = strdup(cipher);
618                         (*cd)->plain_cipher_mode = strdup(cipher_mode);
619                 }
620         } else if (isLOOPAES((*cd)->type)) {
621                 (*cd)->type = strdup(CRYPT_LOOPAES);
622                 (*cd)->loopaes_uuid = strdup(dmd.uuid);
623                 (*cd)->loopaes_hdr.offset = dmd.offset;
624
625                 r = crypt_parse_name_and_mode(dmd.cipher, cipher,
626                                               &key_nums, cipher_mode);
627                 if (!r) {
628                         (*cd)->loopaes_cipher = strdup(cipher);
629                         (*cd)->loopaes_cipher_mode = strdup(cipher_mode);
630                         /* version 3 uses last key for IV */
631                         if (dmd.vk->keylength % key_nums)
632                                 key_nums++;
633                         (*cd)->loopaes_key_size = dmd.vk->keylength / key_nums;
634                 }
635         } else if (isLUKS((*cd)->type)) {
636                 if (mdata_device(*cd)) {
637                         r = crypt_load(*cd, CRYPT_LUKS1, NULL);
638                         if (r < 0) {
639                                 log_dbg("LUKS device header does not match active device.");
640                                 free((*cd)->type);
641                                 (*cd)->type = NULL;
642                                 r = 0;
643                                 goto out;
644                         }
645                 }
646         }
647
648 out:
649         if (r < 0) {
650                 crypt_free(*cd);
651                 *cd = NULL;
652         }
653         crypt_free_volume_key(dmd.vk);
654         free((char*)dmd.device);
655         free((char*)dmd.cipher);
656         free((char*)dmd.uuid);
657         return r;
658 }
659
660 int crypt_init_by_name(struct crypt_device **cd, const char *name)
661 {
662         return crypt_init_by_name_and_header(cd, name, NULL);
663 }
664
665 static int _crypt_format_plain(struct crypt_device *cd,
666                                const char *cipher,
667                                const char *cipher_mode,
668                                const char *uuid,
669                                size_t volume_key_size,
670                                struct crypt_params_plain *params)
671 {
672         if (!cipher || !cipher_mode) {
673                 log_err(cd, _("Invalid plain crypt parameters.\n"));
674                 return -EINVAL;
675         }
676
677         if (volume_key_size > 1024) {
678                 log_err(cd, _("Invalid key size.\n"));
679                 return -EINVAL;
680         }
681
682         cd->volume_key = crypt_alloc_volume_key(volume_key_size, NULL);
683         if (!cd->volume_key)
684                 return -ENOMEM;
685
686         cd->plain_cipher = strdup(cipher);
687         cd->plain_cipher_mode = strdup(cipher_mode);
688
689         if (uuid)
690                 cd->plain_uuid = strdup(uuid);
691
692         if (params && params->hash)
693                 cd->plain_hdr.hash = strdup(params->hash);
694
695         cd->plain_hdr.offset = params ? params->offset : 0;
696         cd->plain_hdr.skip = params ? params->skip : 0;
697         cd->plain_hdr.size = params ? params->size : 0;
698
699         if (!cd->plain_cipher || !cd->plain_cipher_mode)
700                 return -ENOMEM;
701
702         return 0;
703 }
704
705 static int _crypt_format_luks1(struct crypt_device *cd,
706                                const char *cipher,
707                                const char *cipher_mode,
708                                const char *uuid,
709                                const char *volume_key,
710                                size_t volume_key_size,
711                                struct crypt_params_luks1 *params)
712 {
713         int r;
714         unsigned long required_alignment = DEFAULT_DISK_ALIGNMENT;
715         unsigned long alignment_offset = 0;
716
717         if (!mdata_device(cd)) {
718                 log_err(cd, _("Can't format LUKS without device.\n"));
719                 return -EINVAL;
720         }
721
722         if (volume_key)
723                 cd->volume_key = crypt_alloc_volume_key(volume_key_size,
724                                                       volume_key);
725         else
726                 cd->volume_key = crypt_generate_volume_key(cd, volume_key_size);
727
728         if(!cd->volume_key)
729                 return -ENOMEM;
730
731         if (params && params->data_device) {
732                 cd->metadata_device = cd->device;
733                 if (!(cd->device = strdup(params->data_device)))
734                         return -ENOMEM;
735                 required_alignment = params->data_alignment * SECTOR_SIZE;
736         } else if (params && params->data_alignment) {
737                 required_alignment = params->data_alignment * SECTOR_SIZE;
738         } else
739                 get_topology_alignment(cd->device, &required_alignment,
740                                        &alignment_offset, DEFAULT_DISK_ALIGNMENT);
741
742         r = LUKS_generate_phdr(&cd->hdr, cd->volume_key, cipher, cipher_mode,
743                                (params && params->hash) ? params->hash : "sha1",
744                                uuid, LUKS_STRIPES,
745                                required_alignment / SECTOR_SIZE,
746                                alignment_offset / SECTOR_SIZE,
747                                cd->iteration_time, &cd->PBKDF2_per_sec,
748                                cd->metadata_device, cd);
749         if(r < 0)
750                 return r;
751
752         /* Wipe first 8 sectors - fs magic numbers etc. */
753         r = wipe_device_header(mdata_device(cd), 8);
754         if(r < 0) {
755                 if (r == -EBUSY)
756                         log_err(cd, _("Cannot format device %s which is still in use.\n"),
757                                 mdata_device(cd));
758                 else
759                         log_err(cd, _("Cannot wipe header on device %s.\n"),
760                                 mdata_device(cd));
761
762                 return r;
763         }
764
765         r = LUKS_write_phdr(mdata_device(cd), &cd->hdr, cd);
766
767         return r;
768 }
769
770 static int _crypt_format_loopaes(struct crypt_device *cd,
771                                  const char *cipher,
772                                  const char *uuid,
773                                  size_t volume_key_size,
774                                  struct crypt_params_loopaes *params)
775 {
776         if (!mdata_device(cd)) {
777                 log_err(cd, _("Can't format LOOPAES without device.\n"));
778                 return -EINVAL;
779         }
780
781         if (volume_key_size > 1024) {
782                 log_err(cd, _("Invalid key size.\n"));
783                 return -EINVAL;
784         }
785
786         cd->loopaes_key_size = volume_key_size;
787
788         cd->loopaes_cipher = strdup(cipher ?: DEFAULT_LOOPAES_CIPHER);
789
790         if (uuid)
791                 cd->loopaes_uuid = strdup(uuid);
792
793         if (params && params->hash)
794                 cd->loopaes_hdr.hash = strdup(params->hash);
795
796         cd->loopaes_hdr.offset = params ? params->offset : 0;
797         cd->loopaes_hdr.skip = params ? params->skip : 0;
798
799         return 0;
800 }
801
802 int crypt_format(struct crypt_device *cd,
803         const char *type,
804         const char *cipher,
805         const char *cipher_mode,
806         const char *uuid,
807         const char *volume_key,
808         size_t volume_key_size,
809         void *params)
810 {
811         int r;
812
813         if (!type)
814                 return -EINVAL;
815
816         log_dbg("Formatting device %s as type %s.", mdata_device(cd) ?: "(none)", type);
817
818         r = init_crypto(cd);
819         if (r < 0)
820                 return r;
821
822         if (isPLAIN(type))
823                 r = _crypt_format_plain(cd, cipher, cipher_mode,
824                                         uuid, volume_key_size, params);
825         else if (isLUKS(type))
826                 r = _crypt_format_luks1(cd, cipher, cipher_mode,
827                                         uuid, volume_key, volume_key_size, params);
828         else if (isLOOPAES(type))
829                 r = _crypt_format_loopaes(cd, cipher, uuid, volume_key_size, params);
830         else {
831                 /* FIXME: allow plugins here? */
832                 log_err(cd, _("Unknown crypt device type %s requested.\n"), type);
833                 r = -EINVAL;
834         }
835
836         if (!r && !(cd->type = strdup(type)))
837                 r = -ENOMEM;
838
839         if (r < 0) {
840                 crypt_free_volume_key(cd->volume_key);
841                 cd->volume_key = NULL;
842         }
843
844         return r;
845 }
846
847 int crypt_load(struct crypt_device *cd,
848                const char *requested_type,
849                void *params __attribute__((unused)))
850 {
851         struct luks_phdr hdr;
852         int r;
853
854         log_dbg("Trying to load %s crypt type from device %s.",
855                 requested_type ?: "any", mdata_device(cd) ?: "(none)");
856
857         if (!mdata_device(cd))
858                 return -EINVAL;
859
860         if (requested_type && !isLUKS(requested_type))
861                 return -EINVAL;
862
863         r = init_crypto(cd);
864         if (r < 0)
865                 return r;
866
867         r = LUKS_read_phdr(mdata_device(cd), &hdr, 1, cd);
868         if (r < 0)
869                 return r;
870
871         r = crypt_check_data_device_size(cd);
872         if (r < 0)
873                 return r;
874
875         memcpy(&cd->hdr, &hdr, sizeof(hdr));
876         free(cd->type);
877         cd->type = strdup(CRYPT_LUKS1);
878         if (!cd->type)
879                 r = -ENOMEM;
880
881         return r;
882 }
883
884 int crypt_resize(struct crypt_device *cd, const char *name, uint64_t new_size)
885 {
886         struct crypt_dm_active_device dmd;
887         int r;
888
889         /* Device context type must be initialised */
890         if (!cd->type || !crypt_get_uuid(cd))
891                 return -EINVAL;
892
893         log_dbg("Resizing device %s to %" PRIu64 " sectors.", name, new_size);
894
895         r = dm_query_device(name, DM_ACTIVE_DEVICE | DM_ACTIVE_CIPHER |
896                                   DM_ACTIVE_UUID | DM_ACTIVE_KEYSIZE |
897                                   DM_ACTIVE_KEY, &dmd);
898         if (r < 0) {
899                 log_err(NULL, _("Device %s is not active.\n"), name);
900                 goto out;
901         }
902
903         if (!dmd.uuid) {
904                 r = -EINVAL;
905                 goto out;
906         }
907
908         r = device_check_and_adjust(cd, dmd.device, DEV_OK, &new_size, &dmd.offset, &dmd.flags);
909         if (r)
910                 goto out;
911
912         if (new_size == dmd.size) {
913                 log_dbg("Device has already requested size %" PRIu64
914                         " sectors.", dmd.size);
915                 r = 0;
916         } else {
917                 dmd.size = new_size;
918                 r = dm_create_device(name, cd->type, &dmd, 1);
919         }
920 out:
921         crypt_free_volume_key(dmd.vk);
922         free((char*)dmd.cipher);
923         free((char*)dmd.device);
924         free((char*)dmd.uuid);
925
926         return r;
927 }
928
929 int crypt_set_uuid(struct crypt_device *cd, const char *uuid)
930 {
931         if (!isLUKS(cd->type)) {
932                 log_err(cd, _("This operation is not supported for this device type.\n"));
933                 return  -EINVAL;
934         }
935
936         if (uuid && !strncmp(uuid, cd->hdr.uuid, sizeof(cd->hdr.uuid))) {
937                 log_dbg("UUID is the same as requested (%s) for device %s.",
938                         uuid, mdata_device(cd));
939                 return 0;
940         }
941
942         if (uuid)
943                 log_dbg("Requested new UUID change to %s for %s.", uuid, mdata_device(cd));
944         else
945                 log_dbg("Requested new UUID refresh for %s.", mdata_device(cd));
946
947         if (!crypt_confirm(cd, _("Do you really want to change UUID of device?")))
948                 return -EPERM;
949
950         return LUKS_hdr_uuid_set(mdata_device(cd), &cd->hdr, uuid, cd);
951 }
952
953 int crypt_header_backup(struct crypt_device *cd,
954                         const char *requested_type,
955                         const char *backup_file)
956 {
957         int r;
958
959         if ((requested_type && !isLUKS(requested_type)) || !backup_file)
960                 return -EINVAL;
961
962         r = init_crypto(cd);
963         if (r < 0)
964                 return r;
965
966         log_dbg("Requested header backup of device %s (%s) to "
967                 "file %s.", mdata_device(cd), requested_type, backup_file);
968
969         return LUKS_hdr_backup(backup_file, mdata_device(cd), &cd->hdr, cd);
970 }
971
972 int crypt_header_restore(struct crypt_device *cd,
973                          const char *requested_type,
974                          const char *backup_file)
975 {
976         int r;
977
978         if (requested_type && !isLUKS(requested_type))
979                 return -EINVAL;
980
981         /* Some hash functions need initialized gcrypt library */
982         r = init_crypto(cd);
983         if (r < 0)
984                 return r;
985
986         log_dbg("Requested header restore to device %s (%s) from "
987                 "file %s.", mdata_device(cd), requested_type, backup_file);
988
989         return LUKS_hdr_restore(backup_file, mdata_device(cd), &cd->hdr, cd);
990 }
991
992 void crypt_free(struct crypt_device *cd)
993 {
994         if (cd) {
995                 log_dbg("Releasing crypt device %s context.", mdata_device(cd));
996
997                 if (cd->loop_fd != -1)
998                         close(cd->loop_fd);
999
1000                 dm_exit();
1001                 crypt_free_volume_key(cd->volume_key);
1002
1003                 free(cd->device);
1004                 free(cd->metadata_device);
1005                 free(cd->backing_file);
1006                 free(cd->type);
1007
1008                 /* used in plain device only */
1009                 free((char*)cd->plain_hdr.hash);
1010                 free(cd->plain_cipher);
1011                 free(cd->plain_cipher_mode);
1012                 free(cd->plain_uuid);
1013
1014                 /* used in loop-AES device only */
1015                 free((char*)cd->loopaes_hdr.hash);
1016                 free(cd->loopaes_cipher);
1017                 free(cd->loopaes_uuid);
1018
1019                 free(cd);
1020         }
1021 }
1022
1023 int crypt_suspend(struct crypt_device *cd,
1024                   const char *name)
1025 {
1026         crypt_status_info ci;
1027         int r;
1028
1029         log_dbg("Suspending volume %s.", name);
1030
1031         if (!isLUKS(cd->type)) {
1032                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1033                 r = -EINVAL;
1034                 goto out;
1035         }
1036
1037         ci = crypt_status(NULL, name);
1038         if (ci < CRYPT_ACTIVE) {
1039                 log_err(cd, _("Volume %s is not active.\n"), name);
1040                 return -EINVAL;
1041         }
1042
1043         if (!cd && dm_init(NULL, 1) < 0)
1044                 return -ENOSYS;
1045
1046         r = dm_status_suspended(name);
1047         if (r < 0)
1048                 goto out;
1049
1050         if (r) {
1051                 log_err(cd, _("Volume %s is already suspended.\n"), name);
1052                 r = -EINVAL;
1053                 goto out;
1054         }
1055
1056         r = dm_suspend_and_wipe_key(name);
1057         if (r == -ENOTSUP)
1058                 log_err(cd, "Suspend is not supported for device %s.\n", name);
1059         else if (r)
1060                 log_err(cd, "Error during suspending device %s.\n", name);
1061 out:
1062         if (!cd)
1063                 dm_exit();
1064         return r;
1065 }
1066
1067 int crypt_resume_by_passphrase(struct crypt_device *cd,
1068                                const char *name,
1069                                int keyslot,
1070                                const char *passphrase,
1071                                size_t passphrase_size)
1072 {
1073         struct volume_key *vk = NULL;
1074         int r;
1075
1076         log_dbg("Resuming volume %s.", name);
1077
1078         if (!isLUKS(cd->type)) {
1079                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1080                 r = -EINVAL;
1081                 goto out;
1082         }
1083
1084         r = dm_status_suspended(name);
1085         if (r < 0)
1086                 return r;
1087
1088         if (!r) {
1089                 log_err(cd, _("Volume %s is not suspended.\n"), name);
1090                 return -EINVAL;
1091         }
1092
1093         if (passphrase) {
1094                 r = LUKS_open_key_with_hdr(mdata_device(cd), keyslot, passphrase,
1095                                            passphrase_size, &cd->hdr, &vk, cd);
1096         } else
1097                 r = volume_key_by_terminal_passphrase(cd, keyslot, &vk);
1098
1099         if (r >= 0) {
1100                 keyslot = r;
1101                 r = dm_resume_and_reinstate_key(name, vk->keylength, vk->key);
1102                 if (r == -ENOTSUP)
1103                         log_err(cd, "Resume is not supported for device %s.\n", name);
1104                 else if (r)
1105                         log_err(cd, "Error during resuming device %s.\n", name);
1106         } else
1107                 r = keyslot;
1108 out:
1109         crypt_free_volume_key(vk);
1110         return r < 0 ? r : keyslot;
1111 }
1112
1113 int crypt_resume_by_keyfile(struct crypt_device *cd,
1114                             const char *name,
1115                             int keyslot,
1116                             const char *keyfile,
1117                             size_t keyfile_size)
1118 {
1119         struct volume_key *vk = NULL;
1120         char *passphrase_read = NULL;
1121         size_t passphrase_size_read;
1122         int r;
1123
1124         log_dbg("Resuming volume %s.", name);
1125
1126         if (!isLUKS(cd->type)) {
1127                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1128                 r = -EINVAL;
1129                 goto out;
1130         }
1131
1132         r = dm_status_suspended(name);
1133         if (r < 0)
1134                 return r;
1135
1136         if (!r) {
1137                 log_err(cd, _("Volume %s is not suspended.\n"), name);
1138                 return -EINVAL;
1139         }
1140
1141         if (!keyfile)
1142                 return -EINVAL;
1143
1144         r = key_from_file(cd, _("Enter passphrase: "), &passphrase_read,
1145                           &passphrase_size_read, keyfile, keyfile_size);
1146         if (r < 0)
1147                 goto out;
1148
1149         r = LUKS_open_key_with_hdr(mdata_device(cd), keyslot, passphrase_read,
1150                                    passphrase_size_read, &cd->hdr, &vk, cd);
1151         if (r < 0)
1152                 goto out;
1153
1154         keyslot = r;
1155         r = dm_resume_and_reinstate_key(name, vk->keylength, vk->key);
1156         if (r)
1157                 log_err(cd, "Error during resuming device %s.\n", name);
1158 out:
1159         crypt_safe_free(passphrase_read);
1160         crypt_free_volume_key(vk);
1161         return r < 0 ? r : keyslot;
1162 }
1163
1164 // slot manipulation
1165 int crypt_keyslot_add_by_passphrase(struct crypt_device *cd,
1166         int keyslot, // -1 any
1167         const char *passphrase, // NULL -> terminal
1168         size_t passphrase_size,
1169         const char *new_passphrase, // NULL -> terminal
1170         size_t new_passphrase_size)
1171 {
1172         struct volume_key *vk = NULL;
1173         char *password = NULL, *new_password = NULL;
1174         size_t passwordLen, new_passwordLen;
1175         int r;
1176
1177         log_dbg("Adding new keyslot, existing passphrase %sprovided,"
1178                 "new passphrase %sprovided.",
1179                 passphrase ? "" : "not ", new_passphrase  ? "" : "not ");
1180
1181         if (!isLUKS(cd->type)) {
1182                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1183                 return -EINVAL;
1184         }
1185
1186         r = keyslot_verify_or_find_empty(cd, &keyslot);
1187         if (r)
1188                 return r;
1189
1190         if (!LUKS_keyslot_active_count(&cd->hdr)) {
1191                 /* No slots used, try to use pre-generated key in header */
1192                 if (cd->volume_key) {
1193                         vk = crypt_alloc_volume_key(cd->volume_key->keylength, cd->volume_key->key);
1194                         r = vk ? 0 : -ENOMEM;
1195                 } else {
1196                         log_err(cd, _("Cannot add key slot, all slots disabled and no volume key provided.\n"));
1197                         return -EINVAL;
1198                 }
1199         } else if (passphrase) {
1200                 /* Passphrase provided, use it to unlock existing keyslot */
1201                 r = LUKS_open_key_with_hdr(mdata_device(cd), CRYPT_ANY_SLOT, passphrase,
1202                                            passphrase_size, &cd->hdr, &vk, cd);
1203         } else {
1204                 /* Passphrase not provided, ask first and use it to unlock existing keyslot */
1205                 r = key_from_terminal(cd, _("Enter any passphrase: "),
1206                                       &password, &passwordLen, 0);
1207                 if (r < 0)
1208                         goto out;
1209
1210                 r = LUKS_open_key_with_hdr(mdata_device(cd), CRYPT_ANY_SLOT, password,
1211                                            passwordLen, &cd->hdr, &vk, cd);
1212                 crypt_safe_free(password);
1213         }
1214
1215         if(r < 0)
1216                 goto out;
1217
1218         if (new_passphrase) {
1219                 new_password = (char *)new_passphrase;
1220                 new_passwordLen = new_passphrase_size;
1221         } else {
1222                 r = key_from_terminal(cd, _("Enter new passphrase for key slot: "),
1223                                       &new_password, &new_passwordLen, 1);
1224                 if(r < 0)
1225                         goto out;
1226         }
1227
1228         r = LUKS_set_key(mdata_device(cd), keyslot, new_password, new_passwordLen,
1229                          &cd->hdr, vk, cd->iteration_time, &cd->PBKDF2_per_sec, cd);
1230         if(r < 0) goto out;
1231
1232         r = 0;
1233 out:
1234         if (!new_passphrase)
1235                 crypt_safe_free(new_password);
1236         crypt_free_volume_key(vk);
1237         return r ?: keyslot;
1238 }
1239
1240 int crypt_keyslot_add_by_keyfile(struct crypt_device *cd,
1241         int keyslot,
1242         const char *keyfile,
1243         size_t keyfile_size,
1244         const char *new_keyfile,
1245         size_t new_keyfile_size)
1246 {
1247         struct volume_key *vk = NULL;
1248         char *password = NULL; size_t passwordLen;
1249         char *new_password = NULL; size_t new_passwordLen;
1250         int r;
1251
1252         log_dbg("Adding new keyslot, existing keyfile %s, new keyfile %s.",
1253                 keyfile ?: "[none]", new_keyfile ?: "[none]");
1254
1255         if (!isLUKS(cd->type)) {
1256                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1257                 return -EINVAL;
1258         }
1259
1260         r = keyslot_verify_or_find_empty(cd, &keyslot);
1261         if (r)
1262                 return r;
1263
1264         if (!LUKS_keyslot_active_count(&cd->hdr)) {
1265                 /* No slots used, try to use pre-generated key in header */
1266                 if (cd->volume_key) {
1267                         vk = crypt_alloc_volume_key(cd->volume_key->keylength, cd->volume_key->key);
1268                         r = vk ? 0 : -ENOMEM;
1269                 } else {
1270                         log_err(cd, _("Cannot add key slot, all slots disabled and no volume key provided.\n"));
1271                         return -EINVAL;
1272                 }
1273         } else {
1274                 /* Read password from file of (if NULL) from terminal */
1275                 if (keyfile)
1276                         r = key_from_file(cd, _("Enter any passphrase: "),
1277                                           &password, &passwordLen,
1278                                           keyfile, keyfile_size);
1279                 else
1280                         r = key_from_terminal(cd, _("Enter any passphrase: "),
1281                                               &password, &passwordLen, 0);
1282                 if (r < 0)
1283                         goto out;
1284
1285                 r = LUKS_open_key_with_hdr(mdata_device(cd), CRYPT_ANY_SLOT, password, passwordLen,
1286                                            &cd->hdr, &vk, cd);
1287         }
1288
1289         if(r < 0)
1290                 goto out;
1291
1292         if (new_keyfile)
1293                 r = key_from_file(cd, _("Enter new passphrase for key slot: "),
1294                                   &new_password, &new_passwordLen, new_keyfile,
1295                                   new_keyfile_size);
1296         else
1297                 r = key_from_terminal(cd, _("Enter new passphrase for key slot: "),
1298                                       &new_password, &new_passwordLen, 1);
1299         if (r < 0)
1300                 goto out;
1301
1302         r = LUKS_set_key(mdata_device(cd), keyslot, new_password, new_passwordLen,
1303                          &cd->hdr, vk, cd->iteration_time, &cd->PBKDF2_per_sec, cd);
1304 out:
1305         crypt_safe_free(password);
1306         crypt_safe_free(new_password);
1307         crypt_free_volume_key(vk);
1308         return r < 0 ? r : keyslot;
1309 }
1310
1311 int crypt_keyslot_add_by_volume_key(struct crypt_device *cd,
1312         int keyslot,
1313         const char *volume_key,
1314         size_t volume_key_size,
1315         const char *passphrase,
1316         size_t passphrase_size)
1317 {
1318         struct volume_key *vk = NULL;
1319         int r = -EINVAL;
1320         char *new_password = NULL; size_t new_passwordLen;
1321
1322         log_dbg("Adding new keyslot %d using volume key.", keyslot);
1323
1324         if (!isLUKS(cd->type)) {
1325                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1326                 return -EINVAL;
1327         }
1328
1329         if (volume_key)
1330                 vk = crypt_alloc_volume_key(volume_key_size, volume_key);
1331         else if (cd->volume_key)
1332                 vk = crypt_alloc_volume_key(cd->volume_key->keylength, cd->volume_key->key);
1333
1334         if (!vk)
1335                 return -ENOMEM;
1336
1337         r = LUKS_verify_volume_key(&cd->hdr, vk);
1338         if (r < 0) {
1339                 log_err(cd, _("Volume key does not match the volume.\n"));
1340                 goto out;
1341         }
1342
1343         r = keyslot_verify_or_find_empty(cd, &keyslot);
1344         if (r)
1345                 goto out;
1346
1347         if (!passphrase) {
1348                 r = key_from_terminal(cd, _("Enter new passphrase for key slot: "),
1349                                       &new_password, &new_passwordLen, 1);
1350                 if (r < 0)
1351                         goto out;
1352                 passphrase = new_password;
1353                 passphrase_size = new_passwordLen;
1354         }
1355
1356         r = LUKS_set_key(mdata_device(cd), keyslot, passphrase, passphrase_size,
1357                          &cd->hdr, vk, cd->iteration_time, &cd->PBKDF2_per_sec, cd);
1358 out:
1359         crypt_safe_free(new_password);
1360         crypt_free_volume_key(vk);
1361         return (r < 0) ? r : keyslot;
1362 }
1363
1364 int crypt_keyslot_destroy(struct crypt_device *cd, int keyslot)
1365 {
1366         crypt_keyslot_info ki;
1367
1368         log_dbg("Destroying keyslot %d.", keyslot);
1369
1370         if (!isLUKS(cd->type)) {
1371                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1372                 return -EINVAL;
1373         }
1374
1375         ki = crypt_keyslot_status(cd, keyslot);
1376         if (ki == CRYPT_SLOT_INVALID) {
1377                 log_err(cd, _("Key slot %d is invalid.\n"), keyslot);
1378                 return -EINVAL;
1379         }
1380
1381         if (ki == CRYPT_SLOT_INACTIVE) {
1382                 log_err(cd, _("Key slot %d is not used.\n"), keyslot);
1383                 return -EINVAL;
1384         }
1385
1386         return LUKS_del_key(mdata_device(cd), keyslot, &cd->hdr, cd);
1387 }
1388
1389 // activation/deactivation of device mapping
1390 int crypt_activate_by_passphrase(struct crypt_device *cd,
1391         const char *name,
1392         int keyslot,
1393         const char *passphrase,
1394         size_t passphrase_size,
1395         uint32_t flags)
1396 {
1397         crypt_status_info ci;
1398         struct volume_key *vk = NULL;
1399         char *read_passphrase = NULL;
1400         size_t passphraseLen = 0;
1401         int r;
1402
1403         log_dbg("%s volume %s [keyslot %d] using %spassphrase.",
1404                 name ? "Activating" : "Checking", name ?: "",
1405                 keyslot, passphrase ? "" : "[none] ");
1406
1407         if (name) {
1408                 ci = crypt_status(NULL, name);
1409                 if (ci == CRYPT_INVALID)
1410                         return -EINVAL;
1411                 else if (ci >= CRYPT_ACTIVE) {
1412                         log_err(cd, _("Device %s already exists.\n"), name);
1413                         return -EEXIST;
1414                 }
1415         }
1416
1417         /* plain, use hashed passphrase */
1418         if (isPLAIN(cd->type)) {
1419                 if (!name)
1420                         return -EINVAL;
1421
1422                 if (!passphrase) {
1423                         r = key_from_terminal(cd, NULL, &read_passphrase,
1424                                               &passphraseLen, 0);
1425                         if (r < 0)
1426                                 goto out;
1427                         passphrase = read_passphrase;
1428                         passphrase_size = passphraseLen;
1429                 }
1430
1431                 r = process_key(cd, cd->plain_hdr.hash,
1432                                 cd->volume_key->keylength,
1433                                 passphrase, passphrase_size, &vk);
1434                 if (r < 0)
1435                         goto out;
1436
1437                 r = PLAIN_activate(cd, name, vk, cd->plain_hdr.size, flags);
1438                 keyslot = 0;
1439         } else if (isLUKS(cd->type)) {
1440                 /* provided passphrase, do not retry */
1441                 if (passphrase) {
1442                         r = LUKS_open_key_with_hdr(mdata_device(cd), keyslot, passphrase,
1443                                                    passphrase_size, &cd->hdr, &vk, cd);
1444                 } else
1445                         r = volume_key_by_terminal_passphrase(cd, keyslot, &vk);
1446
1447                 if (r >= 0) {
1448                         keyslot = r;
1449                         if (name)
1450                                 r = LUKS1_activate(cd, name, vk, flags);
1451                 }
1452         } else
1453                 r = -EINVAL;
1454 out:
1455         crypt_safe_free(read_passphrase);
1456         crypt_free_volume_key(vk);
1457
1458         return r < 0  ? r : keyslot;
1459 }
1460
1461 int crypt_activate_by_keyfile(struct crypt_device *cd,
1462         const char *name,
1463         int keyslot,
1464         const char *keyfile,
1465         size_t keyfile_size,
1466         uint32_t flags)
1467 {
1468         crypt_status_info ci;
1469         struct volume_key *vk = NULL;
1470         char *passphrase_read = NULL;
1471         size_t passphrase_size_read;
1472         unsigned int key_count = 0;
1473         int r;
1474
1475         log_dbg("Activating volume %s [keyslot %d] using keyfile %s.",
1476                 name ?: "", keyslot, keyfile ?: "[none]");
1477
1478         if (name) {
1479                 ci = crypt_status(NULL, name);
1480                 if (ci == CRYPT_INVALID)
1481                         return -EINVAL;
1482                 else if (ci >= CRYPT_ACTIVE) {
1483                         log_err(cd, _("Device %s already exists.\n"), name);
1484                         return -EEXIST;
1485                 }
1486         }
1487
1488         if (!keyfile)
1489                 return -EINVAL;
1490
1491         if (isPLAIN(cd->type)) {
1492                 if (!name)
1493                         return -EINVAL;
1494
1495                 r = key_from_file(cd, _("Enter passphrase: "),
1496                                   &passphrase_read, &passphrase_size_read,
1497                                   keyfile, keyfile_size);
1498                 if (r < 0)
1499                         goto out;
1500
1501                 r = process_key(cd, cd->plain_hdr.hash,
1502                                 cd->volume_key->keylength,
1503                                 passphrase_read, passphrase_size_read, &vk);
1504                 if (r < 0)
1505                         goto out;
1506
1507                 r = PLAIN_activate(cd, name, vk, cd->plain_hdr.size, flags);
1508         } else if (isLUKS(cd->type)) {
1509                 r = key_from_file(cd, _("Enter passphrase: "), &passphrase_read,
1510                           &passphrase_size_read, keyfile, keyfile_size);
1511                 if (r < 0)
1512                         goto out;
1513                 r = LUKS_open_key_with_hdr(mdata_device(cd), keyslot, passphrase_read,
1514                                            passphrase_size_read, &cd->hdr, &vk, cd);
1515                 if (r < 0)
1516                         goto out;
1517                 keyslot = r;
1518
1519                 if (name) {
1520                         r = LUKS1_activate(cd, name, vk, flags);
1521                         if (r < 0)
1522                                 goto out;
1523                 }
1524                 r = keyslot;
1525         } else if (isLOOPAES(cd->type)) {
1526                 r = key_from_file(cd, NULL, &passphrase_read, &passphrase_size_read,
1527                                   keyfile, keyfile_size);
1528                 if (r < 0)
1529                         goto out;
1530                 r = LOOPAES_parse_keyfile(cd, &vk, cd->loopaes_hdr.hash, &key_count,
1531                                           passphrase_read, passphrase_size_read);
1532                 if (r < 0)
1533                         goto out;
1534                 if (name)
1535                         r = LOOPAES_activate(cd, name, cd->loopaes_cipher,
1536                                              key_count, vk, flags);
1537         } else
1538                 r = -EINVAL;
1539
1540 out:
1541         crypt_safe_free(passphrase_read);
1542         crypt_free_volume_key(vk);
1543
1544         return r;
1545 }
1546
1547 int crypt_activate_by_volume_key(struct crypt_device *cd,
1548         const char *name,
1549         const char *volume_key,
1550         size_t volume_key_size,
1551         uint32_t flags)
1552 {
1553         crypt_status_info ci;
1554         struct volume_key *vk = NULL;
1555         int r = -EINVAL;
1556
1557         log_dbg("Activating volume %s by volume key.", name);
1558
1559         if (name) {
1560                 ci = crypt_status(NULL, name);
1561                 if (ci == CRYPT_INVALID)
1562                         return -EINVAL;
1563                 else if (ci >= CRYPT_ACTIVE) {
1564                         log_err(cd, _("Device %s already exists.\n"), name);
1565                         return -EEXIST;
1566                 }
1567         }
1568
1569         /* use key directly, no hash */
1570         if (isPLAIN(cd->type)) {
1571                 if (!name)
1572                         return -EINVAL;
1573
1574                 if (!volume_key || !volume_key_size || !cd->volume_key ||
1575                         volume_key_size != cd->volume_key->keylength) {
1576                         log_err(cd, _("Incorrect volume key specified for plain device.\n"));
1577                         return -EINVAL;
1578                 }
1579
1580                 vk = crypt_alloc_volume_key(volume_key_size, volume_key);
1581                 if (!vk)
1582                         return -ENOMEM;
1583
1584                 r = PLAIN_activate(cd, name, vk, cd->plain_hdr.size, flags);
1585         } else if (isLUKS(cd->type)) {
1586                 /* If key is not provided, try to use internal key */
1587                 if (!volume_key) {
1588                         if (!cd->volume_key) {
1589                                 log_err(cd, _("Volume key does not match the volume.\n"));
1590                                 return -EINVAL;
1591                         }
1592                         volume_key_size = cd->volume_key->keylength;
1593                         volume_key = cd->volume_key->key;
1594                 }
1595
1596                 vk = crypt_alloc_volume_key(volume_key_size, volume_key);
1597                 if (!vk)
1598                         return -ENOMEM;
1599                 r = LUKS_verify_volume_key(&cd->hdr, vk);
1600
1601                 if (r == -EPERM)
1602                         log_err(cd, _("Volume key does not match the volume.\n"));
1603
1604                 if (!r && name)
1605                         r = LUKS1_activate(cd, name, vk, flags);
1606         } else
1607                 log_err(cd, _("Device type is not properly initialised.\n"));
1608
1609         crypt_free_volume_key(vk);
1610
1611         return r;
1612 }
1613
1614 int crypt_deactivate(struct crypt_device *cd, const char *name)
1615 {
1616         int r;
1617
1618         if (!name)
1619                 return -EINVAL;
1620
1621         log_dbg("Deactivating volume %s.", name);
1622
1623         if (!cd && dm_init(NULL, 1) < 0)
1624                 return -ENOSYS;
1625
1626         switch (crypt_status(cd, name)) {
1627                 case CRYPT_ACTIVE:
1628                         r = dm_remove_device(name, 0, 0);
1629                         break;
1630                 case CRYPT_BUSY:
1631                         log_err(cd, _("Device %s is busy.\n"), name);
1632                         r = -EBUSY;
1633                         break;
1634                 case CRYPT_INACTIVE:
1635                         log_err(cd, _("Device %s is not active.\n"), name);
1636                         r = -ENODEV;
1637                         break;
1638                 default:
1639                         log_err(cd, _("Invalid device %s.\n"), name);
1640                         r = -EINVAL;
1641         }
1642
1643         if (!cd)
1644                 dm_exit();
1645
1646         return r;
1647 }
1648
1649 int crypt_volume_key_get(struct crypt_device *cd,
1650         int keyslot,
1651         char *volume_key,
1652         size_t *volume_key_size,
1653         const char *passphrase,
1654         size_t passphrase_size)
1655 {
1656         struct volume_key *vk = NULL;
1657         unsigned key_len;
1658         int r = -EINVAL;
1659
1660         key_len = crypt_get_volume_key_size(cd);
1661         if (key_len > *volume_key_size) {
1662                 log_err(cd, _("Volume key buffer too small.\n"));
1663                 return -ENOMEM;
1664         }
1665
1666         if (isPLAIN(cd->type) && cd->plain_hdr.hash) {
1667                 r = process_key(cd, cd->plain_hdr.hash, key_len,
1668                                 passphrase, passphrase_size, &vk);
1669                 if (r < 0)
1670                         log_err(cd, _("Cannot retrieve volume key for plain device.\n"));
1671         } else if (isLUKS(cd->type)) {
1672                 r = LUKS_open_key_with_hdr(mdata_device(cd), keyslot, passphrase,
1673                                         passphrase_size, &cd->hdr, &vk, cd);
1674
1675         } else
1676                 log_err(cd, _("This operation is not supported for %s crypt device.\n"), cd->type ?: "(none)");
1677
1678         if (r >= 0) {
1679                 memcpy(volume_key, vk->key, vk->keylength);
1680                 *volume_key_size = vk->keylength;
1681         }
1682
1683         crypt_free_volume_key(vk);
1684         return r;
1685 }
1686
1687 int crypt_volume_key_verify(struct crypt_device *cd,
1688         const char *volume_key,
1689         size_t volume_key_size)
1690 {
1691         struct volume_key *vk;
1692         int r;
1693
1694         if (!isLUKS(cd->type)) {
1695                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1696                 return -EINVAL;
1697         }
1698
1699         vk = crypt_alloc_volume_key(volume_key_size, volume_key);
1700         if (!vk)
1701                 return -ENOMEM;
1702
1703         r = LUKS_verify_volume_key(&cd->hdr, vk);
1704
1705         if (r == -EPERM)
1706                 log_err(cd, _("Volume key does not match the volume.\n"));
1707
1708         crypt_free_volume_key(vk);
1709
1710         return r;
1711 }
1712
1713 void crypt_set_timeout(struct crypt_device *cd, uint64_t timeout_sec)
1714 {
1715         log_dbg("Timeout set to %" PRIu64 " miliseconds.", timeout_sec);
1716         cd->timeout = timeout_sec;
1717 }
1718
1719 void crypt_set_password_retry(struct crypt_device *cd, int tries)
1720 {
1721         log_dbg("Password retry count set to %d.", tries);
1722         cd->tries = tries;
1723 }
1724
1725 void crypt_set_iterarion_time(struct crypt_device *cd, uint64_t iteration_time_ms)
1726 {
1727         log_dbg("Iteration time set to %" PRIu64 " miliseconds.", iteration_time_ms);
1728         cd->iteration_time = iteration_time_ms;
1729 }
1730
1731 void crypt_set_password_verify(struct crypt_device *cd, int password_verify)
1732 {
1733         log_dbg("Password verification %s.", password_verify ? "enabled" : "disabled");
1734         cd->password_verify = password_verify ? 1 : 0;
1735 }
1736
1737 void crypt_set_rng_type(struct crypt_device *cd, int rng_type)
1738 {
1739         switch (rng_type) {
1740         case CRYPT_RNG_URANDOM:
1741         case CRYPT_RNG_RANDOM:
1742                 log_dbg("RNG set to %d (%s).", rng_type, rng_type ? "random" : "urandom");
1743                 cd->rng_type = rng_type;
1744         }
1745 }
1746
1747 int crypt_get_rng_type(struct crypt_device *cd)
1748 {
1749         if (!cd)
1750                 return -EINVAL;
1751
1752         return cd->rng_type;
1753 }
1754
1755 int crypt_memory_lock(struct crypt_device *cd, int lock)
1756 {
1757         return lock ? crypt_memlock_inc(cd) : crypt_memlock_dec(cd);
1758 }
1759
1760 // reporting
1761 crypt_status_info crypt_status(struct crypt_device *cd, const char *name)
1762 {
1763         int r;
1764
1765         if (!cd && dm_init(NULL, 1) < 0)
1766                 return CRYPT_INVALID;
1767
1768         r = dm_status_device(name);
1769
1770         if (!cd)
1771                 dm_exit();
1772
1773         if (r < 0 && r != -ENODEV)
1774                 return CRYPT_INVALID;
1775
1776         if (r == 0)
1777                 return CRYPT_ACTIVE;
1778
1779         if (r > 0)
1780                 return CRYPT_BUSY;
1781
1782         return CRYPT_INACTIVE;
1783 }
1784
1785 static void hexprintICB(struct crypt_device *cd, char *d, int n)
1786 {
1787         int i;
1788         for(i = 0; i < n; i++)
1789                 log_std(cd, "%02hhx ", (char)d[i]);
1790 }
1791
1792 int crypt_dump(struct crypt_device *cd)
1793 {
1794         int i;
1795         if (!isLUKS(cd->type)) { //FIXME
1796                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1797                 return -EINVAL;
1798         }
1799
1800         log_std(cd, "LUKS header information for %s\n\n", mdata_device(cd));
1801         log_std(cd, "Version:       \t%d\n", cd->hdr.version);
1802         log_std(cd, "Cipher name:   \t%s\n", cd->hdr.cipherName);
1803         log_std(cd, "Cipher mode:   \t%s\n", cd->hdr.cipherMode);
1804         log_std(cd, "Hash spec:     \t%s\n", cd->hdr.hashSpec);
1805         log_std(cd, "Payload offset:\t%d\n", cd->hdr.payloadOffset);
1806         log_std(cd, "MK bits:       \t%d\n", cd->hdr.keyBytes * 8);
1807         log_std(cd, "MK digest:     \t");
1808         hexprintICB(cd, cd->hdr.mkDigest, LUKS_DIGESTSIZE);
1809         log_std(cd, "\n");
1810         log_std(cd, "MK salt:       \t");
1811         hexprintICB(cd, cd->hdr.mkDigestSalt, LUKS_SALTSIZE/2);
1812         log_std(cd, "\n               \t");
1813         hexprintICB(cd, cd->hdr.mkDigestSalt+LUKS_SALTSIZE/2, LUKS_SALTSIZE/2);
1814         log_std(cd, "\n");
1815         log_std(cd, "MK iterations: \t%d\n", cd->hdr.mkDigestIterations);
1816         log_std(cd, "UUID:          \t%s\n\n", cd->hdr.uuid);
1817         for(i = 0; i < LUKS_NUMKEYS; i++) {
1818                 if(cd->hdr.keyblock[i].active == LUKS_KEY_ENABLED) {
1819                         log_std(cd, "Key Slot %d: ENABLED\n",i);
1820                         log_std(cd, "\tIterations:         \t%d\n",
1821                                 cd->hdr.keyblock[i].passwordIterations);
1822                         log_std(cd, "\tSalt:               \t");
1823                         hexprintICB(cd, cd->hdr.keyblock[i].passwordSalt,
1824                                     LUKS_SALTSIZE/2);
1825                         log_std(cd, "\n\t                      \t");
1826                         hexprintICB(cd, cd->hdr.keyblock[i].passwordSalt +
1827                                     LUKS_SALTSIZE/2, LUKS_SALTSIZE/2);
1828                         log_std(cd, "\n");
1829
1830                         log_std(cd, "\tKey material offset:\t%d\n",
1831                                 cd->hdr.keyblock[i].keyMaterialOffset);
1832                         log_std(cd, "\tAF stripes:            \t%d\n",
1833                                 cd->hdr.keyblock[i].stripes);
1834                 }
1835                 else 
1836                         log_std(cd, "Key Slot %d: DISABLED\n", i);
1837         }
1838
1839         return 0;
1840 }
1841
1842 const char *crypt_get_cipher(struct crypt_device *cd)
1843 {
1844         if (isPLAIN(cd->type))
1845                 return cd->plain_cipher;
1846
1847         if (isLUKS(cd->type))
1848                 return cd->hdr.cipherName;
1849
1850         if (isLOOPAES(cd->type))
1851                 return cd->loopaes_cipher;
1852
1853         return NULL;
1854 }
1855
1856 const char *crypt_get_cipher_mode(struct crypt_device *cd)
1857 {
1858         if (isPLAIN(cd->type))
1859                 return cd->plain_cipher_mode;
1860
1861         if (isLUKS(cd->type))
1862                 return cd->hdr.cipherMode;
1863
1864         if (isLOOPAES(cd->type))
1865                 return cd->loopaes_cipher_mode;
1866
1867         return NULL;
1868 }
1869
1870 const char *crypt_get_uuid(struct crypt_device *cd)
1871 {
1872         if (isLUKS(cd->type))
1873                 return cd->hdr.uuid;
1874
1875         if (isPLAIN(cd->type))
1876                 return cd->plain_uuid;
1877
1878         if (isLOOPAES(cd->type))
1879                 return cd->loopaes_uuid;
1880
1881         return NULL;
1882 }
1883
1884 const char *crypt_get_device_name(struct crypt_device *cd)
1885 {
1886         return cd->device;
1887 }
1888
1889
1890 int crypt_get_volume_key_size(struct crypt_device *cd)
1891 {
1892         if (isPLAIN(cd->type) && cd->volume_key)
1893                 return cd->volume_key->keylength;
1894
1895         if (isLUKS(cd->type))
1896                 return cd->hdr.keyBytes;
1897
1898         if (isLOOPAES(cd->type))
1899                 return cd->loopaes_key_size;
1900
1901         return 0;
1902 }
1903
1904 uint64_t crypt_get_data_offset(struct crypt_device *cd)
1905 {
1906         if (isPLAIN(cd->type))
1907                 return cd->plain_hdr.offset;
1908
1909         if (isLUKS(cd->type))
1910                 return cd->hdr.payloadOffset;
1911
1912         if (isLOOPAES(cd->type))
1913                 return cd->loopaes_hdr.offset;
1914
1915         return 0;
1916 }
1917
1918 uint64_t crypt_get_iv_offset(struct crypt_device *cd)
1919 {
1920         if (isPLAIN(cd->type))
1921                 return cd->plain_hdr.skip;
1922
1923         if (isLUKS(cd->type))
1924                 return 0;
1925
1926         if (isLOOPAES(cd->type))
1927                 return cd->loopaes_hdr.skip;
1928
1929         return 0;
1930 }
1931
1932 crypt_keyslot_info crypt_keyslot_status(struct crypt_device *cd, int keyslot)
1933 {
1934         if (!isLUKS(cd->type)) {
1935                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1936                 return CRYPT_SLOT_INVALID;
1937         }
1938
1939         return LUKS_keyslot_info(&cd->hdr, keyslot);
1940 }
1941
1942 int crypt_keyslot_max(const char *type)
1943 {
1944         if (type && isLUKS(type))
1945                 return LUKS_NUMKEYS;
1946
1947         return -EINVAL;
1948 }
1949
1950 const char *crypt_get_type(struct crypt_device *cd)
1951 {
1952         return cd->type;
1953 }
1954
1955 int crypt_get_active_device(struct crypt_device *cd __attribute__((unused)),
1956                             const char *name,
1957                             struct crypt_active_device *cad)
1958 {
1959         struct crypt_dm_active_device dmd;
1960         int r;
1961
1962         r = dm_query_device(name, 0, &dmd);
1963         if (r < 0)
1964                 return r;
1965
1966         cad->offset     = dmd.offset;
1967         cad->iv_offset  = dmd.iv_offset;
1968         cad->size       = dmd.size;
1969         cad->flags      = dmd.flags;
1970
1971         return 0;
1972 }