bus-util.c revision 98a4c30ba117bddad3cd0934042721621a328e9a
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2013 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "sd-daemon.h"
#include "sd-event.h"
#include "util.h"
#include "strv.h"
#include "macro.h"
#include "def.h"
#include "path-util.h"
#include "missing.h"
#include "set.h"
#include "unit-name.h"
#include "sd-bus.h"
#include "bus-error.h"
#include "bus-label.h"
#include "bus-message.h"
#include "bus-util.h"
#include "bus-internal.h"
static int name_owner_change_callback(sd_bus *bus, sd_bus_message *m, void *userdata, sd_bus_error *ret_error) {
assert(m);
assert(e);
sd_event_exit(e, 0);
return 1;
}
const char *unique;
int r;
assert(e);
/* We unregister the name here and then wait for the
* NameOwnerChanged signal for this event to arrive before we
* quit. We do this in order to make sure that any queued
* requests are still processed before we really exit. */
if (r < 0)
return r;
"sender='org.freedesktop.DBus',"
"type='signal',"
"interface='org.freedesktop.DBus',"
"member='NameOwnerChanged',"
"path='/org/freedesktop/DBus',"
"arg0='%s',"
"arg1='%s',"
if (r < 0)
return -ENOMEM;
if (r < 0)
return r;
if (r < 0)
return r;
return 0;
}
sd_event *e,
const char *name,
void *userdata) {
bool exiting = false;
int r, code;
assert(e);
for (;;) {
bool idle;
r = sd_event_get_state(e);
if (r < 0)
return r;
if (r == SD_EVENT_FINISHED)
break;
if (check_idle)
else
idle = true;
if (r < 0)
return r;
r = sd_bus_try_close(bus);
if (r == -EBUSY)
continue;
/* Fallback for dbus1 connections: we
* unregister the name and wait for the
* response to come through for it */
if (r == -EOPNOTSUPP) {
/* Inform the service manager that we
* are going down, so that it will
* queue all further start requests,
* instead of assuming we are already
* running. */
sd_notify(false, "STOPPING=1");
if (r < 0)
return r;
exiting = true;
continue;
}
if (r < 0)
return r;
sd_event_exit(e, 0);
break;
}
}
r = sd_event_get_exit_code(e, &code);
if (r < 0)
return r;
return code;
}
int r, has_owner = 0;
assert(c);
r = sd_bus_call_method(c,
"org.freedesktop.DBus",
"/org/freedesktop/dbus",
"org.freedesktop.DBus",
"NameHasOwner",
&rep,
"s",
name);
if (r < 0)
return r;
if (r < 0)
return sd_bus_error_set_errno(error, r);
return has_owner;
}
int r;
assert(m);
if (good_user == UID_INVALID)
return 0;
if (r < 0)
return r;
if (r < 0)
return r;
return sender_uid == good_user;
}
int bus_test_polkit(
int capability,
const char *action,
bool *_challenge,
sd_bus_error *e) {
int r;
/* Tests non-interactively! */
if (r != 0)
return r;
if (r < 0)
return r;
else if (r > 0)
return 1;
#ifdef ENABLE_POLKIT
else {
int authorized = false, challenge = false;
const char *sender;
if (!sender)
return -EBADMSG;
r = sd_bus_call_method(
"org.freedesktop.PolicyKit1",
"org.freedesktop.PolicyKit1.Authority",
"CheckAuthorization",
e,
&reply,
"(sa{sv})sa{ss}us",
0,
0,
"");
if (r < 0) {
/* Treat no PK available as access denied */
return -EACCES;
}
return r;
}
if (r < 0)
return r;
if (r < 0)
return r;
if (authorized)
return 1;
if (_challenge) {
*_challenge = challenge;
return 0;
}
}
#endif
return -EACCES;
}
#ifdef ENABLE_POLKIT
typedef struct AsyncPolkitQuery {
void *userdata;
static void async_polkit_query_free(AsyncPolkitQuery *q) {
if (!q)
return;
sd_bus_slot_unref(q->slot);
free(q);
}
static int async_polkit_callback(sd_bus *bus, sd_bus_message *reply, void *userdata, sd_bus_error *error) {
AsyncPolkitQuery *q = userdata;
int r;
assert(q);
r = sd_bus_message_rewind(q->request, true);
if (r < 0) {
goto finish;
}
return r;
}
#endif
int capability,
const char *action,
bool interactive,
sd_bus_error *error) {
#ifdef ENABLE_POLKIT
AsyncPolkitQuery *q;
const char *sender;
void *userdata;
int c;
#endif
int r;
if (r != 0)
return r;
#ifdef ENABLE_POLKIT
if (q) {
int authorized, challenge;
/* This is the second invocation of this function, and
* there's already a response from polkit, let's
* process it */
const sd_bus_error *e;
/* Copy error from polkit reply */
e = sd_bus_message_get_error(q->reply);
sd_bus_error_copy(error, e);
/* Treat no PK available as access denied */
return -EACCES;
return -sd_bus_error_get_errno(e);
}
if (r >= 0)
if (r < 0)
return r;
if (authorized)
return 1;
if (challenge)
return sd_bus_error_set(error, SD_BUS_ERROR_INTERACTIVE_AUTHORIZATION_REQUIRED, "Interactive authentication required.");
return -EACCES;
}
#endif
if (r < 0)
return r;
else if (r > 0)
return 1;
#ifdef ENABLE_POLKIT
return -EINVAL;
if (!callback)
return -EINVAL;
if (!sender)
return -EBADMSG;
if (c < 0)
return c;
if (c > 0)
interactive = true;
if (r < 0)
return r;
&pk,
"org.freedesktop.PolicyKit1",
"org.freedesktop.PolicyKit1.Authority",
"CheckAuthorization");
if (r < 0)
return r;
pk,
"(sa{sv})sa{ss}us",
0,
!!interactive,
NULL);
if (r < 0)
return r;
if (!q)
return -ENOMEM;
if (r < 0) {
return r;
}
if (r < 0) {
return r;
}
return 0;
#endif
return -EACCES;
}
#ifdef ENABLE_POLKIT
AsyncPolkitQuery *q;
while ((q = hashmap_steal_first(registry)))
#endif
}
int bus_check_peercred(sd_bus *c) {
socklen_t l;
int fd;
assert(c);
fd = sd_bus_get_fd(c);
if (fd < 0)
return fd;
l = sizeof(struct ucred);
return -errno;
if (l != sizeof(struct ucred))
return -E2BIG;
return -EPERM;
return 1;
}
int r;
if (geteuid() != 0)
return sd_bus_open_system(_bus);
/* If we are root and kdbus is not available, then let's talk
* directly to the system instance, instead of going via the
* bus */
#ifdef ENABLE_KDBUS
r = sd_bus_new(&bus);
if (r < 0)
return r;
if (r < 0)
return r;
bus->bus_client = true;
r = sd_bus_start(bus);
if (r >= 0) {
return 0;
}
#endif
r = sd_bus_new(&bus);
if (r < 0)
return r;
if (r < 0)
return r;
r = sd_bus_start(bus);
if (r < 0)
return sd_bus_open_system(_bus);
r = bus_check_peercred(bus);
if (r < 0)
return r;
return 0;
}
const char *e;
int r;
/* Try via kdbus first, and then directly */
#ifdef ENABLE_KDBUS
r = sd_bus_new(&bus);
if (r < 0)
return r;
return -ENOMEM;
bus->bus_client = true;
r = sd_bus_start(bus);
if (r >= 0) {
return 0;
}
#endif
e = secure_getenv("XDG_RUNTIME_DIR");
if (!e)
return sd_bus_open_user(_bus);
ee = bus_address_escape(e);
if (!ee)
return -ENOMEM;
r = sd_bus_new(&bus);
if (r < 0)
return r;
return -ENOMEM;
r = sd_bus_start(bus);
if (r < 0)
return sd_bus_open_user(_bus);
r = bus_check_peercred(bus);
if (r < 0)
return r;
return 0;
}
char type;
const char *contents;
int r;
if (r < 0)
return r;
switch (type) {
case SD_BUS_TYPE_STRING: {
const char *s;
if (r < 0)
return r;
if (!escaped)
return -ENOMEM;
}
return 1;
}
case SD_BUS_TYPE_BOOLEAN: {
int b;
if (r < 0)
return r;
return 1;
}
case SD_BUS_TYPE_UINT64: {
uint64_t u;
if (r < 0)
return r;
/* Yes, heuristics! But we can change this check
* should it turn out to not be sufficient */
char timestamp[FORMAT_TIMESTAMP_MAX], *t;
if (t || all)
char timespan[FORMAT_TIMESPAN_MAX];
} else
return 1;
}
case SD_BUS_TYPE_UINT32: {
uint32_t u;
if (r < 0)
return r;
else
return 1;
}
case SD_BUS_TYPE_INT32: {
int32_t i;
if (r < 0)
return r;
return 1;
}
case SD_BUS_TYPE_DOUBLE: {
double d;
if (r < 0)
return r;
return 1;
}
case SD_BUS_TYPE_ARRAY:
bool first = true;
const char *str;
if (r < 0)
return r;
if (first)
if (!escaped)
return -ENOMEM;
first = false;
}
if (r < 0)
return r;
puts("");
if (r < 0)
return r;
return 1;
const uint8_t *u;
size_t n;
if (r < 0)
return r;
if (all || n > 0) {
unsigned int i;
for (i = 0; i < n; i++)
printf("%02x", u[i]);
puts("");
}
return 1;
uint32_t *u;
size_t n;
if (r < 0)
return r;
if (all || n > 0) {
unsigned int i;
for (i = 0; i < n; i++)
printf("%08x", u[i]);
puts("");
}
return 1;
}
break;
}
return 0;
}
int bus_print_all_properties(sd_bus *bus, const char *dest, const char *path, char **filter, bool all) {
int r;
r = sd_bus_call_method(bus,
dest,
path,
"org.freedesktop.DBus.Properties",
"GetAll",
&error,
&reply,
"s", "");
if (r < 0)
return r;
if (r < 0)
return r;
const char *name;
const char *contents;
if (r < 0)
return r;
if (r < 0)
return r;
if (r < 0)
return r;
if (r < 0)
return r;
if (r == 0) {
if (all)
/* skip what we didn't read */
if (r < 0)
return r;
}
if (r < 0)
return r;
} else {
if (r < 0)
return r;
}
if (r < 0)
return r;
}
if (r < 0)
return r;
if (r < 0)
return r;
return 0;
}
int bus_map_id128(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
sd_id128_t *p = userdata;
const void *v;
size_t n;
int r;
r = sd_bus_message_read_array(m, SD_BUS_TYPE_BYTE, &v, &n);
if (r < 0)
return r;
if (n == 0)
*p = SD_ID128_NULL;
else if (n == 16)
else
return -EINVAL;
return 0;
}
static int map_basic(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
char type;
int r;
if (r < 0)
return r;
switch (type) {
case SD_BUS_TYPE_STRING: {
const char *s;
char **p = userdata;
r = sd_bus_message_read_basic(m, type, &s);
if (r < 0)
break;
if (isempty(s))
break;
r = free_and_strdup(p, s);
break;
}
case SD_BUS_TYPE_ARRAY: {
_cleanup_strv_free_ char **l = NULL;
char ***p = userdata;
r = bus_message_read_strv_extend(m, &l);
if (r < 0)
break;
strv_free(*p);
*p = l;
l = NULL;
break;
}
case SD_BUS_TYPE_BOOLEAN: {
unsigned b;
bool *p = userdata;
r = sd_bus_message_read_basic(m, type, &b);
if (r < 0)
break;
*p = b;
break;
}
case SD_BUS_TYPE_UINT32: {
uint64_t u;
r = sd_bus_message_read_basic(m, type, &u);
if (r < 0)
break;
*p = u;
break;
}
case SD_BUS_TYPE_UINT64: {
uint64_t t;
r = sd_bus_message_read_basic(m, type, &t);
if (r < 0)
break;
*p = t;
break;
}
default:
break;
}
return r;
}
sd_bus_message *m,
const struct bus_properties_map *map,
void *userdata) {
int r;
assert(m);
if (r < 0)
return r;
const struct bus_properties_map *prop;
const char *member;
const char *contents;
void *v;
unsigned i;
if (r < 0)
return r;
break;
}
if (prop) {
if (r < 0)
return r;
if (r < 0)
return r;
else
if (r < 0)
return r;
r = sd_bus_message_exit_container(m);
if (r < 0)
return r;
} else {
r = sd_bus_message_skip(m, "v");
if (r < 0)
return r;
}
r = sd_bus_message_exit_container(m);
if (r < 0)
return r;
}
return sd_bus_message_exit_container(m);
}
sd_bus_message *m,
const struct bus_properties_map *map,
void *userdata) {
const char *member;
int r, invalidated, i;
assert(m);
if (r < 0)
return r;
if (r < 0)
return r;
invalidated = 0;
++invalidated;
break;
}
r = sd_bus_message_exit_container(m);
if (r < 0)
return r;
return invalidated;
}
const char *destination,
const char *path,
const struct bus_properties_map *map,
void *userdata) {
int r;
r = sd_bus_call_method(
bus,
path,
"org.freedesktop.DBus.Properties",
"GetAll",
&error,
&m,
"s", "");
if (r < 0)
return r;
}
int r;
switch (transport) {
case BUS_TRANSPORT_LOCAL:
if (user)
r = sd_bus_default_user(bus);
else
r = sd_bus_default_system(bus);
break;
case BUS_TRANSPORT_REMOTE:
break;
case BUS_TRANSPORT_MACHINE:
break;
default:
assert_not_reached("Hmm, unknown transport type.");
}
return r;
}
int r;
switch (transport) {
case BUS_TRANSPORT_LOCAL:
if (user)
r = bus_open_user_systemd(bus);
else
r = bus_open_system_systemd(bus);
break;
case BUS_TRANSPORT_REMOTE:
break;
case BUS_TRANSPORT_MACHINE:
break;
default:
assert_not_reached("Hmm, unknown transport type.");
}
return r;
}
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
int b = *(bool*) userdata;
}
#if __SIZEOF_SIZE_T__ != 8
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
}
#endif
#if __SIZEOF_LONG__ != 8
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
}
const char *path,
const char *interface,
const char *property,
void *userdata,
sd_bus_error *error) {
}
#endif
int bus_log_parse_error(int r) {
return log_error_errno(r, "Failed to parse bus message: %m");
}
int bus_log_create_error(int r) {
return log_error_errno(r, "Failed to create bus message: %m");
}
assert(u);
return sd_bus_message_read(
"(ssssssouso)",
&u->id,
&u->description,
&u->load_state,
&u->active_state,
&u->sub_state,
&u->following,
&u->unit_path,
&u->job_id,
&u->job_type,
&u->job_path);
}
assert(m);
if (r < 0) {
sd_bus_reply_method_errno(m, r, error);
} else if (sd_bus_error_is_set(error)) {
} else
return r;
log_debug("Failed to process message [type=%s sender=%s path=%s interface=%s member=%s signature=%s]: %s",
bus_error_message(error, r));
return 1;
}
int r;
assert(m);
if (!eq) {
return -EINVAL;
}
eq ++;
if (r < 0)
return bus_log_create_error(r);
double percent;
return -EINVAL;
}
if (r < 0)
return bus_log_create_error(r);
} else {
log_error("CPU quota needs to be in percent.");
return -EINVAL;
}
if (r < 0)
return bus_log_create_error(r);
return 0;
}
if (r < 0)
return bus_log_create_error(r);
if (STR_IN_SET(field,
"CPUAccounting", "MemoryAccounting", "BlockIOAccounting",
"SendSIGHUP", "SendSIGKILL", "WakeSystem", "DefaultDependencies")) {
r = parse_boolean(eq);
if (r < 0) {
return -EINVAL;
}
if (r < 0) {
return -EINVAL;
}
uint64_t u;
r = safe_atou64(eq, &u);
if (r < 0) {
return -EINVAL;
}
else {
if (e) {
rwm = e+1;
} else {
rwm = "";
}
return -EINVAL;
}
}
else {
if (e) {
bandwidth = e+1;
} else {
return -EINVAL;
}
return -EINVAL;
}
if (r < 0) {
return -EINVAL;
}
}
else {
uint64_t u;
if (e) {
weight = e+1;
} else {
return -EINVAL;
}
return -EINVAL;
}
r = safe_atou64(weight, &u);
if (r < 0) {
return -EINVAL;
}
}
} else if (rlimit_from_string(field) >= 0) {
else {
if (r < 0) {
return -EINVAL;
}
}
int32_t i;
r = safe_atoi32(eq, &i);
if (r < 0) {
return -EINVAL;
}
int sig;
if (sig < 0) {
return -EINVAL;
}
usec_t u;
if (r < 0) {
return -EINVAL;
}
} else {
return -EINVAL;
}
if (r < 0)
return bus_log_create_error(r);
return 0;
}
typedef struct BusWaitForJobs {
char *name;
char *result;
static int match_disconnected(sd_bus *bus, sd_bus_message *m, void *userdata, sd_bus_error *error) {
assert(m);
log_error("Warning! D-Bus connection terminated.");
return 0;
}
BusWaitForJobs *d = userdata;
char *found;
int r;
assert(m);
assert(d);
if (r < 0) {
return 0;
}
if (!found)
return 0;
return 0;
}
void bus_wait_for_jobs_free(BusWaitForJobs *d) {
if (!d)
return;
set_free_free(d->jobs);
sd_bus_unref(d->bus);
free(d);
}
int r;
if (!d)
return -ENOMEM;
/* When we are a bus client we match by sender. Direct
* connections OTOH have no initialized sender field, and
* hence we ignore the sender then */
r = sd_bus_add_match(
bus,
&d->slot_job_removed,
bus->bus_client ?
"type='signal',"
"sender='org.freedesktop.systemd1',"
"interface='org.freedesktop.systemd1.Manager',"
"member='JobRemoved',"
"path='/org/freedesktop/systemd1'" :
"type='signal',"
"interface='org.freedesktop.systemd1.Manager',"
"member='JobRemoved',"
"path='/org/freedesktop/systemd1'",
match_job_removed, d);
if (r < 0)
return r;
r = sd_bus_add_match(
bus,
&d->slot_disconnected,
"type='signal',"
"sender='org.freedesktop.DBus.Local',"
"interface='org.freedesktop.DBus.Local',"
"member='Disconnected'",
match_disconnected, d);
if (r < 0)
return r;
*ret = d;
d = NULL;
return 0;
}
int r;
for (;;) {
if (r < 0)
return r;
if (r > 0)
return 0;
if (r < 0)
return r;
}
}
assert(d);
if (!dbus_path)
return -ENOMEM;
return sd_bus_get_property_string(d->bus,
"org.freedesktop.systemd1",
"org.freedesktop.systemd1.Service",
"Result",
NULL,
result);
}
static const struct {
const char *result, *explanation;
} explanations [] = {
{ "resources", "configured resource limit was exceeded" },
{ "timeout", "timeout was exceeded" },
{ "exit-code", "control process exited with error code" },
{ "signal", "fatal signal was delivered to the control process" },
{ "core-dump", "fatal signal was delivered to the control process. Core dumped" },
{ "watchdog", "service failed to send watchdog ping" },
{ "start-limit", "start of the service was attempted too often too quickly" }
};
unsigned i;
for (i = 0; i < ELEMENTSOF(explanations); ++i)
break;
if (i < ELEMENTSOF(explanations))
log_error("Job for %s failed because %s. See \"systemctl status %s\" and \"journalctl -xe\" for details.\n",
else
log_error("Job for %s failed. See \"systemctl status %s\" and \"journalctl -xe\" for details.\n",
/* For some results maybe additional explanation is required */
log_info("To force a start please invoke \"systemctl reset-failed %s\" followed by \"systemctl start %s\" again.",
}
int r = 0;
if (!quiet) {
if (d->name) {
int q;
q = bus_job_get_service_result(d, &result);
if (q < 0)
} else
log_error("Job failed. See \"journalctl -xe\" for details.");
}
}
r = -ECANCELED;
r = -ETIME;
r = -EIO;
r = -ENOEXEC;
r = -EPROTO;
r = -EOPNOTSUPP;
r = -EIO;
return r;
}
int r = 0;
assert(d);
while (!set_isempty(d->jobs)) {
int q;
q = bus_process_wait(d->bus);
if (q < 0)
return log_error_errno(q, "Failed to wait for response: %m");
if (d->result) {
q = check_wait_response(d, quiet);
/* Return the first error as it is most likely to be
* meaningful. */
if (q < 0 && r == 0)
r = q;
}
}
return r;
}
int r;
assert(d);
if (r < 0)
return r;
}
int r;
if (r < 0)
return bus_log_parse_error(r);
if (!quiet) {
else
}
}
if (r < 0)
return bus_log_parse_error(r);
r = sd_bus_message_exit_container(m);
if (r < 0)
return bus_log_parse_error(r);
return 0;
}
/**
* bus_path_encode_unique() - encode unique object path
* @b: bus connection or NULL
* @prefix: object path prefix
* @sender_id: unique-name of client, or NULL
* @external_id: external ID to be chosen by client, or NULL
* @ret_path: storage for encoded object path pointer
*
* Whenever we provide a bus API that allows clients to create and manage
* server-side objects, we need to provide a unique name for these objects. If
* we let the server choose the name, we suffer from a race condition: If a
* client creates an object asynchronously, it cannot destroy that object until
* it received the method reply. It cannot know the name of the new object,
* thus, it cannot destroy it. Furthermore, it enforces a round-trip.
*
* Therefore, many APIs allow the client to choose the unique name for newly
* created objects. There're two problems to solve, though:
* 1) Object names are usually defined via dbus object paths, which are
* usually globally namespaced. Therefore, multiple clients must be able
* to choose unique object names without interference.
* 2) If multiple libraries share the same bus connection, they must be
* able to choose unique object names without interference.
* The first problem is solved easily by prefixing a name with the
* unique-bus-name of a connection. The server side must enforce this and
* reject any other name. The second problem is solved by providing unique
* suffixes from within sd-bus.
*
* This helper allows clients to create unique object-paths. It uses the
* template '/prefix/sender_id/external_id' and returns the new path in
* @ret_path (must be freed by the caller).
* If @sender_id is NULL, the unique-name of @b is used. If @external_id is
* NULL, this function allocates a unique suffix via @b (by requesting a new
* cookie). If both @sender_id and @external_id are given, @b can be passed as
* NULL.
*
* Returns: 0 on success, negative error code on failure.
*/
int bus_path_encode_unique(sd_bus *b, const char *prefix, const char *sender_id, const char *external_id, char **ret_path) {
int r;
if (!sender_id) {
r = sd_bus_get_unique_name(b, &sender_id);
if (r < 0)
return r;
}
if (!external_id) {
}
if (!sender_label)
return -ENOMEM;
if (!external_label)
return -ENOMEM;
if (!p)
return -ENOMEM;
*ret_path = p;
return 0;
}
/**
* bus_path_decode_unique() - decode unique object path
* @path: object path to decode
* @prefix: object path prefix
* @ret_sender: output parameter for sender-id label
* @ret_external: output parameter for external-id label
*
* This does the reverse of bus_path_encode_unique() (see its description for
* details). Both trailing labels, sender-id and external-id, are unescaped and
* returned in the given output parameters (the caller must free them).
*
* Note that this function returns 0 if the path does not match the template
* (see bus_path_encode_unique()), 1 if it matched.
*
* Returns: Negative error code on failure, 0 if the given object path does not
* match the template (return parameters are set to NULL), 1 if it was
* parsed successfully (return parameters contain allocated labels).
*/
int bus_path_decode_unique(const char *path, const char *prefix, char **ret_sender, char **ret_external) {
const char *p, *q;
if (!p) {
*ret_sender = NULL;
*ret_external = NULL;
return 0;
}
q = strchr(p, '/');
if (!q) {
*ret_sender = NULL;
*ret_external = NULL;
return 0;
}
sender = bus_label_unescape_n(p, q - p);
return -ENOMEM;
}
*ret_sender = sender;
*ret_external = external;
return 1;
}