blob: 719c155fce2084fc8e817afc007549a06eec92b5 [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>
Peter Rajnohaf36776f2017-05-09 15:22:30 +020026#include <linux/uuid.h>
27#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <net/sock.h>
Eric W. Biederman07e98962010-05-04 17:36:44 -070029#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Cornelia Huckcd030c42007-07-20 13:58:13 +020032u64 uevent_seqnum;
Michael Marineau86d56132014-04-10 14:09:31 -070033#ifdef CONFIG_UEVENT_HELPER
Kay Sievers6a8d8ab2007-08-15 15:38:28 +020034char uevent_helper[UEVENT_HELPER_PATH_LEN] = CONFIG_UEVENT_HELPER_PATH;
Michael Marineau86d56132014-04-10 14:09:31 -070035#endif
Eric W. Biederman07e98962010-05-04 17:36:44 -070036#ifdef CONFIG_NET
37struct uevent_sock {
38 struct list_head list;
39 struct sock *sk;
40};
41static LIST_HEAD(uevent_sock_list);
Cornelia Huckcd030c42007-07-20 13:58:13 +020042#endif
43
Andrew Vagin7b60a182012-03-07 14:49:56 +040044/* This lock protects uevent_seqnum and uevent_sock_list */
45static DEFINE_MUTEX(uevent_sock_mutex);
46
Kay Sievers5c5daf62007-08-12 20:43:55 +020047/* the strings here must match the enum in include/linux/kobject.h */
48static const char *kobject_actions[] = {
49 [KOBJ_ADD] = "add",
50 [KOBJ_REMOVE] = "remove",
51 [KOBJ_CHANGE] = "change",
52 [KOBJ_MOVE] = "move",
53 [KOBJ_ONLINE] = "online",
54 [KOBJ_OFFLINE] = "offline",
55};
56
Peter Rajnohaf36776f2017-05-09 15:22:30 +020057static int kobject_action_type(const char *buf, size_t count,
58 enum kobject_action *type,
59 const char **args)
Kay Sievers5c5daf62007-08-12 20:43:55 +020060{
61 enum kobject_action action;
Peter Rajnohaf36776f2017-05-09 15:22:30 +020062 size_t count_first;
63 const char *args_start;
Kay Sievers5c5daf62007-08-12 20:43:55 +020064 int ret = -EINVAL;
65
Mark Lorda9edadb2008-03-28 19:05:25 -040066 if (count && (buf[count-1] == '\n' || buf[count-1] == '\0'))
Kay Sievers5c5daf62007-08-12 20:43:55 +020067 count--;
68
69 if (!count)
70 goto out;
71
Peter Rajnohaf36776f2017-05-09 15:22:30 +020072 args_start = strnchr(buf, count, ' ');
73 if (args_start) {
74 count_first = args_start - buf;
75 args_start = args_start + 1;
76 } else
77 count_first = count;
78
Kay Sievers5c5daf62007-08-12 20:43:55 +020079 for (action = 0; action < ARRAY_SIZE(kobject_actions); action++) {
Peter Rajnohaf36776f2017-05-09 15:22:30 +020080 if (strncmp(kobject_actions[action], buf, count_first) != 0)
Kay Sievers5c5daf62007-08-12 20:43:55 +020081 continue;
Peter Rajnohaf36776f2017-05-09 15:22:30 +020082 if (kobject_actions[action][count_first] != '\0')
Kay Sievers5c5daf62007-08-12 20:43:55 +020083 continue;
Peter Rajnohaf36776f2017-05-09 15:22:30 +020084 if (args)
85 *args = args_start;
Kay Sievers5c5daf62007-08-12 20:43:55 +020086 *type = action;
87 ret = 0;
88 break;
89 }
90out:
91 return ret;
92}
93
Peter Rajnohaf36776f2017-05-09 15:22:30 +020094static const char *action_arg_word_end(const char *buf, const char *buf_end,
95 char delim)
96{
97 const char *next = buf;
98
99 while (next <= buf_end && *next != delim)
100 if (!isalnum(*next++))
101 return NULL;
102
103 if (next == buf)
104 return NULL;
105
106 return next;
107}
108
109static int kobject_action_args(const char *buf, size_t count,
110 struct kobj_uevent_env **ret_env)
111{
112 struct kobj_uevent_env *env = NULL;
113 const char *next, *buf_end, *key;
114 int key_len;
115 int r = -EINVAL;
116
117 if (count && (buf[count - 1] == '\n' || buf[count - 1] == '\0'))
118 count--;
119
120 if (!count)
121 return -EINVAL;
122
123 env = kzalloc(sizeof(*env), GFP_KERNEL);
124 if (!env)
125 return -ENOMEM;
126
127 /* first arg is UUID */
128 if (count < UUID_STRING_LEN || !uuid_is_valid(buf) ||
129 add_uevent_var(env, "SYNTH_UUID=%.*s", UUID_STRING_LEN, buf))
130 goto out;
131
132 /*
133 * the rest are custom environment variables in KEY=VALUE
134 * format with ' ' delimiter between each KEY=VALUE pair
135 */
136 next = buf + UUID_STRING_LEN;
137 buf_end = buf + count - 1;
138
139 while (next <= buf_end) {
140 if (*next != ' ')
141 goto out;
142
143 /* skip the ' ', key must follow */
144 key = ++next;
145 if (key > buf_end)
146 goto out;
147
148 buf = next;
149 next = action_arg_word_end(buf, buf_end, '=');
150 if (!next || next > buf_end || *next != '=')
151 goto out;
152 key_len = next - buf;
153
154 /* skip the '=', value must follow */
155 if (++next > buf_end)
156 goto out;
157
158 buf = next;
159 next = action_arg_word_end(buf, buf_end, ' ');
160 if (!next)
161 goto out;
162
163 if (add_uevent_var(env, "SYNTH_ARG_%.*s=%.*s",
164 key_len, key, (int) (next - buf), buf))
165 goto out;
166 }
167
168 r = 0;
169out:
170 if (r)
171 kfree(env);
172 else
173 *ret_env = env;
174 return r;
175}
176
177/**
178 * kobject_synth_uevent - send synthetic uevent with arguments
179 *
180 * @kobj: struct kobject for which synthetic uevent is to be generated
181 * @buf: buffer containing action type and action args, newline is ignored
182 * @count: length of buffer
183 *
184 * Returns 0 if kobject_synthetic_uevent() is completed with success or the
185 * corresponding error when it fails.
186 */
187int kobject_synth_uevent(struct kobject *kobj, const char *buf, size_t count)
188{
189 char *no_uuid_envp[] = { "SYNTH_UUID=0", NULL };
190 enum kobject_action action;
191 const char *action_args;
192 struct kobj_uevent_env *env;
193 const char *msg = NULL, *devpath;
194 int r;
195
196 r = kobject_action_type(buf, count, &action, &action_args);
197 if (r) {
198 msg = "unknown uevent action string\n";
199 goto out;
200 }
201
202 if (!action_args) {
203 r = kobject_uevent_env(kobj, action, no_uuid_envp);
204 goto out;
205 }
206
207 r = kobject_action_args(action_args,
208 count - (action_args - buf), &env);
209 if (r == -EINVAL) {
210 msg = "incorrect uevent action arguments\n";
211 goto out;
212 }
213
214 if (r)
215 goto out;
216
217 r = kobject_uevent_env(kobj, action, env->envp);
218 kfree(env);
219out:
220 if (r) {
221 devpath = kobject_get_path(kobj, GFP_KERNEL);
222 printk(KERN_WARNING "synth uevent: %s: %s",
223 devpath ?: "unknown device",
224 msg ?: "failed to send uevent");
225 kfree(devpath);
226 }
227 return r;
228}
229
Andrew Mortonc8421282010-05-21 15:05:21 -0700230#ifdef CONFIG_NET
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700231static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data)
232{
Weilong Chen82ef3d52014-01-16 17:24:31 +0800233 struct kobject *kobj = data, *ksobj;
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700234 const struct kobj_ns_type_operations *ops;
235
236 ops = kobj_ns_ops(kobj);
Weilong Chen82ef3d52014-01-16 17:24:31 +0800237 if (!ops && kobj->kset) {
238 ksobj = &kobj->kset->kobj;
239 if (ksobj->parent != NULL)
240 ops = kobj_ns_ops(ksobj->parent);
241 }
242
243 if (ops && ops->netlink_ns && kobj->ktype->namespace) {
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700244 const void *sock_ns, *ns;
245 ns = kobj->ktype->namespace(kobj);
246 sock_ns = ops->netlink_ns(dsk);
247 return sock_ns != ns;
248 }
249
250 return 0;
251}
Andrew Mortonc8421282010-05-21 15:05:21 -0700252#endif
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700253
Michael Marineau86d56132014-04-10 14:09:31 -0700254#ifdef CONFIG_UEVENT_HELPER
Eric W. Biederman417daa12010-05-04 17:36:48 -0700255static int kobj_usermode_filter(struct kobject *kobj)
256{
257 const struct kobj_ns_type_operations *ops;
258
259 ops = kobj_ns_ops(kobj);
260 if (ops) {
261 const void *init_ns, *ns;
262 ns = kobj->ktype->namespace(kobj);
263 init_ns = ops->initial_ns();
264 return ns != init_ns;
265 }
266
267 return 0;
268}
269
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700270static int init_uevent_argv(struct kobj_uevent_env *env, const char *subsystem)
271{
272 int len;
273
274 len = strlcpy(&env->buf[env->buflen], subsystem,
275 sizeof(env->buf) - env->buflen);
276 if (len >= (sizeof(env->buf) - env->buflen)) {
277 WARN(1, KERN_ERR "init_uevent_argv: buffer size too small\n");
278 return -ENOMEM;
279 }
280
281 env->argv[0] = uevent_helper;
282 env->argv[1] = &env->buf[env->buflen];
283 env->argv[2] = NULL;
284
285 env->buflen += len + 1;
286 return 0;
287}
288
289static void cleanup_uevent_env(struct subprocess_info *info)
290{
291 kfree(info->data);
292}
Michael Marineau86d56132014-04-10 14:09:31 -0700293#endif
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295/**
Cornelia Huck8a824722006-11-20 17:07:51 +0100296 * kobject_uevent_env - send an uevent with environmental data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * @kobj: struct kobject that the action is happening to
Julia Lawalledbbf992016-10-01 21:46:28 +0200299 * @action: action that is happening
Cornelia Huck8a824722006-11-20 17:07:51 +0100300 * @envp_ext: pointer to environmental data
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800301 *
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800302 * Returns 0 if kobject_uevent_env() is completed with success or the
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800303 * corresponding error when it fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800305int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
Kay Sievers7eff2e72007-08-14 15:15:12 +0200306 char *envp_ext[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Kay Sievers7eff2e72007-08-14 15:15:12 +0200308 struct kobj_uevent_env *env;
309 const char *action_string = kobject_actions[action];
Kay Sievers5f123fb2005-11-11 14:43:07 +0100310 const char *devpath = NULL;
311 const char *subsystem;
312 struct kobject *top_kobj;
313 struct kset *kset;
Emese Revfy9cd43612009-12-31 14:52:51 +0100314 const struct kset_uevent_ops *uevent_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 int i = 0;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800316 int retval = 0;
Eric W. Biederman07e98962010-05-04 17:36:44 -0700317#ifdef CONFIG_NET
318 struct uevent_sock *ue_sk;
319#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800321 pr_debug("kobject: '%s' (%p): %s\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700322 kobject_name(kobj), kobj, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Kay Sievers5f123fb2005-11-11 14:43:07 +0100324 /* search the kset we belong to */
325 top_kobj = kobj;
Kay Sieversccd490a2007-08-12 20:43:55 +0200326 while (!top_kobj->kset && top_kobj->parent)
John Anthony Kazos Jr14193fb2007-04-04 07:39:17 -0400327 top_kobj = top_kobj->parent;
Kay Sieversccd490a2007-08-12 20:43:55 +0200328
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800329 if (!top_kobj->kset) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800330 pr_debug("kobject: '%s' (%p): %s: attempted to send uevent "
331 "without kset!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700332 __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800333 return -EINVAL;
334 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100335
336 kset = top_kobj->kset;
Kay Sievers312c0042005-11-16 09:00:00 +0100337 uevent_ops = kset->uevent_ops;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100338
Ming Leif67f1292009-03-01 21:10:49 +0800339 /* skip the event, if uevent_suppress is set*/
340 if (kobj->uevent_suppress) {
341 pr_debug("kobject: '%s' (%p): %s: uevent_suppress "
342 "caused the event to drop!\n",
343 kobject_name(kobj), kobj, __func__);
344 return 0;
345 }
Kay Sievers7eff2e72007-08-14 15:15:12 +0200346 /* skip the event, if the filter returns zero. */
Kay Sievers312c0042005-11-16 09:00:00 +0100347 if (uevent_ops && uevent_ops->filter)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800348 if (!uevent_ops->filter(kset, kobj)) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800349 pr_debug("kobject: '%s' (%p): %s: filter function "
350 "caused the event to drop!\n",
Harvey Harrison810304d2008-04-30 00:55:08 -0700351 kobject_name(kobj), kobj, __func__);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800352 return 0;
353 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100354
Kay Sievers86406242007-03-14 03:25:56 +0100355 /* originating subsystem */
356 if (uevent_ops && uevent_ops->name)
357 subsystem = uevent_ops->name(kset, kobj);
358 else
359 subsystem = kobject_name(&kset->kobj);
360 if (!subsystem) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800361 pr_debug("kobject: '%s' (%p): %s: unset subsystem caused the "
362 "event to drop!\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700363 __func__);
Kay Sievers86406242007-03-14 03:25:56 +0100364 return 0;
365 }
366
Kay Sievers7eff2e72007-08-14 15:15:12 +0200367 /* environment buffer */
368 env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
369 if (!env)
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800370 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Kay Sievers5f123fb2005-11-11 14:43:07 +0100372 /* complete object path */
373 devpath = kobject_get_path(kobj, GFP_KERNEL);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800374 if (!devpath) {
375 retval = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 goto exit;
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Kay Sievers5f123fb2005-11-11 14:43:07 +0100379 /* default keys */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200380 retval = add_uevent_var(env, "ACTION=%s", action_string);
381 if (retval)
382 goto exit;
383 retval = add_uevent_var(env, "DEVPATH=%s", devpath);
384 if (retval)
385 goto exit;
386 retval = add_uevent_var(env, "SUBSYSTEM=%s", subsystem);
387 if (retval)
388 goto exit;
389
390 /* keys passed in from the caller */
391 if (envp_ext) {
392 for (i = 0; envp_ext[i]; i++) {
Tejun Heoc65b9142008-11-13 13:20:00 +0900393 retval = add_uevent_var(env, "%s", envp_ext[i]);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200394 if (retval)
395 goto exit;
396 }
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Kay Sievers5f123fb2005-11-11 14:43:07 +0100399 /* let the kset specific function add its stuff */
Kay Sievers312c0042005-11-16 09:00:00 +0100400 if (uevent_ops && uevent_ops->uevent) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200401 retval = uevent_ops->uevent(kset, kobj, env);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (retval) {
Greg Kroah-Hartman9f66fa22007-11-28 23:49:41 -0800403 pr_debug("kobject: '%s' (%p): %s: uevent() returned "
404 "%d\n", kobject_name(kobj), kobj,
Harvey Harrison810304d2008-04-30 00:55:08 -0700405 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 goto exit;
407 }
408 }
409
Kay Sievers0f4dafc2007-12-19 01:40:42 +0100410 /*
411 * Mark "add" and "remove" events in the object to ensure proper
412 * events to userspace during automatic cleanup. If the object did
413 * send an "add" event, "remove" will automatically generated by
414 * the core, if not already done by the caller.
415 */
416 if (action == KOBJ_ADD)
417 kobj->state_add_uevent_sent = 1;
418 else if (action == KOBJ_REMOVE)
419 kobj->state_remove_uevent_sent = 1;
420
Andrew Vagin7b60a182012-03-07 14:49:56 +0400421 mutex_lock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200422 /* we will send an event, so request a new sequence number */
Andrew Vagin7b60a182012-03-07 14:49:56 +0400423 retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)++uevent_seqnum);
424 if (retval) {
425 mutex_unlock(&uevent_sock_mutex);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200426 goto exit;
Andrew Vagin7b60a182012-03-07 14:49:56 +0400427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200429#if defined(CONFIG_NET)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100430 /* send netlink message */
Eric W. Biederman07e98962010-05-04 17:36:44 -0700431 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
432 struct sock *uevent_sock = ue_sk->sk;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100433 struct sk_buff *skb;
434 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Kay Sievers74099b12011-12-05 19:12:47 +0100436 if (!netlink_has_listeners(uevent_sock, 1))
437 continue;
438
Kay Sievers5f123fb2005-11-11 14:43:07 +0100439 /* allocate message with the maximum possible size */
440 len = strlen(action_string) + strlen(devpath) + 2;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200441 skb = alloc_skb(len + env->buflen, GFP_KERNEL);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100442 if (skb) {
Kay Sievers7eff2e72007-08-14 15:15:12 +0200443 char *scratch;
444
Kay Sievers5f123fb2005-11-11 14:43:07 +0100445 /* add header */
446 scratch = skb_put(skb, len);
447 sprintf(scratch, "%s@%s", action_string, devpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Kay Sievers5f123fb2005-11-11 14:43:07 +0100449 /* copy keys to our continuous event payload buffer */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200450 for (i = 0; i < env->envp_idx; i++) {
451 len = strlen(env->envp[i]) + 1;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100452 scratch = skb_put(skb, len);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200453 strcpy(scratch, env->envp[i]);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Kay Sievers5f123fb2005-11-11 14:43:07 +0100456 NETLINK_CB(skb).dst_group = 1;
Eric W. Biederman5f71a292010-05-04 17:36:47 -0700457 retval = netlink_broadcast_filtered(uevent_sock, skb,
458 0, 1, GFP_KERNEL,
459 kobj_bcast_filter,
460 kobj);
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800461 /* ENOBUFS should be handled in userspace */
Milan Brozebf41272011-08-22 15:51:34 +0200462 if (retval == -ENOBUFS || retval == -ESRCH)
Pablo Neira Ayusoff491a72009-02-05 23:56:36 -0800463 retval = 0;
Ming Leie0d7bf52008-11-16 18:23:27 +0800464 } else
465 retval = -ENOMEM;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100466 }
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200467#endif
Andrew Vagin7b60a182012-03-07 14:49:56 +0400468 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100469
Michael Marineau86d56132014-04-10 14:09:31 -0700470#ifdef CONFIG_UEVENT_HELPER
Kay Sievers5f123fb2005-11-11 14:43:07 +0100471 /* call uevent_helper, usually only enabled during early boot */
Eric W. Biederman417daa12010-05-04 17:36:48 -0700472 if (uevent_helper[0] && !kobj_usermode_filter(kobj)) {
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700473 struct subprocess_info *info;
Kay Sievers5f123fb2005-11-11 14:43:07 +0100474
Kay Sievers7eff2e72007-08-14 15:15:12 +0200475 retval = add_uevent_var(env, "HOME=/");
476 if (retval)
477 goto exit;
Greg Kroah-Hartmane374a2b2008-01-24 21:59:04 -0800478 retval = add_uevent_var(env,
479 "PATH=/sbin:/bin:/usr/sbin:/usr/bin");
Kay Sievers7eff2e72007-08-14 15:15:12 +0200480 if (retval)
481 goto exit;
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700482 retval = init_uevent_argv(env, subsystem);
483 if (retval)
484 goto exit;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200485
Vladimir Davydovbcccff92014-04-03 14:48:21 -0700486 retval = -ENOMEM;
487 info = call_usermodehelper_setup(env->argv[0], env->argv,
488 env->envp, GFP_KERNEL,
489 NULL, cleanup_uevent_env, env);
490 if (info) {
491 retval = call_usermodehelper_exec(info, UMH_NO_WAIT);
492 env = NULL; /* freed by cleanup_uevent_env */
493 }
Kay Sievers5f123fb2005-11-11 14:43:07 +0100494 }
Michael Marineau86d56132014-04-10 14:09:31 -0700495#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497exit:
Kay Sievers5f123fb2005-11-11 14:43:07 +0100498 kfree(devpath);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200499 kfree(env);
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800500 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
Cornelia Huck8a824722006-11-20 17:07:51 +0100502EXPORT_SYMBOL_GPL(kobject_uevent_env);
503
504/**
Xiaotian Fengf6e6e772010-08-13 18:58:10 +0800505 * kobject_uevent - notify userspace by sending an uevent
Cornelia Huck8a824722006-11-20 17:07:51 +0100506 *
Cornelia Huck8a824722006-11-20 17:07:51 +0100507 * @kobj: struct kobject that the action is happening to
Julia Lawalledbbf992016-10-01 21:46:28 +0200508 * @action: action that is happening
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800509 *
510 * Returns 0 if kobject_uevent() is completed with success or the
511 * corresponding error when it fails.
Cornelia Huck8a824722006-11-20 17:07:51 +0100512 */
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800513int kobject_uevent(struct kobject *kobj, enum kobject_action action)
Cornelia Huck8a824722006-11-20 17:07:51 +0100514{
Aneesh Kumar K.V542cfce2006-12-19 13:01:27 -0800515 return kobject_uevent_env(kobj, action, NULL);
Cornelia Huck8a824722006-11-20 17:07:51 +0100516}
Kay Sievers312c0042005-11-16 09:00:00 +0100517EXPORT_SYMBOL_GPL(kobject_uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519/**
Kay Sievers7eff2e72007-08-14 15:15:12 +0200520 * add_uevent_var - add key value string to the environment buffer
521 * @env: environment buffer structure
522 * @format: printf format for the key=value pair
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 *
524 * Returns 0 if environment variable was added successfully or -ENOMEM
525 * if no space was available.
526 */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200527int add_uevent_var(struct kobj_uevent_env *env, const char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 va_list args;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200530 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Kay Sievers7eff2e72007-08-14 15:15:12 +0200532 if (env->envp_idx >= ARRAY_SIZE(env->envp)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700533 WARN(1, KERN_ERR "add_uevent_var: too many keys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 va_start(args, format);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200538 len = vsnprintf(&env->buf[env->buflen],
539 sizeof(env->buf) - env->buflen,
540 format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 va_end(args);
542
Kay Sievers7eff2e72007-08-14 15:15:12 +0200543 if (len >= (sizeof(env->buf) - env->buflen)) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700544 WARN(1, KERN_ERR "add_uevent_var: buffer size too small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Kay Sievers7eff2e72007-08-14 15:15:12 +0200548 env->envp[env->envp_idx++] = &env->buf[env->buflen];
549 env->buflen += len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return 0;
551}
Kay Sievers312c0042005-11-16 09:00:00 +0100552EXPORT_SYMBOL_GPL(add_uevent_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200554#if defined(CONFIG_NET)
Eric W. Biederman07e98962010-05-04 17:36:44 -0700555static int uevent_net_init(struct net *net)
Kay Sievers5f123fb2005-11-11 14:43:07 +0100556{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700557 struct uevent_sock *ue_sk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000558 struct netlink_kernel_cfg cfg = {
559 .groups = 1,
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +0000560 .flags = NL_CFG_F_NONROOT_RECV,
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000561 };
Eric W. Biederman07e98962010-05-04 17:36:44 -0700562
563 ue_sk = kzalloc(sizeof(*ue_sk), GFP_KERNEL);
564 if (!ue_sk)
565 return -ENOMEM;
566
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000567 ue_sk->sk = netlink_kernel_create(net, NETLINK_KOBJECT_UEVENT, &cfg);
Eric W. Biederman07e98962010-05-04 17:36:44 -0700568 if (!ue_sk->sk) {
Kay Sievers5f123fb2005-11-11 14:43:07 +0100569 printk(KERN_ERR
570 "kobject_uevent: unable to create netlink socket!\n");
Dan Carpenter743db2d2010-05-25 11:51:10 +0200571 kfree(ue_sk);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100572 return -ENODEV;
573 }
Eric W. Biederman07e98962010-05-04 17:36:44 -0700574 mutex_lock(&uevent_sock_mutex);
575 list_add_tail(&ue_sk->list, &uevent_sock_list);
576 mutex_unlock(&uevent_sock_mutex);
Kay Sievers5f123fb2005-11-11 14:43:07 +0100577 return 0;
578}
579
Eric W. Biederman07e98962010-05-04 17:36:44 -0700580static void uevent_net_exit(struct net *net)
581{
582 struct uevent_sock *ue_sk;
583
584 mutex_lock(&uevent_sock_mutex);
585 list_for_each_entry(ue_sk, &uevent_sock_list, list) {
586 if (sock_net(ue_sk->sk) == net)
587 goto found;
588 }
589 mutex_unlock(&uevent_sock_mutex);
590 return;
591
592found:
593 list_del(&ue_sk->list);
594 mutex_unlock(&uevent_sock_mutex);
595
596 netlink_kernel_release(ue_sk->sk);
597 kfree(ue_sk);
598}
599
600static struct pernet_operations uevent_net_ops = {
601 .init = uevent_net_init,
602 .exit = uevent_net_exit,
603};
604
605static int __init kobject_uevent_init(void)
606{
Eric W. Biederman07e98962010-05-04 17:36:44 -0700607 return register_pernet_subsys(&uevent_net_ops);
608}
609
610
Kay Sievers5f123fb2005-11-11 14:43:07 +0100611postcore_initcall(kobject_uevent_init);
Kay Sievers4d17ffd2006-04-25 15:37:26 +0200612#endif