[lib-fix] Fixed message handling
[platform/upstream/dbus.git] / dbus / dbus-transport-kdbus.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-transport-kdbus.c  kdbus subclasses of DBusTransport
3  *
4  * Copyright (C) 2002, 2003, 2004, 2006  Red Hat Inc
5  * Copyright (C) 2013  Samsung Electronics
6  *
7  * Licensed under the Academic Free License version 2.1
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version and under the terms of the GNU
13  * Lesser General Public License as published by the
14  * Free Software Foundation; either version 2.1 of the License, or (at
15  * your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
25  *
26  */
27 #include "dbus-transport.h"
28 #include "dbus-transport-kdbus.h"
29 #include "dbus-transport-protected.h"
30 #include "dbus-connection-internal.h"
31 #include "kdbus.h"
32 #include "dbus-watch.h"
33 #include "dbus-errors.h"
34 #include "dbus-bus.h"
35 #include "kdbus-common.h"
36 #include <linux/types.h>
37 #include <fcntl.h>
38 #include <errno.h>
39 #include <fcntl.h>
40 #include <sys/ioctl.h>
41 #include <stdio.h>
42 #include <string.h>
43 #include <stdlib.h>
44 #include <unistd.h>
45 #include <sys/mman.h>
46 #include <limits.h>
47 #include <sys/stat.h>
48
49 /**
50  * @defgroup DBusTransportKdbus DBusTransport implementations for kdbus
51  * @ingroup  DBusInternals
52  * @brief Implementation details of DBusTransport on kdbus
53  *
54  * @{
55  */
56
57 /** Size of the memory area for received non-memfd messages. */
58 #define RECEIVE_POOL_SIZE (10 * 1024LU * 1024LU)
59
60 /** Over this memfd is used to send (if it is not broadcast). */
61 #define MEMFD_SIZE_THRESHOLD (2 * 1024 * 1024LU)
62
63 /** Define max bytes read or written in one iteration.
64 * This is to avoid blocking on reading or writing for too long. It is checked after each message is sent or received,
65 * so if message is bigger than MAX_BYTES_PER_ITERATION it will be handled in one iteration, but sending/writing
66 * will break after that message.
67 **/
68 #define MAX_BYTES_PER_ITERATION 16384
69
70 #if (MEMFD_SIZE_THRESHOLD > KDBUS_MSG_MAX_PAYLOAD_VEC_SIZE)
71   #error  Memfd size threshold higher than max kdbus message payload vector size
72 #endif
73
74 /** Enables verbosing more information about kdbus message.
75  *  Works only if DBUS_VERBOSE=1 is used.
76  */
77 #define KDBUS_MSG_DECODE_DEBUG 0
78
79 #define ITER_APPEND_STR(string) \
80 if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &string))   \
81 { \
82         ret_size = -1;  \
83         goto out;  \
84 }\
85
86 #define MSG_ITEM_BUILD_VEC(data, datasize)                                    \
87         item->type = KDBUS_ITEM_PAYLOAD_VEC;                                    \
88         item->size = KDBUS_ITEM_HEADER_SIZE + sizeof(struct kdbus_vec);         \
89         item->vec.address = (unsigned long) data;                               \
90         item->vec.size = datasize;
91
92 #define KDBUS_PART_FOREACH(part, head, first)                           \
93         for (part = (head)->first;                                      \
94              (uint8_t *)(part) < (uint8_t *)(head) + (head)->size;      \
95              part = KDBUS_PART_NEXT(part))
96
97 /**
98  * Opaque object representing a transport.
99  */
100 typedef struct DBusTransportKdbus DBusTransportKdbus;
101
102 /**
103  * Implementation details of DBusTransportKdbus. All members are private.
104  */
105 struct DBusTransportKdbus
106 {
107   DBusTransport base;                   /**< Parent instance */
108   int fd;                               /**< File descriptor. */
109   DBusWatch *read_watch;                /**< Watch for readability. */
110   DBusWatch *write_watch;               /**< Watch for writability. */
111
112   int max_bytes_read_per_iteration;     /**< To avoid blocking too long. */
113   int max_bytes_written_per_iteration;  /**< To avoid blocking too long. */
114
115   void* kdbus_mmap_ptr;                 /**< Mapped memory where kdbus (kernel) writes
116                                          *   messages incoming to us.
117                                          */
118   int memfd;                            /**< File descriptor to special 
119                                          *   memory pool for bulk data
120                                          *   transfer. Retrieved from 
121                                          *   Kdbus kernel module. 
122                                          */
123   __u64 bloom_size;                                             /**< bloom filter field size */
124   char* sender;                         /**< unique name of the sender */
125 };
126
127 /**
128  *  Gets size in bytes of bloom filter field.
129  *  This size is got from the bus during connection procedure.
130  *  @param transport transport
131  *  @returns size of bloom
132  */
133 __u64 dbus_transport_get_bloom_size(DBusTransport* transport)
134 {
135   return ((DBusTransportKdbus*)transport)->bloom_size;
136 }
137
138 /**
139  *  Gets pointer to the memory pool, wher received messages are
140  *  placed and some ioctls return their info
141  *  @param transport transport
142  *  @returns pointer to the pool
143  */
144 void* dbus_transport_get_pool_pointer(DBusTransport* transport)
145 {
146   return ((DBusTransportKdbus*)transport)->kdbus_mmap_ptr;
147 }
148
149 /**
150  * Puts locally generated message into received messages queue
151  * @param message message that will be added
152  * @param connection connection to which message will be added
153  * @returns TRUE on success, FALSE on memory allocation error
154  */
155 static dbus_bool_t add_message_to_received(DBusMessage *message, DBusConnection* connection)
156 {
157         DBusList *message_link;
158
159         message_link = _dbus_list_alloc_link (message);
160         if (message_link == NULL)
161         {
162                 dbus_message_unref (message);
163                 return FALSE;
164         }
165
166         _dbus_connection_queue_synthesized_message_link(connection, message_link);
167
168         return TRUE;
169 }
170
171 /**
172  * Generates local error message as a reply to message given as parameter
173  * and adds generated error message to received messages queue.
174  * @param error_type type of error, preferably DBUS_ERROR_(...)
175  * @param template Template of error description. It can has formatting
176  *        characters to print object string into it. Can be NULL.
177  * @param object String to print into error description. Can be NULL.
178  *                If object is not NULL while template is NULL, the object string
179  *                will be the only error description.
180  * @param message Message for which the error reply is generated.
181  * @param connection The connection.
182  * @returns 0 on success, otherwise -1
183  */
184 static int reply_with_error(char* error_type, const char* template, const char* object, DBusMessage *message, DBusConnection* connection)
185 {
186         DBusMessage *errMessage;
187         char* error_msg = "";
188
189         if(template)
190         {
191                 error_msg = alloca(strlen(template) + strlen(object));
192                 sprintf(error_msg, template, object);
193         }
194         else if(object)
195                 error_msg = (char*)object;
196
197         errMessage = generate_local_error_message(dbus_message_get_serial(message), error_type, error_msg);
198         if(errMessage == NULL)
199                 return -1;
200         if (add_message_to_received(errMessage, connection))
201                 return 0;
202
203         return -1;
204 }
205
206 /**
207  *  Generates reply to the message given as a parameter with one item in the reply body
208  *  and adds generated reply message to received messages queue.
209  *  @param message The message we are replying to.
210  *  @param data_type Type of data sent in the reply.Use DBUS_TYPE_(...)
211  *  @param pData Address of data sent in the reply.
212  *  @param connection The connection
213  *  @returns 0 on success, otherwise -1
214  */
215 static int reply_1_data(DBusMessage *message, int data_type, void* pData, DBusConnection* connection)
216 {
217         DBusMessageIter args;
218         DBusMessage *reply;
219
220         reply = dbus_message_new_method_return(message);
221         if(reply == NULL)
222                 return -1;
223         dbus_message_set_sender(reply, DBUS_SERVICE_DBUS);
224     dbus_message_iter_init_append(reply, &args);
225     if (!dbus_message_iter_append_basic(&args, data_type, pData))
226     {
227         dbus_message_unref(reply);
228         return -1;
229     }
230     if(add_message_to_received(reply, connection))
231         return 0;
232
233     return -1;
234 }
235
236 /*
237 static int reply_ack(DBusMessage *message, DBusConnection* connection)
238 {
239         DBusMessage *reply;
240
241         reply = dbus_message_new_method_return(message);
242         if(reply == NULL)
243                 return -1;
244     if(add_message_to_received(reply, connection))
245         return 0;
246     return -1;
247 }*/
248
249 /**
250  * Retrieves file descriptor to memory pool from kdbus module and stores
251  * it in kdbus_transport->memfd. It is then used to send large message.
252  * Triggered when message payload is over MEMFD_SIZE_THRESHOLD
253  * @param kdbus_transport DBusTransportKdbus transport structure
254  * @returns 0 on success, otherwise -1
255  */
256 static int kdbus_init_memfd(DBusTransportKdbus* kdbus_transport)
257 {
258         int memfd;
259         
260                 if (ioctl(kdbus_transport->fd, KDBUS_CMD_MEMFD_NEW, &memfd) < 0) {
261                         _dbus_verbose("KDBUS_CMD_MEMFD_NEW failed: \n");
262                         return -1;
263                 }
264
265                 kdbus_transport->memfd = memfd;
266                 _dbus_verbose("kdbus_init_memfd: %d!!\n", kdbus_transport->memfd);
267         return 0;
268 }
269
270 /**
271  * Allocates and initializes kdbus message structure.
272  * @param name Well-known name or NULL. If NULL, dst_id must be supplied.
273  * @param dst_id Numeric id of recipient. Ignored if name is not NULL.
274  * @param body_size Size of message body (May be 0).
275  * @param use_memfd Flag to build memfd message.
276  * @param fds_count Number of file descriptors sent in the message.
277  * @param transport transport
278  * @returns initialized kdbus message or NULL if malloc failed
279  */
280 static struct kdbus_msg* kdbus_init_msg(const char* name, __u64 dst_id, uint64_t body_size, dbus_bool_t use_memfd, int fds_count, DBusTransportKdbus *transport)
281 {
282     struct kdbus_msg* msg;
283     uint64_t msg_size;
284
285     msg_size = sizeof(struct kdbus_msg);
286
287     if(use_memfd == TRUE)  // bulk data - memfd
288         msg_size += KDBUS_ITEM_SIZE(sizeof(struct kdbus_memfd));
289     else
290       {
291         msg_size += KDBUS_ITEM_SIZE(sizeof(struct kdbus_vec));  //header is a must
292         while(body_size > KDBUS_MSG_MAX_PAYLOAD_VEC_SIZE)
293           {
294             msg_size += KDBUS_ITEM_SIZE(sizeof(struct kdbus_vec));
295             body_size -= KDBUS_MSG_MAX_PAYLOAD_VEC_SIZE;
296           }
297         if(body_size)
298           msg_size += KDBUS_ITEM_SIZE(sizeof(struct kdbus_vec));
299       }
300
301     if(fds_count)
302         msg_size += KDBUS_ITEM_SIZE(sizeof(int)*fds_count);
303
304     if (name)
305         msg_size += KDBUS_ITEM_SIZE(strlen(name) + 1);
306     else if (dst_id == KDBUS_DST_ID_BROADCAST)
307         msg_size += KDBUS_ITEM_HEADER_SIZE + transport->bloom_size;
308
309     msg = malloc(msg_size);
310     if (!msg)
311     {
312         _dbus_verbose("Error allocating memory for: %s,%s\n", _dbus_strerror (errno), _dbus_error_from_errno (errno));
313                 return NULL;
314     }
315
316     memset(msg, 0, msg_size);
317     msg->size = msg_size;
318     msg->payload_type = KDBUS_PAYLOAD_DBUS;
319     msg->dst_id = name ? 0 : dst_id;
320     msg->src_id = strtoull(dbus_bus_get_unique_name(transport->base.connection), NULL , 10);
321
322     return msg;
323 }
324
325 /**
326  * Sends DBus message using kdbus.
327  * Handles broadcasts and unicast messages, and passing of Unix fds.
328  * Also can locally generate error replies on some error returned by kernel.
329  *
330  * TODO refactor to be more compact - maybe we can send header always as a payload vector
331  *  and only message body as memfd if needed.
332  *
333  * @param transport Transport.
334  * @param message DBus message to be sent
335  * @param destination Destination of the message.
336  * @returns bytes sent or -1 if sending failed
337  */
338 static int kdbus_write_msg(DBusTransportKdbus *transport, DBusMessage *message, const char* destination)
339 {
340   struct kdbus_msg *msg;
341   struct kdbus_item *item;
342   uint64_t dst_id = KDBUS_DST_ID_BROADCAST;
343   const DBusString *header;
344   const DBusString *body;
345   uint64_t ret_size = 0;
346   uint64_t body_size = 0;
347   uint64_t header_size = 0;
348   dbus_bool_t use_memfd = FALSE;
349   const int *unix_fds;
350   unsigned fds_count;
351   dbus_bool_t autostart;
352
353   // determine destination and destination id
354   if(destination)
355     {
356       dst_id = KDBUS_DST_ID_NAME;
357       if((destination[0] == ':') && (destination[1] == '1') && (destination[2] == '.'))  /* if name starts with ":1." it is a unique name and should be send as number */
358         {
359           dst_id = strtoull(&destination[3], NULL, 10);
360           destination = NULL;
361         }
362     }
363
364   _dbus_message_get_network_data (message, &header, &body);
365   header_size = _dbus_string_get_length(header);
366   body_size = _dbus_string_get_length(body);
367   ret_size = header_size + body_size;
368
369   // check whether we can and should use memfd
370   if((dst_id != KDBUS_DST_ID_BROADCAST) && (ret_size > MEMFD_SIZE_THRESHOLD))
371     {
372       use_memfd = TRUE;
373       kdbus_init_memfd(transport);
374     }
375
376   _dbus_message_get_unix_fds(message, &unix_fds, &fds_count);
377
378   // init basic message fields
379   msg = kdbus_init_msg(destination, dst_id, body_size, use_memfd, fds_count, transport);
380   msg->cookie = dbus_message_get_serial(message);
381   autostart = dbus_message_get_auto_start (message);
382   if(!autostart)
383     msg->flags |= KDBUS_MSG_FLAGS_NO_AUTO_START;
384
385   // build message contents
386   item = msg->items;
387
388   if(use_memfd)
389     {
390       char *buf;
391
392       if(ioctl(transport->memfd, KDBUS_CMD_MEMFD_SEAL_SET, 0) < 0)
393         {
394           _dbus_verbose("memfd sealing failed: \n");
395           goto out;
396         }
397
398       buf = mmap(NULL, ret_size, PROT_WRITE, MAP_SHARED, transport->memfd, 0);
399       if (buf == MAP_FAILED)
400         {
401           _dbus_verbose("mmap() fd=%i failed:%m", transport->memfd);
402           goto out;
403         }
404
405       memcpy(buf, _dbus_string_get_const_data(header), header_size);
406       if(body_size) {
407           buf+=header_size;
408           memcpy(buf, _dbus_string_get_const_data(body),  body_size);
409           buf-=header_size;
410       }
411
412       munmap(buf, ret_size);
413
414       // seal data - kdbus module needs it
415       if(ioctl(transport->memfd, KDBUS_CMD_MEMFD_SEAL_SET, 1) < 0) {
416           _dbus_verbose("memfd sealing failed: %d (%m)\n", errno);
417           ret_size = -1;
418           goto out;
419       }
420
421       item->type = KDBUS_ITEM_PAYLOAD_MEMFD;
422       item->size = KDBUS_ITEM_HEADER_SIZE + sizeof(struct kdbus_memfd);
423       item->memfd.size = ret_size;
424       item->memfd.fd = transport->memfd;
425     }
426   else
427     {
428       _dbus_verbose("sending normal vector data\n");
429       MSG_ITEM_BUILD_VEC(_dbus_string_get_const_data(header), header_size);
430
431       if(body_size)
432         {
433           const char* body_data;
434
435           body_data = _dbus_string_get_const_data(body);
436           while(body_size > KDBUS_MSG_MAX_PAYLOAD_VEC_SIZE)
437             {
438               _dbus_verbose("body attaching\n");
439               item = KDBUS_PART_NEXT(item);
440               MSG_ITEM_BUILD_VEC(body_data, KDBUS_MSG_MAX_PAYLOAD_VEC_SIZE);
441               body_data += KDBUS_MSG_MAX_PAYLOAD_VEC_SIZE;
442               body_size -= KDBUS_MSG_MAX_PAYLOAD_VEC_SIZE;
443             }
444           if(body_size)
445             {
446               _dbus_verbose("body attaching\n");
447               item = KDBUS_PART_NEXT(item);
448               MSG_ITEM_BUILD_VEC(body_data, body_size);
449             }
450         }
451     }
452
453   if(fds_count)
454     {
455       item = KDBUS_PART_NEXT(item);
456       item->type = KDBUS_ITEM_FDS;
457       item->size = KDBUS_ITEM_HEADER_SIZE + (sizeof(int) * fds_count);
458       memcpy(item->fds, unix_fds, sizeof(int) * fds_count);
459     }
460
461   if (destination)
462     {
463       item = KDBUS_PART_NEXT(item);
464       item->type = KDBUS_ITEM_DST_NAME;
465       item->size = KDBUS_ITEM_HEADER_SIZE + strlen(destination) + 1;
466       memcpy(item->str, destination, item->size - KDBUS_ITEM_HEADER_SIZE);
467     }
468   else if (dst_id == KDBUS_DST_ID_BROADCAST)
469     {
470       item = KDBUS_PART_NEXT(item);
471       item->type = KDBUS_ITEM_BLOOM;
472       item->size = KDBUS_ITEM_HEADER_SIZE + transport->bloom_size;
473       strncpy(item->data, dbus_message_get_interface(message), transport->bloom_size);
474     }
475
476   again:
477   if (ioctl(transport->fd, KDBUS_CMD_MSG_SEND, msg))
478     {
479       if(errno == EINTR)
480         goto again;
481       else if(errno == ENXIO) //no such id on the bus
482         {
483           if(!reply_with_error(DBUS_ERROR_NAME_HAS_NO_OWNER, "Name \"%s\" does not exist", dbus_message_get_destination(message), message, transport->base.connection))
484             goto out;
485         }
486       else if((errno == ESRCH) || (errno = EADDRNOTAVAIL))  //when well known name is not available on the bus
487         {
488           if(autostart)
489             {
490               if(!reply_with_error(DBUS_ERROR_SERVICE_UNKNOWN, "The name %s was not provided by any .service files", dbus_message_get_destination(message), message, transport->base.connection))
491                 goto out;
492             }
493           else
494             if(!reply_with_error(DBUS_ERROR_NAME_HAS_NO_OWNER, "Name \"%s\" does not exist", dbus_message_get_destination(message), message, transport->base.connection))
495               goto out;
496         }
497       _dbus_verbose("kdbus error sending message: err %d (%m)\n", errno);
498       ret_size = -1;
499     }
500   out:
501   free(msg);
502   if(use_memfd)
503     close(transport->memfd);
504
505   return ret_size;
506 }
507
508 /**
509  * Performs kdbus hello - registration on the kdbus bus
510  * needed to send and receive messages on the bus,
511  * and configures transport.
512  * As a result unique id on he bus is obtained.
513  *
514  * @param name place to print id given by bus
515  * @param transportS transport structure
516  * @returns #TRUE on success
517  */
518 static dbus_bool_t bus_register_kdbus(char* name, DBusTransportKdbus* transportS)
519 {
520         struct kdbus_cmd_hello __attribute__ ((__aligned__(8))) hello;
521         memset(&hello, 0, sizeof(hello));
522
523         hello.conn_flags = KDBUS_HELLO_ACCEPT_FD/* |
524                            KDBUS_HELLO_ATTACH_COMM |
525                            KDBUS_HELLO_ATTACH_EXE |
526                            KDBUS_HELLO_ATTACH_CMDLINE |
527                            KDBUS_HELLO_ATTACH_CAPS |
528                            KDBUS_HELLO_ATTACH_CGROUP |
529                            KDBUS_HELLO_ATTACH_SECLABEL |
530                            KDBUS_HELLO_ATTACH_AUDIT*/;
531         hello.size = sizeof(struct kdbus_cmd_hello);
532         hello.pool_size = RECEIVE_POOL_SIZE;
533
534         if (ioctl(transportS->fd, KDBUS_CMD_HELLO, &hello))
535         {
536                 _dbus_verbose ("Failed to send hello: %m, %d",errno);
537                 return FALSE;
538         }
539
540         sprintf(name, "%llu", (unsigned long long)hello.id);
541         _dbus_verbose("-- Our peer ID is: %s\n", name);
542         transportS->bloom_size = hello.bloom_size;
543
544         transportS->kdbus_mmap_ptr = mmap(NULL, RECEIVE_POOL_SIZE, PROT_READ, MAP_SHARED, transportS->fd, 0);
545         if (transportS->kdbus_mmap_ptr == MAP_FAILED)
546         {
547                 _dbus_verbose("Error when mmap: %m, %d",errno);
548                 return FALSE;
549         }
550
551         return TRUE;
552 }
553
554 /**
555  * Looks over messages sent to org.freedesktop.DBus. Hello message, which performs
556  * registration on the bus, is captured as it must be locally converted into
557  * appropriate ioctl. All the rest org.freedesktop.DBus methods are left untouched
558  * and they are sent to dbus-daemon in the same way as every other messages.
559  *
560  * @param transport Transport
561  * @param message Message being sent.
562  * @returns 1 if it is not Hello message and it should be passed to daemon
563  *                      0 if Hello message was handled correctly,
564  *                      -1 if Hello message was not handle correctly.
565  */
566 static int capture_hello_message(DBusTransport *transport, const char* destination, DBusMessage *message)
567 {
568   if(!strcmp(destination, DBUS_SERVICE_DBUS))
569     {
570       if(!strcmp(dbus_message_get_interface(message), DBUS_INTERFACE_DBUS))
571         {
572           if(!strcmp(dbus_message_get_member(message), "Hello"))
573             {
574               char* name = NULL;
575
576               name = malloc(snprintf(name, 0, ":1.%llu0", ULLONG_MAX));
577               if(name == NULL)
578                 return -1;
579               strcpy(name, ":1.");
580               if(!bus_register_kdbus(&name[3], (DBusTransportKdbus*)transport))
581                 goto out;
582 #ifdef POLICY_TO_KDBUS
583               if(!register_kdbus_policy(&name[3], transport, geteuid()))
584                 goto out;
585 #endif
586               ((DBusTransportKdbus*)transport)->sender = name;
587
588               if(!reply_1_data(message, DBUS_TYPE_STRING, &name, transport->connection))
589                 return 0;  //on success we can not free name
590
591               out:
592               free(name);
593               return -1;
594             }
595         }
596     }
597
598   return 1;  //send message to daemon
599 }
600
601 #if KDBUS_MSG_DECODE_DEBUG == 1
602 static char *msg_id(uint64_t id, char *buf)
603 {
604         if (id == 0)
605                 return "KERNEL";
606         if (id == ~0ULL)
607                 return "BROADCAST";
608         sprintf(buf, "%llu", (unsigned long long)id);
609         return buf;
610 }
611 #endif
612 struct kdbus_enum_table {
613         long long id;
614         const char *name;
615 };
616 #define _STRINGIFY(x) #x
617 #define STRINGIFY(x) _STRINGIFY(x)
618 #define ELEMENTSOF(x) (sizeof(x)/sizeof((x)[0]))
619 #define TABLE(what) static struct kdbus_enum_table kdbus_table_##what[]
620 #define ENUM(_id) { .id=_id, .name=STRINGIFY(_id) }
621 #define LOOKUP(what)                                                            \
622         const char *enum_##what(long long id) {                                 \
623         size_t i; \
624                 for (i = 0; i < ELEMENTSOF(kdbus_table_##what); i++)    \
625                         if (id == kdbus_table_##what[i].id)                     \
626                                 return kdbus_table_##what[i].name;              \
627                 return "UNKNOWN";                                               \
628         }
629 const char *enum_MSG(long long id);
630 TABLE(MSG) = {
631         ENUM(_KDBUS_ITEM_NULL),
632         ENUM(KDBUS_ITEM_PAYLOAD_VEC),
633         ENUM(KDBUS_ITEM_PAYLOAD_OFF),
634         ENUM(KDBUS_ITEM_PAYLOAD_MEMFD),
635         ENUM(KDBUS_ITEM_FDS),
636         ENUM(KDBUS_ITEM_BLOOM),
637         ENUM(KDBUS_ITEM_DST_NAME),
638         ENUM(KDBUS_ITEM_CREDS),
639         ENUM(KDBUS_ITEM_PID_COMM),
640         ENUM(KDBUS_ITEM_TID_COMM),
641         ENUM(KDBUS_ITEM_EXE),
642         ENUM(KDBUS_ITEM_CMDLINE),
643         ENUM(KDBUS_ITEM_CGROUP),
644         ENUM(KDBUS_ITEM_CAPS),
645         ENUM(KDBUS_ITEM_SECLABEL),
646         ENUM(KDBUS_ITEM_AUDIT),
647         ENUM(KDBUS_ITEM_NAME),
648         ENUM(KDBUS_ITEM_TIMESTAMP),
649         ENUM(KDBUS_ITEM_NAME_ADD),
650         ENUM(KDBUS_ITEM_NAME_REMOVE),
651         ENUM(KDBUS_ITEM_NAME_CHANGE),
652         ENUM(KDBUS_ITEM_ID_ADD),
653         ENUM(KDBUS_ITEM_ID_REMOVE),
654         ENUM(KDBUS_ITEM_REPLY_TIMEOUT),
655         ENUM(KDBUS_ITEM_REPLY_DEAD),
656 };
657 LOOKUP(MSG);
658 const char *enum_PAYLOAD(long long id);
659 TABLE(PAYLOAD) = {
660         ENUM(KDBUS_PAYLOAD_KERNEL),
661         ENUM(KDBUS_PAYLOAD_DBUS),
662 };
663 LOOKUP(PAYLOAD);
664
665 /**
666  * Finalizes locally generated DBus message
667  * and puts it into data buffer.
668  *
669  * @param message Message to load.
670  * @param data Place to load message.
671  * @returns Size of message loaded.
672  */
673 static int put_message_into_data(DBusMessage *message, char* data)
674 {
675         int ret_size;
676     const DBusString *header;
677     const DBusString *body;
678     int size;
679
680     dbus_message_set_serial(message, 1);
681     dbus_message_lock (message);
682     _dbus_message_get_network_data (message, &header, &body);
683     ret_size = _dbus_string_get_length(header);
684         memcpy(data, _dbus_string_get_const_data(header), ret_size);
685         data += ret_size;
686         size = _dbus_string_get_length(body);
687         memcpy(data, _dbus_string_get_const_data(body), size);
688         ret_size += size;
689
690         return ret_size;
691 }
692
693 /**
694  * Calculates length of the kdbus message content (payload).
695  *
696  * @param msg kdbus message
697  * @return the length of the kdbus message's payload.
698  */
699 static int kdbus_message_size(const struct kdbus_msg* msg)
700 {
701         const struct kdbus_item *item;
702         int ret_size = 0;
703
704         KDBUS_PART_FOREACH(item, msg, items)
705         {
706                 if (item->size < KDBUS_ITEM_HEADER_SIZE)
707                 {
708                         _dbus_verbose("  +%s (%llu bytes) invalid data record\n", enum_MSG(item->type), item->size);
709                         return -1;
710                 }
711                 switch (item->type)
712                 {
713                         case KDBUS_ITEM_PAYLOAD_OFF:
714                                 ret_size += item->vec.size;
715                                 break;
716                         case KDBUS_ITEM_PAYLOAD_MEMFD:
717                                 ret_size += item->memfd.size;
718                                 break;
719                         default:
720                                 break;
721                 }
722         }
723
724         return ret_size;
725 }
726
727 /**
728  * Decodes kdbus message in order to extract DBus message and puts it into received data buffer
729  * and file descriptor's buffer. Also captures kdbus error messages and kdbus kernel broadcasts
730  * and converts all of them into appropriate DBus messages.
731  *
732  * @param msg kdbus message
733  * @param data place to copy DBus message to
734  * @param kdbus_transport transport
735  * @param fds place to store file descriptors received
736  * @param n_fds place to store quantity of file descriptors received
737  * @return number of DBus message's bytes received or -1 on error
738  */
739 static int kdbus_decode_msg(const struct kdbus_msg* msg, char *data, DBusTransportKdbus* kdbus_transport, int* fds, int* n_fds)
740 {
741         const struct kdbus_item *item;
742         int ret_size = 0;
743         DBusMessage *message = NULL;
744         DBusMessageIter args;
745         const char* emptyString = "";
746         const char* pString = NULL;
747         char dbus_name[(unsigned int)(snprintf((char*)pString, 0, ":1.%llu0", ULLONG_MAX))];
748         const char* pDBusName = dbus_name;
749 #if KDBUS_MSG_DECODE_DEBUG == 1
750         char buf[32];
751 #endif
752
753 #if KDBUS_MSG_DECODE_DEBUG == 1
754         _dbus_verbose("MESSAGE: %s (%llu bytes) flags=0x%llx, %s â†’ %s, cookie=%llu, timeout=%llu\n",
755                 enum_PAYLOAD(msg->payload_type), (unsigned long long) msg->size,
756                 (unsigned long long) msg->flags,
757                 msg_id(msg->src_id, buf), msg_id(msg->dst_id, buf),
758                 (unsigned long long) msg->cookie, (unsigned long long) msg->timeout_ns);
759 #endif
760
761         *n_fds = 0;
762
763         KDBUS_PART_FOREACH(item, msg, items)
764         {
765                 if (item->size < KDBUS_ITEM_HEADER_SIZE)
766                 {
767                         _dbus_verbose("  +%s (%llu bytes) invalid data record\n", enum_MSG(item->type), item->size);
768                         break;  //??? continue (because dbus will find error) or break
769                 }
770
771                 switch (item->type)
772                 {
773                         case KDBUS_ITEM_PAYLOAD_OFF:
774                                 memcpy(data, (char *)kdbus_transport->kdbus_mmap_ptr + item->vec.offset, item->vec.size);
775                                 data += item->vec.size;
776                                 ret_size += item->vec.size;
777
778                                 _dbus_verbose("  +%s (%llu bytes) off=%llu size=%llu\n",
779                                         enum_MSG(item->type), item->size,
780                                         (unsigned long long)item->vec.offset,
781                                         (unsigned long long)item->vec.size);
782                         break;
783
784                         case KDBUS_ITEM_PAYLOAD_MEMFD:
785                         {
786                                 char *buf;
787                                 uint64_t size;
788
789                                 size = item->memfd.size;
790                                 _dbus_verbose("memfd.size : %llu\n", (unsigned long long)size);
791
792                                 buf = mmap(NULL, size, PROT_READ , MAP_SHARED, item->memfd.fd, 0);
793                                 if (buf == MAP_FAILED)
794                                 {
795                                         _dbus_verbose("mmap() fd=%i failed:%m", item->memfd.fd);
796                                         return -1;
797                                 }
798
799                                 memcpy(data, buf, size);
800                                 data += size;
801                                 ret_size += size;
802
803                                 munmap(buf, size);
804
805                 _dbus_verbose("  +%s (%llu bytes) off=%llu size=%llu\n",
806                                            enum_MSG(item->type), item->size,
807                                            (unsigned long long)item->vec.offset,
808                                            (unsigned long long)item->vec.size);
809                         break;
810                         }
811
812                         case KDBUS_ITEM_FDS:
813                         {
814                                 int i;
815
816                                 *n_fds = (item->size - KDBUS_ITEM_HEADER_SIZE) / sizeof(int);
817                                 memcpy(fds, item->fds, *n_fds * sizeof(int));
818                     for (i = 0; i < *n_fds; i++)
819                       _dbus_fd_set_close_on_exec(fds[i]);
820                         break;
821                         }
822
823 #if KDBUS_MSG_DECODE_DEBUG == 1
824                         case KDBUS_ITEM_CREDS:
825                                 _dbus_verbose("  +%s (%llu bytes) uid=%lld, gid=%lld, pid=%lld, tid=%lld, starttime=%lld\n",
826                                         enum_MSG(item->type), item->size,
827                                         item->creds.uid, item->creds.gid,
828                                         item->creds.pid, item->creds.tid,
829                                         item->creds.starttime);
830                         break;
831
832                         case KDBUS_ITEM_PID_COMM:
833                         case KDBUS_ITEM_TID_COMM:
834                         case KDBUS_ITEM_EXE:
835                         case KDBUS_ITEM_CGROUP:
836                         case KDBUS_ITEM_SECLABEL:
837                         case KDBUS_ITEM_DST_NAME:
838                                 _dbus_verbose("  +%s (%llu bytes) '%s' (%zu)\n",
839                                            enum_MSG(item->type), item->size, item->str, strlen(item->str));
840                                 break;
841
842                         case KDBUS_ITEM_CMDLINE:
843                         case KDBUS_ITEM_NAME: {
844                                 __u64 size = item->size - KDBUS_ITEM_HEADER_SIZE;
845                                 const char *str = item->str;
846                                 int count = 0;
847
848                                 _dbus_verbose("  +%s (%llu bytes) ", enum_MSG(item->type), item->size);
849                                 while (size) {
850                                         _dbus_verbose("'%s' ", str);
851                                         size -= strlen(str) + 1;
852                                         str += strlen(str) + 1;
853                                         count++;
854                                 }
855
856                                 _dbus_verbose("(%d string%s)\n", count, (count == 1) ? "" : "s");
857                                 break;
858                         }
859
860                         case KDBUS_ITEM_AUDIT:
861                                 _dbus_verbose("  +%s (%llu bytes) loginuid=%llu sessionid=%llu\n",
862                                            enum_MSG(item->type), item->size,
863                                            (unsigned long long)item->data64[0],
864                                            (unsigned long long)item->data64[1]);
865                                 break;
866
867                         case KDBUS_ITEM_CAPS: {
868                                 int n;
869                                 const uint32_t *cap;
870                                 int i;
871
872                                 _dbus_verbose("  +%s (%llu bytes) len=%llu bytes)\n",
873                                            enum_MSG(item->type), item->size,
874                                            (unsigned long long)item->size - KDBUS_ITEM_HEADER_SIZE);
875
876                                 cap = item->data32;
877                                 n = (item->size - KDBUS_ITEM_HEADER_SIZE) / 4 / sizeof(uint32_t);
878
879                                 _dbus_verbose("    CapInh=");
880                                 for (i = 0; i < n; i++)
881                                         _dbus_verbose("%08x", cap[(0 * n) + (n - i - 1)]);
882
883                                 _dbus_verbose(" CapPrm=");
884                                 for (i = 0; i < n; i++)
885                                         _dbus_verbose("%08x", cap[(1 * n) + (n - i - 1)]);
886
887                                 _dbus_verbose(" CapEff=");
888                                 for (i = 0; i < n; i++)
889                                         _dbus_verbose("%08x", cap[(2 * n) + (n - i - 1)]);
890
891                                 _dbus_verbose(" CapInh=");
892                                 for (i = 0; i < n; i++)
893                                         _dbus_verbose("%08x", cap[(3 * n) + (n - i - 1)]);
894                                 _dbus_verbose("\n");
895                                 break;
896                         }
897
898                         case KDBUS_ITEM_TIMESTAMP:
899                                 _dbus_verbose("  +%s (%llu bytes) realtime=%lluns monotonic=%lluns\n",
900                                            enum_MSG(item->type), item->size,
901                                            (unsigned long long)item->timestamp.realtime_ns,
902                                            (unsigned long long)item->timestamp.monotonic_ns);
903                                 break;
904 #endif
905
906                         case KDBUS_ITEM_REPLY_TIMEOUT:
907                                 _dbus_verbose("  +%s (%llu bytes) cookie=%llu\n",
908                                            enum_MSG(item->type), item->size, msg->cookie_reply);
909
910                                 message = generate_local_error_message(msg->cookie_reply, DBUS_ERROR_NO_REPLY, NULL);
911                                 if(message == NULL)
912                                 {
913                                         ret_size = -1;
914                                         goto out;
915                                 }
916
917                                 ret_size = put_message_into_data(message, data);
918                         break;
919
920                         case KDBUS_ITEM_REPLY_DEAD:
921                                 _dbus_verbose("  +%s (%llu bytes) cookie=%llu\n",
922                                            enum_MSG(item->type), item->size, msg->cookie_reply);
923
924                                 message = generate_local_error_message(msg->cookie_reply, DBUS_ERROR_NAME_HAS_NO_OWNER, NULL);
925                                 if(message == NULL)
926                                 {
927                                         ret_size = -1;
928                                         goto out;
929                                 }
930
931                                 ret_size = put_message_into_data(message, data);
932                         break;
933
934                         case KDBUS_ITEM_NAME_ADD:
935                                 _dbus_verbose("  +%s (%llu bytes) '%s', old id=%lld, new id=%lld, old flags=0x%llx, new flags=0x%llx\n",
936                                         enum_MSG(item->type), (unsigned long long) item->size,
937                                         item->name_change.name, item->name_change.old_id,
938                                         item->name_change.new_id, item->name_change.old_flags,
939                                         item->name_change.new_flags);
940
941                                 message = dbus_message_new_signal(DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS, "NameOwnerChanged");
942                                 if(message == NULL)
943                                 {
944                                         ret_size = -1;
945                                         goto out;
946                                 }
947
948                                 sprintf(dbus_name,":1.%llu",item->name_change.new_id);
949                                 pString = item->name_change.name;
950                                 _dbus_verbose ("Name added: %s\n", pString);
951                             dbus_message_iter_init_append(message, &args);
952                             ITER_APPEND_STR(pString)
953                             ITER_APPEND_STR(emptyString)
954                             ITER_APPEND_STR(pDBusName)
955                                 dbus_message_set_sender(message, DBUS_SERVICE_DBUS);
956
957                                 ret_size = put_message_into_data(message, data);
958                         break;
959
960                         case KDBUS_ITEM_NAME_REMOVE:
961                                 _dbus_verbose("  +%s (%llu bytes) '%s', old id=%lld, new id=%lld, old flags=0x%llx, new flags=0x%llx\n",
962                                         enum_MSG(item->type), (unsigned long long) item->size,
963                                         item->name_change.name, item->name_change.old_id,
964                                         item->name_change.new_id, item->name_change.old_flags,
965                                         item->name_change.new_flags);
966
967                                 message = dbus_message_new_signal(DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS, "NameOwnerChanged"); // name of the signal
968                                 if(message == NULL)
969                                 {
970                                         ret_size = -1;
971                                         goto out;
972                                 }
973
974                                 sprintf(dbus_name,":1.%llu",item->name_change.old_id);
975                                 pString = item->name_change.name;
976                                 _dbus_verbose ("Name removed: %s\n", pString);
977                             dbus_message_iter_init_append(message, &args);
978                             ITER_APPEND_STR(pString)
979                             ITER_APPEND_STR(pDBusName)
980                             ITER_APPEND_STR(emptyString)
981                                 dbus_message_set_sender(message, DBUS_SERVICE_DBUS);
982
983                                 ret_size = put_message_into_data(message, data);
984                         break;
985
986                         case KDBUS_ITEM_NAME_CHANGE:
987                                 _dbus_verbose("  +%s (%llu bytes) '%s', old id=%lld, new id=%lld, old flags=0x%llx, new flags=0x%llx\n",
988                                         enum_MSG(item->type), (unsigned long long) item->size,
989                                         item->name_change.name, item->name_change.old_id,
990                                         item->name_change.new_id, item->name_change.old_flags,
991                                         item->name_change.new_flags);
992
993                                 message = dbus_message_new_signal(DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS, "NameOwnerChanged");
994                                 if(message == NULL)
995                                 {
996                                         ret_size = -1;
997                                         goto out;
998                                 }
999
1000                                 sprintf(dbus_name,":1.%llu",item->name_change.old_id);
1001                                 pString = item->name_change.name;
1002                                 _dbus_verbose ("Name changed: %s\n", pString);
1003                             dbus_message_iter_init_append(message, &args);
1004                             ITER_APPEND_STR(pString)
1005                             ITER_APPEND_STR(pDBusName)
1006                             sprintf(&dbus_name[3],"%llu",item->name_change.new_id);
1007                             _dbus_verbose ("New id: %s\n", pDBusName);
1008                             ITER_APPEND_STR(pDBusName)
1009                                 dbus_message_set_sender(message, DBUS_SERVICE_DBUS);
1010
1011                                 ret_size = put_message_into_data(message, data);
1012                         break;
1013
1014                         case KDBUS_ITEM_ID_ADD:
1015                                 _dbus_verbose("  +%s (%llu bytes) id=%llu flags=%llu\n",
1016                                            enum_MSG(item->type), (unsigned long long) item->size,
1017                                            (unsigned long long) item->id_change.id,
1018                                            (unsigned long long) item->id_change.flags);
1019
1020                                 message = dbus_message_new_signal(DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS, "NameOwnerChanged");
1021                                 if(message == NULL)
1022                                 {
1023                                         ret_size = -1;
1024                                         goto out;
1025                                 }
1026
1027                                 sprintf(dbus_name,":1.%llu",item->id_change.id);
1028                             dbus_message_iter_init_append(message, &args);
1029                             ITER_APPEND_STR(pDBusName)
1030                             ITER_APPEND_STR(emptyString)
1031                             ITER_APPEND_STR(pDBusName)
1032                                 dbus_message_set_sender(message, DBUS_SERVICE_DBUS);
1033
1034                                 ret_size = put_message_into_data(message, data);
1035                         break;
1036
1037                         case KDBUS_ITEM_ID_REMOVE:
1038                                 _dbus_verbose("  +%s (%llu bytes) id=%llu flags=%llu\n",
1039                                            enum_MSG(item->type), (unsigned long long) item->size,
1040                                            (unsigned long long) item->id_change.id,
1041                                            (unsigned long long) item->id_change.flags);
1042
1043                                 message = dbus_message_new_signal(DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS, "NameOwnerChanged");
1044                                 if(message == NULL)
1045                                 {
1046                                         ret_size = -1;
1047                                         goto out;
1048                                 }
1049
1050                                 sprintf(dbus_name,":1.%llu",item->id_change.id);
1051                             dbus_message_iter_init_append(message, &args);
1052                             ITER_APPEND_STR(pDBusName)
1053                             ITER_APPEND_STR(pDBusName)
1054                             ITER_APPEND_STR(emptyString)
1055                                 dbus_message_set_sender(message, DBUS_SERVICE_DBUS);
1056
1057                                 ret_size = put_message_into_data(message, data);
1058                         break;
1059 #if KDBUS_MSG_DECODE_DEBUG == 1
1060                         default:
1061                                 _dbus_verbose("  +%s (%llu bytes)\n", enum_MSG(item->type), item->size);
1062                         break;
1063 #endif
1064                 }
1065         }
1066
1067 #if KDBUS_MSG_DECODE_DEBUG == 1
1068
1069         if ((char *)item - ((char *)msg + msg->size) >= 8)
1070                 _dbus_verbose("invalid padding at end of message\n");
1071 #endif
1072
1073 out:
1074         if(message)
1075                 dbus_message_unref(message);
1076         return ret_size;
1077 }
1078
1079 /**
1080  * Reads message from kdbus and puts it into DBus buffers
1081  *
1082  * @param kdbus_transport transport
1083  * @param buffer place to copy received message to
1084  * @param fds place to store file descriptors received with the message
1085  * @param n_fds place to store quantity of file descriptors received
1086  * @return size of received message on success, -1 on error
1087  */
1088 static int kdbus_read_message(DBusTransportKdbus *kdbus_transport, DBusString *buffer, int* fds, int* n_fds)
1089 {
1090         int ret_size, buf_size;
1091         uint64_t __attribute__ ((__aligned__(8))) offset;
1092         struct kdbus_msg *msg;
1093         char *data;
1094         int start;
1095
1096         start = _dbus_string_get_length (buffer);
1097
1098         again:
1099         if (ioctl(kdbus_transport->fd, KDBUS_CMD_MSG_RECV, &offset) < 0)
1100         {
1101                 if(errno == EINTR)
1102                         goto again;
1103                 _dbus_verbose("kdbus error receiving message: %d (%m)\n", errno);
1104                 _dbus_string_set_length (buffer, start);
1105                 return -1;
1106         }
1107
1108         msg = (struct kdbus_msg *)((char*)kdbus_transport->kdbus_mmap_ptr + offset);
1109
1110         buf_size = kdbus_message_size(msg);
1111         if (buf_size == -1)
1112         {
1113                 _dbus_verbose("kdbus error - too short message: %d (%m)\n", errno);
1114                 return -1;
1115         }
1116
1117         /* What is the maximum size of the locally generated message?
1118            I just assume 2048 bytes */
1119         buf_size = MAX(buf_size, 2048);
1120
1121         if (!_dbus_string_lengthen (buffer, buf_size))
1122         {
1123                 errno = ENOMEM;
1124                 return -1;
1125         }
1126         data = _dbus_string_get_data_len (buffer, start, buf_size);
1127
1128         ret_size = kdbus_decode_msg(msg, data, kdbus_transport, fds, n_fds);
1129
1130         if(ret_size == -1) /* error */
1131         {
1132                 _dbus_string_set_length (buffer, start);
1133                 return -1;
1134         }
1135         else if (buf_size != ret_size) /* case of locally generated message */
1136         {
1137                 _dbus_string_set_length (buffer, start + ret_size);
1138         }
1139
1140         again2:
1141         if (ioctl(kdbus_transport->fd, KDBUS_CMD_FREE, &offset) < 0)
1142         {
1143                 if(errno == EINTR)
1144                         goto again2;
1145                 _dbus_verbose("kdbus error freeing message: %d (%m)\n", errno);
1146                 return -1;
1147         }
1148
1149         return ret_size;
1150 }
1151
1152 /**
1153  * Copy-paste from socket transport. Only renames done.
1154  */
1155 static void
1156 free_watches (DBusTransport *transport)
1157 {
1158   DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1159
1160   _dbus_verbose ("start\n");
1161
1162   if (kdbus_transport->read_watch)
1163     {
1164       if (transport->connection)
1165         _dbus_connection_remove_watch_unlocked (transport->connection,
1166                                                 kdbus_transport->read_watch);
1167       _dbus_watch_invalidate (kdbus_transport->read_watch);
1168       _dbus_watch_unref (kdbus_transport->read_watch);
1169       kdbus_transport->read_watch = NULL;
1170     }
1171
1172   if (kdbus_transport->write_watch)
1173     {
1174       if (transport->connection)
1175         _dbus_connection_remove_watch_unlocked (transport->connection,
1176                                                 kdbus_transport->write_watch);
1177       _dbus_watch_invalidate (kdbus_transport->write_watch);
1178       _dbus_watch_unref (kdbus_transport->write_watch);
1179       kdbus_transport->write_watch = NULL;
1180     }
1181
1182   _dbus_verbose ("end\n");
1183 }
1184
1185 /**
1186  * Copy-paste from socket transport. Only done needed renames and removed
1187  * lines related to encoded messages.
1188  */
1189 static void
1190 transport_finalize (DBusTransport *transport)
1191 {
1192   _dbus_verbose ("\n");
1193
1194   free_watches (transport);
1195
1196   _dbus_transport_finalize_base (transport);
1197
1198   _dbus_assert (((DBusTransportKdbus*) transport)->read_watch == NULL);
1199   _dbus_assert (((DBusTransportKdbus*) transport)->write_watch == NULL);
1200
1201   dbus_free (transport);
1202 }
1203
1204 /**
1205  * Copy-paste from socket transport. Removed code related to authentication,
1206  * socket_transport replaced by kdbus_transport.
1207  */
1208 static void
1209 check_write_watch (DBusTransport *transport)
1210 {
1211   DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1212   dbus_bool_t needed;
1213
1214   if (transport->connection == NULL)
1215     return;
1216
1217   if (transport->disconnected)
1218     {
1219       _dbus_assert (kdbus_transport->write_watch == NULL);
1220       return;
1221     }
1222
1223   _dbus_transport_ref (transport);
1224
1225   needed = _dbus_connection_has_messages_to_send_unlocked (transport->connection);
1226
1227   _dbus_verbose ("check_write_watch(): needed = %d on connection %p watch %p fd = %d outgoing messages exist %d\n",
1228                  needed, transport->connection, kdbus_transport->write_watch,
1229                  kdbus_transport->fd,
1230                  _dbus_connection_has_messages_to_send_unlocked (transport->connection));
1231
1232   _dbus_connection_toggle_watch_unlocked (transport->connection,
1233                                           kdbus_transport->write_watch,
1234                                           needed);
1235
1236   _dbus_transport_unref (transport);
1237 }
1238
1239 /**
1240  * Copy-paste from socket transport. Removed code related to authentication,
1241  * socket_transport replaced by kdbus_transport.
1242  */
1243 static void
1244 check_read_watch (DBusTransport *transport)
1245 {
1246   DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1247   dbus_bool_t need_read_watch;
1248
1249   _dbus_verbose ("fd = %d\n",kdbus_transport->fd);
1250
1251   if (transport->connection == NULL)
1252     return;
1253
1254   if (transport->disconnected)
1255     {
1256       _dbus_assert (kdbus_transport->read_watch == NULL);
1257       return;
1258     }
1259
1260   _dbus_transport_ref (transport);
1261
1262    need_read_watch =
1263       (_dbus_counter_get_size_value (transport->live_messages) < transport->max_live_messages_size) &&
1264       (_dbus_counter_get_unix_fd_value (transport->live_messages) < transport->max_live_messages_unix_fds);
1265
1266   _dbus_verbose ("  setting read watch enabled = %d\n", need_read_watch);
1267   _dbus_connection_toggle_watch_unlocked (transport->connection,
1268                                           kdbus_transport->read_watch,
1269                                           need_read_watch);
1270
1271   _dbus_transport_unref (transport);
1272 }
1273
1274 /**
1275  * Copy-paste from socket transport.
1276  */
1277 static void
1278 do_io_error (DBusTransport *transport)
1279 {
1280   _dbus_transport_ref (transport);
1281   _dbus_transport_disconnect (transport);
1282   _dbus_transport_unref (transport);
1283 }
1284
1285 /**
1286  *  Based on do_writing from socket transport.
1287  *  Removed authentication code and code related to encoded messages
1288  *  and adapted to kdbus transport.
1289  *  In socket transport returns false on out-of-memory. Here this won't happen,
1290  *  so it always returns TRUE.
1291  */
1292 static dbus_bool_t
1293 do_writing (DBusTransport *transport)
1294 {
1295   DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1296   int total = 0;
1297
1298   if (transport->disconnected)
1299     {
1300       _dbus_verbose ("Not connected, not writing anything\n");
1301       return TRUE;
1302     }
1303
1304   _dbus_verbose ("do_writing(), have_messages = %d, fd = %d\n",
1305       _dbus_connection_has_messages_to_send_unlocked (transport->connection),
1306       kdbus_transport->fd);
1307
1308   while (!transport->disconnected && _dbus_connection_has_messages_to_send_unlocked (transport->connection))
1309     {
1310       int bytes_written;
1311       DBusMessage *message;
1312       const DBusString *header;
1313       const DBusString *body;
1314       int total_bytes_to_write;
1315       const char* pDestination;
1316
1317       if (total > kdbus_transport->max_bytes_written_per_iteration)
1318         {
1319           _dbus_verbose ("%d bytes exceeds %d bytes written per iteration, returning\n",
1320                          total, kdbus_transport->max_bytes_written_per_iteration);
1321           goto out;
1322         }
1323
1324       message = _dbus_connection_get_message_to_send (transport->connection);
1325       _dbus_assert (message != NULL);
1326       if(dbus_message_get_sender(message) == NULL)  //needed for daemon to pass pending activation messages
1327         {
1328           dbus_message_unlock(message);
1329           dbus_message_set_sender(message, kdbus_transport->sender);
1330           dbus_message_lock (message);
1331         }
1332       _dbus_message_get_network_data (message, &header, &body);
1333       total_bytes_to_write = _dbus_string_get_length(header) + _dbus_string_get_length(body);
1334       pDestination = dbus_message_get_destination(message);
1335
1336       if(pDestination)
1337         {
1338           int ret;
1339
1340           ret = capture_hello_message(transport, pDestination, message);
1341           if(ret < 0)  //error
1342             {
1343               bytes_written = -1;
1344               goto written;
1345             }
1346           else if(ret == 0)  //hello message captured and handled correctly
1347             {
1348               bytes_written = total_bytes_to_write;
1349               goto written;
1350             }
1351           //else send as regular message
1352         }
1353
1354       bytes_written = kdbus_write_msg(kdbus_transport, message, pDestination);
1355
1356       written:
1357       if (bytes_written < 0)
1358         {
1359           /* EINTR already handled for us */
1360
1361           /* For some discussion of why we also ignore EPIPE here, see
1362            * http://lists.freedesktop.org/archives/dbus/2008-March/009526.html
1363            */
1364
1365           if (_dbus_get_is_errno_eagain_or_ewouldblock () || _dbus_get_is_errno_epipe ())
1366             goto out;
1367           else
1368             {
1369               _dbus_verbose ("Error writing to remote app: %s\n", _dbus_strerror_from_errno ());
1370               do_io_error (transport);
1371               goto out;
1372             }
1373         }
1374       else
1375         {
1376           _dbus_verbose (" wrote %d bytes of %d\n", bytes_written,
1377               total_bytes_to_write);
1378
1379           total += bytes_written;
1380
1381           _dbus_assert (bytes_written == total_bytes_to_write);
1382
1383           _dbus_connection_message_sent_unlocked (transport->connection,
1384                   message);
1385         }
1386     }
1387
1388   out:
1389   return TRUE;
1390 }
1391
1392 /**
1393  *  Based on do_reading from socket transport.
1394  *  Removed authentication code and code related to encoded messages
1395  *  and adapted to kdbus transport.
1396  *  returns false on out-of-memory
1397  */
1398 static dbus_bool_t
1399 do_reading (DBusTransport *transport)
1400 {
1401   DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1402   DBusString *buffer;
1403   int bytes_read;
1404   dbus_bool_t oom = FALSE;
1405   int *fds, n_fds;
1406   int total = 0;
1407
1408   _dbus_verbose ("fd = %d\n",kdbus_transport->fd);
1409
1410  again:
1411
1412   /* See if we've exceeded max messages and need to disable reading */
1413   check_read_watch (transport);
1414
1415   if (total > kdbus_transport->max_bytes_read_per_iteration)
1416     {
1417       _dbus_verbose ("%d bytes exceeds %d bytes read per iteration, returning\n",
1418                      total, kdbus_transport->max_bytes_read_per_iteration);
1419       goto out;
1420     }
1421
1422   _dbus_assert (kdbus_transport->read_watch != NULL ||
1423                 transport->disconnected);
1424
1425   if (transport->disconnected)
1426     goto out;
1427
1428   if (!dbus_watch_get_enabled (kdbus_transport->read_watch))
1429     return TRUE;
1430
1431   if (!_dbus_message_loader_get_unix_fds(transport->loader, &fds, &n_fds))
1432   {
1433       _dbus_verbose ("Out of memory reading file descriptors\n");
1434       oom = TRUE;
1435       goto out;
1436   }
1437   _dbus_message_loader_get_buffer (transport->loader, &buffer);
1438
1439   bytes_read = kdbus_read_message(kdbus_transport, buffer, fds, &n_fds);
1440
1441   if (bytes_read >= 0 && n_fds > 0)
1442     _dbus_verbose("Read %i unix fds\n", n_fds);
1443
1444   _dbus_message_loader_return_buffer (transport->loader,
1445                                       buffer,
1446                                       bytes_read < 0 ? 0 : bytes_read);
1447   _dbus_message_loader_return_unix_fds(transport->loader, fds, bytes_read < 0 ? 0 : n_fds);
1448
1449   if (bytes_read < 0)
1450     {
1451       /* EINTR already handled for us */
1452
1453       if (_dbus_get_is_errno_enomem ())
1454         {
1455           _dbus_verbose ("Out of memory in read()/do_reading()\n");
1456           oom = TRUE;
1457           goto out;
1458         }
1459       else if (_dbus_get_is_errno_eagain_or_ewouldblock ())
1460         goto out;
1461       else
1462         {
1463           _dbus_verbose ("Error reading from remote app: %s\n",
1464                          _dbus_strerror_from_errno ());
1465           do_io_error (transport);
1466           goto out;
1467         }
1468     }
1469   else if (bytes_read == 0)
1470     {
1471       _dbus_verbose ("Disconnected from remote app\n");
1472       do_io_error (transport);
1473       goto out;
1474     }
1475   else
1476     {
1477       _dbus_verbose (" read %d bytes\n", bytes_read);
1478
1479       total += bytes_read;
1480
1481       if (!_dbus_transport_queue_messages (transport))
1482         {
1483           oom = TRUE;
1484           _dbus_verbose (" out of memory when queueing messages we just read in the transport\n");
1485           goto out;
1486         }
1487
1488       /* Try reading more data until we get EAGAIN and return, or
1489        * exceed max bytes per iteration.  If in blocking mode of
1490        * course we'll block instead of returning.
1491        */
1492       goto again;
1493     }
1494
1495  out:
1496   if (oom)
1497     return FALSE;
1498   return TRUE;
1499 }
1500
1501 /**
1502  * Copy-paste from socket transport, with socket replaced by kdbus.
1503  */
1504 static dbus_bool_t
1505 unix_error_with_read_to_come (DBusTransport *itransport,
1506                               DBusWatch     *watch,
1507                               unsigned int   flags)
1508 {
1509    DBusTransportKdbus *transport = (DBusTransportKdbus *) itransport;
1510
1511    if (!((flags & DBUS_WATCH_HANGUP) || (flags & DBUS_WATCH_ERROR)))
1512       return FALSE;
1513
1514   /* If we have a read watch enabled ...
1515      we -might have data incoming ... => handle the HANGUP there */
1516    if (watch != transport->read_watch && _dbus_watch_get_enabled (transport->read_watch))
1517       return FALSE;
1518
1519    return TRUE;
1520 }
1521
1522 /**
1523  *  Copy-paste from socket transport. Removed authentication related code
1524  *  and renamed socket_transport to kdbus_transport.
1525  */
1526 static dbus_bool_t
1527 kdbus_handle_watch (DBusTransport *transport,
1528                    DBusWatch     *watch,
1529                    unsigned int   flags)
1530 {
1531   DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1532
1533   _dbus_assert (watch == kdbus_transport->read_watch ||
1534                 watch == kdbus_transport->write_watch);
1535   _dbus_assert (watch != NULL);
1536
1537   /* If we hit an error here on a write watch, don't disconnect the transport yet because data can
1538    * still be in the buffer and do_reading may need several iteration to read
1539    * it all (because of its max_bytes_read_per_iteration limit).
1540    */
1541   if (!(flags & DBUS_WATCH_READABLE) && unix_error_with_read_to_come (transport, watch, flags))
1542     {
1543       _dbus_verbose ("Hang up or error on watch\n");
1544       _dbus_transport_disconnect (transport);
1545       return TRUE;
1546     }
1547
1548   if (watch == kdbus_transport->read_watch &&
1549       (flags & DBUS_WATCH_READABLE))
1550     {
1551       _dbus_verbose ("handling read watch %p flags = %x\n",
1552                      watch, flags);
1553
1554           if (!do_reading (transport))
1555             {
1556               _dbus_verbose ("no memory to read\n");
1557               return FALSE;
1558             }
1559
1560     }
1561   else if (watch == kdbus_transport->write_watch &&
1562            (flags & DBUS_WATCH_WRITABLE))
1563     {
1564       _dbus_verbose ("handling write watch, have_outgoing_messages = %d\n",
1565                      _dbus_connection_has_messages_to_send_unlocked (transport->connection));
1566
1567       if (!do_writing (transport))
1568         {
1569           _dbus_verbose ("no memory to write\n");
1570           return FALSE;
1571         }
1572
1573       /* See if we still need the write watch */
1574       check_write_watch (transport);
1575     }
1576
1577   return TRUE;
1578 }
1579
1580 /**
1581  * Copy-paste from socket transport, but socket_transport renamed to kdbus_transport
1582  * and _dbus_close_socket replaced with close().
1583  */
1584 static void
1585 kdbus_disconnect (DBusTransport *transport)
1586 {
1587   DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1588
1589   _dbus_verbose ("\n");
1590
1591   free_watches (transport);
1592
1593   again:
1594    if (close (kdbus_transport->fd) < 0)
1595      {
1596        if (errno == EINTR)
1597          goto again;
1598      }
1599
1600   kdbus_transport->fd = -1;
1601 }
1602
1603 /**
1604  *  Copy-paste from socket transport. Renamed socket_transport to
1605  *  kdbus_transport and added dbus_connection_set_is_authenticated, because
1606  *  we do not perform authentication in kdbus, so we have mark is as already done
1607  *  to make everything work.
1608  */
1609 static dbus_bool_t
1610 kdbus_connection_set (DBusTransport *transport)
1611 {
1612   DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1613
1614   dbus_connection_set_is_authenticated(transport->connection); //now we don't have authentication in kdbus, so mark it done
1615
1616   _dbus_watch_set_handler (kdbus_transport->write_watch,
1617                            _dbus_connection_handle_watch,
1618                            transport->connection, NULL);
1619
1620   _dbus_watch_set_handler (kdbus_transport->read_watch,
1621                            _dbus_connection_handle_watch,
1622                            transport->connection, NULL);
1623
1624   if (!_dbus_connection_add_watch_unlocked (transport->connection,
1625                                             kdbus_transport->write_watch))
1626     return FALSE;
1627
1628   if (!_dbus_connection_add_watch_unlocked (transport->connection,
1629                                             kdbus_transport->read_watch))
1630     {
1631       _dbus_connection_remove_watch_unlocked (transport->connection,
1632                                               kdbus_transport->write_watch);
1633       return FALSE;
1634     }
1635
1636   check_read_watch (transport);
1637   check_write_watch (transport);
1638
1639   return TRUE;
1640 }
1641
1642 /**
1643  *  Copy-paste from socket_transport.
1644  *  Socket_transport renamed to kdbus_transport
1645  *
1646  *   Original dbus copy-pasted @todo comment below.
1647  * @todo We need to have a way to wake up the select sleep if
1648  * a new iteration request comes in with a flag (read/write) that
1649  * we're not currently serving. Otherwise a call that just reads
1650  * could block a write call forever (if there are no incoming
1651  * messages).
1652  */
1653 static  void
1654 kdbus_do_iteration (DBusTransport *transport,
1655                    unsigned int   flags,
1656                    int            timeout_milliseconds)
1657 {
1658         DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1659         DBusPollFD poll_fd;
1660         int poll_res;
1661         int poll_timeout;
1662
1663         _dbus_verbose (" iteration flags = %s%s timeout = %d read_watch = %p write_watch = %p fd = %d\n",
1664                  flags & DBUS_ITERATION_DO_READING ? "read" : "",
1665                  flags & DBUS_ITERATION_DO_WRITING ? "write" : "",
1666                  timeout_milliseconds,
1667                  kdbus_transport->read_watch,
1668                  kdbus_transport->write_watch,
1669                  kdbus_transport->fd);
1670
1671    poll_fd.fd = kdbus_transport->fd;
1672    poll_fd.events = 0;
1673
1674    /* This is kind of a hack; if we have stuff to write, then try
1675     * to avoid the poll. This is probably about a 5% speedup on an
1676     * echo client/server.
1677     *
1678     * If both reading and writing were requested, we want to avoid this
1679     * since it could have funky effects:
1680     *   - both ends spinning waiting for the other one to read
1681     *     data so they can finish writing
1682     *   - prioritizing all writing ahead of reading
1683     */
1684    if ((flags & DBUS_ITERATION_DO_WRITING) &&
1685        !(flags & (DBUS_ITERATION_DO_READING | DBUS_ITERATION_BLOCK)) &&
1686        !transport->disconnected &&
1687        _dbus_connection_has_messages_to_send_unlocked (transport->connection))
1688      {
1689        do_writing (transport);
1690
1691        if (transport->disconnected ||
1692            !_dbus_connection_has_messages_to_send_unlocked (transport->connection))
1693          goto out;
1694      }
1695
1696    /* If we get here, we decided to do the poll() after all */
1697    _dbus_assert (kdbus_transport->read_watch);
1698    if (flags & DBUS_ITERATION_DO_READING)
1699      poll_fd.events |= _DBUS_POLLIN;
1700
1701    _dbus_assert (kdbus_transport->write_watch);
1702    if (flags & DBUS_ITERATION_DO_WRITING)
1703      poll_fd.events |= _DBUS_POLLOUT;
1704
1705    if (poll_fd.events)
1706    {
1707       if (flags & DBUS_ITERATION_BLOCK)
1708              poll_timeout = timeout_milliseconds;
1709       else
1710              poll_timeout = 0;
1711
1712       /* For blocking selects we drop the connection lock here
1713        * to avoid blocking out connection access during a potentially
1714        * indefinite blocking call. The io path is still protected
1715        * by the io_path_cond condvar, so we won't reenter this.
1716        */
1717       if (flags & DBUS_ITERATION_BLOCK)
1718       {
1719          _dbus_verbose ("unlock pre poll\n");
1720          _dbus_connection_unlock (transport->connection);
1721       }
1722
1723     again:
1724       poll_res = _dbus_poll (&poll_fd, 1, poll_timeout);
1725
1726       if (poll_res < 0 && _dbus_get_is_errno_eintr ())
1727         goto again;
1728
1729       if (flags & DBUS_ITERATION_BLOCK)
1730       {
1731          _dbus_verbose ("lock post poll\n");
1732          _dbus_connection_lock (transport->connection);
1733       }
1734
1735       if (poll_res >= 0)
1736       {
1737          if (poll_res == 0)
1738             poll_fd.revents = 0; /* some concern that posix does not guarantee this;
1739                                   * valgrind flags it as an error. though it probably
1740                                   * is guaranteed on linux at least.
1741                                   */
1742
1743          if (poll_fd.revents & _DBUS_POLLERR)
1744             do_io_error (transport);
1745          else
1746          {
1747             dbus_bool_t need_read = (poll_fd.revents & _DBUS_POLLIN) > 0;
1748             dbus_bool_t need_write = (poll_fd.revents & _DBUS_POLLOUT) > 0;
1749
1750             _dbus_verbose ("in iteration, need_read=%d need_write=%d\n",
1751                              need_read, need_write);
1752
1753             if (need_read && (flags & DBUS_ITERATION_DO_READING))
1754                do_reading (transport);
1755             if (need_write && (flags & DBUS_ITERATION_DO_WRITING))
1756                do_writing (transport);
1757          }
1758       }
1759       else
1760          _dbus_verbose ("Error from _dbus_poll(): %s\n", _dbus_strerror_from_errno ());
1761    }
1762
1763  out:
1764   /* We need to install the write watch only if we did not
1765    * successfully write everything. Note we need to be careful that we
1766    * don't call check_write_watch *before* do_writing, since it's
1767    * inefficient to add the write watch, and we can avoid it most of
1768    * the time since we can write immediately.
1769    *
1770    * However, we MUST always call check_write_watch(); DBusConnection code
1771    * relies on the fact that running an iteration will notice that
1772    * messages are pending.
1773    */
1774    check_write_watch (transport);
1775
1776    _dbus_verbose (" ... leaving do_iteration()\n");
1777 }
1778
1779 /**
1780  * Copy-paste from socket transport.
1781  */
1782 static void
1783 kdbus_live_messages_changed (DBusTransport *transport)
1784 {
1785   /* See if we should look for incoming messages again */
1786   check_read_watch (transport);
1787 }
1788
1789 /**
1790  * Gets file descriptor of the kdbus bus.
1791  * @param transport transport
1792  * @param fd_p place to write fd to
1793  * @returns always TRUE
1794  */
1795 static dbus_bool_t
1796 kdbus_get_kdbus_fd (DBusTransport *transport,
1797                       int           *fd_p)
1798 {
1799   DBusTransportKdbus *kdbus_transport = (DBusTransportKdbus*) transport;
1800
1801   *fd_p = kdbus_transport->fd;
1802
1803   return TRUE;
1804 }
1805
1806 static const DBusTransportVTable kdbus_vtable = {
1807   transport_finalize,
1808   kdbus_handle_watch,
1809   kdbus_disconnect,
1810   kdbus_connection_set,
1811   kdbus_do_iteration,
1812   kdbus_live_messages_changed,
1813   kdbus_get_kdbus_fd
1814 };
1815
1816 /**
1817  * Copy-paste from dbus_transport_socket with needed changes.
1818  *
1819  * Creates a new transport for the given kdbus file descriptor and address.
1820  * The file descriptor must be nonblocking.
1821  *
1822  * @param fd the file descriptor.
1823  * @param address the transport's address
1824  * @returns the new transport, or #NULL if no memory.
1825  */
1826 static DBusTransport*
1827 new_kdbus_transport (int fd, const DBusString *address)
1828 {
1829         DBusTransportKdbus *kdbus_transport;
1830
1831   kdbus_transport = dbus_new0 (DBusTransportKdbus, 1);
1832   if (kdbus_transport == NULL)
1833     return NULL;
1834
1835   kdbus_transport->write_watch = _dbus_watch_new (fd,
1836                                                  DBUS_WATCH_WRITABLE,
1837                                                  FALSE,
1838                                                  NULL, NULL, NULL);
1839   if (kdbus_transport->write_watch == NULL)
1840     goto failed_2;
1841
1842   kdbus_transport->read_watch = _dbus_watch_new (fd,
1843                                                 DBUS_WATCH_READABLE,
1844                                                 FALSE,
1845                                                 NULL, NULL, NULL);
1846   if (kdbus_transport->read_watch == NULL)
1847     goto failed_3;
1848
1849   if (!_dbus_transport_init_base (&kdbus_transport->base,
1850                                   &kdbus_vtable,
1851                                   NULL, address))
1852     goto failed_4;
1853
1854   kdbus_transport->fd = fd;
1855
1856   /* These values should probably be tunable or something. */
1857   kdbus_transport->max_bytes_read_per_iteration = MAX_BYTES_PER_ITERATION;
1858   kdbus_transport->max_bytes_written_per_iteration = MAX_BYTES_PER_ITERATION;
1859
1860   kdbus_transport->kdbus_mmap_ptr = NULL;
1861   kdbus_transport->memfd = -1;
1862   
1863   return (DBusTransport*) kdbus_transport;
1864
1865  failed_4:
1866   _dbus_watch_invalidate (kdbus_transport->read_watch);
1867   _dbus_watch_unref (kdbus_transport->read_watch);
1868  failed_3:
1869   _dbus_watch_invalidate (kdbus_transport->write_watch);
1870   _dbus_watch_unref (kdbus_transport->write_watch);
1871  failed_2:
1872   dbus_free (kdbus_transport);
1873   return NULL;
1874 }
1875
1876 /**
1877  * Opens a connection to the kdbus bus
1878  *
1879  * @param path the path to kdbus bus
1880  * @param error return location for error code
1881  * @returns connection file descriptor or -1 on error
1882  */
1883 static int _dbus_connect_kdbus (const char *path, DBusError *error)
1884 {
1885         int fd;
1886
1887         _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1888         _dbus_verbose ("connecting to kdbus bus %s\n", path);
1889
1890         fd = open(path, O_RDWR|O_CLOEXEC|O_NONBLOCK);
1891         if (fd < 0)
1892                 dbus_set_error(error, _dbus_error_from_errno (errno), "Failed to open file descriptor: %s", _dbus_strerror (errno));
1893
1894         return fd;
1895 }
1896
1897 /**
1898  * Connects to kdbus, creates and sets-up transport.
1899  *
1900  * @param path the path to the bus.
1901  * @param error address where an error can be returned.
1902  * @returns a new transport, or #NULL on failure.
1903  */
1904 static DBusTransport* _dbus_transport_new_for_kdbus (const char *path, DBusError *error)
1905 {
1906         int fd;
1907         DBusTransport *transport;
1908         DBusString address;
1909
1910         _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1911
1912         if (!_dbus_string_init (&address))
1913     {
1914                 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1915                 return NULL;
1916     }
1917
1918         fd = -1;
1919
1920         if ((!_dbus_string_append (&address, "kdbus:path=")) || (!_dbus_string_append (&address, path)))
1921     {
1922                 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1923                 goto failed_0;
1924     }
1925
1926         fd = _dbus_connect_kdbus (path, error);
1927         if (fd < 0)
1928     {
1929                 _DBUS_ASSERT_ERROR_IS_SET (error);
1930                 goto failed_0;
1931     }
1932
1933         _dbus_verbose ("Successfully connected to kdbus bus %s\n", path);
1934
1935         transport = new_kdbus_transport (fd, &address);
1936         if (transport == NULL)
1937     {
1938                 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1939                 goto failed_1;
1940     }
1941
1942         _dbus_string_free (&address);
1943
1944         return transport;
1945
1946         failed_1:
1947   again:
1948    if (close (fd) < 0)
1949      {
1950        if (errno == EINTR)
1951          goto again;
1952      }
1953   failed_0:
1954         _dbus_string_free (&address);
1955   return NULL;
1956 }
1957
1958
1959 /**
1960  * Opens kdbus transport if method from address entry is kdbus
1961  *
1962  * @param entry the address entry to open
1963  * @param transport_p return location for the opened transport
1964  * @param error place to store error
1965  * @returns result of the attempt as a DBusTransportOpenResult enum
1966  */
1967 DBusTransportOpenResult _dbus_transport_open_kdbus(DBusAddressEntry  *entry,
1968                                                            DBusTransport    **transport_p,
1969                                                            DBusError         *error)
1970 {
1971         const char *method;
1972
1973         method = dbus_address_entry_get_method (entry);
1974         _dbus_assert (method != NULL);
1975
1976         if (strcmp (method, "kdbus") == 0)
1977     {
1978                 const char *path = dbus_address_entry_get_value (entry, "path");
1979
1980                 if (path == NULL)
1981         {
1982                         _dbus_set_bad_address (error, "kdbus", "path", NULL);
1983                         return DBUS_TRANSPORT_OPEN_BAD_ADDRESS;
1984         }
1985
1986         *transport_p = _dbus_transport_new_for_kdbus (path, error);
1987
1988         if (*transport_p == NULL)
1989         {
1990                 _DBUS_ASSERT_ERROR_IS_SET (error);
1991                 return DBUS_TRANSPORT_OPEN_DID_NOT_CONNECT;
1992         }
1993         else
1994         {
1995                 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1996                 return DBUS_TRANSPORT_OPEN_OK;
1997         }
1998     }
1999         else
2000     {
2001                 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
2002                 return DBUS_TRANSPORT_OPEN_NOT_HANDLED;
2003     }
2004 }
2005
2006 /** @} */