]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd/sd-bus/test-bus-match.c
util: split out memcmp()/memset() related calls into memory-util.[ch]
[thirdparty/systemd.git] / src / libsystemd / sd-bus / test-bus-match.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
392d5b37 2
392d5b37
LP
3#include "bus-match.h"
4#include "bus-message.h"
19befb2d 5#include "bus-slot.h"
cf0fbc49
TA
6#include "bus-util.h"
7#include "log.h"
8#include "macro.h"
0a970718 9#include "memory-util.h"
317bb217 10#include "tests.h"
392d5b37
LP
11
12static bool mask[32];
13
19070062 14static int filter(sd_bus_message *m, void *userdata, sd_bus_error *ret_error) {
198b158f 15 log_info("Ran %u", PTR_TO_UINT(userdata));
0c0cdb06 16 assert_se(PTR_TO_UINT(userdata) < ELEMENTSOF(mask));
198b158f 17 mask[PTR_TO_UINT(userdata)] = true;
392d5b37
LP
18 return 0;
19}
20
21static bool mask_contains(unsigned a[], unsigned n) {
22 unsigned i, j;
23
24 for (i = 0; i < ELEMENTSOF(mask); i++) {
25 bool found = false;
26
27 for (j = 0; j < n; j++)
28 if (a[j] == i) {
29 found = true;
30 break;
31 }
32
33 if (found != mask[i])
34 return false;
35 }
36
37 return true;
38}
39
19befb2d 40static int match_add(sd_bus_slot *slots, struct bus_match_node *root, const char *match, int value) {
c7819669
LP
41 struct bus_match_component *components = NULL;
42 unsigned n_components = 0;
19befb2d 43 sd_bus_slot *s;
c7819669
LP
44 int r;
45
19befb2d
LP
46 s = slots + value;
47 zero(*s);
c7819669
LP
48
49 r = bus_match_parse(match, &components, &n_components);
50 if (r < 0)
51 return r;
52
19befb2d
LP
53 s->userdata = INT_TO_PTR(value);
54 s->match_callback.callback = filter;
55
56 r = bus_match_add(root, components, n_components, &s->match_callback);
c7819669
LP
57 bus_match_parse_free(components, n_components);
58
59 return r;
60}
61
cc65fe5e
LP
62static void test_match_scope(const char *match, enum bus_match_scope scope) {
63 struct bus_match_component *components = NULL;
64 unsigned n_components = 0;
65
66 assert_se(bus_match_parse(match, &components, &n_components) >= 0);
67 assert_se(bus_match_get_scope(components, n_components) == scope);
68 bus_match_parse_free(components, n_components);
69}
70
392d5b37 71int main(int argc, char *argv[]) {
2a0958d2
LP
72 struct bus_match_node root = {
73 .type = BUS_MATCH_ROOT,
74 };
75
4afd3348
LP
76 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
77 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
392d5b37 78 enum bus_match_node_type i;
198b158f 79 sd_bus_slot slots[19];
2a0958d2 80 int r;
392d5b37 81
6d7c4033
ZJS
82 test_setup_logging(LOG_INFO);
83
6349cda2 84 r = sd_bus_open_user(&bus);
f9c8c01f
YW
85 if (r < 0)
86 r = sd_bus_open_system(&bus);
317bb217
ZJS
87 if (r < 0)
88 return log_tests_skipped("Failed to connect to bus");
392d5b37 89
19befb2d
LP
90 assert_se(match_add(slots, &root, "arg2='wal\\'do',sender='foo',type='signal',interface='bar.x',", 1) >= 0);
91 assert_se(match_add(slots, &root, "arg2='wal\\'do2',sender='foo',type='signal',interface='bar.x',", 2) >= 0);
92 assert_se(match_add(slots, &root, "arg3='test',sender='foo',type='signal',interface='bar.x',", 3) >= 0);
93 assert_se(match_add(slots, &root, "arg3='test',sender='foo',type='method_call',interface='bar.x',", 4) >= 0);
94 assert_se(match_add(slots, &root, "", 5) >= 0);
95 assert_se(match_add(slots, &root, "interface='quux.x'", 6) >= 0);
96 assert_se(match_add(slots, &root, "interface='bar.x'", 7) >= 0);
97 assert_se(match_add(slots, &root, "member='waldo',path='/foo/bar'", 8) >= 0);
98 assert_se(match_add(slots, &root, "path='/foo/bar'", 9) >= 0);
99 assert_se(match_add(slots, &root, "path_namespace='/foo'", 10) >= 0);
100 assert_se(match_add(slots, &root, "path_namespace='/foo/quux'", 11) >= 0);
101 assert_se(match_add(slots, &root, "arg1='two'", 12) >= 0);
102 assert_se(match_add(slots, &root, "member='waldo',arg2path='/prefix/'", 13) >= 0);
103 assert_se(match_add(slots, &root, "member=waldo,path='/foo/bar',arg3namespace='prefix'", 14) >= 0);
eccd47c5
LP
104 assert_se(match_add(slots, &root, "arg4has='pi'", 15) >= 0);
105 assert_se(match_add(slots, &root, "arg4has='pa'", 16) >= 0);
106 assert_se(match_add(slots, &root, "arg4has='po'", 17) >= 0);
107 assert_se(match_add(slots, &root, "arg4='pi'", 18) >= 0);
392d5b37
LP
108
109 bus_match_dump(&root, 0);
110
2a0958d2 111 assert_se(sd_bus_message_new_signal(bus, &m, "/foo/bar", "bar.x", "waldo") >= 0);
198b158f 112 assert_se(sd_bus_message_append(m, "ssssas", "one", "two", "/prefix/three", "prefix.four", 3, "pi", "pa", "po") >= 0);
75bcbcf2 113 assert_se(sd_bus_message_seal(m, 1, 0) >= 0);
392d5b37
LP
114
115 zero(mask);
eb01ba5d 116 assert_se(bus_match_run(NULL, &root, m) == 0);
198b158f 117 assert_se(mask_contains((unsigned[]) { 9, 8, 7, 5, 10, 12, 13, 14, 15, 16, 17 }, 11));
392d5b37 118
19befb2d
LP
119 assert_se(bus_match_remove(&root, &slots[8].match_callback) >= 0);
120 assert_se(bus_match_remove(&root, &slots[13].match_callback) >= 0);
392d5b37
LP
121
122 bus_match_dump(&root, 0);
123
124 zero(mask);
eb01ba5d 125 assert_se(bus_match_run(NULL, &root, m) == 0);
198b158f 126 assert_se(mask_contains((unsigned[]) { 9, 5, 10, 12, 14, 7, 15, 16, 17 }, 9));
392d5b37
LP
127
128 for (i = 0; i < _BUS_MATCH_NODE_TYPE_MAX; i++) {
129 char buf[32];
130 const char *x;
131
132 assert_se(x = bus_match_node_type_to_string(i, buf, sizeof(buf)));
133
134 if (i >= BUS_MATCH_MESSAGE_TYPE)
135 assert_se(bus_match_node_type_from_string(x, strlen(x)) == i);
136 }
137
138 bus_match_free(&root);
139
cc65fe5e
LP
140 test_match_scope("interface='foobar'", BUS_MATCH_GENERIC);
141 test_match_scope("", BUS_MATCH_GENERIC);
142 test_match_scope("interface='org.freedesktop.DBus.Local'", BUS_MATCH_LOCAL);
143 test_match_scope("sender='org.freedesktop.DBus.Local'", BUS_MATCH_LOCAL);
144 test_match_scope("member='gurke',path='/org/freedesktop/DBus/Local'", BUS_MATCH_LOCAL);
145 test_match_scope("arg2='piep',sender='org.freedesktop.DBus',member='waldo'", BUS_MATCH_DRIVER);
146
392d5b37
LP
147 return 0;
148}