From: Daniel Kahn Gillmor Date: Sun, 31 Jan 2016 20:39:46 +0000 (+1900) Subject: [PATCH v3 01/16] add util/search-path.{c, h} to test for executables in $PATH X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e5bf12fb836c5304f684802546f407baab228982;p=notmuch-archives.git [PATCH v3 01/16] add util/search-path.{c, h} to test for executables in $PATH --- diff --git a/f4/5f5cf1f29e1a532667dda4a452bcb074d0c2ba b/f4/5f5cf1f29e1a532667dda4a452bcb074d0c2ba new file mode 100644 index 000000000..12934b206 --- /dev/null +++ b/f4/5f5cf1f29e1a532667dda4a452bcb074d0c2ba @@ -0,0 +1,165 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by arlo.cworth.org (Postfix) with ESMTP id CBB816DE1AE0 + for ; Sun, 31 Jan 2016 12:40:10 -0800 (PST) +X-Virus-Scanned: Debian amavisd-new at cworth.org +X-Spam-Flag: NO +X-Spam-Score: 0 +X-Spam-Level: +X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] + autolearn=disabled +Received: from arlo.cworth.org ([127.0.0.1]) + by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id m5-TOeknAz40 for ; + Sun, 31 Jan 2016 12:40:09 -0800 (PST) +Received: from che.mayfirst.org (che.mayfirst.org [209.234.253.108]) + by arlo.cworth.org (Postfix) with ESMTP id E597D6DE0FB1 + for ; Sun, 31 Jan 2016 12:40:08 -0800 (PST) +Received: from fifthhorseman.net (ip-64-134-185-108.public.wayport.net + [64.134.185.108]) + by che.mayfirst.org (Postfix) with ESMTPSA id B0C9CF997 + for ; Sun, 31 Jan 2016 15:40:05 -0500 (EST) +Received: by fifthhorseman.net (Postfix, from userid 1000) + id 2B15B1FE52; Sun, 31 Jan 2016 15:40:06 -0500 (EST) +From: Daniel Kahn Gillmor +To: Notmuch Mail +Subject: [PATCH v3 01/16] add util/search-path.{c, + h} to test for executables in $PATH +Date: Sun, 31 Jan 2016 15:39:46 -0500 +Message-Id: <1454272801-23623-2-git-send-email-dkg@fifthhorseman.net> +X-Mailer: git-send-email 2.7.0.rc3 +In-Reply-To: <1454272801-23623-1-git-send-email-dkg@fifthhorseman.net> +References: <1454272801-23623-1-git-send-email-dkg@fifthhorseman.net> +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.20 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Sun, 31 Jan 2016 20:40:10 -0000 + +This is a utility function we can use to see whether an executable is +available. +--- + util/Makefile.local | 2 +- + util/search-path.c | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++ + util/search-path.h | 24 +++++++++++++++++++++++ + 3 files changed, 80 insertions(+), 1 deletion(-) + create mode 100644 util/search-path.c + create mode 100644 util/search-path.h + +diff --git a/util/Makefile.local b/util/Makefile.local +index 905f237..8b2b91b 100644 +--- a/util/Makefile.local ++++ b/util/Makefile.local +@@ -5,7 +5,7 @@ extra_cflags += -I$(srcdir)/$(dir) + + libutil_c_srcs := $(dir)/xutil.c $(dir)/error_util.c $(dir)/hex-escape.c \ + $(dir)/string-util.c $(dir)/talloc-extra.c $(dir)/zlib-extra.c \ +- $(dir)/util.c ++ $(dir)/util.c $(dir)/search-path.c + + libutil_modules := $(libutil_c_srcs:.c=.o) + +diff --git a/util/search-path.c b/util/search-path.c +new file mode 100644 +index 0000000..5eac367 +--- /dev/null ++++ b/util/search-path.c +@@ -0,0 +1,55 @@ ++#include "search-path.h" ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++ ++notmuch_bool_t ++test_for_executable(const char* exename) ++{ ++ char *c = NULL, *save = NULL, *tok; ++ size_t n; ++ int dfd = -1; ++ notmuch_bool_t ret = FALSE; ++ ++ if (strchr(exename, '/')) { ++ if (0 == access(exename, X_OK)) ++ return TRUE; ++ else ++ return FALSE; ++ } ++ ++ c = getenv("PATH"); ++ if (c) ++ c = talloc_strdup(NULL, c); ++ else { ++ n = confstr(_CS_PATH, NULL, 0); ++ c = (char*)talloc_size(NULL, n); ++ if (!c) ++ return FALSE; ++ confstr(_CS_PATH, c, n); ++ } ++ ++ tok = strtok_r(c, ":", &save); ++ while (tok) { ++ dfd = open(tok, O_DIRECTORY | O_RDONLY); ++ if (dfd != -1) { ++ if (!faccessat(dfd, exename, X_OK, 0)) { ++ ret = TRUE; ++ goto done; ++ } ++ close(dfd); ++ } ++ tok = strtok_r(NULL, ":", &save); ++ } ++done: ++ if (dfd != -1) ++ close(dfd); ++ if (c) ++ talloc_free(c); ++ return ret; ++} +diff --git a/util/search-path.h b/util/search-path.h +new file mode 100644 +index 0000000..727d0b3 +--- /dev/null ++++ b/util/search-path.h +@@ -0,0 +1,24 @@ ++#ifndef _SEARCH_PATH_H ++#define _SEARCH_PATH_H ++ ++#include "notmuch.h" ++ ++/* can an executable be found with the given name? ++ * ++ * Return TRUE only if we can find something to execute with the ++ * associated name. ++ * ++ * if the name has a '/' in it, we look for it directly with ++ * access(exename, X_OK). ++ * ++ * otherwise, we look for it in $PATH (or in confstr(_CS_PATH), if ++ * $PATH is unset). ++ * ++ * This should match the logic for execvp (as well as matching user ++ * expectations, hopefully). ++ */ ++ ++notmuch_bool_t ++test_for_executable(const char *exename); ++ ++#endif +-- +2.7.0.rc3 +