45 lines
1.0 KiB
C
45 lines
1.0 KiB
C
#pragma once
|
|
|
|
#include <unistd.h>
|
|
#include <stdint.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <sys/wait.h>
|
|
#include <fcntl.h>
|
|
#include <signal.h>
|
|
|
|
#include "log.h"
|
|
#include "string.h"
|
|
#include "util.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Safe execvpe()
|
|
__attribute__((noreturn)) void safe_execvpe(const char *const argv[], const char *const envp[]);
|
|
|
|
// Chop Off Last Component
|
|
void chop_last_component(char **str);
|
|
// Get Binary Directory (Remember To Free)
|
|
char *get_binary_directory();
|
|
|
|
// Safe execvpe() Relative To Binary
|
|
__attribute__((noreturn)) void safe_execvpe_relative_to_binary(const char *const argv[], const char *const envp[]);
|
|
|
|
// Run Command And Get Output
|
|
char *run_command(const char *const command[], int *exit_status);
|
|
#define is_exit_status_success(status) (WIFEXITED(status) && WEXITSTATUS(status) == 0)
|
|
|
|
// Get Exit Status String
|
|
void get_exit_status_string(int status, char **out);
|
|
|
|
// Track Children
|
|
void track_child(pid_t pid);
|
|
void untrack_child(pid_t pid);
|
|
void murder_children();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|