2 This file is part of systemd.
4 Copyright 2008-2012 Kay Sievers <kay@vrfy.org>
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.
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.
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/>.
21 #include <linux/filter.h>
22 #include <linux/netlink.h>
28 #include <sys/socket.h>
33 #include "alloc-util.h"
36 #include "formats-util.h"
37 #include "libudev-private.h"
39 #include "mount-util.h"
40 #include "socket-util.h"
41 #include "string-util.h"
44 * SECTION:libudev-monitor
45 * @short_description: device event source
47 * Connects to a device event source.
53 * Opaque object handling an event source.
59 union sockaddr_union snl
;
60 union sockaddr_union snl_trusted_sender
;
61 union sockaddr_union snl_destination
;
63 struct udev_list filter_subsystem_list
;
64 struct udev_list filter_tag_list
;
68 enum udev_monitor_netlink_group
{
74 #define UDEV_MONITOR_MAGIC 0xfeedcafe
75 struct udev_monitor_netlink_header
{
76 /* "libudev" prefix to distinguish libudev and kernel messages */
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
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
;
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
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
;
98 static struct udev_monitor
*udev_monitor_new(struct udev
*udev
)
100 struct udev_monitor
*udev_monitor
;
102 udev_monitor
= new0(struct udev_monitor
, 1);
103 if (udev_monitor
== 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);
112 /* we consider udev running when /dev is on devtmpfs */
113 static bool udev_has_devtmpfs(struct udev
*udev
) {
115 union file_handle_union h
= FILE_HANDLE_INIT
;
116 _cleanup_fclose_
FILE *f
= NULL
;
117 char line
[LINE_MAX
], *e
;
121 r
= name_to_handle_at(AT_FDCWD
, "/dev", &h
.handle
, &mount_id
, 0);
123 if (errno
!= EOPNOTSUPP
)
124 log_debug_errno(errno
, "name_to_handle_at on /dev: %m");
128 f
= fopen("/proc/self/mountinfo", "re");
132 FOREACH_LINE(line
, f
, return false) {
135 if (sscanf(line
, "%i", &mid
) != 1)
141 e
= strstr(line
, " - ");
145 /* accept any name that starts with the currently expected type */
146 if (startswith(e
+ 3, "devtmpfs"))
153 static void monitor_set_nl_address(struct udev_monitor
*udev_monitor
) {
154 union sockaddr_union snl
;
158 assert(udev_monitor
);
160 /* get the address the kernel has assigned us
161 * it is usually, but not necessarily the pid
163 addrlen
= sizeof(struct sockaddr_nl
);
164 r
= getsockname(udev_monitor
->sock
, &snl
.sa
, &addrlen
);
166 udev_monitor
->snl
.nl
.nl_pid
= snl
.nl
.nl_pid
;
169 struct udev_monitor
*udev_monitor_new_from_netlink_fd(struct udev
*udev
, const char *name
, int fd
)
171 struct udev_monitor
*udev_monitor
;
178 group
= UDEV_MONITOR_NONE
;
179 else if (streq(name
, "udev")) {
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
186 * Containers will currently not get any udev uevents, until
187 * a supporting infrastructure is available.
189 * We do not set a netlink multicast group here, so the socket
190 * will not receive any messages.
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
;
196 group
= UDEV_MONITOR_UDEV
;
197 } else if (streq(name
, "kernel"))
198 group
= UDEV_MONITOR_KERNEL
;
202 udev_monitor
= udev_monitor_new(udev
);
203 if (udev_monitor
== NULL
)
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 return mfree(udev_monitor
);
213 udev_monitor
->bound
= true;
214 udev_monitor
->sock
= fd
;
215 monitor_set_nl_address(udev_monitor
);
218 udev_monitor
->snl
.nl
.nl_family
= AF_NETLINK
;
219 udev_monitor
->snl
.nl
.nl_groups
= group
;
221 /* default destination for sending */
222 udev_monitor
->snl_destination
.nl
.nl_family
= AF_NETLINK
;
223 udev_monitor
->snl_destination
.nl
.nl_groups
= UDEV_MONITOR_UDEV
;
229 * udev_monitor_new_from_netlink:
230 * @udev: udev library context
231 * @name: name of event source
233 * Create new udev monitor and connect to a specified event
234 * source. Valid sources identifiers are "udev" and "kernel".
236 * Applications should usually not connect directly to the
237 * "kernel" events, because the devices might not be useable
238 * at that time, before udev has configured them, and created
239 * device nodes. Accessing devices at the same time as udev,
240 * might result in unpredictable behavior. The "udev" events
241 * are sent out after udev has finished its event processing,
242 * all rules have been processed, and needed device nodes are
245 * The initial refcount is 1, and needs to be decremented to
246 * release the resources of the udev monitor.
248 * Returns: a new udev monitor, or #NULL, in case of an error
250 _public_
struct udev_monitor
*udev_monitor_new_from_netlink(struct udev
*udev
, const char *name
)
252 return udev_monitor_new_from_netlink_fd(udev
, name
, -1);
255 static inline void bpf_stmt(struct sock_filter
*inss
, unsigned int *i
,
256 unsigned short code
, unsigned int data
)
258 struct sock_filter
*ins
= &inss
[*i
];
265 static inline void bpf_jmp(struct sock_filter
*inss
, unsigned int *i
,
266 unsigned short code
, unsigned int data
,
267 unsigned short jt
, unsigned short jf
)
269 struct sock_filter
*ins
= &inss
[*i
];
279 * udev_monitor_filter_update:
280 * @udev_monitor: monitor
282 * Update the installed socket filter. This is only needed,
283 * if the filter was removed or changed.
285 * Returns: 0 on success, otherwise a negative error value.
287 _public_
int udev_monitor_filter_update(struct udev_monitor
*udev_monitor
)
289 struct sock_filter ins
[512];
290 struct sock_fprog filter
;
292 struct udev_list_entry
*list_entry
;
295 if (udev_list_get_entry(&udev_monitor
->filter_subsystem_list
) == NULL
&&
296 udev_list_get_entry(&udev_monitor
->filter_tag_list
) == NULL
)
299 memzero(ins
, sizeof(ins
));
302 /* load magic in A */
303 bpf_stmt(ins
, &i
, BPF_LD
|BPF_W
|BPF_ABS
, offsetof(struct udev_monitor_netlink_header
, magic
));
304 /* jump if magic matches */
305 bpf_jmp(ins
, &i
, BPF_JMP
|BPF_JEQ
|BPF_K
, UDEV_MONITOR_MAGIC
, 1, 0);
306 /* wrong magic, pass packet */
307 bpf_stmt(ins
, &i
, BPF_RET
|BPF_K
, 0xffffffff);
309 if (udev_list_get_entry(&udev_monitor
->filter_tag_list
) != NULL
) {
312 /* count tag matches, to calculate end of tag match block */
314 udev_list_entry_foreach(list_entry
, udev_list_get_entry(&udev_monitor
->filter_tag_list
))
317 /* add all tags matches */
318 udev_list_entry_foreach(list_entry
, udev_list_get_entry(&udev_monitor
->filter_tag_list
)) {
319 uint64_t tag_bloom_bits
= util_string_bloom64(udev_list_entry_get_name(list_entry
));
320 uint32_t tag_bloom_hi
= tag_bloom_bits
>> 32;
321 uint32_t tag_bloom_lo
= tag_bloom_bits
& 0xffffffff;
323 /* load device bloom bits in A */
324 bpf_stmt(ins
, &i
, BPF_LD
|BPF_W
|BPF_ABS
, offsetof(struct udev_monitor_netlink_header
, filter_tag_bloom_hi
));
325 /* clear bits (tag bits & bloom bits) */
326 bpf_stmt(ins
, &i
, BPF_ALU
|BPF_AND
|BPF_K
, tag_bloom_hi
);
327 /* jump to next tag if it does not match */
328 bpf_jmp(ins
, &i
, BPF_JMP
|BPF_JEQ
|BPF_K
, tag_bloom_hi
, 0, 3);
330 /* load device bloom bits in A */
331 bpf_stmt(ins
, &i
, BPF_LD
|BPF_W
|BPF_ABS
, offsetof(struct udev_monitor_netlink_header
, filter_tag_bloom_lo
));
332 /* clear bits (tag bits & bloom bits) */
333 bpf_stmt(ins
, &i
, BPF_ALU
|BPF_AND
|BPF_K
, tag_bloom_lo
);
334 /* jump behind end of tag match block if tag matches */
336 bpf_jmp(ins
, &i
, BPF_JMP
|BPF_JEQ
|BPF_K
, tag_bloom_lo
, 1 + (tag_matches
* 6), 0);
339 /* nothing matched, drop packet */
340 bpf_stmt(ins
, &i
, BPF_RET
|BPF_K
, 0);
343 /* add all subsystem matches */
344 if (udev_list_get_entry(&udev_monitor
->filter_subsystem_list
) != NULL
) {
345 udev_list_entry_foreach(list_entry
, udev_list_get_entry(&udev_monitor
->filter_subsystem_list
)) {
346 unsigned int hash
= util_string_hash32(udev_list_entry_get_name(list_entry
));
348 /* load device subsystem value in A */
349 bpf_stmt(ins
, &i
, BPF_LD
|BPF_W
|BPF_ABS
, offsetof(struct udev_monitor_netlink_header
, filter_subsystem_hash
));
350 if (udev_list_entry_get_value(list_entry
) == NULL
) {
351 /* jump if subsystem does not match */
352 bpf_jmp(ins
, &i
, BPF_JMP
|BPF_JEQ
|BPF_K
, hash
, 0, 1);
354 /* jump if subsystem does not match */
355 bpf_jmp(ins
, &i
, BPF_JMP
|BPF_JEQ
|BPF_K
, hash
, 0, 3);
357 /* load device devtype value in A */
358 bpf_stmt(ins
, &i
, BPF_LD
|BPF_W
|BPF_ABS
, offsetof(struct udev_monitor_netlink_header
, filter_devtype_hash
));
359 /* jump if value does not match */
360 hash
= util_string_hash32(udev_list_entry_get_value(list_entry
));
361 bpf_jmp(ins
, &i
, BPF_JMP
|BPF_JEQ
|BPF_K
, hash
, 0, 1);
364 /* matched, pass packet */
365 bpf_stmt(ins
, &i
, BPF_RET
|BPF_K
, 0xffffffff);
367 if (i
+1 >= ELEMENTSOF(ins
))
371 /* nothing matched, drop packet */
372 bpf_stmt(ins
, &i
, BPF_RET
|BPF_K
, 0);
375 /* matched, pass packet */
376 bpf_stmt(ins
, &i
, BPF_RET
|BPF_K
, 0xffffffff);
379 memzero(&filter
, sizeof(filter
));
382 err
= setsockopt(udev_monitor
->sock
, SOL_SOCKET
, SO_ATTACH_FILTER
, &filter
, sizeof(filter
));
383 return err
< 0 ? -errno
: 0;
386 int udev_monitor_allow_unicast_sender(struct udev_monitor
*udev_monitor
, struct udev_monitor
*sender
)
388 udev_monitor
->snl_trusted_sender
.nl
.nl_pid
= sender
->snl
.nl
.nl_pid
;
393 * udev_monitor_enable_receiving:
394 * @udev_monitor: the monitor which should receive events
396 * Binds the @udev_monitor socket to the event source.
398 * Returns: 0 on success, otherwise a negative error value.
400 _public_
int udev_monitor_enable_receiving(struct udev_monitor
*udev_monitor
)
405 udev_monitor_filter_update(udev_monitor
);
407 if (!udev_monitor
->bound
) {
408 err
= bind(udev_monitor
->sock
,
409 &udev_monitor
->snl
.sa
, sizeof(struct sockaddr_nl
));
411 udev_monitor
->bound
= true;
415 monitor_set_nl_address(udev_monitor
);
417 return log_debug_errno(errno
, "bind failed: %m");
419 /* enable receiving of sender credentials */
420 err
= setsockopt(udev_monitor
->sock
, SOL_SOCKET
, SO_PASSCRED
, &on
, sizeof(on
));
422 log_debug_errno(errno
, "setting SO_PASSCRED failed: %m");
428 * udev_monitor_set_receive_buffer_size:
429 * @udev_monitor: the monitor which should receive events
430 * @size: the size in bytes
432 * Set the size of the kernel socket buffer. This call needs the
433 * appropriate privileges to succeed.
435 * Returns: 0 on success, otherwise -1 on error.
437 _public_
int udev_monitor_set_receive_buffer_size(struct udev_monitor
*udev_monitor
, int size
)
439 if (udev_monitor
== NULL
)
441 return setsockopt(udev_monitor
->sock
, SOL_SOCKET
, SO_RCVBUFFORCE
, &size
, sizeof(size
));
444 int udev_monitor_disconnect(struct udev_monitor
*udev_monitor
)
448 err
= close(udev_monitor
->sock
);
449 udev_monitor
->sock
= -1;
450 return err
< 0 ? -errno
: 0;
455 * @udev_monitor: udev monitor
457 * Take a reference of a udev monitor.
459 * Returns: the passed udev monitor
461 _public_
struct udev_monitor
*udev_monitor_ref(struct udev_monitor
*udev_monitor
)
463 if (udev_monitor
== NULL
)
465 udev_monitor
->refcount
++;
470 * udev_monitor_unref:
471 * @udev_monitor: udev monitor
473 * Drop a reference of a udev monitor. If the refcount reaches zero,
474 * the bound socket will be closed, and the resources of the monitor
479 _public_
struct udev_monitor
*udev_monitor_unref(struct udev_monitor
*udev_monitor
)
481 if (udev_monitor
== NULL
)
483 udev_monitor
->refcount
--;
484 if (udev_monitor
->refcount
> 0)
486 if (udev_monitor
->sock
>= 0)
487 close(udev_monitor
->sock
);
488 udev_list_cleanup(&udev_monitor
->filter_subsystem_list
);
489 udev_list_cleanup(&udev_monitor
->filter_tag_list
);
495 * udev_monitor_get_udev:
496 * @udev_monitor: udev monitor
498 * Retrieve the udev library context the monitor was created with.
500 * Returns: the udev library context
502 _public_
struct udev
*udev_monitor_get_udev(struct udev_monitor
*udev_monitor
)
504 if (udev_monitor
== NULL
)
506 return udev_monitor
->udev
;
510 * udev_monitor_get_fd:
511 * @udev_monitor: udev monitor
513 * Retrieve the socket file descriptor associated with the monitor.
515 * Returns: the socket file descriptor
517 _public_
int udev_monitor_get_fd(struct udev_monitor
*udev_monitor
)
519 if (udev_monitor
== NULL
)
521 return udev_monitor
->sock
;
524 static int passes_filter(struct udev_monitor
*udev_monitor
, struct udev_device
*udev_device
)
526 struct udev_list_entry
*list_entry
;
528 if (udev_list_get_entry(&udev_monitor
->filter_subsystem_list
) == NULL
)
530 udev_list_entry_foreach(list_entry
, udev_list_get_entry(&udev_monitor
->filter_subsystem_list
)) {
531 const char *subsys
= udev_list_entry_get_name(list_entry
);
532 const char *dsubsys
= udev_device_get_subsystem(udev_device
);
534 const char *ddevtype
;
536 if (!streq(dsubsys
, subsys
))
539 devtype
= udev_list_entry_get_value(list_entry
);
542 ddevtype
= udev_device_get_devtype(udev_device
);
543 if (ddevtype
== NULL
)
545 if (streq(ddevtype
, devtype
))
551 if (udev_list_get_entry(&udev_monitor
->filter_tag_list
) == NULL
)
553 udev_list_entry_foreach(list_entry
, udev_list_get_entry(&udev_monitor
->filter_tag_list
)) {
554 const char *tag
= udev_list_entry_get_name(list_entry
);
556 if (udev_device_has_tag(udev_device
, tag
))
563 * udev_monitor_receive_device:
564 * @udev_monitor: udev monitor
566 * Receive data from the udev monitor socket, allocate a new udev
567 * device, fill in the received data, and return the device.
569 * Only socket connections with uid=0 are accepted.
571 * The monitor socket is by default set to NONBLOCK. A variant of poll() on
572 * the file descriptor returned by udev_monitor_get_fd() should to be used to
573 * wake up when new devices arrive, or alternatively the file descriptor
574 * switched into blocking mode.
576 * The initial refcount is 1, and needs to be decremented to
577 * release the resources of the udev device.
579 * Returns: a new udev device, or #NULL, in case of an error
581 _public_
struct udev_device
*udev_monitor_receive_device(struct udev_monitor
*udev_monitor
)
583 struct udev_device
*udev_device
;
586 char cred_msg
[CMSG_SPACE(sizeof(struct ucred
))];
587 struct cmsghdr
*cmsg
;
588 union sockaddr_union snl
;
591 struct udev_monitor_netlink_header nlh
;
596 bool is_initialized
= false;
599 if (udev_monitor
== NULL
)
602 iov
.iov_len
= sizeof(buf
);
603 memzero(&smsg
, sizeof(struct msghdr
));
606 smsg
.msg_control
= cred_msg
;
607 smsg
.msg_controllen
= sizeof(cred_msg
);
608 smsg
.msg_name
= &snl
;
609 smsg
.msg_namelen
= sizeof(snl
);
611 buflen
= recvmsg(udev_monitor
->sock
, &smsg
, 0);
614 log_debug("unable to receive message");
618 if (buflen
< 32 || (smsg
.msg_flags
& MSG_TRUNC
)) {
619 log_debug("invalid message length");
623 if (snl
.nl
.nl_groups
== 0) {
624 /* unicast message, check if we trust the sender */
625 if (udev_monitor
->snl_trusted_sender
.nl
.nl_pid
== 0 ||
626 snl
.nl
.nl_pid
!= udev_monitor
->snl_trusted_sender
.nl
.nl_pid
) {
627 log_debug("unicast netlink message ignored");
630 } else if (snl
.nl
.nl_groups
== UDEV_MONITOR_KERNEL
) {
631 if (snl
.nl
.nl_pid
> 0) {
632 log_debug("multicast kernel netlink message from PID %"PRIu32
" ignored",
638 cmsg
= CMSG_FIRSTHDR(&smsg
);
639 if (cmsg
== NULL
|| cmsg
->cmsg_type
!= SCM_CREDENTIALS
) {
640 log_debug("no sender credentials received, message ignored");
644 cred
= (struct ucred
*)CMSG_DATA(cmsg
);
645 if (cred
->uid
!= 0) {
646 log_debug("sender uid="UID_FMT
", message ignored", cred
->uid
);
650 if (memcmp(buf
.raw
, "libudev", 8) == 0) {
651 /* udev message needs proper version magic */
652 if (buf
.nlh
.magic
!= htobe32(UDEV_MONITOR_MAGIC
)) {
653 log_debug("unrecognized message signature (%x != %x)",
654 buf
.nlh
.magic
, htobe32(UDEV_MONITOR_MAGIC
));
657 if (buf
.nlh
.properties_off
+32 > (size_t)buflen
) {
658 log_debug("message smaller than expected (%u > %zd)",
659 buf
.nlh
.properties_off
+32, buflen
);
663 bufpos
= buf
.nlh
.properties_off
;
665 /* devices received from udev are always initialized */
666 is_initialized
= true;
668 /* kernel message with header */
669 bufpos
= strlen(buf
.raw
) + 1;
670 if ((size_t)bufpos
< sizeof("a@/d") || bufpos
>= buflen
) {
671 log_debug("invalid message length");
675 /* check message header */
676 if (strstr(buf
.raw
, "@/") == NULL
) {
677 log_debug("unrecognized message header");
682 udev_device
= udev_device_new_from_nulstr(udev_monitor
->udev
, &buf
.raw
[bufpos
], buflen
- bufpos
);
684 log_debug("could not create device: %m");
689 udev_device_set_is_initialized(udev_device
);
691 /* skip device, if it does not pass the current filter */
692 if (!passes_filter(udev_monitor
, udev_device
)) {
693 struct pollfd pfd
[1];
696 udev_device_unref(udev_device
);
698 /* if something is queued, get next device */
699 pfd
[0].fd
= udev_monitor
->sock
;
700 pfd
[0].events
= POLLIN
;
701 rc
= poll(pfd
, 1, 0);
710 int udev_monitor_send_device(struct udev_monitor
*udev_monitor
,
711 struct udev_monitor
*destination
, struct udev_device
*udev_device
)
713 const char *buf
, *val
;
715 struct udev_monitor_netlink_header nlh
= {
717 .magic
= htobe32(UDEV_MONITOR_MAGIC
),
718 .header_size
= sizeof nlh
,
720 struct iovec iov
[2] = {
721 { .iov_base
= &nlh
, .iov_len
= sizeof nlh
},
723 struct msghdr smsg
= {
727 struct udev_list_entry
*list_entry
;
728 uint64_t tag_bloom_bits
;
730 blen
= udev_device_get_properties_monitor_buf(udev_device
, &buf
);
732 log_debug("device buffer is too small to contain a valid device");
736 /* fill in versioned header */
737 val
= udev_device_get_subsystem(udev_device
);
738 nlh
.filter_subsystem_hash
= htobe32(util_string_hash32(val
));
740 val
= udev_device_get_devtype(udev_device
);
742 nlh
.filter_devtype_hash
= htobe32(util_string_hash32(val
));
744 /* add tag bloom filter */
746 udev_list_entry_foreach(list_entry
, udev_device_get_tags_list_entry(udev_device
))
747 tag_bloom_bits
|= util_string_bloom64(udev_list_entry_get_name(list_entry
));
748 if (tag_bloom_bits
> 0) {
749 nlh
.filter_tag_bloom_hi
= htobe32(tag_bloom_bits
>> 32);
750 nlh
.filter_tag_bloom_lo
= htobe32(tag_bloom_bits
& 0xffffffff);
753 /* add properties list */
754 nlh
.properties_off
= iov
[0].iov_len
;
755 nlh
.properties_len
= blen
;
756 iov
[1].iov_base
= (char *)buf
;
757 iov
[1].iov_len
= blen
;
760 * Use custom address for target, or the default one.
762 * If we send to a multicast group, we will get
763 * ECONNREFUSED, which is expected.
766 smsg
.msg_name
= &destination
->snl
;
768 smsg
.msg_name
= &udev_monitor
->snl_destination
;
769 smsg
.msg_namelen
= sizeof(struct sockaddr_nl
);
770 count
= sendmsg(udev_monitor
->sock
, &smsg
, 0);
772 if (!destination
&& errno
== ECONNREFUSED
) {
773 log_debug("passed device to netlink monitor %p", udev_monitor
);
779 log_debug("passed %zi byte device to netlink monitor %p", count
, udev_monitor
);
784 * udev_monitor_filter_add_match_subsystem_devtype:
785 * @udev_monitor: the monitor
786 * @subsystem: the subsystem value to match the incoming devices against
787 * @devtype: the devtype value to match the incoming devices against
789 * This filter is efficiently executed inside the kernel, and libudev subscribers
790 * will usually not be woken up for devices which do not match.
792 * The filter must be installed before the monitor is switched to listening mode.
794 * Returns: 0 on success, otherwise a negative error value.
796 _public_
int udev_monitor_filter_add_match_subsystem_devtype(struct udev_monitor
*udev_monitor
, const char *subsystem
, const char *devtype
)
798 if (udev_monitor
== NULL
)
800 if (subsystem
== NULL
)
802 if (udev_list_entry_add(&udev_monitor
->filter_subsystem_list
, subsystem
, devtype
) == NULL
)
808 * udev_monitor_filter_add_match_tag:
809 * @udev_monitor: the monitor
810 * @tag: the name of a tag
812 * This filter is efficiently executed inside the kernel, and libudev subscribers
813 * will usually not be woken up for devices which do not match.
815 * The filter must be installed before the monitor is switched to listening mode.
817 * Returns: 0 on success, otherwise a negative error value.
819 _public_
int udev_monitor_filter_add_match_tag(struct udev_monitor
*udev_monitor
, const char *tag
)
821 if (udev_monitor
== NULL
)
825 if (udev_list_entry_add(&udev_monitor
->filter_tag_list
, tag
, NULL
) == NULL
)
831 * udev_monitor_filter_remove:
832 * @udev_monitor: monitor
834 * Remove all filters from monitor.
836 * Returns: 0 on success, otherwise a negative error value.
838 _public_
int udev_monitor_filter_remove(struct udev_monitor
*udev_monitor
)
840 static struct sock_fprog filter
= { 0, NULL
};
842 udev_list_cleanup(&udev_monitor
->filter_subsystem_list
);
843 return setsockopt(udev_monitor
->sock
, SOL_SOCKET
, SO_ATTACH_FILTER
, &filter
, sizeof(filter
));