Skip to content

Commit

Permalink
coccinelle: api: extend memdup_user rule with vmemdup_user()
Browse files Browse the repository at this point in the history
Add vmemdup_user() transformations to the memdup_user.cocci rule.
Commit 50fd2f2 ("new primitive: vmemdup_user()") introduced
vmemdup_user(). The function uses kvmalloc with GPF_USER flag.

Signed-off-by: Denis Efremov <[email protected]>
  • Loading branch information
evdenis authored and JuliaLawall committed Aug 4, 2020
1 parent 547ade4 commit 9c568db
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions scripts/coccinelle/api/memdup_user.cocci
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,28 @@ identifier l1,l2;
- ...+>
- }

@depends on patch@
expression from,to,size;
identifier l1,l2;
@@

- to = \(kvmalloc\|kvzalloc\)(size,\(GFP_KERNEL\|GFP_USER\));
+ 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
- ...+>
- }

@r depends on !patch@
expression from,to,size;
position p;
Expand All @@ -52,6 +74,17 @@ statement S1,S2;
if (copy_from_user(to, from, size) != 0)
S2

@rv depends on !patch@
expression from,to,size;
position p;
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

@script:python depends on org@
p << r.p;
@@
Expand All @@ -63,3 +96,15 @@ p << r.p;
@@
coccilib.report.print_report(p[0], "WARNING opportunity for memdup_user")
@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")

0 comments on commit 9c568db

Please sign in to comment.