blob: 982226daf9398112185a5eb717c28d396fcb9341 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kobject.h>
23#include <net/sock.h>
24
Benjamin Herrenschmidtd87499e2006-01-25 10:21:32 +110025#define BUFFER_SIZE 2048 /* buffer for the variables */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define NUM_ENVP 32 /* number of env pointers */
27
akpm@osdl.orgf743ca52005-11-22 23:36:13 -080028#if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
Jun'ichi Nomura51107302006-03-15 08:28:55 -050029u64 uevent_seqnum;
30char uevent_helper[UEVENT_HELPER_PATH_LEN] = "/sbin/hotplug";
Kay Sievers0296b222005-11-11 05:33:52 +010031static DEFINE_SPINLOCK(sequence_lock);
Kay Sievers5f123fb2005-11-11 14:43:07 +010032static struct sock *uevent_sock;
Kay Sievers0296b222005-11-11 05:33:52 +010033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static char *action_to_string(enum kobject_action action)
35{
36 switch (action) {
37 case KOBJ_ADD:
38 return "add";
39 case KOBJ_REMOVE:
40 return "remove";
41 case KOBJ_CHANGE:
42 return "change";
Greg Kroah-Hartmanfa675762006-02-22 09:39:02 -080043 case KOBJ_MOUNT:
44 return "mount";
45 case KOBJ_UMOUNT:
46 return "umount";
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 case KOBJ_OFFLINE:
48 return "offline";
49 case KOBJ_ONLINE:
50 return "online";
51 default:
52 return NULL;
53 }
54}
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/**
Kay Sievers312c0042005-11-16 09:00:00 +010057 * kobject_uevent - notify userspace by ending an uevent
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
Kay Sievers312c0042005-11-16 09:00:00 +010059 * @action: action that is happening (usually KOBJ_ADD and KOBJ_REMOVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * @kobj: struct kobject that the action is happening to
61 */
Kay Sievers312c0042005-11-16 09:00:00 +010062void kobject_uevent(struct kobject *kobj, enum kobject_action action)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Kay Sievers5f123fb2005-11-11 14:43:07 +010064 char **envp;
65 char *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 char *scratch;
Kay Sievers5f123fb2005-11-11 14:43:07 +010067 const char *action_string;
68 const char *devpath = NULL;
69 const char *subsystem;
70 struct kobject *top_kobj;
71 struct kset *kset;
Kay Sievers312c0042005-11-16 09:00:00 +010072 struct kset_uevent_ops *uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +010073 u64 seq;
74 char *seq_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 int i = 0;
76 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Kay Sievers5f123fb2005-11-11 14:43:07 +010078 pr_debug("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 action_string = action_to_string(action);
81 if (!action_string)
82 return;
83
Kay Sievers5f123fb2005-11-11 14:43:07 +010084 /* search the kset we belong to */
85 top_kobj = kobj;
86 if (!top_kobj->kset && top_kobj->parent) {
87 do {
88 top_kobj = top_kobj->parent;
89 } while (!top_kobj->kset && top_kobj->parent);
90 }
91 if (!top_kobj->kset)
92 return;
93
94 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +010095 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +010096
97 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +010098 if (uevent_ops && uevent_ops->filter)
99 if (!uevent_ops->filter(kset, kobj))
Kay Sievers5f123fb2005-11-11 14:43:07 +0100100 return;
101
102 /* environment index */
103 envp = kzalloc(NUM_ENVP * sizeof (char *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!envp)
105 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Kay Sievers5f123fb2005-11-11 14:43:07 +0100107 /* environment values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 buffer = kmalloc(BUFFER_SIZE, GFP_KERNEL);
109 if (!buffer)
110 goto exit;
111
Kay Sievers5f123fb2005-11-11 14:43:07 +0100112 /* complete object path */
113 devpath = kobject_get_path(kobj, GFP_KERNEL);
114 if (!devpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 goto exit;
116
Kay Sievers5f123fb2005-11-11 14:43:07 +0100117 /* originating subsystem */
Kay Sievers312c0042005-11-16 09:00:00 +0100118 if (uevent_ops && uevent_ops->name)
119 subsystem = uevent_ops->name(kset, kobj);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100120 else
121 subsystem = kobject_name(&kset->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Kay Sievers5f123fb2005-11-11 14:43:07 +0100123 /* event environemnt for helper process only */
124 envp[i++] = "HOME=/";
125 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Kay Sievers5f123fb2005-11-11 14:43:07 +0100127 /* default keys */
128 scratch = buffer;
129 envp [i++] = scratch;
130 scratch += sprintf(scratch, "ACTION=%s", action_string) + 1;
131 envp [i++] = scratch;
132 scratch += sprintf (scratch, "DEVPATH=%s", devpath) + 1;
133 envp [i++] = scratch;
134 scratch += sprintf(scratch, "SUBSYSTEM=%s", subsystem) + 1;
135
136 /* just reserve the space, overwrite it after kset call has returned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 envp[i++] = seq_buff = scratch;
138 scratch += strlen("SEQNUM=18446744073709551616") + 1;
139
Kay Sievers5f123fb2005-11-11 14:43:07 +0100140 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100141 if (uevent_ops && uevent_ops->uevent) {
142 retval = uevent_ops->uevent(kset, kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 &envp[i], NUM_ENVP - i, scratch,
144 BUFFER_SIZE - (scratch - buffer));
145 if (retval) {
Kay Sievers312c0042005-11-16 09:00:00 +0100146 pr_debug ("%s - uevent() returned %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 __FUNCTION__, retval);
148 goto exit;
149 }
150 }
151
Kay Sievers5f123fb2005-11-11 14:43:07 +0100152 /* we will send an event, request a new sequence number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 spin_lock(&sequence_lock);
Kay Sievers312c0042005-11-16 09:00:00 +0100154 seq = ++uevent_seqnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 spin_unlock(&sequence_lock);
156 sprintf(seq_buff, "SEQNUM=%llu", (unsigned long long)seq);
157
Kay Sievers5f123fb2005-11-11 14:43:07 +0100158 /* send netlink message */
159 if (uevent_sock) {
160 struct sk_buff *skb;
161 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Kay Sievers5f123fb2005-11-11 14:43:07 +0100163 /* allocate message with the maximum possible size */
164 len = strlen(action_string) + strlen(devpath) + 2;
165 skb = alloc_skb(len + BUFFER_SIZE, GFP_KERNEL);
166 if (skb) {
167 /* add header */
168 scratch = skb_put(skb, len);
169 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Kay Sievers5f123fb2005-11-11 14:43:07 +0100171 /* copy keys to our continuous event payload buffer */
172 for (i = 2; envp[i]; i++) {
173 len = strlen(envp[i]) + 1;
174 scratch = skb_put(skb, len);
175 strcpy(scratch, envp[i]);
176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Kay Sievers5f123fb2005-11-11 14:43:07 +0100178 NETLINK_CB(skb).dst_group = 1;
179 netlink_broadcast(uevent_sock, skb, 0, 1, GFP_KERNEL);
180 }
181 }
182
183 /* call uevent_helper, usually only enabled during early boot */
Kay Sievers312c0042005-11-16 09:00:00 +0100184 if (uevent_helper[0]) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100185 char *argv [3];
186
Kay Sievers312c0042005-11-16 09:00:00 +0100187 argv [0] = uevent_helper;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100188 argv [1] = (char *)subsystem;
189 argv [2] = NULL;
190 call_usermodehelper (argv[0], argv, envp, 0);
191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100194 kfree(devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 kfree(buffer);
196 kfree(envp);
197 return;
198}
Kay Sievers312c0042005-11-16 09:00:00 +0100199EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201/**
Kay Sievers312c0042005-11-16 09:00:00 +0100202 * add_uevent_var - helper for creating event variables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * @envp: Pointer to table of environment variables, as passed into
Kay Sievers312c0042005-11-16 09:00:00 +0100204 * uevent() method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * @num_envp: Number of environment variable slots available, as
Kay Sievers312c0042005-11-16 09:00:00 +0100206 * passed into uevent() method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * @cur_index: Pointer to current index into @envp. It should be
Kay Sievers312c0042005-11-16 09:00:00 +0100208 * initialized to 0 before the first call to add_uevent_var(),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * and will be incremented on success.
210 * @buffer: Pointer to buffer for environment variables, as passed
Kay Sievers312c0042005-11-16 09:00:00 +0100211 * into uevent() method.
212 * @buffer_size: Length of @buffer, as passed into uevent() method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * @cur_len: Pointer to current length of space used in @buffer.
214 * Should be initialized to 0 before the first call to
Kay Sievers312c0042005-11-16 09:00:00 +0100215 * add_uevent_var(), and will be incremented on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * @format: Format for creating environment variable (of the form
217 * "XXX=%x") for snprintf().
218 *
219 * Returns 0 if environment variable was added successfully or -ENOMEM
220 * if no space was available.
221 */
Kay Sievers312c0042005-11-16 09:00:00 +0100222int add_uevent_var(char **envp, int num_envp, int *cur_index,
223 char *buffer, int buffer_size, int *cur_len,
224 const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 va_list args;
227
228 /*
229 * We check against num_envp - 1 to make sure there is at
Kay Sievers312c0042005-11-16 09:00:00 +0100230 * least one slot left after we return, since kobject_uevent()
231 * needs to set the last slot to NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 */
233 if (*cur_index >= num_envp - 1)
234 return -ENOMEM;
235
236 envp[*cur_index] = buffer + *cur_len;
237
238 va_start(args, format);
239 *cur_len += vsnprintf(envp[*cur_index],
240 max(buffer_size - *cur_len, 0),
241 format, args) + 1;
242 va_end(args);
243
244 if (*cur_len > buffer_size)
245 return -ENOMEM;
246
247 (*cur_index)++;
248 return 0;
249}
Kay Sievers312c0042005-11-16 09:00:00 +0100250EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Kay Sievers5f123fb2005-11-11 14:43:07 +0100252static int __init kobject_uevent_init(void)
253{
254 uevent_sock = netlink_kernel_create(NETLINK_KOBJECT_UEVENT, 1, NULL,
255 THIS_MODULE);
256
257 if (!uevent_sock) {
258 printk(KERN_ERR
259 "kobject_uevent: unable to create netlink socket!\n");
260 return -ENODEV;
261 }
262
263 return 0;
264}
265
266postcore_initcall(kobject_uevent_init);
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268#endif /* CONFIG_HOTPLUG */