request_key_auth.c 6.9 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
 *
K
Kees Cook 已提交
11
 * See Documentation/security/keys/request-key.rst
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 <linux/uaccess.h>
20
#include "internal.h"
21
#include <keys/request_key_auth-type.h>
22

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

/*
33
 * The request-key authorisation key type definition.
34 35 36 37
 */
struct key_type key_type_request_key_auth = {
	.name		= ".request_key_auth",
	.def_datalen	= sizeof(struct request_key_auth),
38 39
	.preparse	= request_key_auth_preparse,
	.free_preparse	= request_key_auth_free_preparse,
40 41
	.instantiate	= request_key_auth_instantiate,
	.describe	= request_key_auth_describe,
42
	.revoke		= request_key_auth_revoke,
43
	.destroy	= request_key_auth_destroy,
44
	.read		= request_key_auth_read,
45 46
};

D
David Howells 已提交
47
static int request_key_auth_preparse(struct key_preparsed_payload *prep)
48 49 50 51
{
	return 0;
}

D
David Howells 已提交
52
static void request_key_auth_free_preparse(struct key_preparsed_payload *prep)
53 54 55
{
}

56
/*
57
 * Instantiate a request-key authorisation key.
58 59
 */
static int request_key_auth_instantiate(struct key *key,
60
					struct key_preparsed_payload *prep)
61
{
62
	key->payload.data[0] = (struct request_key_auth *)prep->data;
63
	return 0;
64
}
65 66

/*
67
 * Describe an authorisation token.
68 69 70 71
 */
static void request_key_auth_describe(const struct key *key,
				      struct seq_file *m)
{
72
	struct request_key_auth *rka = get_request_key_auth(key);
73 74 75

	seq_puts(m, "key:");
	seq_puts(m, key->description);
76
	if (key_is_positive(key))
D
David Howells 已提交
77
		seq_printf(m, " pid:%d ci:%zu", rka->pid, rka->callout_len);
78
}
79

80
/*
81
 * Read the callout_info data (retrieves the callout information).
82 83 84 85 86
 * - the key's semaphore is read-locked
 */
static long request_key_auth_read(const struct key *key,
				  char __user *buffer, size_t buflen)
{
87
	struct request_key_auth *rka = get_request_key_auth(key);
88 89 90
	size_t datalen;
	long ret;

91
	datalen = rka->callout_len;
92 93 94 95 96 97 98 99 100 101 102 103
	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;
104
}
105

106
/*
107 108 109
 * Handle revocation of an authorisation token key.
 *
 * Called with the key sem write-locked.
110 111 112
 */
static void request_key_auth_revoke(struct key *key)
{
113
	struct request_key_auth *rka = get_request_key_auth(key);
114 115 116

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

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

123 124 125 126 127 128 129 130 131 132 133 134
static void free_request_key_auth(struct request_key_auth *rka)
{
	if (!rka)
		return;
	key_put(rka->target_key);
	key_put(rka->dest_keyring);
	if (rka->cred)
		put_cred(rka->cred);
	kfree(rka->callout_info);
	kfree(rka);
}

135
/*
136
 * Destroy an instantiation authorisation token key.
137 138 139
 */
static void request_key_auth_destroy(struct key *key)
{
140
	struct request_key_auth *rka = get_request_key_auth(key);
141 142 143

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

144
	free_request_key_auth(rka);
145
}
146 147

/*
148 149
 * Create an authorisation token for /sbin/request-key or whoever to gain
 * access to the caller's security data.
150
 */
151 152 153
struct key *request_key_auth_new(struct key *target, const char *op,
				 const void *callout_info, size_t callout_len,
				 struct key *dest_keyring)
154
{
155
	struct request_key_auth *rka, *irka;
D
David Howells 已提交
156
	const struct cred *cred = current->cred;
157
	struct key *authkey = NULL;
158
	char desc[20];
159
	int ret = -ENOMEM;
160 161 162

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

163
	/* allocate a auth record */
164 165 166
	rka = kzalloc(sizeof(*rka), GFP_KERNEL);
	if (!rka)
		goto error;
167
	rka->callout_info = kmemdup(callout_info, callout_len, GFP_KERNEL);
168 169
	if (!rka->callout_info)
		goto error_free_rka;
170
	rka->callout_len = callout_len;
171
	strlcpy(rka->op, op, sizeof(rka->op));
172

173 174
	/* see if the calling process is already servicing the key request of
	 * another process */
D
David Howells 已提交
175
	if (cred->request_key_auth) {
176
		/* it is - use that instantiation context here too */
D
David Howells 已提交
177
		down_read(&cred->request_key_auth->sem);
178 179 180

		/* if the auth key has been revoked, then the key we're
		 * servicing is already instantiated */
181 182 183 184 185 186
		if (test_bit(KEY_FLAG_REVOKED,
			     &cred->request_key_auth->flags)) {
			up_read(&cred->request_key_auth->sem);
			ret = -EKEYREVOKED;
			goto error_free_rka;
		}
187

188
		irka = cred->request_key_auth->payload.data[0];
D
David Howells 已提交
189
		rka->cred = get_cred(irka->cred);
190
		rka->pid = irka->pid;
191

D
David Howells 已提交
192
		up_read(&cred->request_key_auth->sem);
193
	}
194 195
	else {
		/* it isn't - use this process as the context */
D
David Howells 已提交
196
		rka->cred = get_cred(cred);
197 198 199 200
		rka->pid = current->pid;
	}

	rka->target_key = key_get(target);
201
	rka->dest_keyring = key_get(dest_keyring);
202 203 204 205

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

206
	authkey = key_alloc(&key_type_request_key_auth, desc,
D
David Howells 已提交
207
			    cred->fsuid, cred->fsgid, cred,
208
			    KEY_POS_VIEW | KEY_POS_READ | KEY_POS_SEARCH |
209
			    KEY_USR_VIEW, KEY_ALLOC_NOT_IN_QUOTA, NULL);
210 211
	if (IS_ERR(authkey)) {
		ret = PTR_ERR(authkey);
212
		goto error_free_rka;
213 214
	}

D
David Howells 已提交
215
	/* construct the auth key */
216 217
	ret = key_instantiate_and_link(authkey, rka, 0, NULL, NULL);
	if (ret < 0)
218
		goto error_put_authkey;
219

220
	kleave(" = {%d,%d}", authkey->serial, refcount_read(&authkey->usage));
221 222
	return authkey;

223
error_put_authkey:
224
	key_put(authkey);
225 226 227
error_free_rka:
	free_request_key_auth(rka);
error:
228 229
	kleave("= %d", ret);
	return ERR_PTR(ret);
230
}
231 232

/*
233 234
 * Search the current process's keyrings for the authorisation key for
 * instantiation of a key.
235 236 237
 */
struct key *key_get_instantiation_authkey(key_serial_t target_id)
{
238
	char description[16];
239 240
	struct keyring_search_context ctx = {
		.index_key.type		= &key_type_request_key_auth,
241
		.index_key.description	= description,
242
		.cred			= current_cred(),
243
		.match_data.cmp		= key_default_cmp,
D
David Howells 已提交
244 245
		.match_data.raw_data	= description,
		.match_data.lookup_type	= KEYRING_SEARCH_LOOKUP_DIRECT,
246
		.flags			= KEYRING_SEARCH_DO_STATE_CHECK,
247
	};
248 249 250
	struct key *authkey;
	key_ref_t authkey_ref;

251
	ctx.index_key.desc_len = sprintf(description, "%x", target_id);
252

253
	authkey_ref = search_process_keyrings(&ctx);
254 255

	if (IS_ERR(authkey_ref)) {
256
		authkey = ERR_CAST(authkey_ref);
257 258
		if (authkey == ERR_PTR(-EAGAIN))
			authkey = ERR_PTR(-ENOKEY);
259 260
		goto error;
	}
261

262 263 264 265 266
	authkey = key_ref_to_ptr(authkey_ref);
	if (test_bit(KEY_FLAG_REVOKED, &authkey->flags)) {
		key_put(authkey);
		authkey = ERR_PTR(-EKEYREVOKED);
	}
267

268 269
error:
	return authkey;
270
}