The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] lib/strscpy: avoid KASAN false positive
@ 2017-07-18 17:15 Andrey Ryabinin
  2017-07-18 17:14 ` Dmitry Vyukov
  2017-07-18 17:22 ` Linus Torvalds
  0 siblings, 2 replies; 13+ messages in thread
From: Andrey Ryabinin @ 2017-07-18 17:15 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Dave Jones, Linus Torvalds, Alexander Potapenko, Dmitry Vyukov,
	kasan-dev, linux-kernel, Andrey Ryabinin

strscpy() performs the word-at-a-time optimistic reads. So it may
may access the memory past the end of the object, which is perfectly fine
since strscpy() doesn't use that (past-the-end) data and makes sure the
optimistic read won't cross a page boundary.

But KASAN doesn't know anything about that so it will complain.
Let's just fallback to the byte-at-a-time reads under CONFIG_KASAN=y
to avoid false-positives.

Reported-by: Dave Jones <davej@codemonkey.org.uk>
Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com>
---
 lib/string.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/lib/string.c b/lib/string.c
index ebbb99c775bd..8b93d2519d5a 100644
--- a/lib/string.c
+++ b/lib/string.c
@@ -199,6 +199,13 @@ ssize_t strscpy(char *dest, const char *src, size_t count)
 		max = 0;
 #endif
 
+	/*
+	 * KASAN won't be happy about word-at-a-time
+	 * optimistic reads, so let's avoid them.
+	 */
+	if (IS_ENABLED(CONFIG_KASAN))
+		max = 0;
+
 	while (max >= sizeof(unsigned long)) {
 		unsigned long c, data;
 
-- 
2.13.0

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

end of thread, other threads:[~2017-07-26 12:06 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-18 17:15 [PATCH] lib/strscpy: avoid KASAN false positive Andrey Ryabinin
2017-07-18 17:14 ` Dmitry Vyukov
2017-07-18 17:22 ` Linus Torvalds
2017-07-18 20:15   ` Andrey Ryabinin
2017-07-18 20:26     ` Linus Torvalds
2017-07-18 21:31       ` Andrey Ryabinin
2017-07-18 21:32         ` Andrey Ryabinin
2017-07-18 22:04         ` Andrew Morton
2017-07-18 22:35           ` Linus Torvalds
2017-07-19  7:46             ` Dmitry Vyukov
2017-07-19 15:39           ` Chris Metcalf
2017-07-19 16:05             ` Dave Jones
2017-07-26 12:05               ` Dmitry Vyukov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox