1 // SPDX-License-Identifier: GPL-2.0-only
3 * umh - the kernel usermode helper
5 #include <linux/module.h>
6 #include <linux/sched.h>
7 #include <linux/sched/task.h>
8 #include <linux/binfmts.h>
9 #include <linux/syscalls.h>
10 #include <linux/unistd.h>
11 #include <linux/kmod.h>
12 #include <linux/slab.h>
13 #include <linux/completion.h>
14 #include <linux/cred.h>
15 #include <linux/file.h>
16 #include <linux/fdtable.h>
17 #include <linux/workqueue.h>
18 #include <linux/security.h>
19 #include <linux/mount.h>
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/resource.h>
23 #include <linux/notifier.h>
24 #include <linux/suspend.h>
25 #include <linux/rwsem.h>
26 #include <linux/ptrace.h>
27 #include <linux/async.h>
28 #include <linux/uaccess.h>
30 #include <trace/events/module.h>
32 #define CAP_BSET (void *)1
33 #define CAP_PI (void *)2
35 static kernel_cap_t usermodehelper_bset = CAP_FULL_SET;
36 static kernel_cap_t usermodehelper_inheritable = CAP_FULL_SET;
37 static DEFINE_SPINLOCK(umh_sysctl_lock);
38 static DECLARE_RWSEM(umhelper_sem);
40 static void call_usermodehelper_freeinfo(struct subprocess_info *info)
43 (*info->cleanup)(info);
47 static void umh_complete(struct subprocess_info *sub_info)
49 struct completion *comp = xchg(&sub_info->complete, NULL);
51 * See call_usermodehelper_exec(). If xchg() returns NULL
52 * we own sub_info, the UMH_KILLABLE caller has gone away
53 * or the caller used UMH_NO_WAIT.
58 call_usermodehelper_freeinfo(sub_info);
62 * This is the task which runs the usermode application
64 static int call_usermodehelper_exec_async(void *data)
66 struct subprocess_info *sub_info = data;
70 spin_lock_irq(¤t->sighand->siglock);
71 flush_signal_handlers(current, 1);
72 spin_unlock_irq(¤t->sighand->siglock);
75 * Our parent (unbound workqueue) runs with elevated scheduling
76 * priority. Avoid propagating that into the userspace child.
78 set_user_nice(current, 0);
81 new = prepare_kernel_cred(current);
85 spin_lock(&umh_sysctl_lock);
86 new->cap_bset = cap_intersect(usermodehelper_bset, new->cap_bset);
87 new->cap_inheritable = cap_intersect(usermodehelper_inheritable,
88 new->cap_inheritable);
89 spin_unlock(&umh_sysctl_lock);
92 retval = sub_info->init(sub_info, new);
101 retval = kernel_execve(sub_info->path,
102 (const char *const *)sub_info->argv,
103 (const char *const *)sub_info->envp);
105 sub_info->retval = retval;
107 * call_usermodehelper_exec_sync() will call umh_complete
110 if (!(sub_info->wait & UMH_WAIT_PROC))
111 umh_complete(sub_info);
117 /* Handles UMH_WAIT_PROC. */
118 static void call_usermodehelper_exec_sync(struct subprocess_info *sub_info)
122 /* If SIGCLD is ignored do_wait won't populate the status. */
123 kernel_sigaction(SIGCHLD, SIG_DFL);
124 pid = kernel_thread(call_usermodehelper_exec_async, sub_info, SIGCHLD);
126 sub_info->retval = pid;
128 kernel_wait(pid, &sub_info->retval);
130 /* Restore default kernel sig handler */
131 kernel_sigaction(SIGCHLD, SIG_IGN);
132 umh_complete(sub_info);
136 * We need to create the usermodehelper kernel thread from a task that is affine
137 * to an optimized set of CPUs (or nohz housekeeping ones) such that they
138 * inherit a widest affinity irrespective of call_usermodehelper() callers with
139 * possibly reduced affinity (eg: per-cpu workqueues). We don't want
140 * usermodehelper targets to contend a busy CPU.
142 * Unbound workqueues provide such wide affinity and allow to block on
143 * UMH_WAIT_PROC requests without blocking pending request (up to some limit).
145 * Besides, workqueues provide the privilege level that caller might not have
146 * to perform the usermodehelper request.
149 static void call_usermodehelper_exec_work(struct work_struct *work)
151 struct subprocess_info *sub_info =
152 container_of(work, struct subprocess_info, work);
154 if (sub_info->wait & UMH_WAIT_PROC) {
155 call_usermodehelper_exec_sync(sub_info);
159 * Use CLONE_PARENT to reparent it to kthreadd; we do not
160 * want to pollute current->children, and we need a parent
161 * that always ignores SIGCHLD to ensure auto-reaping.
163 pid = kernel_thread(call_usermodehelper_exec_async, sub_info,
164 CLONE_PARENT | SIGCHLD);
166 sub_info->retval = pid;
167 umh_complete(sub_info);
173 * If set, call_usermodehelper_exec() will exit immediately returning -EBUSY
174 * (used for preventing user land processes from being created after the user
175 * land has been frozen during a system-wide hibernation or suspend operation).
176 * Should always be manipulated under umhelper_sem acquired for write.
178 static enum umh_disable_depth usermodehelper_disabled = UMH_DISABLED;
180 /* Number of helpers running */
181 static atomic_t running_helpers = ATOMIC_INIT(0);
184 * Wait queue head used by usermodehelper_disable() to wait for all running
187 static DECLARE_WAIT_QUEUE_HEAD(running_helpers_waitq);
190 * Used by usermodehelper_read_lock_wait() to wait for usermodehelper_disabled
193 static DECLARE_WAIT_QUEUE_HEAD(usermodehelper_disabled_waitq);
196 * Time to wait for running_helpers to become zero before the setting of
197 * usermodehelper_disabled in usermodehelper_disable() fails
199 #define RUNNING_HELPERS_TIMEOUT (5 * HZ)
201 int usermodehelper_read_trylock(void)
206 down_read(&umhelper_sem);
208 prepare_to_wait(&usermodehelper_disabled_waitq, &wait,
210 if (!usermodehelper_disabled)
213 if (usermodehelper_disabled == UMH_DISABLED)
216 up_read(&umhelper_sem);
224 down_read(&umhelper_sem);
226 finish_wait(&usermodehelper_disabled_waitq, &wait);
229 EXPORT_SYMBOL_GPL(usermodehelper_read_trylock);
231 long usermodehelper_read_lock_wait(long timeout)
238 down_read(&umhelper_sem);
240 prepare_to_wait(&usermodehelper_disabled_waitq, &wait,
241 TASK_UNINTERRUPTIBLE);
242 if (!usermodehelper_disabled)
245 up_read(&umhelper_sem);
247 timeout = schedule_timeout(timeout);
251 down_read(&umhelper_sem);
253 finish_wait(&usermodehelper_disabled_waitq, &wait);
256 EXPORT_SYMBOL_GPL(usermodehelper_read_lock_wait);
258 void usermodehelper_read_unlock(void)
260 up_read(&umhelper_sem);
262 EXPORT_SYMBOL_GPL(usermodehelper_read_unlock);
265 * __usermodehelper_set_disable_depth - Modify usermodehelper_disabled.
266 * @depth: New value to assign to usermodehelper_disabled.
268 * Change the value of usermodehelper_disabled (under umhelper_sem locked for
269 * writing) and wakeup tasks waiting for it to change.
271 void __usermodehelper_set_disable_depth(enum umh_disable_depth depth)
273 down_write(&umhelper_sem);
274 usermodehelper_disabled = depth;
275 wake_up(&usermodehelper_disabled_waitq);
276 up_write(&umhelper_sem);
280 * __usermodehelper_disable - Prevent new helpers from being started.
281 * @depth: New value to assign to usermodehelper_disabled.
283 * Set usermodehelper_disabled to @depth and wait for running helpers to exit.
285 int __usermodehelper_disable(enum umh_disable_depth depth)
292 down_write(&umhelper_sem);
293 usermodehelper_disabled = depth;
294 up_write(&umhelper_sem);
297 * From now on call_usermodehelper_exec() won't start any new
298 * helpers, so it is sufficient if running_helpers turns out to
299 * be zero at one point (it may be increased later, but that
302 retval = wait_event_timeout(running_helpers_waitq,
303 atomic_read(&running_helpers) == 0,
304 RUNNING_HELPERS_TIMEOUT);
308 __usermodehelper_set_disable_depth(UMH_ENABLED);
312 static void helper_lock(void)
314 atomic_inc(&running_helpers);
315 smp_mb__after_atomic();
318 static void helper_unlock(void)
320 if (atomic_dec_and_test(&running_helpers))
321 wake_up(&running_helpers_waitq);
325 * call_usermodehelper_setup - prepare to call a usermode helper
326 * @path: path to usermode executable
327 * @argv: arg vector for process
328 * @envp: environment for process
329 * @gfp_mask: gfp mask for memory allocation
330 * @cleanup: a cleanup function
331 * @init: an init function
332 * @data: arbitrary context sensitive data
334 * Returns either %NULL on allocation failure, or a subprocess_info
335 * structure. This should be passed to call_usermodehelper_exec to
336 * exec the process and free the structure.
338 * The init function is used to customize the helper process prior to
339 * exec. A non-zero return code causes the process to error out, exit,
340 * and return the failure to the calling process
342 * The cleanup function is just before ethe subprocess_info is about to
343 * be freed. This can be used for freeing the argv and envp. The
344 * Function must be runnable in either a process context or the
345 * context in which call_usermodehelper_exec is called.
347 struct subprocess_info *call_usermodehelper_setup(const char *path, char **argv,
348 char **envp, gfp_t gfp_mask,
349 int (*init)(struct subprocess_info *info, struct cred *new),
350 void (*cleanup)(struct subprocess_info *info),
353 struct subprocess_info *sub_info;
354 sub_info = kzalloc(sizeof(struct subprocess_info), gfp_mask);
358 INIT_WORK(&sub_info->work, call_usermodehelper_exec_work);
360 #ifdef CONFIG_STATIC_USERMODEHELPER
361 sub_info->path = CONFIG_STATIC_USERMODEHELPER_PATH;
363 sub_info->path = path;
365 sub_info->argv = argv;
366 sub_info->envp = envp;
368 sub_info->cleanup = cleanup;
369 sub_info->init = init;
370 sub_info->data = data;
374 EXPORT_SYMBOL(call_usermodehelper_setup);
377 * call_usermodehelper_exec - start a usermode application
378 * @sub_info: information about the subprocessa
379 * @wait: wait for the application to finish and return status.
380 * when UMH_NO_WAIT don't wait at all, but you get no useful error back
381 * when the program couldn't be exec'ed. This makes it safe to call
382 * from interrupt context.
384 * Runs a user-space application. The application is started
385 * asynchronously if wait is not set, and runs as a child of system workqueues.
386 * (ie. it runs with full root capabilities and optimized affinity).
388 * Note: successful return value does not guarantee the helper was called at
389 * all. You can't rely on sub_info->{init,cleanup} being called even for
390 * UMH_WAIT_* wait modes as STATIC_USERMODEHELPER_PATH="" turns all helpers
391 * into a successful no-op.
393 int call_usermodehelper_exec(struct subprocess_info *sub_info, int wait)
395 DECLARE_COMPLETION_ONSTACK(done);
398 if (!sub_info->path) {
399 call_usermodehelper_freeinfo(sub_info);
403 if (usermodehelper_disabled) {
409 * If there is no binary for us to call, then just return and get out of
410 * here. This allows us to set STATIC_USERMODEHELPER_PATH to "" and
411 * disable all call_usermodehelper() calls.
413 if (strlen(sub_info->path) == 0)
417 * Set the completion pointer only if there is a waiter.
418 * This makes it possible to use umh_complete to free
419 * the data structure in case of UMH_NO_WAIT.
421 sub_info->complete = (wait == UMH_NO_WAIT) ? NULL : &done;
422 sub_info->wait = wait;
424 queue_work(system_unbound_wq, &sub_info->work);
425 if (wait == UMH_NO_WAIT) /* task has freed sub_info */
428 if (wait & UMH_KILLABLE) {
429 retval = wait_for_completion_killable(&done);
433 /* umh_complete() will see NULL and free sub_info */
434 if (xchg(&sub_info->complete, NULL))
436 /* fallthrough, umh_complete() was already called */
439 wait_for_completion(&done);
441 retval = sub_info->retval;
443 call_usermodehelper_freeinfo(sub_info);
448 EXPORT_SYMBOL(call_usermodehelper_exec);
451 * call_usermodehelper() - prepare and start a usermode application
452 * @path: path to usermode executable
453 * @argv: arg vector for process
454 * @envp: environment for process
455 * @wait: wait for the application to finish and return status.
456 * when UMH_NO_WAIT don't wait at all, but you get no useful error back
457 * when the program couldn't be exec'ed. This makes it safe to call
458 * from interrupt context.
460 * This function is the equivalent to use call_usermodehelper_setup() and
461 * call_usermodehelper_exec().
463 int call_usermodehelper(const char *path, char **argv, char **envp, int wait)
465 struct subprocess_info *info;
466 gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL;
468 info = call_usermodehelper_setup(path, argv, envp, gfp_mask,
473 return call_usermodehelper_exec(info, wait);
475 EXPORT_SYMBOL(call_usermodehelper);
477 static int proc_cap_handler(struct ctl_table *table, int write,
478 void *buffer, size_t *lenp, loff_t *ppos)
481 unsigned long cap_array[_KERNEL_CAPABILITY_U32S];
482 kernel_cap_t new_cap;
485 if (write && (!capable(CAP_SETPCAP) ||
486 !capable(CAP_SYS_MODULE)))
490 * convert from the global kernel_cap_t to the ulong array to print to
491 * userspace if this is a read.
493 spin_lock(&umh_sysctl_lock);
494 for (i = 0; i < _KERNEL_CAPABILITY_U32S; i++) {
495 if (table->data == CAP_BSET)
496 cap_array[i] = usermodehelper_bset.cap[i];
497 else if (table->data == CAP_PI)
498 cap_array[i] = usermodehelper_inheritable.cap[i];
502 spin_unlock(&umh_sysctl_lock);
508 * actually read or write and array of ulongs from userspace. Remember
509 * these are least significant 32 bits first
511 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
516 * convert from the sysctl array of ulongs to the kernel_cap_t
517 * internal representation
519 for (i = 0; i < _KERNEL_CAPABILITY_U32S; i++)
520 new_cap.cap[i] = cap_array[i];
523 * Drop everything not in the new_cap (but don't add things)
526 spin_lock(&umh_sysctl_lock);
527 if (table->data == CAP_BSET)
528 usermodehelper_bset = cap_intersect(usermodehelper_bset, new_cap);
529 if (table->data == CAP_PI)
530 usermodehelper_inheritable = cap_intersect(usermodehelper_inheritable, new_cap);
531 spin_unlock(&umh_sysctl_lock);
537 struct ctl_table usermodehelper_table[] = {
541 .maxlen = _KERNEL_CAPABILITY_U32S * sizeof(unsigned long),
543 .proc_handler = proc_cap_handler,
546 .procname = "inheritable",
548 .maxlen = _KERNEL_CAPABILITY_U32S * sizeof(unsigned long),
550 .proc_handler = proc_cap_handler,