diff options
Diffstat (limited to 'security/keys/request_key.c')
-rw-r--r-- | security/keys/request_key.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/security/keys/request_key.c b/security/keys/request_key.c index f656e9c069e3..f5ec9ac5d57c 100644 --- a/security/keys/request_key.c +++ b/security/keys/request_key.c | |||
@@ -58,6 +58,38 @@ void complete_request_key(struct key_construction *cons, int error) | |||
58 | } | 58 | } |
59 | EXPORT_SYMBOL(complete_request_key); | 59 | EXPORT_SYMBOL(complete_request_key); |
60 | 60 | ||
61 | static int umh_keys_init(struct subprocess_info *info) | ||
62 | { | ||
63 | struct cred *cred = (struct cred*)current_cred(); | ||
64 | struct key *keyring = info->data; | ||
65 | /* | ||
66 | * This is called in context of freshly forked kthread before | ||
67 | * kernel_execve(), we can just change our ->session_keyring. | ||
68 | */ | ||
69 | return install_session_keyring_to_cred(cred, keyring); | ||
70 | } | ||
71 | |||
72 | static void umh_keys_cleanup(struct subprocess_info *info) | ||
73 | { | ||
74 | struct key *keyring = info->data; | ||
75 | key_put(keyring); | ||
76 | } | ||
77 | |||
78 | static int call_usermodehelper_keys(char *path, char **argv, char **envp, | ||
79 | struct key *session_keyring, enum umh_wait wait) | ||
80 | { | ||
81 | gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL; | ||
82 | struct subprocess_info *info = | ||
83 | call_usermodehelper_setup(path, argv, envp, gfp_mask); | ||
84 | |||
85 | if (!info) | ||
86 | return -ENOMEM; | ||
87 | |||
88 | call_usermodehelper_setfns(info, umh_keys_init, umh_keys_cleanup, | ||
89 | key_get(session_keyring)); | ||
90 | return call_usermodehelper_exec(info, wait); | ||
91 | } | ||
92 | |||
61 | /* | 93 | /* |
62 | * request userspace finish the construction of a key | 94 | * request userspace finish the construction of a key |
63 | * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring>" | 95 | * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring>" |