2 * kernel userspace event delivery
4 * Copyright (C) 2004 Red Hat, Inc. All rights reserved.
5 * Copyright (C) 2004 Novell, Inc. All rights reserved.
6 * Copyright (C) 2004 IBM, Inc. All rights reserved.
8 * Licensed under the GNU GPL v2.
11 * Robert Love <rml@novell.com>
12 * Kay Sievers <kay.sievers@vrfy.org>
13 * Arjan van de Ven <arjanv@redhat.com>
14 * Greg Kroah-Hartman <greg@kroah.com>
17 #include <linux/spinlock.h>
18 #include <linux/string.h>
19 #include <linux/kobject.h>
20 #include <linux/export.h>
21 #include <linux/kmod.h>
22 #include <linux/slab.h>
23 #include <linux/socket.h>
24 #include <linux/skbuff.h>
25 #include <linux/netlink.h>
26 #include <linux/uuid.h>
27 #include <linux/ctype.h>
29 #include <net/net_namespace.h>
33 #ifdef CONFIG_UEVENT_HELPER
34 char uevent_helper
[UEVENT_HELPER_PATH_LEN
] = CONFIG_UEVENT_HELPER_PATH
;
38 struct list_head list
;
41 static LIST_HEAD(uevent_sock_list
);
44 /* This lock protects uevent_seqnum and uevent_sock_list */
45 static DEFINE_MUTEX(uevent_sock_mutex
);
47 /* the strings here must match the enum in include/linux/kobject.h */
48 static const char *kobject_actions
[] = {
50 [KOBJ_REMOVE
] = "remove",
51 [KOBJ_CHANGE
] = "change",
53 [KOBJ_ONLINE
] = "online",
54 [KOBJ_OFFLINE
] = "offline",
56 [KOBJ_UNBIND
] = "unbind",
59 static int kobject_action_type(const char *buf
, size_t count
,
60 enum kobject_action
*type
,
63 enum kobject_action action
;
65 const char *args_start
;
68 if (count
&& (buf
[count
-1] == '\n' || buf
[count
-1] == '\0'))
74 args_start
= strnchr(buf
, count
, ' ');
76 count_first
= args_start
- buf
;
77 args_start
= args_start
+ 1;
81 for (action
= 0; action
< ARRAY_SIZE(kobject_actions
); action
++) {
82 if (strncmp(kobject_actions
[action
], buf
, count_first
) != 0)
84 if (kobject_actions
[action
][count_first
] != '\0')
96 static const char *action_arg_word_end(const char *buf
, const char *buf_end
,
99 const char *next
= buf
;
101 while (next
<= buf_end
&& *next
!= delim
)
102 if (!isalnum(*next
++))
111 static int kobject_action_args(const char *buf
, size_t count
,
112 struct kobj_uevent_env
**ret_env
)
114 struct kobj_uevent_env
*env
= NULL
;
115 const char *next
, *buf_end
, *key
;
119 if (count
&& (buf
[count
- 1] == '\n' || buf
[count
- 1] == '\0'))
125 env
= kzalloc(sizeof(*env
), GFP_KERNEL
);
129 /* first arg is UUID */
130 if (count
< UUID_STRING_LEN
|| !uuid_is_valid(buf
) ||
131 add_uevent_var(env
, "SYNTH_UUID=%.*s", UUID_STRING_LEN
, buf
))
135 * the rest are custom environment variables in KEY=VALUE
136 * format with ' ' delimiter between each KEY=VALUE pair
138 next
= buf
+ UUID_STRING_LEN
;
139 buf_end
= buf
+ count
- 1;
141 while (next
<= buf_end
) {
145 /* skip the ' ', key must follow */
151 next
= action_arg_word_end(buf
, buf_end
, '=');
152 if (!next
|| next
> buf_end
|| *next
!= '=')
154 key_len
= next
- buf
;
156 /* skip the '=', value must follow */
157 if (++next
> buf_end
)
161 next
= action_arg_word_end(buf
, buf_end
, ' ');
165 if (add_uevent_var(env
, "SYNTH_ARG_%.*s=%.*s",
166 key_len
, key
, (int) (next
- buf
), buf
))
180 * kobject_synth_uevent - send synthetic uevent with arguments
182 * @kobj: struct kobject for which synthetic uevent is to be generated
183 * @buf: buffer containing action type and action args, newline is ignored
184 * @count: length of buffer
186 * Returns 0 if kobject_synthetic_uevent() is completed with success or the
187 * corresponding error when it fails.
189 int kobject_synth_uevent(struct kobject
*kobj
, const char *buf
, size_t count
)
191 char *no_uuid_envp
[] = { "SYNTH_UUID=0", NULL
};
192 enum kobject_action action
;
193 const char *action_args
;
194 struct kobj_uevent_env
*env
;
195 const char *msg
= NULL
, *devpath
;
198 r
= kobject_action_type(buf
, count
, &action
, &action_args
);
200 msg
= "unknown uevent action string\n";
205 r
= kobject_uevent_env(kobj
, action
, no_uuid_envp
);
209 r
= kobject_action_args(action_args
,
210 count
- (action_args
- buf
), &env
);
212 msg
= "incorrect uevent action arguments\n";
219 r
= kobject_uevent_env(kobj
, action
, env
->envp
);
223 devpath
= kobject_get_path(kobj
, GFP_KERNEL
);
224 printk(KERN_WARNING
"synth uevent: %s: %s",
225 devpath
?: "unknown device",
226 msg
?: "failed to send uevent");
233 static int kobj_bcast_filter(struct sock
*dsk
, struct sk_buff
*skb
, void *data
)
235 struct kobject
*kobj
= data
, *ksobj
;
236 const struct kobj_ns_type_operations
*ops
;
238 ops
= kobj_ns_ops(kobj
);
239 if (!ops
&& kobj
->kset
) {
240 ksobj
= &kobj
->kset
->kobj
;
241 if (ksobj
->parent
!= NULL
)
242 ops
= kobj_ns_ops(ksobj
->parent
);
245 if (ops
&& ops
->netlink_ns
&& kobj
->ktype
->namespace) {
246 const void *sock_ns
, *ns
;
247 ns
= kobj
->ktype
->namespace(kobj
);
248 sock_ns
= ops
->netlink_ns(dsk
);
249 return sock_ns
!= ns
;
256 #ifdef CONFIG_UEVENT_HELPER
257 static int kobj_usermode_filter(struct kobject
*kobj
)
259 const struct kobj_ns_type_operations
*ops
;
261 ops
= kobj_ns_ops(kobj
);
263 const void *init_ns
, *ns
;
264 ns
= kobj
->ktype
->namespace(kobj
);
265 init_ns
= ops
->initial_ns();
266 return ns
!= init_ns
;
272 static int init_uevent_argv(struct kobj_uevent_env
*env
, const char *subsystem
)
276 len
= strlcpy(&env
->buf
[env
->buflen
], subsystem
,
277 sizeof(env
->buf
) - env
->buflen
);
278 if (len
>= (sizeof(env
->buf
) - env
->buflen
)) {
279 WARN(1, KERN_ERR
"init_uevent_argv: buffer size too small\n");
283 env
->argv
[0] = uevent_helper
;
284 env
->argv
[1] = &env
->buf
[env
->buflen
];
287 env
->buflen
+= len
+ 1;
291 static void cleanup_uevent_env(struct subprocess_info
*info
)
297 static void zap_modalias_env(struct kobj_uevent_env
*env
)
299 static const char modalias_prefix
[] = "MODALIAS=";
302 for (i
= 0; i
< env
->envp_idx
;) {
303 if (strncmp(env
->envp
[i
], modalias_prefix
,
304 sizeof(modalias_prefix
) - 1)) {
309 if (i
!= env
->envp_idx
- 1)
310 memmove(&env
->envp
[i
], &env
->envp
[i
+ 1],
311 sizeof(env
->envp
[i
]) * env
->envp_idx
- 1);
318 * kobject_uevent_env - send an uevent with environmental data
320 * @kobj: struct kobject that the action is happening to
321 * @action: action that is happening
322 * @envp_ext: pointer to environmental data
324 * Returns 0 if kobject_uevent_env() is completed with success or the
325 * corresponding error when it fails.
327 int kobject_uevent_env(struct kobject
*kobj
, enum kobject_action action
,
330 struct kobj_uevent_env
*env
;
331 const char *action_string
= kobject_actions
[action
];
332 const char *devpath
= NULL
;
333 const char *subsystem
;
334 struct kobject
*top_kobj
;
336 const struct kset_uevent_ops
*uevent_ops
;
340 struct uevent_sock
*ue_sk
;
343 pr_debug("kobject: '%s' (%p): %s\n",
344 kobject_name(kobj
), kobj
, __func__
);
346 /* search the kset we belong to */
348 while (!top_kobj
->kset
&& top_kobj
->parent
)
349 top_kobj
= top_kobj
->parent
;
351 if (!top_kobj
->kset
) {
352 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
353 "without kset!\n", kobject_name(kobj
), kobj
,
358 kset
= top_kobj
->kset
;
359 uevent_ops
= kset
->uevent_ops
;
361 /* skip the event, if uevent_suppress is set*/
362 if (kobj
->uevent_suppress
) {
363 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
364 "caused the event to drop!\n",
365 kobject_name(kobj
), kobj
, __func__
);
368 /* skip the event, if the filter returns zero. */
369 if (uevent_ops
&& uevent_ops
->filter
)
370 if (!uevent_ops
->filter(kset
, kobj
)) {
371 pr_debug("kobject: '%s' (%p): %s: filter function "
372 "caused the event to drop!\n",
373 kobject_name(kobj
), kobj
, __func__
);
377 /* originating subsystem */
378 if (uevent_ops
&& uevent_ops
->name
)
379 subsystem
= uevent_ops
->name(kset
, kobj
);
381 subsystem
= kobject_name(&kset
->kobj
);
383 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
384 "event to drop!\n", kobject_name(kobj
), kobj
,
389 /* environment buffer */
390 env
= kzalloc(sizeof(struct kobj_uevent_env
), GFP_KERNEL
);
394 /* complete object path */
395 devpath
= kobject_get_path(kobj
, GFP_KERNEL
);
402 retval
= add_uevent_var(env
, "ACTION=%s", action_string
);
405 retval
= add_uevent_var(env
, "DEVPATH=%s", devpath
);
408 retval
= add_uevent_var(env
, "SUBSYSTEM=%s", subsystem
);
412 /* keys passed in from the caller */
414 for (i
= 0; envp_ext
[i
]; i
++) {
415 retval
= add_uevent_var(env
, "%s", envp_ext
[i
]);
421 /* let the kset specific function add its stuff */
422 if (uevent_ops
&& uevent_ops
->uevent
) {
423 retval
= uevent_ops
->uevent(kset
, kobj
, env
);
425 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
426 "%d\n", kobject_name(kobj
), kobj
,
435 * Mark "add" event so we can make sure we deliver "remove"
436 * event to userspace during automatic cleanup. If
437 * the object did send an "add" event, "remove" will
438 * automatically generated by the core, if not already done
441 kobj
->state_add_uevent_sent
= 1;
445 kobj
->state_remove_uevent_sent
= 1;
449 zap_modalias_env(env
);
456 mutex_lock(&uevent_sock_mutex
);
457 /* we will send an event, so request a new sequence number */
458 retval
= add_uevent_var(env
, "SEQNUM=%llu", (unsigned long long)++uevent_seqnum
);
460 mutex_unlock(&uevent_sock_mutex
);
464 #if defined(CONFIG_NET)
465 /* send netlink message */
466 list_for_each_entry(ue_sk
, &uevent_sock_list
, list
) {
467 struct sock
*uevent_sock
= ue_sk
->sk
;
471 if (!netlink_has_listeners(uevent_sock
, 1))
474 /* allocate message with the maximum possible size */
475 len
= strlen(action_string
) + strlen(devpath
) + 2;
476 skb
= alloc_skb(len
+ env
->buflen
, GFP_KERNEL
);
481 scratch
= skb_put(skb
, len
);
482 sprintf(scratch
, "%s@%s", action_string
, devpath
);
484 /* copy keys to our continuous event payload buffer */
485 for (i
= 0; i
< env
->envp_idx
; i
++) {
486 len
= strlen(env
->envp
[i
]) + 1;
487 scratch
= skb_put(skb
, len
);
488 strcpy(scratch
, env
->envp
[i
]);
491 NETLINK_CB(skb
).dst_group
= 1;
492 retval
= netlink_broadcast_filtered(uevent_sock
, skb
,
496 /* ENOBUFS should be handled in userspace */
497 if (retval
== -ENOBUFS
|| retval
== -ESRCH
)
503 mutex_unlock(&uevent_sock_mutex
);
505 #ifdef CONFIG_UEVENT_HELPER
506 /* call uevent_helper, usually only enabled during early boot */
507 if (uevent_helper
[0] && !kobj_usermode_filter(kobj
)) {
508 struct subprocess_info
*info
;
510 retval
= add_uevent_var(env
, "HOME=/");
513 retval
= add_uevent_var(env
,
514 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
517 retval
= init_uevent_argv(env
, subsystem
);
522 info
= call_usermodehelper_setup(env
->argv
[0], env
->argv
,
523 env
->envp
, GFP_KERNEL
,
524 NULL
, cleanup_uevent_env
, env
);
526 retval
= call_usermodehelper_exec(info
, UMH_NO_WAIT
);
527 env
= NULL
; /* freed by cleanup_uevent_env */
537 EXPORT_SYMBOL_GPL(kobject_uevent_env
);
540 * kobject_uevent - notify userspace by sending an uevent
542 * @kobj: struct kobject that the action is happening to
543 * @action: action that is happening
545 * Returns 0 if kobject_uevent() is completed with success or the
546 * corresponding error when it fails.
548 int kobject_uevent(struct kobject
*kobj
, enum kobject_action action
)
550 return kobject_uevent_env(kobj
, action
, NULL
);
552 EXPORT_SYMBOL_GPL(kobject_uevent
);
555 * add_uevent_var - add key value string to the environment buffer
556 * @env: environment buffer structure
557 * @format: printf format for the key=value pair
559 * Returns 0 if environment variable was added successfully or -ENOMEM
560 * if no space was available.
562 int add_uevent_var(struct kobj_uevent_env
*env
, const char *format
, ...)
567 if (env
->envp_idx
>= ARRAY_SIZE(env
->envp
)) {
568 WARN(1, KERN_ERR
"add_uevent_var: too many keys\n");
572 va_start(args
, format
);
573 len
= vsnprintf(&env
->buf
[env
->buflen
],
574 sizeof(env
->buf
) - env
->buflen
,
578 if (len
>= (sizeof(env
->buf
) - env
->buflen
)) {
579 WARN(1, KERN_ERR
"add_uevent_var: buffer size too small\n");
583 env
->envp
[env
->envp_idx
++] = &env
->buf
[env
->buflen
];
584 env
->buflen
+= len
+ 1;
587 EXPORT_SYMBOL_GPL(add_uevent_var
);
589 #if defined(CONFIG_NET)
590 static int uevent_net_init(struct net
*net
)
592 struct uevent_sock
*ue_sk
;
593 struct netlink_kernel_cfg cfg
= {
595 .flags
= NL_CFG_F_NONROOT_RECV
,
598 ue_sk
= kzalloc(sizeof(*ue_sk
), GFP_KERNEL
);
602 ue_sk
->sk
= netlink_kernel_create(net
, NETLINK_KOBJECT_UEVENT
, &cfg
);
605 "kobject_uevent: unable to create netlink socket!\n");
609 mutex_lock(&uevent_sock_mutex
);
610 list_add_tail(&ue_sk
->list
, &uevent_sock_list
);
611 mutex_unlock(&uevent_sock_mutex
);
615 static void uevent_net_exit(struct net
*net
)
617 struct uevent_sock
*ue_sk
;
619 mutex_lock(&uevent_sock_mutex
);
620 list_for_each_entry(ue_sk
, &uevent_sock_list
, list
) {
621 if (sock_net(ue_sk
->sk
) == net
)
624 mutex_unlock(&uevent_sock_mutex
);
628 list_del(&ue_sk
->list
);
629 mutex_unlock(&uevent_sock_mutex
);
631 netlink_kernel_release(ue_sk
->sk
);
635 static struct pernet_operations uevent_net_ops
= {
636 .init
= uevent_net_init
,
637 .exit
= uevent_net_exit
,
640 static int __init
kobject_uevent_init(void)
642 return register_pernet_subsys(&uevent_net_ops
);
646 postcore_initcall(kobject_uevent_init
);