aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-10-07 14:38:10 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-10-07 14:38:10 +0200
commit3cfb4d9c737debfbd8d74936a33a5a0eab79ac60 (patch)
treea8aedb0d5b68a5a09ee28a765a17498dbb5d315f /utils.c
parent4dd45375244954e7b2e310bb2983f031f3a5a3b8 (diff)
nDPId/nDPIsrvd: change_user_group does now chown/chmod collector/distributor socket paths
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index bb9aed179..cea51b4a1 100644
--- a/utils.c
+++ b/utils.c
@@ -5,6 +5,7 @@
#include <stdio.h>
#include <string.h>
#include <syslog.h>
+#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
@@ -114,7 +115,10 @@ int daemonize_shutdown(char const * const pidfile)
return 0;
}
-int change_user_group(char const * const user, char const * const group)
+int change_user_group(char const * const user, char const * const group,
+ char const * const pidfile,
+ char const * const uds_collector_path,
+ char const * const uds_distributor_path)
{
struct passwd * pwd;
struct group * grp;
@@ -143,5 +147,16 @@ int change_user_group(char const * const user, char const * const group)
gid = pwd->pw_gid;
}
+ if (uds_collector_path != NULL) {
+ chmod(uds_collector_path, S_IRUSR | S_IWUSR);
+ chown(uds_collector_path, pwd->pw_uid, gid);
+ }
+ if (uds_distributor_path != NULL) {
+ chmod(uds_distributor_path, S_IRUSR | S_IWUSR | S_IRGRP);
+ chown(uds_distributor_path, pwd->pw_uid, gid);
+ }
+ if (pidfile != NULL) {
+ chown(pidfile, pwd->pw_uid, gid);
+ }
return setregid(gid, gid) != 0 || setreuid(pwd->pw_uid, pwd->pw_uid);
}