All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] coccicheck: add a test for repeat copy_from_user
@ 2016-04-26 22:24 ` Kees Cook
  0 siblings, 0 replies; 31+ messages in thread
From: Kees Cook @ 2016-04-26 22:24 UTC (permalink / raw)
  To: Julia Lawall
  Cc: linux-kernel, Gilles Muller, Nicolas Palix, Michal Marek,
	Pengfei Wang, cocci

This is usually a sign of a resized request. This adds a check for
potential races or confusions. The check isn't 100% accurate, so it
needs some manual review.

Signed-off-by: Kees Cook <keescook@chromium.org>
---
 scripts/coccinelle/tests/reusercopy.cocci | 36 +++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 scripts/coccinelle/tests/reusercopy.cocci

diff --git a/scripts/coccinelle/tests/reusercopy.cocci b/scripts/coccinelle/tests/reusercopy.cocci
new file mode 100644
index 000000000000..53645de8ae95
--- /dev/null
+++ b/scripts/coccinelle/tests/reusercopy.cocci
@@ -0,0 +1,36 @@
+/// Recopying from the same user buffer frequently indicates a pattern of
+/// Reading a size header, allocating, and then re-reading an entire
+/// structure. If the structure's size is not re-validated, this can lead
+/// to structure or data size confusions.
+///
+// Confidence: Moderate
+// Copyright: (C) 2016 Kees Cook, Google. License: GPLv2.
+// URL: http://coccinelle.lip6.fr/
+// Comments:
+// Options: -no_includes -include_headers
+
+virtual report
+virtual org
+
+@cfu_twice@
+position p;
+identifier src;
+expression dest1, dest2, size1, size2, offset;
+@@
+
+*copy_from_user(dest1, src, size1)
+ ... when != src = offset
+     when != src += offset
+*copy_from_user@p(dest2, src, size2)
+
+@script:python depends on org@
+p << cfu_twice.p;
+@@
+
+cocci.print_main("potentially dangerous second copy_from_user()",p)
+
+@script:python depends on report@
+p << cfu_twice.p;
+@@
+
+coccilib.report.print_report(p[0],"potentially dangerous second copy_from_user()")
-- 
2.6.3


-- 
Kees Cook
Chrome OS & Brillo Security

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

end of thread, other threads:[~2017-01-11 13:44 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-26 22:24 [PATCH] coccicheck: add a test for repeat copy_from_user Kees Cook
2016-04-26 22:24 ` [Cocci] " Kees Cook
2016-04-26 22:30 ` Kees Cook
2016-04-26 22:30   ` [Cocci] " Kees Cook
2016-12-27 18:21 ` Julia Lawall
2016-12-27 18:21   ` [Cocci] " Julia Lawall
2017-01-02 15:45   ` Pengfei Wang
2017-01-09 17:05   ` Vaishali Thakkar
2017-01-09 17:05     ` Vaishali Thakkar
2017-01-09 19:08     ` Julia Lawall
2017-01-09 19:08       ` Julia Lawall
2017-01-09 20:56       ` Kees Cook
2017-01-09 20:56         ` Kees Cook
2017-01-09 22:02         ` Kees Cook
2017-01-09 22:02           ` Kees Cook
2017-01-10  8:21     ` Pengfei Wang
2017-01-10  8:40       ` Vaishali Thakkar
2017-01-10  8:40         ` Vaishali Thakkar
2017-01-10  9:02         ` Pengfei Wang
2017-01-10 17:46           ` Vaishali Thakkar
2017-01-10 17:46             ` Vaishali Thakkar
2017-01-11  2:10             ` Pengfei Wang
2017-01-11  6:10               ` Vaishali Thakkar
2017-01-11  6:12               ` Julia Lawall
2017-01-11  6:12                 ` Julia Lawall
2017-01-11 13:44                 ` Pengfei Wang
2017-01-11 13:44                   ` Pengfei Wang
2017-01-10 19:16         ` Kees Cook
2017-01-10 19:16           ` Kees Cook
2017-01-10 19:15       ` Kees Cook
2017-01-10 19:15         ` Kees Cook

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.