]> git.ipfire.org Git - thirdparty/systemd.git/blame - docs/HACKING.md
Merge pull request #20500 from poettering/import-tweaks
[thirdparty/systemd.git] / docs / HACKING.md
CommitLineData
c3e270f4
FB
1---
2title: Hacking on systemd
4cdca0af 3category: Contributing
b41a3f66 4layout: default
c3e270f4
FB
5---
6
5a8a9dee
FA
7# Hacking on systemd
8
9We welcome all contributions to systemd. If you notice a bug or a missing
10feature, please feel invited to fix it, and submit your work as a GitHub Pull
11Request (PR) at https://github.com/systemd/systemd/pull/new.
12
75e09908
ZJS
13Please make sure to follow our [Coding Style](CODING_STYLE.md) when submitting
14patches. Also have a look at our [Contribution Guidelines](CONTRIBUTING.md).
5a8a9dee
FA
15
16When adding new functionality, tests should be added. For shared functionality
17(in `src/basic/` and `src/shared/`) unit tests should be sufficient. The general
18policy is to keep tests in matching files underneath `src/test/`,
19e.g. `src/test/test-path-util.c` contains tests for any functions in
20`src/basic/path-util.c`. If adding a new source file, consider adding a matching
21test executable. For features at a higher level, tests in `src/test/` are very
1e268f42 22strongly recommended. If that is not possible, integration tests in `test/` are
5a8a9dee
FA
23encouraged.
24
75e09908
ZJS
25Please also have a look at our list of [code quality tools](CODE_QUALITY.md) we
26have setup for systemd, to ensure our codebase stays in good shape.
5a8a9dee
FA
27
28Please always test your work before submitting a PR. For many of the components
29of systemd testing is straight-forward as you can simply compile systemd and
30run the relevant tool from the build directory.
31
32For some components (most importantly, systemd/PID1 itself) this is not
33possible, however. In order to simplify testing for cases like this we provide
34a set of `mkosi` build files directly in the source tree. `mkosi` is a tool for
35building clean OS images from an upstream distribution in combination with a
36fresh build of the project in the local working directory. To make use of this,
37please acquire `mkosi` from https://github.com/systemd/mkosi first, unless your
38distribution has packaged it already and you can get it from there. After the
75e09908
ZJS
39tool is installed, symlink the settings file for your distribution of choice
40from .mkosi/ to mkosi.default in the project root directory (note that the
41package manager for this distro needs to be installed on your host system).
42After doing that, it is sufficient to type `mkosi` in the systemd project
43directory to generate a disk image `image.raw` you can boot either in
44`systemd-nspawn` or in an UEFI-capable VM:
5a8a9dee
FA
45
46```
c38667f7 47# mkosi boot
5a8a9dee
FA
48```
49
50or:
51
52```
c38667f7 53# mkosi qemu
5a8a9dee
FA
54```
55
56Every time you rerun the `mkosi` command a fresh image is built, incorporating
c38667f7
DDM
57all current changes you made to the project tree. To save time when rebuilding,
58you can use mkosi's incremental mode (`-i`). This instructs mkosi to build a set
59of cache images that make future builds a lot faster. Note that the `-i` flag
60both instructs mkosi to build cached images if they don't exist yet and to use
61cached images if they already exist so make sure to always specify `-i` if you
62want mkosi to use the cached images.
63
64If you're going to build mkosi images that use the same distribution and release
65that you're currently using, you can speed up the initial mkosi run by having it
66reuse the host's package cache. To do this, create a mkosi override file in
67mkosi.default.d/ (e.g 20-local.conf) and add the following contents:
5a8a9dee 68
c38667f7
DDM
69```
70[Packages]
71Cache=<full-path-to-package-manager-cache> # (e.g. /var/cache/dnf)
72```
5a8a9dee 73
c38667f7
DDM
74If you want to do a local build without mkosi, most distributions also provide
75very simple and convenient ways to install all development packages necessary
76to build systemd. For example, on Fedora the following command line should be
77sufficient to install all of systemd's build dependencies:
5a8a9dee
FA
78
79```
80# dnf builddep systemd
81```
82
83Putting this all together, here's a series of commands for preparing a patch
84for systemd (this example is for Fedora):
85
86```sh
172ad053
DDM
87$ sudo dnf builddep systemd # install build dependencies
88$ sudo dnf install mkosi # install tool to quickly build images
5a8a9dee
FA
89$ git clone https://github.com/systemd/systemd.git
90$ cd systemd
172ad053
DDM
91$ vim src/core/main.c # or wherever you'd like to make your changes
92$ meson build # configure the build
8b08be40
LP
93$ meson compile -C build # build it locally, see if everything compiles fine
94$ meson test -C build # run some simple regression tests
172ad053 95$ ln -s .mkosi/mkosi.fedora mkosi.default # Configure mkosi to build a fedora image
172ad053 96$ sudo mkosi # build a test image
c38667f7 97$ sudo mkosi boot # boot up the test image
172ad053
DDM
98$ git add -p # interactively put together your patch
99$ git commit # commit it
5a8a9dee 100$ git push REMOTE HEAD:refs/heads/BRANCH
172ad053
DDM
101 # where REMOTE is your "fork" on GitHub
102 # and BRANCH is a branch name.
5a8a9dee
FA
103```
104
105And after that, head over to your repo on GitHub and click "Compare & pull request"
106
107Happy hacking!
108
89f52a78
ZJS
109## Templating engines in .in files
110
111Some source files are generated during build. We use two templating engines:
112* meson's `configure_file()` directive uses syntax with `@VARIABLE@`.
113
ba777d01
ZJS
114 See the
115 [Meson docs for `configure_file()`](https://mesonbuild.com/Reference-manual.html#configure_file)
116 for details.
89f52a78 117
c9d311c7 118{% raw %}
89f52a78
ZJS
119* most files are rendered using jinja2, with `{{VARIABLE}}` and `{% if … %}`,
120 `{% elif … %}`, `{% else … %}`, `{% endif … %}` blocks. `{# … #}` is a
121 jinja2 comment, i.e. that block will not be visible in the rendered
c9d311c7
ZJS
122 output. `{% raw %} … `{% endraw %}`{{ '{' }}{{ '% endraw %' }}}` creates a block
123 where jinja2 syntax is not interpreted.
89f52a78 124
ba777d01
ZJS
125 See the
126 [Jinja Template Designer Documentation](https://jinja2docs.readthedocs.io/en/stable/templates.html#synopsis)
89f52a78
ZJS
127 for details.
128
129Please note that files for both template engines use the `.in` extension.
5a8a9dee 130
4c8e5f44
ZJS
131## Developer and release modes
132
133In the default meson configuration (`-Dmode=developer`), certain checks are
134enabled that are suitable when hacking on systemd (such as internal
89f52a78
ZJS
135documentation consistency checks). Those are not useful when compiling for
136distribution and can be disabled by setting `-Dmode=release`.
4c8e5f44 137
5a8a9dee
FA
138## Fuzzers
139
140systemd includes fuzzers in `src/fuzz/` that use libFuzzer and are automatically
135a1add 141run by [OSS-Fuzz](https://github.com/google/oss-fuzz) with sanitizers.
53a42e62 142To add a fuzz target, create a new `src/fuzz/fuzz-foo.c` file with a `LLVMFuzzerTestOneInput`
5a8a9dee
FA
143function and add it to the list in `src/fuzz/meson.build`.
144
145Whenever possible, a seed corpus and a dictionary should also be added with new
146fuzz targets. The dictionary should be named `src/fuzz/fuzz-foo.dict` and the seed
147corpus should be built and exported as `$OUT/fuzz-foo_seed_corpus.zip` in
148`tools/oss-fuzz.sh`.
149
150The fuzzers can be built locally if you have libFuzzer installed by running
151`tools/oss-fuzz.sh`. You should also confirm that the fuzzer runs in the
152OSS-Fuzz environment by checking out the OSS-Fuzz repo, and then running
153commands like this:
154
155```
156python infra/helper.py build_image systemd
157python infra/helper.py build_fuzzers --sanitizer memory systemd ../systemd
158python infra/helper.py run_fuzzer systemd fuzz-foo
159```
160
161If you find a bug that impacts the security of systemd, please follow the
162guidance in [CONTRIBUTING.md](CONTRIBUTING.md) on how to report a security vulnerability.
163
164For more details on building fuzzers and integrating with OSS-Fuzz, visit:
165
6cec69fc
LK
166- [Setting up a new project - OSS-Fuzz](https://google.github.io/oss-fuzz/getting-started/new-project-guide/)
167- [Tutorials - OSS-Fuzz](https://google.github.io/oss-fuzz/reference/useful-links/#tutorials)
4cc06b80
DDM
168
169## mkosi + clangd
170
171[clangd](https://clangd.llvm.org/) is a language server that provides code completion, diagnostics and more
172right in your editor of choice (with the right plugin installed). When using mkosi, we can run clangd in the
173mkosi build container to avoid needing to build systemd on the host machine just to make clangd work. To
174achieve this, create a script with the following contents in systemd's project directory on the host:
175
176```sh
177#!/usr/bin/env sh
178tee mkosi-clangd.build > /dev/null << EOF
179#!/usr/bin/env sh
180exec clangd \\
181 --compile-commands-dir=/root/build \\
182 --path-mappings=\\
183"\\
184$(pwd)=/root/src,\\
185$(pwd)/mkosi.builddir=/root/build,\\
186$(pwd)/mkosi.includedir=/usr/include,\\
187$(pwd)/mkosi.installdir=/root/dest\\
188" \\
189 --header-insertion=never
190EOF
191chmod +x mkosi-clangd.build
192exec sudo mkosi --source-file-transfer=mount --incremental --skip-final-phase --build-script mkosi-clangd.build build
193```
194
195Next, mark the script as executable and point your editor plugin to use this script to start clangd. For
196vscode's clangd extension, this is done via setting the `clangd.path` option to the path of the
197mkosi-clangd.sh script.
198
199To be able to navigate to include files of systemd's dependencies, we need to make the /usr/include folder of
200the build image available on the host. mkosi supports this by setting the `IncludeDirectory` option in
201mkosi's config. The easiest way to set the option is to create a file 20-local.conf in mkosi.default.d/ and
202add the following contents:
203
204```
205[Packages]
206IncludeDirectory=mkosi.includedir
207```
208
209This will make the contents of /usr/include available in mkosi.includedir in the systemd project directory.
210We already configured clangd to map any paths in /usr/include in the build image to mkosi.includedir/ on the
211host in the mkosi-clangd.sh script.
212
213We also need to make sure clangd is installed in the build image. To have mkosi install clangd in the build
214image, edit the 20-local.conf file we created earlier and add the following contents under the `[Packages]`
215section:
216
217```
218BuildPackages=<clangd-package>
219```
220
221Note that the exact package containing clangd will differ depending on the distribution used. Some
222distributions have a separate clangd package, others put the clangd binary in a clang-tools-extra package and
223some bundle clangd in the clang package.
224
225Because mkosi needs to run as root, we also need to make sure we can enter the root password when the editor
226plugin tries to run the mkosi-clangd.sh script. To be able to enter the root password in non-interactive
227scripts, we use an askpass provider. This is a program that sudo will launch if it detects it's being
228executed from a non-interactive shell so that the root password can still be entered. There are multiple
229implementations such as gnome askpass and KDE askpass. Install one of the askpass packages your distro
230provides and set the `SUDO_ASKPASS` environment variable to the path of the askpass binary you want to use.
231If configured correctly, a window will appear when your editor plugin tries to run the mkosi-clangd.sh script
232allowing you to enter the root password.
233
234Due to a bug in btrfs, it's currently impossible to mount two mkosi btrfs images at the same time. Because of
235this, trying to do a regular build while the clangd image is running will fail. To circumvent this, use ext4
236instead of btrfs for the images by adding the following contents to 20-local.conf:
237
238```
239[Output]
240Format=gpt_ext4
241```
242
243Finally, to ensure clangd starts up quickly in the editor, run an incremental build with mkosi to make sure
244the cached images are initialized (`mkosi -i`).
245
246Now, your editor will start clangd in the mkosi build image and all of clangd's features will work as
247expected.