sparse.rst 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. .. Copyright 2004 Linus Torvalds
  2. .. Copyright 2004 Pavel Machek <pavel@ucw.cz>
  3. .. Copyright 2006 Bob Copeland <me@bobcopeland.com>
  4. Sparse
  5. ======
  6. Sparse is a semantic checker for C programs; it can be used to find a
  7. number of potential problems with kernel code. See
  8. https://lwn.net/Articles/689907/ for an overview of sparse; this document
  9. contains some kernel-specific sparse information.
  10. Using sparse for typechecking
  11. -----------------------------
  12. "__bitwise" is a type attribute, so you have to do something like this::
  13. typedef int __bitwise pm_request_t;
  14. enum pm_request {
  15. PM_SUSPEND = (__force pm_request_t) 1,
  16. PM_RESUME = (__force pm_request_t) 2
  17. };
  18. which makes PM_SUSPEND and PM_RESUME "bitwise" integers (the "__force" is
  19. there because sparse will complain about casting to/from a bitwise type,
  20. but in this case we really _do_ want to force the conversion). And because
  21. the enum values are all the same type, now "enum pm_request" will be that
  22. type too.
  23. And with gcc, all the "__bitwise"/"__force stuff" goes away, and it all
  24. ends up looking just like integers to gcc.
  25. Quite frankly, you don't need the enum there. The above all really just
  26. boils down to one special "int __bitwise" type.
  27. So the simpler way is to just do::
  28. typedef int __bitwise pm_request_t;
  29. #define PM_SUSPEND ((__force pm_request_t) 1)
  30. #define PM_RESUME ((__force pm_request_t) 2)
  31. and you now have all the infrastructure needed for strict typechecking.
  32. One small note: the constant integer "0" is special. You can use a
  33. constant zero as a bitwise integer type without sparse ever complaining.
  34. This is because "bitwise" (as the name implies) was designed for making
  35. sure that bitwise types don't get mixed up (little-endian vs big-endian
  36. vs cpu-endian vs whatever), and there the constant "0" really _is_
  37. special.
  38. __bitwise__ - to be used for relatively compact stuff (gfp_t, etc.) that
  39. is mostly warning-free and is supposed to stay that way. Warnings will
  40. be generated without __CHECK_ENDIAN__.
  41. __bitwise - noisy stuff; in particular, __le*/__be* are that. We really
  42. don't want to drown in noise unless we'd explicitly asked for it.
  43. Using sparse for lock checking
  44. ------------------------------
  45. The following macros are undefined for gcc and defined during a sparse
  46. run to use the "context" tracking feature of sparse, applied to
  47. locking. These annotations tell sparse when a lock is held, with
  48. regard to the annotated function's entry and exit.
  49. __must_hold - The specified lock is held on function entry and exit.
  50. __acquires - The specified lock is held on function exit, but not entry.
  51. __releases - The specified lock is held on function entry, but not exit.
  52. If the function enters and exits without the lock held, acquiring and
  53. releasing the lock inside the function in a balanced way, no
  54. annotation is needed. The tree annotations above are for cases where
  55. sparse would otherwise report a context imbalance.
  56. Getting sparse
  57. --------------
  58. You can get latest released versions from the Sparse homepage at
  59. https://sparse.wiki.kernel.org/index.php/Main_Page
  60. Alternatively, you can get snapshots of the latest development version
  61. of sparse using git to clone::
  62. git://git.kernel.org/pub/scm/devel/sparse/sparse.git
  63. DaveJ has hourly generated tarballs of the git tree available at::
  64. http://www.codemonkey.org.uk/projects/git-snapshots/sparse/
  65. Once you have it, just do::
  66. make
  67. make install
  68. as a regular user, and it will install sparse in your ~/bin directory.
  69. Using sparse
  70. ------------
  71. Do a kernel make with "make C=1" to run sparse on all the C files that get
  72. recompiled, or use "make C=2" to run sparse on the files whether they need to
  73. be recompiled or not. The latter is a fast way to check the whole tree if you
  74. have already built it.
  75. The optional make variable CF can be used to pass arguments to sparse. The
  76. build system passes -Wbitwise to sparse automatically. To perform endianness
  77. checks, you may define __CHECK_ENDIAN__::
  78. make C=2 CF="-D__CHECK_ENDIAN__"
  79. These checks are disabled by default as they generate a host of warnings.