summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/kdbus/test-match.c
blob: 2360dc1d76a45b78067be6ed292677213aa0e481 (plain)
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
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <stdlib.h>
#include <stddef.h>
#include <unistd.h>
#include <stdint.h>
#include <errno.h>
#include <assert.h>
#include <stdbool.h>

#include "kdbus-api.h"
#include "kdbus-util.h"
#include "kdbus-enum.h"
#include "kdbus-test.h"

int kdbus_test_match_id_add(struct kdbus_test_env *env)
{
	struct {
		struct kdbus_cmd_match cmd;
		struct {
			uint64_t size;
			uint64_t type;
			struct kdbus_notify_id_change chg;
		} item;
	} buf;
	struct kdbus_conn *conn;
	struct kdbus_msg *msg;
	int ret;

	memset(&buf, 0, sizeof(buf));

	buf.cmd.size = sizeof(buf);
	buf.cmd.cookie = 0xdeafbeefdeaddead;
	buf.item.size = sizeof(buf.item);
	buf.item.type = KDBUS_ITEM_ID_ADD;
	buf.item.chg.id = KDBUS_MATCH_ID_ANY;

	/* match on id add */
	ret = kdbus_cmd_match_add(env->conn->fd, &buf.cmd);
	ASSERT_RETURN(ret == 0);

	/* create 2nd connection */
	conn = kdbus_hello(env->buspath, 0, NULL, 0);
	ASSERT_RETURN(conn != NULL);

	/* 1st connection should have received a notification */
	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == 0);

	ASSERT_RETURN(msg->items[0].type == KDBUS_ITEM_ID_ADD);
	ASSERT_RETURN(msg->items[0].id_change.id == conn->id);

	kdbus_conn_free(conn);

	return TEST_OK;
}

int kdbus_test_match_id_remove(struct kdbus_test_env *env)
{
	struct {
		struct kdbus_cmd_match cmd;
		struct {
			uint64_t size;
			uint64_t type;
			struct kdbus_notify_id_change chg;
		} item;
	} buf;
	struct kdbus_conn *conn;
	struct kdbus_msg *msg;
	size_t id;
	int ret;

	/* create 2nd connection */
	conn = kdbus_hello(env->buspath, 0, NULL, 0);
	ASSERT_RETURN(conn != NULL);
	id = conn->id;

	memset(&buf, 0, sizeof(buf));
	buf.cmd.size = sizeof(buf);
	buf.cmd.cookie = 0xdeafbeefdeaddead;
	buf.item.size = sizeof(buf.item);
	buf.item.type = KDBUS_ITEM_ID_REMOVE;
	buf.item.chg.id = id;

	/* register match on 2nd connection */
	ret = kdbus_cmd_match_add(env->conn->fd, &buf.cmd);
	ASSERT_RETURN(ret == 0);

	/* remove 2nd connection again */
	kdbus_conn_free(conn);

	/* 1st connection should have received a notification */
	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == 0);

	ASSERT_RETURN(msg->items[0].type == KDBUS_ITEM_ID_REMOVE);
	ASSERT_RETURN(msg->items[0].id_change.id == id);

	return TEST_OK;
}

int kdbus_test_match_replace(struct kdbus_test_env *env)
{
	struct {
		struct kdbus_cmd_match cmd;
		struct {
			uint64_t size;
			uint64_t type;
			struct kdbus_notify_id_change chg;
		} item;
	} buf;
	struct kdbus_conn *conn;
	struct kdbus_msg *msg;
	size_t id;
	int ret;

	/* add a match to id_add */
	ASSERT_RETURN(kdbus_test_match_id_add(env) == TEST_OK);

	/* do a replace of the match from id_add to id_remove */
	memset(&buf, 0, sizeof(buf));

	buf.cmd.size = sizeof(buf);
	buf.cmd.cookie = 0xdeafbeefdeaddead;
	buf.cmd.flags = KDBUS_MATCH_REPLACE;
	buf.item.size = sizeof(buf.item);
	buf.item.type = KDBUS_ITEM_ID_REMOVE;
	buf.item.chg.id = KDBUS_MATCH_ID_ANY;

	ret = kdbus_cmd_match_add(env->conn->fd, &buf.cmd);

	/* create 2nd connection */
	conn = kdbus_hello(env->buspath, 0, NULL, 0);
	ASSERT_RETURN(conn != NULL);
	id = conn->id;

	/* 1st connection should _not_ have received a notification */
	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret != 0);

	/* remove 2nd connection */
	kdbus_conn_free(conn);

	/* 1st connection should _now_ have received a notification */
	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == 0);

	ASSERT_RETURN(msg->items[0].type == KDBUS_ITEM_ID_REMOVE);
	ASSERT_RETURN(msg->items[0].id_change.id == id);

	return TEST_OK;
}

int kdbus_test_match_name_add(struct kdbus_test_env *env)
{
	struct {
		struct kdbus_cmd_match cmd;
		struct {
			uint64_t size;
			uint64_t type;
			struct kdbus_notify_name_change chg;
		} item;
		char name[64];
	} buf;
	struct kdbus_msg *msg;
	char *name;
	int ret;

	name = "foo.bla.blaz";

	/* install the match rule */
	memset(&buf, 0, sizeof(buf));
	buf.item.type = KDBUS_ITEM_NAME_ADD;
	buf.item.chg.old_id.id = KDBUS_MATCH_ID_ANY;
	buf.item.chg.new_id.id = KDBUS_MATCH_ID_ANY;
	strncpy(buf.name, name, sizeof(buf.name) - 1);
	buf.item.size = sizeof(buf.item) + strlen(buf.name) + 1;
	buf.cmd.size = sizeof(buf.cmd) + buf.item.size;

	ret = kdbus_cmd_match_add(env->conn->fd, &buf.cmd);
	ASSERT_RETURN(ret == 0);

	/* acquire the name */
	ret = kdbus_name_acquire(env->conn, name, NULL);
	ASSERT_RETURN(ret == 0);

	/* we should have received a notification */
	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == 0);

	ASSERT_RETURN(msg->items[0].type == KDBUS_ITEM_NAME_ADD);
	ASSERT_RETURN(msg->items[0].name_change.old_id.id == 0);
	ASSERT_RETURN(msg->items[0].name_change.new_id.id == env->conn->id);
	ASSERT_RETURN(strcmp(msg->items[0].name_change.name, name) == 0);

	return TEST_OK;
}

int kdbus_test_match_name_remove(struct kdbus_test_env *env)
{
	struct {
		struct kdbus_cmd_match cmd;
		struct {
			uint64_t size;
			uint64_t type;
			struct kdbus_notify_name_change chg;
		} item;
		char name[64];
	} buf;
	struct kdbus_msg *msg;
	char *name;
	int ret;

	name = "foo.bla.blaz";

	/* acquire the name */
	ret = kdbus_name_acquire(env->conn, name, NULL);
	ASSERT_RETURN(ret == 0);

	/* install the match rule */
	memset(&buf, 0, sizeof(buf));
	buf.item.type = KDBUS_ITEM_NAME_REMOVE;
	buf.item.chg.old_id.id = KDBUS_MATCH_ID_ANY;
	buf.item.chg.new_id.id = KDBUS_MATCH_ID_ANY;
	strncpy(buf.name, name, sizeof(buf.name) - 1);
	buf.item.size = sizeof(buf.item) + strlen(buf.name) + 1;
	buf.cmd.size = sizeof(buf.cmd) + buf.item.size;

	ret = kdbus_cmd_match_add(env->conn->fd, &buf.cmd);
	ASSERT_RETURN(ret == 0);

	/* release the name again */
	kdbus_name_release(env->conn, name);
	ASSERT_RETURN(ret == 0);

	/* we should have received a notification */
	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == 0);

	ASSERT_RETURN(msg->items[0].type == KDBUS_ITEM_NAME_REMOVE);
	ASSERT_RETURN(msg->items[0].name_change.old_id.id == env->conn->id);
	ASSERT_RETURN(msg->items[0].name_change.new_id.id == 0);
	ASSERT_RETURN(strcmp(msg->items[0].name_change.name, name) == 0);

	return TEST_OK;
}

int kdbus_test_match_name_change(struct kdbus_test_env *env)
{
	struct {
		struct kdbus_cmd_match cmd;
		struct {
			uint64_t size;
			uint64_t type;
			struct kdbus_notify_name_change chg;
		} item;
		char name[64];
	} buf;
	struct kdbus_conn *conn;
	struct kdbus_msg *msg;
	uint64_t flags;
	char *name = "foo.bla.baz";
	int ret;

	/* acquire the name */
	ret = kdbus_name_acquire(env->conn, name, NULL);
	ASSERT_RETURN(ret == 0);

	/* install the match rule */
	memset(&buf, 0, sizeof(buf));
	buf.item.type = KDBUS_ITEM_NAME_CHANGE;
	buf.item.chg.old_id.id = KDBUS_MATCH_ID_ANY;
	buf.item.chg.new_id.id = KDBUS_MATCH_ID_ANY;
	strncpy(buf.name, name, sizeof(buf.name) - 1);
	buf.item.size = sizeof(buf.item) + strlen(buf.name) + 1;
	buf.cmd.size = sizeof(buf.cmd) + buf.item.size;

	ret = kdbus_cmd_match_add(env->conn->fd, &buf.cmd);
	ASSERT_RETURN(ret == 0);

	/* create a 2nd connection */
	conn = kdbus_hello(env->buspath, 0, NULL, 0);
	ASSERT_RETURN(conn != NULL);

	/* allow the new connection to own the same name */
	/* queue the 2nd connection as waiting owner */
	flags = KDBUS_NAME_QUEUE;
	ret = kdbus_name_acquire(conn, name, &flags);
	ASSERT_RETURN(ret == 0);
	ASSERT_RETURN(flags & KDBUS_NAME_IN_QUEUE);

	/* release name from 1st connection */
	ret = kdbus_name_release(env->conn, name);
	ASSERT_RETURN(ret == 0);

	/* we should have received a notification */
	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == 0);

	ASSERT_RETURN(msg->items[0].type == KDBUS_ITEM_NAME_CHANGE);
	ASSERT_RETURN(msg->items[0].name_change.old_id.id == env->conn->id);
	ASSERT_RETURN(msg->items[0].name_change.new_id.id == conn->id);
	ASSERT_RETURN(strcmp(msg->items[0].name_change.name, name) == 0);

	kdbus_conn_free(conn);

	return TEST_OK;
}

static int send_bloom_filter(const struct kdbus_conn *conn,
			     uint64_t cookie,
			     const uint8_t *filter,
			     size_t filter_size,
			     uint64_t filter_generation)
{
	struct kdbus_cmd_send cmd = {};
	struct kdbus_msg *msg;
	struct kdbus_item *item;
	uint64_t size;
	int ret;

	size = sizeof(struct kdbus_msg);
	size += KDBUS_ITEM_SIZE(sizeof(struct kdbus_bloom_filter)) + filter_size;

	msg = alloca(size);

	memset(msg, 0, size);
	msg->size = size;
	msg->src_id = conn->id;
	msg->dst_id = KDBUS_DST_ID_BROADCAST;
	msg->flags = KDBUS_MSG_SIGNAL;
	msg->payload_type = KDBUS_PAYLOAD_DBUS;
	msg->cookie = cookie;

	item = msg->items;
	item->type = KDBUS_ITEM_BLOOM_FILTER;
	item->size = KDBUS_ITEM_SIZE(sizeof(struct kdbus_bloom_filter)) +
				filter_size;

	item->bloom_filter.generation = filter_generation;
	memcpy(item->bloom_filter.data, filter, filter_size);

	cmd.size = sizeof(cmd);
	cmd.msg_address = (uintptr_t)msg;

	ret = kdbus_cmd_send(conn->fd, &cmd);
	if (ret < 0) {
		kdbus_printf("error sending message: %d (%m)\n", ret);
		return ret;
	}

	return 0;
}

int kdbus_test_match_bloom(struct kdbus_test_env *env)
{
	struct {
		struct kdbus_cmd_match cmd;
		struct {
			uint64_t size;
			uint64_t type;
			uint8_t data_gen0[64];
			uint8_t data_gen1[64];
		} item;
	} buf;
	struct kdbus_conn *conn;
	struct kdbus_msg *msg;
	uint64_t cookie = 0xf000f00f;
	uint8_t filter[64];
	int ret;

	/* install the match rule */
	memset(&buf, 0, sizeof(buf));
	buf.cmd.size = sizeof(buf);

	buf.item.size = sizeof(buf.item);
	buf.item.type = KDBUS_ITEM_BLOOM_MASK;
	buf.item.data_gen0[0] = 0x55;
	buf.item.data_gen0[63] = 0x80;

	buf.item.data_gen1[1] = 0xaa;
	buf.item.data_gen1[9] = 0x02;

	ret = kdbus_cmd_match_add(env->conn->fd, &buf.cmd);
	ASSERT_RETURN(ret == 0);

	/* create a 2nd connection */
	conn = kdbus_hello(env->buspath, 0, NULL, 0);
	ASSERT_RETURN(conn != NULL);

	/* a message with a 0'ed out filter must not reach the other peer */
	memset(filter, 0, sizeof(filter));
	ret = send_bloom_filter(conn, ++cookie, filter, sizeof(filter), 0);
	ASSERT_RETURN(ret == 0);

	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == -EAGAIN);

	/* now set the filter to the connection's mask and expect success */
	filter[0] = 0x55;
	filter[63] = 0x80;
	ret = send_bloom_filter(conn, ++cookie, filter, sizeof(filter), 0);
	ASSERT_RETURN(ret == 0);

	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == 0);
	ASSERT_RETURN(msg->cookie == cookie);

	/* broaden the filter and try again. this should also succeed. */
	filter[0] = 0xff;
	filter[8] = 0xff;
	filter[63] = 0xff;
	ret = send_bloom_filter(conn, ++cookie, filter, sizeof(filter), 0);
	ASSERT_RETURN(ret == 0);

	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == 0);
	ASSERT_RETURN(msg->cookie == cookie);

	/* the same filter must not match against bloom generation 1 */
	ret = send_bloom_filter(conn, ++cookie, filter, sizeof(filter), 1);
	ASSERT_RETURN(ret == 0);

	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == -EAGAIN);

	/* set a different filter and try again */
	filter[1] = 0xaa;
	filter[9] = 0x02;
	ret = send_bloom_filter(conn, ++cookie, filter, sizeof(filter), 1);
	ASSERT_RETURN(ret == 0);

	ret = kdbus_msg_recv(env->conn, &msg, NULL);
	ASSERT_RETURN(ret == 0);
	ASSERT_RETURN(msg->cookie == cookie);

	kdbus_conn_free(conn);

	return TEST_OK;
}