]> git.ipfire.org Git - thirdparty/systemd.git/log
thirdparty/systemd.git
7 months agocore: generalize service_arm_timer() for all unit types 29249/head
Lennart Poettering [Wed, 20 Sep 2023 15:38:23 +0000 (17:38 +0200)] 
core: generalize service_arm_timer() for all unit types

7 months agoscope: also modernize state machine logging
Lennart Poettering [Wed, 20 Sep 2023 15:38:46 +0000 (17:38 +0200)] 
scope: also modernize state machine logging

7 months agopath: also modernize path state machine logging
Lennart Poettering [Wed, 20 Sep 2023 15:07:32 +0000 (17:07 +0200)] 
path: also modernize path state machine logging

7 months agotimer: also modernize timer state machine error logging
Lennart Poettering [Wed, 20 Sep 2023 15:04:41 +0000 (17:04 +0200)] 
timer: also modernize timer state machine error logging

7 months agoautomount: also modernize log logic
Lennart Poettering [Wed, 20 Sep 2023 15:00:52 +0000 (17:00 +0200)] 
automount: also modernize log logic

7 months agoswap: also modernize state engine log message generation
Lennart Poettering [Wed, 20 Sep 2023 14:46:28 +0000 (16:46 +0200)] 
swap: also modernize state engine log message generation

7 months agomount: also rework log message generation
Lennart Poettering [Wed, 20 Sep 2023 13:59:24 +0000 (15:59 +0200)] 
mount: also rework log message generation

7 months agosocket: clean up error message generation/fail paths also for the socket state engine
Lennart Poettering [Wed, 20 Sep 2023 13:09:00 +0000 (15:09 +0200)] 
socket: clean up error message generation/fail paths also for the socket state engine

7 months agosocket: modernize socket_acquire_peer() a bit
Lennart Poettering [Wed, 20 Sep 2023 13:07:26 +0000 (15:07 +0200)] 
socket: modernize socket_acquire_peer() a bit

7 months agosocket: drop redundant TAKE_FD(cfd) line
Lennart Poettering [Wed, 27 Sep 2023 15:21:51 +0000 (17:21 +0200)] 
socket: drop redundant TAKE_FD(cfd) line

In the only two codepaths we reach this place we know that cfd is
already invalidated. In the Accept=yes case there's already a
TAKE_FD() a few lines further up, and in the Accept=no case there is no
connection fd anyway.

7 months agoservice: add error handling for all service_arm_timer() invocations
Lennart Poettering [Wed, 20 Sep 2023 11:11:39 +0000 (13:11 +0200)] 
service: add error handling for all service_arm_timer() invocations

Let's clean this up a bit, and catch all errors and do something
reasonable in case this happens.

7 months agoservice: clean up logging a bit
Lennart Poettering [Wed, 20 Sep 2023 11:09:42 +0000 (13:09 +0200)] 
service: clean up logging a bit

This rearranges various cases of "goto fail" in service.c: sometimes the
whole "goto fail" logic was redundant, since only jumped to form a
single place. Sometimes the log message was generated in the fail
section, instead of the place jumped to from, which resulted in
duplicate or misleading error messages.

No real codeflow changes, just refactoring primarily around log
messages.

7 months agoMerge pull request #29345 from poettering/measured-uki-condition
Lennart Poettering [Wed, 27 Sep 2023 14:39:46 +0000 (16:39 +0200)] 
Merge pull request #29345 from poettering/measured-uki-condition

pid1: introduce ConditionSecurity=measured-uki

7 months agoMerge pull request #29134 from nabijaczleweli/short-iso-timestamp
Luca Boccassi [Wed, 27 Sep 2023 13:42:27 +0000 (14:42 +0100)] 
Merge pull request #29134 from nabijaczleweli/short-iso-timestamp

journalctl -o short-iso[-precise]: timezone as +02:00 instead of +0200

7 months agoMerge pull request #29296 from yuwata/sd-journal-several-cleanups-for-boot-id
Zbigniew Jędrzejewski-Szmek [Wed, 27 Sep 2023 12:56:48 +0000 (14:56 +0200)] 
Merge pull request #29296 from yuwata/sd-journal-several-cleanups-for-boot-id

7 months agotest: introduce TEST-09-REBOOT
Frantisek Sumsal [Sat, 23 Sep 2023 16:17:04 +0000 (18:17 +0200)] 
test: introduce TEST-09-REBOOT

To test stuff involving state preserved across (multiple) reboots, like
journal boot IDs.

7 months agoMerge pull request #29296 from keszybz/make-cryptsetup-offical-and-add-docs
Luca Boccassi [Wed, 27 Sep 2023 12:31:11 +0000 (13:31 +0100)] 
Merge pull request #29296 from keszybz/make-cryptsetup-offical-and-add-docs

Make cryptsetup offical and add docs

7 months agounits/blockdev@.target: conflict with umount.target
Mike Yuan [Tue, 26 Sep 2023 22:26:38 +0000 (06:26 +0800)] 
units/blockdev@.target: conflict with umount.target

Follow-up for d120ce478dc0043c89899799b5c1aaf62901bea9

blockdev@.target is used as a synchronization point between
the mount unit and corresponding systemd-cryptsetup@.service.
After the mentioned commit, it doesn't get a stop job enqueued
during shutdown, and thus the stop job for systemd-cryptsetup@.service
could be run before the mount unit is stopped.

Therefore, let's make blockdev@.target conflict with umount.target,
which is also what systemd-cryptsetup@.service does.

Fixes #29336

7 months agoupdate TODO 29345/head
Lennart Poettering [Wed, 27 Sep 2023 10:17:18 +0000 (12:17 +0200)] 
update TODO

7 months agoefi-loader: add caching to efi_measured_uki()
Lennart Poettering [Wed, 27 Sep 2023 10:14:56 +0000 (12:14 +0200)] 
efi-loader: add caching to efi_measured_uki()

EFI variable access is slow, hence let's avoid it if there's no need.
Let's cache the result of efi_measured_uki() so that we don't have to go
to the EFI variables each time.

This only caches in the yes/no case. If we encounter an error we don't
cache, so that we go to disk again.

This should optimize things a bit given we now have a bunch of services
which are conditioned with this at boot.

7 months agounits: move units over to ConditionSecurity=measured-uki
Lennart Poettering [Wed, 27 Sep 2023 10:13:26 +0000 (12:13 +0200)] 
units: move units over to ConditionSecurity=measured-uki

7 months agocondition: add ConditionSecurity=measured-uki
Lennart Poettering [Wed, 27 Sep 2023 10:08:41 +0000 (12:08 +0200)] 
condition: add ConditionSecurity=measured-uki

We have various services that should only run in a measured UKI
environment. Let's add an explicit high-level check for that.

7 months agoefi-loader: rename efi_stub_measured() → efi_measured_uki()
Lennart Poettering [Wed, 27 Sep 2023 09:50:14 +0000 (11:50 +0200)] 
efi-loader: rename efi_stub_measured() → efi_measured_uki()

Let's say "uki" rather than "stub", since that is just too generic, and
we shouldn't limit us to our own stub anyway, but generally define a
concept of a "measured UKI", which is a UKI that measures its part to
PCR 11.

This is mostly preparation for exposing this check to the user via
ConditionSecurity=.

7 months agondisc: Also set link hoplimit
Susant Sahani [Fri, 8 Sep 2023 09:00:38 +0000 (14:30 +0530)] 
ndisc: Also set link hoplimit

The per route hop limit does not place the hop limit in the IPv6 header.
https://github.com/systemd/systemd/issues/28437#issuecomment-1711055181

7 months agoRevert "userdbd: Order systemd-userdbd.service after systemd-remount-fs.service"
Lennart Poettering [Tue, 5 Sep 2023 08:17:41 +0000 (10:17 +0200)] 
Revert "userdbd: Order systemd-userdbd.service after systemd-remount-fs.service"

This reverts commit 9dd88582813b6dbeea6ce336f70cae681e6cbfc6.

7 months agofix typo in NEWS
Christian Hesse [Wed, 27 Sep 2023 07:16:06 +0000 (09:16 +0200)] 
fix typo in NEWS

Looks like `-a change` is a typo and should have been `-c change` to
match on the action.

7 months agopo: Translated using Weblate (Hungarian)
Balázs Úr [Wed, 27 Sep 2023 01:36:03 +0000 (03:36 +0200)] 
po: Translated using Weblate (Hungarian)

Currently translated at 100.0% (227 of 227 strings)

Co-authored-by: Balázs Úr <balazs@urbalazs.hu>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/hu/
Translation: systemd/main

7 months agoupdate-dbus-docs: Test that items are documented in the History section
Abderrahim Kitouni [Sun, 24 Sep 2023 08:13:45 +0000 (09:13 +0100)] 
update-dbus-docs: Test that items are documented in the History section

This also adds an ignore list, which currently contains the whole API as of
version 250, since that's the base we used for dbus interfaces.

See d9d2d16aeaf7c18a7b2486cd7c2db484c99050df

7 months agonetwork: Rename json_append_one() and move to json.h
Daan De Meyer [Tue, 26 Sep 2023 14:47:52 +0000 (16:47 +0200)] 
network: Rename json_append_one() and move to json.h

7 months agojournal: Stop trying to open runtime journal once flushed
Daan De Meyer [Tue, 26 Sep 2023 13:59:23 +0000 (15:59 +0200)] 
journal: Stop trying to open runtime journal once flushed

Once we've flushed the runtime journal to /var, stop trying to open
it since that will just fail with ENOENT all the time.

7 months agomeson: Fix version script handling
Jan Janssen [Tue, 26 Sep 2023 13:14:38 +0000 (15:14 +0200)] 
meson: Fix version script handling

Build targets should have a link dependency on the version scripts they
use. This also uses absolute paths in anticipation for meson 1.3
needlessly deprecating file to string conversions.

7 months agosystemd-hwdb: fix unsigned and signed comparison problem
huyubiao [Tue, 26 Sep 2023 06:46:55 +0000 (14:46 +0800)] 
systemd-hwdb: fix unsigned and signed comparison problem
...
uint8_t c;
struct trie_node *child;

for (p = 0; (c = trie->strings->buf[node->prefix_off + p]); p++) {
        _cleanup_free_ struct trie_node *new_child = NULL;
        _cleanup_free_ char *s = NULL;
        ssize_t off;
if (c == search[i + p])
        continue;
...
When '®' is present in search, c is 194, search[i + p] is -62, c is not equal to search[i + p], but c should be equal to search[i + p].

7 months agoman: rename systemd-cryptsetup@.service → systemd-cryptsetup 29296/head
Zbigniew Jędrzejewski-Szmek [Sat, 23 Sep 2023 11:43:55 +0000 (13:43 +0200)] 
man: rename systemd-cryptsetup@.service → systemd-cryptsetup

We already had the other name as alias, so this just changes what is the "main"
name. The text is adjusted to describe the command briefly.

7 months agoTEST-70: use new cryptsetup path
Zbigniew Jędrzejewski-Szmek [Fri, 22 Sep 2023 16:50:37 +0000 (18:50 +0200)] 
TEST-70: use new cryptsetup path

7 months agomeson: add comments to compat symlinks
Zbigniew Jędrzejewski-Szmek [Tue, 26 Sep 2023 15:03:15 +0000 (17:03 +0200)] 
meson: add comments to compat symlinks

7 months agomeson: move systemd-cryptsetup to /usr/bin
Zbigniew Jędrzejewski-Szmek [Fri, 22 Sep 2023 16:47:05 +0000 (18:47 +0200)] 
meson: move systemd-cryptsetup to /usr/bin

This was requested, though I think an issue was never filed. If people are
supposed to invoke it, even for testing, then it's reasonable to make it
"public".

7 months agocryptsetup: fail with error if extraneous arguments are specified
Zbigniew Jędrzejewski-Szmek [Sat, 23 Sep 2023 09:59:55 +0000 (11:59 +0200)] 
cryptsetup: fail with error if extraneous arguments are specified

So far the program would silently ignore those… I think it's better to fail.

7 months agocryptsetup: add parse_argv() and implement --version
Zbigniew Jędrzejewski-Szmek [Sat, 23 Sep 2023 09:56:13 +0000 (11:56 +0200)] 
cryptsetup: add parse_argv() and implement --version

All public programs are expected to have that. The --help output is adjusted to
follow the usual style (highlighting, listing of options). The OPTIONS
positional argument is renamed to "CONFIG", because we now also have "OPTIONS…"
to describe the non-positional options.

7 months agocryptenroll: align tables
Zbigniew Jędrzejewski-Szmek [Fri, 22 Sep 2023 18:36:44 +0000 (20:36 +0200)] 
cryptenroll: align tables

7 months agoman/crypttab: fix indentation
Zbigniew Jędrzejewski-Szmek [Fri, 22 Sep 2023 16:37:55 +0000 (18:37 +0200)] 
man/crypttab: fix indentation

7 months agoman/crypttab: add a more comprehensive example of encrypted device setup
Zbigniew Jędrzejewski-Szmek [Fri, 22 Sep 2023 16:37:49 +0000 (18:37 +0200)] 
man/crypttab: add a more comprehensive example of encrypted device setup

7 months agoman/crypttab: do not recommend using /dev/sdX symlinks in /etc/crypttab
Zbigniew Jędrzejewski-Szmek [Fri, 22 Sep 2023 16:27:10 +0000 (18:27 +0200)] 
man/crypttab: do not recommend using /dev/sdX symlinks in /etc/crypttab

This is just wrong. Quering the symlink names with udevadm is not the
easiest, but I think that's the safest way for a documented example.

7 months agoman/cryptenroll: link to crypttab(5) for examples
Zbigniew Jędrzejewski-Szmek [Fri, 22 Sep 2023 15:55:39 +0000 (17:55 +0200)] 
man/cryptenroll: link to crypttab(5) for examples

I was missing an example of how to use cryptenroll. We have that, but in
another page. Instead of repeating, let's just direct the user to the right
place.

Also, reformat synopsis to the "official" non-nested syntax.

7 months agojournalctl -o short-iso[-precise]: timezone as +02:00 instead of +0200 29134/head
наб [Fri, 8 Sep 2023 15:28:57 +0000 (17:28 +0200)] 
journalctl -o short-iso[-precise]: timezone as +02:00 instead of +0200

7 months agojournalctl.1: move --truncate-newline to the options instead of the -o values list
наб [Fri, 8 Sep 2023 15:30:17 +0000 (17:30 +0200)] 
journalctl.1: move --truncate-newline to the options instead of the -o values list

7 months agoadd support for hp pavilion gaming 15 lid switch (#29304)
beh_10257 [Tue, 26 Sep 2023 12:32:03 +0000 (12:32 +0000)] 
add support for hp pavilion gaming 15 lid switch (#29304)

Tested together with kernel patch: https://lore.kernel.org/linux-acpi/20230920130506.8595-1-hdegoede@redhat.com/
but the d7 key is still interpreted as a wlan key switch, so an hwdb update is needed.

Raw dmi:

dmi:bvnInsyde:bvrF.45:bd07/07/2023:br15.45:efr2.51:svnHP:pnHPPavilionGamingLaptop15-dk1xxx:pvrType1ProductConfigId:rvnHP:rn8742:rvr02.51:cvnHP:ct10:cvrChassisVersion:sku20T68EA#BH4::

Related to: https://github.com/systemd/systemd/issues/28942

7 months agoRevert "man: Add /usr/local/lib path to Synopsis section for modules-load"
Lennart Poettering [Tue, 26 Sep 2023 08:05:20 +0000 (10:05 +0200)] 
Revert "man: Add /usr/local/lib path to Synopsis section for modules-load"

This reverts commit 17811767687fcee3b96333f724c5cdf3df11ae86.

7 months agoudev: raise RLIMIT_NOFILE as high as we can
Lennart Poettering [Tue, 26 Sep 2023 07:52:05 +0000 (09:52 +0200)] 
udev: raise RLIMIT_NOFILE as high as we can

We might need a lot of fds on large systems, hence raise RLIMIT_NOFILE
to what the service manager allows us, which is quite a lot these days.

udev already sets FORK_RLIMIT_NOFILE_SAFE when forking of chilren, thus
ensuring that forked off processes get their RLIMIT_NOFILE soft limit
reset to 1K for compat with crappy old select().

Replaces: #29298
Fixes: #28583
7 months agovarlink: remove duplicate varlink_clear_current()
Lennart Poettering [Tue, 26 Sep 2023 07:38:12 +0000 (09:38 +0200)] 
varlink: remove duplicate varlink_clear_current()

7 months agocore/service: log the next restart usec only when we're arming timer
Mike Yuan [Mon, 25 Sep 2023 15:23:29 +0000 (23:23 +0800)] 
core/service: log the next restart usec only when we're arming timer

service_restart_usec_next() is also called when querying
'RestartUSecNext' dbus property. Let's avoid the redundant
logging triggered every time user does a 'systemctl status'.

7 months agoman: Add /usr/local/lib path to Synopsis section for modules-load
Raul Cheleguini [Tue, 26 Sep 2023 01:57:05 +0000 (22:57 -0300)] 
man: Add /usr/local/lib path to Synopsis section for modules-load

7 months agotest: add test case that journal file with unreferenced _BOOT_ID data
Yu Watanabe [Sun, 24 Sep 2023 17:57:31 +0000 (02:57 +0900)] 
test: add test case that journal file with unreferenced _BOOT_ID data

For issue #29275.

7 months agosd-journal: always fallback to find entry by realtime
Yu Watanabe [Sun, 24 Sep 2023 17:00:41 +0000 (02:00 +0900)] 
sd-journal: always fallback to find entry by realtime

Consider the following situation:
- There are two journal files (x and y), that contains entries for two boots (X and Y).
- The journal file x contains entries of the boot X, and y contains
  entries of Y.
- Nevertheless x does not contains entries of boot Y, it contains
  the _BOOT_ID= data object of boot Y. Of course, the data object is not
  referenced by any entries in the journal file x.

In such situation, when the current location of sd_journal is the head
of journal y, that is, the first entry of the boot Y,
sd_journal_previous() failed without this change, and
'journalctl --boot -NUM' for boot X failed.

Fixes #29275.

7 months agotest: add tests for journal_find_boot_by_offset() and friends
Yu Watanabe [Sat, 23 Sep 2023 06:14:18 +0000 (15:14 +0900)] 
test: add tests for journal_find_boot_by_offset() and friends

7 months agologs-show: use sd_journal_step_one()
Yu Watanabe [Sat, 23 Sep 2023 18:31:14 +0000 (03:31 +0900)] 
logs-show: use sd_journal_step_one()

7 months agologs-show: move journal_find_boot_by_offset() and friends from journalctl.c
Yu Watanabe [Sat, 23 Sep 2023 00:55:45 +0000 (09:55 +0900)] 
logs-show: move journal_find_boot_by_offset() and friends from journalctl.c

7 months agojournalctl: several cleanups for find_boot_by_offset()/_by_id()
Yu Watanabe [Sat, 23 Sep 2023 00:35:55 +0000 (09:35 +0900)] 
journalctl: several cleanups for find_boot_by_offset()/_by_id()

- their names are prefixed with "journal_",
- make them not directly use global variables,
- simplifies the loop counter in find_boot_by_offset().

7 months agosd-journal: refuse to write entry without boot ID
Yu Watanabe [Fri, 22 Sep 2023 19:14:31 +0000 (04:14 +0900)] 
sd-journal: refuse to write entry without boot ID

To make journal entries always contain valid boot ID.

7 months agosd-journal: boot_id is always non-NULL
Yu Watanabe [Fri, 22 Sep 2023 17:42:31 +0000 (02:42 +0900)] 
sd-journal: boot_id is always non-NULL

The two callers of journal_file_append_entry_internal() always pass
non-NULL boot ID.

7 months agosd-journal: also verify tail_entry_boot_id and friends in journal_file_verify_header()
Yu Watanabe [Fri, 22 Sep 2023 18:14:40 +0000 (03:14 +0900)] 
sd-journal: also verify tail_entry_boot_id and friends in journal_file_verify_header()

Then, we can drop the redundant check in journal_file_read_tail_timestamp().

7 months agotest: fix header verification
Yu Watanabe [Fri, 22 Sep 2023 17:28:04 +0000 (02:28 +0900)] 
test: fix header verification

7 months agoman: document SystemState's possible values
Luca Boccassi [Mon, 25 Sep 2023 18:14:58 +0000 (19:14 +0100)] 
man: document SystemState's possible values

7 months agoman: add version information for udev functions
Abderrahim Kitouni [Tue, 19 Sep 2023 08:04:56 +0000 (09:04 +0100)] 
man: add version information for udev functions

7 months agoMerge pull request #29314 from YHNdnzj/firstboot-fixup
Luca Boccassi [Mon, 25 Sep 2023 21:29:24 +0000 (22:29 +0100)] 
Merge pull request #29314 from YHNdnzj/firstboot-fixup

Small fixups for first boot

7 months agoMerge pull request #29309 from poettering/resolved-varlink-tweaks
Lennart Poettering [Mon, 25 Sep 2023 21:27:33 +0000 (23:27 +0200)] 
Merge pull request #29309 from poettering/resolved-varlink-tweaks

resolved: minor varlink API tweaks

7 months agooomd: correct listening sockets
Lennart Poettering [Mon, 25 Sep 2023 16:10:50 +0000 (18:10 +0200)] 
oomd: correct listening sockets

So, unfortunately oomd uses "io.system." rather than "io.systemd." as
prefix for its sockets. This is a mistake, and doesn't match the
Varlink interface naming or anything else in oomd.

hence, let's fix that.

Given that this is an internal protocol between PID1 and oomd let's
simply change this without retaining compat.

7 months agovarlink: move O_NONBLOCK setting to varlink_server_listen_fd(), and set O_CLOEXEC too
Lennart Poettering [Mon, 25 Sep 2023 14:04:01 +0000 (16:04 +0200)] 
varlink: move O_NONBLOCK setting to varlink_server_listen_fd(), and set O_CLOEXEC too

Let's move setting of O_NONBLOCK into varlink_server_listen_fd() and out
of varlink_server_create_listen_fd_socket(). The latter has two callers:
varlink_server_listen_fd() and varlink_server_listen_address(), which
guarantees O_CLOEXEC+O_NONBLOCK anyway, hence no neet to repeat the
logic.

7 months agoMerge pull request #29315 from poettering/strgrowpad0
Lennart Poettering [Mon, 25 Sep 2023 21:26:47 +0000 (23:26 +0200)] 
Merge pull request #29315 from poettering/strgrowpad0

string-util: make strgrowpad0() safer

7 months agoMerge pull request #29308 from aafeijoo-suse/dissect-fix
Luca Boccassi [Mon, 25 Sep 2023 18:16:08 +0000 (19:16 +0100)] 
Merge pull request #29308 from aafeijoo-suse/dissect-fix

dissect: fix man and bash-completion

7 months agorepart: add extra safety check that the verity signature fits in the partition we... 29315/head
Lennart Poettering [Mon, 25 Sep 2023 17:07:09 +0000 (19:07 +0200)] 
repart: add extra safety check that the verity signature fits in the partition we want to write

7 months agostring-util: make strgrowpad0() a bit safer
Lennart Poettering [Mon, 25 Sep 2023 17:06:06 +0000 (19:06 +0200)] 
string-util: make strgrowpad0() a bit safer

Let#s make sure we never shorten the allocation leaving an invalid
string (i.e. a memory allocation without a trailing NUL) around.

7 months agoman/systemd-firstboot: /etc/ empty -> unpopulated 29314/head
Mike Yuan [Mon, 25 Sep 2023 17:01:57 +0000 (01:01 +0800)] 
man/systemd-firstboot: /etc/ empty -> unpopulated

We use the phrase "unpopulated" in systemd.unit(5) too.
And "/etc/ is empty" is simply spurious.

7 months agocore/main: log that we assume first boot if failed to read machine-id
Mike Yuan [Mon, 25 Sep 2023 17:00:23 +0000 (01:00 +0800)] 
core/main: log that we assume first boot if failed to read machine-id

7 months agoalloc-util: remove duplicate empty line
Lennart Poettering [Fri, 22 Sep 2023 20:21:45 +0000 (22:21 +0200)] 
alloc-util: remove duplicate empty line

7 months agoresolved: rename varlink function to match exposed method name 29309/head
Lennart Poettering [Fri, 22 Sep 2023 20:38:06 +0000 (22:38 +0200)] 
resolved: rename varlink function to match exposed method name

7 months agoresolved: also expose interface index in server JSON data
Lennart Poettering [Fri, 22 Sep 2023 20:37:37 +0000 (22:37 +0200)] 
resolved: also expose interface index in server JSON data

7 months agoMerge pull request #29301 from poettering/pcr-extend-rename
Lennart Poettering [Mon, 25 Sep 2023 16:28:03 +0000 (18:28 +0200)] 
Merge pull request #29301 from poettering/pcr-extend-rename

rename pcrphase binary to pcrextend

7 months agoman: briefly document that we are now keeping an event log in userspace for out measu... 29301/head
Lennart Poettering [Mon, 25 Sep 2023 09:09:34 +0000 (11:09 +0200)] 
man: briefly document that we are now keeping an event log in userspace for out measurements

7 months agopcrextend: make PCR index configurable
Lennart Poettering [Mon, 25 Sep 2023 08:51:56 +0000 (10:51 +0200)] 
pcrextend: make PCR index configurable

Let's make the tool a tiny bit more generic by allowing the PCR index to
measure into to be configurable.

7 months agopcrphase: rename binary to pcrextend
Lennart Poettering [Mon, 25 Sep 2023 08:38:01 +0000 (10:38 +0200)] 
pcrphase: rename binary to pcrextend

The tool initially just measured the boot phase, but was subsequently
extended to measure file system and machine IDs, too. At AllSystemsGo
there were request to add more, and make the tool generically
accessible.

Hence, let's rename the binary (but not the pcrphase services), to make
clear the tool is not just measureing the boot phase, but a lot of other
things too.

The tool is located in /usr/lib/ and still relatively new, hence let's
just rename the binary and be done with it, while keeping the unit names
stable.

While we are at it, also move the tool out of src/boot/ and into its own
src/pcrextend/ dir, since it's not really doing boot related stuff
anymore.

7 months agobash-completion: add missing commands and options to systemd-dissect 29308/head
Antonio Alvarez Feijoo [Mon, 25 Sep 2023 14:46:11 +0000 (16:46 +0200)] 
bash-completion: add missing commands and options to systemd-dissect

7 months agotest: enable debug logs for the user instances as well
Frantisek Sumsal [Mon, 25 Sep 2023 11:25:27 +0000 (13:25 +0200)] 
test: enable debug logs for the user instances as well

To make debugging [0], hopefully, easier.

[0] https://github.com/systemd/systemd/issues/28504

7 months agoMerge pull request #29303 from abderrahim/syntax-fixes
Luca Boccassi [Mon, 25 Sep 2023 14:23:48 +0000 (15:23 +0100)] 
Merge pull request #29303 from abderrahim/syntax-fixes

man: a couple of small fixes

7 months agoman/systemd-dissect: various fixes
Antonio Alvarez Feijoo [Mon, 25 Sep 2023 14:16:41 +0000 (16:16 +0200)] 
man/systemd-dissect: various fixes

- Add synopsis to `--discover` and `--validate` options.
- `-l` is for `--list`, not for `--mtree`.

7 months agoman: fix docbook syntax for function docs 29303/head
Abderrahim Kitouni [Mon, 25 Sep 2023 12:14:13 +0000 (13:14 +0100)] 
man: fix docbook syntax for function docs

This fixes sd_bus_error_add_map and man/sd_uid_get_state

7 months agoman/kernel-command-line: don't refer early_core_pattern to systemd
Abderrahim Kitouni [Mon, 25 Sep 2023 12:12:46 +0000 (13:12 +0100)] 
man/kernel-command-line: don't refer early_core_pattern to systemd

It is defined later in the same file

7 months agodocs/FDS: add missing article and reword sentence
Zbigniew Jędrzejewski-Szmek [Fri, 22 Sep 2023 13:14:40 +0000 (15:14 +0200)] 
docs/FDS: add missing article and reword sentence

7 months agoupdate TODO
Lennart Poettering [Mon, 25 Sep 2023 10:23:12 +0000 (12:23 +0200)] 
update TODO

7 months agomkosi: Run meson and ninja as the user invoking mkosi
Daan De Meyer [Mon, 25 Sep 2023 09:02:13 +0000 (11:02 +0200)] 
mkosi: Run meson and ninja as the user invoking mkosi

Latest mkosi sets $MKOSI_UID and $MKOSI_GID to the uid/gid of the
user running mkosi. Let's make use of this to run meson setup and
ninja as the user running mkosi, so that if we execute git as a
subprocess during meson setup, it doesn't complain about unsafe
directories. This also makes sure all the build artifacts are owned
on the host by the user running mkosi.

7 months agopo: Translated using Weblate (Korean)
김인수 [Mon, 25 Sep 2023 03:36:02 +0000 (05:36 +0200)] 
po: Translated using Weblate (Korean)

Currently translated at 100.0% (227 of 227 strings)

Co-authored-by: 김인수 <simmon@nplob.com>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/ko/
Translation: systemd/main

7 months agosd-dhcp-client: reject NAKs from servers that we did not send an offer to (#29290)
Alexandre Peixoto Ferreira [Mon, 25 Sep 2023 02:46:41 +0000 (21:46 -0500)] 
sd-dhcp-client: reject NAKs from servers that we did not send an offer to (#29290)

To support multiple DHCP servers in a network.

8 months agohwdb: ieee1394-unit-function: add Miglia Technology Harmony Audio (HA02)
Takashi Sakamoto [Sun, 24 Sep 2023 03:14:25 +0000 (12:14 +0900)] 
hwdb: ieee1394-unit-function: add Miglia Technology Harmony Audio (HA02)

This commit adds hwdb entry for Miglia Technology Harmony Audio (HA02).
The device is an application of OXford Semiconductor FW970 and will be
supported by ALSA oxfw driver in future.

8 months agotest: wait for the swtpm socket to appear
Frantisek Sumsal [Sat, 23 Sep 2023 07:13:56 +0000 (09:13 +0200)] 
test: wait for the swtpm socket to appear

On slower/overloaded systems it may take a bit for the swtpm socket
to show up:

I: Started swtpm as PID 189419 with state dir /tmp/tmp.pWqUutuGUj
I: Configured emulated TPM2 device tpm-spapr
+ tee /var/tmp/systemd-test-TEST-70-TPM2_1/console.log
+ timeout --foreground 1200 /bin/qemu-system-ppc64le -smp 4 ...
qemu-system-ppc64le: -chardev socket,id=chrtpm,path=/tmp/tmp.pWqUutuGUj/sock: Failed to connect to '/tmp/tmp.pWqUutuGUj/sock': No such file or directory
E: qemu failed with exit code 1

Spotted regularly in the ppc64le cron job and in some Ubuntu CI/CentOS CI
pr runs [0].

[0] https://github.com/systemd/systemd/pull/29183#issuecomment-1721727927

8 months agotest: don't panic on soft lockups
Frantisek Sumsal [Fri, 22 Sep 2023 19:41:34 +0000 (21:41 +0200)] 
test: don't panic on soft lockups

We can't do anything about them anyway, and most importantly this seems
to alleviate systemd/systemd-centos-ci#660, which should make the CIs
a bit less angry (at least until the issue is addressed properly).

8 months agoMerge pull request #29254 from yuwata/sd-ndisc-use-usec_t
Luca Boccassi [Fri, 22 Sep 2023 20:46:50 +0000 (21:46 +0100)] 
Merge pull request #29254 from yuwata/sd-ndisc-use-usec_t

sd-ndisc: make sd_ndisc return time values in usec

8 months agoMerge pull request #29258 from yuwata/sd-dhcp-client-split-out
Luca Boccassi [Fri, 22 Sep 2023 20:46:31 +0000 (21:46 +0100)] 
Merge pull request #29258 from yuwata/sd-dhcp-client-split-out

sd-dhcp-client: preparation for later PR

8 months agosd-dhcp-client: split out client_parse_message() 29258/head
Yu Watanabe [Wed, 20 Sep 2023 19:39:49 +0000 (04:39 +0900)] 
sd-dhcp-client: split out client_parse_message()

No functional change, just refactoring and preparation for later
commits.

8 months agosd-dhcp-client: introduce dhcp_lease_unref_and_replace()
Yu Watanabe [Wed, 20 Sep 2023 19:37:18 +0000 (04:37 +0900)] 
sd-dhcp-client: introduce dhcp_lease_unref_and_replace()

8 months agosd-dhcp-client: do not set fallback subnet mask if it is already set
Yu Watanabe [Wed, 20 Sep 2023 05:32:38 +0000 (14:32 +0900)] 
sd-dhcp-client: do not set fallback subnet mask if it is already set

8 months agosd-dhcp-client: split out client_enter_requesting()
Yu Watanabe [Wed, 20 Sep 2023 04:37:53 +0000 (13:37 +0900)] 
sd-dhcp-client: split out client_enter_requesting()

No functional change, just refactoring and preparation for later
commits.