src/confd: system() replacement without /bin/sh intermediary

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg
2023-04-30 19:49:27 +02:00
parent 60fa170bee
commit 941a2d85aa
2 changed files with 88 additions and 1 deletions
+1 -1
View File
@@ -8,4 +8,4 @@ confd_plugin_la_CFLAGS = $(augeas_CFLAGS) $(libite_CFLAGS) $(sysrepo_CFLAGS) $(
confd_plugin_la_LIBADD = $(augeas_LIBS) $(libite_LIBS) $(sysrepo_LIBS)
confd_plugin_la_LDFLAGS = -module -avoid-version -shared
confd_plugin_la_SOURCES = core.c core.h helpers.c helpers.h srx_module.c srx_module.h srx_val.c srx_val.h \
ietf-system.c ietf-interfaces.c
ietf-system.c ietf-interfaces.c systemv.c
+87
View File
@@ -0,0 +1,87 @@
/* SPDX-License-Identifier: BSD-3-Clause */
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <string.h> /* strerror() */
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <stdlib.h>
/**
* Reimplementation of system() without /bin/sh intermediary
*/
int fsystemv(char **args, FILE *in, FILE *out, FILE *err)
{
struct sigaction sa = { .sa_handler = SIG_IGN };
sigset_t oldmask;
int rc = -1;
pid_t pid;
if (!args) {
errno = EINVAL;
return -1;
}
/* Wait for last child to terminate, see waitpid(2) */
sigaddset(&sa.sa_mask, SIGCHLD);
sigprocmask(SIG_BLOCK, &sa.sa_mask, &oldmask);
pid = fork();
if (0 == pid) {
sigprocmask(SIG_SETMASK, &oldmask, NULL);
if (in)
dup2(fileno(in), STDIN_FILENO);
if (out)
dup2(fileno(out), STDOUT_FILENO);
if (err)
dup2(fileno(err), STDERR_FILENO);
_exit(execvp(args[0], args));
}
if (pid == -1 || waitpid(pid, &rc, 0) == -1)
goto fail;
if (WIFEXITED(rc)) {
errno = 0;
rc = WEXITSTATUS(rc);
} else if (WIFSIGNALED(rc)) {
errno = EINTR;
rc = -1;
}
fail:
sigprocmask(SIG_SETMASK, &oldmask, NULL);
return rc;
}
int systemv(char **args)
{
return fsystemv(args, NULL, NULL, NULL);
}
int systemv_silent(char **args)
{
FILE *out = fopen("/dev/null", "w");
int rc;
rc = fsystemv(args, NULL, out, out);
if (out)
fclose(out);
return rc;
}
#ifdef UNITTEST
int main(void)
{
char *args[] = {
"ls", "/etc", NULL
};
int rc;
rc = systemv_silent(args);
printf("=> %d\n", rc);
}
#endif