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/socket.h>
19 #include <linux/skbuff.h>
20 #include <linux/netlink.h>
21 #include <linux/string.h>
22 #include <linux/kobject.h>
25 #define BUFFER_SIZE 1024 /* buffer for the variables */
26 #define NUM_ENVP 32 /* number of env pointers */
28 #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
29 static DEFINE_SPINLOCK(sequence_lock
);
30 static struct sock
*uevent_sock
;
32 static char *action_to_string(enum kobject_action action
)
51 * kobject_uevent - notify userspace by ending an uevent
53 * @action: action that is happening (usually KOBJ_ADD and KOBJ_REMOVE)
54 * @kobj: struct kobject that the action is happening to
56 void kobject_uevent(struct kobject
*kobj
, enum kobject_action action
)
61 const char *action_string
;
62 const char *devpath
= NULL
;
63 const char *subsystem
;
64 struct kobject
*top_kobj
;
66 struct kset_uevent_ops
*uevent_ops
;
72 pr_debug("%s\n", __FUNCTION__
);
74 action_string
= action_to_string(action
);
78 /* search the kset we belong to */
80 if (!top_kobj
->kset
&& top_kobj
->parent
) {
82 top_kobj
= top_kobj
->parent
;
83 } while (!top_kobj
->kset
&& top_kobj
->parent
);
88 kset
= top_kobj
->kset
;
89 uevent_ops
= kset
->uevent_ops
;
91 /* skip the event, if the filter returns zero. */
92 if (uevent_ops
&& uevent_ops
->filter
)
93 if (!uevent_ops
->filter(kset
, kobj
))
96 /* environment index */
97 envp
= kzalloc(NUM_ENVP
* sizeof (char *), GFP_KERNEL
);
101 /* environment values */
102 buffer
= kmalloc(BUFFER_SIZE
, GFP_KERNEL
);
106 /* complete object path */
107 devpath
= kobject_get_path(kobj
, GFP_KERNEL
);
111 /* originating subsystem */
112 if (uevent_ops
&& uevent_ops
->name
)
113 subsystem
= uevent_ops
->name(kset
, kobj
);
115 subsystem
= kobject_name(&kset
->kobj
);
117 /* event environemnt for helper process only */
118 envp
[i
++] = "HOME=/";
119 envp
[i
++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
123 envp
[i
++] = scratch
;
124 scratch
+= sprintf(scratch
, "ACTION=%s", action_string
) + 1;
125 envp
[i
++] = scratch
;
126 scratch
+= sprintf (scratch
, "DEVPATH=%s", devpath
) + 1;
127 envp
[i
++] = scratch
;
128 scratch
+= sprintf(scratch
, "SUBSYSTEM=%s", subsystem
) + 1;
130 /* just reserve the space, overwrite it after kset call has returned */
131 envp
[i
++] = seq_buff
= scratch
;
132 scratch
+= strlen("SEQNUM=18446744073709551616") + 1;
134 /* let the kset specific function add its stuff */
135 if (uevent_ops
&& uevent_ops
->uevent
) {
136 retval
= uevent_ops
->uevent(kset
, kobj
,
137 &envp
[i
], NUM_ENVP
- i
, scratch
,
138 BUFFER_SIZE
- (scratch
- buffer
));
140 pr_debug ("%s - uevent() returned %d\n",
141 __FUNCTION__
, retval
);
146 /* we will send an event, request a new sequence number */
147 spin_lock(&sequence_lock
);
148 seq
= ++uevent_seqnum
;
149 spin_unlock(&sequence_lock
);
150 sprintf(seq_buff
, "SEQNUM=%llu", (unsigned long long)seq
);
152 /* send netlink message */
157 /* allocate message with the maximum possible size */
158 len
= strlen(action_string
) + strlen(devpath
) + 2;
159 skb
= alloc_skb(len
+ BUFFER_SIZE
, GFP_KERNEL
);
162 scratch
= skb_put(skb
, len
);
163 sprintf(scratch
, "%s@%s", action_string
, devpath
);
165 /* copy keys to our continuous event payload buffer */
166 for (i
= 2; envp
[i
]; i
++) {
167 len
= strlen(envp
[i
]) + 1;
168 scratch
= skb_put(skb
, len
);
169 strcpy(scratch
, envp
[i
]);
172 NETLINK_CB(skb
).dst_group
= 1;
173 netlink_broadcast(uevent_sock
, skb
, 0, 1, GFP_KERNEL
);
177 /* call uevent_helper, usually only enabled during early boot */
178 if (uevent_helper
[0]) {
181 argv
[0] = uevent_helper
;
182 argv
[1] = (char *)subsystem
;
184 call_usermodehelper (argv
[0], argv
, envp
, 0);
193 EXPORT_SYMBOL_GPL(kobject_uevent
);
196 * add_uevent_var - helper for creating event variables
197 * @envp: Pointer to table of environment variables, as passed into
199 * @num_envp: Number of environment variable slots available, as
200 * passed into uevent() method.
201 * @cur_index: Pointer to current index into @envp. It should be
202 * initialized to 0 before the first call to add_uevent_var(),
203 * and will be incremented on success.
204 * @buffer: Pointer to buffer for environment variables, as passed
205 * into uevent() method.
206 * @buffer_size: Length of @buffer, as passed into uevent() method.
207 * @cur_len: Pointer to current length of space used in @buffer.
208 * Should be initialized to 0 before the first call to
209 * add_uevent_var(), and will be incremented on success.
210 * @format: Format for creating environment variable (of the form
211 * "XXX=%x") for snprintf().
213 * Returns 0 if environment variable was added successfully or -ENOMEM
214 * if no space was available.
216 int add_uevent_var(char **envp
, int num_envp
, int *cur_index
,
217 char *buffer
, int buffer_size
, int *cur_len
,
218 const char *format
, ...)
223 * We check against num_envp - 1 to make sure there is at
224 * least one slot left after we return, since kobject_uevent()
225 * needs to set the last slot to NULL.
227 if (*cur_index
>= num_envp
- 1)
230 envp
[*cur_index
] = buffer
+ *cur_len
;
232 va_start(args
, format
);
233 *cur_len
+= vsnprintf(envp
[*cur_index
],
234 max(buffer_size
- *cur_len
, 0),
238 if (*cur_len
> buffer_size
)
244 EXPORT_SYMBOL_GPL(add_uevent_var
);
246 static int __init
kobject_uevent_init(void)
248 uevent_sock
= netlink_kernel_create(NETLINK_KOBJECT_UEVENT
, 1, NULL
,
253 "kobject_uevent: unable to create netlink socket!\n");
260 postcore_initcall(kobject_uevent_init
);
262 #endif /* CONFIG_HOTPLUG */