1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
// Copyright © Tavian Barnes <tavianator@tavianator.com>
// SPDX-License-Identifier: 0BSD
#include "tests.h"
#include "alloc.h"
#include "bfstd.h"
#include "dstring.h"
#include "xspawn.h"
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
/** Duplicate the current environment. */
static char **envdup(void) {
extern char **environ;
char **envp = NULL;
size_t envc = 0;
for (char **var = environ; ; ++var) {
char *copy = NULL;
if (*var) {
copy = strdup(*var);
if (!copy) {
goto fail;
}
}
char **dest = RESERVE(char *, &envp, &envc);
if (!dest) {
free(copy);
goto fail;
}
*dest = copy;
if (!*var) {
break;
}
}
return envp;
fail:
for (size_t i = 0; i < envc; ++i) {
free(envp[i]);
}
free(envp);
return NULL;
}
/** Add an entry to $PATH. */
static int add_path(const char *entry, char **old_path) {
int ret = -1;
const char *new_path = NULL;
*old_path = getenv("PATH");
if (*old_path) {
*old_path = strdup(*old_path);
if (!*old_path) {
goto done;
}
new_path = dstrprintf("%s:%s", entry, *old_path);
if (!new_path) {
goto done;
}
} else {
new_path = entry;
}
ret = setenv("PATH", new_path, true);
done:
if (new_path && new_path != entry) {
dstrfree((dchar *)new_path);
}
if (ret != 0) {
free(*old_path);
*old_path = NULL;
}
return ret;
}
/** Undo add_path(). */
static int reset_path(char *old_path) {
int ret;
if (old_path) {
ret = setenv("PATH", old_path, true);
free(old_path);
} else {
ret = unsetenv("PATH");
}
return ret;
}
/** Spawn the test binary and check for success. */
static void check_spawnee(const char *exe, const struct bfs_spawn *ctx, char **argv, char **envp) {
pid_t pid = bfs_spawn(exe, ctx, argv, envp);
if (!bfs_echeck(pid >= 0, "bfs_spawn('%s')", exe)) {
return;
}
int wstatus;
bool exited = bfs_echeck(xwaitpid(pid, &wstatus, 0) == pid)
&& bfs_check(WIFEXITED(wstatus));
if (exited) {
int wexit = WEXITSTATUS(wstatus);
bfs_check(wexit == EXIT_SUCCESS, "xspawnee: exit(%d)", wexit);
}
}
/** Check that we resolve executables in $PATH correctly. */
static void check_use_path(bool use_posix) {
struct bfs_spawn spawn;
if (!bfs_echeck(bfs_spawn_init(&spawn) == 0)) {
return;
}
spawn.flags |= BFS_SPAWN_USE_PATH;
if (!use_posix) {
spawn.flags &= ~BFS_SPAWN_USE_POSIX;
}
bool init = bfs_echeck(bfs_spawn_addopen(&spawn, 10, "bin", O_RDONLY | O_DIRECTORY, 0) == 0)
&& bfs_echeck(bfs_spawn_adddup2(&spawn, 10, 11) == 0)
&& bfs_echeck(bfs_spawn_addclose(&spawn, 10) == 0)
&& bfs_echeck(bfs_spawn_addfchdir(&spawn, 11) == 0)
&& bfs_echeck(bfs_spawn_addclose(&spawn, 11) == 0);
if (!init) {
goto destroy;
}
// Check that $PATH is resolved in the parent's environment
char **envp = envdup();
if (!bfs_echeck(envp, "envdup()")) {
goto destroy;
}
// Check that $PATH is resolved after the file actions
char *old_path;
if (!bfs_echeck(add_path("tests", &old_path) == 0)) {
goto env;
}
char *argv[] = {"xspawnee", old_path, NULL};
check_spawnee("xspawnee", &spawn, argv, envp);
check_spawnee("tests/xspawnee", &spawn, argv, envp);
bfs_echeck(reset_path(old_path) == 0);
env:
for (char **var = envp; *var; ++var) {
free(*var);
}
free(envp);
destroy:
bfs_echeck(bfs_spawn_destroy(&spawn) == 0);
}
/** Check path resolution of non-existent executables. */
static void check_enoent(bool use_posix) {
struct bfs_spawn spawn;
if (!bfs_echeck(bfs_spawn_init(&spawn) == 0)) {
return;
}
spawn.flags |= BFS_SPAWN_USE_PATH;
if (!use_posix) {
spawn.flags &= ~BFS_SPAWN_USE_POSIX;
}
char *argv[] = {"eW6f5RM9Qi", NULL};
pid_t pid = bfs_spawn("eW6f5RM9Qi", &spawn, argv, NULL);
bfs_echeck(pid < 0 && errno == ENOENT, "bfs_spawn()");
bfs_echeck(bfs_spawn_destroy(&spawn) == 0);
}
static void check_resolve(void) {
char *exe;
exe = bfs_spawn_resolve("sh");
bfs_echeck(exe, "bfs_spawn_resolve('sh')");
free(exe);
exe = bfs_spawn_resolve("/bin/sh");
bfs_echeck(exe && strcmp(exe, "/bin/sh") == 0);
free(exe);
exe = bfs_spawn_resolve("bin/tests/xspawnee");
bfs_echeck(exe && strcmp(exe, "bin/tests/xspawnee") == 0);
free(exe);
bfs_echeck(!bfs_spawn_resolve("eW6f5RM9Qi") && errno == ENOENT);
bfs_echeck(!bfs_spawn_resolve("bin/eW6f5RM9Qi") && errno == ENOENT);
char *old_path;
if (bfs_echeck(add_path("bin/tests", &old_path) == 0)) {
exe = bfs_spawn_resolve("xspawnee");
bfs_echeck(exe && strcmp(exe, "bin/tests/xspawnee") == 0);
free(exe);
bfs_echeck(reset_path(old_path) == 0);
}
}
void check_xspawn(void) {
check_use_path(true);
check_use_path(false);
check_enoent(true);
check_enoent(false);
check_resolve();
}
|