]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libudev/libudev-monitor.c
coccinelle: additional errno.cocci hunk
[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 log_debug_errno(errno, "bind failed: %m");
419 return -errno;
420 }
421
422 /* enable receiving of sender credentials */
423 err = setsockopt(udev_monitor->sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
424 if (err < 0)
425 log_debug_errno(errno, "setting SO_PASSCRED failed: %m");
426
427 return 0;
428 }
429
430 /**
431 * udev_monitor_set_receive_buffer_size:
432 * @udev_monitor: the monitor which should receive events
433 * @size: the size in bytes
434 *
435 * Set the size of the kernel socket buffer. This call needs the
436 * appropriate privileges to succeed.
437 *
438 * Returns: 0 on success, otherwise -1 on error.
439 */
440 _public_ int udev_monitor_set_receive_buffer_size(struct udev_monitor *udev_monitor, int size)
441 {
442 if (udev_monitor == NULL)
443 return -EINVAL;
444 return setsockopt(udev_monitor->sock, SOL_SOCKET, SO_RCVBUFFORCE, &size, sizeof(size));
445 }
446
447 int udev_monitor_disconnect(struct udev_monitor *udev_monitor)
448 {
449 int err;
450
451 err = close(udev_monitor->sock);
452 udev_monitor->sock = -1;
453 return err < 0 ? -errno : 0;
454 }
455
456 /**
457 * udev_monitor_ref:
458 * @udev_monitor: udev monitor
459 *
460 * Take a reference of a udev monitor.
461 *
462 * Returns: the passed udev monitor
463 **/
464 _public_ struct udev_monitor *udev_monitor_ref(struct udev_monitor *udev_monitor)
465 {
466 if (udev_monitor == NULL)
467 return NULL;
468 udev_monitor->refcount++;
469 return udev_monitor;
470 }
471
472 /**
473 * udev_monitor_unref:
474 * @udev_monitor: udev monitor
475 *
476 * Drop a reference of a udev monitor. If the refcount reaches zero,
477 * the bound socket will be closed, and the resources of the monitor
478 * will be released.
479 *
480 * Returns: #NULL
481 **/
482 _public_ struct udev_monitor *udev_monitor_unref(struct udev_monitor *udev_monitor)
483 {
484 if (udev_monitor == NULL)
485 return NULL;
486 udev_monitor->refcount--;
487 if (udev_monitor->refcount > 0)
488 return NULL;
489 if (udev_monitor->sock >= 0)
490 close(udev_monitor->sock);
491 udev_list_cleanup(&udev_monitor->filter_subsystem_list);
492 udev_list_cleanup(&udev_monitor->filter_tag_list);
493 free(udev_monitor);
494 return NULL;
495 }
496
497 /**
498 * udev_monitor_get_udev:
499 * @udev_monitor: udev monitor
500 *
501 * Retrieve the udev library context the monitor was created with.
502 *
503 * Returns: the udev library context
504 **/
505 _public_ struct udev *udev_monitor_get_udev(struct udev_monitor *udev_monitor)
506 {
507 if (udev_monitor == NULL)
508 return NULL;
509 return udev_monitor->udev;
510 }
511
512 /**
513 * udev_monitor_get_fd:
514 * @udev_monitor: udev monitor
515 *
516 * Retrieve the socket file descriptor associated with the monitor.
517 *
518 * Returns: the socket file descriptor
519 **/
520 _public_ int udev_monitor_get_fd(struct udev_monitor *udev_monitor)
521 {
522 if (udev_monitor == NULL)
523 return -EINVAL;
524 return udev_monitor->sock;
525 }
526
527 static int passes_filter(struct udev_monitor *udev_monitor, struct udev_device *udev_device)
528 {
529 struct udev_list_entry *list_entry;
530
531 if (udev_list_get_entry(&udev_monitor->filter_subsystem_list) == NULL)
532 goto tag;
533 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_subsystem_list)) {
534 const char *subsys = udev_list_entry_get_name(list_entry);
535 const char *dsubsys = udev_device_get_subsystem(udev_device);
536 const char *devtype;
537 const char *ddevtype;
538
539 if (!streq(dsubsys, subsys))
540 continue;
541
542 devtype = udev_list_entry_get_value(list_entry);
543 if (devtype == NULL)
544 goto tag;
545 ddevtype = udev_device_get_devtype(udev_device);
546 if (ddevtype == NULL)
547 continue;
548 if (streq(ddevtype, devtype))
549 goto tag;
550 }
551 return 0;
552
553 tag:
554 if (udev_list_get_entry(&udev_monitor->filter_tag_list) == NULL)
555 return 1;
556 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_tag_list)) {
557 const char *tag = udev_list_entry_get_name(list_entry);
558
559 if (udev_device_has_tag(udev_device, tag))
560 return 1;
561 }
562 return 0;
563 }
564
565 /**
566 * udev_monitor_receive_device:
567 * @udev_monitor: udev monitor
568 *
569 * Receive data from the udev monitor socket, allocate a new udev
570 * device, fill in the received data, and return the device.
571 *
572 * Only socket connections with uid=0 are accepted.
573 *
574 * The monitor socket is by default set to NONBLOCK. A variant of poll() on
575 * the file descriptor returned by udev_monitor_get_fd() should to be used to
576 * wake up when new devices arrive, or alternatively the file descriptor
577 * switched into blocking mode.
578 *
579 * The initial refcount is 1, and needs to be decremented to
580 * release the resources of the udev device.
581 *
582 * Returns: a new udev device, or #NULL, in case of an error
583 **/
584 _public_ struct udev_device *udev_monitor_receive_device(struct udev_monitor *udev_monitor)
585 {
586 struct udev_device *udev_device;
587 struct msghdr smsg;
588 struct iovec iov;
589 char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
590 struct cmsghdr *cmsg;
591 union sockaddr_union snl;
592 struct ucred *cred;
593 union {
594 struct udev_monitor_netlink_header nlh;
595 char raw[8192];
596 } buf;
597 ssize_t buflen;
598 ssize_t bufpos;
599 bool is_initialized = false;
600
601 retry:
602 if (udev_monitor == NULL)
603 return NULL;
604 iov.iov_base = &buf;
605 iov.iov_len = sizeof(buf);
606 memzero(&smsg, sizeof(struct msghdr));
607 smsg.msg_iov = &iov;
608 smsg.msg_iovlen = 1;
609 smsg.msg_control = cred_msg;
610 smsg.msg_controllen = sizeof(cred_msg);
611 smsg.msg_name = &snl;
612 smsg.msg_namelen = sizeof(snl);
613
614 buflen = recvmsg(udev_monitor->sock, &smsg, 0);
615 if (buflen < 0) {
616 if (errno != EINTR)
617 log_debug("unable to receive message");
618 return NULL;
619 }
620
621 if (buflen < 32 || (smsg.msg_flags & MSG_TRUNC)) {
622 log_debug("invalid message length");
623 return NULL;
624 }
625
626 if (snl.nl.nl_groups == 0) {
627 /* unicast message, check if we trust the sender */
628 if (udev_monitor->snl_trusted_sender.nl.nl_pid == 0 ||
629 snl.nl.nl_pid != udev_monitor->snl_trusted_sender.nl.nl_pid) {
630 log_debug("unicast netlink message ignored");
631 return NULL;
632 }
633 } else if (snl.nl.nl_groups == UDEV_MONITOR_KERNEL) {
634 if (snl.nl.nl_pid > 0) {
635 log_debug("multicast kernel netlink message from PID %"PRIu32" ignored",
636 snl.nl.nl_pid);
637 return NULL;
638 }
639 }
640
641 cmsg = CMSG_FIRSTHDR(&smsg);
642 if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
643 log_debug("no sender credentials received, message ignored");
644 return NULL;
645 }
646
647 cred = (struct ucred *)CMSG_DATA(cmsg);
648 if (cred->uid != 0) {
649 log_debug("sender uid="UID_FMT", message ignored", cred->uid);
650 return NULL;
651 }
652
653 if (memcmp(buf.raw, "libudev", 8) == 0) {
654 /* udev message needs proper version magic */
655 if (buf.nlh.magic != htonl(UDEV_MONITOR_MAGIC)) {
656 log_debug("unrecognized message signature (%x != %x)",
657 buf.nlh.magic, htonl(UDEV_MONITOR_MAGIC));
658 return NULL;
659 }
660 if (buf.nlh.properties_off+32 > (size_t)buflen) {
661 log_debug("message smaller than expected (%u > %zd)",
662 buf.nlh.properties_off+32, buflen);
663 return NULL;
664 }
665
666 bufpos = buf.nlh.properties_off;
667
668 /* devices received from udev are always initialized */
669 is_initialized = true;
670 } else {
671 /* kernel message with header */
672 bufpos = strlen(buf.raw) + 1;
673 if ((size_t)bufpos < sizeof("a@/d") || bufpos >= buflen) {
674 log_debug("invalid message length");
675 return NULL;
676 }
677
678 /* check message header */
679 if (strstr(buf.raw, "@/") == NULL) {
680 log_debug("unrecognized message header");
681 return NULL;
682 }
683 }
684
685 udev_device = udev_device_new_from_nulstr(udev_monitor->udev, &buf.raw[bufpos], buflen - bufpos);
686 if (!udev_device) {
687 log_debug("could not create device: %m");
688 return NULL;
689 }
690
691 if (is_initialized)
692 udev_device_set_is_initialized(udev_device);
693
694 /* skip device, if it does not pass the current filter */
695 if (!passes_filter(udev_monitor, udev_device)) {
696 struct pollfd pfd[1];
697 int rc;
698
699 udev_device_unref(udev_device);
700
701 /* if something is queued, get next device */
702 pfd[0].fd = udev_monitor->sock;
703 pfd[0].events = POLLIN;
704 rc = poll(pfd, 1, 0);
705 if (rc > 0)
706 goto retry;
707 return NULL;
708 }
709
710 return udev_device;
711 }
712
713 int udev_monitor_send_device(struct udev_monitor *udev_monitor,
714 struct udev_monitor *destination, struct udev_device *udev_device)
715 {
716 const char *buf, *val;
717 ssize_t blen, count;
718 struct udev_monitor_netlink_header nlh = {
719 .prefix = "libudev",
720 .magic = htonl(UDEV_MONITOR_MAGIC),
721 .header_size = sizeof nlh,
722 };
723 struct iovec iov[2] = {
724 { .iov_base = &nlh, .iov_len = sizeof nlh },
725 };
726 struct msghdr smsg = {
727 .msg_iov = iov,
728 .msg_iovlen = 2,
729 };
730 struct udev_list_entry *list_entry;
731 uint64_t tag_bloom_bits;
732
733 blen = udev_device_get_properties_monitor_buf(udev_device, &buf);
734 if (blen < 32) {
735 log_debug("device buffer is too small to contain a valid device");
736 return -EINVAL;
737 }
738
739 /* fill in versioned header */
740 val = udev_device_get_subsystem(udev_device);
741 nlh.filter_subsystem_hash = htonl(util_string_hash32(val));
742
743 val = udev_device_get_devtype(udev_device);
744 if (val != NULL)
745 nlh.filter_devtype_hash = htonl(util_string_hash32(val));
746
747 /* add tag bloom filter */
748 tag_bloom_bits = 0;
749 udev_list_entry_foreach(list_entry, udev_device_get_tags_list_entry(udev_device))
750 tag_bloom_bits |= util_string_bloom64(udev_list_entry_get_name(list_entry));
751 if (tag_bloom_bits > 0) {
752 nlh.filter_tag_bloom_hi = htonl(tag_bloom_bits >> 32);
753 nlh.filter_tag_bloom_lo = htonl(tag_bloom_bits & 0xffffffff);
754 }
755
756 /* add properties list */
757 nlh.properties_off = iov[0].iov_len;
758 nlh.properties_len = blen;
759 iov[1].iov_base = (char *)buf;
760 iov[1].iov_len = blen;
761
762 /*
763 * Use custom address for target, or the default one.
764 *
765 * If we send to a multicast group, we will get
766 * ECONNREFUSED, which is expected.
767 */
768 if (destination)
769 smsg.msg_name = &destination->snl;
770 else
771 smsg.msg_name = &udev_monitor->snl_destination;
772 smsg.msg_namelen = sizeof(struct sockaddr_nl);
773 count = sendmsg(udev_monitor->sock, &smsg, 0);
774 if (count < 0) {
775 if (!destination && errno == ECONNREFUSED) {
776 log_debug("passed device to netlink monitor %p", udev_monitor);
777 return 0;
778 } else
779 return -errno;
780 }
781
782 log_debug("passed %zi byte device to netlink monitor %p", count, udev_monitor);
783 return count;
784 }
785
786 /**
787 * udev_monitor_filter_add_match_subsystem_devtype:
788 * @udev_monitor: the monitor
789 * @subsystem: the subsystem value to match the incoming devices against
790 * @devtype: the devtype value to match the incoming devices against
791 *
792 * This filter is efficiently executed inside the kernel, and libudev subscribers
793 * will usually not be woken up for devices which do not match.
794 *
795 * The filter must be installed before the monitor is switched to listening mode.
796 *
797 * Returns: 0 on success, otherwise a negative error value.
798 */
799 _public_ int udev_monitor_filter_add_match_subsystem_devtype(struct udev_monitor *udev_monitor, const char *subsystem, const char *devtype)
800 {
801 if (udev_monitor == NULL)
802 return -EINVAL;
803 if (subsystem == NULL)
804 return -EINVAL;
805 if (udev_list_entry_add(&udev_monitor->filter_subsystem_list, subsystem, devtype) == NULL)
806 return -ENOMEM;
807 return 0;
808 }
809
810 /**
811 * udev_monitor_filter_add_match_tag:
812 * @udev_monitor: the monitor
813 * @tag: the name of a tag
814 *
815 * This filter is efficiently executed inside the kernel, and libudev subscribers
816 * will usually not be woken up for devices which do not match.
817 *
818 * The filter must be installed before the monitor is switched to listening mode.
819 *
820 * Returns: 0 on success, otherwise a negative error value.
821 */
822 _public_ int udev_monitor_filter_add_match_tag(struct udev_monitor *udev_monitor, const char *tag)
823 {
824 if (udev_monitor == NULL)
825 return -EINVAL;
826 if (tag == NULL)
827 return -EINVAL;
828 if (udev_list_entry_add(&udev_monitor->filter_tag_list, tag, NULL) == NULL)
829 return -ENOMEM;
830 return 0;
831 }
832
833 /**
834 * udev_monitor_filter_remove:
835 * @udev_monitor: monitor
836 *
837 * Remove all filters from monitor.
838 *
839 * Returns: 0 on success, otherwise a negative error value.
840 */
841 _public_ int udev_monitor_filter_remove(struct udev_monitor *udev_monitor)
842 {
843 static struct sock_fprog filter = { 0, NULL };
844
845 udev_list_cleanup(&udev_monitor->filter_subsystem_list);
846 return setsockopt(udev_monitor->sock, SOL_SOCKET, SO_ATTACH_FILTER, &filter, sizeof(filter));
847 }