summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add helper for fnmatch over strvZbigniew Jędrzejewski-Szmek2015-02-16
|
* hwdb: Update database of Bluetooth company identifiersMarcel Holtmann2015-02-16
|
* timesync: Use UINT64_C for OFFSET_1900_1970Cristian Rodríguez2015-02-16
| | | | So it matches what the comment says in both 32 and 64 bit systems.
* update TODOLennart Poettering2015-02-16
|
* build-sys: re-add old symbols for abi compatZbigniew Jędrzejewski-Szmek2015-02-16
| | | | | | | | | | For two releases those exported with version 183 by mistake, and then they were fixed to have version 215 (015419c0df libudev: fix symbol version for udev_queue_flush() and udev_queue_get_fd()). But that breaks ABI compatibility for binaries compiled with udev from before that commit. There most likely very few such binaries, if any, but as a matter of principle we should export the old symbols too, in order to keep full compatibility.
* hwdb: updateLennart Poettering2015-02-16
|
* sd-bus: add missing format attributeCristian Rodríguez2015-02-16
|
* update NEWSLennart Poettering2015-02-16
|
* hwdb: fix syntaxLennart Poettering2015-02-16
|
* sd-bus: make sure we always serialize the reply cookie as 64bit on dbus2, ↵Lennart Poettering2015-02-16
| | | | and 32bit on dbus1
* Revert "Revert "sd-bus: change serialization of kdbus messages to qualify in ↵Lennart Poettering2015-02-16
| | | | | | their entirety as gvariant objects"" This reverts commit 954871d8ba15911d014f76ed2c7a9492953cf39d.
* po: Update German translationChristian Kirbach2015-02-15
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=89154
* hwdb: Microsoft Microsoft 3-Button MouseLukas Märdian2015-02-14
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=89149
* core: make RuntimeDirectory honor SELinux labelsZbigniew Jędrzejewski-Szmek2015-02-14
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=1192726
* bus-proxy: be more verbose if messages cannot be forwardedDavid Herrmann2015-02-14
| | | | | | If we cannot forward messages, include information on the peer and message just like the xml-policy does. This helps debugging such situations and figuring out what exactly is going wrong.
* bootchart: display each CPU utilization/waitWaLyong Cho2015-02-14
|
* network: fix 'LinkLocal' -> 'LinkLocalAddressing' in network filesDavid Herrmann2015-02-14
| | | | | | | | | | | | 'LinkLocal' was renamed to 'LinkLocalAddressing' in: commit 56fd6bf795926409b087bce406ea851ad89f9fe8 Author: Tom Gundersen <teg@jklm.no> Date: Sat Feb 14 00:32:26 2015 +0100 networkd: .network - rename LinkLocal to LinkLocalAddressing ..but apparently the network files were not updated. Fix this.
* bus-proxy: don't fake data we don't haveDavid Herrmann2015-02-14
| | | | | | | | | UDS sockets transmit EUID+EGID only. Don't try to fake data we don't know! Otherwise, this might be used to override user-limits by non-root setuid programs (by faking UID==EUID). Now that sd-bus is fixed to always use EUID even on UDS, we can safely set all other UID/GID fields to INVALID.
* util: use a shared lookup function for string tablesBruno Bottazzini2015-02-14
| | | | | | | | | | | | Macro DEFINE_STRING_TABLE_LOOKUP expands to a new function for each of the almost 120 tables throghout the code. Move the its implementation to a function (guaranteed to never be inlined), and make the macro expand to an inlined function that calls this function. This saves a few kilobytes from the systemd binary (David: - fix coding-style - use 'ssize_t' to fix 32bit to 64bit propagation - use streq_ptr())
* networkd: network - rename ipv6token parserTom Gundersen2015-02-14
| | | | Too generic name.
* networkd: .network - rename LinkLocal to LinkLocalAddressingTom Gundersen2015-02-14
| | | | Makes it a bit less ambiguous.
* man: systemd.network - document IPv6TokenTom Gundersen2015-02-14
|
* sd-rtnl: add missing IFLA_INET6_ADDR_GEN_MODE definitionDjalal Harouni2015-02-14
| | | | | Add missing IFLA_INET6_ADDR_GEN_MODE definition so we can build with kernel headers < 3.17
* TODOTom Gundersen2015-02-14
|
* bus-proxy: ECONNRESET/ENOTCONN can hit us on every step, hence handle it on ↵Lennart Poettering2015-02-13
| | | | every step
* bus-proxy: a few simplificationsLennart Poettering2015-02-13
|
* sd-bus: initialize a few structs at time or declarationLennart Poettering2015-02-13
|
* bus-proxy: close each connection fd only onceLennart Poettering2015-02-13
| | | | | After passing the fds over to the sd_bus object, we should forget them, so that we don't close them a second time when the object goes away.
* bus-proxy: also consider ENOTCONN a clean termination conditionLennart Poettering2015-02-13
| | | | | | Sometimes, when we try to reply to messages we don't check return values. This means we might miss a ECONNRESET, and will get a ENOTCONN on next command. Treat both the same hence.
* exit-on-idle: only exit if actually idleTom Gundersen2015-02-13
| | | | | | | sd_event_wait() returning 0 usually means that it timed out, which means it must have been idle. However, sd_event_wait() may return 0 in case an event was triggered but it turned out there was nothing to do. Make the check for idle explicit to avoid this edge-case.
* bus-proxy: whenever we cannot forward a message, report this back to caller, ↵Lennart Poettering2015-02-13
| | | | | | | | but don't exit Errors like EPERM from the kernel should certainly not be reason to exit. Let's try to be defensive here, and try to continue on most send errors, but possibly tell the sender about it.
* bus-proxy: rename synthetic_reply_return_strv() to ↵Lennart Poettering2015-02-13
| | | | | | | synthetic_reply_method_return_strv() That way it matches more closely the nomenclature of our other success reply calls.
* bus-proxy: minor simplificationsLennart Poettering2015-02-13
|
* sd-bus: export sd_bus_error_set_errnofv()Lennart Poettering2015-02-13
|
* bus-proxy: no need to negate error codes, log_error_errno() already does itLennart Poettering2015-02-13
|
* bus-proxy: tell Coverity we don't care about these return valuesLennart Poettering2015-02-13
|
* bus-proxy: we don't pointlessly abbreviate function namesLennart Poettering2015-02-13
| | | | | | It's fine to abbreviate local variables, but it's not OK to abbreviate function names needlessly. This is not an excercise in writing unreadable code.
* sd-bus: sync kdbus.h (ABI break)Daniel Mack2015-02-13
| | | | | Another slice logic rework in kdbus made KDBUS_ITEM_PAYLOAD_OFF items relative to the message header again. Catch up with that in sd-bus.
* units: turn on --network-veth by default for systemd-nspawn@.serviceLennart Poettering2015-02-13
| | | | | Given the recent improvements in networkd, it's probably the better default now.
* units: fix systemd-networkd.service in containers lacking CAP_NET_ADMINLennart Poettering2015-02-13
|
* hwdb: update name databasesLennart Poettering2015-02-13
|
* build-sys: already bump package version in preparation for next releaseLennart Poettering2015-02-13
| | | | (don't misunderstand this, the release is still out quite a bit...)
* build-sys: bump sonames in preparation for next releaseLennart Poettering2015-02-13
|
* NEWS: add contributors listLennart Poettering2015-02-13
|
* rules: simplify mmc RPMB handlingMartin Pitt2015-02-13
| | | | | | We don't actually want a by-path/ symlink for MMC RPMB devices, so just add them to the blacklist. This will prevent creating wrong by-path links and blkid'ing those.
* rules: Fix by-path of mmc RPMB partitions and don't blkid themMartin Pitt2015-02-13
| | | | | | | | | | | | | | Linux 3.10+ exposes RPMB (Replay Protected Memory Block) partitions of MMC devices [1] ; trying to read them with blkid or other unspecific means will cause kernel buffer I/O errors and timeouts. So don't run blkid on these. Also ensure that /dev/disk/by-path creates proper symlinks and exposes the -rpmb partition separately, instead of letting the "normal" partition symlink point to the rpbm device (this is a race condition). [1] http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=090d25fe224c0 https://launchpad.net/bugs/1333140
* include <poll.h> instead of <sys/poll.h>Thomas Hindoe Paaboel Andersen2015-02-12
| | | | | | include-what-you-use automatically does this and it makes finding unnecessary harder to spot. The only content of poll.h is a include of sys/poll.h so should be harmless.
* Add missing includes in header filesThomas Hindoe Paaboel Andersen2015-02-12
| | | | | This fixes various issues found by globally reordering the include sections of all .c files.
* test-util: remove superfluous constThomas Hindoe Paaboel Andersen2015-02-12
|
* remove unused variableThomas Hindoe Paaboel Andersen2015-02-12
|