summaryrefslogtreecommitdiff
path: root/TODO
Commit message (Collapse)AuthorAge
* core: use normal library call to query list of current namesLennart Poettering2013-12-03
|
* bus: make sd_bus_request_name() and sd_bus_release_name() behave more like ↵Lennart Poettering2013-12-03
| | | | | | | | | | | | other calls Instead of returning an enum of return codes, make them return error codes like kdbus does internally. Also, document this behaviour so that clients can stick to it. (Also rework bus-control.c to always have to functions for dbus1 vs. kernel implementation of the various calls.)
* catalog: determine language from the filenameZbigniew Jędrzejewski-Szmek2013-12-02
|
* bus: add .busname unit type to implement kdbus-style bus activationLennart Poettering2013-12-02
|
* nspawn: make sure /dev/kdbus in the container is world accessibleLennart Poettering2013-12-02
|
* bus: when replying to an incoming message and the vtable contains the ↵Lennart Poettering2013-12-02
| | | | expected return signature generate an error if the response message doesn't match it
* systemctl: add "systemctl cat"Shawn Landden2013-11-30
|
* bus: do kdbus only if this is enabled on the configure switchLennart Poettering2013-11-30
| | | | | | | | | | | | | | Since we want to retain the ability to break kernel ←→ userspace ABI after the next release, let's not make use by default of kdbus, so that people with future kernels will not suddenly break with current systemd versions. kdbus support is left in all builds but must now be explicitly requested at runtime (for example via setting $DBUS_SESSION_BUS). Via a configure switch the old behaviour can be restored. In fact, we change autogen.sh to do this, so that git builds (which run autogen.sh) get kdbus by default, but tarball builds (which ue the configure defaults) do not get it, and hence this stays out of the distros by default.
* update TODOLennart Poettering2013-11-30
|
* bus: include unique and well known names in credentials objectLennart Poettering2013-11-30
|
* clean up TODOLennart Poettering2013-11-28
|
* man: get rid of shell script example in systemd-socket-proxyd man pageLennart Poettering2013-11-28
|
* TODO: add sd-rtnl itemsTom Gundersen2013-11-27
|
* Revert "socket-proxyd: Add --listener option for listener/destination pairs."Lennart Poettering2013-11-27
| | | | | | | | | | | This reverts commit adcf4c81c58511b67644e17fa743d1729d3c9ccf. We have a better solution for the problem of making two processes run in the same namespace, and --listener is not needed hence and should be dropped. Conflicts: man/systemd-socket-proxyd.xml
* updates for TODO and READMELukasz Skalski2013-11-27
| | | | | | | | | * library support for setns() system call was added to glibc version 2.14 (setns() call is use in src/machine/machinectl.c and src/libsystemd-bus-container.c) * utf8 validation call are already exported (via sd-utf8.c file) - commit - 369c583b3fb3d672ef469d53141e274ec9d2e8a7
* journal: add a test case for flushing messages out of a series of journal ↵Lennart Poettering2013-11-27
| | | | files into a single new one
* tree-wide usage of %m specifier instead of strerror(errno)Daniel Buch2013-11-26
| | | | | | Also for log_error() except where a specific error is specified e.g. errno ? strerror(errno) : "Some user specified message"
* shutdown: during final killing spree also send SIGHUP in addition to SIGTERM ↵Lennart Poettering2013-11-25
| | | | | | to deal with shells This makes shutdown a bit faster if debug-shell.service is enabled.
* socket-proxyd: Add --listener option for listener/destination pairs.David Strauss2013-11-25
|
* Update TODODavid Strauss2013-11-23
|
* build-sys: move more files from core/ to share/ that are generic enoughLennart Poettering2013-11-22
|
* bus: also add error parameter to object find and enumerator callbacksLennart Poettering2013-11-22
| | | | | Just in order to bring things inline with the method and property callbacks.
* bus: restore selinux access control to PID 1 for propertiesLennart Poettering2013-11-21
|
* timer: make timer accuracy configurableLennart Poettering2013-11-21
| | | | And make it default to 1min
* bus: rework message handlers to always take an error argumentLennart Poettering2013-11-21
| | | | | | | | | | | | | | | | | | | | Message handler callbacks can be simplified drastically if the dispatcher automatically replies to method calls if errors are returned. Thus: add an sd_bus_error argument to all message handlers. When we dispatch a message handler and it returns negative or a set sd_bus_error we send this as message error back to the client. This means errors returned by handlers by default are given back to clients instead of rippling all the way up to the event loop, which is desirable to make things robust. As a side-effect we can now easily turn the SELinux checks into normal function calls, since the method call dispatcher will generate the right error replies automatically now. Also, make sure we always pass the error structure to all property and method handlers as last argument to follow the usual style of passing variables for return values as last argument.
* bus: the :no-sender hack is now unnecessary, since the new library doesn't ↵Lennart Poettering2013-11-21
| | | | require this anymore
* bus: let's simplify things by getting rid of unnecessary bus parametersLennart Poettering2013-11-21
|
* bus: add API calls to escape string components of objects pathsLennart Poettering2013-11-21
|
* sd-event: try to move timer wakeups to the same spot within each minuteLennart Poettering2013-11-21
|
* socket: fix segfaultLennart Poettering2013-11-21
|
* core: convert PID 1 to libsystemd-busLennart Poettering2013-11-20
| | | | | | | | | | | | | | | | | | | | | | This patch converts PID 1 to libsystemd-bus and thus drops the dependency on libdbus. The only remaining code using libdbus is a test case that validates our bus marshalling against libdbus' marshalling, and this dependency can be turned off. This patch also adds a couple of things to libsystem-bus, that are necessary to make the port work: - Synthesizing of "Disconnected" messages when bus connections are severed. - Support for attaching multiple vtables for the same interface on the same path. This patch also fixes the SetDefaultTarget() and GetDefaultTarget() bus calls which used an inappropriate signature. As a side effect we will now generate PropertiesChanged messages which carry property contents, rather than just invalidation information.
* Fix RemainAfterExit services keeping a hold on consoleOlivier Brunel2013-11-16
| | | | | | When a service exits succesfully and has RemainAfterExit set, its hold on the console (in m->n_on_console) wasn't released since the unit state didn't change.
* Update TODOZbigniew Jędrzejewski-Szmek2013-11-14
|
* timer: consider (usec_t) -1 an invalid timestampLennart Poettering2013-11-11
|
* bus: we really need to get rid of the :no-sender hackLennart Poettering2013-11-10
| | | | | This is where a hack from PID 1 spilled into the client side. We need to get rid of this as soon as PID 1 is converted to libsystemd-bus.
* man,units: fix installation of systemd-nspawn@.service and add exampleZbigniew Jędrzejewski-Szmek2013-11-09
|
* bus: let magic ":no-sender" pass the validationKay Sievers2013-11-09
|
* localectl: port over to bus_log_create_error()Lennart Poettering2013-11-08
|
* shutdown: unify handling of reboot() syscall a bitLennart Poettering2013-11-08
|
* systemctl: restore ability to directly connect to PID1 from systemctlLennart Poettering2013-11-08
|
* update TODOLennart Poettering2013-11-08
|
* update TODOLennart Poettering2013-11-07
|
* update TODOLennart Poettering2013-11-07
|
* test: remove duplicated codeRonny Chevalier2013-11-07
|
* socket-proxyd: The proxy can now accept multiple sockets (but only to one ↵David Strauss2013-11-07
| | | | remote host).
* update TODOLennart Poettering2013-11-05
|
* update TODOLennart Poettering2013-11-05
|
* update TODOLennart Poettering2013-11-05
|
* update TODOLennart Poettering2013-11-05
|
* zsh-completion: add systemd-runRonny Chevalier2013-10-30
|