David Herrmann [Fri, 31 Jul 2015 14:52:29 +0000 (16:52 +0200)]
logind: release VT-positions when closing sessions
Make sure we release VT-positions when a session is closed. Otherwise,
lingering sessions will occupy VTs and prevent next logins from
succeeding.
Note that we already release session-devices when closing a session, so
there cannot be anyone using the VT anymore.
Kay Sievers [Fri, 31 Jul 2015 13:33:49 +0000 (15:33 +0200)]
timesyncd: remove RLIMIT_NPROC
NSS plugins might create additional threads. Remove the limit, we cannot
really make any assumptions here.
Kay Sievers [Fri, 31 Jul 2015 13:25:53 +0000 (15:25 +0200)]
Merge pull request #803 from mixi/master
build-sys: use 'test -f' instead of AC_CHECK_FILE
Daniel Mack [Fri, 31 Jul 2015 13:04:21 +0000 (15:04 +0200)]
Merge pull request #804 from dvdhrm/proxy-directed2
bus-proxy: make NameAcquired/Lost directed (v2)
Daniel Mack [Fri, 31 Jul 2015 13:03:49 +0000 (15:03 +0200)]
Merge pull request #805 from dvdhrm/proxy-activation
bus-proxy: make StartServiceByName synchronous
David Herrmann [Fri, 31 Jul 2015 11:25:04 +0000 (13:25 +0200)]
bus-proxy: make StartServiceByName synchronous
The StartServiceByName() call was provided by dbus-daemon to activate a
service without sending a message. On receiption, dbus-daemon schedules
an activation request (different modes are supported) and sends back the
reply once activation is done.
With kdbus, we marked StartServiceByName() as deprecated. There is no
real reason to start services explicitly. Instead, applications should
just *use* the service and rely on it being activated implicitly.
However, we provide compatibility with dbus-daemon and implement
StartServiceByName() on the proxy via a call to
org.freedesktop.DBus.Peer.Ping() on the destination. This will activate
the peer implicitly as part of the no-op Ping() method call (regardless
whether the peer actually implements that call).
Now, the problem is, StartServiceByName() was synchronous on dbus-daemon
but isn't on bus-proxy. Hence, on return, there is no guarantee that
ListNames includes the activated name. As this is required by some
applications, we need to make this synchronous.
This patch makes the proxy track the Ping() method call and send the
reply of StartServiceByName() only once Ping() returned. We do not look
at possible errors of Ping(), as there is no strict requirement for the
peer to implement org.freedesktop.DBus.Peer. Furthermore, any interesting
error should have already been caught by sd_bus_send() before.
Note:
This race was triggered by gdbus. The gdbus-proxy implementation
relies on a name to be available after StartServiceByName()
returns. This is highly fragile and should be dropped by gdbus.
Even if the call is synchronous, there is no reason whatsoever to
assume the service did not exit-on-idle before ListNames()
returns.
However, this race is much less likely than the startup race, so
we try to be compatible to dbus-daemon now.
Johannes Nixdorf [Thu, 16 Jul 2015 10:49:53 +0000 (12:49 +0200)]
build-sys: use 'test -f' instead of AC_CHECK_FILE
AC_CHECK_FILE fails when cross-compiling. It is intended to be used to
check for files that are used at runtime during build time (e.g.
/etc/passwd, /dev/*) [1]. For files which are only used at build time
'test -f' is sufficient.
[1]: https://lists.gnu.org/archive/html/autoconf/2000-10/msg00018.html
David Herrmann [Fri, 31 Jul 2015 09:16:13 +0000 (11:16 +0200)]
bus-proxy: don't filter directed signals
NameAcquired and NameLost are directed signals. Never ever filter them on
dbus1. On dbus1, filters *exclusively* apply to broadcasts! Hence, we
must always forward directed signals unconditionally!
David Herrmann [Fri, 31 Jul 2015 09:12:52 +0000 (11:12 +0200)]
bus-proxy: fix NameAcquired and NameLost to be directed
The NameAcquired and NameLost signals are _directed_ signals. Make sure
we properly set the destination correctly, and verify it in our
proxy-test.
David Herrmann [Fri, 31 Jul 2015 09:51:33 +0000 (11:51 +0200)]
basic: fix error/memleak in socket-util
Probably a typo, checking 'ret' instead of the return value 'p'. This
might cause the function to return failure, even though it succeeded.
Furthermore, it might leak resources.
Daniel Mack [Fri, 31 Jul 2015 08:51:32 +0000 (10:51 +0200)]
Merge pull request #799 from andreaskem/hwdb-pull
hwdb: DPI info for Logitech G402 mouse
Andreas Kempf [Fri, 31 Jul 2015 08:20:25 +0000 (10:20 +0200)]
hwdb: Add mouse DPI info for Logitech G402.
DPI information was taken from the device's setup guide.
Additional (shortened) information from udevadm info:
P: .../usb2/2-1/2-1:1.0/0003:046D:C07E.0002/input/input6/event2
N: input/event2
S: input/by-id/usb-Logitech_Gaming_Mouse_G402_6D93117D5049-event-mouse
S: input/by-path/pci-0000:00:12.0-usb-0:1:1.0-event-mouse
...
E: ID_BUS=usb
E: ID_INPUT=1
E: ID_INPUT_MOUSE=1
E: ID_MODEL=Gaming_Mouse_G402
E: ID_MODEL_ENC=Gaming\x20Mouse\x20G402
E: ID_MODEL_ID=c07e
E: ID_PATH=pci-0000:00:12.0-usb-0:1:1.0
E: ID_PATH_TAG=pci-0000_00_12_0-usb-0_1_1_0
E: ID_REVISION=9002
E: ID_SERIAL=Logitech_Gaming_Mouse_G402_6D93117D5049
E: ID_SERIAL_SHORT=
6D93117D5049
E: ID_TYPE=hid
E: ID_USB_DRIVER=usbhid
E: ID_USB_INTERFACES=:030102:030000:
E: ID_USB_INTERFACE_NUM=00
E: ID_VENDOR=Logitech
E: ID_VENDOR_ENC=Logitech
E: ID_VENDOR_ID=046d
E: LIBINPUT_DEVICE_GROUP=3/46d/c07e/111:usb-0000:00:12.0-1
E: MAJOR=13
E: MINOR=66
E: SUBSYSTEM=input
...
Andreas Kempf [Fri, 31 Jul 2015 08:17:19 +0000 (10:17 +0200)]
hwdb: Update info for potential contributors.
Update the location of the bug tracker and mention that pull requests
are preferred.
Kay Sievers [Thu, 30 Jul 2015 12:09:19 +0000 (14:09 +0200)]
systemd-boot: sort /EFI/Linux/*.efi files
Daniel Mack [Thu, 30 Jul 2015 13:51:50 +0000 (15:51 +0200)]
unit-name: fix memory leak
Fix a memory leak introduced by
2fc09a9c. 's' is used twice in this
function, and if free_and_strdup() fails, the pointer is left untouched.
Daniel Mack [Thu, 30 Jul 2015 13:35:52 +0000 (15:35 +0200)]
Merge pull request #787 from dvdhrm/bus-list
sd-bus: fix parsing of KDBUS_CMD_LIST
David Herrmann [Thu, 30 Jul 2015 12:12:09 +0000 (14:12 +0200)]
sd-bus: fix parsing of KDBUS_CMD_LIST
We *must not* assume that an entry returned by KDBUS_CMD_LIST only
carries a single KDBUS_ITEM_OWNED_NAME. Similarly, we already parse
multiple such items for message-metadata, so make sure we support the
same on KDBUS_CMD_LIST.
By relying on the kernel to return all names separately, we limit the
kernel API significantly. Stop this and let the kernel decide how to
return its data.
Daniel Mack [Thu, 30 Jul 2015 11:22:50 +0000 (13:22 +0200)]
Merge pull request #784 from eworm-de/typo
man: fix typo in man systemd-machine-id-commit
David Herrmann [Thu, 30 Jul 2015 11:22:15 +0000 (13:22 +0200)]
Merge pull request #785 from zonque/free-and-strdup
tree-wide: use free_and_strdup()
Daniel Mack [Wed, 29 Jul 2015 18:25:57 +0000 (20:25 +0200)]
tree-wide: use free_and_strdup()
Use free_and_strdup() where appropriate and replace equivalent,
open-coded versions.
Christian Hesse [Thu, 30 Jul 2015 08:24:16 +0000 (10:24 +0200)]
man: fix typo in man systemd-machine-id-commit
Daniel Mack [Thu, 30 Jul 2015 07:30:49 +0000 (09:30 +0200)]
Merge pull request #783 from whot/hwdb-updates
Hwdb updates
Peter Hutterer [Mon, 27 Jul 2015 22:17:04 +0000 (08:17 +1000)]
hwdb: add min/max/resolution override for Appletouch one-button touchpads
Macbook2,1, late 2006 model.
https://bugzilla.redhat.com/show_bug.cgi?id=
1246651
Peter Hutterer [Mon, 27 Jul 2015 10:04:25 +0000 (20:04 +1000)]
hwdb: add resolution values for Asus K52JT touchpad
https://bugs.freedesktop.org/show_bug.cgi?id=91364
Daniel Mack [Wed, 29 Jul 2015 18:43:54 +0000 (20:43 +0200)]
Merge pull request #779 from poettering/fflush-and-check
tree-wide: port everything over to fflush_and_check()
Tom Gundersen [Wed, 29 Jul 2015 18:40:17 +0000 (20:40 +0200)]
Merge pull request #764 from ssahani/vxlan1
networkd: Add VXLAN Netlink attributes
Daniel Mack [Wed, 29 Jul 2015 18:31:15 +0000 (20:31 +0200)]
Merge branch 'master' of github.com:systemd/systemd
Lennart Poettering [Wed, 29 Jul 2015 18:31:07 +0000 (20:31 +0200)]
tree-wide: port everything over to fflush_and_check()
Some places invoked fflush() directly with their own manual error
checking, let's unify all that by using fflush_and_check().
This also unifies the general error paths of fflush()+rename() file
writers.
Daniel Mack [Wed, 29 Jul 2015 18:31:02 +0000 (20:31 +0200)]
Merge branch 'pr/761'
Tom Gundersen [Tue, 28 Jul 2015 23:41:24 +0000 (01:41 +0200)]
networkd-wait-online: only consider interfaces given on the commandline
If some interfaces are given on the commandline, ignore all others.
Kay Sievers [Wed, 29 Jul 2015 17:26:49 +0000 (19:26 +0200)]
sd-boot: stub - export LoaderDevicePartUUID
Daniel Mack [Wed, 29 Jul 2015 17:04:13 +0000 (19:04 +0200)]
Merge pull request #778 from ssahani/flow
networkd: fix size of networkd binary
Kay Sievers [Wed, 29 Jul 2015 16:50:32 +0000 (18:50 +0200)]
build-sys: fix "make doc-sync"
Susant Sahani [Wed, 29 Jul 2015 16:34:28 +0000 (22:04 +0530)]
networkd: fix size of networkd binary
This patch fixes the size of networkd
Bug #775
before:
size systemd-networkd
text data bss dec hex filename
1493755 8424392 2337
9920484 975fe4 systemd-networkd
After
$ size systemd-networkd
text data bss dec hex filename
1493555 35752 2337
1531644 175efc systemd-networkd
Lennart Poettering [Wed, 29 Jul 2015 16:45:48 +0000 (18:45 +0200)]
Merge pull request #777 from kaysievers/gtp-auto
gpt-auto-generator: merge efi-boot-generator
Lennart Poettering [Wed, 29 Jul 2015 16:20:17 +0000 (18:20 +0200)]
Merge pull request #774 from dvdhrm/gvariant3
gvariant: fix encoding of unary type and root-variant (v3)
Kay Sievers [Wed, 29 Jul 2015 14:50:49 +0000 (16:50 +0200)]
gpt-auto-generator: merge efi-boot-generator
Daniel Mack [Wed, 29 Jul 2015 15:52:46 +0000 (17:52 +0200)]
Merge pull request #776 from baracoder/master
man: unit: fix StartTimeoutSec
Herman Fries [Wed, 29 Jul 2015 15:45:40 +0000 (17:45 +0200)]
man: unit: fix StartTimeoutSec
should be TimeoutStartSec
David Herrmann [Wed, 29 Jul 2015 13:58:25 +0000 (15:58 +0200)]
sd-bus: fix encoding/decoding gvariant root container
The gvariant root container contains a 'variant' at the end, which embeds
the whole message body. This variant *must* contain a structure so we are
compatible to dbus1. Otherwise, it could encode at most 1 type, instead
of a full signature.
Our gvariant message parser already parses the variant-content as a
structure, so we're mostly good. However, it does *not* include the
opening and closing parantheses, nor does it parse them.
This patch fixes the decoder to verify a message contains the
parantheses, and also make the encoder add those parantheses into the
marshaled message.
David Herrmann [Tue, 28 Jul 2015 16:16:16 +0000 (18:16 +0200)]
sd-bus: fix marshaling of unary type
The unary type has a fixed size of 1 in gvariant. Make sure we properly
encode it as such. Right now, we encode/decode it as empty sequence.
David Herrmann [Wed, 29 Jul 2015 12:59:35 +0000 (14:59 +0200)]
NEWS: update 223 contributors
Update v223 contributors and release date.
Kay Sievers [Wed, 29 Jul 2015 13:02:27 +0000 (15:02 +0200)]
build-sys: update git-tar
Daniel Mack [Wed, 29 Jul 2015 11:05:36 +0000 (13:05 +0200)]
Merge pull request #769 from poettering/socket-util-no-log
socket-util: library calls shouldn't log on their own
David Herrmann [Tue, 28 Jul 2015 16:13:33 +0000 (18:13 +0200)]
sd-bus: drop redundant code
If c->item_size is 0, the next item to parse in a structure is empty.
However, this also implies that the signature must be empty. The latter
case is already handled just fine by enter_struct_or_dict_entry() so
there is no reason to handle the same case in the caller.
David Herrmann [Tue, 28 Jul 2015 14:46:51 +0000 (16:46 +0200)]
sd-bus: don't assert() on valid signatures
Right now sd_bus_message_skip() will abort execution if passed a
signature of the unary type "()". Regardless whether this should be
supported or not, we really must not abort. Drop the incorrect assertion
and add a test-case for this.
David Herrmann [Wed, 29 Jul 2015 10:43:45 +0000 (12:43 +0200)]
build: bump version info
Bump version to 223 and increase libsystemd libtool-info as we added a
structure-member (without increasing structure size) to sd-bus-vtable.
Daniel Mack [Wed, 29 Jul 2015 10:44:22 +0000 (12:44 +0200)]
Merge pull request #768 from poettering/resolved-localhost
resolved: never attempt to resolve loopback addresses via DNS/LLMNR/mDNS
Lennart Poettering [Wed, 29 Jul 2015 10:40:55 +0000 (12:40 +0200)]
Merge pull request #767 from torstehu/fix-typo
treewide: fix typos
Lennart Poettering [Wed, 29 Jul 2015 10:33:44 +0000 (12:33 +0200)]
socket-util: library calls shouldn't log on their own
Instead, make sure that all callers log properly.
Lennart Poettering [Wed, 29 Jul 2015 10:22:55 +0000 (12:22 +0200)]
resolved: never attempt to resolve loopback addresses via DNS/LLMNR/mDNS
We already refuse to resolve "localhost", hence we should also refuse
resolving "127.0.0.1" and friends.
Torstein Husebø [Fri, 24 Jul 2015 09:14:01 +0000 (11:14 +0200)]
treewide: fix typos
David Herrmann [Wed, 29 Jul 2015 10:12:10 +0000 (12:12 +0200)]
NEWS: add 'macvtap' section
systemd-networkd now supports 'macvtap' devices, similar to the already
supported 'macvlan' devices.
David Herrmann [Wed, 29 Jul 2015 10:03:34 +0000 (12:03 +0200)]
Merge pull request #747 from dvdhrm/consoled
terminal: drop unfinished code
Susant Sahani [Wed, 29 Jul 2015 08:36:46 +0000 (14:06 +0530)]
man: add man for VXLAN Group Policy option
Susant Sahani [Wed, 29 Jul 2015 08:35:34 +0000 (14:05 +0530)]
networkd: vxlan add support for GBP
This patch add support for vxlan VXLAN Group Policy Option.
https://tools.ietf.org/html/draft-smith-vxlan-group-policy-00
http://lwn.net/Articles/628683/
Susant Sahani [Wed, 29 Jul 2015 06:29:16 +0000 (11:59 +0530)]
sd-netlink: introduce api for new NL type NLA_FLAG
Susant Sahani [Wed, 29 Jul 2015 05:47:08 +0000 (11:17 +0530)]
sd-netlink: add support for new type NETLINK_TYPE_FLAG
NETLINK_TYPE_FLAG is NLA_FLAG.
This new type will be used in NLA_FLAG for example
IFLA_VXLAN_GBP and IFLA_VXLAN_REMCSUM_NOPARTIAL
Susant Sahani [Wed, 29 Jul 2015 05:44:28 +0000 (11:14 +0530)]
sd-netlink: add support for vxlan attributes
Tom Gundersen [Tue, 28 Jul 2015 23:34:35 +0000 (01:34 +0200)]
networkd-wait-online: fix race
We must consider 'pending' links as if they may be managed by networkd, as this
is the state we enter before deciding wether networkd should manage the link
or not, so we better wait for this decision being made.
Daniel Mack [Tue, 28 Jul 2015 21:54:43 +0000 (23:54 +0200)]
Merge pull request #760 from teg/resolved-fix-nsec-types
resolved: fix NSEC type windows
Tom Gundersen [Tue, 28 Jul 2015 21:16:52 +0000 (23:16 +0200)]
resolved: packet - refuse empty type bitmaps
The NSEC type itself must at least be in the bitmap, so NSEC records with empty
bitmaps must be bogus.
Tom Gundersen [Tue, 28 Jul 2015 21:10:18 +0000 (23:10 +0200)]
resolved: packet - fix read_type_window()
We were tracking the bit offset inside each byte, rather than inside the whole bitmap.
Tom Gundersen [Tue, 28 Jul 2015 21:09:23 +0000 (23:09 +0200)]
resolve: packet - fix append_types()
We were counting the number of bits set rather than the number of bytes they occupied.
Daniel Mack [Tue, 28 Jul 2015 21:25:18 +0000 (23:25 +0200)]
Merge pull request #759 from phomes/master
hwdb: add HP USB 1000dpi Laser Mouse
Tom Gundersen [Tue, 28 Jul 2015 19:36:37 +0000 (21:36 +0200)]
Merge pull request #758 from poettering/dns-is-equal
resolved: compare dns question arrays properly
Thomas Hindoe Paaboel Andersen [Tue, 28 Jul 2015 18:09:54 +0000 (20:09 +0200)]
hwdb: add HP USB 1000dpi Laser Mouse
Tom Gundersen [Tue, 28 Jul 2015 17:44:02 +0000 (19:44 +0200)]
Merge pull request #732 from ssahani/macvtap
networkd: add support for Macvtap
Lennart Poettering [Tue, 28 Jul 2015 16:38:54 +0000 (18:38 +0200)]
resolved: compare dns question arrays properly
Let's optimize things a bit and properly compare DNS question arrays,
instead of checking if they are mutual supersets. This also makes ANY
query handling more accurate.
Daniel Mack [Tue, 28 Jul 2015 12:38:31 +0000 (14:38 +0200)]
udev: Fix udev_builtin_run_once()
Honour the boolean return value type.
This was an oversight in
f89d10ae4.
Daniel Mack [Tue, 28 Jul 2015 11:58:40 +0000 (13:58 +0200)]
udev: check more builtins[] pointers before dereferencing
Fix some more locations where pointers from builtins[] are dereferenced
before checking. Related to
8cacf69b1.
Daniel Mack [Tue, 28 Jul 2015 11:32:09 +0000 (13:32 +0200)]
Merge pull request #756 from ldzhong/fix
udev: avoid coredump when initializing udev builtins
Lidong Zhong [Tue, 28 Jul 2015 11:07:05 +0000 (19:07 +0800)]
udev: avoid coredump when initializing udev builtins
If one of the macros(HAVE_BLKID/HAVE_KMOD/HAVE_ACL) is not
defined, there will be a coredump
Daniel Mack [Tue, 28 Jul 2015 10:34:56 +0000 (12:34 +0200)]
Merge pull request #755 from karelzak/nomtab
mount: remove obsolete -n
Karel Zak [Tue, 28 Jul 2015 09:31:45 +0000 (11:31 +0200)]
mount: remove obsolete -n
It seems that systemd still uses legacy -n option. The option has been
originally designed to avoid write to /etc/mtab during boot when root
FS is not ready or read-only.
This is not necessary for long time, because /etc/mtab is not a real
file (it's symlink) and write to the file is impossible. All utils
should be able to detect the symlink and ignore mtab. This concept is
supported for very long time before systemd.
The userspase mount options are currently maintained by libmount
(mount(8) and mount.nfs) in /run/mount) which is tmpfs initialized
during early boot.
Lennart Poettering [Tue, 28 Jul 2015 01:20:24 +0000 (03:20 +0200)]
Merge pull request #375 from msekletar/test-install-crashers
install: make unit_file_get_list aware of UNIT_FILE_INDIRECT
Lennart Poettering [Mon, 27 Jul 2015 23:44:18 +0000 (01:44 +0200)]
Merge pull request #362 from d-hatayama/fix_selinux_unit_check_v2
selinux: fix missing SELinux unit access check
Daniel Mack [Mon, 27 Jul 2015 22:40:15 +0000 (00:40 +0200)]
Merge pull request #748 from teg/dns-name-between-4
basic: dns-name - between()
Daniel Mack [Mon, 27 Jul 2015 22:28:19 +0000 (00:28 +0200)]
Merge pull request #739 from intelfx/systemd-analyze-plot-user-instance
analyze: correctly draw the plot for user instances.
Ivan Shapovalov [Mon, 27 Jul 2015 16:40:36 +0000 (19:40 +0300)]
analyze: correctly draw the plot for user instances
Start-up timestamp of a user instance (userspace_time in struct boot_times)
actually may be arbitrarily big. This, because all timestamps are offset by
that value, leads to creation of arbitrarily wide SVGs which almost completely
consist of blank space.
Fix this by inverse-offsetting all timestamps by that value if user instance
operation is requested.
Fixes #740.
Tom Gundersen [Thu, 23 Jul 2015 20:32:44 +0000 (22:32 +0200)]
TODO
Tom Gundersen [Mon, 20 Jul 2015 00:02:45 +0000 (02:02 +0200)]
shared: dns-name - add dns_name_between()
Given three DNS names this function indicates if the second argument lies
strictly between the first and the third according to the canonical DNS
name order. Note that the order is circular, so the last name is
considered to be before the first.
Tom Gundersen [Mon, 20 Jul 2015 14:01:03 +0000 (16:01 +0200)]
shared: dns-name - use the canonical dns name ordering
The canonical DNS name ordering considers the rightmost label the most significant,
we were considering it the least significant. This is important when implementing
NSEC, which relies on the correct order.
Tom Gundersen [Mon, 20 Jul 2015 14:01:03 +0000 (16:01 +0200)]
shared: dns-name - introduce dns_label_unescape_suffix()
Intended to be called repeatedly, and returns then successive unescaped labels
from the most to the least significant (left to right).
This is slightly inefficient as it scans the string three times (two would be
sufficient): once to find the end of the string, once to find the beginning
of each label and lastly once to do the actual unescaping. The latter two
could be done in one go, but that seemed unnecessarily convoluted.
Ivan Shapovalov [Mon, 27 Jul 2015 22:01:10 +0000 (01:01 +0300)]
analyze: move acquire_boot_times() above acquire_time_data()
Next patch will make the latter call into the former.
Daniel Mack [Mon, 27 Jul 2015 19:34:28 +0000 (21:34 +0200)]
NEWS: follow VNetHeader rename
VnetHeader was renamed to VNetHeader just now. Update NEWS accordingly.
Daniel Mack [Mon, 27 Jul 2015 19:34:11 +0000 (21:34 +0200)]
Merge pull request #744 from poettering/vnethdr-fix
networkd: capitalize VNetHeader= as VnetHeader=
Lennart Poettering [Mon, 27 Jul 2015 19:16:27 +0000 (21:16 +0200)]
Merge pull request #746 from teg/resolved-connect-udp
resolved: UDP fixes
Tom Gundersen [Thu, 23 Jul 2015 16:45:49 +0000 (18:45 +0200)]
util: base32hex - explain distinction with base32
Tom Gundersen [Sat, 25 Jul 2015 03:14:08 +0000 (05:14 +0200)]
resolved: transaction - don't explicitly verify packet source
This is handled by the kernel now that the socket is connect()ed.
Tom Gundersen [Sat, 25 Jul 2015 03:12:49 +0000 (05:12 +0200)]
resolved: transaction - don't unref server when creating TCP socket
This was a bug.
Tom Gundersen [Sat, 25 Jul 2015 03:11:34 +0000 (05:11 +0200)]
resolved: scope - write() unicast DNS packets
As we have connect()ed to the desired DNS server, we no longer need to pass
control messages manually when sending packets. Simplify the logic accordingly.
Tom Gundersen [Wed, 15 Jul 2015 17:22:29 +0000 (19:22 +0200)]
resolved: transaction - introduce dns_transaction_emit()
This function emits the UDP packet via the scope, but first it will
determine the current server (and connect to it) and store the
server in the transaction.
This should not change the behavior, but simplifies the code.
Lennart Poettering [Mon, 27 Jul 2015 18:24:31 +0000 (20:24 +0200)]
networkd: capitalize VNetHeader= as VnetHeader=
Even when we use shortened, combined words, we still should uppercase
where a new word starts. I couldn't find a canonically capitalized
version of this term, hence I think we should follow our naming rules
here.
Tom Gundersen [Mon, 27 Jul 2015 18:18:43 +0000 (20:18 +0200)]
resolved: transaction - move a couple of functions
No functional change, but makes follow-up patch clearer.
David Herrmann [Mon, 27 Jul 2015 18:15:34 +0000 (20:15 +0200)]
terminal: drop unfinished code
This drops the libsystemd-terminal and systemd-consoled code for various
reasons:
* It's been sitting there unfinished for over a year now and won't get
finished any time soon.
* Since its initial creation, several parts need significant rework: The
input handling should be replaced with the now commonly used libinput,
the drm accessors should coordinate the handling of mode-object
hotplugging (including split connectors) with other DRM users, and the
internal library users should be converted to sd-device and friends.
* There is still significant kernel work required before sd-console is
really useful. This includes, but is not limited to, simpledrm and
drmlog.
* The authority daemon is needed before all this code can be used for
real. And this will definitely take a lot more time to get done as
no-one else is currently working on this, but me.
* kdbus maintenance has taken up way more time than I thought and it has
much higher priority. I don't see me spending much time on the
terminal code in the near future.
If anyone intends to hack on this, please feel free to contact me. I'll
gladly help you out with any issues. Once kdbus and authorityd are
finished (whenever that will be..) I'll definitely pick this up again. But
until then, lets reduce compile times and maintenance efforts on this code
and drop it for now.
Tom Gundersen [Wed, 15 Jul 2015 17:22:29 +0000 (19:22 +0200)]
resolved: transaction - move DNS UDP socket creation to the scope
With access to the server when creating the socket, we can connect()
to the server and hence simplify message sending and receiving in
follow-up patches.
Tom Gundersen [Sat, 25 Jul 2015 02:45:26 +0000 (04:45 +0200)]
resolved: transaction - close socket when changing server
Close the socket when changing the server in a transaction, in
order for it to be reopened with the right server when we send
the next packet.
This fixes a regression where we could get stuck with a failing
server.
Tom Gundersen [Sat, 25 Jul 2015 02:38:25 +0000 (04:38 +0200)]
resolved: transaction - don't request PKTINFO for unicast DNS
This was only ever used by LLMNR, so don't request this for unicast DNS packets.
Tom Gundersen [Wed, 15 Jul 2015 16:48:17 +0000 (18:48 +0200)]
resloved: transaction - unify IPv4 and IPv6 sockets
A transaction can only have one socket at a time, so no need to distinguish these.