1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-11 05:17:44 +03:00

homed: rename home_prepare*() → home_setup*()

These set of functions are constructors for an object called HomeSetup,
which has a destructor home_setup_undo(), hence to be reasonably
symmetric, let's call it home_setup*() too, instead of using a new verb
"prepare" for its name.

No actual code changes, just some renaming.
This commit is contained in:
Lennart Poettering 2021-10-13 22:24:24 +02:00
parent 22e5118cda
commit aa0a6214e2
10 changed files with 23 additions and 23 deletions

View File

@ -12,7 +12,7 @@
#include "strv.h"
#include "tmpfile-util.h"
int home_prepare_cifs(
int home_setup_cifs(
UserRecord *h,
bool already_activated,
HomeSetup *setup) {
@ -117,7 +117,7 @@ int home_activate_cifs(
assert_se(hdo = user_record_home_directory(h));
hd = strdupa_safe(hdo); /* copy the string out, since it might change later in the home record object */
r = home_prepare_cifs(h, false, &setup);
r = home_setup_cifs(h, false, &setup);
if (r < 0)
return r;
@ -160,7 +160,7 @@ int home_create_cifs(UserRecord *h, UserRecord **ret_home) {
return log_error_errno(errno, "Unable to detect whether /sbin/mount.cifs exists: %m");
}
r = home_prepare_cifs(h, false, &setup);
r = home_setup_cifs(h, false, &setup);
if (r < 0)
return r;

View File

@ -4,7 +4,7 @@
#include "homework.h"
#include "user-record.h"
int home_prepare_cifs(UserRecord *h, bool already_activated, HomeSetup *setup);
int home_setup_cifs(UserRecord *h, bool already_activated, HomeSetup *setup);
int home_activate_cifs(UserRecord *h, PasswordCache *cache, UserRecord **ret_home);

View File

@ -13,7 +13,7 @@
#include "tmpfile-util.h"
#include "umask-util.h"
int home_prepare_directory(UserRecord *h, bool already_activated, HomeSetup *setup) {
int home_setup_directory(UserRecord *h, bool already_activated, HomeSetup *setup) {
assert(h);
assert(setup);
@ -44,7 +44,7 @@ int home_activate_directory(
assert_se(hdo = user_record_home_directory(h));
hd = strdupa_safe(hdo);
r = home_prepare(h, false, cache, &setup, &header_home);
r = home_setup(h, false, cache, &setup, &header_home);
if (r < 0)
return r;
@ -205,7 +205,7 @@ int home_resize_directory(
assert(ret_home);
assert(IN_SET(user_record_storage(h), USER_DIRECTORY, USER_SUBVOLUME, USER_FSCRYPT));
r = home_prepare(h, already_activated, cache, setup, NULL);
r = home_setup(h, already_activated, cache, setup, NULL);
if (r < 0)
return r;

View File

@ -4,7 +4,7 @@
#include "homework.h"
#include "user-record.h"
int home_prepare_directory(UserRecord *h, bool already_activated, HomeSetup *setup);
int home_setup_directory(UserRecord *h, bool already_activated, HomeSetup *setup);
int home_activate_directory(UserRecord *h, PasswordCache *cache, UserRecord **ret_home);
int home_create_directory_or_subvolume(UserRecord *h, UserRecord **ret_home);
int home_resize_directory(UserRecord *h, bool already_activated, PasswordCache *cache, HomeSetup *setup, UserRecord **ret_home);

View File

@ -278,7 +278,7 @@ static int fscrypt_setup(
return log_error_errno(SYNTHETIC_ERRNO(ENOKEY), "Failed to set up home directory with provided passwords.");
}
int home_prepare_fscrypt(
int home_setup_fscrypt(
UserRecord *h,
bool already_activated,
PasswordCache *cache,

View File

@ -4,7 +4,7 @@
#include "homework.h"
#include "user-record.h"
int home_prepare_fscrypt(UserRecord *h, bool already_activated, PasswordCache *cache, HomeSetup *setup);
int home_setup_fscrypt(UserRecord *h, bool already_activated, PasswordCache *cache, HomeSetup *setup);
int home_create_fscrypt(UserRecord *h, char **effective_passwords, UserRecord **ret_home);
int home_passwd_fscrypt(UserRecord *h, HomeSetup *setup, PasswordCache *cache, char **effective_passwords);

View File

@ -1098,7 +1098,7 @@ static int lock_image_fd(int image_fd, const char *ip) {
return 0;
}
int home_prepare_luks(
int home_setup_luks(
UserRecord *h,
bool already_activated,
const char *force_image_path,
@ -1385,7 +1385,7 @@ int home_activate_luks(
if (r > 0)
return log_error_errno(SYNTHETIC_ERRNO(EEXIST), "Device mapper device %s already exists, refusing.", setup.dm_node);
r = home_prepare_luks(
r = home_setup_luks(
h,
false,
NULL,
@ -2797,7 +2797,7 @@ int home_resize_luks(
new_image_size = new_image_size_rounded;
}
r = home_prepare_luks(h, already_activated, whole_disk, cache, setup, &header_home);
r = home_setup_luks(h, already_activated, whole_disk, cache, setup, &header_home);
if (r < 0)
return r;

View File

@ -5,7 +5,7 @@
#include "homework.h"
#include "user-record.h"
int home_prepare_luks(UserRecord *h, bool already_activated, const char *force_image_path, PasswordCache *cache, HomeSetup *setup, UserRecord **ret_luks_home);
int home_setup_luks(UserRecord *h, bool already_activated, const char *force_image_path, PasswordCache *cache, HomeSetup *setup, UserRecord **ret_luks_home);
int home_activate_luks(UserRecord *h, PasswordCache *cache, UserRecord **ret_home);
int home_deactivate_luks(UserRecord *h);

View File

@ -368,7 +368,7 @@ int home_setup_undo(HomeSetup *setup) {
return r;
}
int home_prepare(
int home_setup(
UserRecord *h,
bool already_activated,
PasswordCache *cache,
@ -393,19 +393,19 @@ int home_prepare(
switch (user_record_storage(h)) {
case USER_LUKS:
return home_prepare_luks(h, already_activated, NULL, cache, setup, ret_header_home);
return home_setup_luks(h, already_activated, NULL, cache, setup, ret_header_home);
case USER_SUBVOLUME:
case USER_DIRECTORY:
r = home_prepare_directory(h, already_activated, setup);
r = home_setup_directory(h, already_activated, setup);
break;
case USER_FSCRYPT:
r = home_prepare_fscrypt(h, already_activated, cache, setup);
r = home_setup_fscrypt(h, already_activated, cache, setup);
break;
case USER_CIFS:
r = home_prepare_cifs(h, already_activated, setup);
r = home_setup_cifs(h, already_activated, setup);
break;
default:
@ -1445,7 +1445,7 @@ static int home_update(UserRecord *h, UserRecord **ret) {
already_activated = r > 0;
r = home_prepare(h, already_activated, &cache, &setup, &header_home);
r = home_setup(h, already_activated, &cache, &setup, &header_home);
if (r < 0)
return r;
@ -1541,7 +1541,7 @@ static int home_passwd(UserRecord *h, UserRecord **ret_home) {
already_activated = r > 0;
r = home_prepare(h, already_activated, &cache, &setup, &header_home);
r = home_setup(h, already_activated, &cache, &setup, &header_home);
if (r < 0)
return r;
@ -1613,7 +1613,7 @@ static int home_inspect(UserRecord *h, UserRecord **ret_home) {
already_activated = r > 0;
r = home_prepare(h, already_activated, &cache, &setup, &header_home);
r = home_setup(h, already_activated, &cache, &setup, &header_home);
if (r < 0)
return r;

View File

@ -56,7 +56,7 @@ void password_cache_free(PasswordCache *cache);
int home_setup_undo(HomeSetup *setup);
int home_prepare(UserRecord *h, bool already_activated, PasswordCache *cache, HomeSetup *setup, UserRecord **ret_header_home);
int home_setup(UserRecord *h, bool already_activated, PasswordCache *cache, HomeSetup *setup, UserRecord **ret_header_home);
int home_refresh(UserRecord *h, HomeSetup *setup, UserRecord *header_home, PasswordCache *cache, struct statfs *ret_statfs, UserRecord **ret_new_home);