blob: 239c8e83fc2865bcc0a48d24de8a3098bf5cf8ac [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>
Denis V. Lunev2d38f9a2008-03-27 14:26:30 -070022
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100103 * kobject_uevent_env - send an uevent with environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200105 * @action: action that is happening
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * @kobj: struct kobject that the action is happening to
Cornelia Huck8a824722006-11-20 17:07:51 +0100107 * @envp_ext: pointer to environmental data
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800108 *
109 * Returns 0 if kobject_uevent() is completed with success or the
110 * corresponding error when it fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800112int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Kay Sievers7eff2e72007-08-14 15:15:12 +0200113 char *envp_ext[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Kay Sievers7eff2e72007-08-14 15:15:12 +0200115 struct kobj_uevent_env *env;
116 const char *action_string = kobject_actions[action];
Kay Sievers5f123fb2005-11-11 14:43:07 +0100117 const char *devpath = NULL;
118 const char *subsystem;
119 struct kobject *top_kobj;
120 struct kset *kset;
Emese Revfy9cd43612009-12-31 14:52:51 +0100121 const struct kset_uevent_ops *uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100122 u64 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 int i = 0;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800124 int retval = 0;
Eric W. Biederman07e98962010-05-04 17:36:44 -0700125#ifdef CONFIG_NET
126 struct uevent_sock *ue_sk;
127#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800129 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700130 kobject_name(kobj), kobj, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Kay Sievers5f123fb2005-11-11 14:43:07 +0100132 /* search the kset we belong to */
133 top_kobj = kobj;
Kay Sieversccd490a2007-08-12 20:43:55 +0200134 while (!top_kobj->kset && top_kobj->parent)
John Anthony Kazos Jr14193fb2007-04-04 07:39:17 -0400135 top_kobj = top_kobj->parent;
Kay Sieversccd490a2007-08-12 20:43:55 +0200136
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800137 if (!top_kobj->kset) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800138 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
139 "without kset!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700140 __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800141 return -EINVAL;
142 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100143
144 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +0100145 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100146
Ming Leif67f1292009-03-01 21:10:49 +0800147 /* skip the event, if uevent_suppress is set*/
148 if (kobj->uevent_suppress) {
149 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
150 "caused the event to drop!\n",
151 kobject_name(kobj), kobj, __func__);
152 return 0;
153 }
Kay Sievers7eff2e72007-08-14 15:15:12 +0200154 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +0100155 if (uevent_ops && uevent_ops->filter)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800156 if (!uevent_ops->filter(kset, kobj)) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800157 pr_debug("kobject: '%s' (%p): %s: filter function "
158 "caused the event to drop!\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700159 kobject_name(kobj), kobj, __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800160 return 0;
161 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100162
Kay Sievers86406242007-03-14 03:25:56 +0100163 /* originating subsystem */
164 if (uevent_ops && uevent_ops->name)
165 subsystem = uevent_ops->name(kset, kobj);
166 else
167 subsystem = kobject_name(&kset->kobj);
168 if (!subsystem) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800169 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
170 "event to drop!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700171 __func__);
Kay Sievers86406242007-03-14 03:25:56 +0100172 return 0;
173 }
174
Kay Sievers7eff2e72007-08-14 15:15:12 +0200175 /* environment buffer */
176 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
177 if (!env)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800178 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Kay Sievers5f123fb2005-11-11 14:43:07 +0100180 /* complete object path */
181 devpath = kobject_get_path(kobj, GFP_KERNEL);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800182 if (!devpath) {
183 retval = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 goto exit;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Kay Sievers5f123fb2005-11-11 14:43:07 +0100187 /* default keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200188 retval = add_uevent_var(env, "ACTION=%s", action_string);
189 if (retval)
190 goto exit;
191 retval = add_uevent_var(env, "DEVPATH=%s", devpath);
192 if (retval)
193 goto exit;
194 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
195 if (retval)
196 goto exit;
197
198 /* keys passed in from the caller */
199 if (envp_ext) {
200 for (i = 0; envp_ext[i]; i++) {
Tejun Heoc65b9142008-11-13 13:20:00 +0900201 retval = add_uevent_var(env, "%s", envp_ext[i]);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200202 if (retval)
203 goto exit;
204 }
205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Kay Sievers5f123fb2005-11-11 14:43:07 +0100207 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100208 if (uevent_ops && uevent_ops->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200209 retval = uevent_ops->uevent(kset, kobj, env);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (retval) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800211 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
212 "%d\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700213 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 goto exit;
215 }
216 }
217
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100218 /*
219 * Mark "add" and "remove" events in the object to ensure proper
220 * events to userspace during automatic cleanup. If the object did
221 * send an "add" event, "remove" will automatically generated by
222 * the core, if not already done by the caller.
223 */
224 if (action == KOBJ_ADD)
225 kobj->state_add_uevent_sent = 1;
226 else if (action == KOBJ_REMOVE)
227 kobj->state_remove_uevent_sent = 1;
228
Kay Sievers7eff2e72007-08-14 15:15:12 +0200229 /* we will send an event, so request a new sequence number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 spin_lock(&sequence_lock);
Kay Sievers312c0042005-11-16 09:00:00 +0100231 seq = ++uevent_seqnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 spin_unlock(&sequence_lock);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200233 retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)seq);
234 if (retval)
235 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200237#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100238 /* send netlink message */
Eric W. Biederman07e98962010-05-04 17:36:44 -0700239 mutex_lock(&uevent_sock_mutex);
240 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
241 struct sock *uevent_sock = ue_sk->sk;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100242 struct sk_buff *skb;
243 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Kay Sievers5f123fb2005-11-11 14:43:07 +0100245 /* allocate message with the maximum possible size */
246 len = strlen(action_string) + strlen(devpath) + 2;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200247 skb = alloc_skb(len + env->buflen, GFP_KERNEL);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100248 if (skb) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200249 char *scratch;
250
Kay Sievers5f123fb2005-11-11 14:43:07 +0100251 /* add header */
252 scratch = skb_put(skb, len);
253 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Kay Sievers5f123fb2005-11-11 14:43:07 +0100255 /* copy keys to our continuous event payload buffer */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200256 for (i = 0; i < env->envp_idx; i++) {
257 len = strlen(env->envp[i]) + 1;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100258 scratch = skb_put(skb, len);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200259 strcpy(scratch, env->envp[i]);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Kay Sievers5f123fb2005-11-11 14:43:07 +0100262 NETLINK_CB(skb).dst_group = 1;
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700263 retval = netlink_broadcast_filtered(uevent_sock, skb,
264 0, 1, GFP_KERNEL,
265 kobj_bcast_filter,
266 kobj);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800267 /* ENOBUFS should be handled in userspace */
268 if (retval == -ENOBUFS)
269 retval = 0;
Ming Leie0d7bf52008-11-16 18:23:27 +0800270 } else
271 retval = -ENOMEM;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100272 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700273 mutex_unlock(&uevent_sock_mutex);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200274#endif
Kay Sievers5f123fb2005-11-11 14:43:07 +0100275
276 /* call uevent_helper, usually only enabled during early boot */
Kay Sievers312c0042005-11-16 09:00:00 +0100277 if (uevent_helper[0]) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100278 char *argv [3];
279
Kay Sievers312c0042005-11-16 09:00:00 +0100280 argv [0] = uevent_helper;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100281 argv [1] = (char *)subsystem;
282 argv [2] = NULL;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200283 retval = add_uevent_var(env, "HOME=/");
284 if (retval)
285 goto exit;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800286 retval = add_uevent_var(env,
287 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200288 if (retval)
289 goto exit;
290
Wang Chen0ad1d6f2008-06-24 16:59:02 +0800291 retval = call_usermodehelper(argv[0], argv,
Hugh Dickins05f54c12009-04-16 21:55:29 +0100292 env->envp, UMH_WAIT_EXEC);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100296 kfree(devpath);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200297 kfree(env);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800298 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
Cornelia Huck8a824722006-11-20 17:07:51 +0100300EXPORT_SYMBOL_GPL(kobject_uevent_env);
301
302/**
303 * kobject_uevent - notify userspace by ending an uevent
304 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200305 * @action: action that is happening
Cornelia Huck8a824722006-11-20 17:07:51 +0100306 * @kobj: struct kobject that the action is happening to
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800307 *
308 * Returns 0 if kobject_uevent() is completed with success or the
309 * corresponding error when it fails.
Cornelia Huck8a824722006-11-20 17:07:51 +0100310 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800311int kobject_uevent(struct kobject *kobj, enum kobject_action action)
Cornelia Huck8a824722006-11-20 17:07:51 +0100312{
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800313 return kobject_uevent_env(kobj, action, NULL);
Cornelia Huck8a824722006-11-20 17:07:51 +0100314}
Kay Sievers312c0042005-11-16 09:00:00 +0100315EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317/**
Kay Sievers7eff2e72007-08-14 15:15:12 +0200318 * add_uevent_var - add key value string to the environment buffer
319 * @env: environment buffer structure
320 * @format: printf format for the key=value pair
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 *
322 * Returns 0 if environment variable was added successfully or -ENOMEM
323 * if no space was available.
324 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200325int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 va_list args;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200328 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Kay Sievers7eff2e72007-08-14 15:15:12 +0200330 if (env->envp_idx >= ARRAY_SIZE(env->envp)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700331 WARN(1, KERN_ERR "add_uevent_var: too many keys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 va_start(args, format);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200336 len = vsnprintf(&env->buf[env->buflen],
337 sizeof(env->buf) - env->buflen,
338 format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 va_end(args);
340
Kay Sievers7eff2e72007-08-14 15:15:12 +0200341 if (len >= (sizeof(env->buf) - env->buflen)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700342 WARN(1, KERN_ERR "add_uevent_var: buffer size too small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Kay Sievers7eff2e72007-08-14 15:15:12 +0200346 env->envp[env->envp_idx++] = &env->buf[env->buflen];
347 env->buflen += len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return 0;
349}
Kay Sievers312c0042005-11-16 09:00:00 +0100350EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200352#if defined(CONFIG_NET)
Eric W. Biederman07e98962010-05-04 17:36:44 -0700353static int uevent_net_init(struct net *net)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100354{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700355 struct uevent_sock *ue_sk;
356
357 ue_sk = kzalloc(sizeof(*ue_sk), GFP_KERNEL);
358 if (!ue_sk)
359 return -ENOMEM;
360
361 ue_sk->sk = netlink_kernel_create(net, NETLINK_KOBJECT_UEVENT,
362 1, NULL, NULL, THIS_MODULE);
363 if (!ue_sk->sk) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100364 printk(KERN_ERR
365 "kobject_uevent: unable to create netlink socket!\n");
366 return -ENODEV;
367 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700368 mutex_lock(&uevent_sock_mutex);
369 list_add_tail(&ue_sk->list, &uevent_sock_list);
370 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100371 return 0;
372}
373
Eric W. Biederman07e98962010-05-04 17:36:44 -0700374static void uevent_net_exit(struct net *net)
375{
376 struct uevent_sock *ue_sk;
377
378 mutex_lock(&uevent_sock_mutex);
379 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
380 if (sock_net(ue_sk->sk) == net)
381 goto found;
382 }
383 mutex_unlock(&uevent_sock_mutex);
384 return;
385
386found:
387 list_del(&ue_sk->list);
388 mutex_unlock(&uevent_sock_mutex);
389
390 netlink_kernel_release(ue_sk->sk);
391 kfree(ue_sk);
392}
393
394static struct pernet_operations uevent_net_ops = {
395 .init = uevent_net_init,
396 .exit = uevent_net_exit,
397};
398
399static int __init kobject_uevent_init(void)
400{
401 netlink_set_nonroot(NETLINK_KOBJECT_UEVENT, NL_NONROOT_RECV);
402 return register_pernet_subsys(&uevent_net_ops);
403}
404
405
Kay Sievers5f123fb2005-11-11 14:43:07 +0100406postcore_initcall(kobject_uevent_init);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200407#endif