]> git.ipfire.org Git - thirdparty/systemd.git/log
thirdparty/systemd.git
2 weeks agoimds: add "systemd-imds" tool that is a simple client to "systemd-imdsd"
Lennart Poettering [Wed, 4 Mar 2026 14:13:25 +0000 (15:13 +0100)] 
imds: add "systemd-imds" tool that is a simple client to "systemd-imdsd"

This is a client tool to the systemd-imdsd@.service added in the
previous commit. It's mostly just a 1:1 IPC client via Varlink. It can
be used to query any IMDS key, but it's primary usecase is to acquire
the "userdata" from IMDS. Moreover, if invoked with the --import switch
it will check if the userdata contains a list of system credentials. If
so, it will import them into the local credstore. If the userdata does
not look like a list of system credentials no operation is executed,
under the assumption the data is intended for cloud-init instead.

It also imports a couple of other fields, if available and recogniuzed,
such as SSH keys and the hostname.

2 weeks agoimds: add new systemd-imdsd.service that makes IMDS data accessible locally
Lennart Poettering [Wed, 4 Mar 2026 14:10:37 +0000 (15:10 +0100)] 
imds: add new systemd-imdsd.service that makes IMDS data accessible locally

This service's job is to talk to a VM associated IMDS service provided
by the local Cloud. It tries to abstract the protocol differences
various IMDS implementations implement, but does *not* really try to
abstract more than a few basic fields of the actual IMDS metadata.

IMDS access is wrapped in a Varlink API that local clients can talk to.

If possible this makes use of the IMDS endpoint information that has
been added to hwdb in the preceeding commit. However, endpoint info can
also be provided via kernel command line and credentials. For debugging
purposes we also accept them via environment variables and command line
arguments.

This adds a concept of early-boot networking, just enough to be able to
talk to the IMDS service. It is minimally configurable via a kernel
cmdline option (and a build-time option): the user may choose between
"locked" and "unlocked" mode. In the former mode direct access to IMDS via
HTTPS is blocked via a prohibit route (and thus all IMDS communication
has to be done via systemd-imdsd@.service). In the latter case no such
lockdown takes place, and IMDS may be acquired both via this new service
and directly. The latter is typically a good idea for compatibility with
current systems, the former is preferable for secure installations.

Access to IMDS fields is controlled via PK.

2 weeks agohwdb: add database for basic IMDS properties
Lennart Poettering [Wed, 4 Mar 2026 14:07:09 +0000 (15:07 +0100)] 
hwdb: add database for basic IMDS properties

This adds a hardware database that contains information about IDMS
functionality of various clouds, keyed off the SMBIOS identification of
each. Currently this contains information about 6 major clouds, but the
idea is that this grows to include more and more major clouds.

Nothing uses this data yet, that's added in a later commit.

2 weeks agoshared/table-format: generalize table_sync_column_width to more columns
Zbigniew Jędrzejewski-Szmek [Wed, 25 Mar 2026 13:49:55 +0000 (14:49 +0100)] 
shared/table-format: generalize table_sync_column_width to more columns

The column index is moved to the first position. I think we're unlikely
to want to synchronize widths of *different* columns, and having just
one column argument makes the callers simpler. Also, the type is changed
to size_t to match other functions, and this avoids the need to cast
to size_t in the callers.

2 weeks agooptions: add common option macros for --no-ask-password, --host, --machine
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 08:49:24 +0000 (09:49 +0100)] 
options: add common option macros for --no-ask-password, --host, --machine

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agoshared/verbs: introduce verb groups
Zbigniew Jędrzejewski-Szmek [Wed, 25 Mar 2026 12:57:54 +0000 (13:57 +0100)] 
shared/verbs: introduce verb groups

This mirrors the idea and implementation for options.

Previously, the Verb struct was named as verb_func_data_nn, but
with the group marker entry, we don't have 'verb_func', so let's
just call the item verb_data_nn. Using the verb here is a complication
that is not needed.

2 weeks agoshared/options: store argc+argv in the OptionParser state struct
Zbigniew Jędrzejewski-Szmek [Wed, 25 Mar 2026 15:35:12 +0000 (16:35 +0100)] 
shared/options: store argc+argv in the OptionParser state struct

After writing the code to parse options in a bunch of places, I think
passing the argc+argv to various functions to query state is annoying.
It seems nicer to just stash them in the state struct once.

2 weeks agoshared/options: stop removing items from argv array
Zbigniew Jędrzejewski-Szmek [Wed, 25 Mar 2026 07:15:21 +0000 (08:15 +0100)] 
shared/options: stop removing items from argv array

If we remove "--" from argv, the argc parameter stops being valid. But
that state is effectively global, albeit readonly, and somebody looking
at argv+argc after that will see an inconsistent state. Let's behave
like the libc parsing code and instead just shuffle things around in
argv, so that the argv+argc pair remains consistent.

This allows the code to calculate how many options are remaining to
be simplified.

2 weeks agoci: Add subject_type to createReviewComment()
Daan De Meyer [Thu, 26 Mar 2026 08:38:03 +0000 (09:38 +0100)] 
ci: Add subject_type to createReviewComment()

Apparently this is required by the createReviewComment() API.

2 weeks agoci: Use path instead of file in claude-review prompt as JSON key
Daan De Meyer [Thu, 26 Mar 2026 08:36:51 +0000 (09:36 +0100)] 
ci: Use path instead of file in claude-review prompt as JSON key

In https://github.com/systemd/systemd/pull/40980 claude hallucinated
and used "path" instead of "file" as the JSON key. Since "path" is
arguably more correct than "file" anyway, let's switch to that.

2 weeks agohwdb: Add PXN HB S handbrake
Luan Vitor Simião Oliveira [Wed, 25 Mar 2026 22:11:00 +0000 (19:11 -0300)] 
hwdb: Add PXN HB S handbrake

otherwise, it is not classified.
reports 2 axes and 2 buttons although only 1 is actually used.

2 weeks agotwo small resolved fixups (#41337)
Lennart Poettering [Thu, 26 Mar 2026 07:33:49 +0000 (08:33 +0100)] 
two small resolved fixups (#41337)

2 weeks agotpm2-util: fix PCR bank guessing without EFI
Patrick Wicki [Fri, 20 Mar 2026 14:56:56 +0000 (15:56 +0100)] 
tpm2-util: fix PCR bank guessing without EFI

Since 7643e4a89 efi_get_active_pcr_banks() is used to determine the
active PCR banks. Without EFI support, this returns -EOPNOTSUPP. This in
turns leads to cryptenroll and cryptsetup attach failures unless the PCR
bank is explicitly set, i.e.

$ systemd-cryptenroll $LUKS_PART --tpm2-device=auto --tpm2-pcrs='7'
[...]
Could not read pcr values: Operation not supported

But it works fine with --tpm2-pcrs='7:sha256'.

Similarly, unsealing during cryptsetup attach also fails if the bank
needs to be determined:

Failed to unseal secret using TPM2: Operation not supported

Catch the -EOPNOTSUPP and fallback to the guessing strategy.

Signed-off-by: Patrick Wicki <patrick.wicki@subset.ch>
2 weeks agopo: Translated using Weblate (Kabyle)
Massii Aqvayli [Wed, 25 Mar 2026 21:58:45 +0000 (21:58 +0000)] 
po: Translated using Weblate (Kabyle)

Currently translated at 36.4% (97 of 266 strings)

Co-authored-by: Massii Aqvayli <massiin@proton.me>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/main/kab/
Translation: systemd/main

2 weeks agoresolved: move resetting of {etc_hosts|static_records}_last to manager_dispatch_reloa... 41337/head
Lennart Poettering [Wed, 25 Mar 2026 21:18:12 +0000 (22:18 +0100)] 
resolved: move resetting of {etc_hosts|static_records}_last to manager_dispatch_reload_signal()

This addresses
https://github.com/systemd/systemd/pull/41213#pullrequestreview-4002247053
which I somehow missed earlier.

Claude found a real issue for the case of manager_etc_hosts_flush().
We'll do the equivalent change in manager_static_records_flush() too,
even though it's not really necessary there, simply to keep things
nicely mirrored.

2 weeks agoresolved: fix typo in comment
Lennart Poettering [Wed, 25 Mar 2026 21:18:58 +0000 (22:18 +0100)] 
resolved: fix typo in comment

2 weeks agovmspawn: Use qemu config files
Daan De Meyer [Wed, 25 Mar 2026 13:20:03 +0000 (14:20 +0100)] 
vmspawn: Use qemu config files

Let's avoid generating giant qemu command lines by using qemu config
files instead.

2 weeks agovmspawn: Create journal parent directories if needed
Daan De Meyer [Wed, 25 Mar 2026 09:22:30 +0000 (10:22 +0100)] 
vmspawn: Create journal parent directories if needed

2 weeks agovmspawn: Fix --tpm-state= parsing
Daan De Meyer [Wed, 25 Mar 2026 14:16:55 +0000 (15:16 +0100)] 
vmspawn: Fix --tpm-state= parsing

path_startswith() considers "no" and "./no" equal. Use startswith()
to avoid that.

2 weeks agomeson: detect availability of attributes using cc.has_function_attribute()
Mike Yuan [Wed, 25 Mar 2026 17:13:11 +0000 (18:13 +0100)] 
meson: detect availability of attributes using cc.has_function_attribute()

Alternative to fabc22f5998e610eb7ba70a963cab9f94dca5c0a

As suggested in https://github.com/systemd/systemd/pull/41174#discussion_r2966411375

2 weeks agomemory-util: avoid passing invalid pointer to memcmp() when length == 16
Mike Yuan [Wed, 25 Mar 2026 17:30:14 +0000 (18:30 +0100)] 
memory-util: avoid passing invalid pointer to memcmp() when length == 16

If length is exactly 16, the loop would finish with length == 0,
but we'd carry on to the memcmp() check, where the 'p + 16' passed
would be invalid memory. memcmp() demands valid pointers even if
size is specified to 0, hence let's catch this ourselves.

2 weeks agoswtpm: Properly configure state directory (#41322)
Daan De Meyer [Wed, 25 Mar 2026 19:21:16 +0000 (20:21 +0100)] 
swtpm: Properly configure state directory (#41322)

2 weeks agoAGENTS: Tell agents to not use mkosi box
Daan De Meyer [Wed, 25 Mar 2026 14:43:35 +0000 (15:43 +0100)] 
AGENTS: Tell agents to not use mkosi box

It's easier to run the AI tool within mkosi box rather than telling
it to use mkosi box and forgetting to use it half the time.

2 weeks agosd-stub: support for a "boot secret" stored in a EFI variable, as a fallback for...
Lennart Poettering [Wed, 25 Mar 2026 17:24:07 +0000 (18:24 +0100)] 
sd-stub: support for a "boot secret" stored in a EFI variable, as a fallback for TPM-less systems (#41217)

Split out of #41016

2 weeks agostub: introduce "boot secret" stored in an EFI variable inaccessible to the OS 41217/head
Lennart Poettering [Sat, 7 Mar 2026 22:44:37 +0000 (23:44 +0100)] 
stub: introduce "boot secret" stored in an EFI variable inaccessible to the OS

2 weeks agorandom-seed: when we have a reasonable RNG then create random seed file if missing
Lennart Poettering [Sat, 7 Mar 2026 21:11:44 +0000 (22:11 +0100)] 
random-seed: when we have a reasonable RNG then create random seed file if missing

Previously we'd never write the ESP random seed file (or initialize the
random seed EFI table) if it didn't already exist. Let's adjust this a
bit, and also create it fresh if we have a "good" random source, i.e. if
the EFI table already existed or if the RNG protocol is implemented by
EFI.

This is useful as it increases the chance the random seed table is
valid, and we can use it as source for randomness in later stages.

2 weeks agoswtpm-util: Write our own CA options rather than using the distro ones 41322/head
Daan De Meyer [Wed, 25 Mar 2026 14:34:58 +0000 (15:34 +0100)] 
swtpm-util: Write our own CA options rather than using the distro ones

2 weeks agoswtpm: Properly configure state directory
Daan De Meyer [Wed, 25 Mar 2026 13:23:11 +0000 (14:23 +0100)] 
swtpm: Properly configure state directory

Otherwise it will unconditionally try to use /var/lib/xxx which won't
work when running unprivileged.

2 weeks agorandom-seed: move seed efi table definitions to header
Lennart Poettering [Sat, 7 Mar 2026 21:11:31 +0000 (22:11 +0100)] 
random-seed: move seed efi table definitions to header

2 weeks agoefi: add efivar_get_raw_full() flavour that returns the variable attributes too
Lennart Poettering [Fri, 6 Mar 2026 16:53:09 +0000 (17:53 +0100)] 
efi: add efivar_get_raw_full() flavour that returns the variable attributes too

2 weeks agomemory-util: move memeqbyte() & friends to src/fundamental/
Lennart Poettering [Fri, 6 Mar 2026 20:17:53 +0000 (21:17 +0100)] 
memory-util: move memeqbyte() & friends to src/fundamental/

2 weeks agotwo small prep commits from the imds PR (#41316)
Luca Boccassi [Wed, 25 Mar 2026 12:54:23 +0000 (12:54 +0000)] 
two small prep commits from the imds PR (#41316)

They are not directly IMDS stuff, and should be easy to merge ahead.

2 weeks agoAdd condition for mutable extensions directory
Hadi Chokr [Wed, 25 Feb 2026 14:27:24 +0000 (15:27 +0100)] 
Add condition for mutable extensions directory

Signed-off-by: Hadi Chokr <hadichokr@icloud.com>
2 weeks agovarlink: comment that "more" flag IDL comment is API
Michael Vogt [Wed, 25 Mar 2026 10:53:36 +0000 (11:53 +0100)] 
varlink: comment that "more" flag IDL comment is API

External tools that use the systemd varlink ecosystem require
to know if a specific varlink method supports/requires the
"more" flag from the IDL. This is tracked upstream in
https://github.com/varlink/varlink.github.io/issues/26

As an intermediate step systemd adds the (very nice) comments
```
 # [Requires 'more' flag]
or
 # [Supports 'more' flag]
```
to the various methods.

This commit extends the comment around the code that adds the
comment to clarify that this should be considered API and that
the comment should not be changed as external tools (like e.g.
the varlink-http-bridge) rely on it.

2 weeks agomacro.h: move DEFER_VOID_CALL() to cleanup-util.h 41316/head
Lennart Poettering [Tue, 24 Mar 2026 08:03:49 +0000 (09:03 +0100)] 
macro.h: move DEFER_VOID_CALL() to cleanup-util.h

For some reason the IMDS PR for the first time triggers an issue with
the DEFER_VOID_CALL() logic relying on assert() and being places in
macro.h, let's hence move this elsewhere.

2 weeks agotest-iovec: add unit test for IOVEC_MAKE_BYTE()
Lennart Poettering [Tue, 24 Mar 2026 07:57:26 +0000 (08:57 +0100)] 
test-iovec: add unit test for IOVEC_MAKE_BYTE()

As requested here: https://github.com/systemd/systemd/pull/40980#discussion_r2964650885

2 weeks agoA batch of conversions to the new options parsers (#41302)
Zbigniew Jędrzejewski-Szmek [Wed, 25 Mar 2026 10:39:36 +0000 (11:39 +0100)] 
A batch of conversions to the new options parsers (#41302)

This was partially done with Claude, but it needed an insane amount of prodding to
not do stupid things.

2 weeks agonetwork: increase transmit/receive queues size to 16384 (#41289)
Walter McKelvie [Wed, 25 Mar 2026 10:37:31 +0000 (06:37 -0400)] 
network: increase transmit/receive queues size to 16384 (#41289)

A 10G Marvell AQC113 included in an ASRock TRX50WS motherboard NIC claims to
support tx/rx queues as large as 8184.

After boot 'ethtool -g eth0' outputs:
  Ring parameters for eth0:
  RX: 8184
  RX Mini: n/a
  RX Jumbo: n/a
  TX: 8184
  TX push buff len: n/a
  HDS thresh: n/a
  RX: 2048
  RX Mini: n/a
  RX Jumbo: n/a
  TX: 4096
  RX Buf Len: n/a
  CQE Size: n/a
  TX Push: off
  RX Push: off
  TX push buff len: n/a
  TCP data split: n/a
  HDS thresh: n/a

'ethtool --set-ring eth0 rx 8184 tx 8184 && ethtool -g eth0' yields:
  Ring parameters for eth0:
  RX: 8184
  RX Mini: n/a
  RX Jumbo: n/a
  TX: 8184
  TX push buff len: n/a
  HDS thresh: n/a
  RX: 8184
  RX Mini: n/a
  RX Jumbo: n/a
  TX: 8184
  RX Buf Len: n/a
  CQE Size: n/a
  TX Push: off
  RX Push: off
  TX push buff len: n/a
  TCP data split: n/a
  HDS thresh: n/a

I can measure a throughput difference between using using buffer sizes
4096 and 8184 on my hardware, so it really seems that this is doing
something beyond buggy firmware.

Original PR https://github.com/systemd/systemd/pull/17635 didn't give any
explanation for the limit of 4096, but that's probably what was supported by
the kernel drivers at the time.

A web search shows that CISCO VIC 15000 supports 16k, so allow up to that.

[zjs: edited the message]

2 weeks agoresolved: use the SOA to find chain of trust quicker
Ronan Pigott [Wed, 11 Mar 2026 17:52:49 +0000 (10:52 -0700)] 
resolved: use the SOA to find chain of trust quicker

sd-resolved does dnssec "backwards" compared to most resolvers.

A typical strategy is to start from the DNS root and gather the
requisite keys on the way down, but sd-resolved requests the final
answer it wants and then goes searching for the requisite keys later.

We don't know in advance under which names we should expect to find
those keys, because we don't know the zone cuts a priori, but we can use
what we have found in prior responses to make an educated guess. This
was more or less the intent of 47690634f157, but it was partially
regressed in d840783db520 while fixing a bug handling totally empty
responses.

Fixes #37472

Ref: 47690634f157 ("resolved: don't request the SOA for every dns label")
Fixes: d840783db520 ("resolved: always progress DS queries")
2 weeks agohomectl: apply all --member-of= groups from a comma-separated list
Frantisek Sumsal [Tue, 24 Mar 2026 13:29:27 +0000 (14:29 +0100)] 
homectl: apply all --member-of= groups from a comma-separated list

Commit 0e1ede4b4b6d1ce6b5b6cda5f803e4f1b5aa4a03 introduced a bug where
we'd always fetch the "original" (empty) list of groups when processing
a comma-separated list of groups from the --member-of= option, so only
the last group from the list would get applied. This bug was then later
(in 316e9887f2a48bd1c4efa3e31b4bfbaeb22de3a3) refactored into a separate
function.

Follow-up for 0e1ede4b4b6d1ce6b5b6cda5f803e4f1b5aa4a03.
Resolves: #41286

2 weeks agoresolved: resolve insecure answers with unsupported sig algorithms (#40778)
Zbigniew Jędrzejewski-Szmek [Wed, 25 Mar 2026 09:38:08 +0000 (10:38 +0100)] 
resolved: resolve insecure answers with unsupported sig algorithms (#40778)

sd-resolved does not support all the permissible DNSSEC signature
algorithms, and some are intentionally unsupported as a matter of
policy. Answers that can only be validated via unsupported algorithms
should be treated as if they were unsigned, per RFC4035 § 5.2.

Previously, sd-resolved tried to properly record insecure answers for
unsupported algortihms, but did not record this status for each of the
auxilliary DNSSEC transactions, so the primary transaction had no way to
know if there was a plausible DNSKEY with an unsupported signature
algorithm in the chain of trust.

This commit adds the insecure DNSKEYs that use unsupported algorithms to
the list of validated keys for each transaction, so that dependent
transactions can learn that a plausible chain of trust exists, even if
no authenticated one does, and report the insecure answer.

This should improve the situation in #35126.

2 weeks agovarious: fix typos 41302/head
Zbigniew Jędrzejewski-Szmek [Wed, 25 Mar 2026 00:43:29 +0000 (01:43 +0100)] 
various: fix typos

2 weeks agobless-boot: use the new option parser and verb macros
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 09:20:52 +0000 (10:20 +0100)] 
bless-boot: use the new option parser and verb macros

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agoshared/verbs: add VERB_COMMON_HELP_HIDDEN macro and skip verbs with NULL help
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 11:54:40 +0000 (12:54 +0100)] 
shared/verbs: add VERB_COMMON_HELP_HIDDEN macro and skip verbs with NULL help

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agoshared/verbs: allow multiple verbs to be handled by a single function
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 22:33:49 +0000 (23:33 +0100)] 
shared/verbs: allow multiple verbs to be handled by a single function

With the uintptr_t data parameter, it is actually quite nice to have
VERB(do_impl, "name-a", …)
VERB(do_impl, "name-b", …)
int do_impl(…) { … }

To make this work, the do_impl_data struct needs to have a unique name and
we also need to suppress the warning about the forward declaration for
do_impl being repeated. I think it's fine to suppress the warning, it's
not needed for anything. If somebody declares the function with the same
name by mistake, the implementations are going to conflict too.

2 weeks agovalidatefs: shorten and reindent code
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 10:40:12 +0000 (11:40 +0100)] 
validatefs: shorten and reindent code

2 weeks agovalidatefs: use the new option parser
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 10:47:09 +0000 (11:47 +0100)] 
validatefs: use the new option parser

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agoupdate-done: use the new option parser
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 10:07:06 +0000 (11:07 +0100)] 
update-done: use the new option parser

While at it, add --version.

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agoask-password: use the new option parser
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 09:12:13 +0000 (10:12 +0100)] 
ask-password: use the new option parser

--version was missing from the old help text and is now included.

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agoshared/options: allow option help to be extended with fake lines
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 10:01:37 +0000 (11:01 +0100)] 
shared/options: allow option help to be extended with fake lines

Useful when we want to enumerate options rvalues with custom help
texts.

2 weeks agobinfmt: use the new option parser
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 08:46:16 +0000 (09:46 +0100)] 
binfmt: use the new option parser

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agoshared/options: add common option macros for --cat-config and --tldr
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 08:40:17 +0000 (09:40 +0100)] 
shared/options: add common option macros for --cat-config and --tldr

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agoac-power: use the new option parser
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 08:34:15 +0000 (09:34 +0100)] 
ac-power: use the new option parser

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agoshared/options: add helper function to count positional args
Zbigniew Jędrzejewski-Szmek [Tue, 24 Mar 2026 23:32:20 +0000 (00:32 +0100)] 
shared/options: add helper function to count positional args

2 weeks agoresolved: add "static RRs" concept (#41213)
Lennart Poettering [Tue, 24 Mar 2026 21:45:22 +0000 (22:45 +0100)] 
resolved: add "static RRs" concept (#41213)

split out of #40980

2 weeks agovmspawn: Fix --help width
Daan De Meyer [Tue, 24 Mar 2026 21:01:40 +0000 (22:01 +0100)] 
vmspawn: Fix --help width

2 weeks agovmspawn: add disk type selection for root and extra drives (#41301)
Lennart Poettering [Tue, 24 Mar 2026 20:48:00 +0000 (21:48 +0100)] 
vmspawn: add disk type selection for root and extra drives (#41301)

  vmspawn previously hardcoded virtio-blk for all drives. This adds
  --image-disk-type= to select the root disk type (virtio-blk,
  virtio-scsi, or nvme) and allows per-drive overrides via a
  colon-separated prefix on --extra-drive=. The format and disk type
  prefixes can appear in any order since their value sets don't overlap.

  For virtio-scsi, a single shared controller is created with drives
  attached as scsi-hd devices. For nvme, each drive gets its own
controller. Both have serial number length limits (30 and 20 characters
  respectively), so long filenames are replaced with a truncated SHA-256
  hex digest.

2 weeks agovmspawn: Add headless console support
Daan De Meyer [Mon, 23 Mar 2026 21:00:03 +0000 (22:00 +0100)] 
vmspawn: Add headless console support

2 weeks agopo: Translated using Weblate (Kabyle)
Massii Aqvayli [Tue, 24 Mar 2026 19:58:45 +0000 (19:58 +0000)] 
po: Translated using Weblate (Kabyle)

Currently translated at 22.5% (60 of 266 strings)

Co-authored-by: Massii Aqvayli <massiin@proton.me>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/main/kab/
Translation: systemd/main

2 weeks agoresolved: add ability to define additional local RRs via drop-ins 41213/head
Lennart Poettering [Thu, 26 Feb 2026 14:54:14 +0000 (15:54 +0100)] 
resolved: add ability to define additional local RRs via drop-ins

This is an extension of the /etc/hosts concept, but can provide any kind
of RRs (well, actually, we only parse A/AAAA/PTR for now, but the
concept is open for more).

Fixes: #17791
2 weeks agoresolved: also flush /etc/hosts on reload
Lennart Poettering [Wed, 4 Mar 2026 16:08:03 +0000 (17:08 +0100)] 
resolved: also flush /etc/hosts on reload

When we are told to reload our configuration also flush out /etc/hosts
explicitly. This is particularly relevant since we suppress too frequent
reloads, and hence a synchronous way to force a reload is very useful.

2 weeks agodns-rr: add dns_resource_record_from_json()
Lennart Poettering [Thu, 26 Feb 2026 14:50:26 +0000 (15:50 +0100)] 
dns-rr: add dns_resource_record_from_json()

This only parses a small subset of RR types for now, but we can add more
later.

Covered are the most important RR types: A, AAAA, PTR.

2 weeks agodns-rr: tighten rules on parsing RR keys from JSON
Lennart Poettering [Thu, 26 Feb 2026 14:51:09 +0000 (15:51 +0100)] 
dns-rr: tighten rules on parsing RR keys from JSON

let's ensure the name is actually a valid DNS name.

2 weeks agojson-util: add json_dispatch_in6_addr()
Lennart Poettering [Fri, 20 Mar 2026 14:16:19 +0000 (15:16 +0100)] 
json-util: add json_dispatch_in6_addr()

2 weeks agojson-util: optionally accept string-based serialization for IPv4 addresses
Lennart Poettering [Fri, 20 Mar 2026 13:59:27 +0000 (14:59 +0100)] 
json-util: optionally accept string-based serialization for IPv4 addresses

2 weeks agostat-util: introduce inode_unmodified_hash_ops
Lennart Poettering [Tue, 24 Mar 2026 16:06:09 +0000 (17:06 +0100)] 
stat-util: introduce inode_unmodified_hash_ops

This is almost the same as inode_hash_ops, but also hashes + compares
all attributes that could affect the contents of a file. It ignores
"superficial"/"external" attributes such as ownership or access mode
however.

2 weeks agostat-util: also include inode type in hash ops
Lennart Poettering [Tue, 24 Mar 2026 15:56:40 +0000 (16:56 +0100)] 
stat-util: also include inode type in hash ops

This doesn't really have any major benefit, but it does make this nicely
mirror stat_inode_same() which also checks this triplet for identifying
identical inodes.

2 weeks agoci: Drop codeql workflow
Daan De Meyer [Mon, 23 Mar 2026 10:31:56 +0000 (11:31 +0100)] 
ci: Drop codeql workflow

After analyzing all 218 CodeQL alerts across the project's history, the
workflow has not justified its CI cost:

- The most impactful query (PotentiallyDangerousFunction) was a custom
  systemd-specific query that has already been replaced by clang-tidy's
  bugprone-unsafe-functions check (6fb5ec3dd1).

- Of the remaining C++ queries, 6 never triggered at all
  (bad-strncpy-size, unsafe-strcat, unsafe-strncat,
  suspicious-pointer-scaling, suspicious-pointer-scaling-void,
  inconsistent-null-check).

- Several high-value-sounding queries had extreme false positive rates:
  toctou-race-condition (95% FP), use-after-free (88% FP),
  cleartext-transmission (100% FP).

- Many queries that did trigger are already covered by compiler warnings
  (-Wshadow, -Wformat, -Wunused-variable, -Wreturn-type,
  -Wtautological-compare) or existing clang-tidy checks
  (bugprone-sizeof-expression).

- Across all alerts, only 3 genuinely useful C++ fixes can be
  attributed to CodeQL: 1 tainted-format-string, 2
  incorrectly-checked-scanf. The rest were either false positives or
  incidental fixes during refactoring that weren't prompted by CodeQL.

- The Python queries are largely superseded by ruff (already in CI) and
  had an 89% false positive rate on the security-focused checks.

The workflow consumed significant CI resources (40+ minutes per run) and
the ongoing maintenance burden of triaging false positives outweighs the
marginal value of the 2-3 real findings it produced across its entire
lifetime.

2 weeks agovmspawn: add nvme disk type support 41301/head
Christian Brauner [Tue, 24 Mar 2026 13:44:34 +0000 (14:44 +0100)] 
vmspawn: add nvme disk type support

Extend --image-disk-type= and the --extra-drive= disk type prefix to
support nvme in addition to virtio-blk and virtio-scsi:

  systemd-vmspawn --image-disk-type=nvme --image=image.raw
  systemd-vmspawn --image=image.raw --extra-drive=nvme:data.raw

The NVMe serial number is limited to 20 characters by the NVMe spec.
If the image filename exceeds this, it is hashed with SHA-256 and
truncated to 20 hex characters via the disk_serial() helper introduced
in the previous commit.

Signed-off-by: Christian Brauner <brauner@kernel.org>
2 weeks agovmspawn: add virtio-scsi disk type support
Christian Brauner [Tue, 24 Mar 2026 13:25:50 +0000 (14:25 +0100)] 
vmspawn: add virtio-scsi disk type support

Add --image-disk-type= to select the disk type for the root disk, and
allow specifying the disk type as a colon-separated prefix on
--extra-drive=:

  systemd-vmspawn --image-disk-type=virtio-scsi --image=image.raw
  systemd-vmspawn --image=image.raw --extra-drive=virtio-scsi:data.raw

For --extra-drive=, the format and disk type prefixes can appear in any
order since the value sets don't overlap:

  --extra-drive=raw:virtio-scsi:/path
  --extra-drive=virtio-scsi:raw:/path

Extra drives inherit --image-disk-type= by default unless overridden
with an explicit prefix.

vmspawn originally used virtio-scsi for all drives but switched to
virtio-blk in 1f24a954e4 for simplicity and direct kernel boot
compatibility. This makes virtio-scsi available again as an explicit
option for cases where a SCSI storage topology is desired.

For virtio-scsi, a shared virtio-scsi-pci controller is created and
drives are attached as scsi-hd devices. The SCSI serial number is
limited to 30 characters, so filenames exceeding this are hashed with
SHA-256.

Signed-off-by: Christian Brauner <brauner@kernel.org>
2 weeks agovmspawn: EFI NVRAM state control (#41218)
Daan De Meyer [Tue, 24 Mar 2026 15:04:16 +0000 (16:04 +0100)] 
vmspawn: EFI NVRAM state control (#41218)

Split out of #41016

2 weeks agoshell-completion: add shell completions for systemd-hwdb
Zbigniew Jędrzejewski-Szmek [Fri, 13 Mar 2026 14:22:45 +0000 (15:22 +0100)] 
shell-completion: add shell completions for systemd-hwdb

Co-developed-by: Claude <claude@anthropic.com>
2 weeks agodiscover-image: remove tpm state + efi nvram state on image removal 41218/head
Lennart Poettering [Mon, 9 Mar 2026 07:46:36 +0000 (08:46 +0100)] 
discover-image: remove tpm state + efi nvram state on image removal

2 weeks agovmspawn: split out swtpm-setup logic, and beef it up a bit
Lennart Poettering [Thu, 19 Mar 2026 13:20:02 +0000 (14:20 +0100)] 
vmspawn: split out swtpm-setup logic, and beef it up a bit

2 weeks agovmspawn: manage EFI nvram (variables) state similar to TPM state
Lennart Poettering [Sun, 8 Mar 2026 20:52:08 +0000 (21:52 +0100)] 
vmspawn: manage EFI nvram (variables) state similar to TPM state

2 weeks agovmspawn: make efi variable nvram dependent on whether the EFI profile knows the conce...
Lennart Poettering [Sun, 8 Mar 2026 19:51:38 +0000 (20:51 +0100)] 
vmspawn: make efi variable nvram dependent on whether the EFI profile knows the concept, not on secureboot

2 weeks agoci: Only run claude-review automatically on PRs to main
Daan De Meyer [Tue, 24 Mar 2026 09:21:04 +0000 (10:21 +0100)] 
ci: Only run claude-review automatically on PRs to main

2 weeks agovmspawn: Drop --sandbox=chroot from virtiofsd command line
Daan De Meyer [Mon, 23 Mar 2026 20:58:28 +0000 (21:58 +0100)] 
vmspawn: Drop --sandbox=chroot from virtiofsd command line

It's unclear why I added this in fd05c6c7593c5e36864d8784df91b878bbf991ab,
but it breaks bind mounting regular directories via --bind,
so drop it again since it's not actually required to make virtiofsd
work with the foreign UID range.

2 weeks agoci: Generalize escaping instructions in claude-review prompt
Daan De Meyer [Tue, 24 Mar 2026 09:15:21 +0000 (10:15 +0100)] 
ci: Generalize escaping instructions in claude-review prompt

2 weeks agocreds: use CLEANUP_ERASE for symmetric key
Luca Boccassi [Mon, 23 Mar 2026 21:13:03 +0000 (21:13 +0000)] 
creds: use CLEANUP_ERASE for symmetric key

Just in case, ensure the sha256 that is used as a symmetric
key for encrypted creds is safely erased from memory.

Reported on yeswehack.com as YWH-PGM9780-166

Follow-up for 21bc0b6fa1de44b520353b935bf14160f9f70591

2 weeks agoDefine options and verbs through "magic macros" (#40880)
Lennart Poettering [Mon, 23 Mar 2026 21:17:05 +0000 (22:17 +0100)] 
Define options and verbs through "magic macros" (#40880)

This is an another alternative for #40656, based on @poettering's
suggestion to use an ELF section.

The output of --help is generated using format-table, but the details of
the formatting a bit off: different sections in the table (verbs, option
groups) are not aligned to the same column. Our current table formatting
doesn't make this easy. If somebody has an idea how to do this without
too much pain, please make suggestions.

Another thing that I didn't know how to do nicely, was to use the two
columns of separation. But maybe this doesn't matter. If we switch to
one column everywhere, I don't think people will care.

Example output:
```console
$ build/systemd-id128 -h | cat
systemd-id128 [OPTIONS...] COMMAND

Generate and print 128-bit identifiers.

Commands:
  new                Generate a new ID
  machine-id         Print the ID of current machine
  boot-id            Print the ID of current boot
  invocation-id      Print the ID of current invocation
  var-partition-uuid Print the UUID for the /var/ partition
  show [NAME|UUID]   Print one or more UUIDs
  help               Show this help

Options:
  -h --help            Show this help
     --version         Show package version
     --no-pager        Do not start a pager
     --no-legend       Do not show headers and footers
     --json=FORMAT     Output inspection data in JSON (takes one of pretty,
                       short, off)
  -j                   Equivalent to --json=pretty (on TTY) or --json=short
                       (otherwise)
  -p --pretty          Generate samples of program code
  -P --value           Only print the value
  -a --app-specific=ID Generate app-specific IDs
  -u --uuid            Output in UUID format

See the systemd-id128(1) man page for details.
```

The output wraps automatically with terminal width. If the terminal is
extremely narrow, ellipsization occurs. I think this doesn't matter
and/or is actually a feature. Such narrow terminals mostly occur in
testing, so it doesn't matter what exactly we do, as long as it is
something somewhat reasonable.

Anyway, I think this is enough as PoC. Please compare this with the
previous approach. /cc @behrmann, @YHNdnzj, @poettering

The three binaries that are converted have options, verbs, optional
arguments, and options terminate option parsing, so most of the
functionality is there. One thing that I didn't implement that was
present in previous PRs is "namespaces", i.e. multiple parsers in the
same source file. I expect that we can handle this similarly to option
groups.

2 weeks agoresolved: also validate unsupported dnssec digest algs 40778/head
Ronan Pigott [Sat, 21 Feb 2026 19:05:20 +0000 (12:05 -0700)] 
resolved: also validate unsupported dnssec digest algs

2 weeks agoresolved: resolve insecure answers with unsupported sig algorithms
Ronan Pigott [Sat, 21 Feb 2026 01:51:35 +0000 (18:51 -0700)] 
resolved: resolve insecure answers with unsupported sig algorithms

sd-resolved does not support all the permissible DNSSEC signature
algorithms, and some are intentionally unsupported as a matter of
policy. Answers that can only be validated via unsupported algorithms
should be treated as if they were unsigned, per RFC4035§5.2.

Previously, sd-resolved tried to properly record insecure answers for
unsupported algortihms, but did not record this status for each of the
auxilliary DNSSEC transactions, so the primary transaction had no way to
know if there was a plausible DNSKEY with an unsupported signature
algorithm in the chain of trust.

This commit adds the insecure DNSKEYs that use unsupported algorithms to
the list of validated keys for each transaction, so that dependent
transactions can learn that a plausible chain of trust exists, even if
no authenticated one does, and report the insecure answer.

2 weeks agocopy: add new flags that cause a seek to beginning of files before copying
Lennart Poettering [Tue, 10 Feb 2026 14:41:22 +0000 (15:41 +0100)] 
copy: add new flags that cause a seek to beginning of files before copying

This is quite useful in various cases where we so far did this manually.

2 weeks agonotify: add one more compiler suppression 40880/head
Zbigniew Jędrzejewski-Szmek [Mon, 2 Mar 2026 23:18:09 +0000 (00:18 +0100)] 
notify: add one more compiler suppression

Old gcc (<14) says:

2026-03-02T23:11:28.5676353Z In file included from ../src/notify/notify.c:30:
2026-03-02T23:11:28.5694607Z In function ‘strv_isempty’,
2026-03-02T23:11:28.5695481Z     inlined from ‘action_fork’ at ../src/notify/notify.c:440:9,
2026-03-02T23:11:28.5696266Z     inlined from ‘run’ at ../src/notify/notify.c:541:24,
2026-03-02T23:11:28.5696929Z     inlined from ‘main’ at ../src/notify/notify.c:682:1:
2026-03-02T23:11:28.5697877Z ../src/basic/strv.h:108:23: error: ‘args’ may be used uninitialized [-Werror=maybe-uninitialized]
2026-03-02T23:11:28.5698655Z   108 |         return !l || !*l;
2026-03-02T23:11:28.5699052Z       |                       ^~
2026-03-02T23:11:28.5700020Z ../src/notify/notify.c: In function ‘main’:
2026-03-02T23:11:28.5700681Z ../src/notify/notify.c:531:16: note: ‘args’ was declared here
2026-03-02T23:11:28.5701217Z   531 |         char **args;
2026-03-02T23:11:28.5701574Z       |                ^~~~
2026-03-02T23:11:28.5701960Z cc1: all warnings being treated as errors

2 weeks agoApply the same column width for different option groups
Zbigniew Jędrzejewski-Szmek [Mon, 2 Mar 2026 22:40:51 +0000 (23:40 +0100)] 
Apply the same column width for different option groups

This feel a bit like a hack, but it works OK. The width of the first
column of verbs or options in different sections is measured and
applied to the other tables. This makes the second column aligned.

2 weeks agoshared/format-table: add helpers to query and set column width
Zbigniew Jędrzejewski-Szmek [Mon, 2 Mar 2026 14:35:41 +0000 (15:35 +0100)] 
shared/format-table: add helpers to query and set column width

2 weeks agoci: Replace codeql PotentiallyDangerousFunction query with clang-tidy (#41246)
Daan De Meyer [Mon, 23 Mar 2026 10:30:47 +0000 (11:30 +0100)] 
ci: Replace codeql PotentiallyDangerousFunction query with clang-tidy (#41246)

2 weeks agomkosi-tool/opensuse: add libtss2-tcti-device0 package
vlefebvre [Fri, 20 Mar 2026 14:55:31 +0000 (15:55 +0100)] 
mkosi-tool/opensuse: add libtss2-tcti-device0 package

libtss2-tcti-device0 is not installed by default in the openSUSE
image, but is now required when building the test image. Without it,
the build fails with

```
Shared library 'libtss2-tcti-device.so.0' is not available:
libtss2-tcti-device.so.0: cannot open shared object file: No such file or directory
```

Follow-up for 5f85409f932dfdc123d0e8ded8e8a9a6f9443119

2 weeks agopo: Translated using Weblate (Indonesian)
Arif Budiman [Mon, 23 Mar 2026 06:58:47 +0000 (06:58 +0000)] 
po: Translated using Weblate (Indonesian)

Currently translated at 100.0% (266 of 266 strings)

Co-authored-by: Arif Budiman <arifpedia@gmail.com>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/main/id/
Translation: systemd/main

2 weeks agoTwo fixlets (#41273)
Daan De Meyer [Mon, 23 Mar 2026 08:05:27 +0000 (09:05 +0100)] 
Two fixlets (#41273)

From yeswehack.com reports

2 weeks agonetworkd: replace D-Bus with Varlink in networkctl (#40780)
Yu Watanabe [Mon, 23 Mar 2026 05:55:57 +0000 (14:55 +0900)] 
networkd: replace D-Bus with Varlink in networkctl (#40780)

networkctl previously called networkd over D-Bus for several operations.
This replaces all of those calls with Varlink, making it the sole IPC
mechanism between networkctl and networkd.

 New Varlink methods added to networkd:

- io.systemd.Network.Link (new sub-interface for link-specific
operations):

- Link.Describe — replaces Link.BitRates + DHCPServer.Leases D-Bus
properties
- Link.Up — replaces Link.SetUp D-Bus method (moved from
**io.systemd.Network.LinkUp**)
- Link.Down — replaces Link.SetDown D-Bus method (moved from
**io.systemd.Network.LinkDown**)
      - Link.Renew  — replaces Link.Renew D-Bus method
      - Link.ForceRenew   — replaces Link.ForceRenew D-Bus method
      - Link.Reconfigure  — replaces Link.Reconfigure D-Bus method

  - io.systemd.service
     - Reload            — replaces Manager.Reload D-Bus method

  Supporting changes:
- link_get_bit_rates() extracted from networkd-link.c into
networkd-speed-meter.c
- BitRates added to link_build_json() so Link.Describe returns them
inline
alongside the existing interface description, replacing a separate D-Bus
read
- link_reconfigure_full() and manager_reload() extended to accept
sd_varlink*
for deferred async replies (consistent with existing sd_bus_message*
path)
  - DHCP lease display (networkctl status) uses Link.Describe instead of
DHCPServer.Leases; falls back to ClientId when hostname is not present

2 weeks agomountfsd: fix readOnly flag inversion 41273/head
Luca Boccassi [Mon, 23 Mar 2026 00:51:29 +0000 (00:51 +0000)] 
mountfsd: fix readOnly flag inversion

mountfsd applies R/O when the varlink readOnly flag is set to false

Reported on yeswehack.com as YWH-PGM9780-164

Follow-up for 702a52f4b5d49cce11e2adbc740deb3b644e2de0

2 weeks agocore: also set iov_len when deserializing LogExtraFields=
Luca Boccassi [Mon, 23 Mar 2026 00:25:46 +0000 (00:25 +0000)] 
core: also set iov_len when deserializing LogExtraFields=

This is not actually used so it doesn't really matter in
practice and the fields are used anyway, but for cleanliness
fix it

Reported on yeswehack.com as YWH-PGM9780-165

Follow-up for 5699a1689b7e49702e4e60d08ab3fe386ba8d4df

2 weeks agossh: handle VMADDR_CID_ANY in a couple places (#41230)
Daan De Meyer [Sun, 22 Mar 2026 19:07:53 +0000 (20:07 +0100)] 
ssh: handle VMADDR_CID_ANY in a couple places (#41230)

Originally reported in Ubuntu as
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/2145027.

2 weeks ago[RFC] core: add `io.systemd.Manager.{PowerOff,SoftReboot,Halt,Kexec}` (#41236)
Daan De Meyer [Sun, 22 Mar 2026 19:06:34 +0000 (20:06 +0100)] 
[RFC] core: add `io.systemd.Manager.{PowerOff,SoftReboot,Halt,Kexec}` (#41236)

2 weeks agomips: Fix conditional inclusion of <asm/sgidefs.h>
Andreas K. Hüttel [Fri, 20 Mar 2026 12:52:17 +0000 (13:52 +0100)] 
mips: Fix conditional inclusion of <asm/sgidefs.h>

systemd now has a system call wrapper that does a long series of #ifdef's to
differentiate between architectures and ABIs. This wrapper has two problems.

1. On mips, it needs to differentiate between O32, N32, N64 ABI. It does that
via a code block in src/include/override/sys/generate-syscall.py (and derived
files):

     76 #  elif defined(_MIPS_SIM)
     77 #    if _MIPS_SIM == _MIPS_SIM_ABI32
     78 #      define systemd_NR_{syscall} {nr_mipso32}
     79 #    elif _MIPS_SIM == _MIPS_SIM_NABI32
     80 #      define systemd_NR_{syscall} {nr_mips64n32}
     81 #    elif _MIPS_SIM == _MIPS_SIM_ABI64
     82 #      define systemd_NR_{syscall} {nr_mips64}
     83 #    else
     84 #      error "Unknown MIPS ABI"
     85 #    endif
     86 #  elif defined(__hppa__)

Now the _MIPS_SIM* constants stem from a vendor-specific header file sgidefs.h,
which is included with glibc, but not with musl. It is however always present
in the Linux kernel headers as asm/sgidefs.h ...

2. To work around this, the syscall wrapper already has a block

     47 #ifdef ARCH_MIPS
     48 #include <asm/sgidefs.h>
     49 #endif

Turns out, ARCH_MIPS is defined nowhere in Gentoo, neither on glibc nor on musl.
As a result the code (by accident, probably sgidefs.h is included transitively
somehow) works on glibc, but not on musl.

The simplest fix is to replace line 47 in the generator and the derived file
with

     47 #ifdef __mips__

Two other source code files require a similar fix since they rely on the
constants.

Bug: https://github.com/systemd/systemd/issues/41239
Bug: https://bugs.gentoo.org/971376
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
2 weeks agosd-dhcp-client: several trivial cleanups (#41256)
Daan De Meyer [Sun, 22 Mar 2026 19:00:33 +0000 (20:00 +0100)] 
sd-dhcp-client: several trivial cleanups (#41256)

2 weeks agodhcp: fix user class and vendor specific option assignment
Yu Watanabe [Sun, 22 Mar 2026 14:39:38 +0000 (23:39 +0900)] 
dhcp: fix user class and vendor specific option assignment

The commit 6d7cb9a6b8361d2b327222bc12872a3676358bc3 fixes the assignment
of the these options when specified through SendOption=. However, it
breaks when specified through UserClass= or SendVendorOption=.

When UserClass= or SendVendorOption= is specified, the option length is
calculated from the sd_dhcp_client.user_class or .vendor_options. Hence,
we can use 0 for the length in that case.

Follow-up for 6d7cb9a6b8361d2b327222bc12872a3676358bc3.

2 weeks agosd-varlink: gracefully reject arrays/maps with a null element
Frantisek Sumsal [Fri, 20 Mar 2026 19:27:07 +0000 (20:27 +0100)] 
sd-varlink: gracefully reject arrays/maps with a null element

Follow-up for 799392286ec0797c0a2a1260c444360b47ef36fc.