]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd/sd-device/test-sd-device.c
device-util: Declare iterator variables inline
[thirdparty/systemd.git] / src / libsystemd / sd-device / test-sd-device.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <ctype.h>
4 #include <fcntl.h>
5 #include <unistd.h>
6
7 #include "device-enumerator-private.h"
8 #include "device-internal.h"
9 #include "device-private.h"
10 #include "device-util.h"
11 #include "errno-util.h"
12 #include "fd-util.h"
13 #include "hashmap.h"
14 #include "nulstr-util.h"
15 #include "path-util.h"
16 #include "rm-rf.h"
17 #include "stat-util.h"
18 #include "string-util.h"
19 #include "tests.h"
20 #include "time-util.h"
21 #include "tmpfile-util.h"
22 #include "udev-util.h"
23
24 static void test_sd_device_one(sd_device *d) {
25 _cleanup_(sd_device_unrefp) sd_device *dev = NULL;
26 const char *syspath, *sysname, *subsystem = NULL, *devname, *val;
27 bool is_block = false;
28 dev_t devnum;
29 usec_t usec;
30 int ifindex, r;
31
32 assert_se(sd_device_get_syspath(d, &syspath) >= 0);
33 assert_se(path_startswith(syspath, "/sys"));
34 assert_se(sd_device_get_sysname(d, &sysname) >= 0);
35
36 log_info("%s(%s)", __func__, syspath);
37
38 assert_se(sd_device_new_from_syspath(&dev, syspath) >= 0);
39 assert_se(sd_device_get_syspath(dev, &val) >= 0);
40 assert_se(streq(syspath, val));
41 dev = sd_device_unref(dev);
42
43 assert_se(sd_device_new_from_path(&dev, syspath) >= 0);
44 assert_se(sd_device_get_syspath(dev, &val) >= 0);
45 assert_se(streq(syspath, val));
46 dev = sd_device_unref(dev);
47
48 r = sd_device_get_ifindex(d, &ifindex);
49 if (r >= 0) {
50 assert_se(ifindex > 0);
51
52 r = sd_device_new_from_ifindex(&dev, ifindex);
53 if (r == -ENODEV)
54 log_device_warning_errno(d, r,
55 "Failed to create sd-device object from ifindex %i. "
56 "Maybe running on a non-host network namespace.", ifindex);
57 else {
58 assert_se(r >= 0);
59 assert_se(sd_device_get_syspath(dev, &val) >= 0);
60 assert_se(streq(syspath, val));
61 dev = sd_device_unref(dev);
62 }
63
64 /* This does not require the interface really exists on the network namespace.
65 * Hence, this should always succeed. */
66 assert_se(sd_device_new_from_ifname(&dev, sysname) >= 0);
67 assert_se(sd_device_get_syspath(dev, &val) >= 0);
68 assert_se(streq(syspath, val));
69 dev = sd_device_unref(dev);
70 } else
71 assert_se(r == -ENOENT);
72
73 r = sd_device_get_subsystem(d, &subsystem);
74 if (r < 0)
75 assert_se(r == -ENOENT);
76 else if (!streq(subsystem, "gpio")) { /* Unfortunately, there exist /sys/class/gpio and /sys/bus/gpio.
77 * Hence, sd_device_new_from_subsystem_sysname() and
78 * sd_device_new_from_device_id() may not work as expected. */
79 const char *name, *id;
80
81 if (streq(subsystem, "drivers"))
82 name = strjoina(d->driver_subsystem, ":", sysname);
83 else
84 name = sysname;
85 assert_se(sd_device_new_from_subsystem_sysname(&dev, subsystem, name) >= 0);
86 assert_se(sd_device_get_syspath(dev, &val) >= 0);
87 assert_se(streq(syspath, val));
88 dev = sd_device_unref(dev);
89
90 /* The device ID depends on subsystem. */
91 assert_se(device_get_device_id(d, &id) >= 0);
92 r = sd_device_new_from_device_id(&dev, id);
93 if (r == -ENODEV && ifindex > 0)
94 log_device_warning_errno(d, r,
95 "Failed to create sd-device object from device ID \"%s\". "
96 "Maybe running on a non-host network namespace.", id);
97 else {
98 assert_se(r >= 0);
99 assert_se(sd_device_get_syspath(dev, &val) >= 0);
100 assert_se(streq(syspath, val));
101 dev = sd_device_unref(dev);
102 }
103
104 /* These require udev database, and reading database requires device ID. */
105 r = sd_device_get_is_initialized(d);
106 if (r > 0) {
107 r = sd_device_get_usec_since_initialized(d, &usec);
108 assert_se((r >= 0 && usec > 0) || r == -ENODATA);
109 } else
110 assert(r == 0);
111
112 r = sd_device_get_property_value(d, "ID_NET_DRIVER", &val);
113 assert_se(r >= 0 || r == -ENOENT);
114 }
115
116 is_block = streq_ptr(subsystem, "block");
117
118 r = sd_device_get_devname(d, &devname);
119 if (r >= 0) {
120 r = sd_device_new_from_devname(&dev, devname);
121 if (r >= 0) {
122 assert_se(sd_device_get_syspath(dev, &val) >= 0);
123 assert_se(streq(syspath, val));
124 dev = sd_device_unref(dev);
125 } else
126 assert_se(r == -ENODEV || ERRNO_IS_PRIVILEGE(r));
127
128 r = sd_device_new_from_path(&dev, devname);
129 if (r >= 0) {
130 assert_se(sd_device_get_syspath(dev, &val) >= 0);
131 assert_se(streq(syspath, val));
132 dev = sd_device_unref(dev);
133
134 _cleanup_close_ int fd = -EBADF;
135 fd = sd_device_open(d, O_CLOEXEC| O_NONBLOCK | (is_block ? O_RDONLY : O_NOCTTY | O_PATH));
136 assert_se(fd >= 0 || ERRNO_IS_PRIVILEGE(fd));
137 } else
138 assert_se(r == -ENODEV || ERRNO_IS_PRIVILEGE(r));
139 } else
140 assert_se(r == -ENOENT);
141
142 r = sd_device_get_devnum(d, &devnum);
143 if (r >= 0) {
144 _cleanup_free_ char *p = NULL;
145
146 assert_se(major(devnum) > 0);
147
148 assert_se(sd_device_new_from_devnum(&dev, is_block ? 'b' : 'c', devnum) >= 0);
149 assert_se(sd_device_get_syspath(dev, &val) >= 0);
150 assert_se(streq(syspath, val));
151 dev = sd_device_unref(dev);
152
153 assert_se(asprintf(&p, "/dev/%s/%u:%u", is_block ? "block" : "char", major(devnum), minor(devnum)) >= 0);
154 assert_se(sd_device_new_from_devname(&dev, p) >= 0);
155 assert_se(sd_device_get_syspath(dev, &val) >= 0);
156 assert_se(streq(syspath, val));
157 dev = sd_device_unref(dev);
158
159 assert_se(sd_device_new_from_path(&dev, p) >= 0);
160 assert_se(sd_device_get_syspath(dev, &val) >= 0);
161 assert_se(streq(syspath, val));
162 dev = sd_device_unref(dev);
163 } else
164 assert_se(r == -ENOENT);
165
166 assert_se(sd_device_get_devpath(d, &val) >= 0);
167
168 r = sd_device_get_devtype(d, &val);
169 assert_se(r >= 0 || r == -ENOENT);
170
171 r = sd_device_get_driver(d, &val);
172 assert_se(r >= 0 || r == -ENOENT);
173
174 r = sd_device_get_sysnum(d, &val);
175 if (r >= 0) {
176 assert_se(val > sysname);
177 assert_se(val < sysname + strlen(sysname));
178 assert_se(in_charset(val, DIGITS));
179 assert_se(!ascii_isdigit(val[-1]));
180 } else
181 assert_se(r == -ENOENT);
182
183 r = sd_device_get_sysattr_value(d, "nsid", NULL);
184 if (r >= 0) {
185 unsigned x;
186
187 assert_se(device_get_sysattr_unsigned(d, "nsid", NULL) >= 0);
188 r = device_get_sysattr_unsigned(d, "nsid", &x);
189 assert_se(r >= 0);
190 assert_se((x > 0) == (r > 0));
191 } else
192 assert_se(ERRNO_IS_PRIVILEGE(r) || IN_SET(r, -ENOENT, -EINVAL));
193 }
194
195 TEST(sd_device_enumerator_devices) {
196 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
197
198 assert_se(sd_device_enumerator_new(&e) >= 0);
199 assert_se(sd_device_enumerator_allow_uninitialized(e) >= 0);
200 /* On some CI environments, it seems some loop block devices and corresponding bdi devices sometimes
201 * disappear during running this test. Let's exclude them here for stability. */
202 assert_se(sd_device_enumerator_add_match_subsystem(e, "bdi", false) >= 0);
203 assert_se(sd_device_enumerator_add_nomatch_sysname(e, "loop*") >= 0);
204 /* On CentOS CI, systemd-networkd-tests.py may be running when this test is invoked. The networkd
205 * test creates and removes many network interfaces, and may interfere with this test. */
206 assert_se(sd_device_enumerator_add_match_subsystem(e, "net", false) >= 0);
207 FOREACH_DEVICE(e, d)
208 test_sd_device_one(d);
209 }
210
211 TEST(sd_device_enumerator_subsystems) {
212 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
213
214 assert_se(sd_device_enumerator_new(&e) >= 0);
215 assert_se(sd_device_enumerator_allow_uninitialized(e) >= 0);
216 FOREACH_SUBSYSTEM(e, d)
217 test_sd_device_one(d);
218 }
219
220 static void test_sd_device_enumerator_filter_subsystem_one(
221 const char *subsystem,
222 Hashmap *h,
223 unsigned *ret_n_new_dev,
224 unsigned *ret_n_removed_dev) {
225
226 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
227 unsigned n_new_dev = 0, n_removed_dev = 0;
228 sd_device *dev;
229
230 assert_se(sd_device_enumerator_new(&e) >= 0);
231 assert_se(sd_device_enumerator_add_match_subsystem(e, subsystem, true) >= 0);
232 assert_se(sd_device_enumerator_add_nomatch_sysname(e, "loop*") >= 0);
233
234 FOREACH_DEVICE(e, d) {
235 const char *syspath;
236 sd_device *t;
237
238 assert_se(sd_device_get_syspath(d, &syspath) >= 0);
239 t = hashmap_remove(h, syspath);
240
241 if (!t) {
242 log_warning("New device found: subsystem:%s syspath:%s", subsystem, syspath);
243 n_new_dev++;
244 }
245
246 assert_se(!sd_device_unref(t));
247 }
248
249 HASHMAP_FOREACH(dev, h) {
250 const char *syspath;
251
252 assert_se(sd_device_get_syspath(dev, &syspath) >= 0);
253 log_warning("Device removed: subsystem:%s syspath:%s", subsystem, syspath);
254 n_removed_dev++;
255
256 assert_se(!sd_device_unref(dev));
257 }
258
259 hashmap_free(h);
260
261 *ret_n_new_dev = n_new_dev;
262 *ret_n_removed_dev = n_removed_dev;
263 }
264
265 static bool test_sd_device_enumerator_filter_subsystem_trial(void) {
266 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
267 _cleanup_hashmap_free_ Hashmap *subsystems = NULL;
268 unsigned n_new_dev = 0, n_removed_dev = 0;
269 Hashmap *h;
270 char *s;
271
272 assert_se(subsystems = hashmap_new(&string_hash_ops));
273 assert_se(sd_device_enumerator_new(&e) >= 0);
274 /* See comments in TEST(sd_device_enumerator_devices). */
275 assert_se(sd_device_enumerator_add_match_subsystem(e, "bdi", false) >= 0);
276 assert_se(sd_device_enumerator_add_nomatch_sysname(e, "loop*") >= 0);
277 assert_se(sd_device_enumerator_add_match_subsystem(e, "net", false) >= 0);
278
279 FOREACH_DEVICE(e, d) {
280 const char *syspath, *subsystem;
281 int r;
282
283 assert_se(sd_device_get_syspath(d, &syspath) >= 0);
284
285 r = sd_device_get_subsystem(d, &subsystem);
286 assert_se(r >= 0 || r == -ENOENT);
287 if (r < 0)
288 continue;
289
290 h = hashmap_get(subsystems, subsystem);
291 if (!h) {
292 char *str;
293 assert_se(str = strdup(subsystem));
294 assert_se(h = hashmap_new(&string_hash_ops));
295 assert_se(hashmap_put(subsystems, str, h) >= 0);
296 }
297
298 assert_se(hashmap_put(h, syspath, d) >= 0);
299 assert_se(sd_device_ref(d));
300
301 log_debug("Added subsystem:%s syspath:%s", subsystem, syspath);
302 }
303
304 while ((h = hashmap_steal_first_key_and_value(subsystems, (void**) &s))) {
305 unsigned n, m;
306
307 test_sd_device_enumerator_filter_subsystem_one(s, TAKE_PTR(h), &n, &m);
308 free(s);
309
310 n_new_dev += n;
311 n_removed_dev += m;
312 }
313
314 if (n_new_dev > 0)
315 log_warning("%u new devices are found in re-scan", n_new_dev);
316 if (n_removed_dev > 0)
317 log_warning("%u devices removed in re-scan", n_removed_dev);
318
319 return n_new_dev + n_removed_dev == 0;
320 }
321
322 static bool test_sd_device_enumerator_filter_subsystem_trial_many(void) {
323 for (unsigned i = 0; i < 20; i++) {
324 log_debug("%s(): trial %u", __func__, i);
325 if (test_sd_device_enumerator_filter_subsystem_trial())
326 return true;
327 }
328
329 return false;
330 }
331
332 static int on_inotify(sd_event_source *s, const struct inotify_event *event, void *userdata) {
333 if (test_sd_device_enumerator_filter_subsystem_trial_many())
334 return sd_event_exit(sd_event_source_get_event(s), 0);
335
336 return sd_event_exit(sd_event_source_get_event(s), -EBUSY);
337 }
338
339 TEST(sd_device_enumerator_filter_subsystem) {
340 /* The test test_sd_device_enumerator_filter_subsystem_trial() is quite racy. Let's run the function
341 * several times after the udev queue becomes empty. */
342
343 if (!udev_available() || (access("/run/udev", F_OK) < 0 && errno == ENOENT)) {
344 assert_se(test_sd_device_enumerator_filter_subsystem_trial_many());
345 return;
346 }
347
348 _cleanup_(sd_event_unrefp) sd_event *event = NULL;
349 assert_se(sd_event_default(&event) >= 0);
350 assert_se(sd_event_add_inotify(event, NULL, "/run/udev" , IN_DELETE, on_inotify, NULL) >= 0);
351
352 if (udev_queue_is_empty() == 0) {
353 log_debug("udev queue is not empty, waiting for all queued events to be processed.");
354 assert_se(sd_event_loop(event) >= 0);
355 } else
356 assert_se(test_sd_device_enumerator_filter_subsystem_trial_many());
357 }
358
359 TEST(sd_device_enumerator_add_match_sysattr) {
360 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
361 sd_device *dev;
362 int ifindex;
363
364 assert_se(sd_device_enumerator_new(&e) >= 0);
365 assert_se(sd_device_enumerator_allow_uninitialized(e) >= 0);
366 assert_se(sd_device_enumerator_add_match_subsystem(e, "net", true) >= 0);
367 assert_se(sd_device_enumerator_add_match_sysattr(e, "ifindex", "1", true) >= 0);
368 assert_se(sd_device_enumerator_add_match_sysattr(e, "ifindex", "hoge", true) >= 0);
369 assert_se(sd_device_enumerator_add_match_sysattr(e, "ifindex", "foo", true) >= 0);
370 assert_se(sd_device_enumerator_add_match_sysattr(e, "ifindex", "bar", false) >= 0);
371 assert_se(sd_device_enumerator_add_match_sysattr(e, "ifindex", "baz", false) >= 0);
372
373 dev = sd_device_enumerator_get_device_first(e);
374 assert_se(dev);
375 assert_se(sd_device_get_ifindex(dev, &ifindex) >= 0);
376 assert_se(ifindex == 1);
377
378 assert_se(!sd_device_enumerator_get_device_next(e));
379 }
380
381 TEST(sd_device_enumerator_add_match_property) {
382 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
383 sd_device *dev;
384 int ifindex;
385
386 assert_se(sd_device_enumerator_new(&e) >= 0);
387 assert_se(sd_device_enumerator_allow_uninitialized(e) >= 0);
388 assert_se(sd_device_enumerator_add_match_subsystem(e, "net", true) >= 0);
389 assert_se(sd_device_enumerator_add_match_sysattr(e, "ifindex", "1", true) >= 0);
390 assert_se(sd_device_enumerator_add_match_property(e, "IFINDE*", "1*") >= 0);
391 assert_se(sd_device_enumerator_add_match_property(e, "IFINDE*", "hoge") >= 0);
392 assert_se(sd_device_enumerator_add_match_property(e, "IFINDE*", NULL) >= 0);
393 assert_se(sd_device_enumerator_add_match_property(e, "AAAAA", "BBBB") >= 0);
394 assert_se(sd_device_enumerator_add_match_property(e, "FOOOO", NULL) >= 0);
395
396 dev = sd_device_enumerator_get_device_first(e);
397 assert_se(dev);
398 assert_se(sd_device_get_ifindex(dev, &ifindex) >= 0);
399 assert_se(ifindex == 1);
400 }
401
402 static void check_parent_match(sd_device_enumerator *e, sd_device *dev) {
403 const char *syspath;
404 bool found = false;
405
406 assert_se(sd_device_get_syspath(dev, &syspath) >= 0);
407
408 FOREACH_DEVICE(e, d) {
409 const char *s;
410
411 assert_se(sd_device_get_syspath(d, &s) >= 0);
412 if (streq(s, syspath)) {
413 found = true;
414 break;
415 }
416 }
417
418 if (!found) {
419 log_device_debug(dev, "not enumerated, already removed??");
420 /* If the original device not found, then the device should be already removed. */
421 assert_se(access(syspath, F_OK) < 0);
422 assert_se(errno == ENOENT);
423 }
424 }
425
426 TEST(sd_device_enumerator_add_match_parent) {
427 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
428 int r;
429
430 assert_se(sd_device_enumerator_new(&e) >= 0);
431 assert_se(sd_device_enumerator_allow_uninitialized(e) >= 0);
432 /* See comments in TEST(sd_device_enumerator_devices). */
433 assert_se(sd_device_enumerator_add_match_subsystem(e, "bdi", false) >= 0);
434 assert_se(sd_device_enumerator_add_nomatch_sysname(e, "loop*") >= 0);
435 assert_se(sd_device_enumerator_add_match_subsystem(e, "net", false) >= 0);
436
437 if (!slow_tests_enabled())
438 assert_se(sd_device_enumerator_add_match_subsystem(e, "block", true) >= 0);
439
440 FOREACH_DEVICE(e, dev) {
441 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *p = NULL;
442 const char *syspath;
443 sd_device *parent;
444
445 assert_se(sd_device_get_syspath(dev, &syspath) >= 0);
446
447 r = sd_device_get_parent(dev, &parent);
448 if (r < 0) {
449 assert_se(ERRNO_IS_DEVICE_ABSENT(r));
450 continue;
451 }
452
453 log_debug("> %s", syspath);
454
455 assert_se(sd_device_enumerator_new(&p) >= 0);
456 assert_se(sd_device_enumerator_allow_uninitialized(p) >= 0);
457 assert_se(sd_device_enumerator_add_match_parent(p, parent) >= 0);
458
459 check_parent_match(p, dev);
460
461 /* If the device does not have subsystem, then it is not enumerated. */
462 r = sd_device_get_subsystem(parent, NULL);
463 if (r < 0) {
464 assert_se(r == -ENOENT);
465 continue;
466 }
467 check_parent_match(p, parent);
468 }
469 }
470
471 TEST(sd_device_get_child) {
472 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
473 int r;
474
475 assert_se(sd_device_enumerator_new(&e) >= 0);
476 assert_se(sd_device_enumerator_allow_uninitialized(e) >= 0);
477 /* See comments in TEST(sd_device_enumerator_devices). */
478 assert_se(sd_device_enumerator_add_match_subsystem(e, "bdi", false) >= 0);
479 assert_se(sd_device_enumerator_add_nomatch_sysname(e, "loop*") >= 0);
480 assert_se(sd_device_enumerator_add_match_subsystem(e, "net", false) >= 0);
481
482 if (!slow_tests_enabled())
483 assert_se(sd_device_enumerator_add_match_subsystem(e, "block", true) >= 0);
484
485 FOREACH_DEVICE(e, dev) {
486 const char *syspath, *parent_syspath, *expected_suffix, *suffix;
487 sd_device *parent;
488 bool found = false;
489
490 assert_se(sd_device_get_syspath(dev, &syspath) >= 0);
491
492 r = sd_device_get_parent(dev, &parent);
493 if (r < 0) {
494 assert_se(ERRNO_IS_DEVICE_ABSENT(r));
495 continue;
496 }
497
498 assert_se(sd_device_get_syspath(parent, &parent_syspath) >= 0);
499 assert_se(expected_suffix = path_startswith(syspath, parent_syspath));
500
501 log_debug("> %s", syspath);
502
503 FOREACH_DEVICE_CHILD_WITH_SUFFIX(parent, child, suffix) {
504 const char *s;
505
506 assert_se(child);
507 assert_se(suffix);
508
509 if (!streq(suffix, expected_suffix))
510 continue;
511
512 assert_se(sd_device_get_syspath(child, &s) >= 0);
513 assert_se(streq(s, syspath));
514 found = true;
515 break;
516 }
517 assert_se(found);
518 }
519 }
520
521 TEST(sd_device_new_from_nulstr) {
522 const char *devlinks =
523 "/dev/disk/by-partuuid/1290d63a-42cc-4c71-b87c-xxxxxxxxxxxx\0"
524 "/dev/disk/by-path/pci-0000:00:0f.0-scsi-0:0:0:0-part3\0"
525 "/dev/disk/by-label/Arch\\x20Linux\0"
526 "/dev/disk/by-uuid/a07b87e5-4af5-4a59-bde9-yyyyyyyyyyyy\0"
527 "/dev/disk/by-partlabel/Arch\\x20Linux\0"
528 "\0";
529
530 _cleanup_(sd_device_unrefp) sd_device *device = NULL, *from_nulstr = NULL;
531 _cleanup_free_ char *nulstr_copy = NULL;
532 const char *nulstr;
533 size_t len;
534
535 assert_se(sd_device_new_from_syspath(&device, "/sys/class/net/lo") >= 0);
536
537 /* Yeah, of course, setting devlink to the loopback interface is nonsense. But this is just a
538 * test for generating and parsing nulstr. For issue #17772. */
539 NULSTR_FOREACH(devlink, devlinks) {
540 log_device_info(device, "setting devlink: %s", devlink);
541 assert_se(device_add_devlink(device, devlink) >= 0);
542 assert_se(set_contains(device->devlinks, devlink));
543 }
544
545 /* For issue #23799 */
546 assert_se(device_add_tag(device, "tag1", false) >= 0);
547 assert_se(device_add_tag(device, "tag2", false) >= 0);
548 assert_se(device_add_tag(device, "current-tag1", true) >= 0);
549 assert_se(device_add_tag(device, "current-tag2", true) >= 0);
550
551 /* These properties are necessary for device_new_from_nulstr(). See device_verify(). */
552 assert_se(device_add_property_internal(device, "SEQNUM", "1") >= 0);
553 assert_se(device_add_property_internal(device, "ACTION", "change") >= 0);
554
555 assert_se(device_get_properties_nulstr(device, &nulstr, &len) >= 0);
556 assert_se(nulstr_copy = newdup(char, nulstr, len));
557 assert_se(device_new_from_nulstr(&from_nulstr, nulstr_copy, len) >= 0);
558
559 assert_se(sd_device_has_tag(from_nulstr, "tag1") == 1);
560 assert_se(sd_device_has_tag(from_nulstr, "tag2") == 1);
561 assert_se(sd_device_has_tag(from_nulstr, "current-tag1") == 1);
562 assert_se(sd_device_has_tag(from_nulstr, "current-tag2") == 1);
563 assert_se(sd_device_has_current_tag(from_nulstr, "tag1") == 0);
564 assert_se(sd_device_has_current_tag(from_nulstr, "tag2") == 0);
565 assert_se(sd_device_has_current_tag(from_nulstr, "current-tag1") == 1);
566 assert_se(sd_device_has_current_tag(from_nulstr, "current-tag2") == 1);
567
568 NULSTR_FOREACH(devlink, devlinks) {
569 log_device_info(from_nulstr, "checking devlink: %s", devlink);
570 assert_se(set_contains(from_nulstr->devlinks, devlink));
571 }
572 }
573
574 TEST(sd_device_new_from_path) {
575 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
576 _cleanup_(rm_rf_physical_and_freep) char *tmpdir = NULL;
577 int r;
578
579 assert_se(mkdtemp_malloc("/tmp/test-sd-device.XXXXXXX", &tmpdir) >= 0);
580
581 assert_se(sd_device_enumerator_new(&e) >= 0);
582 assert_se(sd_device_enumerator_allow_uninitialized(e) >= 0);
583 assert_se(sd_device_enumerator_add_match_subsystem(e, "block", true) >= 0);
584 assert_se(sd_device_enumerator_add_nomatch_sysname(e, "loop*") >= 0);
585 assert_se(sd_device_enumerator_add_match_property(e, "DEVNAME", "*") >= 0);
586
587 FOREACH_DEVICE(e, dev) {
588 _cleanup_(sd_device_unrefp) sd_device *d = NULL;
589 const char *syspath, *devpath, *sysname, *s;
590 _cleanup_free_ char *path = NULL;
591
592 assert_se(sd_device_get_sysname(dev, &sysname) >= 0);
593
594 log_debug("%s(%s)", __func__, sysname);
595
596 assert_se(sd_device_get_syspath(dev, &syspath) >= 0);
597 assert_se(sd_device_new_from_path(&d, syspath) >= 0);
598 assert_se(sd_device_get_syspath(d, &s) >= 0);
599 assert_se(streq(s, syspath));
600 d = sd_device_unref(d);
601
602 assert_se(sd_device_get_devname(dev, &devpath) >= 0);
603 r = sd_device_new_from_path(&d, devpath);
604 if (r >= 0) {
605 assert_se(sd_device_get_syspath(d, &s) >= 0);
606 assert_se(streq(s, syspath));
607 d = sd_device_unref(d);
608 } else
609 assert_se(r == -ENODEV || ERRNO_IS_PRIVILEGE(r));
610
611 assert_se(path = path_join(tmpdir, sysname));
612 assert_se(symlink(syspath, path) >= 0);
613 assert_se(sd_device_new_from_path(&d, path) >= 0);
614 assert_se(sd_device_get_syspath(d, &s) >= 0);
615 assert_se(streq(s, syspath));
616 }
617 }
618
619 static void test_devname_from_devnum_one(const char *path) {
620 _cleanup_free_ char *resolved = NULL;
621 struct stat st;
622
623 log_debug("> %s", path);
624
625 if (stat(path, &st) < 0) {
626 assert_se(errno == ENOENT);
627 log_notice("Path %s not found, skipping test", path);
628 return;
629 }
630
631 assert_se(devname_from_devnum(st.st_mode, st.st_rdev, &resolved) >= 0);
632 assert_se(path_equal(path, resolved));
633 resolved = mfree(resolved);
634 assert_se(devname_from_stat_rdev(&st, &resolved) >= 0);
635 assert_se(path_equal(path, resolved));
636 }
637
638 TEST(devname_from_devnum) {
639 test_devname_from_devnum_one("/dev/null");
640 test_devname_from_devnum_one("/dev/zero");
641 test_devname_from_devnum_one("/dev/full");
642 test_devname_from_devnum_one("/dev/random");
643 test_devname_from_devnum_one("/dev/urandom");
644 test_devname_from_devnum_one("/dev/tty");
645
646 if (is_device_node("/run/systemd/inaccessible/blk") > 0) {
647 test_devname_from_devnum_one("/run/systemd/inaccessible/chr");
648 test_devname_from_devnum_one("/run/systemd/inaccessible/blk");
649 }
650 }
651
652 DEFINE_TEST_MAIN(LOG_INFO);