blob: 4682e8545b5c1a702999664332e6b98c0dabe9ce [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>
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;
Michael Marineau86d56132014-04-10 14:09:31 -070031#ifdef CONFIG_UEVENT_HELPER
Kay Sievers6a8d8ab2007-08-15 15:38:28 +020032char uevent_helper[UEVENT_HELPER_PATH_LEN] = CONFIG_UEVENT_HELPER_PATH;
Michael Marineau86d56132014-04-10 14:09:31 -070033#endif
Eric W. Biederman07e98962010-05-04 17:36:44 -070034#ifdef CONFIG_NET
35struct uevent_sock {
36 struct list_head list;
37 struct sock *sk;
38};
39static LIST_HEAD(uevent_sock_list);
Cornelia Huckcd030c42007-07-20 13:58:13 +020040#endif
41
Andrew Vagin7b60a182012-03-07 14:49:56 +040042/* This lock protects uevent_seqnum and uevent_sock_list */
43static DEFINE_MUTEX(uevent_sock_mutex);
44
Kay Sievers5c5daf62007-08-12 20:43:55 +020045/* the strings here must match the enum in include/linux/kobject.h */
46static const char *kobject_actions[] = {
47 [KOBJ_ADD] = "add",
48 [KOBJ_REMOVE] = "remove",
49 [KOBJ_CHANGE] = "change",
50 [KOBJ_MOVE] = "move",
51 [KOBJ_ONLINE] = "online",
52 [KOBJ_OFFLINE] = "offline",
Dmitry Torokhov1455cf82017-07-19 17:24:30 -070053 [KOBJ_BIND] = "bind",
54 [KOBJ_UNBIND] = "unbind",
Kay Sievers5c5daf62007-08-12 20:43:55 +020055};
56
57/**
58 * kobject_action_type - translate action string to numeric type
59 *
60 * @buf: buffer containing the action string, newline is ignored
Julia Lawalledbbf992016-10-01 21:46:28 +020061 * @count: length of buffer
Kay Sievers5c5daf62007-08-12 20:43:55 +020062 * @type: pointer to the location to store the action type
63 *
64 * Returns 0 if the action string was recognized.
65 */
66int kobject_action_type(const char *buf, size_t count,
67 enum kobject_action *type)
68{
69 enum kobject_action action;
70 int ret = -EINVAL;
71
Mark Lorda9edadb2008-03-28 19:05:25 -040072 if (count && (buf[count-1] == '\n' || buf[count-1] == '\0'))
Kay Sievers5c5daf62007-08-12 20:43:55 +020073 count--;
74
75 if (!count)
76 goto out;
77
78 for (action = 0; action < ARRAY_SIZE(kobject_actions); action++) {
79 if (strncmp(kobject_actions[action], buf, count) != 0)
80 continue;
81 if (kobject_actions[action][count] != '\0')
82 continue;
83 *type = action;
84 ret = 0;
85 break;
86 }
87out:
88 return ret;
89}
90
Andrew Mortonc8421282010-05-21 15:05:21 -070091#ifdef CONFIG_NET
Eric W. Biederman5f71a292010-05-04 17:36:47 -070092static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data)
93{
Weilong Chen82ef3d52014-01-16 17:24:31 +080094 struct kobject *kobj = data, *ksobj;
Eric W. Biederman5f71a292010-05-04 17:36:47 -070095 const struct kobj_ns_type_operations *ops;
96
97 ops = kobj_ns_ops(kobj);
Weilong Chen82ef3d52014-01-16 17:24:31 +080098 if (!ops && kobj->kset) {
99 ksobj = &kobj->kset->kobj;
100 if (ksobj->parent != NULL)
101 ops = kobj_ns_ops(ksobj->parent);
102 }
103
104 if (ops && ops->netlink_ns && kobj->ktype->namespace) {
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700105 const void *sock_ns, *ns;
106 ns = kobj->ktype->namespace(kobj);
107 sock_ns = ops->netlink_ns(dsk);
108 return sock_ns != ns;
109 }
110
111 return 0;
112}
Andrew Mortonc8421282010-05-21 15:05:21 -0700113#endif
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700114
Michael Marineau86d56132014-04-10 14:09:31 -0700115#ifdef CONFIG_UEVENT_HELPER
Eric W. Biederman417daa12010-05-04 17:36:48 -0700116static int kobj_usermode_filter(struct kobject *kobj)
117{
118 const struct kobj_ns_type_operations *ops;
119
120 ops = kobj_ns_ops(kobj);
121 if (ops) {
122 const void *init_ns, *ns;
123 ns = kobj->ktype->namespace(kobj);
124 init_ns = ops->initial_ns();
125 return ns != init_ns;
126 }
127
128 return 0;
129}
130
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700131static int init_uevent_argv(struct kobj_uevent_env *env, const char *subsystem)
132{
133 int len;
134
135 len = strlcpy(&env->buf[env->buflen], subsystem,
136 sizeof(env->buf) - env->buflen);
137 if (len >= (sizeof(env->buf) - env->buflen)) {
138 WARN(1, KERN_ERR "init_uevent_argv: buffer size too small\n");
139 return -ENOMEM;
140 }
141
142 env->argv[0] = uevent_helper;
143 env->argv[1] = &env->buf[env->buflen];
144 env->argv[2] = NULL;
145
146 env->buflen += len + 1;
147 return 0;
148}
149
150static void cleanup_uevent_env(struct subprocess_info *info)
151{
152 kfree(info->data);
153}
Michael Marineau86d56132014-04-10 14:09:31 -0700154#endif
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100157 * kobject_uevent_env - send an uevent with environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * @kobj: struct kobject that the action is happening to
Julia Lawalledbbf992016-10-01 21:46:28 +0200160 * @action: action that is happening
Cornelia Huck8a824722006-11-20 17:07:51 +0100161 * @envp_ext: pointer to environmental data
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800162 *
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800163 * Returns 0 if kobject_uevent_env() is completed with success or the
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800164 * corresponding error when it fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800166int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Kay Sievers7eff2e72007-08-14 15:15:12 +0200167 char *envp_ext[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Kay Sievers7eff2e72007-08-14 15:15:12 +0200169 struct kobj_uevent_env *env;
170 const char *action_string = kobject_actions[action];
Kay Sievers5f123fb2005-11-11 14:43:07 +0100171 const char *devpath = NULL;
172 const char *subsystem;
173 struct kobject *top_kobj;
174 struct kset *kset;
Emese Revfy9cd43612009-12-31 14:52:51 +0100175 const struct kset_uevent_ops *uevent_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 int i = 0;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800177 int retval = 0;
Eric W. Biederman07e98962010-05-04 17:36:44 -0700178#ifdef CONFIG_NET
179 struct uevent_sock *ue_sk;
180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800182 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700183 kobject_name(kobj), kobj, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Kay Sievers5f123fb2005-11-11 14:43:07 +0100185 /* search the kset we belong to */
186 top_kobj = kobj;
Kay Sieversccd490a2007-08-12 20:43:55 +0200187 while (!top_kobj->kset && top_kobj->parent)
John Anthony Kazos Jr14193fb2007-04-04 07:39:17 -0400188 top_kobj = top_kobj->parent;
Kay Sieversccd490a2007-08-12 20:43:55 +0200189
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800190 if (!top_kobj->kset) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800191 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
192 "without kset!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700193 __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800194 return -EINVAL;
195 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100196
197 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +0100198 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100199
Ming Leif67f1292009-03-01 21:10:49 +0800200 /* skip the event, if uevent_suppress is set*/
201 if (kobj->uevent_suppress) {
202 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
203 "caused the event to drop!\n",
204 kobject_name(kobj), kobj, __func__);
205 return 0;
206 }
Kay Sievers7eff2e72007-08-14 15:15:12 +0200207 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +0100208 if (uevent_ops && uevent_ops->filter)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800209 if (!uevent_ops->filter(kset, kobj)) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800210 pr_debug("kobject: '%s' (%p): %s: filter function "
211 "caused the event to drop!\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700212 kobject_name(kobj), kobj, __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800213 return 0;
214 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100215
Kay Sievers86406242007-03-14 03:25:56 +0100216 /* originating subsystem */
217 if (uevent_ops && uevent_ops->name)
218 subsystem = uevent_ops->name(kset, kobj);
219 else
220 subsystem = kobject_name(&kset->kobj);
221 if (!subsystem) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800222 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
223 "event to drop!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700224 __func__);
Kay Sievers86406242007-03-14 03:25:56 +0100225 return 0;
226 }
227
Kay Sievers7eff2e72007-08-14 15:15:12 +0200228 /* environment buffer */
229 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
230 if (!env)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800231 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Kay Sievers5f123fb2005-11-11 14:43:07 +0100233 /* complete object path */
234 devpath = kobject_get_path(kobj, GFP_KERNEL);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800235 if (!devpath) {
236 retval = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 goto exit;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Kay Sievers5f123fb2005-11-11 14:43:07 +0100240 /* default keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200241 retval = add_uevent_var(env, "ACTION=%s", action_string);
242 if (retval)
243 goto exit;
244 retval = add_uevent_var(env, "DEVPATH=%s", devpath);
245 if (retval)
246 goto exit;
247 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
248 if (retval)
249 goto exit;
250
251 /* keys passed in from the caller */
252 if (envp_ext) {
253 for (i = 0; envp_ext[i]; i++) {
Tejun Heoc65b9142008-11-13 13:20:00 +0900254 retval = add_uevent_var(env, "%s", envp_ext[i]);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200255 if (retval)
256 goto exit;
257 }
258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Kay Sievers5f123fb2005-11-11 14:43:07 +0100260 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100261 if (uevent_ops && uevent_ops->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200262 retval = uevent_ops->uevent(kset, kobj, env);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (retval) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800264 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
265 "%d\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700266 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 goto exit;
268 }
269 }
270
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100271 /*
272 * Mark "add" and "remove" events in the object to ensure proper
273 * events to userspace during automatic cleanup. If the object did
274 * send an "add" event, "remove" will automatically generated by
275 * the core, if not already done by the caller.
276 */
277 if (action == KOBJ_ADD)
278 kobj->state_add_uevent_sent = 1;
279 else if (action == KOBJ_REMOVE)
280 kobj->state_remove_uevent_sent = 1;
281
Andrew Vagin7b60a182012-03-07 14:49:56 +0400282 mutex_lock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200283 /* we will send an event, so request a new sequence number */
Andrew Vagin7b60a182012-03-07 14:49:56 +0400284 retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)++uevent_seqnum);
285 if (retval) {
286 mutex_unlock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200287 goto exit;
Andrew Vagin7b60a182012-03-07 14:49:56 +0400288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200290#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100291 /* send netlink message */
Eric W. Biederman07e98962010-05-04 17:36:44 -0700292 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
293 struct sock *uevent_sock = ue_sk->sk;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100294 struct sk_buff *skb;
295 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Kay Sievers74099b12011-12-05 19:12:47 +0100297 if (!netlink_has_listeners(uevent_sock, 1))
298 continue;
299
Kay Sievers5f123fb2005-11-11 14:43:07 +0100300 /* allocate message with the maximum possible size */
301 len = strlen(action_string) + strlen(devpath) + 2;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200302 skb = alloc_skb(len + env->buflen, GFP_KERNEL);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100303 if (skb) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200304 char *scratch;
305
Kay Sievers5f123fb2005-11-11 14:43:07 +0100306 /* add header */
307 scratch = skb_put(skb, len);
308 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Kay Sievers5f123fb2005-11-11 14:43:07 +0100310 /* copy keys to our continuous event payload buffer */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200311 for (i = 0; i < env->envp_idx; i++) {
312 len = strlen(env->envp[i]) + 1;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100313 scratch = skb_put(skb, len);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200314 strcpy(scratch, env->envp[i]);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Kay Sievers5f123fb2005-11-11 14:43:07 +0100317 NETLINK_CB(skb).dst_group = 1;
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700318 retval = netlink_broadcast_filtered(uevent_sock, skb,
319 0, 1, GFP_KERNEL,
320 kobj_bcast_filter,
321 kobj);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800322 /* ENOBUFS should be handled in userspace */
Milan Brozebf41272011-08-22 15:51:34 +0200323 if (retval == -ENOBUFS || retval == -ESRCH)
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800324 retval = 0;
Ming Leie0d7bf52008-11-16 18:23:27 +0800325 } else
326 retval = -ENOMEM;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100327 }
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200328#endif
Andrew Vagin7b60a182012-03-07 14:49:56 +0400329 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100330
Michael Marineau86d56132014-04-10 14:09:31 -0700331#ifdef CONFIG_UEVENT_HELPER
Kay Sievers5f123fb2005-11-11 14:43:07 +0100332 /* call uevent_helper, usually only enabled during early boot */
Eric W. Biederman417daa12010-05-04 17:36:48 -0700333 if (uevent_helper[0] && !kobj_usermode_filter(kobj)) {
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700334 struct subprocess_info *info;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100335
Kay Sievers7eff2e72007-08-14 15:15:12 +0200336 retval = add_uevent_var(env, "HOME=/");
337 if (retval)
338 goto exit;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800339 retval = add_uevent_var(env,
340 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200341 if (retval)
342 goto exit;
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700343 retval = init_uevent_argv(env, subsystem);
344 if (retval)
345 goto exit;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200346
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700347 retval = -ENOMEM;
348 info = call_usermodehelper_setup(env->argv[0], env->argv,
349 env->envp, GFP_KERNEL,
350 NULL, cleanup_uevent_env, env);
351 if (info) {
352 retval = call_usermodehelper_exec(info, UMH_NO_WAIT);
353 env = NULL; /* freed by cleanup_uevent_env */
354 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100355 }
Michael Marineau86d56132014-04-10 14:09:31 -0700356#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100359 kfree(devpath);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200360 kfree(env);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800361 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
Cornelia Huck8a824722006-11-20 17:07:51 +0100363EXPORT_SYMBOL_GPL(kobject_uevent_env);
364
365/**
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800366 * kobject_uevent - notify userspace by sending an uevent
Cornelia Huck8a824722006-11-20 17:07:51 +0100367 *
Cornelia Huck8a824722006-11-20 17:07:51 +0100368 * @kobj: struct kobject that the action is happening to
Julia Lawalledbbf992016-10-01 21:46:28 +0200369 * @action: action that is happening
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800370 *
371 * Returns 0 if kobject_uevent() is completed with success or the
372 * corresponding error when it fails.
Cornelia Huck8a824722006-11-20 17:07:51 +0100373 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800374int kobject_uevent(struct kobject *kobj, enum kobject_action action)
Cornelia Huck8a824722006-11-20 17:07:51 +0100375{
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800376 return kobject_uevent_env(kobj, action, NULL);
Cornelia Huck8a824722006-11-20 17:07:51 +0100377}
Kay Sievers312c0042005-11-16 09:00:00 +0100378EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380/**
Kay Sievers7eff2e72007-08-14 15:15:12 +0200381 * add_uevent_var - add key value string to the environment buffer
382 * @env: environment buffer structure
383 * @format: printf format for the key=value pair
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
385 * Returns 0 if environment variable was added successfully or -ENOMEM
386 * if no space was available.
387 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200388int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 va_list args;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200391 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Kay Sievers7eff2e72007-08-14 15:15:12 +0200393 if (env->envp_idx >= ARRAY_SIZE(env->envp)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700394 WARN(1, KERN_ERR "add_uevent_var: too many keys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 va_start(args, format);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200399 len = vsnprintf(&env->buf[env->buflen],
400 sizeof(env->buf) - env->buflen,
401 format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 va_end(args);
403
Kay Sievers7eff2e72007-08-14 15:15:12 +0200404 if (len >= (sizeof(env->buf) - env->buflen)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700405 WARN(1, KERN_ERR "add_uevent_var: buffer size too small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Kay Sievers7eff2e72007-08-14 15:15:12 +0200409 env->envp[env->envp_idx++] = &env->buf[env->buflen];
410 env->buflen += len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return 0;
412}
Kay Sievers312c0042005-11-16 09:00:00 +0100413EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200415#if defined(CONFIG_NET)
Eric W. Biederman07e98962010-05-04 17:36:44 -0700416static int uevent_net_init(struct net *net)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100417{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700418 struct uevent_sock *ue_sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000419 struct netlink_kernel_cfg cfg = {
420 .groups = 1,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +0000421 .flags = NL_CFG_F_NONROOT_RECV,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000422 };
Eric W. Biederman07e98962010-05-04 17:36:44 -0700423
424 ue_sk = kzalloc(sizeof(*ue_sk), GFP_KERNEL);
425 if (!ue_sk)
426 return -ENOMEM;
427
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000428 ue_sk->sk = netlink_kernel_create(net, NETLINK_KOBJECT_UEVENT, &cfg);
Eric W. Biederman07e98962010-05-04 17:36:44 -0700429 if (!ue_sk->sk) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100430 printk(KERN_ERR
431 "kobject_uevent: unable to create netlink socket!\n");
Dan Carpenter743db2d2010-05-25 11:51:10 +0200432 kfree(ue_sk);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100433 return -ENODEV;
434 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700435 mutex_lock(&uevent_sock_mutex);
436 list_add_tail(&ue_sk->list, &uevent_sock_list);
437 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100438 return 0;
439}
440
Eric W. Biederman07e98962010-05-04 17:36:44 -0700441static void uevent_net_exit(struct net *net)
442{
443 struct uevent_sock *ue_sk;
444
445 mutex_lock(&uevent_sock_mutex);
446 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
447 if (sock_net(ue_sk->sk) == net)
448 goto found;
449 }
450 mutex_unlock(&uevent_sock_mutex);
451 return;
452
453found:
454 list_del(&ue_sk->list);
455 mutex_unlock(&uevent_sock_mutex);
456
457 netlink_kernel_release(ue_sk->sk);
458 kfree(ue_sk);
459}
460
461static struct pernet_operations uevent_net_ops = {
462 .init = uevent_net_init,
463 .exit = uevent_net_exit,
464};
465
466static int __init kobject_uevent_init(void)
467{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700468 return register_pernet_subsys(&uevent_net_ops);
469}
470
471
Kay Sievers5f123fb2005-11-11 14:43:07 +0100472postcore_initcall(kobject_uevent_init);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200473#endif