Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1240199
| Path | csiph.com!eternal-september.org!feeder.eternal-september.org!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | Ingo Molnar <mingo@kernel.org> |
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] string: Fix strscpy() uninitialized data copy bug |
| Date | Tue, 06 Oct 2015 09:30:02 +0200 |
| Message-ID | <qguRc-7Jr-3@gated-at.bofh.it> (permalink) |
| References | <qgg1P-30J-3@gated-at.bofh.it> <qggOd-4bm-5@gated-at.bofh.it> <qggOd-4bm-7@gated-at.bofh.it> <qggOd-4bm-3@gated-at.bofh.it> <qggXV-4mO-37@gated-at.bofh.it> <qgj9o-7qa-17@gated-at.bofh.it> |
| X-Original-To | Chris Metcalf <cmetcalf@ezchip.com> |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=hXZkkRnWpV2IVAntNKpA/G8iJQenXZvFMQ/e1F64nSQ=; b=VLOlfP/qEtw13XOwTLkXeJCXlLgrGCQmThkJO2zqtojneKJjcR/LJ94uluL4EyN4pE N6ez0z/gFacwB2ByREx4dqzAoepmPP4dNRddCaYeoGPCLrcIU8I8kMOucYyk+2sb9lGC gEIa5bNyY8ISaMTUB+fiK2KcixW1pOYfly6tJQnDXtCZ7WD9SJ/Rr/w7gZZ5fmlSRHCV JQ4Xn8dISHPrUNA0wxJp4g+3aXebz75sJbP8eSD6dHlRunjqwNBK40hHM2EGt9wOk6WK e2k7Xgm31C9Z9oIoFsuTrYSyQsqmiCOpf9433bz+ZY/JeT+/Hk0vmfi16QhVicheyXT8 kKqg== |
| X-Received | by 10.194.133.129 with SMTP id pc1mr34516995wjb.148.1444116114142; Tue, 06 Oct 2015 00:21:54 -0700 (PDT) |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset=us-ascii |
| Content-Disposition | inline |
| User-Agent | Mutt/1.5.23 (2014-03-12) |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 64 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Linus Torvalds <torvalds@linux-foundation.org>, Alexey Dobriyan <adobriyan@gmail.com>, Linux Kernel Mailing List <linux-kernel@vger.kernel.org>, Peter Zijlstra <a.p.zijlstra@chello.nl>, Thomas Gleixner <tglx@linutronix.de>, "H. Peter Anvin" <hpa@zytor.com>, Borislav Petkov <bp@alien8.de> |
| X-Original-Date | Tue, 6 Oct 2015 09:21:51 +0200 |
| X-Original-Message-ID | <20151006072151.GA10672@gmail.com> |
| X-Original-References | <CACVxJT9vKQ2hbCXYBNocbA-CNYGan+fkg=98s3PpKGdWtkwDdQ@mail.gmail.com> <CA+55aFyTVJfCt00gYJpiQW5kqPaRGJ93JmfRRni-73zCf5ivqg@mail.gmail.com> <20151005162226.GA10993@gmail.com> <20151005162802.GA11474@gmail.com> <20151005163641.GA11635@gmail.com> <5612C749.8090308@ezchip.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1240199 |
Show key headers only | View raw
* Chris Metcalf <cmetcalf@ezchip.com> wrote:
> Unfortunately using memset() like that will break on big-endian machines.
doh ... and I somehow convinced myself that it was endian safe ;-)
> [...] I always have to go back and play around with the word-at-a-time.h
> definitions to get this right, but I think it's possible that the "data" itself
> has the mask to clear the unwanted bytes, i.e. you could do something like the
> following (untested).
>
> I'm still not totally convinced it's necessary, as programmers should generally
> assume anything beyond the end of a copied string is garbage anyway, and since
> we're not copying it to userspace we're not exposing any possibly secure data.
>
> Races shouldn't be a concern either since, after all, there is already a window
> where we may have overwritten the NUL end of an earlier shorter string, and now
> a racy copy from the partially-written dest buf could walk right off the end of
> the buffer itself, so you'd already better not be doing that.
>
> But, all that said, I'm not opposed to a simple fix to avoid carrying along the
> uninitialized bytes from beyond the end of the source string, since it does seem
> a bit cleaner, even if I can't put my finger in a reason why it would actually
> matter.
So it would matter for more advanced sharing ABIs: for example if there's an
mlock()-ed area registered on the kernel side as well as kernel accessible memory,
and if we do an strscpy() to such a target area, we don't want to leak
uninitialized data to user-space.
(This is not theoretical, the perf ring-buffer is such a construct for example.)
So IMHO this is a quality of implementation issue that we should fix.
> diff --git a/lib/string.c b/lib/string.c
> index 8dbb7b1eab50..ba64f4e0382d 100644
> --- a/lib/string.c
> +++ b/lib/string.c
> @@ -203,12 +203,13 @@ ssize_t strscpy(char *dest, const char *src, size_t count)
> unsigned long c, data;
> c = *(unsigned long *)(src+res);
> - *(unsigned long *)(dest+res) = c;
> if (has_zero(c, &data, &constants)) {
> data = prep_zero_mask(c, data, &constants);
> data = create_zero_mask(data);
> + *(unsigned long *)(dest+res) = c & data;
> return res + find_zero(data);
> }
> + *(unsigned long *)(dest+res) = c;
> res += sizeof(unsigned long);
> count -= sizeof(unsigned long);
> max -= sizeof(unsigned long);
Looks good to me!
Thanks,
Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [PATCH] string: Improve the generic strlcpy() implementation Alexey Dobriyan <adobriyan@gmail.com> - 2015-10-05 17:40 +0200
Re: [PATCH] string: Improve the generic strlcpy() implementation Ingo Molnar <mingo@kernel.org> - 2015-10-05 18:20 +0200
Re: [PATCH] string: Improve the generic strlcpy() implementation Ingo Molnar <mingo@kernel.org> - 2015-10-05 18:20 +0200
Re: [PATCH] string: Improve the generic strlcpy() implementation Ingo Molnar <mingo@kernel.org> - 2015-10-05 18:30 +0200
[PATCH] string: Fix strscpy() uninitialized data copy bug Ingo Molnar <mingo@kernel.org> - 2015-10-05 18:40 +0200
Re: [PATCH] string: Fix strscpy() uninitialized data copy bug Chris Metcalf <cmetcalf@ezchip.com> - 2015-10-05 21:00 +0200
Re: [PATCH] string: Fix strscpy() uninitialized data copy bug Ingo Molnar <mingo@kernel.org> - 2015-10-06 09:30 +0200
Re: [PATCH] string: Improve the generic strlcpy() implementation Ingo Molnar <mingo@kernel.org> - 2015-10-05 18:30 +0200
Re: [PATCH] string: Improve the generic strlcpy() implementation Linus Torvalds <torvalds@linux-foundation.org> - 2015-10-05 22:50 +0200
Re: [PATCH] strscpy: zero any trailing garbage bytes in the destination Ingo Molnar <mingo@kernel.org> - 2015-10-07 09:30 +0200
csiph-web