blob: 4e3bd71bd9495cfbf95fd9a28adf5e18a71f4592 [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>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050020#include <linux/export.h>
21#include <linux/kmod.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Eric W. Biederman417daa12010-05-04 17:36:48 -070023#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/socket.h>
25#include <linux/skbuff.h>
26#include <linux/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <net/sock.h>
Eric W. Biederman07e98962010-05-04 17:36:44 -070028#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Cornelia Huckcd030c42007-07-20 13:58:13 +020031u64 uevent_seqnum;
Kay Sievers6a8d8ab2007-08-15 15:38:28 +020032char uevent_helper[UEVENT_HELPER_PATH_LEN] = CONFIG_UEVENT_HELPER_PATH;
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);
Cornelia Huckcd030c42007-07-20 13:58:13 +020039#endif
40
Andrew Vagin7b60a182012-03-07 14:49:56 +040041/* This lock protects uevent_seqnum and uevent_sock_list */
42static DEFINE_MUTEX(uevent_sock_mutex);
43
Kay Sievers5c5daf62007-08-12 20:43:55 +020044/* the strings here must match the enum in include/linux/kobject.h */
45static const char *kobject_actions[] = {
46 [KOBJ_ADD] = "add",
47 [KOBJ_REMOVE] = "remove",
48 [KOBJ_CHANGE] = "change",
49 [KOBJ_MOVE] = "move",
50 [KOBJ_ONLINE] = "online",
51 [KOBJ_OFFLINE] = "offline",
52};
53
54/**
55 * kobject_action_type - translate action string to numeric type
56 *
57 * @buf: buffer containing the action string, newline is ignored
58 * @len: length of buffer
59 * @type: pointer to the location to store the action type
60 *
61 * Returns 0 if the action string was recognized.
62 */
63int kobject_action_type(const char *buf, size_t count,
64 enum kobject_action *type)
65{
66 enum kobject_action action;
67 int ret = -EINVAL;
68
Mark Lorda9edadb2008-03-28 19:05:25 -040069 if (count && (buf[count-1] == '\n' || buf[count-1] == '\0'))
Kay Sievers5c5daf62007-08-12 20:43:55 +020070 count--;
71
72 if (!count)
73 goto out;
74
75 for (action = 0; action < ARRAY_SIZE(kobject_actions); action++) {
76 if (strncmp(kobject_actions[action], buf, count) != 0)
77 continue;
78 if (kobject_actions[action][count] != '\0')
79 continue;
80 *type = action;
81 ret = 0;
82 break;
83 }
84out:
85 return ret;
86}
87
Andrew Mortonc8421282010-05-21 15:05:21 -070088#ifdef CONFIG_NET
Eric W. Biederman5f71a292010-05-04 17:36:47 -070089static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data)
90{
Weilong Chen82ef3d52014-01-16 17:24:31 +080091 struct kobject *kobj = data, *ksobj;
Eric W. Biederman5f71a292010-05-04 17:36:47 -070092 const struct kobj_ns_type_operations *ops;
93
94 ops = kobj_ns_ops(kobj);
Weilong Chen82ef3d52014-01-16 17:24:31 +080095 if (!ops && kobj->kset) {
96 ksobj = &kobj->kset->kobj;
97 if (ksobj->parent != NULL)
98 ops = kobj_ns_ops(ksobj->parent);
99 }
100
101 if (ops && ops->netlink_ns && kobj->ktype->namespace) {
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700102 const void *sock_ns, *ns;
103 ns = kobj->ktype->namespace(kobj);
104 sock_ns = ops->netlink_ns(dsk);
105 return sock_ns != ns;
106 }
107
108 return 0;
109}
Andrew Mortonc8421282010-05-21 15:05:21 -0700110#endif
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700111
Eric W. Biederman417daa12010-05-04 17:36:48 -0700112static int kobj_usermode_filter(struct kobject *kobj)
113{
114 const struct kobj_ns_type_operations *ops;
115
116 ops = kobj_ns_ops(kobj);
117 if (ops) {
118 const void *init_ns, *ns;
119 ns = kobj->ktype->namespace(kobj);
120 init_ns = ops->initial_ns();
121 return ns != init_ns;
122 }
123
124 return 0;
125}
126
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700127static int init_uevent_argv(struct kobj_uevent_env *env, const char *subsystem)
128{
129 int len;
130
131 len = strlcpy(&env->buf[env->buflen], subsystem,
132 sizeof(env->buf) - env->buflen);
133 if (len >= (sizeof(env->buf) - env->buflen)) {
134 WARN(1, KERN_ERR "init_uevent_argv: buffer size too small\n");
135 return -ENOMEM;
136 }
137
138 env->argv[0] = uevent_helper;
139 env->argv[1] = &env->buf[env->buflen];
140 env->argv[2] = NULL;
141
142 env->buflen += len + 1;
143 return 0;
144}
145
146static void cleanup_uevent_env(struct subprocess_info *info)
147{
148 kfree(info->data);
149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100152 * kobject_uevent_env - send an uevent with environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200154 * @action: action that is happening
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * @kobj: struct kobject that the action is happening to
Cornelia Huck8a824722006-11-20 17:07:51 +0100156 * @envp_ext: pointer to environmental data
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800157 *
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800158 * Returns 0 if kobject_uevent_env() is completed with success or the
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800159 * corresponding error when it fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800161int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Kay Sievers7eff2e72007-08-14 15:15:12 +0200162 char *envp_ext[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Kay Sievers7eff2e72007-08-14 15:15:12 +0200164 struct kobj_uevent_env *env;
165 const char *action_string = kobject_actions[action];
Kay Sievers5f123fb2005-11-11 14:43:07 +0100166 const char *devpath = NULL;
167 const char *subsystem;
168 struct kobject *top_kobj;
169 struct kset *kset;
Emese Revfy9cd43612009-12-31 14:52:51 +0100170 const struct kset_uevent_ops *uevent_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 int i = 0;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800172 int retval = 0;
Eric W. Biederman07e98962010-05-04 17:36:44 -0700173#ifdef CONFIG_NET
174 struct uevent_sock *ue_sk;
175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800177 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700178 kobject_name(kobj), kobj, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Kay Sievers5f123fb2005-11-11 14:43:07 +0100180 /* search the kset we belong to */
181 top_kobj = kobj;
Kay Sieversccd490a2007-08-12 20:43:55 +0200182 while (!top_kobj->kset && top_kobj->parent)
John Anthony Kazos Jr14193fb2007-04-04 07:39:17 -0400183 top_kobj = top_kobj->parent;
Kay Sieversccd490a2007-08-12 20:43:55 +0200184
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800185 if (!top_kobj->kset) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800186 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
187 "without kset!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700188 __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800189 return -EINVAL;
190 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100191
192 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +0100193 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100194
Ming Leif67f1292009-03-01 21:10:49 +0800195 /* skip the event, if uevent_suppress is set*/
196 if (kobj->uevent_suppress) {
197 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
198 "caused the event to drop!\n",
199 kobject_name(kobj), kobj, __func__);
200 return 0;
201 }
Kay Sievers7eff2e72007-08-14 15:15:12 +0200202 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +0100203 if (uevent_ops && uevent_ops->filter)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800204 if (!uevent_ops->filter(kset, kobj)) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800205 pr_debug("kobject: '%s' (%p): %s: filter function "
206 "caused the event to drop!\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700207 kobject_name(kobj), kobj, __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800208 return 0;
209 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100210
Kay Sievers86406242007-03-14 03:25:56 +0100211 /* originating subsystem */
212 if (uevent_ops && uevent_ops->name)
213 subsystem = uevent_ops->name(kset, kobj);
214 else
215 subsystem = kobject_name(&kset->kobj);
216 if (!subsystem) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800217 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
218 "event to drop!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700219 __func__);
Kay Sievers86406242007-03-14 03:25:56 +0100220 return 0;
221 }
222
Kay Sievers7eff2e72007-08-14 15:15:12 +0200223 /* environment buffer */
224 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
225 if (!env)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800226 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Kay Sievers5f123fb2005-11-11 14:43:07 +0100228 /* complete object path */
229 devpath = kobject_get_path(kobj, GFP_KERNEL);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800230 if (!devpath) {
231 retval = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 goto exit;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Kay Sievers5f123fb2005-11-11 14:43:07 +0100235 /* default keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200236 retval = add_uevent_var(env, "ACTION=%s", action_string);
237 if (retval)
238 goto exit;
239 retval = add_uevent_var(env, "DEVPATH=%s", devpath);
240 if (retval)
241 goto exit;
242 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
243 if (retval)
244 goto exit;
245
246 /* keys passed in from the caller */
247 if (envp_ext) {
248 for (i = 0; envp_ext[i]; i++) {
Tejun Heoc65b9142008-11-13 13:20:00 +0900249 retval = add_uevent_var(env, "%s", envp_ext[i]);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200250 if (retval)
251 goto exit;
252 }
253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Kay Sievers5f123fb2005-11-11 14:43:07 +0100255 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100256 if (uevent_ops && uevent_ops->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200257 retval = uevent_ops->uevent(kset, kobj, env);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (retval) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800259 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
260 "%d\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700261 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 goto exit;
263 }
264 }
265
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100266 /*
267 * Mark "add" and "remove" events in the object to ensure proper
268 * events to userspace during automatic cleanup. If the object did
269 * send an "add" event, "remove" will automatically generated by
270 * the core, if not already done by the caller.
271 */
272 if (action == KOBJ_ADD)
273 kobj->state_add_uevent_sent = 1;
274 else if (action == KOBJ_REMOVE)
275 kobj->state_remove_uevent_sent = 1;
276
Andrew Vagin7b60a182012-03-07 14:49:56 +0400277 mutex_lock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200278 /* we will send an event, so request a new sequence number */
Andrew Vagin7b60a182012-03-07 14:49:56 +0400279 retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)++uevent_seqnum);
280 if (retval) {
281 mutex_unlock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200282 goto exit;
Andrew Vagin7b60a182012-03-07 14:49:56 +0400283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200285#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100286 /* send netlink message */
Eric W. Biederman07e98962010-05-04 17:36:44 -0700287 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
288 struct sock *uevent_sock = ue_sk->sk;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100289 struct sk_buff *skb;
290 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Kay Sievers74099b12011-12-05 19:12:47 +0100292 if (!netlink_has_listeners(uevent_sock, 1))
293 continue;
294
Kay Sievers5f123fb2005-11-11 14:43:07 +0100295 /* allocate message with the maximum possible size */
296 len = strlen(action_string) + strlen(devpath) + 2;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200297 skb = alloc_skb(len + env->buflen, GFP_KERNEL);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100298 if (skb) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200299 char *scratch;
300
Kay Sievers5f123fb2005-11-11 14:43:07 +0100301 /* add header */
302 scratch = skb_put(skb, len);
303 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Kay Sievers5f123fb2005-11-11 14:43:07 +0100305 /* copy keys to our continuous event payload buffer */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200306 for (i = 0; i < env->envp_idx; i++) {
307 len = strlen(env->envp[i]) + 1;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100308 scratch = skb_put(skb, len);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200309 strcpy(scratch, env->envp[i]);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Kay Sievers5f123fb2005-11-11 14:43:07 +0100312 NETLINK_CB(skb).dst_group = 1;
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700313 retval = netlink_broadcast_filtered(uevent_sock, skb,
314 0, 1, GFP_KERNEL,
315 kobj_bcast_filter,
316 kobj);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800317 /* ENOBUFS should be handled in userspace */
Milan Brozebf41272011-08-22 15:51:34 +0200318 if (retval == -ENOBUFS || retval == -ESRCH)
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800319 retval = 0;
Ming Leie0d7bf52008-11-16 18:23:27 +0800320 } else
321 retval = -ENOMEM;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100322 }
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200323#endif
Andrew Vagin7b60a182012-03-07 14:49:56 +0400324 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100325
326 /* call uevent_helper, usually only enabled during early boot */
Eric W. Biederman417daa12010-05-04 17:36:48 -0700327 if (uevent_helper[0] && !kobj_usermode_filter(kobj)) {
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700328 struct subprocess_info *info;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100329
Kay Sievers7eff2e72007-08-14 15:15:12 +0200330 retval = add_uevent_var(env, "HOME=/");
331 if (retval)
332 goto exit;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800333 retval = add_uevent_var(env,
334 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200335 if (retval)
336 goto exit;
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700337 retval = init_uevent_argv(env, subsystem);
338 if (retval)
339 goto exit;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200340
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700341 retval = -ENOMEM;
342 info = call_usermodehelper_setup(env->argv[0], env->argv,
343 env->envp, GFP_KERNEL,
344 NULL, cleanup_uevent_env, env);
345 if (info) {
346 retval = call_usermodehelper_exec(info, UMH_NO_WAIT);
347 env = NULL; /* freed by cleanup_uevent_env */
348 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100352 kfree(devpath);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200353 kfree(env);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800354 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
Cornelia Huck8a824722006-11-20 17:07:51 +0100356EXPORT_SYMBOL_GPL(kobject_uevent_env);
357
358/**
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800359 * kobject_uevent - notify userspace by sending an uevent
Cornelia Huck8a824722006-11-20 17:07:51 +0100360 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200361 * @action: action that is happening
Cornelia Huck8a824722006-11-20 17:07:51 +0100362 * @kobj: struct kobject that the action is happening to
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800363 *
364 * Returns 0 if kobject_uevent() is completed with success or the
365 * corresponding error when it fails.
Cornelia Huck8a824722006-11-20 17:07:51 +0100366 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800367int kobject_uevent(struct kobject *kobj, enum kobject_action action)
Cornelia Huck8a824722006-11-20 17:07:51 +0100368{
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800369 return kobject_uevent_env(kobj, action, NULL);
Cornelia Huck8a824722006-11-20 17:07:51 +0100370}
Kay Sievers312c0042005-11-16 09:00:00 +0100371EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373/**
Kay Sievers7eff2e72007-08-14 15:15:12 +0200374 * add_uevent_var - add key value string to the environment buffer
375 * @env: environment buffer structure
376 * @format: printf format for the key=value pair
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 *
378 * Returns 0 if environment variable was added successfully or -ENOMEM
379 * if no space was available.
380 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200381int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 va_list args;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200384 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Kay Sievers7eff2e72007-08-14 15:15:12 +0200386 if (env->envp_idx >= ARRAY_SIZE(env->envp)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700387 WARN(1, KERN_ERR "add_uevent_var: too many keys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 va_start(args, format);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200392 len = vsnprintf(&env->buf[env->buflen],
393 sizeof(env->buf) - env->buflen,
394 format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 va_end(args);
396
Kay Sievers7eff2e72007-08-14 15:15:12 +0200397 if (len >= (sizeof(env->buf) - env->buflen)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700398 WARN(1, KERN_ERR "add_uevent_var: buffer size too small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Kay Sievers7eff2e72007-08-14 15:15:12 +0200402 env->envp[env->envp_idx++] = &env->buf[env->buflen];
403 env->buflen += len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return 0;
405}
Kay Sievers312c0042005-11-16 09:00:00 +0100406EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200408#if defined(CONFIG_NET)
Eric W. Biederman07e98962010-05-04 17:36:44 -0700409static int uevent_net_init(struct net *net)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100410{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700411 struct uevent_sock *ue_sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000412 struct netlink_kernel_cfg cfg = {
413 .groups = 1,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +0000414 .flags = NL_CFG_F_NONROOT_RECV,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000415 };
Eric W. Biederman07e98962010-05-04 17:36:44 -0700416
417 ue_sk = kzalloc(sizeof(*ue_sk), GFP_KERNEL);
418 if (!ue_sk)
419 return -ENOMEM;
420
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000421 ue_sk->sk = netlink_kernel_create(net, NETLINK_KOBJECT_UEVENT, &cfg);
Eric W. Biederman07e98962010-05-04 17:36:44 -0700422 if (!ue_sk->sk) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100423 printk(KERN_ERR
424 "kobject_uevent: unable to create netlink socket!\n");
Dan Carpenter743db2d2010-05-25 11:51:10 +0200425 kfree(ue_sk);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100426 return -ENODEV;
427 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700428 mutex_lock(&uevent_sock_mutex);
429 list_add_tail(&ue_sk->list, &uevent_sock_list);
430 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100431 return 0;
432}
433
Eric W. Biederman07e98962010-05-04 17:36:44 -0700434static void uevent_net_exit(struct net *net)
435{
436 struct uevent_sock *ue_sk;
437
438 mutex_lock(&uevent_sock_mutex);
439 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
440 if (sock_net(ue_sk->sk) == net)
441 goto found;
442 }
443 mutex_unlock(&uevent_sock_mutex);
444 return;
445
446found:
447 list_del(&ue_sk->list);
448 mutex_unlock(&uevent_sock_mutex);
449
450 netlink_kernel_release(ue_sk->sk);
451 kfree(ue_sk);
452}
453
454static struct pernet_operations uevent_net_ops = {
455 .init = uevent_net_init,
456 .exit = uevent_net_exit,
457};
458
459static int __init kobject_uevent_init(void)
460{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700461 return register_pernet_subsys(&uevent_net_ops);
462}
463
464
Kay Sievers5f123fb2005-11-11 14:43:07 +0100465postcore_initcall(kobject_uevent_init);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200466#endif