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