1 /* request_key.c: request a key from userspace
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/module.h>
13 #include <linux/sched.h>
14 #include <linux/kmod.h>
15 #include <linux/err.h>
18 struct key_construction
{
19 struct list_head link
; /* link in construction queue */
20 struct key
*key
; /* key being constructed */
23 /* when waiting for someone else's keys, you get added to this */
24 DECLARE_WAIT_QUEUE_HEAD(request_key_conswq
);
26 /*****************************************************************************/
28 * request userspace finish the construction of a key
29 * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring> <info>"
30 * - if callout_info is an empty string, it'll be rendered as a "-" instead
32 static int call_request_key(struct key
*key
,
34 const char *callout_info
)
36 struct task_struct
*tsk
= current
;
38 key_serial_t prkey
, sskey
;
39 char *argv
[10], *envp
[3], uid_str
[12], gid_str
[12];
40 char key_str
[12], keyring_str
[3][12];
43 /* record the UID and GID */
44 sprintf(uid_str
, "%d", current
->fsuid
);
45 sprintf(gid_str
, "%d", current
->fsgid
);
47 /* we say which key is under construction */
48 sprintf(key_str
, "%d", key
->serial
);
50 /* we specify the process's default keyrings */
51 sprintf(keyring_str
[0], "%d",
52 tsk
->thread_keyring
? tsk
->thread_keyring
->serial
: 0);
55 if (tsk
->signal
->process_keyring
)
56 prkey
= tsk
->signal
->process_keyring
->serial
;
59 spin_lock_irqsave(&tsk
->sighand
->siglock
, flags
);
60 if (tsk
->signal
->session_keyring
)
61 sskey
= tsk
->signal
->session_keyring
->serial
;
62 spin_unlock_irqrestore(&tsk
->sighand
->siglock
, flags
);
66 sskey
= tsk
->user
->session_keyring
->serial
;
68 sprintf(keyring_str
[1], "%d", prkey
);
69 sprintf(keyring_str
[2], "%d", sskey
);
71 /* set up a minimal environment */
74 envp
[i
++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
77 /* set up the argument list */
79 argv
[i
++] = "/sbin/request-key";
80 argv
[i
++] = (char *) op
;
84 argv
[i
++] = keyring_str
[0];
85 argv
[i
++] = keyring_str
[1];
86 argv
[i
++] = keyring_str
[2];
87 argv
[i
++] = callout_info
[0] ? (char *) callout_info
: "-";
91 return call_usermodehelper(argv
[0], argv
, envp
, 1);
93 } /* end call_request_key() */
95 /*****************************************************************************/
97 * call out to userspace for the key
98 * - called with the construction sem held, but the sem is dropped here
99 * - we ignore program failure and go on key status instead
101 static struct key
*__request_key_construction(struct key_type
*type
,
102 const char *description
,
103 const char *callout_info
)
105 struct key_construction cons
;
110 /* create a key and add it to the queue */
111 key
= key_alloc(type
, description
,
112 current
->fsuid
, current
->fsgid
, KEY_USR_ALL
, 0);
116 write_lock(&key
->lock
);
117 key
->flags
|= KEY_FLAG_USER_CONSTRUCT
;
118 write_unlock(&key
->lock
);
121 list_add_tail(&cons
.link
, &key
->user
->consq
);
123 /* we drop the construction sem here on behalf of the caller */
124 up_write(&key_construction_sem
);
127 ret
= call_request_key(key
, "create", callout_info
);
131 /* if the key wasn't instantiated, then we want to give an error */
133 if (!(key
->flags
& KEY_FLAG_INSTANTIATED
))
136 down_write(&key_construction_sem
);
137 list_del(&cons
.link
);
138 up_write(&key_construction_sem
);
140 /* also give an error if the key was negatively instantiated */
142 if (key
->flags
& KEY_FLAG_NEGATIVE
) {
144 key
= ERR_PTR(-ENOKEY
);
151 /* it wasn't instantiated
152 * - remove from construction queue
153 * - mark the key as dead
156 down_write(&key_construction_sem
);
158 list_del(&cons
.link
);
160 write_lock(&key
->lock
);
161 key
->flags
&= ~KEY_FLAG_USER_CONSTRUCT
;
163 /* check it didn't get instantiated between the check and the down */
164 if (!(key
->flags
& KEY_FLAG_INSTANTIATED
)) {
165 key
->flags
|= KEY_FLAG_INSTANTIATED
| KEY_FLAG_NEGATIVE
;
169 write_unlock(&key
->lock
);
170 up_write(&key_construction_sem
);
173 goto check_not_negative
; /* surprisingly, the key got
176 /* set the timeout and store in the session keyring if we can */
177 now
= current_kernel_time();
178 key
->expiry
= now
.tv_sec
+ key_negative_timeout
;
180 if (current
->signal
->session_keyring
) {
184 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
185 keyring
= current
->signal
->session_keyring
;
186 atomic_inc(&keyring
->usage
);
187 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
189 key_link(keyring
, key
);
195 /* notify anyone who was waiting */
196 wake_up_all(&request_key_conswq
);
202 up_write(&key_construction_sem
);
205 } /* end __request_key_construction() */
207 /*****************************************************************************/
209 * call out to userspace to request the key
210 * - we check the construction queue first to see if an appropriate key is
211 * already being constructed by userspace
213 static struct key
*request_key_construction(struct key_type
*type
,
214 const char *description
,
215 struct key_user
*user
,
216 const char *callout_info
)
218 struct key_construction
*pcons
;
219 struct key
*key
, *ckey
;
221 DECLARE_WAITQUEUE(myself
, current
);
223 /* see if there's such a key under construction already */
224 down_write(&key_construction_sem
);
226 list_for_each_entry(pcons
, &user
->consq
, link
) {
229 if (ckey
->type
!= type
)
232 if (type
->match(ckey
, description
))
233 goto found_key_under_construction
;
236 /* see about getting userspace to construct the key */
237 key
= __request_key_construction(type
, description
, callout_info
);
241 /* someone else has the same key under construction
242 * - we want to keep an eye on their key
244 found_key_under_construction
:
245 atomic_inc(&ckey
->usage
);
246 up_write(&key_construction_sem
);
248 /* wait for the key to be completed one way or another */
249 add_wait_queue(&request_key_conswq
, &myself
);
252 set_current_state(TASK_UNINTERRUPTIBLE
);
253 if (!(ckey
->flags
& KEY_FLAG_USER_CONSTRUCT
))
258 set_current_state(TASK_RUNNING
);
259 remove_wait_queue(&request_key_conswq
, &myself
);
261 /* we'll need to search this process's keyrings to see if the key is
262 * now there since we can't automatically assume it's also available
267 key
= NULL
; /* request a retry */
270 } /* end request_key_construction() */
272 /*****************************************************************************/
275 * - search the process's keyrings
276 * - check the list of keys being created or updated
277 * - call out to userspace for a key if requested (supplementary info can be
280 struct key
*request_key(struct key_type
*type
,
281 const char *description
,
282 const char *callout_info
)
284 struct key_user
*user
;
287 /* search all the process keyrings for a key */
288 key
= search_process_keyrings_aux(type
, description
, type
->match
);
290 if (PTR_ERR(key
) == -EAGAIN
) {
291 /* the search failed, but the keyrings were searchable, so we
292 * should consult userspace if we can */
293 key
= ERR_PTR(-ENOKEY
);
297 /* - get hold of the user's construction queue */
298 user
= key_user_lookup(current
->fsuid
);
300 key
= ERR_PTR(-ENOMEM
);
305 /* ask userspace (returns NULL if it waited on a key
306 * being constructed) */
307 key
= request_key_construction(type
, description
,
312 /* someone else made the key we want, so we need to
313 * search again as it might now be available to us */
314 key
= search_process_keyrings_aux(type
, description
,
316 if (PTR_ERR(key
) != -EAGAIN
)
326 } /* end request_key() */
328 EXPORT_SYMBOL(request_key
);
330 /*****************************************************************************/
334 int key_validate(struct key
*key
)
340 /* check it's still accessible */
342 if (key
->flags
& (KEY_FLAG_REVOKED
| KEY_FLAG_DEAD
))
345 /* check it hasn't expired */
348 now
= current_kernel_time();
349 if (now
.tv_sec
>= key
->expiry
)
357 } /* end key_validate() */
359 EXPORT_SYMBOL(key_validate
);