]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/home/homework-fscrypt.c
process-util: add new FORK_DEATHSIG_SIGKILL flag, rename FORK_DEATHSIG → FORK_DEATHSI...
[thirdparty/systemd.git] / src / home / homework-fscrypt.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
70a5db58
LP
2
3#include <linux/fs.h>
4#include <openssl/evp.h>
5#include <openssl/sha.h>
6#include <sys/ioctl.h>
7#include <sys/xattr.h>
8
9#include "errno-util.h"
10#include "fd-util.h"
11#include "hexdecoct.h"
12#include "homework-fscrypt.h"
65400de0 13#include "homework-mount.h"
70a5db58
LP
14#include "homework-quota.h"
15#include "memory-util.h"
16#include "missing_keyctl.h"
17#include "missing_syscall.h"
18#include "mkdir.h"
65400de0 19#include "mount-util.h"
70a5db58
LP
20#include "nulstr-util.h"
21#include "openssl-util.h"
22#include "parse-util.h"
23#include "process-util.h"
24#include "random-util.h"
25#include "rm-rf.h"
26#include "stdio-util.h"
27#include "strv.h"
28#include "tmpfile-util.h"
29#include "user-util.h"
30#include "xattr-util.h"
31
32static int fscrypt_upload_volume_key(
33 const uint8_t key_descriptor[static FS_KEY_DESCRIPTOR_SIZE],
34 const void *volume_key,
35 size_t volume_key_size,
36 key_serial_t where) {
37
38 _cleanup_free_ char *hex = NULL;
39 const char *description;
40 struct fscrypt_key key;
41 key_serial_t serial;
42
43 assert(key_descriptor);
44 assert(volume_key);
45 assert(volume_key_size > 0);
46
47 if (volume_key_size > sizeof(key.raw))
48 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Volume key too long.");
49
50 hex = hexmem(key_descriptor, FS_KEY_DESCRIPTOR_SIZE);
51 if (!hex)
52 return log_oom();
53
54 description = strjoina("fscrypt:", hex);
55
56 key = (struct fscrypt_key) {
57 .size = volume_key_size,
58 };
59 memcpy(key.raw, volume_key, volume_key_size);
60
692597c8
LP
61 CLEANUP_ERASE(key);
62
70a5db58
LP
63 /* Upload to the kernel */
64 serial = add_key("logon", description, &key, sizeof(key), where);
70a5db58
LP
65 if (serial < 0)
66 return log_error_errno(errno, "Failed to install master key in keyring: %m");
67
68 log_info("Uploaded encryption key to kernel.");
69
70 return 0;
71}
72
73static void calculate_key_descriptor(
74 const void *key,
75 size_t key_size,
76 uint8_t ret_key_descriptor[static FS_KEY_DESCRIPTOR_SIZE]) {
77
78 uint8_t hashed[512 / 8] = {}, hashed2[512 / 8] = {};
79
80 /* Derive the key descriptor from the volume key via double SHA512, in order to be compatible with e4crypt */
81
82 assert_se(SHA512(key, key_size, hashed) == hashed);
83 assert_se(SHA512(hashed, sizeof(hashed), hashed2) == hashed2);
84
85 assert_cc(sizeof(hashed2) >= FS_KEY_DESCRIPTOR_SIZE);
86
87 memcpy(ret_key_descriptor, hashed2, FS_KEY_DESCRIPTOR_SIZE);
88}
89
90static int fscrypt_slot_try_one(
91 const char *password,
92 const void *salt, size_t salt_size,
93 const void *encrypted, size_t encrypted_size,
94 const uint8_t match_key_descriptor[static FS_KEY_DESCRIPTOR_SIZE],
95 void **ret_decrypted, size_t *ret_decrypted_size) {
96
97
98 _cleanup_(EVP_CIPHER_CTX_freep) EVP_CIPHER_CTX *context = NULL;
99 _cleanup_(erase_and_freep) void *decrypted = NULL;
100 uint8_t key_descriptor[FS_KEY_DESCRIPTOR_SIZE];
101 int decrypted_size_out1, decrypted_size_out2;
102 uint8_t derived[512 / 8] = {};
103 size_t decrypted_size;
104 const EVP_CIPHER *cc;
105 int r;
106
107 assert(password);
108 assert(salt);
109 assert(salt_size > 0);
110 assert(encrypted);
111 assert(encrypted_size > 0);
112 assert(match_key_descriptor);
113
114 /* Our construction is like this:
115 *
116 * 1. In each key slot we store a salt value plus the encrypted volume key
117 *
118 * 2. Unlocking is via calculating PBKDF2-HMAC-SHA512 of the supplied password (in combination with
119 * the salt), then using the first 256 bit of the hash as key for decrypting the encrypted
120 * volume key in AES256 counter mode.
121 *
122 * 3. Writing a password is similar: calculate PBKDF2-HMAC-SHA512 of the supplied password (in
123 * combination with the salt), then encrypt the volume key in AES256 counter mode with the
124 * resulting hash.
125 */
126
692597c8
LP
127 CLEANUP_ERASE(derived);
128
70a5db58
LP
129 if (PKCS5_PBKDF2_HMAC(
130 password, strlen(password),
131 salt, salt_size,
132 0xFFFF, EVP_sha512(),
692597c8
LP
133 sizeof(derived), derived) != 1)
134 return log_error_errno(SYNTHETIC_ERRNO(ENOTRECOVERABLE), "PBKDF2 failed");
70a5db58
LP
135
136 context = EVP_CIPHER_CTX_new();
692597c8
LP
137 if (!context)
138 return log_oom();
70a5db58
LP
139
140 /* We use AES256 in counter mode */
141 assert_se(cc = EVP_aes_256_ctr());
142
143 /* We only use the first half of the derived key */
144 assert(sizeof(derived) >= (size_t) EVP_CIPHER_key_length(cc));
145
692597c8
LP
146 if (EVP_DecryptInit_ex(context, cc, NULL, derived, NULL) != 1)
147 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to initialize decryption context.");
70a5db58
LP
148
149 decrypted_size = encrypted_size + EVP_CIPHER_key_length(cc) * 2;
150 decrypted = malloc(decrypted_size);
151 if (!decrypted)
152 return log_oom();
153
154 if (EVP_DecryptUpdate(context, (uint8_t*) decrypted, &decrypted_size_out1, encrypted, encrypted_size) != 1)
155 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to decrypt volume key.");
156
157 assert((size_t) decrypted_size_out1 <= decrypted_size);
158
159 if (EVP_DecryptFinal_ex(context, (uint8_t*) decrypted_size + decrypted_size_out1, &decrypted_size_out2) != 1)
160 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to finish decryption of volume key.");
161
162 assert((size_t) decrypted_size_out1 + (size_t) decrypted_size_out2 < decrypted_size);
163 decrypted_size = (size_t) decrypted_size_out1 + (size_t) decrypted_size_out2;
164
165 calculate_key_descriptor(decrypted, decrypted_size, key_descriptor);
166
167 if (memcmp(key_descriptor, match_key_descriptor, FS_KEY_DESCRIPTOR_SIZE) != 0)
168 return -ENOANO; /* don't log here */
169
170 r = fscrypt_upload_volume_key(key_descriptor, decrypted, decrypted_size, KEY_SPEC_THREAD_KEYRING);
171 if (r < 0)
172 return r;
173
174 if (ret_decrypted)
175 *ret_decrypted = TAKE_PTR(decrypted);
176 if (ret_decrypted_size)
177 *ret_decrypted_size = decrypted_size;
178
179 return 0;
70a5db58
LP
180}
181
182static int fscrypt_slot_try_many(
183 char **passwords,
184 const void *salt, size_t salt_size,
185 const void *encrypted, size_t encrypted_size,
186 const uint8_t match_key_descriptor[static FS_KEY_DESCRIPTOR_SIZE],
187 void **ret_decrypted, size_t *ret_decrypted_size) {
188
70a5db58
LP
189 int r;
190
191 STRV_FOREACH(i, passwords) {
192 r = fscrypt_slot_try_one(*i, salt, salt_size, encrypted, encrypted_size, match_key_descriptor, ret_decrypted, ret_decrypted_size);
193 if (r != -ENOANO)
194 return r;
195 }
196
197 return -ENOANO;
198}
199
200static int fscrypt_setup(
7b78db28 201 const PasswordCache *cache,
70a5db58
LP
202 char **password,
203 HomeSetup *setup,
204 void **ret_volume_key,
205 size_t *ret_volume_key_size) {
206
207 _cleanup_free_ char *xattr_buf = NULL;
70a5db58
LP
208 int r;
209
210 assert(setup);
211 assert(setup->root_fd >= 0);
212
213 r = flistxattr_malloc(setup->root_fd, &xattr_buf);
214 if (r < 0)
215 return log_error_errno(errno, "Failed to retrieve xattr list: %m");
216
217 NULSTR_FOREACH(xa, xattr_buf) {
218 _cleanup_free_ void *salt = NULL, *encrypted = NULL;
219 _cleanup_free_ char *value = NULL;
220 size_t salt_size, encrypted_size;
221 const char *nr, *e;
7b78db28 222 char **list;
70a5db58
LP
223 int n;
224
da890466 225 /* Check if this xattr has the format 'trusted.fscrypt_slot<nr>' where '<nr>' is a 32-bit unsigned integer */
70a5db58
LP
226 nr = startswith(xa, "trusted.fscrypt_slot");
227 if (!nr)
228 continue;
229 if (safe_atou32(nr, NULL) < 0)
230 continue;
231
232 n = fgetxattr_malloc(setup->root_fd, xa, &value);
233 if (n == -ENODATA) /* deleted by now? */
234 continue;
235 if (n < 0)
236 return log_error_errno(n, "Failed to read %s xattr: %m", xa);
237
238 e = memchr(value, ':', n);
239 if (!e)
240 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "xattr %s lacks ':' separator: %m", xa);
241
242 r = unbase64mem(value, e - value, &salt, &salt_size);
243 if (r < 0)
244 return log_error_errno(r, "Failed to decode salt of %s: %m", xa);
245 r = unbase64mem(e+1, n - (e - value) - 1, &encrypted, &encrypted_size);
246 if (r < 0)
247 return log_error_errno(r, "Failed to decode encrypted key of %s: %m", xa);
248
7b78db28
LP
249 r = -ENOANO;
250 FOREACH_POINTER(list, cache->pkcs11_passwords, cache->fido2_passwords, password) {
70a5db58 251 r = fscrypt_slot_try_many(
7b78db28 252 list,
70a5db58
LP
253 salt, salt_size,
254 encrypted, encrypted_size,
255 setup->fscrypt_key_descriptor,
256 ret_volume_key, ret_volume_key_size);
7b78db28
LP
257 if (r != -ENOANO)
258 break;
259 }
70a5db58
LP
260 if (r < 0) {
261 if (r != -ENOANO)
262 return r;
263 } else
264 return 0;
265 }
266
267 return log_error_errno(SYNTHETIC_ERRNO(ENOKEY), "Failed to set up home directory with provided passwords.");
268}
269
aa0a6214 270int home_setup_fscrypt(
70a5db58 271 UserRecord *h,
c00b2ddc
LP
272 HomeSetup *setup,
273 const PasswordCache *cache) {
70a5db58
LP
274
275 _cleanup_(erase_and_freep) void *volume_key = NULL;
276 struct fscrypt_policy policy = {};
277 size_t volume_key_size = 0;
278 const char *ip;
279 int r;
280
281 assert(h);
70a5db58 282 assert(user_record_storage(h) == USER_FSCRYPT);
65400de0
LP
283 assert(setup);
284 assert(setup->root_fd < 0);
70a5db58
LP
285
286 assert_se(ip = user_record_image_path(h));
287
288 setup->root_fd = open(ip, O_RDONLY|O_CLOEXEC|O_DIRECTORY);
289 if (setup->root_fd < 0)
290 return log_error_errno(errno, "Failed to open home directory: %m");
291
292 if (ioctl(setup->root_fd, FS_IOC_GET_ENCRYPTION_POLICY, &policy) < 0) {
293 if (errno == ENODATA)
294 return log_error_errno(errno, "Home directory %s is not encrypted.", ip);
295 if (ERRNO_IS_NOT_SUPPORTED(errno)) {
296 log_error_errno(errno, "File system does not support fscrypt: %m");
297 return -ENOLINK; /* make recognizable */
298 }
299 return log_error_errno(errno, "Failed to acquire encryption policy of %s: %m", ip);
300 }
301
302 memcpy(setup->fscrypt_key_descriptor, policy.master_key_descriptor, FS_KEY_DESCRIPTOR_SIZE);
303
304 r = fscrypt_setup(
7b78db28 305 cache,
70a5db58
LP
306 h->password,
307 setup,
308 &volume_key,
309 &volume_key_size);
310 if (r < 0)
311 return r;
312
313 /* Also install the access key in the user's own keyring */
314
315 if (uid_is_valid(h->uid)) {
7e0ed2e9 316 r = safe_fork("(sd-addkey)",
e9ccae31 317 FORK_RESET_SIGNALS|FORK_CLOSE_ALL_FDS|FORK_DEATHSIG_SIGTERM|FORK_LOG|FORK_WAIT|FORK_REOPEN_LOG,
7e0ed2e9 318 NULL);
70a5db58
LP
319 if (r < 0)
320 return log_error_errno(r, "Failed install encryption key in user's keyring: %m");
321 if (r == 0) {
322 gid_t gid;
323
324 /* Child */
325
326 gid = user_record_gid(h);
327 if (setresgid(gid, gid, gid) < 0) {
328 log_error_errno(errno, "Failed to change GID to " GID_FMT ": %m", gid);
329 _exit(EXIT_FAILURE);
330 }
331
332 if (setgroups(0, NULL) < 0) {
333 log_error_errno(errno, "Failed to reset auxiliary groups list: %m");
334 _exit(EXIT_FAILURE);
335 }
336
337 if (setresuid(h->uid, h->uid, h->uid) < 0) {
338 log_error_errno(errno, "Failed to change UID to " UID_FMT ": %m", h->uid);
339 _exit(EXIT_FAILURE);
340 }
341
342 r = fscrypt_upload_volume_key(
343 setup->fscrypt_key_descriptor,
344 volume_key,
345 volume_key_size,
346 KEY_SPEC_USER_KEYRING);
347 if (r < 0)
348 _exit(EXIT_FAILURE);
349
350 _exit(EXIT_SUCCESS);
351 }
352 }
353
65400de0
LP
354 /* We'll bind mount the image directory to a new mount point where we'll start adjusting it. Only
355 * once that's complete we'll move the thing to its final place eventually. */
356 r = home_unshare_and_mkdir();
357 if (r < 0)
358 return r;
359
360 r = mount_follow_verbose(LOG_ERR, ip, HOME_RUNTIME_WORK_DIR, NULL, MS_BIND, NULL);
361 if (r < 0)
362 return r;
363
364 setup->undo_mount = true;
365
366 /* Turn off any form of propagation for this */
367 r = mount_nofollow_verbose(LOG_ERR, NULL, HOME_RUNTIME_WORK_DIR, NULL, MS_PRIVATE, NULL);
368 if (r < 0)
369 return r;
370
371 /* Adjust MS_SUID and similar flags */
372 r = mount_nofollow_verbose(LOG_ERR, NULL, HOME_RUNTIME_WORK_DIR, NULL, MS_BIND|MS_REMOUNT|user_record_mount_flags(h), NULL);
373 if (r < 0)
374 return r;
375
376 safe_close(setup->root_fd);
377 setup->root_fd = open(HOME_RUNTIME_WORK_DIR, O_RDONLY|O_CLOEXEC|O_DIRECTORY|O_NOFOLLOW);
378 if (setup->root_fd < 0)
379 return log_error_errno(errno, "Failed to open home directory: %m");
380
70a5db58
LP
381 return 0;
382}
383
384static int fscrypt_slot_set(
385 int root_fd,
386 const void *volume_key,
387 size_t volume_key_size,
388 const char *password,
389 uint32_t nr) {
390
391 _cleanup_free_ char *salt_base64 = NULL, *encrypted_base64 = NULL, *joined = NULL;
392 char label[STRLEN("trusted.fscrypt_slot") + DECIMAL_STR_MAX(nr) + 1];
393 _cleanup_(EVP_CIPHER_CTX_freep) EVP_CIPHER_CTX *context = NULL;
394 int r, encrypted_size_out1, encrypted_size_out2;
395 uint8_t salt[64], derived[512 / 8] = {};
396 _cleanup_free_ void *encrypted = NULL;
397 const EVP_CIPHER *cc;
398 size_t encrypted_size;
5e476b85 399 ssize_t ss;
70a5db58 400
87cb1ab6 401 r = crypto_random_bytes(salt, sizeof(salt));
70a5db58
LP
402 if (r < 0)
403 return log_error_errno(r, "Failed to generate salt: %m");
404
692597c8
LP
405 CLEANUP_ERASE(derived);
406
70a5db58
LP
407 if (PKCS5_PBKDF2_HMAC(
408 password, strlen(password),
409 salt, sizeof(salt),
410 0xFFFF, EVP_sha512(),
692597c8
LP
411 sizeof(derived), derived) != 1)
412 return log_error_errno(SYNTHETIC_ERRNO(ENOTRECOVERABLE), "PBKDF2 failed");
70a5db58
LP
413
414 context = EVP_CIPHER_CTX_new();
692597c8
LP
415 if (!context)
416 return log_oom();
70a5db58
LP
417
418 /* We use AES256 in counter mode */
419 cc = EVP_aes_256_ctr();
420
421 /* We only use the first half of the derived key */
422 assert(sizeof(derived) >= (size_t) EVP_CIPHER_key_length(cc));
423
692597c8
LP
424 if (EVP_EncryptInit_ex(context, cc, NULL, derived, NULL) != 1)
425 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to initialize encryption context.");
70a5db58
LP
426
427 encrypted_size = volume_key_size + EVP_CIPHER_key_length(cc) * 2;
428 encrypted = malloc(encrypted_size);
429 if (!encrypted)
430 return log_oom();
431
432 if (EVP_EncryptUpdate(context, (uint8_t*) encrypted, &encrypted_size_out1, volume_key, volume_key_size) != 1)
433 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to encrypt volume key.");
434
435 assert((size_t) encrypted_size_out1 <= encrypted_size);
436
437 if (EVP_EncryptFinal_ex(context, (uint8_t*) encrypted_size + encrypted_size_out1, &encrypted_size_out2) != 1)
438 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Failed to finish encryption of volume key.");
439
440 assert((size_t) encrypted_size_out1 + (size_t) encrypted_size_out2 < encrypted_size);
441 encrypted_size = (size_t) encrypted_size_out1 + (size_t) encrypted_size_out2;
442
5e476b85
LP
443 ss = base64mem(salt, sizeof(salt), &salt_base64);
444 if (ss < 0)
70a5db58
LP
445 return log_oom();
446
5e476b85
LP
447 ss = base64mem(encrypted, encrypted_size, &encrypted_base64);
448 if (ss < 0)
70a5db58
LP
449 return log_oom();
450
451 joined = strjoin(salt_base64, ":", encrypted_base64);
452 if (!joined)
453 return log_oom();
454
455 xsprintf(label, "trusted.fscrypt_slot%" PRIu32, nr);
456 if (fsetxattr(root_fd, label, joined, strlen(joined), 0) < 0)
457 return log_error_errno(errno, "Failed to write xattr %s: %m", label);
458
459 log_info("Written key slot %s.", label);
460
461 return 0;
70a5db58
LP
462}
463
464int home_create_fscrypt(
465 UserRecord *h,
655807f5 466 HomeSetup *setup,
70a5db58
LP
467 char **effective_passwords,
468 UserRecord **ret_home) {
469
470 _cleanup_(rm_rf_physical_and_freep) char *temporary = NULL;
471 _cleanup_(user_record_unrefp) UserRecord *new_home = NULL;
472 _cleanup_(erase_and_freep) void *volume_key = NULL;
254d1313 473 _cleanup_close_ int mount_fd = -EBADF;
70a5db58
LP
474 struct fscrypt_policy policy = {};
475 size_t volume_key_size = 512 / 8;
70a5db58
LP
476 _cleanup_free_ char *d = NULL;
477 uint32_t nr = 0;
478 const char *ip;
70a5db58
LP
479 int r;
480
481 assert(h);
482 assert(user_record_storage(h) == USER_FSCRYPT);
655807f5 483 assert(setup);
70a5db58
LP
484 assert(ret_home);
485
486 assert_se(ip = user_record_image_path(h));
487
488 r = tempfn_random(ip, "homework", &d);
489 if (r < 0)
490 return log_error_errno(r, "Failed to allocate temporary directory: %m");
491
492 (void) mkdir_parents(d, 0755);
493
494 if (mkdir(d, 0700) < 0)
495 return log_error_errno(errno, "Failed to create temporary home directory %s: %m", d);
496
497 temporary = TAKE_PTR(d); /* Needs to be destroyed now */
498
65400de0
LP
499 r = home_unshare_and_mkdir();
500 if (r < 0)
501 return r;
502
655807f5
LP
503 setup->root_fd = open(temporary, O_RDONLY|O_CLOEXEC|O_DIRECTORY|O_NOFOLLOW);
504 if (setup->root_fd < 0)
70a5db58
LP
505 return log_error_errno(errno, "Failed to open temporary home directory: %m");
506
655807f5 507 if (ioctl(setup->root_fd, FS_IOC_GET_ENCRYPTION_POLICY, &policy) < 0) {
70a5db58
LP
508 if (ERRNO_IS_NOT_SUPPORTED(errno)) {
509 log_error_errno(errno, "File system does not support fscrypt: %m");
510 return -ENOLINK; /* make recognizable */
511 }
512 if (errno != ENODATA)
513 return log_error_errno(errno, "Failed to get fscrypt policy of directory: %m");
514 } else
515 return log_error_errno(SYNTHETIC_ERRNO(EBUSY), "Parent of %s already encrypted, refusing.", d);
516
517 volume_key = malloc(volume_key_size);
518 if (!volume_key)
519 return log_oom();
520
87cb1ab6 521 r = crypto_random_bytes(volume_key, volume_key_size);
70a5db58
LP
522 if (r < 0)
523 return log_error_errno(r, "Failed to acquire volume key: %m");
524
525 log_info("Generated volume key of size %zu.", volume_key_size);
526
527 policy = (struct fscrypt_policy) {
528 .contents_encryption_mode = FS_ENCRYPTION_MODE_AES_256_XTS,
529 .filenames_encryption_mode = FS_ENCRYPTION_MODE_AES_256_CTS,
530 .flags = FS_POLICY_FLAGS_PAD_32,
531 };
532
533 calculate_key_descriptor(volume_key, volume_key_size, policy.master_key_descriptor);
534
535 r = fscrypt_upload_volume_key(policy.master_key_descriptor, volume_key, volume_key_size, KEY_SPEC_THREAD_KEYRING);
536 if (r < 0)
537 return r;
538
539 log_info("Uploaded volume key to kernel.");
540
655807f5 541 if (ioctl(setup->root_fd, FS_IOC_SET_ENCRYPTION_POLICY, &policy) < 0)
70a5db58
LP
542 return log_error_errno(errno, "Failed to set fscrypt policy on directory: %m");
543
544 log_info("Encryption policy set.");
545
546 STRV_FOREACH(i, effective_passwords) {
655807f5 547 r = fscrypt_slot_set(setup->root_fd, volume_key, volume_key_size, *i, nr);
70a5db58
LP
548 if (r < 0)
549 return r;
550
551 nr++;
552 }
553
554 (void) home_update_quota_classic(h, temporary);
555
65400de0
LP
556 r = home_shift_uid(setup->root_fd, HOME_RUNTIME_WORK_DIR, h->uid, h->uid, &mount_fd);
557 if (r > 0)
558 setup->undo_mount = true; /* If uidmaps worked we have a mount to undo again */
559
560 if (mount_fd >= 0) {
561 /* If we have established a new mount, then we can use that as new root fd to our home directory. */
562 safe_close(setup->root_fd);
563
564 setup->root_fd = fd_reopen(mount_fd, O_RDONLY|O_CLOEXEC|O_DIRECTORY);
565 if (setup->root_fd < 0)
566 return log_error_errno(setup->root_fd, "Unable to convert mount fd into proper directory fd: %m");
567
568 mount_fd = safe_close(mount_fd);
569 }
570
655807f5 571 r = home_populate(h, setup->root_fd);
70a5db58
LP
572 if (r < 0)
573 return r;
574
655807f5 575 r = home_sync_and_statfs(setup->root_fd, NULL);
70a5db58
LP
576 if (r < 0)
577 return r;
578
bfc0cc1a 579 r = user_record_clone(h, USER_RECORD_LOAD_MASK_SECRET|USER_RECORD_PERMISSIVE, &new_home);
70a5db58
LP
580 if (r < 0)
581 return log_error_errno(r, "Failed to clone record: %m");
582
583 r = user_record_add_binding(
584 new_home,
585 USER_FSCRYPT,
586 ip,
587 SD_ID128_NULL,
588 SD_ID128_NULL,
589 SD_ID128_NULL,
590 NULL,
591 NULL,
592 UINT64_MAX,
593 NULL,
594 NULL,
595 h->uid,
596 (gid_t) h->uid);
597 if (r < 0)
598 return log_error_errno(r, "Failed to add binding to record: %m");
599
65400de0
LP
600 setup->root_fd = safe_close(setup->root_fd);
601
602 r = home_setup_undo_mount(setup, LOG_ERR);
603 if (r < 0)
604 return r;
605
70a5db58
LP
606 if (rename(temporary, ip) < 0)
607 return log_error_errno(errno, "Failed to rename %s to %s: %m", temporary, ip);
608
609 temporary = mfree(temporary);
610
611 log_info("Everything completed.");
612
613 *ret_home = TAKE_PTR(new_home);
614 return 0;
615}
616
617int home_passwd_fscrypt(
618 UserRecord *h,
619 HomeSetup *setup,
37a1bf7f 620 const PasswordCache *cache, /* the passwords acquired via PKCS#11/FIDO2 security tokens */
70a5db58
LP
621 char **effective_passwords /* new passwords */) {
622
623 _cleanup_(erase_and_freep) void *volume_key = NULL;
624 _cleanup_free_ char *xattr_buf = NULL;
625 size_t volume_key_size = 0;
626 uint32_t slot = 0;
70a5db58
LP
627 int r;
628
629 assert(h);
630 assert(user_record_storage(h) == USER_FSCRYPT);
631 assert(setup);
632
633 r = fscrypt_setup(
7b78db28 634 cache,
70a5db58
LP
635 h->password,
636 setup,
637 &volume_key,
638 &volume_key_size);
639 if (r < 0)
640 return r;
641
642 STRV_FOREACH(p, effective_passwords) {
643 r = fscrypt_slot_set(setup->root_fd, volume_key, volume_key_size, *p, slot);
644 if (r < 0)
645 return r;
646
647 slot++;
648 }
649
650 r = flistxattr_malloc(setup->root_fd, &xattr_buf);
651 if (r < 0)
652 return log_error_errno(errno, "Failed to retrieve xattr list: %m");
653
654 NULSTR_FOREACH(xa, xattr_buf) {
655 const char *nr;
656 uint32_t z;
657
da890466 658 /* Check if this xattr has the format 'trusted.fscrypt_slot<nr>' where '<nr>' is a 32-bit unsigned integer */
70a5db58
LP
659 nr = startswith(xa, "trusted.fscrypt_slot");
660 if (!nr)
661 continue;
662 if (safe_atou32(nr, &z) < 0)
663 continue;
664
665 if (z < slot)
666 continue;
667
668 if (fremovexattr(setup->root_fd, xa) < 0)
70a5db58
LP
669 if (errno != ENODATA)
670 log_warning_errno(errno, "Failed to remove xattr %s: %m", xa);
671 }
672
673 return 0;
674}