blob: 086a0c6e888e99aef43aeab96c40ddb56b6146a1 [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)
Kay Sievers0296b222005-11-11 05:33:52 +010029static DEFINE_SPINLOCK(sequence_lock);
Kay Sievers5f123fb2005-11-11 14:43:07 +010030static struct sock *uevent_sock;
Kay Sievers0296b222005-11-11 05:33:52 +010031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static char *action_to_string(enum kobject_action action)
33{
34 switch (action) {
35 case KOBJ_ADD:
36 return "add";
37 case KOBJ_REMOVE:
38 return "remove";
39 case KOBJ_CHANGE:
40 return "change";
Greg Kroah-Hartmanfa675762006-02-22 09:39:02 -080041 case KOBJ_MOUNT:
42 return "mount";
43 case KOBJ_UMOUNT:
44 return "umount";
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 case KOBJ_OFFLINE:
46 return "offline";
47 case KOBJ_ONLINE:
48 return "online";
49 default:
50 return NULL;
51 }
52}
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/**
Kay Sievers312c0042005-11-16 09:00:00 +010055 * kobject_uevent - notify userspace by ending an uevent
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 *
Kay Sievers312c0042005-11-16 09:00:00 +010057 * @action: action that is happening (usually KOBJ_ADD and KOBJ_REMOVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 * @kobj: struct kobject that the action is happening to
59 */
Kay Sievers312c0042005-11-16 09:00:00 +010060void kobject_uevent(struct kobject *kobj, enum kobject_action action)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Kay Sievers5f123fb2005-11-11 14:43:07 +010062 char **envp;
63 char *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 char *scratch;
Kay Sievers5f123fb2005-11-11 14:43:07 +010065 const char *action_string;
66 const char *devpath = NULL;
67 const char *subsystem;
68 struct kobject *top_kobj;
69 struct kset *kset;
Kay Sievers312c0042005-11-16 09:00:00 +010070 struct kset_uevent_ops *uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +010071 u64 seq;
72 char *seq_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 int i = 0;
74 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Kay Sievers5f123fb2005-11-11 14:43:07 +010076 pr_debug("%s\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 action_string = action_to_string(action);
79 if (!action_string)
80 return;
81
Kay Sievers5f123fb2005-11-11 14:43:07 +010082 /* search the kset we belong to */
83 top_kobj = kobj;
84 if (!top_kobj->kset && top_kobj->parent) {
85 do {
86 top_kobj = top_kobj->parent;
87 } while (!top_kobj->kset && top_kobj->parent);
88 }
89 if (!top_kobj->kset)
90 return;
91
92 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +010093 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +010094
95 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +010096 if (uevent_ops && uevent_ops->filter)
97 if (!uevent_ops->filter(kset, kobj))
Kay Sievers5f123fb2005-11-11 14:43:07 +010098 return;
99
100 /* environment index */
101 envp = kzalloc(NUM_ENVP * sizeof (char *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!envp)
103 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Kay Sievers5f123fb2005-11-11 14:43:07 +0100105 /* environment values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 buffer = kmalloc(BUFFER_SIZE, GFP_KERNEL);
107 if (!buffer)
108 goto exit;
109
Kay Sievers5f123fb2005-11-11 14:43:07 +0100110 /* complete object path */
111 devpath = kobject_get_path(kobj, GFP_KERNEL);
112 if (!devpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 goto exit;
114
Kay Sievers5f123fb2005-11-11 14:43:07 +0100115 /* originating subsystem */
Kay Sievers312c0042005-11-16 09:00:00 +0100116 if (uevent_ops && uevent_ops->name)
117 subsystem = uevent_ops->name(kset, kobj);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100118 else
119 subsystem = kobject_name(&kset->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Kay Sievers5f123fb2005-11-11 14:43:07 +0100121 /* event environemnt for helper process only */
122 envp[i++] = "HOME=/";
123 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Kay Sievers5f123fb2005-11-11 14:43:07 +0100125 /* default keys */
126 scratch = buffer;
127 envp [i++] = scratch;
128 scratch += sprintf(scratch, "ACTION=%s", action_string) + 1;
129 envp [i++] = scratch;
130 scratch += sprintf (scratch, "DEVPATH=%s", devpath) + 1;
131 envp [i++] = scratch;
132 scratch += sprintf(scratch, "SUBSYSTEM=%s", subsystem) + 1;
133
134 /* just reserve the space, overwrite it after kset call has returned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 envp[i++] = seq_buff = scratch;
136 scratch += strlen("SEQNUM=18446744073709551616") + 1;
137
Kay Sievers5f123fb2005-11-11 14:43:07 +0100138 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100139 if (uevent_ops && uevent_ops->uevent) {
140 retval = uevent_ops->uevent(kset, kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 &envp[i], NUM_ENVP - i, scratch,
142 BUFFER_SIZE - (scratch - buffer));
143 if (retval) {
Kay Sievers312c0042005-11-16 09:00:00 +0100144 pr_debug ("%s - uevent() returned %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 __FUNCTION__, retval);
146 goto exit;
147 }
148 }
149
Kay Sievers5f123fb2005-11-11 14:43:07 +0100150 /* we will send an event, request a new sequence number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 spin_lock(&sequence_lock);
Kay Sievers312c0042005-11-16 09:00:00 +0100152 seq = ++uevent_seqnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 spin_unlock(&sequence_lock);
154 sprintf(seq_buff, "SEQNUM=%llu", (unsigned long long)seq);
155
Kay Sievers5f123fb2005-11-11 14:43:07 +0100156 /* send netlink message */
157 if (uevent_sock) {
158 struct sk_buff *skb;
159 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Kay Sievers5f123fb2005-11-11 14:43:07 +0100161 /* allocate message with the maximum possible size */
162 len = strlen(action_string) + strlen(devpath) + 2;
163 skb = alloc_skb(len + BUFFER_SIZE, GFP_KERNEL);
164 if (skb) {
165 /* add header */
166 scratch = skb_put(skb, len);
167 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Kay Sievers5f123fb2005-11-11 14:43:07 +0100169 /* copy keys to our continuous event payload buffer */
170 for (i = 2; envp[i]; i++) {
171 len = strlen(envp[i]) + 1;
172 scratch = skb_put(skb, len);
173 strcpy(scratch, envp[i]);
174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Kay Sievers5f123fb2005-11-11 14:43:07 +0100176 NETLINK_CB(skb).dst_group = 1;
177 netlink_broadcast(uevent_sock, skb, 0, 1, GFP_KERNEL);
178 }
179 }
180
181 /* call uevent_helper, usually only enabled during early boot */
Kay Sievers312c0042005-11-16 09:00:00 +0100182 if (uevent_helper[0]) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100183 char *argv [3];
184
Kay Sievers312c0042005-11-16 09:00:00 +0100185 argv [0] = uevent_helper;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100186 argv [1] = (char *)subsystem;
187 argv [2] = NULL;
188 call_usermodehelper (argv[0], argv, envp, 0);
189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100192 kfree(devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 kfree(buffer);
194 kfree(envp);
195 return;
196}
Kay Sievers312c0042005-11-16 09:00:00 +0100197EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199/**
Kay Sievers312c0042005-11-16 09:00:00 +0100200 * add_uevent_var - helper for creating event variables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 * @envp: Pointer to table of environment variables, as passed into
Kay Sievers312c0042005-11-16 09:00:00 +0100202 * uevent() method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * @num_envp: Number of environment variable slots available, as
Kay Sievers312c0042005-11-16 09:00:00 +0100204 * passed into uevent() method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * @cur_index: Pointer to current index into @envp. It should be
Kay Sievers312c0042005-11-16 09:00:00 +0100206 * initialized to 0 before the first call to add_uevent_var(),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * and will be incremented on success.
208 * @buffer: Pointer to buffer for environment variables, as passed
Kay Sievers312c0042005-11-16 09:00:00 +0100209 * into uevent() method.
210 * @buffer_size: Length of @buffer, as passed into uevent() method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * @cur_len: Pointer to current length of space used in @buffer.
212 * Should be initialized to 0 before the first call to
Kay Sievers312c0042005-11-16 09:00:00 +0100213 * add_uevent_var(), and will be incremented on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * @format: Format for creating environment variable (of the form
215 * "XXX=%x") for snprintf().
216 *
217 * Returns 0 if environment variable was added successfully or -ENOMEM
218 * if no space was available.
219 */
Kay Sievers312c0042005-11-16 09:00:00 +0100220int add_uevent_var(char **envp, int num_envp, int *cur_index,
221 char *buffer, int buffer_size, int *cur_len,
222 const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 va_list args;
225
226 /*
227 * We check against num_envp - 1 to make sure there is at
Kay Sievers312c0042005-11-16 09:00:00 +0100228 * least one slot left after we return, since kobject_uevent()
229 * needs to set the last slot to NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
231 if (*cur_index >= num_envp - 1)
232 return -ENOMEM;
233
234 envp[*cur_index] = buffer + *cur_len;
235
236 va_start(args, format);
237 *cur_len += vsnprintf(envp[*cur_index],
238 max(buffer_size - *cur_len, 0),
239 format, args) + 1;
240 va_end(args);
241
242 if (*cur_len > buffer_size)
243 return -ENOMEM;
244
245 (*cur_index)++;
246 return 0;
247}
Kay Sievers312c0042005-11-16 09:00:00 +0100248EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Kay Sievers5f123fb2005-11-11 14:43:07 +0100250static int __init kobject_uevent_init(void)
251{
252 uevent_sock = netlink_kernel_create(NETLINK_KOBJECT_UEVENT, 1, NULL,
253 THIS_MODULE);
254
255 if (!uevent_sock) {
256 printk(KERN_ERR
257 "kobject_uevent: unable to create netlink socket!\n");
258 return -ENODEV;
259 }
260
261 return 0;
262}
263
264postcore_initcall(kobject_uevent_init);
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266#endif /* CONFIG_HOTPLUG */