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