return sd_event_exit(sd_device_monitor_get_event(m), 100);
}
-static void prepare_monitor(sd_device_monitor **ret_server, sd_device_monitor **ret_client) {
+static void prepare_monitor(sd_device_monitor **ret_server, sd_device_monitor **ret_client, union sockaddr_union *ret_address) {
_cleanup_(sd_device_monitor_unrefp) sd_device_monitor *monitor_server = NULL, *monitor_client = NULL;
ASSERT_OK(device_monitor_new_full(&monitor_server, MONITOR_GROUP_NONE, -1));
ASSERT_OK(device_monitor_new_full(&monitor_client, MONITOR_GROUP_NONE, -1));
ASSERT_OK(sd_device_monitor_set_description(monitor_client, "client"));
ASSERT_OK(device_monitor_allow_unicast_sender(monitor_client, monitor_server));
+ ASSERT_OK(device_monitor_get_address(monitor_client, ret_address));
*ret_server = TAKE_PTR(monitor_server);
*ret_client = TAKE_PTR(monitor_client);
static void send_by_enumerator(
sd_device_monitor *monitor_server,
- sd_device_monitor *monitor_client,
+ const union sockaddr_union *address,
sd_device_enumerator *e,
size_t n,
const char *syspath_filter) {
ASSERT_OK(device_add_property(d, "SEQNUM", "10"));
log_device_debug(d, "Sending device subsystem:%s syspath:%s", s, p);
- ASSERT_OK(device_monitor_send_device(monitor_server, monitor_client, d));
+ ASSERT_OK(device_monitor_send_device(monitor_server, address, d));
/* The sysattr and parent filters are not implemented in BPF yet. So, sending multiple
* devices may fills up buffer and device_monitor_send_device() may return EAGAIN. Let's
TEST(refuse_invalid_device) {
_cleanup_(sd_device_monitor_unrefp) sd_device_monitor *monitor_server = NULL, *monitor_client = NULL;
_cleanup_(sd_device_unrefp) sd_device *loopback = NULL;
+ union sockaddr_union sa;
const char *syspath;
/* Try to send device with invalid action and without seqnum. */
ASSERT_OK(sd_device_get_syspath(loopback, &syspath));
- prepare_monitor(&monitor_server, &monitor_client);
+ prepare_monitor(&monitor_server, &monitor_client, &sa);
ASSERT_OK(sd_device_monitor_start(monitor_client, monitor_handler, (void *) syspath));
- ASSERT_OK(device_monitor_send_device(monitor_server, monitor_client, loopback));
+ ASSERT_OK(device_monitor_send_device(monitor_server, &sa, loopback));
ASSERT_OK(sd_event_run(sd_device_monitor_get_event(monitor_client), 0));
}
static void test_send_receive_one(sd_device *device, bool subsystem_filter, bool tag_filter, bool use_bpf) {
_cleanup_(sd_device_monitor_unrefp) sd_device_monitor *monitor_server = NULL, *monitor_client = NULL;
const char *syspath, *subsystem, *devtype = NULL;
+ union sockaddr_union sa;
log_device_info(device, "/* %s(subsystem_filter=%s, tag_filter=%s, use_bpf=%s) */", __func__,
true_false(subsystem_filter), true_false(tag_filter), true_false(use_bpf));
ASSERT_OK(sd_device_get_syspath(device, &syspath));
- prepare_monitor(&monitor_server, &monitor_client);
+ prepare_monitor(&monitor_server, &monitor_client, &sa);
if (subsystem_filter) {
ASSERT_OK(sd_device_get_subsystem(device, &subsystem));
ASSERT_OK(sd_device_monitor_filter_update(monitor_client));
ASSERT_OK(sd_device_monitor_start(monitor_client, monitor_handler, (void *) syspath));
- ASSERT_OK(device_monitor_send_device(monitor_server, monitor_client, device));
+ ASSERT_OK(device_monitor_send_device(monitor_server, &sa, device));
ASSERT_EQ(sd_event_loop(sd_device_monitor_get_event(monitor_client)), 100);
}
_cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
_cleanup_(sd_device_unrefp) sd_device *device = NULL;
const char *syspath, *subsystem;
+ union sockaddr_union sa;
prepare_loopback(&device);
ASSERT_OK(sd_device_get_syspath(device, &syspath));
ASSERT_OK(sd_device_get_subsystem(device, &subsystem));
- prepare_monitor(&monitor_server, &monitor_client);
+ prepare_monitor(&monitor_server, &monitor_client, &sa);
ASSERT_OK(sd_device_monitor_filter_add_match_subsystem_devtype(monitor_client, subsystem, NULL));
ASSERT_OK(sd_device_monitor_start(monitor_client, monitor_handler, (void *) syspath));
ASSERT_OK(sd_device_enumerator_new(&e));
ASSERT_OK(sd_device_enumerator_add_match_subsystem(e, subsystem, false));
- send_by_enumerator(monitor_server, monitor_client, e, SIZE_MAX, NULL);
+ send_by_enumerator(monitor_server, &sa, e, SIZE_MAX, NULL);
log_device_info(device, "Sending device subsystem:%s syspath:%s", subsystem, syspath);
- ASSERT_OK(device_monitor_send_device(monitor_server, monitor_client, device));
+ ASSERT_OK(device_monitor_send_device(monitor_server, &sa, device));
ASSERT_EQ(sd_event_loop(sd_device_monitor_get_event(monitor_client)), 100);
}
_cleanup_(sd_device_monitor_unrefp) sd_device_monitor *monitor_server = NULL, *monitor_client = NULL;
_cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
_cleanup_(sd_device_unrefp) sd_device *device = NULL;
+ union sockaddr_union sa;
const char *syspath;
prepare_loopback(&device);
ASSERT_OK(sd_device_get_syspath(device, &syspath));
- prepare_monitor(&monitor_server, &monitor_client);
+ prepare_monitor(&monitor_server, &monitor_client, &sa);
ASSERT_OK(sd_device_monitor_filter_add_match_tag(monitor_client, "TEST_SD_DEVICE_MONITOR"));
ASSERT_OK(sd_device_monitor_start(monitor_client, monitor_handler, (void *) syspath));
ASSERT_OK(sd_device_enumerator_new(&e));
- send_by_enumerator(monitor_server, monitor_client, e, SIZE_MAX, NULL);
+ send_by_enumerator(monitor_server, &sa, e, SIZE_MAX, NULL);
log_device_info(device, "Sending device syspath:%s", syspath);
- ASSERT_OK(device_monitor_send_device(monitor_server, monitor_client, device));
+ ASSERT_OK(device_monitor_send_device(monitor_server, &sa, device));
ASSERT_EQ(sd_event_loop(sd_device_monitor_get_event(monitor_client)), 100);
}
_cleanup_(sd_device_unrefp) sd_device *device = NULL;
static const char *sysattr = "ifindex";
const char *syspath, *sysattr_value;
+ union sockaddr_union sa;
prepare_loopback(&device);
ASSERT_OK(sd_device_get_syspath(device, &syspath));
ASSERT_OK(sd_device_get_sysattr_value(device, sysattr, &sysattr_value));
- prepare_monitor(&monitor_server, &monitor_client);
+ prepare_monitor(&monitor_server, &monitor_client, &sa);
ASSERT_OK(sd_device_monitor_filter_add_match_sysattr(monitor_client, sysattr, sysattr_value, true));
ASSERT_OK(sd_device_monitor_start(monitor_client, monitor_handler, (void *) syspath));
ASSERT_OK(sd_device_enumerator_new(&e));
ASSERT_OK(sd_device_enumerator_add_match_sysattr(e, sysattr, sysattr_value, false));
- send_by_enumerator(monitor_server, monitor_client, e, 5, NULL);
+ send_by_enumerator(monitor_server, &sa, e, 5, NULL);
log_device_info(device, "Sending device syspath:%s", syspath);
- ASSERT_OK(device_monitor_send_device(monitor_server, monitor_client, device));
+ ASSERT_OK(device_monitor_send_device(monitor_server, &sa, device));
ASSERT_EQ(sd_event_loop(sd_device_monitor_get_event(monitor_client)), 100);
}
_cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
_cleanup_(sd_device_unrefp) sd_device *device = NULL;
const char *syspath, *parent_syspath;
+ union sockaddr_union sa;
sd_device *parent;
int r;
ASSERT_OK(sd_device_get_syspath(parent, &parent_syspath));
- prepare_monitor(&monitor_server, &monitor_client);
+ prepare_monitor(&monitor_server, &monitor_client, &sa);
ASSERT_OK(sd_device_monitor_filter_add_match_parent(monitor_client, parent, true));
ASSERT_OK(sd_device_monitor_start(monitor_client, monitor_handler, (void *) syspath));
ASSERT_OK(sd_device_enumerator_new(&e));
- send_by_enumerator(monitor_server, monitor_client, e, 5, parent_syspath);
+ send_by_enumerator(monitor_server, &sa, e, 5, parent_syspath);
log_device_info(device, "Sending device syspath:%s", syspath);
- ASSERT_OK(device_monitor_send_device(monitor_server, monitor_client, device));
+ ASSERT_OK(device_monitor_send_device(monitor_server, &sa, device));
ASSERT_EQ(sd_event_loop(sd_device_monitor_get_event(monitor_client)), 100);
}
TEST(sd_device_monitor_filter_remove) {
_cleanup_(sd_device_monitor_unrefp) sd_device_monitor *monitor_server = NULL, *monitor_client = NULL;
_cleanup_(sd_device_unrefp) sd_device *device = NULL;
+ union sockaddr_union sa;
const char *syspath;
prepare_loopback(&device);
ASSERT_OK(sd_device_get_syspath(device, &syspath));
- prepare_monitor(&monitor_server, &monitor_client);
+ prepare_monitor(&monitor_server, &monitor_client, &sa);
ASSERT_OK(sd_device_monitor_filter_add_match_subsystem_devtype(monitor_client, "hoge", NULL));
ASSERT_OK(sd_device_monitor_start(monitor_client, monitor_handler, (void *) syspath));
- ASSERT_OK(device_monitor_send_device(monitor_server, monitor_client, device));
+ ASSERT_OK(device_monitor_send_device(monitor_server, &sa, device));
ASSERT_OK(sd_event_run(sd_device_monitor_get_event(monitor_client), 0));
ASSERT_OK(sd_device_monitor_filter_remove(monitor_client));
- ASSERT_OK(device_monitor_send_device(monitor_server, monitor_client, device));
+ ASSERT_OK(device_monitor_send_device(monitor_server, &sa, device));
ASSERT_EQ(sd_event_loop(sd_device_monitor_get_event(monitor_client)), 100);
}