blob: 9ebf9e20de53db9aa62d9c3d7cd8764a8adee617 [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;
Michael Marineau86d56132014-04-10 14:09:31 -070032#ifdef CONFIG_UEVENT_HELPER
Kay Sievers6a8d8ab2007-08-15 15:38:28 +020033char uevent_helper[UEVENT_HELPER_PATH_LEN] = CONFIG_UEVENT_HELPER_PATH;
Michael Marineau86d56132014-04-10 14:09:31 -070034#endif
Eric W. Biederman07e98962010-05-04 17:36:44 -070035#ifdef CONFIG_NET
36struct uevent_sock {
37 struct list_head list;
38 struct sock *sk;
39};
40static LIST_HEAD(uevent_sock_list);
Cornelia Huckcd030c42007-07-20 13:58:13 +020041#endif
42
Andrew Vagin7b60a182012-03-07 14:49:56 +040043/* This lock protects uevent_seqnum and uevent_sock_list */
44static DEFINE_MUTEX(uevent_sock_mutex);
45
Kay Sievers5c5daf62007-08-12 20:43:55 +020046/* the strings here must match the enum in include/linux/kobject.h */
47static const char *kobject_actions[] = {
48 [KOBJ_ADD] = "add",
49 [KOBJ_REMOVE] = "remove",
50 [KOBJ_CHANGE] = "change",
51 [KOBJ_MOVE] = "move",
52 [KOBJ_ONLINE] = "online",
53 [KOBJ_OFFLINE] = "offline",
54};
55
56/**
57 * kobject_action_type - translate action string to numeric type
58 *
59 * @buf: buffer containing the action string, newline is ignored
60 * @len: length of buffer
61 * @type: pointer to the location to store the action type
62 *
63 * Returns 0 if the action string was recognized.
64 */
65int kobject_action_type(const char *buf, size_t count,
66 enum kobject_action *type)
67{
68 enum kobject_action action;
69 int ret = -EINVAL;
70
Mark Lorda9edadb2008-03-28 19:05:25 -040071 if (count && (buf[count-1] == '\n' || buf[count-1] == '\0'))
Kay Sievers5c5daf62007-08-12 20:43:55 +020072 count--;
73
74 if (!count)
75 goto out;
76
77 for (action = 0; action < ARRAY_SIZE(kobject_actions); action++) {
78 if (strncmp(kobject_actions[action], buf, count) != 0)
79 continue;
80 if (kobject_actions[action][count] != '\0')
81 continue;
82 *type = action;
83 ret = 0;
84 break;
85 }
86out:
87 return ret;
88}
89
Andrew Mortonc8421282010-05-21 15:05:21 -070090#ifdef CONFIG_NET
Eric W. Biederman5f71a292010-05-04 17:36:47 -070091static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data)
92{
Weilong Chen82ef3d52014-01-16 17:24:31 +080093 struct kobject *kobj = data, *ksobj;
Eric W. Biederman5f71a292010-05-04 17:36:47 -070094 const struct kobj_ns_type_operations *ops;
95
96 ops = kobj_ns_ops(kobj);
Weilong Chen82ef3d52014-01-16 17:24:31 +080097 if (!ops && kobj->kset) {
98 ksobj = &kobj->kset->kobj;
99 if (ksobj->parent != NULL)
100 ops = kobj_ns_ops(ksobj->parent);
101 }
102
103 if (ops && ops->netlink_ns && kobj->ktype->namespace) {
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700104 const void *sock_ns, *ns;
105 ns = kobj->ktype->namespace(kobj);
106 sock_ns = ops->netlink_ns(dsk);
107 return sock_ns != ns;
108 }
109
110 return 0;
111}
Andrew Mortonc8421282010-05-21 15:05:21 -0700112#endif
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700113
Michael Marineau86d56132014-04-10 14:09:31 -0700114#ifdef CONFIG_UEVENT_HELPER
Eric W. Biederman417daa12010-05-04 17:36:48 -0700115static int kobj_usermode_filter(struct kobject *kobj)
116{
117 const struct kobj_ns_type_operations *ops;
118
119 ops = kobj_ns_ops(kobj);
120 if (ops) {
121 const void *init_ns, *ns;
122 ns = kobj->ktype->namespace(kobj);
123 init_ns = ops->initial_ns();
124 return ns != init_ns;
125 }
126
127 return 0;
128}
129
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700130static int init_uevent_argv(struct kobj_uevent_env *env, const char *subsystem)
131{
132 int len;
133
134 len = strlcpy(&env->buf[env->buflen], subsystem,
135 sizeof(env->buf) - env->buflen);
136 if (len >= (sizeof(env->buf) - env->buflen)) {
137 WARN(1, KERN_ERR "init_uevent_argv: buffer size too small\n");
138 return -ENOMEM;
139 }
140
141 env->argv[0] = uevent_helper;
142 env->argv[1] = &env->buf[env->buflen];
143 env->argv[2] = NULL;
144
145 env->buflen += len + 1;
146 return 0;
147}
148
149static void cleanup_uevent_env(struct subprocess_info *info)
150{
151 kfree(info->data);
152}
Michael Marineau86d56132014-04-10 14:09:31 -0700153#endif
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100156 * kobject_uevent_env - send an uevent with environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200158 * @action: action that is happening
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * @kobj: struct kobject that the action is happening to
Cornelia Huck8a824722006-11-20 17:07:51 +0100160 * @envp_ext: pointer to environmental data
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800161 *
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800162 * Returns 0 if kobject_uevent_env() is completed with success or the
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800163 * corresponding error when it fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800165int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Kay Sievers7eff2e72007-08-14 15:15:12 +0200166 char *envp_ext[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Kay Sievers7eff2e72007-08-14 15:15:12 +0200168 struct kobj_uevent_env *env;
169 const char *action_string = kobject_actions[action];
Kay Sievers5f123fb2005-11-11 14:43:07 +0100170 const char *devpath = NULL;
171 const char *subsystem;
172 struct kobject *top_kobj;
173 struct kset *kset;
Emese Revfy9cd43612009-12-31 14:52:51 +0100174 const struct kset_uevent_ops *uevent_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 int i = 0;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800176 int retval = 0;
Eric W. Biederman07e98962010-05-04 17:36:44 -0700177#ifdef CONFIG_NET
178 struct uevent_sock *ue_sk;
179#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800181 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700182 kobject_name(kobj), kobj, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Kay Sievers5f123fb2005-11-11 14:43:07 +0100184 /* search the kset we belong to */
185 top_kobj = kobj;
Kay Sieversccd490a2007-08-12 20:43:55 +0200186 while (!top_kobj->kset && top_kobj->parent)
John Anthony Kazos Jr14193fb2007-04-04 07:39:17 -0400187 top_kobj = top_kobj->parent;
Kay Sieversccd490a2007-08-12 20:43:55 +0200188
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800189 if (!top_kobj->kset) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800190 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
191 "without kset!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700192 __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800193 return -EINVAL;
194 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100195
196 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +0100197 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100198
Ming Leif67f1292009-03-01 21:10:49 +0800199 /* skip the event, if uevent_suppress is set*/
200 if (kobj->uevent_suppress) {
201 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
202 "caused the event to drop!\n",
203 kobject_name(kobj), kobj, __func__);
204 return 0;
205 }
Kay Sievers7eff2e72007-08-14 15:15:12 +0200206 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +0100207 if (uevent_ops && uevent_ops->filter)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800208 if (!uevent_ops->filter(kset, kobj)) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800209 pr_debug("kobject: '%s' (%p): %s: filter function "
210 "caused the event to drop!\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700211 kobject_name(kobj), kobj, __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800212 return 0;
213 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100214
Kay Sievers86406242007-03-14 03:25:56 +0100215 /* originating subsystem */
216 if (uevent_ops && uevent_ops->name)
217 subsystem = uevent_ops->name(kset, kobj);
218 else
219 subsystem = kobject_name(&kset->kobj);
220 if (!subsystem) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800221 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
222 "event to drop!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700223 __func__);
Kay Sievers86406242007-03-14 03:25:56 +0100224 return 0;
225 }
226
Kay Sievers7eff2e72007-08-14 15:15:12 +0200227 /* environment buffer */
228 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
229 if (!env)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800230 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Kay Sievers5f123fb2005-11-11 14:43:07 +0100232 /* complete object path */
233 devpath = kobject_get_path(kobj, GFP_KERNEL);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800234 if (!devpath) {
235 retval = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto exit;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Kay Sievers5f123fb2005-11-11 14:43:07 +0100239 /* default keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200240 retval = add_uevent_var(env, "ACTION=%s", action_string);
241 if (retval)
242 goto exit;
243 retval = add_uevent_var(env, "DEVPATH=%s", devpath);
244 if (retval)
245 goto exit;
246 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
247 if (retval)
248 goto exit;
249
250 /* keys passed in from the caller */
251 if (envp_ext) {
252 for (i = 0; envp_ext[i]; i++) {
Tejun Heoc65b9142008-11-13 13:20:00 +0900253 retval = add_uevent_var(env, "%s", envp_ext[i]);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200254 if (retval)
255 goto exit;
256 }
257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Kay Sievers5f123fb2005-11-11 14:43:07 +0100259 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100260 if (uevent_ops && uevent_ops->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200261 retval = uevent_ops->uevent(kset, kobj, env);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (retval) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800263 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
264 "%d\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700265 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 goto exit;
267 }
268 }
269
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100270 /*
271 * Mark "add" and "remove" events in the object to ensure proper
272 * events to userspace during automatic cleanup. If the object did
273 * send an "add" event, "remove" will automatically generated by
274 * the core, if not already done by the caller.
275 */
276 if (action == KOBJ_ADD)
277 kobj->state_add_uevent_sent = 1;
278 else if (action == KOBJ_REMOVE)
279 kobj->state_remove_uevent_sent = 1;
280
Andrew Vagin7b60a182012-03-07 14:49:56 +0400281 mutex_lock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200282 /* we will send an event, so request a new sequence number */
Andrew Vagin7b60a182012-03-07 14:49:56 +0400283 retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)++uevent_seqnum);
284 if (retval) {
285 mutex_unlock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200286 goto exit;
Andrew Vagin7b60a182012-03-07 14:49:56 +0400287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200289#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100290 /* send netlink message */
Eric W. Biederman07e98962010-05-04 17:36:44 -0700291 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
292 struct sock *uevent_sock = ue_sk->sk;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100293 struct sk_buff *skb;
294 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Kay Sievers74099b12011-12-05 19:12:47 +0100296 if (!netlink_has_listeners(uevent_sock, 1))
297 continue;
298
Kay Sievers5f123fb2005-11-11 14:43:07 +0100299 /* allocate message with the maximum possible size */
300 len = strlen(action_string) + strlen(devpath) + 2;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200301 skb = alloc_skb(len + env->buflen, GFP_KERNEL);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100302 if (skb) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200303 char *scratch;
304
Kay Sievers5f123fb2005-11-11 14:43:07 +0100305 /* add header */
306 scratch = skb_put(skb, len);
307 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Kay Sievers5f123fb2005-11-11 14:43:07 +0100309 /* copy keys to our continuous event payload buffer */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200310 for (i = 0; i < env->envp_idx; i++) {
311 len = strlen(env->envp[i]) + 1;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100312 scratch = skb_put(skb, len);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200313 strcpy(scratch, env->envp[i]);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Kay Sievers5f123fb2005-11-11 14:43:07 +0100316 NETLINK_CB(skb).dst_group = 1;
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700317 retval = netlink_broadcast_filtered(uevent_sock, skb,
318 0, 1, GFP_KERNEL,
319 kobj_bcast_filter,
320 kobj);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800321 /* ENOBUFS should be handled in userspace */
Milan Brozebf41272011-08-22 15:51:34 +0200322 if (retval == -ENOBUFS || retval == -ESRCH)
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800323 retval = 0;
Ming Leie0d7bf52008-11-16 18:23:27 +0800324 } else
325 retval = -ENOMEM;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100326 }
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200327#endif
Andrew Vagin7b60a182012-03-07 14:49:56 +0400328 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100329
Michael Marineau86d56132014-04-10 14:09:31 -0700330#ifdef CONFIG_UEVENT_HELPER
Kay Sievers5f123fb2005-11-11 14:43:07 +0100331 /* call uevent_helper, usually only enabled during early boot */
Eric W. Biederman417daa12010-05-04 17:36:48 -0700332 if (uevent_helper[0] && !kobj_usermode_filter(kobj)) {
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700333 struct subprocess_info *info;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100334
Kay Sievers7eff2e72007-08-14 15:15:12 +0200335 retval = add_uevent_var(env, "HOME=/");
336 if (retval)
337 goto exit;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800338 retval = add_uevent_var(env,
339 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200340 if (retval)
341 goto exit;
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700342 retval = init_uevent_argv(env, subsystem);
343 if (retval)
344 goto exit;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200345
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700346 retval = -ENOMEM;
347 info = call_usermodehelper_setup(env->argv[0], env->argv,
348 env->envp, GFP_KERNEL,
349 NULL, cleanup_uevent_env, env);
350 if (info) {
351 retval = call_usermodehelper_exec(info, UMH_NO_WAIT);
352 env = NULL; /* freed by cleanup_uevent_env */
353 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100354 }
Michael Marineau86d56132014-04-10 14:09:31 -0700355#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100358 kfree(devpath);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200359 kfree(env);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800360 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
Cornelia Huck8a824722006-11-20 17:07:51 +0100362EXPORT_SYMBOL_GPL(kobject_uevent_env);
363
364/**
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800365 * kobject_uevent - notify userspace by sending an uevent
Cornelia Huck8a824722006-11-20 17:07:51 +0100366 *
Kay Sieversccd490a2007-08-12 20:43:55 +0200367 * @action: action that is happening
Cornelia Huck8a824722006-11-20 17:07:51 +0100368 * @kobj: struct kobject that the action is happening to
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800369 *
370 * Returns 0 if kobject_uevent() is completed with success or the
371 * corresponding error when it fails.
Cornelia Huck8a824722006-11-20 17:07:51 +0100372 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800373int kobject_uevent(struct kobject *kobj, enum kobject_action action)
Cornelia Huck8a824722006-11-20 17:07:51 +0100374{
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800375 return kobject_uevent_env(kobj, action, NULL);
Cornelia Huck8a824722006-11-20 17:07:51 +0100376}
Kay Sievers312c0042005-11-16 09:00:00 +0100377EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379/**
Kay Sievers7eff2e72007-08-14 15:15:12 +0200380 * add_uevent_var - add key value string to the environment buffer
381 * @env: environment buffer structure
382 * @format: printf format for the key=value pair
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 *
384 * Returns 0 if environment variable was added successfully or -ENOMEM
385 * if no space was available.
386 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200387int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 va_list args;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200390 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Kay Sievers7eff2e72007-08-14 15:15:12 +0200392 if (env->envp_idx >= ARRAY_SIZE(env->envp)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700393 WARN(1, KERN_ERR "add_uevent_var: too many keys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 va_start(args, format);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200398 len = vsnprintf(&env->buf[env->buflen],
399 sizeof(env->buf) - env->buflen,
400 format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 va_end(args);
402
Kay Sievers7eff2e72007-08-14 15:15:12 +0200403 if (len >= (sizeof(env->buf) - env->buflen)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700404 WARN(1, KERN_ERR "add_uevent_var: buffer size too small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Kay Sievers7eff2e72007-08-14 15:15:12 +0200408 env->envp[env->envp_idx++] = &env->buf[env->buflen];
409 env->buflen += len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return 0;
411}
Kay Sievers312c0042005-11-16 09:00:00 +0100412EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200414#if defined(CONFIG_NET)
Eric W. Biederman07e98962010-05-04 17:36:44 -0700415static int uevent_net_init(struct net *net)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100416{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700417 struct uevent_sock *ue_sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000418 struct netlink_kernel_cfg cfg = {
419 .groups = 1,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +0000420 .flags = NL_CFG_F_NONROOT_RECV,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000421 };
Eric W. Biederman07e98962010-05-04 17:36:44 -0700422
423 ue_sk = kzalloc(sizeof(*ue_sk), GFP_KERNEL);
424 if (!ue_sk)
425 return -ENOMEM;
426
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000427 ue_sk->sk = netlink_kernel_create(net, NETLINK_KOBJECT_UEVENT, &cfg);
Eric W. Biederman07e98962010-05-04 17:36:44 -0700428 if (!ue_sk->sk) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100429 printk(KERN_ERR
430 "kobject_uevent: unable to create netlink socket!\n");
Dan Carpenter743db2d2010-05-25 11:51:10 +0200431 kfree(ue_sk);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100432 return -ENODEV;
433 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700434 mutex_lock(&uevent_sock_mutex);
435 list_add_tail(&ue_sk->list, &uevent_sock_list);
436 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100437 return 0;
438}
439
Eric W. Biederman07e98962010-05-04 17:36:44 -0700440static void uevent_net_exit(struct net *net)
441{
442 struct uevent_sock *ue_sk;
443
444 mutex_lock(&uevent_sock_mutex);
445 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
446 if (sock_net(ue_sk->sk) == net)
447 goto found;
448 }
449 mutex_unlock(&uevent_sock_mutex);
450 return;
451
452found:
453 list_del(&ue_sk->list);
454 mutex_unlock(&uevent_sock_mutex);
455
456 netlink_kernel_release(ue_sk->sk);
457 kfree(ue_sk);
458}
459
460static struct pernet_operations uevent_net_ops = {
461 .init = uevent_net_init,
462 .exit = uevent_net_exit,
463};
464
465static int __init kobject_uevent_init(void)
466{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700467 return register_pernet_subsys(&uevent_net_ops);
468}
469
470
Kay Sievers5f123fb2005-11-11 14:43:07 +0100471postcore_initcall(kobject_uevent_init);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200472#endif