From: Dan Carpenter <error27@gmail.com>
To: linux-kernel@vger.kernel.org, corbet@lwn.net, eteo@redhat.com
Subject: smatch and tun.c
Date: Sat, 25 Jul 2009 15:21:54 +0300 (EAT) [thread overview]
Message-ID: <alpine.DEB.2.00.0907241400310.12573@bicker> (raw)
[-- Attachment #1: Type: TEXT/PLAIN, Size: 1902 bytes --]
Jonathan Corbet from lwn.net suggested that I write a smatch
(http://repo.or.cz/w/smatch.git) script to prevent the tun.c type bugs
from happening again.
I wrote two scripts. One just looks for bugs where a variable is
dereferenced while initializing a local variable and checked for NULL like
this:
int x = foo->bar;
BUG_ON(!foo);
I have a theory that sometimes peoople are sloppy when they initialize
variables. This script printed 96 warnings. The other script prints
those messages along with every other time a variable is dereferenced and
then checked for NULL. This script printed 685 messages.
Smatch scripts tends to have a lot of false positives. The script that
only printed problems with variable initialization was maybe 40% actual
bugs but the one that checked everything was maybe 15% actual bugs. I
guess my theory is correct.
One thing that causes false positives is that some macros need to
check for NULL pointers. Also smatch doesn't handle loops correctly yet.
Sometimes variables get changed inside another function and that isn't
handled correctly yet.
By bugs, I don't mean security bugs, I mean picky little things. Quite
often places have useless checks for NULL. But still it's worth fixing.
I feel bad for just sending this email instead of proper bug reports and
patches, but the truth is that I'm cycling through Africa on a bycicle. I
sleep in a tent. It took me days to scrape together enough electricity
and internet to send this one email...
I have attached a zip file with the warnings from 2.6.31-rc3 allmodconfig.
Here are the instructions if you want to use a different config.
git clone git://repo.or.cz/smatch.git
cd smatch
make
cd /usr/src/linux
make C=1 CHECK=/path/to/smatch modules bzImage | tee warns.txt
egrep '(warn|error):' warns.txt | egrep '(before|initializer)'
regards,
dan carpenter
[-- Attachment #2: smatch warning messages --]
[-- Type: APPLICATION/ZIP, Size: 13645 bytes --]
next reply other threads:[~2009-07-25 12:22 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-25 12:21 Dan Carpenter [this message]
2009-07-26 21:40 ` Bartlomiej Zolnierkiewicz
2009-07-27 21:30 ` Bartlomiej Zolnierkiewicz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=alpine.DEB.2.00.0907241400310.12573@bicker \
--to=error27@gmail.com \
--cc=corbet@lwn.net \
--cc=eteo@redhat.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome