Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-12 | bus: introduce concept of a "default" event loop per-thread and make use of ↵ | Lennart Poettering | |
it everywhere Try to emphasize a bit that there should be a mapping between event loops and threads, hence introduce a logic that there's one "default" event loop for each thread, that can be queried via "sd_event_default()". | |||
2013-11-12 | test: fix minor memory leak in test-event | Lennart Poettering | |
2013-11-12 | bus: rename sd_bus_send_with_reply_and_block() to sd_bus_call() | Lennart Poettering | |
The call is one of the most important ones we expose, where we place major emphasis on. We should make sure to give it a short, memorable name. | |||
2013-11-11 | bus: add APIs for adding iovecs to messages as string or arrays | Lennart Poettering | |
2013-11-10 | bus: we really need to get rid of the :no-sender hack | Lennart Poettering | |
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. | |||
2013-11-10 | bus: actually export sd_utf8_is_valid() and sd_ascii_is_valid() | Lennart Poettering | |
2013-11-10 | bus: use ENXIO as error condition when trying to exit a container when we ↵ | Lennart Poettering | |
are not in any So far we used ENXIO whenever the user tried to read something from a function that didn't carry the right type, and hence use the same error here to indicate that what the user expected and what was in the message didn't match up. | |||
2013-11-09 | bus: fix build with old glibc | Zbigniew Jędrzejewski-Szmek | |
2013-11-09 | systemctl: make sure daemon-reload returns success | Zbigniew Jędrzejewski-Szmek | |
Also change sd_bus_message_exit_container to return -ENOENT when not in a container, to make it easier to distinguish different errors. | |||
2013-11-09 | bus: let magic ":no-sender" pass the validation | Kay Sievers | |
2013-11-08 | bus: allow queuing more local msgs | Lennart Poettering | |
When issuing a synchronous "systemctl daemon-reload" requests this will send out a tonload of UnitRemoved+UnitNew signals, that we will queue locally. When we wait for the message reply, we should be able to queue those, hence bump the limits on locally queuing messages. | |||
2013-11-08 | Remove dead code and unexport some calls | Lennart Poettering | |
"make check-api-unused" informs us about code that is not used anymore or that is exported but only used internally. Fix these all over the place. | |||
2013-11-08 | systemctl: restore ability to directly connect to PID1 from systemctl | Lennart Poettering | |
2013-11-08 | clients: add missing command line arguments | Lennart Poettering | |
2013-11-08 | systemctl: port to libsystemd-bus | Marc-Antoine Perennou | |
2013-11-07 | clients: try to follow roughly the same order in --help texts for common options | Lennart Poettering | |
2013-11-07 | bus: log message parsing errors everywhere with a generalized ↵ | Lennart Poettering | |
bus_log_parse_error() | |||
2013-11-07 | bus: add APIs to easily query string and strv properties | Lennart Poettering | |
2013-11-07 | bus: mark sd_bus_message_at_end public | Marc-Antoine Perennou | |
2013-11-07 | bus: fix bus_print_property with strv | Marc-Antoine Perennou | |
2013-11-07 | bus: bus_message_read_strv_extend() should return 1 on success | Lennart Poettering | |
Like all other message read calls bus_message_read_strv_extend() needs to return 1 on sucess, and 0 on end of array. | |||
2013-11-07 | bus: fix output of bus_message_dump() | Lennart Poettering | |
2013-11-07 | bus: allow reading empty arrays with sd_bus_message_read_array() | Lennart Poettering | |
2013-11-07 | bus: also check for NULL when appending trivial types | Lennart Poettering | |
2013-11-07 | bus: message_append_basic() - allow string == NULL | Kay Sievers | |
2013-11-07 | bus: make bus_print_all_properties work for non machinectl cases | Simon Peeters | |
add a destination parameter and skip properties we can't read | |||
2013-11-07 | bus: indicate in .pc file that we need libsystemd-id128 definitions | Lennart Poettering | |
2013-11-07 | build-sys: add .pc file for libsystemd-bus | Lennart Poettering | |
2013-11-07 | build-sys: merge sd-event into sd-bus | Lennart Poettering | |
The sd-event APIs should be available only as part of libsystemd-bus so that the utility calls are not linked into each independently and we can minimize the number of libraries we have. | |||
2013-11-07 | utf8: export utf8 validation functions as part of sd-bus | Lennart Poettering | |
To write useful bus code clients need to validate utf8 frequently since the bus reacts allergic to it. Since glibc does not provide any calls for this, let's provide it as part of libsystemd-bus. | |||
2013-11-07 | consistently use "int" when retrieving "bool" from bus messages | Kay Sievers | |
2013-11-06 | bus: add forgotten _public_ | Zbigniew Jędrzejewski-Szmek | |
2013-11-06 | pam_systemd: dup the fd received from logind | Zbigniew Jędrzejewski-Szmek | |
Otherwise sd_bus_message cleanup would close it. | |||
2013-11-07 | event: make sure we keep a reference to all events we dispatch while we do so. | Lennart Poettering | |
2013-11-06 | bus: add public libsystemd-event | Zbigniew Jędrzejewski-Szmek | |
2013-11-06 | bus: export libsystemd-bus as a public library | Zbigniew Jędrzejewski-Szmek | |
Old static libsystemd-bus.la becomes libsystemd-bus-internal.la. memfd functions are also exported in the same library. (Best viewed with --color-words -U0). | |||
2013-11-06 | clients: unify how we invoke getopt_long() | Lennart Poettering | |
Among other things this makes sure we always expose a --version command and show it in the help texts. | |||
2013-11-06 | busctl: port over to use bus_open_transport() | Lennart Poettering | |
2013-11-06 | bus: handle serialization of NULL strings | Lennart Poettering | |
Instead of simply crashing be somewhat nicer and serialize a NULL string into the empty string and generate an error on signature and object path strings. | |||
2013-11-06 | bus: test-bus-marshal - make dbus-1 optional | Kay Sievers | |
2013-11-05 | bus: never report nodes as children that do not have the right prefix | Lennart Poettering | |
2013-11-05 | bus: add sd_bus_get_current() bus call to determine message that is ↵ | Lennart Poettering | |
currently being dispatched | |||
2013-11-05 | bus: add new bus API call sd_bus_message_at_end() | Lennart Poettering | |
This may be used to determine whether we are at the end of a container ot the entire message. | |||
2013-11-05 | bus: make use of assert_return() in all API calls that don't use it yet | Lennart Poettering | |
2013-11-05 | bus: add sd_bus_message_read_strv() | Marc-Antoine Perennou | |
It will be useful to have that in the public API. | |||
2013-11-05 | bus: fix deserialization of polkit response | Lennart Poettering | |
2013-11-05 | bus: support entering containers without specifying the type | Lennart Poettering | |
On request om Tom Gundersen... | |||
2013-11-05 | bus: update bus_map_all_properties() | Kay Sievers | |
2013-11-05 | bus: add sd_bus_message_skip() to skip over multiple fields | Lennart Poettering | |
2013-11-05 | bus: allow that if the destination pointer in sd_bus_message_read_basic() is ↵ | Lennart Poettering | |
NULL we skip over a field |