Daan De Meyer
9ac8450e7f
basic: Add debug logging for pidref_set_pid()
2024-05-29 21:04:13 +02:00
Daan De Meyer
330ecca853
cgroup-util: Add debug logging for cg_kill_recursive()
2024-05-29 21:04:09 +02:00
Daan De Meyer
c15747e4ab
Merge pull request #33062 from DaanDeMeyer/virtio-scsi
...
mkosi: Switch back to cloud/KVM kernel packages
2024-05-29 16:27:07 +02:00
Daan De Meyer
556659adfe
mkosi: Switch back to cloud/KVM kernel packages
...
Now that we don't need megasas2 anymore, let's switch back to the
KVM/cloud kernel images to save on image size, build times and boot
times.
2024-05-29 15:24:03 +02:00
Daan De Meyer
eb47645e21
test: Use virtio-scsi for keydev drive
...
Otherwise qemu defaults to ide for which the module isn't always
available (e.g. it's missing in the debian linux cloud images).
2024-05-29 15:24:03 +02:00
Daan De Meyer
ac09c21d45
TEST-64-UDEV-STORAGE: Replace megasas2 controller with virtio scsi controller
...
The virtio-scsi driver is available in the KVM/cloud kernel
packages provided by distributions whereas the megasas2 driver is
not. Let's switch to virtio-scsi so we can switch back to the KVM/cloud
kernel packages.
2024-05-29 15:24:03 +02:00
Daan De Meyer
aa6178058b
Merge pull request #33065 from DaanDeMeyer/nspawn
...
test: Run tests that don't need a vm in systemd-nspawn
2024-05-29 15:23:48 +02:00
Daan De Meyer
d12fedd25e
mkosi: Run integration tests as root
...
This allows running integration tests that support it in nspawn
instead of qemu. This both gives extra coverage and speeds things up.
2024-05-29 14:10:50 +02:00
Daan De Meyer
1e5a1bbe02
test: Run tests that don't need a vm in systemd-nspawn
...
If we're not running the test as root, stick to using a virtual
machine, as mkosi can't do rootless nspawn yet.
2024-05-29 14:10:50 +02:00
Daan De Meyer
14aea4a9f5
mkosi: Disable iscsi service and socket
...
We'll always start these on demand in integration tests that need
them. No need to start them by default.
2024-05-29 14:10:50 +02:00
Daan De Meyer
3c367df7c6
mkosi: Switch from btrfs to ext4
...
Mounting multiple btrfs filesystems with the same fsid only works
properly from kernel 6.7 onwards. Let's switch to ext4 for now which
does support this.
2024-05-29 14:10:50 +02:00
Daan De Meyer
09466b2a0e
mkosi: update to latest
2024-05-29 14:10:47 +02:00
Daan De Meyer
6448993a4b
mkosi: Set EXTRA_CFLAGS on opensuse
...
The opensuse spec doesn't unconditionally set FORTIFY_SOURCE=2 anymore
so let's drop our workaround.
2024-05-29 11:26:06 +02:00
Daan De Meyer
a635b33214
Merge pull request #32562 from Werkov/test-cgroup-opensuse
...
Revert "TEST-19-CGROUP: Skip on opensuse"
2024-05-29 11:01:00 +02:00
Luca Boccassi
8e495bf0b7
bpf: add helper to translate kernel error codes from libbpf
...
libbpf returns error codes from the kernel unmodified, and we don't understand
them so non-fatal ones are handled as hard errors.
Add a translation helper, and start by translating 524 to EOPNOTSUPP, which is
returned when nsresourced tries to use LSM BPF hooks that are not
implemented on a given arch (in this case, arm64 is misssing trampolines).
Fixes https://github.com/systemd/systemd/issues/32170
2024-05-29 08:29:47 +02:00
Yu Watanabe
45af01d311
test-network: update comment about status of kernel regression
2024-05-29 09:07:48 +09:00
Luca Boccassi
cbac9a3835
Merge pull request #33066 from YHNdnzj/logind-linger
...
logind-user: check linger file in user_wants_service_manager too
2024-05-28 22:41:57 +02:00
Christian Göttsche
a424e4af6d
tmpfiles: improve warning message and use O_NOCTTY
...
Mention in the warning message for a failed open on a to be removed file
why systemd-tmpfiles tried to open it.
Also open the file with the O_NOCTTY flag, since it should never become
the controlling terminal.
2024-05-28 21:58:30 +02:00
Mike Yuan
e417415996
logind-user: check linger file in user_wants_service_manager too
...
Follow-up for 5099a50d43
Fixes #33005
2024-05-29 00:50:07 +08:00
Mike Yuan
194dba5ef5
logind-user: add missing assertion for user_check_linger_file
...
Also make the function take const User*
2024-05-29 00:50:07 +08:00
Yu Watanabe
acddb3cb79
test-network: tun/tap fd may be owned by tentative worker processes
...
PID1 may invoke a helper process, e.g. sd-close, during the test.
So, processes other than networkd and PID1 may be shown.
```
testtap99: tap pi multi_queue vnet_hdr persist filter
Attached to processes:systemd-network(2852)(sd-close)(2863)systemd(1)
```
Closes #33055 .
2024-05-28 16:39:51 +02:00
Luca Boccassi
aa6fe772e1
Merge pull request #33057 from poettering/partscan-no-part
...
blockdev-util: for partition block devices partition scanning is always off
2024-05-28 16:39:15 +02:00
Zbigniew Jędrzejewski-Szmek
b95914f4b0
man: capsule support was added in v256
...
The version info added directly to --capsule. If we add the
same switch in other places in the future, we will have to move
this.
Closes https://github.com/systemd/systemd/issues/33048 .
2024-05-28 16:30:54 +02:00
Luca Boccassi
78247be91d
Merge pull request #33063 from keszybz/wiki-links
...
Update wiki links
2024-05-28 16:21:45 +02:00
Zbigniew Jędrzejewski-Szmek
95a248c56f
Merge pull request #33008 from fbuihuu/optionally-link-ssh-dropins
...
Optionally link ssh dropins
2024-05-28 16:02:40 +02:00
Yu Watanabe
47e881ee65
test: lock device when sfdisk or mkfs
...
Or, trigger devices after the command incase the device is dm or md.
Fixes #33056 .
2024-05-28 15:43:55 +02:00
Mike Yuan
1e1df05296
socket-util: use GREEDY_REALLOC_APPEND where appropriate
...
Also, previously GREEDY_REALLOC was used improperly,
causing the fds_array to be leaked when realloc() fails.
2024-05-28 15:42:14 +02:00
Lennart Poettering
7c1a1aa42c
machined: downgrade warning if we cannot drop ref to systemd unit if disconnected from bus
...
if machined exits while a machine is still running, we'll issue the
UnrefUnit() call on the unit. This quite likely will fail if during
shutdown the bus connection is already down. But that's no reason to
warn at all, since the ref count will implicitly be dropped if our side
disappears from the bus. Hence, downgrade to LOG_DEBUG in case of
connection problems.
2024-05-28 15:05:11 +02:00
Luca Boccassi
c7eb3ae308
Merge pull request #33052 from yuwata/missing-loop
...
Fixlets for missing_loop.h
2024-05-28 15:01:00 +02:00
Zbigniew Jędrzejewski-Szmek
80cdf708df
README: update link for backports
2024-05-28 14:48:56 +02:00
Zbigniew Jędrzejewski-Szmek
75ced6d5ee
various: update links to usr-merge
2024-05-28 14:48:56 +02:00
Zbigniew Jędrzejewski-Szmek
bdc965253c
docs: drop link to obsolete multiseat page
...
We link to the man page which replaced this historical document right above,
so just drop the whole paragraph.
2024-05-28 14:48:56 +02:00
Zbigniew Jędrzejewski-Szmek
a37454bd90
man: update links to "API File Systems"
2024-05-28 14:48:56 +02:00
Zbigniew Jędrzejewski-Szmek
d5c17aceb3
various: update links to more wiki pages
2024-05-28 14:48:53 +02:00
Zbigniew Jędrzejewski-Szmek
5507480cf4
man: update links to "Inhibitor Locks"
2024-05-28 14:48:53 +02:00
Zbigniew Jędrzejewski-Szmek
b346d72c79
man: update links to "Compatibility with SysV"
2024-05-28 14:46:44 +02:00
Zbigniew Jędrzejewski-Szmek
f81af0b082
man: update links to "New Control Group Interfaces"
2024-05-28 14:46:44 +02:00
Zbigniew Jędrzejewski-Szmek
03d35b5d18
man: update links to catalog docs
2024-05-28 14:46:44 +02:00
Mathias Lang
60d285a2b4
docs/CONTRIBUTING.md: Fix links in CONTRIBUTING
...
Get them to point to the rendered version, instead of
letting Github thinks they are absolute links in the
repository. The rendered version is much more user-friendly.
2024-05-28 12:53:18 +02:00
Lennart Poettering
3455bcb0df
test: add superficial test for partscan test
2024-05-28 11:08:06 +02:00
Lennart Poettering
fa65917623
blockdev-util: partition block devices never have partition scanning enabled
2024-05-28 11:08:06 +02:00
Yu Watanabe
36c5035f2a
test: suppress logs generated by journal tests
...
Note, journal_file_dump() is only used by tests.
Closes #33035 .
2024-05-28 10:38:53 +02:00
Yu Watanabe
61fdb5b214
test: wait for the kernel finishes to attach backing file to loop device
...
Fixes #32680 .
2024-05-28 08:49:47 +02:00
Yu Watanabe
eb6d3a5917
missing_loop.h: fix LOOP_SET_STATUS_SETTABLE_FLAGS
...
See https://github.com/torvalds/linux/blob/v6.10-rc1/include/uapi/linux/loop.h
Fixes a bug in b3fe33ff52
.
2024-05-28 12:27:04 +09:00
Yu Watanabe
fb45ced368
missing_loop: fix potential compile-time assertion
...
Fixes a bug introduced by 4d6437d33c
.
2024-05-28 12:25:53 +09:00
Nicholas Little
f4434c61b9
hwdb: Lenovo IdeaPad Z500 Touchpad Toggle ( #33039 )
...
Map scancode f3 to KEY_F21.
2024-05-28 09:56:53 +09:00
Daniel Winzen
983028cdc4
cryptsetup: mention correct action in log message
2024-05-27 17:05:23 +01:00
Daan De Meyer
096f923f7a
meson: Run genkey command with --force
...
Sometimes meson decides to rerun the command even if the files already
exist. Let's run with --force so we don't fail if that's the case.
2024-05-27 17:48:55 +02:00
Franck Bui
50d80ec5ac
meson: don't put a symlink pointing to '20-systemd-userdb.conf' in /etc in all cases
...
It's only needed on distros where sshd doesn't support drop-ins in /usr, which
is not the case on SUSE.
2024-05-27 17:20:55 +02:00
Franck Bui
de0f11d790
meson: don't put a symlink pointing to '20-systemd-ssh-proxy.conf' in /etc in all cases
...
On distros like SUSE where ssh config dropins in /usr are supported, there's no
need for a symlink in /etc/ssh/ssh_config.d/ that points to the dropin
installed somewhere in /usr (that is not reachable by ssh).
2024-05-27 17:20:26 +02:00