/* * libifupdown/execute.c * Purpose: execution of individual commands * * Copyright (c) 2020 Ariadne Conill * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * This software is provided 'as is' and without any warranty, express or * implied. In no event shall the authors be liable for any damages arising * from the use of this software. */ #include #include #include #include #include #include #include #include #include #include #include #include "libifupdown/execute.h" #define SHELL "/bin/sh" bool lif_execute_fmt(const struct lif_execute_opts *opts, char *const envp[], const char *fmt, ...) { char cmdbuf[4096]; va_list va; va_start(va, fmt); vsnprintf(cmdbuf, sizeof cmdbuf, fmt, va); va_end(va); pid_t child; char *argv[] = { SHELL, "-c", cmdbuf, NULL }; if (opts->verbose) puts(cmdbuf); if (opts->mock) return true; if (posix_spawn(&child, SHELL, NULL, NULL, argv, envp) != 0) { fprintf(stderr, "execute '%s': %s\n", cmdbuf, strerror(errno)); return false; } int status; waitpid(child, &status, 0); return WIFEXITED(status) && WEXITSTATUS(status) == 0; } bool lif_file_is_executable(const char *path) { struct stat st; if (stat(path, &st)) return false; if (!S_ISREG(st.st_mode)) return false; return access(path, X_OK); }