Move LUKS library to lib subdir.
[platform/upstream/cryptsetup.git] / lib / luks1 / luks.h
1 #ifndef INCLUDED_CRYPTSETUP_LUKS_LUKS_H
2 #define INCLUDED_CRYPTSETUP_LUKS_LUKS_H
3
4 /*
5  * LUKS partition header
6  */
7
8 #include "libcryptsetup.h"
9
10 #define LUKS_CIPHERNAME_L 32
11 #define LUKS_CIPHERMODE_L 32
12 #define LUKS_HASHSPEC_L 32
13 #define LUKS_DIGESTSIZE 20 // since SHA1
14 #define LUKS_HMACSIZE 32
15 #define LUKS_SALTSIZE 32
16 #define LUKS_NUMKEYS 8
17
18 // Minimal number of iterations
19 #define LUKS_MKD_ITERATIONS_MIN  1000
20 #define LUKS_SLOT_ITERATIONS_MIN 1000
21
22 #define LUKS_KEY_DISABLED_OLD 0
23 #define LUKS_KEY_ENABLED_OLD 0xCAFE
24
25 #define LUKS_KEY_DISABLED 0x0000DEAD
26 #define LUKS_KEY_ENABLED  0x00AC71F3
27
28 #define LUKS_STRIPES 4000
29
30 // partition header starts with magic
31 #define LUKS_MAGIC {'L','U','K','S', 0xba, 0xbe};
32 #define LUKS_MAGIC_L 6
33
34 #define LUKS_PHDR_SIZE (sizeof(struct luks_phdr)/SECTOR_SIZE+1)
35
36 /* Actually we need only 37, but we don't want struct autoaligning to kick in */
37 #define UUID_STRING_L 40
38
39 /* Offset to keyslot area [in bytes] */
40 #define LUKS_ALIGN_KEYSLOTS 4096
41
42 /* Any integer values are stored in network byte order on disk and must be
43 converted */
44
45 struct volume_key;
46
47 struct luks_phdr {
48         char            magic[LUKS_MAGIC_L];
49         uint16_t        version;
50         char            cipherName[LUKS_CIPHERNAME_L];
51         char            cipherMode[LUKS_CIPHERMODE_L];
52         char            hashSpec[LUKS_HASHSPEC_L];
53         uint32_t        payloadOffset;
54         uint32_t        keyBytes;
55         char            mkDigest[LUKS_DIGESTSIZE];
56         char            mkDigestSalt[LUKS_SALTSIZE];
57         uint32_t        mkDigestIterations;
58         char            uuid[UUID_STRING_L];
59
60         struct {
61                 uint32_t active;
62
63                 /* parameters used for password processing */
64                 uint32_t passwordIterations;
65                 char     passwordSalt[LUKS_SALTSIZE];
66
67                 /* parameters used for AF store/load */
68                 uint32_t keyMaterialOffset;
69                 uint32_t stripes;
70         } keyblock[LUKS_NUMKEYS];
71
72         /* Align it to 512 sector size */
73         char            _padding[432];
74 };
75
76 int LUKS_verify_volume_key(const struct luks_phdr *hdr,
77                            const struct volume_key *vk);
78
79 int LUKS_generate_phdr(
80         struct luks_phdr *header,
81         const struct volume_key *vk,
82         const char *cipherName,
83         const char *cipherMode,
84         const char *hashSpec,
85         const char *uuid,
86         unsigned int stripes,
87         unsigned int alignPayload,
88         unsigned int alignOffset,
89         uint32_t iteration_time_ms,
90         uint64_t *PBKDF2_per_sec,
91         struct crypt_device *ctx);
92
93 int LUKS_read_phdr(
94         const char *device,
95         struct luks_phdr *hdr,
96         int require_luks_device,
97         struct crypt_device *ctx);
98
99 int LUKS_read_phdr_backup(
100         const char *backup_file,
101         const char *device,
102         struct luks_phdr *hdr,
103         int require_luks_device,
104         struct crypt_device *ctx);
105
106 int LUKS_hdr_uuid_set(
107         const char *device,
108         struct luks_phdr *hdr,
109         const char *uuid,
110         struct crypt_device *ctx);
111
112 int LUKS_hdr_backup(
113         const char *backup_file,
114         const char *device,
115         struct luks_phdr *hdr,
116         struct crypt_device *ctx);
117
118 int LUKS_hdr_restore(
119         const char *backup_file,
120         const char *device,
121         struct luks_phdr *hdr,
122         struct crypt_device *ctx);
123
124 int LUKS_write_phdr(
125         const char *device,
126         struct luks_phdr *hdr,
127         struct crypt_device *ctx);
128
129 int LUKS_set_key(
130         const char *device,
131         unsigned int keyIndex,
132         const char *password,
133         size_t passwordLen,
134         struct luks_phdr *hdr,
135         struct volume_key *vk,
136         uint32_t iteration_time_ms,
137         uint64_t *PBKDF2_per_sec,
138         struct crypt_device *ctx);
139
140 int LUKS_open_key_with_hdr(
141         const char *device,
142         int keyIndex,
143         const char *password,
144         size_t passwordLen,
145         struct luks_phdr *hdr,
146         struct volume_key **vk,
147         struct crypt_device *ctx);
148
149 int LUKS_del_key(
150         const char *device,
151         unsigned int keyIndex,
152         struct luks_phdr *hdr,
153         struct crypt_device *ctx);
154
155 crypt_keyslot_info LUKS_keyslot_info(struct luks_phdr *hdr, int keyslot);
156 int LUKS_keyslot_find_empty(struct luks_phdr *hdr);
157 int LUKS_keyslot_active_count(struct luks_phdr *hdr);
158 int LUKS_keyslot_set(struct luks_phdr *hdr, int keyslot, int enable);
159
160 int LUKS_encrypt_to_storage(
161         char *src, size_t srcLength,
162         struct luks_phdr *hdr,
163         char *key, size_t keyLength,
164         const char *device,
165         unsigned int sector,
166         struct crypt_device *ctx);
167
168 int LUKS_decrypt_from_storage(
169         char *dst, size_t dstLength,
170         struct luks_phdr *hdr,
171         char *key, size_t keyLength,
172         const char *device,
173         unsigned int sector,
174         struct crypt_device *ctx);
175
176 #endif