From: Lennart Poettering Date: Sat, 21 Dec 2013 02:17:29 +0000 (+0100) Subject: bus: always override message destination field with data from kdbus X-Git-Tag: v209~780 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=8e8d37602f33269df0b0d3d93f017d7263b5cea0 bus: always override message destination field with data from kdbus --- diff --git a/src/libsystemd-bus/bus-kernel.c b/src/libsystemd-bus/bus-kernel.c index 5913d4234..e53bc5172 100644 --- a/src/libsystemd-bus/bus-kernel.c +++ b/src/libsystemd-bus/bus-kernel.c @@ -848,14 +848,15 @@ static int bus_kernel_make_message(sd_bus *bus, struct kdbus_msg *k) { m->sender = m->creds.unique_name = m->sender_buffer; } - if (!m->destination) { - if (destination) - m->destination = destination; - else if (k->dst_id != KDBUS_DST_ID_NAME && - k->dst_id != KDBUS_DST_ID_BROADCAST) { - snprintf(m->destination_buffer, sizeof(m->destination_buffer), ":1.%llu", (unsigned long long) k->dst_id); - m->destination = m->destination_buffer; - } + if (destination) + m->destination = destination; + else if (k->dst_id == KDBUS_DST_ID_BROADCAST) + m->destination = NULL; + else if (k->dst_id == KDBUS_DST_ID_NAME) + m->destination = bus->unique_name; /* fill in unique name if the well-known name is missing */ + else { + snprintf(m->destination_buffer, sizeof(m->destination_buffer), ":1.%llu", (unsigned long long) k->dst_id); + m->destination = m->destination_buffer; } /* We take possession of the kmsg struct now */