From: Jonathan Nieder <jrnieder@gmail.com>
To: Frans Klaver <fransklaver@gmail.com>
Cc: git@vger.kernel.org, "Junio C. Hamano" <gitster@pobox.com>,
Johannes Sixt <j6t@kdbg.org>
Subject: Re: [PATCH 3/5] run-command: Elaborate execvp error checking
Date: Tue, 24 Jan 2012 17:22:39 -0600 [thread overview]
Message-ID: <20120124232239.GG8222@burratino> (raw)
In-Reply-To: <1327444346-6243-4-git-send-email-fransklaver@gmail.com>
Klaver wrote:
> The interpretation of errors from execvp was rather terse. For user
> convenience communication of the nature of the error can be improved.
Could you give an example?
[...]
> --- a/run-command.c
> +++ b/run-command.c
> @@ -2,6 +2,7 @@
> #include "run-command.h"
> #include "exec_cmd.h"
> #include "argv-array.h"
> +#include "dir.h"
>
> static inline void close_pair(int fd[2])
> {
> @@ -134,6 +135,140 @@ static int wait_or_whine(pid_t pid, const char *argv0, int silent_exec_failure)
> return code;
> }
>
> +#ifndef WIN32
Not related to this patch, but I wonder if there should be a separate
run-command-unix.c file so these ifdefs would no longer be necessary.
What happens on Windows?
> +static void die_file_error(const char *file, int err)
> +{
> + die("cannot exec '%s': %s", file, strerror(err));
> +}
I suspect it might be clearer to use die() inline in the two call
sites so the reader does not have to figure out the calling
convention.
> +
> +static char *get_interpreter(const char *first_line)
> +{
> + struct strbuf sb = STRBUF_INIT;
> + size_t start = strspn(first_line + 2, " \t") + 2;
> + size_t end = strcspn(first_line + start, " \t\r\n") + start;
> +
> + if (start >= end)
> + return NULL;
> +
> + strbuf_add(&sb, first_line + start, end - start);
> + return strbuf_detach(&sb, NULL);
> +}
What does this function do? What happens if first_line doesn't start
with "#!"? What should happen when there is a newline instead of a
command name? How about commands with quoting characters like " and
backslash --- are the semantics portable in these cases?
No need to use a strbuf here: xmemdupz would take care of the
allocation and copy more simply.
> +static void inspect_failure(const char *argv0, int silent_exec_failure)
> +{
> + int err = errno;
> + struct strbuf sb = STRBUF_INIT;
> +
> + /* errors not related to path */
> + if (errno == E2BIG || errno == ENOMEM)
> + die_file_error(argv0, err);
> +
> + if (strchr(argv0, '/')) {
> + if (file_exists(argv0)) {
> + strbuf_add(&sb, argv0, strlen(argv0));
> + inspect_file(&sb, err, argv0);
> + }
> + } else {
> + char *path, *next;
> + path = getenv("PATH");
I wonder if it's possible to rearrange this code to avoid deep
nesting. What does the function do, anyway? (If the reader has to
ask, it needs a comment or to be renamed.)
I guess the idea is to diagnose after the fact why execvp failed.
Might be simplest like this:
To diagnose execvp failure:
if filename does not contain a '/':
if we can't find it on the search path:
That's the problem, dummy!
replace filename with full path
if file does not exist:
just report strerror(errno)
if not executable:
...
if interpreter does not exist:
...
if interpreter not executable:
...
otherwise, just report strerror(errno)
with a separate function to find a command on the PATH, complaining
when it encounters an unsearchable entry.
Thanks for a fun read.
Jonathan
next prev parent reply other threads:[~2012-01-24 23:22 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-24 22:32 [PATCH 0/6 v3] Add execvp failure diagnostics Frans Klaver
2012-01-24 22:32 ` [PATCH 1/5] t0061: Fix incorrect indentation Frans Klaver
2012-01-24 22:39 ` Junio C Hamano
2012-01-24 22:40 ` Jonathan Nieder
2012-01-25 6:27 ` Frans Klaver
2012-01-25 7:00 ` Junio C Hamano
2012-01-25 7:08 ` Frans Klaver
2012-01-25 8:08 ` Frans Klaver
2012-01-24 22:32 ` [PATCH 2/5] t0061: Add tests Frans Klaver
2012-01-24 22:56 ` Jonathan Nieder
2012-01-25 6:47 ` Frans Klaver
2012-01-24 22:32 ` [PATCH 3/5] run-command: Elaborate execvp error checking Frans Klaver
2012-01-24 23:22 ` Jonathan Nieder [this message]
2012-01-25 7:09 ` Frans Klaver
2012-01-25 19:22 ` Jonathan Nieder
2012-01-25 22:48 ` Frans Klaver
2012-01-25 19:03 ` Johannes Sixt
2012-01-25 22:59 ` Frans Klaver
2012-01-24 22:32 ` [PATCH 4/5] run-command: Warn if PATH entry cannot be searched Frans Klaver
2012-01-24 22:32 ` [PATCH 5/5] run-command: Error out if interpreter not found Frans Klaver
2012-01-24 23:24 ` Jonathan Nieder
2012-01-25 7:12 ` Frans Klaver
2012-01-25 18:55 ` Johannes Sixt
2012-01-25 23:09 ` Frans Klaver
2012-01-26 19:32 ` Junio C Hamano
2012-01-27 8:29 ` Frans Klaver
2012-01-27 8:48 ` Jonathan Nieder
2012-01-27 9:11 ` Frans Klaver
2012-01-27 9:41 ` Jonathan Nieder
2012-01-27 11:46 ` Frans Klaver
2012-02-04 21:31 ` Frans Klaver
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120124232239.GG8222@burratino \
--to=jrnieder@gmail.com \
--cc=fransklaver@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=j6t@kdbg.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox