* Add --shared option for creating non-overlapping crypt segments.
[platform/upstream/cryptsetup.git] / lib / loopaes / loopaes.c
1 /*
2  * loop-AES compatible volume handling
3  *
4  * Copyright (C) 2011, Red Hat, Inc. All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * version 2 as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <errno.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include "crypto_backend.h"
26 #include "loopaes.h"
27
28 static const char *get_hash(unsigned int key_size)
29 {
30         const char *hash;
31
32         switch (key_size) {
33                 case 16: hash = "sha256"; break;
34                 case 24: hash = "sha384"; break;
35                 case 32: hash = "sha512"; break;
36                 default: hash = NULL;
37         }
38
39         return hash;
40 }
41
42 static unsigned char get_tweak(unsigned int keys_count)
43 {
44         switch (keys_count) {
45                 case 64: return 0x55;
46                 case 65: return 0xF4;
47                 default: break;
48         }
49         return 0x00;
50 }
51
52 static int hash_key(const char *src, size_t src_len,
53                     char *dst, size_t dst_len,
54                     const char *hash_name)
55 {
56         struct crypt_hash *hd = NULL;
57         int r;
58
59         if (crypt_hash_init(&hd, hash_name))
60                 return -EINVAL;
61
62         r = crypt_hash_write(hd, src, src_len);
63         if (!r)
64                 r = crypt_hash_final(hd, dst, dst_len);
65
66         crypt_hash_destroy(hd);
67         return r;
68 }
69
70 static int hash_keys(struct crypt_device *cd,
71                      struct volume_key **vk,
72                      const char *hash_override,
73                      const char **input_keys,
74                      unsigned int keys_count,
75                      unsigned int key_len_output)
76 {
77         const char *hash_name;
78         char tweak, *key_ptr;
79         unsigned i, key_len_input;
80         int r;
81
82         hash_name = hash_override ?: get_hash(key_len_output);
83         tweak = get_tweak(keys_count);
84         key_len_input = strlen(input_keys[0]);
85
86         if (!keys_count || !key_len_output || !hash_name || !key_len_input) {
87                 log_err(cd, _("Key processing error (using hash %s).\n"),
88                         hash_name ?: "[none]");
89                 return -EINVAL;
90         }
91
92         *vk = crypt_alloc_volume_key(key_len_output * keys_count, NULL);
93         if (!*vk)
94                 return -ENOMEM;
95
96         for (i = 0; i < keys_count; i++) {
97                 key_ptr = &(*vk)->key[i * key_len_output];
98                 r = hash_key(input_keys[i], key_len_input, key_ptr,
99                              key_len_output, hash_name);
100                 if (r < 0)
101                         break;
102
103                 key_ptr[0] ^= tweak;
104         }
105
106         if (r < 0 && *vk) {
107                 crypt_free_volume_key(*vk);
108                 *vk = NULL;
109         }
110         return r;
111 }
112
113 static int keyfile_is_gpg(char *buffer, size_t buffer_len)
114 {
115         int r = 0;
116         int index = buffer_len < 100 ? buffer_len - 1 : 100;
117         char eos = buffer[index];
118
119         buffer[index] = '\0';
120         if (strstr(buffer, "BEGIN PGP MESSAGE"))
121                 r = 1;
122         buffer[index] = eos;
123         return r;
124 }
125
126 int LOOPAES_parse_keyfile(struct crypt_device *cd,
127                           struct volume_key **vk,
128                           const char *hash,
129                           unsigned int *keys_count,
130                           char *buffer,
131                           size_t buffer_len)
132 {
133         const char *keys[LOOPAES_KEYS_MAX];
134         unsigned i, key_index, key_len, offset;
135
136         log_dbg("Parsing loop-AES keyfile of size %d.", buffer_len);
137
138         if (!buffer_len)
139                 return -EINVAL;
140
141         if (keyfile_is_gpg(buffer, buffer_len)) {
142                 log_err(cd, _("Detected not yet supported GPG encrypted keyfile.\n"));
143                 log_std(cd, _("Please use gpg --decrypt <KEYFILE> | cryptsetup --keyfile=- ...\n"));
144                 return -EINVAL;
145         }
146
147         /* Remove EOL in buffer */
148         for (i = 0; i < buffer_len; i++)
149                 if (buffer[i] == '\n' || buffer[i] == '\r')
150                         buffer[i] = '\0';
151
152         offset = 0;
153         key_index = 0;
154         while (offset < buffer_len && key_index < LOOPAES_KEYS_MAX) {
155                 keys[key_index++] = &buffer[offset];
156                 while (offset < buffer_len && buffer[offset])
157                         offset++;
158                 while (offset < buffer_len && !buffer[offset])
159                         offset++;
160         }
161
162         /* All keys must be the same length */
163         key_len = key_index ? strlen(keys[0]) : 0;
164         for (i = 0; i < key_index; i++)
165                 if (key_len != strlen(keys[i])) {
166                         log_dbg("Unexpected length %d of key #%d (should be %d).",
167                                 strlen(keys[i]), i, key_len);
168                         key_len = 0;
169                         break;
170                 }
171
172         log_dbg("Keyfile: %d keys of length %d.", key_index, key_len);
173         if (offset != buffer_len || key_len == 0 ||
174            (key_index != 1 && key_index !=64 && key_index != 65)) {
175                 log_err(cd, _("Incompatible loop-AES keyfile detected.\n"));
176                 return -EINVAL;
177         }
178
179         *keys_count = key_index;
180         return hash_keys(cd, vk, hash, keys, key_index, crypt_get_volume_key_size(cd));
181 }
182
183 int LOOPAES_activate(struct crypt_device *cd,
184                      const char *name,
185                      const char *base_cipher,
186                      unsigned int keys_count,
187                      struct volume_key *vk,
188                      uint64_t offset,
189                      uint64_t skip,
190                      uint32_t flags)
191 {
192         uint64_t size;
193         uint32_t req_flags;
194         char *cipher;
195         const char *device;
196         int read_only, r;
197
198         size = 0;
199         /* Initial IV (skip) is always the same as offset */
200         device = crypt_get_device_name(cd);
201         read_only = flags & CRYPT_ACTIVATE_READONLY;
202
203         r = device_check_and_adjust(cd, device, DEV_EXCL, &size, &offset, &read_only);
204         if (r)
205                 return r;
206
207         if (keys_count == 1) {
208                 req_flags = DM_PLAIN64_SUPPORTED;
209                 r = asprintf(&cipher, "%s-%s", base_cipher, "cbc-plain64");
210         } else {
211                 req_flags = DM_LMK_SUPPORTED;
212                 r = asprintf(&cipher, "%s:%d-%s", base_cipher, 64, "cbc-lmk");
213         }
214         if (r < 0)
215                 return -ENOMEM;
216
217         log_dbg("Trying to activate loop-AES device %s using cipher %s.", name, cipher);
218         r = dm_create_device(name, device,
219                              cipher, CRYPT_LOOPAES,
220                              crypt_get_uuid(cd),
221                              size, skip, offset, vk->keylength, vk->key,
222                              read_only, 0);
223
224         if (!r && !(dm_flags() & req_flags)) {
225                 log_err(cd, _("Kernel doesn't support loop-AES compatible mapping.\n"));
226                 r = -ENOTSUP;
227         }
228
229         free(cipher);
230         return r;
231 }