2 * umh - the kernel usermode helper
4 #include <linux/module.h>
5 #include <linux/sched.h>
6 #include <linux/sched/task.h>
7 #include <linux/binfmts.h>
8 #include <linux/syscalls.h>
9 #include <linux/unistd.h>
10 #include <linux/kmod.h>
11 #include <linux/slab.h>
12 #include <linux/completion.h>
13 #include <linux/cred.h>
14 #include <linux/file.h>
15 #include <linux/fdtable.h>
16 #include <linux/workqueue.h>
17 #include <linux/security.h>
18 #include <linux/mount.h>
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/resource.h>
22 #include <linux/notifier.h>
23 #include <linux/suspend.h>
24 #include <linux/rwsem.h>
25 #include <linux/ptrace.h>
26 #include <linux/async.h>
27 #include <linux/uaccess.h>
29 #include <trace/events/module.h>
31 #define CAP_BSET (void *)1
32 #define CAP_PI (void *)2
34 static kernel_cap_t usermodehelper_bset
= CAP_FULL_SET
;
35 static kernel_cap_t usermodehelper_inheritable
= CAP_FULL_SET
;
36 static DEFINE_SPINLOCK(umh_sysctl_lock
);
37 static DECLARE_RWSEM(umhelper_sem
);
39 static void call_usermodehelper_freeinfo(struct subprocess_info
*info
)
42 (*info
->cleanup
)(info
);
46 static void umh_complete(struct subprocess_info
*sub_info
)
48 struct completion
*comp
= xchg(&sub_info
->complete
, NULL
);
50 * See call_usermodehelper_exec(). If xchg() returns NULL
51 * we own sub_info, the UMH_KILLABLE caller has gone away
52 * or the caller used UMH_NO_WAIT.
57 call_usermodehelper_freeinfo(sub_info
);
61 * This is the task which runs the usermode application
63 static int call_usermodehelper_exec_async(void *data
)
65 struct subprocess_info
*sub_info
= data
;
69 spin_lock_irq(¤t
->sighand
->siglock
);
70 flush_signal_handlers(current
, 1);
71 spin_unlock_irq(¤t
->sighand
->siglock
);
74 * Our parent (unbound workqueue) runs with elevated scheduling
75 * priority. Avoid propagating that into the userspace child.
77 set_user_nice(current
, 0);
80 new = prepare_kernel_cred(current
);
84 spin_lock(&umh_sysctl_lock
);
85 new->cap_bset
= cap_intersect(usermodehelper_bset
, new->cap_bset
);
86 new->cap_inheritable
= cap_intersect(usermodehelper_inheritable
,
87 new->cap_inheritable
);
88 spin_unlock(&umh_sysctl_lock
);
91 retval
= sub_info
->init(sub_info
, new);
100 retval
= do_execve(getname_kernel(sub_info
->path
),
101 (const char __user
*const __user
*)sub_info
->argv
,
102 (const char __user
*const __user
*)sub_info
->envp
);
104 sub_info
->retval
= retval
;
106 * call_usermodehelper_exec_sync() will call umh_complete
109 if (!(sub_info
->wait
& UMH_WAIT_PROC
))
110 umh_complete(sub_info
);
116 /* Handles UMH_WAIT_PROC. */
117 static void call_usermodehelper_exec_sync(struct subprocess_info
*sub_info
)
121 /* If SIGCLD is ignored sys_wait4 won't populate the status. */
122 kernel_sigaction(SIGCHLD
, SIG_DFL
);
123 pid
= kernel_thread(call_usermodehelper_exec_async
, sub_info
, SIGCHLD
);
125 sub_info
->retval
= pid
;
129 * Normally it is bogus to call wait4() from in-kernel because
130 * wait4() wants to write the exit code to a userspace address.
131 * But call_usermodehelper_exec_sync() always runs as kernel
132 * thread (workqueue) and put_user() to a kernel address works
133 * OK for kernel threads, due to their having an mm_segment_t
134 * which spans the entire address space.
136 * Thus the __user pointer cast is valid here.
138 sys_wait4(pid
, (int __user
*)&ret
, 0, NULL
);
141 * If ret is 0, either call_usermodehelper_exec_async failed and
142 * the real error code is already in sub_info->retval or
143 * sub_info->retval is 0 anyway, so don't mess with it then.
146 sub_info
->retval
= ret
;
149 /* Restore default kernel sig handler */
150 kernel_sigaction(SIGCHLD
, SIG_IGN
);
152 umh_complete(sub_info
);
156 * We need to create the usermodehelper kernel thread from a task that is affine
157 * to an optimized set of CPUs (or nohz housekeeping ones) such that they
158 * inherit a widest affinity irrespective of call_usermodehelper() callers with
159 * possibly reduced affinity (eg: per-cpu workqueues). We don't want
160 * usermodehelper targets to contend a busy CPU.
162 * Unbound workqueues provide such wide affinity and allow to block on
163 * UMH_WAIT_PROC requests without blocking pending request (up to some limit).
165 * Besides, workqueues provide the privilege level that caller might not have
166 * to perform the usermodehelper request.
169 static void call_usermodehelper_exec_work(struct work_struct
*work
)
171 struct subprocess_info
*sub_info
=
172 container_of(work
, struct subprocess_info
, work
);
174 if (sub_info
->wait
& UMH_WAIT_PROC
) {
175 call_usermodehelper_exec_sync(sub_info
);
179 * Use CLONE_PARENT to reparent it to kthreadd; we do not
180 * want to pollute current->children, and we need a parent
181 * that always ignores SIGCHLD to ensure auto-reaping.
183 pid
= kernel_thread(call_usermodehelper_exec_async
, sub_info
,
184 CLONE_PARENT
| SIGCHLD
);
186 sub_info
->retval
= pid
;
187 umh_complete(sub_info
);
193 * If set, call_usermodehelper_exec() will exit immediately returning -EBUSY
194 * (used for preventing user land processes from being created after the user
195 * land has been frozen during a system-wide hibernation or suspend operation).
196 * Should always be manipulated under umhelper_sem acquired for write.
198 static enum umh_disable_depth usermodehelper_disabled
= UMH_DISABLED
;
200 /* Number of helpers running */
201 static atomic_t running_helpers
= ATOMIC_INIT(0);
204 * Wait queue head used by usermodehelper_disable() to wait for all running
207 static DECLARE_WAIT_QUEUE_HEAD(running_helpers_waitq
);
210 * Used by usermodehelper_read_lock_wait() to wait for usermodehelper_disabled
213 static DECLARE_WAIT_QUEUE_HEAD(usermodehelper_disabled_waitq
);
216 * Time to wait for running_helpers to become zero before the setting of
217 * usermodehelper_disabled in usermodehelper_disable() fails
219 #define RUNNING_HELPERS_TIMEOUT (5 * HZ)
221 int usermodehelper_read_trylock(void)
226 down_read(&umhelper_sem
);
228 prepare_to_wait(&usermodehelper_disabled_waitq
, &wait
,
230 if (!usermodehelper_disabled
)
233 if (usermodehelper_disabled
== UMH_DISABLED
)
236 up_read(&umhelper_sem
);
244 down_read(&umhelper_sem
);
246 finish_wait(&usermodehelper_disabled_waitq
, &wait
);
249 EXPORT_SYMBOL_GPL(usermodehelper_read_trylock
);
251 long usermodehelper_read_lock_wait(long timeout
)
258 down_read(&umhelper_sem
);
260 prepare_to_wait(&usermodehelper_disabled_waitq
, &wait
,
261 TASK_UNINTERRUPTIBLE
);
262 if (!usermodehelper_disabled
)
265 up_read(&umhelper_sem
);
267 timeout
= schedule_timeout(timeout
);
271 down_read(&umhelper_sem
);
273 finish_wait(&usermodehelper_disabled_waitq
, &wait
);
276 EXPORT_SYMBOL_GPL(usermodehelper_read_lock_wait
);
278 void usermodehelper_read_unlock(void)
280 up_read(&umhelper_sem
);
282 EXPORT_SYMBOL_GPL(usermodehelper_read_unlock
);
285 * __usermodehelper_set_disable_depth - Modify usermodehelper_disabled.
286 * @depth: New value to assign to usermodehelper_disabled.
288 * Change the value of usermodehelper_disabled (under umhelper_sem locked for
289 * writing) and wakeup tasks waiting for it to change.
291 void __usermodehelper_set_disable_depth(enum umh_disable_depth depth
)
293 down_write(&umhelper_sem
);
294 usermodehelper_disabled
= depth
;
295 wake_up(&usermodehelper_disabled_waitq
);
296 up_write(&umhelper_sem
);
300 * __usermodehelper_disable - Prevent new helpers from being started.
301 * @depth: New value to assign to usermodehelper_disabled.
303 * Set usermodehelper_disabled to @depth and wait for running helpers to exit.
305 int __usermodehelper_disable(enum umh_disable_depth depth
)
312 down_write(&umhelper_sem
);
313 usermodehelper_disabled
= depth
;
314 up_write(&umhelper_sem
);
317 * From now on call_usermodehelper_exec() won't start any new
318 * helpers, so it is sufficient if running_helpers turns out to
319 * be zero at one point (it may be increased later, but that
322 retval
= wait_event_timeout(running_helpers_waitq
,
323 atomic_read(&running_helpers
) == 0,
324 RUNNING_HELPERS_TIMEOUT
);
328 __usermodehelper_set_disable_depth(UMH_ENABLED
);
332 static void helper_lock(void)
334 atomic_inc(&running_helpers
);
335 smp_mb__after_atomic();
338 static void helper_unlock(void)
340 if (atomic_dec_and_test(&running_helpers
))
341 wake_up(&running_helpers_waitq
);
345 * call_usermodehelper_setup - prepare to call a usermode helper
346 * @path: path to usermode executable
347 * @argv: arg vector for process
348 * @envp: environment for process
349 * @gfp_mask: gfp mask for memory allocation
350 * @cleanup: a cleanup function
351 * @init: an init function
352 * @data: arbitrary context sensitive data
354 * Returns either %NULL on allocation failure, or a subprocess_info
355 * structure. This should be passed to call_usermodehelper_exec to
356 * exec the process and free the structure.
358 * The init function is used to customize the helper process prior to
359 * exec. A non-zero return code causes the process to error out, exit,
360 * and return the failure to the calling process
362 * The cleanup function is just before ethe subprocess_info is about to
363 * be freed. This can be used for freeing the argv and envp. The
364 * Function must be runnable in either a process context or the
365 * context in which call_usermodehelper_exec is called.
367 struct subprocess_info
*call_usermodehelper_setup(const char *path
, char **argv
,
368 char **envp
, gfp_t gfp_mask
,
369 int (*init
)(struct subprocess_info
*info
, struct cred
*new),
370 void (*cleanup
)(struct subprocess_info
*info
),
373 struct subprocess_info
*sub_info
;
374 sub_info
= kzalloc(sizeof(struct subprocess_info
), gfp_mask
);
378 INIT_WORK(&sub_info
->work
, call_usermodehelper_exec_work
);
380 #ifdef CONFIG_STATIC_USERMODEHELPER
381 sub_info
->path
= CONFIG_STATIC_USERMODEHELPER_PATH
;
383 sub_info
->path
= path
;
385 sub_info
->argv
= argv
;
386 sub_info
->envp
= envp
;
388 sub_info
->cleanup
= cleanup
;
389 sub_info
->init
= init
;
390 sub_info
->data
= data
;
394 EXPORT_SYMBOL(call_usermodehelper_setup
);
397 * call_usermodehelper_exec - start a usermode application
398 * @sub_info: information about the subprocessa
399 * @wait: wait for the application to finish and return status.
400 * when UMH_NO_WAIT don't wait at all, but you get no useful error back
401 * when the program couldn't be exec'ed. This makes it safe to call
402 * from interrupt context.
404 * Runs a user-space application. The application is started
405 * asynchronously if wait is not set, and runs as a child of system workqueues.
406 * (ie. it runs with full root capabilities and optimized affinity).
408 int call_usermodehelper_exec(struct subprocess_info
*sub_info
, int wait
)
410 DECLARE_COMPLETION_ONSTACK(done
);
413 if (!sub_info
->path
) {
414 call_usermodehelper_freeinfo(sub_info
);
418 if (usermodehelper_disabled
) {
424 * If there is no binary for us to call, then just return and get out of
425 * here. This allows us to set STATIC_USERMODEHELPER_PATH to "" and
426 * disable all call_usermodehelper() calls.
428 if (strlen(sub_info
->path
) == 0)
432 * Set the completion pointer only if there is a waiter.
433 * This makes it possible to use umh_complete to free
434 * the data structure in case of UMH_NO_WAIT.
436 sub_info
->complete
= (wait
== UMH_NO_WAIT
) ? NULL
: &done
;
437 sub_info
->wait
= wait
;
439 queue_work(system_unbound_wq
, &sub_info
->work
);
440 if (wait
== UMH_NO_WAIT
) /* task has freed sub_info */
443 if (wait
& UMH_KILLABLE
) {
444 retval
= wait_for_completion_killable(&done
);
448 /* umh_complete() will see NULL and free sub_info */
449 if (xchg(&sub_info
->complete
, NULL
))
451 /* fallthrough, umh_complete() was already called */
454 wait_for_completion(&done
);
456 retval
= sub_info
->retval
;
458 call_usermodehelper_freeinfo(sub_info
);
463 EXPORT_SYMBOL(call_usermodehelper_exec
);
466 * call_usermodehelper() - prepare and start a usermode application
467 * @path: path to usermode executable
468 * @argv: arg vector for process
469 * @envp: environment for process
470 * @wait: wait for the application to finish and return status.
471 * when UMH_NO_WAIT don't wait at all, but you get no useful error back
472 * when the program couldn't be exec'ed. This makes it safe to call
473 * from interrupt context.
475 * This function is the equivalent to use call_usermodehelper_setup() and
476 * call_usermodehelper_exec().
478 int call_usermodehelper(const char *path
, char **argv
, char **envp
, int wait
)
480 struct subprocess_info
*info
;
481 gfp_t gfp_mask
= (wait
== UMH_NO_WAIT
) ? GFP_ATOMIC
: GFP_KERNEL
;
483 info
= call_usermodehelper_setup(path
, argv
, envp
, gfp_mask
,
488 return call_usermodehelper_exec(info
, wait
);
490 EXPORT_SYMBOL(call_usermodehelper
);
492 static int proc_cap_handler(struct ctl_table
*table
, int write
,
493 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
496 unsigned long cap_array
[_KERNEL_CAPABILITY_U32S
];
497 kernel_cap_t new_cap
;
500 if (write
&& (!capable(CAP_SETPCAP
) ||
501 !capable(CAP_SYS_MODULE
)))
505 * convert from the global kernel_cap_t to the ulong array to print to
506 * userspace if this is a read.
508 spin_lock(&umh_sysctl_lock
);
509 for (i
= 0; i
< _KERNEL_CAPABILITY_U32S
; i
++) {
510 if (table
->data
== CAP_BSET
)
511 cap_array
[i
] = usermodehelper_bset
.cap
[i
];
512 else if (table
->data
== CAP_PI
)
513 cap_array
[i
] = usermodehelper_inheritable
.cap
[i
];
517 spin_unlock(&umh_sysctl_lock
);
523 * actually read or write and array of ulongs from userspace. Remember
524 * these are least significant 32 bits first
526 err
= proc_doulongvec_minmax(&t
, write
, buffer
, lenp
, ppos
);
531 * convert from the sysctl array of ulongs to the kernel_cap_t
532 * internal representation
534 for (i
= 0; i
< _KERNEL_CAPABILITY_U32S
; i
++)
535 new_cap
.cap
[i
] = cap_array
[i
];
538 * Drop everything not in the new_cap (but don't add things)
541 spin_lock(&umh_sysctl_lock
);
542 if (table
->data
== CAP_BSET
)
543 usermodehelper_bset
= cap_intersect(usermodehelper_bset
, new_cap
);
544 if (table
->data
== CAP_PI
)
545 usermodehelper_inheritable
= cap_intersect(usermodehelper_inheritable
, new_cap
);
546 spin_unlock(&umh_sysctl_lock
);
552 struct ctl_table usermodehelper_table
[] = {
556 .maxlen
= _KERNEL_CAPABILITY_U32S
* sizeof(unsigned long),
558 .proc_handler
= proc_cap_handler
,
561 .procname
= "inheritable",
563 .maxlen
= _KERNEL_CAPABILITY_U32S
* sizeof(unsigned long),
565 .proc_handler
= proc_cap_handler
,