]> git.ipfire.org Git - thirdparty/systemd.git/log
thirdparty/systemd.git
6 years agomeson: use env object instead of string in tags targets 7933/head
Zbigniew Jędrzejewski-Szmek [Fri, 26 Jan 2018 15:15:17 +0000 (16:15 +0100)] 
meson: use env object instead of string in tags targets

I used 'tags' before because this way we avoided a unnecessary
line about 'env' detection. But we cannot use 'env' in test(), so
previous commit added 'env' detection. We might just as well use
it in custom_target().

6 years agoHook up oss-fuzz test cases as tests
Zbigniew Jędrzejewski-Szmek [Fri, 19 Jan 2018 06:54:30 +0000 (17:54 +1100)] 
Hook up oss-fuzz test cases as tests

This is a bit painful because a separate build of systemd is necessary. The
tests are guarded by tests!=false and slow-tests==true. Running them is not
slow, but compilation certainly is. If this proves unwieldy, we can add a
separate option controlling those builds later.

The build for each sanitizer has its own directory, and we build all fuzzer
tests there, and then pull them out one-by-one by linking into the target
position as necessary. It would be nicer to just build the desired fuzzer, but
we need to build the whole nested build as one unit.

[I also tried making systemd and nested meson subproject. This would work
nicely, but meson does not allow that because the nested target names are the
same as the outer project names. If that is ever fixed, that would be the way
to go.]

v2:
- make sure things still work if memory sanitizer is not available
v3:
- switch to syntax which works with meson 0.42.1 found in Ubuntu

6 years agofuzz: add a note on reporting security bugs to HACKING
Jonathan Rudenberg [Thu, 18 Jan 2018 03:41:57 +0000 (22:41 -0500)] 
fuzz: add a note on reporting security bugs to HACKING

6 years agotest: add regression test for oss-fuzz issue 5465
Jonathan Rudenberg [Thu, 18 Jan 2018 14:40:37 +0000 (09:40 -0500)] 
test: add regression test for oss-fuzz issue 5465

Fixed in #7923

6 years agotest: add regression test for #7888
Jonathan Rudenberg [Thu, 18 Jan 2018 03:39:05 +0000 (22:39 -0500)] 
test: add regression test for #7888

6 years agoMerge pull request #7876 from titanous/oss-fuzz
Zbigniew Jędrzejewski-Szmek [Thu, 18 Jan 2018 01:41:13 +0000 (12:41 +1100)] 
Merge pull request #7876 from titanous/oss-fuzz

Add initial fuzzing infrastructure

6 years agofuzz: add docs on creating fuzzer targets to HACKING 7876/head
Jonathan Rudenberg [Tue, 16 Jan 2018 17:09:56 +0000 (12:09 -0500)] 
fuzz: add docs on creating fuzzer targets to HACKING

6 years agofuzz: allow building fuzzers outside of oss-fuzz
Jonathan Rudenberg [Tue, 16 Jan 2018 15:25:43 +0000 (10:25 -0500)] 
fuzz: allow building fuzzers outside of oss-fuzz

Add a new -Dllvm-fuzz=true option that can be used to build against
libFuzzer and update the oss-fuzz script to work outside of the
oss-fuzz build environment.

6 years agofuzz: rebuild everything during each oss-fuzz build
Jonathan Rudenberg [Tue, 16 Jan 2018 13:36:56 +0000 (08:36 -0500)] 
fuzz: rebuild everything during each oss-fuzz build

This avoids failures while using the oss-fuzz local testing
infrastructure.

6 years agofuzz: disable all deps when building with oss-fuzz
Jonathan Rudenberg [Mon, 15 Jan 2018 23:27:37 +0000 (18:27 -0500)] 
fuzz: disable all deps when building with oss-fuzz

The fuzz targets are intended to be fast and only target systemd
code, so they don't need to call out to any dependencies. They also
shouldn't depend on shared libraries outside of libc, so we disable
every dependency when compiling against oss-fuzz. This also
simplifies the upstream build environment significantly.

6 years agofuzz: add initial fuzzing infrastructure
Jonathan Rudenberg [Sun, 14 Jan 2018 00:51:07 +0000 (19:51 -0500)] 
fuzz: add initial fuzzing infrastructure

The fuzzers will be used by oss-fuzz to automatically and
continuously fuzz systemd.

This commit includes the build tooling necessary to build fuzz
targets, and a fuzzer for the DNS packet parser.

6 years agoMerge pull request #7903 from yuwata/fix-7863
Lennart Poettering [Wed, 17 Jan 2018 18:18:47 +0000 (19:18 +0100)] 
Merge pull request #7903 from yuwata/fix-7863

 network: create runtime sub-directories after drop_privileges()

6 years agoMerge pull request #7910 from poettering/getcwd
Lennart Poettering [Wed, 17 Jan 2018 18:16:42 +0000 (19:16 +0100)] 
Merge pull request #7910 from poettering/getcwd

some getcwd() fixes, and other path-util tweaks

6 years agoMerge pull request #7911 from poettering/chase-symlinks-tweaks
Lennart Poettering [Wed, 17 Jan 2018 18:15:49 +0000 (19:15 +0100)] 
Merge pull request #7911 from poettering/chase-symlinks-tweaks

chase_symlinks() tweaks

6 years agoresolve: check for underflow of size parameter (#7889)
Shawn Landden [Wed, 17 Jan 2018 13:49:22 +0000 (05:49 -0800)] 
resolve: check for underflow of size parameter (#7889)

to dns_packet_read_memdup()

Closes #7888

6 years agofs-util: refuse taking a relative path to chase if "root" is specified and CHASE_PREF... 7911/head
Lennart Poettering [Wed, 17 Jan 2018 11:00:40 +0000 (12:00 +0100)] 
fs-util: refuse taking a relative path to chase if "root" is specified and CHASE_PREFIX_ROOT is set

If we take a relative path we first make it absolute, based on the
current working directory. But if CHASE_PREFIX_ROOT is passe we are
supposed to make the path absolute taking the specified root path into
account, but that makes no sense if we talk about the current working
directory as that is relative to the host's root in any case. Hence,
let's refuse this politely.

6 years agofs-util: extra chase_symlink() safety check on "path" parameter
Lennart Poettering [Wed, 17 Jan 2018 11:00:12 +0000 (12:00 +0100)] 
fs-util: extra chase_symlink() safety check on "path" parameter

It's not clear what an empty "path" is even supposed to mean, hence
refuse.

6 years agofs-util: extra safety checks on chase_symlinks() root parameter
Lennart Poettering [Wed, 17 Jan 2018 10:56:52 +0000 (11:56 +0100)] 
fs-util: extra safety checks on chase_symlinks() root parameter

Let's handle root="" and root="/" safely.

6 years agopath-util: don't insert duplicate "/" in path_make_absolute_cwd() 7910/head
Lennart Poettering [Wed, 17 Jan 2018 10:17:55 +0000 (11:17 +0100)] 
path-util: don't insert duplicate "/" in path_make_absolute_cwd()

When the working directory is "/" it's prettier not to insert a second
"/" in the path, even though it is technically correct.

6 years agotree-wide: port all code to use safe_getcwd()
Lennart Poettering [Wed, 17 Jan 2018 10:17:38 +0000 (11:17 +0100)] 
tree-wide: port all code to use safe_getcwd()

6 years agopath-util: introduce new safe_getcwd() wrapper
Lennart Poettering [Wed, 17 Jan 2018 10:16:31 +0000 (11:16 +0100)] 
path-util: introduce new safe_getcwd() wrapper

It's like get_current_dir_name() but protects us from
CVE-2018-1000001-style exploits:

https://www.halfdog.net/Security/2017/LibcRealpathBufferUnderflow/

6 years agopath-util: don't add extra "/" when prefix already is suffixed by slash
Lennart Poettering [Wed, 17 Jan 2018 10:15:00 +0000 (11:15 +0100)] 
path-util: don't add extra "/" when prefix already is suffixed by slash

No need to insert duplicate "/" if we can avoid it. This is particularly
relevant if the prefix passed in is the root directory.

6 years agopath-util: do something useful if the prefix is "" in path_make_absolute()
Lennart Poettering [Wed, 17 Jan 2018 10:13:46 +0000 (11:13 +0100)] 
path-util: do something useful if the prefix is "" in path_make_absolute()

Do not insert a "/" if the prefix we shall use is empty. It's a corner
case we should probably take care of.

6 years agoefivars: include errno.h when EFI support is disabled (#7900)
Yu Watanabe [Wed, 17 Jan 2018 09:25:42 +0000 (18:25 +0900)] 
efivars: include errno.h when EFI support is disabled (#7900)

Fixes #7898.

6 years agoMerge pull request #7886 from gdamjan/fix-ptmx
Alan Jenkins [Wed, 17 Jan 2018 09:24:00 +0000 (09:24 +0000)] 
Merge pull request #7886 from gdamjan/fix-ptmx

namespace: make /dev/ptmx a copy of the host not a symlink

6 years agoMerge pull request #7893 from poettering/parse-tweaks
Zbigniew Jędrzejewski-Szmek [Wed, 17 Jan 2018 09:22:17 +0000 (20:22 +1100)] 
Merge pull request #7893 from poettering/parse-tweaks

parsing tweaks

6 years agoMerge pull request #7902 from yuwata/fix-warning-by-clang
Zbigniew Jędrzejewski-Szmek [Wed, 17 Jan 2018 09:17:23 +0000 (20:17 +1100)] 
Merge pull request #7902 from yuwata/fix-warning-by-clang

network: small fixes

6 years agohwdb: 60-sensors: Add DMI strings for Trekstor Surftab 7.0 newer BIOS versions (...
Hans de Goede [Wed, 17 Jan 2018 09:15:41 +0000 (10:15 +0100)] 
hwdb: 60-sensors: Add DMI strings for Trekstor Surftab 7.0 newer BIOS versions (#7904)

Some newer BIOS versions of the TrekStor SurfTab wintron 7.0 tablet use
different (better) DMI strings, update the existing 60-sensors.hwdb
entry for this tablet to also work with the newer BIOS.

6 years ago hwdb: HP vendor name for ZBooks in 60-keyboard.hwdb (#7905)
Jerónimo Borque [Wed, 17 Jan 2018 09:15:00 +0000 (06:15 -0300)] 
 hwdb: HP vendor name for ZBooks in 60-keyboard.hwdb (#7905)

Added new HP vendor name to support Zbook's mic mute key mapping

6 years agoMerge pull request #7897 from yuwata/small-man-fixes
Zbigniew Jędrzejewski-Szmek [Wed, 17 Jan 2018 09:13:54 +0000 (20:13 +1100)] 
Merge pull request #7897 from yuwata/small-man-fixes

Several man fixes

6 years agonamespace: only make the symlink /dev/ptmx if it was already a symlink 7886/head
Дамјан Георгиевски [Tue, 16 Jan 2018 20:50:36 +0000 (21:50 +0100)] 
namespace: only make the symlink /dev/ptmx if it was already a symlink

…otherwise try to clone it as a device node

On most contemporary distros /dev/ptmx is a device node, and
/dev/pts/ptmx has 000 inaccessible permissions. In those cases
the symlink /dev/ptmx -> /dev/pts/ptmx breaks the pseudo tty support.

In that case we better clone the device node.

OTOH, in nspawn containers (and possibly others), /dev/pts/ptmx has
normal permissions, and /dev/ptmx is a symlink. In that case make the
same symlink.

fixes #7878

6 years agonamespace: extract clone_device_node function from mount_private_dev
Дамјан Георгиевски [Tue, 16 Jan 2018 20:27:51 +0000 (21:27 +0100)] 
namespace: extract clone_device_node function from mount_private_dev

6 years agonetwork: create runtime sub-directories after drop_privileges() 7903/head
Yu Watanabe [Tue, 16 Jan 2018 18:35:25 +0000 (03:35 +0900)] 
network: create runtime sub-directories after drop_privileges()

For old kernels not supporting AmbientCapabilities=, networkd is
started as root with limited capabilities. Then, networkd cannot
chown the directories under runtime directory as
CapabilityBoundingSet= does not contains enough capabilities.
This makes these directories are created after dropping privileges.
Thus, networkd does not need to chown them anymore.

Fixes #7863.

6 years agotimesync: do not fail when started as privileged user
Yu Watanabe [Tue, 16 Jan 2018 18:34:45 +0000 (03:34 +0900)] 
timesync: do not fail when started as privileged user

6 years agodhcp6: fix warnings by clang with -Waddress-of-packed-member 7902/head
Yu Watanabe [Tue, 16 Jan 2018 16:53:00 +0000 (01:53 +0900)] 
dhcp6: fix warnings by clang with -Waddress-of-packed-member

This fixes the following warnings:
```
[194/1521] Compiling C object 'src/libsystemd-network/systemd-network@sta/dhcp6-option.c.o'.
../../git/systemd/src/libsystemd-network/dhcp6-option.c:110:25: warning: taking address of packed member 'id' of class or structure 'ia_na' may result in an unaligned pointer value [-Waddress-of-packed-member]
                iaid = &ia->ia_na.id;
                        ^~~~~~~~~~~~
../../git/systemd/src/libsystemd-network/dhcp6-option.c:115:25: warning: taking address of packed member 'id' of class or structure 'ia_ta' may result in an unaligned pointer value [-Waddress-of-packed-member]
                iaid = &ia->ia_ta.id;
                        ^~~~~~~~~~~~
2 warnings generated.
```

6 years agonetworkd: fix wrong argument check
Yu Watanabe [Tue, 16 Jan 2018 16:29:13 +0000 (01:29 +0900)] 
networkd: fix wrong argument check

6 years agoipvlan: fix wrong assignment in ipvlan_init()
Yu Watanabe [Tue, 16 Jan 2018 16:28:09 +0000 (01:28 +0900)] 
ipvlan: fix wrong assignment in ipvlan_init()

6 years agoman: mention that systemctl is-active or is-failed do not load units 7897/head
Yu Watanabe [Tue, 16 Jan 2018 14:25:56 +0000 (23:25 +0900)] 
man: mention that systemctl is-active or is-failed do not load units

See the discussion in the issue #7875.

6 years agovirt: add comment that we need to use sscanf()
Yu Watanabe [Tue, 16 Jan 2018 14:00:39 +0000 (23:00 +0900)] 
virt: add comment that we need to use sscanf()

Follow-up for 13e0f9fe8334859ee86f4ff725374d1d83f5baf7.
See PR #7890 and comment in PR #7581.

6 years agoman: remove duplicated line
Yu Watanabe [Tue, 16 Jan 2018 13:22:14 +0000 (22:22 +0900)] 
man: remove duplicated line

Follow-up for c46bc7e2162d774f55847c1a8cb9d49085cf89bb.

6 years agoparse-util: detect overflows in parse_percent_unbounded() 7893/head
Lennart Poettering [Tue, 16 Jan 2018 10:50:12 +0000 (11:50 +0100)] 
parse-util: detect overflows in parse_percent_unbounded()

We shouldn't accept percentages beyon INT32_MAX and consider them
valid.

6 years agoparse-util: coding style fix
Lennart Poettering [Tue, 16 Jan 2018 10:49:24 +0000 (11:49 +0100)] 
parse-util: coding style fix

Let's not rely on C's downgrade-to-bool feature to check for NUL bytes

6 years agolocale-util: add freelocale() cleanup helper
Lennart Poettering [Tue, 16 Jan 2018 10:48:25 +0000 (11:48 +0100)] 
locale-util: add freelocale() cleanup helper

6 years agoMerge pull request #7885 from pfl/dhcp6_fixes
Lennart Poettering [Tue, 16 Jan 2018 09:44:35 +0000 (10:44 +0100)] 
Merge pull request #7885 from pfl/dhcp6_fixes

Minor fixes

6 years agoman: fix broken kernel document links (#7892)
John Lin [Tue, 16 Jan 2018 09:29:35 +0000 (17:29 +0800)] 
man: fix broken kernel document links (#7892)

6 years agoFix parsing of features in detect_vm_xen_dom0 (#7890)
Olaf Hering [Tue, 16 Jan 2018 09:24:37 +0000 (10:24 +0100)] 
Fix parsing of features in detect_vm_xen_dom0 (#7890)

Use sscanf instead of the built-in safe_atolu because the scanned string
lacks the leading "0x", it is generated with snprintf(b, "%08x", val).
As a result strtoull handles it as octal, and parsing fails.

The initial submission already used sscanf, then parsing was replaced by
safe_atolu without retesting the updated PR.

Fixes 575e6588d ("virt: use XENFEAT_dom0 to detect the hardware domain
(#6442, #6662) (#7581)")

6 years agoMerge pull request #7540 from fbuihuu/systemd-delta-tweaks
Zbigniew Jędrzejewski-Szmek [Tue, 16 Jan 2018 09:22:25 +0000 (20:22 +1100)] 
Merge pull request #7540 from fbuihuu/systemd-delta-tweaks

Systemd delta tweaks

6 years agomachined: use getent to get default shell for machinectl shell (#7684)
Shawn Landden [Mon, 15 Jan 2018 18:17:51 +0000 (10:17 -0800)] 
machined: use getent to get default shell for machinectl shell (#7684)

Closes: https://github.com/systemd/systemd/issues/1395
6 years agosd-dhcp6-client: Use offsetof() instead of sizeof() 7885/head
Patrik Flykt [Mon, 15 Jan 2018 15:37:52 +0000 (17:37 +0200)] 
sd-dhcp6-client: Use offsetof() instead of sizeof()

The slightly modified review comments say that "...in theory
offsetof(DHCP6Option, data) is nicer than sizeof(DHCP6Option)
because the former removes alignment artifacts. In this
specific case there are no alignment whitespaces hence it's
fine, but out of a matter of principle offsetof() is preferred
over sizeof() in cases like this..."

6 years agodhcp6: Fix valgrind nitpick about returned test case value
Patrik Flykt [Mon, 15 Jan 2018 15:15:13 +0000 (17:15 +0200)] 
dhcp6: Fix valgrind nitpick about returned test case value

Calling dhcp6_option_parse_address() will always return a value
< 0 on error even though lt_valid remains unset. This is more
than valgrind can safely detect, but let's fix the valgrind
nitpick anyway.

While fixing, use UINT32_MAX instead of ~0 on the same line.

6 years agoMerge pull request #7884 from yuwata/small-fixes
Lennart Poettering [Mon, 15 Jan 2018 15:40:41 +0000 (16:40 +0100)] 
Merge pull request #7884 from yuwata/small-fixes

Small fixes

6 years agoman: fix typo 7884/head
Дилян Палаузов [Mon, 15 Jan 2018 15:09:59 +0000 (00:09 +0900)] 
man: fix typo

Closes #7866.

6 years agoman: logind: update reference
Yu Watanabe [Mon, 15 Jan 2018 15:03:29 +0000 (00:03 +0900)] 
man: logind: update reference

Fixes #7858.

6 years agojournal: coding style fix
Yu Watanabe [Mon, 15 Jan 2018 14:53:05 +0000 (23:53 +0900)] 
journal: coding style fix

This is originally pointed out by @cpsw.

6 years agonetwork: fix indentation
Yu Watanabe [Mon, 15 Jan 2018 14:49:30 +0000 (23:49 +0900)] 
network: fix indentation

Follow-up for 56a23cb40aadea95f7e24a911ba973fe132878b8.

6 years agonetworkd: remove unnecessary parentheses
Yu Watanabe [Mon, 15 Jan 2018 14:47:55 +0000 (23:47 +0900)] 
networkd: remove unnecessary parentheses

Follow-up for 56a23cb40aadea95f7e24a911ba973fe132878b8.

6 years agosystemctl: comment that the verb 'check' is deprecated
Yu Watanabe [Mon, 15 Jan 2018 14:44:23 +0000 (23:44 +0900)] 
systemctl: comment that the verb 'check' is deprecated

6 years agotimesync: use current uid when started as non-root user
Yu Watanabe [Mon, 15 Jan 2018 14:40:23 +0000 (23:40 +0900)] 
timesync: use current uid when started as non-root user

Fixes #7883.

6 years agotest: free memory
Yu Watanabe [Mon, 15 Jan 2018 14:36:58 +0000 (23:36 +0900)] 
test: free memory

Fixes #7882.

6 years agoadd false option for tests (#7778)
Adam Duskett [Mon, 15 Jan 2018 11:25:46 +0000 (06:25 -0500)] 
add false option for tests (#7778)

Currently there is no way to prevent tests from building using meson.
This introduces two problems:

1) It adds a extra 381 files to compile.
2) One of these tests explicitly requires libgcrypt to be built even if systemd
   is not using it.
3) It adds C++ to the requirements to build systemd.

When cross-compiling, this is uneccessary.

6 years agoMerge pull request #7582 from pfl/dhcp6_prefix_delegation
Lennart Poettering [Mon, 15 Jan 2018 11:02:37 +0000 (12:02 +0100)] 
Merge pull request #7582 from pfl/dhcp6_prefix_delegation

DHCPv6 prefix delegation

6 years agoman: --this-boot is deprecated (#7880)
Zbigniew Jędrzejewski-Szmek [Mon, 15 Jan 2018 10:45:40 +0000 (14:45 +0400)] 
man: --this-boot is deprecated (#7880)

This removes the last public reference. Follow-up for #7844.

6 years agoMerge pull request #7816 from poettering/chase-pid
Zbigniew Jędrzejewski-Szmek [Mon, 15 Jan 2018 10:14:34 +0000 (14:14 +0400)] 
Merge pull request #7816 from poettering/chase-pid

Make MAINPID= and PIDFile= handling more restrictive (and other stuff)

6 years agoMerge pull request #7844 from yuwata/bash-completion
Zbigniew Jędrzejewski-Szmek [Mon, 15 Jan 2018 09:51:29 +0000 (13:51 +0400)] 
Merge pull request #7844 from yuwata/bash-completion

update bash completions

6 years agoMerge pull request #7855 from poettering/log-h-includes
Zbigniew Jędrzejewski-Szmek [Mon, 15 Jan 2018 09:43:09 +0000 (13:43 +0400)] 
Merge pull request #7855 from poettering/log-h-includes

log.h #include cleanups

6 years agoMerge pull request #7871 from sourcejedi/log_mounts
Zbigniew Jędrzejewski-Szmek [Mon, 15 Jan 2018 09:34:06 +0000 (13:34 +0400)] 
Merge pull request #7871 from sourcejedi/log_mounts

core: fix output (logging) for mount units (#7603)

6 years agoMerge pull request #7872 from mineo/coredumpctl-zsh-completion
Zbigniew Jędrzejewski-Szmek [Mon, 15 Jan 2018 09:28:14 +0000 (13:28 +0400)] 
Merge pull request #7872 from mineo/coredumpctl-zsh-completion

Fix the ZSH completion on `coredumpctl gdb <tab>`

6 years agocore: prevent spurious retries of umount 7871/head
Alan Jenkins [Sat, 13 Jan 2018 17:22:46 +0000 (17:22 +0000)] 
core: prevent spurious retries of umount

Testing the previous commit with `systemctl stop tmp.mount` logged the
reason for failure as expected, but unexpectedly the message was repeated
32 times.

The retry is a special case for umount; it is only supposed to cover the
case where the umount command was _successful_, but there was still some
remaining mount(s) underneath.  Fix it by making sure to test the first
condition :).

Re-tested with and without a preceding `mount --bind /mnt /tmp`,
and using `findmnt` to check the end result.

6 years agozsh/coredumpctl: Never sort the completion candidates 7872/head
Wieland Hoffmann [Sat, 13 Jan 2018 14:23:28 +0000 (15:23 +0100)] 
zsh/coredumpctl: Never sort the completion candidates

That way, they're always sorted by date. I do not know how to make ZSH sort
them by PID through some option, but that doesn't seem very useful in the first
place.

6 years agozsh/coredumpctl: Fix the completion
Wieland Hoffmann [Sat, 13 Jan 2018 12:43:28 +0000 (13:43 +0100)] 
zsh/coredumpctl: Fix the completion

An output from coredumpctl list is like

> TIME                            PID   UID   GID SIG COREFILE  EXE
> Sun 2016-05-29 18:44:03 CEST  14578  1000  1000   6 none      /tmp/pacaurtmp-wieland/python33/src/Python-3.3.6/python

  ^1  ^2         ^3       ^4    ^5

, but the previous sub() command turns that into

> TIMEPID   UID   GID SIG COREFILE  EXE
> Sun2016-05-29 18:44:03 CEST  14578  1000  1000   6 none      /tmp/pacaurtmp-wieland/python33/src/Python-3.3.6/python
  ^1            ^2       ^3    ^4     ^5

so the whole pipeline generated entries like

$UID:$DESCRIPTION

but that's not useful and probably not what was supposed to happen.

This now generates entries like

$PID:$DESCRIPTION

which make everything work.

Note that with this commmit, the completions will be sorted by PID by
ZSH.

6 years agocore: fix output (logging) for mount units (#7603)
Alan Jenkins [Sat, 13 Jan 2018 12:30:43 +0000 (12:30 +0000)] 
core: fix output (logging) for mount units (#7603)

Documentation - systemd.exec - strongly implies mount units get logging.

It is safe for mounts to depend on systemd-journald.socket.  There is no
cyclic dependency generated.  This is because the root, -.mount, was
already deliberately set to EXEC_OUTPUT_NULL.  See comment in
mount_load_root_mount().  And /run is excluded from being a mount unit.

Nor does systemd-journald depend on /var.  It starts earlier, initially
logging to /run.

Tested before/after using `systemctl stop tmp.mount`.

6 years agodbus-execute: define bus_set_transient_errno() only if HAVE_SECCOMP (#7869)
0xAX [Fri, 12 Jan 2018 23:48:53 +0000 (00:48 +0100)] 
dbus-execute: define bus_set_transient_errno() only if HAVE_SECCOMP (#7869)

in other way we will get a warning during build:

../src/core/dbus-util.h:55:13: warning: ‘bus_set_transient_errno’
defined but not used [-Wunused-function]

    int bus_set_transient_##function(

6 years agologin: avoid external process call
Max Harmathy [Fri, 12 Jan 2018 13:16:43 +0000 (14:16 +0100)] 
login: avoid external process call

Use a shell builtin of posix shells insteaf of calling 'which'.
See also http://stackoverflow.com/a/677212

6 years agoprocess-util: make our freeze() routine do something useful
Michal Sekletar [Fri, 12 Jan 2018 12:05:48 +0000 (13:05 +0100)] 
process-util: make our freeze() routine do something useful

When we crash we freeze() our-self (or possibly we reboot the machine if
that is configured). However, calling pause() is very unhelpful thing to
do. We should at least continue to do what init systems being doing
since 70's and that is reaping zombies. Otherwise zombies start to
accumulate on the system which is a very bad thing. As that can prevent
admin from taking manual steps to reboot the machine in somewhat
graceful manner (e.g. manually stopping services, unmounting data
volumes  and calling reboot -f).

Fixes #7783

6 years agoMerge pull request #7865 from fbuihuu/restore-termination-of-bus-connection-first
Lennart Poettering [Fri, 12 Jan 2018 16:24:56 +0000 (17:24 +0100)] 
Merge pull request #7865 from fbuihuu/restore-termination-of-bus-connection-first

Restore termination of bus connection first

6 years agoComment the fact that some tools need to termintate their bus connect first 7865/head
Franck Bui [Fri, 12 Jan 2018 15:20:36 +0000 (16:20 +0100)] 
Comment the fact that some tools need to termintate their bus connect first

6 years agomount: make sure we terminate the bus connection first, and then close the pager
Franck Bui [Fri, 12 Jan 2018 15:11:46 +0000 (16:11 +0100)] 
mount: make sure we terminate the bus connection first, and then close the pager

See cf647b69baee4c478d3909c327e3d917e1563f44 commit message for details.

6 years agoRevert "tree-wide: use _cleanup_(sd_bus_flush_close_unrefp) at various appropriate...
Franck Bui [Fri, 12 Jan 2018 15:09:21 +0000 (16:09 +0100)] 
Revert "tree-wide: use  _cleanup_(sd_bus_flush_close_unrefp) at various appropriate places"

This reverts commit 0b3c84eb7da3a8c28ac248a68228f6a7edbb2e19.

The removal of _cleanup_() usages was done on purpose, see
cf647b69baee4c478d3909c327e3d917e1563f44.

Fixes: #3543
6 years agosupport LZMA concatenated files
Matthew Thode [Thu, 11 Jan 2018 16:48:43 +0000 (10:48 -0600)] 
support LZMA concatenated files

The xz format supports concatenated files, images are sometimes created
and shipped with it to increase compression.

https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1742744 is
the source bug for this issue.

6 years agoMerge pull request #7851 from msekletar/dbus-error-logging
Lennart Poettering [Thu, 11 Jan 2018 22:37:04 +0000 (23:37 +0100)] 
Merge pull request #7851 from msekletar/dbus-error-logging

dbus: propagate errors from bus_init_system() and bus_init_api()

6 years agobootctl: add newline after printf (#7856)
winnerman-pythian [Thu, 11 Jan 2018 17:01:57 +0000 (12:01 -0500)] 
bootctl: add newline after printf (#7856)

Upon error condition, a newline is not printed, leading to the shell prompt jamming against this line.

6 years agoMerge pull request #7833 from keszybz/netdev-relaxed
Lennart Poettering [Thu, 11 Jan 2018 16:14:49 +0000 (17:14 +0100)] 
Merge pull request #7833 from keszybz/netdev-relaxed

Avoid spurious warnings about unknown sections in .netdev files

6 years agococci: there's not ENOTSUP, there's only EOPNOTSUPP 7816/head
Lennart Poettering [Fri, 5 Jan 2018 12:41:33 +0000 (13:41 +0100)] 
cocci: there's not ENOTSUP, there's only EOPNOTSUPP

On Linux the former is a compat alias to the latter, and that's really
weird, as inside the kernel the two are distinct. Which means we really
should stay away from it.

6 years agoethtool-util: don't pass fds as pointers if we don't have to
Lennart Poettering [Fri, 5 Jan 2018 12:36:38 +0000 (13:36 +0100)] 
ethtool-util: don't pass fds as pointers if we don't have to

Passing them as pointers is just weird, hence don't do it

6 years agoethtool-util: fix weird whitespace
Lennart Poettering [Fri, 5 Jan 2018 12:33:22 +0000 (13:33 +0100)] 
ethtool-util: fix weird whitespace

6 years agoethtool-util: order includes properly
Lennart Poettering [Fri, 5 Jan 2018 12:33:10 +0000 (13:33 +0100)] 
ethtool-util: order includes properly

6 years agoethtool-util: no need for memcpy() where normal assignment works too
Lennart Poettering [Fri, 5 Jan 2018 12:32:39 +0000 (13:32 +0100)] 
ethtool-util: no need for memcpy() where normal assignment works too

6 years agocore: be stricter when handling PID files and MAINPID sd_notify() messages
Lennart Poettering [Fri, 5 Jan 2018 11:20:22 +0000 (12:20 +0100)] 
core: be stricter when handling PID files and MAINPID sd_notify() messages

Let's be more restrictive when validating PID files and MAINPID=
messages: don't accept PIDs that make no sense, and if the configuration
source is not trusted, don't accept out-of-cgroup PIDs. A configuratin
source is considered trusted when the PID file is owned by root, or the
message was received from root.

This should lock things down a bit, in case service authors write out
PID files from unprivileged code or use NotifyAccess=all with
unprivileged code. Note that doing so was always problematic, just now
it's a bit less problematic.

When we open the PID file we'll now use the CHASE_SAFE chase_symlinks()
logic, to ensure that we won't follow an unpriviled-owned symlink to a
privileged-owned file thinking this was a valid privileged PID file,
even though it really isn't.

Fixes: #6632
6 years agonotify: add new --uid= command
Lennart Poettering [Fri, 5 Jan 2018 12:26:38 +0000 (13:26 +0100)] 
notify: add new --uid= command

The new --uid= switch allows selecting the UID from which the
notificaiton messages shall originate.

This is primarily useful for testing purposes, but might have other
uses.

6 years agosd-dameon: also sent ucred when our UID differs from EUID
Lennart Poettering [Fri, 5 Jan 2018 12:24:58 +0000 (13:24 +0100)] 
sd-dameon: also sent ucred when our UID differs from EUID

Let's be explicit, and always send the messages from our UID and never
our EUID. Previously this behaviour was conditionalized only on whether
the PID was specified, which made this non-obvious.

6 years agomanager: make use of pid_is_valid() where appropriate
Lennart Poettering [Fri, 5 Jan 2018 11:19:22 +0000 (12:19 +0100)] 
manager: make use of pid_is_valid() where appropriate

6 years agomanager: make use of NEWLINE macro where appropriate
Lennart Poettering [Fri, 5 Jan 2018 11:18:32 +0000 (12:18 +0100)] 
manager: make use of NEWLINE macro where appropriate

6 years agodbus-util: properly parse timeout values
Lennart Poettering [Fri, 5 Jan 2018 11:17:35 +0000 (12:17 +0100)] 
dbus-util: properly parse timeout values

This makes transient TimeoutStopSec= properties work. After all they are
64bit entitites, not 32bit ones.

6 years agomanager: swap order in which we ellipsize/escape sd_notify() messages for debugging
Lennart Poettering [Thu, 4 Jan 2018 20:00:10 +0000 (21:00 +0100)] 
manager: swap order in which we ellipsize/escape sd_notify() messages for debugging

If we have to chose between truncated escape sequences and strings
exploded to 4 times the desried length by fully escaping, prefer the
latter.

It's for debug only, hence doesn't really matter much.

6 years agofs-util: add new chase_symlinks() flag CHASE_OPEN
Lennart Poettering [Thu, 4 Jan 2018 19:00:28 +0000 (20:00 +0100)] 
fs-util: add new chase_symlinks() flag CHASE_OPEN

The new flag returns the O_PATH fd of the final component, which may be
converted into a proper fd by open()ing it again through the
/proc/self/fd/xyz path.

Together with O_SAFE this provides us with a somewhat safe way to open()
files in directories potentially owned by unprivileged code, where we
want to refuse operation if any symlink tricks are played pointing to
privileged files.

6 years agofs-util: add new CHASE_SAFE flag to chase_symlinks()
Lennart Poettering [Thu, 4 Jan 2018 18:44:27 +0000 (19:44 +0100)] 
fs-util: add new CHASE_SAFE flag to chase_symlinks()

When the flag is specified we won't transition to a privilege-owned
file or directory from an unprivileged-owned one. This is useful when
privileged code wants to load data from a file unprivileged users have
write access to, and validates the ownership, but want's to make sure
that no symlink games are played to read a root-owned system file
belonging to a different context.

6 years agoupdate TODO 7855/head
Lennart Poettering [Thu, 11 Jan 2018 14:10:29 +0000 (15:10 +0100)] 
update TODO

6 years agounit: log when we cannot add a watch on a specific PID
Lennart Poettering [Thu, 11 Jan 2018 14:07:14 +0000 (15:07 +0100)] 
unit: log when we cannot add a watch on a specific PID

6 years agonetworkd: initcwn/initwnd use the right parsers
Susant Sahani [Tue, 2 Jan 2018 09:20:15 +0000 (14:50 +0530)] 
networkd: initcwn/initwnd use the right parsers

Closes #7765

6 years agohwdb: Add accelerometer orientation entry for Asus TP300LA
Samuel Dionne-Riel [Wed, 27 Dec 2017 20:42:38 +0000 (15:42 -0500)] 
hwdb: Add accelerometer orientation entry for Asus TP300LA