blob: a1922765ff315dfe1a90879f567c82e08521eaa2 [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
Kay Sievers4d17ffd2006-04-25 15:37:26 +020028#if defined(CONFIG_HOTPLUG)
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 Sievers4d17ffd2006-04-25 15:37:26 +020032#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +010033static struct sock *uevent_sock;
Kay Sievers4d17ffd2006-04-25 15:37:26 +020034#endif
Kay Sievers0296b222005-11-11 05:33:52 +010035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static 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";
Greg Kroah-Hartmanfa675762006-02-22 09:39:02 -080045 case KOBJ_MOUNT:
46 return "mount";
47 case KOBJ_UMOUNT:
48 return "umount";
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 case KOBJ_OFFLINE:
50 return "offline";
51 case KOBJ_ONLINE:
52 return "online";
Cornelia Huck8a824722006-11-20 17:07:51 +010053 case KOBJ_MOVE:
54 return "move";
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 default:
56 return NULL;
57 }
58}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/**
Cornelia Huck8a824722006-11-20 17:07:51 +010061 * kobject_uevent_env - send an uevent with environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 *
Cornelia Huck8a824722006-11-20 17:07:51 +010063 * @action: action that is happening (usually KOBJ_MOVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * @kobj: struct kobject that the action is happening to
Cornelia Huck8a824722006-11-20 17:07:51 +010065 * @envp_ext: pointer to environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
Cornelia Huck8a824722006-11-20 17:07:51 +010067void kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
68 char *envp_ext[])
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Kay Sievers5f123fb2005-11-11 14:43:07 +010070 char **envp;
71 char *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 char *scratch;
Kay Sievers5f123fb2005-11-11 14:43:07 +010073 const char *action_string;
74 const char *devpath = NULL;
75 const char *subsystem;
76 struct kobject *top_kobj;
77 struct kset *kset;
Kay Sievers312c0042005-11-16 09:00:00 +010078 struct kset_uevent_ops *uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +010079 u64 seq;
80 char *seq_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 int i = 0;
82 int retval;
Cornelia Huck8a824722006-11-20 17:07:51 +010083 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Kay Sievers5f123fb2005-11-11 14:43:07 +010085 pr_debug("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 action_string = action_to_string(action);
88 if (!action_string)
89 return;
90
Kay Sievers5f123fb2005-11-11 14:43:07 +010091 /* search the kset we belong to */
92 top_kobj = kobj;
93 if (!top_kobj->kset && top_kobj->parent) {
94 do {
95 top_kobj = top_kobj->parent;
96 } while (!top_kobj->kset && top_kobj->parent);
97 }
98 if (!top_kobj->kset)
99 return;
100
101 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +0100102 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100103
104 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +0100105 if (uevent_ops && uevent_ops->filter)
106 if (!uevent_ops->filter(kset, kobj))
Kay Sievers5f123fb2005-11-11 14:43:07 +0100107 return;
108
109 /* environment index */
110 envp = kzalloc(NUM_ENVP * sizeof (char *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (!envp)
112 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Kay Sievers5f123fb2005-11-11 14:43:07 +0100114 /* environment values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 buffer = kmalloc(BUFFER_SIZE, GFP_KERNEL);
116 if (!buffer)
117 goto exit;
118
Kay Sievers5f123fb2005-11-11 14:43:07 +0100119 /* complete object path */
120 devpath = kobject_get_path(kobj, GFP_KERNEL);
121 if (!devpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 goto exit;
123
Kay Sievers5f123fb2005-11-11 14:43:07 +0100124 /* originating subsystem */
Kay Sievers312c0042005-11-16 09:00:00 +0100125 if (uevent_ops && uevent_ops->name)
126 subsystem = uevent_ops->name(kset, kobj);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100127 else
128 subsystem = kobject_name(&kset->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Kay Sievers5f123fb2005-11-11 14:43:07 +0100130 /* event environemnt for helper process only */
131 envp[i++] = "HOME=/";
132 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Kay Sievers5f123fb2005-11-11 14:43:07 +0100134 /* default keys */
135 scratch = buffer;
136 envp [i++] = scratch;
137 scratch += sprintf(scratch, "ACTION=%s", action_string) + 1;
138 envp [i++] = scratch;
139 scratch += sprintf (scratch, "DEVPATH=%s", devpath) + 1;
140 envp [i++] = scratch;
141 scratch += sprintf(scratch, "SUBSYSTEM=%s", subsystem) + 1;
Cornelia Huck8a824722006-11-20 17:07:51 +0100142 for (j = 0; envp_ext && envp_ext[j]; j++)
143 envp[i++] = envp_ext[j];
Kay Sievers5f123fb2005-11-11 14:43:07 +0100144 /* just reserve the space, overwrite it after kset call has returned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 envp[i++] = seq_buff = scratch;
146 scratch += strlen("SEQNUM=18446744073709551616") + 1;
147
Kay Sievers5f123fb2005-11-11 14:43:07 +0100148 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100149 if (uevent_ops && uevent_ops->uevent) {
150 retval = uevent_ops->uevent(kset, kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 &envp[i], NUM_ENVP - i, scratch,
152 BUFFER_SIZE - (scratch - buffer));
153 if (retval) {
Kay Sievers312c0042005-11-16 09:00:00 +0100154 pr_debug ("%s - uevent() returned %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 __FUNCTION__, retval);
156 goto exit;
157 }
158 }
159
Kay Sievers5f123fb2005-11-11 14:43:07 +0100160 /* we will send an event, request a new sequence number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 spin_lock(&sequence_lock);
Kay Sievers312c0042005-11-16 09:00:00 +0100162 seq = ++uevent_seqnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 spin_unlock(&sequence_lock);
164 sprintf(seq_buff, "SEQNUM=%llu", (unsigned long long)seq);
165
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200166#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100167 /* send netlink message */
168 if (uevent_sock) {
169 struct sk_buff *skb;
170 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Kay Sievers5f123fb2005-11-11 14:43:07 +0100172 /* allocate message with the maximum possible size */
173 len = strlen(action_string) + strlen(devpath) + 2;
174 skb = alloc_skb(len + BUFFER_SIZE, GFP_KERNEL);
175 if (skb) {
176 /* add header */
177 scratch = skb_put(skb, len);
178 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Kay Sievers5f123fb2005-11-11 14:43:07 +0100180 /* copy keys to our continuous event payload buffer */
181 for (i = 2; envp[i]; i++) {
182 len = strlen(envp[i]) + 1;
183 scratch = skb_put(skb, len);
184 strcpy(scratch, envp[i]);
185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Kay Sievers5f123fb2005-11-11 14:43:07 +0100187 NETLINK_CB(skb).dst_group = 1;
188 netlink_broadcast(uevent_sock, skb, 0, 1, GFP_KERNEL);
189 }
190 }
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200191#endif
Kay Sievers5f123fb2005-11-11 14:43:07 +0100192
193 /* call uevent_helper, usually only enabled during early boot */
Kay Sievers312c0042005-11-16 09:00:00 +0100194 if (uevent_helper[0]) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100195 char *argv [3];
196
Kay Sievers312c0042005-11-16 09:00:00 +0100197 argv [0] = uevent_helper;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100198 argv [1] = (char *)subsystem;
199 argv [2] = NULL;
200 call_usermodehelper (argv[0], argv, envp, 0);
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100204 kfree(devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 kfree(buffer);
206 kfree(envp);
207 return;
208}
Cornelia Huck8a824722006-11-20 17:07:51 +0100209
210EXPORT_SYMBOL_GPL(kobject_uevent_env);
211
212/**
213 * kobject_uevent - notify userspace by ending an uevent
214 *
215 * @action: action that is happening (usually KOBJ_ADD and KOBJ_REMOVE)
216 * @kobj: struct kobject that the action is happening to
217 */
218void kobject_uevent(struct kobject *kobj, enum kobject_action action)
219{
220 kobject_uevent_env(kobj, action, NULL);
221}
222
Kay Sievers312c0042005-11-16 09:00:00 +0100223EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225/**
Kay Sievers312c0042005-11-16 09:00:00 +0100226 * add_uevent_var - helper for creating event variables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 * @envp: Pointer to table of environment variables, as passed into
Kay Sievers312c0042005-11-16 09:00:00 +0100228 * uevent() method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 * @num_envp: Number of environment variable slots available, as
Kay Sievers312c0042005-11-16 09:00:00 +0100230 * passed into uevent() method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * @cur_index: Pointer to current index into @envp. It should be
Kay Sievers312c0042005-11-16 09:00:00 +0100232 * initialized to 0 before the first call to add_uevent_var(),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * and will be incremented on success.
234 * @buffer: Pointer to buffer for environment variables, as passed
Kay Sievers312c0042005-11-16 09:00:00 +0100235 * into uevent() method.
236 * @buffer_size: Length of @buffer, as passed into uevent() method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 * @cur_len: Pointer to current length of space used in @buffer.
238 * Should be initialized to 0 before the first call to
Kay Sievers312c0042005-11-16 09:00:00 +0100239 * add_uevent_var(), and will be incremented on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 * @format: Format for creating environment variable (of the form
241 * "XXX=%x") for snprintf().
242 *
243 * Returns 0 if environment variable was added successfully or -ENOMEM
244 * if no space was available.
245 */
Kay Sievers312c0042005-11-16 09:00:00 +0100246int add_uevent_var(char **envp, int num_envp, int *cur_index,
247 char *buffer, int buffer_size, int *cur_len,
248 const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 va_list args;
251
252 /*
253 * We check against num_envp - 1 to make sure there is at
Kay Sievers312c0042005-11-16 09:00:00 +0100254 * least one slot left after we return, since kobject_uevent()
255 * needs to set the last slot to NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 */
257 if (*cur_index >= num_envp - 1)
258 return -ENOMEM;
259
260 envp[*cur_index] = buffer + *cur_len;
261
262 va_start(args, format);
263 *cur_len += vsnprintf(envp[*cur_index],
264 max(buffer_size - *cur_len, 0),
265 format, args) + 1;
266 va_end(args);
267
268 if (*cur_len > buffer_size)
269 return -ENOMEM;
270
271 (*cur_index)++;
272 return 0;
273}
Kay Sievers312c0042005-11-16 09:00:00 +0100274EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200276#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100277static int __init kobject_uevent_init(void)
278{
279 uevent_sock = netlink_kernel_create(NETLINK_KOBJECT_UEVENT, 1, NULL,
280 THIS_MODULE);
281
282 if (!uevent_sock) {
283 printk(KERN_ERR
284 "kobject_uevent: unable to create netlink socket!\n");
285 return -ENODEV;
286 }
287
288 return 0;
289}
290
291postcore_initcall(kobject_uevent_init);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200292#endif
Kay Sievers5f123fb2005-11-11 14:43:07 +0100293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294#endif /* CONFIG_HOTPLUG */