blob: faa2caeb593f8524a059e79d58e09bf430a1f992 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* user_defined.c: user defined key type
2 *
3 * Copyright (C) 2004 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.
10 */
11
12#include <linux/module.h>
13#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/slab.h>
15#include <linux/seq_file.h>
16#include <linux/err.h>
David Howells2aa349f2005-10-30 15:02:42 -080017#include <keys/user-type.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/uaccess.h>
19#include "internal.h"
20
Jeff Layton9f6ed2c2012-01-17 16:09:11 -050021static int logon_vet_description(const char *desc);
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * user defined keys take an arbitrary string as the description and an
25 * arbitrary blob of data as the payload
26 */
27struct key_type key_type_user = {
David Howells4bdf0bc2013-09-24 10:35:15 +010028 .name = "user",
29 .def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
30 .instantiate = user_instantiate,
31 .update = user_update,
32 .match = user_match,
33 .revoke = user_revoke,
34 .destroy = user_destroy,
35 .describe = user_describe,
36 .read = user_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
Michael Halcrow16c29b62005-06-23 22:00:58 -070039EXPORT_SYMBOL_GPL(key_type_user);
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/*
Jeff Layton9f6ed2c2012-01-17 16:09:11 -050042 * This key type is essentially the same as key_type_user, but it does
43 * not define a .read op. This is suitable for storing username and
44 * password pairs in the keyring that you do not want to be readable
45 * from userspace.
46 */
47struct key_type key_type_logon = {
48 .name = "logon",
David Howells4bdf0bc2013-09-24 10:35:15 +010049 .def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
Jeff Layton9f6ed2c2012-01-17 16:09:11 -050050 .instantiate = user_instantiate,
51 .update = user_update,
52 .match = user_match,
53 .revoke = user_revoke,
54 .destroy = user_destroy,
55 .describe = user_describe,
56 .vet_description = logon_vet_description,
57};
58EXPORT_SYMBOL_GPL(key_type_logon);
59
60/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * instantiate a user defined key
62 */
David Howellscf7f6012012-09-13 13:06:29 +010063int user_instantiate(struct key *key, struct key_preparsed_payload *prep)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
David Howells76d8aea2005-06-23 22:00:49 -070065 struct user_key_payload *upayload;
David Howellscf7f6012012-09-13 13:06:29 +010066 size_t datalen = prep->datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 int ret;
68
69 ret = -EINVAL;
David Howellscf7f6012012-09-13 13:06:29 +010070 if (datalen <= 0 || datalen > 32767 || !prep->data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 goto error;
72
73 ret = key_payload_reserve(key, datalen);
74 if (ret < 0)
75 goto error;
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 ret = -ENOMEM;
David Howells76d8aea2005-06-23 22:00:49 -070078 upayload = kmalloc(sizeof(*upayload) + datalen, GFP_KERNEL);
79 if (!upayload)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 goto error;
81
David Howells76d8aea2005-06-23 22:00:49 -070082 /* attach the data */
83 upayload->datalen = datalen;
David Howellscf7f6012012-09-13 13:06:29 +010084 memcpy(upayload->data, prep->data, datalen);
Mimi Zoharf6b24572012-01-18 10:03:14 +000085 rcu_assign_keypointer(key, upayload);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 ret = 0;
87
David Howells2aa349f2005-10-30 15:02:42 -080088error:
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +000090}
David Howells31204ed2006-06-26 00:24:51 -070091
David Howells2aa349f2005-10-30 15:02:42 -080092EXPORT_SYMBOL_GPL(user_instantiate);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 * update a user defined key
David Howells76d8aea2005-06-23 22:00:49 -070096 * - the key's semaphore is write-locked
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
David Howellscf7f6012012-09-13 13:06:29 +010098int user_update(struct key *key, struct key_preparsed_payload *prep)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
David Howells76d8aea2005-06-23 22:00:49 -0700100 struct user_key_payload *upayload, *zap;
David Howellscf7f6012012-09-13 13:06:29 +0100101 size_t datalen = prep->datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int ret;
103
104 ret = -EINVAL;
David Howellscf7f6012012-09-13 13:06:29 +0100105 if (datalen <= 0 || datalen > 32767 || !prep->data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 goto error;
107
David Howells76d8aea2005-06-23 22:00:49 -0700108 /* construct a replacement payload */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 ret = -ENOMEM;
David Howells76d8aea2005-06-23 22:00:49 -0700110 upayload = kmalloc(sizeof(*upayload) + datalen, GFP_KERNEL);
111 if (!upayload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 goto error;
113
David Howells76d8aea2005-06-23 22:00:49 -0700114 upayload->datalen = datalen;
David Howellscf7f6012012-09-13 13:06:29 +0100115 memcpy(upayload->data, prep->data, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 /* check the quota and attach the new data */
David Howells76d8aea2005-06-23 22:00:49 -0700118 zap = upayload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 ret = key_payload_reserve(key, datalen);
121
122 if (ret == 0) {
123 /* attach the new data, displacing the old */
124 zap = key->payload.data;
Mimi Zoharf6b24572012-01-18 10:03:14 +0000125 rcu_assign_keypointer(key, upayload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 key->expiry = 0;
127 }
128
David Howells9f35a332011-11-15 22:09:45 +0000129 if (zap)
130 kfree_rcu(zap, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
David Howells2aa349f2005-10-30 15:02:42 -0800132error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000134}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
David Howells2aa349f2005-10-30 15:02:42 -0800136EXPORT_SYMBOL_GPL(user_update);
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/*
139 * match users on their name
140 */
David Howells2aa349f2005-10-30 15:02:42 -0800141int user_match(const struct key *key, const void *description)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 return strcmp(key->description, description) == 0;
David Howellsa8b17ed2011-01-20 16:38:27 +0000144}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
David Howells2aa349f2005-10-30 15:02:42 -0800146EXPORT_SYMBOL_GPL(user_match);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
David Howells31204ed2006-06-26 00:24:51 -0700149 * dispose of the links from a revoked keyring
150 * - called with the key sem write-locked
151 */
152void user_revoke(struct key *key)
153{
154 struct user_key_payload *upayload = key->payload.data;
155
156 /* clear the quota */
157 key_payload_reserve(key, 0);
158
159 if (upayload) {
Mimi Zoharf6b24572012-01-18 10:03:14 +0000160 rcu_assign_keypointer(key, NULL);
Lai Jiangshan3acb4582011-03-18 12:11:07 +0800161 kfree_rcu(upayload, rcu);
David Howells31204ed2006-06-26 00:24:51 -0700162 }
David Howellsa8b17ed2011-01-20 16:38:27 +0000163}
David Howells31204ed2006-06-26 00:24:51 -0700164
165EXPORT_SYMBOL(user_revoke);
166
David Howells31204ed2006-06-26 00:24:51 -0700167/*
168 * dispose of the data dangling from the corpse of a user key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 */
David Howells2aa349f2005-10-30 15:02:42 -0800170void user_destroy(struct key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
David Howells76d8aea2005-06-23 22:00:49 -0700172 struct user_key_payload *upayload = key->payload.data;
173
174 kfree(upayload);
David Howellsa8b17ed2011-01-20 16:38:27 +0000175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
David Howells2aa349f2005-10-30 15:02:42 -0800177EXPORT_SYMBOL_GPL(user_destroy);
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
David Howells76d8aea2005-06-23 22:00:49 -0700180 * describe the user key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
David Howells2aa349f2005-10-30 15:02:42 -0800182void user_describe(const struct key *key, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 seq_puts(m, key->description);
David Howells78b72802011-03-11 17:57:23 +0000185 if (key_is_instantiated(key))
186 seq_printf(m, ": %u", key->datalen);
David Howellsa8b17ed2011-01-20 16:38:27 +0000187}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
David Howells2aa349f2005-10-30 15:02:42 -0800189EXPORT_SYMBOL_GPL(user_describe);
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*
192 * read the key data
David Howells76d8aea2005-06-23 22:00:49 -0700193 * - the key's semaphore is read-locked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 */
David Howells2aa349f2005-10-30 15:02:42 -0800195long user_read(const struct key *key, char __user *buffer, size_t buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
David Howells76d8aea2005-06-23 22:00:49 -0700197 struct user_key_payload *upayload;
198 long ret;
199
David Howells633e8042011-03-07 15:05:51 +0000200 upayload = rcu_dereference_key(key);
David Howells76d8aea2005-06-23 22:00:49 -0700201 ret = upayload->datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 /* we can return the data as is */
204 if (buffer && buflen > 0) {
David Howells76d8aea2005-06-23 22:00:49 -0700205 if (buflen > upayload->datalen)
206 buflen = upayload->datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
David Howells76d8aea2005-06-23 22:00:49 -0700208 if (copy_to_user(buffer, upayload->data, buflen) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 ret = -EFAULT;
210 }
211
212 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000213}
David Howells2aa349f2005-10-30 15:02:42 -0800214
215EXPORT_SYMBOL_GPL(user_read);
Jeff Layton9f6ed2c2012-01-17 16:09:11 -0500216
217/* Vet the description for a "logon" key */
218static int logon_vet_description(const char *desc)
219{
220 char *p;
221
222 /* require a "qualified" description string */
223 p = strchr(desc, ':');
224 if (!p)
225 return -EINVAL;
226
227 /* also reject description with ':' as first char */
228 if (p == desc)
229 return -EINVAL;
230
231 return 0;
232}