Yu Watanabe [Sun, 23 Jun 2024 05:37:01 +0000 (14:37 +0900)]
test-network: check if static routes not overridden by NDisc routes
Yu Watanabe [Mon, 24 Jun 2024 07:20:27 +0000 (16:20 +0900)]
network/ndisc: do not remove static routes when received RA with zero lifetime
Similar to the previous commit, but for preventing from removing static
routes on receiving RA with zero lifetime.
Fixes a regresson caused by
479d3e1994a2e4ff7070dc2a0cb1615af7120b0c.
Fixes #33346.
Yu Watanabe [Sun, 23 Jun 2024 05:36:08 +0000 (14:36 +0900)]
network/ndisc: do not override conflicting static routes
We have already ignored conflicting address configurations requested by
NDisc protocol. See ndisc_request_address().
Let's follow the same rule for routes. That is, if there are conflicting
static routes configured or requested, do not override them by NDisc.
Also, swap the order of checking existing route and existing request.
Fixes a regression caused by
972f1d17ab461a51142a142609dd3ec50bae8440.
Prompted by #33346.
Lennart Poettering [Mon, 24 Jun 2024 10:18:03 +0000 (12:18 +0200)]
uefi: emphasize a bit that EV_IPL event logs is the past, EV_EVENT_TAG the future
Mike Yuan [Mon, 24 Jun 2024 13:34:16 +0000 (15:34 +0200)]
Merge pull request #33401 from yuwata/journal-revert-source-boottime-timestamp
journal: partially revert recent changes
Mike Yuan [Mon, 24 Jun 2024 13:29:36 +0000 (15:29 +0200)]
Merge pull request #33456 from yuwata/terminal-util
terminal-util: use colon as separator for specifying color
Robin Lee [Mon, 24 Jun 2024 05:48:32 +0000 (13:48 +0800)]
vmspawn: define QEMU_MACHINE_TYPE for loongarch64
Use ["virt"](https://www.qemu.org/docs/master/system/loongarch/virt.html) as a commonly used generic platform on loongarch64.
Yu Watanabe [Sun, 23 Jun 2024 19:18:04 +0000 (04:18 +0900)]
terminal-util: several cleanups for ColorMode
- introduce or rename usual enum values _MAX and _INVALID,
- introduce and use string table lookup functions,
- split out implementation of get_color_mode() to _impl(),
- add tests for get_color_mode().
Yu Watanabe [Sun, 23 Jun 2024 19:12:45 +0000 (04:12 +0900)]
terminal-util: merge COLOR_ON with COLOR_24BIT
Currently, we assume that there is no restriction on coloring when
COLOR_24BIT. Let's merge the two values.
Follow-up for
a5efbf468c96190c9562bc8121eda32310dfd112.
Yu Watanabe [Mon, 24 Jun 2024 08:55:17 +0000 (17:55 +0900)]
terminal-util: use colon as separator for specifying color
Then, terminal will safely ignore unsupported features, like colored
underline.
Fixes a regression caused by
891abc9cf1d3d7afd7b740b4077551dcfb5f8e16.
Fixes https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=
1074073.
Fixes #33449.
Luca Boccassi [Sun, 23 Jun 2024 12:19:30 +0000 (13:19 +0100)]
Merge pull request #33452 from bluca/repart_pkg
mkosi: install new split-out systemd packages
Luca Boccassi [Sun, 23 Jun 2024 09:20:27 +0000 (10:20 +0100)]
mkosi: bump Debian Salsa commit to latest
Luca Boccassi [Sun, 23 Jun 2024 09:10:26 +0000 (10:10 +0100)]
mkosi: install new split-out systemd packages
repart and cryptsetup tools were moved out of the main package
to reduce dependencies.
Mike Yuan [Sat, 22 Jun 2024 10:28:08 +0000 (12:28 +0200)]
bus-unit-util: add PrivateTmpEx to bus_append_execute_property()
Follow-up for
9d50d053f327e5471a514bc36487bfc3358c15d8
Stuart Hayhurst [Sat, 22 Jun 2024 19:25:21 +0000 (20:25 +0100)]
hwdb: Fix Logitech G915 TKL (Bluetooth) appearing as a mouse
Diego Viola [Sat, 22 Jun 2024 02:46:32 +0000 (23:46 -0300)]
man: fix double is typo in systemd-tmpfiles
Signed-off-by: Diego Viola <diego.viola@gmail.com>
Lennart Poettering [Fri, 21 Jun 2024 07:41:43 +0000 (09:41 +0200)]
tree-wide: fix type of read() return variable at a couple of places
read() returns ssize_t (i.e. 64bit typically). We assigned it to int
variables in some cases (i.e. 32bit typically). Let's not be so sloppy,
and not accidentally drop 32bit on the floor.
(of course, this is not an issue IRL since we'll not have allocations
above 2^32 ever we could read into, but still, let's clean this up)
Lennart Poettering [Fri, 21 Jun 2024 15:05:26 +0000 (17:05 +0200)]
varlink: yet another fix around handling of IDL comments
Skip over them when validating a message against the IDL.
Add test case that tests this.
Yu Watanabe [Sat, 22 Jun 2024 07:34:55 +0000 (16:34 +0900)]
Merge pull request #33439 from YHNdnzj/private-tmp-followup
core: several follow-ups for recent changes to PrivateTmp
Yu Watanabe [Sat, 22 Jun 2024 07:24:47 +0000 (16:24 +0900)]
Merge pull request #33408 from poettering/install-change-fix
install: some follow-up fixes to #33254
Mike Yuan [Tue, 18 Jun 2024 14:18:56 +0000 (16:18 +0200)]
core: expose PrivateTmp=disconnected
As discussed in https://github.com/systemd/systemd/pull/32724#discussion_r1638963071
I don't find the opposite reasoning particularly convincing.
We have ProtectHome=tmpfs and friends, and those can be
pretty much trivially implemented through TemporaryFileSystem=
too. The new logic brings many benefits, and is completely generic,
hence I see no reason not to expose it. We can even get more tests
for the code path if we make it public.
Mike Yuan [Tue, 18 Jun 2024 14:14:46 +0000 (16:14 +0200)]
core/namespace: add assertion for PRIVATE_TMP_CONNECTED
Mike Yuan [Tue, 18 Jun 2024 13:56:45 +0000 (15:56 +0200)]
core/exec-invoke: respect needs_sandboxing for PrivateTmp
Follow-up for
0e551b04efb911d38b586cca1a6a462c87a2cb1b
Mike Yuan [Tue, 18 Jun 2024 13:35:43 +0000 (15:35 +0200)]
core/dbus-util: move dbus setter/getter for PrivateTmp to dbus-execute
As with all other properties for ExecContext
Mike Yuan [Tue, 18 Jun 2024 13:19:52 +0000 (15:19 +0200)]
core/dbus-execute: use FOREACH_ARRAY more, drop bus_ prefix for static funcs
Mike Yuan [Thu, 20 Jun 2024 21:14:38 +0000 (23:14 +0200)]
man/org.freedesktop.systemd1: Status{Bus,Varlink}Error belongs to Service, not Scope
Follow-up for
9c025022d98787d7ad4e46b57f709434531e55a1
Ugh, shouldn't have done this bit when I was sleepy...
Lennart Poettering [Tue, 18 Jun 2024 15:09:34 +0000 (17:09 +0200)]
install: shorten code a bit
This changes behaviour a bit, since we now keep track of OOM errors in
install_changes_add(). Which I'd argue is a good thing.
Lennart Poettering [Tue, 18 Jun 2024 15:09:21 +0000 (17:09 +0200)]
install: collect more install_changes_add() errors
We so far collected most unexpected errors from install_changes_add()
and propagated them – but for some invocations we forgot to do that. Add
that, and take care we only propagated unexpected errors (i.e. ENOMEM
and such), but treat expected errors as before.
Follow-up for
5163c9b1e56293b1bb2803420613c5b374570892
Lennart Poettering [Fri, 21 Jun 2024 10:10:51 +0000 (12:10 +0200)]
cryptsetup: minor coding style tweaks
Don't cram function calls and assignment into if condition checks. It's
not how we usually do things.
Also, define variables at innermost scope.
Nick Rosbrook [Thu, 20 Jun 2024 15:27:03 +0000 (11:27 -0400)]
test: skip test-cgroup-id on ENOSYS from cg_cgroupid_open
Most container managers will block open_by_handle_at with seccomp to
mitigate a container escape attack. LXD in particular returns ENOSYS
rather than e.g. EPERM like nspawn. Skip this test if we get ENOSYS
from open_by_handle_at via cg_cgroupid_open.
Yu Watanabe [Thu, 20 Jun 2024 23:26:30 +0000 (08:26 +0900)]
Merge pull request #33424 from poettering/machined-gc-rework
machined: clean up GC logic
Johannes Schneider [Thu, 20 Jun 2024 10:32:18 +0000 (12:32 +0200)]
meson: bpf: propagate 'sysroot' for cross compilation
During cross-compilation of systemd, the compiler used to build the bpf's needs
to be pointed at the correct include searchpath. Which can be done by passing
the corresponding directory in through the cflags; for example in yocto/bitbake
this would work: CFLAGS += "--sysroot=${STAGING_DIR_TARGET}"
Signed-off-by: Johannes Schneider <johannes.schneider@leica-geosystems.com>
Lennart Poettering [Thu, 20 Jun 2024 21:05:32 +0000 (23:05 +0200)]
Merge pull request #33430 from YHNdnzj/buserror-notify
core/service: store BUSERROR= & VARLINKERROR= received and show them through systemctl status
Lennart Poettering [Thu, 20 Jun 2024 21:05:08 +0000 (23:05 +0200)]
Merge pull request #33425 from poettering/json-enum-easier
json: make serializing/deserializing systemd-style enums easier in Varlink
Lennart Poettering [Thu, 20 Jun 2024 21:04:45 +0000 (23:04 +0200)]
Merge pull request #33428 from poettering/graceful-varlinkctl
varlinkctl: add new --graceful= switch for treating selected errors like a success
Lennart Poettering [Mon, 27 May 2024 13:36:44 +0000 (15:36 +0200)]
machined: watch leader PID's lifetime via pidfd
If we have a pidfd, we might as well track the machine's leader PID's
lifetime, and enqueue the machine for a GC run.
(This is similar to what we are already doing for logind's session
leaders)
Lennart Poettering [Mon, 27 May 2024 13:37:51 +0000 (15:37 +0200)]
machined: GC machines during runtime too
One major omission in machine's logic so far was that the GC was only
run at startup and on the check-idle timeout, which is really slow.
Let's make this more like the GC logic in homed or logind: make sure we
run it in a close-by event loop cycle.
Mike Yuan [Thu, 20 Jun 2024 16:39:52 +0000 (18:39 +0200)]
TEST-80-NOTIFYACCESS: introduce test for ERRNO= + BUS/VARLINKERROR=
Lennart Poettering [Thu, 20 Jun 2024 14:22:32 +0000 (16:22 +0200)]
busctl: send BUSERROR= to caller via sd_notify() protocol
varlinkctl has this nice feature that it sends the varlink error it gets
via sd_notify() to the caller. With previous commits this information
is collected and exposed in "systemctl status".
Let's make sure we can provide the same in busctl: also propagate errors
the same way.
With this we can comprehensively close #6073
Mike Yuan [Thu, 9 May 2024 16:25:16 +0000 (00:25 +0800)]
systemctl-show: show Status{Bus,Varlink}Error in status
Mike Yuan [Thu, 9 May 2024 14:05:22 +0000 (22:05 +0800)]
core/service: store BUSERROR= & VARLINKERROR= received through notification
Closes #6073
Mike Yuan [Thu, 9 May 2024 13:18:10 +0000 (21:18 +0800)]
sd-bus/bus-error: inline iterator var, use assert_return
Lennart Poettering [Thu, 20 Jun 2024 07:39:51 +0000 (09:39 +0200)]
json: make it easy to dispatch our enums
This does the opposite of the previous patch: it undoes the "-" → "_"
mapping of enum values when we try to parse enums again.
Lennart Poettering [Thu, 20 Jun 2024 07:24:18 +0000 (09:24 +0200)]
json: make it easy to serialize our enums to json
Most of our enums are mapped to strings that use dashes ("-") as word
separators, i.e. "foo-bar-baz". However, Varlink enums do not allow "-"
as separator, see:
https://varlink.org/Interface-Definition
Hence, let's add some simple glue to automatucally turn "-" into "_" for
use when serializing our enums.
Lennart Poettering [Thu, 20 Jun 2024 10:23:53 +0000 (12:23 +0200)]
ci: test new --graceful= switch of varlinkctl
Lennart Poettering [Mon, 27 May 2024 20:32:51 +0000 (22:32 +0200)]
varlinkctl: add --graceful= option for optionally marking some errors as successes
This is generally useful, but in some cases particularly: when
implementing enumeration calls that use the "more" flag to return
multiple replies then for the first reply we need to return an error in
case the list of objects to enumerate is empty, usually so form of
"NoSuchXYZ" error. In many cases this shouldn't really be treated as
error, as an empty list probably more than not is as valid as a list
with one, two or more entries.
Lennart Poettering [Mon, 27 May 2024 20:31:09 +0000 (22:31 +0200)]
varlink: add helper that validates a qualified Varlink symbol name
Qualified Varlink symbol names are the combination of an interface name,
followed by a dot, followed by a symbol name. It's a primary concept,
after all it's what we send over the wire for method calls and get back
for error returns.
hence, let's add an explicit validator for it.
Yu Watanabe [Thu, 20 Jun 2024 14:56:59 +0000 (23:56 +0900)]
Merge pull request #33426 from aafeijoo-suse/conf-parser-parse-size-log
conf-parser: print why config_parse_iec_uint64() fails
Ludwig Nussel [Mon, 6 May 2024 13:55:16 +0000 (15:55 +0200)]
logind: implement maintenance time
Update frameworks that work automatically in the background
occasionally need to schedule reboots. Systemd-logind already
provides a nice mechanism to schedule shutdowns, send notfications
and block logins short before the time. Systemd has a framework for
calendar events, so we may conveniently use logind to define a
maintenance time for reboots.
The existing ScheduleShutdown DBus method in logind expects a usec_t
with an absolute time. Passing USEC_INFINITY as magic value now tells
logind to take the time from the configured maintenance time if set.
"shutdown -r" leverages that and uses the maintenance time
automatically if configured. The one minute default is still used if
nothing was specified.
Similarly the new 'auto' setting for the --when parameter of systemctl
uses the maintenance time if configured or a one minute timer like the
shutdown command.
Kamil Szczęk [Fri, 7 Jun 2024 11:22:49 +0000 (13:22 +0200)]
cryptenroll: support for enrolling FIDO2 tokens in manual mode
systemd-cryptsetup supports a FIDO2 mode with manual parameters, where
the user provides all the information necessary for recreating the
secret, such as: credential ID, relaying party ID and the salt. This
feature works great for implementing 2FA schemes, where the salt file
is for example a secret unsealed from the TPM or some other source.
While the unlocking part is quite straightforward to set up, enrolling
such a keyslot - not so easy. There is no clearly documented
way on how to set this up and online resources are scarce on this topic
too. By implementing a straightforward way to enroll such a keyslot
directly from systemd-cryptenroll we streamline the enrollment process
and reduce chances for user error when doing such things manually.
Antonio Alvarez Feijoo [Thu, 20 Jun 2024 10:54:32 +0000 (12:54 +0200)]
conf-parser: print why config_parse_iec_uint64() fails
Print the same output as `config_parse_iec_size()` and
`config_parse_si_uint64()` if `parse_size()` fails, not only the `rvalue`.
Antonio Alvarez Feijoo [Thu, 20 Jun 2024 10:53:08 +0000 (12:53 +0200)]
conf-parser: set standard pointer alignment
Lennart Poettering [Thu, 20 Jun 2024 10:13:59 +0000 (12:13 +0200)]
Merge pull request #33407 from poettering/varlink-idl-comment-fix
varlink: make comments on enum entries work
Lennart Poettering [Wed, 19 Jun 2024 11:54:47 +0000 (13:54 +0200)]
bootctl: add comments to Varlink interface
This is mostly intended as test case for the early enum comment bugfix,
as this Varlink IDL description now contains such comments, and
test-varlink-idl will process it forth and back aleady.
Lennart Poettering [Wed, 19 Jun 2024 11:54:35 +0000 (13:54 +0200)]
bootctl: normalize how we report no boot entries found
This normalizes how we report an empty list of boot entries in
ListBootEntries(). Our usual pattern is to return one item per method
call, but when there is none we usually return a NoSuchXYZ error. Do so
here too.
Before this we'd return a null item instead here, and only here.
This is a minor compat break, but given that this IPC interface is very
new and probably not used so far (we don't use it in our code at least,
and google doesn#t find any other use) I think this normalization is OK
at this point.
Lennart Poettering [Wed, 19 Jun 2024 08:46:27 +0000 (10:46 +0200)]
varlink: correctly format comments for enums too
I apparently never tested comments on enum values and hence they didn#t
work. Fix that.
Ludwig Nussel [Wed, 17 Apr 2024 09:30:03 +0000 (11:30 +0200)]
bootctl: add --random-seed=yes/no
Yu Watanabe [Thu, 20 Jun 2024 04:04:32 +0000 (13:04 +0900)]
Merge pull request #33420 from poettering/build-with-object
sd-json: add sd_json_build() flavour that implies we are building an object
Diego Viola [Thu, 20 Jun 2024 00:15:38 +0000 (21:15 -0300)]
man: fix typo in systemd-tmpfiles
Signed-off-by: Diego Viola <diego.viola@gmail.com>
Yu Watanabe [Thu, 20 Jun 2024 04:00:44 +0000 (13:00 +0900)]
Merge pull request #33419 from YHNdnzj/install-report-symlink
shared/install: several fixes for change reporting
Yu Watanabe [Wed, 19 Jun 2024 16:33:51 +0000 (01:33 +0900)]
core/namespace: ensure private tmpfs is mounted earlier
And drop spurious assertion.
Fortunately, the previous logic worked, as /run/systemd/unit-private-tmp
is ordered earlier than /tmp or /var/tmp. But, let's ensure the tmpfs
mounted earlier to make the logic clearer.
Follow-up for
0e551b04efb911d38b586cca1a6a462c87a2cb1b.
Yu Watanabe [Thu, 20 Jun 2024 03:59:06 +0000 (12:59 +0900)]
Merge pull request #33410 from poettering/sd-json-log-level-clean-up
sd-json: clean up SD_JSON_WARNING/SD_JSON_DEBUG definition and comments
Lennart Poettering [Wed, 19 Jun 2024 14:55:13 +0000 (16:55 +0200)]
update TODO
Lennart Poettering [Tue, 18 Jun 2024 15:08:49 +0000 (17:08 +0200)]
tree-wide: port over to new builder apis
Lennart Poettering [Tue, 18 Jun 2024 10:21:31 +0000 (12:21 +0200)]
sd-json: add sd_json_build() wrapper macro that implies SD_JSON_BUILD_OBJECT()
In 99% of uses of sd_json_build() we want to build an object as
outermost construct. Let's shorten this most common case a bit, by
adding sd_json_buildo() that implies this. This allows us to shorten
much of our code, all across the tree.
Lennart Poettering [Tue, 18 Jun 2024 09:46:41 +0000 (11:46 +0200)]
update TODO
Lennart Poettering [Tue, 18 Jun 2024 09:47:06 +0000 (11:47 +0200)]
sd-json: add comment clarifying that _SD_JSON_BUILD* enums are not to be used directly
Lennart Poettering [Tue, 18 Jun 2024 09:43:58 +0000 (11:43 +0200)]
sd-json.h: reword SD_JSON_WARNING/SD_JSON_DEBUG comments
Even though we don't export json_log() in the public API, let's
officially make the SD_JSON_WARNING/SD_JSON_DEBUG that control its
effect in the public API.
After all, for our own dispatcher functions they have a nice effect, and
they are trivially reimplemented in user code independently.
(We might eventually consider exporting json_log() as public API, but
this is quite involved, given its use of macros/inline functions and
iternal logging API).
This mostly just swaps around the bit flags and cleans up comments.
Mike Yuan [Wed, 19 Jun 2024 19:28:05 +0000 (21:28 +0200)]
test-install-root: introduce test case for #33411
Mike Yuan [Wed, 19 Jun 2024 16:45:14 +0000 (18:45 +0200)]
shared/install: correctly report changes in install_info_symlink_alias()
Follow-up for
b2751cf0394d36c24590b5f7b33e9f864b57ba0d
Also make the conditions consistent for install_info_symlink_wants().
Fixes #33411
Mike Yuan [Wed, 19 Jun 2024 16:59:15 +0000 (18:59 +0200)]
shared/install: propagate all errors in install_info_apply()
Currently, install_info_apply() only updates r if it's 0,
meaning that if one of the earlier install_info_symlink_alias/wants()
calls returns > 0, errors generated by later calls will be discarded.
Fix that.
Mike Yuan [Wed, 19 Jun 2024 16:44:26 +0000 (18:44 +0200)]
shared/install: drop unneeded initialization
Yu Watanabe [Wed, 19 Jun 2024 18:53:16 +0000 (03:53 +0900)]
Merge pull request #33034 from yuwata/update-kernel-headers
basic/linux: update kernel headers from v6.10-rc3
Antonio Alvarez Feijoo [Wed, 19 Jun 2024 12:41:55 +0000 (14:41 +0200)]
kernel-install: correct the place where it works in man and help text
Maximilian Wilhelm [Wed, 19 Jun 2024 11:41:39 +0000 (13:41 +0200)]
man/systemd.exec: list inaccessible files for ProtectKernelTunables
Xeonacid [Wed, 19 Jun 2024 09:56:57 +0000 (17:56 +0800)]
vmspawn: define QEMU_MACHINE_TYPE for riscv
Use ["virt"](https://www.qemu.org/docs/master/system/target-riscv.html#board-specific-documentation) as a commonly used generic platform on riscv.
Yu Watanabe [Wed, 19 Jun 2024 17:59:14 +0000 (02:59 +0900)]
Merge pull request #32868 from keszybz/more-whomification
Fix confusion between killer and prey
Yu Watanabe [Tue, 28 May 2024 02:21:35 +0000 (11:21 +0900)]
core: drop unnecessary auto_fs4.h inclusion
auto_fs4.h is a trivial wrapper of auto_fs.h, and it is already included
by auto_dev-ioctl.h.
Yu Watanabe [Fri, 31 May 2024 02:28:15 +0000 (11:28 +0900)]
missing: drop BCACHEFS_SUPER_MAGIC as it is now defined in linux/magic.h
Yu Watanabe [Tue, 28 May 2024 02:04:47 +0000 (11:04 +0900)]
basic/linux: update kernel headers from v6.10-rc3
This also
- merges basic/linux and shared/linux,
- moves BPF_JUMP_A() to basic/missing_bpf.h,
- copies from usrspace kernel headers directory generated by 'make headers',
rather than copying from kernel tree,
- copies const.h into our tree to reduce change in ethtool.h,
- copies auto_fs.h into our tree to reduce change in auto_dev-ioctl.h.
Yu Watanabe [Wed, 19 Jun 2024 15:03:09 +0000 (00:03 +0900)]
man: drop reference to _SOURCE_MONOTONIC_TIMESTAMP=
The timestamp is broken at least now. We should not advertise it.
Yu Watanabe [Wed, 19 Jun 2024 07:38:07 +0000 (16:38 +0900)]
Revert "logs-show: use _SOURCE_MONOTONIC_TIMESTAMP when _SOURCE_BOOTTIME_TIMESTAMP field exists"
This reverts commit
f5bdecba08fd3ee11bebc635ea9d17fd97bd33d7.
Some kmsg sent before sleep may be received by systemd-journald after
sleep. In that case, map_clock_usec() does not provide correct
timestamp.
So, _SOURCE_MONOTONIC_TIMESTAMP field is anyway unreliable.
Let's not use the field.
Yu Watanabe [Wed, 19 Jun 2024 15:07:36 +0000 (00:07 +0900)]
journal: drop mapping from CLOCK_BOOTTIME -> CLOCK_MONOTONIC
This partially reverts commit
a9357c2ce2d188b5b63592fd271f14d335867c23.
Some kmsg sent before sleep may be received by systemd-journald after
sleep. In that case, map_clock_usec() does not provide correct
timestamp.
So, we cannot provide reliable _SOURCE_MONOTONIC_TIMESTAMP.
Lennart Poettering [Wed, 19 Jun 2024 14:53:48 +0000 (16:53 +0200)]
update TODO
Zbigniew Jędrzejewski-Szmek [Fri, 17 May 2024 06:54:00 +0000 (08:54 +0200)]
various: move ptr indicator to return value
Zbigniew Jędrzejewski-Szmek [Fri, 17 May 2024 06:54:00 +0000 (08:54 +0200)]
various: move const ptr indicator to return value
Zbigniew Jędrzejewski-Szmek [Thu, 16 May 2024 14:45:04 +0000 (16:45 +0200)]
Fix confusion between killer and prey
"who" is the entity doing the killing, "whom" is the target.
Follow-up for
4ccde410a3fc141c9ddf285f24a22dfea99e0287.
Yu Watanabe [Wed, 19 Jun 2024 06:17:26 +0000 (15:17 +0900)]
varlink-idl: allow unbalanced quote and trailing backslash in comment
Fixes #33381.
Fixes OSS-FUZZ#69730.
Follow-up for
fbb69c0306d434153ca85b227c7d42b9c92872e4.
Antonio Alvarez Feijoo [Mon, 27 May 2024 15:17:52 +0000 (17:17 +0200)]
udev-spawn: fix typo and simplify code
Follow-up for
11706971e8b6aa289af56454330fffd87f5d5a78
pyfisch [Tue, 18 Jun 2024 20:22:15 +0000 (22:22 +0200)]
Use consistent spelling of systemd.condition_first_boot argument
Mike Yuan [Tue, 18 Jun 2024 16:37:44 +0000 (18:37 +0200)]
man/systemd.journal-fields: document _SOURCE_{MONOTONIC,BOOTTIME}_TIMESTAMP
Follow-up for
a9357c2ce2d188b5b63592fd271f14d335867c23
Yu Watanabe [Wed, 19 Jun 2024 05:44:01 +0000 (14:44 +0900)]
Merge pull request #33391 from YHNdnzj/runtime-dir-cleanup
login/user-runtime-dir: free ignored sd_bus_error, avoid triggering assertion
Mike Yuan [Tue, 18 Jun 2024 14:32:14 +0000 (16:32 +0200)]
login/user-runtime-dir: free ignored sd_bus_error, avoid triggering assertion
Fixes #33388
Mike Yuan [Tue, 18 Jun 2024 14:31:12 +0000 (16:31 +0200)]
login/user-runtime-dir: use STRLEN where appropriate
Also, add missing trailing / to paths used in STRLEN/sizeof.
Yu Watanabe [Tue, 18 Jun 2024 09:12:39 +0000 (18:12 +0900)]
strv: replace always-true condition with assertion
Follow-up for
aca093018c5d2cd8a63129cab67941fe1b8fd850.
Fixes CID#
1547105.
Luca Boccassi [Tue, 18 Jun 2024 15:27:36 +0000 (16:27 +0100)]
Merge pull request #33386 from yuwata/journal-timestamp
journal: fix _SOURCE_MONOTONIC_TIMESTAMP field
Antonio Alvarez Feijoo [Tue, 18 Jun 2024 12:07:50 +0000 (14:07 +0200)]
repart: fix memory leak
Luca Boccassi [Tue, 18 Jun 2024 12:35:32 +0000 (13:35 +0100)]
mkosi: restrict noble-backports to noble builds
Follow-up for
c01cb8cbff8512b65b7903b55f78c8d12661b8d7
Luca Boccassi [Tue, 18 Jun 2024 14:44:32 +0000 (15:44 +0100)]
Merge pull request #33383 from poettering/tmpfiles-limit-purge
tmpfiles: make --purge more restrictive, and various other tweaks
Luca Boccassi [Fri, 7 Jun 2024 20:39:45 +0000 (21:39 +0100)]
install: allow removing symlinks even for units that are gone
If a symlink is leftover, still allow cleaning it up via 'disable'. This
happens when a unit is stopped and removed, but not disabled, and a reload
has already happened. At that point, cleaning up the old symlinks becomes
impossible through the APIs, and needs to be done manually. Always allow
cleaning up symlinks, if they exist, by only erroring out if there is an
OOM.
Follow-up for
f31f10a6207efc9ae9e0b1f73975b5b610914017