sparse.rst 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
.. Copyright 2004 Linus Torvalds
.. Copyright 2004 Pavel Machek <pavel@ucw.cz>
.. Copyright 2006 Bob Copeland <me@bobcopeland.com>

Sparse
======

Sparse is a semantic checker for C programs; it can be used to find a
number of potential problems with kernel code.  See
https://lwn.net/Articles/689907/ for an overview of sparse; this document
contains some kernel-specific sparse information.

L
Linus Torvalds 已提交
13 14

Using sparse for typechecking
15
-----------------------------
L
Linus Torvalds 已提交
16

17
"__bitwise" is a type attribute, so you have to do something like this::
L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31

        typedef int __bitwise pm_request_t;

        enum pm_request {
                PM_SUSPEND = (__force pm_request_t) 1,
                PM_RESUME = (__force pm_request_t) 2
        };

which makes PM_SUSPEND and PM_RESUME "bitwise" integers (the "__force" is
there because sparse will complain about casting to/from a bitwise type,
but in this case we really _do_ want to force the conversion). And because
the enum values are all the same type, now "enum pm_request" will be that
type too.

32 33
And with gcc, all the "__bitwise"/"__force stuff" goes away, and it all
ends up looking just like integers to gcc.
L
Linus Torvalds 已提交
34 35 36 37

Quite frankly, you don't need the enum there. The above all really just
boils down to one special "int __bitwise" type.

38
So the simpler way is to just do::
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

        typedef int __bitwise pm_request_t;

        #define PM_SUSPEND ((__force pm_request_t) 1)
        #define PM_RESUME ((__force pm_request_t) 2)

and you now have all the infrastructure needed for strict typechecking.

One small note: the constant integer "0" is special. You can use a
constant zero as a bitwise integer type without sparse ever complaining.
This is because "bitwise" (as the name implies) was designed for making
sure that bitwise types don't get mixed up (little-endian vs big-endian
vs cpu-endian vs whatever), and there the constant "0" really _is_
special.

54
Using sparse for lock checking
55
------------------------------
56 57 58 59 60 61 62 63 64 65 66 67 68 69

The following macros are undefined for gcc and defined during a sparse
run to use the "context" tracking feature of sparse, applied to
locking.  These annotations tell sparse when a lock is held, with
regard to the annotated function's entry and exit.

__must_hold - The specified lock is held on function entry and exit.

__acquires - The specified lock is held on function exit, but not entry.

__releases - The specified lock is held on function entry, but not exit.

If the function enters and exits without the lock held, acquiring and
releasing the lock inside the function in a balanced way, no
E
Eric Engestrom 已提交
70
annotation is needed.  The three annotations above are for cases where
71
sparse would otherwise report a context imbalance.
72

73
Getting sparse
74
--------------
L
Linus Torvalds 已提交
75

76
You can get latest released versions from the Sparse homepage at
B
Bill Pemberton 已提交
77
https://sparse.wiki.kernel.org/index.php/Main_Page
L
Linus Torvalds 已提交
78

79
Alternatively, you can get snapshots of the latest development version
80
of sparse using git to clone::
L
Linus Torvalds 已提交
81

B
Bill Pemberton 已提交
82
        git://git.kernel.org/pub/scm/devel/sparse/sparse.git
83

84
DaveJ has hourly generated tarballs of the git tree available at::
L
Linus Torvalds 已提交
85

86
        http://www.codemonkey.org.uk/projects/git-snapshots/sparse/
L
Linus Torvalds 已提交
87 88


89
Once you have it, just do::
L
Linus Torvalds 已提交
90 91 92 93

        make
        make install

94 95 96
as a regular user, and it will install sparse in your ~/bin directory.

Using sparse
97
------------
98 99 100 101 102 103

Do a kernel make with "make C=1" to run sparse on all the C files that get
recompiled, or use "make C=2" to run sparse on the files whether they need to
be recompiled or not.  The latter is a fast way to check the whole tree if you
have already built it.

104
The optional make variable CF can be used to pass arguments to sparse.  The
105
build system passes -Wbitwise to sparse automatically.