From: Junio C Hamano <gitster@pobox.com>
To: randall.s.becker@rogers.com
Cc: git@vger.kernel.org, "Randall S. Becker" <rsbecker@nexbridge.com>
Subject: Re: [Fix v1] builtin/ls-files.c: add error check on lstat for modified files
Date: Mon, 01 Apr 2019 18:29:19 +0900 [thread overview]
Message-ID: <xmqq4l7ixeds.fsf@gitster-ct.c.googlers.com> (raw)
In-Reply-To: 20190217163456.17560-1-randall.s.becker@rogers.com
randall.s.becker@rogers.com writes:
> From: "Randall S. Becker" <rsbecker@nexbridge.com>
>
> The result from lstat, checking whether a file has been deleted, is now
> included priot to calling id_modified when showing modified files. Prior
s/priot/prior/
> to this fix, it is possible that files that were deleted could show up
> as being modified because the lstat error was unchecked.
>
> Reported-by: Joe Ranieri <jranieri@grammatech.com>
> Signed-off-by: Randall S. Becker <rsbecker@nexbridge.com>
> ---
> builtin/ls-files.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
The justification for the change reads quite convincing. Is it
merely "it is _possible_ ... _could_ show up", though? The code is
iterating over the in-core index, so if you add a blob at path F in
the index then remove that regular file F from the working tree,
when it is the cache entry for "F"'s turn to get inspected, lstat()
would say ENOENT, (show_deleted && err) would show tag_removed, and
ie_modified() gets a garbage &st and ie_match_stat() would say
"modified", no?
> diff --git a/builtin/ls-files.c b/builtin/ls-files.c
> index 29a8762d4..fc21f4795 100644
> --- a/builtin/ls-files.c
> +++ b/builtin/ls-files.c
> @@ -348,7 +348,7 @@ static void show_files(struct repository *repo, struct dir_struct *dir)
> err = lstat(fullname.buf, &st);
> if (show_deleted && err)
> show_ce(repo, dir, ce, fullname.buf, tag_removed);
> - if (show_modified && ie_modified(repo->index, ce, &st, 0))
> + if (show_modified && !err && ie_modified(repo->index, ce, &st, 0))
> show_ce(repo, dir, ce, fullname.buf, tag_modified);
> }
> }
And the implementation of the change looks OK.
I wonder if there is an easy way to cover this with a test or two.
Wouldn't it be just the matter of doing something like this
test_expect_success 'allow telling modified and deleted ones apart' '
>testfile &&
git add testfile &&
rm testfile &&
echo C testfile >expect &&
git ls-files -m -d -t testfile >actual &&
test_cmp expect actual
'
in some existing test file for ls-files, perhaps in t3004 (ls-files-basic)?
I went back to the original discussion of the "BUG" around mid Feb
2019, and didn't find anybody worried about backward compatibility.
As "ls-files -[dm...t]" is marked semi-deprecated, perhaps breaking
the current users does not matter that much ;-)
prev parent reply other threads:[~2019-04-01 9:29 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-17 16:34 [Fix v1] builtin/ls-files.c: add error check on lstat for modified files randall.s.becker
2019-02-17 17:04 ` Ramsay Jones
2019-02-17 17:29 ` Randall S. Becker
2019-04-01 9:29 ` Junio C Hamano [this message]
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=xmqq4l7ixeds.fsf@gitster-ct.c.googlers.com \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=randall.s.becker@rogers.com \
--cc=rsbecker@nexbridge.com \
/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;
as well as URLs for NNTP newsgroup(s).