1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-04 21:47:31 +03:00

Print kdbus path when opening fails

This makes it easier to debug what is going on.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2014-07-26 14:59:52 -04:00
parent 4aa4d2ae97
commit 8f077bf94e
3 changed files with 20 additions and 6 deletions

View File

@ -290,14 +290,19 @@ static int busname_watch_fd(BusName *n) {
}
static int busname_open_fd(BusName *n) {
_cleanup_free_ char *path = NULL;
const char *mode;
assert(n);
if (n->starter_fd >= 0)
return 0;
n->starter_fd = bus_kernel_open_bus_fd(UNIT(n)->manager->running_as == SYSTEMD_SYSTEM ? "system" : "user");
mode = UNIT(n)->manager->running_as == SYSTEMD_SYSTEM ? "system" : "user";
n->starter_fd = bus_kernel_open_bus_fd(mode, &path);
if (n->starter_fd < 0) {
log_warning_unit(UNIT(n)->id, "Failed to create starter fd: %s", strerror(-n->starter_fd));
log_warning_unit(UNIT(n)->id, "Failed to open %s: %s",
path ?: "kdbus", strerror(-n->starter_fd));
return n->starter_fd;
}

View File

@ -1402,11 +1402,20 @@ static int bus_kernel_translate_policy(const BusNamePolicy *policy, struct kdbus
return 0;
}
int bus_kernel_open_bus_fd(const char *bus) {
int bus_kernel_open_bus_fd(const char *bus, char **path) {
char *p;
int fd;
size_t len;
p = alloca(strlen("/dev/kdbus/") + DECIMAL_STR_MAX(uid_t) + 1 + strlen(bus) + strlen("/bus") + 1);
len = strlen("/dev/kdbus/") + DECIMAL_STR_MAX(uid_t) + 1 + strlen(bus) + strlen("/bus") + 1;
if (path) {
p = malloc(len);
if (!p)
return -ENOMEM;
*path = p;
} else
p = alloca(len);
sprintf(p, "/dev/kdbus/" UID_FMT "-%s/bus", getuid(), bus);
fd = open(p, O_RDWR|O_NOCTTY|O_CLOEXEC);
@ -1549,7 +1558,7 @@ int bus_kernel_create_monitor(const char *bus) {
assert(bus);
fd = bus_kernel_open_bus_fd(bus);
fd = bus_kernel_open_bus_fd(bus, NULL);
if (fd < 0)
return fd;

View File

@ -65,7 +65,7 @@ int bus_kernel_take_fd(sd_bus *b);
int bus_kernel_write_message(sd_bus *bus, sd_bus_message *m, bool hint_sync_call);
int bus_kernel_read_message(sd_bus *bus, bool hint_priority, int64_t priority);
int bus_kernel_open_bus_fd(const char *bus);
int bus_kernel_open_bus_fd(const char *bus, char **path);
int bus_kernel_make_starter(int fd, const char *name, bool activating, bool accept_fd, BusNamePolicy *policy, BusNamePolicyAccess world_policy);
int bus_kernel_create_bus(const char *name, bool world, char **s);