Use struct volume key thorough.
[platform/upstream/cryptsetup.git] / lib / utils_dm.h
1 #ifndef _UTILS_DM_H
2 #define _UTILS_DM_H
3
4 /* device-mapper library helpers */
5 #include <inttypes.h>
6
7 struct crypt_device;
8 struct volume_key;
9
10 /* Device mapper backend - kernel support flags */
11 #define DM_KEY_WIPE_SUPPORTED (1 << 0)  /* key wipe message */
12 #define DM_LMK_SUPPORTED      (1 << 1)  /* lmk mode */
13 #define DM_SECURE_SUPPORTED   (1 << 2)  /* wipe (secure) buffer flag */
14 #define DM_PLAIN64_SUPPORTED  (1 << 3)  /* plain64 IV */
15 uint32_t dm_flags(void);
16
17 #define DM_ACTIVE_DEVICE        (1 << 0)
18 #define DM_ACTIVE_CIPHER        (1 << 1)
19 #define DM_ACTIVE_UUID          (1 << 2)
20 #define DM_ACTIVE_KEY           (1 << 3)
21
22 #define DM_ACTIVE_ALL ( \
23         DM_ACTIVE_DEVICE | \
24         DM_ACTIVE_CIPHER | \
25         DM_ACTIVE_UUID | \
26         DM_ACTIVE_KEY)
27
28 struct crypt_dm_active_device {
29         const char *device;
30         const char *cipher;
31         const char *uuid;
32
33         /* Active key for device */
34         struct volume_key *vk;
35
36         /* struct crypt_active_device */
37         uint64_t offset;        /* offset in sectors */
38         uint64_t iv_offset;     /* IV initilisation sector */
39         uint64_t size;          /* active device size */
40         uint32_t flags;         /* activation flags */
41 };
42
43 const char *dm_get_dir(void);
44 int dm_init(struct crypt_device *context, int check_kernel);
45 void dm_exit(void);
46 int dm_remove_device(const char *name, int force, uint64_t size);
47 int dm_status_device(const char *name);
48 int dm_status_suspended(const char *name);
49 int dm_query_device(const char *name, uint32_t get_flags,
50                     struct crypt_dm_active_device *dmd);
51 int dm_create_device(const char *name,
52                       const char *type,
53                       struct crypt_dm_active_device *dmd,
54                       int reload);
55 int dm_suspend_and_wipe_key(const char *name);
56 int dm_resume_and_reinstate_key(const char *name,
57                                 size_t key_size,
58                                 const char *key);
59 char *dm_device_path(const char *prefix, int major, int minor);
60 int dm_is_dm_device(int major, int minor);
61 int dm_is_dm_kernel_name(const char *name);
62 int dm_check_segment(const char *name, uint64_t offset, uint64_t size);
63
64 #endif /* _UTILS_DM_H */