Generalise volume key struct.
[platform/upstream/cryptsetup.git] / luks / 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_backup(
107         const char *backup_file,
108         const char *device,
109         struct luks_phdr *hdr,
110         struct crypt_device *ctx);
111
112 int LUKS_hdr_restore(
113         const char *backup_file,
114         const char *device,
115         struct luks_phdr *hdr,
116         struct crypt_device *ctx);
117
118 int LUKS_write_phdr(
119         const char *device,
120         struct luks_phdr *hdr,
121         struct crypt_device *ctx);
122
123 int LUKS_set_key(
124         const char *device,
125         unsigned int keyIndex,
126         const char *password,
127         size_t passwordLen,
128         struct luks_phdr *hdr,
129         struct volume_key *vk,
130         uint32_t iteration_time_ms,
131         uint64_t *PBKDF2_per_sec,
132         struct crypt_device *ctx);
133
134 int LUKS_open_key_with_hdr(
135         const char *device,
136         int keyIndex,
137         const char *password,
138         size_t passwordLen,
139         struct luks_phdr *hdr,
140         struct volume_key **vk,
141         struct crypt_device *ctx);
142
143 int LUKS_del_key(
144         const char *device,
145         unsigned int keyIndex,
146         struct luks_phdr *hdr,
147         struct crypt_device *ctx);
148
149 crypt_keyslot_info LUKS_keyslot_info(struct luks_phdr *hdr, int keyslot);
150 int LUKS_keyslot_find_empty(struct luks_phdr *hdr);
151 int LUKS_keyslot_active_count(struct luks_phdr *hdr);
152 int LUKS_keyslot_set(struct luks_phdr *hdr, int keyslot, int enable);
153
154 int LUKS_encrypt_to_storage(
155         char *src, size_t srcLength,
156         struct luks_phdr *hdr,
157         char *key, size_t keyLength,
158         const char *device,
159         unsigned int sector,
160         struct crypt_device *ctx);
161
162 int LUKS_decrypt_from_storage(
163         char *dst, size_t dstLength,
164         struct luks_phdr *hdr,
165         char *key, size_t keyLength,
166         const char *device,
167         unsigned int sector,
168         struct crypt_device *ctx);
169
170 #endif