Luca Boccassi [Wed, 6 Nov 2024 16:42:11 +0000 (16:42 +0000)]
Update hwdb and translations (#35048)
Daan De Meyer [Wed, 6 Nov 2024 16:38:10 +0000 (17:38 +0100)]
Introduce systemd-sbsign to do secure boot signing (#35021)
Currently in mkosi and ukify we use sbsigntools to do secure boot
signing. This has multiple issues:
- sbsigntools is practically unmaintained, sbvarsign is completely
broken with the latest gnu-efi when built without -fshort-wchar and
upstream has completely ignored my bug report about this.
- sbsigntools only supports openssl engines and not the new providers
API.
- sbsigntools doesn't allow us to cache hardware token pins in the
kernel keyring like we do nowadays when we sign stuff ourselves in
systemd-repart or systemd-measure
There are alternative tools like sbctl and pesign but these do not
support caching hardware token pins in the kernel keyring either.
To get around the issues with sbsigntools, let's introduce our own
tool systemd-sbsign to do secure boot signing. This allows us to
take advantage of our own openssl infra so that hardware token pins
are cached in the kernel keyring as expected and we get openssl
provider support as well.
Luca Boccassi [Wed, 6 Nov 2024 15:50:59 +0000 (15:50 +0000)]
Update NEWS for recent PRs
Michele Dionisio [Tue, 5 Nov 2024 10:53:30 +0000 (11:53 +0100)]
networkd: add possibility to specify MulticastIGMPVersion
Luca Boccassi [Wed, 6 Nov 2024 15:13:18 +0000 (15:13 +0000)]
Grammar and formatting for DeviceTree docs (#35050)
Luca Boccassi [Wed, 6 Nov 2024 11:13:45 +0000 (11:13 +0000)]
Update translations
ninja -C build systemd-pot
ninja -C build systemd-update-po
Luca Boccassi [Wed, 6 Nov 2024 11:12:28 +0000 (11:12 +0000)]
Update hwdb
ninja -C build update-hwdb
Daan De Meyer [Tue, 5 Nov 2024 21:24:17 +0000 (22:24 +0100)]
ukify: Add --signing-provider= option
Léane GRASSER [Wed, 6 Nov 2024 12:46:55 +0000 (13:46 +0100)]
po: Translated using Weblate (French)
Currently translated at 100.0% (253 of 253 strings)
Co-authored-by: Léane GRASSER <leane.grasser@proton.me>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/main/fr/
Translation: systemd/main
Zbigniew Jędrzejewski-Szmek [Wed, 6 Nov 2024 13:56:54 +0000 (14:56 +0100)]
docs/TPM2_PCR_MEASUREMENTS: drop quotes from around section titles
The section headers used quotes as if the strings were some constants. But
AFAICT, those are just normal plain-text titles. Also lowercase them, because
this is almost like a table and it's easier to read without capitalization.
Zbigniew Jędrzejewski-Szmek [Wed, 6 Nov 2024 13:45:43 +0000 (14:45 +0100)]
tree-wide: use Device*T*ree spelling
We used both, in fact "Devicetree" was more common. But we have a general rule
that we capitalize all words in names and also we have a DeviceTree=
configuration setting, which we cannot change. If we use two different
spelllings, this will make it harder for people to use the correct one in
config files. So use the "DeviceTree" spelling everywhere.
Luca Boccassi [Wed, 6 Nov 2024 13:51:10 +0000 (13:51 +0000)]
introduce report_errno_and_exit() helper (#35028)
This is a follow for https://github.com/systemd/systemd/pull/34853. In
particular, this comment
https://github.com/systemd/systemd/pull/34853#discussion_r1825837705.
Yu Watanabe [Wed, 6 Nov 2024 10:57:39 +0000 (19:57 +0900)]
core/manager: silence false-positive warning by coverity
Follow-up for
406f1775017a5631bc91a1f53ac5e50f4fbfac0c.
Closes CID#
1564897.
Luca Boccassi [Wed, 6 Nov 2024 13:45:04 +0000 (13:45 +0000)]
machine: introduce io.systemd.Machine.Open method (#34867)
This PR introduces io.systemd.Machine.Open method which combines three
DBus alternatives:
- OpenMachinePTY
- OpenMachineLogin
- OpenMachineShell
The PR contains basic tests.
Zbigniew Jędrzejewski-Szmek [Sat, 2 Nov 2024 16:07:22 +0000 (17:07 +0100)]
pid1: stop refusing to boot with cgroup v1
Since v256 we completely fail to boot if v1 is configured. Fedora 41 was just
released with v256.7 and this is probably the first major exposure of users to
this code. It turns out not work very well. Fedora switched to v2 as default in
F31 (2019) and at that time some people added configuration to use v1 either
because of Docker or for other reasons. But it's been long enough ago that
people don't remember this and are now very unhappy when the system refuses to
boot after an upgrade.
Refusing to boot is also unnecessarilly punishing to users. For machines that
are used remotely, this could mean somebody needs to physically access the
machine. For other users, the machine might be the only way to access the net
and help, and people might not know how to set kernel parameters without some
docs. And because this is in systemd, after an upgrade all boot choices are
affected, and it's not possible to e.g. select an older kernel for boot. And
crashing the machine doesn't really serve our goal either: we were giving a
hint how to continue using v1 and nothing else.
If the new override is configured, warn and immediately boot to v1.
If v1 is configured w/o the override, warn and wait 30 s and boot to v2.
Also give a hint how to switch to v2.
https://bugzilla.redhat.com/show_bug.cgi?id=
2323323
https://bugzilla.redhat.com/show_bug.cgi?id=
2323345
https://bugzilla.redhat.com/show_bug.cgi?id=
2322467
https://www.reddit.com/r/Fedora/comments/1gfcyw9/refusing_to_run_under_cgroup_01_sy_specified_on/
The advice is to set systemd.unified_cgroup_hierarchy=1 (instead of removing
systemd.unified_cgroup_hierarchy=0). I think this is easier to convey. Users
who are understand what is going on can just remove the option instead.
The caching is dropped in cg_is_legacy_wanted(). It turns out that the
order in which those functions are called during early setup is very fragile.
If cg_is_legacy_wanted() is called before we have set up the v2 hierarchy,
we incorrectly cache a true answer. The function is called just a handful
of times at most, so we don't really need to cache the response.
Zbigniew Jędrzejewski-Szmek [Wed, 6 Nov 2024 13:40:21 +0000 (14:40 +0100)]
man/systemd-stub: rework the description of sections
The text added for .dtbauto/.hwids was very hard to grok. This rewords it to be
proper English. No semantic changes are intended.
When updating this, I noticed that the interaction of multi-profile UKIs and
dtb autoselection is very unclear, a FIXME is added.
Daan De Meyer [Tue, 5 Nov 2024 12:44:18 +0000 (13:44 +0100)]
ukify: Add support for systemd-sbsign
Daan De Meyer [Tue, 5 Nov 2024 12:43:02 +0000 (13:43 +0100)]
sbsign: Add validate-key verb
This verb checks that we can load the specified private key.
Daan De Meyer [Mon, 4 Nov 2024 23:36:32 +0000 (00:36 +0100)]
Introduce systemd-sbsign to do secure boot signing
Currently in mkosi and ukify we use sbsigntools to do secure boot
signing. This has multiple issues:
- sbsigntools is practically unmaintained, sbvarsign is completely
broken with the latest gnu-efi when built without -fshort-wchar and
upstream has completely ignored my bug report about this.
- sbsigntools only supports openssl engines and not the new providers
API.
- sbsigntools doesn't allow us to cache hardware token pins in the
kernel keyring like we do nowadays when we sign stuff ourselves in
systemd-repart or systemd-measure
There are alternative tools like sbctl and pesign but these do not
support caching hardware token pins in the kernel keyring either.
To get around the issues with sbsigntools, let's introduce our own
tool systemd-sbsign to do secure boot signing. This allows us to
take advantage of our own openssl infra so that hardware token pins
are cached in the kernel keyring as expected and we get openssl
provider support as well.
Ivan Kruglov [Wed, 23 Oct 2024 14:02:26 +0000 (16:02 +0200)]
machine: tests for io.systemd.Machine.Open
Ivan Kruglov [Wed, 23 Oct 2024 09:53:22 +0000 (11:53 +0200)]
machine: introduce io.systemd.Machine.Open method
Ivan Kruglov [Fri, 1 Nov 2024 11:05:43 +0000 (12:05 +0100)]
json: introduce json_dispatch_strv_environment()
I just moved json_dispatch_environment() from src/shared/user-record.c
under name 'json_dispatch_strv_environment()' to shared json code.
Ivan Kruglov [Tue, 22 Oct 2024 13:15:54 +0000 (15:15 +0200)]
machine: machine_default_shell_path() & machine_default_shell_args() helper functions
Ivan Kruglov [Tue, 22 Oct 2024 11:38:06 +0000 (13:38 +0200)]
machine: introduce machine_start_getty() and machine_start_shell() helpers
Ivan Kruglov [Wed, 6 Nov 2024 10:16:58 +0000 (11:16 +0100)]
use report_errno_and_exit() in src/core/exec-invoke.c
Ivan Kruglov [Wed, 6 Nov 2024 10:14:01 +0000 (11:14 +0100)]
use report_errno_and_exit() in src/shared/elf-util.c
Ivan Kruglov [Wed, 6 Nov 2024 10:13:39 +0000 (11:13 +0100)]
use report_errno_and_exit() in src/shared/dissect-image.c
Ivan Kruglov [Wed, 6 Nov 2024 10:13:16 +0000 (11:13 +0100)]
use report_errno_and_exit() in src/shared/mount-util.c
Ivan Kruglov [Wed, 6 Nov 2024 10:12:28 +0000 (11:12 +0100)]
use report_errno_and_exit() in src/shutdown/umount.c
Ivan Kruglov [Wed, 6 Nov 2024 10:11:03 +0000 (11:11 +0100)]
process-util: introduce report_errno_and_exit() as part of src/basic/process-util.{h,c}
Yu Watanabe [Wed, 6 Nov 2024 10:06:13 +0000 (19:06 +0900)]
Yu Watanabe [Wed, 6 Nov 2024 10:05:12 +0000 (19:05 +0900)]
Zbigniew Jędrzejewski-Szmek [Wed, 6 Nov 2024 09:17:56 +0000 (10:17 +0100)]
man/systemd-measure: add forgotten "="
Both syntaxes work, but let's use one syntax for consistency.
Fixup for
0641ce809a27cc1bc358924c26770f19d1213ec1.
Zbigniew Jędrzejewski-Szmek [Tue, 5 Nov 2024 17:03:03 +0000 (18:03 +0100)]
man/systemd-measure: update to new ukify syntax, non-root operation
It's been a while, but systemd-measure doesn't need root, and
ukify has a more modern syntax.
Yu Watanabe [Wed, 6 Nov 2024 08:57:56 +0000 (17:57 +0900)]
network: reconfigure interface more gracefully (#35035)
split-out of #34989.
Lennart Poettering [Wed, 6 Nov 2024 08:29:04 +0000 (09:29 +0100)]
UKI: Introduce `.dtbauto` sections (#34855)
Split out from #34158
Andres Beltran [Tue, 5 Nov 2024 19:52:35 +0000 (19:52 +0000)]
namespace-util: make idmapping not supported if syscalls return EPERM
Lennart Poettering [Wed, 6 Nov 2024 08:26:57 +0000 (09:26 +0100)]
Various man page updates (#35032)
Fixes: #34996
Fixes: #15032
Fixes: #32751
Fixes: #33130
Fixes: #34735
Fixes: #34840
Fixes: #34949
Zbigniew Jędrzejewski-Szmek [Wed, 6 Nov 2024 07:39:24 +0000 (08:39 +0100)]
mount-util: introduce path_is_network_fs_harder() and use it in networkd (#35040)
Closes #32426.
Lennart Poettering [Tue, 5 Nov 2024 13:47:32 +0000 (14:47 +0100)]
man: convert multiple left-over "See Also" sections to <simplelist>
These were forgotten during the initial conversion, probably because
most of them consisted only of a single entry.
Fix that.
Lennart Poettering [Tue, 5 Nov 2024 13:20:01 +0000 (14:20 +0100)]
man: link up D-Bus API docs from daemon man pages
Let's systematically make sure that we link up the D-Bus interfaces from
the daemon man pages once in prose and once in short form at the bottom
("See Also"), for all daemons.
Also, add reverse links at the bottom of the D-Bus API docs.
Fixes: #34996
Lennart Poettering [Tue, 5 Nov 2024 13:08:16 +0000 (14:08 +0100)]
man: point people from sd-bus man page to busctl
Lennart Poettering [Tue, 5 Nov 2024 13:07:31 +0000 (14:07 +0100)]
man: add brief entrypoint man page for sd-varlink
We have this in a similar fashion for the other APIs libsystemd
provides. Add the same for sd-varlink. There isn't too much on it for
now, but at least it's a start.
Also link it up everywhere.
Lennart Poettering [Tue, 5 Nov 2024 12:51:00 +0000 (13:51 +0100)]
man: tone down claims on processes having exited already in ExecStop=
Processes can easily survive the first kill operation we execute, hence
we shouldn't make strong claims about them having exited already. Let's
just say "likely" hence.
Fixes: #15032
Lennart Poettering [Tue, 5 Nov 2024 12:36:19 +0000 (13:36 +0100)]
man: document that .path units don't care for hidden files
Fixes: #32751
Lennart Poettering [Tue, 5 Nov 2024 12:33:53 +0000 (13:33 +0100)]
man: document that PrivateTmp= is unaffected by ProtectSystem=strict
Fixes: #33130
Lennart Poettering [Tue, 5 Nov 2024 12:27:23 +0000 (13:27 +0100)]
man: highlight the privilege issues around the LogControl1 more
Let's emphasize the privilege thing with a <caution> section.
Let's also point out that other D-Bus libraries are less restrictive
than sd-bus by default regarding permission access.
Fixes: #34735
anonymix007 [Tue, 22 Oct 2024 12:07:15 +0000 (15:07 +0300)]
man: Document stub behaviour for .hwids and .dtbauto sections
anonymix007 [Tue, 22 Oct 2024 11:41:55 +0000 (14:41 +0300)]
stub: Handle .dtbauto sections
anonymix007 [Tue, 22 Oct 2024 11:40:57 +0000 (14:40 +0300)]
measure: Introduce .dtbauto support
anonymix007 [Tue, 22 Oct 2024 11:38:00 +0000 (14:38 +0300)]
uki: add new .dtbauto PE section type
.dtbauto section contains DT blobs, just like .dtb, the difference is
that multiple .dtbauto sections are allowed to be in a UKI and only one
is selected automatically
Temporarily drop an assert_cc() check in systemd-measure to make it compilable before the next commit
anonymix007 [Wed, 4 Sep 2024 11:40:18 +0000 (14:40 +0300)]
measure: introduce support for a .hwids section
anonymix007 [Wed, 4 Sep 2024 09:49:29 +0000 (12:49 +0300)]
boot: Add .dtbauto section matching in PE section discovery against HWIDs and FW-provided DT
Lennart Poettering [Tue, 5 Nov 2024 12:15:36 +0000 (13:15 +0100)]
man: don't claim SELinuxContext= only worked in the system service manager
Fixes: #34840
Lennart Poettering [Tue, 5 Nov 2024 12:12:20 +0000 (13:12 +0100)]
man: document the timeout applied to /usr/lib/systemd/system-shutdown/ drop-in binaries
Fixes: #34949
Luca Boccassi [Tue, 5 Nov 2024 18:15:36 +0000 (18:15 +0000)]
test: delete /swapfile after swapoff
[ 23.608342] TEST-55-OOMD.sh[689]: + btrfs filesystem mkswapfile -s 64M /swapfile
[ 23.651930] TEST-55-OOMD.sh[704]: ERROR: cannot create new swapfile: File exists
Ronan Pigott [Mon, 4 Nov 2024 23:12:00 +0000 (16:12 -0700)]
network: handle ENODATA better with DNR
It is normal for DHCP leases not to have DNR options. We need to be less
verbose and more forgiving in these cases. Also, if either DHCP does not
have DNR options, make sure to still consider any DHCPv6/RA options.
Fixes:
c7c9e3c7c016 (network: adjust log message about DNR)
Yu Watanabe [Tue, 5 Nov 2024 19:42:16 +0000 (04:42 +0900)]
network: use path_is_network_fs_harder()
Closes #32426.
Yu Watanabe [Tue, 5 Nov 2024 19:37:55 +0000 (04:37 +0900)]
mount-util: introduce path_is_network_fs_harder()
It also detects e.g. glusterfs or mounts with "_netdev" option.
Zbigniew Jędrzejewski-Szmek [Tue, 5 Nov 2024 17:47:54 +0000 (18:47 +0100)]
tree-wide: time-out → timeout
For justification, see
3f9a0a522f2029e9295ea5e9984259022be88413.
anonymix007 [Sat, 31 Aug 2024 18:49:10 +0000 (21:49 +0300)]
boot: Add HWID calculation from SMBIOS strings and matching against a built-in list
anonymix007 [Tue, 5 Nov 2024 19:17:21 +0000 (22:17 +0300)]
boot: Add firmware_devicetree_exists()
Diogo Ivo [Wed, 4 Sep 2024 10:00:05 +0000 (13:00 +0300)]
boot: add matching against FW-provided Devicetree blob
Add support for matching the DT contained in a .dtb section of the
UKI image against the FW provided FDT or arbitrary compatible.
Daan De Meyer [Tue, 5 Nov 2024 13:48:59 +0000 (14:48 +0100)]
openssl-util: Set default UI method instead of setting engine method
While for engines we have ENGINE_ctrl() to set the UI method for the
second PIN prompt, for openssl providers we don't have such a feature
which means we get the default openssl UI for the second pin prompt.
Instead, let's set the default UI method which does get used for the
second pin prompt by the pkcs11 provider.
Luca Boccassi [Tue, 5 Nov 2024 18:42:28 +0000 (18:42 +0000)]
Add PrivatePIDs= (continued) (#34940)
Yu Watanabe [Tue, 5 Nov 2024 02:41:31 +0000 (11:41 +0900)]
network: introduce LINK_RECONFIGURE_CLEANLY flag
And use it when explicit reconfiguration is requested by Reconfigure() DBus method
or networkd certainly detects that connected network is changed.
Otherwise do not use the flag especially when we come back from sleep mode.
Yu Watanabe [Tue, 5 Nov 2024 02:39:31 +0000 (11:39 +0900)]
network: keep dynamic configurations as possible as we can on reconfigure
E.g. when a .network file is updated, but DHCP setting is unchanged, it
is not necessary to drop acquired DHCP lease.
So, let's not stop DHCP client and friends in link_reconfigure_impl(),
but stop them later when we know they are not necessary anymore.
Still DHCP clients and friends are stopped and leases are dropped when
the explicit reconfiguration is requested
Yu Watanabe [Tue, 5 Nov 2024 02:32:33 +0000 (11:32 +0900)]
network: merge link_foreignize_config() and link_drop_foreign_config()
When a reconfiguration of an interface is triggered, previously we
call link_foreignize_config(), which sets all static configurations as
foreign, then later call link_drop_foreign_config(), which drops
unnecessary foreign configurations.
This commit merges these two steps into one, link_drop_unmanaged_config(),
which drops unnecessary static and foreign configurations.
Also, this renames link_drop_managed_configs() to
link_drop_static_config(), as it only drops static configurations.
Note that dynamically aquired configurations are dropped by
link_stop_engines().
Yu Watanabe [Mon, 4 Nov 2024 19:04:33 +0000 (04:04 +0900)]
network: several cleanups for link_reconfigure()
Effectively no functional changes, just refactoring and preparation for
later changes.
- convert boolean flag 'force' to LinkReconfigurationFlag enum,
- merge link_reconfigure() and reconfigure_handler_on_bus_method_reload() as
link_reconfigure_full(),
- Rename ReconfigureData -> LinkReconfigurationData,
- make Reconfigure() DBus message wait for reconfiguration being
started before sending reply.
Yu Watanabe [Sun, 3 Nov 2024 01:18:27 +0000 (10:18 +0900)]
network: split out link_enter_unmanaged() from link_reconfigure_impl()
No functional change, just refactoring.
Yu Watanabe [Tue, 5 Nov 2024 16:52:36 +0000 (01:52 +0900)]
Translations update from Fedora Weblate (#35031)
Weblate Translation Memory [Tue, 5 Nov 2024 13:50:15 +0000 (14:50 +0100)]
po: Translated using Weblate (German)
Currently translated at 90.9% (230 of 253 strings)
po: Translated using Weblate (German)
Currently translated at 89.3% (226 of 253 strings)
po: Translated using Weblate (German)
Currently translated at 88.9% (225 of 253 strings)
po: Translated using Weblate (German)
Currently translated at 88.1% (223 of 253 strings)
Co-authored-by: Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/main/de/
Translation: systemd/main
Ettore Atalan [Tue, 5 Nov 2024 13:50:15 +0000 (14:50 +0100)]
po: Translated using Weblate (German)
Currently translated at 90.9% (230 of 253 strings)
po: Translated using Weblate (German)
Currently translated at 89.3% (226 of 253 strings)
po: Translated using Weblate (German)
Currently translated at 88.9% (225 of 253 strings)
po: Translated using Weblate (German)
Currently translated at 88.1% (223 of 253 strings)
Co-authored-by: Ettore Atalan <atalanttore@googlemail.com>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/main/de/
Translation: systemd/main
Lennart Poettering [Tue, 5 Nov 2024 10:54:14 +0000 (11:54 +0100)]
run: handle gracefully if we can't find binary client-side due to perms
Fixes: #35022
Daan De Meyer [Thu, 29 Aug 2024 15:10:46 +0000 (17:10 +0200)]
core: Introduce PrivatePIDs=
This new setting allows unsharing the pid namespace in a unit. Because
you have to fork to get a process into a pid namespace, we fork in
systemd-executor to get into the new pid namespace. The parent then
sends the pid of the child process back to the manager and exits while
the child process continues on with the rest of exec_invoke() and then
executes the actual payload.
Communicating the child pid is done via a new pidref socket pair that is
set up on manager startup.
We unshare the PID namespace right before the mount namespace so we
mount procfs correctly. Note PrivatePIDs=yes always implies MountAPIVFS=yes
to mount procfs.
When running unprivileged in a user session, user namespace is set up first
to allow for PID namespace to be unshared. However, when running in
privileged mode, we unshare the user namespace last to ensure the user
namespace does not own the PID namespace and cannot break out of the sandbox.
Note we disallow Type=forking services from using PrivatePIDs=yes since the
init proess inside the PID namespace must not exit for other processes in
the namespace to exist.
Note Daan De Meyer did the original work for this commit with Ryan Wilson
addressing follow-ups.
Co-authored-by: Daan De Meyer <daan.j.demeyer@gmail.com>
Daan De Meyer [Sun, 3 Nov 2024 17:48:53 +0000 (18:48 +0100)]
pcrlock: Move pe_hash() and uki_hash() to pe-binary.h
Let's move these to shared so we can reuse pe_hash() in the upcoming
systemd-sbsign.
Daan De Meyer [Tue, 5 Nov 2024 13:14:03 +0000 (14:14 +0100)]
mkosi: Add ruff and mypy to tools tree packages
anonymix007 [Thu, 10 Oct 2024 15:35:02 +0000 (18:35 +0300)]
fundamental: Add HWID calculation
anonymix007 [Wed, 16 Oct 2024 14:59:08 +0000 (17:59 +0300)]
boot: Add xnew0
Same as xnew but initialized with zeros
Zbigniew Jędrzejewski-Szmek [Sun, 3 Nov 2024 11:58:12 +0000 (12:58 +0100)]
resolved: log error messages for openssl/gnutls context creation
In https://bugzilla.redhat.com/show_bug.cgi?id=
2322937 we're getting
an error message:
Okt 29 22:21:03 fedora systemd-resolved[29311]: Could not create manager: Cannot allocate memory
I expect that this actually comes from dnstls_manager_init(), the
openssl version. But without real logs it's hard to know for sure.
Use EIO instead of ENOMEM, because the problem is unlikely to be actually
related to memory.
Ronan Pigott [Tue, 5 Nov 2024 03:45:27 +0000 (20:45 -0700)]
network: limit the total number of Encrypted DNS options processed
We need a sensible limit on the number of Encrypted DNS options allowed
so that the set of resolvers per link does not grow without bound.
Fixes:
0c90d1d2f243 ("ndisc: Parse RFC9463 encrypted DNS (DNR) option")
Luca Boccassi [Tue, 5 Nov 2024 00:56:28 +0000 (00:56 +0000)]
sd-daemon: some tweaks (#35011)
Luca Boccassi [Mon, 4 Nov 2024 21:46:19 +0000 (21:46 +0000)]
ci: add coverage for builds without sd-boot (#35016)
This should catch compilation issues such as:
https://github.com/systemd/systemd/pull/35014
Luca Boccassi [Mon, 4 Nov 2024 19:43:02 +0000 (19:43 +0000)]
ci: add coverage for builds without sd-boot
This should catch compilation issues such as:
https://github.com/systemd/systemd/pull/35014
Luca Boccassi [Mon, 4 Nov 2024 20:26:34 +0000 (20:26 +0000)]
test: set nullglob to avoid failure when building without sd-boot
2024-11-04T20:13:17.3258095Z + for loader in build/src/boot/efi/*{.efi,.efi.stub}
2024-11-04T20:13:17.3258275Z ++ sbverify --list 'build/src/boot/efi/*.efi'
2024-11-04T20:13:17.3258525Z + [[ Error reading file build/src/boot/efi/*.efi: No such file or directory
2024-11-04T20:13:17.3258952Z Can't open image build/src/boot/efi/*.efi != \N\o\ \s\i\g\n\a\t\u\r\e\ \t\a\b\l\e\ \p\r\e\s\e\n\t ]]
Luca Boccassi [Mon, 4 Nov 2024 20:22:01 +0000 (20:22 +0000)]
test: fix tool name in comment
Yu Watanabe [Mon, 4 Nov 2024 19:16:44 +0000 (04:16 +0900)]
network: sevearal random trivial cleanups (#34994)
split-out of #34989.
Daan De Meyer [Mon, 4 Nov 2024 11:21:21 +0000 (12:21 +0100)]
tmpfiles: Implement L? to only create symlinks if source exists
This allows a single tmpfiles snippet with lines to symlink directories
from /usr/share/factory to be shared across many different configurations
while making sure symlinks only get created if the source actually exists.
Yu Watanabe [Fri, 1 Nov 2024 14:47:59 +0000 (23:47 +0900)]
network/dhcp4: keep DHCP address and routes on stop even when SendDecline=yes
KeepConfiguration=dhcp or dhcp-on-stop already violate RFC. It is not
necessary to honor the RFC about sending decline message on stop.
Yu Watanabe [Sat, 2 Nov 2024 09:32:02 +0000 (18:32 +0900)]
network: expose log_route_debug() and log_address_debug()
They will be used in another file in a later commit.
Yu Watanabe [Sat, 2 Nov 2024 09:26:43 +0000 (18:26 +0900)]
network: add more debugging logs
This also fixes the position of the logging "Enumeration completed.",
and downgrade its log level.
Yu Watanabe [Fri, 1 Nov 2024 21:31:25 +0000 (06:31 +0900)]
network: check if interface is initialized after enumeration completed
We enumerate interfaces at first, then enumerate other configurations
like addresses and so on. If we are running on a container, previously
we started to configure the enumerated interfaces before enumerating other
configurations.
Let's configure interfaces after all configurations are enumerated.
Yu Watanabe [Fri, 1 Nov 2024 21:23:55 +0000 (06:23 +0900)]
network: check earlier if we are running in test mode
Yu Watanabe [Fri, 1 Nov 2024 21:05:23 +0000 (06:05 +0900)]
network: introduce network_config_source_from_string()
It is currently unused, but will be used later.
Preparation for later commits.
Yu Watanabe [Fri, 1 Nov 2024 21:02:21 +0000 (06:02 +0900)]
network/json: add missing entries for route properties
Yu Watanabe [Fri, 1 Nov 2024 21:00:29 +0000 (06:00 +0900)]
network: remove unexpected netlink socket from service manager
Yu Watanabe [Fri, 1 Nov 2024 20:57:46 +0000 (05:57 +0900)]
daemon-util: expose notify_push_fd()
It will be used in a later commit.
Yu Watanabe [Fri, 1 Nov 2024 16:01:30 +0000 (01:01 +0900)]
network/address: slightly optimize link_address_is_dynamic()
Yu Watanabe [Fri, 1 Nov 2024 14:07:07 +0000 (23:07 +0900)]
network: realign string table
Daan De Meyer [Fri, 13 Sep 2024 10:46:29 +0000 (12:46 +0200)]
exec-invoke: Add debug logging for setup_private_users()