blob: 0ba76719f1b936490ab361af5110c746f3487f53 [file] [log] [blame]
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -03001=========================
Emese Revfy6b90bd42016-05-24 00:09:38 +02002GCC plugin infrastructure
3=========================
4
5
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -03006Introduction
7============
Emese Revfy6b90bd42016-05-24 00:09:38 +02008
9GCC plugins are loadable modules that provide extra features to the
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -030010compiler [1]_. They are useful for runtime instrumentation and static analysis.
Emese Revfy6b90bd42016-05-24 00:09:38 +020011We can analyse, change and add further code during compilation via
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -030012callbacks [2]_, GIMPLE [3]_, IPA [4]_ and RTL passes [5]_.
Emese Revfy6b90bd42016-05-24 00:09:38 +020013
Masahiro Yamada9b616432021-01-23 22:33:33 +090014The GCC plugin infrastructure of the kernel supports building out-of-tree
15modules, cross-compilation and building in a separate directory.
16Plugin source files have to be compilable by a C++ compiler.
Emese Revfy6b90bd42016-05-24 00:09:38 +020017
Masahiro Yamada9b616432021-01-23 22:33:33 +090018Currently the GCC plugin infrastructure supports only some architectures.
19Grep "select HAVE_GCC_PLUGINS" to find out which architectures support
20GCC plugins.
Emese Revfy6b90bd42016-05-24 00:09:38 +020021
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -030022This infrastructure was ported from grsecurity [6]_ and PaX [7]_.
Emese Revfy6b90bd42016-05-24 00:09:38 +020023
24--
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -030025
26.. [1] https://gcc.gnu.org/onlinedocs/gccint/Plugins.html
27.. [2] https://gcc.gnu.org/onlinedocs/gccint/Plugin-API.html#Plugin-API
28.. [3] https://gcc.gnu.org/onlinedocs/gccint/GIMPLE.html
29.. [4] https://gcc.gnu.org/onlinedocs/gccint/IPA.html
30.. [5] https://gcc.gnu.org/onlinedocs/gccint/RTL.html
31.. [6] https://grsecurity.net/
32.. [7] https://pax.grsecurity.net/
Emese Revfy6b90bd42016-05-24 00:09:38 +020033
34
Kees Cook8bd51a22021-10-20 10:35:53 -070035Purpose
36=======
37
38GCC plugins are designed to provide a place to experiment with potential
39compiler features that are neither in GCC nor Clang upstream. Once
40their utility is proven, the goal is to upstream the feature into GCC
41(and Clang), and then to finally remove them from the kernel once the
42feature is available in all supported versions of GCC.
43
44Specifically, new plugins should implement only features that have no
45upstream compiler support (in either GCC or Clang).
46
47When a feature exists in Clang but not GCC, effort should be made to
48bring the feature to upstream GCC (rather than just as a kernel-specific
49GCC plugin), so the entire ecosystem can benefit from it.
50
51Similarly, even if a feature provided by a GCC plugin does *not* exist
52in Clang, but the feature is proven to be useful, effort should be spent
53to upstream the feature to GCC (and Clang).
54
55After a feature is available in upstream GCC, the plugin will be made
56unbuildable for the corresponding GCC version (and later). Once all
57kernel-supported versions of GCC provide the feature, the plugin will
58be removed from the kernel.
59
60
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -030061Files
62=====
Emese Revfy6b90bd42016-05-24 00:09:38 +020063
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -030064**$(src)/scripts/gcc-plugins**
65
Emese Revfy6b90bd42016-05-24 00:09:38 +020066 This is the directory of the GCC plugins.
67
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -030068**$(src)/scripts/gcc-plugins/gcc-common.h**
69
Emese Revfy6b90bd42016-05-24 00:09:38 +020070 This is a compatibility header for GCC plugins.
71 It should be always included instead of individual gcc headers.
72
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -030073**$(src)/scripts/gcc-plugins/gcc-generate-gimple-pass.h,
74$(src)/scripts/gcc-plugins/gcc-generate-ipa-pass.h,
75$(src)/scripts/gcc-plugins/gcc-generate-simple_ipa-pass.h,
76$(src)/scripts/gcc-plugins/gcc-generate-rtl-pass.h**
77
Emese Revfy6b90bd42016-05-24 00:09:38 +020078 These headers automatically generate the registration structures for
Masahiro Yamada9b616432021-01-23 22:33:33 +090079 GIMPLE, SIMPLE_IPA, IPA and RTL passes.
Emese Revfy6b90bd42016-05-24 00:09:38 +020080 They should be preferred to creating the structures by hand.
81
82
Mauro Carvalho Chehabccd8d552017-05-14 13:45:26 -030083Usage
84=====
Emese Revfy6b90bd42016-05-24 00:09:38 +020085
86You must install the gcc plugin headers for your gcc version,
Masahiro Yamada9b616432021-01-23 22:33:33 +090087e.g., on Ubuntu for gcc-10::
Emese Revfy6b90bd42016-05-24 00:09:38 +020088
Masahiro Yamada9b616432021-01-23 22:33:33 +090089 apt-get install gcc-10-plugin-dev
Emese Revfy6b90bd42016-05-24 00:09:38 +020090
Michael Ellerman43e96ef2020-02-21 11:48:43 +110091Or on Fedora::
92
93 dnf install gcc-plugin-devel
94
Masahiro Yamada9b616432021-01-23 22:33:33 +090095Enable the GCC plugin infrastructure and some plugin(s) you want to use
96in the kernel config::
Emese Revfy6b90bd42016-05-24 00:09:38 +020097
Masahiro Yamada9b616432021-01-23 22:33:33 +090098 CONFIG_GCC_PLUGINS=y
Masahiro Yamada9b616432021-01-23 22:33:33 +090099 CONFIG_GCC_PLUGIN_LATENT_ENTROPY=y
100 ...
Emese Revfy6b90bd42016-05-24 00:09:38 +0200101
Masahiro Yamada9b616432021-01-23 22:33:33 +0900102To compile the minimum tool set including the plugin(s)::
Emese Revfy6b90bd42016-05-24 00:09:38 +0200103
Masahiro Yamada9b616432021-01-23 22:33:33 +0900104 make scripts
Emese Revfy6b90bd42016-05-24 00:09:38 +0200105
106or just run the kernel make and compile the whole kernel with
107the cyclomatic complexity GCC plugin.
108
109
1104. How to add a new GCC plugin
111==============================
112
Masahiro Yamada9b616432021-01-23 22:33:33 +0900113The GCC plugins are in scripts/gcc-plugins/. You need to put plugin source files
114right under scripts/gcc-plugins/. Creating subdirectories is not supported.
115It must be added to scripts/gcc-plugins/Makefile, scripts/Makefile.gcc-plugins
116and a relevant Kconfig file.