]> git.ipfire.org Git - thirdparty/systemd.git/log
thirdparty/systemd.git
8 years agoupdate TODO
Lennart Poettering [Wed, 10 Feb 2016 21:54:33 +0000 (22:54 +0100)] 
update TODO

8 years agoMerge pull request #2574 from zonque/netclass-remove
Lennart Poettering [Wed, 10 Feb 2016 16:03:00 +0000 (17:03 +0100)] 
Merge pull request #2574 from zonque/netclass-remove

cgroup: remove support for NetClass= directive

8 years agoMerge pull request #2495 from heftig/master
Lennart Poettering [Wed, 10 Feb 2016 15:53:49 +0000 (16:53 +0100)] 
Merge pull request #2495 from heftig/master

tty-ask-password: Split out password sending

8 years agoMerge pull request #2555 from poettering/coredump-fixes
Lennart Poettering [Wed, 10 Feb 2016 15:50:21 +0000 (16:50 +0100)] 
Merge pull request #2555 from poettering/coredump-fixes

Coredump fixes and more

8 years agocgroup: remove support for NetClass= directive 2574/head
Daniel Mack [Wed, 10 Feb 2016 14:44:01 +0000 (15:44 +0100)] 
cgroup: remove support for NetClass= directive

Support for net_cls.class_id through the NetClass= configuration directive
has been added in v227 in preparation for a per-unit packet filter mechanism.
However, it turns out the kernel people have decided to deprecate the net_cls
and net_prio controllers in v2. Tejun provides a comprehensive justification
for this in his commit, which has landed during the merge window for kernel
v4.5:

  https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=bd1060a1d671

As we're aiming for full support for the v2 cgroup hierarchy, we can no
longer support this feature. Userspace tool such as nftables are moving over
to setting rules that are specific to the full cgroup path of a task, which
obsoletes these controllers anyway.

This commit removes support for tweaking details in the net_cls controller,
but keeps the NetClass= directive around for legacy compatibility reasons.

8 years agoupdate NEWS 2555/head
Lennart Poettering [Wed, 10 Feb 2016 15:34:11 +0000 (16:34 +0100)] 
update NEWS

8 years agocore: treat JobTimeout=0 as equivalent to JobTimeout=infinity
Lennart Poettering [Mon, 8 Feb 2016 22:56:30 +0000 (23:56 +0100)] 
core: treat JobTimeout=0 as equivalent to JobTimeout=infinity

Corrects an incompatibility introduced with 36c16a7cdd6c33d7980efc2cd6a2211941f302b4.

Fixes: #2537
8 years agocore: simplify how we parse TimeoutSec=, TimeoutStartSec= and TimeoutStopSec=
Lennart Poettering [Mon, 8 Feb 2016 22:54:54 +0000 (23:54 +0100)] 
core: simplify how we parse TimeoutSec=, TimeoutStartSec= and TimeoutStopSec=

Let's make things more obvious by placing the parse_usec() invocation directly in config_parse_service_timeout().

8 years agoupdate TODO
Lennart Poettering [Mon, 8 Feb 2016 22:39:40 +0000 (23:39 +0100)] 
update TODO

8 years agocoredump: dump priviliges when processing system coredumps
Lennart Poettering [Mon, 8 Feb 2016 22:35:24 +0000 (23:35 +0100)] 
coredump: dump priviliges when processing system coredumps

Let's add an extra-safety net and change UID/GID to the "systemd-coredump" user when processing coredumps from system
user. For coredumps of normal users we keep the current logic of processing the coredumps from the user id the coredump
was created under.

Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=87354
8 years agocore: set RLIMIT_CORE to unlimited by default
Lennart Poettering [Mon, 8 Feb 2016 21:30:58 +0000 (22:30 +0100)] 
core: set RLIMIT_CORE to unlimited by default

The kernel sets RLIMIT_CORE to 0 by default. Let's bump this to unlimited by
default (for systemd itself and all processes we fork off), so that the
coredump hooks have an effect if they honour it.

Bumping RLIMIT_CORE of course would have the effect that "core" files will end
up on the system at various places, if no coredump hook is used. To avoid this,
make sure PID1 sets the core pattern to the empty string by default, so that
this logic is disabled.

This change in defaults should be useful for all systems where coredump hooks
are used, as it allows useful usage of RLIMIT_CORE from these hooks again. OTOH
systems that expect that coredumps are placed under the name "core" in the
current directory will break with this change. Given how questionnable this
behaviour is, and given that no common distro makes use of this by default it
shouldn't be too much of a loss. Also, the old behaviour may be restored by
explicitly configuring a "core_pattern" of "core", and setting the default
system RLIMIT_CORE to 0 again via system.conf.

8 years agocoredump: honour RLIMIT_CORE when saving/processing coredumps
Lennart Poettering [Mon, 8 Feb 2016 21:08:49 +0000 (22:08 +0100)] 
coredump: honour RLIMIT_CORE when saving/processing coredumps

With this change processing/saving of coredumps takes the RLIMIT_CORE resource limit of the crashing process into
account, given the user control whether specific processes shall core dump or not, and how large to make the core dump.

Note that this effectively disables core-dumping for now, as RLIMIT_CORE defaults to 0 (i.e. is disabled) for all
system processes.

8 years agocoredump: rework coredumping logic
Lennart Poettering [Mon, 8 Feb 2016 20:16:08 +0000 (21:16 +0100)] 
coredump: rework coredumping logic

This reworks the coredumping logic so that the coredump handler invoked from the kernel only collects runtime data
about the crashed process, and then submits it for processing to a socket-activate coredump service, which extracts a
stacktrace and writes the coredump to disk.

This has a number of benefits: the disk IO and stack trace generation may take a substantial amount of resources, and
hence should better be managed by PID 1, so that resource management applies. This patch uses RuntimeMaxSec=, Nice=, OOMScoreAdjust=
and various sandboxing settings to ensure that the coredump handler doesn't take away unbounded resources from normally
priorized processes.

This logic is also nice since this makes sure the coredump processing and storage is delayed correctly until
/var/systemd/coredump is mounted and writable.

Fixes: #2286
8 years agoactivate: add a new switch --inetd to enable inetd-style socket activation
Lennart Poettering [Mon, 8 Feb 2016 20:13:09 +0000 (21:13 +0100)] 
activate: add a new switch --inetd to enable inetd-style socket activation

Previously, using --accept would enable inetd-style socket activation in addition to per-connection operation. This is
now split into two switches: --accept only switches between per-connection or single-instance operation. --inetd
switches between inetd-style or new-style fd passing.

This breaks the interface of the tool, but given that it is a debugging tool shipped in /usr/lib/systemd/ it's not
really a public interface.

This change allows testing new-style per-connection daemons.

8 years agoactivate: minor fixes
Lennart Poettering [Mon, 8 Feb 2016 18:47:42 +0000 (19:47 +0100)] 
activate: minor fixes

8 years agoactivate: add new --seqpacket switch for testing SOCK_SEQPACKET sockets
Lennart Poettering [Mon, 8 Feb 2016 18:47:06 +0000 (19:47 +0100)] 
activate: add new --seqpacket switch for testing SOCK_SEQPACKET sockets

8 years agoresolved: include inttypes.h in resolved-def.h given that we use UINT64_C
Lennart Poettering [Sun, 7 Feb 2016 17:37:23 +0000 (18:37 +0100)] 
resolved: include inttypes.h in resolved-def.h given that we use UINT64_C

8 years agobuild-sys: move coredump logic into subdir of its own
Lennart Poettering [Sun, 7 Feb 2016 17:36:57 +0000 (18:36 +0100)] 
build-sys: move coredump logic into subdir of its own

8 years agoMerge pull request #2569 from zonque/removals
Martin Pitt [Wed, 10 Feb 2016 13:01:46 +0000 (14:01 +0100)] 
Merge pull request #2569 from zonque/removals

Remove some old cruft

8 years agoMerge pull request #2571 from martinpitt/master
Daniel Mack [Wed, 10 Feb 2016 12:57:37 +0000 (13:57 +0100)] 
Merge pull request #2571 from martinpitt/master

NEWS: Various clarification and grammar fixes

8 years agoMerge pull request #2570 from zonque/build
Martin Pitt [Wed, 10 Feb 2016 12:55:28 +0000 (13:55 +0100)] 
Merge pull request #2570 from zonque/build

configure.ac: Fix help text of --enable-* options

8 years agoconfigure.ac: Fix help text of --enable-* options 2570/head
Daniel Mack [Wed, 10 Feb 2016 12:49:58 +0000 (13:49 +0100)] 
configure.ac: Fix help text of --enable-* options

Fixes #2567

8 years agoNEWS: Various clarification and grammar fixes 2571/head
Martin Pitt [Wed, 10 Feb 2016 12:51:10 +0000 (13:51 +0100)] 
NEWS: Various clarification and grammar fixes

8 years agotree-wide: remove Emacs lines from all files 2569/head
Daniel Mack [Wed, 10 Feb 2016 12:26:21 +0000 (13:26 +0100)] 
tree-wide: remove Emacs lines from all files

This should be handled fine now by .dir-locals.el, so need to carry that
stuff in every file.

8 years agoMerge pull request #2564 from poettering/fix-2467
Daniel Mack [Wed, 10 Feb 2016 12:39:48 +0000 (13:39 +0100)] 
Merge pull request #2564 from poettering/fix-2467

Fix for #2467

8 years agoMakefile.am: remove some relicts
Daniel Mack [Tue, 2 Feb 2016 17:32:09 +0000 (18:32 +0100)] 
Makefile.am: remove some relicts

8 years agoutil-lib: make sure usec_sub() doesn't degrade USEC_INFINITY 2564/head
Lennart Poettering [Tue, 9 Feb 2016 18:55:04 +0000 (19:55 +0100)] 
util-lib: make sure usec_sub() doesn't degrade USEC_INFINITY

As suggested in: https://github.com/systemd/systemd/pull/2542#issuecomment-181877820

8 years agocore: make the StartLimitXYZ= settings generic and apply to any kind of unit, not...
Lennart Poettering [Tue, 9 Feb 2016 17:38:03 +0000 (18:38 +0100)] 
core: make the StartLimitXYZ= settings generic and apply to any kind of unit, not just services

This moves the StartLimitBurst=, StartLimitInterval=, StartLimitAction=, RebootArgument= from the [Service] section
into the [Unit] section of unit files, and thus support it in all unit types, not just in services.

This way we can enforce the start limit much earlier, in particular before testing the unit conditions, so that
repeated start-up failure due to failed conditions is also considered for the start limit logic.

For compatibility the four options may also be configured in the [Service] section still, but we only document them in
their new section [Unit].

This also renamed the socket unit failure code "service-failed-permanent" into "service-start-limit-hit" to express
more clearly what it is about, after all it's only triggered through the start limit being hit.

Finally, the code in busname_trigger_notify() and socket_trigger_notify() is altered to become more alike.

Fixes: #2467
8 years agoMerge pull request #2568 from poettering/prepare-229
Daniel Mack [Wed, 10 Feb 2016 12:23:23 +0000 (13:23 +0100)] 
Merge pull request #2568 from poettering/prepare-229

edit config updates, and a new NEWS file

8 years agoMerge pull request #2563 from 0xAX/timespec_load_nsec-static
Lennart Poettering [Wed, 10 Feb 2016 12:16:38 +0000 (13:16 +0100)] 
Merge pull request #2563 from 0xAX/timespec_load_nsec-static

time-util: make timespec_load_nsec() static

8 years agotime-util: make timespec_load_nsec() static 2563/head
Alexander Kuleshov [Tue, 9 Feb 2016 08:23:24 +0000 (14:23 +0600)] 
time-util: make timespec_load_nsec() static

The timespec_load_nsec() function has no callers outside of the
time-util.c, so we can make it static.

8 years agoNEWS: start putting together a NEWS file for 229 2568/head
Lennart Poettering [Wed, 10 Feb 2016 11:29:38 +0000 (12:29 +0100)] 
NEWS: start putting together a NEWS file for 229

Totally incomplete, but let's get this started.

8 years agoeditors: only extend line width to 119 for C and XML files
Lennart Poettering [Wed, 10 Feb 2016 11:27:35 +0000 (12:27 +0100)] 
editors: only extend line width to 119 for C and XML files

For all other files leave the line width at 79 as before. This is a good idea
since we generally don't want text files such as catalog files, unit files or
README/NEWS files to be line-broken at 119 since they are regularly browsed on
text terminals.

While we are at it, also add a couple of comments to the various files.

(Note that .editorconfig doesn't carry line-width information, simply because
the specification doesn't know the concept.)

8 years agoMerge pull request #2565 from poettering/fix-2315
Zbigniew Jędrzejewski-Szmek [Wed, 10 Feb 2016 00:08:16 +0000 (19:08 -0500)] 
Merge pull request #2565 from poettering/fix-2315

8 years agocore: clarify which unit file is masked in error message 2565/head
Lennart Poettering [Tue, 9 Feb 2016 19:47:45 +0000 (20:47 +0100)] 
core: clarify which unit file is masked in error message

After all, the masked unit file error might be returned when enqueuing a unit that is not masked but requires a masked
unit. In this case it should really be clear which unit is meant here.

8 years agoman: link resolved bus API documentation from its man page
Lennart Poettering [Tue, 9 Feb 2016 19:39:43 +0000 (20:39 +0100)] 
man: link resolved bus API documentation from its man page

This is similar how we already do it for logind or machined.

8 years agounits: downgrade dependency on /tmp in basic.target to Wants=
Lennart Poettering [Tue, 9 Feb 2016 19:34:27 +0000 (20:34 +0100)] 
units: downgrade dependency on /tmp in basic.target to Wants=

Now that requiring of a masked unit results in failure again, downgrade the dependency on /tmp to Wants= again, so that
our suggested way to disable /tmp-on-tmpfs by masking doesn't result in a failing boot.

References: #2315

8 years agocore: change internal error code for masked units from EBADR to ESHUTDOWN
Lennart Poettering [Tue, 9 Feb 2016 19:28:58 +0000 (20:28 +0100)] 
core: change internal error code for masked units from EBADR to ESHUTDOWN

This commit changes the mapping of the BUS_ERROR_UNIT_MASKED error to ESHUTDOWN. This error is used whenever the
transaction engine is asked to operate on a masked unit. ESHUTDOWN is what is used for the similar case when the unit
file enable/disable logic hits a masked unit file, hence is a natural candidate to be used here too.

Background: before this patch both "job type not applicable" and "unit masked" where mapped to EBADR, which
transaction_add_job_and_dependencies() then checked for. It actually wanted to check exclusively for the former error
condition, not the latter but due to the same mapping this failed to work.

This patch semi-undoes an accidental change made in caffa4ef700fdd0eadd6c0b2ef9925611672a1bc, however restores the
error number to ESHUTDOWN instead of the original ENOSYS (for the reasons indicated above).

To make this easier to grok for the future, I added comments to explaining which error conditions are checked for.

Fixes: #2315
8 years agoMerge pull request #2561 from msekletar/virtio-blk-by-path
Lennart Poettering [Tue, 9 Feb 2016 13:15:03 +0000 (14:15 +0100)] 
Merge pull request #2561 from msekletar/virtio-blk-by-path

path_id: reintroduce by-path links for virtio block devices

8 years agoMerge pull request #2559 from chaloulo/drop_monotonicity_check_from_journal_file
Lennart Poettering [Tue, 9 Feb 2016 12:52:28 +0000 (13:52 +0100)] 
Merge pull request #2559 from chaloulo/drop_monotonicity_check_from_journal_file

journal: Drop monotonicity check when appending to journal file

8 years agoMerge pull request #2557 from whot/hwdb-updates
Lennart Poettering [Tue, 9 Feb 2016 12:50:18 +0000 (13:50 +0100)] 
Merge pull request #2557 from whot/hwdb-updates

hwdb: add Dell Lattitude E6320 pointing stick speed fix

8 years agopath_id: reintroduce by-path links for virtio block devices 2561/head
Michal Sekletar [Tue, 9 Feb 2016 08:57:45 +0000 (09:57 +0100)] 
path_id: reintroduce by-path links for virtio block devices

Enumeration of virtio buses is global and hence
non-deterministic. However, we are guaranteed there is never going to be
more than one virtio bus per parent PCI device. While populating
ID_PATH we simply skip virtio part of the syspath and we extend the path
using the sysname of the parent PCI device.

With this patch udev creates following by-path links for virtio-blk
device /dev/vda which contains two partitions.

ls -l /dev/disk/by-path/
total 0
lrwxrwxrwx 1 root root  9 Feb  9 10:47 virtio-pci-0000:00:05.0 -> ../../vda
lrwxrwxrwx 1 root root 10 Feb  9 10:47 virtio-pci-0000:00:05.0-part1 -> ../../vda1
lrwxrwxrwx 1 root root 10 Feb  9 10:47 virtio-pci-0000:00:05.0-part2 -> ../../vda2

See:
http://lists.linuxfoundation.org/pipermail/virtualization/2015-August/030328.html

Fixes #2501

8 years agojournal: Drop monotonicity check when appending to journal file 2559/head
Klearchos Chaloulos [Tue, 9 Feb 2016 10:14:54 +0000 (12:14 +0200)] 
journal: Drop monotonicity check when appending to journal file

Remove the check that triggers rotation of the journal file when the arriving log entry had a monotonic timestamp smaller that the previous log entry. This check causes unnecessary rotations when journal-remote was receiving from multiple senders, therefore monotonicity can not be guaranteed. Also, it does not offer any useful functionality for systemd-journald.

8 years agohwdb: add Dell Lattitude E6320 pointing stick speed fix 2557/head
Peter Hutterer [Tue, 9 Feb 2016 07:37:57 +0000 (17:37 +1000)] 
hwdb: add Dell Lattitude E6320 pointing stick speed fix

https://bugzilla.redhat.com/show_bug.cgi?id=1200717

8 years agoMerge pull request #2542 from 0xAX/get_ts_delta
Lennart Poettering [Mon, 8 Feb 2016 23:23:47 +0000 (00:23 +0100)] 
Merge pull request #2542 from 0xAX/get_ts_delta

time-util: cleanups

8 years agoMerge pull request #2547 from 0xAX/generalize-format-timestamp-internal
Lennart Poettering [Mon, 8 Feb 2016 20:26:39 +0000 (21:26 +0100)] 
Merge pull request #2547 from 0xAX/generalize-format-timestamp-internal

time-util: merge format_timestamp_internal() and format_timestamp_int…

8 years agotime-util: introduce usec_sub() 2542/head
Alexander Kuleshov [Thu, 4 Feb 2016 18:02:39 +0000 (00:02 +0600)] 
time-util: introduce usec_sub()

The dual_timestamp_from_realtime(), dual_timestamp_from_monotonic()
and dual_timestamp_from_boottime_or_monotonic() shares the same
code for comparison given ts with delta. Let's move it to the
separate inline function to prevent code duplication.

8 years agotime-util: merge format_timestamp_internal() and format_timestamp_internal_us() 2547/head
Alexander Kuleshov [Sun, 7 Feb 2016 16:11:46 +0000 (22:11 +0600)] 
time-util: merge format_timestamp_internal() and format_timestamp_internal_us()

The time_util.c provides format_timestamp_internal() and
format_timestamp_internal_us() functions for a timestamp formating. Both
functions are very similar and differ only in formats handling.

We can add additional boolean parameter to the format_timestamp_internal()
function which will represent is a format for us timestamp or not.
This allows us to get rid of format_timestamp_internal_us() that is prevent
code duplication.

We can remove format_timestamp_internal_us() safely, because it is static and
has no users outside of the time_util.c. New fourth parameter will be passed
inside of the format_timestamp(), format_timestamp_us() and etc, functions,
but the public API is not changed.

8 years agoMerge pull request #2535 from PhillipSz/remove-exit-0
Lennart Poettering [Mon, 8 Feb 2016 16:27:18 +0000 (17:27 +0100)] 
Merge pull request #2535 from PhillipSz/remove-exit-0

test: remove exit 0 at the end

8 years agoMerge pull request #2533 from keszybz/read-only-seed
Lennart Poettering [Mon, 8 Feb 2016 15:31:09 +0000 (16:31 +0100)] 
Merge pull request #2533 from keszybz/read-only-seed

random-seed: provide nicer error message when unable to open file

8 years agoMerge pull request #2549 from rhatdan/journalctl
Lennart Poettering [Mon, 8 Feb 2016 15:27:33 +0000 (16:27 +0100)] 
Merge pull request #2549 from rhatdan/journalctl

Journalctl command completion should show machines

8 years agoMerge pull request #2550 from evverx/fix-457
Lennart Poettering [Mon, 8 Feb 2016 15:26:17 +0000 (16:26 +0100)] 
Merge pull request #2550 from evverx/fix-457

tests: fix #457

8 years agoJournalctl command completion should show machines 2549/head
Dan Walsh [Mon, 8 Feb 2016 12:22:34 +0000 (07:22 -0500)] 
Journalctl command completion should show machines

8 years agoMerge pull request #2543 from keszybz/build-sys-and-man-fixes
Lennart Poettering [Mon, 8 Feb 2016 11:52:39 +0000 (12:52 +0100)] 
Merge pull request #2543 from keszybz/build-sys-and-man-fixes

Build sys and man fixes

8 years agotests: fix #457 2550/head
Evgeny Vereshchagin [Mon, 8 Feb 2016 11:18:19 +0000 (11:18 +0000)] 
tests: fix #457

There are some limits on XFS:
major_max=511
minor_max=262143
see https://github.com/torvalds/linux/blob/master/fs/xfs/xfs_iops.c

if (S_ISCHR(mode) || S_ISBLK(mode)) {
    if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
        return -EINVAL;

8 years agoMerge pull request #2546 from torstehu/fix-typo3
Zbigniew Jędrzejewski-Szmek [Sun, 7 Feb 2016 14:45:13 +0000 (09:45 -0500)] 
Merge pull request #2546 from torstehu/fix-typo3

treewide: fix typos and spacing

8 years agoMerge pull request #2536 from vcaputo/journal-misc-cleanups
Zbigniew Jędrzejewski-Szmek [Sun, 7 Feb 2016 14:43:32 +0000 (09:43 -0500)] 
Merge pull request #2536 from vcaputo/journal-misc-cleanups

journal: miscellaneous cleanups

8 years agoMerge pull request #2541 from mgorny/append-flags-fix
Zbigniew Jędrzejewski-Szmek [Sun, 7 Feb 2016 14:33:49 +0000 (09:33 -0500)] 
Merge pull request #2541 from mgorny/append-flags-fix

build-sys: Perform flag tests in context of existing flags

8 years agotreewide: fix typos and spacing 2546/head
Torstein Husebø [Wed, 13 Jan 2016 13:52:51 +0000 (14:52 +0100)] 
treewide: fix typos and spacing

8 years agorandom-seed: provide nicer error message when unable to open file 2533/head
Zbigniew Jędrzejewski-Szmek [Fri, 5 Feb 2016 00:45:08 +0000 (19:45 -0500)] 
random-seed: provide nicer error message when unable to open file

If /var is read-only, and the seed file does not exist, we would print
a misleading error message for ENOENT. Print both messages instead, to
make it easy to diagonose.

Also, treat the cases of missing seed file the same as empty seed file
and exit successfully. Initialize the return code properly.

Fixes https://github.com/systemd/systemd/issues/2530,
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813599.

8 years agoshell-completion: fix header 2543/head
Zbigniew Jędrzejewski-Szmek [Sat, 6 Feb 2016 22:54:18 +0000 (17:54 -0500)] 
shell-completion: fix header

8 years agoman: clarify that generators are run before /var
Zbigniew Jędrzejewski-Szmek [Sat, 6 Feb 2016 22:53:31 +0000 (17:53 -0500)] 
man: clarify that generators are run before /var

Just a clarification. At least systemd-openqa-generator from
openqa gets this wrong.

8 years agoman/hostnamectl: refer to transient hostname as "fallback"
Zbigniew Jędrzejewski-Szmek [Wed, 3 Feb 2016 16:29:04 +0000 (11:29 -0500)] 
man/hostnamectl: refer to transient hostname as "fallback"

Saying it is the "default" is misleading, because it is almost
never used.

8 years agoman/hostname: remove obsolete text
Zbigniew Jędrzejewski-Szmek [Wed, 3 Feb 2016 16:25:19 +0000 (11:25 -0500)] 
man/hostname: remove obsolete text

All distribution-specific code was removed ages ago.

8 years agobuild-sys: simplify conditionals around shell completion files
Zbigniew Jędrzejewski-Szmek [Tue, 2 Feb 2016 21:10:36 +0000 (16:10 -0500)] 
build-sys: simplify conditionals around shell completion files

Repeating those conditionals for every program is
annoying. Use a helper variable to avoid conditionals.

Also always add generated completion files to CLEANFILES.

8 years agobuild-sys: move CLEANFILES additions out from under HAVE_GNUEFI
Zbigniew Jędrzejewski-Szmek [Tue, 2 Feb 2016 19:24:58 +0000 (14:24 -0500)] 
build-sys: move CLEANFILES additions out from under HAVE_GNUEFI

It's better to always include them in 'make clean'.
It is also easier to read Makefile.am when less stuff is conditional.

8 years agobuild-sys: Perform flag tests in context to existing flags 2541/head
Michał Górny [Sat, 6 Feb 2016 12:47:30 +0000 (13:47 +0100)] 
build-sys: Perform flag tests in context to existing flags

Fix the CC_CHECK_FLAG_APPEND macro to test appended flags in context to
current flag values. Otherwise, it is possible to append flags colliding
with user's *FLAGS or even previously appended flags that will cause
the build to fail.

8 years agoMerge pull request #2534 from indrajitr/patch-1
Lennart Poettering [Sat, 6 Feb 2016 13:43:26 +0000 (14:43 +0100)] 
Merge pull request #2534 from indrajitr/patch-1

Fix typo in rescue shell

8 years agoMerge pull request #2525 from chaloulo/journal-remote-microhttp-max-memory-usage
Lennart Poettering [Sat, 6 Feb 2016 13:40:32 +0000 (14:40 +0100)] 
Merge pull request #2525 from chaloulo/journal-remote-microhttp-max-memory-usage

journal-remote: decrease microhttpd memory limit

8 years agoMerge pull request #2540 from 0xAX/use-dual-timestamp-get-in-timeutil
Lennart Poettering [Sat, 6 Feb 2016 13:38:16 +0000 (14:38 +0100)] 
Merge pull request #2540 from 0xAX/use-dual-timestamp-get-in-timeutil

time-util: use dual_timestamp_get()

8 years agotime-util: use dual_timestamp_get() 2540/head
Alexander Kuleshov [Thu, 4 Feb 2016 19:03:23 +0000 (01:03 +0600)] 
time-util: use dual_timestamp_get()

The time-util.c provides dual_timestamp_get() function for getting
realtime and monotonic timestamps. Let's use it instead of direct
realtime/monotonic calculation.

8 years agojournal: add missing space to switch statement 2536/head
Vito Caputo [Sat, 6 Feb 2016 11:51:14 +0000 (03:51 -0800)] 
journal: add missing space to switch statement

8 years agoMerge pull request #2138 from stefwalter/journal-combine
Lennart Poettering [Sat, 6 Feb 2016 10:30:05 +0000 (11:30 +0100)] 
Merge pull request #2138 from stefwalter/journal-combine

Combine journal catalog entries with the same id

8 years agojournal: remove template from open_journal args
Vito Caputo [Fri, 5 Feb 2016 15:26:18 +0000 (07:26 -0800)] 
journal: remove template from open_journal args

None of the callers take advantage of this parameter, it's always NULL,
this is just a private helper function to simplify the call sites so
drop the template parameter altogether.  If a caller emerges later who
needs it, it can be restored.

8 years agojournal: Add test for merging journal entries 2138/head
Stef Walter [Sun, 8 Nov 2015 12:18:07 +0000 (13:18 +0100)] 
journal: Add test for merging journal entries

8 years agojournal: Refactor test-catalog importing tests
Stef Walter [Sun, 8 Nov 2015 11:51:51 +0000 (12:51 +0100)] 
journal: Refactor test-catalog importing tests

One function per test. Remove shared state between tests.

8 years agojournal: Combine journal catalog entries with the same id
Stef Walter [Sun, 8 Nov 2015 10:20:01 +0000 (11:20 +0100)] 
journal: Combine journal catalog entries with the same id

Instead of discarding duplicate catalog entries, we now combine
them. This allows software or admins to add or override catalog
headers, or add additional text to the catalog message.

8 years agojournal: move mmap() ENOMEM loop to function
Vito Caputo [Fri, 5 Feb 2016 11:44:05 +0000 (03:44 -0800)] 
journal: move mmap() ENOMEM loop to function

Introduces mmap_try_harder()

8 years agojournal: add asserts on f->(data|field)_hash_table
Vito Caputo [Fri, 5 Feb 2016 11:30:55 +0000 (03:30 -0800)] 
journal: add asserts on f->(data|field)_hash_table

Functions dereferencing these members should assert their non-NULL state.

8 years agojournal: add asserts for f->header
Vito Caputo [Fri, 5 Feb 2016 11:25:03 +0000 (03:25 -0800)] 
journal: add asserts for f->header

Just some additional asserts in functions dereferencing f->header.

8 years agojournal: move window initialization to window_add
Vito Caputo [Fri, 5 Feb 2016 10:43:00 +0000 (02:43 -0800)] 
journal: move window initialization to window_add

8 years agotest: remove exit 0 at the end 2535/head
Phillip Sz [Fri, 5 Feb 2016 10:38:58 +0000 (11:38 +0100)] 
test: remove exit 0 at the end

We don't need that at the end, as it will always exit with 0 if
everything is okey.

8 years agoFix typo in rescue shell 2534/head
Indrajit Raychaudhuri [Fri, 5 Feb 2016 05:58:53 +0000 (11:28 +0530)] 
Fix typo in rescue shell

8 years agoMerge pull request #2531 from whot/hwdb-updates
Zbigniew Jędrzejewski-Szmek [Thu, 4 Feb 2016 23:37:05 +0000 (18:37 -0500)] 
Merge pull request #2531 from whot/hwdb-updates

hwdb: add HP Pavilion dm4 axis corrections

8 years agohwdb: add HP Pavilion dm4 axis corrections 2531/head
Peter Hutterer [Tue, 2 Feb 2016 00:07:05 +0000 (10:07 +1000)] 
hwdb: add HP Pavilion dm4 axis corrections

https://bugs.freedesktop.org/show_bug.cgi?id=91615

8 years agoMerge pull request #2524 from poettering/bag-of-stuff
Tom Gundersen [Thu, 4 Feb 2016 17:05:32 +0000 (18:05 +0100)] 
Merge pull request #2524 from poettering/bag-of-stuff

Bag of stuff

8 years agojournal-remote: decrease microhttpd memory limit 2525/head
Klearchos Chaloulos [Thu, 4 Feb 2016 15:35:24 +0000 (17:35 +0200)] 
journal-remote: decrease microhttpd memory limit

Set the MHD_OPTION_CONNECTION_MEMORY_LIMIT to 128KB. The precious value was DATA_SIZE_MAX, which was defined as 1024*1024*768. This caused journal-remote to allocate 756MB for each journal-upload connection, thus exhausting the available memory.

8 years agoresolved: correctly store interface index of RRs in cache 2524/head
Lennart Poettering [Thu, 4 Feb 2016 00:10:36 +0000 (01:10 +0100)] 
resolved: correctly store interface index of RRs in cache

Fixes: #2361
8 years agoresolved: properly turn off DNSSEC for LLMNR/mDNS scopes
Lennart Poettering [Thu, 4 Feb 2016 00:10:12 +0000 (01:10 +0100)] 
resolved: properly turn off DNSSEC for LLMNR/mDNS scopes

8 years agocore: rework job_get_timeout() to use usec_t and handle USEC_INFINITY time events...
Lennart Poettering [Wed, 3 Feb 2016 23:35:43 +0000 (00:35 +0100)] 
core: rework job_get_timeout() to use usec_t and handle USEC_INFINITY time events correctly

8 years agoresolved: don't follow CNAMEs originating from DNS on LLMNR
Lennart Poettering [Wed, 3 Feb 2016 23:14:25 +0000 (00:14 +0100)] 
resolved: don't follow CNAMEs originating from DNS on LLMNR

Fixes: #2514
8 years agocore: move service_unwatch_control_pid() call into service_enter_running()
Lennart Poettering [Wed, 3 Feb 2016 22:55:53 +0000 (23:55 +0100)] 
core: move service_unwatch_control_pid() call into service_enter_running()

When we enter the running state we should forget about any control processes, in all cases, and not just when hit a
reload timeout...

8 years agojournal: fix boolean handling in MMapCache
Lennart Poettering [Wed, 3 Feb 2016 22:54:47 +0000 (23:54 +0100)] 
journal: fix boolean handling in MMapCache

Let's use bitfields for our booleans, and don't try to apply binary OR or addition on them, because that's weird and we
should instead use logical OR only.

8 years agocore: log about path_is_mount_point() errors
Lennart Poettering [Wed, 3 Feb 2016 22:53:08 +0000 (23:53 +0100)] 
core: log about path_is_mount_point() errors

We really shouldn't fail silently, but print a log message about these errors. Also make sure to attach error codes to
all log messages where that makes sense.

(While we are at it, add a couple of (void) casts to functions where we knowingly ignore return values.)

8 years agocore: when a service's ExecStartPre= times out, skip ExecStop=
Lennart Poettering [Wed, 3 Feb 2016 22:38:50 +0000 (23:38 +0100)] 
core: when a service's ExecStartPre= times out, skip ExecStop=

This makes sure we never run two control processes at the same time, we cannot keep track off.

This introduces a slight change of behaviour but cleans up the definition of ExecStop= and ExecStopPost=. The former is
now invoked only if the service managed to start-up correctly. The latter is called even if start-up failed half-way.
Thus, ExecStopPost= may be used as clean-up step for both successful and failed start-up attempts, but ExecStop='s
purpose is clearly defined as being responsible for shutting down the service and nothing else.

The precise behaviour of this was not documented yet. This commit adds the necessary docs.

Fixes: #1254
8 years agoutil: add check that makes sure time_t and TIME_T_MAX work the way we assume they do
Lennart Poettering [Wed, 3 Feb 2016 20:05:59 +0000 (21:05 +0100)] 
util: add check that makes sure time_t and TIME_T_MAX work the way we assume they do

8 years agogpt-auto: handle errors from blkid more correctly
Lennart Poettering [Wed, 3 Feb 2016 19:34:04 +0000 (20:34 +0100)] 
gpt-auto: handle errors from blkid more correctly

Let's make sure we don't choke if blkid_probe_lookup_value() returns a NULL string.

Also, make sur we propagate the correct error when blkid_probe_lookup_value() fails.

8 years agonspawn: make sure --help fits it 79ch
Lennart Poettering [Wed, 3 Feb 2016 19:33:38 +0000 (20:33 +0100)] 
nspawn: make sure --help fits it 79ch

8 years agonspawn: optionally run a stub init process as PID 1
Lennart Poettering [Wed, 3 Feb 2016 19:32:06 +0000 (20:32 +0100)] 
nspawn: optionally run a stub init process as PID 1

This adds a new switch --as-pid2, which allows running commands as PID 2, while a stub init process is run as PID 1.
This is useful in order to run arbitrary commands in a container, as PID1's semantics are different from all other
processes regarding reaping of unknown children or signal handling.

8 years agoresolved: apply epoch to system time from PID 1
Lennart Poettering [Wed, 3 Feb 2016 17:28:40 +0000 (18:28 +0100)] 
resolved: apply epoch to system time from PID 1

For use in timesyncd we already defined a compile-time "epoch" value, which is based on the mtime of the NEWS file, and
specifies a point in time we know lies in the past at runtime. timesyncd uses this to filter out nonsensical timestamp
file data, and bump the system clock to a time that is after the build time of systemd. This patch adds similar bumping
code to earliest PID 1 initialization, so that the system never continues operation with a clock that is in the 1970ies
or even 1930s.