Skip TCRYPT KDF if hash is not available.
[platform/upstream/cryptsetup.git] / lib / libcryptsetup.h
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  * Copyright (C) 2009-2012, Milan Broz
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23
24 /**
25  * @file libcryptsetup.h
26  * @brief Public cryptsetup API
27  *
28  * For more verbose examples of LUKS related use cases,
29  * please read @ref index "examples".
30  */
31
32 #ifndef _LIBCRYPTSETUP_H
33 #define _LIBCRYPTSETUP_H
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 #include <stddef.h>
39 #include <stdint.h>
40
41 struct crypt_device; /* crypt device handle */
42
43 /**
44  * Initialize crypt device handle and check if provided device exists.
45  *
46  * @param cd Returns pointer to crypt device handle
47  * @param device Path to the backing device.
48  *        If @e device is not a block device but a path to some file,
49  *        the function will try to create a loopdevice and attach
50  *        the file to the loopdevice with AUTOCLEAR flag set.
51  *        If @e device is @e NULL function it will initialize dm backend only.
52  *
53  * @return @e 0 on success or negative errno value otherwise.
54  *
55  * @note Note that logging is not initialized here, possible messages uses
56  *       default log function.
57  */
58 int crypt_init(struct crypt_device **cd, const char *device);
59
60 /**
61  * Initialize crypt device handle from provided active device name,
62  * and, optionally, from separate metadata (header) device
63  * and check if provided device exists.
64  *
65  * @return @e 0 on success or negative errno value otherwise.
66  *
67  * @param cd returns crypt device handle for active device
68  * @param name name of active crypt device
69  * @param header_device optional device containing on-disk header
70  *        (@e NULL if it the same as underlying device on there is no on-disk header)
71  *
72  * @post In case @e device points to active LUKS device but header load fails,
73  * context device type is set to @e NULL and @e 0 is returned as if it were successful.
74  * Context with @e NULL device type can only be deactivated by crypt_deactivate
75  *
76  * @note @link crypt_init_by_name @endlink is equivalent to calling
77  *       crypt_init_by_name_and_header(cd, name, NULL);
78  */
79 int crypt_init_by_name_and_header(struct crypt_device **cd,
80                                   const char *name,
81                                   const char *header_device);
82
83 /**
84  * This is equivalent to call
85  * @ref crypt_init_by_name_and_header "crypt_init_by_name_and_header(cd, name, NULL)"
86  *
87  * @sa crypt_init_by_name_and_header
88  */
89 int crypt_init_by_name(struct crypt_device **cd, const char *name);
90
91 /**
92  * @defgroup loglevel "Cryptsetup logging"
93  *
94  * Set of functions and defines used in cryptsetup for
95  * logging purposes
96  *
97  */
98
99 /**
100  * @addtogroup loglevel
101  * @{
102  */
103
104 /** normal log level */
105 #define CRYPT_LOG_NORMAL 0
106 /** error log level */
107 #define CRYPT_LOG_ERROR  1
108 /** verbose log level */
109 #define CRYPT_LOG_VERBOSE  2
110 /** debug log level - always on stdout */
111 #define CRYPT_LOG_DEBUG -1
112
113 /**
114  * Set log function.
115  *
116  * @param cd crypt device handle (can be @e NULL to set default log function)
117  * @param log user defined log function reference
118  * @param usrptr provided identification in callback
119  * @param level log level below (debug messages can uses other levels)
120  * @param msg log message
121  */
122 void crypt_set_log_callback(struct crypt_device *cd,
123         void (*log)(int level, const char *msg, void *usrptr),
124         void *usrptr);
125
126 /**
127  * Defines log function or use the default one otherwise.
128  *
129  * @see crypt_set_log_callback
130  *
131  * @param cd crypt device handle
132  * @param level log level
133  * @param msg log message
134  */
135 void crypt_log(struct crypt_device *cd, int level, const char *msg);
136 /** @} */
137
138 /**
139  * Set confirmation callback (yes/no)
140  *
141  * If code need confirmation (like resetting uuid or restoring LUKS header from file)
142  * this function is called. If not defined, everything is confirmed.
143  *
144  * Callback function @e confirm should return @e 0 if operation is declined,
145  * other values mean accepted.
146  *
147  * @param cd crypt device handle
148  * @param confirm user defined confirm callback reference
149  * @param usrptr provided identification in callback
150  * @param msg Message for user to confirm
151  *
152  * @note Current version of cryptsetup API requires confirmation only when UUID is being changed
153  */
154 void crypt_set_confirm_callback(struct crypt_device *cd,
155         int (*confirm)(const char *msg, void *usrptr),
156         void *usrptr);
157
158 /**
159  * Set password query callback.
160  *
161  * If code need @e _interactive_ query for password, this callback is called.
162  * If not defined, compiled-in default is called (uses terminal input).
163  *
164  * Callback should return length of password in buffer
165  * or negative errno value in case of error.
166  *
167  * @param cd crypt device handle
168  * @param password user defined password callback reference
169  * @param usrptr provided identification in callback
170  * @param msg Message for user
171  * @param buf buffer for password
172  * @param length size of buffer
173  *
174  * @note Note that if this function is defined, verify option is ignored
175  *   (caller which provided callback is responsible for password verification)
176  * @note Only zero terminated passwords can be entered this way, for complex
177  *   use API functions directly.
178  * @note Maximal length of password is limited to @e length @e - @e 1 (minimal 511 chars)
179  *
180  * @see Callback function is used in these call provided, that certain conditions are met:
181  * @li crypt_keyslot_add_by_passphrase
182  * @li crypt_activate_by_passphrase
183  * @li crypt_resume_by_passphrase
184  * @li crypt_resume_by_keyfile
185  * @li crypt_keyslot_add_by_keyfile
186  * @li crypt_keyslot_add_by_volume_key
187  *
188  */
189 void crypt_set_password_callback(struct crypt_device *cd,
190         int (*password)(const char *msg, char *buf, size_t length, void *usrptr),
191         void *usrptr);
192
193 /**
194  * Set timeout for interactive password entry using default
195  * password callback
196  *
197  * @param cd crypt device handle
198  * @param timeout_sec timeout in seconds
199  */
200 void crypt_set_timeout(struct crypt_device *cd, uint64_t timeout_sec);
201
202 /**
203  * Set number of retries in case password input has been incorrect
204  *
205  * @param cd crypt device handle
206  * @param tries the number
207  */
208 void crypt_set_password_retry(struct crypt_device *cd, int tries);
209
210 /**
211  * Set how long should cryptsetup iterate in PBKDF2 function.
212  * Default value heads towards the iterations which takes around 1 second
213  *
214  * @param cd crypt device handle
215  * @param iteration_time_ms the time in ms
216  */
217 void crypt_set_iteration_time(struct crypt_device *cd, uint64_t iteration_time_ms);
218 /* Don't ask :-) */
219 void crypt_set_iterarion_time(struct crypt_device *cd, uint64_t iteration_time_ms);
220
221 /**
222  * Set whether passphrase will be verified on input
223  * (user has to input same passphrase twice)
224  *
225  * @param cd crypt device handle
226  * @param password_verify @e 0 = false, @e !0 true
227  */
228 void crypt_set_password_verify(struct crypt_device *cd, int password_verify);
229
230 /**
231  * Set data device
232  * For LUKS it is encrypted data device when LUKS header is separated.
233  * For VERITY it is data device when hash device is separated.
234  *
235  * @param cd crypt device handle
236  * @param device path to device
237  *
238  */
239 int crypt_set_data_device(struct crypt_device *cd, const char *device);
240
241 /**
242  * @defgroup rng "Cryptsetup RNG"
243  *
244  * @addtogroup rng
245  * @{
246  *
247  */
248
249 /** CRYPT_RNG_URANDOM - use /dev/urandom */
250 #define CRYPT_RNG_URANDOM 0
251 /** CRYPT_RNG_RANDOM  - use /dev/random (waits if no entropy in system) */
252 #define CRYPT_RNG_RANDOM  1
253
254 /**
255  * Set which RNG (random number generator) is used for generating long term key
256  *
257  * @param cd crypt device handle
258  * @param rng_type kernel random number generator to use
259  *
260  */
261 void crypt_set_rng_type(struct crypt_device *cd, int rng_type);
262
263 /**
264  * Get which RNG (random number generator) is used for generating long term key
265  *
266  * @param cd crypt device handle
267  * @return RNG type on success or negative errno value otherwise.
268  *
269  */
270 int crypt_get_rng_type(struct crypt_device *cd);
271
272 /** @} */
273
274 /**
275  * Helper to lock/unlock memory to avoid swap sensitive data to disk
276  *
277  * @param cd crypt device handle, can be @e NULL
278  * @param lock 0 to unlock otherwise lock memory
279  *
280  * @returns Value indicating whether the memory is locked (function can be called multiple times).
281  *
282  * @note Only root can do this.
283  * @note It locks/unlocks all process memory, not only crypt context.
284  */
285 int crypt_memory_lock(struct crypt_device *cd, int lock);
286
287 /**
288  * @defgroup crypt_type "Cryptsetup on-disk format types"
289  *
290  * Set of functions, \#defines and structs related
291  * to on-disk format types
292  */
293
294 /**
295  * @addtogroup crypt_type
296  * @{
297  */
298
299 /** plain crypt device, no on-disk header */
300 #define CRYPT_PLAIN "PLAIN"
301 /** LUKS version 1 header on-disk */
302 #define CRYPT_LUKS1 "LUKS1"
303 /** loop-AES compatibility mode */
304 #define CRYPT_LOOPAES "LOOPAES"
305 /** dm-verity mode */
306 #define CRYPT_VERITY "VERITY"
307 /** TCRYPT (TrueCrypt-compatible) mode */
308 #define CRYPT_TCRYPT "TCRYPT"
309
310 /**
311  * Get device type
312  *
313  * @param cd crypt device handle
314  * @return string according to device type or @e NULL if not known.
315  */
316 const char *crypt_get_type(struct crypt_device *cd);
317
318 /**
319  *
320  * Structure used as parameter for PLAIN device type
321  *
322  * @see crypt_format
323  */
324 struct crypt_params_plain {
325         const char *hash; /**< password hash function */
326         uint64_t offset; /**< offset in sectors */
327         uint64_t skip; /**< IV offset / initialization sector */
328         uint64_t size; /**< size of mapped device or @e 0 for autodetection */
329 };
330
331 /**
332  * Structure used as parameter for LUKS device type
333  *
334  * @see crypt_format, crypt_load
335  *
336  * @note during crypt_format @e data_device attribute determines
337  *       if the LUKS header is separated from encrypted payload device
338  *
339  */
340 struct crypt_params_luks1 {
341         const char *hash; /**< hash used in LUKS header */
342         size_t data_alignment; /**< data alignment in sectors, data offset is multiple of this */
343         const char *data_device; /**< detached encrypted data device or @e NULL */
344 };
345
346 /**
347  *
348  * Structure used as parameter for loop-AES device type
349  *
350  * @see crypt_format
351  *
352  */
353 struct crypt_params_loopaes {
354         const char *hash; /**< key hash function */
355         uint64_t offset;  /**< offset in sectors */
356         uint64_t skip;    /**< IV offset / initialization sector */
357 };
358
359 /**
360  *
361  * Structure used as parameter for dm-verity device type
362  *
363  * @see crypt_format, crypt_load
364  *
365  */
366 /** No on-disk header (only hashes) */
367 #define CRYPT_VERITY_NO_HEADER   (1 << 0)
368 /** Verity hash in userspace before activation */
369 #define CRYPT_VERITY_CHECK_HASH  (1 << 1)
370 /** Create hash - format hash device */
371 #define CRYPT_VERITY_CREATE_HASH (1 << 2)
372
373 struct crypt_params_verity {
374         const char *hash_name;     /**< hash function */
375         const char *data_device;   /**< data_device (CRYPT_VERITY_CREATE_HASH) */
376         const char *hash_device;   /**< hash_device (output only) */
377         const char *salt;          /**< salt */
378         uint32_t salt_size;        /**< salt size (in bytes) */
379         uint32_t hash_type;        /**< in-kernel hashing type */
380         uint32_t data_block_size;  /**< data block size (in bytes) */
381         uint32_t hash_block_size;  /**< hash block size (in bytes) */
382         uint64_t data_size;        /**< data area size (in data blocks) */
383         uint64_t hash_area_offset; /**< hash/header offset (in bytes) */
384         uint32_t flags;            /**< CRYPT_VERITY* flags */
385 };
386
387 /**
388  *
389  * Structure used as parameter for TCRYPT device type
390  *
391  * @see crypt_format
392  *
393  */
394 /** Include legacy modes ehn scannig for header*/
395 #define CRYPT_TCRYPT_LEGACY_MODES    (1 << 0)
396 /** Try to load hidden header (describing hidden device) */
397 #define CRYPT_TCRYPT_HIDDEN_HEADER   (1 << 1)
398 /** Try to load backup header */
399 #define CRYPT_TCRYPT_BACKUP_HEADER   (1 << 2)
400 /** Device contains encrypted system (with boot loader) */
401 #define CRYPT_TCRYPT_SYSTEM_HEADER   (1 << 3)
402
403 struct crypt_params_tcrypt {
404         const char *passphrase;    /**< passphrase to unlock header (input only) */
405         size_t passphrase_size;    /**< passphrase size (input only) */
406         const char **keyfiles;     /**< keyfile paths to unlock header (input only) */
407         unsigned int keyfiles_count;/**< keyfiles count (input only) */
408         const char *hash_name;     /**< hash function for PBKDF */
409         const char *cipher;        /**< cipher chain c1[-c2[-c3]] */
410         const char *mode;          /**< cipher block mode */
411         size_t key_size;           /**< key size in bytes (the whole chain) */
412         uint32_t flags;            /**< CRYPT_TCRYPT* flags */
413 };
414
415 /** @} */
416
417 /**
418  * Create (format) new crypt device (and possible header on-disk) but not activates it.
419  *
420  * @pre @e cd contains initialized and not formatted device context (device type must @b not be set)
421  *
422  * @param cd crypt device handle
423  * @param type type of device (optional params struct must be of this type)
424  * @param cipher (e.g. "aes")
425  * @param cipher_mode including IV specification (e.g. "xts-plain")
426  * @param uuid requested UUID or @e NULL if it should be generated
427  * @param volume_key pre-generated volume key or @e NULL if it should be generated (only for LUKS)
428  * @param volume_key_size size of volume key in bytes.
429  * @param params crypt type specific parameters (see @link crypt_type @endlink)
430  *
431  * @returns @e 0 on success or negative errno value otherwise.
432  *
433  * @note Note that crypt_format does not enable any keyslot (in case of work with LUKS device),
434  *      but it stores volume key internally and subsequent crypt_keyslot_add_* calls can be used.
435  * @note For VERITY @link crypt_type @endlink, only uuid parameter is used, others paramaters
436  *      are ignored and verity specific attributes are set through mandatory params option.
437  */
438 int crypt_format(struct crypt_device *cd,
439         const char *type,
440         const char *cipher,
441         const char *cipher_mode,
442         const char *uuid,
443         const char *volume_key,
444         size_t volume_key_size,
445         void *params);
446
447 /**
448  * Set new UUID for already existing device
449  *
450  * @param cd crypt device handle
451  * @param uuid requested UUID or @e NULL if it should be generated
452  *
453  * @returns 0 on success or negative errno value otherwise.
454  *
455  * @note Currently, only LUKS device type are supported
456  */
457 int crypt_set_uuid(struct crypt_device *cd,
458                    const char *uuid);
459
460 /**
461  * Load crypt device parameters from on-disk header
462  *
463  * @param cd crypt device handle
464  * @param requested_type @link crypt_type @endlink or @e NULL for all known
465  * @param params crypt type specific parameters (see @link crypt_type @endlink)
466  *
467  * @returns 0 on success or negative errno value otherwise.
468  *
469  * @post In case LUKS header is read successfully but payload device is too small
470  * error is returned and device type in context is set to @e NULL
471  *
472  * @note Note that in current version load works only for LUKS and VERITY device type.
473  *
474  */
475 int crypt_load(struct crypt_device *cd,
476                const char *requested_type,
477                void *params);
478
479 /**
480  * Try to repair crypt device on-disk header if invalid
481  *
482  * @param cd crypt device handle
483  * @param requested_type @link crypt_type @endlink or @e NULL for all known
484  * @param params crypt type specific parameters (see @link crypt_type @endlink)
485  *
486  * @returns 0 on success or negative errno value otherwise.
487  *
488  */
489 int crypt_repair(struct crypt_device *cd,
490                  const char *requested_type,
491                  void *params);
492
493 /**
494  * Resize crypt device
495  *
496  * @param cd - crypt device handle
497  * @param name - name of device to resize
498  * @param new_size - new device size in sectors or @e 0 to use all of the underlying device size
499  *
500  * @return @e 0 on success or negative errno value otherwise.
501  */
502 int crypt_resize(struct crypt_device *cd,
503                  const char *name,
504                  uint64_t new_size);
505
506 /**
507  * Suspends crypt device.
508  *
509  * @param cd crypt device handle, can be @e NULL
510  * @param name name of device to suspend
511  *
512  * @return 0 on success or negative errno value otherwise.
513  *
514  * @note Only LUKS device type is supported
515  *
516  */
517 int crypt_suspend(struct crypt_device *cd,
518                   const char *name);
519
520 /**
521  * Resumes crypt device using passphrase.
522  *
523  *
524  * @param cd crypt device handle
525  * @param name name of device to resume
526  * @param keyslot requested keyslot or CRYPT_ANY_SLOT
527  * @param passphrase passphrase used to unlock volume key, @e NULL for query
528  * @param passphrase_size size of @e passphrase (binary data)
529  *
530  * @return unlocked key slot number or negative errno otherwise.
531  *
532  * @note Only LUKS device type is supported
533  */
534 int crypt_resume_by_passphrase(struct crypt_device *cd,
535         const char *name,
536         int keyslot,
537         const char *passphrase,
538         size_t passphrase_size);
539
540 /**
541  * Resumes crypt device using key file.
542  *
543  * @param cd crypt device handle
544  * @param name name of device to resume
545  * @param keyslot requested keyslot or CRYPT_ANY_SLOT
546  * @param keyfile key file used to unlock volume key, @e NULL for passphrase query
547  * @param keyfile_size number of bytes to read from keyfile, 0 is unlimited
548  * @param keyfile_offset number of bytes to skip at start of keyfile
549  *
550  * @return unlocked key slot number or negative errno otherwise.
551  */
552 int crypt_resume_by_keyfile_offset(struct crypt_device *cd,
553         const char *name,
554         int keyslot,
555         const char *keyfile,
556         size_t keyfile_size,
557         size_t keyfile_offset);
558 /**
559  * Backward compatible crypt_resume_by_keyfile_offset() (without offset).
560  */
561 int crypt_resume_by_keyfile(struct crypt_device *cd,
562         const char *name,
563         int keyslot,
564         const char *keyfile,
565         size_t keyfile_size);
566
567 /**
568  * Releases crypt device context and used memory.
569  *
570  * @param cd crypt device handle
571  */
572 void crypt_free(struct crypt_device *cd);
573
574 /**
575  * @defgroup keyslot "Cryptsetup LUKS keyslots"
576  * @addtogroup keyslot
577  * @{
578  *
579  */
580
581 /** iterate through all keyslots and find first one that fits */
582 #define CRYPT_ANY_SLOT -1
583
584 /**
585  * Add key slot using provided passphrase
586  *
587  * @pre @e cd contains initialized and formatted LUKS device context
588  *
589  * @param cd crypt device handle
590  * @param keyslot requested keyslot or @e CRYPT_ANY_SLOT
591  * @param passphrase passphrase used to unlock volume key, @e NULL for query
592  * @param passphrase_size size of passphrase (binary data)
593  * @param new_passphrase passphrase for new keyslot, @e NULL for query
594  * @param new_passphrase_size size of @e new_passphrase (binary data)
595  *
596  * @return allocated key slot number or negative errno otherwise.
597  */
598 int crypt_keyslot_add_by_passphrase(struct crypt_device *cd,
599         int keyslot,
600         const char *passphrase,
601         size_t passphrase_size,
602         const char *new_passphrase,
603         size_t new_passphrase_size);
604
605 /**
606  * Change defined key slot using provided passphrase
607  *
608  * @pre @e cd contains initialized and formatted LUKS device context
609  *
610  * @param cd crypt device handle
611  * @param keyslot_old old keyslot or @e CRYPT_ANY_SLOT
612  * @param keyslot_new new keyslot (can be the same as old)
613  * @param passphrase passphrase used to unlock volume key, @e NULL for query
614  * @param passphrase_size size of passphrase (binary data)
615  * @param new_passphrase passphrase for new keyslot, @e NULL for query
616  * @param new_passphrase_size size of @e new_passphrase (binary data)
617  *
618  * @return allocated key slot number or negative errno otherwise.
619  *
620  * @note This function is just internal implementation of luksChange
621  * command to avoid reading of volume key outside libcryptsetup boundary
622  * in FIPS mode.
623  */
624 int crypt_keyslot_change_by_passphrase(struct crypt_device *cd,
625         int keyslot_old,
626         int keyslot_new,
627         const char *passphrase,
628         size_t passphrase_size,
629         const char *new_passphrase,
630         size_t new_passphrase_size);
631
632 /**
633 * Add key slot using provided key file path
634  *
635  * @pre @e cd contains initialized and formatted LUKS device context
636  *
637  * @param cd crypt device handle
638  * @param keyslot requested keyslot or @e CRYPT_ANY_SLOT
639  * @param keyfile key file used to unlock volume key, @e NULL for passphrase query
640  * @param keyfile_size number of bytes to read from keyfile, @e 0 is unlimited
641  * @param keyfile_offset number of bytes to skip at start of keyfile
642  * @param new_keyfile keyfile for new keyslot, @e NULL for passphrase query
643  * @param new_keyfile_size number of bytes to read from @e new_keyfile, @e 0 is unlimited
644  * @param new_keyfile_offset number of bytes to skip at start of new_keyfile
645  *
646  * @return allocated key slot number or negative errno otherwise.
647  *
648  * @note Note that @e keyfile can be "-" for STDIN
649  *
650  */
651 int crypt_keyslot_add_by_keyfile_offset(struct crypt_device *cd,
652         int keyslot,
653         const char *keyfile,
654         size_t keyfile_size,
655         size_t keyfile_offset,
656         const char *new_keyfile,
657         size_t new_keyfile_size,
658         size_t new_keyfile_offset);
659 /**
660  * Backward compatible crypt_keyslot_add_by_keyfile_offset() (without offset).
661  */
662 int crypt_keyslot_add_by_keyfile(struct crypt_device *cd,
663         int keyslot,
664         const char *keyfile,
665         size_t keyfile_size,
666         const char *new_keyfile,
667         size_t new_keyfile_size);
668
669 /**
670  * Add key slot using provided volume key
671  *
672  * @pre @e cd contains initialized and formatted LUKS device context
673  *
674  * @param cd crypt device handle
675  * @param keyslot requested keyslot or CRYPT_ANY_SLOT
676  * @param volume_key provided volume key or @e NULL if used after crypt_format
677  * @param volume_key_size size of volume_key
678  * @param passphrase passphrase for new keyslot, @e NULL for query
679  * @param passphrase_size size of passphrase
680  *
681  * @return allocated key slot number or negative errno otherwise.
682  *
683  */
684 int crypt_keyslot_add_by_volume_key(struct crypt_device *cd,
685         int keyslot,
686         const char *volume_key,
687         size_t volume_key_size,
688         const char *passphrase,
689         size_t passphrase_size);
690
691 /**
692  * Destroy (and disable) key slot
693  *
694  * @pre @e cd contains initialized and formatted LUKS device context
695  *
696  * @param cd crypt device handle
697  * @param keyslot requested key slot to destroy
698  *
699  * @return @e 0 on success or negative errno value otherwise.
700  *
701  * @note Note that there is no passphrase verification used.
702  */
703 int crypt_keyslot_destroy(struct crypt_device *cd, int keyslot);
704
705 /** @} */
706
707 /**
708  * @defgroup aflags "Device runtime attributes"
709  *
710  * Activation flags
711  *
712  * @addtogroup aflags
713  * @{
714  *
715  */
716 /** device is read only */
717 #define CRYPT_ACTIVATE_READONLY (1 << 0)
718 /** only reported for device without uuid */
719 #define CRYPT_ACTIVATE_NO_UUID  (1 << 1)
720 /** activate even if cannot grant exclusive access (DANGEROUS) */
721 #define CRYPT_ACTIVATE_SHARED   (1 << 2)
722 /** enable discards aka TRIM */
723 #define CRYPT_ACTIVATE_ALLOW_DISCARDS (1 << 3)
724 /** skip global udev rules in activation ("private device"), input only */
725 #define CRYPT_ACTIVATE_PRIVATE (1 << 4)
726 /** corruption detected (verity), output only */
727 #define CRYPT_ACTIVATE_CORRUPTED (1 << 5)
728
729 /**
730  * Active device runtime attributes
731  */
732 struct crypt_active_device {
733         uint64_t offset; /**< offset in sectors */
734         uint64_t iv_offset; /**< IV initialization sector */
735         uint64_t size; /**< active device size */
736         uint32_t flags; /**< activation flags */
737 };
738
739 /**
740  * Receives runtime attributes of active crypt device
741  *
742  * @param cd crypt device handle (can be @e NULL)
743  * @param name name of active device
744  * @param cad preallocated active device attributes to fill
745  *
746  * @return @e 0 on success or negative errno value otherwise
747  *
748  */
749 int crypt_get_active_device(struct crypt_device *cd,
750                             const char *name,
751                             struct crypt_active_device *cad);
752
753 /** @} */
754
755 /**
756  * Activate device or check passphrase
757  *
758  * @param cd crypt device handle
759  * @param name name of device to create, if @e NULL only check passphrase
760  * @param keyslot requested keyslot to check or @e CRYPT_ANY_SLOT
761  * @param passphrase passphrase used to unlock volume key, @e NULL for query
762  * @param passphrase_size size of @e passphrase
763  * @param flags activation flags
764  *
765  * @return unlocked key slot number or negative errno otherwise.
766  */
767 int crypt_activate_by_passphrase(struct crypt_device *cd,
768         const char *name,
769         int keyslot,
770         const char *passphrase,
771         size_t passphrase_size,
772         uint32_t flags);
773
774 /**
775  * Activate device or check using key file
776  *
777  * @param cd crypt device handle
778  * @param name name of device to create, if @e NULL only check keyfile
779  * @param keyslot requested keyslot to check or CRYPT_ANY_SLOT
780  * @param keyfile key file used to unlock volume key
781  * @param keyfile_size number of bytes to read from keyfile, 0 is unlimited
782  * @param keyfile_offset number of bytes to skip at start of keyfile
783  * @param flags activation flags
784  *
785  * @return unlocked key slot number or negative errno otherwise.
786  */
787 int crypt_activate_by_keyfile_offset(struct crypt_device *cd,
788         const char *name,
789         int keyslot,
790         const char *keyfile,
791         size_t keyfile_size,
792         size_t keyfile_offset,
793         uint32_t flags);
794 /**
795  * Backward compatible crypt_activate_by_keyfile_offset() (without offset).
796  */
797 int crypt_activate_by_keyfile(struct crypt_device *cd,
798         const char *name,
799         int keyslot,
800         const char *keyfile,
801         size_t keyfile_size,
802         uint32_t flags);
803
804 /**
805  * Activate device using provided volume key
806  *
807  *
808  * @param cd crypt device handle
809  * @param name name of device to create, if @e NULL only check volume key
810  * @param volume_key provided volume key (or @e NULL to use internal)
811  * @param volume_key_size size of volume_key
812  * @param flags activation flags
813  *
814  * @return @e 0 on success or negative errno value otherwise.
815  *
816  * @note If @e NULL is used for volume_key, device has to be initialized
817  *       by previous operation (like @ref crypt_format
818  *       or @ref crypt_init_by_name)
819  * @note For VERITY the volume key means root hash required for activation.
820  *       Because kernel dm-verity is always read only, you have to provide
821  *       CRYPT_ACTIVATE_READONLY flag always.
822  * @note For TCRYPT the volume key should be always NULL and because master
823  *       key from decrypted header is used instead.
824  */
825 int crypt_activate_by_volume_key(struct crypt_device *cd,
826         const char *name,
827         const char *volume_key,
828         size_t volume_key_size,
829         uint32_t flags);
830
831 /**
832  * Deactivate crypt device. This function tries to remove active device-mapper
833  * mapping from kernel. Also, sensitive data like the volume key are removed from
834  * memory
835  *
836  * @param cd crypt device handle, can be @e NULL
837  * @param name name of device to deactivate
838  *
839  * @return @e 0 on success or negative errno value otherwise.
840  *
841  */
842 int crypt_deactivate(struct crypt_device *cd, const char *name);
843
844 /**
845  * Get volume key from of crypt device
846  *
847  * @param cd crypt device handle
848  * @param keyslot use this keyslot or @e CRYPT_ANY_SLOT
849  * @param volume_key buffer for volume key
850  * @param volume_key_size on input, size of buffer @e volume_key,
851  *        on output size of @e volume_key
852  * @param passphrase passphrase used to unlock volume key
853  * @param passphrase_size size of @e passphrase
854  *
855  * @return unlocked key slot number or negative errno otherwise.
856  *
857  * @note For TCRYPT cipher chain is  the volume key concatenated
858  *       for all ciphers in chain.
859  */
860 int crypt_volume_key_get(struct crypt_device *cd,
861         int keyslot,
862         char *volume_key,
863         size_t *volume_key_size,
864         const char *passphrase,
865         size_t passphrase_size);
866
867 /**
868  * Verify that provided volume key is valid for crypt device
869  *
870  * @param cd crypt device handle
871  * @param volume_key provided volume key
872  * @param volume_key_size size of @e volume_key
873  *
874  * @return @e 0 on success or negative errno value otherwise.
875  */
876 int crypt_volume_key_verify(struct crypt_device *cd,
877         const char *volume_key,
878         size_t volume_key_size);
879
880 /**
881  * @defgroup devstat "Crypt and Verity device status"
882  * @addtogroup devstat
883  * @{
884  */
885
886 /**
887  * Device status
888  */
889 typedef enum {
890         CRYPT_INVALID, /**< device mapping is invalid in this context */
891         CRYPT_INACTIVE, /**< no such mapped device */
892         CRYPT_ACTIVE, /**< device is active */
893         CRYPT_BUSY /**< device is active and has open count > 0 */
894 } crypt_status_info;
895
896 /**
897  * Get status info about device name
898  *
899  * @param cd crypt device handle, can be @e NULL
900  * @param name crypt device name
901  *
902  * @return value defined by crypt_status_info.
903  *
904  */
905 crypt_status_info crypt_status(struct crypt_device *cd, const char *name);
906
907 /**
908  * Dump text-formatted information about crypt or verity device to log output
909  *
910  * @param cd crypt device handle
911  *
912  * @return @e 0 on success or negative errno value otherwise.
913  */
914 int crypt_dump(struct crypt_device *cd);
915
916 /**
917  * Informational benchmark for ciphers
918  *
919  * @param cd crypt device handle
920  * @param cipher (e.g. "aes")
921  * @param cipher_mode (e.g. "xts"), IV generator is ignored
922  * @param volume_key_size size of volume key in bytes
923  * @param iv_size size of IV in bytes
924  * @param buffer_size size of encryption buffer in bytes used in test
925  * @param encryption_mbs measured encryption speed in MiB/s
926  * @param decryption_mbs measured decryption speed in MiB/s
927  *
928  * @return @e 0 on success or negative errno value otherwise.
929  */
930 int crypt_benchmark(struct crypt_device *cd,
931         const char *cipher,
932         const char *cipher_mode,
933         size_t volume_key_size,
934         size_t iv_size,
935         size_t buffer_size,
936         double *encryption_mbs,
937         double *decryption_mbs);
938
939 int crypt_benchmark_kdf(struct crypt_device *cd,
940         const char *kdf,
941         const char *hash,
942         const char *password,
943         size_t password_size,
944         const char *salt,
945         size_t salt_size,
946         uint64_t *iterations_sec);
947
948 /**
949  * Get cipher used in device
950  *
951  * @param cd crypt device handle
952  *
953  * @return used cipher, e.g. "aes" or @e NULL otherwise
954  *
955  */
956 const char *crypt_get_cipher(struct crypt_device *cd);
957
958 /**
959  * Get cipher mode used in device
960  *
961  * @param cd crypt device handle
962  *
963  * @return used cipher mode e.g. "xts-plain" or @e otherwise
964  *
965  */
966 const char *crypt_get_cipher_mode(struct crypt_device *cd);
967
968 /**
969  * Get device UUID
970  *
971  * @param cd crypt device handle
972  *
973  * @return device UUID or @e NULL if not set
974  *
975  */
976 const char *crypt_get_uuid(struct crypt_device *cd);
977
978 /**
979  * Get path to underlaying device
980  *
981  * @param cd crypt device handle
982  *
983  * @return path to underlaying device name
984  *
985  */
986 const char *crypt_get_device_name(struct crypt_device *cd);
987
988 /**
989  * Get device offset in sectors where real data starts on underlying device)
990  *
991  * @param cd crypt device handle
992  *
993  * @return device offset in sectors
994  *
995  */
996 uint64_t crypt_get_data_offset(struct crypt_device *cd);
997
998 /**
999  * Get IV offset in sectors (skip)
1000  *
1001  * @param cd crypt device handle
1002  *
1003  * @return IV offset
1004  *
1005  */
1006 uint64_t crypt_get_iv_offset(struct crypt_device *cd);
1007
1008 /**
1009  * Get size (in bytes) of volume key for crypt device
1010  *
1011  * @param cd crypt device handle
1012  *
1013  * @return volume key size
1014  *
1015  */
1016 int crypt_get_volume_key_size(struct crypt_device *cd);
1017
1018 /**
1019  * Get device parameters for VERITY device
1020  *
1021  * @param cd crypt device handle
1022  * @param vp verity device info
1023  *
1024  * @e 0 on success or negative errno value otherwise.
1025  *
1026  */
1027 int crypt_get_verity_info(struct crypt_device *cd,
1028         struct crypt_params_verity *vp);
1029 /** @} */
1030
1031 /**
1032  * @addtogroup keyslot
1033  * @{
1034  *
1035  */
1036
1037 /**
1038  * Crypt keyslot info
1039  */
1040 typedef enum {
1041         CRYPT_SLOT_INVALID, /**< invalid keyslot */
1042         CRYPT_SLOT_INACTIVE, /**< keyslot is inactive (free) */
1043         CRYPT_SLOT_ACTIVE, /**< keyslot is active (used) */
1044         CRYPT_SLOT_ACTIVE_LAST /**< keylost is active (used)
1045                                 *   and last used at the same time */
1046 } crypt_keyslot_info;
1047
1048 /**
1049  * Get information about particular key slot
1050  *
1051  *
1052  * @param cd crypt device handle
1053  * @param keyslot requested keyslot to check or CRYPT_ANY_SLOT
1054  *
1055  * @return value defined by crypt_keyslot_info
1056  *
1057  */
1058 crypt_keyslot_info crypt_keyslot_status(struct crypt_device *cd, int keyslot);
1059 /** @} */
1060
1061 /**
1062  * Get number of keyslots supported for device type.
1063  *
1064  * @param type crypt device type
1065  *
1066  * @return slot count or negative errno otherwise if device
1067  * doesn't not support keyslots.
1068  */
1069 int crypt_keyslot_max(const char *type);
1070
1071 /**
1072  * Get keyslot area pointers (relative to metadata device)
1073  *
1074  * @param cd crypt device handle
1075  * @param keyslot keyslot number
1076  * @param offset offset on metadata device (in bytes)
1077  * @param length length of keyslot area (in bytes)
1078  *
1079  * @return @e 0 on success or negative errno value otherwise.
1080  *
1081  */
1082 int crypt_keyslot_area(struct crypt_device *cd,
1083         int keyslot,
1084         uint64_t *offset,
1085         uint64_t *length);
1086
1087 /**
1088  * Backup header and keyslots to file
1089  *
1090  * @param cd crypt device handle
1091  * @param requested_type @link crypt_type @endlink or @e NULL for all known
1092  * @param backup_file file to backup header to
1093  *
1094  * @return @e 0 on success or negative errno value otherwise.
1095  *
1096  */
1097 int crypt_header_backup(struct crypt_device *cd,
1098         const char *requested_type,
1099         const char *backup_file);
1100
1101 /**
1102  * Restore header and keyslots from backup file
1103  *
1104  *
1105  * @param cd crypt device handle
1106  * @param requested_type @link crypt_type @endlink or @e NULL for all known
1107  * @param backup_file file to restore header from
1108  *
1109  * @return @e 0 on success or negative errno value otherwise.
1110  *
1111  */
1112 int crypt_header_restore(struct crypt_device *cd,
1113         const char *requested_type,
1114         const char *backup_file);
1115
1116 /**
1117  * Receives last reported error
1118  *
1119  * @param cd crypt device handle
1120  * @param buf buffef for message
1121  * @param size size of buffer
1122  *
1123  * @note Note that this is old API function using global context.
1124  * All error messages are reported also through log callback.
1125  */
1126 void crypt_last_error(struct crypt_device *cd, char *buf, size_t size);
1127
1128 /**
1129  * Receives last reported error, DEPRECATED
1130  *
1131  * @param buf buffef for message
1132  * @param size size of buffer
1133  *
1134  * @note Note that this is old API function using global context.
1135  * All error messages are reported also through log callback.
1136  */
1137 void crypt_get_error(char *buf, size_t size);
1138
1139 /**
1140  * Get directory where mapped crypt devices are created
1141  *
1142  * @return the directory path
1143  */
1144 const char *crypt_get_dir(void);
1145
1146 /**
1147  * @defgroup dbg "Library debug level"
1148  *
1149  * Set library debug level
1150  *
1151  * @addtogroup dbg
1152  * @{
1153  */
1154
1155 /** Debug all */
1156 #define CRYPT_DEBUG_ALL  -1
1157 /** Debug none */
1158 #define CRYPT_DEBUG_NONE  0
1159
1160 /**
1161  * Set the debug level for library
1162  *
1163  * @param level debug level
1164  *
1165  */
1166 void crypt_set_debug_level(int level);
1167
1168 /** @} */
1169
1170 #ifdef __cplusplus
1171 }
1172 #endif
1173 #endif /* _LIBCRYPTSETUP_H */