]> git.ipfire.org Git - thirdparty/systemd.git/log
thirdparty/systemd.git
4 years agonetworkd: silence bogus gcc warning about %s 13005/head
Zbigniew Jędrzejewski-Szmek [Wed, 10 Jul 2019 08:30:12 +0000 (10:30 +0200)] 
networkd: silence bogus gcc warning about %s

Fixes #12931.

In file included from ../src/basic/macro.h:558,
                 from ../src/basic/alloc-util.h:9,
                 from ../src/network/networkd-link.c:7:
../src/network/networkd-link.c: In function ‘link_sysctl_ipv6_enabled’:
../src/basic/log.h:107:9: error: ‘%s’ directive argument is null [-Werror=format-overflow=]
  107 |         log_internal_realm(LOG_REALM_PLUS_LEVEL(LOG_REALM, (level)), __VA_ARGS__)
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/shared/log-link.h:21:25: note: in expansion of macro ‘log_internal’
   21 |                         log_internal(level, error, _FILE_, __LINE__, __func__, ##__VA_ARGS__); \
      |                         ^~~~~~~~~~~~
../src/shared/log-link.h:33:50: note: in expansion of macro ‘log_link_full’
   33 | #define log_link_warning_errno(link, error, ...) log_link_full(link, LOG_WARNING, error, ##__VA_ARGS__)
      |                                                  ^~~~~~~~~~~~~
../src/network/networkd-link.c:83:24: note: in expansion of macro ‘log_link_warning_errno’
   83 |                 return log_link_warning_errno(link, r,
      |                        ^~~~~~~~~~~~~~~~~~~~~~
../src/network/networkd-link.c:84:77: note: format string is defined here
   84 |                                               "Failed to read net.ipv6.conf.%s.disable_ipv6 sysctl property: %m",
      |                                                                             ^~
cc1: some warnings being treated as errors

4 years agoshared/dm-util: use strncpy_exact() to silence gcc
Zbigniew Jędrzejewski-Szmek [Wed, 10 Jul 2019 08:22:48 +0000 (10:22 +0200)] 
shared/dm-util: use strncpy_exact() to silence gcc

With gcc-9.1.1-2.fc31.x86_64 and -Doptimization=2:
../src/shared/dm-util.c: In function ‘dm_deferred_remove’:
../src/shared/dm-util.c:35:9: warning: ‘strncpy’ specified bound 128 equals destination size [-Wstringop-truncation]
   35 |         strncpy(dm.name, name, sizeof(dm.name));
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

gcc is plain wrong here, because we checked strlen(name) a few lines above, so
there can be no truncation and even the terminator always fits. But let's avoid
the warning.

4 years agofuzzbuzz: rename fuzz.yaml to fuzzbuzz.yaml
Evgeny Vereshchagin [Wed, 10 Jul 2019 01:46:35 +0000 (03:46 +0200)] 
fuzzbuzz: rename fuzz.yaml to fuzzbuzz.yaml

fuzz.yaml will stop working in a week

4 years agoimportd: Avoid need for fd translation table
Dave Reisner [Sat, 6 Jul 2019 16:20:53 +0000 (12:20 -0400)] 
importd: Avoid need for fd translation table

Make use of curl_multi_assign to associate each IO sd_event_source with
a CURL object. This means we always get passed the right event source
and don't need to worry about looking up the associated CURL object,
particularly in the case where the FD has been closed on a REMOVE event.

4 years agonetwork: read sysctl value only once (#12990)
Yu Watanabe [Tue, 9 Jul 2019 07:56:50 +0000 (16:56 +0900)] 
network: read sysctl value only once (#12990)

Follow-up for bafa9641446852f7fa15ca12d08a223d345c78ea.

When the value is changed, networkd needs to be restarted.

4 years agoutil: fix sign-compare warning
Yu Watanabe [Fri, 21 Jun 2019 03:56:54 +0000 (12:56 +0900)] 
util: fix sign-compare warning

4 years agotest/udev-test.pl: cleanup if skipping test
Dan Streetman [Fri, 5 Jul 2019 15:24:55 +0000 (11:24 -0400)] 
test/udev-test.pl: cleanup if skipping test

In Ubuntu CI, udev-test.pl is run from the debian/test/udev script,
in a test dir created for it; but udev-test.pl setup mounts a
dir, so if it doesn't cleanup/unmount before exiting, the test dir
autopkgtest created for it can't be removed, and autopkgtest
aborts the entire test suite, for example this output (from a
test run inside an armhf container):

autopkgtest [12:45:36]: test udev: [-----------------------
umount: test/tmpfs: no mount point specified.
mknod: test/tmpfs/dev/null: Operation not permitted
unable to create test/tmpfs/dev/null at ./udev-test.pl line 1611.
Failed to set up the environment, skipping the test at ./udev-test.pl line 1731.
autopkgtest [12:45:41]: test udev: -----------------------]
autopkgtest [12:45:44]: test udev:  - - - - - - - - - - results - - - - - - - - - -
udev                 FAIL non-zero exit status 77
rm: cannot remove '/tmp/autopkgtest.ocPFA6/autopkgtest_tmp/test/tmpfs': Device or resource busy
autopkgtest [12:46:22]: ERROR: "rm -rf /tmp/autopkgtest.ocPFA6/udev-artifacts /tmp/autopkgtest.ocPFA6/autopkgtest_tmp" failed with stderr "rm:

4 years agoMerge pull request #12992 from mrc0mmand/test-functions-fixes
Evgeny Vereshchagin [Mon, 8 Jul 2019 23:27:39 +0000 (02:27 +0300)] 
Merge pull request #12992 from mrc0mmand/test-functions-fixes

Various test/test-functions fixes/improvements

4 years agopid1: fix serialization/deserialization of commmands with spaces
Zbigniew Jędrzejewski-Szmek [Mon, 8 Jul 2019 12:18:46 +0000 (14:18 +0200)] 
pid1: fix serialization/deserialization of commmands with spaces

Fixes #12258.

This is enough to reproduce:
$ systemd-run bash -c 'sleep 10' && systemctl daemon-reload
would result in
Current command vanished from the unit file.

We would serialize as:
ExecStart 0 /usr/bin/bash /usr/bin/bash -c sleep 10000
which of course can't work.
Now we serialize as
ExecStart 0 /usr/bin/bash "/usr/bin/bash" "-c" "sleep 10".

4 years agonspawn: fix abort when we cannot execve
Zbigniew Jędrzejewski-Szmek [Mon, 8 Jul 2019 13:16:41 +0000 (15:16 +0200)] 
nspawn: fix abort when we cannot execve

If execve failed, we would die in safe_close(), because master was already
closed by fdset_close_others() on line 3123. IIUC, we don't need to keep the
fd open after sending it, so let's just close it immediately.

Reproducer:
sudo build/systemd-nspawn -M rawhide fooooooo

Fixup for 3acc84ebd9aebe8cf1771b42644ebbfbecdfaa37.

4 years agoMerge pull request #12972 from intelfx/cryptsetup-enable-libcryptsetup-debug
Zbigniew Jędrzejewski-Szmek [Mon, 8 Jul 2019 22:47:06 +0000 (00:47 +0200)] 
Merge pull request #12972 from intelfx/cryptsetup-enable-libcryptsetup-debug

cryptsetup: properly handle libcryptsetup debug logging

4 years agotest: install missing dependencies for CIs 12992/head
Frantisek Sumsal [Mon, 8 Jul 2019 19:28:10 +0000 (21:28 +0200)] 
test: install missing dependencies for CIs

4 years agotest: drop || return 1 expression which is incompatible with set -e
Frantisek Sumsal [Mon, 8 Jul 2019 19:11:32 +0000 (21:11 +0200)] 
test: drop || return 1 expression which is incompatible with set -e

The `set -e` option is incompatible with a subshell/compound command,
which is followed by || <EXPR>. In such case, the -e option is ignored
in all affected subshells/functions (see man bash(1) for command `set`).

4 years agotest: be a little bit more verbose when installing service binaries
Frantisek Sumsal [Mon, 8 Jul 2019 19:10:21 +0000 (21:10 +0200)] 
test: be a little bit more verbose when installing service binaries

4 years agotest: correctly handle installation of newly introduced binaries
Frantisek Sumsal [Mon, 8 Jul 2019 19:05:51 +0000 (21:05 +0200)] 
test: correctly handle installation of newly introduced binaries

In certain cases we might attempt to install a binary which is already
present in the test image, yet it's missing from the host system.
In such cases, let's check if the binary indeed exists in the image
before doing any other chcecks. If it does, immediately return with
success.

This was discovered during installation of
/usr/lib/systemd/systemd-bless-boot, which was not present in Ubuntu CI
(as the installed systemd was from the Ubuntu repositories), and the
binary itself was already in the image thanks to `ninja install`.
However, during extraction of binaries from the systemd service files,
another attempt to install this binary was made, which failed due to
`find_binary` being unable to find it.

4 years agotest: make ASAN/UBSAN_OPTIONS overridable from the outside
Frantisek Sumsal [Mon, 8 Jul 2019 11:47:46 +0000 (13:47 +0200)] 
test: make ASAN/UBSAN_OPTIONS overridable from the outside

This should allow us to tweak the ASAN_OPTIONS and UBSAN_OPTIONS env
variables for integration tests as well

4 years agoFUNDING: this needs to be yaml
Zbigniew Jędrzejewski-Szmek [Mon, 8 Jul 2019 14:55:31 +0000 (16:55 +0200)] 
FUNDING: this needs to be yaml

4 years agoCreate FUNDING.yml
Zbigniew Jędrzejewski-Szmek [Mon, 8 Jul 2019 13:43:55 +0000 (15:43 +0200)] 
Create FUNDING.yml

4 years agogrowfs: call crypt_set_debug_level() correctly, skip if not needed 12972/head
Ivan Shapovalov [Sat, 6 Jul 2019 10:51:55 +0000 (13:51 +0300)] 
growfs: call crypt_set_debug_level() correctly, skip if not needed

4 years agocryptsetup: enable libcryptsetup debug logging if we want it
Ivan Shapovalov [Sat, 6 Jul 2019 10:51:23 +0000 (13:51 +0300)] 
cryptsetup: enable libcryptsetup debug logging if we want it

Even if we set a log callback that would accept debug messages, libcryptsetup
needs debug logging enabled explicitly for it to happen.

4 years agoMerge pull request #12970 from ddstreet/gh12969
Yu Watanabe [Mon, 8 Jul 2019 12:18:04 +0000 (21:18 +0900)] 
Merge pull request #12970 from ddstreet/gh12969

src/network/networkd-dhcp4.c: set prefsrc for classless or static routes

4 years agoAdd accel mount matrix for Irbis TW90
RussianNeuroMancer [Sun, 7 Jul 2019 15:17:56 +0000 (23:17 +0800)] 
Add accel mount matrix for Irbis TW90

4 years agounits: add SystemCallErrorNumber=EPERM to systemd-portabled.service
Lennart Poettering [Sun, 7 Jul 2019 15:28:57 +0000 (17:28 +0200)] 
units: add SystemCallErrorNumber=EPERM to systemd-portabled.service

We use that on all other services, and hence should here too. Otherwise
the service will be killed with SIGSYS when doing something not
whitelisted, which is a bit crass.

4 years agosemaphore: pass allow-releaseinfo-change to apt-get
Evgeny Vereshchagin [Sun, 7 Jul 2019 16:17:17 +0000 (18:17 +0200)] 
semaphore: pass allow-releaseinfo-change to apt-get

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=929248

4 years agocryptsetup: set libcryptsetup global log callback too
Ivan Shapovalov [Sat, 6 Jul 2019 10:48:50 +0000 (13:48 +0300)] 
cryptsetup: set libcryptsetup global log callback too

4 years agobasic/log: fix SYSTEMD_LOG_* parsing error messages
Ivan Shapovalov [Sat, 6 Jul 2019 10:47:06 +0000 (13:47 +0300)] 
basic/log: fix SYSTEMD_LOG_* parsing error messages

(likely a copy-paste gone wrong)

4 years agotest-network: add tests for DHCP.UseRoutes=no with custom route settings
Yu Watanabe [Fri, 5 Jul 2019 21:43:28 +0000 (06:43 +0900)] 
test-network: add tests for DHCP.UseRoutes=no with custom route settings

This adds test for b5799eeb0787deacb30d5984f6ac78f88f23b97e.

Closes #12951.

4 years agotest-network: add testcase for DHCP client with static address 12970/head
Yu Watanabe [Fri, 5 Jul 2019 22:39:17 +0000 (07:39 +0900)] 
test-network: add testcase for DHCP client with static address

Testcase for #12969.

4 years agosrc/network/networkd-dhcp4.c: set prefsrc for classless or static routes
Dan Streetman [Fri, 5 Jul 2019 20:42:38 +0000 (16:42 -0400)] 
src/network/networkd-dhcp4.c: set prefsrc for classless or static routes

When a DHCP server provides only a gateway, the networkd-dhcp4 code adds a
default route using that gateway, and sets the just-provided address as
the route's prefsrc; this was added in commit
46b0c76e2c355c0d0cc4792abb98cde07b28bc53

However, if the DHCP server has also provided classless route(s), these
are used instead of a default route using the provided gateway; the
networkd-dhcp4 code sets up the classless routes, but does not use the
just-provided dhcp address as the prefsrc of the route(s).  Note that
it also doesn't set the prefsrc for static routes, though it should.

If the interface has only the dhcp-provided address, this is not usually
a problem, but if it has another address (e.g. a static address), then
traffic sent through the dhcp-provided gateway might not use the
dhcp-provided source address.  If the gateway router only will route
traffic from the dhcp-provided address, then the dhcp client system's
networking through the router will not work.

Fixes: #12969
4 years agologin: move file definitions outside of the conditionalization
Lennart Poettering [Wed, 29 May 2019 20:09:26 +0000 (22:09 +0200)] 
login: move file definitions outside of the conditionalization

4 years agoMerge pull request #12964 from yuwata/network-bridge-vlan-issue-12958
Zbigniew Jędrzejewski-Szmek [Fri, 5 Jul 2019 11:58:21 +0000 (13:58 +0200)] 
Merge pull request #12964 from yuwata/network-bridge-vlan-issue-12958

network: fix BridgeVLAN issue

4 years agoMerge pull request #12963 from keszybz/analyze-timestamp
Yu Watanabe [Fri, 5 Jul 2019 08:15:00 +0000 (17:15 +0900)] 
Merge pull request #12963 from keszybz/analyze-timestamp

systemd-analyze dump fixup

4 years agotest-network: add tests for BridgeVLAN 12964/head
Yu Watanabe [Thu, 4 Jul 2019 19:43:27 +0000 (04:43 +0900)] 
test-network: add tests for BridgeVLAN

4 years agonetwork: fix issue found by UBSan
Yu Watanabe [Fri, 5 Jul 2019 07:37:34 +0000 (16:37 +0900)] 
network: fix issue found by UBSan

4 years agonetwork: fix the initial value of the counter for brvlan
Yu Watanabe [Thu, 4 Jul 2019 20:48:21 +0000 (05:48 +0900)] 
network: fix the initial value of the counter for brvlan

Fixes #12958.

4 years agonetwork: re-implement parse_vid_range()
Yu Watanabe [Thu, 4 Jul 2019 20:37:25 +0000 (05:37 +0900)] 
network: re-implement parse_vid_range()

4 years agonetwork: minor coding-style update
Yu Watanabe [Fri, 5 Jul 2019 07:34:01 +0000 (16:34 +0900)] 
network: minor coding-style update

4 years agovarlink: add varlink server to event loop only if there is one
Lennart Poettering [Tue, 28 May 2019 12:19:18 +0000 (14:19 +0200)] 
varlink: add varlink server to event loop only if there is one

4 years agopid1: use monotonic timestamp in dump if realtime is not available 12963/head
Zbigniew Jędrzejewski-Szmek [Thu, 4 Jul 2019 17:12:03 +0000 (19:12 +0200)] 
pid1: use monotonic timestamp in dump if realtime is not available

$ systemd-analyze dump | head -3
Timestamp firmware: (null)
Timestamp loader: (null)
Timestamp kernel: Mon 2019-07-01 17:21:02 CEST

Since this is a debugging interface, it is OK to change the output format.
The user can infer what "Timestamp firmware: 123.456ms" means.

4 years agotest-network: show debug logs of networkd
Yu Watanabe [Wed, 3 Jul 2019 18:46:14 +0000 (03:46 +0900)] 
test-network: show debug logs of networkd

4 years agoportabled: Make use of SYNTHETIC_ERRNO()
Lennart Poettering [Thu, 4 Jul 2019 14:54:39 +0000 (16:54 +0200)] 
portabled: Make use of SYNTHETIC_ERRNO()

4 years agofsck: split out fsck return code definitions into a header file of its own
Lennart Poettering [Sun, 23 Dec 2018 18:22:12 +0000 (19:22 +0100)] 
fsck: split out fsck return code definitions into a header file of its own

This way we can make use of it from other components too, such as
systemd-homed.

4 years agodissect: split out DM deferred remove into src/shared/dm-util.c
Lennart Poettering [Sun, 23 Dec 2018 18:19:51 +0000 (19:19 +0100)] 
dissect: split out DM deferred remove into src/shared/dm-util.c

The function is generally useful, let's split it out so that we can make
use of it later on in systemd-homed.

4 years agobasic/time-util: add helper function to check if timestamp is set
Zbigniew Jędrzejewski-Szmek [Thu, 4 Jul 2019 17:10:11 +0000 (19:10 +0200)] 
basic/time-util: add helper function to check if timestamp is set

No functional change.

4 years agoman: Add some notes about variable $prefix for StateDirectory=
Philip Withnall [Wed, 3 Jul 2019 13:00:48 +0000 (14:00 +0100)] 
man: Add some notes about variable $prefix for StateDirectory=

tl;dr: It isn’t supported.

Wording by Zbigniew Jędrzejewski-Szmek.

See https://twitter.com/pid_eins/status/1102639279614906369 and
https://gitlab.freedesktop.org/libfprint/fprintd/merge_requests/5#note_125536
onwards.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
4 years agoMerge pull request #12949 from yuwata/sd-netlink-sd-netlink-message-enter-array
Lennart Poettering [Thu, 4 Jul 2019 13:46:02 +0000 (15:46 +0200)] 
Merge pull request #12949 from yuwata/sd-netlink-sd-netlink-message-enter-array

sd-netlink: introduce sd_netlink_message_enter_array()

4 years agoMerge pull request #12954 from keszybz/var-log-dir
Lennart Poettering [Thu, 4 Jul 2019 13:45:43 +0000 (15:45 +0200)] 
Merge pull request #12954 from keszybz/var-log-dir

/var/log-related cleanups

4 years agotest: add test for sd_netlink_message_enter_array() 12949/head
Yu Watanabe [Thu, 4 Jul 2019 05:56:54 +0000 (14:56 +0900)] 
test: add test for sd_netlink_message_enter_array()

4 years agomeson: drop varlogdir variable 12954/head
Zbigniew Jędrzejewski-Szmek [Thu, 4 Jul 2019 08:10:24 +0000 (10:10 +0200)] 
meson: drop varlogdir variable

It was only used for exactly one thing: to substitute in the text in
/var/log/README. But it's use there was completely wrong, because the text
talks about "missing" log files from syslog, so even if we configured systemd
to log to a different directory, the "missing" log files would still be
"missing" from the old location.

4 years agomeson: create /var/log/journal/{,remote/} conditionally
Zbigniew Jędrzejewski-Szmek [Thu, 4 Jul 2019 07:59:09 +0000 (09:59 +0200)] 
meson: create /var/log/journal/{,remote/} conditionally

Not everybody has those dirs in the filesystem (and they don't need to).
When creating an installation package using $DESTDIR, it is easy enough to
remove or ignore those directories, but if installing into a real root, it
is ugly to create and remove them. Let's add an option so people can skip
it if they want.

Inspired by #12930.

4 years agosd-netlink: add CTRL_ATTR_MCAST_GROUPS
Yu Watanabe [Thu, 4 Jul 2019 05:31:23 +0000 (14:31 +0900)] 
sd-netlink: add CTRL_ATTR_MCAST_GROUPS

4 years agosd-netlink: drop unnecessary 'else'
Yu Watanabe [Thu, 4 Jul 2019 08:11:05 +0000 (17:11 +0900)] 
sd-netlink: drop unnecessary 'else'

4 years agosd-netlink: introduce sd_netlink_message_enter_array()
Yu Watanabe [Fri, 28 Jun 2019 18:30:53 +0000 (03:30 +0900)] 
sd-netlink: introduce sd_netlink_message_enter_array()

4 years agosd-netlink: fix inverted log message
Yu Watanabe [Fri, 28 Jun 2019 18:27:24 +0000 (03:27 +0900)] 
sd-netlink: fix inverted log message

4 years agoMerge pull request #12946 from poettering/blockdev-tweaks
Yu Watanabe [Thu, 4 Jul 2019 03:36:11 +0000 (12:36 +0900)] 
Merge pull request #12946 from poettering/blockdev-tweaks

three small blockdev-util.[ch] tweaks

4 years agovarlink: allow using varlink_wait() even with a server
Lennart Poettering [Wed, 29 May 2019 11:56:27 +0000 (13:56 +0200)] 
varlink: allow using varlink_wait() even with a server

This call can be useful even if a server object is declared.

(Originally this was not supported, because a server typically needs to
handle multiple connections, and thus a synchronous wait on one would
starve the others out. But in some cases it might make sense to have
varlink point-to-point connections — i.e. where the server only handles
a single connection ever — and there it makes sense to synchronously
wait on the one connection).

4 years agojson: use JSON_VARIANT_ARRAY_FOREACH() where we can
Lennart Poettering [Tue, 28 May 2019 12:19:51 +0000 (14:19 +0200)] 
json: use JSON_VARIANT_ARRAY_FOREACH() where we can

4 years agologind: drop old-style header from .sym file in favour of SPDX
Lennart Poettering [Wed, 29 May 2019 20:10:12 +0000 (22:10 +0200)] 
logind: drop old-style header from .sym file in favour of SPDX

4 years agoAdded ACCEL_MOUNT_MATRIX for Asus Q551LN in hwdb/60-sensor.hwdb
Connor Reeder [Wed, 3 Jul 2019 18:42:45 +0000 (14:42 -0400)] 
Added ACCEL_MOUNT_MATRIX for Asus Q551LN in hwdb/60-sensor.hwdb

4 years agoblockdev-util: let us know if block_get_whole_disk() did anything 12946/head
Lennart Poettering [Tue, 21 May 2019 16:00:54 +0000 (18:00 +0200)] 
blockdev-util: let us know if block_get_whole_disk() did anything

4 years agoblockdev: filter out invalid block devices early
Lennart Poettering [Tue, 21 May 2019 16:00:09 +0000 (18:00 +0200)] 
blockdev: filter out invalid block devices early

4 years agoblockdev-util: propagate actual error
Lennart Poettering [Tue, 21 May 2019 16:00:32 +0000 (18:00 +0200)] 
blockdev-util: propagate actual error

4 years agoman: document tmpfiles.d/ user/group resolvability needs
Lennart Poettering [Wed, 3 Jul 2019 11:04:11 +0000 (13:04 +0200)] 
man: document tmpfiles.d/ user/group resolvability needs

4 years agodebug-generator: enable custom systemd.debug_shell tty
Jan Synacek [Thu, 25 Apr 2019 10:19:16 +0000 (12:19 +0200)] 
debug-generator: enable custom systemd.debug_shell tty

4 years agoMerge pull request #12912 from yuwata/network-move-functions
Zbigniew Jędrzejewski-Szmek [Tue, 2 Jul 2019 07:46:38 +0000 (09:46 +0200)] 
Merge pull request #12912 from yuwata/network-move-functions

network: move functions

4 years agotest-network: add udev related tests for networkctl
Yu Watanabe [Sat, 1 Jun 2019 01:31:09 +0000 (10:31 +0900)] 
test-network: add udev related tests for networkctl

4 years agoMerge pull request #12888 from yuwata/network-udev-property-support
Zbigniew Jędrzejewski-Szmek [Mon, 1 Jul 2019 18:33:24 +0000 (20:33 +0200)] 
Merge pull request #12888 from yuwata/network-udev-property-support

network,udev: add Property= setting in [Match] section

4 years agoudev: accept lines which have only PROGRAM=
Yu Watanabe [Sat, 29 Jun 2019 20:33:53 +0000 (05:33 +0900)] 
udev: accept lines which have only PROGRAM=

As PROGRAM= may cause side effect, and users may expect that.

4 years agoMerge pull request #12916 from yuwata/meson-drop-duplicated-line
Michael Biebl [Sun, 30 Jun 2019 23:39:35 +0000 (01:39 +0200)] 
Merge pull request #12916 from yuwata/meson-drop-duplicated-line

meson: drop duplicated source

4 years agotest-network: add test for Property= in [Match] section 12888/head
Yu Watanabe [Sat, 29 Jun 2019 17:28:42 +0000 (02:28 +0900)] 
test-network: add test for Property= in [Match] section

4 years agomeson: drop duplicated source 12916/head
Yu Watanabe [Sun, 30 Jun 2019 21:44:40 +0000 (06:44 +0900)] 
meson: drop duplicated source

4 years agotest: add tests for config_parse_match_{strv,ifnames}()
Yu Watanabe [Thu, 27 Jun 2019 13:03:02 +0000 (22:03 +0900)] 
test: add tests for config_parse_match_{strv,ifnames}()

4 years agoman: fix wrong udev property name
Yu Watanabe [Sat, 22 Jun 2019 19:05:51 +0000 (04:05 +0900)] 
man: fix wrong udev property name

4 years agonetwork,udev: add Property= setting in [Match] section
Yu Watanabe [Sat, 22 Jun 2019 16:44:13 +0000 (01:44 +0900)] 
network,udev: add Property= setting in [Match] section

Closes #5665.

4 years agonetwork,udev: make net_match_config() take sd_device
Yu Watanabe [Sat, 22 Jun 2019 16:08:51 +0000 (01:08 +0900)] 
network,udev: make net_match_config() take sd_device

4 years agonetwork,udev: fix multiple invert matching lines
Yu Watanabe [Sat, 22 Jun 2019 18:18:52 +0000 (03:18 +0900)] 
network,udev: fix multiple invert matching lines

Previously,
```
[Match]
Name=!aaa
Name=!bbb
```
does not work. This fixes the issue.

4 years agonetworkctl: do not show '(null)' in HW Address entry
Yu Watanabe [Sat, 29 Jun 2019 17:54:35 +0000 (02:54 +0900)] 
networkctl: do not show '(null)' in HW Address entry

This also fixes indentation.

4 years agonetwork: move prototypes related to network Network bus objects to networkd-network... 12912/head
Yu Watanabe [Sat, 29 Jun 2019 20:10:35 +0000 (05:10 +0900)] 
network: move prototypes related to network Network bus objects to networkd-network-bus.h

4 years agoMerge pull request #12910 from keszybz/udev-kvm
Yu Watanabe [Sat, 29 Jun 2019 19:51:05 +0000 (04:51 +0900)] 
Merge pull request #12910 from keszybz/udev-kvm

Fix permissions on /dev/kvm

4 years agonetwork: move DHCP server related functions to networkd-dhcp-server.c
Yu Watanabe [Sat, 29 Jun 2019 19:33:34 +0000 (04:33 +0900)] 
network: move DHCP server related functions to networkd-dhcp-server.c

4 years agonetwork: move DHCP6 related code from networkd-manager.c to networkd-dhcp6.c
Yu Watanabe [Sat, 29 Jun 2019 19:09:51 +0000 (04:09 +0900)] 
network: move DHCP6 related code from networkd-manager.c to networkd-dhcp6.c

4 years agonetwork: move conf parsers and function prototypes
Yu Watanabe [Sat, 29 Jun 2019 18:57:47 +0000 (03:57 +0900)] 
network: move conf parsers and function prototypes

4 years agoMerge pull request #12903 from keszybz/condition-quoting
Yu Watanabe [Sat, 29 Jun 2019 19:10:40 +0000 (04:10 +0900)] 
Merge pull request #12903 from keszybz/condition-quoting

Condition quoting

4 years agotest-condition: do not accidentally treat error as passing condition 12903/head
Zbigniew Jędrzejewski-Szmek [Sat, 29 Jun 2019 15:06:30 +0000 (17:06 +0200)] 
test-condition: do not accidentally treat error as passing condition

condition_test returns 0, 1, or error.

4 years agoTreat kernel version condition as a list of quoted checks
Zbigniew Jędrzejewski-Szmek [Fri, 28 Jun 2019 08:58:06 +0000 (10:58 +0200)] 
Treat kernel version condition as a list of quoted checks

Before only one comparison was allowed. Let's make this more flexible:
ConditionKernelVersion = ">=4.0" "<=4.5"

Fixes #12881.

This also fixes expressions like "ConditionKernelVersion=>" which would
evaluate as true.

4 years agotest-execute: add test for ConditionKernelVersion= with quotation
Yu Watanabe [Thu, 27 Jun 2019 14:11:34 +0000 (23:11 +0900)] 
test-execute: add test for ConditionKernelVersion= with quotation

4 years agoMerge pull request #12907 from yuwata/meson-default-libidn2
Zbigniew Jędrzejewski-Szmek [Sat, 29 Jun 2019 14:25:52 +0000 (16:25 +0200)] 
Merge pull request #12907 from yuwata/meson-default-libidn2

meson: use libidn2 and drop udev debug option

4 years agoudev: fix wrong event source to set description
Yu Watanabe [Fri, 28 Jun 2019 22:26:02 +0000 (07:26 +0900)] 
udev: fix wrong event source to set description

4 years agoMerge pull request #12908 from yuwata/udevadm-completion-action
Zbigniew Jędrzejewski-Szmek [Sat, 29 Jun 2019 14:22:22 +0000 (16:22 +0200)] 
Merge pull request #12908 from yuwata/udevadm-completion-action

udevadm: support special value 'help' for --action option

4 years agoudev: don't force device ownership and mode on every event 12910/head
Zbigniew Jędrzejewski-Szmek [Sat, 29 Jun 2019 13:08:11 +0000 (15:08 +0200)] 
udev: don't force device ownership and mode on every event

This partially reverts 25de7aa7b90c23d33ea50ada1e50c5834a414237. I don't think the
change was intended there.

The problem I'm trying to solve: for /dev/kvm we get first an ADD uevent, and
then CHANGE whenever something connects or disconnects to the character device.
The rules in 50-default-udev.rules set UID, GID, and MODE on ADD, but not on
CHANGE. When the change event happens, we would reset the ownership and
permissions.

This happens because node_permissions_apply() would (after 25de7aa7b90c23d33)
set uid=gid=0 if they weren't set by the rules.

So let's only pass uid/gid/mode to node_permissions_apply() if appropriately
configured. Also let node_permissions_apply() do the skip of uid/gid/mode if
not set, and rename "always_apply" to more closely reflect its meaning.

4 years agoudev: tiny fix to debug message
Zbigniew Jędrzejewski-Szmek [Sat, 29 Jun 2019 12:56:45 +0000 (14:56 +0200)] 
udev: tiny fix to debug message

4 years agobash-completion: udevadm: list all possible values for --action option 12908/head
Yu Watanabe [Fri, 28 Jun 2019 19:08:18 +0000 (04:08 +0900)] 
bash-completion: udevadm: list all possible values for --action option

4 years agoudevadm: support special value 'help' for --action option
Yu Watanabe [Fri, 28 Jun 2019 19:03:06 +0000 (04:03 +0900)] 
udevadm: support special value 'help' for --action option

4 years agosd-device: introduce dump_device_action_table()
Yu Watanabe [Fri, 28 Jun 2019 18:49:20 +0000 (03:49 +0900)] 
sd-device: introduce dump_device_action_table()

Will be used in later commits.

4 years agoMerge pull request #12905 from keszybz/udev-warnings
Yu Watanabe [Fri, 28 Jun 2019 18:35:12 +0000 (03:35 +0900)] 
Merge pull request #12905 from keszybz/udev-warnings

Udev warnings

4 years agoNEWS: mention that the libidn2 is used by default 12907/head
Yu Watanabe [Fri, 28 Jun 2019 18:18:43 +0000 (03:18 +0900)] 
NEWS: mention that the libidn2 is used by default

4 years agomeson: default to use libidn2 if both libidn2 and libidn are installed
Yu Watanabe [Fri, 28 Jun 2019 18:13:30 +0000 (03:13 +0900)] 
meson: default to use libidn2 if both libidn2 and libidn are installed

4 years agomeson: drop unused debug option
Yu Watanabe [Fri, 28 Jun 2019 18:06:11 +0000 (03:06 +0900)] 
meson: drop unused debug option

4 years agoMerge pull request #12887 from fbuihuu/coredump-cleanup-part-1
Zbigniew Jędrzejewski-Szmek [Fri, 28 Jun 2019 14:25:46 +0000 (16:25 +0200)] 
Merge pull request #12887 from fbuihuu/coredump-cleanup-part-1

Coredump cleanup part 1

4 years agoudev-rules: add more info to errors about attr formats 12905/head
Zbigniew Jędrzejewski-Szmek [Fri, 28 Jun 2019 14:17:30 +0000 (16:17 +0200)] 
udev-rules: add more info to errors about attr formats