cocci.inria.fr archive mirror
 help / color / mirror / Atom feed
* [Cocci] Incorrect match with when != condition
@ 2021-03-17 19:56 Denis Efremov
  2021-03-17 20:32 ` Julia Lawall
  0 siblings, 1 reply; 3+ messages in thread
From: Denis Efremov @ 2021-03-17 19:56 UTC (permalink / raw)
  To: cocci, Julia Lawall

Hi,

I'm trying to write the check to detect the absence of commit
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit?id=51b2ee7d006a736a9126e8111d1f24e4fd0afaa6
in kernel. The pattern can be:

@err exists@
identifier namlen, dchild, dparent, exp;
position p;
statement S;
@@

compose_entry_fh(..., int namlen, ...)
{
	...
	if (namlen == 2) {
*		dchild =@p dget_parent(dparent);
		... when != dparent == exp->ex_path.dentry
	} else S
	...
}

But unfortunately, it matches even the fixed source. I think
that condition "... when != dparent == exp->ex_path.dentry" doesn't
work as expected. Steps to reproduce:

$ cd linux # latest master branch
$ wget https://raw.githubusercontent.com/evdenis/cvehound/b2d109c959c299dce10274c1806406fc5653e5d0/cvehound/cve/CVE-2021-3178.cocci
$ spatch -D detect --cocci-file CVE-2021-3178.cocci fs/nfsd/nfs3xdr.c
fs/nfsd/nfs3xdr.c:935:10-11: ERROR: CVE-2021-3178
diff =
--- fs/nfsd/nfs3xdr.c
+++ /tmp/cocci-output-526900-b87df1-nfs3xdr.c
@@ -932,7 +932,6 @@ compose_entry_fh(struct nfsd3_readdirres
  
         if (isdotent(name, namlen)) {
                 if (namlen == 2) {
			// !!! shouldn't match because of if (dparent == exp->ex_path.dentry) goto out; check after
-                       dchild = dget_parent(dparent);
                         /*
                          * Don't return filehandle for ".." if we're at
                          * the filesystem or export root:
$ spatch --version
spatch version 1.1.0 compiled with OCaml version 4.11.1

Thanks,
Denis
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

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

end of thread, other threads:[~2021-03-17 20:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17 19:56 [Cocci] Incorrect match with when != condition Denis Efremov
2021-03-17 20:32 ` Julia Lawall
2021-03-17 20:52   ` Denis Efremov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).