summaryrefslogtreecommitdiffstats
path: root/.gitattributes (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-02-11man: fix typoTorstein Husebø1-1/+1
2015-02-11network-internal: fix inverted matchingTom Gundersen1-4/+4
This fixes the test-suite again.
2015-02-11networkd: fdb - fix const warningTom Gundersen3-4/+3
2015-02-11networkd: don't do exit-on-idle if there is something wrong with the dbus ↵Tom Gundersen1-7/+12
connection Just fall back to plain old event loop in this (highly unlikely) case. In the glorious future when kdbus is upstream we can of course drop all this.
2015-02-11sysv-generator: Skip init scripts for existing native servicesMartin Pitt2-1/+19
This avoids taking the SysV init script enablement state into account if we have native units. Otherwise systemctl disable on native unit would not be respected in the presence of an enabled SysV script. Also, there's no need to do all the parsing and creation of service files if we already have a native systemd unit for the processed SysV init script.
2015-02-11Update TODOLennart Poettering1-0/+2
2015-02-11networkd DHCPv4 logging endian fixPaul Martin1-5/+7
On Tue, Feb 10, 2015 at 08:10:43PM +0100, Lennart Poettering wrote: > Hmm, I think it would be nicer to use be32toh() here instead, since it > ensures the macro is (to a limited degree) typesafe. > > Any chance you could rework that? From: Paul Martin <paul.martin@codethink.co.uk> Date: Wed, 11 Feb 2015 11:47:16 +0000 Subject: [PATCH] networkd dhcpv4 logging endian fix On a big-endian host, systemd-networkd prints out IPv4 network addresses byte reversed: Feb 10 16:43:32 hostname systemd-networkd[151]: eth0 : DHCPv4 address 158.1.24.10/16 via 1.1.24.10 The address obtained is 10.24.1.158/16 and the route is 10.24.0.0/16 dev eth0 src 10.24.1.187 The macro ADDRESS_FMT_VAL() unpacks a "struct in_addr" in a little-endian specific manner. This patch forces the passed address into host order, then unpacks it. On an x86 later than i486, compiled with -O2, the only extra overhead is a single bswap instruction.
2015-02-11man: boilerplate unificationZbigniew Jędrzejewski-Szmek54-257/+219
2015-02-11man: fix reference to glob manpageZbigniew Jędrzejewski-Szmek1-3/+3
2015-02-11man: add systemd.generator(7)Zbigniew Jędrzejewski-Szmek3-6/+359
This is largely based on http://www.freedesktop.org/wiki/Software/systemd/Generators/, and obsoletes that page. It seems that we do a much better job of keeping man pages up-to-date compared to wiki pages. Man pages are also easier to find for users. https://bugs.freedesktop.org/show_bug.cgi?id=89048
2015-02-10TODOTom Gundersen1-2/+0
2015-02-10net: support globbing and disjunction in Match logicTom Gundersen10-56/+139
Match{Name,OrginalName,Type,Driver,Path} can now take a space-separated glob of matches.
2015-02-10networkd: fdb - refactor a bitTom Gundersen3-14/+16
Pass around Link objcets rather than FdbEntry objects. The link objects have an up-to-date ifname we can use for logging. match_name sholud _never_ be used for anything except matching. Firstly, it may be unset (usually is), and secondly it may not be up-to-date.
2015-02-10networkd: bus - expose MatchMACTom Gundersen1-1/+38
2015-02-10man: sd_bus_path_encode - fix order of argumentsTom Gundersen1-1/+1
2015-02-10networkd: network-bus - use sd_bus_path_{en,de}codeTom Gundersen1-13/+8
2015-02-10CODING_STYLE: elaborate on O_CLOEXEC a bitLennart Poettering1-1/+7
2015-02-10tree-wide: Always use recvmsg with MSG_CMSG_CLOEXECCristian Rodríguez9-10/+10
2015-02-10test-lldp: fix minor OOMLennart Poettering1-3/+6
2015-02-10test-lldp: initialize structs when we define themLennart Poettering1-3/+3
2015-02-10test-lldp: use strndup() where possibleLennart Poettering1-6/+3
2015-02-10libsystemd-network: Avoid potential NULL dereference in test-lldpPhilippe De Swert1-0/+1
As a malloc0 could fail, doing a strncpy without checking could cause issues. Adding an assert should be good enough and in line with other similar routines in the code. Found with Coverity Fixes: CID#1261402
2015-02-10update TODOLennart Poettering1-0/+14
2015-02-10bus-proxyd: initialize ioctl structure only onceLennart Poettering1-3/+4
2015-02-10.gitignore: add systemd-pullVincent Batts1-0/+1
2015-02-10journald: don't specify inline in local functionsLennart Poettering1-1/+2
Leave it to the compiler to figure out whether it shall inline stuff or not. Only place where using static inline is OK to use is in in header files, really.
2015-02-10shared: untabifyLennart Poettering1-1/+1
2015-02-10logind: tell Coverity that we knowingly ignore mkdir()'s return valueLennart Poettering1-1/+1
2015-02-10update TODOLennart Poettering1-0/+7
2015-02-10keymap: Add microphone mute keymap for several HP laptopsHui Wang1-0/+8
On these several HP laptops, the microphone mute hotkey is "Fn+F8" and the scancode for this hotkey is 0x81, but this scancode was mapped to fn_esc in the HP generic keymap section. To fix this problem, we add a machine specific keymap section to add the correct keymap rule. BugLink: https://bugs.launchpad.net/bugs/1409721 BugLink: https://bugs.launchpad.net/bugs/1334968 Signed-off-by: Hui Wang <hui.wang@canonical.com>
2015-02-09networkd: link_object_find - don't accept invalid inputTom Gundersen1-1/+2
Reported by Zbigniew.
2015-02-09networkd: support route scopesTom Gundersen4-0/+54
For now we only support the hardcoded values RT_SCOPE_{UNIVERSE,LOCAL,HOST}, and not numerical values or values from /etc/iproute2/rt_scopes. This addresses https://bugs.freedesktop.org/show_bug.cgi?id=88508.
2015-02-09treewide: correct typos and use consistent "MAC" spellingTorstein Husebø7-8/+8
2015-02-09networkd: bus - switch to properly escaped object pathsTom Gundersen1-2/+13
2015-02-09networkd: add support for IPv6 tokensTom Gundersen4-19/+77
This allows the admin to set the host-specific part of IPv6 addresses, but still receive the prefix via SLAAC. .network file snippet: [Network] IPv6Token=::12 gives: $ ip token token ::12 dev eth0 This closes https://bugs.freedesktop.org/show_bug.cgi?id=81177.
2015-02-09networkd: generalize IPv4LL to LinkLocalTom Gundersen9-11/+96
This allows both IPv4 and IPv6 link-local addresses to be enabled or disabled. By default we still enable IPv6LL and disable IPv4LL. The old config option is kept for backwards compatibility, but removed from the documentation.
2015-02-09sd-rtnl: fix typesystem for IFLA_AF_SPECTom Gundersen1-8/+11
Got this one wrong, it is not a union, just a nested container.
2015-02-09language fallback: it_CH (Italian, Swiss) -> it_IT (Italian, Italy)Daniele Medri1-0/+1
2015-02-08networkd: add basic org.freedesktop.network1.Network interfaceTom Gundersen4-1/+143
2015-02-08networkd: add network_get_by_nameTom Gundersen3-2/+51
2015-02-08build-sys: properly enable the networkd dbus activationTom Gundersen1-0/+6
2015-02-08sd-rtnl: add support for IFLA_INET6_*Tom Gundersen1-1/+27
2015-02-08sd-rtnl: extend type system to allow address-family to decide the union membersTom Gundersen5-24/+172
So far we only supported selecting them by sibling attributes. (This stuff is all a bit crazy, but there seems to be no other way...)
2015-02-08networkd: use valid bus pathsMantas Mikulėnas1-2/+3
Object path components must start with [A-Za-z_] (AFAIK). Also the value of 'p' is undefined if asprintf fails. Compare to user_bus_path() in src/login/logind-user-dbus.c:281.
2015-02-08sd-rtnl: don't treat 0-length messages speciallyTom Gundersen1-4/+0
Still parse the CMSG data, and most importantly make sure we drop the message when peeking.
2015-02-07sysctl: consider --prefix while parsing the filesUmut Tezduyar Lindskog1-16/+14
not while applying the parsed sysctl values. Otherwise info "Overwriting earlier assignment of %s in file %s" is visible many times even though the given --prefix doesn't try to set the overridden value. This also optimizes the startup tiny bit since we have udev rules running on network devices and setting sysctl through the rules.
2015-02-07Add Silesian and Kashubian to language fallback mapPiotr Drąg1-0/+2
Silesian and Kashubian speakers would prefer to fall back to Polish (pl) translations instead of English (C). https://bugs.freedesktop.org/show_bug.cgi?id=89021
2015-02-07bus-proxyd: fix 'ListQueuedOwners' callLukasz Skalski1-0/+1
Set proper kdbus_cmd_list object size, otherwise: dbus-send --system --dest=org.freedesktop.DBus --type=method_call \ print-reply / org.freedesktop.DBus.ListQueuedOwners string:org.freedesktop.systemd1 Error org.freedesktop.DBus.Error.InvalidArgs: Invalid argument
2015-02-06localed: add LANGUAGE= fallback when LANG= is specifiedZbigniew Jędrzejewski-Szmek2-10/+70
For the entries listed in the first column of language-fallback-map, the entry from the second column will be used for LANGUAGE=, if LANGUAGE= is not explicitly specified. https://bugzilla.redhat.com/show_bug.cgi?id=624158