]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libudev/libudev-monitor.c
shared/install: use _cleanup_free_
[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 "alloc-util.h"
34 #include "fd-util.h"
35 #include "fileio.h"
36 #include "formats-util.h"
37 #include "libudev-private.h"
38 #include "missing.h"
39 #include "mount-util.h"
40 #include "socket-util.h"
41 #include "string-util.h"
42
43 /**
44 * SECTION:libudev-monitor
45 * @short_description: device event source
46 *
47 * Connects to a device event source.
48 */
49
50 /**
51 * udev_monitor:
52 *
53 * Opaque object handling an event source.
54 */
55 struct udev_monitor {
56 struct udev *udev;
57 int refcount;
58 int sock;
59 union sockaddr_union snl;
60 union sockaddr_union snl_trusted_sender;
61 union sockaddr_union snl_destination;
62 socklen_t addrlen;
63 struct udev_list filter_subsystem_list;
64 struct udev_list filter_tag_list;
65 bool bound;
66 };
67
68 enum udev_monitor_netlink_group {
69 UDEV_MONITOR_NONE,
70 UDEV_MONITOR_KERNEL,
71 UDEV_MONITOR_UDEV,
72 };
73
74 #define UDEV_MONITOR_MAGIC 0xfeedcafe
75 struct udev_monitor_netlink_header {
76 /* "libudev" prefix to distinguish libudev and kernel messages */
77 char prefix[8];
78 /*
79 * magic to protect against daemon <-> library message format mismatch
80 * used in the kernel from socket filter rules; needs to be stored in network order
81 */
82 unsigned int magic;
83 /* total length of header structure known to the sender */
84 unsigned int header_size;
85 /* properties string buffer */
86 unsigned int properties_off;
87 unsigned int properties_len;
88 /*
89 * hashes of primary device properties strings, to let libudev subscribers
90 * use in-kernel socket filters; values need to be stored in network order
91 */
92 unsigned int filter_subsystem_hash;
93 unsigned int filter_devtype_hash;
94 unsigned int filter_tag_bloom_hi;
95 unsigned int filter_tag_bloom_lo;
96 };
97
98 static struct udev_monitor *udev_monitor_new(struct udev *udev)
99 {
100 struct udev_monitor *udev_monitor;
101
102 udev_monitor = new0(struct udev_monitor, 1);
103 if (udev_monitor == NULL)
104 return NULL;
105 udev_monitor->refcount = 1;
106 udev_monitor->udev = udev;
107 udev_list_init(udev, &udev_monitor->filter_subsystem_list, false);
108 udev_list_init(udev, &udev_monitor->filter_tag_list, true);
109 return udev_monitor;
110 }
111
112 /* we consider udev running when /dev is on devtmpfs */
113 static bool udev_has_devtmpfs(struct udev *udev) {
114
115 union file_handle_union h = FILE_HANDLE_INIT;
116 _cleanup_fclose_ FILE *f = NULL;
117 char line[LINE_MAX], *e;
118 int mount_id;
119 int r;
120
121 r = name_to_handle_at(AT_FDCWD, "/dev", &h.handle, &mount_id, 0);
122 if (r < 0) {
123 if (errno != EOPNOTSUPP)
124 log_debug_errno(errno, "name_to_handle_at on /dev: %m");
125 return false;
126 }
127
128 f = fopen("/proc/self/mountinfo", "re");
129 if (!f)
130 return false;
131
132 FOREACH_LINE(line, f, return false) {
133 int mid;
134
135 if (sscanf(line, "%i", &mid) != 1)
136 continue;
137
138 if (mid != mount_id)
139 continue;
140
141 e = strstr(line, " - ");
142 if (!e)
143 continue;
144
145 /* accept any name that starts with the currently expected type */
146 if (startswith(e + 3, "devtmpfs"))
147 return true;
148 }
149
150 return false;
151 }
152
153 static void monitor_set_nl_address(struct udev_monitor *udev_monitor) {
154 union sockaddr_union snl;
155 socklen_t addrlen;
156 int r;
157
158 assert(udev_monitor);
159
160 /* get the address the kernel has assigned us
161 * it is usually, but not necessarily the pid
162 */
163 addrlen = sizeof(struct sockaddr_nl);
164 r = getsockname(udev_monitor->sock, &snl.sa, &addrlen);
165 if (r >= 0)
166 udev_monitor->snl.nl.nl_pid = snl.nl.nl_pid;
167 }
168
169 struct udev_monitor *udev_monitor_new_from_netlink_fd(struct udev *udev, const char *name, int fd)
170 {
171 struct udev_monitor *udev_monitor;
172 unsigned int group;
173
174 if (udev == NULL)
175 return NULL;
176
177 if (name == NULL)
178 group = UDEV_MONITOR_NONE;
179 else if (streq(name, "udev")) {
180 /*
181 * We do not support subscribing to uevents if no instance of
182 * udev is running. Uevents would otherwise broadcast the
183 * processing data of the host into containers, which is not
184 * desired.
185 *
186 * Containers will currently not get any udev uevents, until
187 * a supporting infrastructure is available.
188 *
189 * We do not set a netlink multicast group here, so the socket
190 * will not receive any messages.
191 */
192 if (access("/run/udev/control", F_OK) < 0 && !udev_has_devtmpfs(udev)) {
193 log_debug("the udev service seems not to be active, disable the monitor");
194 group = UDEV_MONITOR_NONE;
195 } else
196 group = UDEV_MONITOR_UDEV;
197 } else if (streq(name, "kernel"))
198 group = UDEV_MONITOR_KERNEL;
199 else
200 return NULL;
201
202 udev_monitor = udev_monitor_new(udev);
203 if (udev_monitor == NULL)
204 return NULL;
205
206 if (fd < 0) {
207 udev_monitor->sock = socket(PF_NETLINK, SOCK_RAW|SOCK_CLOEXEC|SOCK_NONBLOCK, NETLINK_KOBJECT_UEVENT);
208 if (udev_monitor->sock < 0) {
209 log_debug_errno(errno, "error getting socket: %m");
210 free(udev_monitor);
211 return NULL;
212 }
213 } else {
214 udev_monitor->bound = true;
215 udev_monitor->sock = fd;
216 monitor_set_nl_address(udev_monitor);
217 }
218
219 udev_monitor->snl.nl.nl_family = AF_NETLINK;
220 udev_monitor->snl.nl.nl_groups = group;
221
222 /* default destination for sending */
223 udev_monitor->snl_destination.nl.nl_family = AF_NETLINK;
224 udev_monitor->snl_destination.nl.nl_groups = UDEV_MONITOR_UDEV;
225
226 return udev_monitor;
227 }
228
229 /**
230 * udev_monitor_new_from_netlink:
231 * @udev: udev library context
232 * @name: name of event source
233 *
234 * Create new udev monitor and connect to a specified event
235 * source. Valid sources identifiers are "udev" and "kernel".
236 *
237 * Applications should usually not connect directly to the
238 * "kernel" events, because the devices might not be useable
239 * at that time, before udev has configured them, and created
240 * device nodes. Accessing devices at the same time as udev,
241 * might result in unpredictable behavior. The "udev" events
242 * are sent out after udev has finished its event processing,
243 * all rules have been processed, and needed device nodes are
244 * created.
245 *
246 * The initial refcount is 1, and needs to be decremented to
247 * release the resources of the udev monitor.
248 *
249 * Returns: a new udev monitor, or #NULL, in case of an error
250 **/
251 _public_ struct udev_monitor *udev_monitor_new_from_netlink(struct udev *udev, const char *name)
252 {
253 return udev_monitor_new_from_netlink_fd(udev, name, -1);
254 }
255
256 static inline void bpf_stmt(struct sock_filter *inss, unsigned int *i,
257 unsigned short code, unsigned int data)
258 {
259 struct sock_filter *ins = &inss[*i];
260
261 ins->code = code;
262 ins->k = data;
263 (*i)++;
264 }
265
266 static inline void bpf_jmp(struct sock_filter *inss, unsigned int *i,
267 unsigned short code, unsigned int data,
268 unsigned short jt, unsigned short jf)
269 {
270 struct sock_filter *ins = &inss[*i];
271
272 ins->code = code;
273 ins->jt = jt;
274 ins->jf = jf;
275 ins->k = data;
276 (*i)++;
277 }
278
279 /**
280 * udev_monitor_filter_update:
281 * @udev_monitor: monitor
282 *
283 * Update the installed socket filter. This is only needed,
284 * if the filter was removed or changed.
285 *
286 * Returns: 0 on success, otherwise a negative error value.
287 */
288 _public_ int udev_monitor_filter_update(struct udev_monitor *udev_monitor)
289 {
290 struct sock_filter ins[512];
291 struct sock_fprog filter;
292 unsigned int i;
293 struct udev_list_entry *list_entry;
294 int err;
295
296 if (udev_list_get_entry(&udev_monitor->filter_subsystem_list) == NULL &&
297 udev_list_get_entry(&udev_monitor->filter_tag_list) == NULL)
298 return 0;
299
300 memzero(ins, sizeof(ins));
301 i = 0;
302
303 /* load magic in A */
304 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, magic));
305 /* jump if magic matches */
306 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, UDEV_MONITOR_MAGIC, 1, 0);
307 /* wrong magic, pass packet */
308 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0xffffffff);
309
310 if (udev_list_get_entry(&udev_monitor->filter_tag_list) != NULL) {
311 int tag_matches;
312
313 /* count tag matches, to calculate end of tag match block */
314 tag_matches = 0;
315 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_tag_list))
316 tag_matches++;
317
318 /* add all tags matches */
319 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_tag_list)) {
320 uint64_t tag_bloom_bits = util_string_bloom64(udev_list_entry_get_name(list_entry));
321 uint32_t tag_bloom_hi = tag_bloom_bits >> 32;
322 uint32_t tag_bloom_lo = tag_bloom_bits & 0xffffffff;
323
324 /* load device bloom bits in A */
325 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_tag_bloom_hi));
326 /* clear bits (tag bits & bloom bits) */
327 bpf_stmt(ins, &i, BPF_ALU|BPF_AND|BPF_K, tag_bloom_hi);
328 /* jump to next tag if it does not match */
329 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, tag_bloom_hi, 0, 3);
330
331 /* load device bloom bits in A */
332 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_tag_bloom_lo));
333 /* clear bits (tag bits & bloom bits) */
334 bpf_stmt(ins, &i, BPF_ALU|BPF_AND|BPF_K, tag_bloom_lo);
335 /* jump behind end of tag match block if tag matches */
336 tag_matches--;
337 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, tag_bloom_lo, 1 + (tag_matches * 6), 0);
338 }
339
340 /* nothing matched, drop packet */
341 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0);
342 }
343
344 /* add all subsystem matches */
345 if (udev_list_get_entry(&udev_monitor->filter_subsystem_list) != NULL) {
346 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_subsystem_list)) {
347 unsigned int hash = util_string_hash32(udev_list_entry_get_name(list_entry));
348
349 /* load device subsystem value in A */
350 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_subsystem_hash));
351 if (udev_list_entry_get_value(list_entry) == NULL) {
352 /* jump if subsystem does not match */
353 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, hash, 0, 1);
354 } else {
355 /* jump if subsystem does not match */
356 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, hash, 0, 3);
357
358 /* load device devtype value in A */
359 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_devtype_hash));
360 /* jump if value does not match */
361 hash = util_string_hash32(udev_list_entry_get_value(list_entry));
362 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, hash, 0, 1);
363 }
364
365 /* matched, pass packet */
366 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0xffffffff);
367
368 if (i+1 >= ELEMENTSOF(ins))
369 return -E2BIG;
370 }
371
372 /* nothing matched, drop packet */
373 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0);
374 }
375
376 /* matched, pass packet */
377 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0xffffffff);
378
379 /* install filter */
380 memzero(&filter, sizeof(filter));
381 filter.len = i;
382 filter.filter = ins;
383 err = setsockopt(udev_monitor->sock, SOL_SOCKET, SO_ATTACH_FILTER, &filter, sizeof(filter));
384 return err < 0 ? -errno : 0;
385 }
386
387 int udev_monitor_allow_unicast_sender(struct udev_monitor *udev_monitor, struct udev_monitor *sender)
388 {
389 udev_monitor->snl_trusted_sender.nl.nl_pid = sender->snl.nl.nl_pid;
390 return 0;
391 }
392
393 /**
394 * udev_monitor_enable_receiving:
395 * @udev_monitor: the monitor which should receive events
396 *
397 * Binds the @udev_monitor socket to the event source.
398 *
399 * Returns: 0 on success, otherwise a negative error value.
400 */
401 _public_ int udev_monitor_enable_receiving(struct udev_monitor *udev_monitor)
402 {
403 int err = 0;
404 const int on = 1;
405
406 udev_monitor_filter_update(udev_monitor);
407
408 if (!udev_monitor->bound) {
409 err = bind(udev_monitor->sock,
410 &udev_monitor->snl.sa, sizeof(struct sockaddr_nl));
411 if (err == 0)
412 udev_monitor->bound = true;
413 }
414
415 if (err >= 0)
416 monitor_set_nl_address(udev_monitor);
417 else
418 return log_debug_errno(errno, "bind failed: %m");
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 != htobe32(UDEV_MONITOR_MAGIC)) {
654 log_debug("unrecognized message signature (%x != %x)",
655 buf.nlh.magic, htobe32(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 = htobe32(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 = htobe32(util_string_hash32(val));
740
741 val = udev_device_get_devtype(udev_device);
742 if (val != NULL)
743 nlh.filter_devtype_hash = htobe32(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 = htobe32(tag_bloom_bits >> 32);
751 nlh.filter_tag_bloom_lo = htobe32(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 }