aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2022-10-19 18:40:52 +0200
committerlns <matzeton@googlemail.com>2022-10-19 18:40:52 +0200
commitcd22d5605639ee6151b23c36d9f856e150d81769 (patch)
tree6bb46c6a8f466b279927590ee87ce54b5af18e99 /utils.c
parent49352698a031d5816d04b802ad8e0386a8a73e30 (diff)
Add ArchLinux PKGBUILD.
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c26
1 files changed, 19 insertions, 7 deletions
diff --git a/utils.c b/utils.c
index 975a696bb..fc0472b7c 100644
--- a/utils.c
+++ b/utils.c
@@ -161,7 +161,7 @@ int change_user_group(char const * const user,
pwd = getpwnam(user);
if (pwd == NULL)
{
- return 1;
+ return -errno;
}
if (group != NULL)
@@ -170,7 +170,7 @@ int change_user_group(char const * const user,
grp = getgrnam(group);
if (grp == NULL)
{
- return 1;
+ return -errno;
}
gid = grp->gr_gid;
}
@@ -181,17 +181,29 @@ int change_user_group(char const * const user,
if (uds_collector_path != NULL)
{
- chmod(uds_collector_path, S_IRUSR | S_IWUSR);
- chown(uds_collector_path, pwd->pw_uid, gid);
+ errno = 0;
+ if (chmod(uds_collector_path, S_IRUSR | S_IWUSR) != 0 ||
+ chown(uds_collector_path, pwd->pw_uid, gid) != 0)
+ {
+ return -errno;
+ }
}
if (uds_distributor_path != NULL)
{
- chmod(uds_distributor_path, S_IRUSR | S_IWUSR | S_IRGRP);
- chown(uds_distributor_path, pwd->pw_uid, gid);
+ errno = 0;
+ if (chmod(uds_distributor_path, S_IRUSR | S_IWUSR | S_IRGRP) != 0 ||
+ chown(uds_distributor_path, pwd->pw_uid, gid) != 0)
+ {
+ return -errno;
+ }
}
if (pidfile != NULL)
{
- chown(pidfile, pwd->pw_uid, gid);
+ errno = 0;
+ if (chown(pidfile, pwd->pw_uid, gid) != 0)
+ {
+ return -errno;
+ }
}
return setregid(gid, gid) != 0 || setreuid(pwd->pw_uid, pwd->pw_uid);
}