[deamon-fix] Fix for FoxP in make_kdbus_bus
[platform/upstream/dbus.git] / bus / kdbus-d.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* kdbus-d.c  kdbus related daemon functions
3  *
4  * Copyright (C) 2013  Samsung Electronics
5  *
6  * Licensed under the Academic Free License version 2.1
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version and under the terms of the GNU
12  * Lesser General Public License as published by the
13  * Free Software Foundation; either version 2.1 of the License, or (at
14  * your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
24  *
25  */
26
27 #include <dbus/dbus-connection-internal.h>
28 #include "kdbus-d.h"
29 #define KDBUS_FOR_SBB
30 #include <dbus/kdbus.h>
31 #include <dbus/dbus-bus.h>
32 #include "dispatch.h"
33 #include <dbus/kdbus-common.h>
34 #include <dbus/dbus-transport.h>
35 #include <dbus/dbus-transport-kdbus.h>
36 #include "connection.h"
37 #include "activation.h"
38 #include "services.h"
39 #include <dbus/dbus-connection.h>
40
41 #include <utils.h>
42 #include <stdlib.h>
43 #include <stdio.h>
44 #include <fcntl.h>
45 #include <unistd.h>
46 #include <errno.h>
47
48 /*
49  * Converts string with unique name into __u64 id number. If the name is not unique, sets error.
50  */
51 __u64 sender_name_to_id(const char* name, DBusError* error)
52 {
53         __u64 sender_id = 0;
54
55         if(!strncmp(name, ":1.", 3)) /*if name is unique name it must be converted to unique id*/
56                 sender_id = strtoull(&name[3], NULL, 10);
57         else
58                 dbus_set_error (error, DBUS_ERROR_INVALID_ARGS, "Could not convert sender of the message into kdbus unique id");
59
60         return sender_id;
61 }
62
63 /**
64  * Seeks key in rule string, and duplicates value of the key into pValue.
65  * Because of the duplication, pValue must be freed after use.
66  *
67  * @param rule rule to look through
68  * @param key key to look for
69  * @param pValue pointer to value of the key found
70  * @return length of the value string, 0 means not found
71  */
72 static int parse_match_key(const char *rule, const char* key, char** pValue)
73 {
74   const char* pBegin;
75   const char* pValueEnd;
76   int value_length = 0;
77
78   pBegin = strstr(rule, key);
79   if(pBegin)
80   {
81     pBegin += strlen(key);
82     pValueEnd = strchr(pBegin, '\'');
83     if(pValueEnd)
84     {
85       value_length = pValueEnd - pBegin;
86       *pValue = strndup(pBegin, value_length);
87       if(*pValue)
88         _dbus_verbose ("found for key: %s value:'%s'\n", key, *pValue);
89     }
90   }
91   return value_length;
92 }
93
94 /**
95  * Adds a match rule to match broadcast messages going through the message bus.
96  * Do no affect messages addressed directly.
97  *
98  * The "rule" argument is the string form of a match rule.
99  *
100  * Only part of the dbus's matching capabilities is implemented in kdbus now, because of different mechanism.
101  * Current mapping:
102  * interface match key mapped to bloom
103  * sender match key mapped to src_name
104  *
105  * @param transport transport
106  * @param id id of connection for which the rule is to be added
107  * @param rule textual form of match rule
108   */
109 dbus_bool_t add_match_kdbus (DBusTransport* transport, __u64 id, const char *rule)
110 {
111   struct kdbus_cmd_match* pCmd_match;
112   struct kdbus_item *pItem;
113   __u64 src_id = KDBUS_MATCH_SRC_ID_ANY;
114   uint64_t size;
115   int name_size;
116   char* pName = NULL;
117   char* pInterface = NULL;
118   dbus_bool_t ret_value = FALSE;
119   int fd;
120   __u64 bloom_size;
121
122   if(!_dbus_transport_get_socket_fd(transport, &fd))
123     return FALSE;
124
125   bloom_size = dbus_transport_get_bloom_size(transport);
126
127   /*parsing rule and calculating size of command*/
128   size = sizeof(struct kdbus_cmd_match);
129   if(parse_match_key(rule, "interface='", &pInterface))       /*actual size is not important for interface because bloom size is defined by bus*/
130     size += KDBUS_PART_HEADER_SIZE + bloom_size;
131   name_size = parse_match_key(rule, "sender='", &pName);
132   if(name_size)
133   {
134     if(!strncmp(pName, ":1.", 3)) /*if name is unique name it must be converted to unique id*/
135     {
136       src_id = strtoull(&pName[3], NULL, 10);
137       free(pName);
138       pName = NULL;
139     }
140     else
141       size += KDBUS_PART_SIZE(name_size + 1);  //well known name
142   }
143
144   pCmd_match = alloca(size);
145   if(pCmd_match == NULL)
146     goto out;
147
148   pCmd_match->id = id;
149   pCmd_match->cookie = id;
150   pCmd_match->size = size;
151   pCmd_match->src_id = src_id;
152
153   pItem = pCmd_match->items;
154   if(pName)
155   {
156     pItem->type = KDBUS_MATCH_SRC_NAME;
157     pItem->size = KDBUS_PART_HEADER_SIZE + name_size + 1;
158     memcpy(pItem->str, pName, strlen(pName) + 1);
159     pItem = KDBUS_PART_NEXT(pItem);
160   }
161   if(pInterface)
162   {
163     pItem->type = KDBUS_MATCH_BLOOM;
164     pItem->size = KDBUS_PART_HEADER_SIZE + bloom_size;
165     strncpy(pItem->data, pInterface, bloom_size);
166   }
167
168   if(ioctl(fd, KDBUS_CMD_MATCH_ADD, pCmd_match))
169     _dbus_verbose("Failed adding match bus rule %s,\nerror: %d, %m\n", rule, errno);
170   else
171   {
172     _dbus_verbose("Added match bus rule %s for id:%llu\n", rule, (unsigned long long)id);
173     ret_value = TRUE;
174   }
175
176 out:
177   if(pName)
178     free(pName);
179   if(pInterface)
180     free(pInterface);
181   return ret_value;
182 }
183
184 /**
185  * Opposing to dbus, in kdbus removes all match rules with given
186  * cookie, which in this implementation is equal to uniqe id.
187  *
188  * @param transport transport
189  * @param id connection id for which rules are to be removed
190  */
191 dbus_bool_t remove_match_kdbus (DBusTransport* transport, __u64 id)
192 {
193   struct kdbus_cmd_match __attribute__ ((__aligned__(8))) cmd;
194   int fd;
195
196   if(!_dbus_transport_get_socket_fd(transport, &fd))
197     return FALSE;
198
199   cmd.cookie = id;
200   cmd.id = id;
201   cmd.size = sizeof(struct kdbus_cmd_match);
202
203   if(ioctl(fd, KDBUS_CMD_MATCH_REMOVE, &cmd))
204   {
205     _dbus_verbose("Failed removing match rule for id: %llu; error: %d, %m\n", (unsigned long long)id, errno);
206     return FALSE;
207   }
208   else
209   {
210     _dbus_verbose("Match rule removed correctly.\n");
211     return TRUE;
212   }
213 }
214
215 /**
216  * Performs kdbus query of id of the given name
217  *
218  * @param name name to query for
219  * @param transport transport
220  * @param pInfo nameInfo structure address to store info about the name
221  * @return 0 on success, -errno if failed
222  */
223 int kdbus_NameQuery(const char* name, DBusTransport* transport, struct nameInfo* pInfo)
224 {
225   struct kdbus_cmd_conn_info *cmd;
226   int ret;
227   int fd;
228   uint64_t size;
229   __u64 id = 0;
230
231   pInfo->sec_label_len = 0;
232   pInfo->sec_label = NULL;
233
234   if(!_dbus_transport_get_socket_fd(transport, &fd))
235     return -EPERM;
236
237   size = sizeof(struct kdbus_cmd_conn_info);
238   if((name[0] == ':') && (name[1] == '1') && (name[2] == '.'))  /* if name starts with ":1." it is a unique name and should be send as number */
239      id = strtoull(&name[3], NULL, 10);
240   if(id == 0)
241     size += strlen(name) + 1;
242
243   cmd = alloca(size);
244   if (!cmd)
245   {
246     _dbus_verbose("Error allocating memory for: %s,%s\n", _dbus_strerror (errno), _dbus_error_from_errno (errno));
247     return -errno;
248   }
249
250   cmd->size = size;
251   cmd->id = id;
252   if(id == 0)
253     memcpy(cmd->name, name, strlen(name) + 1);
254
255   again:
256   ret = ioctl(fd, KDBUS_CMD_CONN_INFO, cmd);
257   if (ret < 0)
258   {
259     if(errno == EINTR)
260       goto again;
261     pInfo->uniqueId = 0;
262     return -errno;
263   }
264   else
265   {
266     struct kdbus_conn_info *info;
267     struct kdbus_item *item;
268
269     info = (struct kdbus_conn_info *)((char*)dbus_transport_get_pool_pointer(transport) + cmd->offset);
270     pInfo->uniqueId = info->id;
271
272     item = info->items;
273     while((uint8_t *)(item) < (uint8_t *)(info) + info->size)
274     {
275       if(item->type == KDBUS_ITEM_CREDS)
276         {
277           pInfo->userId = item->creds.uid;
278           pInfo->processId = item->creds.uid;
279         }
280
281       if(item->type == KDBUS_ITEM_SECLABEL)
282         {
283           pInfo->sec_label_len = item->size - KDBUS_PART_HEADER_SIZE - 1;
284           if(pInfo->sec_label_len != 0)
285             {
286               pInfo->sec_label = malloc(pInfo->sec_label_len);
287               if(pInfo->sec_label == NULL)
288                 ret = -1;
289               else
290                 memcpy(pInfo->sec_label, item->data, pInfo->sec_label_len);
291             }
292         }
293
294       item = KDBUS_PART_NEXT(item);
295     }
296
297     again2:
298     if (ioctl(fd, KDBUS_CMD_FREE, &cmd->offset) < 0)
299     {
300       if(errno == EINTR)
301         goto again2;
302       _dbus_verbose("kdbus error freeing pool: %d (%m)\n", errno);
303       return -errno;
304     }
305   }
306
307   return ret;
308 }
309
310 /*
311  * Creates kdbus bus of given type.
312  */
313 char* make_kdbus_bus(DBusBusType type, const char* address, DBusError *error)
314 {
315   // TODO Function alloca() used. In upstream there was a patch proposing to
316   // replace alloca() with malloc() to assure memory alignment. If there will be
317   // suggestion to use malloc instead of alloca this function has to be modified
318   struct kdbus_cmd_bus_make *bus_make;
319   struct kdbus_item *item;
320   __u64 name_size, item_size, bus_make_size;
321   int fdc, ret;
322   char *addr_value = NULL;
323   char *bus = NULL;
324   char *name = NULL;
325
326   if(type == DBUS_BUS_SYSTEM)
327     name_size = snprintf(name, 0, "%u-kdbus-%s", getuid(), "system") + 1;
328   else if(type == DBUS_BUS_SESSION)
329     name_size = snprintf(name, 0, "%u-kdbus", getuid()) + 1;
330   else
331     name_size = snprintf(name, 0, "%u-kdbus-%u", getuid(), getpid()) + 1;
332
333   name = alloca(name_size);
334   if (!name)
335     {
336       return NULL;
337     }
338
339   item_size = KDBUS_PART_HEADER_SIZE + name_size;
340   bus_make_size = sizeof(struct kdbus_cmd_bus_make) + item_size;
341
342   bus_make = alloca(bus_make_size);
343   if (!bus_make)
344     {
345       return NULL;
346     }
347
348   item = bus_make->items;
349   item->size = item_size;
350   item->type = KDBUS_ITEM_MAKE_NAME;
351
352   if(type == DBUS_BUS_SYSTEM)
353     sprintf(name, "%u-kdbus-%s", getuid(), "system");
354   else if(type == DBUS_BUS_SESSION)
355     sprintf(name, "%u-kdbus", getuid());
356   else
357     sprintf(name, "%u-kdbus-%u", getuid(), getpid());
358
359   memcpy((bus_make->items)->str, name, name_size);
360
361   bus_make->bloom_size = 64;
362   bus_make->size = bus_make_size;
363
364 #ifdef POLICY_TO_KDBUS
365   bus_make->flags = KDBUS_MAKE_ACCESS_WORLD;
366 #else
367   bus_make->flags = KDBUS_MAKE_POLICY_OPEN;
368 #endif
369
370   addr_value = strchr(address, ':') + 1;
371   if(*addr_value)
372     {
373       if(!strcmp(addr_value, "sbb"))
374         bus_make->flags |= KDBUS_MAKE_SBB_OFFSET;
375       else
376         {
377           dbus_set_error_const(error, DBUS_ERROR_BAD_ADDRESS, "Invalid address parameter.");
378           return NULL;
379         }
380     }
381
382   _dbus_verbose("Opening /dev/kdbus/control\n");
383   fdc = open("/dev/kdbus/control", O_RDWR|O_CLOEXEC);
384   if (fdc < 0)
385     {
386       _dbus_verbose("--- error %d (%m)\n", fdc);
387       dbus_set_error(error, DBUS_ERROR_FAILED, "Opening /dev/kdbus/control failed: %d (%m)", fdc);
388       return NULL;
389     }
390
391   _dbus_verbose("Creating bus '%s'\n", (bus_make->items[0]).str);
392   ret = ioctl(fdc, KDBUS_CMD_BUS_MAKE, bus_make);
393   if (ret)
394     {
395       _dbus_verbose("--- error %d (%m)\n", errno);
396       dbus_set_error(error, DBUS_ERROR_FAILED, "Creating bus '%s' failed: %d (%m)",
397           (bus_make->items[0]).str, errno);
398       return NULL;
399     }
400
401   if (asprintf(&bus, "kdbus:path=/dev/kdbus/%s/bus", (bus_make->items[0]).str) < 0)
402     {
403       BUS_SET_OOM (error);
404       return NULL;
405     }
406
407   _dbus_verbose("Return value '%s'\n", bus);
408   return bus;
409 }
410
411 /*
412  * Minimal server init needed by context to go further.
413  */
414 DBusServer* empty_server_init(char* address)
415 {
416         return dbus_server_init_mini(address);
417 }
418
419 static dbus_bool_t add_matches_for_kdbus_broadcasts(DBusConnection* connection)
420 {
421   struct kdbus_cmd_match* pCmd_match;
422   struct kdbus_item *pItem;
423   uint64_t size;
424   int fd;
425   DBusTransport *transport;
426   const char* unique_name;
427
428   transport = dbus_connection_get_transport(connection);
429
430   if(!_dbus_transport_get_socket_fd(transport, &fd))
431     {
432       errno = EPERM;
433       return FALSE;
434     }
435
436   size = sizeof(struct kdbus_cmd_match);
437   size += KDBUS_PART_SIZE(1)*3 + KDBUS_PART_SIZE(sizeof(__u64))*2;  /*3 name related items plus 2 id related items*/
438
439   pCmd_match = alloca(size);
440   if(pCmd_match == NULL)
441     {
442       errno = ENOMEM;
443       return FALSE;
444     }
445
446   unique_name = dbus_bus_get_unique_name(connection);
447
448   pCmd_match->id = strtoull(&unique_name[3], NULL, 10);
449   pCmd_match->cookie = 1;
450   pCmd_match->size = size;
451
452   pItem = pCmd_match->items;
453   pCmd_match->src_id = 0;
454   pItem->type = KDBUS_MATCH_NAME_CHANGE;
455   pItem->size = KDBUS_PART_HEADER_SIZE + 1;
456   pItem = KDBUS_PART_NEXT(pItem);
457   pItem->type = KDBUS_MATCH_NAME_ADD;
458   pItem->size = KDBUS_PART_HEADER_SIZE + 1;
459   pItem = KDBUS_PART_NEXT(pItem);
460   pItem->type = KDBUS_MATCH_NAME_REMOVE;
461   pItem->size = KDBUS_PART_HEADER_SIZE + 1;
462   pItem = KDBUS_PART_NEXT(pItem);
463   pItem->type = KDBUS_MATCH_ID_ADD;
464   pItem->size = KDBUS_PART_HEADER_SIZE + sizeof(__u64);
465   pItem = KDBUS_PART_NEXT(pItem);
466   pItem->type = KDBUS_MATCH_ID_REMOVE;
467   pItem->size = KDBUS_PART_HEADER_SIZE + sizeof(__u64);
468
469   if(ioctl(fd, KDBUS_CMD_MATCH_ADD, pCmd_match))
470     {
471       _dbus_verbose("Failed adding match rule for daemon, error: %d, %m\n", errno);
472       return FALSE;
473     }
474
475   _dbus_verbose("Added match rule for daemon correctly.\n");
476   return TRUE;
477 }
478
479 /*
480  * Connects daemon to bus created by him and adds matches for "system" broadcasts.
481  * Do not requests org.freedesktop.DBus name, because it's to early
482  * (some structures of BusContext are not ready yet).
483  */
484 DBusConnection* daemon_as_client(DBusBusType type, char* address, DBusError *error)
485 {
486   DBusConnection* connection;
487
488   dbus_bus_set_bus_connection_address(type, address);
489
490   connection = dbus_bus_get_private(type, error);  /*todo possibly could be optimised by using lower functions*/
491   if(connection == NULL)
492     return NULL;
493
494   if(!add_matches_for_kdbus_broadcasts(connection))
495     {
496       dbus_set_error (error, _dbus_error_from_errno (errno), "Could not add match for daemon, %s", _dbus_strerror_from_errno ());
497       goto failed;
498     }
499
500   if(dbus_error_is_set(error))
501     {
502       failed:
503       _dbus_connection_close_possibly_shared (connection);
504       dbus_connection_unref (connection);
505       connection = NULL;
506     }
507   else
508     _dbus_verbose ("Daemon connected as kdbus client.\n");
509
510   return connection;
511 }
512
513 /*
514  * Asks bus for org.freedesktop.DBus well-known name.
515  */
516 dbus_bool_t register_daemon_name(DBusConnection* connection)
517 {
518     DBusString daemon_name;
519     dbus_bool_t retval = FALSE;
520     BusTransaction *transaction;
521
522     _dbus_string_init_const(&daemon_name, DBUS_SERVICE_DBUS);
523 #ifdef POLICY_TO_KDBUS
524     if(!register_kdbus_policy(DBUS_SERVICE_DBUS, dbus_connection_get_transport(connection), geteuid()))
525       return FALSE;
526 #endif
527
528     if(kdbus_request_name(connection, &daemon_name, 0, 0) != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER)
529        return FALSE;
530
531     transaction = bus_transaction_new (bus_connection_get_context(connection));
532     if (transaction == NULL)
533     {
534         kdbus_release_name(connection, &daemon_name, 0);
535         goto out;
536     }
537
538     if(!bus_registry_ensure (bus_connection_get_registry (connection), &daemon_name, connection, 0, transaction, NULL))
539     {
540         kdbus_release_name(connection, &daemon_name, 0);
541         goto out;
542     }
543
544     retval = TRUE;
545
546 out:
547         bus_transaction_cancel_and_free(transaction);
548     return retval;
549 }
550
551 dbus_uint32_t kdbus_request_name(DBusConnection* connection, const DBusString *service_name, dbus_uint32_t flags, __u64 sender_id)
552 {
553         int fd;
554
555         _dbus_transport_get_socket_fd(dbus_connection_get_transport(connection), &fd);
556
557         return request_kdbus_name(fd, _dbus_string_get_const_data(service_name), flags, sender_id);
558 }
559
560 dbus_uint32_t kdbus_release_name(DBusConnection* connection, const DBusString *service_name, __u64 sender_id)
561 {
562         int fd;
563
564         _dbus_transport_get_socket_fd(dbus_connection_get_transport(connection), &fd);
565
566         return release_kdbus_name(fd, _dbus_string_get_const_data(service_name), sender_id);
567 }
568
569 /*
570  * Asks kdbus for well-known names registered on the bus
571  */
572 dbus_bool_t kdbus_list_services (DBusConnection* connection, char ***listp, int *array_len)
573 {
574         int fd;
575         struct kdbus_cmd_name_list __attribute__ ((__aligned__(8))) cmd;
576         struct kdbus_name_list *name_list;
577         struct kdbus_cmd_name *name;
578         DBusTransport *transport = dbus_connection_get_transport(connection);
579         dbus_bool_t ret_val = FALSE;
580         char** list;
581         int list_len = 0;
582         int i = 0;
583         int j;
584
585         if(!_dbus_transport_get_socket_fd(transport, &fd))
586           return FALSE;
587
588   cmd.flags = KDBUS_NAME_LIST_NAMES | KDBUS_NAME_LIST_UNIQUE;
589
590 again:
591         if(ioctl(fd, KDBUS_CMD_NAME_LIST, &cmd))
592         {
593                 if(errno == EINTR)
594                         goto again;
595                 else
596                 {
597                         _dbus_verbose("kdbus error asking for name list: err %d (%m)\n",errno);
598                         return FALSE;
599                 }
600         }
601
602         name_list = (struct kdbus_name_list *)((char*)dbus_transport_get_pool_pointer(transport) + cmd.offset);
603
604   for (name = name_list->names; (uint8_t *)(name) < (uint8_t *)(name_list) + name_list->size; name = KDBUS_PART_NEXT(name))
605     list_len++;
606
607   _dbus_verbose ("List len: %d\n", list_len);
608
609   list = malloc(sizeof(char*) * (list_len + 1));
610   if(list == NULL)
611     goto out;
612
613   for (name = name_list->names; (uint8_t *)(name) < (uint8_t *)(name_list) + name_list->size; name = KDBUS_PART_NEXT(name))
614   {
615       if(*name->name)
616       {
617         list[i] = strdup(name->name);
618         if(list[i] == NULL)
619           goto out;
620       }
621       else
622       {
623         list[i] = malloc(snprintf(list[i], 0, ":1.%llu0", (unsigned long long)name->id));
624         if(list[i] == NULL)
625           goto out;
626         sprintf(list[i], ":1.%llu", (unsigned long long int)name->id);
627       }
628     _dbus_verbose ("Name %d: %s\n", i, list[i]);
629     ++i;
630   }
631
632   list[i] = NULL;
633         *array_len = list_len;
634         *listp = list;
635         ret_val = TRUE;
636
637 out:
638   if (ioctl(fd, KDBUS_CMD_FREE, &cmd.offset) < 0)
639   {
640     if(errno == EINTR)
641       goto out;
642     _dbus_verbose("kdbus error freeing pool: %d (%m)\n", errno);
643     ret_val = FALSE;
644   }
645   if(ret_val == FALSE)
646     {
647       for(j=0; j<i; j++)
648         free(list[j]);
649       free(list);
650       *array_len = 0;
651       *listp = NULL;
652     }
653
654         return ret_val;
655 }
656
657 /*
658  * Asks kdbus for list of connections being in the queue to own
659  * given well-known name. The list includes the owner of the name on the
660  * first position.
661  */
662 dbus_bool_t kdbus_list_queued (DBusConnection *connection, DBusList  **return_list,
663                                const char *name, DBusError  *error)
664 {
665   int fd;
666   dbus_bool_t ret_val = FALSE;
667   int name_length;
668   struct kdbus_cmd_conn_info *pCmd;
669   __u64 cmd_size;
670   DBusTransport *transport = dbus_connection_get_transport(connection);
671   struct kdbus_name_list *name_list;
672   struct kdbus_cmd_name *owner;
673
674   _dbus_assert (*return_list == NULL);
675
676   name_length = strlen(name) + 1;
677   cmd_size = sizeof(struct kdbus_cmd_conn_info) + name_length;
678   pCmd = alloca(cmd_size);
679   if(pCmd == NULL)
680     goto out;
681   pCmd->size = cmd_size;
682   pCmd->id = 0;
683   memcpy(pCmd->name, name, name_length);
684
685   _dbus_verbose ("Asking for queued owners of %s\n", pCmd->name);
686
687   _dbus_transport_get_socket_fd(transport, &fd);
688
689   again:
690   if(ioctl(fd, KDBUS_CMD_NAME_LIST_QUEUED, pCmd))
691     {
692       if(errno == EINTR)
693         goto again;
694       else if(errno == ESRCH)
695         {
696           dbus_set_error (error, DBUS_ERROR_NAME_HAS_NO_OWNER,
697                       "Could not get owners of name '%s': no such name", name);
698           return FALSE;
699         }
700       else
701         {
702           _dbus_verbose("kdbus error asking for queued owners list: err %d (%m)\n",errno);
703           goto out;
704         }
705     }
706
707   name_list = (struct kdbus_name_list *)((char*)dbus_transport_get_pool_pointer(transport) + pCmd->offset);
708
709   for (owner = name_list->names; (uint8_t *)(owner) < (uint8_t *)(name_list) + name_list->size; owner = KDBUS_PART_NEXT(owner))
710     {
711       char *uname = NULL;
712
713       _dbus_verbose ("Got queued owner id: %llu\n", (unsigned long long)owner->id);
714       uname = malloc(snprintf(uname, 0, ":1.%llu0", (unsigned long long)owner->id));
715       if(uname == NULL)
716         goto out;
717       sprintf(uname, ":1.%llu", (unsigned long long int)owner->id);
718       if (!_dbus_list_append (return_list, uname))
719         goto out;
720     }
721
722   ret_val = TRUE;
723
724   out:
725   if (ioctl(fd, KDBUS_CMD_FREE, &pCmd->offset) < 0)
726   {
727     if(errno == EINTR)
728       goto out;
729     _dbus_verbose("kdbus error freeing pool: %d (%m)\n", errno);
730     ret_val = FALSE;
731   }
732   if(ret_val == FALSE)
733     {
734       DBusList *link;
735
736       dbus_set_error (error, _dbus_error_from_errno (errno),
737           "Failed to list queued owners of \"%s\": %s",
738           name, _dbus_strerror (errno));
739
740       link = _dbus_list_get_first_link (return_list);
741       while (link != NULL)
742         {
743           DBusList *next = _dbus_list_get_next_link (return_list, link);
744
745           if(link->data != NULL)
746             free(link->data);
747
748           _dbus_list_free_link (link);
749           link = next;
750         }
751     }
752
753   return ret_val;
754 }
755
756 /*
757  *  Register match rule in kdbus on behalf of sender of the message
758  */
759 dbus_bool_t kdbus_add_match_rule (DBusConnection* connection, DBusMessage* message, const char* text, DBusError* error)
760 {
761         __u64 sender_id;
762
763         sender_id = sender_name_to_id(dbus_message_get_sender(message), error);
764         if(dbus_error_is_set(error))
765                 return FALSE;
766
767         if(!add_match_kdbus (dbus_connection_get_transport(connection), sender_id, text))
768         {
769               dbus_set_error (error, _dbus_error_from_errno (errno), "Could not add match for id:%d, %s",
770                               sender_id, _dbus_strerror_from_errno ());
771               return FALSE;
772         }
773
774         return TRUE;
775 }
776
777 /*
778  *  Removes match rule in kdbus on behalf of sender of the message
779  */
780 dbus_bool_t kdbus_remove_match (DBusConnection* connection, DBusMessage* message, DBusError* error)
781 {
782         __u64 sender_id;
783
784         sender_id = sender_name_to_id(dbus_message_get_sender(message), error);
785         if(dbus_error_is_set(error))
786                 return FALSE;
787
788         if(!remove_match_kdbus (dbus_connection_get_transport(connection), sender_id))
789         {
790               dbus_set_error (error, _dbus_error_from_errno (errno), "Could not remove match rules for id:%d", sender_id);
791               return FALSE;
792         }
793
794         return TRUE;
795 }
796
797 int kdbus_get_name_owner(DBusConnection* connection, const char* name, char* owner)
798 {
799   int ret;
800   struct nameInfo info;
801
802   ret = kdbus_NameQuery(name, dbus_connection_get_transport(connection), &info);
803   if(ret == 0) //unique id of the name
804   {
805     sprintf(owner, ":1.%llu", (unsigned long long int)info.uniqueId);
806     _dbus_verbose("Unique name discovered:%s\n", owner);
807   }
808   else if((ret != -ENOENT) && (ret != -ENXIO))
809     _dbus_verbose("kdbus error sending name query: err %d (%m)\n", ret);
810
811   return ret;
812 }
813
814 /*
815  *  Asks kdbus for uid of the owner of the name given in the message
816  */
817 dbus_bool_t kdbus_get_unix_user(DBusConnection* connection, const char* name, unsigned long* uid, DBusError* error)
818 {
819   struct nameInfo info;
820   int inter_ret;
821   dbus_bool_t ret = FALSE;
822
823   inter_ret = kdbus_NameQuery(name, dbus_connection_get_transport(connection), &info);
824   if(inter_ret == 0) //name found
825   {
826     _dbus_verbose("User id:%llu\n", (unsigned long long) info.userId);
827     *uid = info.userId;
828     return TRUE;
829   }
830   else if((inter_ret == -ENOENT) || (inter_ret == -ENXIO)) //name has no owner
831     {
832       _dbus_verbose ("Name %s has no owner.\n", name);
833       dbus_set_error (error, DBUS_ERROR_FAILED, "Could not get UID of name '%s': no such name", name);
834     }
835
836   else
837   {
838     _dbus_verbose("kdbus error determining UID: err %d (%m)\n", errno);
839     dbus_set_error (error, DBUS_ERROR_FAILED, "Could not determine UID for '%s'", name);
840   }
841
842   return ret;
843 }
844
845 /*
846  *  Asks kdbus for pid of the owner of the name given in the message
847  */
848 dbus_bool_t kdbus_get_connection_unix_process_id(DBusConnection* connection, const char* name, unsigned long* pid, DBusError* error)
849 {
850         struct nameInfo info;
851         int inter_ret;
852         dbus_bool_t ret = FALSE;
853
854         inter_ret = kdbus_NameQuery(name, dbus_connection_get_transport(connection), &info);
855         if(inter_ret == 0) //name found
856         {
857                 _dbus_verbose("Process id:%llu\n", (unsigned long long) info.processId);
858                 *pid = info.processId;
859                 return TRUE;
860         }
861         else if((inter_ret == -ENOENT) || (inter_ret == -ENXIO)) //name has no owner
862                 dbus_set_error (error, DBUS_ERROR_FAILED, "Could not get PID of name '%s': no such name", name);
863         else
864         {
865                 _dbus_verbose("kdbus error determining PID: err %d (%m)\n", errno);
866                 dbus_set_error (error, DBUS_ERROR_FAILED, "Could not determine PID for '%s'", name);
867         }
868
869         return ret;
870 }
871
872 /*
873  *  Asks kdbus for selinux_security_context of the owner of the name given in the message
874  */
875 dbus_bool_t kdbus_get_connection_unix_selinux_security_context(DBusConnection* connection, DBusMessage* message, DBusMessage* reply, DBusError* error)
876 {
877         char* name = NULL;
878         struct nameInfo info;
879         int inter_ret;
880         dbus_bool_t ret = FALSE;
881
882         dbus_message_get_args(message, NULL, DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID);
883         inter_ret = kdbus_NameQuery(name, dbus_connection_get_transport(connection), &info);
884         if((inter_ret == -ENOENT) || (inter_ret == -ENXIO)) //name has no owner
885                 dbus_set_error (error, DBUS_ERROR_FAILED, "Could not get security context of name '%s': no such name", name);
886         else if(inter_ret < 0)
887         {
888                 _dbus_verbose("kdbus error determining security context: err %d (%m)\n", errno);
889                 dbus_set_error (error, DBUS_ERROR_FAILED, "Could not determine security context for '%s'", name);
890         }
891         else
892         {
893                 if (!dbus_message_append_args (reply, DBUS_TYPE_ARRAY, DBUS_TYPE_BYTE, &info.sec_label, info.sec_label_len, DBUS_TYPE_INVALID))
894                 {
895                       _DBUS_SET_OOM (error);
896                       return FALSE;
897                 }
898                 ret = TRUE;
899         }
900
901         return ret;
902 }
903
904 /**
905  * Gets the UNIX user ID of the connection from kdbus, if known. Returns #TRUE if
906  * the uid is filled in.  Always returns #FALSE on non-UNIX platforms
907  * for now., though in theory someone could hook Windows to NIS or
908  * something.  Always returns #FALSE prior to authenticating the
909  * connection.
910  *
911  * The UID of is only read by bus daemon from kdbus. You can not
912  * call this function from client side of the connection.
913  *
914  * You can ask the bus to tell you the UID of another connection though
915  * if you like; this is done with dbus_bus_get_unix_user().
916  *
917  * @param connection the connection
918  * @param uid return location for the user ID
919  * @returns #TRUE if uid is filled in with a valid user ID
920  */
921 dbus_bool_t
922 dbus_connection_get_unix_user (DBusConnection *connection,
923                                unsigned long  *uid)
924 {
925   _dbus_return_val_if_fail (connection != NULL, FALSE);
926   _dbus_return_val_if_fail (uid != NULL, FALSE);
927
928   if(bus_context_is_kdbus(bus_connection_get_context (connection)))
929     return kdbus_get_unix_user(connection, bus_connection_get_name(connection), uid, NULL);
930
931   return dbus_connection_get_unix_user_dbus(connection, uid);
932 }
933
934 /**
935  * Gets the process ID of the connection if any.
936  * Returns #TRUE if the pid is filled in.
937  *
938  * @param connection the connection
939  * @param pid return location for the process ID
940  * @returns #TRUE if uid is filled in with a valid process ID
941  */
942 dbus_bool_t
943 dbus_connection_get_unix_process_id (DBusConnection *connection,
944              unsigned long  *pid)
945 {
946   _dbus_return_val_if_fail (connection != NULL, FALSE);
947   _dbus_return_val_if_fail (pid != NULL, FALSE);
948
949   if(bus_context_is_kdbus(bus_connection_get_context (connection)))
950     return kdbus_get_connection_unix_process_id(connection, bus_connection_get_name(connection), pid, NULL);
951
952   return dbus_connection_get_unix_process_id_dbus(connection, pid);
953 }
954
955 /*
956  * Create connection structure for given name. It is needed to control starters - activatable services
957  * and for ListQueued method (as long as kdbus is not supporting it). This connections don't have it's own
958  * fd so it is set up on the basis of daemon's transport. Functionality of such connection is limited.
959  */
960 DBusConnection* create_phantom_connection(DBusConnection* connection, const char* name, DBusError* error)
961 {
962     DBusConnection *phantom_connection;
963     DBusString Sname;
964
965     _dbus_string_init_const(&Sname, name);
966
967     phantom_connection = _dbus_connection_new_for_used_transport (dbus_connection_get_transport(connection));
968     if(phantom_connection == NULL)
969         return FALSE;
970     if(!bus_connections_setup_connection(bus_connection_get_connections(connection), phantom_connection))
971     {
972         dbus_connection_unref_phantom(phantom_connection);
973         phantom_connection = NULL;
974         dbus_set_error (error, DBUS_ERROR_FAILED , "Name \"%s\" could not be acquired", name);
975         goto out;
976     }
977     if(!bus_connection_complete(phantom_connection, &Sname, error))
978     {
979         bus_connection_disconnected(phantom_connection);
980         phantom_connection = NULL;
981         goto out;
982     }
983
984     _dbus_verbose ("Created phantom connection for %s\n", bus_connection_get_name(phantom_connection));
985
986 out:
987     return phantom_connection;
988 }
989
990 /*
991  * Registers activatable services as kdbus starters.
992  */
993 dbus_bool_t register_kdbus_starters(DBusConnection* connection)
994 {
995     int i,j, len;
996     char **services;
997     dbus_bool_t retval = FALSE;
998     int fd;
999     BusTransaction *transaction;
1000     DBusString name;
1001     DBusTransport* transport;
1002
1003     transaction = bus_transaction_new (bus_connection_get_context(connection));
1004     if (transaction == NULL)
1005         return FALSE;
1006
1007     if (!bus_activation_list_services (bus_connection_get_activation (connection), &services, &len))
1008         return FALSE;
1009
1010     transport = dbus_connection_get_transport(connection);
1011
1012     if(!_dbus_transport_get_socket_fd (transport, &fd))
1013       return FALSE;
1014
1015     _dbus_string_init(&name);
1016
1017     for(i=0; i<len; i++)
1018     {
1019 #ifdef POLICY_TO_KDBUS
1020         if(!register_kdbus_policy(services[i], transport, geteuid()))
1021           goto out;
1022 #endif
1023
1024         if (request_kdbus_name(fd, services[i], (DBUS_NAME_FLAG_ALLOW_REPLACEMENT | KDBUS_NAME_STARTER_NAME) , 0) < 0)
1025             goto out;
1026
1027         if(!_dbus_string_append(&name, services[i]))
1028                 goto out;
1029         if(!bus_registry_ensure (bus_connection_get_registry (connection), &name, connection,
1030                         (DBUS_NAME_FLAG_ALLOW_REPLACEMENT | KDBUS_NAME_STARTER_NAME), transaction, NULL))
1031                 goto out;
1032         if(!_dbus_string_set_length(&name, 0))
1033                 goto out;
1034     }
1035     retval = TRUE;
1036
1037 out:
1038     if(retval == FALSE)
1039     {
1040         for(j=0; j<i; j++)
1041             release_kdbus_name(fd, services[j], 0);
1042     }
1043     dbus_free_string_array (services);
1044     _dbus_string_free(&name);
1045     bus_transaction_cancel_and_free(transaction);
1046     return retval;
1047 }
1048
1049 /*
1050  * Updates kdbus starters (activatable services) after configuration was reloaded.
1051  * It releases all previous starters and registers all new.
1052  */
1053 dbus_bool_t update_kdbus_starters(DBusConnection* connection)
1054 {
1055     dbus_bool_t retval = FALSE;
1056     DBusList **services_old;
1057     DBusList *link;
1058     BusService *service = NULL;
1059     BusTransaction *transaction;
1060     int fd;
1061
1062     transaction = bus_transaction_new (bus_connection_get_context(connection));
1063     if (transaction == NULL)
1064         return FALSE;
1065
1066     if(!_dbus_transport_get_socket_fd(dbus_connection_get_transport(connection), &fd))
1067         goto out;
1068
1069     services_old = bus_connection_get_services_owned(connection);
1070     link = _dbus_list_get_first_link(services_old);
1071     link = _dbus_list_get_next_link (services_old, link); //skip org.freedesktop.DBus which is not starter
1072
1073     while (link != NULL)
1074     {
1075         int ret;
1076
1077         service = (BusService*) link->data;
1078         if(service == NULL)
1079             goto out;
1080
1081         ret = release_kdbus_name(fd, bus_service_get_name(service), 0);
1082
1083         if (ret == DBUS_RELEASE_NAME_REPLY_RELEASED)
1084         {
1085             if(!bus_service_remove_owner(service, connection, transaction, NULL))
1086                 _dbus_verbose ("Unable to remove\n");
1087         }
1088         else if(ret < 0)
1089             goto out;
1090
1091         link = _dbus_list_get_next_link (services_old, link);
1092     }
1093
1094     if(!register_kdbus_starters(connection))
1095     {
1096         _dbus_verbose ("Registering kdbus starters for dbus activatable names failed!\n");
1097         goto out;
1098     }
1099     retval = TRUE;
1100
1101 out:
1102         bus_transaction_cancel_and_free(transaction);
1103     return retval;
1104 }
1105
1106 /*
1107  * Analyzes system broadcasts about id and name changes.
1108  * Basing on this it sends NameAcquired and NameLost signals and clear phantom connections.
1109  */
1110 void handleNameOwnerChanged(DBusMessage *msg, BusTransaction *transaction, DBusConnection *connection)
1111 {
1112     const char *name, *old, *new;
1113
1114     if(!dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &name, DBUS_TYPE_STRING, &old, DBUS_TYPE_STRING, &new, DBUS_TYPE_INVALID))
1115     {
1116         _dbus_verbose ("Couldn't get args of NameOwnerChanged signal.\n");//, error.message);
1117         return;
1118     }
1119
1120     _dbus_verbose ("Got NameOwnerChanged signal:\nName: %s\nOld: %s\nNew: %s\n", name, old, new);
1121
1122     if(!strncmp(name, ":1.", 3))/*if it starts from :1. it is unique name - this might be IdRemoved info*/
1123     {
1124         if(!strcmp(name, old))  //yes it is - someone has disconnected
1125         {
1126             DBusConnection* conn;
1127
1128             conn = bus_connections_find_conn_by_name(bus_connection_get_connections(connection), name);
1129             if(conn)
1130                 bus_connection_disconnected(conn);
1131         }
1132     }
1133     else //it is well-known name
1134     {
1135         if((*old != 0) && (strcmp(old, bus_connection_get_name(connection))))
1136         {
1137             DBusMessage *message;
1138
1139             if(bus_connections_find_conn_by_name(bus_connection_get_connections(connection), old) == NULL)
1140                 goto next;
1141
1142             _dbus_verbose ("Owner '%s' lost name '%s'. Sending NameLost.\n", old, name);
1143
1144             message = dbus_message_new_signal (DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS, "NameLost");
1145             if (message == NULL)
1146                 goto next;
1147
1148             if (!dbus_message_set_destination (message, old) || !dbus_message_append_args (message,
1149                                                                  DBUS_TYPE_STRING, &name,
1150                                                                  DBUS_TYPE_INVALID))
1151             {
1152                 dbus_message_unref (message);
1153                 goto next;
1154             }
1155
1156             bus_transaction_send_from_driver (transaction, connection, message);
1157             dbus_message_unref (message);
1158         }
1159     next:
1160         if((*new != 0) && (strcmp(new, bus_connection_get_name(connection))))
1161         {
1162             DBusMessage *message;
1163
1164             _dbus_verbose ("Owner '%s' acquired name '%s'. Sending NameAcquired.\n", new, name);
1165
1166             message = dbus_message_new_signal (DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS, "NameAcquired");
1167             if (message == NULL)
1168                 return;
1169
1170             if (!dbus_message_set_destination (message, new) || !dbus_message_append_args (message,
1171                                                                  DBUS_TYPE_STRING, &name,
1172                                                                  DBUS_TYPE_INVALID))
1173             {
1174                 dbus_message_unref (message);
1175                 return;
1176             }
1177
1178             bus_transaction_send_from_driver (transaction, connection, message);
1179             dbus_message_unref (message);
1180         }
1181     }
1182
1183     if(bus_transaction_send(transaction, connection, msg))
1184       _dbus_verbose ("NameOwnerChanged sent\n");
1185     else
1186       _dbus_verbose ("Sending NameOwnerChanged failed\n");
1187 }