1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
|
/*
* Copyright (c) 2012, 2013, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Intel Corporation nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <errno.h>
#include <murphy/common/macros.h>
#include <murphy/common/mm.h>
#include <murphy/common/log.h>
#include <murphy/common/list.h>
#include <murphy/common/hashtbl.h>
#include <murphy/common/refcnt.h>
#include <murphy/common/utils.h>
#include <murphy/common/mainloop.h>
#include <murphy/common/dbus-sdbus.h>
#define BUS_SERVICE "org.freedesktop.DBus"
#define BUS_PATH "/org/freedesktop/DBus"
#define BUS_INTERFACE "org.freedesktop.DBus"
#define BUS_NAME_CHANGED "NameOwnerChanged"
#define BUS_GET_OWNER "GetNameOwner"
/* XXX check these... */
#define SDBUS_ERROR_FAILED "org.DBus.error.failed"
/* D-Bus name request flags and reply statuses. */
#define SDBUS_NAME_REQUEST_REPLACE 0x2
#define SDBUS_NAME_REQUEST_DONTQ 0x4
#define SDBUS_NAME_STATUS_OWNER 0x1
#define SDBUS_NAME_STATUS_QUEUING 0x2
#define SDBUS_NAME_STATUS_EXISTS 0x3
#define SDBUS_NAME_STATUS_GOTIT 0x4
#define SDBUS_NAME_STATUS_RELEASED 0x1
#define SDBUS_NAME_STATUS_UNKNOWN 0x2
#define SDBUS_NAME_STATUS_FOREIGN 0x3
#define USEC_TO_MSEC(usec) ((unsigned int)((usec) / 1000))
#define MSEC_TO_USEC(msec) ((uint64_t)(msec) * 1000)
struct mrp_dbus_s {
char *address; /* bus address */
sd_bus *bus; /* actual D-BUS connection */
mrp_mainloop_t *ml; /* murphy mainloop */
mrp_subloop_t *sl; /* subloop for pumping the bus */
mrp_htbl_t *objects; /* object path (refcount) table */
mrp_htbl_t *methods; /* method handler table */
mrp_htbl_t *signals; /* signal handler table */
mrp_list_hook_t name_trackers; /* peer (name) watchers */
mrp_list_hook_t calls; /* pending calls */
uint32_t call_id; /* next call id */
const char *unique_name; /* our unique D-BUS address */
int priv; /* whether a private connection */
int signal_filter; /* if signal dispatching is set up */
int register_fallback; /* if the fallback object is set up */
mrp_refcnt_t refcnt; /* reference count */
};
struct mrp_dbus_msg_s {
sd_bus_message *msg; /* actual D-Bus message */
mrp_refcnt_t refcnt; /* reference count */
mrp_list_hook_t arrays; /* implicitly freed related arrays */
};
typedef struct {
mrp_dbus_type_t type;
mrp_list_hook_t hook;
void *items;
size_t nitem;
} msg_array_t;
/*
* Notes:
*
* At the moment we administer DBUS method and signal handlers
* in a very primitive way (subject to be changed later). For
* every bus instance we maintain two hash tables, one for methods
* and another for signals. Each method and signal handler is
* hashed in only by it's method/signal name to a linked list of
* method or signal handlers.
*
* When dispatching a method, we look up the chain with a matching
* method name, or the chain for "" in case a matching chain is
* not found, and invoke the handler which best matches the
* received message (by looking at the path, interface and name).
* Only one such handler is invoked at most.
*
* For signals we look up both the chain with a matching name and
* the chain for "" and invoke all signal handlers that match the
* received message (regardless of their return value).
*/
typedef struct {
char *path; /* object path */
int cnt; /* reference count */
} object_t;
typedef struct {
char *member; /* signal/method name */
mrp_list_hook_t handlers; /* handlers with matching member */
} handler_list_t;
typedef struct {
mrp_list_hook_t hook;
char *sender;
char *path;
char *interface;
char *member;
mrp_dbus_handler_t handler;
void *user_data;
} handler_t;
#define method_t handler_t
#define signal_t handler_t
typedef struct {
mrp_list_hook_t hook; /* hook to name tracker list */
char *name; /* name to track */
mrp_dbus_name_cb_t cb; /* status change callback */
void *user_data; /* opaque callback user data */
int32_t qid; /* initial query ID */
} name_tracker_t;
typedef struct {
mrp_dbus_t *dbus; /* DBUS connection */
int32_t id; /* call id */
mrp_dbus_reply_cb_t cb; /* completion notification callback */
void *user_data; /* opaque callback data */
uint64_t serial; /* DBUS call */
mrp_list_hook_t hook; /* hook to list of pending calls */
sd_bus_message *msg; /* original message */
} call_t;
typedef struct {
mrp_mainloop_t *ml; /* mainloop for bus connection */
const char *address; /* address of bus */
} bus_spec_t;
static mrp_htbl_t *buses;
static int dispatch_signal(sd_bus *b, int r, sd_bus_message *msg, void *data);
static int dispatch_method(sd_bus *b, int r, sd_bus_message *msg, void *data);
static void purge_name_trackers(mrp_dbus_t *dbus);
static void purge_calls(mrp_dbus_t *dbus);
static void handler_list_free_cb(void *key, void *entry);
static void handler_free(handler_t *h);
static int name_owner_change_cb(mrp_dbus_t *dbus, mrp_dbus_msg_t *m,
void *data);
static void call_free(call_t *call);
static void object_free_cb(void *key, void *entry);
static int purge_objects(void *key, void *entry, void *user_data)
{
mrp_dbus_t *dbus = (mrp_dbus_t *)user_data;
object_t *o = (object_t *)entry;
MRP_UNUSED(key);
sd_bus_remove_object(dbus->bus, o->path, dispatch_method, dbus);
return MRP_HTBL_ITER_MORE;
}
static int purge_filters(void *key, void *entry, void *user_data)
{
mrp_dbus_t *dbus = (mrp_dbus_t *)user_data;
handler_list_t *l = (handler_list_t *)entry;
mrp_list_hook_t *p, *n;
handler_t *h;
MRP_UNUSED(key);
mrp_list_foreach(&l->handlers, p, n) {
h = mrp_list_entry(p, handler_t, hook);
mrp_dbus_remove_filter(dbus,
h->sender, h->path, h->interface,
h->member, NULL);
}
return MRP_HTBL_ITER_MORE;
}
static void dbus_disconnect(mrp_dbus_t *dbus)
{
if (dbus) {
mrp_htbl_remove(buses, dbus->bus, FALSE);
if (dbus->objects) {
mrp_htbl_foreach(dbus->signals, purge_objects, dbus);
mrp_htbl_destroy(dbus->objects, TRUE);
}
if (dbus->signals) {
mrp_htbl_foreach(dbus->signals, purge_filters, dbus);
mrp_htbl_destroy(dbus->signals, TRUE);
}
if (dbus->methods)
mrp_htbl_destroy(dbus->methods, TRUE);
purge_name_trackers(dbus);
purge_calls(dbus);
if (dbus->bus != NULL) {
if (dbus->signal_filter)
sd_bus_remove_filter(dbus->bus, dispatch_signal, dbus);
if (dbus->register_fallback)
sd_bus_remove_fallback(dbus->bus, "/", dispatch_method, dbus);
if (dbus->priv)
sd_bus_close(dbus->bus);
else
sd_bus_unref(dbus->bus);
}
mrp_free(dbus->address);
dbus->bus = NULL;
dbus->ml = NULL;
mrp_free(dbus);
}
}
static int bus_cmp(const void *key1, const void *key2)
{
return key2 - key1;
}
static uint32_t bus_hash(const void *key)
{
uint32_t h;
h = (ptrdiff_t)key;
h >>= 2 * sizeof(key);
return h;
}
static int find_bus_by_spec(void *key, void *object, void *user_data)
{
mrp_dbus_t *dbus = (mrp_dbus_t *)object;
bus_spec_t *spec = (bus_spec_t *)user_data;
MRP_UNUSED(key);
if (dbus->ml == spec->ml && !strcmp(dbus->address, spec->address))
return TRUE;
else
return FALSE;
}
static mrp_dbus_t *dbus_get(mrp_mainloop_t *ml, const char *address)
{
mrp_htbl_config_t hcfg;
bus_spec_t spec;
if (buses == NULL) {
mrp_clear(&hcfg);
hcfg.comp = bus_cmp;
hcfg.hash = bus_hash;
hcfg.free = NULL;
buses = mrp_htbl_create(&hcfg);
return NULL;
}
else {
spec.ml = ml;
spec.address = address;
return mrp_htbl_find(buses, find_bus_by_spec, &spec);
}
}
mrp_dbus_t *mrp_dbus_connect(mrp_mainloop_t *ml, const char *address,
mrp_dbus_err_t *errp)
{
mrp_htbl_config_t hcfg;
mrp_dbus_t *dbus;
if ((dbus = dbus_get(ml, address)) != NULL)
return mrp_dbus_ref(dbus);
if ((dbus = mrp_allocz(sizeof(*dbus))) == NULL)
return NULL;
mrp_list_init(&dbus->calls);
mrp_list_init(&dbus->name_trackers);
mrp_refcnt_init(&dbus->refcnt);
dbus->ml = ml;
mrp_dbus_error_init(errp);
/*
* connect to the bus
*/
if (!strcmp(address, "system")) {
if (sd_bus_open_system(&dbus->bus) != 0)
goto fail;
}
else if (!strcmp(address, "session")) {
if (sd_bus_open_user(&dbus->bus) != 0)
goto fail;
}
else {
dbus->priv = TRUE;
if (sd_bus_new(&dbus->bus) != 0)
goto fail;
else {
if (sd_bus_set_address(dbus->bus, address) != 0)
goto fail;
if (sd_bus_start(dbus->bus) != 0)
goto fail;
}
}
dbus->address = mrp_strdup(address);
if (sd_bus_get_unique_name(dbus->bus, &dbus->unique_name) != 0)
goto fail;
/*
* set up with mainloop
*/
if (!mrp_dbus_setup_with_mainloop(ml, dbus->bus))
goto fail;
/*
* set up our message dispatchers and take our name on the bus
*/
if (sd_bus_add_filter(dbus->bus, dispatch_signal, dbus) != 0) {
mrp_dbus_error_set(errp, SDBUS_ERROR_FAILED,
"Failed to set up signal dispatching.");
goto fail;
}
dbus->signal_filter = TRUE;
if (sd_bus_add_fallback(dbus->bus, "/", dispatch_method, dbus) != 0) {
mrp_dbus_error_set(errp, SDBUS_ERROR_FAILED,
"Failed to set up method dispatching.");
goto fail;
}
dbus->register_fallback = TRUE;
mrp_clear(&hcfg);
hcfg.comp = mrp_string_comp;
hcfg.hash = mrp_string_hash;
hcfg.free = object_free_cb;
if ((dbus->objects = mrp_htbl_create(&hcfg)) == NULL) {
mrp_dbus_error_set(errp, SDBUS_ERROR_FAILED,
"Failed to create DBUS object path table.");
goto fail;
}
hcfg.free = handler_list_free_cb;
if ((dbus->methods = mrp_htbl_create(&hcfg)) == NULL) {
mrp_dbus_error_set(errp, SDBUS_ERROR_FAILED,
"Failed to create DBUS method table.");
goto fail;
}
if ((dbus->signals = mrp_htbl_create(&hcfg)) == NULL) {
mrp_dbus_error_set(errp, SDBUS_ERROR_FAILED,
"Failed to create DBUS signal table.");
goto fail;
}
/*
* install handler for NameOwnerChanged for tracking clients/peers
*/
if (!mrp_dbus_add_signal_handler(dbus,
BUS_SERVICE, BUS_PATH, BUS_INTERFACE,
BUS_NAME_CHANGED, name_owner_change_cb,
NULL)) {
mrp_dbus_error_set(errp, SDBUS_ERROR_FAILED,
"Failed to install NameOwnerChanged handler.");
goto fail;
}
/* install a 'safe' filter to avoid receiving all name change signals */
mrp_dbus_install_filter(dbus,
BUS_SERVICE, BUS_PATH, BUS_INTERFACE,
BUS_NAME_CHANGED, BUS_SERVICE, NULL);
mrp_list_init(&dbus->name_trackers);
dbus->call_id = 1;
if (mrp_htbl_insert(buses, dbus->bus, dbus))
return dbus;
fail:
dbus_disconnect(dbus);
return NULL;
}
mrp_dbus_t *mrp_dbus_ref(mrp_dbus_t *dbus)
{
return mrp_ref_obj(dbus, refcnt);
}
int mrp_dbus_unref(mrp_dbus_t *dbus)
{
if (mrp_unref_obj(dbus, refcnt)) {
dbus_disconnect(dbus);
return TRUE;
}
else
return FALSE;
}
int mrp_dbus_acquire_name(mrp_dbus_t *dbus, const char *name,
mrp_dbus_err_t *error)
{
int flags = SDBUS_NAME_REQUEST_REPLACE | SDBUS_NAME_REQUEST_DONTQ;
int status;
mrp_dbus_error_init(error);
status = sd_bus_request_name(dbus->bus, name, flags);
if (status == SDBUS_NAME_STATUS_OWNER || status == SDBUS_NAME_STATUS_GOTIT)
return TRUE;
else {
mrp_dbus_error_set(error, SDBUS_ERROR_FAILED, "failed to request name");
return FALSE;
}
}
int mrp_dbus_release_name(mrp_dbus_t *dbus, const char *name,
mrp_dbus_err_t *error)
{
int status;
mrp_dbus_error_init(error);
status = sd_bus_release_name(dbus->bus, name);
if (status == SDBUS_NAME_STATUS_RELEASED)
return TRUE;
else {
mrp_dbus_error_set(error, SDBUS_ERROR_FAILED, "failed to release name");
return FALSE;
}
}
const char *mrp_dbus_get_unique_name(mrp_dbus_t *dbus)
{
return dbus->unique_name;
}
static void name_owner_query_cb(mrp_dbus_t *dbus, mrp_dbus_msg_t *m, void *data)
{
name_tracker_t *t = (name_tracker_t *)data;
const char *owner;
int state;
if (t->cb != NULL) { /* tracker still active */
t->qid = 0;
state = !mrp_dbus_msg_is_error(m);
if (!mrp_dbus_msg_read_basic(m, MRP_DBUS_TYPE_STRING, &owner))
owner = "<unknown>";
t->cb(dbus, t->name, state, owner, t->user_data);
}
else /* already requested to delete */
mrp_free(t);
}
static int name_owner_change_cb(mrp_dbus_t *dbus, mrp_dbus_msg_t *m, void *data)
{
const char *name, *prev, *next;
mrp_list_hook_t *p, *n;
name_tracker_t *t;
MRP_UNUSED(data);
if (mrp_dbus_msg_type(m) != MRP_DBUS_MESSAGE_TYPE_SIGNAL)
return FALSE;
if (!mrp_dbus_msg_read_basic(m, MRP_DBUS_TYPE_STRING, &name) ||
!mrp_dbus_msg_read_basic(m, MRP_DBUS_TYPE_STRING, &prev) ||
!mrp_dbus_msg_read_basic(m, MRP_DBUS_TYPE_STRING, &next))
return FALSE;
#if 0
/*
* Notes: XXX TODO
* In principle t->cb could call mrp_dbus_forget for some other D-BUS
* address than name. If that happened to be n (== p->hook.next) this
* would result in a crash or memory corruption in the next iteration
* of this loop (when handling n). We can easily get around this
* problem by
*
* 1. administering in mrp_dbus_t that we're handing a NameOwnerChange
* 2. checking for this in mrp_dbus_forget_name and if it is the case
* only marking the affected entry for deletion
* 3. removing entries marked for deletion in this loop (or just
* ignoring them and making another pass in the end removing any
* such entry).
*/
#endif
mrp_list_foreach(&dbus->name_trackers, p, n) {
t = mrp_list_entry(p, name_tracker_t, hook);
if (!strcmp(name, t->name))
t->cb(dbus, name, next && *next, next, t->user_data);
}
return TRUE;
}
int mrp_dbus_follow_name(mrp_dbus_t *dbus, const char *name,
mrp_dbus_name_cb_t cb, void *user_data)
{
name_tracker_t *t;
if ((t = mrp_allocz(sizeof(*t))) != NULL) {
if ((t->name = mrp_strdup(name)) != NULL) {
t->cb = cb;
t->user_data = user_data;
if (mrp_dbus_install_filter(dbus,
BUS_SERVICE, BUS_PATH, BUS_INTERFACE,
BUS_NAME_CHANGED, name,
NULL)) {
mrp_list_append(&dbus->name_trackers, &t->hook);
t->qid = mrp_dbus_call(dbus,
BUS_SERVICE, BUS_PATH, BUS_INTERFACE,
BUS_GET_OWNER, 5000,
name_owner_query_cb, t,
MRP_DBUS_TYPE_STRING, t->name,
MRP_DBUS_TYPE_INVALID);
return TRUE;
}
else {
mrp_free(t->name);
mrp_free(t);
}
}
}
return FALSE;
}
int mrp_dbus_forget_name(mrp_dbus_t *dbus, const char *name,
mrp_dbus_name_cb_t cb, void *user_data)
{
mrp_list_hook_t *p, *n;
name_tracker_t *t;
mrp_dbus_remove_filter(dbus,
BUS_SERVICE, BUS_PATH, BUS_INTERFACE,
BUS_NAME_CHANGED, name,
NULL);
mrp_list_foreach(&dbus->name_trackers, p, n) {
t = mrp_list_entry(p, name_tracker_t, hook);
if (t->cb == cb && t->user_data == user_data && !strcmp(t->name,name)) {
mrp_list_delete(&t->hook);
mrp_free(t->name);
if (!t->qid)
mrp_free(t);
else {
t->cb = NULL;
t->user_data = NULL;
t->name = NULL;
}
return TRUE;
}
}
return FALSE;
}
static void purge_name_trackers(mrp_dbus_t *dbus)
{
mrp_list_hook_t *p, *n;
name_tracker_t *t;
mrp_list_foreach(&dbus->name_trackers, p, n) {
t = mrp_list_entry(p, name_tracker_t, hook);
mrp_list_delete(p);
mrp_dbus_remove_filter(dbus,
BUS_SERVICE, BUS_PATH, BUS_INTERFACE,
BUS_NAME_CHANGED, t->name,
NULL);
mrp_free(t->name);
mrp_free(t);
}
}
static handler_t *handler_alloc(const char *sender, const char *path,
const char *interface, const char *member,
mrp_dbus_handler_t handler, void *user_data)
{
handler_t *h;
if ((h = mrp_allocz(sizeof(*h))) != NULL) {
h->sender = mrp_strdup(sender);
h->path = mrp_strdup(path);
h->interface = mrp_strdup(interface);
h->member = mrp_strdup(member);
if ((path && !h->path) || !h->interface || !h->member) {
handler_free(h);
return NULL;
}
h->handler = handler;
h->user_data = user_data;
return h;
}
return NULL;
}
static void handler_free(handler_t *h)
{
if (h != NULL) {
mrp_free(h->sender);
mrp_free(h->path);
mrp_free(h->interface);
mrp_free(h->member);
mrp_free(h);
}
}
static handler_list_t *handler_list_alloc(const char *member)
{
handler_list_t *l;
if ((l = mrp_allocz(sizeof(*l))) != NULL) {
if ((l->member = mrp_strdup(member)) != NULL)
mrp_list_init(&l->handlers);
else {
mrp_free(l);
l = NULL;
}
}
return l;
}
static inline void handler_list_free(handler_list_t *l)
{
mrp_list_hook_t *p, *n;
handler_t *h;
mrp_list_foreach(&l->handlers, p, n) {
h = mrp_list_entry(p, handler_t, hook);
mrp_list_delete(p);
handler_free(h);
}
mrp_free(l->member);
mrp_free(l);
}
static void handler_list_free_cb(void *key, void *entry)
{
MRP_UNUSED(key);
handler_list_free((handler_list_t *)entry);
}
static inline int handler_specificity(handler_t *h)
{
int score = 0;
if (h->path && *h->path)
score |= 0x4;
if (h->interface && *h->interface)
score |= 0x2;
if (h->member && *h->member)
score |= 0x1;
return score;
}
static void handler_list_insert(handler_list_t *l, handler_t *handler)
{
mrp_list_hook_t *p, *n;
handler_t *h;
int score;
score = handler_specificity(handler);
mrp_list_foreach(&l->handlers, p, n) {
h = mrp_list_entry(p, handler_t, hook);
if (score >= handler_specificity(h)) {
mrp_list_append(h->hook.prev, &handler->hook); /* add before h */
return;
}
}
mrp_list_append(&l->handlers, &handler->hook);
}
static handler_t *handler_list_lookup(handler_list_t *l, const char *path,
const char *interface, const char *member,
mrp_dbus_handler_t handler,
void *user_data)
{
mrp_list_hook_t *p, *n;
handler_t *h;
mrp_list_foreach(&l->handlers, p, n) {
h = mrp_list_entry(p, handler_t, hook);
if (h->handler == handler && user_data == h->user_data &&
path && !strcmp(path, h->path) &&
interface && !strcmp(interface, h->interface) &&
member && !strcmp(member, h->member))
return h;
}
return NULL;
}
static handler_t *handler_list_find(handler_list_t *l, const char *path,
const char *interface, const char *member)
{
#define MATCHES(h, field) (!*field || !*h->field || !strcmp(field, h->field))
mrp_list_hook_t *p, *n;
handler_t *h;
mrp_list_foreach(&l->handlers, p, n) {
h = mrp_list_entry(p, handler_t, hook);
if (MATCHES(h, path) && MATCHES(h, interface) && MATCHES(h, member))
return h;
}
return NULL;
#undef MATCHES
}
static void object_free_cb(void *key, void *entry)
{
object_t *o = (object_t *)entry;
MRP_UNUSED(key);
mrp_free(o->path);
mrp_free(o);
}
static object_t *object_add(mrp_dbus_t *dbus, const char *path)
{
object_t *o;
o = mrp_alloc(sizeof(*o));
if (o != NULL) {
o->path = mrp_strdup(path);
o->cnt = 1;
if (o->path == NULL) {
mrp_free(o);
return NULL;
}
if (sd_bus_add_object(dbus->bus, o->path, dispatch_method, dbus) == 0) {
if (mrp_htbl_insert(dbus->objects, o->path, o))
return o;
else
sd_bus_remove_object(dbus->bus, o->path, dispatch_method, dbus);
}
mrp_free(o->path);
mrp_free(o);
}
return NULL;
}
static object_t *object_lookup(mrp_dbus_t *dbus, const char *path)
{
return mrp_htbl_lookup(dbus->objects, (void *)path);
}
static int object_ref(mrp_dbus_t *dbus, const char *path)
{
object_t *o;
if ((o = object_lookup(dbus, path)) != NULL) {
o->cnt++;
return TRUE;
}
if (object_add(dbus, path) != NULL)
return TRUE;
else
return FALSE;
}
static void object_unref(mrp_dbus_t *dbus, const char *path)
{
object_t *o;
if ((o = object_lookup(dbus, path)) != NULL) {
o->cnt--;
if (o->cnt <= 0) {
mrp_htbl_remove(dbus->objects, (void *)path, FALSE);
sd_bus_remove_object(dbus->bus, o->path, dispatch_method, dbus);
mrp_free(o->path);
mrp_free(o);
}
}
}
int mrp_dbus_export_method(mrp_dbus_t *dbus, const char *path,
const char *interface, const char *member,
mrp_dbus_handler_t handler, void *user_data)
{
handler_list_t *methods;
handler_t *m;
if (!object_ref(dbus, path))
return FALSE;
if ((methods = mrp_htbl_lookup(dbus->methods, (void *)member)) == NULL) {
if ((methods = handler_list_alloc(member)) == NULL)
goto fail;
mrp_htbl_insert(dbus->methods, methods->member, methods);
}
m = handler_alloc(NULL, path, interface, member, handler, user_data);
if (m != NULL) {
handler_list_insert(methods, m);
return TRUE;
}
fail:
object_unref(dbus, path);
return FALSE;
}
int mrp_dbus_remove_method(mrp_dbus_t *dbus, const char *path,
const char *interface, const char *member,
mrp_dbus_handler_t handler, void *user_data)
{
handler_list_t *methods;
handler_t *m;
if ((methods = mrp_htbl_lookup(dbus->methods, (void *)member)) == NULL)
return FALSE;
m = handler_list_lookup(methods, path, interface, member,
handler, user_data);
if (m != NULL) {
object_unref(dbus, path);
mrp_list_delete(&m->hook);
handler_free(m);
return TRUE;
}
else
return FALSE;
}
int mrp_dbus_add_signal_handler(mrp_dbus_t *dbus, const char *sender,
const char *path, const char *interface,
const char *member, mrp_dbus_handler_t handler,
void *user_data)
{
handler_list_t *signals;
handler_t *s;
if ((signals = mrp_htbl_lookup(dbus->signals, (void *)member)) == NULL) {
if ((signals = handler_list_alloc(member)) == NULL)
return FALSE;
if (!mrp_htbl_insert(dbus->signals, signals->member, signals)) {
handler_list_free(signals);
return FALSE;
}
}
s = handler_alloc(sender, path, interface, member, handler, user_data);
if (s != NULL) {
handler_list_insert(signals, s);
return TRUE;
}
else {
handler_free(s);
if (mrp_list_empty(&signals->handlers))
mrp_htbl_remove(dbus->signals, signals->member, TRUE);
return FALSE;
}
}
int mrp_dbus_del_signal_handler(mrp_dbus_t *dbus, const char *sender,
const char *path, const char *interface,
const char *member, mrp_dbus_handler_t handler,
void *user_data)
{
handler_list_t *signals;
handler_t *s;
MRP_UNUSED(sender);
if ((signals = mrp_htbl_lookup(dbus->signals, (void *)member)) == NULL)
return FALSE;
s = handler_list_lookup(signals, path, interface, member,
handler, user_data);
if (s != NULL) {
mrp_list_delete(&s->hook);
handler_free(s);
if (mrp_list_empty(&signals->handlers))
mrp_htbl_remove(dbus->signals, (void *)member, TRUE);
return TRUE;
}
else
return FALSE;
}
int mrp_dbus_subscribe_signal(mrp_dbus_t *dbus,
mrp_dbus_handler_t handler, void *user_data,
const char *sender, const char *path,
const char *interface, const char *member, ...)
{
va_list ap;
int success;
if (mrp_dbus_add_signal_handler(dbus, sender, path, interface, member,
handler, user_data)) {
va_start(ap, member);
success = mrp_dbus_install_filterv(dbus,
sender, path, interface, member, ap);
va_end(ap);
if (success)
return TRUE;
else
mrp_dbus_del_signal_handler(dbus, sender, path, interface, member,
handler, user_data);
}
return FALSE;
}
int mrp_dbus_unsubscribe_signal(mrp_dbus_t *dbus,
mrp_dbus_handler_t handler, void *user_data,
const char *sender, const char *path,
const char *interface, const char *member, ...)
{
va_list ap;
int status;
status = mrp_dbus_del_signal_handler(dbus, sender, path, interface, member,
handler, user_data);
va_start(ap, member);
status &= mrp_dbus_remove_filterv(dbus,
sender, path, interface, member, ap);
va_end(ap);
return status;
}
int mrp_dbus_install_filterv(mrp_dbus_t *dbus, const char *sender,
const char *path, const char *interface,
const char *member, va_list args)
{
#define ADD_TAG(tag, value) do { \
if (value != NULL) { \
l = snprintf(p, n, "%s%s='%s'", p == filter ? "" : ",", \
tag, value); \
if (l >= n) \
return FALSE; \
n -= l; \
p += l; \
} \
} while (0)
va_list ap;
char filter[1024], *p, argn[16], *val;
int n, l, i;
p = filter;
n = sizeof(filter);
ADD_TAG("type" , "signal");
ADD_TAG("sender" , sender);
ADD_TAG("path" , path);
ADD_TAG("interface", interface);
ADD_TAG("member" , member);
va_copy(ap, args);
i = 0;
while ((val = va_arg(ap, char *)) != NULL) {
snprintf(argn, sizeof(argn), "arg%d", i);
ADD_TAG(argn, val);
i++;
}
va_end(ap);
if (sd_bus_add_match(dbus->bus, filter, NULL, NULL) != 0) {
mrp_log_error("Failed to install filter '%s'.", filter);
return FALSE;
}
else
return TRUE;
}
int mrp_dbus_install_filter(mrp_dbus_t *dbus, const char *sender,
const char *path, const char *interface,
const char *member, ...)
{
va_list ap;
int status;
va_start(ap, member);
status = mrp_dbus_install_filterv(dbus,
sender, path, interface, member, ap);
va_end(ap);
return status;
}
int mrp_dbus_remove_filterv(mrp_dbus_t *dbus, const char *sender,
const char *path, const char *interface,
const char *member, va_list args)
{
va_list ap;
char filter[1024], *p, argn[16], *val;
int n, l, i;
p = filter;
n = sizeof(filter);
ADD_TAG("type" , "signal");
ADD_TAG("sender" , sender);
ADD_TAG("path" , path);
ADD_TAG("interface", interface);
ADD_TAG("member" , member);
va_copy(ap, args);
i = 0;
while ((val = va_arg(ap, char *)) != NULL) {
snprintf(argn, sizeof(argn), "arg%d", i);
ADD_TAG(argn, val);
i++;
}
va_end(ap);
sd_bus_remove_match(dbus->bus, filter, NULL, NULL);
return TRUE;
#undef ADD_TAG
}
int mrp_dbus_remove_filter(mrp_dbus_t *dbus, const char *sender,
const char *path, const char *interface,
const char *member, ...)
{
va_list ap;
int status;
va_start(ap, member);
status = mrp_dbus_remove_filterv(dbus, sender, path, interface, member, ap);
va_end(ap);
return status;
}
static int element_size(mrp_dbus_type_t type)
{
switch (type) {
case MRP_DBUS_TYPE_BYTE: return sizeof(char);
case MRP_DBUS_TYPE_BOOLEAN: return sizeof(uint32_t);
case MRP_DBUS_TYPE_INT16:
case MRP_DBUS_TYPE_UINT16: return sizeof(uint16_t);
case MRP_DBUS_TYPE_INT32:
case MRP_DBUS_TYPE_UINT32: return sizeof(uint32_t);
case MRP_DBUS_TYPE_INT64:
case MRP_DBUS_TYPE_UINT64: return sizeof(uint64_t);
case MRP_DBUS_TYPE_DOUBLE: return sizeof(double);
case MRP_DBUS_TYPE_STRING: return sizeof(char *);
case MRP_DBUS_TYPE_OBJECT_PATH: return sizeof(char *);
case MRP_DBUS_TYPE_SIGNATURE: return sizeof(char *);
default:
return FALSE;
}
}
static inline mrp_dbus_msg_t *create_message(sd_bus_message *msg, int ref)
{
mrp_dbus_msg_t *m;
if (msg != NULL) {
if ((m = mrp_allocz(sizeof(*m))) != NULL) {
mrp_refcnt_init(&m->refcnt);
mrp_list_init(&m->arrays);
if (ref)
m->msg = sd_bus_message_ref(msg);
else
m->msg = msg;
}
return m;
}
else
return NULL;
}
static void free_msg_array(msg_array_t *a)
{
void *ptr;
size_t esize, i;
int string;
if (a == NULL)
return;
mrp_list_delete(&a->hook);
if ((esize = element_size(a->type)) != 0) {
if (a->type == MRP_DBUS_TYPE_STRING ||
a->type == MRP_DBUS_TYPE_OBJECT_PATH ||
a->type == MRP_DBUS_TYPE_SIGNATURE)
string = TRUE;
else
string = FALSE;
if (string)
for (i = 0, ptr = a->items; i < a->nitem; i++, ptr += esize)
mrp_free(ptr);
mrp_free(a->items);
}
else
mrp_log_error("Hmm... looks like we have a corrupted implicit array.");
mrp_free(a);
}
static void free_message(mrp_dbus_msg_t *m)
{
mrp_list_hook_t *p, *n;
msg_array_t *a;
mrp_list_foreach(&m->arrays, p, n) {
a = mrp_list_entry(p, typeof(*a), hook);
free_msg_array(a);
}
mrp_free(m);
}
mrp_dbus_msg_t *mrp_dbus_msg_ref(mrp_dbus_msg_t *m)
{
return mrp_ref_obj(m, refcnt);
}
int mrp_dbus_msg_unref(mrp_dbus_msg_t *m)
{
if (mrp_unref_obj(m, refcnt)) {
sd_bus_message_unref(m->msg);
free_message(m);
return TRUE;
}
else
return FALSE;
}
static inline int verify_type(sd_bus_message *msg, int expected_type)
{
uint8_t type;
if (sd_bus_message_get_type(msg, &type) != 0 || type == expected_type)
return FALSE;
else
return TRUE;
}
static int dispatch_method(sd_bus *bus,int ret, sd_bus_message *msg, void *data)
{
#define SAFESTR(str) (str ? str : "<none>")
mrp_dbus_t *dbus = (mrp_dbus_t *)data;
mrp_dbus_msg_t *m = NULL;
const char *path = sd_bus_message_get_path(msg);
const char *interface = sd_bus_message_get_interface(msg);
const char *member = sd_bus_message_get_member(msg);
int r = FALSE;
handler_list_t *l;
handler_t *h;
MRP_UNUSED(bus);
MRP_UNUSED(ret);
if (!verify_type(msg, MRP_DBUS_MESSAGE_TYPE_METHOD_CALL) || !member)
return r;
mrp_debug("path='%s', interface='%s', member='%s')...",
SAFESTR(path), SAFESTR(interface), SAFESTR(member));
if ((l = mrp_htbl_lookup(dbus->methods, (void *)member)) != NULL) {
retry:
if ((h = handler_list_find(l, path, interface, member)) != NULL) {
sd_bus_message_rewind(msg, TRUE);
if (m == NULL)
m = create_message(msg, TRUE);
if (h->handler(dbus, m, h->user_data))
r = TRUE;
goto out;
}
}
else {
if ((l = mrp_htbl_lookup(dbus->methods, "")) != NULL)
goto retry;
}
out:
if (!r)
mrp_debug("Unhandled method path=%s, %s.%s.", SAFESTR(path),
SAFESTR(interface), SAFESTR(member));
mrp_dbus_msg_unref(m);
return r;
}
static int dispatch_signal(sd_bus *bus,int ret, sd_bus_message *msg, void *data)
{
#define MATCHES(h, field) (!*field || !h->field || !*h->field || \
!strcmp(field, h->field))
mrp_dbus_t *dbus = (mrp_dbus_t *)data;
mrp_dbus_msg_t *m = NULL;
const char *path = sd_bus_message_get_path(msg);
const char *interface = sd_bus_message_get_interface(msg);
const char *member = sd_bus_message_get_member(msg);
mrp_list_hook_t *p, *n;
handler_list_t *l;
handler_t *h;
int retried = FALSE;
int handled = FALSE;
MRP_UNUSED(bus);
MRP_UNUSED(ret);
if (!verify_type(msg, MRP_DBUS_MESSAGE_TYPE_SIGNAL) || !member)
return FALSE;
mrp_debug("%s(path='%s', interface='%s', member='%s')...",
__FUNCTION__, SAFESTR(path), SAFESTR(interface), SAFESTR(member));
if ((l = mrp_htbl_lookup(dbus->signals, (void *)member)) != NULL) {
retry:
mrp_list_foreach(&l->handlers, p, n) {
h = mrp_list_entry(p, handler_t, hook);
if (MATCHES(h,path) && MATCHES(h,interface) && MATCHES(h,member)) {
sd_bus_message_rewind(msg, TRUE);
if (m == NULL)
m = create_message(msg, TRUE);
h->handler(dbus, m, h->user_data);
handled = TRUE;
}
}
}
if (!retried) {
if ((l = mrp_htbl_lookup(dbus->signals, "")) != NULL) {
retried = TRUE;
goto retry;
}
}
if (!handled)
mrp_debug("Unhandled signal path=%s, %s.%s.", SAFESTR(path),
SAFESTR(interface), SAFESTR(member));
mrp_dbus_msg_unref(m);
return FALSE;
#undef MATCHES
#undef SAFESTR
}
static int append_args_strtype(mrp_dbus_msg_t *msg, const char *types,
va_list ap)
{
MRP_UNUSED(msg);
MRP_UNUSED(types);
MRP_UNUSED(ap);
return FALSE;
}
static int append_args_inttype(sd_bus_message *msg, int type, va_list ap)
{
void *vptr;
int atype, elen, i;
void **aptr;
int alen;
char stype[2] = { '\0', '\0' };
int r = 0;
(void)append_args_strtype;
while (type != MRP_DBUS_TYPE_INVALID) {
switch (type) {
case MRP_DBUS_TYPE_BYTE:
case MRP_DBUS_TYPE_BOOLEAN:
case MRP_DBUS_TYPE_INT16:
case MRP_DBUS_TYPE_UINT16:
case MRP_DBUS_TYPE_INT32:
case MRP_DBUS_TYPE_UINT32:
case MRP_DBUS_TYPE_INT64:
case MRP_DBUS_TYPE_UINT64:
case MRP_DBUS_TYPE_DOUBLE:
case MRP_DBUS_TYPE_STRING:
case MRP_DBUS_TYPE_OBJECT_PATH:
case MRP_DBUS_TYPE_SIGNATURE:
case MRP_DBUS_TYPE_UNIX_FD:
vptr = va_arg(ap, void *);
r = sd_bus_message_append_basic(msg, type, vptr);
break;
case MRP_DBUS_TYPE_ARRAY:
atype = va_arg(ap, int);
aptr = va_arg(ap, void **);
alen = va_arg(ap, int);
switch (atype) {
#define LEN(_type, _size) case MRP_DBUS_TYPE_##_type: elen = _size; break
LEN(BYTE , sizeof(uint8_t));
LEN(BOOLEAN , sizeof(uint32_t));
LEN(INT16 , sizeof(int16_t));
LEN(UINT16 , sizeof(uint16_t));
LEN(INT32 , sizeof(int32_t));
LEN(UINT32 , sizeof(uint32_t));
LEN(INT64 , sizeof(int64_t));
LEN(UINT64 , sizeof(uint64_t));
LEN(DOUBLE , sizeof(double));
LEN(STRING , sizeof(const char *));
LEN(OBJECT_PATH, sizeof(const char *));
LEN(SIGNATURE , sizeof(const char *));
LEN(UNIX_FD , sizeof(int));
#undef LEN
default:
return FALSE;
}
stype[0] = atype;
if (sd_bus_message_open_container(msg, type, stype) != 0)
return FALSE;
for (i = 0; i < alen; i++, aptr += elen)
if (sd_bus_message_append_basic(msg, atype, aptr) != 0)
return FALSE;
if (sd_bus_message_close_container(msg) != 0)
return FALSE;
else
return TRUE;
break;
default:
return FALSE;
}
type = va_arg(ap, int);
}
return (r == 0 ? TRUE : FALSE);
}
static int call_reply_cb(sd_bus *bus, int ret, sd_bus_message *msg,
void *user_data)
{
call_t *call = (call_t *)user_data;
mrp_dbus_msg_t *reply = create_message(msg, TRUE);
sd_bus_error error;
MRP_UNUSED(bus);
call->serial = 0;
mrp_list_delete(&call->hook);
if (ret == 0) {
reply = create_message(msg, TRUE);
sd_bus_message_rewind(reply->msg, TRUE);
}
else {
sd_bus_message *err = NULL;
if (ret == ETIMEDOUT)
error = SD_BUS_ERROR_MAKE(MRP_DBUS_ERROR_TIMEOUT,
"D-Bus call timed out");
else
error = SD_BUS_ERROR_MAKE(MRP_DBUS_ERROR_FAILED,
"D-Bus call failed");
if (sd_bus_message_new_method_error(bus, call->msg, &error, &err) == 0)
reply = create_message(err, FALSE);
else
reply = NULL;
}
call->cb(call->dbus, reply, call->user_data);
call_free(call);
mrp_dbus_msg_unref(reply);
return TRUE;
}
int32_t mrp_dbus_call(mrp_dbus_t *dbus, const char *dest, const char *path,
const char *interface, const char *member, int timeout,
mrp_dbus_reply_cb_t cb, void *user_data, int type, ...)
{
va_list ap;
int32_t id;
call_t *call;
sd_bus_message *msg;
int success;
call = NULL;
if (sd_bus_message_new_method_call(dbus->bus, dest, path, interface, member,
&msg) != 0)
return 0;
if (cb != NULL) {
if ((call = mrp_allocz(sizeof(*call))) != NULL) {
mrp_list_init(&call->hook);
call->dbus = dbus;
call->id = dbus->call_id++;
call->cb = cb;
call->user_data = user_data;
id = call->id;
}
else
goto fail;
}
else
id = dbus->call_id++;
if (type == MRP_DBUS_TYPE_INVALID)
success = TRUE;
else {
va_start(ap, type);
success = append_args_inttype(msg, type, ap);
va_end(ap);
}
if (!success)
goto fail;
if (cb == NULL) {
sd_bus_message_set_no_reply(msg, TRUE);
if (sd_bus_send(dbus->bus, msg, NULL) != 0)
goto fail;
sd_bus_message_unref(msg);
}
else {
if (sd_bus_send_with_reply(dbus->bus, msg, call_reply_cb, call,
timeout * 1000, &call->serial) != 0)
goto fail;
mrp_list_append(&dbus->calls, &call->hook);
call->msg = msg;
}
return id;
fail:
sd_bus_message_unref(msg);
call_free(call);
return 0;
}
int mrp_dbus_send_msg(mrp_dbus_t *dbus, mrp_dbus_msg_t *m)
{
/*bus_message_dump(m->msg);*/
if (sd_bus_send(dbus->bus, m->msg, NULL) == 0)
return TRUE;
else
return FALSE;
}
int mrp_dbus_call_cancel(mrp_dbus_t *dbus, int32_t id)
{
mrp_list_hook_t *p, *n;
call_t *call;
mrp_list_foreach(&dbus->calls, p, n) {
call = mrp_list_entry(p, call_t, hook);
if (call->id == id) {
mrp_list_delete(p);
sd_bus_send_with_reply_cancel(dbus->bus, call->serial);
call->serial = 0;
call_free(call);
return TRUE;
}
}
return FALSE;
}
int mrp_dbus_reply(mrp_dbus_t *dbus, mrp_dbus_msg_t *m, int type, ...)
{
va_list ap;
sd_bus_message *rpl;
int success;
if (sd_bus_message_new_method_return(dbus->bus, m->msg, &rpl) != 0)
return FALSE;
va_start(ap, type);
success = append_args_inttype(rpl, type, ap);
va_end(ap);
if (!success)
goto fail;
if (sd_bus_send(dbus->bus, rpl, NULL) != 0)
goto fail;
sd_bus_message_unref(rpl);
return TRUE;
fail:
sd_bus_message_unref(rpl);
return FALSE;
}
int mrp_dbus_reply_error(mrp_dbus_t *dbus, mrp_dbus_msg_t *m,
const char *errname, const char *errmsg, int type, ...)
{
va_list ap;
sd_bus_message *rpl;
int success;
sd_bus_error err = SD_BUS_ERROR_NULL;;
sd_bus_error_set_const(&err, errname, errmsg);
if (sd_bus_message_new_method_error(dbus->bus, m->msg, &err, &rpl) != 0)
return FALSE;
va_start(ap, type);
success = append_args_inttype(rpl, type, ap);
va_end(ap);
if (!success)
goto fail;
if (sd_bus_send(dbus->bus, rpl, NULL) != 0)
goto fail;
sd_bus_message_unref(rpl);
return TRUE;
fail:
sd_bus_message_unref(rpl);
return FALSE;
}
static void call_free(call_t *call)
{
if (call != NULL) {
sd_bus_message_unref(call->msg);
mrp_free(call);
}
}
static void purge_calls(mrp_dbus_t *dbus)
{
mrp_list_hook_t *p, *n;
call_t *call;
mrp_list_foreach(&dbus->calls, p, n) {
call = mrp_list_entry(p, call_t, hook);
mrp_list_delete(&call->hook);
if (call->serial != 0)
sd_bus_send_with_reply_cancel(dbus->bus, call->serial);
mrp_free(call);
}
}
int mrp_dbus_signal(mrp_dbus_t *dbus, const char *dest, const char *path,
const char *interface, const char *member, int type, ...)
{
va_list ap;
sd_bus_message *msg;
int success;
if (sd_bus_message_new_signal(dbus->bus, path, interface, member,
&msg) != 0)
return 0;
va_start(ap, type);
success = append_args_inttype(msg, type, ap);
va_end(ap);
if (!success)
goto fail;
if (dest != NULL)
if (sd_bus_message_set_destination(msg, dest) != 0)
goto fail;
if (sd_bus_send(dbus->bus, msg, NULL) != 0)
goto fail;
sd_bus_message_unref(msg);
return TRUE;
fail:
sd_bus_message_unref(msg);
return 0;
}
mrp_dbus_msg_t *mrp_dbus_msg_method_call(mrp_dbus_t *dbus,
const char *destination,
const char *path,
const char *interface,
const char *member)
{
sd_bus_message *msg;
if (sd_bus_message_new_method_call(dbus->bus, destination,
path, interface, member, &msg) == 0)
return create_message(msg, FALSE);
else
return NULL;
}
mrp_dbus_msg_t *mrp_dbus_msg_method_return(mrp_dbus_t *dbus,
mrp_dbus_msg_t *msg)
{
sd_bus_message *req, *rpl;
req = (sd_bus_message *)msg;
if (sd_bus_message_new_method_return(dbus->bus, req, &rpl) == 0)
return create_message(rpl, FALSE);
else
return NULL;
}
mrp_dbus_msg_t *mrp_dbus_msg_error(mrp_dbus_t *dbus, mrp_dbus_msg_t *m,
mrp_dbus_err_t *err)
{
sd_bus_message *req, *rpl;
req = m->msg;
if (sd_bus_message_new_method_error(dbus->bus, req, err, &rpl) == 0)
return create_message(rpl, FALSE);
else
return NULL;
}
mrp_dbus_msg_t *mrp_dbus_msg_signal(mrp_dbus_t *dbus,
const char *destination,
const char *path,
const char *interface,
const char *member)
{
sd_bus_message *msg = NULL;
if (sd_bus_message_new_signal(dbus->bus, path, interface, member,
&msg) == 0) {
if (destination != NULL) {
if (sd_bus_message_set_destination(msg, destination) != 0) {
sd_bus_message_unref(msg);
msg = NULL;
}
}
}
return create_message(msg, FALSE);
}
mrp_dbus_msg_type_t mrp_dbus_msg_type(mrp_dbus_msg_t *m)
{
uint8_t type;
if (sd_bus_message_get_type(m->msg, &type) == 0)
return (mrp_dbus_msg_type_t)type;
else
return MRP_DBUS_MESSAGE_TYPE_INVALID;
}
#define WRAP_GETTER(type, what) \
type mrp_dbus_msg_##what(mrp_dbus_msg_t *m) \
{ \
return sd_bus_message_get_##what((sd_bus_message *)m->msg); \
} \
struct __mrp_dbus_allow_trailing_semicolon
WRAP_GETTER(const char *, path);
WRAP_GETTER(const char *, interface);
WRAP_GETTER(const char *, member);
WRAP_GETTER(const char *, destination);
WRAP_GETTER(const char *, sender);
#undef WRAP_GETTER
int mrp_dbus_msg_open_container(mrp_dbus_msg_t *m, char type,
const char *contents)
{
return sd_bus_message_open_container(m->msg, type, contents) == 0;
}
int mrp_dbus_msg_close_container(mrp_dbus_msg_t *m)
{
return sd_bus_message_close_container(m->msg) == 0;
}
int mrp_dbus_msg_append_basic(mrp_dbus_msg_t *m, char type, void *valuep)
{
return sd_bus_message_append_basic(m->msg, type, valuep) == 0;
}
int mrp_dbus_msg_enter_container(mrp_dbus_msg_t *m, char type,
const char *contents)
{
return sd_bus_message_enter_container(m->msg, type, contents) == 1;
}
int mrp_dbus_msg_exit_container(mrp_dbus_msg_t *m)
{
return sd_bus_message_exit_container(m->msg) == 1;
}
int mrp_dbus_msg_read_basic(mrp_dbus_msg_t *m, char type, void *valuep)
{
return sd_bus_message_read_basic(m->msg, type, valuep) == 1;
}
int mrp_dbus_msg_read_array(mrp_dbus_msg_t *m, char type,
void **itemsp, size_t *nitemp)
{
char sub[2] = { (char)type, '\0' };
msg_array_t *a;
int offs;
size_t esize;
if ((esize = element_size(type)) == 0)
return FALSE;
if (!mrp_dbus_msg_enter_container(m, MRP_DBUS_TYPE_ARRAY, sub))
return FALSE;
if ((a = mrp_allocz(sizeof(*a))) == NULL)
goto fail;
a->type = type;
mrp_list_init(&a->hook);
offs = 0;
while (mrp_dbus_msg_arg_type(m, NULL) != MRP_DBUS_TYPE_INVALID) {
if (!mrp_realloc(a->items, offs + esize))
goto fail;
if (!mrp_dbus_msg_read_basic(m, type, a->items + offs))
goto fail;
else
a->nitem++;
offs += esize;
}
mrp_dbus_msg_exit_container(m);
mrp_list_append(&m->arrays, &a->hook);
*itemsp = a->items;
*nitemp = a->nitem;
return TRUE;
fail:
mrp_dbus_msg_exit_container(m);
free_msg_array(a);
return FALSE;
}
mrp_dbus_type_t mrp_dbus_msg_arg_type(mrp_dbus_msg_t *m, const char **contents)
{
char type;
if (sd_bus_message_peek_type(m->msg, &type, contents) >= 0)
return (mrp_dbus_type_t)type;
else
return MRP_DBUS_TYPE_INVALID;
}
|