request_key_auth.c 6.4 KB
Newer Older
1
/* Request key authorisation token key definition.
2 3 4 5 6 7 8 9
 *
 * 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
 *
R
Randy Dunlap 已提交
11
 * See Documentation/security/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
#include "internal.h"
21
#include <keys/user-type.h>
22

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

/*
31
 * The request-key authorisation key type definition.
32 33 34 35 36 37
 */
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,
38
	.revoke		= request_key_auth_revoke,
39
	.destroy	= request_key_auth_destroy,
40
	.read		= request_key_auth_read,
41 42 43
};

/*
44
 * Instantiate a request-key authorisation key.
45 46
 */
static int request_key_auth_instantiate(struct key *key,
47
					struct key_preparsed_payload *prep)
48
{
49
	key->payload.data = (struct request_key_auth *)prep->data;
50
	return 0;
51
}
52 53

/*
54
 * Describe an authorisation token.
55 56 57 58 59 60 61 62
 */
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);
D
David Howells 已提交
63 64
	if (key_is_instantiated(key))
		seq_printf(m, " pid:%d ci:%zu", rka->pid, rka->callout_len);
65
}
66

67
/*
68
 * Read the callout_info data (retrieves the callout information).
69 70 71 72 73 74 75 76 77
 * - 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;

78
	datalen = rka->callout_len;
79 80 81 82 83 84 85 86 87 88 89 90
	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;
91
}
92

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

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

D
David Howells 已提交
104 105 106
	if (rka->cred) {
		put_cred(rka->cred);
		rka->cred = NULL;
107
	}
108
}
109

110
/*
111
 * Destroy an instantiation authorisation token key.
112 113 114 115 116 117 118
 */
static void request_key_auth_destroy(struct key *key)
{
	struct request_key_auth *rka = key->payload.data;

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

D
David Howells 已提交
119 120 121
	if (rka->cred) {
		put_cred(rka->cred);
		rka->cred = NULL;
122 123
	}

124
	key_put(rka->target_key);
125
	key_put(rka->dest_keyring);
126
	kfree(rka->callout_info);
127
	kfree(rka);
128
}
129 130

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

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

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

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

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

D
David Howells 已提交
169 170
		irka = cred->request_key_auth->payload.data;
		rka->cred = get_cred(irka->cred);
171
		rka->pid = irka->pid;
172

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

	rka->target_key = key_get(target);
182
	rka->dest_keyring = key_get(dest_keyring);
183 184
	memcpy(rka->callout_info, callout_info, callout_len);
	rka->callout_len = callout_len;
185 186 187 188

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

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

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

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

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

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

/*
226 227
 * Search the current process's keyrings for the authorisation key for
 * instantiation of a key.
228 229 230
 */
struct key *key_get_instantiation_authkey(key_serial_t target_id)
{
231
	char description[16];
232 233
	struct keyring_search_context ctx = {
		.index_key.type		= &key_type_request_key_auth,
234
		.index_key.description	= description,
235
		.cred			= current_cred(),
236 237
		.match			= user_match,
		.match_data		= description,
238 239
		.flags			= KEYRING_SEARCH_LOOKUP_DIRECT,
	};
240 241 242
	struct key *authkey;
	key_ref_t authkey_ref;

243 244
	sprintf(description, "%x", target_id);

245
	authkey_ref = search_process_keyrings(&ctx);
246 247

	if (IS_ERR(authkey_ref)) {
248
		authkey = ERR_CAST(authkey_ref);
249 250
		if (authkey == ERR_PTR(-EAGAIN))
			authkey = ERR_PTR(-ENOKEY);
251 252
		goto error;
	}
253

254 255 256 257 258
	authkey = key_ref_to_ptr(authkey_ref);
	if (test_bit(KEY_FLAG_REVOKED, &authkey->flags)) {
		key_put(authkey);
		authkey = ERR_PTR(-EKEYREVOKED);
	}
259

260 261
error:
	return authkey;
262
}