]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libudev/libudev-monitor.c
util-lib: split out globbing related calls into glob-util.[ch]
[thirdparty/systemd.git] / src / libudev / libudev-monitor.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2008-2012 Kay Sievers <kay@vrfy.org>
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <linux/filter.h>
22 #include <linux/netlink.h>
23 #include <poll.h>
24 #include <stddef.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/socket.h>
29 #include <unistd.h>
30
31 #include "libudev.h"
32
33 #include "fd-util.h"
34 #include "fileio.h"
35 #include "formats-util.h"
36 #include "libudev-private.h"
37 #include "missing.h"
38 #include "socket-util.h"
39 #include "string-util.h"
40
41 /**
42 * SECTION:libudev-monitor
43 * @short_description: device event source
44 *
45 * Connects to a device event source.
46 */
47
48 /**
49 * udev_monitor:
50 *
51 * Opaque object handling an event source.
52 */
53 struct udev_monitor {
54 struct udev *udev;
55 int refcount;
56 int sock;
57 union sockaddr_union snl;
58 union sockaddr_union snl_trusted_sender;
59 union sockaddr_union snl_destination;
60 socklen_t addrlen;
61 struct udev_list filter_subsystem_list;
62 struct udev_list filter_tag_list;
63 bool bound;
64 };
65
66 enum udev_monitor_netlink_group {
67 UDEV_MONITOR_NONE,
68 UDEV_MONITOR_KERNEL,
69 UDEV_MONITOR_UDEV,
70 };
71
72 #define UDEV_MONITOR_MAGIC 0xfeedcafe
73 struct udev_monitor_netlink_header {
74 /* "libudev" prefix to distinguish libudev and kernel messages */
75 char prefix[8];
76 /*
77 * magic to protect against daemon <-> library message format mismatch
78 * used in the kernel from socket filter rules; needs to be stored in network order
79 */
80 unsigned int magic;
81 /* total length of header structure known to the sender */
82 unsigned int header_size;
83 /* properties string buffer */
84 unsigned int properties_off;
85 unsigned int properties_len;
86 /*
87 * hashes of primary device properties strings, to let libudev subscribers
88 * use in-kernel socket filters; values need to be stored in network order
89 */
90 unsigned int filter_subsystem_hash;
91 unsigned int filter_devtype_hash;
92 unsigned int filter_tag_bloom_hi;
93 unsigned int filter_tag_bloom_lo;
94 };
95
96 static struct udev_monitor *udev_monitor_new(struct udev *udev)
97 {
98 struct udev_monitor *udev_monitor;
99
100 udev_monitor = new0(struct udev_monitor, 1);
101 if (udev_monitor == NULL)
102 return NULL;
103 udev_monitor->refcount = 1;
104 udev_monitor->udev = udev;
105 udev_list_init(udev, &udev_monitor->filter_subsystem_list, false);
106 udev_list_init(udev, &udev_monitor->filter_tag_list, true);
107 return udev_monitor;
108 }
109
110 /* we consider udev running when /dev is on devtmpfs */
111 static bool udev_has_devtmpfs(struct udev *udev) {
112
113 union file_handle_union h = FILE_HANDLE_INIT;
114 _cleanup_fclose_ FILE *f = NULL;
115 char line[LINE_MAX], *e;
116 int mount_id;
117 int r;
118
119 r = name_to_handle_at(AT_FDCWD, "/dev", &h.handle, &mount_id, 0);
120 if (r < 0) {
121 if (errno != EOPNOTSUPP)
122 log_debug_errno(errno, "name_to_handle_at on /dev: %m");
123 return false;
124 }
125
126 f = fopen("/proc/self/mountinfo", "re");
127 if (!f)
128 return false;
129
130 FOREACH_LINE(line, f, return false) {
131 int mid;
132
133 if (sscanf(line, "%i", &mid) != 1)
134 continue;
135
136 if (mid != mount_id)
137 continue;
138
139 e = strstr(line, " - ");
140 if (!e)
141 continue;
142
143 /* accept any name that starts with the currently expected type */
144 if (startswith(e + 3, "devtmpfs"))
145 return true;
146 }
147
148 return false;
149 }
150
151 static void monitor_set_nl_address(struct udev_monitor *udev_monitor) {
152 union sockaddr_union snl;
153 socklen_t addrlen;
154 int r;
155
156 assert(udev_monitor);
157
158 /* get the address the kernel has assigned us
159 * it is usually, but not necessarily the pid
160 */
161 addrlen = sizeof(struct sockaddr_nl);
162 r = getsockname(udev_monitor->sock, &snl.sa, &addrlen);
163 if (r >= 0)
164 udev_monitor->snl.nl.nl_pid = snl.nl.nl_pid;
165 }
166
167 struct udev_monitor *udev_monitor_new_from_netlink_fd(struct udev *udev, const char *name, int fd)
168 {
169 struct udev_monitor *udev_monitor;
170 unsigned int group;
171
172 if (udev == NULL)
173 return NULL;
174
175 if (name == NULL)
176 group = UDEV_MONITOR_NONE;
177 else if (streq(name, "udev")) {
178 /*
179 * We do not support subscribing to uevents if no instance of
180 * udev is running. Uevents would otherwise broadcast the
181 * processing data of the host into containers, which is not
182 * desired.
183 *
184 * Containers will currently not get any udev uevents, until
185 * a supporting infrastructure is available.
186 *
187 * We do not set a netlink multicast group here, so the socket
188 * will not receive any messages.
189 */
190 if (access("/run/udev/control", F_OK) < 0 && !udev_has_devtmpfs(udev)) {
191 log_debug("the udev service seems not to be active, disable the monitor");
192 group = UDEV_MONITOR_NONE;
193 } else
194 group = UDEV_MONITOR_UDEV;
195 } else if (streq(name, "kernel"))
196 group = UDEV_MONITOR_KERNEL;
197 else
198 return NULL;
199
200 udev_monitor = udev_monitor_new(udev);
201 if (udev_monitor == NULL)
202 return NULL;
203
204 if (fd < 0) {
205 udev_monitor->sock = socket(PF_NETLINK, SOCK_RAW|SOCK_CLOEXEC|SOCK_NONBLOCK, NETLINK_KOBJECT_UEVENT);
206 if (udev_monitor->sock < 0) {
207 log_debug_errno(errno, "error getting socket: %m");
208 free(udev_monitor);
209 return NULL;
210 }
211 } else {
212 udev_monitor->bound = true;
213 udev_monitor->sock = fd;
214 monitor_set_nl_address(udev_monitor);
215 }
216
217 udev_monitor->snl.nl.nl_family = AF_NETLINK;
218 udev_monitor->snl.nl.nl_groups = group;
219
220 /* default destination for sending */
221 udev_monitor->snl_destination.nl.nl_family = AF_NETLINK;
222 udev_monitor->snl_destination.nl.nl_groups = UDEV_MONITOR_UDEV;
223
224 return udev_monitor;
225 }
226
227 /**
228 * udev_monitor_new_from_netlink:
229 * @udev: udev library context
230 * @name: name of event source
231 *
232 * Create new udev monitor and connect to a specified event
233 * source. Valid sources identifiers are "udev" and "kernel".
234 *
235 * Applications should usually not connect directly to the
236 * "kernel" events, because the devices might not be useable
237 * at that time, before udev has configured them, and created
238 * device nodes. Accessing devices at the same time as udev,
239 * might result in unpredictable behavior. The "udev" events
240 * are sent out after udev has finished its event processing,
241 * all rules have been processed, and needed device nodes are
242 * created.
243 *
244 * The initial refcount is 1, and needs to be decremented to
245 * release the resources of the udev monitor.
246 *
247 * Returns: a new udev monitor, or #NULL, in case of an error
248 **/
249 _public_ struct udev_monitor *udev_monitor_new_from_netlink(struct udev *udev, const char *name)
250 {
251 return udev_monitor_new_from_netlink_fd(udev, name, -1);
252 }
253
254 static inline void bpf_stmt(struct sock_filter *inss, unsigned int *i,
255 unsigned short code, unsigned int data)
256 {
257 struct sock_filter *ins = &inss[*i];
258
259 ins->code = code;
260 ins->k = data;
261 (*i)++;
262 }
263
264 static inline void bpf_jmp(struct sock_filter *inss, unsigned int *i,
265 unsigned short code, unsigned int data,
266 unsigned short jt, unsigned short jf)
267 {
268 struct sock_filter *ins = &inss[*i];
269
270 ins->code = code;
271 ins->jt = jt;
272 ins->jf = jf;
273 ins->k = data;
274 (*i)++;
275 }
276
277 /**
278 * udev_monitor_filter_update:
279 * @udev_monitor: monitor
280 *
281 * Update the installed socket filter. This is only needed,
282 * if the filter was removed or changed.
283 *
284 * Returns: 0 on success, otherwise a negative error value.
285 */
286 _public_ int udev_monitor_filter_update(struct udev_monitor *udev_monitor)
287 {
288 struct sock_filter ins[512];
289 struct sock_fprog filter;
290 unsigned int i;
291 struct udev_list_entry *list_entry;
292 int err;
293
294 if (udev_list_get_entry(&udev_monitor->filter_subsystem_list) == NULL &&
295 udev_list_get_entry(&udev_monitor->filter_tag_list) == NULL)
296 return 0;
297
298 memzero(ins, sizeof(ins));
299 i = 0;
300
301 /* load magic in A */
302 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, magic));
303 /* jump if magic matches */
304 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, UDEV_MONITOR_MAGIC, 1, 0);
305 /* wrong magic, pass packet */
306 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0xffffffff);
307
308 if (udev_list_get_entry(&udev_monitor->filter_tag_list) != NULL) {
309 int tag_matches;
310
311 /* count tag matches, to calculate end of tag match block */
312 tag_matches = 0;
313 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_tag_list))
314 tag_matches++;
315
316 /* add all tags matches */
317 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_tag_list)) {
318 uint64_t tag_bloom_bits = util_string_bloom64(udev_list_entry_get_name(list_entry));
319 uint32_t tag_bloom_hi = tag_bloom_bits >> 32;
320 uint32_t tag_bloom_lo = tag_bloom_bits & 0xffffffff;
321
322 /* load device bloom bits in A */
323 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_tag_bloom_hi));
324 /* clear bits (tag bits & bloom bits) */
325 bpf_stmt(ins, &i, BPF_ALU|BPF_AND|BPF_K, tag_bloom_hi);
326 /* jump to next tag if it does not match */
327 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, tag_bloom_hi, 0, 3);
328
329 /* load device bloom bits in A */
330 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_tag_bloom_lo));
331 /* clear bits (tag bits & bloom bits) */
332 bpf_stmt(ins, &i, BPF_ALU|BPF_AND|BPF_K, tag_bloom_lo);
333 /* jump behind end of tag match block if tag matches */
334 tag_matches--;
335 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, tag_bloom_lo, 1 + (tag_matches * 6), 0);
336 }
337
338 /* nothing matched, drop packet */
339 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0);
340 }
341
342 /* add all subsystem matches */
343 if (udev_list_get_entry(&udev_monitor->filter_subsystem_list) != NULL) {
344 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_subsystem_list)) {
345 unsigned int hash = util_string_hash32(udev_list_entry_get_name(list_entry));
346
347 /* load device subsystem value in A */
348 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_subsystem_hash));
349 if (udev_list_entry_get_value(list_entry) == NULL) {
350 /* jump if subsystem does not match */
351 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, hash, 0, 1);
352 } else {
353 /* jump if subsystem does not match */
354 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, hash, 0, 3);
355
356 /* load device devtype value in A */
357 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_devtype_hash));
358 /* jump if value does not match */
359 hash = util_string_hash32(udev_list_entry_get_value(list_entry));
360 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, hash, 0, 1);
361 }
362
363 /* matched, pass packet */
364 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0xffffffff);
365
366 if (i+1 >= ELEMENTSOF(ins))
367 return -E2BIG;
368 }
369
370 /* nothing matched, drop packet */
371 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0);
372 }
373
374 /* matched, pass packet */
375 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0xffffffff);
376
377 /* install filter */
378 memzero(&filter, sizeof(filter));
379 filter.len = i;
380 filter.filter = ins;
381 err = setsockopt(udev_monitor->sock, SOL_SOCKET, SO_ATTACH_FILTER, &filter, sizeof(filter));
382 return err < 0 ? -errno : 0;
383 }
384
385 int udev_monitor_allow_unicast_sender(struct udev_monitor *udev_monitor, struct udev_monitor *sender)
386 {
387 udev_monitor->snl_trusted_sender.nl.nl_pid = sender->snl.nl.nl_pid;
388 return 0;
389 }
390
391 /**
392 * udev_monitor_enable_receiving:
393 * @udev_monitor: the monitor which should receive events
394 *
395 * Binds the @udev_monitor socket to the event source.
396 *
397 * Returns: 0 on success, otherwise a negative error value.
398 */
399 _public_ int udev_monitor_enable_receiving(struct udev_monitor *udev_monitor)
400 {
401 int err = 0;
402 const int on = 1;
403
404 udev_monitor_filter_update(udev_monitor);
405
406 if (!udev_monitor->bound) {
407 err = bind(udev_monitor->sock,
408 &udev_monitor->snl.sa, sizeof(struct sockaddr_nl));
409 if (err == 0)
410 udev_monitor->bound = true;
411 }
412
413 if (err >= 0)
414 monitor_set_nl_address(udev_monitor);
415 else {
416 log_debug_errno(errno, "bind failed: %m");
417 return -errno;
418 }
419
420 /* enable receiving of sender credentials */
421 err = setsockopt(udev_monitor->sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
422 if (err < 0)
423 log_debug_errno(errno, "setting SO_PASSCRED failed: %m");
424
425 return 0;
426 }
427
428 /**
429 * udev_monitor_set_receive_buffer_size:
430 * @udev_monitor: the monitor which should receive events
431 * @size: the size in bytes
432 *
433 * Set the size of the kernel socket buffer. This call needs the
434 * appropriate privileges to succeed.
435 *
436 * Returns: 0 on success, otherwise -1 on error.
437 */
438 _public_ int udev_monitor_set_receive_buffer_size(struct udev_monitor *udev_monitor, int size)
439 {
440 if (udev_monitor == NULL)
441 return -EINVAL;
442 return setsockopt(udev_monitor->sock, SOL_SOCKET, SO_RCVBUFFORCE, &size, sizeof(size));
443 }
444
445 int udev_monitor_disconnect(struct udev_monitor *udev_monitor)
446 {
447 int err;
448
449 err = close(udev_monitor->sock);
450 udev_monitor->sock = -1;
451 return err < 0 ? -errno : 0;
452 }
453
454 /**
455 * udev_monitor_ref:
456 * @udev_monitor: udev monitor
457 *
458 * Take a reference of a udev monitor.
459 *
460 * Returns: the passed udev monitor
461 **/
462 _public_ struct udev_monitor *udev_monitor_ref(struct udev_monitor *udev_monitor)
463 {
464 if (udev_monitor == NULL)
465 return NULL;
466 udev_monitor->refcount++;
467 return udev_monitor;
468 }
469
470 /**
471 * udev_monitor_unref:
472 * @udev_monitor: udev monitor
473 *
474 * Drop a reference of a udev monitor. If the refcount reaches zero,
475 * the bound socket will be closed, and the resources of the monitor
476 * will be released.
477 *
478 * Returns: #NULL
479 **/
480 _public_ struct udev_monitor *udev_monitor_unref(struct udev_monitor *udev_monitor)
481 {
482 if (udev_monitor == NULL)
483 return NULL;
484 udev_monitor->refcount--;
485 if (udev_monitor->refcount > 0)
486 return NULL;
487 if (udev_monitor->sock >= 0)
488 close(udev_monitor->sock);
489 udev_list_cleanup(&udev_monitor->filter_subsystem_list);
490 udev_list_cleanup(&udev_monitor->filter_tag_list);
491 free(udev_monitor);
492 return NULL;
493 }
494
495 /**
496 * udev_monitor_get_udev:
497 * @udev_monitor: udev monitor
498 *
499 * Retrieve the udev library context the monitor was created with.
500 *
501 * Returns: the udev library context
502 **/
503 _public_ struct udev *udev_monitor_get_udev(struct udev_monitor *udev_monitor)
504 {
505 if (udev_monitor == NULL)
506 return NULL;
507 return udev_monitor->udev;
508 }
509
510 /**
511 * udev_monitor_get_fd:
512 * @udev_monitor: udev monitor
513 *
514 * Retrieve the socket file descriptor associated with the monitor.
515 *
516 * Returns: the socket file descriptor
517 **/
518 _public_ int udev_monitor_get_fd(struct udev_monitor *udev_monitor)
519 {
520 if (udev_monitor == NULL)
521 return -EINVAL;
522 return udev_monitor->sock;
523 }
524
525 static int passes_filter(struct udev_monitor *udev_monitor, struct udev_device *udev_device)
526 {
527 struct udev_list_entry *list_entry;
528
529 if (udev_list_get_entry(&udev_monitor->filter_subsystem_list) == NULL)
530 goto tag;
531 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_subsystem_list)) {
532 const char *subsys = udev_list_entry_get_name(list_entry);
533 const char *dsubsys = udev_device_get_subsystem(udev_device);
534 const char *devtype;
535 const char *ddevtype;
536
537 if (!streq(dsubsys, subsys))
538 continue;
539
540 devtype = udev_list_entry_get_value(list_entry);
541 if (devtype == NULL)
542 goto tag;
543 ddevtype = udev_device_get_devtype(udev_device);
544 if (ddevtype == NULL)
545 continue;
546 if (streq(ddevtype, devtype))
547 goto tag;
548 }
549 return 0;
550
551 tag:
552 if (udev_list_get_entry(&udev_monitor->filter_tag_list) == NULL)
553 return 1;
554 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_tag_list)) {
555 const char *tag = udev_list_entry_get_name(list_entry);
556
557 if (udev_device_has_tag(udev_device, tag))
558 return 1;
559 }
560 return 0;
561 }
562
563 /**
564 * udev_monitor_receive_device:
565 * @udev_monitor: udev monitor
566 *
567 * Receive data from the udev monitor socket, allocate a new udev
568 * device, fill in the received data, and return the device.
569 *
570 * Only socket connections with uid=0 are accepted.
571 *
572 * The monitor socket is by default set to NONBLOCK. A variant of poll() on
573 * the file descriptor returned by udev_monitor_get_fd() should to be used to
574 * wake up when new devices arrive, or alternatively the file descriptor
575 * switched into blocking mode.
576 *
577 * The initial refcount is 1, and needs to be decremented to
578 * release the resources of the udev device.
579 *
580 * Returns: a new udev device, or #NULL, in case of an error
581 **/
582 _public_ struct udev_device *udev_monitor_receive_device(struct udev_monitor *udev_monitor)
583 {
584 struct udev_device *udev_device;
585 struct msghdr smsg;
586 struct iovec iov;
587 char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
588 struct cmsghdr *cmsg;
589 union sockaddr_union snl;
590 struct ucred *cred;
591 union {
592 struct udev_monitor_netlink_header nlh;
593 char raw[8192];
594 } buf;
595 ssize_t buflen;
596 ssize_t bufpos;
597 bool is_initialized = false;
598
599 retry:
600 if (udev_monitor == NULL)
601 return NULL;
602 iov.iov_base = &buf;
603 iov.iov_len = sizeof(buf);
604 memzero(&smsg, sizeof(struct msghdr));
605 smsg.msg_iov = &iov;
606 smsg.msg_iovlen = 1;
607 smsg.msg_control = cred_msg;
608 smsg.msg_controllen = sizeof(cred_msg);
609 smsg.msg_name = &snl;
610 smsg.msg_namelen = sizeof(snl);
611
612 buflen = recvmsg(udev_monitor->sock, &smsg, 0);
613 if (buflen < 0) {
614 if (errno != EINTR)
615 log_debug("unable to receive message");
616 return NULL;
617 }
618
619 if (buflen < 32 || (smsg.msg_flags & MSG_TRUNC)) {
620 log_debug("invalid message length");
621 return NULL;
622 }
623
624 if (snl.nl.nl_groups == 0) {
625 /* unicast message, check if we trust the sender */
626 if (udev_monitor->snl_trusted_sender.nl.nl_pid == 0 ||
627 snl.nl.nl_pid != udev_monitor->snl_trusted_sender.nl.nl_pid) {
628 log_debug("unicast netlink message ignored");
629 return NULL;
630 }
631 } else if (snl.nl.nl_groups == UDEV_MONITOR_KERNEL) {
632 if (snl.nl.nl_pid > 0) {
633 log_debug("multicast kernel netlink message from PID %"PRIu32" ignored",
634 snl.nl.nl_pid);
635 return NULL;
636 }
637 }
638
639 cmsg = CMSG_FIRSTHDR(&smsg);
640 if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
641 log_debug("no sender credentials received, message ignored");
642 return NULL;
643 }
644
645 cred = (struct ucred *)CMSG_DATA(cmsg);
646 if (cred->uid != 0) {
647 log_debug("sender uid="UID_FMT", message ignored", cred->uid);
648 return NULL;
649 }
650
651 if (memcmp(buf.raw, "libudev", 8) == 0) {
652 /* udev message needs proper version magic */
653 if (buf.nlh.magic != htonl(UDEV_MONITOR_MAGIC)) {
654 log_debug("unrecognized message signature (%x != %x)",
655 buf.nlh.magic, htonl(UDEV_MONITOR_MAGIC));
656 return NULL;
657 }
658 if (buf.nlh.properties_off+32 > (size_t)buflen) {
659 log_debug("message smaller than expected (%u > %zd)",
660 buf.nlh.properties_off+32, buflen);
661 return NULL;
662 }
663
664 bufpos = buf.nlh.properties_off;
665
666 /* devices received from udev are always initialized */
667 is_initialized = true;
668 } else {
669 /* kernel message with header */
670 bufpos = strlen(buf.raw) + 1;
671 if ((size_t)bufpos < sizeof("a@/d") || bufpos >= buflen) {
672 log_debug("invalid message length");
673 return NULL;
674 }
675
676 /* check message header */
677 if (strstr(buf.raw, "@/") == NULL) {
678 log_debug("unrecognized message header");
679 return NULL;
680 }
681 }
682
683 udev_device = udev_device_new_from_nulstr(udev_monitor->udev, &buf.raw[bufpos], buflen - bufpos);
684 if (!udev_device) {
685 log_debug("could not create device: %m");
686 return NULL;
687 }
688
689 if (is_initialized)
690 udev_device_set_is_initialized(udev_device);
691
692 /* skip device, if it does not pass the current filter */
693 if (!passes_filter(udev_monitor, udev_device)) {
694 struct pollfd pfd[1];
695 int rc;
696
697 udev_device_unref(udev_device);
698
699 /* if something is queued, get next device */
700 pfd[0].fd = udev_monitor->sock;
701 pfd[0].events = POLLIN;
702 rc = poll(pfd, 1, 0);
703 if (rc > 0)
704 goto retry;
705 return NULL;
706 }
707
708 return udev_device;
709 }
710
711 int udev_monitor_send_device(struct udev_monitor *udev_monitor,
712 struct udev_monitor *destination, struct udev_device *udev_device)
713 {
714 const char *buf, *val;
715 ssize_t blen, count;
716 struct udev_monitor_netlink_header nlh = {
717 .prefix = "libudev",
718 .magic = htonl(UDEV_MONITOR_MAGIC),
719 .header_size = sizeof nlh,
720 };
721 struct iovec iov[2] = {
722 { .iov_base = &nlh, .iov_len = sizeof nlh },
723 };
724 struct msghdr smsg = {
725 .msg_iov = iov,
726 .msg_iovlen = 2,
727 };
728 struct udev_list_entry *list_entry;
729 uint64_t tag_bloom_bits;
730
731 blen = udev_device_get_properties_monitor_buf(udev_device, &buf);
732 if (blen < 32) {
733 log_debug("device buffer is too small to contain a valid device");
734 return -EINVAL;
735 }
736
737 /* fill in versioned header */
738 val = udev_device_get_subsystem(udev_device);
739 nlh.filter_subsystem_hash = htonl(util_string_hash32(val));
740
741 val = udev_device_get_devtype(udev_device);
742 if (val != NULL)
743 nlh.filter_devtype_hash = htonl(util_string_hash32(val));
744
745 /* add tag bloom filter */
746 tag_bloom_bits = 0;
747 udev_list_entry_foreach(list_entry, udev_device_get_tags_list_entry(udev_device))
748 tag_bloom_bits |= util_string_bloom64(udev_list_entry_get_name(list_entry));
749 if (tag_bloom_bits > 0) {
750 nlh.filter_tag_bloom_hi = htonl(tag_bloom_bits >> 32);
751 nlh.filter_tag_bloom_lo = htonl(tag_bloom_bits & 0xffffffff);
752 }
753
754 /* add properties list */
755 nlh.properties_off = iov[0].iov_len;
756 nlh.properties_len = blen;
757 iov[1].iov_base = (char *)buf;
758 iov[1].iov_len = blen;
759
760 /*
761 * Use custom address for target, or the default one.
762 *
763 * If we send to a multicast group, we will get
764 * ECONNREFUSED, which is expected.
765 */
766 if (destination)
767 smsg.msg_name = &destination->snl;
768 else
769 smsg.msg_name = &udev_monitor->snl_destination;
770 smsg.msg_namelen = sizeof(struct sockaddr_nl);
771 count = sendmsg(udev_monitor->sock, &smsg, 0);
772 if (count < 0) {
773 if (!destination && errno == ECONNREFUSED) {
774 log_debug("passed device to netlink monitor %p", udev_monitor);
775 return 0;
776 } else
777 return -errno;
778 }
779
780 log_debug("passed %zi byte device to netlink monitor %p", count, udev_monitor);
781 return count;
782 }
783
784 /**
785 * udev_monitor_filter_add_match_subsystem_devtype:
786 * @udev_monitor: the monitor
787 * @subsystem: the subsystem value to match the incoming devices against
788 * @devtype: the devtype value to match the incoming devices against
789 *
790 * This filter is efficiently executed inside the kernel, and libudev subscribers
791 * will usually not be woken up for devices which do not match.
792 *
793 * The filter must be installed before the monitor is switched to listening mode.
794 *
795 * Returns: 0 on success, otherwise a negative error value.
796 */
797 _public_ int udev_monitor_filter_add_match_subsystem_devtype(struct udev_monitor *udev_monitor, const char *subsystem, const char *devtype)
798 {
799 if (udev_monitor == NULL)
800 return -EINVAL;
801 if (subsystem == NULL)
802 return -EINVAL;
803 if (udev_list_entry_add(&udev_monitor->filter_subsystem_list, subsystem, devtype) == NULL)
804 return -ENOMEM;
805 return 0;
806 }
807
808 /**
809 * udev_monitor_filter_add_match_tag:
810 * @udev_monitor: the monitor
811 * @tag: the name of a tag
812 *
813 * This filter is efficiently executed inside the kernel, and libudev subscribers
814 * will usually not be woken up for devices which do not match.
815 *
816 * The filter must be installed before the monitor is switched to listening mode.
817 *
818 * Returns: 0 on success, otherwise a negative error value.
819 */
820 _public_ int udev_monitor_filter_add_match_tag(struct udev_monitor *udev_monitor, const char *tag)
821 {
822 if (udev_monitor == NULL)
823 return -EINVAL;
824 if (tag == NULL)
825 return -EINVAL;
826 if (udev_list_entry_add(&udev_monitor->filter_tag_list, tag, NULL) == NULL)
827 return -ENOMEM;
828 return 0;
829 }
830
831 /**
832 * udev_monitor_filter_remove:
833 * @udev_monitor: monitor
834 *
835 * Remove all filters from monitor.
836 *
837 * Returns: 0 on success, otherwise a negative error value.
838 */
839 _public_ int udev_monitor_filter_remove(struct udev_monitor *udev_monitor)
840 {
841 static struct sock_fprog filter = { 0, NULL };
842
843 udev_list_cleanup(&udev_monitor->filter_subsystem_list);
844 return setsockopt(udev_monitor->sock, SOL_SOCKET, SO_ATTACH_FILTER, &filter, sizeof(filter));
845 }