]> git.ipfire.org Git - thirdparty/systemd.git/blame - docs/HACKING.md
dissect-image: initially fds[] array fully
[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
13Please make sure to follow our [Coding Style](CODING_STYLE.md) when submitting patches.
14Also have a look at our [Contribution Guidelines](CONTRIBUTING.md).
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
25Please also have a look at our list of [code quality tools](CODE_QUALITY.md) we have setup for systemd,
26to ensure our codebase stays in good shape.
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
172ad053
DDM
39tool is installed, symlink the settings file for your distribution of choice from
40.mkosi/ to mkosi.default in the project root directory (note that the package
41manager for this distro needs to be installed on your host system). After doing
42that, it is sufficient to type `mkosi` in the systemd project directory to
43generate a disk image `image.raw` you can boot either in `systemd-nspawn` or in
44an 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
109
4c8e5f44
ZJS
110## Developer and release modes
111
112In the default meson configuration (`-Dmode=developer`), certain checks are
113enabled that are suitable when hacking on systemd (such as internal
114documentation consistency checks). Those are not useful when compiling for code
115for distribution and can be disabled by setting `-Dmode=release`.
116
5a8a9dee
FA
117## Fuzzers
118
119systemd includes fuzzers in `src/fuzz/` that use libFuzzer and are automatically
135a1add 120run by [OSS-Fuzz](https://github.com/google/oss-fuzz) with sanitizers.
53a42e62 121To add a fuzz target, create a new `src/fuzz/fuzz-foo.c` file with a `LLVMFuzzerTestOneInput`
5a8a9dee
FA
122function and add it to the list in `src/fuzz/meson.build`.
123
124Whenever possible, a seed corpus and a dictionary should also be added with new
125fuzz targets. The dictionary should be named `src/fuzz/fuzz-foo.dict` and the seed
126corpus should be built and exported as `$OUT/fuzz-foo_seed_corpus.zip` in
127`tools/oss-fuzz.sh`.
128
129The fuzzers can be built locally if you have libFuzzer installed by running
130`tools/oss-fuzz.sh`. You should also confirm that the fuzzer runs in the
131OSS-Fuzz environment by checking out the OSS-Fuzz repo, and then running
132commands like this:
133
134```
135python infra/helper.py build_image systemd
136python infra/helper.py build_fuzzers --sanitizer memory systemd ../systemd
137python infra/helper.py run_fuzzer systemd fuzz-foo
138```
139
140If you find a bug that impacts the security of systemd, please follow the
141guidance in [CONTRIBUTING.md](CONTRIBUTING.md) on how to report a security vulnerability.
142
143For more details on building fuzzers and integrating with OSS-Fuzz, visit:
144
6cec69fc
LK
145- [Setting up a new project - OSS-Fuzz](https://google.github.io/oss-fuzz/getting-started/new-project-guide/)
146- [Tutorials - OSS-Fuzz](https://google.github.io/oss-fuzz/reference/useful-links/#tutorials)
4cc06b80
DDM
147
148## mkosi + clangd
149
150[clangd](https://clangd.llvm.org/) is a language server that provides code completion, diagnostics and more
151right in your editor of choice (with the right plugin installed). When using mkosi, we can run clangd in the
152mkosi build container to avoid needing to build systemd on the host machine just to make clangd work. To
153achieve this, create a script with the following contents in systemd's project directory on the host:
154
155```sh
156#!/usr/bin/env sh
157tee mkosi-clangd.build > /dev/null << EOF
158#!/usr/bin/env sh
159exec clangd \\
160 --compile-commands-dir=/root/build \\
161 --path-mappings=\\
162"\\
163$(pwd)=/root/src,\\
164$(pwd)/mkosi.builddir=/root/build,\\
165$(pwd)/mkosi.includedir=/usr/include,\\
166$(pwd)/mkosi.installdir=/root/dest\\
167" \\
168 --header-insertion=never
169EOF
170chmod +x mkosi-clangd.build
171exec sudo mkosi --source-file-transfer=mount --incremental --skip-final-phase --build-script mkosi-clangd.build build
172```
173
174Next, mark the script as executable and point your editor plugin to use this script to start clangd. For
175vscode's clangd extension, this is done via setting the `clangd.path` option to the path of the
176mkosi-clangd.sh script.
177
178To be able to navigate to include files of systemd's dependencies, we need to make the /usr/include folder of
179the build image available on the host. mkosi supports this by setting the `IncludeDirectory` option in
180mkosi's config. The easiest way to set the option is to create a file 20-local.conf in mkosi.default.d/ and
181add the following contents:
182
183```
184[Packages]
185IncludeDirectory=mkosi.includedir
186```
187
188This will make the contents of /usr/include available in mkosi.includedir in the systemd project directory.
189We already configured clangd to map any paths in /usr/include in the build image to mkosi.includedir/ on the
190host in the mkosi-clangd.sh script.
191
192We also need to make sure clangd is installed in the build image. To have mkosi install clangd in the build
193image, edit the 20-local.conf file we created earlier and add the following contents under the `[Packages]`
194section:
195
196```
197BuildPackages=<clangd-package>
198```
199
200Note that the exact package containing clangd will differ depending on the distribution used. Some
201distributions have a separate clangd package, others put the clangd binary in a clang-tools-extra package and
202some bundle clangd in the clang package.
203
204Because mkosi needs to run as root, we also need to make sure we can enter the root password when the editor
205plugin tries to run the mkosi-clangd.sh script. To be able to enter the root password in non-interactive
206scripts, we use an askpass provider. This is a program that sudo will launch if it detects it's being
207executed from a non-interactive shell so that the root password can still be entered. There are multiple
208implementations such as gnome askpass and KDE askpass. Install one of the askpass packages your distro
209provides and set the `SUDO_ASKPASS` environment variable to the path of the askpass binary you want to use.
210If configured correctly, a window will appear when your editor plugin tries to run the mkosi-clangd.sh script
211allowing you to enter the root password.
212
213Due to a bug in btrfs, it's currently impossible to mount two mkosi btrfs images at the same time. Because of
214this, trying to do a regular build while the clangd image is running will fail. To circumvent this, use ext4
215instead of btrfs for the images by adding the following contents to 20-local.conf:
216
217```
218[Output]
219Format=gpt_ext4
220```
221
222Finally, to ensure clangd starts up quickly in the editor, run an incremental build with mkosi to make sure
223the cached images are initialized (`mkosi -i`).
224
225Now, your editor will start clangd in the mkosi build image and all of clangd's features will work as
226expected.