platform/upstream/systemd.git
9 years agojournalctl: properly detect empty journal files
Lennart Poettering [Fri, 24 Jul 2015 00:10:32 +0000 (02:10 +0200)]
journalctl: properly detect empty journal files

When we encounter a journal file with exactly zero entries, print a nice
message and exit, and don't print a weird error message.

9 years agojournal: explain the error when we find a non-DATA object that is compressed
Lennart Poettering [Fri, 24 Jul 2015 00:02:07 +0000 (02:02 +0200)]
journal: explain the error when we find a non-DATA object that is compressed

Only objects of type DATA may be compressed, generate a message about
that, like we do for all other errros.

9 years agojournal: when verifying journal files, handle empty ones nicely
Lennart Poettering [Fri, 24 Jul 2015 00:00:43 +0000 (02:00 +0200)]
journal: when verifying journal files, handle empty ones nicely

A journal file that carries no objects should be considered valid.

9 years agojournal: avoid mapping empty data and field hash tables
Lennart Poettering [Thu, 23 Jul 2015 23:55:45 +0000 (01:55 +0200)]
journal: avoid mapping empty data and field hash tables

When a new journal file is created we write the header first, then sync
and only then create the data and field hash tables in them. That means
to other processes it might appear that the files have a valid header
but not data and field hash tables. Our reader code should be able to
deal with this.

With this change we'll not map the two hash tables right-away after
opening a file for reading anymore (because that will of course fail if
the objects are missing), but delay this until the first time we access
them. On top of that, when we want to look something up in the hash
tables and we notice they aren't initialized yet, we consider them
empty.

This improves handling of some journal files reported in #487.

9 years agojournal-verify: don't hit SIGFPE when determining progress
Lennart Poettering [Thu, 23 Jul 2015 23:40:44 +0000 (01:40 +0200)]
journal-verify: don't hit SIGFPE when determining progress

If we determine the progress based on a number of objects available,
don't blindly devide by the number of objects, given that it might be 0.

9 years agoMerge pull request #678 from eworm-de/oracle-kvm
Lennart Poettering [Thu, 23 Jul 2015 19:38:01 +0000 (21:38 +0200)]
Merge pull request #678 from eworm-de/oracle-kvm

Oracle kvm

9 years agoMerge pull request #691 from teg/networkd-after-sysctl
Daniel Mack [Thu, 23 Jul 2015 19:23:49 +0000 (21:23 +0200)]
Merge pull request #691 from teg/networkd-after-sysctl

units: order networkd after sysctl

9 years agovirt: handle Virtualbox 5.0 with kvm hypervisor
Christian Hesse [Thu, 23 Jul 2015 19:18:36 +0000 (21:18 +0200)]
virt: handle Virtualbox 5.0 with kvm hypervisor

Virtualbox 5.0 now supports kvm hypervisor. In this case cpuid
identidies as "kvm", which breaks units depending on
ConditionVirtualization=oracle.
So return "oracle" even with kvm hypervisor.

9 years agoMerge pull request #682 from ssahani/bridge
Lennart Poettering [Thu, 23 Jul 2015 19:07:57 +0000 (21:07 +0200)]
Merge pull request #682 from ssahani/bridge

networkd: add bridge link properties

9 years agounits: order networkd after sysctl
Tom Gundersen [Thu, 23 Jul 2015 18:58:33 +0000 (20:58 +0200)]
units: order networkd after sysctl

This way networkd will correctly and race-freely inherit the default settings
applied by sysctl.

Suggested in issue #468.

9 years agoman: add man for bridge params
Susant Sahani [Thu, 23 Jul 2015 18:03:40 +0000 (23:33 +0530)]
man: add man for bridge params

9 years agonetworkd: add bridge link properties
Susant Sahani [Thu, 23 Jul 2015 18:01:58 +0000 (23:31 +0530)]
networkd: add bridge link properties

new bridge properties

br.network

[Match]
Name=enp0s25

[Network]
Bridge=br-test

[Bridge]
Cost=332
BPDUGuard = true
HairPin = true
FastLeave = true
RootBlock = true
UnicastFlood = true

9 years agoMerge pull request #604 from heftig/master
Lennart Poettering [Thu, 23 Jul 2015 17:02:34 +0000 (19:02 +0200)]
Merge pull request #604 from heftig/master

build-sys: Use slim LTO objects if possible

9 years agoMerge pull request #690 from teg/resolved-fixes-2
Lennart Poettering [Thu, 23 Jul 2015 16:48:25 +0000 (18:48 +0200)]
Merge pull request #690 from teg/resolved-fixes-2

resolved: assorted fixes v2

9 years agoresolve: transaction - stop processing packet when found to be invalid
Tom Gundersen [Sun, 19 Jul 2015 19:42:52 +0000 (21:42 +0200)]
resolve: transaction - stop processing packet when found to be invalid

We were stopping the transaction, but we need to stop processing the packet alltogether.

9 years agoresolved: packet - fix segfault in truncate()
Tom Gundersen [Fri, 17 Jul 2015 21:42:18 +0000 (23:42 +0200)]
resolved: packet - fix segfault in truncate()

A size_t was being accessed as a char* due to the order of arguments being inverted.

9 years agoresolved: rr - ignore pseudo types in NSEC(3) bitmaps
Tom Gundersen [Thu, 23 Jul 2015 11:48:56 +0000 (13:48 +0200)]
resolved: rr - ignore pseudo types in NSEC(3) bitmaps

9 years agoresolved: rr - fix parsing of NSEC3
Tom Gundersen [Thu, 23 Jul 2015 11:28:09 +0000 (13:28 +0200)]
resolved: rr - fix parsing of NSEC3

We were appending rather than reading the bitmap.

9 years agoresolved: rr - don't read past end of RR when parsing NSEC(3)
Tom Gundersen [Thu, 23 Jul 2015 11:13:43 +0000 (13:13 +0200)]
resolved: rr - don't read past end of RR when parsing NSEC(3)

We can never read past the end of the packet, so this seems impossible
to exploit, but let's error out early as reading past the end of the
current RR is clearly an error.

Found by Lennart, based on patch by Daniel.

9 years agoresolved: rr - SSHFP contains the fingerprint, not the key
Tom Gundersen [Thu, 23 Jul 2015 11:09:35 +0000 (13:09 +0200)]
resolved: rr - SSHFP contains the fingerprint, not the key

Rename the field to make this clearer.

9 years agoresolved: packet - fail on invalid zero-length data
Tom Gundersen [Thu, 23 Jul 2015 10:57:58 +0000 (12:57 +0200)]
resolved: packet - fail on invalid zero-length data

Most blobs (keys, signatures, ...) should have a specific size given by
the relevant algorithm. However, as we don't use/verify the algorithms
yet, let's just ensure that we don't read out zero-length data in cases
where this does not make sense.

The only exceptions, where zero-length data is allowed are in the NSEC3
salt field, and the generic data (which we don't know anything about,
so  better not make any assumptions).

9 years agoMerge pull request #687 from poettering/bitmap-fixes
Daniel Mack [Thu, 23 Jul 2015 14:13:51 +0000 (16:13 +0200)]
Merge pull request #687 from poettering/bitmap-fixes

bitmap: various clean-ups

9 years agobitmap: various clean-ups
Lennart Poettering [Thu, 23 Jul 2015 13:57:54 +0000 (15:57 +0200)]
bitmap: various clean-ups

a) use memcmp() to compare bitmaps efficiently

b) use UINT64_C() macro instead of ULL suffixes to get right suffix for
   uint64_t constants

c) add a few assert()s

d) when comparing integers with 0 we generally try to make this explicit
   with "!= 0".

e) remove redundant bitmap_isset() if check, as we don't have it in
   bitmap_isset() either.

f) It should be fine to invoke bitmap_unset() on a NULL bitmap

9 years agoMerge pull request #669 from poettering/dns-rr-memdup
Tom Gundersen [Thu, 23 Jul 2015 10:34:34 +0000 (12:34 +0200)]
Merge pull request #669 from poettering/dns-rr-memdup

resolve: unify memdup() code when parsing RRs

9 years agosd-netlink: add bridge NL params
Susant Sahani [Thu, 23 Jul 2015 09:09:43 +0000 (09:09 +0000)]
sd-netlink: add bridge NL params

9 years agoAdd bridge NL params to missing.h
Susant Sahani [Thu, 23 Jul 2015 09:09:11 +0000 (09:09 +0000)]
Add bridge NL params to missing.h

9 years agoMerge pull request #677 from zonque/bitmap2
Tom Gundersen [Thu, 23 Jul 2015 09:35:55 +0000 (11:35 +0200)]
Merge pull request #677 from zonque/bitmap2

basic: bitmap: use uint64_t instead if long long unsigned

9 years agoMerge pull request #674 from ssahani/tunnel
Daniel Mack [Thu, 23 Jul 2015 09:00:15 +0000 (11:00 +0200)]
Merge pull request #674 from ssahani/tunnel

ip6 tunnel: add support for DSCP

9 years agoman: add man for DSCP
Susant Sahani [Thu, 23 Jul 2015 08:08:26 +0000 (13:38 +0530)]
man: add man for DSCP

9 years agoMerge pull request #537 from poettering/nss-mymachines-userns
David Herrmann [Thu, 23 Jul 2015 07:53:47 +0000 (09:53 +0200)]
Merge pull request #537 from poettering/nss-mymachines-userns

Hook up container userns with nss-mymachines

9 years agoMerge pull request #663 from poettering/tmpfiles-chattr-enotty
Daniel Mack [Thu, 23 Jul 2015 07:12:43 +0000 (09:12 +0200)]
Merge pull request #663 from poettering/tmpfiles-chattr-enotty

tmpfiles: downgrade errors when a file system does not support file a…

9 years agoMerge pull request #673 from poettering/dns-packet-append-type-window
Daniel Mack [Thu, 23 Jul 2015 06:53:36 +0000 (08:53 +0200)]
Merge pull request #673 from poettering/dns-packet-append-type-window

resolved: make sure we alway initialize *start in dns_packet_append_t…

9 years agobasic: bitmap: use uint64_t instead if long long unsigned
Daniel Mack [Thu, 23 Jul 2015 06:44:59 +0000 (08:44 +0200)]
basic: bitmap: use uint64_t instead if long long unsigned

long long unsigned is always 64 bit wide, so use a more readable type.

9 years agoMerge pull request #672 from poettering/bitmap-isclear
Daniel Mack [Thu, 23 Jul 2015 06:49:14 +0000 (08:49 +0200)]
Merge pull request #672 from poettering/bitmap-isclear

bitmap: bitmap_clear()

9 years agonetworkd: ip6 tunnel add DSCP
Susant Sahani [Thu, 23 Jul 2015 04:22:24 +0000 (09:52 +0530)]
networkd: ip6 tunnel add DSCP

This patch adds support for setting the
DSCP field in the ip6 tunnel.

when set it inherits DSCP field between inner and outer header.

9 years agoresolved: make sure we alway initialize *start in dns_packet_append_type_window()
Lennart Poettering [Thu, 23 Jul 2015 02:54:35 +0000 (04:54 +0200)]
resolved: make sure we alway initialize *start in dns_packet_append_type_window()

9 years agobitmap: bitmap_clear()
Lennart Poettering [Thu, 23 Jul 2015 02:51:57 +0000 (04:51 +0200)]
bitmap: bitmap_clear()

No need to actually reset the bitmap, we can just truncate it back zero
size. That not only makes bitmap_clear() quicker, but also subsequent
bitmap_isclear().

9 years agoresolve: unify memdup() code when parsing RRs
Lennart Poettering [Thu, 23 Jul 2015 02:04:19 +0000 (04:04 +0200)]
resolve: unify memdup() code when parsing RRs

Let's make dns_packet_read_public_key() more generic by renaming it to
dns_packet_read_memdup() (which more accurately describes what it
does...). Then, patch all cases where we memdup() RR data to use this
new call.

This specifically checks for zero-length objects, and handles them
gracefully. It will set zero length payload fields as a result.

Special care should be taken to ensure that any code using this call
can handle the returned allocated field to be NULL if the size is
specified as 0!

9 years agoMerge pull request #667 from poettering/dns-rr-memleak
Tom Gundersen [Thu, 23 Jul 2015 01:58:47 +0000 (03:58 +0200)]
Merge pull request #667 from poettering/dns-rr-memleak

resolve: fix two minor memory leaks

9 years agoMerge pull request #666 from poettering/drop-good-dns-server
Tom Gundersen [Thu, 23 Jul 2015 01:57:10 +0000 (03:57 +0200)]
Merge pull request #666 from poettering/drop-good-dns-server

resolve: drop dns_scope_good_dns_server()

9 years agoresolve: fix two minor memory leaks
Lennart Poettering [Thu, 23 Jul 2015 01:24:08 +0000 (03:24 +0200)]
resolve: fix two minor memory leaks

strv_extend() already strdup()s internally, no need to to this twice.
(Also, was missing OOM check...).

Use strv_consume() when we already have a string allocated whose
ownership we want to pass to the strv.

This fixes 50f1e641a93cacfc693b0c3d300bee5df0c8c460.

9 years agoresolve: drop dns_scope_good_dns_server()
Lennart Poettering [Thu, 23 Jul 2015 01:10:42 +0000 (03:10 +0200)]
resolve: drop dns_scope_good_dns_server()

It's not used anymore since 29815b6c608b836cada5e349d06a96b63eaa65f3,
hence let's remove it from the sources.

9 years agoMerge pull request #665 from poettering/reword-journal-size-msg
Daniel Mack [Thu, 23 Jul 2015 00:32:29 +0000 (02:32 +0200)]
Merge pull request #665 from poettering/reword-journal-size-msg

journal: reword msg about enforced size limits a bit

9 years agojournal: reword msg about enforced size limits a bit
Lennart Poettering [Thu, 23 Jul 2015 00:04:19 +0000 (02:04 +0200)]
journal: reword msg about enforced size limits a bit

http://lists.freedesktop.org/archives/systemd-devel/2015-July/033574.html

9 years agoMerge pull request #632 from Stebalien/cgls-nspawn
Daniel Mack [Wed, 22 Jul 2015 22:43:00 +0000 (00:43 +0200)]
Merge pull request #632 from Stebalien/cgls-nspawn

Machines can also be services

9 years agocgls: machines can also be services
Steven Allen [Mon, 20 Jul 2015 15:57:45 +0000 (11:57 -0400)]
cgls: machines can also be services

This makes `systemd-cgls -M <machine name>` work with nspawn containers in
systemd 222.

9 years agotmpfiles: downgrade errors when a file system does not support file attributes
Lennart Poettering [Wed, 22 Jul 2015 20:02:14 +0000 (22:02 +0200)]
tmpfiles: downgrade errors when a file system does not support file attributes

This downgrades errors from setting file attributes via tmpfiles to
warnings and makes them non-fatal.

Also, as a special case, if a file system does not support file
attributes at all, then the message is downgraded to debug, so that it
is not seen at all.

With this change reiserfs should not see any messages at all anymore
(since it apparently does not implement file attributes at all), but XFS
will still get a warning but no failure. The warning is something the
XFS kernel folks should fix though, by adjusting their file attributes
behaviour to be identical to ext234's.

Fixes #560.

9 years agoMerge pull request #660 from michich/in-set
Michal Schmidt [Wed, 22 Jul 2015 17:57:03 +0000 (19:57 +0200)]
Merge pull request #660 from michich/in-set

improve IN_SET macro

9 years agobasic: more optimizable IN_SET macro
Michal Schmidt [Wed, 22 Jul 2015 15:50:44 +0000 (17:50 +0200)]
basic: more optimizable IN_SET macro

Making the array static allows gcc -O2 to generate smaller code:

"size systemd" before:
   text    data     bss     dec     hex filename
1377286  128608    2632 1508526  1704ae systemd

After:
   text    data     bss     dec     hex filename
1374326  128572    2664 1505562  16f91a systemd

(IN_SET still results in worse generated code than using
 "x == FOO || x == BAR || ...". I don't think we'll be able to match
 that with the C preprocessor.)

This change limits the use of IN_SET to sets with constant elements. All
present callers use constants. The compiler would report an "initializer
element is not constant" error otherwise.

9 years agobasic: better readable IN_SET macro
Michal Schmidt [Wed, 22 Jul 2015 15:05:41 +0000 (17:05 +0200)]
basic: better readable IN_SET macro

Putting the set elements in an array variable and using ELEMENTSOF makes
it clearer what's going on.

Incidentally, it also makes gcc -O2 generate slightly smaller code:
"size systemd", before:
   text    data     bss     dec     hex filename
1378318  128608    2632 1509558  1708b6 systemd

After:
   text    data     bss     dec     hex filename
1377286  128608    2632 1508526  1704ae systemd

9 years agoMerge pull request #654 from ssahani/nl
Lennart Poettering [Wed, 22 Jul 2015 17:06:36 +0000 (19:06 +0200)]
Merge pull request #654 from ssahani/nl

network: Add tunnel params

9 years agoMerge pull request #647 from michich/job-logging
Tom Gundersen [Wed, 22 Jul 2015 12:17:12 +0000 (14:17 +0200)]
Merge pull request #647 from michich/job-logging

Job logging fixes and improvements

9 years agoMerge pull request #651 from keszybz/ata_id-wwn-ordering
Michal Schmidt [Wed, 22 Jul 2015 11:41:33 +0000 (13:41 +0200)]
Merge pull request #651 from keszybz/ata_id-wwn-ordering

ata_id: unreverse WWN identifier

9 years agosd-netlink: add tunnel params
Susant Sahani [Wed, 22 Jul 2015 09:29:23 +0000 (14:59 +0530)]
sd-netlink: add tunnel params

9 years agoTunnel NL params: Add to missing.h
Susant Sahani [Wed, 22 Jul 2015 09:28:52 +0000 (14:58 +0530)]
Tunnel NL params: Add to missing.h

9 years agoMerge pull request #652 from whot/hwdb-updates
Daniel Mack [Wed, 22 Jul 2015 08:21:46 +0000 (10:21 +0200)]
Merge pull request #652 from whot/hwdb-updates

hwdb: add Logitech MX Master DPI settings

9 years agoata_id: unreverse WWN identifier
Zbigniew Jędrzejewski-Szmek [Wed, 22 Jul 2015 04:23:47 +0000 (00:23 -0400)]
ata_id: unreverse WWN identifier

An endianness conversion was lost in 6024a6e302bad6bcf073fa84a41a6123305dc845.
Restore it. Now ata_id and scsi_id output match.

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

9 years agohwdb: add Logitech MX Master DPI settings
Peter Hutterer [Mon, 13 Jul 2015 21:34:19 +0000 (07:34 +1000)]
hwdb: add Logitech MX Master DPI settings

9 years agoMerge pull request #648 from michich/udev-log-priority
Tom Gundersen [Tue, 21 Jul 2015 18:17:21 +0000 (20:17 +0200)]
Merge pull request #648 from michich/udev-log-priority

udev.log-priority crash fix and cleanup

9 years agoudev: unify reporting of invalid cmdline keys
Michal Schmidt [Tue, 21 Jul 2015 16:35:18 +0000 (18:35 +0200)]
udev: unify reporting of invalid cmdline keys

This way it does not need distinct string literals and it also preserves
the "rd." prefix.

9 years agoudev: fix crash with invalid udev.log-priority
Michal Schmidt [Tue, 21 Jul 2015 16:26:09 +0000 (18:26 +0200)]
udev: fix crash with invalid udev.log-priority

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

9 years agocore: adjust job completion message log levels
Michal Schmidt [Tue, 21 Jul 2015 17:07:24 +0000 (19:07 +0200)]
core: adjust job completion message log levels

We do not print all non-OK job completion status messages to the console
in red, because not all of them are plain errors. We do however log the
same messages as LOG_ERR.

Differentiate the log levels by deducing them from the job result in a
way that more or less matches the color of the console message.

9 years agocore: small refactor of job completion logging
Michal Schmidt [Tue, 21 Jul 2015 15:26:28 +0000 (17:26 +0200)]
core: small refactor of job completion logging

Joins three log_struct() calls into one.

9 years agocore: log completion of remaining job types
Michal Schmidt [Tue, 21 Jul 2015 14:20:18 +0000 (16:20 +0200)]
core: log completion of remaining job types

JOB_RESTART and failed JOB_VERIFY_ACTIVE completions were printed to
console but not to the log.

9 years agocore: do not log done failed-condition jobs as if unit started
Michal Schmidt [Tue, 21 Jul 2015 14:15:19 +0000 (16:15 +0200)]
core: do not log done failed-condition jobs as if unit started

It is misleading to see "Started foo." in the log when the unit's
condition was false.

9 years agocore: remove generic job completion messages from unit vtables
Michal Schmidt [Tue, 21 Jul 2015 13:51:16 +0000 (15:51 +0200)]
core: remove generic job completion messages from unit vtables

These units' message format strings are identical to the generic
strings. Since we can always rely on the fallback, these are now
redundant.

9 years agocore: try harder to get job completion messages too
Michal Schmidt [Tue, 21 Jul 2015 12:54:24 +0000 (14:54 +0200)]
core: try harder to get job completion messages too

This is similar to "core: always try harder to get unit status
message format string", but for job completion status messages.
It makes generic status messages applicable for printing to the console.
And it rewrites the functions in a more table-based style.

9 years agocore: unit_get_status_message_format() never returns NULL
Michal Schmidt [Mon, 20 Jul 2015 16:36:12 +0000 (18:36 +0200)]
core: unit_get_status_message_format() never returns NULL

unit_get_status_message_format() is used only with one of JOB_START,
JOB_STOP, JOB_RELOAD, all of which have fallback message strings
defined, so the function may never return NULL.

9 years agobootchart: fix negative 'timeleft' condition
Daniel Mack [Tue, 21 Jul 2015 13:30:47 +0000 (15:30 +0200)]
bootchart: fix negative 'timeleft' condition

Fix the overrun case in sample acquistion and negative number calculations.

Reported by Stefan Sauer.

Fixes #642

9 years agoMerge pull request #643 from zonque/fileio
Daniel Mack [Tue, 21 Jul 2015 15:20:55 +0000 (17:20 +0200)]
Merge pull request #643 from zonque/fileio

basic/fileio: fix write_string_file() fallout

9 years agouser-sessions: fix write_string_file() fallout
Daniel Mack [Mon, 20 Jul 2015 21:17:37 +0000 (23:17 +0200)]
user-sessions: fix write_string_file() fallout

WRITE_STRING_FILE_ATOMIC is only valid if WRITE_STRING_FILE_CREATE is also
given. IOW, an atomic file write operation is only possible when creating a
file is also being asked for.

This is a regression from the recent write_string_file() rework.

9 years agologind: fix write_string_file() fallout
Daniel Mack [Mon, 20 Jul 2015 21:17:37 +0000 (23:17 +0200)]
logind: fix write_string_file() fallout

WRITE_STRING_FILE_ATOMIC is only valid if WRITE_STRING_FILE_CREATE is also
given. IOW, an atomic file write operation is only possible when creating a
file is also being asked for.

This is a regression from the recent write_string_file() rework.

9 years agocore: always try harder to get unit status message format string
Michal Schmidt [Mon, 20 Jul 2015 15:18:13 +0000 (17:18 +0200)]
core: always try harder to get unit status message format string

The starting/stopping messages are printed to the console only if the
corresponding format string is defined in the unit's vtable. To avoid
excessive messages on the console, the unit types whose start/stop
jobs are instantaneous had the format strings intentionally undefined.
When logging the same event to the journal, a fallback to generic
Starting/Stopping/Reloading messages is used.

The problem of excessive console messages with instantaneous jobs
is already resolved in a nicer way ("core: fix confusing logging of
instantaneous jobs"), so there's no longer a need to have two ways of
getting the format strings. Let's fold them into one function with
the fallback to generic message strings.

9 years agocore: correct return value from reload methods
Michal Schmidt [Thu, 16 Jul 2015 19:39:56 +0000 (21:39 +0200)]
core: correct return value from reload methods

Return 1 from *_reload() methods to signify "we did something", just
like in *_start(). This causes "Reloading foo..." messages to be logged.
"Reloaded foo." messages are already logged.

9 years agocore: fix confusing logging of instantaneous jobs
Michal Schmidt [Thu, 16 Jul 2015 18:08:30 +0000 (20:08 +0200)]
core: fix confusing logging of instantaneous jobs

For instantaneous jobs (e.g. starting of targets, sockets, slices, or
Type=simple services) the log shows the job completion
before starting:

        systemd[1]: Created slice -.slice.
        systemd[1]: Starting -.slice.
        systemd[1]: Created slice System Slice.
        systemd[1]: Starting System Slice.
        systemd[1]: Listening on Journal Audit Socket.
        systemd[1]: Starting Journal Audit Socket.
        systemd[1]: Reached target Timers.
        systemd[1]: Starting Timers.
        ...

The reason is that the job completes before the ->start() method returns
and only then does unit_start() print the "Starting ..." message.
The same thing happens when stopping units.

Rather than fixing the order of the messages, let's just not emit the
Starting/Stopping message at all when the job completes instantaneously.
The job completion message is sufficient in this case.

9 years agoMerge pull request #636 from ssahani/tunnel
Tom Gundersen [Tue, 21 Jul 2015 09:19:00 +0000 (11:19 +0200)]
Merge pull request #636 from ssahani/tunnel

networkd: ip6 tunnel add support for flowlabel

9 years agoman: add man ipv6 flowlabel support for ip6 tunnels
Susant Sahani [Tue, 21 Jul 2015 04:37:10 +0000 (10:07 +0530)]
man: add man ipv6 flowlabel support for ip6 tunnels

9 years agonetworkd: ip6 tunnel add support for flowlabel
Susant Sahani [Tue, 21 Jul 2015 04:36:44 +0000 (10:06 +0530)]
networkd: ip6 tunnel add support for flowlabel

Add Pv6 Flow Label support. The 20-bit Flow Label field in the IPv6
header[RFC2460] is used by a  node to label packets of a flow.

9 years agoMerge pull request #625 from ssahani/tun2
Tom Gundersen [Mon, 20 Jul 2015 20:30:18 +0000 (22:30 +0200)]
Merge pull request #625 from ssahani/tun2

sd-netlink: add tunnel parameters

9 years agoMerge pull request #630 from namhyung/use-isempty
Tom Gundersen [Mon, 20 Jul 2015 16:08:13 +0000 (18:08 +0200)]
Merge pull request #630 from namhyung/use-isempty

sd-bus: use isempty() consistently

9 years agoMerge pull request #549 from ssahani/dhcp
Tom Gundersen [Mon, 20 Jul 2015 15:58:45 +0000 (17:58 +0200)]
Merge pull request #549 from ssahani/dhcp

networkd: allow hostname override

9 years agosd-bus: use isempty() consistently
Namhyung Kim [Fri, 3 Jul 2015 03:40:11 +0000 (12:40 +0900)]
sd-bus: use isempty() consistently

Instead of open-coding, use isempty() to check NULL or empty string
for consistency.

9 years agoMerge pull request #626 from systemd-mailing-devs/1437135133-9646-2-git-send-email...
Daniel Mack [Mon, 20 Jul 2015 10:16:32 +0000 (12:16 +0200)]
Merge pull request #626 from systemd-mailing-devs/1437135133-9646-2-git-send-email-vivenzio.pagliari@nokia.com

man: Typo fix in systemd.preset manpage

9 years agoadd NL parameters to missing.h
Susant Sahani [Mon, 20 Jul 2015 04:47:50 +0000 (10:17 +0530)]
add NL parameters to missing.h

9 years agosd-netlink: add tunnel NL parameters
Susant Sahani [Mon, 20 Jul 2015 04:47:14 +0000 (10:17 +0530)]
sd-netlink: add tunnel NL parameters

9 years agoMerge pull request #614 from teg/bitmap-overflow
Daniel Mack [Sun, 19 Jul 2015 06:53:23 +0000 (02:53 -0400)]
Merge pull request #614 from teg/bitmap-overflow

basic: bitmap - complete fix for bitshift overflow

9 years agobasic: bitmap - complete fix for bitshift overflow
Tom Gundersen [Fri, 17 Jul 2015 16:30:41 +0000 (18:30 +0200)]
basic: bitmap - complete fix for bitshift overflow

The bug found by David existed in several places, fix them all. Also
extend the tests to cover these cases.

9 years agoTypo fix in systemd.preset manpage
Vivenzio Pagliari [Fri, 17 Jul 2015 12:12:13 +0000 (14:12 +0200)]
Typo fix in systemd.preset manpage

9 years agoMerge pull request #611 from dvdhrm/bitmap-fixes
Tom Gundersen [Fri, 17 Jul 2015 10:33:49 +0000 (12:33 +0200)]
Merge pull request #611 from dvdhrm/bitmap-fixes

Bitmap fixes

9 years agoMerge pull request #607 from ssahani/vxlan1
David Herrmann [Fri, 17 Jul 2015 10:26:32 +0000 (12:26 +0200)]
Merge pull request #607 from ssahani/vxlan1

networkd: move config parsers to specific header files

9 years agoMerge pull request #610 from utezduyar/include-signal-header
David Herrmann [Fri, 17 Jul 2015 10:24:26 +0000 (12:24 +0200)]
Merge pull request #610 from utezduyar/include-signal-header

cgtop: include missing signal.h for sigwinch

9 years agobitmap: avoid 32bit integer overflow in shift
David Herrmann [Fri, 17 Jul 2015 10:19:06 +0000 (12:19 +0200)]
bitmap: avoid 32bit integer overflow in shift

We really must use 64bit integers to calculate long-long shifts.
Otherwise, we will never get higher masks than 2^31.

9 years agobitmap: allow bitmap_iterate() on NULL bitmap
David Herrmann [Fri, 17 Jul 2015 10:18:13 +0000 (12:18 +0200)]
bitmap: allow bitmap_iterate() on NULL bitmap

Make sure we properly treat NULL bitmaps as empty. Right now, we don't
(which really looks like a typo).

9 years agocgtop: include missing signal.h for sigwinch
Umut Tezduyar Lindskog [Fri, 17 Jul 2015 08:38:31 +0000 (10:38 +0200)]
cgtop: include missing signal.h for sigwinch

9 years agologind: never select closing sessions for a VT
David Herrmann [Thu, 16 Jul 2015 16:46:12 +0000 (18:46 +0200)]
logind: never select closing sessions for a VT

If a session is in closing state (and already got rid of its VT), then
never re-select it for that VT. There is no reason why we should grant
something to a session that is already going away *AND* already got rid
of exactly that.

9 years agobuild: add ./test-bitmap to .gitignore
David Herrmann [Thu, 16 Jul 2015 16:30:05 +0000 (18:30 +0200)]
build: add ./test-bitmap to .gitignore

Make sure to ignore build files of Tom's recent test-bitmap addition.

9 years agologind: prefer new sessions over older ones on VT switches
David Herrmann [Thu, 16 Jul 2015 16:18:01 +0000 (18:18 +0200)]
logind: prefer new sessions over older ones on VT switches

Our seat->positions[] array keeps track of the 'preferred' session on a
VT. The only situation this is used, is to select the session to activate
when a VT is activated. In the normal case, there's only one session per
VT so the selection is trivial.

Older greeters, however, implement take-overs when they start sessions on
the same VT that the greeter ran on. We recently limited such take-overs
to VTs where a greeter is running on, to force people to never share VTs
in new code that is written.

For legacy reasons, we need to be compatible to old greeters, though.
Hence, we allow those greeters to implement take-over. In such take-overs,
however, we should really make sure that the new sessions gets preferred
over the old one under all circumstances. Hence, make sure we override
the previous preferred session with a new session.

9 years agoMerge pull request #605 from dvdhrm/test-bus-proxy
Tom Gundersen [Thu, 16 Jul 2015 16:17:57 +0000 (18:17 +0200)]
Merge pull request #605 from dvdhrm/test-bus-proxy

sd-bus: add new test for NameAcquired via proxy/dbus-daemon

9 years agonetworkd: move config_parse_tunnel_address
Susant Sahani [Thu, 16 Jul 2015 14:46:53 +0000 (20:16 +0530)]
networkd: move config_parse_tunnel_address

move config_parse_tunnel_address from networkd.h to

tunnel specific file networkd-netdev-tunnel.h

9 years agonetworkd: move config_parse_vxlan_group_address
Susant Sahani [Thu, 16 Jul 2015 14:44:05 +0000 (20:14 +0530)]
networkd: move config_parse_vxlan_group_address

move config_parse_vxlan_group_address from
networkd.h to networkd-netdev-vxlan.h