aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-11-18 11:26:05 +0100
committerToni Uhlig <matzeton@googlemail.com>2022-11-21 11:26:05 +0100
commit64f6abfdbedf00994f3614757efbeabe14afd87e (patch)
tree28946fd8385147a80abe006b8739cad383bf248e /utils.c
parent77ee336cc941694b078906b7afda51dd21538450 (diff)
Unified nDPId/nDPIsrvd command line argument storage.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c40
1 files changed, 38 insertions, 2 deletions
diff --git a/utils.c b/utils.c
index 7f6665d1a..fbdc2b79e 100644
--- a/utils.c
+++ b/utils.c
@@ -6,6 +6,7 @@
#include <pwd.h>
#include <stdarg.h>
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#ifndef NO_MAIN
#include <syslog.h>
@@ -21,6 +22,42 @@ static int daemonize = 0;
static int log_to_console = 0;
static int log_to_file_fd = -1;
+void set_cmdarg(struct cmdarg * const ca, char const * const val)
+{
+ if (ca == NULL || val == NULL)
+ {
+ return;
+ }
+
+ free(ca->value);
+ ca->value = strdup(val);
+}
+
+char const * get_cmdarg(struct cmdarg const * const ca)
+{
+ if (ca == NULL)
+ {
+ return NULL;
+ }
+
+ if (ca->value != NULL)
+ {
+ return ca->value;
+ }
+
+ return ca->default_value;
+}
+
+int is_cmdarg_set(struct cmdarg const * const ca)
+{
+ if (ca == NULL)
+ {
+ return 0;
+ }
+
+ return ca->value != NULL;
+}
+
void daemonize_enable(void)
{
daemonize = 1;
@@ -182,8 +219,7 @@ int change_user_group(char const * const user,
if (uds_collector_path != NULL)
{
errno = 0;
- if (chmod(uds_collector_path, S_IRUSR | S_IWUSR) != 0 ||
- chown(uds_collector_path, pwd->pw_uid, gid) != 0)
+ if (chmod(uds_collector_path, S_IRUSR | S_IWUSR) != 0 || chown(uds_collector_path, pwd->pw_uid, gid) != 0)
{
return -errno;
}