14b9033a3SJonathan Corbet.. Copyright 2010 Nicolas Palix <npalix@diku.dk> 24b9033a3SJonathan Corbet.. Copyright 2010 Julia Lawall <julia@diku.dk> 34b9033a3SJonathan Corbet.. Copyright 2010 Gilles Muller <Gilles.Muller@lip6.fr> 44b9033a3SJonathan Corbet 54b9033a3SJonathan Corbet.. highlight:: none 64b9033a3SJonathan Corbet 7f77af637SFederico Vaga.. _devtools_coccinelle: 8f77af637SFederico Vaga 94b9033a3SJonathan CorbetCoccinelle 104b9033a3SJonathan Corbet========== 114b9033a3SJonathan Corbet 124b9033a3SJonathan CorbetCoccinelle is a tool for pattern matching and text transformation that has 134b9033a3SJonathan Corbetmany uses in kernel development, including the application of complex, 144b9033a3SJonathan Corbettree-wide patches and detection of problematic programming patterns. 154b9033a3SJonathan Corbet 164b9033a3SJonathan CorbetGetting Coccinelle 17cc8246deSHeinrich Schuchardt------------------ 184b9033a3SJonathan Corbet 194b9033a3SJonathan CorbetThe semantic patches included in the kernel use features and options 204b9033a3SJonathan Corbetwhich are provided by Coccinelle version 1.0.0-rc11 and above. 214b9033a3SJonathan CorbetUsing earlier versions will fail as the option names used by 224b9033a3SJonathan Corbetthe Coccinelle files and coccicheck have been updated. 234b9033a3SJonathan Corbet 244b9033a3SJonathan CorbetCoccinelle is available through the package manager 254b9033a3SJonathan Corbetof many distributions, e.g. : 264b9033a3SJonathan Corbet 274b9033a3SJonathan Corbet - Debian 284b9033a3SJonathan Corbet - Fedora 294b9033a3SJonathan Corbet - Ubuntu 304b9033a3SJonathan Corbet - OpenSUSE 314b9033a3SJonathan Corbet - Arch Linux 324b9033a3SJonathan Corbet - NetBSD 334b9033a3SJonathan Corbet - FreeBSD 344b9033a3SJonathan Corbet 359eff4a2eSHimanshu JhaSome distribution packages are obsolete and it is recommended 369eff4a2eSHimanshu Jhato use the latest version released from the Coccinelle homepage at 374b9033a3SJonathan Corbethttp://coccinelle.lip6.fr/ 384b9033a3SJonathan Corbet 399eff4a2eSHimanshu JhaOr from Github at: 404b9033a3SJonathan Corbet 419eff4a2eSHimanshu Jhahttps://github.com/coccinelle/coccinelle 429eff4a2eSHimanshu Jha 439eff4a2eSHimanshu JhaOnce you have it, run the following commands:: 449eff4a2eSHimanshu Jha 459eff4a2eSHimanshu Jha ./autogen 464b9033a3SJonathan Corbet ./configure 474b9033a3SJonathan Corbet make 484b9033a3SJonathan Corbet 494b9033a3SJonathan Corbetas a regular user, and install it with:: 504b9033a3SJonathan Corbet 514b9033a3SJonathan Corbet sudo make install 524b9033a3SJonathan Corbet 539eff4a2eSHimanshu JhaMore detailed installation instructions to build from source can be 549eff4a2eSHimanshu Jhafound at: 559eff4a2eSHimanshu Jha 569eff4a2eSHimanshu Jhahttps://github.com/coccinelle/coccinelle/blob/master/install.txt 579eff4a2eSHimanshu Jha 584b9033a3SJonathan CorbetSupplemental documentation 59cc8246deSHeinrich Schuchardt-------------------------- 604b9033a3SJonathan Corbet 614b9033a3SJonathan CorbetFor supplemental documentation refer to the wiki: 624b9033a3SJonathan Corbet 634b9033a3SJonathan Corbethttps://bottest.wiki.kernel.org/coccicheck 644b9033a3SJonathan Corbet 654b9033a3SJonathan CorbetThe wiki documentation always refers to the linux-next version of the script. 664b9033a3SJonathan Corbet 679eff4a2eSHimanshu JhaFor Semantic Patch Language(SmPL) grammar documentation refer to: 689eff4a2eSHimanshu Jha 6987444fdcSDongliang Muhttps://coccinelle.gitlabpages.inria.fr/website/docs/main_grammar.html 709eff4a2eSHimanshu Jha 714b9033a3SJonathan CorbetUsing Coccinelle on the Linux kernel 724b9033a3SJonathan Corbet------------------------------------ 734b9033a3SJonathan Corbet 744b9033a3SJonathan CorbetA Coccinelle-specific target is defined in the top level 754b9033a3SJonathan CorbetMakefile. This target is named ``coccicheck`` and calls the ``coccicheck`` 764b9033a3SJonathan Corbetfront-end in the ``scripts`` directory. 774b9033a3SJonathan Corbet 784b9033a3SJonathan CorbetFour basic modes are defined: ``patch``, ``report``, ``context``, and 794b9033a3SJonathan Corbet``org``. The mode to use is specified by setting the MODE variable with 804b9033a3SJonathan Corbet``MODE=<mode>``. 814b9033a3SJonathan Corbet 824b9033a3SJonathan Corbet- ``patch`` proposes a fix, when possible. 834b9033a3SJonathan Corbet 844b9033a3SJonathan Corbet- ``report`` generates a list in the following format: 854b9033a3SJonathan Corbet file:line:column-column: message 864b9033a3SJonathan Corbet 874b9033a3SJonathan Corbet- ``context`` highlights lines of interest and their context in a 884b9033a3SJonathan Corbet diff-like style. Lines of interest are indicated with ``-``. 894b9033a3SJonathan Corbet 904b9033a3SJonathan Corbet- ``org`` generates a report in the Org mode format of Emacs. 914b9033a3SJonathan Corbet 924b9033a3SJonathan CorbetNote that not all semantic patches implement all modes. For easy use 934b9033a3SJonathan Corbetof Coccinelle, the default mode is "report". 944b9033a3SJonathan Corbet 954b9033a3SJonathan CorbetTwo other modes provide some common combinations of these modes. 964b9033a3SJonathan Corbet 974b9033a3SJonathan Corbet- ``chain`` tries the previous modes in the order above until one succeeds. 984b9033a3SJonathan Corbet 994b9033a3SJonathan Corbet- ``rep+ctxt`` runs successively the report mode and the context mode. 1004b9033a3SJonathan Corbet It should be used with the C option (described later) 1014b9033a3SJonathan Corbet which checks the code on a file basis. 1024b9033a3SJonathan Corbet 1034b9033a3SJonathan CorbetExamples 1044b9033a3SJonathan Corbet~~~~~~~~ 1054b9033a3SJonathan Corbet 1064b9033a3SJonathan CorbetTo make a report for every semantic patch, run the following command:: 1074b9033a3SJonathan Corbet 1084b9033a3SJonathan Corbet make coccicheck MODE=report 1094b9033a3SJonathan Corbet 1104b9033a3SJonathan CorbetTo produce patches, run:: 1114b9033a3SJonathan Corbet 1124b9033a3SJonathan Corbet make coccicheck MODE=patch 1134b9033a3SJonathan Corbet 1144b9033a3SJonathan Corbet 1154b9033a3SJonathan CorbetThe coccicheck target applies every semantic patch available in the 1164b9033a3SJonathan Corbetsub-directories of ``scripts/coccinelle`` to the entire Linux kernel. 1174b9033a3SJonathan Corbet 1184b9033a3SJonathan CorbetFor each semantic patch, a commit message is proposed. It gives a 1194b9033a3SJonathan Corbetdescription of the problem being checked by the semantic patch, and 1204b9033a3SJonathan Corbetincludes a reference to Coccinelle. 1214b9033a3SJonathan Corbet 1227d087d02SRandy DunlapAs with any static code analyzer, Coccinelle produces false 1234b9033a3SJonathan Corbetpositives. Thus, reports must be carefully checked, and patches 1244b9033a3SJonathan Corbetreviewed. 1254b9033a3SJonathan Corbet 1264b9033a3SJonathan CorbetTo enable verbose messages set the V= variable, for example:: 1274b9033a3SJonathan Corbet 1284b9033a3SJonathan Corbet make coccicheck MODE=report V=1 1294b9033a3SJonathan Corbet 1304b9033a3SJonathan CorbetCoccinelle parallelization 131cc8246deSHeinrich Schuchardt-------------------------- 1324b9033a3SJonathan Corbet 1334b9033a3SJonathan CorbetBy default, coccicheck tries to run as parallel as possible. To change 1344b9033a3SJonathan Corbetthe parallelism, set the J= variable. For example, to run across 4 CPUs:: 1354b9033a3SJonathan Corbet 1364b9033a3SJonathan Corbet make coccicheck MODE=report J=4 1374b9033a3SJonathan Corbet 1387d087d02SRandy DunlapAs of Coccinelle 1.0.2 Coccinelle uses Ocaml parmap for parallelization; 1394b9033a3SJonathan Corbetif support for this is detected you will benefit from parmap parallelization. 1404b9033a3SJonathan Corbet 1414b9033a3SJonathan CorbetWhen parmap is enabled coccicheck will enable dynamic load balancing by using 1427d087d02SRandy Dunlap``--chunksize 1`` argument. This ensures we keep feeding threads with work 1434b9033a3SJonathan Corbetone by one, so that we avoid the situation where most work gets done by only 1444b9033a3SJonathan Corbeta few threads. With dynamic load balancing, if a thread finishes early we keep 1454b9033a3SJonathan Corbetfeeding it more work. 1464b9033a3SJonathan Corbet 1474b9033a3SJonathan CorbetWhen parmap is enabled, if an error occurs in Coccinelle, this error 1487d087d02SRandy Dunlapvalue is propagated back, and the return value of the ``make coccicheck`` 1497d087d02SRandy Dunlapcommand captures this return value. 1504b9033a3SJonathan Corbet 1514b9033a3SJonathan CorbetUsing Coccinelle with a single semantic patch 1524b9033a3SJonathan Corbet--------------------------------------------- 1534b9033a3SJonathan Corbet 1544b9033a3SJonathan CorbetThe optional make variable COCCI can be used to check a single 1554b9033a3SJonathan Corbetsemantic patch. In that case, the variable must be initialized with 1564b9033a3SJonathan Corbetthe name of the semantic patch to apply. 1574b9033a3SJonathan Corbet 1584b9033a3SJonathan CorbetFor instance:: 1594b9033a3SJonathan Corbet 1604b9033a3SJonathan Corbet make coccicheck COCCI=<my_SP.cocci> MODE=patch 1614b9033a3SJonathan Corbet 1624b9033a3SJonathan Corbetor:: 1634b9033a3SJonathan Corbet 1644b9033a3SJonathan Corbet make coccicheck COCCI=<my_SP.cocci> MODE=report 1654b9033a3SJonathan Corbet 1664b9033a3SJonathan Corbet 1674b9033a3SJonathan CorbetControlling Which Files are Processed by Coccinelle 1684b9033a3SJonathan Corbet--------------------------------------------------- 1694b9033a3SJonathan Corbet 1704b9033a3SJonathan CorbetBy default the entire kernel source tree is checked. 1714b9033a3SJonathan Corbet 1724b9033a3SJonathan CorbetTo apply Coccinelle to a specific directory, ``M=`` can be used. 1734b9033a3SJonathan CorbetFor example, to check drivers/net/wireless/ one may write:: 1744b9033a3SJonathan Corbet 1754b9033a3SJonathan Corbet make coccicheck M=drivers/net/wireless/ 1764b9033a3SJonathan Corbet 1774b9033a3SJonathan CorbetTo apply Coccinelle on a file basis, instead of a directory basis, the 178a5019c7fSSumera PriyadarsiniC variable is used by the makefile to select which files to work with. 179a5019c7fSSumera PriyadarsiniThis variable can be used to run scripts for the entire kernel, a 180a5019c7fSSumera Priyadarsinispecific directory, or for a single file. 1814b9033a3SJonathan Corbet 182a5019c7fSSumera PriyadarsiniFor example, to check drivers/bluetooth/bfusb.c, the value 1 is 183a5019c7fSSumera Priyadarsinipassed to the C variable to check files that make considers 184a5019c7fSSumera Priyadarsinineed to be compiled.:: 1854b9033a3SJonathan Corbet 186a5019c7fSSumera Priyadarsini make C=1 CHECK=scripts/coccicheck drivers/bluetooth/bfusb.o 1874b9033a3SJonathan Corbet 188a5019c7fSSumera PriyadarsiniThe value 2 is passed to the C variable to check files regardless of 189a5019c7fSSumera Priyadarsiniwhether they need to be compiled or not.:: 190a5019c7fSSumera Priyadarsini 191a5019c7fSSumera Priyadarsini make C=2 CHECK=scripts/coccicheck drivers/bluetooth/bfusb.o 1924b9033a3SJonathan Corbet 1937d087d02SRandy DunlapIn these modes, which work on a file basis, there is no information 1944b9033a3SJonathan Corbetabout semantic patches displayed, and no commit message proposed. 1954b9033a3SJonathan Corbet 1964b9033a3SJonathan CorbetThis runs every semantic patch in scripts/coccinelle by default. The 1974b9033a3SJonathan CorbetCOCCI variable may additionally be used to only apply a single 1984b9033a3SJonathan Corbetsemantic patch as shown in the previous section. 1994b9033a3SJonathan Corbet 2004b9033a3SJonathan CorbetThe "report" mode is the default. You can select another one with the 2014b9033a3SJonathan CorbetMODE variable explained above. 2024b9033a3SJonathan Corbet 2034b9033a3SJonathan CorbetDebugging Coccinelle SmPL patches 2044b9033a3SJonathan Corbet--------------------------------- 2054b9033a3SJonathan Corbet 2064b9033a3SJonathan CorbetUsing coccicheck is best as it provides in the spatch command line 2074b9033a3SJonathan Corbetinclude options matching the options used when we compile the kernel. 2087d087d02SRandy DunlapYou can learn what these options are by using V=1; you could then 2094b9033a3SJonathan Corbetmanually run Coccinelle with debug options added. 2104b9033a3SJonathan Corbet 2114b9033a3SJonathan CorbetAlternatively you can debug running Coccinelle against SmPL patches 2127d087d02SRandy Dunlapby asking for stderr to be redirected to stderr. By default stderr 2137d087d02SRandy Dunlapis redirected to /dev/null; if you'd like to capture stderr you 2144b9033a3SJonathan Corbetcan specify the ``DEBUG_FILE="file.txt"`` option to coccicheck. For 2154b9033a3SJonathan Corbetinstance:: 2164b9033a3SJonathan Corbet 2174b9033a3SJonathan Corbet rm -f cocci.err 2184b9033a3SJonathan Corbet make coccicheck COCCI=scripts/coccinelle/free/kfree.cocci MODE=report DEBUG_FILE=cocci.err 2194b9033a3SJonathan Corbet cat cocci.err 2204b9033a3SJonathan Corbet 2217d087d02SRandy DunlapYou can use SPFLAGS to add debugging flags; for instance you may want to 222*19a12613SJonathan Neuschäferadd both ``--profile --show-trying`` to SPFLAGS when debugging. For example 2234b9033a3SJonathan Corbetyou may want to use:: 2244b9033a3SJonathan Corbet 2254b9033a3SJonathan Corbet rm -f err.log 2264b9033a3SJonathan Corbet export COCCI=scripts/coccinelle/misc/irqf_oneshot.cocci 22727b03cf1SSumera Priyadarsini make coccicheck DEBUG_FILE="err.log" MODE=report SPFLAGS="--profile --show-trying" M=./drivers/mfd 2284b9033a3SJonathan Corbet 2294b9033a3SJonathan Corbeterr.log will now have the profiling information, while stdout will 2304b9033a3SJonathan Corbetprovide some progress information as Coccinelle moves forward with 2314b9033a3SJonathan Corbetwork. 2324b9033a3SJonathan Corbet 23327b03cf1SSumera PriyadarsiniNOTE: 23427b03cf1SSumera Priyadarsini 2354845688dSJulia LawallDEBUG_FILE support is only supported when using coccinelle >= 1.0.2. 2364b9033a3SJonathan Corbet 23727b03cf1SSumera PriyadarsiniCurrently, DEBUG_FILE support is only available to check folders, and 23827b03cf1SSumera Priyadarsininot single files. This is because checking a single file requires spatch 23927b03cf1SSumera Priyadarsinito be called twice leading to DEBUG_FILE being set both times to the same value, 24027b03cf1SSumera Priyadarsinigiving rise to an error. 24127b03cf1SSumera Priyadarsini 2424b9033a3SJonathan Corbet.cocciconfig support 2434b9033a3SJonathan Corbet-------------------- 2444b9033a3SJonathan Corbet 2454b9033a3SJonathan CorbetCoccinelle supports reading .cocciconfig for default Coccinelle options that 2467d087d02SRandy Dunlapshould be used every time spatch is spawned. The order of precedence for 2474b9033a3SJonathan Corbetvariables for .cocciconfig is as follows: 2484b9033a3SJonathan Corbet 2494b9033a3SJonathan Corbet- Your current user's home directory is processed first 2504b9033a3SJonathan Corbet- Your directory from which spatch is called is processed next 251*19a12613SJonathan Neuschäfer- The directory provided with the ``--dir`` option is processed last, if used 2524b9033a3SJonathan Corbet 2534b9033a3SJonathan CorbetSince coccicheck runs through make, it naturally runs from the kernel 2547d087d02SRandy Dunlapproper dir; as such the second rule above would be implied for picking up a 2554b9033a3SJonathan Corbet.cocciconfig when using ``make coccicheck``. 2564b9033a3SJonathan Corbet 2574b9033a3SJonathan Corbet``make coccicheck`` also supports using M= targets. If you do not supply 2584b9033a3SJonathan Corbetany M= target, it is assumed you want to target the entire kernel. 2594b9033a3SJonathan CorbetThe kernel coccicheck script has:: 2604b9033a3SJonathan Corbet 2614b9033a3SJonathan Corbet if [ "$KBUILD_EXTMOD" = "" ] ; then 2624b9033a3SJonathan Corbet OPTIONS="--dir $srctree $COCCIINCLUDE" 2634b9033a3SJonathan Corbet else 2644b9033a3SJonathan Corbet OPTIONS="--dir $KBUILD_EXTMOD $COCCIINCLUDE" 2654b9033a3SJonathan Corbet fi 2664b9033a3SJonathan Corbet 2674b9033a3SJonathan CorbetKBUILD_EXTMOD is set when an explicit target with M= is used. For both cases 268*19a12613SJonathan Neuschäferthe spatch ``--dir`` argument is used, as such third rule applies when whether 269*19a12613SJonathan NeuschäferM= is used or not, and when M= is used the target directory can have its own 2704b9033a3SJonathan Corbet.cocciconfig file. When M= is not passed as an argument to coccicheck the 2714b9033a3SJonathan Corbettarget directory is the same as the directory from where spatch was called. 2724b9033a3SJonathan Corbet 2734b9033a3SJonathan CorbetIf not using the kernel's coccicheck target, keep the above precedence 2744b9033a3SJonathan Corbetorder logic of .cocciconfig reading. If using the kernel's coccicheck target, 2754b9033a3SJonathan Corbetoverride any of the kernel's .coccicheck's settings using SPFLAGS. 2764b9033a3SJonathan Corbet 2777d087d02SRandy DunlapWe help Coccinelle when used against Linux with a set of sensible default 2784b9033a3SJonathan Corbetoptions for Linux with our own Linux .cocciconfig. This hints to coccinelle 2797d087d02SRandy Dunlapthat git can be used for ``git grep`` queries over coccigrep. A timeout of 200 2804b9033a3SJonathan Corbetseconds should suffice for now. 2814b9033a3SJonathan Corbet 2824b9033a3SJonathan CorbetThe options picked up by coccinelle when reading a .cocciconfig do not appear 2837d087d02SRandy Dunlapas arguments to spatch processes running on your system. To confirm what 2844b9033a3SJonathan Corbetoptions will be used by Coccinelle run:: 2854b9033a3SJonathan Corbet 2864b9033a3SJonathan Corbet spatch --print-options-only 2874b9033a3SJonathan Corbet 2884b9033a3SJonathan CorbetYou can override with your own preferred index option by using SPFLAGS. Take 2894b9033a3SJonathan Corbetnote that when there are conflicting options Coccinelle takes precedence for 2904b9033a3SJonathan Corbetthe last options passed. Using .cocciconfig is possible to use idutils, however 2914b9033a3SJonathan Corbetgiven the order of precedence followed by Coccinelle, since the kernel now 2924b9033a3SJonathan Corbetcarries its own .cocciconfig, you will need to use SPFLAGS to use idutils if 2934b9033a3SJonathan Corbetdesired. See below section "Additional flags" for more details on how to use 2944b9033a3SJonathan Corbetidutils. 2954b9033a3SJonathan Corbet 2964b9033a3SJonathan CorbetAdditional flags 2974b9033a3SJonathan Corbet---------------- 2984b9033a3SJonathan Corbet 2994b9033a3SJonathan CorbetAdditional flags can be passed to spatch through the SPFLAGS 3004b9033a3SJonathan Corbetvariable. This works as Coccinelle respects the last flags 3014b9033a3SJonathan Corbetgiven to it when options are in conflict. :: 3024b9033a3SJonathan Corbet 3034b9033a3SJonathan Corbet make SPFLAGS=--use-glimpse coccicheck 3044b9033a3SJonathan Corbet 3054b9033a3SJonathan CorbetCoccinelle supports idutils as well but requires coccinelle >= 1.0.6. 3064b9033a3SJonathan CorbetWhen no ID file is specified coccinelle assumes your ID database file 3077d087d02SRandy Dunlapis in the file .id-utils.index on the top level of the kernel. Coccinelle 3084b9033a3SJonathan Corbetcarries a script scripts/idutils_index.sh which creates the database with:: 3094b9033a3SJonathan Corbet 3104b9033a3SJonathan Corbet mkid -i C --output .id-utils.index 3114b9033a3SJonathan Corbet 3124b9033a3SJonathan CorbetIf you have another database filename you can also just symlink with this 3134b9033a3SJonathan Corbetname. :: 3144b9033a3SJonathan Corbet 3154b9033a3SJonathan Corbet make SPFLAGS=--use-idutils coccicheck 3164b9033a3SJonathan Corbet 3174b9033a3SJonathan CorbetAlternatively you can specify the database filename explicitly, for 3184b9033a3SJonathan Corbetinstance:: 3194b9033a3SJonathan Corbet 3204b9033a3SJonathan Corbet make SPFLAGS="--use-idutils /full-path/to/ID" coccicheck 3214b9033a3SJonathan Corbet 3224b9033a3SJonathan CorbetSee ``spatch --help`` to learn more about spatch options. 3234b9033a3SJonathan Corbet 3244b9033a3SJonathan CorbetNote that the ``--use-glimpse`` and ``--use-idutils`` options 3254b9033a3SJonathan Corbetrequire external tools for indexing the code. None of them is 3264b9033a3SJonathan Corbetthus active by default. However, by indexing the code with 3274b9033a3SJonathan Corbetone of these tools, and according to the cocci file used, 3284b9033a3SJonathan Corbetspatch could proceed the entire code base more quickly. 3294b9033a3SJonathan Corbet 3304b9033a3SJonathan CorbetSmPL patch specific options 3314b9033a3SJonathan Corbet--------------------------- 3324b9033a3SJonathan Corbet 3334b9033a3SJonathan CorbetSmPL patches can have their own requirements for options passed 3347d087d02SRandy Dunlapto Coccinelle. SmPL patch-specific options can be provided by 3354b9033a3SJonathan Corbetproviding them at the top of the SmPL patch, for instance:: 3364b9033a3SJonathan Corbet 3374b9033a3SJonathan Corbet // Options: --no-includes --include-headers 3384b9033a3SJonathan Corbet 3394b9033a3SJonathan CorbetSmPL patch Coccinelle requirements 3404b9033a3SJonathan Corbet---------------------------------- 3414b9033a3SJonathan Corbet 3424b9033a3SJonathan CorbetAs Coccinelle features get added some more advanced SmPL patches 3434b9033a3SJonathan Corbetmay require newer versions of Coccinelle. If an SmPL patch requires 3447d087d02SRandy Dunlapa minimum version of Coccinelle, this can be specified as follows, 3454b9033a3SJonathan Corbetas an example if requiring at least Coccinelle >= 1.0.5:: 3464b9033a3SJonathan Corbet 3474b9033a3SJonathan Corbet // Requires: 1.0.5 3484b9033a3SJonathan Corbet 3494b9033a3SJonathan CorbetProposing new semantic patches 350cc8246deSHeinrich Schuchardt------------------------------ 3514b9033a3SJonathan Corbet 3524b9033a3SJonathan CorbetNew semantic patches can be proposed and submitted by kernel 3534b9033a3SJonathan Corbetdevelopers. For sake of clarity, they should be organized in the 3544b9033a3SJonathan Corbetsub-directories of ``scripts/coccinelle/``. 3554b9033a3SJonathan Corbet 3564b9033a3SJonathan Corbet 3574b9033a3SJonathan CorbetDetailed description of the ``report`` mode 3584b9033a3SJonathan Corbet------------------------------------------- 3594b9033a3SJonathan Corbet 3604b9033a3SJonathan Corbet``report`` generates a list in the following format:: 3614b9033a3SJonathan Corbet 3624b9033a3SJonathan Corbet file:line:column-column: message 3634b9033a3SJonathan Corbet 3644b9033a3SJonathan CorbetExample 3654b9033a3SJonathan Corbet~~~~~~~ 3664b9033a3SJonathan Corbet 3674b9033a3SJonathan CorbetRunning:: 3684b9033a3SJonathan Corbet 3694b9033a3SJonathan Corbet make coccicheck MODE=report COCCI=scripts/coccinelle/api/err_cast.cocci 3704b9033a3SJonathan Corbet 3714b9033a3SJonathan Corbetwill execute the following part of the SmPL script:: 3724b9033a3SJonathan Corbet 3734b9033a3SJonathan Corbet <smpl> 3744b9033a3SJonathan Corbet @r depends on !context && !patch && (org || report)@ 3754b9033a3SJonathan Corbet expression x; 3764b9033a3SJonathan Corbet position p; 3774b9033a3SJonathan Corbet @@ 3784b9033a3SJonathan Corbet 3794b9033a3SJonathan Corbet ERR_PTR@p(PTR_ERR(x)) 3804b9033a3SJonathan Corbet 3814b9033a3SJonathan Corbet @script:python depends on report@ 3824b9033a3SJonathan Corbet p << r.p; 3834b9033a3SJonathan Corbet x << r.x; 3844b9033a3SJonathan Corbet @@ 3854b9033a3SJonathan Corbet 3864b9033a3SJonathan Corbet msg="ERR_CAST can be used with %s" % (x) 3874b9033a3SJonathan Corbet coccilib.report.print_report(p[0], msg) 3884b9033a3SJonathan Corbet </smpl> 3894b9033a3SJonathan Corbet 3904b9033a3SJonathan CorbetThis SmPL excerpt generates entries on the standard output, as 3914b9033a3SJonathan Corbetillustrated below:: 3924b9033a3SJonathan Corbet 3934b9033a3SJonathan Corbet /home/user/linux/crypto/ctr.c:188:9-16: ERR_CAST can be used with alg 3944b9033a3SJonathan Corbet /home/user/linux/crypto/authenc.c:619:9-16: ERR_CAST can be used with auth 3954b9033a3SJonathan Corbet /home/user/linux/crypto/xts.c:227:9-16: ERR_CAST can be used with alg 3964b9033a3SJonathan Corbet 3974b9033a3SJonathan Corbet 3984b9033a3SJonathan CorbetDetailed description of the ``patch`` mode 3994b9033a3SJonathan Corbet------------------------------------------ 4004b9033a3SJonathan Corbet 4014b9033a3SJonathan CorbetWhen the ``patch`` mode is available, it proposes a fix for each problem 4024b9033a3SJonathan Corbetidentified. 4034b9033a3SJonathan Corbet 4044b9033a3SJonathan CorbetExample 4054b9033a3SJonathan Corbet~~~~~~~ 4064b9033a3SJonathan Corbet 4074b9033a3SJonathan CorbetRunning:: 4084b9033a3SJonathan Corbet 4094b9033a3SJonathan Corbet make coccicheck MODE=patch COCCI=scripts/coccinelle/api/err_cast.cocci 4104b9033a3SJonathan Corbet 4114b9033a3SJonathan Corbetwill execute the following part of the SmPL script:: 4124b9033a3SJonathan Corbet 4134b9033a3SJonathan Corbet <smpl> 4144b9033a3SJonathan Corbet @ depends on !context && patch && !org && !report @ 4154b9033a3SJonathan Corbet expression x; 4164b9033a3SJonathan Corbet @@ 4174b9033a3SJonathan Corbet 4184b9033a3SJonathan Corbet - ERR_PTR(PTR_ERR(x)) 4194b9033a3SJonathan Corbet + ERR_CAST(x) 4204b9033a3SJonathan Corbet </smpl> 4214b9033a3SJonathan Corbet 4224b9033a3SJonathan CorbetThis SmPL excerpt generates patch hunks on the standard output, as 4234b9033a3SJonathan Corbetillustrated below:: 4244b9033a3SJonathan Corbet 4254b9033a3SJonathan Corbet diff -u -p a/crypto/ctr.c b/crypto/ctr.c 4264b9033a3SJonathan Corbet --- a/crypto/ctr.c 2010-05-26 10:49:38.000000000 +0200 4274b9033a3SJonathan Corbet +++ b/crypto/ctr.c 2010-06-03 23:44:49.000000000 +0200 4284b9033a3SJonathan Corbet @@ -185,7 +185,7 @@ static struct crypto_instance *crypto_ct 4294b9033a3SJonathan Corbet alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER, 4304b9033a3SJonathan Corbet CRYPTO_ALG_TYPE_MASK); 4314b9033a3SJonathan Corbet if (IS_ERR(alg)) 4324b9033a3SJonathan Corbet - return ERR_PTR(PTR_ERR(alg)); 4334b9033a3SJonathan Corbet + return ERR_CAST(alg); 4344b9033a3SJonathan Corbet 4354b9033a3SJonathan Corbet /* Block size must be >= 4 bytes. */ 4364b9033a3SJonathan Corbet err = -EINVAL; 4374b9033a3SJonathan Corbet 4384b9033a3SJonathan CorbetDetailed description of the ``context`` mode 4394b9033a3SJonathan Corbet-------------------------------------------- 4404b9033a3SJonathan Corbet 4414b9033a3SJonathan Corbet``context`` highlights lines of interest and their context 4424b9033a3SJonathan Corbetin a diff-like style. 4434b9033a3SJonathan Corbet 4444b9033a3SJonathan Corbet **NOTE**: The diff-like output generated is NOT an applicable patch. The 4454b9033a3SJonathan Corbet intent of the ``context`` mode is to highlight the important lines 4464b9033a3SJonathan Corbet (annotated with minus, ``-``) and gives some surrounding context 4474b9033a3SJonathan Corbet lines around. This output can be used with the diff mode of 4484b9033a3SJonathan Corbet Emacs to review the code. 4494b9033a3SJonathan Corbet 4504b9033a3SJonathan CorbetExample 4514b9033a3SJonathan Corbet~~~~~~~ 4524b9033a3SJonathan Corbet 4534b9033a3SJonathan CorbetRunning:: 4544b9033a3SJonathan Corbet 4554b9033a3SJonathan Corbet make coccicheck MODE=context COCCI=scripts/coccinelle/api/err_cast.cocci 4564b9033a3SJonathan Corbet 4574b9033a3SJonathan Corbetwill execute the following part of the SmPL script:: 4584b9033a3SJonathan Corbet 4594b9033a3SJonathan Corbet <smpl> 4604b9033a3SJonathan Corbet @ depends on context && !patch && !org && !report@ 4614b9033a3SJonathan Corbet expression x; 4624b9033a3SJonathan Corbet @@ 4634b9033a3SJonathan Corbet 4644b9033a3SJonathan Corbet * ERR_PTR(PTR_ERR(x)) 4654b9033a3SJonathan Corbet </smpl> 4664b9033a3SJonathan Corbet 4674b9033a3SJonathan CorbetThis SmPL excerpt generates diff hunks on the standard output, as 4684b9033a3SJonathan Corbetillustrated below:: 4694b9033a3SJonathan Corbet 4704b9033a3SJonathan Corbet diff -u -p /home/user/linux/crypto/ctr.c /tmp/nothing 4714b9033a3SJonathan Corbet --- /home/user/linux/crypto/ctr.c 2010-05-26 10:49:38.000000000 +0200 4724b9033a3SJonathan Corbet +++ /tmp/nothing 4734b9033a3SJonathan Corbet @@ -185,7 +185,6 @@ static struct crypto_instance *crypto_ct 4744b9033a3SJonathan Corbet alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER, 4754b9033a3SJonathan Corbet CRYPTO_ALG_TYPE_MASK); 4764b9033a3SJonathan Corbet if (IS_ERR(alg)) 4774b9033a3SJonathan Corbet - return ERR_PTR(PTR_ERR(alg)); 4784b9033a3SJonathan Corbet 4794b9033a3SJonathan Corbet /* Block size must be >= 4 bytes. */ 4804b9033a3SJonathan Corbet err = -EINVAL; 4814b9033a3SJonathan Corbet 4824b9033a3SJonathan CorbetDetailed description of the ``org`` mode 4834b9033a3SJonathan Corbet---------------------------------------- 4844b9033a3SJonathan Corbet 4854b9033a3SJonathan Corbet``org`` generates a report in the Org mode format of Emacs. 4864b9033a3SJonathan Corbet 4874b9033a3SJonathan CorbetExample 4884b9033a3SJonathan Corbet~~~~~~~ 4894b9033a3SJonathan Corbet 4904b9033a3SJonathan CorbetRunning:: 4914b9033a3SJonathan Corbet 4924b9033a3SJonathan Corbet make coccicheck MODE=org COCCI=scripts/coccinelle/api/err_cast.cocci 4934b9033a3SJonathan Corbet 4944b9033a3SJonathan Corbetwill execute the following part of the SmPL script:: 4954b9033a3SJonathan Corbet 4964b9033a3SJonathan Corbet <smpl> 4974b9033a3SJonathan Corbet @r depends on !context && !patch && (org || report)@ 4984b9033a3SJonathan Corbet expression x; 4994b9033a3SJonathan Corbet position p; 5004b9033a3SJonathan Corbet @@ 5014b9033a3SJonathan Corbet 5024b9033a3SJonathan Corbet ERR_PTR@p(PTR_ERR(x)) 5034b9033a3SJonathan Corbet 5044b9033a3SJonathan Corbet @script:python depends on org@ 5054b9033a3SJonathan Corbet p << r.p; 5064b9033a3SJonathan Corbet x << r.x; 5074b9033a3SJonathan Corbet @@ 5084b9033a3SJonathan Corbet 5094b9033a3SJonathan Corbet msg="ERR_CAST can be used with %s" % (x) 5104b9033a3SJonathan Corbet msg_safe=msg.replace("[","@(").replace("]",")") 5114b9033a3SJonathan Corbet coccilib.org.print_todo(p[0], msg_safe) 5124b9033a3SJonathan Corbet </smpl> 5134b9033a3SJonathan Corbet 5144b9033a3SJonathan CorbetThis SmPL excerpt generates Org entries on the standard output, as 5154b9033a3SJonathan Corbetillustrated below:: 5164b9033a3SJonathan Corbet 5174b9033a3SJonathan Corbet * TODO [[view:/home/user/linux/crypto/ctr.c::face=ovl-face1::linb=188::colb=9::cole=16][ERR_CAST can be used with alg]] 5184b9033a3SJonathan Corbet * TODO [[view:/home/user/linux/crypto/authenc.c::face=ovl-face1::linb=619::colb=9::cole=16][ERR_CAST can be used with auth]] 5194b9033a3SJonathan Corbet * TODO [[view:/home/user/linux/crypto/xts.c::face=ovl-face1::linb=227::colb=9::cole=16][ERR_CAST can be used with alg]] 520