aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/kmod.c
diff options
context:
space:
mode:
authorOleg Nesterov <oleg@redhat.com>2010-05-26 17:43:00 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-05-27 12:12:45 -0400
commit685bfd2c48bb3284d31e73ff3151c957d76deda9 (patch)
tree177210787515f48c0eaad5216bd012f4a2fb2149 /kernel/kmod.c
parent898b374af6f71041bd3bceebe257e564f3f1d458 (diff)
umh: creds: convert call_usermodehelper_keys() to use subprocess_info->init()
call_usermodehelper_keys() uses call_usermodehelper_setkeys() to change subprocess_info->cred in advance. Now that we have info->init() we can change this code to set tgcred->session_keyring in context of execing kernel thread. Note: since currently call_usermodehelper_keys() is never called with UMH_NO_WAIT, call_usermodehelper_keys()->key_get() and umh_keys_cleanup() are not really needed, we could rely on install_session_keyring_to_cred() which does key_get() on success. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Acked-by: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/kmod.c')
-rw-r--r--kernel/kmod.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/kernel/kmod.c b/kernel/kmod.c
index d1544547fea6..743d3883517c 100644
--- a/kernel/kmod.c
+++ b/kernel/kmod.c
@@ -367,24 +367,6 @@ struct subprocess_info *call_usermodehelper_setup(char *path, char **argv,
367EXPORT_SYMBOL(call_usermodehelper_setup); 367EXPORT_SYMBOL(call_usermodehelper_setup);
368 368
369/** 369/**
370 * call_usermodehelper_setkeys - set the session keys for usermode helper
371 * @info: a subprocess_info returned by call_usermodehelper_setup
372 * @session_keyring: the session keyring for the process
373 */
374void call_usermodehelper_setkeys(struct subprocess_info *info,
375 struct key *session_keyring)
376{
377#ifdef CONFIG_KEYS
378 struct thread_group_cred *tgcred = info->cred->tgcred;
379 key_put(tgcred->session_keyring);
380 tgcred->session_keyring = key_get(session_keyring);
381#else
382 BUG();
383#endif
384}
385EXPORT_SYMBOL(call_usermodehelper_setkeys);
386
387/**
388 * call_usermodehelper_setfns - set a cleanup/init function 370 * call_usermodehelper_setfns - set a cleanup/init function
389 * @info: a subprocess_info returned by call_usermodehelper_setup 371 * @info: a subprocess_info returned by call_usermodehelper_setup
390 * @cleanup: a cleanup function 372 * @cleanup: a cleanup function