[systemd-commits] 2 commits - TODO src/core

Lennart Poettering lennart at kemper.freedesktop.org
Wed Oct 8 12:35:45 PDT 2014


 TODO            |    7 +++++++
 src/core/main.c |    1 +
 2 files changed, 8 insertions(+)

New commits:
commit 5329ab10ffaf5b4a3fd6ebd9380b1ec09d05cfc8
Author: Mantas MikulÄ—nas <grawity at gmail.com>
Date:   Tue Oct 7 14:55:21 2014 +0300

    core: map the 'rescue' argument to rescue.target
    
    Even though the 'emergency' and 'single' aliases come from sysvinit, the
    lack of 'rescue' is still quite confusing (caught me by surprise for the
    9th time yet) and inconsistent with `systemctl rescue` as well.

diff --git a/src/core/main.c b/src/core/main.c
index 1a62e04..44373cc 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -272,6 +272,7 @@ static int parse_proc_cmdline_item(const char *key, const char *value) {
         static const char * const rlmap[] = {
                 "emergency", SPECIAL_EMERGENCY_TARGET,
                 "-b",        SPECIAL_EMERGENCY_TARGET,
+                "rescue",    SPECIAL_RESCUE_TARGET,
                 "single",    SPECIAL_RESCUE_TARGET,
                 "-s",        SPECIAL_RESCUE_TARGET,
                 "s",         SPECIAL_RESCUE_TARGET,

commit 402696d787d252d6317e36c5be340d47578bb27b
Author: Lennart Poettering <lennart at poettering.net>
Date:   Wed Oct 8 21:32:30 2014 +0200

    Update TODO

diff --git a/TODO b/TODO
index b437166..7d205fa 100644
--- a/TODO
+++ b/TODO
@@ -34,6 +34,13 @@ External:
 
 Features:
 
+* bus-proxy: when passing messages from kdbus, make sure we properly
+  handle the case where a large number of fds is appended that we
+  cannot pass into sendmsg() of the AF_UNIX sokcet (which only accepts
+  253 messages)
+
+* check for validity of ucred fields in bus-proxy, like we do in journald
+
 * busctl: add a pcap writer, using LINKTYPE_DBUS/231
 
 * man: maybe use the word "inspect" rather than "introspect"?



More information about the systemd-commits mailing list