Merge branch 'master' of https://code.google.com/p/cryptsetup
[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-2012, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 "verity.h"
33 #include "tcrypt.h"
34 #include "internal.h"
35
36 struct crypt_device {
37         char *type;
38
39         struct device *device;
40         struct device *metadata_device;
41
42         struct volume_key *volume_key;
43         uint64_t timeout;
44         uint64_t iteration_time;
45         int tries;
46         int password_verify;
47         int rng_type;
48
49         // FIXME: private binary headers and access it properly
50         // through sub-library (LUKS1, TCRYPT)
51
52         union {
53         struct { /* used in CRYPT_LUKS1 */
54                 struct luks_phdr hdr;
55                 uint64_t PBKDF2_per_sec;
56         } luks1;
57         struct { /* used in CRYPT_PLAIN */
58                 struct crypt_params_plain hdr;
59                 char *cipher;
60                 char *cipher_mode;
61                 char *uuid;
62                 unsigned int key_size;
63         } plain;
64         struct { /* used in CRYPT_LOOPAES */
65                 struct crypt_params_loopaes hdr;
66                 char *cipher;
67                 char *cipher_mode;
68                 char *uuid;
69                 unsigned int key_size;
70         } loopaes;
71         struct { /* used in CRYPT_VERITY */
72                 struct crypt_params_verity hdr;
73                 char *root_hash;
74                 unsigned int root_hash_size;
75                 char *uuid;
76         } verity;
77         struct { /* used in CRYPT_TCRYPT */
78                 struct crypt_params_tcrypt params;
79                 struct tcrypt_phdr hdr;
80         } tcrypt;
81         } u;
82
83         /* callbacks definitions */
84         void (*log)(int level, const char *msg, void *usrptr);
85         void *log_usrptr;
86         int (*confirm)(const char *msg, void *usrptr);
87         void *confirm_usrptr;
88         int (*password)(const char *msg, char *buf, size_t length, void *usrptr);
89         void *password_usrptr;
90
91         /* last error message */
92         char error[MAX_ERROR_LENGTH];
93 };
94
95 /* Global error */
96 /* FIXME: not thread safe, remove this later */
97 static char global_error[MAX_ERROR_LENGTH] = {0};
98
99 /* Log helper */
100 static void (*_default_log)(int level, const char *msg, void *usrptr) = NULL;
101 static int _debug_level = 0;
102
103 void crypt_set_debug_level(int level)
104 {
105         _debug_level = level;
106 }
107
108 int crypt_get_debug_level(void)
109 {
110         return _debug_level;
111 }
112
113 static void crypt_set_error(struct crypt_device *cd, const char *error)
114 {
115         size_t size = strlen(error);
116
117         /* Set global error, ugly hack... */
118         strncpy(global_error, error, MAX_ERROR_LENGTH - 2);
119         if (size < MAX_ERROR_LENGTH && global_error[size - 1] == '\n')
120                 global_error[size - 1] = '\0';
121
122         /* Set error string per context */
123         if (cd) {
124                 strncpy(cd->error, error, MAX_ERROR_LENGTH - 2);
125                 if (size < MAX_ERROR_LENGTH && cd->error[size - 1] == '\n')
126                         cd->error[size - 1] = '\0';
127         }
128 }
129
130 void crypt_log(struct crypt_device *cd, int level, const char *msg)
131 {
132         if (cd && cd->log)
133                 cd->log(level, msg, cd->log_usrptr);
134         else if (_default_log)
135                 _default_log(level, msg, NULL);
136
137         if (level == CRYPT_LOG_ERROR)
138                 crypt_set_error(cd, msg);
139 }
140
141 __attribute__((format(printf, 5, 6)))
142 void logger(struct crypt_device *cd, int level, const char *file,
143             int line, const char *format, ...)
144 {
145         va_list argp;
146         char *target = NULL;
147
148         va_start(argp, format);
149
150         if (vasprintf(&target, format, argp) > 0 ) {
151                 if (level >= 0) {
152                         crypt_log(cd, level, target);
153 #ifdef CRYPT_DEBUG
154                 } else if (_debug_level)
155                         printf("# %s:%d %s\n", file ?: "?", line, target);
156 #else
157                 } else if (_debug_level)
158                         printf("# %s\n", target);
159 #endif
160         }
161
162         va_end(argp);
163         free(target);
164 }
165
166 static const char *mdata_device_path(struct crypt_device *cd)
167 {
168         return device_path(cd->metadata_device ?: cd->device);
169 }
170
171 /* internal only */
172 struct device *crypt_metadata_device(struct crypt_device *cd)
173 {
174         return cd->metadata_device ?: cd->device;
175 }
176
177 struct device *crypt_data_device(struct crypt_device *cd)
178 {
179         return cd->device;
180 }
181
182 int init_crypto(struct crypt_device *ctx)
183 {
184         int r;
185
186         crypt_fips_libcryptsetup_check(ctx);
187
188         r = crypt_random_init(ctx);
189         if (r < 0) {
190                 log_err(ctx, _("Cannot initialize crypto RNG backend.\n"));
191                 return r;
192         }
193
194         r = crypt_backend_init(ctx);
195         if (r < 0)
196                 log_err(ctx, _("Cannot initialize crypto backend.\n"));
197
198         log_dbg("Crypto backend (%s) initialized.", crypt_backend_version());
199         return r;
200 }
201
202 static int process_key(struct crypt_device *cd, const char *hash_name,
203                        size_t key_size, const char *pass, size_t passLen,
204                        struct volume_key **vk)
205 {
206         int r;
207
208         if (!key_size)
209                 return -EINVAL;
210
211         *vk = crypt_alloc_volume_key(key_size, NULL);
212         if (!*vk)
213                 return -ENOMEM;
214
215         if (hash_name) {
216                 r = crypt_plain_hash(cd, hash_name, (*vk)->key, key_size, pass, passLen);
217                 if (r < 0) {
218                         if (r == -ENOENT)
219                                 log_err(cd, _("Hash algorithm %s not supported.\n"),
220                                         hash_name);
221                         else
222                                 log_err(cd, _("Key processing error (using hash %s).\n"),
223                                         hash_name);
224                         crypt_free_volume_key(*vk);
225                         *vk = NULL;
226                         return -EINVAL;
227                 }
228         } else if (passLen > key_size) {
229                 memcpy((*vk)->key, pass, key_size);
230         } else {
231                 memcpy((*vk)->key, pass, passLen);
232         }
233
234         return 0;
235 }
236
237 static int isPLAIN(const char *type)
238 {
239         return (type && !strcmp(CRYPT_PLAIN, type));
240 }
241
242 static int isLUKS(const char *type)
243 {
244         return (type && !strcmp(CRYPT_LUKS1, type));
245 }
246
247 static int isLOOPAES(const char *type)
248 {
249         return (type && !strcmp(CRYPT_LOOPAES, type));
250 }
251
252 static int isVERITY(const char *type)
253 {
254         return (type && !strcmp(CRYPT_VERITY, type));
255 }
256
257 static int isTCRYPT(const char *type)
258 {
259         return (type && !strcmp(CRYPT_TCRYPT, type));
260 }
261
262 /* keyslot helpers */
263 static int keyslot_verify_or_find_empty(struct crypt_device *cd, int *keyslot)
264 {
265         if (*keyslot == CRYPT_ANY_SLOT) {
266                 *keyslot = LUKS_keyslot_find_empty(&cd->u.luks1.hdr);
267                 if (*keyslot < 0) {
268                         log_err(cd, _("All key slots full.\n"));
269                         return -EINVAL;
270                 }
271         }
272
273         switch (LUKS_keyslot_info(&cd->u.luks1.hdr, *keyslot)) {
274                 case CRYPT_SLOT_INVALID:
275                         log_err(cd, _("Key slot %d is invalid, please select between 0 and %d.\n"),
276                                 *keyslot, LUKS_NUMKEYS - 1);
277                         return -EINVAL;
278                 case CRYPT_SLOT_INACTIVE:
279                         break;
280                 default:
281                         log_err(cd, _("Key slot %d is full, please select another one.\n"),
282                                 *keyslot);
283                         return -EINVAL;
284         }
285
286         return 0;
287 }
288
289 /*
290  * compares UUIDs returned by device-mapper (striped by cryptsetup) and uuid in header
291  */
292 static int crypt_uuid_cmp(const char *dm_uuid, const char *hdr_uuid)
293 {
294         int i, j;
295         char *str;
296
297         if (!dm_uuid || !hdr_uuid)
298                 return -EINVAL;
299
300         str = strchr(dm_uuid, '-');
301         if (!str)
302                 return -EINVAL;
303
304         for (i = 0, j = 1; hdr_uuid[i]; i++) {
305                 if (hdr_uuid[i] == '-')
306                         continue;
307
308                 if (!str[j] || str[j] == '-')
309                         return -EINVAL;
310
311                 if (str[j] != hdr_uuid[i])
312                         return -EINVAL;
313                 j++;
314         }
315
316         return 0;
317 }
318
319 int PLAIN_activate(struct crypt_device *cd,
320                      const char *name,
321                      struct volume_key *vk,
322                      uint64_t size,
323                      uint32_t flags)
324 {
325         int r;
326         char *dm_cipher = NULL;
327         enum devcheck device_check;
328         struct crypt_dm_active_device dmd = {
329                 .target = DM_CRYPT,
330                 .uuid   = crypt_get_uuid(cd),
331                 .size   = size,
332                 .flags  = flags,
333                 .data_device = crypt_data_device(cd),
334                 .u.crypt  = {
335                         .cipher = NULL,
336                         .vk     = vk,
337                         .offset = crypt_get_data_offset(cd),
338                         .iv_offset = crypt_get_iv_offset(cd),
339                 }
340         };
341
342         if (dmd.flags & CRYPT_ACTIVATE_SHARED)
343                 device_check = DEV_SHARED;
344         else
345                 device_check = DEV_EXCL;
346
347         r = device_block_adjust(cd, dmd.data_device, device_check,
348                                 dmd.u.crypt.offset, &dmd.size, &dmd.flags);
349         if (r)
350                 return r;
351
352         if (crypt_get_cipher_mode(cd))
353                 r = asprintf(&dm_cipher, "%s-%s", crypt_get_cipher(cd), crypt_get_cipher_mode(cd));
354         else
355                 r = asprintf(&dm_cipher, "%s", crypt_get_cipher(cd));
356         if (r < 0)
357                 return -ENOMEM;
358
359         dmd.u.crypt.cipher = dm_cipher;
360         log_dbg("Trying to activate PLAIN device %s using cipher %s.",
361                 name, dmd.u.crypt.cipher);
362
363         r = dm_create_device(cd, name, CRYPT_PLAIN, &dmd, 0);
364
365         // FIXME
366         if (!cd->u.plain.uuid && dm_query_device(cd, name, DM_ACTIVE_UUID, &dmd) >= 0)
367                 cd->u.plain.uuid = CONST_CAST(char*)dmd.uuid;
368
369         free(dm_cipher);
370         return r;
371 }
372
373 int crypt_confirm(struct crypt_device *cd, const char *msg)
374 {
375         if (!cd || !cd->confirm)
376                 return 1;
377         else
378                 return cd->confirm(msg, cd->confirm_usrptr);
379 }
380
381 static int key_from_terminal(struct crypt_device *cd, char *msg, char **key,
382                               size_t *key_len, int force_verify)
383 {
384         char *prompt = NULL, *device_name;
385         int r;
386
387         *key = NULL;
388         if(!msg) {
389                 if (crypt_loop_device(crypt_get_device_name(cd)))
390                         device_name = crypt_loop_backing_file(crypt_get_device_name(cd));
391                 else
392                         device_name = strdup(crypt_get_device_name(cd));
393                 if (!device_name)
394                         return -ENOMEM;
395                 r = asprintf(&prompt, _("Enter passphrase for %s: "), device_name);
396                 free(device_name);
397                 if (r < 0)
398                         return -ENOMEM;
399                 msg = prompt;
400         }
401
402         if (cd->password) {
403                 *key = crypt_safe_alloc(DEFAULT_PASSPHRASE_SIZE_MAX);
404                 if (!*key) {
405                         r = -ENOMEM;
406                         goto out;
407                 }
408                 r = cd->password(msg, *key, DEFAULT_PASSPHRASE_SIZE_MAX,
409                                  cd->password_usrptr);
410                 if (r < 0) {
411                         crypt_safe_free(*key);
412                         *key = NULL;
413                 } else
414                         *key_len = r;
415         } else
416                 r = crypt_get_key(msg, key, key_len, 0, 0, NULL, cd->timeout,
417                                   (force_verify || cd->password_verify), cd);
418 out:
419         free(prompt);
420         return (r < 0) ? r: 0;
421 }
422
423 static int volume_key_by_terminal_passphrase(struct crypt_device *cd, int keyslot,
424                                              struct volume_key **vk)
425 {
426         char *passphrase_read = NULL;
427         size_t passphrase_size_read;
428         int r = -EINVAL, eperm = 0, tries = cd->tries;
429
430         *vk = NULL;
431         do {
432                 crypt_free_volume_key(*vk);
433                 *vk = NULL;
434
435                 r = key_from_terminal(cd, NULL, &passphrase_read,
436                                       &passphrase_size_read, 0);
437                 /* Continue if it is just passphrase verify mismatch */
438                 if (r == -EPERM)
439                         continue;
440                 if(r < 0)
441                         goto out;
442
443                 r = LUKS_open_key_with_hdr(keyslot, passphrase_read,
444                                            passphrase_size_read, &cd->u.luks1.hdr, vk, cd);
445                 if (r == -EPERM)
446                         eperm = 1;
447                 crypt_safe_free(passphrase_read);
448                 passphrase_read = NULL;
449         } while (r == -EPERM && (--tries > 0));
450 out:
451         if (r < 0) {
452                 crypt_free_volume_key(*vk);
453                 *vk = NULL;
454
455                 /* Report wrong passphrase if at least one try failed */
456                 if (eperm && r == -EPIPE)
457                         r = -EPERM;
458         }
459
460         crypt_safe_free(passphrase_read);
461         return r;
462 }
463
464 static int key_from_file(struct crypt_device *cd, char *msg,
465                           char **key, size_t *key_len,
466                           const char *key_file, size_t key_offset,
467                           size_t key_size)
468 {
469         return crypt_get_key(msg, key, key_len, key_offset, key_size, key_file,
470                              cd->timeout, 0, cd);
471 }
472
473 void crypt_set_log_callback(struct crypt_device *cd,
474         void (*log)(int level, const char *msg, void *usrptr),
475         void *usrptr)
476 {
477         if (!cd)
478                 _default_log = log;
479         else {
480                 cd->log = log;
481                 cd->log_usrptr = usrptr;
482         }
483 }
484
485 void crypt_set_confirm_callback(struct crypt_device *cd,
486         int (*confirm)(const char *msg, void *usrptr),
487         void *usrptr)
488 {
489         cd->confirm = confirm;
490         cd->confirm_usrptr = usrptr;
491 }
492
493 void crypt_set_password_callback(struct crypt_device *cd,
494         int (*password)(const char *msg, char *buf, size_t length, void *usrptr),
495         void *usrptr)
496 {
497         cd->password = password;
498         cd->password_usrptr = usrptr;
499 }
500
501 static void _get_error(char *error, char *buf, size_t size)
502 {
503         if (!buf || size < 1)
504                 error[0] = '\0';
505         else if (*error) {
506                 strncpy(buf, error, size - 1);
507                 buf[size - 1] = '\0';
508                 error[0] = '\0';
509         } else
510                 buf[0] = '\0';
511 }
512
513 void crypt_last_error(struct crypt_device *cd, char *buf, size_t size)
514 {
515         if (cd)
516                 return _get_error(cd->error, buf, size);
517 }
518
519 /* Deprecated global error interface */
520 void crypt_get_error(char *buf, size_t size)
521 {
522         return _get_error(global_error, buf, size);
523 }
524
525 const char *crypt_get_dir(void)
526 {
527         return dm_get_dir();
528 }
529
530 int crypt_init(struct crypt_device **cd, const char *device)
531 {
532         struct crypt_device *h = NULL;
533         int r;
534
535         if (!cd)
536                 return -EINVAL;
537
538         log_dbg("Allocating crypt device %s context.", device);
539
540         if (!(h = malloc(sizeof(struct crypt_device))))
541                 return -ENOMEM;
542
543         memset(h, 0, sizeof(*h));
544
545         r = device_alloc(&h->device, device);
546         if (r < 0)
547                 goto bad;
548
549         dm_backend_init();
550
551         h->iteration_time = 1000;
552         h->password_verify = 0;
553         h->tries = 3;
554         h->rng_type = crypt_random_default_key_rng();
555         *cd = h;
556         return 0;
557 bad:
558         device_free(h->device);
559         free(h);
560         return r;
561 }
562
563 static int crypt_check_data_device_size(struct crypt_device *cd)
564 {
565         int r;
566         uint64_t size, size_min;
567
568         /* Check data device size, require at least one sector */
569         size_min = crypt_get_data_offset(cd) << SECTOR_SHIFT ?: SECTOR_SIZE;
570
571         r = device_size(cd->device, &size);
572         if (r < 0)
573                 return r;
574
575         if (size < size_min) {
576                 log_err(cd, _("Header detected but device %s is too small.\n"),
577                         device_path(cd->device));
578                 return -EINVAL;
579         }
580
581         return r;
582 }
583
584 int crypt_set_data_device(struct crypt_device *cd, const char *device)
585 {
586         struct device *dev = NULL;
587         int r;
588
589         log_dbg("Setting ciphertext data device to %s.", device ?: "(none)");
590
591         if (!isLUKS(cd->type) && !isVERITY(cd->type)) {
592                 log_err(cd, _("This operation is not supported for this device type.\n"));
593                 return  -EINVAL;
594         }
595
596         /* metadata device must be set */
597         if (!cd->device || !device)
598                 return -EINVAL;
599
600         r = device_alloc(&dev, device);
601         if (r < 0)
602                 return r;
603
604         if (!cd->metadata_device) {
605                 cd->metadata_device = cd->device;
606         } else
607                 device_free(cd->device);
608
609         cd->device = dev;
610
611         return crypt_check_data_device_size(cd);
612 }
613
614 static int _crypt_load_luks1(struct crypt_device *cd, int require_header, int repair)
615 {
616         struct luks_phdr hdr;
617         int r;
618
619         r = init_crypto(cd);
620         if (r < 0)
621                 return r;
622
623         r = LUKS_read_phdr(&hdr, require_header, repair, cd);
624         if (r < 0)
625                 return r;
626
627         if (!cd->type && !(cd->type = strdup(CRYPT_LUKS1)))
628                 return -ENOMEM;
629
630         memcpy(&cd->u.luks1.hdr, &hdr, sizeof(hdr));
631
632         return r;
633 }
634
635 static int _crypt_load_tcrypt(struct crypt_device *cd, struct crypt_params_tcrypt *params)
636 {
637         int r;
638
639         r = init_crypto(cd);
640         if (r < 0)
641                 return r;
642
643         memcpy(&cd->u.tcrypt.params, params, sizeof(*params));
644
645         r = TCRYPT_read_phdr(cd, &cd->u.tcrypt.hdr, &cd->u.tcrypt.params);
646
647         cd->u.tcrypt.params.passphrase = NULL;
648         cd->u.tcrypt.params.passphrase_size = 0;
649         cd->u.tcrypt.params.keyfiles = NULL;
650         cd->u.tcrypt.params.keyfiles_count = 0;
651
652         if (r < 0)
653                 return r;
654
655         if (!cd->type && !(cd->type = strdup(CRYPT_TCRYPT)))
656                 return -ENOMEM;
657
658         return r;
659 }
660
661 static int _crypt_load_verity(struct crypt_device *cd, struct crypt_params_verity *params)
662 {
663         int r;
664         size_t sb_offset = 0;
665
666         r = init_crypto(cd);
667         if (r < 0)
668                 return r;
669
670         if (params && params->flags & CRYPT_VERITY_NO_HEADER)
671                 return -EINVAL;
672
673         if (params)
674                 sb_offset = params->hash_area_offset;
675
676         r = VERITY_read_sb(cd, sb_offset, &cd->u.verity.uuid, &cd->u.verity.hdr);
677         if (r < 0)
678                 return r;
679
680         if (params)
681                 cd->u.verity.hdr.flags = params->flags;
682
683         /* Hash availability checked in sb load */
684         cd->u.verity.root_hash_size = crypt_hash_size(cd->u.verity.hdr.hash_name);
685         if (cd->u.verity.root_hash_size > 4096)
686                 return -EINVAL;
687
688         if (!cd->type && !(cd->type = strdup(CRYPT_VERITY)))
689                 return -ENOMEM;
690
691         if (params && params->data_device &&
692             (r = crypt_set_data_device(cd, params->data_device)) < 0)
693                 return r;
694
695         return r;
696 }
697
698 static int _init_by_name_crypt(struct crypt_device *cd, const char *name)
699 {
700         struct crypt_dm_active_device dmd = {};
701         char cipher[MAX_CIPHER_LEN], cipher_mode[MAX_CIPHER_LEN];
702         int key_nums, r;
703
704         r = dm_query_device(cd, name,
705                         DM_ACTIVE_DEVICE |
706                         DM_ACTIVE_UUID |
707                         DM_ACTIVE_CRYPT_CIPHER |
708                         DM_ACTIVE_CRYPT_KEYSIZE, &dmd);
709         if (r < 0)
710                 goto out;
711
712         if (isPLAIN(cd->type)) {
713                 cd->u.plain.uuid = dmd.uuid ? strdup(dmd.uuid) : NULL;
714                 cd->u.plain.hdr.hash = NULL; /* no way to get this */
715                 cd->u.plain.hdr.offset = dmd.u.crypt.offset;
716                 cd->u.plain.hdr.skip = dmd.u.crypt.iv_offset;
717                 cd->u.plain.key_size = dmd.u.crypt.vk->keylength;
718
719                 r = crypt_parse_name_and_mode(dmd.u.crypt.cipher, cipher, NULL, cipher_mode);
720                 if (!r) {
721                         cd->u.plain.cipher = strdup(cipher);
722                         cd->u.plain.cipher_mode = strdup(cipher_mode);
723                 }
724         } else if (isLOOPAES(cd->type)) {
725                 cd->u.loopaes.uuid = dmd.uuid ? strdup(dmd.uuid) : NULL;
726                 cd->u.loopaes.hdr.offset = dmd.u.crypt.offset;
727
728                 r = crypt_parse_name_and_mode(dmd.u.crypt.cipher, cipher,
729                                               &key_nums, cipher_mode);
730                 if (!r) {
731                         cd->u.loopaes.cipher = strdup(cipher);
732                         cd->u.loopaes.cipher_mode = strdup(cipher_mode);
733                         /* version 3 uses last key for IV */
734                         if (dmd.u.crypt.vk->keylength % key_nums)
735                                 key_nums++;
736                         cd->u.loopaes.key_size = dmd.u.crypt.vk->keylength / key_nums;
737                 }
738         } else if (isLUKS(cd->type)) {
739                 if (crypt_metadata_device(cd)) {
740                         r = _crypt_load_luks1(cd, 0, 0);
741                         if (r < 0) {
742                                 log_dbg("LUKS device header does not match active device.");
743                                 free(cd->type);
744                                 cd->type = NULL;
745                                 r = 0;
746                                 goto out;
747                         }
748                         /* check whether UUIDs match each other */
749                         r = crypt_uuid_cmp(dmd.uuid, cd->u.luks1.hdr.uuid);
750                         if (r < 0) {
751                                 log_dbg("LUKS device header uuid: %s mismatches DM returned uuid %s",
752                                         cd->u.luks1.hdr.uuid, dmd.uuid);
753                                 free(cd->type);
754                                 cd->type = NULL;
755                                 r = 0;
756                                 goto out;
757                         }
758                 }
759         } else if (isTCRYPT(cd->type)) {
760                 r = TCRYPT_init_by_name(cd, name, &dmd, &cd->device,
761                                         &cd->u.tcrypt.params, &cd->u.tcrypt.hdr);
762         }
763 out:
764         crypt_free_volume_key(dmd.u.crypt.vk);
765         device_free(dmd.data_device);
766         free(CONST_CAST(void*)dmd.u.crypt.cipher);
767         free(CONST_CAST(void*)dmd.uuid);
768         return r;
769 }
770
771 static int _init_by_name_verity(struct crypt_device *cd, const char *name)
772 {
773         struct crypt_params_verity params = {};
774         struct crypt_dm_active_device dmd = {
775                 .target = DM_VERITY,
776                 .u.verity.vp = &params,
777         };
778         int r;
779
780         r = dm_query_device(cd, name,
781                                 DM_ACTIVE_DEVICE |
782                                 DM_ACTIVE_UUID |
783                                 DM_ACTIVE_VERITY_HASH_DEVICE |
784                                 DM_ACTIVE_VERITY_PARAMS, &dmd);
785         if (r < 0)
786                 goto out;
787
788         if (isVERITY(cd->type)) {
789                 cd->u.verity.uuid = dmd.uuid ? strdup(dmd.uuid) : NULL;
790                 cd->u.verity.hdr.flags = CRYPT_VERITY_NO_HEADER; //FIXME
791                 cd->u.verity.hdr.data_size = params.data_size;
792                 cd->u.verity.root_hash_size = dmd.u.verity.root_hash_size;
793                 cd->u.verity.root_hash = NULL;
794                 cd->u.verity.hdr.hash_name = params.hash_name;
795                 cd->u.verity.hdr.data_device = NULL;
796                 cd->u.verity.hdr.hash_device = NULL;
797                 cd->u.verity.hdr.data_block_size = params.data_block_size;
798                 cd->u.verity.hdr.hash_block_size = params.hash_block_size;
799                 cd->u.verity.hdr.hash_area_offset = dmd.u.verity.hash_offset;
800                 cd->u.verity.hdr.hash_type = params.hash_type;
801                 cd->u.verity.hdr.flags = params.flags;
802                 cd->u.verity.hdr.salt_size = params.salt_size;
803                 cd->u.verity.hdr.salt = params.salt;
804                 cd->metadata_device = dmd.u.verity.hash_device;
805         }
806 out:
807         device_free(dmd.data_device);
808         free(CONST_CAST(void*)dmd.uuid);
809         return r;
810 }
811
812 int crypt_init_by_name_and_header(struct crypt_device **cd,
813                                   const char *name,
814                                   const char *header_device)
815 {
816         crypt_status_info ci;
817         struct crypt_dm_active_device dmd;
818         int r;
819
820         log_dbg("Allocating crypt device context by device %s.", name);
821
822         ci = crypt_status(NULL, name);
823         if (ci == CRYPT_INVALID)
824                 return -ENODEV;
825
826         if (ci < CRYPT_ACTIVE) {
827                 log_err(NULL, _("Device %s is not active.\n"), name);
828                 return -ENODEV;
829         }
830
831         r = dm_query_device(NULL, name, DM_ACTIVE_DEVICE | DM_ACTIVE_UUID, &dmd);
832         if (r < 0)
833                 goto out;
834
835         *cd = NULL;
836
837         if (header_device) {
838                 r = crypt_init(cd, header_device);
839         } else {
840                 r = crypt_init(cd, device_path(dmd.data_device));
841
842                 /* Underlying device disappeared but mapping still active */
843                 if (!dmd.data_device || r == -ENOTBLK)
844                         log_verbose(NULL, _("Underlying device for crypt device %s disappeared.\n"),
845                                     name);
846
847                 /* Underlying device is not readable but crypt mapping exists */
848                 if (r == -ENOTBLK) {
849                         device_free(dmd.data_device);
850                         dmd.data_device = NULL;
851                         r = crypt_init(cd, NULL);
852                 }
853         }
854
855         if (r < 0)
856                 goto out;
857
858         if (dmd.uuid) {
859                 if (!strncmp(CRYPT_PLAIN, dmd.uuid, sizeof(CRYPT_PLAIN)-1))
860                         (*cd)->type = strdup(CRYPT_PLAIN);
861                 else if (!strncmp(CRYPT_LOOPAES, dmd.uuid, sizeof(CRYPT_LOOPAES)-1))
862                         (*cd)->type = strdup(CRYPT_LOOPAES);
863                 else if (!strncmp(CRYPT_LUKS1, dmd.uuid, sizeof(CRYPT_LUKS1)-1))
864                         (*cd)->type = strdup(CRYPT_LUKS1);
865                 else if (!strncmp(CRYPT_VERITY, dmd.uuid, sizeof(CRYPT_VERITY)-1))
866                         (*cd)->type = strdup(CRYPT_VERITY);
867                 else if (!strncmp(CRYPT_TCRYPT, dmd.uuid, sizeof(CRYPT_TCRYPT)-1))
868                         (*cd)->type = strdup(CRYPT_TCRYPT);
869                 else
870                         log_dbg("Unknown UUID set, some parameters are not set.");
871         } else
872                 log_dbg("Active device has no UUID set, some parameters are not set.");
873
874         if (header_device) {
875                 r = crypt_set_data_device(*cd, device_path(dmd.data_device));
876                 if (r < 0)
877                         goto out;
878         }
879
880         /* Try to initialise basic parameters from active device */
881
882         if (dmd.target == DM_CRYPT)
883                 r = _init_by_name_crypt(*cd, name);
884         else if (dmd.target == DM_VERITY)
885                 r = _init_by_name_verity(*cd, name);
886 out:
887         if (r < 0) {
888                 crypt_free(*cd);
889                 *cd = NULL;
890         }
891         device_free(dmd.data_device);
892         free(CONST_CAST(void*)dmd.uuid);
893         return r;
894 }
895
896 int crypt_init_by_name(struct crypt_device **cd, const char *name)
897 {
898         return crypt_init_by_name_and_header(cd, name, NULL);
899 }
900
901 static int _crypt_format_plain(struct crypt_device *cd,
902                                const char *cipher,
903                                const char *cipher_mode,
904                                const char *uuid,
905                                size_t volume_key_size,
906                                struct crypt_params_plain *params)
907 {
908         if (!cipher || !cipher_mode) {
909                 log_err(cd, _("Invalid plain crypt parameters.\n"));
910                 return -EINVAL;
911         }
912
913         if (volume_key_size > 1024) {
914                 log_err(cd, _("Invalid key size.\n"));
915                 return -EINVAL;
916         }
917
918         if (!(cd->type = strdup(CRYPT_PLAIN)))
919                 return -ENOMEM;
920
921         cd->u.plain.key_size = volume_key_size;
922         cd->volume_key = crypt_alloc_volume_key(volume_key_size, NULL);
923         if (!cd->volume_key)
924                 return -ENOMEM;
925
926         cd->u.plain.cipher = strdup(cipher);
927         cd->u.plain.cipher_mode = strdup(cipher_mode);
928
929         if (uuid)
930                 cd->u.plain.uuid = strdup(uuid);
931
932         if (params && params->hash)
933                 cd->u.plain.hdr.hash = strdup(params->hash);
934
935         cd->u.plain.hdr.offset = params ? params->offset : 0;
936         cd->u.plain.hdr.skip = params ? params->skip : 0;
937         cd->u.plain.hdr.size = params ? params->size : 0;
938
939         if (!cd->u.plain.cipher || !cd->u.plain.cipher_mode)
940                 return -ENOMEM;
941
942         return 0;
943 }
944
945 static int _crypt_format_luks1(struct crypt_device *cd,
946                                const char *cipher,
947                                const char *cipher_mode,
948                                const char *uuid,
949                                const char *volume_key,
950                                size_t volume_key_size,
951                                struct crypt_params_luks1 *params)
952 {
953         int r;
954         unsigned long required_alignment = DEFAULT_DISK_ALIGNMENT;
955         unsigned long alignment_offset = 0;
956
957         if (!crypt_metadata_device(cd)) {
958                 log_err(cd, _("Can't format LUKS without device.\n"));
959                 return -EINVAL;
960         }
961
962         if (!(cd->type = strdup(CRYPT_LUKS1)))
963                 return -ENOMEM;
964
965         if (volume_key)
966                 cd->volume_key = crypt_alloc_volume_key(volume_key_size,
967                                                       volume_key);
968         else
969                 cd->volume_key = crypt_generate_volume_key(cd, volume_key_size);
970
971         if(!cd->volume_key)
972                 return -ENOMEM;
973
974         if (params && params->data_device) {
975                 cd->metadata_device = cd->device;
976                 cd->device = NULL;
977                 if (device_alloc(&cd->device, params->data_device) < 0)
978                         return -ENOMEM;
979                 required_alignment = params->data_alignment * SECTOR_SIZE;
980         } else if (params && params->data_alignment) {
981                 required_alignment = params->data_alignment * SECTOR_SIZE;
982         } else
983                 device_topology_alignment(cd->device,
984                                        &required_alignment,
985                                        &alignment_offset, DEFAULT_DISK_ALIGNMENT);
986
987         /* Check early if we cannot allocate block device for key slot access */
988         r = device_block_adjust(cd, cd->device, DEV_OK, 0, NULL, NULL);
989         if(r < 0)
990                 return r;
991
992         r = LUKS_generate_phdr(&cd->u.luks1.hdr, cd->volume_key, cipher, cipher_mode,
993                                (params && params->hash) ? params->hash : "sha1",
994                                uuid, LUKS_STRIPES,
995                                required_alignment / SECTOR_SIZE,
996                                alignment_offset / SECTOR_SIZE,
997                                cd->iteration_time, &cd->u.luks1.PBKDF2_per_sec,
998                                cd->metadata_device ? 1 : 0, cd);
999         if(r < 0)
1000                 return r;
1001
1002         /* Wipe first 8 sectors - fs magic numbers etc. */
1003         r = crypt_wipe(crypt_metadata_device(cd), 0, 8 * SECTOR_SIZE, CRYPT_WIPE_ZERO, 1);
1004         if(r < 0) {
1005                 if (r == -EBUSY)
1006                         log_err(cd, _("Cannot format device %s which is still in use.\n"),
1007                                 mdata_device_path(cd));
1008                 else if (r == -EACCES) {
1009                         log_err(cd, _("Cannot format device %s, permission denied.\n"),
1010                                 mdata_device_path(cd));
1011                         r = -EINVAL;
1012                 } else
1013                         log_err(cd, _("Cannot wipe header on device %s.\n"),
1014                                 mdata_device_path(cd));
1015
1016                 return r;
1017         }
1018
1019         r = LUKS_write_phdr(&cd->u.luks1.hdr, cd);
1020
1021         return r;
1022 }
1023
1024 static int _crypt_format_loopaes(struct crypt_device *cd,
1025                                  const char *cipher,
1026                                  const char *uuid,
1027                                  size_t volume_key_size,
1028                                  struct crypt_params_loopaes *params)
1029 {
1030         if (!crypt_metadata_device(cd)) {
1031                 log_err(cd, _("Can't format LOOPAES without device.\n"));
1032                 return -EINVAL;
1033         }
1034
1035         if (volume_key_size > 1024) {
1036                 log_err(cd, _("Invalid key size.\n"));
1037                 return -EINVAL;
1038         }
1039
1040         if (!(cd->type = strdup(CRYPT_LOOPAES)))
1041                 return -ENOMEM;
1042
1043         cd->u.loopaes.key_size = volume_key_size;
1044
1045         cd->u.loopaes.cipher = strdup(cipher ?: DEFAULT_LOOPAES_CIPHER);
1046
1047         if (uuid)
1048                 cd->u.loopaes.uuid = strdup(uuid);
1049
1050         if (params && params->hash)
1051                 cd->u.loopaes.hdr.hash = strdup(params->hash);
1052
1053         cd->u.loopaes.hdr.offset = params ? params->offset : 0;
1054         cd->u.loopaes.hdr.skip = params ? params->skip : 0;
1055
1056         return 0;
1057 }
1058
1059 static int _crypt_format_verity(struct crypt_device *cd,
1060                                  const char *uuid,
1061                                  struct crypt_params_verity *params)
1062 {
1063         int r = 0, hash_size;
1064         uint64_t data_device_size;
1065
1066         if (!crypt_metadata_device(cd)) {
1067                 log_err(cd, _("Can't format VERITY without device.\n"));
1068                 return -EINVAL;
1069         }
1070
1071         if (!params || !params->data_device)
1072                 return -EINVAL;
1073
1074         if (params->hash_type > VERITY_MAX_HASH_TYPE) {
1075                 log_err(cd, _("Unsupported VERITY hash type %d.\n"), params->hash_type);
1076                 return -EINVAL;
1077         }
1078
1079         if (VERITY_BLOCK_SIZE_OK(params->data_block_size) ||
1080             VERITY_BLOCK_SIZE_OK(params->hash_block_size)) {
1081                 log_err(cd, _("Unsupported VERITY block size.\n"));
1082                 return -EINVAL;
1083         }
1084
1085         if (params->hash_area_offset % 512) {
1086                 log_err(cd, _("Unsupported VERITY hash offset.\n"));
1087                 return -EINVAL;
1088         }
1089
1090         if (!(cd->type = strdup(CRYPT_VERITY)))
1091                 return -ENOMEM;
1092
1093         r = crypt_set_data_device(cd, params->data_device);
1094         if (r)
1095                 return r;
1096         if (!params->data_size) {
1097                 r = device_size(cd->device, &data_device_size);
1098                 if (r < 0)
1099                         return r;
1100
1101                 cd->u.verity.hdr.data_size = data_device_size / params->data_block_size;
1102         } else
1103                 cd->u.verity.hdr.data_size = params->data_size;
1104
1105         hash_size = crypt_hash_size(params->hash_name);
1106         if (hash_size <= 0) {
1107                 log_err(cd, _("Hash algorithm %s not supported.\n"),
1108                         params->hash_name);
1109                 return -EINVAL;
1110         }
1111         cd->u.verity.root_hash_size = hash_size;
1112
1113         cd->u.verity.root_hash = malloc(cd->u.verity.root_hash_size);
1114         if (!cd->u.verity.root_hash)
1115                 return -ENOMEM;
1116
1117         cd->u.verity.hdr.flags = params->flags;
1118         if (!(cd->u.verity.hdr.hash_name = strdup(params->hash_name)))
1119                 return -ENOMEM;
1120         cd->u.verity.hdr.data_device = NULL;
1121         cd->u.verity.hdr.data_block_size = params->data_block_size;
1122         cd->u.verity.hdr.hash_block_size = params->hash_block_size;
1123         cd->u.verity.hdr.hash_area_offset = params->hash_area_offset;
1124         cd->u.verity.hdr.hash_type = params->hash_type;
1125         cd->u.verity.hdr.flags = params->flags;
1126         cd->u.verity.hdr.salt_size = params->salt_size;
1127         if (!(cd->u.verity.hdr.salt = malloc(params->salt_size)))
1128                 return -ENOMEM;
1129
1130         if (params->salt)
1131                 memcpy(CONST_CAST(char*)cd->u.verity.hdr.salt, params->salt,
1132                        params->salt_size);
1133         else
1134                 r = crypt_random_get(cd, CONST_CAST(char*)cd->u.verity.hdr.salt,
1135                                      params->salt_size, CRYPT_RND_SALT);
1136         if (r)
1137                 return r;
1138
1139         if (params->flags & CRYPT_VERITY_CREATE_HASH) {
1140                 r = VERITY_create(cd, &cd->u.verity.hdr,
1141                                   cd->u.verity.root_hash, cd->u.verity.root_hash_size);
1142                 if (r)
1143                         return r;
1144         }
1145
1146         if (!(params->flags & CRYPT_VERITY_NO_HEADER)) {
1147                 if (uuid)
1148                         cd->u.verity.uuid = strdup(uuid);
1149                 else {
1150                         r = VERITY_UUID_generate(cd, &cd->u.verity.uuid);
1151                         if (r)
1152                                 return r;
1153                 }
1154
1155                 r = VERITY_write_sb(cd, cd->u.verity.hdr.hash_area_offset,
1156                                     cd->u.verity.uuid,
1157                                     &cd->u.verity.hdr);
1158         }
1159         return r;
1160 }
1161
1162 int crypt_format(struct crypt_device *cd,
1163         const char *type,
1164         const char *cipher,
1165         const char *cipher_mode,
1166         const char *uuid,
1167         const char *volume_key,
1168         size_t volume_key_size,
1169         void *params)
1170 {
1171         int r;
1172
1173         if (!type)
1174                 return -EINVAL;
1175
1176         if (cd->type) {
1177                 log_dbg("Context already formatted as %s.", cd->type);
1178                 return -EINVAL;
1179         }
1180
1181         log_dbg("Formatting device %s as type %s.", mdata_device_path(cd) ?: "(none)", type);
1182
1183         r = init_crypto(cd);
1184         if (r < 0)
1185                 return r;
1186
1187         if (isPLAIN(type))
1188                 r = _crypt_format_plain(cd, cipher, cipher_mode,
1189                                         uuid, volume_key_size, params);
1190         else if (isLUKS(type))
1191                 r = _crypt_format_luks1(cd, cipher, cipher_mode,
1192                                         uuid, volume_key, volume_key_size, params);
1193         else if (isLOOPAES(type))
1194                 r = _crypt_format_loopaes(cd, cipher, uuid, volume_key_size, params);
1195         else if (isVERITY(type))
1196                 r = _crypt_format_verity(cd, uuid, params);
1197         else {
1198                 log_err(cd, _("Unknown crypt device type %s requested.\n"), type);
1199                 r = -EINVAL;
1200         }
1201
1202         if (r < 0) {
1203                 free(cd->type);
1204                 cd->type = NULL;
1205                 crypt_free_volume_key(cd->volume_key);
1206                 cd->volume_key = NULL;
1207         }
1208
1209         return r;
1210 }
1211
1212 int crypt_load(struct crypt_device *cd,
1213                const char *requested_type,
1214                void *params)
1215 {
1216         int r;
1217
1218         log_dbg("Trying to load %s crypt type from device %s.",
1219                 requested_type ?: "any", mdata_device_path(cd) ?: "(none)");
1220
1221         if (!crypt_metadata_device(cd))
1222                 return -EINVAL;
1223
1224         if (!requested_type || isLUKS(requested_type)) {
1225                 if (cd->type && !isLUKS(cd->type)) {
1226                         log_dbg("Context is already initialised to type %s", cd->type);
1227                         return -EINVAL;
1228                 }
1229
1230                 r = _crypt_load_luks1(cd, 1, 0);
1231         } else if (isVERITY(requested_type)) {
1232                 if (cd->type && !isVERITY(cd->type)) {
1233                         log_dbg("Context is already initialised to type %s", cd->type);
1234                         return -EINVAL;
1235                 }
1236                 r = _crypt_load_verity(cd, params);
1237         } else if (isTCRYPT(requested_type)) {
1238                 if (cd->type && !isTCRYPT(cd->type)) {
1239                         log_dbg("Context is already initialised to type %s", cd->type);
1240                         return -EINVAL;
1241                 }
1242                 r = _crypt_load_tcrypt(cd, params);
1243         } else
1244                 return -EINVAL;
1245
1246         return r;
1247 }
1248
1249 int crypt_repair(struct crypt_device *cd,
1250                  const char *requested_type,
1251                  void *params __attribute__((unused)))
1252 {
1253         int r;
1254
1255         log_dbg("Trying to repair %s crypt type from device %s.",
1256                 requested_type ?: "any", mdata_device_path(cd) ?: "(none)");
1257
1258         if (!crypt_metadata_device(cd))
1259                 return -EINVAL;
1260
1261         if (requested_type && !isLUKS(requested_type))
1262                 return -EINVAL;
1263
1264
1265         /* Load with repair */
1266         r = _crypt_load_luks1(cd, 1, 1);
1267         if (r < 0)
1268                 return r;
1269
1270         /* cd->type and header must be set in context */
1271         r = crypt_check_data_device_size(cd);
1272         if (r < 0) {
1273                 free(cd->type);
1274                 cd->type = NULL;
1275         }
1276
1277         return r;
1278 }
1279
1280 int crypt_resize(struct crypt_device *cd, const char *name, uint64_t new_size)
1281 {
1282         struct crypt_dm_active_device dmd;
1283         int r;
1284
1285         /* Device context type must be initialised */
1286         if (!cd->type || !crypt_get_uuid(cd))
1287                 return -EINVAL;
1288
1289         log_dbg("Resizing device %s to %" PRIu64 " sectors.", name, new_size);
1290
1291         r = dm_query_device(cd, name, DM_ACTIVE_DEVICE | DM_ACTIVE_CRYPT_CIPHER |
1292                                   DM_ACTIVE_UUID | DM_ACTIVE_CRYPT_KEYSIZE |
1293                                   DM_ACTIVE_CRYPT_KEY, &dmd);
1294         if (r < 0) {
1295                 log_err(NULL, _("Device %s is not active.\n"), name);
1296                 return -EINVAL;
1297         }
1298
1299         if (!dmd.uuid || dmd.target != DM_CRYPT) {
1300                 r = -EINVAL;
1301                 goto out;
1302         }
1303
1304         r = device_block_adjust(cd, dmd.data_device, DEV_OK,
1305                                 dmd.u.crypt.offset, &new_size, &dmd.flags);
1306         if (r)
1307                 goto out;
1308
1309         if (new_size == dmd.size) {
1310                 log_dbg("Device has already requested size %" PRIu64
1311                         " sectors.", dmd.size);
1312                 r = 0;
1313         } else {
1314                 dmd.size = new_size;
1315                 if (isTCRYPT(cd->type))
1316                         r = -ENOTSUP;
1317                 else
1318                         r = dm_create_device(cd, name, cd->type, &dmd, 1);
1319         }
1320 out:
1321         if (dmd.target == DM_CRYPT) {
1322                 crypt_free_volume_key(dmd.u.crypt.vk);
1323                 free(CONST_CAST(void*)dmd.u.crypt.cipher);
1324         }
1325         free(CONST_CAST(void*)dmd.data_device);
1326         free(CONST_CAST(void*)dmd.uuid);
1327
1328         return r;
1329 }
1330
1331 int crypt_set_uuid(struct crypt_device *cd, const char *uuid)
1332 {
1333         if (!isLUKS(cd->type)) {
1334                 log_err(cd, _("This operation is not supported for this device type.\n"));
1335                 return  -EINVAL;
1336         }
1337
1338         if (uuid && !strncmp(uuid, cd->u.luks1.hdr.uuid, sizeof(cd->u.luks1.hdr.uuid))) {
1339                 log_dbg("UUID is the same as requested (%s) for device %s.",
1340                         uuid, mdata_device_path(cd));
1341                 return 0;
1342         }
1343
1344         if (uuid)
1345                 log_dbg("Requested new UUID change to %s for %s.", uuid, mdata_device_path(cd));
1346         else
1347                 log_dbg("Requested new UUID refresh for %s.", mdata_device_path(cd));
1348
1349         if (!crypt_confirm(cd, _("Do you really want to change UUID of device?")))
1350                 return -EPERM;
1351
1352         return LUKS_hdr_uuid_set(&cd->u.luks1.hdr, uuid, cd);
1353 }
1354
1355 int crypt_header_backup(struct crypt_device *cd,
1356                         const char *requested_type,
1357                         const char *backup_file)
1358 {
1359         int r;
1360
1361         if ((requested_type && !isLUKS(requested_type)) || !backup_file)
1362                 return -EINVAL;
1363
1364         r = init_crypto(cd);
1365         if (r < 0)
1366                 return r;
1367
1368         log_dbg("Requested header backup of device %s (%s) to "
1369                 "file %s.", mdata_device_path(cd), requested_type, backup_file);
1370
1371         return LUKS_hdr_backup(backup_file, &cd->u.luks1.hdr, cd);
1372 }
1373
1374 int crypt_header_restore(struct crypt_device *cd,
1375                          const char *requested_type,
1376                          const char *backup_file)
1377 {
1378         int r;
1379
1380         if (requested_type && !isLUKS(requested_type))
1381                 return -EINVAL;
1382
1383         if (cd->type && !isLUKS(cd->type))
1384                 return -EINVAL;
1385
1386         r = init_crypto(cd);
1387         if (r < 0)
1388                 return r;
1389
1390         log_dbg("Requested header restore to device %s (%s) from "
1391                 "file %s.", mdata_device_path(cd), requested_type, backup_file);
1392
1393         return LUKS_hdr_restore(backup_file, &cd->u.luks1.hdr, cd);
1394 }
1395
1396 void crypt_free(struct crypt_device *cd)
1397 {
1398         if (cd) {
1399                 log_dbg("Releasing crypt device %s context.", mdata_device_path(cd));
1400
1401                 dm_backend_exit();
1402                 crypt_free_volume_key(cd->volume_key);
1403
1404                 device_free(cd->device);
1405                 device_free(cd->metadata_device);
1406
1407                 if (isPLAIN(cd->type)) {
1408                         free(CONST_CAST(void*)cd->u.plain.hdr.hash);
1409                         free(cd->u.plain.cipher);
1410                         free(cd->u.plain.cipher_mode);
1411                         free(cd->u.plain.uuid);
1412                 } else if (isLOOPAES(cd->type)) {
1413                         free(CONST_CAST(void*)cd->u.loopaes.hdr.hash);
1414                         free(cd->u.loopaes.cipher);
1415                         free(cd->u.loopaes.uuid);
1416                 } else if (isVERITY(cd->type)) {
1417                         free(CONST_CAST(void*)cd->u.verity.hdr.hash_name);
1418                         free(CONST_CAST(void*)cd->u.verity.hdr.salt);
1419                         free(cd->u.verity.root_hash);
1420                         free(cd->u.verity.uuid);
1421                 }
1422
1423                 free(cd->type);
1424                 free(cd);
1425         }
1426 }
1427
1428 int crypt_suspend(struct crypt_device *cd,
1429                   const char *name)
1430 {
1431         crypt_status_info ci;
1432         int r;
1433
1434         log_dbg("Suspending volume %s.", name);
1435
1436         if (!cd || !isLUKS(cd->type)) {
1437                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1438                 r = -EINVAL;
1439                 goto out;
1440         }
1441
1442         ci = crypt_status(NULL, name);
1443         if (ci < CRYPT_ACTIVE) {
1444                 log_err(cd, _("Volume %s is not active.\n"), name);
1445                 return -EINVAL;
1446         }
1447
1448         dm_backend_init();
1449
1450         r = dm_status_suspended(cd, name);
1451         if (r < 0)
1452                 goto out;
1453
1454         if (r) {
1455                 log_err(cd, _("Volume %s is already suspended.\n"), name);
1456                 r = -EINVAL;
1457                 goto out;
1458         }
1459
1460         r = dm_suspend_and_wipe_key(cd, name);
1461         if (r == -ENOTSUP)
1462                 log_err(cd, "Suspend is not supported for device %s.\n", name);
1463         else if (r)
1464                 log_err(cd, "Error during suspending device %s.\n", name);
1465 out:
1466         dm_backend_exit();
1467         return r;
1468 }
1469
1470 int crypt_resume_by_passphrase(struct crypt_device *cd,
1471                                const char *name,
1472                                int keyslot,
1473                                const char *passphrase,
1474                                size_t passphrase_size)
1475 {
1476         struct volume_key *vk = NULL;
1477         int r;
1478
1479         log_dbg("Resuming volume %s.", name);
1480
1481         if (!isLUKS(cd->type)) {
1482                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1483                 r = -EINVAL;
1484                 goto out;
1485         }
1486
1487         r = dm_status_suspended(cd, name);
1488         if (r < 0)
1489                 return r;
1490
1491         if (!r) {
1492                 log_err(cd, _("Volume %s is not suspended.\n"), name);
1493                 return -EINVAL;
1494         }
1495
1496         if (passphrase) {
1497                 r = LUKS_open_key_with_hdr(keyslot, passphrase, passphrase_size,
1498                                            &cd->u.luks1.hdr, &vk, cd);
1499         } else
1500                 r = volume_key_by_terminal_passphrase(cd, keyslot, &vk);
1501
1502         if (r >= 0) {
1503                 keyslot = r;
1504                 r = dm_resume_and_reinstate_key(cd, name, vk->keylength, vk->key);
1505                 if (r == -ENOTSUP)
1506                         log_err(cd, "Resume is not supported for device %s.\n", name);
1507                 else if (r)
1508                         log_err(cd, "Error during resuming device %s.\n", name);
1509         } else
1510                 r = keyslot;
1511 out:
1512         crypt_free_volume_key(vk);
1513         return r < 0 ? r : keyslot;
1514 }
1515
1516 int crypt_resume_by_keyfile_offset(struct crypt_device *cd,
1517                                    const char *name,
1518                                    int keyslot,
1519                                    const char *keyfile,
1520                                    size_t keyfile_size,
1521                                    size_t keyfile_offset)
1522 {
1523         struct volume_key *vk = NULL;
1524         char *passphrase_read = NULL;
1525         size_t passphrase_size_read;
1526         int r;
1527
1528         log_dbg("Resuming volume %s.", name);
1529
1530         if (!isLUKS(cd->type)) {
1531                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1532                 r = -EINVAL;
1533                 goto out;
1534         }
1535
1536         r = dm_status_suspended(cd, name);
1537         if (r < 0)
1538                 return r;
1539
1540         if (!r) {
1541                 log_err(cd, _("Volume %s is not suspended.\n"), name);
1542                 return -EINVAL;
1543         }
1544
1545         if (!keyfile)
1546                 return -EINVAL;
1547
1548         r = key_from_file(cd, _("Enter passphrase: "), &passphrase_read,
1549                           &passphrase_size_read, keyfile, keyfile_offset,
1550                           keyfile_size);
1551         if (r < 0)
1552                 goto out;
1553
1554         r = LUKS_open_key_with_hdr(keyslot, passphrase_read,
1555                                    passphrase_size_read, &cd->u.luks1.hdr, &vk, cd);
1556         if (r < 0)
1557                 goto out;
1558
1559         keyslot = r;
1560         r = dm_resume_and_reinstate_key(cd, name, vk->keylength, vk->key);
1561         if (r)
1562                 log_err(cd, "Error during resuming device %s.\n", name);
1563 out:
1564         crypt_safe_free(passphrase_read);
1565         crypt_free_volume_key(vk);
1566         return r < 0 ? r : keyslot;
1567 }
1568
1569 int crypt_resume_by_keyfile(struct crypt_device *cd,
1570                             const char *name,
1571                             int keyslot,
1572                             const char *keyfile,
1573                             size_t keyfile_size)
1574 {
1575         return crypt_resume_by_keyfile_offset(cd, name, keyslot,
1576                                               keyfile, keyfile_size, 0);
1577 }
1578
1579 // slot manipulation
1580 int crypt_keyslot_add_by_passphrase(struct crypt_device *cd,
1581         int keyslot, // -1 any
1582         const char *passphrase, // NULL -> terminal
1583         size_t passphrase_size,
1584         const char *new_passphrase, // NULL -> terminal
1585         size_t new_passphrase_size)
1586 {
1587         struct volume_key *vk = NULL;
1588         char *password = NULL, *new_password = NULL;
1589         size_t passwordLen, new_passwordLen;
1590         int r;
1591
1592         log_dbg("Adding new keyslot, existing passphrase %sprovided,"
1593                 "new passphrase %sprovided.",
1594                 passphrase ? "" : "not ", new_passphrase  ? "" : "not ");
1595
1596         if (!isLUKS(cd->type)) {
1597                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1598                 return -EINVAL;
1599         }
1600
1601         r = keyslot_verify_or_find_empty(cd, &keyslot);
1602         if (r)
1603                 return r;
1604
1605         if (!LUKS_keyslot_active_count(&cd->u.luks1.hdr)) {
1606                 /* No slots used, try to use pre-generated key in header */
1607                 if (cd->volume_key) {
1608                         vk = crypt_alloc_volume_key(cd->volume_key->keylength, cd->volume_key->key);
1609                         r = vk ? 0 : -ENOMEM;
1610                 } else {
1611                         log_err(cd, _("Cannot add key slot, all slots disabled and no volume key provided.\n"));
1612                         return -EINVAL;
1613                 }
1614         } else if (passphrase) {
1615                 /* Passphrase provided, use it to unlock existing keyslot */
1616                 r = LUKS_open_key_with_hdr(CRYPT_ANY_SLOT, passphrase,
1617                                            passphrase_size, &cd->u.luks1.hdr, &vk, cd);
1618         } else {
1619                 /* Passphrase not provided, ask first and use it to unlock existing keyslot */
1620                 r = key_from_terminal(cd, _("Enter any passphrase: "),
1621                                       &password, &passwordLen, 0);
1622                 if (r < 0)
1623                         goto out;
1624
1625                 r = LUKS_open_key_with_hdr(CRYPT_ANY_SLOT, password,
1626                                            passwordLen, &cd->u.luks1.hdr, &vk, cd);
1627                 crypt_safe_free(password);
1628         }
1629
1630         if(r < 0)
1631                 goto out;
1632
1633         if (new_passphrase) {
1634                 new_password = CONST_CAST(char*)new_passphrase;
1635                 new_passwordLen = new_passphrase_size;
1636         } else {
1637                 r = key_from_terminal(cd, _("Enter new passphrase for key slot: "),
1638                                       &new_password, &new_passwordLen, 1);
1639                 if(r < 0)
1640                         goto out;
1641         }
1642
1643         r = LUKS_set_key(keyslot, new_password, new_passwordLen,
1644                          &cd->u.luks1.hdr, vk, cd->iteration_time, &cd->u.luks1.PBKDF2_per_sec, cd);
1645         if(r < 0) goto out;
1646
1647         r = 0;
1648 out:
1649         if (!new_passphrase)
1650                 crypt_safe_free(new_password);
1651         crypt_free_volume_key(vk);
1652         return r ?: keyslot;
1653 }
1654
1655 int crypt_keyslot_change_by_passphrase(struct crypt_device *cd,
1656         int keyslot_old,
1657         int keyslot_new,
1658         const char *passphrase,
1659         size_t passphrase_size,
1660         const char *new_passphrase,
1661         size_t new_passphrase_size)
1662 {
1663         struct volume_key *vk = NULL;
1664         int r = -EINVAL;
1665
1666         log_dbg("Changing passphrase from old keyslot %d to new %d.",
1667                 keyslot_old, keyslot_new);
1668
1669         if (!isLUKS(cd->type)) {
1670                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1671                 return -EINVAL;
1672         }
1673
1674         r = LUKS_open_key_with_hdr(keyslot_old, passphrase, passphrase_size,
1675                                    &cd->u.luks1.hdr, &vk, cd);
1676         if (r < 0)
1677                 return r;
1678
1679         if (keyslot_old != CRYPT_ANY_SLOT && keyslot_old != r) {
1680                 log_dbg("Keyslot mismatch.");
1681                 goto out;
1682         }
1683         keyslot_old = r;
1684
1685         if (keyslot_new == CRYPT_ANY_SLOT) {
1686                 keyslot_new = LUKS_keyslot_find_empty(&cd->u.luks1.hdr);
1687                 if (keyslot_new < 0)
1688                         keyslot_new = keyslot_old;
1689         }
1690
1691         if (keyslot_old == keyslot_new) {
1692                 log_dbg("Key slot %d is going to be overwritten.", keyslot_old);
1693                 (void)crypt_keyslot_destroy(cd, keyslot_old);
1694         }
1695
1696         r = LUKS_set_key(keyslot_new, new_passphrase, new_passphrase_size,
1697                          &cd->u.luks1.hdr, vk, cd->iteration_time,
1698                          &cd->u.luks1.PBKDF2_per_sec, cd);
1699
1700         if (keyslot_old == keyslot_new) {
1701                 if (r >= 0)
1702                         log_verbose(cd, _("Key slot %d changed.\n"), r);
1703         } else {
1704                 if (r >= 0) {
1705                         log_verbose(cd, _("Replaced with key slot %d.\n"), r);
1706                         r = crypt_keyslot_destroy(cd, keyslot_old);
1707                 }
1708         }
1709         if (r < 0)
1710                 log_err(cd, _("Failed to swap new key slot.\n"));
1711 out:
1712         crypt_free_volume_key(vk);
1713         return r ?: keyslot_new;
1714 }
1715
1716 int crypt_keyslot_add_by_keyfile_offset(struct crypt_device *cd,
1717         int keyslot,
1718         const char *keyfile,
1719         size_t keyfile_size,
1720         size_t keyfile_offset,
1721         const char *new_keyfile,
1722         size_t new_keyfile_size,
1723         size_t new_keyfile_offset)
1724 {
1725         struct volume_key *vk = NULL;
1726         char *password = NULL; size_t passwordLen;
1727         char *new_password = NULL; size_t new_passwordLen;
1728         int r;
1729
1730         log_dbg("Adding new keyslot, existing keyfile %s, new keyfile %s.",
1731                 keyfile ?: "[none]", new_keyfile ?: "[none]");
1732
1733         if (!isLUKS(cd->type)) {
1734                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1735                 return -EINVAL;
1736         }
1737
1738         r = keyslot_verify_or_find_empty(cd, &keyslot);
1739         if (r)
1740                 return r;
1741
1742         if (!LUKS_keyslot_active_count(&cd->u.luks1.hdr)) {
1743                 /* No slots used, try to use pre-generated key in header */
1744                 if (cd->volume_key) {
1745                         vk = crypt_alloc_volume_key(cd->volume_key->keylength, cd->volume_key->key);
1746                         r = vk ? 0 : -ENOMEM;
1747                 } else {
1748                         log_err(cd, _("Cannot add key slot, all slots disabled and no volume key provided.\n"));
1749                         return -EINVAL;
1750                 }
1751         } else {
1752                 /* Read password from file of (if NULL) from terminal */
1753                 if (keyfile)
1754                         r = key_from_file(cd, _("Enter any passphrase: "),
1755                                           &password, &passwordLen,
1756                                           keyfile, keyfile_offset, keyfile_size);
1757                 else
1758                         r = key_from_terminal(cd, _("Enter any passphrase: "),
1759                                               &password, &passwordLen, 0);
1760                 if (r < 0)
1761                         goto out;
1762
1763                 r = LUKS_open_key_with_hdr(CRYPT_ANY_SLOT, password, passwordLen,
1764                                            &cd->u.luks1.hdr, &vk, cd);
1765         }
1766
1767         if(r < 0)
1768                 goto out;
1769
1770         if (new_keyfile)
1771                 r = key_from_file(cd, _("Enter new passphrase for key slot: "),
1772                                   &new_password, &new_passwordLen, new_keyfile,
1773                                   new_keyfile_offset, new_keyfile_size);
1774         else
1775                 r = key_from_terminal(cd, _("Enter new passphrase for key slot: "),
1776                                       &new_password, &new_passwordLen, 1);
1777         if (r < 0)
1778                 goto out;
1779
1780         r = LUKS_set_key(keyslot, new_password, new_passwordLen,
1781                          &cd->u.luks1.hdr, vk, cd->iteration_time, &cd->u.luks1.PBKDF2_per_sec, cd);
1782 out:
1783         crypt_safe_free(password);
1784         crypt_safe_free(new_password);
1785         crypt_free_volume_key(vk);
1786         return r < 0 ? r : keyslot;
1787 }
1788
1789 int crypt_keyslot_add_by_keyfile(struct crypt_device *cd,
1790         int keyslot,
1791         const char *keyfile,
1792         size_t keyfile_size,
1793         const char *new_keyfile,
1794         size_t new_keyfile_size)
1795 {
1796         return crypt_keyslot_add_by_keyfile_offset(cd, keyslot,
1797                                 keyfile, keyfile_size, 0,
1798                                 new_keyfile, new_keyfile_size, 0);
1799 }
1800
1801 int crypt_keyslot_add_by_volume_key(struct crypt_device *cd,
1802         int keyslot,
1803         const char *volume_key,
1804         size_t volume_key_size,
1805         const char *passphrase,
1806         size_t passphrase_size)
1807 {
1808         struct volume_key *vk = NULL;
1809         int r = -EINVAL;
1810         char *new_password = NULL; size_t new_passwordLen;
1811
1812         log_dbg("Adding new keyslot %d using volume key.", keyslot);
1813
1814         if (!isLUKS(cd->type)) {
1815                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1816                 return -EINVAL;
1817         }
1818
1819         if (volume_key)
1820                 vk = crypt_alloc_volume_key(volume_key_size, volume_key);
1821         else if (cd->volume_key)
1822                 vk = crypt_alloc_volume_key(cd->volume_key->keylength, cd->volume_key->key);
1823
1824         if (!vk)
1825                 return -ENOMEM;
1826
1827         r = LUKS_verify_volume_key(&cd->u.luks1.hdr, vk);
1828         if (r < 0) {
1829                 log_err(cd, _("Volume key does not match the volume.\n"));
1830                 goto out;
1831         }
1832
1833         r = keyslot_verify_or_find_empty(cd, &keyslot);
1834         if (r)
1835                 goto out;
1836
1837         if (!passphrase) {
1838                 r = key_from_terminal(cd, _("Enter new passphrase for key slot: "),
1839                                       &new_password, &new_passwordLen, 1);
1840                 if (r < 0)
1841                         goto out;
1842                 passphrase = new_password;
1843                 passphrase_size = new_passwordLen;
1844         }
1845
1846         r = LUKS_set_key(keyslot, passphrase, passphrase_size,
1847                          &cd->u.luks1.hdr, vk, cd->iteration_time, &cd->u.luks1.PBKDF2_per_sec, cd);
1848 out:
1849         crypt_safe_free(new_password);
1850         crypt_free_volume_key(vk);
1851         return (r < 0) ? r : keyslot;
1852 }
1853
1854 int crypt_keyslot_destroy(struct crypt_device *cd, int keyslot)
1855 {
1856         crypt_keyslot_info ki;
1857
1858         log_dbg("Destroying keyslot %d.", keyslot);
1859
1860         if (!isLUKS(cd->type)) {
1861                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
1862                 return -EINVAL;
1863         }
1864
1865         ki = crypt_keyslot_status(cd, keyslot);
1866         if (ki == CRYPT_SLOT_INVALID) {
1867                 log_err(cd, _("Key slot %d is invalid.\n"), keyslot);
1868                 return -EINVAL;
1869         }
1870
1871         if (ki == CRYPT_SLOT_INACTIVE) {
1872                 log_err(cd, _("Key slot %d is not used.\n"), keyslot);
1873                 return -EINVAL;
1874         }
1875
1876         return LUKS_del_key(keyslot, &cd->u.luks1.hdr, cd);
1877 }
1878
1879 // activation/deactivation of device mapping
1880 int crypt_activate_by_passphrase(struct crypt_device *cd,
1881         const char *name,
1882         int keyslot,
1883         const char *passphrase,
1884         size_t passphrase_size,
1885         uint32_t flags)
1886 {
1887         crypt_status_info ci;
1888         struct volume_key *vk = NULL;
1889         char *read_passphrase = NULL;
1890         size_t passphraseLen = 0;
1891         int r;
1892
1893         log_dbg("%s volume %s [keyslot %d] using %spassphrase.",
1894                 name ? "Activating" : "Checking", name ?: "",
1895                 keyslot, passphrase ? "" : "[none] ");
1896
1897         if (name) {
1898                 ci = crypt_status(NULL, name);
1899                 if (ci == CRYPT_INVALID)
1900                         return -EINVAL;
1901                 else if (ci >= CRYPT_ACTIVE) {
1902                         log_err(cd, _("Device %s already exists.\n"), name);
1903                         return -EEXIST;
1904                 }
1905         }
1906
1907         /* plain, use hashed passphrase */
1908         if (isPLAIN(cd->type)) {
1909                 if (!name)
1910                         return -EINVAL;
1911
1912                 if (!passphrase) {
1913                         r = key_from_terminal(cd, NULL, &read_passphrase,
1914                                               &passphraseLen, 0);
1915                         if (r < 0)
1916                                 goto out;
1917                         passphrase = read_passphrase;
1918                         passphrase_size = passphraseLen;
1919                 }
1920
1921                 r = process_key(cd, cd->u.plain.hdr.hash,
1922                                 cd->u.plain.key_size,
1923                                 passphrase, passphrase_size, &vk);
1924                 if (r < 0)
1925                         goto out;
1926
1927                 r = PLAIN_activate(cd, name, vk, cd->u.plain.hdr.size, flags);
1928                 keyslot = 0;
1929         } else if (isLUKS(cd->type)) {
1930                 /* provided passphrase, do not retry */
1931                 if (passphrase) {
1932                         r = LUKS_open_key_with_hdr(keyslot, passphrase,
1933                                                    passphrase_size, &cd->u.luks1.hdr, &vk, cd);
1934                 } else
1935                         r = volume_key_by_terminal_passphrase(cd, keyslot, &vk);
1936
1937                 if (r >= 0) {
1938                         keyslot = r;
1939                         if (name)
1940                                 r = LUKS1_activate(cd, name, vk, flags);
1941                 }
1942         } else
1943                 r = -EINVAL;
1944 out:
1945         crypt_safe_free(read_passphrase);
1946         crypt_free_volume_key(vk);
1947
1948         return r < 0  ? r : keyslot;
1949 }
1950
1951 int crypt_activate_by_keyfile_offset(struct crypt_device *cd,
1952         const char *name,
1953         int keyslot,
1954         const char *keyfile,
1955         size_t keyfile_size,
1956         size_t keyfile_offset,
1957         uint32_t flags)
1958 {
1959         crypt_status_info ci;
1960         struct volume_key *vk = NULL;
1961         char *passphrase_read = NULL;
1962         size_t passphrase_size_read;
1963         unsigned int key_count = 0;
1964         int r;
1965
1966         log_dbg("Activating volume %s [keyslot %d] using keyfile %s.",
1967                 name ?: "", keyslot, keyfile ?: "[none]");
1968
1969         if (name) {
1970                 ci = crypt_status(NULL, name);
1971                 if (ci == CRYPT_INVALID)
1972                         return -EINVAL;
1973                 else if (ci >= CRYPT_ACTIVE) {
1974                         log_err(cd, _("Device %s already exists.\n"), name);
1975                         return -EEXIST;
1976                 }
1977         }
1978
1979         if (!keyfile)
1980                 return -EINVAL;
1981
1982         if (isPLAIN(cd->type)) {
1983                 if (!name)
1984                         return -EINVAL;
1985
1986                 r = key_from_file(cd, _("Enter passphrase: "),
1987                                   &passphrase_read, &passphrase_size_read,
1988                                   keyfile, keyfile_offset, keyfile_size);
1989                 if (r < 0)
1990                         goto out;
1991
1992                 r = process_key(cd, cd->u.plain.hdr.hash,
1993                                 cd->u.plain.key_size,
1994                                 passphrase_read, passphrase_size_read, &vk);
1995                 if (r < 0)
1996                         goto out;
1997
1998                 r = PLAIN_activate(cd, name, vk, cd->u.plain.hdr.size, flags);
1999         } else if (isLUKS(cd->type)) {
2000                 r = key_from_file(cd, _("Enter passphrase: "), &passphrase_read,
2001                           &passphrase_size_read, keyfile, keyfile_offset, keyfile_size);
2002                 if (r < 0)
2003                         goto out;
2004                 r = LUKS_open_key_with_hdr(keyslot, passphrase_read,
2005                                            passphrase_size_read, &cd->u.luks1.hdr, &vk, cd);
2006                 if (r < 0)
2007                         goto out;
2008                 keyslot = r;
2009
2010                 if (name) {
2011                         r = LUKS1_activate(cd, name, vk, flags);
2012                         if (r < 0)
2013                                 goto out;
2014                 }
2015                 r = keyslot;
2016         } else if (isLOOPAES(cd->type)) {
2017                 r = key_from_file(cd, NULL, &passphrase_read, &passphrase_size_read,
2018                                   keyfile, keyfile_offset, keyfile_size);
2019                 if (r < 0)
2020                         goto out;
2021                 r = LOOPAES_parse_keyfile(cd, &vk, cd->u.loopaes.hdr.hash, &key_count,
2022                                           passphrase_read, passphrase_size_read);
2023                 if (r < 0)
2024                         goto out;
2025                 if (name)
2026                         r = LOOPAES_activate(cd, name, cd->u.loopaes.cipher,
2027                                              key_count, vk, flags);
2028         } else
2029                 r = -EINVAL;
2030
2031 out:
2032         crypt_safe_free(passphrase_read);
2033         crypt_free_volume_key(vk);
2034
2035         return r;
2036 }
2037
2038 int crypt_activate_by_keyfile(struct crypt_device *cd,
2039         const char *name,
2040         int keyslot,
2041         const char *keyfile,
2042         size_t keyfile_size,
2043         uint32_t flags)
2044 {
2045         return crypt_activate_by_keyfile_offset(cd, name, keyslot, keyfile,
2046                                                 keyfile_size, 0, flags);
2047 }
2048
2049 int crypt_activate_by_volume_key(struct crypt_device *cd,
2050         const char *name,
2051         const char *volume_key,
2052         size_t volume_key_size,
2053         uint32_t flags)
2054 {
2055         crypt_status_info ci;
2056         struct volume_key *vk = NULL;
2057         int r = -EINVAL;
2058
2059         log_dbg("Activating volume %s by volume key.", name ?: "[none]");
2060
2061         if (name) {
2062                 ci = crypt_status(NULL, name);
2063                 if (ci == CRYPT_INVALID)
2064                         return -EINVAL;
2065                 else if (ci >= CRYPT_ACTIVE) {
2066                         log_err(cd, _("Device %s already exists.\n"), name);
2067                         return -EEXIST;
2068                 }
2069         }
2070
2071         /* use key directly, no hash */
2072         if (isPLAIN(cd->type)) {
2073                 if (!name)
2074                         return -EINVAL;
2075
2076                 if (!volume_key || !volume_key_size || volume_key_size != cd->u.plain.key_size) {
2077                         log_err(cd, _("Incorrect volume key specified for plain device.\n"));
2078                         return -EINVAL;
2079                 }
2080
2081                 vk = crypt_alloc_volume_key(volume_key_size, volume_key);
2082                 if (!vk)
2083                         return -ENOMEM;
2084
2085                 r = PLAIN_activate(cd, name, vk, cd->u.plain.hdr.size, flags);
2086         } else if (isLUKS(cd->type)) {
2087                 /* If key is not provided, try to use internal key */
2088                 if (!volume_key) {
2089                         if (!cd->volume_key) {
2090                                 log_err(cd, _("Volume key does not match the volume.\n"));
2091                                 return -EINVAL;
2092                         }
2093                         volume_key_size = cd->volume_key->keylength;
2094                         volume_key = cd->volume_key->key;
2095                 }
2096
2097                 vk = crypt_alloc_volume_key(volume_key_size, volume_key);
2098                 if (!vk)
2099                         return -ENOMEM;
2100                 r = LUKS_verify_volume_key(&cd->u.luks1.hdr, vk);
2101
2102                 if (r == -EPERM)
2103                         log_err(cd, _("Volume key does not match the volume.\n"));
2104
2105                 if (!r && name)
2106                         r = LUKS1_activate(cd, name, vk, flags);
2107         } else if (isVERITY(cd->type)) {
2108                 /* volume_key == root hash */
2109                 if (!volume_key || !volume_key_size) {
2110                         log_err(cd, _("Incorrect root hash specified for verity device.\n"));
2111                         return -EINVAL;
2112                 }
2113
2114                 r = VERITY_activate(cd, name, volume_key, volume_key_size,
2115                                     &cd->u.verity.hdr, CRYPT_ACTIVATE_READONLY);
2116
2117                 if (r == -EPERM) {
2118                         free(cd->u.verity.root_hash);
2119                         cd->u.verity.root_hash = NULL;
2120                 } if (!r) {
2121                         cd->u.verity.root_hash_size = volume_key_size;
2122                         if (!cd->u.verity.root_hash)
2123                                 cd->u.verity.root_hash = malloc(volume_key_size);
2124                         if (cd->u.verity.root_hash)
2125                                 memcpy(cd->u.verity.root_hash, volume_key, volume_key_size);
2126                 }
2127         } else if (isTCRYPT(cd->type)) {
2128                 if (!name)
2129                         return 0;
2130                 r = TCRYPT_activate(cd, name, &cd->u.tcrypt.hdr,
2131                                     &cd->u.tcrypt.params, flags);
2132         } else
2133                 log_err(cd, _("Device type is not properly initialised.\n"));
2134
2135         crypt_free_volume_key(vk);
2136
2137         return r;
2138 }
2139
2140 int crypt_deactivate(struct crypt_device *cd, const char *name)
2141 {
2142         int r;
2143
2144         if (!name)
2145                 return -EINVAL;
2146
2147         log_dbg("Deactivating volume %s.", name);
2148
2149         if (!cd)
2150                 dm_backend_init();
2151
2152         switch (crypt_status(cd, name)) {
2153                 case CRYPT_ACTIVE:
2154                 case CRYPT_BUSY:
2155                         if (cd && isTCRYPT(cd->type))
2156                                 r = TCRYPT_deactivate(cd, name);
2157                         else
2158                                 r = dm_remove_device(cd, name, 0, 0);
2159                         break;
2160                 case CRYPT_INACTIVE:
2161                         log_err(cd, _("Device %s is not active.\n"), name);
2162                         r = -ENODEV;
2163                         break;
2164                 default:
2165                         log_err(cd, _("Invalid device %s.\n"), name);
2166                         r = -EINVAL;
2167         }
2168
2169         if (!cd)
2170                 dm_backend_exit();
2171
2172         return r;
2173 }
2174
2175 int crypt_volume_key_get(struct crypt_device *cd,
2176         int keyslot,
2177         char *volume_key,
2178         size_t *volume_key_size,
2179         const char *passphrase,
2180         size_t passphrase_size)
2181 {
2182         struct volume_key *vk = NULL;
2183         unsigned key_len;
2184         int r = -EINVAL;
2185
2186         if (crypt_fips_mode()) {
2187                 log_err(cd, "Function not available in FIPS mode.\n");
2188                 return -EACCES;
2189         }
2190
2191         key_len = crypt_get_volume_key_size(cd);
2192         if (key_len > *volume_key_size) {
2193                 log_err(cd, _("Volume key buffer too small.\n"));
2194                 return -ENOMEM;
2195         }
2196
2197         if (isPLAIN(cd->type) && cd->u.plain.hdr.hash) {
2198                 r = process_key(cd, cd->u.plain.hdr.hash, key_len,
2199                                 passphrase, passphrase_size, &vk);
2200                 if (r < 0)
2201                         log_err(cd, _("Cannot retrieve volume key for plain device.\n"));
2202         } else if (isLUKS(cd->type)) {
2203                 r = LUKS_open_key_with_hdr(keyslot, passphrase,
2204                                         passphrase_size, &cd->u.luks1.hdr, &vk, cd);
2205         } else if (isTCRYPT(cd->type)) {
2206                 r = TCRYPT_get_volume_key(cd, &cd->u.tcrypt.hdr, &cd->u.tcrypt.params, &vk);
2207         } else
2208                 log_err(cd, _("This operation is not supported for %s crypt device.\n"), cd->type ?: "(none)");
2209
2210         if (r >= 0) {
2211                 memcpy(volume_key, vk->key, vk->keylength);
2212                 *volume_key_size = vk->keylength;
2213         }
2214
2215         crypt_free_volume_key(vk);
2216         return r;
2217 }
2218
2219 int crypt_volume_key_verify(struct crypt_device *cd,
2220         const char *volume_key,
2221         size_t volume_key_size)
2222 {
2223         struct volume_key *vk;
2224         int r;
2225
2226         if (!isLUKS(cd->type)) {
2227                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
2228                 return -EINVAL;
2229         }
2230
2231         vk = crypt_alloc_volume_key(volume_key_size, volume_key);
2232         if (!vk)
2233                 return -ENOMEM;
2234
2235         r = LUKS_verify_volume_key(&cd->u.luks1.hdr, vk);
2236
2237         if (r == -EPERM)
2238                 log_err(cd, _("Volume key does not match the volume.\n"));
2239
2240         crypt_free_volume_key(vk);
2241
2242         return r;
2243 }
2244
2245 void crypt_set_timeout(struct crypt_device *cd, uint64_t timeout_sec)
2246 {
2247         log_dbg("Timeout set to %" PRIu64 " miliseconds.", timeout_sec);
2248         cd->timeout = timeout_sec;
2249 }
2250
2251 void crypt_set_password_retry(struct crypt_device *cd, int tries)
2252 {
2253         log_dbg("Password retry count set to %d.", tries);
2254         cd->tries = tries;
2255 }
2256
2257 void crypt_set_iteration_time(struct crypt_device *cd, uint64_t iteration_time_ms)
2258 {
2259         log_dbg("Iteration time set to %" PRIu64 " miliseconds.", iteration_time_ms);
2260         cd->iteration_time = iteration_time_ms;
2261 }
2262 void crypt_set_iterarion_time(struct crypt_device *cd, uint64_t iteration_time_ms)
2263 {
2264         crypt_set_iteration_time(cd, iteration_time_ms);
2265 }
2266
2267 void crypt_set_password_verify(struct crypt_device *cd, int password_verify)
2268 {
2269         log_dbg("Password verification %s.", password_verify ? "enabled" : "disabled");
2270         cd->password_verify = password_verify ? 1 : 0;
2271 }
2272
2273 void crypt_set_rng_type(struct crypt_device *cd, int rng_type)
2274 {
2275         switch (rng_type) {
2276         case CRYPT_RNG_URANDOM:
2277         case CRYPT_RNG_RANDOM:
2278                 log_dbg("RNG set to %d (%s).", rng_type, rng_type ? "random" : "urandom");
2279                 cd->rng_type = rng_type;
2280         }
2281 }
2282
2283 int crypt_get_rng_type(struct crypt_device *cd)
2284 {
2285         if (!cd)
2286                 return -EINVAL;
2287
2288         return cd->rng_type;
2289 }
2290
2291 int crypt_memory_lock(struct crypt_device *cd, int lock)
2292 {
2293         return lock ? crypt_memlock_inc(cd) : crypt_memlock_dec(cd);
2294 }
2295
2296 // reporting
2297 crypt_status_info crypt_status(struct crypt_device *cd, const char *name)
2298 {
2299         int r;
2300
2301         if (!cd)
2302                 dm_backend_init();
2303
2304         r = dm_status_device(cd, name);
2305
2306         if (!cd)
2307                 dm_backend_exit();
2308
2309         if (r < 0 && r != -ENODEV)
2310                 return CRYPT_INVALID;
2311
2312         if (r == 0)
2313                 return CRYPT_ACTIVE;
2314
2315         if (r > 0)
2316                 return CRYPT_BUSY;
2317
2318         return CRYPT_INACTIVE;
2319 }
2320
2321 static void hexprint(struct crypt_device *cd, const char *d, int n, const char *sep)
2322 {
2323         int i;
2324         for(i = 0; i < n; i++)
2325                 log_std(cd, "%02hhx%s", (const char)d[i], sep);
2326 }
2327
2328 static int _luks_dump(struct crypt_device *cd)
2329 {
2330         int i;
2331
2332         log_std(cd, "LUKS header information for %s\n\n", mdata_device_path(cd));
2333         log_std(cd, "Version:       \t%d\n", cd->u.luks1.hdr.version);
2334         log_std(cd, "Cipher name:   \t%s\n", cd->u.luks1.hdr.cipherName);
2335         log_std(cd, "Cipher mode:   \t%s\n", cd->u.luks1.hdr.cipherMode);
2336         log_std(cd, "Hash spec:     \t%s\n", cd->u.luks1.hdr.hashSpec);
2337         log_std(cd, "Payload offset:\t%d\n", cd->u.luks1.hdr.payloadOffset);
2338         log_std(cd, "MK bits:       \t%d\n", cd->u.luks1.hdr.keyBytes * 8);
2339         log_std(cd, "MK digest:     \t");
2340         hexprint(cd, cd->u.luks1.hdr.mkDigest, LUKS_DIGESTSIZE, " ");
2341         log_std(cd, "\n");
2342         log_std(cd, "MK salt:       \t");
2343         hexprint(cd, cd->u.luks1.hdr.mkDigestSalt, LUKS_SALTSIZE/2, " ");
2344         log_std(cd, "\n               \t");
2345         hexprint(cd, cd->u.luks1.hdr.mkDigestSalt+LUKS_SALTSIZE/2, LUKS_SALTSIZE/2, " ");
2346         log_std(cd, "\n");
2347         log_std(cd, "MK iterations: \t%d\n", cd->u.luks1.hdr.mkDigestIterations);
2348         log_std(cd, "UUID:          \t%s\n\n", cd->u.luks1.hdr.uuid);
2349         for(i = 0; i < LUKS_NUMKEYS; i++) {
2350                 if(cd->u.luks1.hdr.keyblock[i].active == LUKS_KEY_ENABLED) {
2351                         log_std(cd, "Key Slot %d: ENABLED\n",i);
2352                         log_std(cd, "\tIterations:         \t%d\n",
2353                                 cd->u.luks1.hdr.keyblock[i].passwordIterations);
2354                         log_std(cd, "\tSalt:               \t");
2355                         hexprint(cd, cd->u.luks1.hdr.keyblock[i].passwordSalt,
2356                                  LUKS_SALTSIZE/2, " ");
2357                         log_std(cd, "\n\t                      \t");
2358                         hexprint(cd, cd->u.luks1.hdr.keyblock[i].passwordSalt +
2359                                  LUKS_SALTSIZE/2, LUKS_SALTSIZE/2, " ");
2360                         log_std(cd, "\n");
2361
2362                         log_std(cd, "\tKey material offset:\t%d\n",
2363                                 cd->u.luks1.hdr.keyblock[i].keyMaterialOffset);
2364                         log_std(cd, "\tAF stripes:            \t%d\n",
2365                                 cd->u.luks1.hdr.keyblock[i].stripes);
2366                 }
2367                 else 
2368                         log_std(cd, "Key Slot %d: DISABLED\n", i);
2369         }
2370         return 0;
2371 }
2372
2373 static int _verity_dump(struct crypt_device *cd)
2374 {
2375         log_std(cd, "VERITY header information for %s\n", mdata_device_path(cd));
2376         log_std(cd, "UUID:            \t%s\n", cd->u.verity.uuid ?: "");
2377         log_std(cd, "Hash type:       \t%u\n", cd->u.verity.hdr.hash_type);
2378         log_std(cd, "Data blocks:     \t%" PRIu64 "\n", cd->u.verity.hdr.data_size);
2379         log_std(cd, "Data block size: \t%u\n", cd->u.verity.hdr.data_block_size);
2380         log_std(cd, "Hash block size: \t%u\n", cd->u.verity.hdr.hash_block_size);
2381         log_std(cd, "Hash algorithm:  \t%s\n", cd->u.verity.hdr.hash_name);
2382         log_std(cd, "Salt:            \t");
2383         if (cd->u.verity.hdr.salt_size)
2384                 hexprint(cd, cd->u.verity.hdr.salt, cd->u.verity.hdr.salt_size, "");
2385         else
2386                 log_std(cd, "-");
2387         log_std(cd, "\n");
2388         if (cd->u.verity.root_hash) {
2389                 log_std(cd, "Root hash:      \t");
2390                 hexprint(cd, cd->u.verity.root_hash, cd->u.verity.root_hash_size, "");
2391                 log_std(cd, "\n");
2392         }
2393         return 0;
2394 }
2395
2396 int crypt_dump(struct crypt_device *cd)
2397 {
2398         if (isLUKS(cd->type))
2399                 return _luks_dump(cd);
2400         else if (isVERITY(cd->type))
2401                 return _verity_dump(cd);
2402         else if (isTCRYPT(cd->type))
2403                 return TCRYPT_dump(cd, &cd->u.tcrypt.hdr, &cd->u.tcrypt.params);
2404
2405         log_err(cd, _("Dump operation is not supported for this device type.\n"));
2406         return -EINVAL;
2407 }
2408
2409 const char *crypt_get_cipher(struct crypt_device *cd)
2410 {
2411         if (isPLAIN(cd->type))
2412                 return cd->u.plain.cipher;
2413
2414         if (isLUKS(cd->type))
2415                 return cd->u.luks1.hdr.cipherName;
2416
2417         if (isLOOPAES(cd->type))
2418                 return cd->u.loopaes.cipher;
2419
2420         if (isTCRYPT(cd->type))
2421                 return cd->u.tcrypt.params.cipher;
2422
2423         return NULL;
2424 }
2425
2426 const char *crypt_get_cipher_mode(struct crypt_device *cd)
2427 {
2428         if (isPLAIN(cd->type))
2429                 return cd->u.plain.cipher_mode;
2430
2431         if (isLUKS(cd->type))
2432                 return cd->u.luks1.hdr.cipherMode;
2433
2434         if (isLOOPAES(cd->type))
2435                 return cd->u.loopaes.cipher_mode;
2436
2437         if (isTCRYPT(cd->type))
2438                 return cd->u.tcrypt.params.mode;
2439
2440         return NULL;
2441 }
2442
2443 const char *crypt_get_uuid(struct crypt_device *cd)
2444 {
2445         if (isLUKS(cd->type))
2446                 return cd->u.luks1.hdr.uuid;
2447
2448         if (isPLAIN(cd->type))
2449                 return cd->u.plain.uuid;
2450
2451         if (isLOOPAES(cd->type))
2452                 return cd->u.loopaes.uuid;
2453
2454         if (isVERITY(cd->type))
2455                 return cd->u.verity.uuid;
2456
2457         return NULL;
2458 }
2459
2460 const char *crypt_get_device_name(struct crypt_device *cd)
2461 {
2462         const char *path = device_block_path(cd->device);
2463
2464         if (!path)
2465                 path = device_path(cd->device);
2466
2467         return path;
2468 }
2469
2470 int crypt_get_volume_key_size(struct crypt_device *cd)
2471 {
2472         if (isPLAIN(cd->type))
2473                 return cd->u.plain.key_size;
2474
2475         if (isLUKS(cd->type))
2476                 return cd->u.luks1.hdr.keyBytes;
2477
2478         if (isLOOPAES(cd->type))
2479                 return cd->u.loopaes.key_size;
2480
2481         if (isVERITY(cd->type))
2482                 return cd->u.verity.root_hash_size;
2483
2484         if (isTCRYPT(cd->type))
2485                 return cd->u.tcrypt.params.key_size;
2486
2487         return 0;
2488 }
2489
2490 uint64_t crypt_get_data_offset(struct crypt_device *cd)
2491 {
2492         if (isPLAIN(cd->type))
2493                 return cd->u.plain.hdr.offset;
2494
2495         if (isLUKS(cd->type))
2496                 return cd->u.luks1.hdr.payloadOffset;
2497
2498         if (isLOOPAES(cd->type))
2499                 return cd->u.loopaes.hdr.offset;
2500
2501         if (isTCRYPT(cd->type))
2502                 return TCRYPT_get_data_offset(cd, &cd->u.tcrypt.hdr, &cd->u.tcrypt.params);
2503
2504         return 0;
2505 }
2506
2507 uint64_t crypt_get_iv_offset(struct crypt_device *cd)
2508 {
2509         if (isPLAIN(cd->type))
2510                 return cd->u.plain.hdr.skip;
2511
2512         if (isLUKS(cd->type))
2513                 return 0;
2514
2515         if (isLOOPAES(cd->type))
2516                 return cd->u.loopaes.hdr.skip;
2517
2518         if (isTCRYPT(cd->type))
2519                 return TCRYPT_get_iv_offset(cd, &cd->u.tcrypt.hdr, &cd->u.tcrypt.params);
2520
2521         return 0;
2522 }
2523
2524 crypt_keyslot_info crypt_keyslot_status(struct crypt_device *cd, int keyslot)
2525 {
2526         if (!isLUKS(cd->type)) {
2527                 log_err(cd, _("This operation is supported only for LUKS device.\n"));
2528                 return CRYPT_SLOT_INVALID;
2529         }
2530
2531         return LUKS_keyslot_info(&cd->u.luks1.hdr, keyslot);
2532 }
2533
2534 int crypt_keyslot_max(const char *type)
2535 {
2536         if (type && isLUKS(type))
2537                 return LUKS_NUMKEYS;
2538
2539         return -EINVAL;
2540 }
2541
2542 int crypt_keyslot_area(struct crypt_device *cd,
2543         int keyslot,
2544         uint64_t *offset,
2545         uint64_t *length)
2546 {
2547         if (!isLUKS(cd->type))
2548                 return -EINVAL;
2549
2550         return LUKS_keyslot_area(&cd->u.luks1.hdr, keyslot, offset, length);
2551 }
2552
2553 const char *crypt_get_type(struct crypt_device *cd)
2554 {
2555         return cd->type;
2556 }
2557
2558 int crypt_get_verity_info(struct crypt_device *cd,
2559         struct crypt_params_verity *vp)
2560 {
2561         if (!isVERITY(cd->type) || !vp)
2562                 return -EINVAL;
2563
2564         vp->data_device = device_path(cd->device);
2565         vp->hash_device = mdata_device_path(cd);
2566         vp->hash_name = cd->u.verity.hdr.hash_name;
2567         vp->salt = cd->u.verity.hdr.salt;
2568         vp->salt_size = cd->u.verity.hdr.salt_size;
2569         vp->data_block_size = cd->u.verity.hdr.data_block_size;
2570         vp->hash_block_size = cd->u.verity.hdr.hash_block_size;
2571         vp->data_size = cd->u.verity.hdr.data_size;
2572         vp->hash_area_offset = cd->u.verity.hdr.hash_area_offset;
2573         vp->hash_type = cd->u.verity.hdr.hash_type;
2574         vp->flags = cd->u.verity.hdr.flags & CRYPT_VERITY_NO_HEADER;
2575         return 0;
2576 }
2577
2578 int crypt_get_active_device(struct crypt_device *cd, const char *name,
2579                             struct crypt_active_device *cad)
2580 {
2581         struct crypt_dm_active_device dmd;
2582         int r;
2583
2584         r = dm_query_device(cd, name, 0, &dmd);
2585         if (r < 0)
2586                 return r;
2587
2588         if (dmd.target != DM_CRYPT && dmd.target != DM_VERITY)
2589                 return -ENOTSUP;
2590
2591         if (cd && isTCRYPT(cd->type)) {
2592                 cad->offset     = TCRYPT_get_data_offset(cd, &cd->u.tcrypt.hdr, &cd->u.tcrypt.params);
2593                 cad->iv_offset  = TCRYPT_get_iv_offset(cd, &cd->u.tcrypt.hdr, &cd->u.tcrypt.params);
2594         } else {
2595                 cad->offset     = dmd.u.crypt.offset;
2596                 cad->iv_offset  = dmd.u.crypt.iv_offset;
2597         }
2598         cad->size       = dmd.size;
2599         cad->flags      = dmd.flags;
2600
2601         return 0;
2602 }