]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/home/user-record-util.h
Merge pull request #15442 from poettering/fido2
[thirdparty/systemd.git] / src / home / user-record-util.h
CommitLineData
70a5db58
LP
1/* SPDX-License-Identifier: LGPL-2.1+ */
2#pragma once
3
4#include "sd-bus.h"
5
6#include "user-record.h"
7#include "group-record.h"
8
9int user_record_synthesize(UserRecord *h, const char *user_name, const char *realm, const char *image_path, UserStorage storage, uid_t uid, gid_t gid);
10int group_record_synthesize(GroupRecord *g, UserRecord *u);
11
12typedef enum UserReconcileMode {
13 USER_RECONCILE_ANY,
14 USER_RECONCILE_REQUIRE_NEWER, /* host version must be newer than embedded version */
15 USER_RECONCILE_REQUIRE_NEWER_OR_EQUAL, /* similar, but may also be equal */
16 _USER_RECONCILE_MODE_MAX,
17 _USER_RECONCILE_MODE_INVALID = -1,
18} UserReconcileMode;
19
20enum { /* return values */
21 USER_RECONCILE_HOST_WON,
22 USER_RECONCILE_EMBEDDED_WON,
23 USER_RECONCILE_IDENTICAL,
24};
25
26int user_record_reconcile(UserRecord *host, UserRecord *embedded, UserReconcileMode mode, UserRecord **ret);
27int user_record_add_binding(UserRecord *h, UserStorage storage, const char *image_path, sd_id128_t partition_uuid, sd_id128_t luks_uuid, sd_id128_t fs_uuid, const char *luks_cipher, const char *luks_cipher_mode, uint64_t luks_volume_key_size, const char *file_system_type, const char *home_directory, uid_t uid, gid_t gid);
28
29/* Results of the two test functions below. */
30enum {
31 USER_TEST_UNDEFINED, /* Returned by user_record_test_image_path() if the storage type knows no image paths */
32 USER_TEST_ABSENT,
33 USER_TEST_EXISTS,
34 USER_TEST_MOUNTED, /* Only applies to user_record_test_home_directory(), when the home directory exists. */
35 USER_TEST_MAYBE, /* Only applies to LUKS devices: block device exists, but we don't know if it's the right one */
36};
37
38int user_record_test_home_directory(UserRecord *h);
39int user_record_test_home_directory_and_warn(UserRecord *h);
40int user_record_test_image_path(UserRecord *h);
41int user_record_test_image_path_and_warn(UserRecord *h);
42
43int user_record_test_secret(UserRecord *h, UserRecord *secret);
44
45int user_record_update_last_changed(UserRecord *h, bool with_password);
46int user_record_set_disk_size(UserRecord *h, uint64_t disk_size);
47int user_record_set_password(UserRecord *h, char **password, bool prepend);
48int user_record_make_hashed_password(UserRecord *h, char **password, bool extend);
49int user_record_set_hashed_password(UserRecord *h, char **hashed_password);
c0bde0d2 50int user_record_set_token_pin(UserRecord *h, char **pin, bool prepend);
70a5db58 51int user_record_set_pkcs11_protected_authentication_path_permitted(UserRecord *h, int b);
7b78db28 52int user_record_set_fido2_user_presence_permitted(UserRecord *h, int b);
70a5db58
LP
53int user_record_set_password_change_now(UserRecord *h, int b);
54int user_record_merge_secret(UserRecord *h, UserRecord *secret);
55int user_record_good_authentication(UserRecord *h);
56int user_record_bad_authentication(UserRecord *h);
57int user_record_ratelimit(UserRecord *h);
58
59int user_record_is_supported(UserRecord *hr, sd_bus_error *error);