2019-06-04 10:11:38 +02:00
// SPDX-License-Identifier: GPL-2.0-only
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
2019-06-04 10:11:38 +02:00
// Copyright: (C) 2010-2012 Nicolas Palix.
// Copyright: (C) 2010-2012 Julia Lawall, INRIA/LIP6.
// Copyright: (C) 2010-2012 Gilles Muller, INRIA/LiP6.
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
2020-07-20 19:22:16 +03:00
@initialize:python@
@@
filter = frozenset(['memdup_user', 'vmemdup_user'])
def relevant(p):
return not (filter & {el.current_element for el in p})
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;
2020-07-20 19:22:16 +03:00
position p : script:python() { relevant(p) };
2010-08-24 17:39:07 +02:00
@@
2020-07-20 19:22:16 +03:00
- to = \(kmalloc@p\|kzalloc@p\)
2020-07-20 19:22:14 +03:00
- (size,\(GFP_KERNEL\|GFP_USER\|
- \(GFP_KERNEL\|GFP_USER\)|__GFP_NOWARN\));
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
2020-07-20 19:22:15 +03:00
@depends on patch@
expression from,to,size;
identifier l1,l2;
2020-07-20 19:22:16 +03:00
position p : script:python() { relevant(p) };
2020-07-20 19:22:15 +03:00
@@
2020-07-20 19:22:16 +03:00
- to = \(kvmalloc@p\|kvzalloc@p\)(size,\(GFP_KERNEL\|GFP_USER\));
2020-07-20 19:22:15 +03:00
+ to = vmemdup_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;
2020-07-20 19:22:16 +03:00
position p : script:python() { relevant(p) };
2012-01-14 23:41:54 +01:00
statement S1,S2;
@@
2020-07-20 19:22:14 +03:00
* to = \(kmalloc@p\|kzalloc@p\)
(size,\(GFP_KERNEL\|GFP_USER\|
\(GFP_KERNEL\|GFP_USER\)|__GFP_NOWARN\));
2012-01-14 23:41:54 +01:00
if (to==NULL || ...) S1
if (copy_from_user(to, from, size) != 0)
S2
2020-07-20 19:22:15 +03:00
@rv depends on !patch@
expression from,to,size;
2020-07-20 19:22:16 +03:00
position p : script:python() { relevant(p) };
2020-07-20 19:22:15 +03:00
statement S1,S2;
@@
* to = \(kvmalloc@p\|kvzalloc@p\)(size,\(GFP_KERNEL\|GFP_USER\));
if (to==NULL || ...) S1
if (copy_from_user(to, from, size) != 0)
S2
2012-01-14 23:41:54 +01:00
@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")
2020-07-20 19:22:15 +03:00
@script:python depends on org@
p << rv.p;
@@
coccilib.org.print_todo(p[0], "WARNING opportunity for vmemdup_user")
@script:python depends on report@
p << rv.p;
@@
coccilib.report.print_report(p[0], "WARNING opportunity for vmemdup_user")