chiark / gitweb /
elogind.git
9 years agofstab-generator: add comma when removed option is in the middle
Zbigniew Jędrzejewski-Szmek [Mon, 7 Jul 2014 20:10:38 +0000 (16:10 -0400)]
fstab-generator: add comma when removed option is in the middle

xxx,x-systemd.default-timeout=y,zzz was filtered to xxxzzz,
but should be xxx,zzz, of course.

9 years agonetworkd TODO: add more bonding options
Susant Sahani [Fri, 4 Jul 2014 16:19:08 +0000 (21:49 +0530)]
networkd TODO: add more bonding options

Add more bonding option in TODO section

9 years agonetworkd todo : remove tun/tap
Susant Sahani [Fri, 4 Jul 2014 16:17:17 +0000 (21:47 +0530)]
networkd todo : remove tun/tap

Remove tun/tap from todo

9 years agonetworkd: add support for mode
Susant Sahani [Fri, 4 Jul 2014 17:05:02 +0000 (22:35 +0530)]
networkd: add support for mode

This patch adds supports networkd to configure bond mode
during creation via persistent conf. Mode can be configured
with conf param 'Mode'. A new section Bond is added to the
conf to support bond mode.

These modes can be configured now.

balance-rr
active-backup
balance-xor
broadcast
802.3ad
balance-tlb
balance-alb

Example conf file: test-bond.conf
[NetDev]
Name=bond1
Kind=bond

[Bond]
Mode=balance-xor

Test case:
1. start networkd service:

12: bond1: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc
noqueue state UNKNOWN mode DEFAULT group default
link/ether 22:89:6c:47:23:d2 brd ff:ff:ff:ff:ff:ff

2. find bond mode:

cat /proc/net/bonding/bond1
    Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)
    Bonding Mode: load balancing (xor)
    Transmit Hash Policy: layer2 (0)
    MII Status: up
    MII Polling Interval (ms): 0
    Up Delay (ms): 0
    Down Delay (ms): 0

Changes:
       1. Added file networkd-bond.c
       2. Bond mode enum BondMode
       3. conf section [Bond]

[tomegun: whitespace]

9 years agonetworkd veth: Make kind assert
Susant Sahani [Mon, 7 Jul 2014 16:37:39 +0000 (22:07 +0530)]
networkd veth: Make kind assert

It's more appropriate to make it's assert than -ENOTSUP

9 years agoupdate TODO
Lennart Poettering [Mon, 7 Jul 2014 19:07:23 +0000 (21:07 +0200)]
update TODO

9 years agofirstboot: get rid of firstboot generator again, introduce ConditionFirstBoot= instead
Lennart Poettering [Mon, 7 Jul 2014 17:25:31 +0000 (19:25 +0200)]
firstboot: get rid of firstboot generator again, introduce ConditionFirstBoot= instead

As Zbigniew pointed out a new ConditionFirstBoot= appears like the nicer
way to hook in systemd-firstboot.service on first boots (those with /etc
unpopulated), so let's do this, and get rid of the generator again.

9 years agofirstboot: follow lock protocol when changing /etc/shadow
Lennart Poettering [Mon, 7 Jul 2014 16:57:09 +0000 (18:57 +0200)]
firstboot: follow lock protocol when changing /etc/shadow

9 years agoman: document systemd-firstboot(1)
Lennart Poettering [Mon, 7 Jul 2014 16:45:53 +0000 (18:45 +0200)]
man: document systemd-firstboot(1)

9 years agoman: drop references to the --priviliged command line option which has been removed...
Lennart Poettering [Mon, 7 Jul 2014 16:45:07 +0000 (18:45 +0200)]
man: drop references to the --priviliged command line option which has been removed a while back

9 years agobase-filesystem.c: terminate string array elements with \0
Harald Hoyer [Mon, 7 Jul 2014 15:45:53 +0000 (17:45 +0200)]
base-filesystem.c: terminate string array elements with \0

NULSTR_FOREACH() looks for a terminating zero and the element also needs
one.

9 years agoservice: flush status text and errno values each time a service is started
Lennart Poettering [Mon, 7 Jul 2014 15:33:46 +0000 (17:33 +0200)]
service: flush status text and errno values each time a service is started

We shouldn't show status texts from previous service starts

9 years agosystemctl: show StatusErrno value in "systemctl status"
Lennart Poettering [Mon, 7 Jul 2014 15:33:26 +0000 (17:33 +0200)]
systemctl: show StatusErrno value in "systemctl status"

9 years agoservice: don't accept negative ERRNO= notification messages
Lennart Poettering [Mon, 7 Jul 2014 15:32:44 +0000 (17:32 +0200)]
service: don't accept negative ERRNO= notification messages

9 years agoservice: minor modernization
Lennart Poettering [Mon, 7 Jul 2014 15:03:34 +0000 (17:03 +0200)]
service: minor modernization

9 years agocore: Added support for ERRNO NOTIFY_SOCKET message parsing, and added StatusErrno...
Miguel Angel Ajo [Mon, 7 Jul 2014 12:20:36 +0000 (14:20 +0200)]
core: Added support for ERRNO NOTIFY_SOCKET message parsing, and added StatusErrno dbus property along StatusText to allow notification of numeric status condition while degraded service operation or any other special situation.

9 years agofirstboot: change /etc/shadow access mode to 000
Lennart Poettering [Mon, 7 Jul 2014 14:54:09 +0000 (16:54 +0200)]
firstboot: change /etc/shadow access mode to 000

It appears to be customary to remove all access bits from /etc/shadow
including those for the root owner), hence let's do the same.

9 years agodhcp-network: make clear that we are ANDing Fragment offset field with mask
Michal Sekletar [Mon, 7 Jul 2014 13:27:24 +0000 (15:27 +0200)]
dhcp-network: make clear that we are ANDing Fragment offset field with mask

Reading BPF assembly written as C macros is inherently difficult. Don't
make it harder than necessary and provide clearer explanation in the
comment.

9 years agodhcp-network: ignore IP packets with More Fragments (MF) flag set
Michal Sekletar [Mon, 7 Jul 2014 12:15:41 +0000 (14:15 +0200)]
dhcp-network: ignore IP packets with More Fragments (MF) flag set

We already ignore IP fragments, because we expect that Fragment
offset (FO) field is not set. However first fragment in a fragmented IP
flow will have all zeroes in FO field. We should ignore such packet as
well, thus we need to look at MF flag in the IP header. Checking MF flag
will filter out all except last packet in fragmented flows. Last one
will be ruled out by next check for value of FO.

9 years agofirstboot: add new component to query basic system settings on first boot, or when...
Lennart Poettering [Mon, 7 Jul 2014 13:05:37 +0000 (15:05 +0200)]
firstboot: add new component to query basic system settings on first boot, or when creating OS images offline

A new tool "systemd-firstboot" can be used either interactively on boot,
where it will query basic locale, timezone, hostname, root password
information and set it. Or it can be used non-interactively from the
command line when prepareing disk images for booting. When used
non-inertactively the tool can either copy settings from the host, or
take settings on the command line.

$ systemd-firstboot --root=/path/to/my/new/root --copy-locale --copy-root-password --hostname=waldi

The tool will be automatically invoked (interactively) now on first boot
if /etc is found unpopulated.

This also creates the infrastructure for generators to be notified via
an environment variable whether they are running on the first boot, or
not.

9 years agoarchitecture: add string table entries for mips-le archs which were missing
Lennart Poettering [Mon, 7 Jul 2014 12:59:06 +0000 (14:59 +0200)]
architecture: add string table entries for mips-le archs which were missing

9 years agoman: chroot jails are no longer detected by ConditionVirtualization=
Lennart Poettering [Mon, 7 Jul 2014 12:58:36 +0000 (14:58 +0200)]
man: chroot jails are no longer detected by ConditionVirtualization=

9 years agoman: add missing archs to ConditionArchitecture= description
Lennart Poettering [Mon, 7 Jul 2014 12:58:13 +0000 (14:58 +0200)]
man: add missing archs to ConditionArchitecture= description

9 years agofileio: simplify write_env_file()
Lennart Poettering [Mon, 7 Jul 2014 10:05:41 +0000 (12:05 +0200)]
fileio: simplify write_env_file()

9 years agoutil: don't consider tabs special in string_has_cc() anymore
Lennart Poettering [Mon, 7 Jul 2014 10:04:55 +0000 (12:04 +0200)]
util: don't consider tabs special in string_has_cc() anymore

Instead, take a list of exceptions to our usual CC check

9 years agoshared: make timezone and locale enumeration and validation generic
Lennart Poettering [Mon, 7 Jul 2014 09:49:48 +0000 (11:49 +0200)]
shared: make timezone and locale enumeration and validation generic

This way we can reuse it other code thatn just localectl/localed +
timedatectl/timedated.

9 years agoupdate TODO
Lennart Poettering [Mon, 7 Jul 2014 09:48:06 +0000 (11:48 +0200)]
update TODO

9 years agomain: explain our /etc empty check a bit in a comment
Lennart Poettering [Mon, 7 Jul 2014 09:47:46 +0000 (11:47 +0200)]
main: explain our /etc empty check a bit in a comment

9 years agoutil: consider 0x7F a control chracter (which it is: DEL)
Lennart Poettering [Mon, 7 Jul 2014 09:47:10 +0000 (11:47 +0200)]
util: consider 0x7F a control chracter (which it is: DEL)

Let's better be safe than sorry.

9 years agoudev: link_config - ignore errors due to missing MAC address
Tom Gundersen [Mon, 7 Jul 2014 12:50:16 +0000 (14:50 +0200)]
udev: link_config - ignore errors due to missing MAC address

Otherwis, we get misleading error messages on links with MACs.

Reported by Leonid Isaev.

9 years agovconsole-setup: fix inverted error messages
Zbigniew Jędrzejewski-Szmek [Mon, 7 Jul 2014 12:55:30 +0000 (08:55 -0400)]
vconsole-setup: fix inverted error messages

Introduced in abee28c56d.

Pointed-out-by: Werner Fink <werner@suse.de>
9 years agoman: network - document Peer key
Tom Gundersen [Mon, 7 Jul 2014 12:24:07 +0000 (14:24 +0200)]
man: network - document Peer key

9 years agonetworkd: netdev - add missing refs
Tom Gundersen [Mon, 7 Jul 2014 12:18:26 +0000 (14:18 +0200)]
networkd: netdev - add missing refs

Without this, the underlying device would get freed (and hence
fail).

9 years agonetworkd: add support for peer address
Susant Sahani [Mon, 7 Jul 2014 09:28:56 +0000 (14:58 +0530)]
networkd: add support for peer address

This patch adds peer address support for
networkd . In the  [Address]  a new configurable
param is Peer.

[Match]
Name=ipip-tun

[Address]
Address=10.0.0.1/32
Peer=10.0.0.2/32

9 years agodhcp-network: add check for DHCP.chaddr
Michal Sekletar [Thu, 19 Jun 2014 13:14:14 +0000 (15:14 +0200)]
dhcp-network: add check for DHCP.chaddr

Check that received DHCP packets actually include our MAC address in
chaddr field. BPF interpreter has 32 bit wide registers but MAC address
is 48 bits long so we have to do check in two steps.

9 years agocoredumpctl: show a useful error on permission problems
Zbigniew Jędrzejewski-Szmek [Sun, 6 Jul 2014 22:35:46 +0000 (18:35 -0400)]
coredumpctl: show a useful error on permission problems

9 years agocompress: add benchmark-style test
Zbigniew Jędrzejewski-Szmek [Sat, 5 Jul 2014 18:29:56 +0000 (14:29 -0400)]
compress: add benchmark-style test

This is useful to test the behaviour of the compressor for various buffer
sizes.

Time is limited to a minute per compression, since otherwise, when LZ4
takes more than a second which is necessary to reduce the noise, XZ
takes more than 10 minutes.

% build/test-compress-benchmark (without time limit)
XZ: compressed & decompressed 2535300963 bytes in 794.57s (3.04MiB/s), mean compresion 99.95%, skipped 3570 bytes
LZ4: compressed & decompressed 2535303543 bytes in 1.56s (1550.07MiB/s), mean compresion 99.60%, skipped 990 bytes

% build/test-compress-benchmark (with time limit)
XZ: compressed & decompressed 174321481 bytes in 60.02s (2.77MiB/s), mean compresion 99.76%, skipped 3570 bytes
LZ4: compressed & decompressed 2535303543 bytes in 1.63s (1480.83MiB/s), mean compresion 99.60%, skipped 990 bytes

 It appears that there's a bug in lzma_end where it leaks 32 bytes.

9 years agojournal: add LZ4 as optional compressor
Zbigniew Jędrzejewski-Szmek [Fri, 4 Jul 2014 02:42:22 +0000 (22:42 -0400)]
journal: add LZ4 as optional compressor

Add liblz4 as an optional dependency when requested with --enable-lz4,
and use it in preference to liblzma for journal blob and coredump
compression. To retain backwards compatibility, XZ is used to
decompress old blobs.

Things will function correctly only with lz4-119.

Based on the benchmarks found on the web, lz4 seems to be the best
choice for "quick" compressors atm.

For pkg-config status, see http://code.google.com/p/lz4/issues/detail?id=135.

9 years agojournal/compress: return early in uncompress_startswith
Zbigniew Jędrzejewski-Szmek [Fri, 4 Jul 2014 23:53:58 +0000 (19:53 -0400)]
journal/compress: return early in uncompress_startswith

uncompress_startswith would always decode the whole stream, even
if it did not start with the given prefix.

Reallocation policy was also strange.

9 years agovconsole-setup: run setfont before loadkeys
Zbigniew Jędrzejewski-Szmek [Wed, 2 Jul 2014 02:20:11 +0000 (22:20 -0400)]
vconsole-setup: run setfont before loadkeys

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

9 years agosysusers: fix uninitialized warning
Ronny Chevalier [Sun, 6 Jul 2014 11:33:38 +0000 (13:33 +0200)]
sysusers: fix uninitialized warning

9 years agomachine: don't return uninitialized variable
Tom Gundersen [Sun, 6 Jul 2014 12:12:28 +0000 (14:12 +0200)]
machine: don't return uninitialized variable

Repotred by Ronny Chevalier

9 years agoman: document nspawn's new --volatile switch
Lennart Poettering [Fri, 4 Jul 2014 10:17:12 +0000 (12:17 +0200)]
man: document nspawn's new --volatile switch

9 years agonetworkd: accept section DHCP in systemd.network files
Steven Noonan [Fri, 4 Jul 2014 02:42:19 +0000 (19:42 -0700)]
networkd: accept section DHCP in systemd.network files

9 years agonetworkd: don't clear dhcpv6 lease timers if there's no previous lease
Steven Noonan [Fri, 4 Jul 2014 02:43:56 +0000 (19:43 -0700)]
networkd: don't clear dhcpv6 lease timers if there's no previous lease

If client->lease is NULL, dhcp6_lease_clear_timers will cause a segmentation
fault.

9 years agonspawn: add new --volatile switch for booting containers in volatile (ephemeral)...
Lennart Poettering [Fri, 4 Jul 2014 01:22:33 +0000 (03:22 +0200)]
nspawn: add new --volatile switch for booting containers in volatile (ephemeral) mode

Two modes are supported: --volatile=yes mounts only /usr into the
container, and a tmpfs as root directory. --volatile=state mounts the
full OS tree in, but overmounts /var with a tmpfs.

--volatile=yes hence boots with an unpopulated /etc and /var, starting
with pristine configuration and state.

--volatile=state hence boots with an unpopulated /var, only starting
with pristine state.

9 years agomain: change check whether /etc is unpopulated to look for /etc/machine-id
Lennart Poettering [Fri, 4 Jul 2014 01:13:05 +0000 (03:13 +0200)]
main: change check whether /etc is unpopulated to look for /etc/machine-id

Previously, we checked whether /etc was completely empty. This makes it
difficult though for container managers such as nspawn to install a
small number of files (such as /etc/timezone), and have the system
otherwise populate its own tree.

Hence, change this by looking for /etc/machine-id, which should be a
good sign whether /etc is populated or not.

9 years agounits: conditionalize configfs and debugfs with CAP_SYS_RAWIO
Lennart Poettering [Fri, 4 Jul 2014 01:10:09 +0000 (03:10 +0200)]
units: conditionalize configfs and debugfs with CAP_SYS_RAWIO

We really don't want these in containers as they provide a too lowlevel
look on the system.

Conditionalize them with CAP_SYS_RAWIO since that's required to access
/proc/kcore, /dev/kmem and similar, which feel similar in style. Also,
npsawn containers lack that capability.

9 years agounits: conditionalize static device node logic on CAP_SYS_MODULES instead of CAP_MKNOD
Lennart Poettering [Fri, 4 Jul 2014 01:07:20 +0000 (03:07 +0200)]
units: conditionalize static device node logic on CAP_SYS_MODULES instead of CAP_MKNOD

npsawn containers generally have CAP_MKNOD, since this is required
to make PrviateDevices= work. Thus, it's not useful anymore to
conditionalize the kmod static device node units.

Use CAP_SYS_MODULES instead which is not available for nspawn
containers. However, the static device node logic is only done for being
able to autoload modules with it, and if we can't do that there's no
point in doing it.

9 years agoman: netdev - mention tun and tap
Tom Gundersen [Thu, 3 Jul 2014 23:26:19 +0000 (01:26 +0200)]
man: netdev - mention tun and tap

Reported by Moviuro <moviuro@gmail.com>

9 years agonetworkd: properly track addresses when first added
Tom Gundersen [Thu, 3 Jul 2014 20:47:51 +0000 (22:47 +0200)]
networkd: properly track addresses when first added

When doing a NEWADDR, the reply we get back is the NEWADDR itself, rather
than just an empty ack (unlike how NEWLINK works). For this reason, the
process that did the NEWADDR does not get the broadcast message.

We were only listening for broadcast messages, and hence not tracking the
addresses we added ourselves. This went unnoticed as the kernel will usually
send NEWADDR messages from time to time anyway, so things would mostly work,
but in the worst case we would not notice that a routable address was available
and consider ourselves offline.

9 years agonetworkd: link - improve link tracking logging
Tom Gundersen [Thu, 3 Jul 2014 19:35:03 +0000 (21:35 +0200)]
networkd: link - improve link tracking logging

9 years agoarchitecture: remove "cris" from uname list
Lennart Poettering [Thu, 3 Jul 2014 20:52:44 +0000 (22:52 +0200)]
architecture: remove "cris" from uname list

the only correct name appears to be "crisv32"...

http://lists.freedesktop.org/archives/systemd-devel/2014-July/020899.html

9 years agosd-path: add missing header
Umut Tezduyar Lindskog [Thu, 3 Jul 2014 20:28:29 +0000 (22:28 +0200)]
sd-path: add missing header

9 years agoman: add link to Open Group Base Specifications
Zbigniew Jędrzejewski-Szmek [Tue, 1 Jul 2014 00:10:16 +0000 (20:10 -0400)]
man: add link to Open Group Base Specifications

9 years agobuild-sys: bump package and library versions v215
Lennart Poettering [Thu, 3 Jul 2014 18:48:40 +0000 (20:48 +0200)]
build-sys: bump package and library versions

9 years agoNEWS: prepare for release
Lennart Poettering [Thu, 3 Jul 2014 18:46:35 +0000 (20:46 +0200)]
NEWS: prepare for release

9 years agoman: document that systemctl's -H may now be used to connect directly to a container...
Lennart Poettering [Thu, 3 Jul 2014 18:37:10 +0000 (20:37 +0200)]
man: document that systemctl's -H may now be used to connect directly to a container on a remote host

9 years agomachine: properly distuingish created and registered machines
Lennart Poettering [Thu, 3 Jul 2014 18:19:58 +0000 (20:19 +0200)]
machine: properly distuingish created and registered machines

9 years agoupdate TODO
Lennart Poettering [Thu, 3 Jul 2014 17:55:18 +0000 (19:55 +0200)]
update TODO

9 years agosysusers: add new line type "m" to add users as members to groups
Lennart Poettering [Thu, 3 Jul 2014 17:54:46 +0000 (19:54 +0200)]
sysusers: add new line type "m" to add users as members to groups

9 years agoupdate TODO
Lennart Poettering [Thu, 3 Jul 2014 15:51:36 +0000 (17:51 +0200)]
update TODO

9 years agomachinectl: show /etc/os-release information of container in status output
Lennart Poettering [Thu, 3 Jul 2014 15:50:55 +0000 (17:50 +0200)]
machinectl: show /etc/os-release information of container in status output

9 years agohwdb: update
Kay Sievers [Thu, 3 Jul 2014 14:28:40 +0000 (16:28 +0200)]
hwdb: update

9 years agonamespace: make sure /tmp, /var/tmp and /dev are writable in namespaces we set up
Lennart Poettering [Thu, 3 Jul 2014 14:27:57 +0000 (16:27 +0200)]
namespace: make sure /tmp, /var/tmp and /dev are writable in namespaces we set up

9 years agonamespace: fix uninitialized memory access
Lennart Poettering [Thu, 3 Jul 2014 14:27:53 +0000 (16:27 +0200)]
namespace: fix uninitialized memory access

9 years agohwdb: Update database of Bluetooth company identifiers
Marcel Holtmann [Thu, 3 Jul 2014 14:13:48 +0000 (16:13 +0200)]
hwdb: Update database of Bluetooth company identifiers

9 years agoarchitecture: also add tuples for old ARM BE ABI
Lennart Poettering [Thu, 3 Jul 2014 13:59:32 +0000 (15:59 +0200)]
architecture: also add tuples for old ARM BE ABI

9 years agoarchitecture: add tuple for old arm abi
Zbigniew Jędrzejewski-Szmek [Thu, 3 Jul 2014 13:08:30 +0000 (09:08 -0400)]
architecture: add tuple for old arm abi

I don't have suitable hardware at hand, so this is based
on debian documentation:

https://wiki.debian.org/ArmEabiPort#GCC_preprocessor_macros_for_floating_point

9 years agotest: print library tuple in test
Lennart Poettering [Thu, 3 Jul 2014 13:50:57 +0000 (15:50 +0200)]
test: print library tuple in test

9 years agoshared: add LIB_ARCH tuples for BE ARM archs
Lennart Poettering [Thu, 3 Jul 2014 13:50:53 +0000 (15:50 +0200)]
shared: add LIB_ARCH tuples for BE ARM archs

9 years agocore: introduce exit_status_set_is_empty() to make things a bit easier to read
Lennart Poettering [Thu, 3 Jul 2014 13:50:31 +0000 (15:50 +0200)]
core: introduce exit_status_set_is_empty() to make things a bit easier to read

9 years agoupdate TODO
Lennart Poettering [Thu, 3 Jul 2014 13:49:54 +0000 (15:49 +0200)]
update TODO

9 years agoshared: rename ARCH_TUPLE to LIB_ARCH_TUPLE
Lennart Poettering [Thu, 3 Jul 2014 13:40:14 +0000 (15:40 +0200)]
shared: rename ARCH_TUPLE to LIB_ARCH_TUPLE

This is really just about library locations, hence clarify that we don't
assume this to be anything but that.

9 years agoexit-status: rename ExitStatusSet's "code" field to "status"
Lennart Poettering [Thu, 3 Jul 2014 13:36:50 +0000 (15:36 +0200)]
exit-status: rename ExitStatusSet's "code" field to "status"

We should follow the naming scheme waitid() uses, not come up with our
own reversed one...

9 years agoman: reference RestartForceExitStatus= from the Restart= description
Lennart Poettering [Thu, 3 Jul 2014 13:36:33 +0000 (15:36 +0200)]
man: reference RestartForceExitStatus= from the Restart= description

9 years agoarchitecture: add tuples for arm
Zbigniew Jędrzejewski-Szmek [Thu, 3 Jul 2014 13:03:16 +0000 (09:03 -0400)]
architecture: add tuples for arm

9 years agoarch: add crisv32 to uname check
Umut Tezduyar Lindskog [Thu, 3 Jul 2014 07:54:45 +0000 (09:54 +0200)]
arch: add crisv32 to uname check

9 years agonspawn: when running in a service unit, use systemd for restarts
Lennart Poettering [Thu, 3 Jul 2014 10:50:11 +0000 (12:50 +0200)]
nspawn: when running in a service unit, use systemd for restarts

THis way we can remove cgroup priviliges after setup, but get them back
for the next restart, as we need it.

9 years agomachined: don't force terminate registered machines
Lennart Poettering [Thu, 3 Jul 2014 10:48:51 +0000 (12:48 +0200)]
machined: don't force terminate registered machines

When a machine is registered in machined with CreateMachine it is OK to
kill the machine when it is terminated, but when an existing unit is
simply registered via RegisterMachine we shouldn't do that, as the unit
is controlled by somebody else.

9 years agocore: introduce new RestartForceExitStatus= service setting
Lennart Poettering [Thu, 3 Jul 2014 10:47:40 +0000 (12:47 +0200)]
core: introduce new RestartForceExitStatus= service setting

This does the inverse of RestartPreventExitStatus=: it forces a restart
of a service when a certain exit status is returned by a service
process.

9 years agonetworkd: tuntap - default to no packet information
Tom Gundersen [Thu, 3 Jul 2014 10:19:14 +0000 (12:19 +0200)]
networkd: tuntap - default to no packet information

Susant says:
> ip tuntap turns this off by default.

Let's follow ip(8) here as that should be the least surprising.

9 years agonetworkd vxlan: Pass correct type
Susant Sahani [Thu, 3 Jul 2014 09:36:59 +0000 (15:06 +0530)]
networkd vxlan: Pass correct type

The group argument is a union. We need to
pass the correct type

9 years agonetworkd: tuntap - manpage fixes
Tom Gundersen [Thu, 3 Jul 2014 09:25:07 +0000 (11:25 +0200)]
networkd: tuntap - manpage fixes

9 years agonetworkd: tuntap - enable PacketInfo by default
Tom Gundersen [Thu, 3 Jul 2014 09:37:05 +0000 (11:37 +0200)]
networkd: tuntap - enable PacketInfo by default

9 years agonetworkd: netdev - move tunnel address parsing to networkd-tunnel.c
Tom Gundersen [Thu, 3 Jul 2014 08:55:59 +0000 (10:55 +0200)]
networkd: netdev - move tunnel address parsing to networkd-tunnel.c

9 years agonetworkd: tunnels - make tunnel address parsing generic
Tom Gundersen [Thu, 3 Jul 2014 08:52:42 +0000 (10:52 +0200)]
networkd: tunnels - make tunnel address parsing generic

It had a bug in the typing, fix that and also make it save the address family so we
can print proper error messages.

9 years agonetworkd: Introduce tun/tap device
Susant Sahani [Thu, 3 Jul 2014 08:04:11 +0000 (13:34 +0530)]
networkd: Introduce tun/tap device

This patch introduces TUN/TAP device creation support
to networkd.

Example conf to create a tap device:

file: tap.netdev
------------------
[NetDev]
Name=tap-test
Kind=tap

[Tap]
OneQueue=true
MultiQueue=true
PacketInfo=true
User=sus
Group=sus
------------------

Test:
1. output of ip link
tap-test: tap pi one_queue UNKNOWN_FLAGS:900 user 1000 group 1000

id:
uid=1000(sus) gid=10(wheel) groups=10(wheel),1000(sus)
context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023

Modifications:

Added:
1. file networkd-tuntap.c
3. netdev kind NETDEV_KIND_TUN and NETDEV_KIND_TAP
2. Tun and Tap Sections and config params to parse
   conf and gperf conf parameters

[tomegun: tweak the 'kind' checking for received ifindex]

9 years agoudev: net_setup_link - add a bit more logging
Tom Gundersen [Thu, 3 Jul 2014 07:57:27 +0000 (09:57 +0200)]
udev: net_setup_link - add a bit more logging

9 years agonetworkd: netdev - drop the link callbacks after calling them once
Tom Gundersen [Thu, 3 Jul 2014 07:55:59 +0000 (09:55 +0200)]
networkd: netdev - drop the link callbacks after calling them once

We should never call them again, so make sure they are cleaned up correctly.

9 years agonetworkd: netdev - take ref immediately after calling out
Tom Gundersen [Thu, 3 Jul 2014 07:43:31 +0000 (09:43 +0200)]
networkd: netdev - take ref immediately after calling out

Keeping the refcounting next to the sd_bus_call_async() makes it easier to check.

9 years agonetworkd: split out vlan and macvlan handling
Tom Gundersen [Thu, 3 Jul 2014 07:38:33 +0000 (09:38 +0200)]
networkd: split out vlan and macvlan handling

9 years agosd-login: use the same code for verfiying machine names everywhere
Lennart Poettering [Wed, 2 Jul 2014 23:19:26 +0000 (01:19 +0200)]
sd-login: use the same code for verfiying machine names everywhere

9 years agobus: close a bus that failed to connect
Lennart Poettering [Wed, 2 Jul 2014 23:19:21 +0000 (01:19 +0200)]
bus: close a bus that failed to connect

9 years agosd-bus: support connecting to remote hosts, directly into containers
Lennart Poettering [Wed, 2 Jul 2014 23:17:26 +0000 (01:17 +0200)]
sd-bus: support connecting to remote hosts, directly into containers

systemctl -H root@foobar:waldi

will now show a list of services running on container "waldi" on host
"foobar", using "root" for authenticating at "foobar".

Since entereing a container requires priviliges, this will only work
correctly for root logins.

9 years agoman: /usr/bin may contain binaries in any compatible arch, not just the primary one
Lennart Poettering [Wed, 2 Jul 2014 23:10:01 +0000 (01:10 +0200)]
man: /usr/bin may contain binaries in any compatible arch, not just the primary one

9 years agoman: fix links to systemd-efi-boot-generator(8)
Lennart Poettering [Wed, 2 Jul 2014 23:09:35 +0000 (01:09 +0200)]
man: fix links to systemd-efi-boot-generator(8)

9 years agosd-bus: when an event loop terminates, explicitly close the bus
Lennart Poettering [Wed, 2 Jul 2014 15:36:47 +0000 (17:36 +0200)]
sd-bus: when an event loop terminates, explicitly close the bus

This makes sure we actually release the bus and all the messages it
references.

9 years agobus: drop bus/message GC logic
Lennart Poettering [Wed, 2 Jul 2014 15:29:09 +0000 (17:29 +0200)]
bus: drop bus/message GC logic

When a caller drops all references to a bus and its messages while the
messages where still queue, this causes the bus to reference the
messages, and the messages to reference the bus, without anybody else
keeping a reference, which is something we so far considered a leak, and
tried to fix with a GC logic that would recognize cases like this, and
drop the reference.

This GC logic has been broken sofar, and remained unfixed. This commit
removes it altogther, replacing it with nothing. The rationale is that
simply because all refs to the bus have been dropped its queued messages
should *still* be written to the bus, even if the caller doesn't retain
any reference to either bus nor message. This means it was actually
wrong to attempt to clean up the bus in this case.

The proper way how applications should handle this is by explicitly
invoking sd_bus_close(), when they want busses to go away. This is
probably want they want to do anyway to avoid getting spurious
callbacks after they stopped using a bus.

9 years agobus-proxy: restore operation in non-kdbus mode
Lennart Poettering [Wed, 2 Jul 2014 15:12:24 +0000 (17:12 +0200)]
bus-proxy: restore operation in non-kdbus mode

bus-proxyd is not only the bridge between legacy dbus clients and kdbus
but is also used to access remote dbus servers via ssh. Let's make sure
it actually works for that.