git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] add-interactive: reject malformed numerical input
@ 2025-08-30 11:31 Seonghyeon Cho (조성현) via GitGitGadget
  2025-09-02  9:07 ` Patrick Steinhardt
  0 siblings, 1 reply; 5+ messages in thread
From: Seonghyeon Cho (조성현) via GitGitGadget @ 2025-08-30 11:31 UTC (permalink / raw)
  To: git; +Cc: Seonghyeon Cho (조성현), Seonghyeon Cho

From: Seonghyeon Cho <seonghyeoncho96@gmail.com>

The list-and-choose interface accepts malformed input such as "2m3" and
interprets it as "2-", silently selecting a range to the end. This is
misleading and makes it easy to select unintended items.

Reject such input by treating it as invalid.

Signed-off-by: Seonghyeon Cho <seonghyeoncho96@gmail.com>
---
    add-interactive: reject malformed numerical input

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2044%2Fsh-cho%2Freject-malformed-input-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2044/sh-cho/reject-malformed-input-v1
Pull-Request: https://github.com/git/git/pull/2044

 add-interactive.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/add-interactive.c b/add-interactive.c
index 3e692b47ec..86ff632288 100644
--- a/add-interactive.c
+++ b/add-interactive.c
@@ -396,6 +396,8 @@ static ssize_t list_and_choose(struct add_i_state *s,
 					if (endp != p + sep)
 						from = -1;
 				}
+				else
+					from = -1;
 			}
 
 			if (p[sep])

base-commit: 6ad802182101d622e6a4132f48292ddfa79e2024
-- 
gitgitgadget

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

* Re: [PATCH] add-interactive: reject malformed numerical input
  2025-08-30 11:31 [PATCH] add-interactive: reject malformed numerical input Seonghyeon Cho (조성현) via GitGitGadget
@ 2025-09-02  9:07 ` Patrick Steinhardt
  2025-09-07 12:24   ` Seonghyeon Cho
  0 siblings, 1 reply; 5+ messages in thread
From: Patrick Steinhardt @ 2025-09-02  9:07 UTC (permalink / raw)
  To: Seonghyeon Cho (조성현) via GitGitGadget
  Cc: git, Seonghyeon Cho (조성현)

On Sat, Aug 30, 2025 at 11:31:35AM +0000, Seonghyeon Cho (조성현) via GitGitGadget wrote:
> From: Seonghyeon Cho <seonghyeoncho96@gmail.com>
> 
> The list-and-choose interface accepts malformed input such as "2m3" and
> interprets it as "2-", silently selecting a range to the end. This is
> misleading and makes it easy to select unintended items.
> 
> Reject such input by treating it as invalid.

Okay, that does feel fishy indeed. It would be good though to have a
test case that demonstrates the new behaviour and at the same time
ensures that we don't regress in the future. You can have a look at
"t3701-add-interactive.sh", which has a bunch of other tests for this
command, as well.

In general though we're not doing a good job here of error checking. We
don't at all verify whether `strtoul()` returned an error, for example
ERANGE. So if a user passes an integer that exceeds whatever we can
store in an `unsigned long` we'll silently proceed with a bogus result,
won't we?

Ideally, we'd use a saner interface to parse these integers, like for
example our own `git_parse_ulong()`. But unfortunately, that interface
does not handle the case where we only want to parse a substring in a
longer string. Too bad.

> diff --git a/add-interactive.c b/add-interactive.c
> index 3e692b47ec..86ff632288 100644
> --- a/add-interactive.c
> +++ b/add-interactive.c
> @@ -396,6 +396,8 @@ static ssize_t list_and_choose(struct add_i_state *s,
>  					if (endp != p + sep)
>  						from = -1;
>  				}
> +				else
> +					from = -1;
>  			}

Coding style: the `else` should sit on the same line as the closing
curly brace. And furthermore, if one of the branches of an if-else chain
requires curly braces, then all branches should have curly braces.

Patrick

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

* Re: [PATCH] add-interactive: reject malformed numerical input
  2025-09-02  9:07 ` Patrick Steinhardt
@ 2025-09-07 12:24   ` Seonghyeon Cho
  2025-09-08  4:04     ` Patrick Steinhardt
  0 siblings, 1 reply; 5+ messages in thread
From: Seonghyeon Cho @ 2025-09-07 12:24 UTC (permalink / raw)
  To: Patrick Steinhardt
  Cc: Seonghyeon Cho (조성현) via GitGitGadget, git

On Tue, Sep 02, 2025 at 11:07:59AM +0200, Patrick Steinhardt wrote:
> Okay, that does feel fishy indeed. It would be good though to have a
> test case that demonstrates the new behaviour and at the same time
> ensures that we don't regress in the future. You can have a look at
> "t3701-add-interactive.sh", which has a bunch of other tests for this
> command, as well.

Okay, I'll add tests.

> In general though we're not doing a good job here of error checking. We
> don't at all verify whether `strtoul()` returned an error, for example
> ERANGE. So if a user passes an integer that exceeds whatever we can
> store in an `unsigned long` we'll silently proceed with a bogus result,
> won't we?
> 
> Ideally, we'd use a saner interface to parse these integers, like for
> example our own `git_parse_ulong()`. But unfortunately, that interface
> does not handle the case where we only want to parse a substring in a
> longer string. Too bad.

Good point. Would you prefer I introduce new parse method here, or
should this be handled in separate patch?

> Coding style: the `else` should sit on the same line as the closing
> curly brace. And furthermore, if one of the branches of an if-else chain
> requires curly braces, then all branches should have curly braces.

Ok, I'll fix coding styles.

Thanks,
Seonghyeon


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

* Re: [PATCH] add-interactive: reject malformed numerical input
  2025-09-07 12:24   ` Seonghyeon Cho
@ 2025-09-08  4:04     ` Patrick Steinhardt
  2025-09-08 13:31       ` Seonghyeon Cho
  0 siblings, 1 reply; 5+ messages in thread
From: Patrick Steinhardt @ 2025-09-08  4:04 UTC (permalink / raw)
  To: aLaz7yCXWGG2_oP_
  Cc: Seonghyeon Cho (조성현) via GitGitGadget, git

On Sun, Sep 07, 2025 at 09:24:09PM +0900, Seonghyeon Cho wrote:
> On Tue, Sep 02, 2025 at 11:07:59AM +0200, Patrick Steinhardt wrote:
> > In general though we're not doing a good job here of error checking. We
> > don't at all verify whether `strtoul()` returned an error, for example
> > ERANGE. So if a user passes an integer that exceeds whatever we can
> > store in an `unsigned long` we'll silently proceed with a bogus result,
> > won't we?
> > 
> > Ideally, we'd use a saner interface to parse these integers, like for
> > example our own `git_parse_ulong()`. But unfortunately, that interface
> > does not handle the case where we only want to parse a substring in a
> > longer string. Too bad.
> 
> Good point. Would you prefer I introduce new parse method here, or
> should this be handled in separate patch?

I don't think that would need to be part of your patch series. But we
should have proper error checking for `strtoul()` if we're already
improving this code.

Patrick

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

* Re: [PATCH] add-interactive: reject malformed numerical input
  2025-09-08  4:04     ` Patrick Steinhardt
@ 2025-09-08 13:31       ` Seonghyeon Cho
  0 siblings, 0 replies; 5+ messages in thread
From: Seonghyeon Cho @ 2025-09-08 13:31 UTC (permalink / raw)
  To: Patrick Steinhardt
  Cc: aLaz7yCXWGG2_oP_,
	Seonghyeon Cho (조성현) via GitGitGadget, git

On Mon, Sep 08, 2025 at 06:04:22AM +0200, Patrick Steinhardt wrote:
> I don't think that would need to be part of your patch series. But we
> should have proper error checking for `strtoul()` if we're already
> improving this code.

Understood. I'll handle it too.

Thanks,
Seonghyeon


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

end of thread, other threads:[~2025-09-08 13:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-30 11:31 [PATCH] add-interactive: reject malformed numerical input Seonghyeon Cho (조성현) via GitGitGadget
2025-09-02  9:07 ` Patrick Steinhardt
2025-09-07 12:24   ` Seonghyeon Cho
2025-09-08  4:04     ` Patrick Steinhardt
2025-09-08 13:31       ` Seonghyeon Cho

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).