]> git.ipfire.org Git - thirdparty/systemd.git/log
thirdparty/systemd.git
6 years agoMerge pull request #6866 from sourcejedi/set-linger2
Lennart Poettering [Wed, 15 Nov 2017 10:15:15 +0000 (11:15 +0100)] 
Merge pull request #6866 from sourcejedi/set-linger2

logind: fix `loginctl enable-linger`

6 years agopo: specify a glib preset (#7333)
Piotr Drąg [Wed, 15 Nov 2017 06:45:24 +0000 (07:45 +0100)] 
po: specify a glib preset (#7333)

It gives us a list of standard arguments passed to gettext,
see <http://mesonbuild.com/i18n-module.html#i18ngettext>.

6 years agocore: fix bus property logic for RequiresMountsFor= dependencies (#7332)
Lennart Poettering [Tue, 14 Nov 2017 20:50:59 +0000 (21:50 +0100)] 
core: fix bus property logic for RequiresMountsFor= dependencies (#7332)

We get a pointer to a pointer to a Hashmap, instead of just a pointer to
a Hashmap, let's handle that properly.

6 years agoMerge pull request #7313 from keszybz/msgformat
Zbigniew Jędrzejewski-Szmek [Tue, 14 Nov 2017 20:48:42 +0000 (21:48 +0100)] 
Merge pull request #7313 from keszybz/msgformat

i18n: drop intltool use, use meson's merge_file directly

6 years agoudev: net_setup_link: don't error out when we couldn't apply link config (#7328)
Michal Sekletar [Tue, 14 Nov 2017 18:29:37 +0000 (19:29 +0100)] 
udev: net_setup_link: don't error out when we couldn't apply link config (#7328)

It is possible that kernel will reject our netlink message that
configures the link. However, we should always make sure that interface
will be named properly otherwise we can leave interfaces having
unpredictable kernel names. Thus we don't return early and continue to
export name and link file properties.

Suggested-by: Tom Gundersen <teg@jklm.no>
6 years agologind: fix SetLinger to authorize by client's effective User ID 6866/head
Alan Jenkins [Fri, 15 Sep 2017 16:35:02 +0000 (17:35 +0100)] 
logind: fix SetLinger to authorize by client's effective User ID

SetLinger is authorized by the PolicyKit action "set-self-linger", if it is
not passed an explicit UID.

According to comments we were determining the default UID from the client's
session.  However, user processes e.g. which are run from a terminal
emulator do not necessarily belong to a session scope unit.  They may
equally be started from the systemd user manager [1][2].  Actually the
comment was wrong, and it would also have worked for processes
started from the systemd user manager.

Nevertheless it seems to involve fetching "augmented credentials" i.e.
it's using a racy method, so we shouldn't have been authenticating based
on it.

We could change the default UID, but that raises issues especially for
consistency between the methods.  Instead we can just use the clients
effective UID for authorization.

This commit also fixes `loginctl enable-linger $USER` to match the docs
that say it was equivalent to `loginctl enable-linger` (given that $USER
matches the callers user and owner_uid).  Previously, the former would not
have suceeded for unpriviliged users in the default configuration.

[1] It seems the main meaning of per-session scopes is tracking the PAM
login process.  Killing that provokes logind to revoke device access.  Less
circularly, killing it provokes getty to hangup the TTY.

[2] User units may be started with an environment which includes
XDG_SESSION_ID (presuambly GNOME does this?).  Or not.

6 years agologinctl: enable-linger does not need fallback to XDG_SESSION_ID
Alan Jenkins [Mon, 18 Sep 2017 17:04:59 +0000 (18:04 +0100)] 
loginctl: enable-linger does not need fallback to XDG_SESSION_ID

To maintain consistency with `loginctl user-status`, drop the fallback to
XDG_SESSION_ID for `loginctl enable-linger`.  The fallback was unnecessary
and also incorrect: it passed the numeric value of the session identifier
as a UID value.

6 years agologind: comment use of *_get_session()
Alan Jenkins [Sun, 17 Sep 2017 14:49:12 +0000 (15:49 +0100)] 
logind: comment use of *_get_session()

The manpages tell that such calls have quite limited meaning.  logind has
a few in the implementation of what remains of the session concept.

At the same time, logind basically exposes sd_pid_get_session() as public
API.  This is absolutely required, to retain compatability e.g. with Xorg.
But client code will work in more situations if it avoids assuming that it
runs in a session itself.

Its use inside the login session could be replaced with $XDG_SESSION_ID
(which pam_systemd sets).  I don't know whether it would be useful to
change Xorg at this point or not.  But if you were building something new,
you would think about whether you want to support running it in a systemd
service.

Comment these logind API features, acknowledging the reason they exist is
based in history.  I.e. help readers avoid drawing implications from their
existence which apply to history, but not the current general case.

Finally, searching these revealed a call to sd_pid_get_session() in
implementing some types of logind inhibitors.  So these inhibitors don't
work as intended when taken from inside a systemd user service :(.  Comment
this as well, deferring it as ticket #6852.

6 years agologind: more specific error message for unknown users
Alan Jenkins [Tue, 17 Oct 2017 15:03:58 +0000 (16:03 +0100)] 
logind: more specific error message for unknown users

If you try to run `loginctl user-status` on a non-logged in user to see
whether "Linger" is enabled, it doesn't work.

If you're already an expert in logind, the fact that the user is considered
unknown actually tells you the user is not lingering.  So, probably they
they do not have lingering enabled.  I think we can point towards this
without being misleading.

I also reword it because I thought it was slightly confusing to run
`loginctl user-status root` and get an error back about "User 0".  Try to
be more specific, that it is "User ID 0".

6 years agologind: "self" objects which do not apply - return specific error messages
Alan Jenkins [Sat, 14 Oct 2017 08:25:56 +0000 (09:25 +0100)] 
logind: "self" objects which do not apply - return specific error messages

It's confusing that the bus API has aliases like "session/self" that return
an error based on ENXIO, when it also has methods that return e.g.
NO_SESSION_FOR_PID for the same problem.  The latter kind of error includes
more specifically helpful messages.

"user/self" is the odd one out; it returns a generic UnknownObject error
when it is not applicable to the caller.  It's not clear whether this was
intentional, but at first I thought it was more correct.  More
specifically, user_object_find() was returning 0 for "user/self", in the
same situations (more or less) where user_node_enumerator() was omitting
"user/self".  I thought that was a good idea, because returning e.g. -ENXIO instead
suggested that there _is_ something specific on that path.  And it could be
confused with errors of the method being called.

Therefore I suggested changing the enumerator, always admitting that there
is a handler for the path "foo/self", but returning a specific error when
queried.  However this interacts poorly with tools like D-Feet or `busctl`.
In either tool, looking at logind would show an error message, and then go
on to omit "user/self" in the normal listing.  These tools are very useful,
so we don't want to interfere with them.

I think we can change the error codes without causing problems.  The self
objects were not listed in the documentation.  They have been suggested to
other projects - but without reference to error reporting.  "seat/self" is
used by various Wayland compositors for VT switching, but they don't appear
to reference specific errors.

We _could_ insist on the link between enumeration and UnknownObject, and
standardize on that as the error for the aliases.  But I'm not aware of any
practical complaints, that we returned an error from an object that didn't
exist.

Instead, let's unify the codepaths for "user/self" vs GetUserByPid(0) etc.
We will return the most helpful error message we can think of, if the
object does not exist.  E.g. for "session/self", we might return an error
that the caller does not belong to a session.  If one of the compositors is
ever simplified to use "session/self" in initialization, users would be
able to trigger such errors (e.g. run `gnome-shell` inside gnome-terminal).
The message text will most likely be logged.  The user might not know what
the "session" is, but at least we'll be pointing towards the right
questions.  I think it should also be clearer for development / debugging.

Unifying the code paths is also slightly helpful for auditing / marking
calls to sd_bus_creds_get_session() in subsequent commits.

6 years agologind: remove an obscure dbus error from GetSessionByPID(0) and friends
Alan Jenkins [Sat, 7 Oct 2017 11:24:02 +0000 (12:24 +0100)] 
logind: remove an obscure dbus error from GetSessionByPID(0) and friends

GetSessionByPID(0) can fail with NO_SESSION_FOR_PID.  More obscurely, if
the session is abandoned, it can return NO_SUCH_SESSION.  It is not clear
that the latter was intended.  The message associated with the former,
hints that this was overlooked.

We don't have a document enumerating the errors.  Any specific
error-handling in client code, e.g. translated messages, would also be
liable to overlook the more obscure error code.

I can't see any equivalent condition for GetUserByPID(0).  On the other
hand, the code did not return NO_USER_FOR_PID where it probably should.
The relevant code is right next to that for GetSessionByPID(0), so it will
be simpler to understand if both follow the same pattern.

6 years agobusctl: fix minor memory leak in busctl (#7331) 6444/head
Lennart Poettering [Tue, 14 Nov 2017 16:59:50 +0000 (17:59 +0100)] 
busctl: fix minor memory leak in busctl (#7331)

Fixes: #7330
6 years agopo: add a copy of polkit its rules 7313/head
Zbigniew Jędrzejewski-Szmek [Mon, 13 Nov 2017 20:54:45 +0000 (21:54 +0100)] 
po: add a copy of polkit its rules

It's just a few lines, but this way we avoid a dependency on polkit, and
can use meson's i18n stuff on older distros.

6 years agoRemove TODO entry (#7326)
Lucas Werkmeister [Tue, 14 Nov 2017 09:57:54 +0000 (10:57 +0100)] 
Remove TODO entry (#7326)

This was documented in b0e8cec2dd (#7317).

6 years agoman: document > /dev/stderr pitfalls (#7317)
Lennart Poettering [Tue, 14 Nov 2017 09:51:09 +0000 (10:51 +0100)] 
man: document > /dev/stderr pitfalls (#7317)

Fixes: #7254
See: #2473

6 years agocore/dbus-unit: add property_get_requires_mounts_for() to send correct message (...
Yu Watanabe [Tue, 14 Nov 2017 08:01:21 +0000 (17:01 +0900)] 
core/dbus-unit: add property_get_requires_mounts_for() to send correct message (#7322)

PR #7186 changes requires_mounts_for from strv to Hashmap.
So, it is necessary to implement a function for getting the property RequiresMountsFor=.
This introduces property_get_requires_mounts_for() which reads the Hashmap
and sends messages to bus.

Fixes #7321.

6 years agoFix error message when binding files (#7196)
Zeal Jagannatha [Tue, 14 Nov 2017 07:11:41 +0000 (23:11 -0800)] 
Fix error message when binding files (#7196)

If you use machinectl to bind a file into a container, it responds with a confusing error message about a temporary directory not being a directory.

I just swapped it to error with the source that was passed, rather than the tmpdir.

It would also be nice to be able to bind files, but that's a separate issue (#7195).

Before the change:

root@epona /var/lib/sandbox $ cat bar/foo
Hello world!
root@epona /var/lib/sandbox $ machinectl bind testing /var/lib/sandbox/bar/foo /foo
Failed to bind mount: Failed to overmount /tmp/propagate.W5TNsj/mount: Not a directory

After the change:

root@epona /var/lib/sandbox $ machinectl bind testing /var/lib/sandbox/bar/foo /foo
Failed to bind mount: Failed to overmount /var/lib/sandbox/bar/foo: Not a directory

6 years agosystemctl: print a friendly message when systemctl is invoked, but PID 1 is not syste...
Lennart Poettering [Mon, 13 Nov 2017 21:03:32 +0000 (22:03 +0100)] 
systemctl: print a friendly message when systemctl is invoked, but PID 1 is not systemd (#7318)

We only show this message when we can't talk to systemd, so that client
side install can work.

Fixes: https://bugzilla.freedesktop.org/show_bug.cgi?id=69962
6 years agocore: only warn about BPF/cgroup missing once per runtime (#7319)
Lennart Poettering [Mon, 13 Nov 2017 21:02:51 +0000 (22:02 +0100)] 
core: only warn about BPF/cgroup missing once per runtime (#7319)

Let's reduce the amount of noise a bit, there's little point in
complaining loudly about every single unit like this, let's complain
only about the first one, and then downgrade the log level to LOG_DEBUG
for the other cases.

Fixes: #7188
6 years agobasic: remove redundant check (#7320)
Topi Miettinen [Mon, 13 Nov 2017 21:00:03 +0000 (21:00 +0000)] 
basic: remove redundant check (#7320)

The check is redundant as the whole block is only evaluated if
__IGNORE_pkey_mprotect is not defined. Change to #else.

6 years agoi18n: drop intltool use, use meson's merge_file directly
Zbigniew Jędrzejewski-Szmek [Mon, 13 Nov 2017 12:30:39 +0000 (13:30 +0100)] 
i18n: drop intltool use, use meson's merge_file directly

This didn't work during the initial conversion to meson, but should now.
A sufficiently new polkit is also required, for the .its rules files.

Note that https://github.com/mesonbuild/meson/blob/master/docs/markdown/i18n-module.md
says that 'install' argument was added in meson 0.43.0. If this is accurate,
warnigs might be generated with older mesons. Fedora has 0.43.0 across the
board, but other distros probably don't, but I guess that a warning is
prefereable to having to update do latest meson.

The advantages are:
- one less dependency (intltool)
- using the generic implementation instead of our open-coded calls
- we don't need to use the fake "_" prefixes in XML

Replaces #1609, fixes #7300.

6 years agoman: rework systemd-vconsole-setup man page a bit (#7312)
Lennart Poettering [Mon, 13 Nov 2017 18:14:19 +0000 (19:14 +0100)] 
man: rework systemd-vconsole-setup man page a bit (#7312)

It's not systemd that invokes the service internally as needed, it's
systemd-localed. Correct that.

Also, stop using the word "helper". To me a "helper" constitutes
something internal, not official API. I doubt systemd-vconsole-setup
really matches that description though, hence let's better avoid the
term.

Also, clean up some other wording, and be less imbiguous, by suggesting
a single command to apply vconsole.conf instead of two.

Follow-up for 597c25d2a7c61453acd723340350e8748a5106dd

6 years agoMerge pull request #7284 from poettering/cgroup-delegate-mask
Lennart Poettering [Mon, 13 Nov 2017 11:14:23 +0000 (12:14 +0100)] 
Merge pull request #7284 from poettering/cgroup-delegate-mask

add a concept of delegating cgroups per unit while enabling specific controllers

6 years agoinstall: drop redundant printing of unit name (#7296)
Lennart Poettering [Mon, 13 Nov 2017 10:12:01 +0000 (11:12 +0100)] 
install: drop redundant printing of unit name (#7296)

We already print it as part of log_syntax() internal logic, don't print
it again, and in particular, don't print it at the end of log line, such
a strange place.

Follow-up for: 142468d89508c63262dd59335ea6d4fe82267564

6 years agoman: remove productname which resulting trademark symbol (#7193)
Shuang Liu [Mon, 13 Nov 2017 10:10:51 +0000 (11:10 +0100)] 
man: remove productname which resulting trademark symbol (#7193)

6 years agobpf-firewall: properly handle kernels where BPF cgroup is disabled but TRIE maps...
Lennart Poettering [Mon, 13 Nov 2017 09:56:43 +0000 (10:56 +0100)] 
bpf-firewall: properly handle kernels where BPF cgroup is disabled but TRIE maps are enabled (#7298)

So far, we assumed that kernels where TRIE was on also supported
BPF/cgroup stuff. That's not a correct assumption to make, hence check
for both features separately.

Fixes: #7054
6 years agoMerge pull request #7310 from keszybz/missing-pkey_mprotect
Lennart Poettering [Mon, 13 Nov 2017 09:55:00 +0000 (10:55 +0100)] 
Merge pull request #7310 from keszybz/missing-pkey_mprotect

basic/missing: add numbers for pkey_mprotect

6 years agoman: document the new Delegate= syntax 7284/head
Lennart Poettering [Thu, 9 Nov 2017 14:31:37 +0000 (15:31 +0100)] 
man: document the new Delegate= syntax

6 years agocore: rework the Delegate= unit file setting to take a list of controller names
Lennart Poettering [Thu, 9 Nov 2017 14:29:34 +0000 (15:29 +0100)] 
core: rework the Delegate= unit file setting to take a list of controller names

Previously it was not possible to select which controllers to enable for
a unit where Delegate=yes was set, as all controllers were enabled. With
this change, this is made configurable, and thus delegation units can
pick specifically what they want to manage themselves, and what they
don't care about.

6 years agocore: downgrade a log message from error to warning
Lennart Poettering [Thu, 9 Nov 2017 10:13:36 +0000 (11:13 +0100)] 
core: downgrade a log message from error to warning

Messages that do not indicate a failing operation, but where we continue
operation should be at LOG_WARN, not at LOG_ERR.

6 years agostring-util: add delete_trailing_chars() and skip_leading_chars() helpers
Lennart Poettering [Thu, 9 Nov 2017 10:12:47 +0000 (11:12 +0100)] 
string-util: add delete_trailing_chars() and skip_leading_chars() helpers

And let's port over a couple of users to the new APIs.

6 years agoconf-parser: reindent some strangely indented function headers
Lennart Poettering [Thu, 9 Nov 2017 08:26:13 +0000 (09:26 +0100)] 
conf-parser: reindent some strangely indented function headers

6 years agoconf-parser: turn three bool function params into a flags fields
Lennart Poettering [Wed, 8 Nov 2017 23:26:11 +0000 (00:26 +0100)] 
conf-parser: turn three bool function params into a flags fields

This makes things more readable and fixes some issues with incorrect
flag propagation between the various flavours of config_parse().

6 years agoconf-parser: simplify things a bit by using strextend()
Lennart Poettering [Wed, 8 Nov 2017 20:38:51 +0000 (21:38 +0100)] 
conf-parser: simplify things a bit by using strextend()

6 years agofileio: make use of DEFINE_TRIVIAL_CLEANUP_FUNC where it makes sense
Lennart Poettering [Wed, 8 Nov 2017 20:33:19 +0000 (21:33 +0100)] 
fileio: make use of DEFINE_TRIVIAL_CLEANUP_FUNC where it makes sense

6 years agocgroup: make use of unit_get_subtree_mask() where appropriate
Lennart Poettering [Wed, 8 Nov 2017 18:16:03 +0000 (19:16 +0100)] 
cgroup: make use of unit_get_subtree_mask() where appropriate

subtree_mask is own_mask | members_mask, let's make use of that to
shorten a few things

6 years agocgroup: improve cg_mask_to_string a bit, and add tests for it
Lennart Poettering [Wed, 8 Nov 2017 18:01:18 +0000 (19:01 +0100)] 
cgroup: improve cg_mask_to_string a bit, and add tests for it

6 years agocgroup-util: add brief comments clarifying which controllers are v2-only and which...
Lennart Poettering [Wed, 8 Nov 2017 17:39:28 +0000 (18:39 +0100)] 
cgroup-util: add brief comments clarifying which controllers are v2-only and which v1-only

6 years agoupdate TODO
Lennart Poettering [Wed, 8 Nov 2017 17:36:59 +0000 (18:36 +0100)] 
update TODO

6 years agonamespace: set up OS hierarchy only after mounting the new root, not before
Lennart Poettering [Wed, 8 Nov 2017 17:35:16 +0000 (18:35 +0100)] 
namespace: set up OS hierarchy only after mounting the new root, not before

Otherwise it's a pointless excercise, as we'll set up an empty directory
tree that's never going to be used.

Hence, let's move this around a bit, so that we do the basesystem
initialization exactly when RootImage= or RootDirectory= are used, but
not otherwise.

6 years agoFix creating independent VTI tunnel (#7303)
Robin McCorkell [Mon, 13 Nov 2017 09:14:36 +0000 (09:14 +0000)] 
Fix creating independent VTI tunnel (#7303)

6 years agoshared/seccomp: skip pkey_mprotect protections if the syscall is unknown 7310/head
Zbigniew Jędrzejewski-Szmek [Mon, 13 Nov 2017 08:35:49 +0000 (09:35 +0100)] 
shared/seccomp: skip pkey_mprotect protections if the syscall is unknown

When compiling with an old kernel on architectures for which the
number is not defined in missing.h, a warning is generated in missing.h.
Let's just skip the protection in this case, to allow build to proceed.

6 years agobasic/missing: add numbers for pkey_mprotect
Zbigniew Jędrzejewski-Szmek [Mon, 13 Nov 2017 08:27:53 +0000 (09:27 +0100)] 
basic/missing: add numbers for pkey_mprotect

Follow-up for b835eeb4ec1dd122b6feff2b70881265c529fcdd.

6 years agoshared/seccomp: disallow pkey_mprotect the same as mprotect for W^X mappings (#7295)
Zbigniew Jędrzejewski-Szmek [Sun, 12 Nov 2017 16:28:48 +0000 (17:28 +0100)] 
shared/seccomp: disallow pkey_mprotect the same as mprotect for W^X mappings (#7295)

MemoryDenyWriteExecution policy could be be bypassed by using pkey_mprotect
instead of mprotect to create an executable writable mapping.

The impact is mitigated by the fact that the man page says "Note that this
feature is fully available on x86-64, and partially on x86", so hopefully
people do not rely on it as a sole security measure.

Found by Karin Hossen and Thomas Imbert from Sogeti ESEC R&D.

https://bugs.launchpad.net/bugs/1725348

6 years agoseccomp: include ARM set_tls in @default (#7297)
Lennart Poettering [Sun, 12 Nov 2017 15:34:43 +0000 (16:34 +0100)] 
seccomp: include ARM set_tls in @default (#7297)

Fixes: #7135
6 years agonetworkd: improve interface rename log message a bit (#7299)
Lennart Poettering [Sun, 12 Nov 2017 15:26:58 +0000 (16:26 +0100)] 
networkd: improve interface rename log message a bit (#7299)

Let's clarify that it's not networkd that renames interfaces, but
something else (for example, udev's link builtin based on .link files)

This doesn't change any logic, it just rewords the message a bit, to
clarify that we only log this for informational purposes, not because we
execute the rename operation ourselves.

Fixes: #7143
6 years agoMerge pull request #7301 from poettering/loginctl-ellipsize
Zbigniew Jędrzejewski-Szmek [Sun, 12 Nov 2017 15:25:54 +0000 (16:25 +0100)] 
Merge pull request #7301 from poettering/loginctl-ellipsize

Fix loginctl seat sysfs tree ellipsation logic.

Simple reproducer:
loginctl --full seat-status seat0|cat
→ after this PR, all lines are shown in full. Before, lines were ellipsized to terminal width.

6 years agoMerge pull request #7186 from poettering/track-deps
Zbigniew Jędrzejewski-Szmek [Sun, 12 Nov 2017 15:14:41 +0000 (16:14 +0100)] 
Merge pull request #7186 from poettering/track-deps

rework unit dependency data structure to track why deps get created

6 years agotest-execute: change path to python3 (#7306)
Yu Watanabe [Sun, 12 Nov 2017 15:09:00 +0000 (00:09 +0900)] 
test-execute: change path to python3 (#7306)

Change python3 path from /bin/python3 to /usr/bin/python3 to make
the test work on Ubuntu Xenial.

Follow-up for #7178.

6 years agocore/mount: fstype may be NULL 7186/head
Yu Watanabe [Sun, 12 Nov 2017 13:25:58 +0000 (14:25 +0100)] 
core/mount: fstype may be NULL

6 years agoupdate TODO
Lennart Poettering [Tue, 24 Oct 2017 10:18:17 +0000 (12:18 +0200)] 
update TODO

6 years agocore: sd-bus can handle NULL strings nicely, let's use it
Lennart Poettering [Thu, 26 Oct 2017 15:26:27 +0000 (17:26 +0200)] 
core: sd-bus can handle NULL strings nicely, let's use it

No need to set an empty string here, sd-bus serializes NULL as empty
string anway.

6 years agoMerge pull request #7178 from yuwata/rfe-7169-v2
Zbigniew Jędrzejewski-Szmek [Sun, 12 Nov 2017 11:45:23 +0000 (12:45 +0100)] 
Merge pull request #7178 from yuwata/rfe-7169-v2

core: add support to specify errno in SystemCallFilter=

6 years agotest-execute: update test for SystemCallErrorNumber= 7178/head
Yu Watanabe [Sat, 11 Nov 2017 12:41:05 +0000 (21:41 +0900)] 
test-execute: update test for SystemCallErrorNumber=

6 years agocore: allow to specify errno number in SystemCallErrorNumber=
Yu Watanabe [Sat, 11 Nov 2017 12:40:20 +0000 (21:40 +0900)] 
core: allow to specify errno number in SystemCallErrorNumber=

6 years agotest: add tests for syscall:errno style in SystemCallFilter=
Yu Watanabe [Sat, 11 Nov 2017 12:39:02 +0000 (21:39 +0900)] 
test: add tests for syscall:errno style in SystemCallFilter=

6 years agocore: add support to specify errno in SystemCallFilter=
Yu Watanabe [Sat, 11 Nov 2017 12:35:49 +0000 (21:35 +0900)] 
core: add support to specify errno in SystemCallFilter=

This makes each system call in SystemCallFilter= blacklist optionally
takes errno name or number after a colon. The errno takes precedence
over the one given by SystemCallErrorNumber=.

C.f. #7173.
Closes #7169.

6 years agotest: add test for parse_errno() and parse_syscall_and_errno()
Yu Watanabe [Sat, 11 Nov 2017 12:53:56 +0000 (21:53 +0900)] 
test: add test for parse_errno() and parse_syscall_and_errno()

6 years agoparse-util: add parse_errno() and parse_syscall_and_errno()
Yu Watanabe [Sat, 11 Nov 2017 12:29:17 +0000 (21:29 +0900)] 
parse-util: add parse_errno() and parse_syscall_and_errno()

6 years agobasic/errno-list: remove errno_max() and define ERRNO_MAX as 4095
Yu Watanabe [Sat, 11 Nov 2017 12:26:10 +0000 (21:26 +0900)] 
basic/errno-list: remove errno_max() and define ERRNO_MAX as 4095

In Linux kernel code, MAX_ERRNO is defined as 4095.
Here, we use that value for ERRNO_MAX.

6 years agologinctl: rework sysfs tree dump, to honour --full and friends 7301/head
Lennart Poettering [Fri, 10 Nov 2017 20:44:29 +0000 (21:44 +0100)] 
loginctl: rework sysfs tree dump, to honour --full and friends

Let's hook up the sysfs tree output with the output flags logic,
already used when dumping log lines or process trees. This way we get
very similar output handling for line breaking/ellipsation in all three
outputs of structured data.

Fixes: #7095
6 years agostring-util: when ellipsizing to a length if (size_t) -1, become a NOP
Lennart Poettering [Fri, 10 Nov 2017 20:41:53 +0000 (21:41 +0100)] 
string-util: when ellipsizing to a length if (size_t) -1, become a NOP

Let's say that (size_t) -1 (i.e. SIZE_T_MAX) is equivalent to
"unbounded" ellipsation, i.e. ellipsation as NOP. In which case the
relevant functions become little more than strdup()/strndup().

This is useful to simplify caller code in case we want to turn off
ellipsation in certain code paths with minimal caller-side handling for
this.

6 years agomerge two lines in our get_output_flags() functions
Lennart Poettering [Fri, 10 Nov 2017 20:40:47 +0000 (21:40 +0100)] 
merge two lines in our get_output_flags() functions

loginctl, machinectl, systemctl all have very similar implementations of
a get_output_flags() functions. Simplify it by merging two lines that
set the same flag.

6 years agotree-wide: use _cleanup_(sd_bus_flush_close_unrefp) at various appropriate places
Lennart Poettering [Fri, 10 Nov 2017 20:15:44 +0000 (21:15 +0100)] 
tree-wide: use  _cleanup_(sd_bus_flush_close_unrefp) at various appropriate places

Let's shorten the code a bit.

6 years agopager: cache not only number of columns but also of lines before we open pager
Lennart Poettering [Fri, 10 Nov 2017 20:10:17 +0000 (21:10 +0100)] 
pager: cache not only number of columns but also of lines before we open pager

Not that we need it, but let's do this as matter of completeness.

6 years agologinctl: invoke sigbus_install()
Lennart Poettering [Fri, 10 Nov 2017 20:04:08 +0000 (21:04 +0100)] 
loginctl: invoke sigbus_install()

We show journal data, hence we should install the SIGBUS handler.

Similar for machinectl, where the same applies.

6 years agocore: make "tmpfs" dependencies on swapfs a "default" dep, not an "implicit"
Lennart Poettering [Thu, 26 Oct 2017 15:24:55 +0000 (17:24 +0200)] 
core: make "tmpfs" dependencies on swapfs a "default" dep, not an "implicit"

There should be a way to turn this logic of, and DefaultDependencies=
appears to be the right option for that, hence let's downgrade this
dependency type from "implicit" to "default, and thus honour
DefaultDependencies=.

This also drops mount_get_fstype() as we only have a single user needing
this now.

A follow-up for #7076.

6 years agocore: when a unit template is specified in SYSTEMD_WANTS=, instantiate it with sysfs...
Lennart Poettering [Thu, 26 Oct 2017 15:12:44 +0000 (17:12 +0200)] 
core: when a unit template is specified in SYSTEMD_WANTS=, instantiate it with sysfs path

This should make cases like the user's setup in #7109 a lot easier to
handle, as in that case we'll do the right escaping automatically.

6 years agotest: add test case for adding/removing dependencies via udev rules
Lennart Poettering [Thu, 26 Oct 2017 14:43:31 +0000 (16:43 +0200)] 
test: add test case for adding/removing dependencies via udev rules

6 years agocore: remove SYSTEMD_WANTS udev property configured dependencies at the right moment
Lennart Poettering [Thu, 26 Oct 2017 14:41:06 +0000 (16:41 +0200)] 
core: remove SYSTEMD_WANTS udev property configured dependencies at the right moment

Previously dependencies configured with SYSTEMD_WANTS would be collected
on a device unit as long as it was loaded. let's fix that, and remove
dependencies again when SYTEMD_WANTS changes.

6 years agodevice: Let's simplify device_add_udev_wants() a bit
Lennart Poettering [Thu, 26 Oct 2017 14:40:35 +0000 (16:40 +0200)] 
device: Let's simplify device_add_udev_wants() a bit

Let's drop use of one variable and make the rest more explicit.

6 years agocore: add internal API to remove dependencies again, based on dependency mask
Lennart Poettering [Thu, 26 Oct 2017 14:39:35 +0000 (16:39 +0200)] 
core: add internal API to remove dependencies again, based on dependency mask

let's make use of the dependency mask, and add internal API to remove
dependencies ago, based on bits in the dependency mask.

6 years agoman: extend documentation on the unit name escaping logic
Lennart Poettering [Thu, 26 Oct 2017 10:22:38 +0000 (12:22 +0200)] 
man: extend documentation on the unit name escaping logic

6 years agodevice: rework device_is_bound_by_mounts() a bit
Lennart Poettering [Wed, 25 Oct 2017 19:29:24 +0000 (21:29 +0200)] 
device: rework device_is_bound_by_mounts() a bit

Let's log when we can't parse the udev property, and always use the most
precise, correct types.

6 years agocore: track why unit dependencies came to be
Lennart Poettering [Wed, 25 Oct 2017 18:46:01 +0000 (20:46 +0200)] 
core: track why unit dependencies came to be

This replaces the dependencies Set* objects by Hashmap* objects, where
the key is the depending Unit, and the value is a bitmask encoding why
the specific dependency was created.

The bitmask contains a number of different, defined bits, that indicate
why dependencies exist, for example whether they are created due to
explicitly configured deps in files, by udev rules or implicitly.

Note that memory usage is not increased by this change, even though we
store more information, as we manage to encode the bit mask inside the
value pointer each Hashmap entry contains.

Why this all? When we know how a dependency came to be, we can update
dependencies correctly when a configuration source changes but others
are left unaltered. Specifically:

1. We can fix UDEV_WANTS dependency generation: so far we kept adding
   dependencies configured that way, but if a device lost such a
   dependency we couldn't them again as there was no scheme for removing
   of dependencies in place.

2. We can implement "pin-pointed" reload of unit files. If we know what
   dependencies were created as result of configuration in a unit file,
   then we know what to flush out when we want to reload it.

3. It's useful for debugging: "systemd-analyze dump" now shows
   this information, helping substantially with understanding how
   systemd's dependency tree came to be the way it came to be.

6 years agogpt-auto-generator: make sure "r" is always set
Lennart Poettering [Wed, 25 Oct 2017 18:44:25 +0000 (20:44 +0200)] 
gpt-auto-generator: make sure "r" is always set

6 years agomkosi: fix build script to use right sysvinit path
Lennart Poettering [Wed, 25 Oct 2017 18:42:38 +0000 (20:42 +0200)] 
mkosi: fix build script to use right sysvinit path

On Fedora /etc/init.d is a symlink to /etc/rc.d/init.d. Our build
scripts default to /etc/init.d since that is the LSB default. Let's make
sure the build script thus follows the symlink correctly and configures
to path explicitly, since otherwise our build artifacts in $DESTDIR are
incompatible with the setup we actually need for Fedora.

6 years agomkosi: configure mkosi.cache/ and mkosi.builddir/ explicitly
Lennart Poettering [Wed, 25 Oct 2017 18:40:04 +0000 (20:40 +0200)] 
mkosi: configure mkosi.cache/ and mkosi.builddir/ explicitly

This way these dirs will be created automatically if they are missing,
thus always guaranteeing optimal speedy behaviour.

(Well at least, after https://github.com/systemd/mkosi/pull/181 is
merged)

6 years agocore: include a bad /var/run symlink in the "tainted" string
Lennart Poettering [Tue, 24 Oct 2017 10:26:36 +0000 (12:26 +0200)] 
core: include a bad /var/run symlink in the "tainted" string

6 years agovirt: trivial whitespace fixes
Lennart Poettering [Tue, 24 Oct 2017 10:18:27 +0000 (12:18 +0200)] 
virt: trivial whitespace fixes

6 years agodevice : reload when udev generates a "changed" event (#6850)
Boucman [Fri, 10 Nov 2017 16:00:32 +0000 (17:00 +0100)] 
device : reload when udev generates a "changed" event (#6850)

6 years agoMerge pull request #7089 from oniko/luks2-support
Lennart Poettering [Fri, 10 Nov 2017 15:16:36 +0000 (16:16 +0100)] 
Merge pull request #7089 from oniko/luks2-support

LUKS2 support for systemd-cryptsetup and dissect-image

6 years agonetworkd: set dhcp_use_routes to true when dhcp_anonymize is true (#7209)
juga0 [Fri, 10 Nov 2017 15:03:43 +0000 (15:03 +0000)] 
networkd: set dhcp_use_routes to true when dhcp_anonymize is true (#7209)

It does not send duplicated options in the PRL.
Fix #7048.

6 years agocore: add missing error_message cases (#6911)
Alan Jenkins [Fri, 10 Nov 2017 14:57:52 +0000 (14:57 +0000)] 
core: add missing error_message cases (#6911)

We neglected to set error_message for errors which occur _after_ the
`finish` label.  These fatal errors only happen in paths where `finish`
was reached successfully, i.e. error_message has not already been set
(and this analysis is simple enough that this need not cause too much
headaches.  Also our new assignments to error_message come immediately
after execve() calls, which would have lost the error_message if it had
been set).

Also print a status message when we fail to exec init, otherwise the only
sign the user will see is `# ` :).

This addresses the lack of error messages pointed out in issue #6827.

6 years agoMerge pull request #7096 from keszybz/logind-session-killing
Lennart Poettering [Fri, 10 Nov 2017 14:51:39 +0000 (15:51 +0100)] 
Merge pull request #7096 from keszybz/logind-session-killing

Logind session killing fix

6 years agobasic/hashmap: add cleanup of memory pools (#7164)
Zbigniew Jędrzejewski-Szmek [Fri, 10 Nov 2017 14:44:58 +0000 (15:44 +0100)] 
basic/hashmap: add cleanup of memory pools (#7164)

It was dropped in 89439d4fc0d29f04ac68432fd06ab84bc4e36e20. As a result, every
process that uses a hashmap allocates and then leaks the hashmap mempools.
The mempools are only allocated in the main thread, but we don't know where
the memory is used.

So let's check if we are the last thread and free the mempools then. This is
fairly heavy, because /proc/self/status has to be opened and parsed, but we do
it only when compiled for valgrind, i.e. not by default, and compared to running
under valgrind or asan, the extra cost is acceptable. The big advantage is that
we don't have to think or filter out this false positive.

As a micro-opt, cleanup is attempted only in the main thread. We could allow
any thread to check if it is the last one and perform cleanup, but that'd mean
that we'd have to _do_ the check in every thread. We don't use threads like
that, our non-main threads are always short-lived, so let's just accept the
possibility that we'll leak memory if a thread survives. The check is also
non-atomic, but it's called in a destructor of the main thread _and_ we do
cleanup only when there are no other threads, so the risk of some library
suddenly spawning another thread is very low. All in all, this is not perfect,
but should work in 999‰ of cases.

Fixes the following valgrind warning:

==22564== HEAP SUMMARY:
==22564==     in use at exit: 8,192 bytes in 2 blocks
==22564==   total heap usage: 243 allocs, 241 frees, 151,905 bytes allocated
==22564==
==22564== 4,096 bytes in 1 blocks are still reachable in loss record 1 of 2
==22564==    at 0x4C2FB6B: malloc (vg_replace_malloc.c:299)
==22564==    by 0x4F08A8C: mempool_alloc_tile (mempool.c:62)
==22564==    by 0x4F08B16: mempool_alloc0_tile (mempool.c:81)
==22564==    by 0x4EF8DE0: hashmap_base_new (hashmap.c:748)
==22564==    by 0x4EF8ED9: internal_hashmap_new (hashmap.c:782)
==22564==    by 0x11045D: test_hashmap_copy (test-hashmap-plain.c:87)
==22564==    by 0x115722: test_hashmap_funcs (test-hashmap-plain.c:914)
==22564==    by 0x10FC9D: main (test-hashmap.c:60)
==22564==
==22564== 4,096 bytes in 1 blocks are still reachable in loss record 2 of 2
==22564==    at 0x4C2FB6B: malloc (vg_replace_malloc.c:299)
==22564==    by 0x4F08A8C: mempool_alloc_tile (mempool.c:62)
==22564==    by 0x4F08B16: mempool_alloc0_tile (mempool.c:81)
==22564==    by 0x4EF8DE0: hashmap_base_new (hashmap.c:748)
==22564==    by 0x4EF8EF8: internal_ordered_hashmap_new (hashmap.c:786)
==22564==    by 0x10A2A0: test_ordered_hashmap_copy (test-hashmap-ordered.c:89)
==22564==    by 0x10F70F: test_ordered_hashmap_funcs (test-hashmap-ordered.c:916)
==22564==    by 0x10FCA2: main (test-hashmap.c:61)
==22564==
==22564== LEAK SUMMARY:
==22564==    definitely lost: 0 bytes in 0 blocks
==22564==    indirectly lost: 0 bytes in 0 blocks
==22564==      possibly lost: 0 bytes in 0 blocks
==22564==    still reachable: 8,192 bytes in 2 blocks
==22564==         suppressed: 0 bytes in 0 blocks

v2:
- check if we are the main thread

v3:
- check if there are no other threads

6 years agoFix typo in statx macro (#7180)
Antonio Rojas [Fri, 10 Nov 2017 10:07:36 +0000 (11:07 +0100)] 
Fix typo in statx macro (#7180)

This makes statx properly whitelisted in supported systems.

6 years agorules: run all persistent-input rules for rmi and i8042 (#7287)
Simon Arlott [Fri, 10 Nov 2017 09:32:51 +0000 (09:32 +0000)] 
rules: run all persistent-input rules for rmi and i8042 (#7287)

Commit 83b48159 set ID_BUS for these subsystems but copied the intent
of commit c49df207 by not creating symlinks for those devices.

Remove the GOTO so that the rest of the rules are still processed and
symlinks are created for rmi and i8042 devices.

6 years agosystemctl: fix memory leak (#7289)
John Lin [Fri, 10 Nov 2017 09:32:25 +0000 (17:32 +0800)] 
systemctl: fix memory leak (#7289)

Fixes: #7283
6 years agosystemd-firstboot: add vconsole keymap support (#7035)
tblume [Fri, 10 Nov 2017 09:31:44 +0000 (10:31 +0100)] 
systemd-firstboot: add vconsole keymap support (#7035)

Enable systemd-firstboot to set the keymap.

RFE:

https://github.com/systemd/systemd/issues/6346

6 years agocore/load-fragment: add RemoveIPC= (#7288)
Yu Watanabe [Fri, 10 Nov 2017 09:15:55 +0000 (18:15 +0900)] 
core/load-fragment: add RemoveIPC= (#7288)

PR #3865 introduced RemoveIPC= but the option is not listed in
load-fragment-gperf.gperf. So, the option could be used only via d-bus.
This adds RemoveIPC= in load-fragment-gperf.gperf. Then, now we can
set the option in unit files.

Fixes #7281.

6 years agoman: remove restrictions in [Install] section (#7278)
John Lin [Thu, 9 Nov 2017 15:12:01 +0000 (23:12 +0800)] 
man: remove restrictions in [Install] section (#7278)

Now [Install] section also supports drop-in files.

Follow-up for 142468d89508c63262dd59335ea6d4fe82267564.

6 years agohwdb: Add ACCEL_MOUNT_MATRIX for HP Stream 8 (#7279)
Collin Eggert [Thu, 9 Nov 2017 14:38:34 +0000 (08:38 -0600)] 
hwdb: Add ACCEL_MOUNT_MATRIX for HP Stream 8 (#7279)

6 years agoMerge pull request #7280 from yuwata/fix-7270-2
Lennart Poettering [Thu, 9 Nov 2017 13:26:42 +0000 (14:26 +0100)] 
Merge pull request #7280 from yuwata/fix-7270-2

test-event: do not work in assert()

6 years agocryptsetup: ignore _netdev, since it is used in generator (#7282)
Lukáš Nykrýn [Thu, 9 Nov 2017 13:24:57 +0000 (14:24 +0100)] 
cryptsetup: ignore _netdev, since it is used in generator (#7282)

6 years agotest-parse-util: add more tests, mainly for empty string 7280/head
Yu Watanabe [Thu, 9 Nov 2017 08:36:07 +0000 (17:36 +0900)] 
test-parse-util: add more tests, mainly for empty string

6 years agolibsystemd-network: coding style fix
Yu Watanabe [Thu, 9 Nov 2017 09:39:41 +0000 (18:39 +0900)] 
libsystemd-network: coding style fix

6 years agotree-wide: do not work in assert()
Yu Watanabe [Thu, 9 Nov 2017 09:38:02 +0000 (18:38 +0900)] 
tree-wide: do not work in assert()

Follow-up for 85e55d14dea66f5fe412ca8128487d5ea828b7b1.

6 years agoMerge pull request #7112 from tstellar/udev-for-kfd
Lennart Poettering [Thu, 9 Nov 2017 08:22:55 +0000 (09:22 +0100)] 
Merge pull request #7112 from tstellar/udev-for-kfd

udev-rules: Add rules for /dev/kfd

6 years agotest-bpf: use /bin/ping path (#7276)
Dimitri John Ledkov [Wed, 8 Nov 2017 19:04:55 +0000 (14:04 -0500)] 
test-bpf: use /bin/ping path (#7276)

This path to ping is compatible with both debian-like and usr-merged
distros. This keeps the test simple, and should thus pass everywhere.

Fixes: #7267