]> git.ipfire.org Git - thirdparty/systemd.git/log
thirdparty/systemd.git
3 years agoMerge pull request #18990 from yuwata/network-dhcpv6-use-domains
Zbigniew Jędrzejewski-Szmek [Wed, 31 Mar 2021 08:38:37 +0000 (10:38 +0200)] 
Merge pull request #18990 from yuwata/network-dhcpv6-use-domains

network: also introduce UseDomains= for [DHCPv6] section

3 years agoMerge pull request #19101 from poettering/mount-util-fixes
Lennart Poettering [Wed, 31 Mar 2021 08:37:49 +0000 (10:37 +0200)] 
Merge pull request #19101 from poettering/mount-util-fixes

Make recursive bind remounting handle failures gracefully

3 years agodissect: make the --image= switch of our various tools honour Verity data
Lennart Poettering [Tue, 23 Mar 2021 13:07:53 +0000 (14:07 +0100)] 
dissect: make the --image= switch of our various tools honour Verity data

This adds simple Verity support to
mount_image_privately_interactively(): we dicover the verity metadata
and use it.

3 years agoMerge pull request #18989 from yuwata/ordered-set-put-strdup
Zbigniew Jędrzejewski-Szmek [Wed, 31 Mar 2021 08:36:03 +0000 (10:36 +0200)] 
Merge pull request #18989 from yuwata/ordered-set-put-strdup

ordered-set: make ordered_set_put_strdup() allocate OrderedSet object

3 years agorepart: make sure CopyFiles= works with a / suffixed path
Lennart Poettering [Tue, 23 Mar 2021 13:05:56 +0000 (14:05 +0100)] 
repart: make sure CopyFiles= works with a / suffixed path

If we define a partition with CopyFiles=/efi/ this should just work.
However it previously didn't because basename() would return the
trailing slash.

Let's fix this by moving things to path_extract_{directory|filename}()

3 years agomachine-id-setup: support --image= mode
Lennart Poettering [Fri, 19 Mar 2021 17:34:06 +0000 (18:34 +0100)] 
machine-id-setup: support --image= mode

3 years agoMerge pull request #18971 from poettering/sysusers-creds
Lennart Poettering [Wed, 31 Mar 2021 08:35:17 +0000 (10:35 +0200)] 
Merge pull request #18971 from poettering/sysusers-creds

let's read LoadCredentials=/SetCredentials= style cred in sysusers/firstboot and when asking for passwords

3 years agoMerge pull request #18982 from keszybz/test-nss-users
Zbigniew Jędrzejewski-Szmek [Wed, 31 Mar 2021 08:32:09 +0000 (10:32 +0200)] 
Merge pull request #18982 from keszybz/test-nss-users

Add a new test for user/group resolution in nss modules

3 years agoMerge pull request #18958 from poettering/dissect-no-root
Zbigniew Jędrzejewski-Szmek [Wed, 31 Mar 2021 08:31:32 +0000 (10:31 +0200)] 
Merge pull request #18958 from poettering/dissect-no-root

dissect-image: support images without rootfs but with /usr partition + support simple partition versioning via strverscmp() on part label

3 years agocompress: support streaming lz4 without full input mmap
Luca Boccassi [Tue, 9 Mar 2021 14:57:44 +0000 (14:57 +0000)] 
compress: support streaming lz4 without full input mmap

The advantage of stream compression is keeping a low memory profile,
but the lz4 stream compressor usage mmaps the whole file in memory.

Change it to read bits by bits, like the other stream compression
helpers.

3 years agoMerge pull request #18886 from anitazha/shutdownconsole
Zbigniew Jędrzejewski-Szmek [Wed, 31 Mar 2021 08:28:26 +0000 (10:28 +0200)] 
Merge pull request #18886 from anitazha/shutdownconsole

logging shutdown to /dev/console

3 years agoMerge pull request #18850 from yuwata/sd-device-monitor-cleanups
Zbigniew Jędrzejewski-Szmek [Wed, 31 Mar 2021 08:27:06 +0000 (10:27 +0200)] 
Merge pull request #18850 from yuwata/sd-device-monitor-cleanups

sd-device-monitor: trivial cleanups

3 years agoIntroduce ExitType
Henri Chain [Wed, 24 Feb 2021 15:13:21 +0000 (16:13 +0100)] 
Introduce ExitType

3 years agoMerge pull request #18777 from yuwata/network-set-ifname-to-engines
Zbigniew Jędrzejewski-Szmek [Wed, 31 Mar 2021 08:25:23 +0000 (10:25 +0200)] 
Merge pull request #18777 from yuwata/network-set-ifname-to-engines

network: set ifname to dhcp4 client or friends

3 years agoMerge pull request #19157 from keszybz/read-medium-sized-virtual-file v248 v248-2
Lennart Poettering [Tue, 30 Mar 2021 20:59:02 +0000 (22:59 +0200)] 
Merge pull request #19157 from keszybz/read-medium-sized-virtual-file

basic/fileio: fix reading of not-too-small virtual files

3 years agoNEWS: prep release date
Lennart Poettering [Tue, 30 Mar 2021 20:00:11 +0000 (22:00 +0200)] 
NEWS: prep release date

3 years agotest-fileio: test for read_full_virtual_file() 19157/head
Zbigniew Jędrzejewski-Szmek [Tue, 30 Mar 2021 19:58:59 +0000 (21:58 +0200)] 
test-fileio: test for read_full_virtual_file()

It was already called through other places, but indirectly.
Let's add some direct invocations.

3 years agobasic/fileio: fix reading of not-too-small virtual files
Zbigniew Jędrzejewski-Szmek [Tue, 30 Mar 2021 15:29:44 +0000 (17:29 +0200)] 
basic/fileio: fix reading of not-too-small virtual files

This code is trying to do two things: when reading a file with working
st.st_size, detect when the file size changes between the fstat() and our
allocation of the buffer based on the returned size, and the subsequent read().
When reading a file without st.st_size, read up to READ_FULL_BYTES_MAX.

But this second scenario was partially broken: we'd start with size = 4095, and
double the size up to three times, i.e. up to 32767. But we want to read up to
READ_FULL_BYTES_MAX.

So let's listentangle the two cases a bit: if a file returns non-zero st._size,
proceed as before. But if we don't know the size, let's immediately allocate
the buffer of maximum size of READ_FULL_BYTES_MAX. I think that allocating 4MB
and 1MB is going to take pretty much the same time as long as the memory is not
written to, so by allocating 1MB, 2MB, and 4MB, we wouldn't really be saving
anything internally, but wasting time on repeated reads, if the file is long
enough.

Also, don't do the seek if we know we're going to return an error immediately
after.

This should fix reading of any files in /proc, which all have size == 0. In
particular, various files read by coredump might be larger than 32767.

What about /sys? The file there return a fake value, usually 4096. So we'll
allocate a small buffer and read that.

3 years agoMerge pull request #19149 from anitazha/oomdlogging
Luca Boccassi [Tue, 30 Mar 2021 18:01:01 +0000 (19:01 +0100)] 
Merge pull request #19149 from anitazha/oomdlogging

oomd: make it more clear when a kill happens

3 years agoMerge pull request #19155 from keszybz/hwdb-contrib-v248
Luca Boccassi [Tue, 30 Mar 2021 17:13:16 +0000 (18:13 +0100)] 
Merge pull request #19155 from keszybz/hwdb-contrib-v248

hwdb update + contrib list

3 years agooomd: fix iteration over candidates to kill 19149/head
Zbigniew Jędrzejewski-Szmek [Tue, 30 Mar 2021 12:45:22 +0000 (14:45 +0200)] 
oomd: fix iteration over candidates to kill

3 years agooomd: make it more clear when a kill happens
Anita Zhang [Fri, 26 Mar 2021 10:01:38 +0000 (03:01 -0700)] 
oomd: make it more clear when a kill happens

Improve the logging to only print if systemd-oomd killed something. And
also print which cgroup was targeted.
Demote general swap above/pressure above messages to debug.

[zjs: fix some issuelets found in review]

3 years agoMerge pull request #19131 from keszybz/resolvectl-warn-less
Lennart Poettering [Tue, 30 Mar 2021 11:29:55 +0000 (13:29 +0200)] 
Merge pull request #19131 from keszybz/resolvectl-warn-less

Suppress warnings in resolvectl about --type=

3 years agoselinux: do not crash if policy becomes unavailable after reload
Zbigniew Jędrzejewski-Szmek [Tue, 30 Mar 2021 08:01:12 +0000 (10:01 +0200)] 
selinux: do not crash if policy becomes unavailable after reload

https://bugzilla.redhat.com/show_bug.cgi?id=1944171
This was in F33, systemd-246.13, but the logic in the code didn't change.

Thread 1 (Thread 0x7fb5f0341b80 (LWP 1974)):
№0  selabel_lookup_common (rec=0x0, translating=0, key=0x55f616ac4750 "/run/user/1000/systemd/units/invocation:systemd-tmpfiles-clean.service", type=40960) at label.c:167

'rec' is the handle that we passed.

№1  0x00007fb5f13ae87f in selabel_lookup_raw (rec=<optimized out>, con=con@entry=0x7fffef307380, key=key@entry=0x55f616ac4750 "/run/user/1000/systemd/units/invocation:systemd-tmpfiles-clean.service", type=type@entry=40960) at label.c:256
        lr = <optimized out>

'rec' is passed through as is to selabel_lookup_common().

№2  0x00007fb5f1561b2d in selinux_create_file_prepare_abspath (abspath=0x55f616ac4750 "/run/user/1000/systemd/units/invocation:systemd-tmpfiles-clean.service", mode=40960) at ../src/basic/selinux-util.c:368
        filecon = 0x0
        r = <optimized out>
        __PRETTY_FUNCTION__ = "selinux_create_file_prepare_abspath"
        __func__ = "selinux_create_file_prepare_abspath"

№3  0x00007fb5f1561ec3 in mac_selinux_create_file_prepare (path=<optimized out>, mode=40960) at ../src/basic/selinux-util.c:431
        r = 0
        abspath = 0x55f616ac4750 "/run/user/1000/systemd/units/invocation:systemd-tmpfiles-clean.service"
        __PRETTY_FUNCTION__ = "mac_selinux_create_file_prepare"

We checked label_hnd != NULL, but then we apparently called
avc_netlink_check_nb(), which reset label_hnd. Yay for global state!

№4  0x00007fb5f1549950 in symlink_atomic_label (from=0x55f6169d8b50 "69a8dcf7a7ac46b29306f2fddbed3edc", to=0x55f616ab8380 "/run/user/1000/systemd/units/invocation:systemd-tmpfiles-clean.service") at ../src/basic/label.c:55
        r = <optimized out>
        __PRETTY_FUNCTION__ = "symlink_atomic_label"

In the logs:

Mar 29 14:48:44 fedorapad.home systemd[1974]: selinux: avc:  received policyload notice (seqno=2)
Mar 29 14:48:44 fedorapad.home systemd[1974]: Failed to initialize SELinux labeling handle: No such file or directory
Mar 29 14:48:44 fedorapad.home systemd[1974]: selinux: avc:  received policyload notice (seqno=3)
Mar 29 14:48:44 fedorapad.home systemd[1974]: selinux: avc:  received setenforce notice (enforcing=0)

3 years agohwdb: update fingerprint autosuspend rules 19155/head
Zbigniew Jędrzejewski-Szmek [Tue, 30 Mar 2021 11:17:42 +0000 (13:17 +0200)] 
hwdb: update fingerprint autosuspend rules

3 years agohwdb: update for v248
Zbigniew Jędrzejewski-Szmek [Tue, 30 Mar 2021 11:16:30 +0000 (13:16 +0200)] 
hwdb: update for v248

As usual, it seems to be additions and updates, no major removals.

3 years agoNEWS: update contributor list for v248 final
Zbigniew Jędrzejewski-Szmek [Tue, 30 Mar 2021 10:49:41 +0000 (12:49 +0200)] 
NEWS: update contributor list for v248 final

3 years agogit-contrib: use non-breaking spaces in names
Zbigniew Jędrzejewski-Szmek [Tue, 30 Mar 2021 10:45:14 +0000 (12:45 +0200)] 
git-contrib: use non-breaking spaces in names

Some people have initials or abbreviated parts in the name and looks strange
when a line break occurs in the middle. Let's keep each name in one line.

3 years agomailmap: two more names
Zbigniew Jędrzejewski-Szmek [Tue, 30 Mar 2021 10:43:23 +0000 (12:43 +0200)] 
mailmap: two more names

3 years agoRevert "fix wrong statement JOURNAL_FILE_FORMAT.md doc"
Luca Boccassi [Mon, 29 Mar 2021 21:31:21 +0000 (22:31 +0100)] 
Revert "fix wrong statement JOURNAL_FILE_FORMAT.md doc"

This reverts commit 119063d2b149667a91e0e08e4bdf82a0eb6a7efd.

3 years agofix wrong statement JOURNAL_FILE_FORMAT.md doc
Yangyang Shen [Mon, 29 Mar 2021 12:29:54 +0000 (20:29 +0800)] 
fix wrong statement JOURNAL_FILE_FORMAT.md doc

3 years agounits: make locale directory writable for systemd-localed
Christian Hesse [Sun, 28 Mar 2021 11:00:49 +0000 (13:00 +0200)] 
units: make locale directory writable for systemd-localed

With 8f20232fcb52dbe6255f3df6101fc057af90bcfa systemd-localed supports
generating locales when required. This fails if the locale directory is
read-only, so make it writable.

Closes #19138

3 years agosd-bus: set retain attribute on BUS_ERROR_MAP_ELF_REGISTER
Fangrui Song [Mon, 29 Mar 2021 06:35:06 +0000 (23:35 -0700)] 
sd-bus: set retain attribute on BUS_ERROR_MAP_ELF_REGISTER

LLD 13 and GNU ld 2.37 support -z start-stop-gc which allows garbage
collection of C identifier name sections despite the __start_/__stop_
references.  Simply set the retain attribute so that GCC 11 (if
configure-time binutils is 2.36 or newer)/Clang 13 will set the
SHF_GNU_RETAIN section attribute to prevent garbage collection.

Without the patch, there are linker errors like the following with -z
start-stop-gc.

```
ld: error: undefined symbol: __start_SYSTEMD_BUS_ERROR_MAP
>>> referenced by bus-error.c:93 (../src/libsystemd/sd-bus/bus-error.c:93)
>>>               sd-bus_bus-error.c.o:(bus_error_name_to_errno) in archive src/libsystemd/libsystemd_static.a
```

3 years agoMerge pull request #19116 from keszybz/readvirtualfile-opt
Zbigniew Jędrzejewski-Szmek [Mon, 29 Mar 2021 08:51:32 +0000 (10:51 +0200)] 
Merge pull request #19116 from keszybz/readvirtualfile-opt

Optimize read_full_virtual_file() and another coverity issue

3 years agoresolvectl: suppress warning about --type for names with a dot 19131/head
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 13:14:38 +0000 (14:14 +0100)] 
resolvectl: suppress warning about --type for names with a dot

People don't generally type the trailing dot by mistake, so let's treat this as
indication that they want to resolve this particular hostname.

3 years agoMerge pull request #19129 from keszybz/test-random-range
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 19:22:29 +0000 (20:22 +0100)] 
Merge pull request #19129 from keszybz/test-random-range

Test random_u64_range()

3 years agotest-dhcp6-client: add one more assert on memory mapping
Luca Boccassi [Fri, 26 Mar 2021 12:03:11 +0000 (12:03 +0000)] 
test-dhcp6-client: add one more assert on memory mapping

Same as 7489d0640a4864d4b47fd8fda77f8eb7cf2e3fe8, one more case
that was missed.

Coverity CID #1394277

3 years agoMerge pull request #19125 from keszybz/cat-config
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 19:16:09 +0000 (20:16 +0100)] 
Merge pull request #19125 from keszybz/cat-config

config files: recommend systemd-analyze cat-config

3 years agoresolved: tweak how we signal authoritative answers
Lennart Poettering [Wed, 24 Feb 2021 16:04:55 +0000 (17:04 +0100)] 
resolved: tweak how we signal authoritative answers

let's make sure we set the "aa" bit in the stub only if we answer with
fully authoritative data. For this ensure:

1. Either all data is synthetic, including all CNAME/DNAME redirects

2. Or all data comes from the local trust anchor or the local zones
   (i.e. not the network or the cache)

Follow-up for 4ad017cda57b04b9d65e7da962806cfcc50b5f0c

3 years agotests: drop calls to unsetenv SYSTEMD_MEMPOOL 19116/head
Zbigniew Jędrzejewski-Szmek [Thu, 25 Mar 2021 11:19:18 +0000 (12:19 +0100)] 
tests: drop calls to unsetenv SYSTEMD_MEMPOOL

Coverity was complaining that we don't check the return value, which we stopped
doing in 772e0a76f34914f6f81205e912e4744c6b23f704.

But it seems that we don't want those calls at all. The test was originally
added with the call in a6ee01caf3409ba9820e8824b9262fbac31a9f77, but I don't
see why we should override this. If the user wants to execute the test with
mempool disabled, we shouldn't ignore that.

Coverity CID#1444464, CID#1444466.

3 years agobasic/fileio: use malloc_usable_size() to use all allocated memory
Zbigniew Jędrzejewski-Szmek [Thu, 25 Mar 2021 12:50:13 +0000 (13:50 +0100)] 
basic/fileio: use malloc_usable_size() to use all allocated memory

3 years agobasic/fileio: optimize buffer sizes in read_full_virtual_file()
Zbigniew Jędrzejewski-Szmek [Thu, 25 Mar 2021 11:10:32 +0000 (12:10 +0100)] 
basic/fileio: optimize buffer sizes in read_full_virtual_file()

We'd proceed rather inefficiently: the initial buffer size was LINE_MAX/2,
i.e. only 1k. We can read 4k at the same cost.

Also, we'd try to allocate 1025, 2049, 4097 bytes, i.e. always one higher than
the power-of-two size. Effectively the allocation would be bigger, and we'd
waste the additional space. So let's allocate aligned to the power-of-two size.
size=4095, 8191, 16383, so we allocate 4k, 8k, 16k.

3 years agobasic/fileio: simplify calculation of buffer size in read_full_virtual_file()
Zbigniew Jędrzejewski-Szmek [Thu, 25 Mar 2021 10:58:35 +0000 (11:58 +0100)] 
basic/fileio: simplify calculation of buffer size in read_full_virtual_file()

We'd first assign a value up to SSIZE_MAX, and then immediately check if we
have a value bigger than READ_FULL_BYTES_MAX. This wasn't exactly wrong, but a
bit roundabout. Let's immediately assign the value from the appropriate range
or error out.

Coverity CID#1450973.

3 years agouse the right member to define property
David Tardon [Fri, 26 Mar 2021 11:34:28 +0000 (12:34 +0100)] 
use the right member to define property

3 years agotest-random-util: add stochastic test for random_u64_range() 19129/head
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 11:42:52 +0000 (12:42 +0100)] 
test-random-util: add stochastic test for random_u64_range()

3 years agotest-random-util: modernization
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 11:42:22 +0000 (12:42 +0100)] 
test-random-util: modernization

3 years agoresolvectl: do not warn about single hostnames for names we synthesize
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 13:09:28 +0000 (14:09 +0100)] 
resolvectl: do not warn about single hostnames for names we synthesize

https://github.com/systemd/systemd/pull/17535#discussion_r534005801

3 years agoresolved: split out function to determine the local llmnr hostname
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 13:08:03 +0000 (14:08 +0100)] 
resolved: split out function to determine the local llmnr hostname

3 years agoresolvectl: reword note about "raw record types"
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 12:25:04 +0000 (13:25 +0100)] 
resolvectl: reword note about "raw record types"

As noted in https://github.com/systemd/systemd/pull/17535#discussion_r534129256,
"raw" is misleading in this context. Let's use a more descriptive term.

3 years agobasic/log: fix log_trace()
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 12:07:55 +0000 (13:07 +0100)] 
basic/log: fix log_trace()

log_trace() was always on. It's supposed to be opt-in.

3 years agoupdate TODO 18971/head
Lennart Poettering [Thu, 11 Mar 2021 16:48:59 +0000 (17:48 +0100)] 
update TODO

3 years agoask-password: when querying for a password, try to read from credential store first
Lennart Poettering [Thu, 11 Mar 2021 19:17:10 +0000 (20:17 +0100)] 
ask-password: when querying for a password, try to read from credential store first

This adds generic support for the SetCredential=/LoadCredential= logic
to our password querying infrastructure: if a password is requested by a
program that has a credential store configured via
$CREDENTIALS_DIRECTORY we'll look in it for a password.

The "systemd-ask-password" tool is updated with an option to specify the
credential to look for.

3 years agoman: document in nspawn docs how to make use of the new firstboot/sysusers features
Lennart Poettering [Thu, 11 Mar 2021 16:49:18 +0000 (17:49 +0100)] 
man: document in nspawn docs how to make use of the new firstboot/sysusers features

3 years agofirstboot: allow provisioning of firstboot params via creds too
Lennart Poettering [Thu, 11 Mar 2021 10:47:57 +0000 (11:47 +0100)] 
firstboot: allow provisioning of firstboot params via creds too

3 years agofirstboot: slightly reorder variable declaration
Lennart Poettering [Thu, 11 Mar 2021 10:43:17 +0000 (11:43 +0100)] 
firstboot: slightly reorder variable declaration

Let's put the locale fields which we process together next to each
other.

3 years agounits: make sure to query console settings before we apply them
Lennart Poettering [Thu, 11 Mar 2021 10:47:15 +0000 (11:47 +0100)] 
units: make sure to query console settings before we apply them

3 years agosysusers: read passwords from the credentials logic
Lennart Poettering [Thu, 11 Mar 2021 09:34:20 +0000 (10:34 +0100)] 
sysusers: read passwords from the credentials logic

Let's make use of our own credentials infrastructure in our tools: let's
hook up systemd-sysusers with the credentials logic, so that the root
password can be provisioned this way. This is really useful when working
with stateless systems, in particular nspawn's "--volatile=yes" switch,
as this works now:

 # systemd-nspawn -i foo.raw --volatile=yes --set-credential=passwd.plaintext-password:foo

For the first time we have a nice, non-interactive way to provision the
root password for a fully stateless system from the container manager.
Yay!

3 years agocore: when inheriting credentials from manager to service, make missing creds graceful
Lennart Poettering [Thu, 11 Mar 2021 09:04:05 +0000 (10:04 +0100)] 
core: when inheriting credentials from manager to service, make missing creds graceful

Let's be a bit less strict when setting up credentials: if the service
manager didn't receieve a cred, and we shall propagate it down via
LoadCredentials= don't fail. Fail on all other errors though, as before,
and on explicitly listed paths.

3 years agocore: allow omitting second part of LoadCredentials= argument
Lennart Poettering [Thu, 11 Mar 2021 09:02:46 +0000 (10:02 +0100)] 
core: allow omitting second part of LoadCredentials= argument

This allows "LoadCredentials=foo" to be used as shortcut for
"LoadCredentials=foo:foo", i.e. it's a very short way to inherit a
credential under its original name from the service manager into a
service.

3 years agoutil: add creds-util.[ch] with helpers for dealing with credentials
Lennart Poettering [Wed, 10 Mar 2021 22:03:40 +0000 (23:03 +0100)] 
util: add creds-util.[ch] with helpers for dealing with credentials

3 years agotest: add explicit test for bind_remount_one_with_mountinfo() 19101/head
Lennart Poettering [Wed, 24 Mar 2021 12:45:25 +0000 (13:45 +0100)] 
test: add explicit test for bind_remount_one_with_mountinfo()

3 years agotest: add test for bind_remount_recursive()
Lennart Poettering [Wed, 24 Mar 2021 12:44:56 +0000 (13:44 +0100)] 
test: add test for bind_remount_recursive()

3 years agomount-util: generate failure if bind_remount_one_with_mountinfo() is called on non...
Lennart Poettering [Wed, 24 Mar 2021 13:19:04 +0000 (14:19 +0100)] 
mount-util: generate failure if bind_remount_one_with_mountinfo() is called on non-existing path

3 years agomount-util: handle remount failures gracefully if flags already match
Lennart Poettering [Wed, 24 Mar 2021 13:17:20 +0000 (14:17 +0100)] 
mount-util: handle remount failures gracefully if flags already match

In bind_remount_one_with_mountinfo() let's handle mount failures
gracefully if the flags already match anyway. This isn't perfect, since
it mixes up superblock and mount point flags, but it's close enough.

3 years agomount-util: fold what we need from get_mount_flags() bind_remount_one_with_mountinfo()
Lennart Poettering [Wed, 24 Mar 2021 13:16:45 +0000 (14:16 +0100)] 
mount-util: fold what we need from get_mount_flags() bind_remount_one_with_mountinfo()

And get rid of get_mount_flags() altogether.

(This drops the statvfs() fallback that get_mount_flags() did. That
fallback was incomplete however, and mostly hid errors. Our primary
avenue to get mount flags is /proc/self/mountinfo and we should trust
it, and fix bugs we might encounter with it, but not tape over it.
Dropping the fallback is relevant in particular as it actually returned
mount flags for any path, not just mount points, which was very icky.)

3 years agomount-util: store mount flags in "todo" list in + handle submounts gracefully
Lennart Poettering [Wed, 24 Mar 2021 13:07:32 +0000 (14:07 +0100)] 
mount-util: store mount flags in "todo" list in + handle submounts gracefully

This replaces the "todo" set with a "todo" hash map that stores the
mount flags we found. This makes an explicit call to get_mount_flags()
unncessary, since we have the flags handy right-away, and lowers our
work from O(n^2) to O(n). Nice!

The "done" set is also improved slightly: we'll use more modern ways to
allocate it, via set_ensure_consume(), and freeing-via-hash_ops.

Finally, failures on submount remounts are now handled gracefully,
there are just too many reasons why they might fail, given NFS, autofs,
FUSE which weird access controls, where even root might lack the privs
to do something.

Fixes: #16156
3 years agomount-util: extend comment a bit, mention that we aren't atomic in behaviour
Lennart Poettering [Wed, 24 Mar 2021 13:06:22 +0000 (14:06 +0100)] 
mount-util: extend comment a bit, mention that we aren't atomic in behaviour

3 years agomount-util: shortcut things after generating top-level bind mount
Lennart Poettering [Wed, 24 Mar 2021 13:02:29 +0000 (14:02 +0100)] 
mount-util: shortcut things after generating top-level bind mount

Instead of marking the bind mount read-only right-away, let's just
restart the loop, so that we'll pick it up like any other mount and then
remount like that.

3 years agomount-util: reorder a few things
Lennart Poettering [Wed, 24 Mar 2021 12:56:55 +0000 (13:56 +0100)] 
mount-util: reorder a few things

Let's always query one property, check it, and then query the next,
preferring "cheap" ones over "slow" ones (i.e. cheap are the ones we can
check directly, and slow are the ones we need to check with some loop of
some kind).

3 years agopath: drop simplification of path in bind_remount_recursive_with_mountinfo()
Lennart Poettering [Wed, 24 Mar 2021 12:49:06 +0000 (13:49 +0100)] 
path: drop simplification of path in bind_remount_recursive_with_mountinfo()

We only use path-aware comparisons and hashops, hence no need to
simplify, we can use the path as it is.

3 years agomount-until: make sure we'll exit bind_remount_recursive_with_mountinfo() loop eventually
Lennart Poettering [Wed, 24 Mar 2021 12:47:17 +0000 (13:47 +0100)] 
mount-until: make sure we'll exit bind_remount_recursive_with_mountinfo() loop eventually

Just some robustness given that /proc/self/mountinfo was previously
broken in the kernel.

3 years agomountpoint-util: rebreak some comments
Lennart Poettering [Tue, 23 Mar 2021 21:28:16 +0000 (22:28 +0100)] 
mountpoint-util: rebreak some comments

3 years agomountpoint-util: a symlink is never a mount point
Lennart Poettering [Tue, 23 Mar 2021 21:26:06 +0000 (22:26 +0100)] 
mountpoint-util: a symlink is never a mount point

The various flavours of stat() basically tell us for free if something
is a symlink. If it is, then it's definitely not a mount point. Use
that.

All other inode types can be mount point, just symlinks cannot.

3 years agotest-namespace: drop spurious double new line
Lennart Poettering [Wed, 24 Mar 2021 09:49:23 +0000 (10:49 +0100)] 
test-namespace: drop spurious double new line

3 years agoAdd READMEs in all .d directories 19125/head
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 08:27:11 +0000 (09:27 +0100)] 
Add READMEs in all .d directories

3 years agoconfig files: recommend systemd-analyze cat-config
Zbigniew Jędrzejewski-Szmek [Fri, 26 Mar 2021 07:43:03 +0000 (08:43 +0100)] 
config files: recommend systemd-analyze cat-config

This adds the same line to most of our .conf files.

Not for systemd/user.conf though, since we can't correctly display it right
now:
$ systemd-analyze cat-config --user systemd/user.conf
Option --user is not supported for cat-config right now.

For sysusers.d, tmpfiles.d, rules.d, etc, there is no single file. Maybe
we should short READMEs in /usr/lib/sysusers.d, /usr/lib/tmpfiles.d, etc.?

Inspired by #19118.

3 years agodocs: link to stable releases in the bug template
Zbigniew Jędrzejewski-Szmek [Thu, 25 Mar 2021 19:41:05 +0000 (20:41 +0100)] 
docs: link to stable releases in the bug template

Also, ask people to use a recent stable release and provide useful version information.
Inspired by #19118.

3 years agoMerge pull request #19112 from poettering/more-stub-fixes
Zbigniew Jędrzejewski-Szmek [Thu, 25 Mar 2021 20:31:27 +0000 (21:31 +0100)] 
Merge pull request #19112 from poettering/more-stub-fixes

resolved: two more tweaks to the stub

3 years agoMerge pull request #19117 from bluca/coverity
Luca Boccassi [Thu, 25 Mar 2021 19:33:58 +0000 (19:33 +0000)] 
Merge pull request #19117 from bluca/coverity

Two small coverity issues

3 years agoresolved: rework CNAME logic a bit more 19112/head
Lennart Poettering [Wed, 24 Mar 2021 22:29:16 +0000 (23:29 +0100)] 
resolved: rework CNAME logic a bit more

When following CNAME/DNAME redirects in the stub we currently first
iterate through the packet and pick up what we can use (in
dns_stub_collect_answer_by_question() and friends), following all
CNAMEs/DNAMEs, and would then issue dns_query_process_cname() to move
the DnsQuery object forward too, where we'd then possibly restart
the query and pick things up again, as above.

There's one thought error in this though: dns_query_process_cname()
tries to be smart and will internally follow not just a single
CNAME/DNAME redirect, but a chain of them if they are contained inside
the same packet until we reach the point where the answer is not
included in the packet anymore, where we'd restart the query. This was
great as long as we only focussed on the D-Bus and Varlink resolver
APIs, since there the CNAME/DNAME chain in the middle doesn't actually
matter, we just return information about the final name of the RR and
its content, and aren't interested in the chain to it. For the DNS stub
this is different however: there we need to place the full CNAME/DNAME
chain (and all the appropriate metadata RRs) in the stub reply.

Hence rework this so that we build on the fact that the previous commit
split dns_query_process_cname() in two:

1. dns_query_process_cname_one() will do exactly one CNAME/DNAME
   redirect step. This will be called by the stub, so that we can pick
   up matching RRs for every single step along the way.

2. dns_query_process_cname_many() will follow a chain as long as that's
   possible within the same packet. It's thus pretty much identical to
   the old dns_query_process_cname() call. This is what we now use in
   the D-Bus and Varlink APIs. dns_query_process_cname_many() is
   basically just a loop around dns_query_process_cname_one().

Any logic to follow and pick up RRs manually in the stub along the
CNAME/DNAME path is now dropped (i.e.
dns_stub_collect_answer_by_question() becomes trivially simple again),
we solely rely on dns_query_process_cname_one() to follow CNAME/DNAME
now: each step followed by a full call of dns_stub_assign_sections() to
copy out the RRs that matter.

Net result: things are a bit simpler again, as the only place we follow
CNAME/DNAME redirects is DnsQuery again, and stub answers are always
complete: they contain all CNAME/DNAME RRs on the way including all
their metadata we might pick up in the other sections.

3 years agoresolved: split dns_query_process_cname() into two separate functions
Lennart Poettering [Thu, 25 Mar 2021 10:43:52 +0000 (11:43 +0100)] 
resolved: split dns_query_process_cname() into two separate functions

This does some refactoring: the dns_query_process_cname() function
becomes two: dns_query_process_cname_one() and
dns_query_process_cname_many(). The former will process exactly one
CNAME chain element, the latter will follow a chain for as long as
possible within the current packet.

dns_query_process_cname_many() is mostly identical to the old
dns_query_process_cname(), and all existing code is moved over to using
that.

This is mostly preparation for the next commit, where we make direct use
of dns_query_process_cname_one().

This also renames the DNS_QUERY_RESTARTED return value to
DNS_QUERY_CNAME. That's because in the dns_query_process_cname_many()
case as before if we return this we restarted the query in case we
reached the end of the chain without a conclusive answer, as before. But
in dns_query_process_cname_one() we'll only go one step anyway, and
leave restarting if needed to the caller. Hence DNS_QUERY_RESTARTED is a
bit of a misnomer in that case.

This also gets rid of the weird tail recursion in
dns_query_process_cname() and replaces it with an explicit loop in
dns_query_process_cname_many(). The old recursion wasn't a security
issue since we put a limit on the number of CNAMEs we follow anyway, but
it's still icky to scale stack use by that.

3 years agotest-dhcp6-client: add one more assert on memory mapping 19117/head
Luca Boccassi [Thu, 25 Mar 2021 11:47:13 +0000 (11:47 +0000)] 
test-dhcp6-client: add one more assert on memory mapping

Static analyzers need a hint that optval is not pointing
off the end of the msg_advertise array, since pos can go
up to the full length of it. The array is manually
constructed so we know this won't happen, but adding one
more assert should be enough to avoid false positives.

Coverity CID #1394277

3 years agotest-firewall-util: add more asserts on allocated variables
Luca Boccassi [Thu, 25 Mar 2021 10:49:06 +0000 (10:49 +0000)] 
test-firewall-util: add more asserts on allocated variables

Makes things nicer for readers, and hopefully gives static analyzers
a hint on the origin/cleanup of the ctx pointer.
Coverity CID #1451399

3 years agoresolved: tweak sections we add answer RRs to
Lennart Poettering [Wed, 24 Mar 2021 21:02:55 +0000 (22:02 +0100)] 
resolved: tweak sections we add answer RRs to

Previously we'd stick all answer sections RRs we acquired into
the authoritative section if we didn't find them directly answering our
question. Let's put them into additional instead. The authoritative
section should hence only include what comes from the upstream
authoritative section, and nothing else.

3 years agoresolved: pass mDNS reply packets to each transaction exactly once
Lennart Poettering [Wed, 24 Mar 2021 17:36:41 +0000 (18:36 +0100)] 
resolved: pass mDNS reply packets to each transaction exactly once

Previously we'd iterate through the RRs of an mDNS reply and then find
exactly one matching transaction on our scope for it, and pass it as
reply to that. If multiple RRs of the same packet match we'd pas the
packet multiple times to the transaction even.

This all doesn't really work anymore since there can be multiple open
transactions for the same key (with different flags), and it's kinda
ugly anywy. Hence let's turn this around: let's iterate through the
transactions and check if any of the included RRs match it, and if so
pass the packet to that transaction exactly once.

This speeds up mDNS a bit, since previously we'd oftentimes fail to find
all suitable transactions for an mDNS reply (because there can be
multiple transactions for the same RR key with different flags, and we
checked exactly one flag combination). Which would then mean the
transaction would time out, and be retried – at which point the cache
would be populated and thus it would still succeed, but only after this
timeout. With this fix this is corrected: every transaction that matches
will get the reply, instantly as we get it.

3 years agoresolved: upgrade log level to LOG_NOTICE if we switch to fallback server (or back)
Lennart Poettering [Wed, 24 Mar 2021 20:21:08 +0000 (21:21 +0100)] 
resolved: upgrade log level to LOG_NOTICE if we switch to fallback server (or back)

This is inspired by a recent thread on fedora-devel: it's noteworthy
when we switch to the fallback servers, since it might (or might not)
indicate some configuration problem.

Fixes: #18788
3 years agopo: Translated using Weblate (Korean)
simmon [Thu, 25 Mar 2021 03:01:51 +0000 (04:01 +0100)] 
po: Translated using Weblate (Korean)

Currently translated at 100.0% (189 of 189 strings)

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

3 years agoresolved: don't suppress OPT if we have no OPT
Lennart Poettering [Wed, 24 Mar 2021 19:36:02 +0000 (20:36 +0100)] 
resolved: don't suppress OPT if we have no OPT

This is inspired by #18917. It suppresses a misleading log message about
suppressing OPT where we might not actually have OPT.

3 years agoMerge pull request #19076 from yuwata/firewall-util-modernizations
Luca Boccassi [Wed, 24 Mar 2021 23:19:59 +0000 (23:19 +0000)] 
Merge pull request #19076 from yuwata/firewall-util-modernizations

firewall-util: modernize code and improve test

3 years agolocal-addresses: fix use of uninitialized value
David Tardon [Wed, 24 Mar 2021 13:45:02 +0000 (14:45 +0100)] 
local-addresses: fix use of uninitialized value

This can happen if ifi fails to be read from the netlink message and the
error is ENODATA.

Fixes the following valgrind message when running netstat:

==164141== Conditional jump or move depends on uninitialised value(s)
==164141==    at 0x524AE60: address_compare (local-addresses.c:29)
==164141==    by 0x48BCC78: msort_with_tmp.part.0 (msort.c:105)
==164141==    by 0x48BC9E4: msort_with_tmp (msort.c:45)
==164141==    by 0x48BC9E4: msort_with_tmp.part.0 (msort.c:53)
==164141==    by 0x48BCF85: msort_with_tmp (msort.c:45)
==164141==    by 0x48BCF85: qsort_r (msort.c:297)
==164141==    by 0x52500FC: UnknownInlinedFun (sort-util.h:47)
==164141==    by 0x52500FC: local_gateways.constprop.0 (local-addresses.c:310)
==164141==    by 0x5251C05: _nss_myhostname_gethostbyaddr2_r (nss-myhostname.c:456)
==164141==    by 0x5252006: _nss_myhostname_gethostbyaddr_r (nss-myhostname.c:500)
==164141==    by 0x498E7FE: gethostbyaddr_r@@GLIBC_2.2.5 (getXXbyYY_r.c:274)
==164141==    by 0x498E560: gethostbyaddr (getXXbyYY.c:135)
==164141==    by 0x121353: INET_rresolve.constprop.0 (inet.c:212)
==164141==    by 0x1135B9: INET_sprint (inet.c:261)
==164141==    by 0x121BFC: addr_do_one.constprop.0.isra.0 (netstat.c:1156)

3 years agotest-firewall-util: use assert_se() at most places 19076/head
Yu Watanabe [Mon, 22 Mar 2021 13:44:25 +0000 (22:44 +0900)] 
test-firewall-util: use assert_se() at most places

Otherwise, we cannot notice any failures...

3 years agopo: Translated using Weblate (Dutch)
Pjotr Vertaalt [Wed, 24 Mar 2021 09:16:18 +0000 (10:16 +0100)] 
po: Translated using Weblate (Dutch)

Currently translated at 100.0% (189 of 189 strings)

Co-authored-by: Pjotr Vertaalt <pjotrvertaalt@gmail.com>
Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/nl/
Translation: systemd/main

3 years agoprocess-util: dont allocate max length to read /proc/PID/cmdline
Anita Zhang [Tue, 23 Mar 2021 07:49:28 +0000 (00:49 -0700)] 
process-util: dont allocate max length to read /proc/PID/cmdline

Alternative title: Replace get_process_cmdline()'s fopen()/fread() with
read_full_virtual_file().

When RLIMIT_STACK is set to infinity:infinity, _SC_ARG_MAX will
return 4611686018427387903 (depending on the system, but definitely
something larger than most systems have). It's impractical to allocate this
in one go when most cmdlines are much shorter than that.

Instead use read_full_virtual_file() which seems to increase the buffer
depending on the size of the contents.

3 years agopid1: do not use generated strings as format strings (#19098)
Lincoln Ramsay [Wed, 24 Mar 2021 07:37:25 +0000 (17:37 +1000)] 
pid1: do not use generated strings as format strings (#19098)

The generated string may include %, which will confuse both the
xprintf call, and the VA_FORMAT_ADVANCE macro.

Pass the generated string as an argument to a "%s" format string
instead.

3 years agonetwork: fix ipv6 tunnel encapsulation limit (#19087)
hide [Tue, 23 Mar 2021 16:05:25 +0000 (01:05 +0900)] 
network: fix ipv6 tunnel encapsulation limit (#19087)

The encapsulation limit of IPv6 tunnel can not be set to 4, which is the default value of the encapsulation limit.

3 years agorepart: remove spurious empty double newlines
Lennart Poettering [Sat, 20 Mar 2021 21:13:54 +0000 (22:13 +0100)] 
repart: remove spurious empty double newlines

3 years agoblockdev-util: actually specify an access mode on open()
Lennart Poettering [Tue, 23 Mar 2021 13:04:59 +0000 (14:04 +0100)] 
blockdev-util: actually specify an access mode on open()

Linux is pretty lenient here, but we should specify the access mode.

3 years agoupdate TODO
Lennart Poettering [Tue, 23 Mar 2021 13:42:58 +0000 (14:42 +0100)] 
update TODO

3 years agotest-nss-hosts: make buffer size configurable too and document it 18982/head
Zbigniew Jędrzejewski-Szmek [Fri, 12 Mar 2021 13:37:18 +0000 (14:37 +0100)] 
test-nss-hosts: make buffer size configurable too and document it

3 years agotest-nss-hosts: use _cleanup_, fix return value, assert on allocations
Zbigniew Jędrzejewski-Szmek [Tue, 23 Mar 2021 12:56:37 +0000 (13:56 +0100)] 
test-nss-hosts: use _cleanup_, fix return value, assert on allocations