diff options
author | Andre Heinecke <[email protected]> | 2020-01-17 11:42:56 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2020-01-17 11:42:56 +0000 |
commit | 39052913f2154fa8e9575727e27d4101ef8b6460 (patch) | |
tree | 92becf158f4a677aeeade90f13abf58e32870df3 /src | |
parent | cpp, qt: Use uidhash to select uids for signing (diff) | |
download | gpgme-39052913f2154fa8e9575727e27d4101ef8b6460.tar.gz gpgme-39052913f2154fa8e9575727e27d4101ef8b6460.zip |
core: Add MacOS fallbacks to look for binaries
* src/posix-util.c (find_executable): New.
(walk_path_str): Factored out from walk_path.
(walk_path): Replaced by find_executable.
(_gpgme_get_gpg_path, _gpgme_get_gpgconf_path): Use find_executable.
--
This should help to locate GnuPG on MacOS systems where
it is not part of the PATH environment variable and
should reduce the need to have fixed path known
at GPGME compile time.
mailvelope/issue699
Diffstat (limited to 'src')
-rw-r--r-- | src/posix-util.c | 69 |
1 files changed, 49 insertions, 20 deletions
diff --git a/src/posix-util.c b/src/posix-util.c index 5c4f3390..cf066d69 100644 --- a/src/posix-util.c +++ b/src/posix-util.c @@ -79,27 +79,18 @@ _gpgme_set_override_inst_dir (const char *dir) return 0; } - -/* Find an executable program PGM along the envvar PATH. */ +/* Find an executable program in the colon seperated paths. */ static char * -walk_path (const char *pgm) +walk_path_str (const char *path_str, const char *pgm) { - const char *orig_path, *path, *s; + const char *path, *s; char *fname, *p; -#ifdef FIXED_SEARCH_PATH - orig_path = FIXED_SEARCH_PATH; -#else - orig_path = getenv ("PATH"); - if (!orig_path) - orig_path = "/bin:/usr/bin"; -#endif - - fname = malloc (strlen (orig_path) + 1 + strlen (pgm) + 1); + fname = malloc (strlen (path_str) + 1 + strlen (pgm) + 1); if (!fname) return NULL; - path = orig_path; + path = path_str; for (;;) { for (s=path, p=fname; *s && *s != ':'; s++, p++) @@ -114,14 +105,52 @@ walk_path (const char *pgm) path = s + 1; } - _gpgme_debug (NULL, DEBUG_ENGINE, -1, NULL, NULL, NULL, - "gpgme-walk_path: '%s' not found in '%s'", - pgm, orig_path); - free (fname); return NULL; } +/* Find an executable program PGM. */ +static char * +find_executable (const char *pgm) +{ + const char *orig_path; + char *ret; + +#ifdef FIXED_SEARCH_PATH + orig_path = FIXED_SEARCH_PATH; +#else + orig_path = getenv ("PATH"); + if (!orig_path) + orig_path = "/bin:/usr/bin"; +#endif + ret = walk_path_str (orig_path, pgm); + + if (!ret) + { + _gpgme_debug (NULL, DEBUG_ENGINE, -1, NULL, NULL, NULL, + "gpgme-walk_path: '%s' not found in '%s'", + pgm, orig_path); + } +#ifdef __APPLE__ + /* On apple, especially when started through gpgme-json via + the browser interface we should look into some additional + fallback paths. */ + const char *additional_path = "/usr/local/bin:/usr/local/MacGPG2/bin"; + if (!ret) + { + ret = walk_path_str (additional_path, pgm); + } + if (!ret) + { + _gpgme_debug (NULL, DEBUG_ENGINE, -1, NULL, NULL, NULL, + "gpgme-walk_path: '%s' not found in '%s'", + pgm, additional_path); + } +#endif + + return ret; +} + /* Return the full file name of the GPG binary. This function is used if gpgconf was not found and thus it can be assumed that gpg2 is @@ -130,7 +159,7 @@ walk_path (const char *pgm) char * _gpgme_get_gpg_path (void) { - return walk_path (default_gpg_name? default_gpg_name : "gpg"); + return find_executable (default_gpg_name? default_gpg_name : "gpg"); } @@ -139,7 +168,7 @@ _gpgme_get_gpg_path (void) char * _gpgme_get_gpgconf_path (void) { - return walk_path (default_gpgconf_name? default_gpgconf_name : "gpgconf"); + return find_executable (default_gpgconf_name? default_gpgconf_name : "gpgconf"); } /* See w32-util.c */ |