2012-01-14 23:41:54 +01:00
/// Use memdup_user rather than duplicating its implementation
2010-08-24 17:39:07 +02:00
/// This is a little bit restricted to reduce false positives
///
// Confidence: High
2012-01-14 23:41:54 +01:00
// Copyright: (C) 2010-2012 Nicolas Palix. GPLv2.
// Copyright: (C) 2010-2012 Julia Lawall, INRIA/LIP6. GPLv2.
// Copyright: (C) 2010-2012 Gilles Muller, INRIA/LiP6. GPLv2.
2010-08-24 17:39:07 +02:00
// URL: http://coccinelle.lip6.fr/
// Comments:
2013-06-20 13:10:56 +02:00
// Options: --no-includes --include-headers
2010-08-24 17:39:07 +02:00
virtual patch
2012-01-14 23:41:54 +01:00
virtual context
virtual org
virtual report
2010-08-24 17:39:07 +02:00
2012-01-14 23:41:54 +01:00
@depends on patch@
2016-09-21 17:48:39 +02:00
expression from,to,size;
2010-08-24 17:39:07 +02:00
identifier l1,l2;
@@
2016-09-21 17:48:39 +02:00
- to = \(kmalloc\|kzalloc\)(size,GFP_KERNEL);
2010-08-24 17:39:07 +02:00
+ to = memdup_user(from,size);
if (
- to==NULL
+ IS_ERR(to)
|| ...) {
<+... when != goto l1;
- -ENOMEM
+ PTR_ERR(to)
...+>
}
- if (copy_from_user(to, from, size) != 0) {
- <+... when != goto l2;
- -EFAULT
- ...+>
- }
2012-01-14 23:41:54 +01:00
@r depends on !patch@
2016-09-21 17:48:39 +02:00
expression from,to,size;
2012-01-14 23:41:54 +01:00
position p;
statement S1,S2;
@@
2016-09-21 17:48:39 +02:00
* to = \(kmalloc@p\|kzalloc@p\)(size,GFP_KERNEL);
2012-01-14 23:41:54 +01:00
if (to==NULL || ...) S1
if (copy_from_user(to, from, size) != 0)
S2
@script:python depends on org@
p << r.p;
@@
2012-07-25 19:35:30 +08:00
coccilib.org.print_todo(p[0], "WARNING opportunity for memdup_user")
2012-01-14 23:41:54 +01:00
@script:python depends on report@
p << r.p;
@@
2012-07-25 19:35:30 +08:00
coccilib.report.print_report(p[0], "WARNING opportunity for memdup_user")