request_key_auth.c 6.6 KB
Newer Older
1 2 3 4 5 6 7 8 9
/* request_key_auth.c: request key authorisation controlling key def
 *
 * Copyright (C) 2005 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
10 11
 *
 * See Documentation/keys-request-key.txt
12 13 14 15 16 17
 */

#include <linux/module.h>
#include <linux/sched.h>
#include <linux/err.h>
#include <linux/seq_file.h>
18
#include <linux/slab.h>
19
#include <asm/uaccess.h>
20 21 22 23
#include "internal.h"

static int request_key_auth_instantiate(struct key *, const void *, size_t);
static void request_key_auth_describe(const struct key *, struct seq_file *);
24
static void request_key_auth_revoke(struct key *);
25
static void request_key_auth_destroy(struct key *);
26
static long request_key_auth_read(const struct key *, char __user *, size_t);
27 28 29 30 31 32 33 34 35

/*
 * the request-key authorisation key type definition
 */
struct key_type key_type_request_key_auth = {
	.name		= ".request_key_auth",
	.def_datalen	= sizeof(struct request_key_auth),
	.instantiate	= request_key_auth_instantiate,
	.describe	= request_key_auth_describe,
36
	.revoke		= request_key_auth_revoke,
37
	.destroy	= request_key_auth_destroy,
38
	.read		= request_key_auth_read,
39 40 41
};

/*
42
 * instantiate a request-key authorisation key
43 44 45 46 47
 */
static int request_key_auth_instantiate(struct key *key,
					const void *data,
					size_t datalen)
{
48 49
	key->payload.data = (struct request_key_auth *) data;
	return 0;
50
}
51 52

/*
53
 * reading a request-key authorisation key retrieves the callout information
54 55 56 57 58 59 60 61
 */
static void request_key_auth_describe(const struct key *key,
				      struct seq_file *m)
{
	struct request_key_auth *rka = key->payload.data;

	seq_puts(m, "key:");
	seq_puts(m, key->description);
62
	seq_printf(m, " pid:%d ci:%zu", rka->pid, rka->callout_len);
63
}
64

65 66 67 68 69 70 71 72 73 74 75
/*
 * read the callout_info data
 * - the key's semaphore is read-locked
 */
static long request_key_auth_read(const struct key *key,
				  char __user *buffer, size_t buflen)
{
	struct request_key_auth *rka = key->payload.data;
	size_t datalen;
	long ret;

76
	datalen = rka->callout_len;
77 78 79 80 81 82 83 84 85 86 87 88
	ret = datalen;

	/* we can return the data as is */
	if (buffer && buflen > 0) {
		if (buflen > datalen)
			buflen = datalen;

		if (copy_to_user(buffer, rka->callout_info, buflen) != 0)
			ret = -EFAULT;
	}

	return ret;
89
}
90

91 92 93 94 95 96 97 98 99 100
/*
 * handle revocation of an authorisation token key
 * - called with the key sem write-locked
 */
static void request_key_auth_revoke(struct key *key)
{
	struct request_key_auth *rka = key->payload.data;

	kenter("{%d}", key->serial);

D
David Howells 已提交
101 102 103
	if (rka->cred) {
		put_cred(rka->cred);
		rka->cred = NULL;
104
	}
105
}
106

107 108 109 110 111 112 113 114 115
/*
 * destroy an instantiation authorisation token key
 */
static void request_key_auth_destroy(struct key *key)
{
	struct request_key_auth *rka = key->payload.data;

	kenter("{%d}", key->serial);

D
David Howells 已提交
116 117 118
	if (rka->cred) {
		put_cred(rka->cred);
		rka->cred = NULL;
119 120
	}

121
	key_put(rka->target_key);
122
	key_put(rka->dest_keyring);
123
	kfree(rka->callout_info);
124
	kfree(rka);
125
}
126 127

/*
128 129
 * create an authorisation token for /sbin/request-key or whoever to gain
 * access to the caller's security data
130
 */
131
struct key *request_key_auth_new(struct key *target, const void *callout_info,
132
				 size_t callout_len, struct key *dest_keyring)
133
{
134
	struct request_key_auth *rka, *irka;
D
David Howells 已提交
135
	const struct cred *cred = current->cred;
136
	struct key *authkey = NULL;
137 138 139 140 141
	char desc[20];
	int ret;

	kenter("%d,", target->serial);

142 143 144 145 146 147
	/* allocate a auth record */
	rka = kmalloc(sizeof(*rka), GFP_KERNEL);
	if (!rka) {
		kleave(" = -ENOMEM");
		return ERR_PTR(-ENOMEM);
	}
148
	rka->callout_info = kmalloc(callout_len, GFP_KERNEL);
149 150 151 152 153
	if (!rka->callout_info) {
		kleave(" = -ENOMEM");
		kfree(rka);
		return ERR_PTR(-ENOMEM);
	}
154

155 156
	/* see if the calling process is already servicing the key request of
	 * another process */
D
David Howells 已提交
157
	if (cred->request_key_auth) {
158
		/* it is - use that instantiation context here too */
D
David Howells 已提交
159
		down_read(&cred->request_key_auth->sem);
160 161 162

		/* if the auth key has been revoked, then the key we're
		 * servicing is already instantiated */
D
David Howells 已提交
163
		if (test_bit(KEY_FLAG_REVOKED, &cred->request_key_auth->flags))
164 165
			goto auth_key_revoked;

D
David Howells 已提交
166 167
		irka = cred->request_key_auth->payload.data;
		rka->cred = get_cred(irka->cred);
168
		rka->pid = irka->pid;
169

D
David Howells 已提交
170
		up_read(&cred->request_key_auth->sem);
171
	}
172 173
	else {
		/* it isn't - use this process as the context */
D
David Howells 已提交
174
		rka->cred = get_cred(cred);
175 176 177 178
		rka->pid = current->pid;
	}

	rka->target_key = key_get(target);
179
	rka->dest_keyring = key_get(dest_keyring);
180 181
	memcpy(rka->callout_info, callout_info, callout_len);
	rka->callout_len = callout_len;
182 183 184 185

	/* allocate the auth key */
	sprintf(desc, "%x", target->serial);

186
	authkey = key_alloc(&key_type_request_key_auth, desc,
D
David Howells 已提交
187
			    cred->fsuid, cred->fsgid, cred,
188
			    KEY_POS_VIEW | KEY_POS_READ | KEY_POS_SEARCH |
189
			    KEY_USR_VIEW, KEY_ALLOC_NOT_IN_QUOTA);
190 191 192
	if (IS_ERR(authkey)) {
		ret = PTR_ERR(authkey);
		goto error_alloc;
193 194
	}

D
David Howells 已提交
195
	/* construct the auth key */
196 197 198
	ret = key_instantiate_and_link(authkey, rka, 0, NULL, NULL);
	if (ret < 0)
		goto error_inst;
199

D
David Howells 已提交
200
	kleave(" = {%d,%d}", authkey->serial, atomic_read(&authkey->usage));
201 202
	return authkey;

203
auth_key_revoked:
D
David Howells 已提交
204
	up_read(&cred->request_key_auth->sem);
205
	kfree(rka->callout_info);
206 207 208 209
	kfree(rka);
	kleave("= -EKEYREVOKED");
	return ERR_PTR(-EKEYREVOKED);

210 211 212 213 214
error_inst:
	key_revoke(authkey);
	key_put(authkey);
error_alloc:
	key_put(rka->target_key);
215
	key_put(rka->dest_keyring);
216
	kfree(rka->callout_info);
217 218 219
	kfree(rka);
	kleave("= %d", ret);
	return ERR_PTR(ret);
220
}
221

222 223 224 225 226 227 228 229 230 231
/*
 * see if an authorisation key is associated with a particular key
 */
static int key_get_instantiation_authkey_match(const struct key *key,
					       const void *_id)
{
	struct request_key_auth *rka = key->payload.data;
	key_serial_t id = (key_serial_t)(unsigned long) _id;

	return rka->target_key->serial == id;
232
}
233

234 235 236 237 238 239 240 241 242
/*
 * get the authorisation key for instantiation of a specific key if attached to
 * the current process's keyrings
 * - this key is inserted into a keyring and that is set as /sbin/request-key's
 *   session keyring
 * - a target_id of zero specifies any valid token
 */
struct key *key_get_instantiation_authkey(key_serial_t target_id)
{
D
David Howells 已提交
243
	const struct cred *cred = current_cred();
244 245 246 247 248 249 250
	struct key *authkey;
	key_ref_t authkey_ref;

	authkey_ref = search_process_keyrings(
		&key_type_request_key_auth,
		(void *) (unsigned long) target_id,
		key_get_instantiation_authkey_match,
D
David Howells 已提交
251
		cred);
252 253

	if (IS_ERR(authkey_ref)) {
254
		authkey = ERR_CAST(authkey_ref);
255 256
		goto error;
	}
257

258 259 260 261 262
	authkey = key_ref_to_ptr(authkey_ref);
	if (test_bit(KEY_FLAG_REVOKED, &authkey->flags)) {
		key_put(authkey);
		authkey = ERR_PTR(-EKEYREVOKED);
	}
263

264 265
error:
	return authkey;
266
}