blob: 8705d79b2c6f289736fde21fd38e6013a4e4ae3c [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",
David Howellsf9167782014-07-18 18:56:35 +010029 .preparse = user_preparse,
30 .free_preparse = user_free_preparse,
31 .instantiate = generic_key_instantiate,
David Howells4bdf0bc2013-09-24 10:35:15 +010032 .update = user_update,
David Howells4bdf0bc2013-09-24 10:35:15 +010033 .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 Howellsf9167782014-07-18 18:56:35 +010049 .preparse = user_preparse,
50 .free_preparse = user_free_preparse,
51 .instantiate = generic_key_instantiate,
Jeff Layton9f6ed2c2012-01-17 16:09:11 -050052 .update = user_update,
Jeff Layton9f6ed2c2012-01-17 16:09:11 -050053 .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/*
David Howellsf9167782014-07-18 18:56:35 +010061 * Preparse a user defined key payload
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 */
David Howellsf9167782014-07-18 18:56:35 +010063int user_preparse(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
David Howellscf7f6012012-09-13 13:06:29 +010068 if (datalen <= 0 || datalen > 32767 || !prep->data)
David Howellsf9167782014-07-18 18:56:35 +010069 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
David Howells76d8aea2005-06-23 22:00:49 -070071 upayload = kmalloc(sizeof(*upayload) + datalen, GFP_KERNEL);
72 if (!upayload)
David Howellsf9167782014-07-18 18:56:35 +010073 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
David Howells76d8aea2005-06-23 22:00:49 -070075 /* attach the data */
David Howellsf9167782014-07-18 18:56:35 +010076 prep->quotalen = datalen;
David Howells146aa8b2015-10-21 14:04:48 +010077 prep->payload.data[0] = upayload;
David Howells76d8aea2005-06-23 22:00:49 -070078 upayload->datalen = datalen;
David Howellscf7f6012012-09-13 13:06:29 +010079 memcpy(upayload->data, prep->data, datalen);
David Howellsf9167782014-07-18 18:56:35 +010080 return 0;
David Howellsa8b17ed2011-01-20 16:38:27 +000081}
David Howellsf9167782014-07-18 18:56:35 +010082EXPORT_SYMBOL_GPL(user_preparse);
David Howells31204ed2006-06-26 00:24:51 -070083
David Howellsf9167782014-07-18 18:56:35 +010084/*
85 * Free a preparse of a user defined key payload
86 */
87void user_free_preparse(struct key_preparsed_payload *prep)
88{
David Howells146aa8b2015-10-21 14:04:48 +010089 kfree(prep->payload.data[0]);
David Howellsf9167782014-07-18 18:56:35 +010090}
91EXPORT_SYMBOL_GPL(user_free_preparse);
David Howells2aa349f2005-10-30 15:02:42 -080092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * update a user defined key
David Howells76d8aea2005-06-23 22:00:49 -070095 * - the key's semaphore is write-locked
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 */
David Howellscf7f6012012-09-13 13:06:29 +010097int user_update(struct key *key, struct key_preparsed_payload *prep)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
David Howells76d8aea2005-06-23 22:00:49 -070099 struct user_key_payload *upayload, *zap;
David Howellscf7f6012012-09-13 13:06:29 +0100100 size_t datalen = prep->datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 int ret;
102
103 ret = -EINVAL;
David Howellscf7f6012012-09-13 13:06:29 +0100104 if (datalen <= 0 || datalen > 32767 || !prep->data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 goto error;
106
David Howells76d8aea2005-06-23 22:00:49 -0700107 /* construct a replacement payload */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 ret = -ENOMEM;
David Howells76d8aea2005-06-23 22:00:49 -0700109 upayload = kmalloc(sizeof(*upayload) + datalen, GFP_KERNEL);
110 if (!upayload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 goto error;
112
David Howells76d8aea2005-06-23 22:00:49 -0700113 upayload->datalen = datalen;
David Howellscf7f6012012-09-13 13:06:29 +0100114 memcpy(upayload->data, prep->data, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 /* check the quota and attach the new data */
David Howells76d8aea2005-06-23 22:00:49 -0700117 zap = upayload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 ret = key_payload_reserve(key, datalen);
120
121 if (ret == 0) {
122 /* attach the new data, displacing the old */
David Howells096fe9e2015-11-24 21:36:31 +0000123 if (!test_bit(KEY_FLAG_NEGATIVE, &key->flags))
124 zap = key->payload.data[0];
125 else
126 zap = NULL;
Mimi Zoharf6b24572012-01-18 10:03:14 +0000127 rcu_assign_keypointer(key, upayload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 key->expiry = 0;
129 }
130
David Howells9f35a332011-11-15 22:09:45 +0000131 if (zap)
132 kfree_rcu(zap, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
David Howells2aa349f2005-10-30 15:02:42 -0800134error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000136}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
David Howells2aa349f2005-10-30 15:02:42 -0800138EXPORT_SYMBOL_GPL(user_update);
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*
David Howells31204ed2006-06-26 00:24:51 -0700141 * dispose of the links from a revoked keyring
142 * - called with the key sem write-locked
143 */
144void user_revoke(struct key *key)
145{
David Howells146aa8b2015-10-21 14:04:48 +0100146 struct user_key_payload *upayload = key->payload.data[0];
David Howells31204ed2006-06-26 00:24:51 -0700147
148 /* clear the quota */
149 key_payload_reserve(key, 0);
150
151 if (upayload) {
Mimi Zoharf6b24572012-01-18 10:03:14 +0000152 rcu_assign_keypointer(key, NULL);
Lai Jiangshan3acb4582011-03-18 12:11:07 +0800153 kfree_rcu(upayload, rcu);
David Howells31204ed2006-06-26 00:24:51 -0700154 }
David Howellsa8b17ed2011-01-20 16:38:27 +0000155}
David Howells31204ed2006-06-26 00:24:51 -0700156
157EXPORT_SYMBOL(user_revoke);
158
David Howells31204ed2006-06-26 00:24:51 -0700159/*
160 * dispose of the data dangling from the corpse of a user key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
David Howells2aa349f2005-10-30 15:02:42 -0800162void user_destroy(struct key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
David Howells146aa8b2015-10-21 14:04:48 +0100164 struct user_key_payload *upayload = key->payload.data[0];
David Howells76d8aea2005-06-23 22:00:49 -0700165
166 kfree(upayload);
David Howellsa8b17ed2011-01-20 16:38:27 +0000167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
David Howells2aa349f2005-10-30 15:02:42 -0800169EXPORT_SYMBOL_GPL(user_destroy);
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/*
David Howells76d8aea2005-06-23 22:00:49 -0700172 * describe the user key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 */
David Howells2aa349f2005-10-30 15:02:42 -0800174void user_describe(const struct key *key, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
176 seq_puts(m, key->description);
David Howells78b72802011-03-11 17:57:23 +0000177 if (key_is_instantiated(key))
178 seq_printf(m, ": %u", key->datalen);
David Howellsa8b17ed2011-01-20 16:38:27 +0000179}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
David Howells2aa349f2005-10-30 15:02:42 -0800181EXPORT_SYMBOL_GPL(user_describe);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
184 * read the key data
David Howells76d8aea2005-06-23 22:00:49 -0700185 * - the key's semaphore is read-locked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
David Howells2aa349f2005-10-30 15:02:42 -0800187long user_read(const struct key *key, char __user *buffer, size_t buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
David Howells146aa8b2015-10-21 14:04:48 +0100189 const struct user_key_payload *upayload;
David Howells76d8aea2005-06-23 22:00:49 -0700190 long ret;
191
David Howells146aa8b2015-10-21 14:04:48 +0100192 upayload = user_key_payload(key);
David Howells76d8aea2005-06-23 22:00:49 -0700193 ret = upayload->datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 /* we can return the data as is */
196 if (buffer && buflen > 0) {
David Howells76d8aea2005-06-23 22:00:49 -0700197 if (buflen > upayload->datalen)
198 buflen = upayload->datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
David Howells76d8aea2005-06-23 22:00:49 -0700200 if (copy_to_user(buffer, upayload->data, buflen) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 ret = -EFAULT;
202 }
203
204 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000205}
David Howells2aa349f2005-10-30 15:02:42 -0800206
207EXPORT_SYMBOL_GPL(user_read);
Jeff Layton9f6ed2c2012-01-17 16:09:11 -0500208
209/* Vet the description for a "logon" key */
210static int logon_vet_description(const char *desc)
211{
212 char *p;
213
214 /* require a "qualified" description string */
215 p = strchr(desc, ':');
216 if (!p)
217 return -EINVAL;
218
219 /* also reject description with ':' as first char */
220 if (p == desc)
221 return -EINVAL;
222
223 return 0;
224}