chiark / gitweb /
analyze: add systemd-analyze tool
[elogind.git] / src / cryptsetup.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <string.h>
23 #include <errno.h>
24 #include <sys/mman.h>
25 #include <mntent.h>
26
27 #include <libcryptsetup.h>
28 #include <libudev.h>
29
30 #include "log.h"
31 #include "util.h"
32 #include "strv.h"
33 #include "ask-password-api.h"
34 #include "def.h"
35
36 static const char *opt_type = NULL; /* LUKS1 or PLAIN */
37 static char *opt_cipher = NULL;
38 static unsigned opt_key_size = 0;
39 static char *opt_hash = NULL;
40 static unsigned opt_tries = 0;
41 static bool opt_readonly = false;
42 static bool opt_verify = false;
43 static usec_t opt_timeout = 0;
44
45 /* Options Debian's crypttab knows we don't:
46
47     offset=
48     skip=
49     precheck=
50     check=
51     checkargs=
52     noearly=
53     loud=
54     keyscript=
55 */
56
57 static int parse_one_option(const char *option) {
58         assert(option);
59
60         /* Handled outside of this tool */
61         if (streq(option, "noauto"))
62                 return 0;
63
64         if (startswith(option, "cipher=")) {
65                 char *t;
66
67                 if (!(t = strdup(option+7)))
68                         return -ENOMEM;
69
70                 free(opt_cipher);
71                 opt_cipher = t;
72
73         } else if (startswith(option, "size=")) {
74
75                 if (safe_atou(option+5, &opt_key_size) < 0) {
76                         log_error("size= parse failure, ignoring.");
77                         return 0;
78                 }
79
80         } else if (startswith(option, "hash=")) {
81                 char *t;
82
83                 if (!(t = strdup(option+5)))
84                         return -ENOMEM;
85
86                 free(opt_hash);
87                 opt_hash = t;
88
89         } else if (startswith(option, "tries=")) {
90
91                 if (safe_atou(option+6, &opt_tries) < 0) {
92                         log_error("tries= parse failure, ignoring.");
93                         return 0;
94                 }
95
96         } else if (streq(option, "readonly"))
97                 opt_readonly = true;
98         else if (streq(option, "verify"))
99                 opt_verify = true;
100         else if (streq(option, "luks"))
101                 opt_type = CRYPT_LUKS1;
102         else if (streq(option, "plain") ||
103                  streq(option, "swap") ||
104                  streq(option, "tmp"))
105                 opt_type = CRYPT_PLAIN;
106         else if (startswith(option, "timeout=")) {
107
108                 if (parse_usec(option+8, &opt_timeout) < 0) {
109                         log_error("timeout= parse failure, ignoring.");
110                         return 0;
111                 }
112
113         } else
114                 log_error("Encountered unknown /etc/crypttab option '%s', ignoring.", option);
115
116         return 0;
117 }
118
119 static int parse_options(const char *options) {
120         char *state;
121         char *w;
122         size_t l;
123
124         assert(options);
125
126         FOREACH_WORD_SEPARATOR(w, l, options, ",", state) {
127                 char *o;
128                 int r;
129
130                 if (!(o = strndup(w, l)))
131                         return -ENOMEM;
132
133                 r = parse_one_option(o);
134                 free(o);
135
136                 if (r < 0)
137                         return r;
138         }
139
140         return 0;
141 }
142
143 static void log_glue(int level, const char *msg, void *usrptr) {
144         log_debug("%s", msg);
145 }
146
147 static char *disk_description(const char *path) {
148         struct udev *udev = NULL;
149         struct udev_device *device = NULL;
150         struct stat st;
151         char *description = NULL;
152         const char *model;
153
154         assert(path);
155
156         if (stat(path, &st) < 0)
157                 return NULL;
158
159         if (!S_ISBLK(st.st_mode))
160                 return NULL;
161
162         if (!(udev = udev_new()))
163                 return NULL;
164
165         if (!(device = udev_device_new_from_devnum(udev, 'b', st.st_rdev)))
166                 goto finish;
167
168         if ((model = udev_device_get_property_value(device, "ID_MODEL_FROM_DATABASE")) ||
169             (model = udev_device_get_property_value(device, "ID_MODEL")) ||
170             (model = udev_device_get_property_value(device, "DM_NAME")))
171                 description = strdup(model);
172
173 finish:
174         if (device)
175                 udev_device_unref(device);
176
177         if (udev)
178                 udev_unref(udev);
179
180         return description;
181 }
182
183 static char *disk_mount_point(const char *label) {
184         char *mp = NULL, *device = NULL;
185         FILE *f = NULL;
186         struct mntent *m;
187
188         /* Yeah, we don't support native systemd unit files here for now */
189
190         if (asprintf(&device, "/dev/mapper/%s", label) < 0)
191                 goto finish;
192
193         if (!(f = setmntent("/etc/fstab", "r")))
194                 goto finish;
195
196         while ((m = getmntent(f)))
197                 if (path_equal(m->mnt_fsname, device)) {
198                         mp = strdup(m->mnt_dir);
199                         break;
200                 }
201
202 finish:
203         if (f)
204                 endmntent(f);
205
206         free(device);
207
208         return mp;
209 }
210
211 static int help(void) {
212
213         printf("%s attach VOLUME SOURCEDEVICE [PASSWORD] [OPTIONS]\n"
214                "%s detach VOLUME\n\n"
215                "Attaches or detaches an encrypted block device.\n",
216                program_invocation_short_name,
217                program_invocation_short_name);
218
219         return 0;
220 }
221
222 int main(int argc, char *argv[]) {
223         int r = EXIT_FAILURE;
224         struct crypt_device *cd = NULL;
225         char **passwords = NULL, *truncated_cipher = NULL;
226         const char *cipher = NULL, *cipher_mode = NULL, *hash = NULL, *name = NULL;
227         char *description = NULL, *name_buffer = NULL, *mount_point = NULL;
228
229         if (argc <= 1) {
230                 help();
231                 return EXIT_SUCCESS;
232         }
233
234         if (argc < 3) {
235                 log_error("This program requires at least two arguments.");
236                 return EXIT_FAILURE;
237         }
238
239         log_set_target(LOG_TARGET_AUTO);
240         log_parse_environment();
241         log_open();
242
243         if (streq(argv[1], "attach")) {
244                 uint32_t flags = 0;
245                 int k;
246                 unsigned try;
247                 const char *key_file = NULL;
248                 usec_t until;
249                 crypt_status_info status;
250
251                 /* Arguments: systemd-cryptsetup attach VOLUME SOURCE-DEVICE [PASSWORD] [OPTIONS] */
252
253                 if (argc < 4) {
254                         log_error("attach requires at least two arguments.");
255                         goto finish;
256                 }
257
258                 if (argc >= 5 &&
259                     argv[4][0] &&
260                     !streq(argv[4], "-") &&
261                     !streq(argv[4], "none")) {
262
263                         if (!path_is_absolute(argv[4]))
264                                 log_error("Password file path %s is not absolute. Ignoring.", argv[4]);
265                         else
266                                 key_file = argv[4];
267                 }
268
269                 if (argc >= 6 && argv[5][0] && !streq(argv[5], "-"))
270                         parse_options(argv[5]);
271
272                 /* A delicious drop of snake oil */
273                 mlockall(MCL_FUTURE);
274
275                 description = disk_description(argv[3]);
276                 mount_point = disk_mount_point(argv[2]);
277
278                 if (description && streq(argv[2], description)) {
279                         /* If the description string is simply the
280                          * volume name, then let's not show this
281                          * twice */
282                         free(description);
283                         description = NULL;
284                 }
285
286                 if (mount_point && description)
287                         asprintf(&name_buffer, "%s (%s) on %s", description, argv[2], mount_point);
288                 else if (mount_point)
289                         asprintf(&name_buffer, "%s on %s", argv[2], mount_point);
290                 else if (description)
291                         asprintf(&name_buffer, "%s (%s)", description, argv[2]);
292
293                 name = name_buffer ? name_buffer : argv[2];
294
295                 if ((k = crypt_init(&cd, argv[3]))) {
296                         log_error("crypt_init() failed: %s", strerror(-k));
297                         goto finish;
298                 }
299
300                 crypt_set_log_callback(cd, log_glue, NULL);
301
302                 status = crypt_status(cd, argv[2]);
303                 if (status == CRYPT_ACTIVE || status == CRYPT_BUSY) {
304                         log_info("Volume %s already active.", argv[2]);
305                         r = EXIT_SUCCESS;
306                         goto finish;
307                 }
308
309                 if (opt_readonly)
310                         flags |= CRYPT_ACTIVATE_READONLY;
311
312                 until = now(CLOCK_MONOTONIC) + (opt_timeout > 0 ? opt_timeout : DEFAULT_TIMEOUT_USEC);
313
314                 opt_tries = opt_tries > 0 ? opt_tries : 3;
315                 opt_key_size = (opt_key_size > 0 ? opt_key_size : 256);
316                 hash = opt_hash ? opt_hash : "ripemd160";
317
318                 if (opt_cipher) {
319                         size_t l;
320
321                         l = strcspn(opt_cipher, "-");
322
323                         if (!(truncated_cipher = strndup(opt_cipher, l))) {
324                                 log_error("Out of memory");
325                                 goto finish;
326                         }
327
328                         cipher = truncated_cipher;
329                         cipher_mode = opt_cipher[l] ? opt_cipher+l+1 : "plain";
330                 } else {
331                         cipher = "aes";
332                         cipher_mode = "cbc-essiv:sha256";
333                 }
334
335                 for (try = 0; try < opt_tries; try++) {
336                         bool pass_volume_key = false;
337
338                         strv_free(passwords);
339                         passwords = NULL;
340
341                         if (!key_file) {
342                                 char *text;
343                                 char **p;
344
345                                 if (asprintf(&text, "Please enter passphrase for disk %s!", name) < 0) {
346                                         log_error("Out of memory");
347                                         goto finish;
348                                 }
349
350                                 k = ask_password_auto(text, "drive-harddisk", until, try == 0 && !opt_verify, &passwords);
351                                 free(text);
352
353                                 if (k < 0) {
354                                         log_error("Failed to query password: %s", strerror(-k));
355                                         goto finish;
356                                 }
357
358                                 if (opt_verify) {
359                                         char **passwords2 = NULL;
360
361                                         assert(strv_length(passwords) == 1);
362
363                                         if (asprintf(&text, "Please enter passphrase for disk %s! (verification)", name) < 0) {
364                                                 log_error("Out of memory");
365                                                 goto finish;
366                                         }
367
368                                         k = ask_password_auto(text, "drive-harddisk", until, false, &passwords2);
369                                         free(text);
370
371                                         if (k < 0) {
372                                                 log_error("Failed to query verification password: %s", strerror(-k));
373                                                 goto finish;
374                                         }
375
376                                         assert(strv_length(passwords2) == 1);
377
378                                         if (!streq(passwords[0], passwords2[0])) {
379                                                 log_warning("Passwords did not match, retrying.");
380                                                 strv_free(passwords2);
381                                                 continue;
382                                         }
383
384                                         strv_free(passwords2);
385                                 }
386
387                                 strv_uniq(passwords);
388
389                                 STRV_FOREACH(p, passwords) {
390                                         char *c;
391
392                                         if (strlen(*p)+1 >= opt_key_size)
393                                                 continue;
394
395                                         /* Pad password if necessary */
396                                         if (!(c = new(char, opt_key_size))) {
397                                                 log_error("Out of memory.");
398                                                 goto finish;
399                                         }
400
401                                         strncpy(c, *p, opt_key_size);
402                                         free(*p);
403                                         *p = c;
404                                 }
405                         }
406
407                         if (!opt_type || streq(opt_type, CRYPT_LUKS1))
408                                 k = crypt_load(cd, CRYPT_LUKS1, NULL);
409
410                         if ((!opt_type && k < 0) || streq_ptr(opt_type, CRYPT_PLAIN)) {
411                                 struct crypt_params_plain params;
412
413                                 zero(params);
414                                 params.hash = hash;
415
416                                 /* In contrast to what the name
417                                  * crypt_setup() might suggest this
418                                  * doesn't actually format anything,
419                                  * it just configures encryption
420                                  * parameters when used for plain
421                                  * mode. */
422                                 k = crypt_format(cd, CRYPT_PLAIN,
423                                                  cipher,
424                                                  cipher_mode,
425                                                  NULL,
426                                                  NULL,
427                                                  opt_key_size / 8,
428                                                  &params);
429
430                                 pass_volume_key = streq(hash, "plain");
431                         }
432
433                         if (k < 0) {
434                                 log_error("Loading of cryptographic parameters failed: %s", strerror(-k));
435                                 goto finish;
436                         }
437
438                         log_info("Set cipher %s, mode %s, key size %i bits for device %s.",
439                                  crypt_get_cipher(cd),
440                                  crypt_get_cipher_mode(cd),
441                                  crypt_get_volume_key_size(cd)*8,
442                                  argv[3]);
443
444                         if (key_file)
445                                 k = crypt_activate_by_keyfile(cd, argv[2], CRYPT_ANY_SLOT, key_file, opt_key_size, flags);
446                         else {
447                                 char **p;
448
449                                 STRV_FOREACH(p, passwords) {
450
451                                         if (pass_volume_key)
452                                                 k = crypt_activate_by_volume_key(cd, argv[2], *p, opt_key_size, flags);
453                                         else
454                                                 k = crypt_activate_by_passphrase(cd, argv[2], CRYPT_ANY_SLOT, *p, strlen(*p), flags);
455
456                                         if (k >= 0)
457                                                 break;
458                                 }
459                         }
460
461                         if (k >= 0)
462                                 break;
463
464                         if (k != -EPERM) {
465                                 log_error("Failed to activate: %s", strerror(-k));
466                                 goto finish;
467                         }
468
469                         log_warning("Invalid passphrase.");
470                 }
471
472                 if (try >= opt_tries) {
473                         log_error("Too many attempts.");
474                         r = EXIT_FAILURE;
475                         goto finish;
476                 }
477
478         } else if (streq(argv[1], "detach")) {
479                 int k;
480
481                 if ((k = crypt_init_by_name(&cd, argv[2]))) {
482                         log_error("crypt_init() failed: %s", strerror(-k));
483                         goto finish;
484                 }
485
486                 crypt_set_log_callback(cd, log_glue, NULL);
487
488                 if ((k = crypt_deactivate(cd, argv[2])) < 0) {
489                         log_error("Failed to deactivate: %s", strerror(-k));
490                         goto finish;
491                 }
492
493         } else {
494                 log_error("Unknown verb %s.", argv[1]);
495                 goto finish;
496         }
497
498         r = EXIT_SUCCESS;
499
500 finish:
501
502         if (cd)
503                 crypt_free(cd);
504
505         free(opt_cipher);
506         free(opt_hash);
507
508         free(truncated_cipher);
509
510         strv_free(passwords);
511
512         free(description);
513         free(mount_point);
514         free(name_buffer);
515
516         return r;
517 }