From: Marcus Karlsson <mk@acc.umu.se>
To: Jim Meyering <jim@meyering.net>
Cc: git list <git@vger.kernel.org>
Subject: Re: [PATCH] diff: avoid stack-buffer-read-overrun for very long name
Date: Tue, 17 Apr 2012 00:27:17 +0200 [thread overview]
Message-ID: <20120416222713.GA2396@moj> (raw)
In-Reply-To: <87ty0jbt5p.fsf@rho.meyering.net>
On Mon, Apr 16, 2012 at 05:20:02PM +0200, Jim Meyering wrote:
>
> Due to the use of strncpy without explicit NUL termination,
> we could end up passing names n1 or n2 that are not NUL-terminated
> to queue_diff, which requires NUL-terminated strings.
> Ensure that each is NUL terminated.
>
> Signed-off-by: Jim Meyering <meyering@redhat.com>
> ---
> After finding strncpy problems in other projects, I audited
> git for the same and found only these two.
>
> diff-no-index.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/diff-no-index.c b/diff-no-index.c
> index 3a36144..5cd3ff5 100644
> --- a/diff-no-index.c
> +++ b/diff-no-index.c
> @@ -109,6 +109,7 @@ static int queue_diff(struct diff_options *o,
> n1 = buffer1;
> strncpy(buffer1 + len1, p1.items[i1++].string,
> PATH_MAX - len1);
> + buffer1[PATH_MAX-1] = 0;
> }
>
> if (comp < 0)
> @@ -117,6 +118,7 @@ static int queue_diff(struct diff_options *o,
> n2 = buffer2;
> strncpy(buffer2 + len2, p2.items[i2++].string,
> PATH_MAX - len2);
> + buffer2[PATH_MAX-1] = 0;
> }
>
> ret = queue_diff(o, n1, n2);
> --
> 1.7.10.169.g146fe
Are there any guarantees that len1 and len2 does not exceed PATH_MAX?
Because if there aren't any then that function looks like it could need
even more improvements.
Marcus
next prev parent reply other threads:[~2012-04-16 22:38 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-16 15:20 [PATCH] diff: avoid stack-buffer-read-overrun for very long name Jim Meyering
2012-04-16 22:27 ` Marcus Karlsson [this message]
2012-04-24 16:09 ` Jim Meyering
2012-04-25 19:37 ` Junio C Hamano
2012-04-26 15:52 ` Jim Meyering
2012-04-26 16:13 ` Junio C Hamano
2012-04-26 16:21 ` Bert Wesarg
2012-04-26 16:26 ` Jim Meyering
2012-04-26 16:53 ` Bert Wesarg
2012-04-26 17:26 ` Jim Meyering
2012-04-26 16:22 ` Jim Meyering
2012-04-27 12:55 ` Andreas Ericsson
2012-04-27 15:07 ` Junio C Hamano
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=20120416222713.GA2396@moj \
--to=mk@acc.umu.se \
--cc=git@vger.kernel.org \
--cc=jim@meyering.net \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.