blob: c615d473ce7ce2f6280845b3ea0f794e19cf944c [file] [log] [blame]
David Howells3e301482005-06-23 22:00:56 -07001/* request_key_auth.c: request key authorisation controlling key def
2 *
3 * Copyright (C) 2005 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
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.
David Howellsf1a9bad2005-10-07 15:04:52 +010010 *
11 * See Documentation/keys-request-key.txt
David Howells3e301482005-06-23 22:00:56 -070012 */
13
14#include <linux/module.h>
15#include <linux/sched.h>
16#include <linux/err.h>
17#include <linux/seq_file.h>
David Howellsb5f545c2006-01-08 01:02:47 -080018#include <asm/uaccess.h>
David Howells3e301482005-06-23 22:00:56 -070019#include "internal.h"
20
21static int request_key_auth_instantiate(struct key *, const void *, size_t);
22static void request_key_auth_describe(const struct key *, struct seq_file *);
David Howells04c567d2006-06-22 14:47:18 -070023static void request_key_auth_revoke(struct key *);
David Howells3e301482005-06-23 22:00:56 -070024static void request_key_auth_destroy(struct key *);
David Howellsb5f545c2006-01-08 01:02:47 -080025static long request_key_auth_read(const struct key *, char __user *, size_t);
David Howells3e301482005-06-23 22:00:56 -070026
27/*
28 * the request-key authorisation key type definition
29 */
30struct key_type key_type_request_key_auth = {
31 .name = ".request_key_auth",
32 .def_datalen = sizeof(struct request_key_auth),
33 .instantiate = request_key_auth_instantiate,
34 .describe = request_key_auth_describe,
David Howells04c567d2006-06-22 14:47:18 -070035 .revoke = request_key_auth_revoke,
David Howells3e301482005-06-23 22:00:56 -070036 .destroy = request_key_auth_destroy,
David Howellsb5f545c2006-01-08 01:02:47 -080037 .read = request_key_auth_read,
David Howells3e301482005-06-23 22:00:56 -070038};
39
40/*****************************************************************************/
41/*
David Howellsb5f545c2006-01-08 01:02:47 -080042 * instantiate a request-key authorisation key
David Howells3e301482005-06-23 22:00:56 -070043 */
44static int request_key_auth_instantiate(struct key *key,
45 const void *data,
46 size_t datalen)
47{
David Howellsb5f545c2006-01-08 01:02:47 -080048 key->payload.data = (struct request_key_auth *) data;
49 return 0;
David Howells3e301482005-06-23 22:00:56 -070050
51} /* end request_key_auth_instantiate() */
52
53/*****************************************************************************/
54/*
David Howellsb5f545c2006-01-08 01:02:47 -080055 * reading a request-key authorisation key retrieves the callout information
David Howells3e301482005-06-23 22:00:56 -070056 */
57static void request_key_auth_describe(const struct key *key,
58 struct seq_file *m)
59{
60 struct request_key_auth *rka = key->payload.data;
61
62 seq_puts(m, "key:");
63 seq_puts(m, key->description);
David Howells4a38e122008-04-29 01:01:24 -070064 seq_printf(m, " pid:%d ci:%zu", rka->pid, rka->callout_len);
David Howells3e301482005-06-23 22:00:56 -070065
66} /* end request_key_auth_describe() */
67
68/*****************************************************************************/
69/*
David Howellsb5f545c2006-01-08 01:02:47 -080070 * read the callout_info data
71 * - the key's semaphore is read-locked
72 */
73static long request_key_auth_read(const struct key *key,
74 char __user *buffer, size_t buflen)
75{
76 struct request_key_auth *rka = key->payload.data;
77 size_t datalen;
78 long ret;
79
David Howells4a38e122008-04-29 01:01:24 -070080 datalen = rka->callout_len;
David Howellsb5f545c2006-01-08 01:02:47 -080081 ret = datalen;
82
83 /* we can return the data as is */
84 if (buffer && buflen > 0) {
85 if (buflen > datalen)
86 buflen = datalen;
87
88 if (copy_to_user(buffer, rka->callout_info, buflen) != 0)
89 ret = -EFAULT;
90 }
91
92 return ret;
93
94} /* end request_key_auth_read() */
95
96/*****************************************************************************/
97/*
David Howells04c567d2006-06-22 14:47:18 -070098 * handle revocation of an authorisation token key
99 * - called with the key sem write-locked
100 */
101static void request_key_auth_revoke(struct key *key)
102{
103 struct request_key_auth *rka = key->payload.data;
104
105 kenter("{%d}", key->serial);
106
107 if (rka->context) {
108 put_task_struct(rka->context);
109 rka->context = NULL;
110 }
111
112} /* end request_key_auth_revoke() */
113
114/*****************************************************************************/
115/*
David Howells3e301482005-06-23 22:00:56 -0700116 * destroy an instantiation authorisation token key
117 */
118static void request_key_auth_destroy(struct key *key)
119{
120 struct request_key_auth *rka = key->payload.data;
121
122 kenter("{%d}", key->serial);
123
David Howells04c567d2006-06-22 14:47:18 -0700124 if (rka->context) {
125 put_task_struct(rka->context);
126 rka->context = NULL;
127 }
128
David Howells3e301482005-06-23 22:00:56 -0700129 key_put(rka->target_key);
David Howells76181c12007-10-16 23:29:46 -0700130 kfree(rka->callout_info);
David Howells74fd92c2005-10-07 15:01:09 +0100131 kfree(rka);
David Howells3e301482005-06-23 22:00:56 -0700132
133} /* end request_key_auth_destroy() */
134
135/*****************************************************************************/
136/*
David Howellsb5f545c2006-01-08 01:02:47 -0800137 * create an authorisation token for /sbin/request-key or whoever to gain
138 * access to the caller's security data
David Howells3e301482005-06-23 22:00:56 -0700139 */
David Howells4a38e122008-04-29 01:01:24 -0700140struct key *request_key_auth_new(struct key *target, const void *callout_info,
141 size_t callout_len)
David Howells3e301482005-06-23 22:00:56 -0700142{
David Howellsb5f545c2006-01-08 01:02:47 -0800143 struct request_key_auth *rka, *irka;
144 struct key *authkey = NULL;
David Howells3e301482005-06-23 22:00:56 -0700145 char desc[20];
146 int ret;
147
148 kenter("%d,", target->serial);
149
David Howellsb5f545c2006-01-08 01:02:47 -0800150 /* allocate a auth record */
151 rka = kmalloc(sizeof(*rka), GFP_KERNEL);
152 if (!rka) {
153 kleave(" = -ENOMEM");
154 return ERR_PTR(-ENOMEM);
David Howells3e301482005-06-23 22:00:56 -0700155 }
David Howells4a38e122008-04-29 01:01:24 -0700156 rka->callout_info = kmalloc(callout_len, GFP_KERNEL);
David Howells76181c12007-10-16 23:29:46 -0700157 if (!rka->callout_info) {
158 kleave(" = -ENOMEM");
159 kfree(rka);
160 return ERR_PTR(-ENOMEM);
161 }
David Howells3e301482005-06-23 22:00:56 -0700162
David Howellsb5f545c2006-01-08 01:02:47 -0800163 /* see if the calling process is already servicing the key request of
164 * another process */
165 if (current->request_key_auth) {
166 /* it is - use that instantiation context here too */
David Howells04c567d2006-06-22 14:47:18 -0700167 down_read(&current->request_key_auth->sem);
168
169 /* if the auth key has been revoked, then the key we're
170 * servicing is already instantiated */
171 if (test_bit(KEY_FLAG_REVOKED,
172 &current->request_key_auth->flags))
173 goto auth_key_revoked;
174
David Howellsb5f545c2006-01-08 01:02:47 -0800175 irka = current->request_key_auth->payload.data;
176 rka->context = irka->context;
177 rka->pid = irka->pid;
David Howells04c567d2006-06-22 14:47:18 -0700178 get_task_struct(rka->context);
179
180 up_read(&current->request_key_auth->sem);
David Howellsb5f545c2006-01-08 01:02:47 -0800181 }
182 else {
183 /* it isn't - use this process as the context */
184 rka->context = current;
185 rka->pid = current->pid;
David Howells04c567d2006-06-22 14:47:18 -0700186 get_task_struct(rka->context);
David Howellsb5f545c2006-01-08 01:02:47 -0800187 }
188
189 rka->target_key = key_get(target);
David Howells4a38e122008-04-29 01:01:24 -0700190 memcpy(rka->callout_info, callout_info, callout_len);
191 rka->callout_len = callout_len;
David Howellsb5f545c2006-01-08 01:02:47 -0800192
David Howells3e301482005-06-23 22:00:56 -0700193 /* allocate the auth key */
194 sprintf(desc, "%x", target->serial);
195
David Howellsb5f545c2006-01-08 01:02:47 -0800196 authkey = key_alloc(&key_type_request_key_auth, desc,
Michael LeMayd7200242006-06-22 14:47:17 -0700197 current->fsuid, current->fsgid, current,
David Howellsb5f545c2006-01-08 01:02:47 -0800198 KEY_POS_VIEW | KEY_POS_READ | KEY_POS_SEARCH |
David Howells7e047ef2006-06-26 00:24:50 -0700199 KEY_USR_VIEW, KEY_ALLOC_NOT_IN_QUOTA);
David Howellsb5f545c2006-01-08 01:02:47 -0800200 if (IS_ERR(authkey)) {
201 ret = PTR_ERR(authkey);
202 goto error_alloc;
David Howells3e301482005-06-23 22:00:56 -0700203 }
204
205 /* construct and attach to the keyring */
David Howellsb5f545c2006-01-08 01:02:47 -0800206 ret = key_instantiate_and_link(authkey, rka, 0, NULL, NULL);
207 if (ret < 0)
208 goto error_inst;
David Howells3e301482005-06-23 22:00:56 -0700209
David Howells04c567d2006-06-22 14:47:18 -0700210 kleave(" = {%d}", authkey->serial);
David Howellsb5f545c2006-01-08 01:02:47 -0800211 return authkey;
212
David Howells04c567d2006-06-22 14:47:18 -0700213auth_key_revoked:
214 up_read(&current->request_key_auth->sem);
David Howells76181c12007-10-16 23:29:46 -0700215 kfree(rka->callout_info);
David Howells04c567d2006-06-22 14:47:18 -0700216 kfree(rka);
217 kleave("= -EKEYREVOKED");
218 return ERR_PTR(-EKEYREVOKED);
219
David Howellsb5f545c2006-01-08 01:02:47 -0800220error_inst:
221 key_revoke(authkey);
222 key_put(authkey);
223error_alloc:
224 key_put(rka->target_key);
David Howells76181c12007-10-16 23:29:46 -0700225 kfree(rka->callout_info);
David Howellsb5f545c2006-01-08 01:02:47 -0800226 kfree(rka);
227 kleave("= %d", ret);
228 return ERR_PTR(ret);
David Howells3e301482005-06-23 22:00:56 -0700229
230} /* end request_key_auth_new() */
231
232/*****************************************************************************/
233/*
David Howellsb5f545c2006-01-08 01:02:47 -0800234 * see if an authorisation key is associated with a particular key
235 */
236static int key_get_instantiation_authkey_match(const struct key *key,
237 const void *_id)
238{
239 struct request_key_auth *rka = key->payload.data;
240 key_serial_t id = (key_serial_t)(unsigned long) _id;
241
242 return rka->target_key->serial == id;
243
244} /* end key_get_instantiation_authkey_match() */
245
246/*****************************************************************************/
247/*
David Howells3e301482005-06-23 22:00:56 -0700248 * get the authorisation key for instantiation of a specific key if attached to
249 * the current process's keyrings
250 * - this key is inserted into a keyring and that is set as /sbin/request-key's
251 * session keyring
252 * - a target_id of zero specifies any valid token
253 */
254struct key *key_get_instantiation_authkey(key_serial_t target_id)
255{
David Howellsb5f545c2006-01-08 01:02:47 -0800256 struct key *authkey;
257 key_ref_t authkey_ref;
David Howells3e301482005-06-23 22:00:56 -0700258
David Howellsb5f545c2006-01-08 01:02:47 -0800259 authkey_ref = search_process_keyrings(
260 &key_type_request_key_auth,
261 (void *) (unsigned long) target_id,
262 key_get_instantiation_authkey_match,
263 current);
David Howells3e301482005-06-23 22:00:56 -0700264
David Howellsb5f545c2006-01-08 01:02:47 -0800265 if (IS_ERR(authkey_ref)) {
David Howellse231c2e2008-02-07 00:15:26 -0800266 authkey = ERR_CAST(authkey_ref);
David Howellsb5f545c2006-01-08 01:02:47 -0800267 goto error;
268 }
David Howells3e301482005-06-23 22:00:56 -0700269
David Howellsb5f545c2006-01-08 01:02:47 -0800270 authkey = key_ref_to_ptr(authkey_ref);
271 if (test_bit(KEY_FLAG_REVOKED, &authkey->flags)) {
272 key_put(authkey);
273 authkey = ERR_PTR(-EKEYREVOKED);
274 }
David Howells3e301482005-06-23 22:00:56 -0700275
David Howellsb5f545c2006-01-08 01:02:47 -0800276error:
277 return authkey;
David Howells3e301482005-06-23 22:00:56 -0700278
279} /* end key_get_instantiation_authkey() */