2 * uevent.c - trigger upon netlink uevents from the kernel
4 * Only kernels from version 2.6.10* on provide the uevent netlink socket.
5 * Until the libc-kernel-headers are updated, you need to compile with:
7 * gcc -I /lib/modules/`uname -r`/build/include -o uevent_listen uevent_listen.c
9 * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation version 2 of the License.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 675 Mass Ave, Cambridge, MA 02139, USA.
34 #include <sys/socket.h>
37 #include <linux/types.h>
38 #include <linux/netlink.h>
52 typedef int (uev_trigger)(struct uevent *, void * trigger_data);
56 pthread_mutex_t uevq_lock = PTHREAD_MUTEX_INITIALIZER;
57 pthread_mutex_t *uevq_lockp = &uevq_lock;
58 pthread_cond_t uev_cond = PTHREAD_COND_INITIALIZER;
59 pthread_cond_t *uev_condp = &uev_cond;
60 uev_trigger *my_uev_trigger;
61 void * my_trigger_data;
64 int is_uevent_busy(void)
68 pthread_mutex_lock(uevq_lockp);
69 empty = list_empty(&uevq);
70 pthread_mutex_unlock(uevq_lockp);
71 return (!empty || servicing_uev);
74 struct uevent * alloc_uevent (void)
76 struct uevent *uev = MALLOC(sizeof(struct uevent));
79 INIT_LIST_HEAD(&uev->node);
85 setup_thread_attr(pthread_attr_t *attr, size_t stacksize, int detached)
87 if (pthread_attr_init(attr)) {
88 fprintf(stderr, "can't initialize thread attr: %s\n",
92 if (stacksize < PTHREAD_STACK_MIN)
93 stacksize = PTHREAD_STACK_MIN;
95 if (pthread_attr_setstacksize(attr, stacksize)) {
96 fprintf(stderr, "can't set thread stack size to %lu: %s\n",
97 (unsigned long)stacksize, strerror(errno));
100 if (detached && pthread_attr_setdetachstate(attr,
101 PTHREAD_CREATE_DETACHED)) {
102 fprintf(stderr, "can't set thread to detached: %s\n",
109 * Called with uevq_lockp held
112 service_uevq(struct list_head *tmpq)
114 struct uevent *uev, *tmp;
116 list_for_each_entry_safe(uev, tmp, tmpq, node) {
117 list_del_init(&uev->node);
119 if (my_uev_trigger && my_uev_trigger(uev, my_trigger_data))
120 condlog(0, "uevent trigger error");
123 udev_device_unref(uev->udev);
128 static void uevq_stop(void *arg)
130 condlog(3, "Stopping uev queue");
131 pthread_mutex_lock(uevq_lockp);
132 my_uev_trigger = NULL;
133 pthread_cond_signal(uev_condp);
134 pthread_mutex_unlock(uevq_lockp);
138 uevq_cleanup(struct list_head *tmpq)
140 struct uevent *uev, *tmp;
142 list_for_each_entry_safe(uev, tmp, tmpq, node) {
143 list_del_init(&uev->node);
149 * Service the uevent queue.
151 int uevent_dispatch(int (*uev_trigger)(struct uevent *, void * trigger_data),
154 my_uev_trigger = uev_trigger;
155 my_trigger_data = trigger_data;
157 mlockall(MCL_CURRENT | MCL_FUTURE);
162 pthread_mutex_lock(uevq_lockp);
165 * Condition signals are unreliable,
166 * so make sure we only wait if we have to.
168 if (list_empty(&uevq)) {
169 pthread_cond_wait(uev_condp, uevq_lockp);
172 list_splice_init(&uevq, &uevq_tmp);
173 pthread_mutex_unlock(uevq_lockp);
176 service_uevq(&uevq_tmp);
178 condlog(3, "Terminating uev service queue");
183 int failback_listen(void)
186 struct sockaddr_nl snl;
187 struct sockaddr_un sun;
190 int rcvbufsz = 128*1024;
192 int rcvszsz = sizeof(rcvsz);
193 unsigned int *prcvszsz = (unsigned int *)&rcvszsz;
194 const int feature_on = 1;
196 * First check whether we have a udev socket
198 memset(&sun, 0x00, sizeof(struct sockaddr_un));
199 sun.sun_family = AF_LOCAL;
200 strcpy(&sun.sun_path[1], "/org/kernel/dm/multipath_event");
201 addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(sun.sun_path+1) + 1;
203 sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
206 condlog(3, "reading events from udev socket.");
208 /* the bind takes care of ensuring only one copy running */
209 retval = bind(sock, (struct sockaddr *) &sun, addrlen);
211 condlog(0, "bind failed, exit");
215 /* enable receiving of the sender credentials */
216 setsockopt(sock, SOL_SOCKET, SO_PASSCRED,
217 &feature_on, sizeof(feature_on));
220 /* Fallback to read kernel netlink events */
221 memset(&snl, 0x00, sizeof(struct sockaddr_nl));
222 snl.nl_family = AF_NETLINK;
223 snl.nl_pid = getpid();
224 snl.nl_groups = 0x01;
226 sock = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
228 condlog(0, "error getting socket, exit");
232 condlog(3, "reading events from kernel.");
235 * try to avoid dropping uevents, even so, this is not a guarantee,
236 * but it does help to change the netlink uevent socket's
237 * receive buffer threshold from the default value of 106,496 to
238 * the maximum value of 262,142.
240 retval = setsockopt(sock, SOL_SOCKET, SO_RCVBUF, &rcvbufsz,
244 condlog(0, "error setting receive buffer size for socket, exit");
247 retval = getsockopt(sock, SOL_SOCKET, SO_RCVBUF, &rcvsz, prcvszsz);
249 condlog(0, "error setting receive buffer size for socket, exit");
252 condlog(3, "receive buffer size for socket is %u.", rcvsz);
254 /* enable receiving of the sender credentials */
255 setsockopt(sock, SOL_SOCKET, SO_PASSCRED,
256 &feature_on, sizeof(feature_on));
258 retval = bind(sock, (struct sockaddr *) &snl,
259 sizeof(struct sockaddr_nl));
261 condlog(0, "bind failed, exit");
275 char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
276 struct cmsghdr *cmsg;
278 static char buf[HOTPLUG_BUFFER_SIZE + OBJECT_SIZE];
280 memset(buf, 0x00, sizeof(buf));
282 iov.iov_len = sizeof(buf);
283 memset (&smsg, 0x00, sizeof(struct msghdr));
286 smsg.msg_control = cred_msg;
287 smsg.msg_controllen = sizeof(cred_msg);
289 buflen = recvmsg(sock, &smsg, 0);
292 condlog(0, "error receiving message, errno %d", errno);
296 cmsg = CMSG_FIRSTHDR(&smsg);
297 if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
298 condlog(3, "no sender credentials received, message ignored");
302 cred = (struct ucred *)CMSG_DATA(cmsg);
303 if (cred->uid != 0) {
304 condlog(3, "sender uid=%d, message ignored", cred->uid);
309 bufpos = strlen(buf) + 1;
310 if (bufpos < sizeof("a@/d") || bufpos >= sizeof(buf)) {
311 condlog(3, "invalid message length");
315 /* check message header */
316 if (strstr(buf, "@/") == NULL) {
317 condlog(3, "unrecognized message header");
320 if ((size_t)buflen > sizeof(buf)-1) {
321 condlog(2, "buffer overflow for received uevent");
322 buflen = sizeof(buf)-1;
325 uev = alloc_uevent();
328 condlog(1, "lost uevent, oom");
332 if ((size_t)buflen > sizeof(buf)-1)
333 buflen = sizeof(buf)-1;
336 * Copy the shared receive buffer contents to buffer private
337 * to this uevent so we can immediately reuse the shared buffer.
339 memcpy(uev->buffer, buf, HOTPLUG_BUFFER_SIZE + OBJECT_SIZE);
340 buffer = uev->buffer;
341 buffer[buflen] = '\0';
343 /* save start of payload */
344 bufpos = strlen(buffer) + 1;
347 uev->action = buffer;
348 pos = strchr(buffer, '@');
350 condlog(3, "bad action string '%s'", buffer);
356 uev->devpath = &pos[1];
358 /* hotplug events have the environment attached - reconstruct envp[] */
359 for (i = 0; (bufpos < (size_t)buflen) && (i < HOTPLUG_NUM_ENVP-1); i++) {
363 key = &buffer[bufpos];
364 keylen = strlen(key);
366 /* Filter out sequence number */
367 if (strncmp(key, "SEQNUM=", 7) == 0) {
370 uev->seqnum = strtoul(key + 7, &eptr, 10);
374 bufpos += keylen + 1;
378 condlog(3, "uevent %ld '%s' from '%s'", uev->seqnum,
379 uev->action, uev->devpath);
380 uev->kernel = strrchr(uev->devpath, '/');
384 /* print payload environment */
385 for (i = 0; uev->envp[i] != NULL; i++)
386 condlog(5, "%s", uev->envp[i]);
389 * Queue uevent and poke service pthread.
391 pthread_mutex_lock(uevq_lockp);
392 list_add_tail(&uev->node, &uevq);
393 pthread_cond_signal(uev_condp);
394 pthread_mutex_unlock(uevq_lockp);
402 int uevent_listen(void)
405 struct udev_monitor *monitor = NULL;
406 int fd, socket_flags;
407 int need_failback = 1;
409 * Queue uevents for service by dedicated thread so that the uevent
410 * listening thread does not block on multipathd locks (vecs->lock)
411 * thereby not getting to empty the socket's receive buffer queue
414 pthread_cleanup_push(uevq_stop, NULL);
416 monitor = udev_monitor_new_from_netlink(conf->udev, "udev");
418 condlog(2, "failed to create udev monitor");
421 #ifdef LIBUDEV_API_RECVBUF
422 if (udev_monitor_set_receive_buffer_size(monitor, 128 * 1024 * 1024))
423 condlog(2, "failed to increase buffer size");
425 fd = udev_monitor_get_fd(monitor);
427 condlog(2, "failed to get monitor fd");
430 socket_flags = fcntl(fd, F_GETFL);
431 if (socket_flags < 0) {
432 condlog(2, "failed to get monitor socket flags : %s",
436 if (fcntl(fd, F_SETFL, socket_flags & ~O_NONBLOCK) < 0) {
437 condlog(2, "failed to set monitor socket flags : %s",
441 err = udev_monitor_filter_add_match_subsystem_devtype(monitor, "block",
444 condlog(2, "failed to create filter : %s", strerror(-err));
445 err = udev_monitor_enable_receiving(monitor);
447 condlog(2, "failed to enable receiving : %s", strerror(-err));
454 struct udev_device *dev;
455 struct udev_list_entry *list_entry;
457 dev = udev_monitor_receive_device(monitor);
459 condlog(0, "failed getting udev device");
463 uev = alloc_uevent();
465 udev_device_unref(dev);
466 condlog(1, "lost uevent, oom");
470 end = pos + HOTPLUG_BUFFER_SIZE + OBJECT_SIZE - 1;
471 udev_list_entry_foreach(list_entry, udev_device_get_properties_list_entry(dev)) {
472 const char *name, *value;
475 name = udev_list_entry_get_name(list_entry);
478 value = udev_list_entry_get_value(list_entry);
481 bytes = snprintf(pos, end - pos, "%s=%s", name,
483 if (pos + bytes >= end) {
484 condlog(2, "buffer overflow for uevent");
491 if (strcmp(name, "DEVPATH") == 0)
492 uev->devpath = uev->envp[i] + 8;
493 if (strcmp(name, "ACTION") == 0)
494 uev->action = uev->envp[i] + 7;
496 if (i == HOTPLUG_NUM_ENVP - 1)
502 condlog(3, "uevent '%s' from '%s'", uev->action, uev->devpath);
503 uev->kernel = strrchr(uev->devpath, '/');
507 /* print payload environment */
508 for (i = 0; uev->envp[i] != NULL; i++)
509 condlog(5, "%s", uev->envp[i]);
512 * Queue uevent and poke service pthread.
514 pthread_mutex_lock(uevq_lockp);
515 list_add_tail(&uev->node, &uevq);
516 pthread_cond_signal(uev_condp);
517 pthread_mutex_unlock(uevq_lockp);
522 udev_monitor_unref(monitor);
524 err = failback_listen();
525 pthread_cleanup_pop(1);
530 uevent_get_major(struct uevent *uev)
535 for (i = 0; uev->envp[i] != NULL; i++) {
536 if (!strncmp(uev->envp[i], "MAJOR", 5) && strlen(uev->envp[i]) > 6) {
537 p = uev->envp[i] + 6;
538 major = strtoul(p, &q, 10);
540 condlog(2, "invalid major '%s'", p);
550 uevent_get_minor(struct uevent *uev)
555 for (i = 0; uev->envp[i] != NULL; i++) {
556 if (!strncmp(uev->envp[i], "MINOR", 5) && strlen(uev->envp[i]) > 6) {
557 p = uev->envp[i] + 6;
558 minor = strtoul(p, &q, 10);
560 condlog(2, "invalid minor '%s'", p);
570 uevent_get_disk_ro(struct uevent *uev)
575 for (i = 0; uev->envp[i] != NULL; i++) {
576 if (!strncmp(uev->envp[i], "DISK_RO", 6) && strlen(uev->envp[i]) > 7) {
577 p = uev->envp[i] + 8;
578 ro = strtoul(p, &q, 10);
580 condlog(2, "invalid read_only setting '%s'", p);
590 uevent_get_dm_name(struct uevent *uev)
595 for (i = 0; uev->envp[i] != NULL; i++) {
596 if (!strncmp(uev->envp[i], "DM_NAME", 6) &&
597 strlen(uev->envp[i]) > 7) {
598 p = MALLOC(strlen(uev->envp[i] + 8) + 1);
599 strcpy(p, uev->envp[i] + 8);