git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH/RFC] alias: use run_command api to execute aliases
@ 2011-01-06 19:13 Erik Faye-Lund
  2011-01-06 19:41 ` Jonathan Nieder
  2011-01-07  1:17 ` [msysGit] " Johannes Schindelin
  0 siblings, 2 replies; 7+ messages in thread
From: Erik Faye-Lund @ 2011-01-06 19:13 UTC (permalink / raw)
  To: git; +Cc: msysgit, j6t

On Windows, system() executes with cmd.exe instead of /bin/sh. This
means that aliases currently has to be batch-scripts instead of
bourne-scripts. On top of that, cmd.exe does not handle single quotes,
which is what the code-path currently uses to handle arguments with
spaces.

To solve both problems in one go, use run_command_v_opt() to execute
the alias. It already does the right thing prepend "sh -c " to the
alias.

Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
---

This fixes issue 553 in the msysGit issue tracker.

 git.c |   25 +++++++++++++------------
 1 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/git.c b/git.c
index 68334f6..5b0b9d8 100644
--- a/git.c
+++ b/git.c
@@ -177,19 +177,20 @@ static int handle_alias(int *argcp, const char ***argv)
 	alias_string = alias_lookup(alias_command);
 	if (alias_string) {
 		if (alias_string[0] == '!') {
+			const char **alias_argv;
+			int i;
+
 			commit_pager_choice();
-			if (*argcp > 1) {
-				struct strbuf buf;
-
-				strbuf_init(&buf, PATH_MAX);
-				strbuf_addstr(&buf, alias_string);
-				sq_quote_argv(&buf, (*argv) + 1, PATH_MAX);
-				free(alias_string);
-				alias_string = buf.buf;
-			}
-			trace_printf("trace: alias to shell cmd: %s => %s\n",
-				     alias_command, alias_string + 1);
-			ret = system(alias_string + 1);
+
+			/* build alias_argv */
+			alias_argv = malloc(sizeof(char *) * *argcp + 1);
+			alias_argv[0] = alias_string + 1;
+			for (i = 1; i < *argcp; ++i)
+				alias_argv[i] = (*argv)[i];
+			alias_argv[*argcp] = NULL;
+
+			ret = run_command_v_opt(alias_argv, RUN_USING_SHELL);
+
 			if (ret >= 0 && WIFEXITED(ret) &&
 			    WEXITSTATUS(ret) != 127)
 				exit(WEXITSTATUS(ret));
-- 
1.7.3.3.585.g74f6e

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH/RFC] alias: use run_command api to execute aliases
  2011-01-06 19:13 [PATCH/RFC] alias: use run_command api to execute aliases Erik Faye-Lund
@ 2011-01-06 19:41 ` Jonathan Nieder
  2011-01-06 19:52   ` Erik Faye-Lund
  2011-01-07  1:17 ` [msysGit] " Johannes Schindelin
  1 sibling, 1 reply; 7+ messages in thread
From: Jonathan Nieder @ 2011-01-06 19:41 UTC (permalink / raw)
  To: Erik Faye-Lund; +Cc: git, msysgit, j6t

Erik Faye-Lund wrote:

> --- a/git.c
> +++ b/git.c
> @@ -177,19 +177,20 @@ static int handle_alias(int *argcp, const char ***argv)
[...]
> -			trace_printf("trace: alias to shell cmd: %s => %s\n",
> -				     alias_command, alias_string + 1);

Replaced by

	trace: run_command: ...

(followed by "trace: exec: ..." on non-Windows (execv_shell_cmd)).
Ok.

> -			ret = system(alias_string + 1);
> +
> +			/* build alias_argv */
> +			alias_argv = malloc(sizeof(char *) * *argcp + 1);

This seems to be missing parentheses, so valgrind will complain
except on 8-bit systems. ;-)

What if malloc fails?

> +			alias_argv[0] = alias_string + 1;
> +			for (i = 1; i < *argcp; ++i)
> +				alias_argv[i] = (*argv)[i];
> +			alias_argv[*argcp] = NULL;

Nit: all these *argcp are noisy.

> +
> +			ret = run_command_v_opt(alias_argv, RUN_USING_SHELL);
> +
>  			if (ret >= 0 && WIFEXITED(ret) &&

The return value from run_command and from system do not mean
the same thing.

>  			die("Failed to run '%s' when expanding alias '%s'",
>  			    alias_string + 1, alias_command);

run_command already prints an error message, but this one still
seems useful since it mentions the alias.

Except as noted above,
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>

Thanks.

diff --git a/git.c b/git.c
index 5b0b9d8..dbf061d 100644
--- a/git.c
+++ b/git.c
@@ -178,22 +178,20 @@ static int handle_alias(int *argcp, const char ***argv)
 	if (alias_string) {
 		if (alias_string[0] == '!') {
 			const char **alias_argv;
-			int i;
+			int argc = *argcp, i;
 
 			commit_pager_choice();
 
-			/* build alias_argv */
-			alias_argv = malloc(sizeof(char *) * *argcp + 1);
+			alias_argv = xmalloc(sizeof(*alias_argv) * (argc + 1));
 			alias_argv[0] = alias_string + 1;
-			for (i = 1; i < *argcp; ++i)
+			for (i = 1; i < argc; ++i)
 				alias_argv[i] = (*argv)[i];
-			alias_argv[*argcp] = NULL;
+			alias_argv[argc] = NULL;
 
 			ret = run_command_v_opt(alias_argv, RUN_USING_SHELL);
+			if (ret >= 0)	/* normal exit */
+				exit(ret);
 
-			if (ret >= 0 && WIFEXITED(ret) &&
-			    WEXITSTATUS(ret) != 127)
-				exit(WEXITSTATUS(ret));
 			die("Failed to run '%s' when expanding alias '%s'",
 			    alias_string + 1, alias_command);
 		}

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH/RFC] alias: use run_command api to execute aliases
  2011-01-06 19:41 ` Jonathan Nieder
@ 2011-01-06 19:52   ` Erik Faye-Lund
  0 siblings, 0 replies; 7+ messages in thread
From: Erik Faye-Lund @ 2011-01-06 19:52 UTC (permalink / raw)
  To: Jonathan Nieder; +Cc: git, msysgit, j6t

On Thu, Jan 6, 2011 at 8:41 PM, Jonathan Nieder <jrnieder@gmail.com> wrote:
> Erik Faye-Lund wrote:
>
>> --- a/git.c
>> +++ b/git.c
>> @@ -177,19 +177,20 @@ static int handle_alias(int *argcp, const char ***argv)
> [...]
>> -                     trace_printf("trace: alias to shell cmd: %s => %s\n",
>> -                                  alias_command, alias_string + 1);
>
> Replaced by
>
>        trace: run_command: ...
>
> (followed by "trace: exec: ..." on non-Windows (execv_shell_cmd)).
> Ok.
>
>> -                     ret = system(alias_string + 1);
>> +
>> +                     /* build alias_argv */
>> +                     alias_argv = malloc(sizeof(char *) * *argcp + 1);
>
> This seems to be missing parentheses, so valgrind will complain
> except on 8-bit systems. ;-)
>
> What if malloc fails?
>

2x whoops :)

>> +                     alias_argv[0] = alias_string + 1;
>> +                     for (i = 1; i < *argcp; ++i)
>> +                             alias_argv[i] = (*argv)[i];
>> +                     alias_argv[*argcp] = NULL;
>
> Nit: all these *argcp are noisy.
>

Yes. Fetching argc once is cleaner, thanks.

>> +
>> +                     ret = run_command_v_opt(alias_argv, RUN_USING_SHELL);
>> +
>>                       if (ret >= 0 && WIFEXITED(ret) &&
>
> The return value from run_command and from system do not mean
> the same thing.
>

Yet another "whoops" :)

>>                       die("Failed to run '%s' when expanding alias '%s'",
>>                           alias_string + 1, alias_command);
>
> run_command already prints an error message, but this one still
> seems useful since it mentions the alias.
>
> Except as noted above,
> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
>

Thanks, I agree with all your comments. But why did you remove the "/*
build alias_argv */"-comment? :)

v2 coming up!

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [msysGit] [PATCH/RFC] alias: use run_command api to execute aliases
  2011-01-06 19:13 [PATCH/RFC] alias: use run_command api to execute aliases Erik Faye-Lund
  2011-01-06 19:41 ` Jonathan Nieder
@ 2011-01-07  1:17 ` Johannes Schindelin
  2011-01-07 14:24   ` Erik Faye-Lund
  1 sibling, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2011-01-07  1:17 UTC (permalink / raw)
  To: Erik Faye-Lund; +Cc: git, msysgit, j6t

Hi,

On Thu, 6 Jan 2011, Erik Faye-Lund wrote:

> On Windows, system() executes with cmd.exe instead of /bin/sh. This
> means that aliases currently has to be batch-scripts instead of
> bourne-scripts. On top of that, cmd.exe does not handle single quotes,
> which is what the code-path currently uses to handle arguments with
> spaces.
> 
> To solve both problems in one go, use run_command_v_opt() to execute
> the alias. It already does the right thing prepend "sh -c " to the
> alias.

Would this not break setups where aliases were defined to execute batch 
scripts?

If this is true, I'm of two minds here.

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [msysGit] [PATCH/RFC] alias: use run_command api to execute aliases
  2011-01-07  1:17 ` [msysGit] " Johannes Schindelin
@ 2011-01-07 14:24   ` Erik Faye-Lund
  2011-01-07 14:51     ` Johannes Schindelin
  0 siblings, 1 reply; 7+ messages in thread
From: Erik Faye-Lund @ 2011-01-07 14:24 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git, msysgit, j6t

On Fri, Jan 7, 2011 at 2:17 AM, Johannes Schindelin
<Johannes.Schindelin@gmx.de> wrote:
> Hi,
>
> On Thu, 6 Jan 2011, Erik Faye-Lund wrote:
>
>> On Windows, system() executes with cmd.exe instead of /bin/sh. This
>> means that aliases currently has to be batch-scripts instead of
>> bourne-scripts. On top of that, cmd.exe does not handle single quotes,
>> which is what the code-path currently uses to handle arguments with
>> spaces.
>>
>> To solve both problems in one go, use run_command_v_opt() to execute
>> the alias. It already does the right thing prepend "sh -c " to the
>> alias.
>
> Would this not break setups where aliases were defined to execute batch
> scripts?
>
> If this is true, I'm of two minds here.
>

It would indeed, but I wouldn't worry TOO much about it. We've clearly
told the users that Git for Windows is a tool that you have to be
willing to work on to use.

But I'm kind of of two minds here myself, but for a slightly different
reason: I think Git for Windows SHOULD use cmd.exe to execute scripts.
We should be able to lose the msys-environment and still have the
basic functionality working. In that sense, this is a step in the
wrong direction. But I'd rather have all code use the same code-path
to execute scripts, and make a bit switch to cmd.exe together with
porting all supplied scripts to batch-files some time in the future.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [msysGit] [PATCH/RFC] alias: use run_command api to execute aliases
  2011-01-07 14:24   ` Erik Faye-Lund
@ 2011-01-07 14:51     ` Johannes Schindelin
  2011-01-07 19:21       ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2011-01-07 14:51 UTC (permalink / raw)
  To: Erik Faye-Lund; +Cc: git, msysgit, j6t

Hi,

On Fri, 7 Jan 2011, Erik Faye-Lund wrote:

> On Fri, Jan 7, 2011 at 2:17 AM, Johannes Schindelin
> <Johannes.Schindelin@gmx.de> wrote:
>
> > On Thu, 6 Jan 2011, Erik Faye-Lund wrote:
> >
> >> On Windows, system() executes with cmd.exe instead of /bin/sh. This 
> >> means that aliases currently has to be batch-scripts instead of 
> >> bourne-scripts. On top of that, cmd.exe does not handle single 
> >> quotes, which is what the code-path currently uses to handle 
> >> arguments with spaces.
> >>
> >> To solve both problems in one go, use run_command_v_opt() to execute 
> >> the alias. It already does the right thing prepend "sh -c " to the 
> >> alias.
> >
> > Would this not break setups where aliases were defined to execute 
> > batch scripts?
> >
> > If this is true, I'm of two minds here.
> 
> It would indeed, but I wouldn't worry TOO much about it. We've clearly 
> told the users that Git for Windows is a tool that you have to be 
> willing to work on to use.
> 
> But I'm kind of of two minds here myself, but for a slightly different 
> reason: I think Git for Windows SHOULD use cmd.exe to execute scripts. 
> We should be able to lose the msys-environment and still have the basic 
> functionality working. In that sense, this is a step in the wrong 
> direction. But I'd rather have all code use the same code-path to 
> execute scripts, and make a bit switch to cmd.exe together with porting 
> all supplied scripts to batch-files some time in the future.

Okay, strike my objections, I agree now. Feel free to apply!

Thanks,
Dscho

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [msysGit] [PATCH/RFC] alias: use run_command api to execute aliases
  2011-01-07 14:51     ` Johannes Schindelin
@ 2011-01-07 19:21       ` Junio C Hamano
  0 siblings, 0 replies; 7+ messages in thread
From: Junio C Hamano @ 2011-01-07 19:21 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: Erik Faye-Lund, git, msysgit, j6t

Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:

>> But I'm kind of of two minds here myself, but for a slightly different 
>> reason: I think Git for Windows SHOULD use cmd.exe to execute scripts. 
>> We should be able to lose the msys-environment and still have the basic 
>> functionality working. In that sense, this is a step in the wrong 
>> direction. But I'd rather have all code use the same code-path to 
>> execute scripts, and make a bit switch to cmd.exe together with porting 
>> all supplied scripts to batch-files some time in the future.
>
> Okay, strike my objections, I agree now. Feel free to apply!

FWIW, I agree with Erik's reasoning, too.
Thanks, both.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-01-07 19:22 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-06 19:13 [PATCH/RFC] alias: use run_command api to execute aliases Erik Faye-Lund
2011-01-06 19:41 ` Jonathan Nieder
2011-01-06 19:52   ` Erik Faye-Lund
2011-01-07  1:17 ` [msysGit] " Johannes Schindelin
2011-01-07 14:24   ` Erik Faye-Lund
2011-01-07 14:51     ` Johannes Schindelin
2011-01-07 19:21       ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).