mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 19:21:53 +03:00
fs-util: introduce fchmod_and_chown()
The new function fchmod_and_chown() is almost same as chmod_and_chown() except it takes file descriptor instead of file path.
This commit is contained in:
parent
08ebe56b2e
commit
b8da477eaf
@ -230,6 +230,22 @@ int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int fchmod_and_chown(int fd, mode_t mode, uid_t uid, gid_t gid) {
|
||||||
|
/* Under the assumption that we are running privileged we
|
||||||
|
* first change the access mode and only then hand out
|
||||||
|
* ownership to avoid a window where access is too open. */
|
||||||
|
|
||||||
|
if (mode != MODE_INVALID)
|
||||||
|
if (fchmod(fd, mode) < 0)
|
||||||
|
return -errno;
|
||||||
|
|
||||||
|
if (uid != UID_INVALID || gid != GID_INVALID)
|
||||||
|
if (fchown(fd, uid, gid) < 0)
|
||||||
|
return -errno;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int fchmod_umask(int fd, mode_t m) {
|
int fchmod_umask(int fd, mode_t m) {
|
||||||
mode_t u;
|
mode_t u;
|
||||||
int r;
|
int r;
|
||||||
|
@ -31,6 +31,7 @@ int readlink_value(const char *p, char **ret);
|
|||||||
int readlink_and_make_absolute(const char *p, char **r);
|
int readlink_and_make_absolute(const char *p, char **r);
|
||||||
|
|
||||||
int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
|
int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
|
||||||
|
int fchmod_and_chown(int fd, mode_t mode, uid_t uid, gid_t gid);
|
||||||
|
|
||||||
int fchmod_umask(int fd, mode_t mode);
|
int fchmod_umask(int fd, mode_t mode);
|
||||||
int fchmod_opath(int fd, mode_t m);
|
int fchmod_opath(int fd, mode_t m);
|
||||||
|
Loading…
Reference in New Issue
Block a user