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
|
/* ----------------------------------------------------------------------------
* search path search logic
* (c) Ben Gamari 2021
*/
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include "common.h"
// the below is only necessary when we need to emulate execvpe.
#if !defined(HAVE_EXECVPE)
/* A quick check for whether the given path is absolute. */
static bool is_absolute(const char *path) {
return path[0] == '/';
}
static char *concat_paths(const char *path1, const char *path2) {
if (is_absolute(path2)) {
return strdup(path2);
} else {
int len = strlen(path1) + 1 + strlen(path2) + 1;
char *tmp = malloc(len);
int ret = snprintf(tmp, len, "%s/%s", path1, path2);
if (ret < 0) {
free(tmp);
return NULL;
}
return tmp;
}
}
/* Return true if the given file exists and is an executable, optionally
* relative to the given working directory.
*/
static bool is_executable(char *working_dir, const char *path) {
if (working_dir && !is_absolute(path)) {
char *tmp = concat_paths(working_dir, path);
bool ret = access(tmp, X_OK) == 0;
free(tmp);
return ret;
} else {
return access(path, X_OK) == 0;
}
}
/* Find an executable with the given filename in the given search path. The
* result must be freed by the caller. Returns NULL if a matching file is not
* found.
*/
static char *find_in_search_path(char *working_dir, char *search_path, const char *filename) {
const int filename_len = strlen(filename);
char *tokbuf;
char *path = strtok_r(search_path, ":", &tokbuf);
if (!working_dir)
working_dir = ".";
int workdir_len = strlen(working_dir);
while (path != NULL) {
// N.B. gcc 6.3.0, used by Debian 9, inexplicably warns that `path`
// may not be initialised with -Wall. Silence this warning. See #210.
#if defined(__GNUC__) && __GNUC__ == 6 && __GNUC_MINOR__ == 3
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
char *tmp;
if (is_absolute(path)) {
const int tmp_len = strlen(path) + 1 + filename_len + 1;
tmp = malloc(tmp_len);
snprintf(tmp, tmp_len, "%s/%s", path, filename);
} else {
const int tmp_len = workdir_len + 1 + strlen(path) + 1 + filename_len + 1;
tmp = malloc(tmp_len);
snprintf(tmp, tmp_len, "%s/%s/%s", working_dir, path, filename);
}
#if defined(__GNUC__) && __GNUC__ == 6 && __GNUC_MINOR__ == 3
#pragma GCC diagnostic pop
#endif
if (is_executable(working_dir, tmp)) {
return tmp;
} else {
free(tmp);
}
path = strtok_r(NULL, ":", &tokbuf);
}
return NULL;
}
/* Identify the executable search path. The result must be freed by the caller. */
static char *get_executable_search_path(void) {
char *search_path;
search_path = getenv("PATH");
if (search_path) {
search_path = strdup(search_path);
return search_path;
}
#if defined(HAVE_CONFSTR)
int len = confstr(_CS_PATH, NULL, 0);
search_path = malloc(len + 1)
if (search_path != NULL) {
search_path[0] = ':';
(void) confstr (_CS_PATH, search_path + 1, len);
return search_path;
}
#endif
return strdup(":");
}
/* Find the given executable in the executable search path relative to
* workingDirectory (or the current directory, if NULL).
* N.B. the caller is responsible for free()ing the result.
*/
char *find_executable(char *working_dir, char *filename) {
/* Drop trailing slash from working directory if necessary */
if (working_dir) {
int workdir_len = strlen(working_dir);
if (working_dir[workdir_len-1] == '/') {
working_dir[workdir_len-1] = '\0';
}
}
if (is_absolute(filename)) {
/* If it's an absolute path name, it's easy. */
return filename;
} else if (strchr(filename, '/')) {
/* If it's a relative path name, we must look for executables relative
* to the working directory. */
if (is_executable(working_dir, filename)) {
return filename;
}
}
/* Otherwise look through the search path... */
char *search_path = get_executable_search_path();
char *result = find_in_search_path(working_dir, search_path, filename);
free(search_path);
return result;
}
#endif
|