platform/upstream/systemd.git
9 years agobuild-sys: split internal basic/ library from shared/
Kay Sievers [Tue, 9 Jun 2015 12:27:33 +0000 (14:27 +0200)]
build-sys: split internal basic/ library from shared/

basic/      can be used by everything
            cannot use anything outside of basic/

libsystemd/ can use basic/
            cannot use shared/

shared/     can use libsystemd/

9 years agoMerge pull request #3 from threatgrid/more_cgtop_enhancements
Lennart Poettering [Wed, 10 Jun 2015 23:52:25 +0000 (01:52 +0200)]
Merge pull request #3 from threatgrid/more_cgtop_enhancements

cgtop enhancements for easier machine-readable output

9 years agocgtop: IO readings are valid if any data is available, even if unchanged since last...
Charles Duffy [Tue, 2 Jun 2015 22:38:49 +0000 (17:38 -0500)]
cgtop: IO readings are valid if any data is available, even if unchanged since last tick

Emit "0" rather than "-" if no change in IO values are seen for a process since
last tick, so long as accounting has registered content at all.

9 years agoMerge pull request #6 from xnox/drop-name
Lennart Poettering [Wed, 10 Jun 2015 22:50:04 +0000 (00:50 +0200)]
Merge pull request #6 from xnox/drop-name

shared: Drop 'name=' prefix from SYSTEMD_CGROUP_CONTROLLER define.

9 years agoMerge pull request #152 from zonque/buildsys
Lennart Poettering [Wed, 10 Jun 2015 21:02:23 +0000 (23:02 +0200)]
Merge pull request #152 from zonque/buildsys

build-sys: make man/systemd.directives.xml depend on man/custom-entit…

9 years agoMerge pull request #148 from teg/sd-network-race
Lennart Poettering [Wed, 10 Jun 2015 18:43:38 +0000 (20:43 +0200)]
Merge pull request #148 from teg/sd-network-race

sd-network: allow the state dir to be created after the monitor

9 years agoMerge pull request #151 from mischief/dns-shared-3
Lennart Poettering [Wed, 10 Jun 2015 18:43:06 +0000 (20:43 +0200)]
Merge pull request #151 from mischief/dns-shared-3

move dns code from resolve to shared v3

9 years agobuild-sys: make man/systemd.directives.xml depend on man/custom-entities.ent
Daniel Mack [Wed, 10 Jun 2015 18:42:56 +0000 (20:42 +0200)]
build-sys: make man/systemd.directives.xml depend on man/custom-entities.ent

Currently, the following command sequence fails:

  make distclean
  ./autogen.sh c
  make distcheck

That's because the command invoked to build man/systemd.directives.xml needs
man/custom-entities.ent to function, which itself isn't a dependency.

The $(filter-out $<,$^) logic used to filter out everything from the
prerequisites except for the first word, which doesn't work anymore
now. Use $(SOURCE_XML_FILES) instead.

9 years agoInclude tools/compile-unifont.py in the source tarball
Mike Gilbert [Wed, 10 Jun 2015 03:13:36 +0000 (23:13 -0400)]
Include tools/compile-unifont.py in the source tarball

This prevents a build failure when /usr/share/fonts/unifont/unifont.hex
is newer than unifont-glyph-array.bin.

9 years agobus: we now support path_namespace=/
David Herrmann [Wed, 10 Jun 2015 18:14:56 +0000 (20:14 +0200)]
bus: we now support path_namespace=/

Our bloom-filters support root-path matching. Make sure we properly add
the path_namespace= tag.

9 years agobus: fix pattern matching
David Herrmann [Wed, 10 Jun 2015 17:34:05 +0000 (19:34 +0200)]
bus: fix pattern matching

DBus-spec defines two different pattern matchings:

  1) Path and namespace prefix matching. In this case, A matches B either
     if both are equal, or if B is fully included in the namespace of A.
     In other words, A has to be a prefix of B, but end with a separator
     character (or the following character in B must be one).

     This is used for path_namespace= and arg0namespace=

  2) The other pattern matching is used for arg0path= which does a two-way
     matching. That is, A must be a prefix of B, or B a prefix of A.
     Furthermore, the prefix must end with a separator.

Fix the sd-bus helpers to reflect that. The 'simple_' and 'complex_'
prefixes don't make any sense now, but.. eh..

9 years agobus: fix test-bus-kerne-bloom.c to match properly
David Herrmann [Wed, 10 Jun 2015 16:47:31 +0000 (18:47 +0200)]
bus: fix test-bus-kerne-bloom.c to match properly

Make sure we actually verify our match-rules are executed properly. Right
now all we test is the bloom-matches, which are non-reliable as they leave
through false-positives.

9 years agobus: fix arg0path= two-way matching
David Herrmann [Wed, 10 Jun 2015 18:04:53 +0000 (20:04 +0200)]
bus: fix arg0path= two-way matching

DBus spec clearly defines arg0path= to be a two-way matching. That is,
either the matcher or the matchee can be a prefix of the other to match.
This is not possible to implement with bloom-filters. Instead, we'd have
to add a separate filter for each prefix. This is non-trivial, though.
Hence, just skip the match for now and match locally.

9 years agobus: fix bloom_add_prefixes() to add all required data
David Herrmann [Wed, 10 Jun 2015 16:26:16 +0000 (18:26 +0200)]
bus: fix bloom_add_prefixes() to add all required data

Lets look at an example where we add arg0="/foo/bar/waldo" to a
bloom-filter. The following strings are added:
  "arg0:/foo/bar/waldo"
  "arg0-slash-prefix:/foo/bar"
  "arg0-slash-prefix:/foo"

Two problems arise:

1) If we match on "arg0path=/foo/bar/waldo", the dbus-spec explicitly
states that equal strings are also considered prefixes. However, in the
bloom-match, we can only provide a single match-filter. Therefore, we have
to add "arg0-slash-prefix:/foo/bar/waldo" there, but this never occured in
the bloom-mask of the message.
Hence, this patch makes sure bloom_add_prefixes() adds the full path as
prefix, too.

2) If we match on "arg0path=/foo/", the dbus-spec states that arg0path
does prefix-matching with the trailing slash _included_, unlike
path_namespace= matches, which does *not* include them. This is
inconsistent, but we have to support the specs. Therefore, we must add
prefixes with _and_ without trailing separators.
Hence, this patch makes sure bloom_add_prefixes() adds all prefixes with
the trailing slash included.

The final set of strings added therefore is:
  "arg0:/foo/bar/waldo"
  "arg0-slash-prefix:/foo/bar/waldo"
  "arg0-slash-prefix:/foo/bar/"
  "arg0-slash-prefix:/foo/bar"
  "arg0-slash-prefix:/foo/"
  "arg0-slash-prefix:/foo"
  "arg0-slash-prefix:/"

9 years agolibsystemd-network: use domain validation instead of hostname validation for dhcp...
Nick Owens [Tue, 2 Jun 2015 23:30:42 +0000 (16:30 -0700)]
libsystemd-network: use domain validation instead of hostname validation for dhcp domain option

previously hostname_is_valid was used to validate domain names, which
would silently drop perfectly valid dns names that were longer than a
single dns label.

9 years agoshared: add convenience function for validating dns names
Nick Owens [Tue, 2 Jun 2015 23:29:39 +0000 (16:29 -0700)]
shared: add convenience function for validating dns names

9 years agoresolve: move dns routines into shared
Nick Owens [Tue, 2 Jun 2015 18:49:43 +0000 (11:49 -0700)]
resolve: move dns routines into shared

9 years agosd-network: allow the state dir to be created after the monitor
Tom Gundersen [Wed, 10 Jun 2015 17:00:39 +0000 (19:00 +0200)]
sd-network: allow the state dir to be created after the monitor

We now listen for new subdirs of /run/systemd, and /run/systemd/netif in case
/run/systemd/netif/links does not exist.

9 years agoMerge pull request #147 from poettering/cmsg
Daniel Mack [Wed, 10 Jun 2015 18:06:43 +0000 (20:06 +0200)]
Merge pull request #147 from poettering/cmsg

util: introduce CMSG_FOREACH() macro and make use of it everywhere

9 years agoutil: introduce CMSG_FOREACH() macro and make use of it everywhere
Lennart Poettering [Wed, 10 Jun 2015 17:10:47 +0000 (19:10 +0200)]
util: introduce CMSG_FOREACH() macro and make use of it everywhere

It's only marginally shorter then the usual for() loop, but certainly
more readable.

9 years agoMerge pull request #146 from arvidjaar/pr/udev-import-program-exit-code-man
Tom Gundersen [Wed, 10 Jun 2015 17:27:22 +0000 (19:27 +0200)]
Merge pull request #146 from arvidjaar/pr/udev-import-program-exit-code-man

man: clarify that IMPORT{program} is done only for zero exit code

9 years agoFix typo
Zbigniew Jędrzejewski-Szmek [Wed, 10 Jun 2015 15:06:00 +0000 (11:06 -0400)]
Fix typo

Follow up for 7c918141ed.

9 years agoman: clarify that IMPORT{program} is done only for zero exit code
Andrei Borzenkov [Wed, 10 Jun 2015 16:43:36 +0000 (19:43 +0300)]
man: clarify that IMPORT{program} is done only for zero exit code

9 years agoMerge pull request #142 from teg/sd-network-unref-NULL
Lennart Poettering [Wed, 10 Jun 2015 14:59:43 +0000 (16:59 +0200)]
Merge pull request #142 from teg/sd-network-unref-NULL

sd-network: allow NULL in sd_network_monitor_unref

9 years agoMerge pull request #140 from teg/man-udev-timeout
Daniel Mack [Wed, 10 Jun 2015 14:46:17 +0000 (16:46 +0200)]
Merge pull request #140 from teg/man-udev-timeout

man: udevd - correct default event timeout

9 years agosd-network: allow NULL in sd_network_monitor_unref
Tom Gundersen [Wed, 10 Jun 2015 13:55:09 +0000 (15:55 +0200)]
sd-network: allow NULL in sd_network_monitor_unref

Match rest of codebase, we always allow unref'ing NULL.

9 years agoMerge pull request #85 from keszybz/selinux-context
Zbigniew Jędrzejewski-Szmek [Wed, 10 Jun 2015 14:20:50 +0000 (10:20 -0400)]
Merge pull request #85 from keszybz/selinux-context

9 years agotest-copy: test copy_bytes()
Zbigniew Jędrzejewski-Szmek [Tue, 2 Jun 2015 16:55:27 +0000 (12:55 -0400)]
test-copy: test copy_bytes()

9 years agoman: udevd - correct default event timeout
Tom Gundersen [Tue, 9 Jun 2015 21:56:02 +0000 (23:56 +0200)]
man: udevd - correct default event timeout

This was changed from 30 to 180 seconds quite some time ago.

9 years agosd-bus: remove ucred parameter from bus_message_from_header() since we don't use...
Lennart Poettering [Wed, 10 Jun 2015 13:52:14 +0000 (15:52 +0200)]
sd-bus: remove ucred parameter from bus_message_from_header() since we don't use it anymore

9 years agosd-bus: fix early exit when we lack all data in bus_get_owner_creds_dbus1()
Lennart Poettering [Wed, 10 Jun 2015 13:51:40 +0000 (15:51 +0200)]
sd-bus: fix early exit when we lack all data in bus_get_owner_creds_dbus1()

9 years agobuild-sys: upgrade shadow variable warnings to errors
Lennart Poettering [Wed, 10 Jun 2015 13:44:03 +0000 (15:44 +0200)]
build-sys: upgrade shadow variable warnings to errors

9 years agobus-message: remove shadow warning with log_debug_bus_message()
Lennart Poettering [Wed, 10 Jun 2015 13:51:14 +0000 (15:51 +0200)]
bus-message: remove shadow warning with log_debug_bus_message()

9 years agojournald: simplify context handling
Zbigniew Jędrzejewski-Szmek [Sun, 7 Jun 2015 01:36:52 +0000 (21:36 -0400)]
journald: simplify context handling

By using our homegrown function we can dispense with all the iffdefery.

9 years agosd-bus: store selinux context at connection time
Zbigniew Jędrzejewski-Szmek [Sun, 7 Jun 2015 01:24:45 +0000 (21:24 -0400)]
sd-bus: store selinux context at connection time

This appears to be the right time to do it for SOCK_STREAM
unix sockets.

Also: condition bus_get_owner_creds_dbus1 was reversed. Split
it out to a separate variable for clarity and fix.

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

9 years agoMerge pull request #132 from ssahani/bond
Lennart Poettering [Wed, 10 Jun 2015 13:10:47 +0000 (15:10 +0200)]
Merge pull request #132 from ssahani/bond

networkd: bond  improve logging

9 years agoMerge pull request #138 from utezduyar/use-async-convenience-function-on-setting...
Lennart Poettering [Wed, 10 Jun 2015 13:09:03 +0000 (15:09 +0200)]
Merge pull request #138 from utezduyar/use-async-convenience-function-on-setting-hostname

networkd: use async convenience call to set hostname

9 years agoMerge pull request #133 from ssahani/net
Lennart Poettering [Wed, 10 Jun 2015 13:08:48 +0000 (15:08 +0200)]
Merge pull request #133 from ssahani/net

networkd: vxlan improve logging

9 years agosd-bus: do not use per-datagram auxiliary information
Zbigniew Jędrzejewski-Szmek [Sat, 6 Jun 2015 22:59:27 +0000 (18:59 -0400)]
sd-bus: do not use per-datagram auxiliary information

SELinux information cannot be retrieved this way, since we are
using stream unix sockets and SCM_SECURITY does not work for
them.

SCM_CREDENTIALS use dropped to be consistent. We also should
get this information at connection time.

https://bugzilla.redhat.com/show_bug.cgi?id=1224211
"SCM_SECURITY was only added for datagram sockets."

9 years agoMerge pull request #137 from torstehu/correct-typo
Daniel Mack [Wed, 10 Jun 2015 12:21:26 +0000 (14:21 +0200)]
Merge pull request #137 from torstehu/correct-typo

sd-bus: Correct typo

9 years agonetworkd: use async convenience call to set hostname
Umut Tezduyar Lindskog [Wed, 10 Jun 2015 11:15:39 +0000 (13:15 +0200)]
networkd: use async convenience call to set hostname

9 years agosd-bus: Correct typo
Torstein Husebø [Wed, 10 Jun 2015 11:08:31 +0000 (13:08 +0200)]
sd-bus: Correct typo

9 years agoMerge pull request #136 from dslul/master
Martin Pitt [Wed, 10 Jun 2015 10:50:35 +0000 (12:50 +0200)]
Merge pull request #136 from dslul/master

keymap: Add Samsung NP350V and NP670Z

9 years agokeymap: Add Samsung NP350V and NP670Z
dslul [Wed, 10 Jun 2015 10:18:22 +0000 (12:18 +0200)]
keymap: Add Samsung NP350V and NP670Z

typo

keymap: Add Samsung NP350V and NP670Z

9 years agoMerge pull request #117 from utezduyar/feat/dump-sync-dbus-message-with-logging-on
Lennart Poettering [Wed, 10 Jun 2015 09:38:12 +0000 (11:38 +0200)]
Merge pull request #117 from utezduyar/feat/dump-sync-dbus-message-with-logging-on

sd-bus: dump sync messages in debug mode

9 years agoMerge pull request #135 from zonque/buildsys
Lennart Poettering [Wed, 10 Jun 2015 09:27:33 +0000 (11:27 +0200)]
Merge pull request #135 from zonque/buildsys

build-sys: turn some warnings into errors

9 years agobuild-sys: turn some warnings into errors
Daniel Mack [Wed, 10 Jun 2015 08:54:59 +0000 (10:54 +0200)]
build-sys: turn some warnings into errors

Make the build sys error out on missing function prototypes, missing
variable declarations, implicit function declarations or forgotten return
statements.

None of these conditions are acceptable, and by making them hard errors, the
build bots can detect them earlier.

9 years agoMerge pull request #130 from whot/hwdb-updates
Daniel Mack [Wed, 10 Jun 2015 07:43:56 +0000 (09:43 +0200)]
Merge pull request #130 from whot/hwdb-updates

Hwdb updates

9 years agosd-bus: dump sync messages in debug mode
Umut Tezduyar Lindskog [Fri, 29 May 2015 07:48:11 +0000 (09:48 +0200)]
sd-bus: dump sync messages in debug mode

9 years agonetwork: veth imprve logging
Susant Sahani [Wed, 10 Jun 2015 06:50:45 +0000 (12:20 +0530)]
network: veth imprve logging

Replaces a lof of strerror() usage with log_netdev_error_errno()

9 years agonetworkd: vxlan improve logging
Susant Sahani [Wed, 10 Jun 2015 06:25:54 +0000 (11:55 +0530)]
networkd: vxlan improve logging

Replaces a lof of strerror() usage with log_netdev_error_errno()

9 years agonetworkd: bond improve logging
Susant Sahani [Wed, 10 Jun 2015 06:09:26 +0000 (11:39 +0530)]
networkd: bond  improve logging

Replaces a lof of strerror() usage with log_netdev_error_errno()

9 years agohwdb: update Logitech's unifying receiver devices
Peter Hutterer [Wed, 10 Jun 2015 03:53:51 +0000 (13:53 +1000)]
hwdb: update Logitech's unifying receiver devices

Since 3.19, the devices have the proper vid/pid and the model number in the
name.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agocgtop: more sensible flushing behavior w/ non-TTY output
Charles Duffy [Wed, 27 May 2015 22:30:11 +0000 (17:30 -0500)]
cgtop: more sensible flushing behavior w/ non-TTY output

- Explicitly flush stdout before sleep between iterations
- Only clear user keystrokes when output is to TTY
- Add a newline between output batches when output is not to TTY

9 years agocgtop: allow user to force looping behavior even in non-TTY mode
Charles Duffy [Sat, 23 May 2015 03:18:15 +0000 (22:18 -0500)]
cgtop: allow user to force looping behavior even in non-TTY mode

9 years agocgtop: raw output option (disable conversion to human-readable units)
Charles Duffy [Fri, 22 May 2015 21:20:49 +0000 (16:20 -0500)]
cgtop: raw output option (disable conversion to human-readable units)

9 years agologind,sd-event: drop spurious new-lines
Lennart Poettering [Tue, 9 Jun 2015 23:27:32 +0000 (01:27 +0200)]
logind,sd-event: drop spurious new-lines

9 years agotree-wide: whenever we fork off a foreign child process reset signal mask/handlers
Lennart Poettering [Sun, 31 May 2015 21:55:55 +0000 (23:55 +0200)]
tree-wide: whenever we fork off a foreign child process reset signal mask/handlers

Also, when the child is potentially long-running make sure to set a
death signal.

Also, ignore the result of the reset operations explicitly by casting
them to (void).

9 years agosignal-util: modernize and share more code
Lennart Poettering [Sun, 31 May 2015 21:21:48 +0000 (23:21 +0200)]
signal-util: modernize and share more code

9 years agoMerge pull request #126 from phomes/master
Lennart Poettering [Tue, 9 Jun 2015 21:51:57 +0000 (23:51 +0200)]
Merge pull request #126 from phomes/master

core: log oom during killing spree

9 years agocore: log oom during killing spree
Thomas Hindoe Paaboel Andersen [Tue, 9 Jun 2015 20:03:05 +0000 (22:03 +0200)]
core: log oom during killing spree

but don't do anything else. We still want to kill as much as
possible.

Coverity CID#996306

9 years agoMerge pull request #122 from martinpitt/master
Lennart Poettering [Tue, 9 Jun 2015 18:06:02 +0000 (20:06 +0200)]
Merge pull request #122 from martinpitt/master

path-util: Fix path_is_mount_point for parent mount points in symlink mode

9 years agopath-util: Fix path_is_mount_point for parent mount points in symlink mode
Martin Pitt [Tue, 9 Jun 2015 14:16:56 +0000 (16:16 +0200)]
path-util: Fix path_is_mount_point for parent mount points in symlink mode

When we have a structure like this:

  /bin -> /usr/bin
  /usr is a mount point

Then path_is_mount_point("/bin", AT_SYMLINK_FOLLOW) needs to look at the pair
/usr/bin and /usr, not at the pair / and /usr/bin, as the latter have different
mount IDs. But we only want to consider the base name, not any parent.

Thus we have to resolve the given path first to get the real parent when
allowing symlinks.

Bug: https://github.com/systemd/systemd/issues/61

9 years agobus-creds: always set SD_BUS_CREDS_PID when we set pid in the mask
Zbigniew Jędrzejewski-Szmek [Mon, 25 May 2015 00:20:06 +0000 (20:20 -0400)]
bus-creds: always set SD_BUS_CREDS_PID when we set pid in the mask

Also reorder the code a bit to be easier to parse.

9 years agoMerge pull request #121 from martinpitt/master
Lennart Poettering [Tue, 9 Jun 2015 12:31:12 +0000 (14:31 +0200)]
Merge pull request #121 from martinpitt/master

build-sys: always dist *.policy.in files

9 years agobuild-sys: always dist *.policy.in files
Martin Pitt [Tue, 9 Jun 2015 12:01:06 +0000 (14:01 +0200)]
build-sys: always dist *.policy.in files

Unconditionally dist org.freedesktop.{import1,machine1}.policy.in, like all the
other *.policy.in files. This avoids missing policy files in the tarball.

Spotted by "make distcheck" failure with --disable-importd.

9 years agoMerge pull request #111 from phomes/cleanup_warning_suppression
Lennart Poettering [Tue, 9 Jun 2015 09:53:53 +0000 (11:53 +0200)]
Merge pull request #111 from phomes/cleanup_warning_suppression

build-sys: don't suppress irrelevant warnings

9 years agoMerge pull request #120 from systemd/revert-115-master
Kay Sievers [Tue, 9 Jun 2015 09:35:59 +0000 (11:35 +0200)]
Merge pull request #120 from systemd/revert-115-master

Revert "hwdb: actually search /run/udev/hwdb.d"

9 years agoRevert "hwdb: actually search /run/udev/hwdb.d"
Lennart Poettering [Tue, 9 Jun 2015 09:26:06 +0000 (11:26 +0200)]
Revert "hwdb: actually search /run/udev/hwdb.d"

9 years agoMerge pull request #118 from haraldh/set_consume2
Lennart Poettering [Tue, 9 Jun 2015 09:04:41 +0000 (11:04 +0200)]
Merge pull request #118 from haraldh/set_consume2

util:bind_remount_recursive() fix "use after free" - 2

9 years agoMerge pull request #77 from haraldh/cryptsetup
Lennart Poettering [Tue, 9 Jun 2015 09:00:31 +0000 (11:00 +0200)]
Merge pull request #77 from haraldh/cryptsetup

cryptsetup: craft a unique ID with the source device

9 years agoMerge pull request #116 from utezduyar/feat/async-api-for-method-call
Lennart Poettering [Tue, 9 Jun 2015 08:48:32 +0000 (10:48 +0200)]
Merge pull request #116 from utezduyar/feat/async-api-for-method-call

sd-bus: add async convenience method call API

9 years agoMerge pull request #113 from mezcalero/address-family
Lennart Poettering [Tue, 9 Jun 2015 08:47:04 +0000 (10:47 +0200)]
Merge pull request #113 from mezcalero/address-family

networkd: actually always use AddressFamilyBoolean as the bit mask it is

9 years agoutil:bind_remount_recursive(): handle return 0 of set_consume()
Harald Hoyer [Tue, 9 Jun 2015 08:32:28 +0000 (10:32 +0200)]
util:bind_remount_recursive(): handle return 0 of set_consume()

set_consume() does not return -EEXIST, but 0, in case the key is already
in the Set.

9 years agoRevert "util:bind_remount_recursive() fix "use after free""
Harald Hoyer [Tue, 9 Jun 2015 08:31:14 +0000 (10:31 +0200)]
Revert "util:bind_remount_recursive() fix "use after free""

This reverts commit 46be6129d3e52556eb0f2ae4d07818f9f3f7af7a.

9 years agocryptsetup: craft a unique ID with the source device
Harald Hoyer [Mon, 1 Jun 2015 15:26:27 +0000 (17:26 +0200)]
cryptsetup: craft a unique ID with the source device

If cryptsetup is called with a source device as argv[3], then craft the
ID for the password agent with a unique device path.

If possible "/dev/block/<maj>:<min>" is used, otherwise the original
argv[3] is used.

This enables password agents like petera [1] to provide a password
according to the source device. The original ID did not carry enough
information and was more targeted for a human readable string, which
is specified in the "Message" field anyway.

With this patch the ID of the ask.XXX ini file looks like this:
ID=cryptsetup:/dev/block/<maj>:<min>

[1] https://github.com/npmccallum/petera

9 years agosd-bus: add async convenience method call API
Umut Tezduyar Lindskog [Mon, 8 Jun 2015 08:00:17 +0000 (10:00 +0200)]
sd-bus: add async convenience method call API

9 years agoMerge pull request #115 from whot/master
Martin Pitt [Tue, 9 Jun 2015 05:19:49 +0000 (07:19 +0200)]
Merge pull request #115 from whot/master

hwdb: actually search /run/udev/hwdb.d

9 years agoMerge pull request #114 from crawford/xen
Martin Pitt [Tue, 9 Jun 2015 05:15:59 +0000 (07:15 +0200)]
Merge pull request #114 from crawford/xen

rules: whitelist xvd* devices

9 years agohwdb: add Logitech TrackMan Marble Wheel USB
Peter Hutterer [Tue, 9 Jun 2015 04:32:19 +0000 (14:32 +1000)]
hwdb: add Logitech TrackMan Marble Wheel USB

DPI is guesswork, no specs found on the web and calculating DPIs on a
trackball is tedious.

9 years agohwdb: actually search /run/udev/hwdb.d
Peter Hutterer [Tue, 9 Jun 2015 00:58:06 +0000 (10:58 +1000)]
hwdb: actually search /run/udev/hwdb.d

The documentation claims hwdb entries may be placed in the volatile
/run/udev/hwdb.d directory but nothing actually looked at it.

9 years agorules: whitelist xvd* devices
Alex Crawford [Thu, 4 Jun 2015 22:54:35 +0000 (15:54 -0700)]
rules: whitelist xvd* devices

Xen disks need to be whitelisted as well.

9 years agonetworkd: actually always use AddressFamilyBoolean as the bit mask it is
Lennart Poettering [Mon, 8 Jun 2015 23:05:34 +0000 (01:05 +0200)]
networkd: actually always use AddressFamilyBoolean as the bit mask it is

9 years agobuild-sys: don't suppress irrelevant warnings
Thomas Hindoe Paaboel Andersen [Tue, 2 Jun 2015 20:39:07 +0000 (22:39 +0200)]
build-sys: don't suppress irrelevant warnings

We do not trigger these warnings so no need to suppress them.

9 years agoMerge pull request #108 from phomes/master
Lennart Poettering [Mon, 8 Jun 2015 21:38:27 +0000 (23:38 +0200)]
Merge pull request #108 from phomes/master

tree-wide: remove spurious space

9 years agoMerge pull request #110 from systemd/revert-41-ipforwarding
Tom Gundersen [Mon, 8 Jun 2015 21:34:11 +0000 (23:34 +0200)]
Merge pull request #110 from systemd/revert-41-ipforwarding

Revert "networkd: create "kernel" setting for IPForwarding"

9 years agoRevert "networkd: create "kernel" setting for IPForwarding"
Lennart Poettering [Mon, 8 Jun 2015 21:24:32 +0000 (23:24 +0200)]
Revert "networkd: create "kernel" setting for IPForwarding"

9 years agotree-wide: remove spurious space
Thomas Hindoe Paaboel Andersen [Mon, 8 Jun 2015 18:53:16 +0000 (20:53 +0200)]
tree-wide: remove spurious space

9 years agoMerge pull request #106 from teg/man-mac-random
Lennart Poettering [Mon, 8 Jun 2015 20:44:39 +0000 (22:44 +0200)]
Merge pull request #106 from teg/man-mac-random

man: systemd.link - explain random MAC addresses

9 years agoman: systemd.link - explain random MAC addresses
Tom Gundersen [Mon, 8 Jun 2015 20:30:59 +0000 (22:30 +0200)]
man: systemd.link - explain random MAC addresses

Two of the bits in the MAC address are set unconditioanlly, and the rest is randomized,
make this clear in the documentation (as it currently read as if it was all random).

9 years agoMerge pull request #101 from zonque/kmod
Lennart Poettering [Mon, 8 Jun 2015 18:51:08 +0000 (20:51 +0200)]
Merge pull request #101 from zonque/kmod

kmod-setup: split warn flags

9 years agokmod-setup: split warn flags
Daniel Mack [Mon, 8 Jun 2015 16:52:25 +0000 (18:52 +0200)]
kmod-setup: split warn flags

Traditionally, we used to warn about ipv6 being a module or being
unavailable. This was changed in b4aa82f16 ("kmod-setup: don't warn
when ipv6 can't be loaded") in a way that neither of the two conditions
will cause a log message.

Now, while running a setup without any IPv6 is completely fine and
shouldn't cause any warning, we should still warn about ipv6 being a
module instead of built-in.

To achieve this, split the boolean warn flag into two: one for a
feature not being built-in but shipped as a module, and one to
print an error when a module is entirely unavailable.

We will, however, still warn if kmod returns anything else than
-ENOENT in the attempt of loading the module, and at the very least,
turn the message into a debug log.

9 years agoMerge pull request #96 from haraldh/set_consume
Lennart Poettering [Mon, 8 Jun 2015 17:43:30 +0000 (19:43 +0200)]
Merge pull request #96 from haraldh/set_consume

util:bind_remount_recursive() fix "use after free"

9 years agoutil:bind_remount_recursive() fix "use after free"
Harald Hoyer [Mon, 8 Jun 2015 13:14:26 +0000 (15:14 +0200)]
util:bind_remount_recursive() fix "use after free"

set_consume(done, x) consumes x with free(x)
but
mount(…, x, …) uses it afterwards.

coverity CID 1299006

9 years agoMerge pull request #92 from zonque/README
Lennart Poettering [Mon, 8 Jun 2015 12:06:32 +0000 (14:06 +0200)]
Merge pull request #92 from zonque/README

README.md: add Coverity scan status badge

9 years agoREADME.md: add Coverity scan status badge
Daniel Mack [Mon, 8 Jun 2015 11:19:09 +0000 (13:19 +0200)]
README.md: add Coverity scan status badge

9 years agoMerge pull request #79 from zonque/fdo-87475
Kay Sievers [Fri, 5 Jun 2015 19:02:47 +0000 (21:02 +0200)]
Merge pull request #79 from zonque/fdo-87475

kmod-setup: don't warn when ipv6 can't be loaded (FDO bug #87475)

9 years agoMerge pull request #82 from gmacario/bootchart-fix-typo
Daniel Mack [Fri, 5 Jun 2015 19:00:41 +0000 (21:00 +0200)]
Merge pull request #82 from gmacario/bootchart-fix-typo

systemd-bootchart: Trivial typo fix in warning

9 years agosystemd-bootchart: Trivial typo fix in warning
Gianpaolo Macario [Fri, 5 Jun 2015 16:42:36 +0000 (18:42 +0200)]
systemd-bootchart: Trivial typo fix in warning

Signed-off-by: Gianpaolo Macario <gmacario@gmail.com>
9 years agoMerge pull request #80 from zonque/README.md
Harald Hoyer [Fri, 5 Jun 2015 14:09:45 +0000 (16:09 +0200)]
Merge pull request #80 from zonque/README.md

Add README.md