Kobject: kobject_uevent.c: Collapse unnecessary loop nesting (top_kobj)
[safe/jmp/linux-2.6] / lib / kobject_uevent.c
1 /*
2  * kernel userspace event delivery
3  *
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.
7  *
8  * Licensed under the GNU GPL v2.
9  *
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>
15  */
16
17 #include <linux/spinlock.h>
18 #include <linux/socket.h>
19 #include <linux/skbuff.h>
20 #include <linux/netlink.h>
21 #include <linux/string.h>
22 #include <linux/kobject.h>
23 #include <net/sock.h>
24
25 #define BUFFER_SIZE     2048    /* buffer for the variables */
26 #define NUM_ENVP        32      /* number of env pointers */
27
28 #if defined(CONFIG_HOTPLUG)
29 u64 uevent_seqnum;
30 char uevent_helper[UEVENT_HELPER_PATH_LEN] = "/sbin/hotplug";
31 static DEFINE_SPINLOCK(sequence_lock);
32 #if defined(CONFIG_NET)
33 static struct sock *uevent_sock;
34 #endif
35
36 static char *action_to_string(enum kobject_action action)
37 {
38         switch (action) {
39         case KOBJ_ADD:
40                 return "add";
41         case KOBJ_REMOVE:
42                 return "remove";
43         case KOBJ_CHANGE:
44                 return "change";
45         case KOBJ_MOUNT:
46                 return "mount";
47         case KOBJ_UMOUNT:
48                 return "umount";
49         case KOBJ_OFFLINE:
50                 return "offline";
51         case KOBJ_ONLINE:
52                 return "online";
53         case KOBJ_MOVE:
54                 return "move";
55         default:
56                 return NULL;
57         }
58 }
59
60 /**
61  * kobject_uevent_env - send an uevent with environmental data
62  *
63  * @action: action that is happening (usually KOBJ_MOVE)
64  * @kobj: struct kobject that the action is happening to
65  * @envp_ext: pointer to environmental data
66  *
67  * Returns 0 if kobject_uevent() is completed with success or the
68  * corresponding error when it fails.
69  */
70 int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
71                         char *envp_ext[])
72 {
73         char **envp;
74         char *buffer;
75         char *scratch;
76         const char *action_string;
77         const char *devpath = NULL;
78         const char *subsystem;
79         struct kobject *top_kobj;
80         struct kset *kset;
81         struct kset_uevent_ops *uevent_ops;
82         u64 seq;
83         char *seq_buff;
84         int i = 0;
85         int retval = 0;
86         int j;
87
88         pr_debug("%s\n", __FUNCTION__);
89
90         action_string = action_to_string(action);
91         if (!action_string) {
92                 pr_debug("kobject attempted to send uevent without action_string!\n");
93                 return -EINVAL;
94         }
95
96         /* search the kset we belong to */
97         top_kobj = kobj;
98         while (!top_kobj->kset && top_kobj->parent) {
99                 top_kobj = top_kobj->parent;
100         }
101         if (!top_kobj->kset) {
102                 pr_debug("kobject attempted to send uevent without kset!\n");
103                 return -EINVAL;
104         }
105
106         kset = top_kobj->kset;
107         uevent_ops = kset->uevent_ops;
108
109         /*  skip the event, if the filter returns zero. */
110         if (uevent_ops && uevent_ops->filter)
111                 if (!uevent_ops->filter(kset, kobj)) {
112                         pr_debug("kobject filter function caused the event to drop!\n");
113                         return 0;
114                 }
115
116         /* originating subsystem */
117         if (uevent_ops && uevent_ops->name)
118                 subsystem = uevent_ops->name(kset, kobj);
119         else
120                 subsystem = kobject_name(&kset->kobj);
121         if (!subsystem) {
122                 pr_debug("unset subsytem caused the event to drop!\n");
123                 return 0;
124         }
125
126         /* environment index */
127         envp = kzalloc(NUM_ENVP * sizeof (char *), GFP_KERNEL);
128         if (!envp)
129                 return -ENOMEM;
130
131         /* environment values */
132         buffer = kmalloc(BUFFER_SIZE, GFP_KERNEL);
133         if (!buffer) {
134                 retval = -ENOMEM;
135                 goto exit;
136         }
137
138         /* complete object path */
139         devpath = kobject_get_path(kobj, GFP_KERNEL);
140         if (!devpath) {
141                 retval = -ENOENT;
142                 goto exit;
143         }
144
145         /* event environemnt for helper process only */
146         envp[i++] = "HOME=/";
147         envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
148
149         /* default keys */
150         scratch = buffer;
151         envp [i++] = scratch;
152         scratch += sprintf(scratch, "ACTION=%s", action_string) + 1;
153         envp [i++] = scratch;
154         scratch += sprintf (scratch, "DEVPATH=%s", devpath) + 1;
155         envp [i++] = scratch;
156         scratch += sprintf(scratch, "SUBSYSTEM=%s", subsystem) + 1;
157         for (j = 0; envp_ext && envp_ext[j]; j++)
158                 envp[i++] = envp_ext[j];
159         /* just reserve the space, overwrite it after kset call has returned */
160         envp[i++] = seq_buff = scratch;
161         scratch += strlen("SEQNUM=18446744073709551616") + 1;
162
163         /* let the kset specific function add its stuff */
164         if (uevent_ops && uevent_ops->uevent) {
165                 retval = uevent_ops->uevent(kset, kobj,
166                                   &envp[i], NUM_ENVP - i, scratch,
167                                   BUFFER_SIZE - (scratch - buffer));
168                 if (retval) {
169                         pr_debug ("%s - uevent() returned %d\n",
170                                   __FUNCTION__, retval);
171                         goto exit;
172                 }
173         }
174
175         /* we will send an event, request a new sequence number */
176         spin_lock(&sequence_lock);
177         seq = ++uevent_seqnum;
178         spin_unlock(&sequence_lock);
179         sprintf(seq_buff, "SEQNUM=%llu", (unsigned long long)seq);
180
181 #if defined(CONFIG_NET)
182         /* send netlink message */
183         if (uevent_sock) {
184                 struct sk_buff *skb;
185                 size_t len;
186
187                 /* allocate message with the maximum possible size */
188                 len = strlen(action_string) + strlen(devpath) + 2;
189                 skb = alloc_skb(len + BUFFER_SIZE, GFP_KERNEL);
190                 if (skb) {
191                         /* add header */
192                         scratch = skb_put(skb, len);
193                         sprintf(scratch, "%s@%s", action_string, devpath);
194
195                         /* copy keys to our continuous event payload buffer */
196                         for (i = 2; envp[i]; i++) {
197                                 len = strlen(envp[i]) + 1;
198                                 scratch = skb_put(skb, len);
199                                 strcpy(scratch, envp[i]);
200                         }
201
202                         NETLINK_CB(skb).dst_group = 1;
203                         netlink_broadcast(uevent_sock, skb, 0, 1, GFP_KERNEL);
204                 }
205         }
206 #endif
207
208         /* call uevent_helper, usually only enabled during early boot */
209         if (uevent_helper[0]) {
210                 char *argv [3];
211
212                 argv [0] = uevent_helper;
213                 argv [1] = (char *)subsystem;
214                 argv [2] = NULL;
215                 call_usermodehelper (argv[0], argv, envp, 0);
216         }
217
218 exit:
219         kfree(devpath);
220         kfree(buffer);
221         kfree(envp);
222         return retval;
223 }
224
225 EXPORT_SYMBOL_GPL(kobject_uevent_env);
226
227 /**
228  * kobject_uevent - notify userspace by ending an uevent
229  *
230  * @action: action that is happening (usually KOBJ_ADD and KOBJ_REMOVE)
231  * @kobj: struct kobject that the action is happening to
232  *
233  * Returns 0 if kobject_uevent() is completed with success or the
234  * corresponding error when it fails.
235  */
236 int kobject_uevent(struct kobject *kobj, enum kobject_action action)
237 {
238         return kobject_uevent_env(kobj, action, NULL);
239 }
240
241 EXPORT_SYMBOL_GPL(kobject_uevent);
242
243 /**
244  * add_uevent_var - helper for creating event variables
245  * @envp: Pointer to table of environment variables, as passed into
246  * uevent() method.
247  * @num_envp: Number of environment variable slots available, as
248  * passed into uevent() method.
249  * @cur_index: Pointer to current index into @envp.  It should be
250  * initialized to 0 before the first call to add_uevent_var(),
251  * and will be incremented on success.
252  * @buffer: Pointer to buffer for environment variables, as passed
253  * into uevent() method.
254  * @buffer_size: Length of @buffer, as passed into uevent() method.
255  * @cur_len: Pointer to current length of space used in @buffer.
256  * Should be initialized to 0 before the first call to
257  * add_uevent_var(), and will be incremented on success.
258  * @format: Format for creating environment variable (of the form
259  * "XXX=%x") for snprintf().
260  *
261  * Returns 0 if environment variable was added successfully or -ENOMEM
262  * if no space was available.
263  */
264 int add_uevent_var(char **envp, int num_envp, int *cur_index,
265                    char *buffer, int buffer_size, int *cur_len,
266                    const char *format, ...)
267 {
268         va_list args;
269
270         /*
271          * We check against num_envp - 1 to make sure there is at
272          * least one slot left after we return, since kobject_uevent()
273          * needs to set the last slot to NULL.
274          */
275         if (*cur_index >= num_envp - 1)
276                 return -ENOMEM;
277
278         envp[*cur_index] = buffer + *cur_len;
279
280         va_start(args, format);
281         *cur_len += vsnprintf(envp[*cur_index],
282                               max(buffer_size - *cur_len, 0),
283                               format, args) + 1;
284         va_end(args);
285
286         if (*cur_len > buffer_size)
287                 return -ENOMEM;
288
289         (*cur_index)++;
290         return 0;
291 }
292 EXPORT_SYMBOL_GPL(add_uevent_var);
293
294 #if defined(CONFIG_NET)
295 static int __init kobject_uevent_init(void)
296 {
297         uevent_sock = netlink_kernel_create(NETLINK_KOBJECT_UEVENT, 1, NULL,
298                                             NULL, THIS_MODULE);
299
300         if (!uevent_sock) {
301                 printk(KERN_ERR
302                        "kobject_uevent: unable to create netlink socket!\n");
303                 return -ENODEV;
304         }
305
306         return 0;
307 }
308
309 postcore_initcall(kobject_uevent_init);
310 #endif
311
312 #endif /* CONFIG_HOTPLUG */