Filipe Brandenburger [Fri, 20 Jul 2018 18:32:55 +0000 (11:32 -0700)]
systemctl: Only wait when there's something to wait for.
Tested:
- `systemctl --wait start i-do-not-exist.service` does not wait.
- `systemctl --wait start i-do-not-exist.service valid-unit.service` does.
glitsj16 [Fri, 20 Jul 2018 23:32:02 +0000 (23:32 +0000)]
Fix grammar
Josh Soref [Fri, 20 Jul 2018 19:40:15 +0000 (15:40 -0400)]
Minor grammar changes
mostly inserting / removing commas / periods as appropriate.
occasionally fixing duplicated words, proper brand case, and singular/plurals.
Lennart Poettering [Fri, 20 Jul 2018 18:05:45 +0000 (20:05 +0200)]
Merge pull request #9671 from keszybz/tasks-max-doc
Document user@.service and friends
Zbigniew Jędrzejewski-Szmek [Fri, 20 Jul 2018 13:49:57 +0000 (15:49 +0200)]
man: add a description of user@.service, user-runtime-dir@.service, user-*.slice
Fixes #9590.
Zbigniew Jędrzejewski-Szmek [Thu, 19 Jul 2018 16:45:23 +0000 (18:45 +0200)]
man: split systemd.special(7) into separate system/user sections
User units were in the middle, which is just confusing. Let's discuss
all system units first, and all user units second.
I'm using "System manager units" and "user manager units" instead of the more
obvious "system units" and "user units", because there are also units like
"user@.service".
Lennart Poettering [Fri, 20 Jul 2018 13:33:48 +0000 (15:33 +0200)]
tests: prefer MS_SLAVE over MS_PRIVATE for turning off mount propagation
When we open our own little namespace for running our tests in, let's
turn off mount propagation only one way, rather than both ways. This is
better as this means we don't pin host mounts unnecessarily long in our
namespace, even though the host already got rid of them. This is because
MS_SLAVE in contrast to MS_PRIVATE allows umount events to propagate
from the host into our environment.
Ryutaroh Matsumoto [Fri, 20 Jul 2018 11:37:54 +0000 (20:37 +0900)]
Various accountings are not implied by their controllers
The original manpage says "Implies BBBAccounting" many times but actually that accounting is not implied by the respective resource control in v239 with the unified cgroup hierarchy. This commit removes those false explanations.
Lennart Poettering [Fri, 20 Jul 2018 14:38:53 +0000 (16:38 +0200)]
update TODO
Lennart Poettering [Fri, 20 Jul 2018 13:45:08 +0000 (15:45 +0200)]
Merge pull request #9500 from zsol/append
Add support for opening files for appending
Alan Jenkins [Thu, 21 Jun 2018 13:12:30 +0000 (14:12 +0100)]
core: remove support for API bus "started outside our own logic"
Looking at a recent Bad Day, my log contains over 100 lines of
systemd[23895]: Failed to connect to API bus: Connection refused
It is due to "systemd --user" retrying to connect to an API bus.[*] I
would prefer to avoid spamming the logs. I don't think it is good for us
to retry so much like this.
systemd was mislead by something setting DBUS_SESSION_BUS_ADDRESS. My best
guess is an unfortunate series of events caused gdm to set this. gdm has
code to start a session dbus if there is not a bus available already (and
in this case it exports the environment variable). I believe it does not
normally do this when running under systemd, because "systemd --user" and
hence "dbus.service" would already have been started by pam_systemd.
I see two possibilities
1. Rip out the check for DBUS_SESSION_BUS_ADDRESS entirely.
2. Only check for DBUS_SESSION_BUS_ADDRESS on startup. Not in the
"recheck" logic.
The justification for 2), is that the recheck is called from unit_notify(),
this is used to check whether the service just started (or stopped) was
"dbus.service". This reason for rechecking does not apply if we think
the session bus was started outside our logic.
But I think we can justify 1). dbus-daemon ships a statically-enabled
/usr/lib/systemd/user/dbus.service, which would conflict with an attempt to
use an external dbus. Also "systemd --user" is started from user@.service;
if you try to start it manually so that it inherits an environment
variable, it will conflict if user@.service was started by pam_systemd
(or loginctl enable-linger).
Lennart Poettering [Fri, 20 Jul 2018 11:55:56 +0000 (13:55 +0200)]
Merge pull request #9516 from keszybz/module-load-unification
Module load unification
Lennart Poettering [Fri, 20 Jul 2018 11:22:01 +0000 (13:22 +0200)]
Merge pull request #9614 from poettering/negative-sec
parse-util: make sure "-0.-0s" is not considered a valid time specifi…
Zsolt Dollenstein [Tue, 3 Jul 2018 19:22:29 +0000 (12:22 -0700)]
Add support for opening files for appending
Addresses part of #8983
Yu Watanabe [Fri, 20 Jul 2018 08:21:10 +0000 (17:21 +0900)]
analyze: fix width calculation in plot command
Lennart Poettering [Fri, 20 Jul 2018 10:38:49 +0000 (12:38 +0200)]
Merge pull request #9659 from yuwata/fix-network-memleak2
fix networkd memleak and voidify several function calls
Lennart Poettering [Fri, 20 Jul 2018 07:50:28 +0000 (09:50 +0200)]
Merge pull request #9661 from yuwata/add-sigprocmask-to-short-lived-daemons
Add sigprocmask to short lived daemons
Yu Watanabe [Fri, 20 Jul 2018 06:00:02 +0000 (15:00 +0900)]
hostname: set sd_event_add_signal()
Yu Watanabe [Fri, 20 Jul 2018 05:59:36 +0000 (14:59 +0900)]
locale: set sd_event_add_signal()
Yu Watanabe [Fri, 20 Jul 2018 05:59:23 +0000 (14:59 +0900)]
timedate: set sd_event_add_signal()
Filipe Brandenburger [Fri, 20 Jul 2018 04:50:35 +0000 (21:50 -0700)]
parse-util: make sure "3.+1s" or "3. 1s" are not considered valid time specification
Indeed, strtoll() is super-hard to use properly! :-(
Also added more tests for those cases and copied the tests to parse_nsec as well.
Yu Watanabe [Fri, 20 Jul 2018 02:30:11 +0000 (11:30 +0900)]
timesync: voidify sd_event_add_signal() and sd_event_set_watchdog()
Yu Watanabe [Fri, 20 Jul 2018 02:29:59 +0000 (11:29 +0900)]
resolve: voidify sd_event_add_signal() and sd_event_set_watchdog()
Yu Watanabe [Fri, 20 Jul 2018 02:29:49 +0000 (11:29 +0900)]
network: voidify sd_event_add_signal() and sd_event_set_watchdog()
Yu Watanabe [Fri, 20 Jul 2018 02:23:24 +0000 (11:23 +0900)]
network: add missing sd_netlink_unref()
Zbigniew Jędrzejewski-Szmek [Fri, 6 Jul 2018 10:47:39 +0000 (12:47 +0200)]
udev-builtin-kmod: adjust logging
I guess the one about "execute" was from the time when modprobe was called
directly.
Zbigniew Jędrzejewski-Szmek [Fri, 6 Jul 2018 10:41:50 +0000 (12:41 +0200)]
core: use the generic module_load() function
This allows aliases to be used for the basic modules we load from pid1 before
udev is started. In #9501 the kernel renamed autofs4 to autofs, with "autofs4"
as alias, but we wouldn't load the module, because we didn't follow aliases.
The kernel change was reverted, but it's probably better to support aliases.
Zbigniew Jędrzejewski-Szmek [Thu, 19 Jul 2018 16:27:22 +0000 (18:27 +0200)]
shared/module-util: fix preexisting mixup with errno sign
Zbigniew Jędrzejewski-Szmek [Fri, 6 Jul 2018 10:28:09 +0000 (12:28 +0200)]
udev-builtin-kmod: use the generic module_load() function
There should be no functional change.
Zbigniew Jędrzejewski-Szmek [Thu, 19 Jul 2018 08:48:46 +0000 (10:48 +0200)]
man: fix list-files example
The dot is only shown for failed units.
Alternative for #9644.
Shengyao Xue [Thu, 19 Jul 2018 09:30:03 +0000 (17:30 +0800)]
Micmute Key support of ThinkCentre M820z and M920z (#9619)
Micmute Key support of ThinkCentre M820z and M920z
There was a ThinkCentre M800z Micmute Key support entry.
But on new models M820z and M920z, the lines must change a bit,
the keyboard:name... must change to evdev:name.
Already tested on the M820z and M920z hardwares.
Per Poettering's comment in https://github.com/systemd/systemd/pull/9619,
We better combine M800z and M820/M920z entries and use the "evdev" prefix.
Yu Watanabe [Wed, 18 Jul 2018 09:12:50 +0000 (18:12 +0900)]
resolve: drop unused slot
Filipe Brandenburger [Wed, 18 Jul 2018 02:43:20 +0000 (19:43 -0700)]
coverity: Add custom assertion macros for Coverity
These custom macros make the expression go through a function, in order
to prevent ASSERT_SIDE_EFFECT false positives on our macros such as
assert_se() and assert_return() that cannot be disabled and will always
evaluate their expressions.
This technique has been described and recommended in:
https://community.synopsys.com/s/question/0D534000046Yuzb/suppressing-assertsideeffect-for-functions-that-allow-for-sideeffects
Tested by doing a local cov-build and uploading the resulting tarball to
scan.coverity.com, confirmed that the ASSERT_SIDE_EFFECT false positives
were gone.
Jérémy Nouhaud [Wed, 18 Jul 2018 22:41:56 +0000 (00:41 +0200)]
Add HP Chromebook 14 (Falco) HWDB rule to fix scroll stutter (#9646)
Lennart Poettering [Wed, 18 Jul 2018 19:03:02 +0000 (21:03 +0200)]
Merge pull request #9600 from keszybz/systemctl-mask-check
Systemctl mask check
Lennart Poettering [Wed, 18 Jul 2018 19:00:43 +0000 (21:00 +0200)]
Merge pull request #9346 from keszybz/journald-exact2
Store a copy of the input message if any stripping or truncation occurs
Yu Watanabe [Tue, 17 Jul 2018 08:53:22 +0000 (17:53 +0900)]
sd-bus: make bus_slot_disconnect() also unref the slot object
This makes bus_slot_disconnect() unref the slot object from bus when
`unref == true` and it is floating, as the function removes the
reference from the relevant bus object.
This reverts
20d4ee2cbc21e0c4d2dd6c01d5a18a4cf0d98222, as it
introduces #9604.
Fixes #9604.
Lennart Poettering [Wed, 18 Jul 2018 18:32:28 +0000 (20:32 +0200)]
Merge pull request #9643 from keszybz/two-meson-fixmes
Two meson fixmes
Lennart Poettering [Wed, 18 Jul 2018 18:32:03 +0000 (20:32 +0200)]
Merge pull request #9633 from yuwata/network-fix-memleak
network: fix memleak
Saleem Rashid [Tue, 17 Jul 2018 21:44:59 +0000 (22:44 +0100)]
hwdb: Add force-release for Clevo W65_67SZ media keys
Lennart Poettering [Wed, 18 Jul 2018 16:40:15 +0000 (18:40 +0200)]
Merge pull request #9640 from keszybz/move-dont-destroy-bus
Move BUS_DONT_DESTROY
Lennart Poettering [Wed, 18 Jul 2018 16:37:39 +0000 (18:37 +0200)]
hwdb: fix trailing whitespace
Correct whitespace mess introduced by
dc6e5724df3d9b2a5863a9aea8fa9413dbfaa23d.
Zbigniew Jędrzejewski-Szmek [Wed, 18 Jul 2018 15:42:06 +0000 (17:42 +0200)]
meson: remove false check for key_serial_t
key_serial_t is defined in keyutil.h, which wasn't included in the header list
in the test, so the test always failed. We were always compiling stuff with
!HAVE_KEY_SERIAL_T.
We could try to add keyutil.h to the test, but then we'd have to first check if
it is available, which just doesn't seem worth the trouble.
key_serial_t should always be defined as int32_t. Let's keep the uncoditional
define, since repeated compatible typedefs are not a problem, and it allows us
to compile even if the header file is missing. If there's ever a change in the
definition, we'll have to adjust the code for the different type anyway, and
our compiler will tell us.
Zbigniew Jędrzejewski-Szmek [Wed, 18 Jul 2018 15:26:17 +0000 (17:26 +0200)]
meson: unify linux/stat.h check with other checks and use _GNU_SOURCE
Using _GNU_SOURCE is better because that's how we include the headers in the
actual build, and some headers define different stuff when it is defined.
sys/stat.h for example defines 'struct statx' conditionally.
Zbigniew Jędrzejewski-Szmek [Wed, 18 Jul 2018 10:23:59 +0000 (12:23 +0200)]
bus: add comment to explain assert
apnix-uk [Tue, 17 Jul 2018 22:00:16 +0000 (23:00 +0100)]
Add accelerometer mount matrix for Linx 12X64
Chen Qi [Wed, 18 Jul 2018 08:33:29 +0000 (16:33 +0800)]
man/systemd.resource-control.xml: point user to correct url
cpu.cfs_quota_us is actually explained in sched-bwc.txt instead of
sched-design-CFS.txt.
Zbigniew Jędrzejewski-Szmek [Wed, 18 Jul 2018 10:16:33 +0000 (12:16 +0200)]
bus: move BUS_DONT_DESTROY calls after asserts
It's not useful to bump the reference count before checking if the object is
NULL. Thanks to
d40f5cc498 we can do this ;).
Related to https://bugzilla.redhat.com/show_bug.cgi?id=1576084,
https://bugzilla.redhat.com/show_bug.cgi?id=1575340,
https://bugzilla.redhat.com/show_bug.cgi?id=1575350. I'm not sure why those two
people hit this code path, while most people don't. At least we won't abort.
Yu Watanabe [Wed, 18 Jul 2018 04:07:27 +0000 (13:07 +0900)]
network: free routes assigned to link
Yu Watanabe [Wed, 18 Jul 2018 04:06:34 +0000 (13:06 +0900)]
network: simplify link_free()
Yu Watanabe [Wed, 18 Jul 2018 03:37:50 +0000 (12:37 +0900)]
network: move sd_event initialization to manager_new()
Evgeny Vereshchagin [Thu, 5 Jul 2018 16:30:52 +0000 (16:30 +0000)]
tests: allow passing additional arguments to nspawn via NSPAWN_ARGUMENTS
Evgeny Vereshchagin [Thu, 5 Jul 2018 15:14:07 +0000 (15:14 +0000)]
tests: use the asan wrapper to boot a VM/container if systemd is built with ASAN
Evgeny Vereshchagin [Thu, 5 Jul 2018 04:09:30 +0000 (04:09 +0000)]
tests: create the asan wrapper automatically if systemd has been built with ASAN
Filipe Brandenburger [Tue, 17 Jul 2018 18:32:40 +0000 (11:32 -0700)]
bus-socket: Fix line_begins() to accept word matching full string
The switch to memory_startswith() changed the logic to only look for a space or
NUL byte after the matched word, but matching the full size should also be
acceptable.
This changed the behavior of parsing of "AUTH\r\n", where m will be set to 4,
since even though the word will match, the check for it being followed by ' '
or NUL will make line_begins() return false.
Tested:
- Using netcat to connect to the private socket directly:
$ echo -ne '\0AUTH\r\n' | sudo nc -U /run/systemd/private
REJECTED EXTERNAL ANONYMOUS
- Running the Ignition blackbox test:
$ sudo sh -c 'PATH=$PWD/bin/amd64:$PATH ./tests.test'
PASS
Fixes:
d27b725abf64a19a6b2f99332b663f17ad046771
Lennart Poettering [Mon, 16 Jul 2018 10:33:18 +0000 (12:33 +0200)]
sleep: tiny coding style updates
No change in behaviour
Lennart Poettering [Thu, 12 Jul 2018 19:03:53 +0000 (21:03 +0200)]
man: elaborate a bit on the effect of PrivateNetwork=
Triggered by this thread:
https://lists.freedesktop.org/archives/systemd-devel/2018-July/040992.html
Filipe Brandenburger [Mon, 16 Jul 2018 22:16:37 +0000 (15:16 -0700)]
resolvectl: Take empty string argument to clear lists in "dns", "domain" and "nta" options
The current CLI does not support a way to clear these lists, since without any
additional arguments, the command will list the current values.
Introduce a new way to clear the lists by passing a single '' argument to these
subcommands.
Update the man page to document this.
Tested:
$ build/resolvectl domain eth1
Link 3 (eth1): ~.
$ build/resolvectl domain eth1 ''
$ build/resolvectl domain eth1
Link 3 (eth1):
$ build/resolvectl domain eth1 '~.' '~example.com'
$ build/resolvectl domain eth1
Link 3 (eth1): ~. ~example.com
$ build/resolvectl domain eth1 ''
$ build/resolvectl domain eth1
Link 3 (eth1):
$ build/resolvectl domain eth1 '~.'
$ build/resolvectl domain eth1
Link 3 (eth1): ~.
And similar for "dns" and "nta".
Lennart Poettering [Tue, 17 Jul 2018 11:05:39 +0000 (13:05 +0200)]
man: fix --ignore-inhibitors docs
Reported here:
https://lists.freedesktop.org/archives/systemd-devel/2018-June/040939.html
Also see:
https://lists.freedesktop.org/archives/systemd-devel/2018-July/041036.html
Lennart Poettering [Mon, 16 Jul 2018 10:18:36 +0000 (12:18 +0200)]
README: clarify that not only systemd should use prefix=/usr, but its deps too
See: #9547
Lennart Poettering [Mon, 16 Jul 2018 16:03:33 +0000 (18:03 +0200)]
man: clarify that prefixing ExecStart= lines with "-" won't cause systemd to not record non-zero exit statuses
See: #9588
Lennart Poettering [Tue, 17 Jul 2018 11:01:46 +0000 (13:01 +0200)]
parse-util: make sure "-0.-0s" is not considered a valid time specification
Did I mention that strtoll() is super-hard to use properly?
Lennart Poettering [Tue, 17 Jul 2018 10:40:52 +0000 (12:40 +0200)]
Merge pull request #9601 from yuwata/small-fixes
Small fixes
Yu Watanabe [Tue, 17 Jul 2018 03:36:02 +0000 (12:36 +0900)]
network: drop unused slots
Martin Pitt [Mon, 16 Jul 2018 19:36:36 +0000 (21:36 +0200)]
Merge pull request #9597 from mbiebl/tests-initrd
Fix initrd for tests
Yu Watanabe [Mon, 16 Jul 2018 18:12:19 +0000 (03:12 +0900)]
man: fix group name for systemd-networkd
Yu Watanabe [Mon, 16 Jul 2018 18:10:29 +0000 (03:10 +0900)]
login: fix typo in log message
Reported in #9590.
Yu Watanabe [Mon, 16 Jul 2018 18:06:33 +0000 (03:06 +0900)]
process-util: do not hide global variable
Suggested by LGTM.
Yu Watanabe [Sun, 15 Jul 2018 13:31:37 +0000 (22:31 +0900)]
sysusers,tmpfiles: re-create systemd-network, systemd-resolve and systemd-timesync
This partially reverts
d4e9e574ea0b5d23598a317e68399584d229568b,
0187368cadea183e18c6d575a9d6b7f491a402af, and
4240cb02fda90ba11dfc0114201e42691132c6a9.
The services systemd-networkd, systemd-resolved, and systemd-timesyncd
enable DynamicUsers= and have bus interfaces. Unfortunately, these
has many problems now. Let us create the relevant users, at least,
tentatively.
Fixes #9503.
remueller [Mon, 16 Jul 2018 14:56:01 +0000 (16:56 +0200)]
tmpfiles: set only default acls to folders #9545 (#9599)
Check if the fd is a folder before setting default acls
Tested:
Ubuntu 18.04.
test.conf: A+ /tmp/test - - - - u:user2:rw,d:u:user1:rwx
The folder /tmp/test looks like
/tmp/test/file1
/tmp/test/folder2
start systemd-tmpfiles manually
Fixes: #9545
Zbigniew Jędrzejewski-Szmek [Mon, 16 Jul 2018 14:03:47 +0000 (16:03 +0200)]
gitignore: add .gdb_history
This is the default file gdb will use.
Yu Watanabe [Mon, 16 Jul 2018 14:02:32 +0000 (23:02 +0900)]
Merge pull request #9550 from nosada/fix-9549
format-table: make all widths be set properly
Zbigniew Jędrzejewski-Szmek [Mon, 16 Jul 2018 13:18:21 +0000 (15:18 +0200)]
systemctl: allow 'edit' to work on templates again
This got broken in
9d9dd746d461e4524fb3644b20b8138448d666f2, because a template
is not a valid unit, so the check for being masked failed. Avoid this by
handling templates specially. Fixes #9554.
Also, this improves 'cat' with masked units:
(before) $ systemctl cat foofoofoo@.service
Failed to derive unit name prefix from unit name: Invalid argument
Failed to derive unit name prefix from unit name: Invalid argument
Failed to derive unit name prefix from unit name: Invalid argument
Failed to derive unit name prefix from unit name: Invalid argument
Failed to derive unit name prefix from unit name: Invalid argument
Failed to derive unit name prefix from unit name: Invalid argument
Failed to derive unit name prefix from unit name: Invalid argument
Failed to derive unit name prefix from unit name: Invalid argument
Failed to derive unit name prefix from unit name: Invalid argument
Failed to derive unit name prefix from unit name: Invalid argument
(after) $ build/systemctl cat foofoofoo@.service
In check_triggering_units(), the call to unit_is_masked() is replaced with an
open-coded check. This is a bit unfortunate, but unit_is_masked() now requires
LookupPaths to be initialized, which we don't have or need in this case, so it
seems easiest to just accept this tiny code duplication.
Yu Watanabe [Fri, 13 Jul 2018 08:38:47 +0000 (17:38 +0900)]
sd-bus: make BUS_DEFAULT_TIMEOUT configurable
This adds sd_bus_{get,set}_method_call_timeout().
If the timeout is not set or set to 0, then the timeout value is
parsed from $SYSTEMD_BUS_TIMEOUT= environment variable. If the
environment variable is not set, then built-in timeout is used.
Lennart Poettering [Mon, 16 Jul 2018 13:01:12 +0000 (15:01 +0200)]
Merge pull request #9530 from keszybz/sd-bus-doc
More documentation for sd-bus
Zbigniew Jędrzejewski-Szmek [Fri, 6 Jul 2018 09:57:54 +0000 (11:57 +0200)]
Move module-util.h to src/shared/ and load_module() to libshared
Unfortunately this needs libshared to link to libkmod. Before it was linked
into systemd-udevd, udevadm, and systemd each seperately. On most systems this
doesn't make much difference, because at least systemd would be installed, but
it might not be in small chroots. It is a small library, so I hope this is not
a big issue.
Zbigniew Jędrzejewski-Szmek [Mon, 16 Jul 2018 10:44:24 +0000 (12:44 +0200)]
tree-wide: use "polkit" to refer to PolicyKit/polkit
Back in 2012 the project was renamed, see the release notes for v 0.105
[https://cgit.freedesktop.org/polkit/tree/NEWS#n754]. Let's update our
documentation and comments to do the same. Referring to PolicyKit is confusing
to users because at the time the polkit api changed too, and we support the new
version. I updated NEWS too, since all the references to PolicyKit there were
added after the rename.
"PolicyKit" is unchanged in various URLs and method call names.
Zbigniew Jędrzejewski-Szmek [Sun, 8 Jul 2018 13:14:46 +0000 (15:14 +0200)]
meson: allow systemd.directives and .index to be built if -Dman=false
See
559d215b6733bb46533a52080522a7feca183aa8 for justification.
Zbigniew Jędrzejewski-Szmek [Sun, 8 Jul 2018 13:09:23 +0000 (15:09 +0200)]
man: add sd_bus_set_description(3)
Zbigniew Jędrzejewski-Szmek [Sun, 8 Jul 2018 12:11:13 +0000 (14:11 +0200)]
man: add sd_bus_reply_method_error(3)
Zbigniew Jędrzejewski-Szmek [Sun, 8 Jul 2018 11:51:18 +0000 (13:51 +0200)]
man: add sd_bus_message_copy(3)
Zbigniew Jędrzejewski-Szmek [Sun, 8 Jul 2018 10:49:32 +0000 (12:49 +0200)]
man: add sd_bus_message_new_error(3)
Michael Biebl [Mon, 16 Jul 2018 09:27:44 +0000 (11:27 +0200)]
test: Drop SKIP_INITRD for QEMU-based tests
Not all distros support booting without an initrd. E.g. the Debian
kernel builds ext4 as a module and so relies on an initrd to
successfully start the QEMU-based images.
Filipe Brandenburger [Mon, 16 Jul 2018 05:43:35 +0000 (22:43 -0700)]
build-sys: Detect whether struct statx is defined in sys/stat.h
Starting with glibc 2.27.9000-36.fc29, include file sys/stat.h will have a
definition for struct statx, in which case include file linux/stat.h should be
avoided, in order to prevent a duplicate definition.
In file included from ../src/basic/missing.h:18,
from ../src/basic/util.h:28,
from ../src/basic/hashmap.h:10,
from ../src/shared/bus-util.h:12,
from ../src/libsystemd/sd-bus/bus-creds.c:11:
/usr/include/linux/stat.h:99:8: error: redefinition of ‘struct statx’
struct statx {
^~~~~
In file included from /usr/include/sys/stat.h:446,
from ../src/basic/util.h:19,
from ../src/basic/hashmap.h:10,
from ../src/shared/bus-util.h:12,
from ../src/libsystemd/sd-bus/bus-creds.c:11:
/usr/include/bits/statx.h:36:8: note: originally defined here
struct statx
^~~~~
Extend our meson.build to look for struct statx when only sys/stat.h is
included and, in that case, do not include linux/stat.h anymore.
Tested that systemd builds correctly when using a glibc version that includes a
definition for struct statx.
glibc Fedora RPM update:
https://src.fedoraproject.org/rpms/glibc/c/
28cb5d31fc1e5887912283c889689c47076278ae
glibc upstream commit:
https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=
fd70af45528d59a00eb3190ef6706cb299488fcd
Yu Watanabe [Mon, 9 Jul 2018 05:05:20 +0000 (14:05 +0900)]
login: use parse_uid() when unmounting user runtime directory
When unmounting user runtime directory, only UID is necessary,
and the corresponding user may not exist anymore.
This makes first try to parse the input by parse_uid(), and only if it
fails, prase the input by get_user_creds().
Fixes #9541.
Michael Biebl [Sun, 15 Jul 2018 19:13:56 +0000 (21:13 +0200)]
test: Fix typo in TEST-19-DELEGATE
Yu Watanabe [Thu, 12 Jul 2018 08:23:07 +0000 (17:23 +0900)]
format-table: fix typo in comment
Yu Watanabe [Thu, 12 Jul 2018 05:20:09 +0000 (14:20 +0900)]
test: add a reproducer of issue #9549
Lennart Poettering [Fri, 13 Jul 2018 18:32:37 +0000 (20:32 +0200)]
Merge pull request #9462 from yuwata/strv_split
make strv_split() accept empty string and use it in pager_open()
Yu Watanabe [Sun, 8 Jul 2018 14:09:18 +0000 (23:09 +0900)]
sd-bus: unref slot->match_callback.install_slot when slot is disconnected
When a slot is disconnected, then slot->match_callback.install_slot
is also disconnected. So, bus_slot_disconnect() removes the install_slot
from the list of slots in bus, although it is a floating object.
This makes install_slot unreffed from bus when it is disconnected.
Fixes #9505 and #9510.
Lennart Poettering [Fri, 13 Jul 2018 17:50:14 +0000 (19:50 +0200)]
Merge pull request #9534 from martinpitt/nm-test
Fix networkd test
Yu Watanabe [Sun, 8 Jul 2018 16:14:37 +0000 (01:14 +0900)]
machinectl: fix verbosity of import-raw or friends
This partially reverts
31d99bd172b17179ec24f63fc8ca4d6530dc98ae.
Fixes #9527.
Yu Watanabe [Sun, 8 Jul 2018 20:40:01 +0000 (05:40 +0900)]
pull: initialize libgcrypt before calling any functions provided by libgcrypt
This fixes the following warning:
```
systemd-pull[4065]: Libgcrypt warning: missing initialization - please fix the application
```
Jan Janssen [Tue, 10 Jul 2018 08:44:06 +0000 (10:44 +0200)]
bls: Allow options to be used more than once
This just documents what we already allow anyways.
Lennart Poettering [Fri, 13 Jul 2018 17:32:09 +0000 (19:32 +0200)]
Merge pull request #9572 from yuwata/fix-9511
resolve: fix heap-use-after-free and uninitialized memory
Yu Watanabe [Thu, 12 Jul 2018 06:40:17 +0000 (15:40 +0900)]
doc: list PrivateMounts= in TRANSIENT-SETTINGS.md
Follow-up for #9153.
Michal Soltys [Fri, 13 Jul 2018 12:55:17 +0000 (14:55 +0200)]
[man] minor systemd.target manual update
Target units gain both Conflicts= and Before= against shutdown.target
(not only Conflicts=).
Peter Hutterer [Thu, 12 Jul 2018 22:39:09 +0000 (08:39 +1000)]
hwdb: deprecate the POINTINGSTICK_CONST_ACCEL property
The only known consumer of this property was libinput but it stopped using
this property since libinput 1.9 (released Oct 2017). This property is
arguably not one that should be in systemd anyway - it's not a
hardware-specific property but rather a factor of the acceleration method
employed by whatever userspace handles the events.
Deprecate it but leave the values in place for backwards compatibility.
Tejun Heo [Sat, 9 Jun 2018 00:33:14 +0000 (17:33 -0700)]
core: add MemoryMin
The kernel added support for a new cgroup memory controller knob memory.min in
bf8d5d52ffe8 ("memcg: introduce memory.min") which was merged during v4.18
merge window.
Add MemoryMin to support memory.min.
Peter Hutterer [Thu, 12 Jul 2018 05:52:18 +0000 (15:52 +1000)]
hwdb: remove stray 'i' in hwdb match string for the HP Spectre (#9571)
Looks like vim detritus, introduced in
f8de7c1875841f277d0b0e46d4a27d4e2b893d1f