blob: 75cbdb52bf5c26b9bd6ced48aa217ff7475e4067 [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;
Eric W. Biederman07e98962010-05-04 17:36:44 -070032#ifdef CONFIG_NET
33struct uevent_sock {
34 struct list_head list;
35 struct sock *sk;
36};
37static LIST_HEAD(uevent_sock_list);
Cornelia Huckcd030c42007-07-20 13:58:13 +020038#endif
39
Andrew Vagin7b60a182012-03-07 14:49:56 +040040/* This lock protects uevent_seqnum and uevent_sock_list */
41static DEFINE_MUTEX(uevent_sock_mutex);
42
Kay Sievers5c5daf62007-08-12 20:43:55 +020043/* the strings here must match the enum in include/linux/kobject.h */
44static const char *kobject_actions[] = {
45 [KOBJ_ADD] = "add",
46 [KOBJ_REMOVE] = "remove",
47 [KOBJ_CHANGE] = "change",
48 [KOBJ_MOVE] = "move",
49 [KOBJ_ONLINE] = "online",
50 [KOBJ_OFFLINE] = "offline",
51};
52
53/**
54 * kobject_action_type - translate action string to numeric type
55 *
56 * @buf: buffer containing the action string, newline is ignored
57 * @len: length of buffer
58 * @type: pointer to the location to store the action type
59 *
60 * Returns 0 if the action string was recognized.
61 */
62int kobject_action_type(const char *buf, size_t count,
63 enum kobject_action *type)
64{
65 enum kobject_action action;
66 int ret = -EINVAL;
67
Mark Lorda9edadb2008-03-28 19:05:25 -040068 if (count && (buf[count-1] == '\n' || buf[count-1] == '\0'))
Kay Sievers5c5daf62007-08-12 20:43:55 +020069 count--;
70
71 if (!count)
72 goto out;
73
74 for (action = 0; action < ARRAY_SIZE(kobject_actions); action++) {
75 if (strncmp(kobject_actions[action], buf, count) != 0)
76 continue;
77 if (kobject_actions[action][count] != '\0')
78 continue;
79 *type = action;
80 ret = 0;
81 break;
82 }
83out:
84 return ret;
85}
86
Andrew Mortonc8421282010-05-21 15:05:21 -070087#ifdef CONFIG_NET
Eric W. Biederman5f71a292010-05-04 17:36:47 -070088static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data)
89{
90 struct kobject *kobj = data;
91 const struct kobj_ns_type_operations *ops;
92
93 ops = kobj_ns_ops(kobj);
94 if (ops) {
95 const void *sock_ns, *ns;
96 ns = kobj->ktype->namespace(kobj);
97 sock_ns = ops->netlink_ns(dsk);
98 return sock_ns != ns;
99 }
100
101 return 0;
102}
Andrew Mortonc8421282010-05-21 15:05:21 -0700103#endif
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700104
Eric W. Biederman417daa12010-05-04 17:36:48 -0700105static int kobj_usermode_filter(struct kobject *kobj)
106{
107 const struct kobj_ns_type_operations *ops;
108
109 ops = kobj_ns_ops(kobj);
110 if (ops) {
111 const void *init_ns, *ns;
112 ns = kobj->ktype->namespace(kobj);
113 init_ns = ops->initial_ns();
114 return ns != init_ns;
115 }
116
117 return 0;
118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100121 * kobject_uevent_env - send an uevent with environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200123 * @action: action that is happening
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * @kobj: struct kobject that the action is happening to
Cornelia Huck8a824722006-11-20 17:07:51 +0100125 * @envp_ext: pointer to environmental data
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800126 *
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800127 * Returns 0 if kobject_uevent_env() is completed with success or the
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800128 * corresponding error when it fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800130int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Kay Sievers7eff2e72007-08-14 15:15:12 +0200131 char *envp_ext[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Kay Sievers7eff2e72007-08-14 15:15:12 +0200133 struct kobj_uevent_env *env;
134 const char *action_string = kobject_actions[action];
Kay Sievers5f123fb2005-11-11 14:43:07 +0100135 const char *devpath = NULL;
136 const char *subsystem;
137 struct kobject *top_kobj;
138 struct kset *kset;
Emese Revfy9cd43612009-12-31 14:52:51 +0100139 const struct kset_uevent_ops *uevent_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int i = 0;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800141 int retval = 0;
Eric W. Biederman07e98962010-05-04 17:36:44 -0700142#ifdef CONFIG_NET
143 struct uevent_sock *ue_sk;
144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800146 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700147 kobject_name(kobj), kobj, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Kay Sievers5f123fb2005-11-11 14:43:07 +0100149 /* search the kset we belong to */
150 top_kobj = kobj;
Kay Sieversccd490a2007-08-12 20:43:55 +0200151 while (!top_kobj->kset && top_kobj->parent)
John Anthony Kazos Jr14193fb2007-04-04 07:39:17 -0400152 top_kobj = top_kobj->parent;
Kay Sieversccd490a2007-08-12 20:43:55 +0200153
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800154 if (!top_kobj->kset) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800155 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
156 "without kset!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700157 __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800158 return -EINVAL;
159 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100160
161 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +0100162 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100163
Ming Leif67f1292009-03-01 21:10:49 +0800164 /* skip the event, if uevent_suppress is set*/
165 if (kobj->uevent_suppress) {
166 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
167 "caused the event to drop!\n",
168 kobject_name(kobj), kobj, __func__);
169 return 0;
170 }
Kay Sievers7eff2e72007-08-14 15:15:12 +0200171 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +0100172 if (uevent_ops && uevent_ops->filter)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800173 if (!uevent_ops->filter(kset, kobj)) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800174 pr_debug("kobject: '%s' (%p): %s: filter function "
175 "caused the event to drop!\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700176 kobject_name(kobj), kobj, __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800177 return 0;
178 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100179
Kay Sievers86406242007-03-14 03:25:56 +0100180 /* originating subsystem */
181 if (uevent_ops && uevent_ops->name)
182 subsystem = uevent_ops->name(kset, kobj);
183 else
184 subsystem = kobject_name(&kset->kobj);
185 if (!subsystem) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800186 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
187 "event to drop!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700188 __func__);
Kay Sievers86406242007-03-14 03:25:56 +0100189 return 0;
190 }
191
Kay Sievers7eff2e72007-08-14 15:15:12 +0200192 /* environment buffer */
193 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
194 if (!env)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800195 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Kay Sievers5f123fb2005-11-11 14:43:07 +0100197 /* complete object path */
198 devpath = kobject_get_path(kobj, GFP_KERNEL);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800199 if (!devpath) {
200 retval = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 goto exit;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Kay Sievers5f123fb2005-11-11 14:43:07 +0100204 /* default keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200205 retval = add_uevent_var(env, "ACTION=%s", action_string);
206 if (retval)
207 goto exit;
208 retval = add_uevent_var(env, "DEVPATH=%s", devpath);
209 if (retval)
210 goto exit;
211 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
212 if (retval)
213 goto exit;
214
215 /* keys passed in from the caller */
216 if (envp_ext) {
217 for (i = 0; envp_ext[i]; i++) {
Tejun Heoc65b9142008-11-13 13:20:00 +0900218 retval = add_uevent_var(env, "%s", envp_ext[i]);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200219 if (retval)
220 goto exit;
221 }
222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Kay Sievers5f123fb2005-11-11 14:43:07 +0100224 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100225 if (uevent_ops && uevent_ops->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200226 retval = uevent_ops->uevent(kset, kobj, env);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (retval) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800228 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
229 "%d\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700230 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 goto exit;
232 }
233 }
234
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100235 /*
236 * Mark "add" and "remove" events in the object to ensure proper
237 * events to userspace during automatic cleanup. If the object did
238 * send an "add" event, "remove" will automatically generated by
239 * the core, if not already done by the caller.
240 */
241 if (action == KOBJ_ADD)
242 kobj->state_add_uevent_sent = 1;
243 else if (action == KOBJ_REMOVE)
244 kobj->state_remove_uevent_sent = 1;
245
Andrew Vagin7b60a182012-03-07 14:49:56 +0400246 mutex_lock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200247 /* we will send an event, so request a new sequence number */
Andrew Vagin7b60a182012-03-07 14:49:56 +0400248 retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)++uevent_seqnum);
249 if (retval) {
250 mutex_unlock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200251 goto exit;
Andrew Vagin7b60a182012-03-07 14:49:56 +0400252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200254#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100255 /* send netlink message */
Eric W. Biederman07e98962010-05-04 17:36:44 -0700256 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
257 struct sock *uevent_sock = ue_sk->sk;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100258 struct sk_buff *skb;
259 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Kay Sievers74099b12011-12-05 19:12:47 +0100261 if (!netlink_has_listeners(uevent_sock, 1))
262 continue;
263
Kay Sievers5f123fb2005-11-11 14:43:07 +0100264 /* allocate message with the maximum possible size */
265 len = strlen(action_string) + strlen(devpath) + 2;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200266 skb = alloc_skb(len + env->buflen, GFP_KERNEL);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100267 if (skb) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200268 char *scratch;
269
Kay Sievers5f123fb2005-11-11 14:43:07 +0100270 /* add header */
271 scratch = skb_put(skb, len);
272 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Kay Sievers5f123fb2005-11-11 14:43:07 +0100274 /* copy keys to our continuous event payload buffer */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200275 for (i = 0; i < env->envp_idx; i++) {
276 len = strlen(env->envp[i]) + 1;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100277 scratch = skb_put(skb, len);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200278 strcpy(scratch, env->envp[i]);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Kay Sievers5f123fb2005-11-11 14:43:07 +0100281 NETLINK_CB(skb).dst_group = 1;
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700282 retval = netlink_broadcast_filtered(uevent_sock, skb,
283 0, 1, GFP_KERNEL,
284 kobj_bcast_filter,
285 kobj);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800286 /* ENOBUFS should be handled in userspace */
Milan Brozebf41272011-08-22 15:51:34 +0200287 if (retval == -ENOBUFS || retval == -ESRCH)
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800288 retval = 0;
Ming Leie0d7bf52008-11-16 18:23:27 +0800289 } else
290 retval = -ENOMEM;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100291 }
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200292#endif
Andrew Vagin7b60a182012-03-07 14:49:56 +0400293 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100294
295 /* call uevent_helper, usually only enabled during early boot */
Eric W. Biederman417daa12010-05-04 17:36:48 -0700296 if (uevent_helper[0] && !kobj_usermode_filter(kobj)) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100297 char *argv [3];
298
Kay Sievers312c0042005-11-16 09:00:00 +0100299 argv [0] = uevent_helper;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100300 argv [1] = (char *)subsystem;
301 argv [2] = NULL;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200302 retval = add_uevent_var(env, "HOME=/");
303 if (retval)
304 goto exit;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800305 retval = add_uevent_var(env,
306 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200307 if (retval)
308 goto exit;
309
Wang Chen0ad1d6f2008-06-24 16:59:02 +0800310 retval = call_usermodehelper(argv[0], argv,
Hugh Dickins05f54c12009-04-16 21:55:29 +0100311 env->envp, UMH_WAIT_EXEC);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100315 kfree(devpath);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200316 kfree(env);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800317 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
Cornelia Huck8a824722006-11-20 17:07:51 +0100319EXPORT_SYMBOL_GPL(kobject_uevent_env);
320
321/**
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800322 * kobject_uevent - notify userspace by sending an uevent
Cornelia Huck8a824722006-11-20 17:07:51 +0100323 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200324 * @action: action that is happening
Cornelia Huck8a824722006-11-20 17:07:51 +0100325 * @kobj: struct kobject that the action is happening to
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800326 *
327 * Returns 0 if kobject_uevent() is completed with success or the
328 * corresponding error when it fails.
Cornelia Huck8a824722006-11-20 17:07:51 +0100329 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800330int kobject_uevent(struct kobject *kobj, enum kobject_action action)
Cornelia Huck8a824722006-11-20 17:07:51 +0100331{
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800332 return kobject_uevent_env(kobj, action, NULL);
Cornelia Huck8a824722006-11-20 17:07:51 +0100333}
Kay Sievers312c0042005-11-16 09:00:00 +0100334EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336/**
Kay Sievers7eff2e72007-08-14 15:15:12 +0200337 * add_uevent_var - add key value string to the environment buffer
338 * @env: environment buffer structure
339 * @format: printf format for the key=value pair
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 *
341 * Returns 0 if environment variable was added successfully or -ENOMEM
342 * if no space was available.
343 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200344int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 va_list args;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200347 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Kay Sievers7eff2e72007-08-14 15:15:12 +0200349 if (env->envp_idx >= ARRAY_SIZE(env->envp)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700350 WARN(1, KERN_ERR "add_uevent_var: too many keys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 va_start(args, format);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200355 len = vsnprintf(&env->buf[env->buflen],
356 sizeof(env->buf) - env->buflen,
357 format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 va_end(args);
359
Kay Sievers7eff2e72007-08-14 15:15:12 +0200360 if (len >= (sizeof(env->buf) - env->buflen)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700361 WARN(1, KERN_ERR "add_uevent_var: buffer size too small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Kay Sievers7eff2e72007-08-14 15:15:12 +0200365 env->envp[env->envp_idx++] = &env->buf[env->buflen];
366 env->buflen += len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return 0;
368}
Kay Sievers312c0042005-11-16 09:00:00 +0100369EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200371#if defined(CONFIG_NET)
Eric W. Biederman07e98962010-05-04 17:36:44 -0700372static int uevent_net_init(struct net *net)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100373{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700374 struct uevent_sock *ue_sk;
375
376 ue_sk = kzalloc(sizeof(*ue_sk), GFP_KERNEL);
377 if (!ue_sk)
378 return -ENOMEM;
379
380 ue_sk->sk = netlink_kernel_create(net, NETLINK_KOBJECT_UEVENT,
381 1, NULL, NULL, THIS_MODULE);
382 if (!ue_sk->sk) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100383 printk(KERN_ERR
384 "kobject_uevent: unable to create netlink socket!\n");
Dan Carpenter743db2d2010-05-25 11:51:10 +0200385 kfree(ue_sk);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100386 return -ENODEV;
387 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700388 mutex_lock(&uevent_sock_mutex);
389 list_add_tail(&ue_sk->list, &uevent_sock_list);
390 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100391 return 0;
392}
393
Eric W. Biederman07e98962010-05-04 17:36:44 -0700394static void uevent_net_exit(struct net *net)
395{
396 struct uevent_sock *ue_sk;
397
398 mutex_lock(&uevent_sock_mutex);
399 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
400 if (sock_net(ue_sk->sk) == net)
401 goto found;
402 }
403 mutex_unlock(&uevent_sock_mutex);
404 return;
405
406found:
407 list_del(&ue_sk->list);
408 mutex_unlock(&uevent_sock_mutex);
409
410 netlink_kernel_release(ue_sk->sk);
411 kfree(ue_sk);
412}
413
414static struct pernet_operations uevent_net_ops = {
415 .init = uevent_net_init,
416 .exit = uevent_net_exit,
417};
418
419static int __init kobject_uevent_init(void)
420{
421 netlink_set_nonroot(NETLINK_KOBJECT_UEVENT, NL_NONROOT_RECV);
422 return register_pernet_subsys(&uevent_net_ops);
423}
424
425
Kay Sievers5f123fb2005-11-11 14:43:07 +0100426postcore_initcall(kobject_uevent_init);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200427#endif