blob: 59c15511d58ab9da74ed6d77fed198b666235c6b [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>
Denis V. Lunev2d38f9a2008-03-27 14:26:30 -070018#include <linux/string.h>
19#include <linux/kobject.h>
20#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Eric W. Biederman417daa12010-05-04 17:36:48 -070022#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/socket.h>
24#include <linux/skbuff.h>
25#include <linux/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/sock.h>
Eric W. Biederman07e98962010-05-04 17:36:44 -070027#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Cornelia Huckcd030c42007-07-20 13:58:13 +020030u64 uevent_seqnum;
Kay Sievers6a8d8ab2007-08-15 15:38:28 +020031char uevent_helper[UEVENT_HELPER_PATH_LEN] = CONFIG_UEVENT_HELPER_PATH;
Cornelia Huckcd030c42007-07-20 13:58:13 +020032static DEFINE_SPINLOCK(sequence_lock);
Eric W. Biederman07e98962010-05-04 17:36:44 -070033#ifdef CONFIG_NET
34struct uevent_sock {
35 struct list_head list;
36 struct sock *sk;
37};
38static LIST_HEAD(uevent_sock_list);
39static DEFINE_MUTEX(uevent_sock_mutex);
Cornelia Huckcd030c42007-07-20 13:58:13 +020040#endif
41
Kay Sievers5c5daf62007-08-12 20:43:55 +020042/* the strings here must match the enum in include/linux/kobject.h */
43static const char *kobject_actions[] = {
44 [KOBJ_ADD] = "add",
45 [KOBJ_REMOVE] = "remove",
46 [KOBJ_CHANGE] = "change",
47 [KOBJ_MOVE] = "move",
48 [KOBJ_ONLINE] = "online",
49 [KOBJ_OFFLINE] = "offline",
50};
51
52/**
53 * kobject_action_type - translate action string to numeric type
54 *
55 * @buf: buffer containing the action string, newline is ignored
56 * @len: length of buffer
57 * @type: pointer to the location to store the action type
58 *
59 * Returns 0 if the action string was recognized.
60 */
61int kobject_action_type(const char *buf, size_t count,
62 enum kobject_action *type)
63{
64 enum kobject_action action;
65 int ret = -EINVAL;
66
Mark Lorda9edadb2008-03-28 19:05:25 -040067 if (count && (buf[count-1] == '\n' || buf[count-1] == '\0'))
Kay Sievers5c5daf62007-08-12 20:43:55 +020068 count--;
69
70 if (!count)
71 goto out;
72
73 for (action = 0; action < ARRAY_SIZE(kobject_actions); action++) {
74 if (strncmp(kobject_actions[action], buf, count) != 0)
75 continue;
76 if (kobject_actions[action][count] != '\0')
77 continue;
78 *type = action;
79 ret = 0;
80 break;
81 }
82out:
83 return ret;
84}
85
Eric W. Biederman5f71a292010-05-04 17:36:47 -070086static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data)
87{
88 struct kobject *kobj = data;
89 const struct kobj_ns_type_operations *ops;
90
91 ops = kobj_ns_ops(kobj);
92 if (ops) {
93 const void *sock_ns, *ns;
94 ns = kobj->ktype->namespace(kobj);
95 sock_ns = ops->netlink_ns(dsk);
96 return sock_ns != ns;
97 }
98
99 return 0;
100}
101
Eric W. Biederman417daa12010-05-04 17:36:48 -0700102static int kobj_usermode_filter(struct kobject *kobj)
103{
104 const struct kobj_ns_type_operations *ops;
105
106 ops = kobj_ns_ops(kobj);
107 if (ops) {
108 const void *init_ns, *ns;
109 ns = kobj->ktype->namespace(kobj);
110 init_ns = ops->initial_ns();
111 return ns != init_ns;
112 }
113
114 return 0;
115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100118 * kobject_uevent_env - send an uevent with environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200120 * @action: action that is happening
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * @kobj: struct kobject that the action is happening to
Cornelia Huck8a824722006-11-20 17:07:51 +0100122 * @envp_ext: pointer to environmental data
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800123 *
124 * Returns 0 if kobject_uevent() is completed with success or the
125 * corresponding error when it fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800127int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Kay Sievers7eff2e72007-08-14 15:15:12 +0200128 char *envp_ext[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Kay Sievers7eff2e72007-08-14 15:15:12 +0200130 struct kobj_uevent_env *env;
131 const char *action_string = kobject_actions[action];
Kay Sievers5f123fb2005-11-11 14:43:07 +0100132 const char *devpath = NULL;
133 const char *subsystem;
134 struct kobject *top_kobj;
135 struct kset *kset;
Emese Revfy9cd43612009-12-31 14:52:51 +0100136 const struct kset_uevent_ops *uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100137 u64 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int i = 0;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800139 int retval = 0;
Eric W. Biederman07e98962010-05-04 17:36:44 -0700140#ifdef CONFIG_NET
141 struct uevent_sock *ue_sk;
142#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800144 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700145 kobject_name(kobj), kobj, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Kay Sievers5f123fb2005-11-11 14:43:07 +0100147 /* search the kset we belong to */
148 top_kobj = kobj;
Kay Sieversccd490a2007-08-12 20:43:55 +0200149 while (!top_kobj->kset && top_kobj->parent)
John Anthony Kazos Jr14193fb2007-04-04 07:39:17 -0400150 top_kobj = top_kobj->parent;
Kay Sieversccd490a2007-08-12 20:43:55 +0200151
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800152 if (!top_kobj->kset) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800153 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
154 "without kset!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700155 __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800156 return -EINVAL;
157 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100158
159 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +0100160 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100161
Ming Leif67f1292009-03-01 21:10:49 +0800162 /* skip the event, if uevent_suppress is set*/
163 if (kobj->uevent_suppress) {
164 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
165 "caused the event to drop!\n",
166 kobject_name(kobj), kobj, __func__);
167 return 0;
168 }
Kay Sievers7eff2e72007-08-14 15:15:12 +0200169 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +0100170 if (uevent_ops && uevent_ops->filter)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800171 if (!uevent_ops->filter(kset, kobj)) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800172 pr_debug("kobject: '%s' (%p): %s: filter function "
173 "caused the event to drop!\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700174 kobject_name(kobj), kobj, __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800175 return 0;
176 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100177
Kay Sievers86406242007-03-14 03:25:56 +0100178 /* originating subsystem */
179 if (uevent_ops && uevent_ops->name)
180 subsystem = uevent_ops->name(kset, kobj);
181 else
182 subsystem = kobject_name(&kset->kobj);
183 if (!subsystem) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800184 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
185 "event to drop!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700186 __func__);
Kay Sievers86406242007-03-14 03:25:56 +0100187 return 0;
188 }
189
Kay Sievers7eff2e72007-08-14 15:15:12 +0200190 /* environment buffer */
191 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
192 if (!env)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800193 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Kay Sievers5f123fb2005-11-11 14:43:07 +0100195 /* complete object path */
196 devpath = kobject_get_path(kobj, GFP_KERNEL);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800197 if (!devpath) {
198 retval = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 goto exit;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Kay Sievers5f123fb2005-11-11 14:43:07 +0100202 /* default keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200203 retval = add_uevent_var(env, "ACTION=%s", action_string);
204 if (retval)
205 goto exit;
206 retval = add_uevent_var(env, "DEVPATH=%s", devpath);
207 if (retval)
208 goto exit;
209 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
210 if (retval)
211 goto exit;
212
213 /* keys passed in from the caller */
214 if (envp_ext) {
215 for (i = 0; envp_ext[i]; i++) {
Tejun Heoc65b9142008-11-13 13:20:00 +0900216 retval = add_uevent_var(env, "%s", envp_ext[i]);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200217 if (retval)
218 goto exit;
219 }
220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Kay Sievers5f123fb2005-11-11 14:43:07 +0100222 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100223 if (uevent_ops && uevent_ops->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200224 retval = uevent_ops->uevent(kset, kobj, env);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (retval) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800226 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
227 "%d\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700228 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 goto exit;
230 }
231 }
232
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100233 /*
234 * Mark "add" and "remove" events in the object to ensure proper
235 * events to userspace during automatic cleanup. If the object did
236 * send an "add" event, "remove" will automatically generated by
237 * the core, if not already done by the caller.
238 */
239 if (action == KOBJ_ADD)
240 kobj->state_add_uevent_sent = 1;
241 else if (action == KOBJ_REMOVE)
242 kobj->state_remove_uevent_sent = 1;
243
Kay Sievers7eff2e72007-08-14 15:15:12 +0200244 /* we will send an event, so request a new sequence number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 spin_lock(&sequence_lock);
Kay Sievers312c0042005-11-16 09:00:00 +0100246 seq = ++uevent_seqnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 spin_unlock(&sequence_lock);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200248 retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)seq);
249 if (retval)
250 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200252#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100253 /* send netlink message */
Eric W. Biederman07e98962010-05-04 17:36:44 -0700254 mutex_lock(&uevent_sock_mutex);
255 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
256 struct sock *uevent_sock = ue_sk->sk;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100257 struct sk_buff *skb;
258 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Kay Sievers5f123fb2005-11-11 14:43:07 +0100260 /* allocate message with the maximum possible size */
261 len = strlen(action_string) + strlen(devpath) + 2;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200262 skb = alloc_skb(len + env->buflen, GFP_KERNEL);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100263 if (skb) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200264 char *scratch;
265
Kay Sievers5f123fb2005-11-11 14:43:07 +0100266 /* add header */
267 scratch = skb_put(skb, len);
268 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Kay Sievers5f123fb2005-11-11 14:43:07 +0100270 /* copy keys to our continuous event payload buffer */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200271 for (i = 0; i < env->envp_idx; i++) {
272 len = strlen(env->envp[i]) + 1;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100273 scratch = skb_put(skb, len);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200274 strcpy(scratch, env->envp[i]);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Kay Sievers5f123fb2005-11-11 14:43:07 +0100277 NETLINK_CB(skb).dst_group = 1;
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700278 retval = netlink_broadcast_filtered(uevent_sock, skb,
279 0, 1, GFP_KERNEL,
280 kobj_bcast_filter,
281 kobj);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800282 /* ENOBUFS should be handled in userspace */
283 if (retval == -ENOBUFS)
284 retval = 0;
Ming Leie0d7bf52008-11-16 18:23:27 +0800285 } else
286 retval = -ENOMEM;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100287 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700288 mutex_unlock(&uevent_sock_mutex);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200289#endif
Kay Sievers5f123fb2005-11-11 14:43:07 +0100290
291 /* call uevent_helper, usually only enabled during early boot */
Eric W. Biederman417daa12010-05-04 17:36:48 -0700292 if (uevent_helper[0] && !kobj_usermode_filter(kobj)) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100293 char *argv [3];
294
Kay Sievers312c0042005-11-16 09:00:00 +0100295 argv [0] = uevent_helper;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100296 argv [1] = (char *)subsystem;
297 argv [2] = NULL;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200298 retval = add_uevent_var(env, "HOME=/");
299 if (retval)
300 goto exit;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800301 retval = add_uevent_var(env,
302 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200303 if (retval)
304 goto exit;
305
Wang Chen0ad1d6f2008-06-24 16:59:02 +0800306 retval = call_usermodehelper(argv[0], argv,
Hugh Dickins05f54c12009-04-16 21:55:29 +0100307 env->envp, UMH_WAIT_EXEC);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100311 kfree(devpath);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200312 kfree(env);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800313 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
Cornelia Huck8a824722006-11-20 17:07:51 +0100315EXPORT_SYMBOL_GPL(kobject_uevent_env);
316
317/**
318 * kobject_uevent - notify userspace by ending an uevent
319 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200320 * @action: action that is happening
Cornelia Huck8a824722006-11-20 17:07:51 +0100321 * @kobj: struct kobject that the action is happening to
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800322 *
323 * Returns 0 if kobject_uevent() is completed with success or the
324 * corresponding error when it fails.
Cornelia Huck8a824722006-11-20 17:07:51 +0100325 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800326int kobject_uevent(struct kobject *kobj, enum kobject_action action)
Cornelia Huck8a824722006-11-20 17:07:51 +0100327{
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800328 return kobject_uevent_env(kobj, action, NULL);
Cornelia Huck8a824722006-11-20 17:07:51 +0100329}
Kay Sievers312c0042005-11-16 09:00:00 +0100330EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332/**
Kay Sievers7eff2e72007-08-14 15:15:12 +0200333 * add_uevent_var - add key value string to the environment buffer
334 * @env: environment buffer structure
335 * @format: printf format for the key=value pair
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 *
337 * Returns 0 if environment variable was added successfully or -ENOMEM
338 * if no space was available.
339 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200340int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 va_list args;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200343 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Kay Sievers7eff2e72007-08-14 15:15:12 +0200345 if (env->envp_idx >= ARRAY_SIZE(env->envp)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700346 WARN(1, KERN_ERR "add_uevent_var: too many keys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 va_start(args, format);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200351 len = vsnprintf(&env->buf[env->buflen],
352 sizeof(env->buf) - env->buflen,
353 format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 va_end(args);
355
Kay Sievers7eff2e72007-08-14 15:15:12 +0200356 if (len >= (sizeof(env->buf) - env->buflen)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700357 WARN(1, KERN_ERR "add_uevent_var: buffer size too small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Kay Sievers7eff2e72007-08-14 15:15:12 +0200361 env->envp[env->envp_idx++] = &env->buf[env->buflen];
362 env->buflen += len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return 0;
364}
Kay Sievers312c0042005-11-16 09:00:00 +0100365EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200367#if defined(CONFIG_NET)
Eric W. Biederman07e98962010-05-04 17:36:44 -0700368static int uevent_net_init(struct net *net)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100369{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700370 struct uevent_sock *ue_sk;
371
372 ue_sk = kzalloc(sizeof(*ue_sk), GFP_KERNEL);
373 if (!ue_sk)
374 return -ENOMEM;
375
376 ue_sk->sk = netlink_kernel_create(net, NETLINK_KOBJECT_UEVENT,
377 1, NULL, NULL, THIS_MODULE);
378 if (!ue_sk->sk) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100379 printk(KERN_ERR
380 "kobject_uevent: unable to create netlink socket!\n");
381 return -ENODEV;
382 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700383 mutex_lock(&uevent_sock_mutex);
384 list_add_tail(&ue_sk->list, &uevent_sock_list);
385 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100386 return 0;
387}
388
Eric W. Biederman07e98962010-05-04 17:36:44 -0700389static void uevent_net_exit(struct net *net)
390{
391 struct uevent_sock *ue_sk;
392
393 mutex_lock(&uevent_sock_mutex);
394 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
395 if (sock_net(ue_sk->sk) == net)
396 goto found;
397 }
398 mutex_unlock(&uevent_sock_mutex);
399 return;
400
401found:
402 list_del(&ue_sk->list);
403 mutex_unlock(&uevent_sock_mutex);
404
405 netlink_kernel_release(ue_sk->sk);
406 kfree(ue_sk);
407}
408
409static struct pernet_operations uevent_net_ops = {
410 .init = uevent_net_init,
411 .exit = uevent_net_exit,
412};
413
414static int __init kobject_uevent_init(void)
415{
416 netlink_set_nonroot(NETLINK_KOBJECT_UEVENT, NL_NONROOT_RECV);
417 return register_pernet_subsys(&uevent_net_ops);
418}
419
420
Kay Sievers5f123fb2005-11-11 14:43:07 +0100421postcore_initcall(kobject_uevent_init);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200422#endif