c37724a419205545f355e924105a6a3b251421a9
[platform/upstream/cryptsetup.git] / lib / luks1 / keyencryption.c
1 /*
2  * LUKS - Linux Unified Key Setup
3  *
4  * Copyright (C) 2004-2006, Clemens Fruhwirth <clemens@endorphin.org>
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 <string.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <ctype.h>
24 #include <inttypes.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <sys/ioctl.h>
28 #include <sys/mman.h>
29 #include <sys/utsname.h>
30 #include <fcntl.h>
31 #include <unistd.h>
32 #include <errno.h>
33 #include <signal.h>
34
35 #include "luks.h"
36 #include "internal.h"
37
38 #define div_round_up(a,b) ({          \
39         typeof(a) __a = (a);          \
40         typeof(b) __b = (b);          \
41         (__a - 1) / __b + 1;          \
42 })
43
44 static inline int round_up_modulo(int x, int m) {
45         return div_round_up(x, m) * m;
46 }
47
48 static const char *cleaner_name=NULL;
49 static uint64_t cleaner_size = 0;
50 static int devfd=-1;
51
52 static int setup_mapping(const char *cipher, const char *name,
53                          const char *device,
54                          const char *key, size_t keyLength,
55                          unsigned int sector, size_t srcLength,
56                          int mode, struct crypt_device *ctx)
57 {
58         int device_sector_size = sector_size_for_device(device);
59         uint64_t size;
60
61         /*
62          * we need to round this to nearest multiple of the underlying
63          * device's sector size, otherwise the mapping will be refused.
64          */
65         if(device_sector_size < 0) {
66                 log_err(ctx, _("Unable to obtain sector size for %s"), device);
67                 return -EINVAL;
68         }
69         size = round_up_modulo(srcLength,device_sector_size)/SECTOR_SIZE;
70         cleaner_size = size;
71
72         return dm_create_device(name, device, cipher, "TEMP", NULL, size, 0, sector,
73                                 keyLength, key, (mode == O_RDONLY), 0);
74 }
75
76 static void sigint_handler(int sig __attribute__((unused)))
77 {
78         if(devfd >= 0)
79                 close(devfd);
80         devfd = -1;
81         if(cleaner_name)
82                 dm_remove_device(cleaner_name, 1, cleaner_size);
83
84         signal(SIGINT, SIG_DFL);
85         kill(getpid(), SIGINT);
86 }
87
88 static const char *_error_hint(char *cipherMode, size_t keyLength)
89 {
90         const char *hint= "";
91 #ifdef __linux__
92         char c, tmp[4] = {0};
93         struct utsname uts;
94         int i = 0, kernel_minor;
95
96         /* Nothing to suggest here */
97         if (uname(&uts) || strncmp(uts.release, "2.6.", 4))
98                 return hint;
99
100         /* Get kernel minor without suffixes */
101         while (i < 3 && (c = uts.release[i + 4]))
102                 tmp[i++] = isdigit(c) ? c : '\0';
103         kernel_minor = atoi(tmp);
104
105         if (!strncmp(cipherMode, "xts", 3) && (keyLength != 256 && keyLength != 512))
106                 hint = _("Key size in XTS mode must be 256 or 512 bits.\n");
107         else if (!strncmp(cipherMode, "xts", 3) && kernel_minor < 24)
108                 hint = _("Block mode XTS is available since kernel 2.6.24.\n");
109         if (!strncmp(cipherMode, "lrw", 3) && (keyLength != 256 && keyLength != 512))
110                 hint = _("Key size in LRW mode must be 256 or 512 bits.\n");
111         else if (!strncmp(cipherMode, "lrw", 3) && kernel_minor < 20)
112                 hint = _("Block mode LRW is available since kernel 2.6.20.\n");
113 #endif
114         return hint;
115 }
116
117 /* This function is not reentrant safe, as it installs a signal
118    handler and global vars for cleaning */
119 static int LUKS_endec_template(char *src, size_t srcLength,
120                                struct luks_phdr *hdr,
121                                char *key, size_t keyLength,
122                                const char *device,
123                                unsigned int sector,
124                                ssize_t (*func)(int, void *, size_t),
125                                int mode,
126                                struct crypt_device *ctx)
127 {
128         char *name = NULL;
129         char *fullpath = NULL;
130         char *dmCipherSpec = NULL;
131         const char *dmDir = dm_get_dir();
132         int r = -1;
133
134         if(dmDir == NULL) {
135                 log_err(ctx, _("Failed to obtain device mapper directory."));
136                 return -1;
137         }
138         if(asprintf(&name,"temporary-cryptsetup-%d",getpid())               == -1 ||
139            asprintf(&fullpath,"%s/%s",dmDir,name)                           == -1 ||
140            asprintf(&dmCipherSpec,"%s-%s",hdr->cipherName, hdr->cipherMode) == -1) {
141                 r = -ENOMEM;
142                 goto out1;
143         }
144
145         signal(SIGINT, sigint_handler);
146         cleaner_name = name;
147
148         r = setup_mapping(dmCipherSpec, name, device,
149                           key, keyLength, sector, srcLength, mode, ctx);
150         if(r < 0) {
151                 log_err(ctx, _("Failed to setup dm-crypt key mapping for device %s.\n"
152                         "Check that kernel supports %s cipher (check syslog for more info).\n%s"),
153                         device, dmCipherSpec,
154                         _error_hint(hdr->cipherMode, keyLength * 8));
155                 r = -EIO;
156                 goto out1;
157         }
158
159         devfd = open(fullpath, mode | O_DIRECT | O_SYNC);  /* devfd is a global var */
160         if(devfd == -1) {
161                 log_err(ctx, _("Failed to open temporary keystore device.\n"));
162                 r = -EIO;
163                 goto out2;
164         }
165
166         r = func(devfd,src,srcLength);
167         if(r < 0) {
168                 log_err(ctx, _("Failed to access temporary keystore device.\n"));
169                 r = -EIO;
170                 goto out3;
171         }
172
173         r = 0;
174  out3:
175         close(devfd);
176         devfd = -1;
177  out2:
178         dm_remove_device(cleaner_name, 1, cleaner_size);
179  out1:
180         signal(SIGINT, SIG_DFL);
181         cleaner_name = NULL;
182         cleaner_size = 0;
183         free(dmCipherSpec);
184         free(fullpath);
185         free(name);
186         return r;
187 }
188
189 int LUKS_encrypt_to_storage(char *src, size_t srcLength,
190                             struct luks_phdr *hdr,
191                             char *key, size_t keyLength,
192                             const char *device,
193                             unsigned int sector,
194                             struct crypt_device *ctx)
195 {
196         return LUKS_endec_template(src,srcLength,hdr,key,keyLength, device,
197                                    sector, write_blockwise, O_RDWR, ctx);
198 }
199
200 int LUKS_decrypt_from_storage(char *dst, size_t dstLength,
201                               struct luks_phdr *hdr,
202                               char *key, size_t keyLength,
203                               const char *device,
204                               unsigned int sector,
205                               struct crypt_device *ctx)
206 {
207         return LUKS_endec_template(dst,dstLength,hdr,key,keyLength, device,
208                                    sector, read_blockwise, O_RDONLY, ctx);
209 }