]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libudev/libudev-monitor.c
bash completion: fix __get_startable_units
[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 <stdio.h>
21 #include <stdlib.h>
22 #include <stddef.h>
23 #include <unistd.h>
24 #include <errno.h>
25 #include <string.h>
26 #include <dirent.h>
27 #include <sys/poll.h>
28 #include <sys/stat.h>
29 #include <sys/socket.h>
30 #include <sys/un.h>
31 #include <arpa/inet.h>
32 #include <linux/netlink.h>
33 #include <linux/filter.h>
34
35 #include "libudev.h"
36 #include "libudev-private.h"
37 #include "socket-util.h"
38 #include "missing.h"
39
40 /**
41 * SECTION:libudev-monitor
42 * @short_description: device event source
43 *
44 * Connects to a device event source.
45 */
46
47 /**
48 * udev_monitor:
49 *
50 * Opaque object handling an event source.
51 */
52 struct udev_monitor {
53 struct udev *udev;
54 int refcount;
55 int sock;
56 union sockaddr_union snl;
57 union sockaddr_union snl_trusted_sender;
58 union sockaddr_union snl_destination;
59 socklen_t addrlen;
60 struct udev_list filter_subsystem_list;
61 struct udev_list filter_tag_list;
62 bool bound;
63 };
64
65 enum udev_monitor_netlink_group {
66 UDEV_MONITOR_NONE,
67 UDEV_MONITOR_KERNEL,
68 UDEV_MONITOR_UDEV,
69 };
70
71 #define UDEV_MONITOR_MAGIC 0xfeedcafe
72 struct udev_monitor_netlink_header {
73 /* "libudev" prefix to distinguish libudev and kernel messages */
74 char prefix[8];
75 /*
76 * magic to protect against daemon <-> library message format mismatch
77 * used in the kernel from socket filter rules; needs to be stored in network order
78 */
79 unsigned int magic;
80 /* total length of header structure known to the sender */
81 unsigned int header_size;
82 /* properties string buffer */
83 unsigned int properties_off;
84 unsigned int properties_len;
85 /*
86 * hashes of primary device properties strings, to let libudev subscribers
87 * use in-kernel socket filters; values need to be stored in network order
88 */
89 unsigned int filter_subsystem_hash;
90 unsigned int filter_devtype_hash;
91 unsigned int filter_tag_bloom_hi;
92 unsigned int filter_tag_bloom_lo;
93 };
94
95 static struct udev_monitor *udev_monitor_new(struct udev *udev)
96 {
97 struct udev_monitor *udev_monitor;
98
99 udev_monitor = new0(struct udev_monitor, 1);
100 if (udev_monitor == NULL)
101 return NULL;
102 udev_monitor->refcount = 1;
103 udev_monitor->udev = udev;
104 udev_list_init(udev, &udev_monitor->filter_subsystem_list, false);
105 udev_list_init(udev, &udev_monitor->filter_tag_list, true);
106 return udev_monitor;
107 }
108
109 /* we consider udev running when /dev is on devtmpfs */
110 static bool udev_has_devtmpfs(struct udev *udev) {
111 struct file_handle *h;
112 int mount_id;
113 _cleanup_fclose_ FILE *f = NULL;
114 char line[LINE_MAX], *e;
115 int r;
116
117 h = alloca(MAX_HANDLE_SZ);
118 h->handle_bytes = MAX_HANDLE_SZ;
119 r = name_to_handle_at(AT_FDCWD, "/dev", h, &mount_id, 0);
120 if (r < 0)
121 return false;
122
123
124 f = fopen("/proc/self/mountinfo", "re");
125 if (!f)
126 return false;
127
128 FOREACH_LINE(line, f, return false) {
129 int mid;
130
131 if (sscanf(line, "%i", &mid) != 1)
132 continue;
133
134 if (mid != mount_id)
135 continue;
136
137 e = strstr(line, " - ");
138 if (!e)
139 continue;
140
141 /* accept any name that starts with the currently expected type */
142 if (startswith(e + 3, "devtmpfs"))
143 return true;
144 }
145
146 return false;
147 }
148
149 /* we consider udev running when we have running udev service */
150 static bool udev_has_service(struct udev *udev) {
151 struct udev_queue *queue;
152 bool active;
153
154 queue = udev_queue_new(udev);
155 if (!queue)
156 return false;
157
158 active = udev_queue_get_udev_is_active(queue);
159 udev_queue_unref(queue);
160
161 return active;
162 }
163
164 struct udev_monitor *udev_monitor_new_from_netlink_fd(struct udev *udev, const char *name, int fd)
165 {
166 struct udev_monitor *udev_monitor;
167 unsigned int group;
168
169 if (udev == NULL)
170 return NULL;
171
172 if (name == NULL)
173 group = UDEV_MONITOR_NONE;
174 else if (streq(name, "udev")) {
175 /*
176 * We do not support subscribing to uevents if no instance of
177 * udev is running. Uevents would otherwise broadcast the
178 * processing data of the host into containers, which is not
179 * desired.
180 *
181 * Containers will currently not get any udev uevents, until
182 * a supporting infrastructure is available.
183 *
184 * We do not set a netlink multicast group here, so the socket
185 * will not receive any messages.
186 */
187 if (!udev_has_service(udev) && !udev_has_devtmpfs(udev)) {
188 udev_dbg(udev, "the udev service seems not to be active, disable the monitor\n");
189 group = UDEV_MONITOR_NONE;
190 } else
191 group = UDEV_MONITOR_UDEV;
192 } else if (streq(name, "kernel"))
193 group = UDEV_MONITOR_KERNEL;
194 else
195 return NULL;
196
197 udev_monitor = udev_monitor_new(udev);
198 if (udev_monitor == NULL)
199 return NULL;
200
201 if (fd < 0) {
202 udev_monitor->sock = socket(PF_NETLINK, SOCK_RAW|SOCK_CLOEXEC|SOCK_NONBLOCK, NETLINK_KOBJECT_UEVENT);
203 if (udev_monitor->sock == -1) {
204 udev_err(udev, "error getting socket: %m\n");
205 free(udev_monitor);
206 return NULL;
207 }
208 } else {
209 udev_monitor->bound = true;
210 udev_monitor->sock = fd;
211 }
212
213 udev_monitor->snl.nl.nl_family = AF_NETLINK;
214 udev_monitor->snl.nl.nl_groups = group;
215
216 /* default destination for sending */
217 udev_monitor->snl_destination.nl.nl_family = AF_NETLINK;
218 udev_monitor->snl_destination.nl.nl_groups = UDEV_MONITOR_UDEV;
219
220 return udev_monitor;
221 }
222
223 /**
224 * udev_monitor_new_from_netlink:
225 * @udev: udev library context
226 * @name: name of event source
227 *
228 * Create new udev monitor and connect to a specified event
229 * source. Valid sources identifiers are "udev" and "kernel".
230 *
231 * Applications should usually not connect directly to the
232 * "kernel" events, because the devices might not be useable
233 * at that time, before udev has configured them, and created
234 * device nodes. Accessing devices at the same time as udev,
235 * might result in unpredictable behavior. The "udev" events
236 * are sent out after udev has finished its event processing,
237 * all rules have been processed, and needed device nodes are
238 * created.
239 *
240 * The initial refcount is 1, and needs to be decremented to
241 * release the resources of the udev monitor.
242 *
243 * Returns: a new udev monitor, or #NULL, in case of an error
244 **/
245 _public_ struct udev_monitor *udev_monitor_new_from_netlink(struct udev *udev, const char *name)
246 {
247 return udev_monitor_new_from_netlink_fd(udev, name, -1);
248 }
249
250 static inline void bpf_stmt(struct sock_filter *inss, unsigned int *i,
251 unsigned short code, unsigned int data)
252 {
253 struct sock_filter *ins = &inss[*i];
254
255 ins->code = code;
256 ins->k = data;
257 (*i)++;
258 }
259
260 static inline void bpf_jmp(struct sock_filter *inss, unsigned int *i,
261 unsigned short code, unsigned int data,
262 unsigned short jt, unsigned short jf)
263 {
264 struct sock_filter *ins = &inss[*i];
265
266 ins->code = code;
267 ins->jt = jt;
268 ins->jf = jf;
269 ins->k = data;
270 (*i)++;
271 }
272
273 /**
274 * udev_monitor_filter_update:
275 * @udev_monitor: monitor
276 *
277 * Update the installed socket filter. This is only needed,
278 * if the filter was removed or changed.
279 *
280 * Returns: 0 on success, otherwise a negative error value.
281 */
282 _public_ int udev_monitor_filter_update(struct udev_monitor *udev_monitor)
283 {
284 struct sock_filter ins[512];
285 struct sock_fprog filter;
286 unsigned int i;
287 struct udev_list_entry *list_entry;
288 int err;
289
290 if (udev_list_get_entry(&udev_monitor->filter_subsystem_list) == NULL &&
291 udev_list_get_entry(&udev_monitor->filter_tag_list) == NULL)
292 return 0;
293
294 memzero(ins, sizeof(ins));
295 i = 0;
296
297 /* load magic in A */
298 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, magic));
299 /* jump if magic matches */
300 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, UDEV_MONITOR_MAGIC, 1, 0);
301 /* wrong magic, pass packet */
302 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0xffffffff);
303
304 if (udev_list_get_entry(&udev_monitor->filter_tag_list) != NULL) {
305 int tag_matches;
306
307 /* count tag matches, to calculate end of tag match block */
308 tag_matches = 0;
309 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_tag_list))
310 tag_matches++;
311
312 /* add all tags matches */
313 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_tag_list)) {
314 uint64_t tag_bloom_bits = util_string_bloom64(udev_list_entry_get_name(list_entry));
315 uint32_t tag_bloom_hi = tag_bloom_bits >> 32;
316 uint32_t tag_bloom_lo = tag_bloom_bits & 0xffffffff;
317
318 /* load device bloom bits in A */
319 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_tag_bloom_hi));
320 /* clear bits (tag bits & bloom bits) */
321 bpf_stmt(ins, &i, BPF_ALU|BPF_AND|BPF_K, tag_bloom_hi);
322 /* jump to next tag if it does not match */
323 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, tag_bloom_hi, 0, 3);
324
325 /* load device bloom bits in A */
326 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_tag_bloom_lo));
327 /* clear bits (tag bits & bloom bits) */
328 bpf_stmt(ins, &i, BPF_ALU|BPF_AND|BPF_K, tag_bloom_lo);
329 /* jump behind end of tag match block if tag matches */
330 tag_matches--;
331 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, tag_bloom_lo, 1 + (tag_matches * 6), 0);
332 }
333
334 /* nothing matched, drop packet */
335 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0);
336 }
337
338 /* add all subsystem matches */
339 if (udev_list_get_entry(&udev_monitor->filter_subsystem_list) != NULL) {
340 udev_list_entry_foreach(list_entry, udev_list_get_entry(&udev_monitor->filter_subsystem_list)) {
341 unsigned int hash = util_string_hash32(udev_list_entry_get_name(list_entry));
342
343 /* load device subsystem value in A */
344 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_subsystem_hash));
345 if (udev_list_entry_get_value(list_entry) == NULL) {
346 /* jump if subsystem does not match */
347 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, hash, 0, 1);
348 } else {
349 /* jump if subsystem does not match */
350 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, hash, 0, 3);
351
352 /* load device devtype value in A */
353 bpf_stmt(ins, &i, BPF_LD|BPF_W|BPF_ABS, offsetof(struct udev_monitor_netlink_header, filter_devtype_hash));
354 /* jump if value does not match */
355 hash = util_string_hash32(udev_list_entry_get_value(list_entry));
356 bpf_jmp(ins, &i, BPF_JMP|BPF_JEQ|BPF_K, hash, 0, 1);
357 }
358
359 /* matched, pass packet */
360 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0xffffffff);
361
362 if (i+1 >= ELEMENTSOF(ins))
363 return -E2BIG;
364 }
365
366 /* nothing matched, drop packet */
367 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0);
368 }
369
370 /* matched, pass packet */
371 bpf_stmt(ins, &i, BPF_RET|BPF_K, 0xffffffff);
372
373 /* install filter */
374 memzero(&filter, sizeof(filter));
375 filter.len = i;
376 filter.filter = ins;
377 err = setsockopt(udev_monitor->sock, SOL_SOCKET, SO_ATTACH_FILTER, &filter, sizeof(filter));
378 return err < 0 ? -errno : 0;
379 }
380
381 int udev_monitor_allow_unicast_sender(struct udev_monitor *udev_monitor, struct udev_monitor *sender)
382 {
383 udev_monitor->snl_trusted_sender.nl.nl_pid = sender->snl.nl.nl_pid;
384 return 0;
385 }
386 /**
387 * udev_monitor_enable_receiving:
388 * @udev_monitor: the monitor which should receive events
389 *
390 * Binds the @udev_monitor socket to the event source.
391 *
392 * Returns: 0 on success, otherwise a negative error value.
393 */
394 _public_ int udev_monitor_enable_receiving(struct udev_monitor *udev_monitor)
395 {
396 int err = 0;
397 const int on = 1;
398
399 udev_monitor_filter_update(udev_monitor);
400
401 if (!udev_monitor->bound) {
402 err = bind(udev_monitor->sock,
403 &udev_monitor->snl.sa, sizeof(struct sockaddr_nl));
404 if (err == 0)
405 udev_monitor->bound = true;
406 }
407
408 if (err >= 0) {
409 union sockaddr_union snl;
410 socklen_t addrlen;
411
412 /*
413 * get the address the kernel has assigned us
414 * it is usually, but not necessarily the pid
415 */
416 addrlen = sizeof(struct sockaddr_nl);
417 err = getsockname(udev_monitor->sock, &snl.sa, &addrlen);
418 if (err == 0)
419 udev_monitor->snl.nl.nl_pid = snl.nl.nl_pid;
420 } else {
421 udev_err(udev_monitor->udev, "bind failed: %m\n");
422 return -errno;
423 }
424
425 /* enable receiving of sender credentials */
426 setsockopt(udev_monitor->sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
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 char buf[8192];
594 ssize_t buflen;
595 ssize_t bufpos;
596
597 retry:
598 if (udev_monitor == NULL)
599 return NULL;
600 iov.iov_base = &buf;
601 iov.iov_len = sizeof(buf);
602 memzero(&smsg, sizeof(struct msghdr));
603 smsg.msg_iov = &iov;
604 smsg.msg_iovlen = 1;
605 smsg.msg_control = cred_msg;
606 smsg.msg_controllen = sizeof(cred_msg);
607 smsg.msg_name = &snl;
608 smsg.msg_namelen = sizeof(snl);
609
610 buflen = recvmsg(udev_monitor->sock, &smsg, 0);
611 if (buflen < 0) {
612 if (errno != EINTR)
613 udev_dbg(udev_monitor->udev, "unable to receive message\n");
614 return NULL;
615 }
616
617 if (buflen < 32 || (size_t)buflen >= sizeof(buf)) {
618 udev_dbg(udev_monitor->udev, "invalid message length\n");
619 return NULL;
620 }
621
622 if (snl.nl.nl_groups == 0) {
623 /* unicast message, check if we trust the sender */
624 if (udev_monitor->snl_trusted_sender.nl.nl_pid == 0 ||
625 snl.nl.nl_pid != udev_monitor->snl_trusted_sender.nl.nl_pid) {
626 udev_dbg(udev_monitor->udev, "unicast netlink message ignored\n");
627 return NULL;
628 }
629 } else if (snl.nl.nl_groups == UDEV_MONITOR_KERNEL) {
630 if (snl.nl.nl_pid > 0) {
631 udev_dbg(udev_monitor->udev, "multicast kernel netlink message from pid %d ignored\n",
632 snl.nl.nl_pid);
633 return NULL;
634 }
635 }
636
637 cmsg = CMSG_FIRSTHDR(&smsg);
638 if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
639 udev_dbg(udev_monitor->udev, "no sender credentials received, message ignored\n");
640 return NULL;
641 }
642
643 cred = (struct ucred *)CMSG_DATA(cmsg);
644 if (cred->uid != 0) {
645 udev_dbg(udev_monitor->udev, "sender uid=%d, message ignored\n", cred->uid);
646 return NULL;
647 }
648
649 udev_device = udev_device_new(udev_monitor->udev);
650 if (udev_device == NULL)
651 return NULL;
652
653 if (memcmp(buf, "libudev", 8) == 0) {
654 struct udev_monitor_netlink_header *nlh;
655
656 /* udev message needs proper version magic */
657 nlh = (struct udev_monitor_netlink_header *) buf;
658 if (nlh->magic != htonl(UDEV_MONITOR_MAGIC)) {
659 udev_err(udev_monitor->udev, "unrecognized message signature (%x != %x)\n",
660 nlh->magic, htonl(UDEV_MONITOR_MAGIC));
661 udev_device_unref(udev_device);
662 return NULL;
663 }
664 if (nlh->properties_off+32 > (size_t)buflen) {
665 udev_device_unref(udev_device);
666 return NULL;
667 }
668
669 bufpos = nlh->properties_off;
670
671 /* devices received from udev are always initialized */
672 udev_device_set_is_initialized(udev_device);
673 } else {
674 /* kernel message with header */
675 bufpos = strlen(buf) + 1;
676 if ((size_t)bufpos < sizeof("a@/d") || bufpos >= buflen) {
677 udev_dbg(udev_monitor->udev, "invalid message length\n");
678 udev_device_unref(udev_device);
679 return NULL;
680 }
681
682 /* check message header */
683 if (strstr(buf, "@/") == NULL) {
684 udev_dbg(udev_monitor->udev, "unrecognized message header\n");
685 udev_device_unref(udev_device);
686 return NULL;
687 }
688 }
689
690 udev_device_set_info_loaded(udev_device);
691
692 while (bufpos < buflen) {
693 char *key;
694 size_t keylen;
695
696 key = &buf[bufpos];
697 keylen = strlen(key);
698 if (keylen == 0)
699 break;
700 bufpos += keylen + 1;
701 udev_device_add_property_from_string_parse(udev_device, key);
702 }
703
704 if (udev_device_add_property_from_string_parse_finish(udev_device) < 0) {
705 udev_dbg(udev_monitor->udev, "missing values, invalid device\n");
706 udev_device_unref(udev_device);
707 return NULL;
708 }
709
710 /* skip device, if it does not pass the current filter */
711 if (!passes_filter(udev_monitor, udev_device)) {
712 struct pollfd pfd[1];
713 int rc;
714
715 udev_device_unref(udev_device);
716
717 /* if something is queued, get next device */
718 pfd[0].fd = udev_monitor->sock;
719 pfd[0].events = POLLIN;
720 rc = poll(pfd, 1, 0);
721 if (rc > 0)
722 goto retry;
723 return NULL;
724 }
725
726 return udev_device;
727 }
728
729 int udev_monitor_send_device(struct udev_monitor *udev_monitor,
730 struct udev_monitor *destination, struct udev_device *udev_device)
731 {
732 const char *buf;
733 ssize_t blen;
734 ssize_t count;
735 struct msghdr smsg;
736 struct iovec iov[2];
737 const char *val;
738 struct udev_monitor_netlink_header nlh;
739 struct udev_list_entry *list_entry;
740 uint64_t tag_bloom_bits;
741
742 blen = udev_device_get_properties_monitor_buf(udev_device, &buf);
743 if (blen < 32)
744 return -EINVAL;
745
746 /* add versioned header */
747 memzero(&nlh, sizeof(struct udev_monitor_netlink_header));
748 memcpy(nlh.prefix, "libudev", 8);
749 nlh.magic = htonl(UDEV_MONITOR_MAGIC);
750 nlh.header_size = sizeof(struct udev_monitor_netlink_header);
751 val = udev_device_get_subsystem(udev_device);
752 nlh.filter_subsystem_hash = htonl(util_string_hash32(val));
753 val = udev_device_get_devtype(udev_device);
754 if (val != NULL)
755 nlh.filter_devtype_hash = htonl(util_string_hash32(val));
756 iov[0].iov_base = &nlh;
757 iov[0].iov_len = sizeof(struct udev_monitor_netlink_header);
758
759 /* add tag bloom filter */
760 tag_bloom_bits = 0;
761 udev_list_entry_foreach(list_entry, udev_device_get_tags_list_entry(udev_device))
762 tag_bloom_bits |= util_string_bloom64(udev_list_entry_get_name(list_entry));
763 if (tag_bloom_bits > 0) {
764 nlh.filter_tag_bloom_hi = htonl(tag_bloom_bits >> 32);
765 nlh.filter_tag_bloom_lo = htonl(tag_bloom_bits & 0xffffffff);
766 }
767
768 /* add properties list */
769 nlh.properties_off = iov[0].iov_len;
770 nlh.properties_len = blen;
771 iov[1].iov_base = (char *)buf;
772 iov[1].iov_len = blen;
773
774 memzero(&smsg, sizeof(struct msghdr));
775 smsg.msg_iov = iov;
776 smsg.msg_iovlen = 2;
777 /*
778 * Use custom address for target, or the default one.
779 *
780 * If we send to a multicast group, we will get
781 * ECONNREFUSED, which is expected.
782 */
783 if (destination != NULL)
784 smsg.msg_name = &destination->snl;
785 else
786 smsg.msg_name = &udev_monitor->snl_destination;
787 smsg.msg_namelen = sizeof(struct sockaddr_nl);
788 count = sendmsg(udev_monitor->sock, &smsg, 0);
789 udev_dbg(udev_monitor->udev, "passed %zi bytes to netlink monitor %p\n", count, udev_monitor);
790 return count;
791 }
792
793 /**
794 * udev_monitor_filter_add_match_subsystem_devtype:
795 * @udev_monitor: the monitor
796 * @subsystem: the subsystem value to match the incoming devices against
797 * @devtype: the devtype value to match the incoming devices against
798 *
799 * This filter is efficiently executed inside the kernel, and libudev subscribers
800 * will usually not be woken up for devices which do not match.
801 *
802 * The filter must be installed before the monitor is switched to listening mode.
803 *
804 * Returns: 0 on success, otherwise a negative error value.
805 */
806 _public_ int udev_monitor_filter_add_match_subsystem_devtype(struct udev_monitor *udev_monitor, const char *subsystem, const char *devtype)
807 {
808 if (udev_monitor == NULL)
809 return -EINVAL;
810 if (subsystem == NULL)
811 return -EINVAL;
812 if (udev_list_entry_add(&udev_monitor->filter_subsystem_list, subsystem, devtype) == NULL)
813 return -ENOMEM;
814 return 0;
815 }
816
817 /**
818 * udev_monitor_filter_add_match_tag:
819 * @udev_monitor: the monitor
820 * @tag: the name of a tag
821 *
822 * This filter is efficiently executed inside the kernel, and libudev subscribers
823 * will usually not be woken up for devices which do not match.
824 *
825 * The filter must be installed before the monitor is switched to listening mode.
826 *
827 * Returns: 0 on success, otherwise a negative error value.
828 */
829 _public_ int udev_monitor_filter_add_match_tag(struct udev_monitor *udev_monitor, const char *tag)
830 {
831 if (udev_monitor == NULL)
832 return -EINVAL;
833 if (tag == NULL)
834 return -EINVAL;
835 if (udev_list_entry_add(&udev_monitor->filter_tag_list, tag, NULL) == NULL)
836 return -ENOMEM;
837 return 0;
838 }
839
840 /**
841 * udev_monitor_filter_remove:
842 * @udev_monitor: monitor
843 *
844 * Remove all filters from monitor.
845 *
846 * Returns: 0 on success, otherwise a negative error value.
847 */
848 _public_ int udev_monitor_filter_remove(struct udev_monitor *udev_monitor)
849 {
850 static struct sock_fprog filter = { 0, NULL };
851
852 udev_list_cleanup(&udev_monitor->filter_subsystem_list);
853 return setsockopt(udev_monitor->sock, SOL_SOCKET, SO_ATTACH_FILTER, &filter, sizeof(filter));
854 }