code style scripts/checkpatch.pl (linux-3.9-rc1) formatting
[linux-2.6.34.14-moxart.git] / lib / kobject_uevent.c
blob0273ead9c77e7980e1ba8988a357d820c0663fd2
1 /*
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.
10 * Authors:
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/module.h>
21 #include <linux/slab.h>
23 #include <linux/socket.h>
24 #include <linux/skbuff.h>
25 #include <linux/netlink.h>
26 #include <net/sock.h>
29 u64 uevent_seqnum;
30 char uevent_helper[UEVENT_HELPER_PATH_LEN] = CONFIG_UEVENT_HELPER_PATH;
31 static DEFINE_SPINLOCK(sequence_lock);
32 #if defined(CONFIG_NET)
33 static struct sock *uevent_sock;
34 #endif
36 /* the strings here must match the enum in include/linux/kobject.h */
37 static const char *kobject_actions[] = {
38 [KOBJ_ADD] = "add",
39 [KOBJ_REMOVE] = "remove",
40 [KOBJ_CHANGE] = "change",
41 [KOBJ_MOVE] = "move",
42 [KOBJ_ONLINE] = "online",
43 [KOBJ_OFFLINE] = "offline",
46 /**
47 * kobject_action_type - translate action string to numeric type
49 * @buf: buffer containing the action string, newline is ignored
50 * @len: length of buffer
51 * @type: pointer to the location to store the action type
53 * Returns 0 if the action string was recognized.
55 int kobject_action_type(const char *buf, size_t count,
56 enum kobject_action *type)
58 enum kobject_action action;
59 int ret = -EINVAL;
61 if (count && (buf[count-1] == '\n' || buf[count-1] == '\0'))
62 count--;
64 if (!count)
65 goto out;
67 for (action = 0; action < ARRAY_SIZE(kobject_actions); action++) {
68 if (strncmp(kobject_actions[action], buf, count) != 0)
69 continue;
70 if (kobject_actions[action][count] != '\0')
71 continue;
72 *type = action;
73 ret = 0;
74 break;
76 out:
77 return ret;
80 /**
81 * kobject_uevent_env - send an uevent with environmental data
83 * @action: action that is happening
84 * @kobj: struct kobject that the action is happening to
85 * @envp_ext: pointer to environmental data
87 * Returns 0 if kobject_uevent() is completed with success or the
88 * corresponding error when it fails.
90 int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
91 char *envp_ext[])
93 struct kobj_uevent_env *env;
94 const char *action_string = kobject_actions[action];
95 const char *devpath = NULL;
96 const char *subsystem;
97 struct kobject *top_kobj;
98 struct kset *kset;
99 const struct kset_uevent_ops *uevent_ops;
100 u64 seq;
101 int i = 0;
102 int retval = 0;
104 pr_debug("kobject: '%s' (%p): %s\n",
105 kobject_name(kobj), kobj, __func__);
107 /* search the kset we belong to */
108 top_kobj = kobj;
109 while (!top_kobj->kset && top_kobj->parent)
110 top_kobj = top_kobj->parent;
112 if (!top_kobj->kset) {
113 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
114 "without kset!\n", kobject_name(kobj), kobj,
115 __func__);
116 return -EINVAL;
119 kset = top_kobj->kset;
120 uevent_ops = kset->uevent_ops;
122 /* skip the event, if uevent_suppress is set*/
123 if (kobj->uevent_suppress) {
124 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
125 "caused the event to drop!\n",
126 kobject_name(kobj), kobj, __func__);
127 return 0;
129 /* skip the event, if the filter returns zero. */
130 if (uevent_ops && uevent_ops->filter)
131 if (!uevent_ops->filter(kset, kobj)) {
132 pr_debug("kobject: '%s' (%p): %s: filter function "
133 "caused the event to drop!\n",
134 kobject_name(kobj), kobj, __func__);
135 return 0;
138 /* originating subsystem */
139 if (uevent_ops && uevent_ops->name)
140 subsystem = uevent_ops->name(kset, kobj);
141 else
142 subsystem = kobject_name(&kset->kobj);
143 if (!subsystem) {
144 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
145 "event to drop!\n", kobject_name(kobj), kobj,
146 __func__);
147 return 0;
150 /* environment buffer */
151 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
152 if (!env)
153 return -ENOMEM;
155 /* complete object path */
156 devpath = kobject_get_path(kobj, GFP_KERNEL);
157 if (!devpath) {
158 retval = -ENOENT;
159 goto exit;
162 /* default keys */
163 retval = add_uevent_var(env, "ACTION=%s", action_string);
164 if (retval)
165 goto exit;
166 retval = add_uevent_var(env, "DEVPATH=%s", devpath);
167 if (retval)
168 goto exit;
169 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
170 if (retval)
171 goto exit;
173 /* keys passed in from the caller */
174 if (envp_ext) {
175 for (i = 0; envp_ext[i]; i++) {
176 retval = add_uevent_var(env, "%s", envp_ext[i]);
177 if (retval)
178 goto exit;
182 /* let the kset specific function add its stuff */
183 if (uevent_ops && uevent_ops->uevent) {
184 retval = uevent_ops->uevent(kset, kobj, env);
185 if (retval) {
186 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
187 "%d\n", kobject_name(kobj), kobj,
188 __func__, retval);
189 goto exit;
194 * Mark "add" and "remove" events in the object to ensure proper
195 * events to userspace during automatic cleanup. If the object did
196 * send an "add" event, "remove" will automatically generated by
197 * the core, if not already done by the caller.
199 if (action == KOBJ_ADD)
200 kobj->state_add_uevent_sent = 1;
201 else if (action == KOBJ_REMOVE)
202 kobj->state_remove_uevent_sent = 1;
204 /* we will send an event, so request a new sequence number */
205 spin_lock(&sequence_lock);
206 seq = ++uevent_seqnum;
207 spin_unlock(&sequence_lock);
208 retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)seq);
209 if (retval)
210 goto exit;
212 #if defined(CONFIG_NET)
213 /* send netlink message */
214 if (uevent_sock) {
215 struct sk_buff *skb;
216 size_t len;
218 /* allocate message with the maximum possible size */
219 len = strlen(action_string) + strlen(devpath) + 2;
220 skb = alloc_skb(len + env->buflen, GFP_KERNEL);
221 if (skb) {
222 char *scratch;
224 /* add header */
225 scratch = skb_put(skb, len);
226 sprintf(scratch, "%s@%s", action_string, devpath);
228 /* copy keys to our continuous event payload buffer */
229 for (i = 0; i < env->envp_idx; i++) {
230 len = strlen(env->envp[i]) + 1;
231 scratch = skb_put(skb, len);
232 strcpy(scratch, env->envp[i]);
235 NETLINK_CB(skb).dst_group = 1;
236 retval = netlink_broadcast(uevent_sock, skb, 0, 1,
237 GFP_KERNEL);
238 /* ENOBUFS should be handled in userspace */
239 if (retval == -ENOBUFS || retval == -ESRCH)
240 retval = 0;
241 } else
242 retval = -ENOMEM;
244 #endif
246 /* call uevent_helper, usually only enabled during early boot */
247 if (uevent_helper[0]) {
248 char *argv [3];
250 argv [0] = uevent_helper;
251 argv [1] = (char *)subsystem;
252 argv [2] = NULL;
253 retval = add_uevent_var(env, "HOME=/");
254 if (retval)
255 goto exit;
256 retval = add_uevent_var(env,
257 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
258 if (retval)
259 goto exit;
261 retval = call_usermodehelper(argv[0], argv,
262 env->envp, UMH_WAIT_EXEC);
265 exit:
266 kfree(devpath);
267 kfree(env);
268 return retval;
270 EXPORT_SYMBOL_GPL(kobject_uevent_env);
273 * kobject_uevent - notify userspace by ending an uevent
275 * @action: action that is happening
276 * @kobj: struct kobject that the action is happening to
278 * Returns 0 if kobject_uevent() is completed with success or the
279 * corresponding error when it fails.
281 int kobject_uevent(struct kobject *kobj, enum kobject_action action)
283 return kobject_uevent_env(kobj, action, NULL);
285 EXPORT_SYMBOL_GPL(kobject_uevent);
288 * add_uevent_var - add key value string to the environment buffer
289 * @env: environment buffer structure
290 * @format: printf format for the key=value pair
292 * Returns 0 if environment variable was added successfully or -ENOMEM
293 * if no space was available.
295 int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
297 va_list args;
298 int len;
300 if (env->envp_idx >= ARRAY_SIZE(env->envp)) {
301 WARN(1, KERN_ERR "add_uevent_var: too many keys\n");
302 return -ENOMEM;
305 va_start(args, format);
306 len = vsnprintf(&env->buf[env->buflen],
307 sizeof(env->buf) - env->buflen,
308 format, args);
309 va_end(args);
311 if (len >= (sizeof(env->buf) - env->buflen)) {
312 WARN(1, KERN_ERR "add_uevent_var: buffer size too small\n");
313 return -ENOMEM;
316 env->envp[env->envp_idx++] = &env->buf[env->buflen];
317 env->buflen += len + 1;
318 return 0;
320 EXPORT_SYMBOL_GPL(add_uevent_var);
322 #if defined(CONFIG_NET)
323 static int __init kobject_uevent_init(void)
325 uevent_sock = netlink_kernel_create(&init_net, NETLINK_KOBJECT_UEVENT,
326 1, NULL, NULL, THIS_MODULE);
327 if (!uevent_sock) {
328 printk(KERN_ERR
329 "kobject_uevent: unable to create netlink socket!\n");
330 return -ENODEV;
332 netlink_set_nonroot(NETLINK_KOBJECT_UEVENT, NL_NONROOT_RECV);
333 return 0;
336 postcore_initcall(kobject_uevent_init);
337 #endif