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