Print error if hash is not supported.
[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         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 **input_keys,
73                      unsigned int keys_count,
74                      unsigned int key_len_output)
75 {
76         const char *hash_name;
77         char tweak, *key_ptr;
78         int r, i, key_len_input;
79
80         hash_name = get_hash(key_len_output);
81         tweak = get_tweak(keys_count);
82         key_len_input = strlen(input_keys[0]);
83
84         if (!keys_count || !key_len_output || !hash_name || !key_len_input) {
85                 log_err(cd, _("Key processing error (using hash %s).\n"),
86                         hash_name ?: "[none]");
87                 return -EINVAL;
88         }
89
90         *vk = crypt_alloc_volume_key(key_len_output * keys_count, NULL);
91         if (!*vk)
92                 return -ENOMEM;
93
94         for (i = 0; i < keys_count; i++) {
95                 key_ptr = &(*vk)->key[i * key_len_output];
96                 r = hash_key(input_keys[i], key_len_input, key_ptr,
97                              key_len_output, hash_name);
98                 if (r < 0)
99                         break;
100
101                 key_ptr[0] ^= tweak;
102         }
103
104         if (r < 0 && *vk) {
105                 crypt_free_volume_key(*vk);
106                 *vk = NULL;
107         }
108         return r;
109 }
110
111 static int keyfile_is_gpg(char *buffer, size_t buffer_len)
112 {
113         int r = 0;
114         int index = buffer_len < 100 ? buffer_len - 1 : 100;
115         char eos = buffer[index];
116
117         buffer[index] = '\0';
118         if (strstr(buffer, "BEGIN PGP MESSAGE"))
119                 r = 1;
120         buffer[index] = eos;
121         return r;
122 }
123
124 int LOOPAES_parse_keyfile(struct crypt_device *cd,
125                           struct volume_key **vk,
126                           unsigned int *keys_count,
127                           char *buffer,
128                           size_t buffer_len)
129 {
130         const char *keys[LOOPAES_KEYS_MAX];
131         int i, key_index, key_len, offset;
132
133         log_dbg("Parsing loop-AES keyfile of size %d.", buffer_len);
134
135         if (!buffer_len)
136                 return -EINVAL;
137
138         if (keyfile_is_gpg(buffer, buffer_len)) {
139                 log_err(cd, _("Detected not yet supported GPG encrypted keyfile.\n"));
140                 log_std(cd, _("Please use gpg --decrypt <KEYFILE> | cryptsetup --keyfile=- ...\n"));
141                 return -EINVAL;
142         }
143
144         /* Remove EOL in buffer */
145         for (i = 0; i < buffer_len; i++)
146                 if (buffer[i] == '\n' || buffer[i] == '\r')
147                         buffer[i] = '\0';
148
149         offset = 0;
150         key_index = 0;
151         while (offset < buffer_len && key_index < LOOPAES_KEYS_MAX) {
152                 keys[key_index++] = &buffer[offset];
153                 while (offset < buffer_len && buffer[offset])
154                         offset++;
155                 while (offset < buffer_len && !buffer[offset])
156                         offset++;
157         }
158
159         /* All keys must be the same length */
160         key_len = key_index ? strlen(keys[0]) : 0;
161         for (i = 0; i < key_index; i++)
162                 if (key_len != strlen(keys[i])) {
163                         log_dbg("Unexpected length %d of key #%d (should be %d).",
164                                 strlen(keys[i]), i, key_len);
165                         key_len = 0;
166                         break;
167                 }
168
169         log_dbg("Keyfile: %d keys of length %d.", key_index, key_len);
170         if (offset != buffer_len || key_len == 0 ||
171            (key_index != 1 && key_index !=64 && key_index != 65)) {
172                 log_err(cd, _("Incompatible loop-AES keyfile detected.\n"));
173                 return -EINVAL;
174         }
175
176         *keys_count = key_index;
177         return hash_keys(cd, vk, keys, key_index, crypt_get_volume_key_size(cd));
178 }
179
180 int LOOPAES_activate(struct crypt_device *cd,
181                      const char *name,
182                      const char *base_cipher,
183                      unsigned int keys_count,
184                      struct volume_key *vk,
185                      uint64_t offset,
186                      uint64_t skip,
187                      uint32_t flags)
188 {
189         uint64_t size;
190         uint32_t req_flags;
191         char *cipher;
192         const char *device;
193         int read_only, r;
194
195         size = 0;
196         /* Initial IV (skip) is always the same as offset */
197         device = crypt_get_device_name(cd);
198         read_only = flags & CRYPT_ACTIVATE_READONLY;
199
200         r = device_check_and_adjust(cd, device, 1, &size, &offset, &read_only);
201         if (r)
202                 return r;
203
204         if (keys_count == 1) {
205                 req_flags = DM_PLAIN64_SUPPORTED;
206                 r = asprintf(&cipher, "%s-%s", base_cipher, "cbc-plain64");
207         } else {
208                 req_flags = DM_LMK_SUPPORTED;
209                 r = asprintf(&cipher, "%s:%d-%s", base_cipher, 64, "cbc-lmk");
210         }
211         if (r < 0)
212                 return -ENOMEM;
213
214         log_dbg("Trying to activate loop-AES device %s using cipher %s.", name, cipher);
215         r = dm_create_device(name, device,
216                              cipher, CRYPT_LOOPAES,
217                              crypt_get_uuid(cd),
218                              size, skip, offset, vk->keylength, vk->key,
219                              read_only, 0);
220
221         if (!r && !(dm_flags() & req_flags)) {
222                 log_err(cd, _("Kernel doesn't support loop-AES compatible mapping.\n"));
223                 r = -ENOTSUP;
224         }
225
226         free(cipher);
227         return r;
228 }