blob: 36b47bbd3d8cc277de55e0c0cdd722618ca13231 [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;
77 prep->payload[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{
89 kfree(prep->payload[0]);
90}
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 */
123 zap = key->payload.data;
Mimi Zoharf6b24572012-01-18 10:03:14 +0000124 rcu_assign_keypointer(key, upayload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 key->expiry = 0;
126 }
127
David Howells9f35a332011-11-15 22:09:45 +0000128 if (zap)
129 kfree_rcu(zap, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
David Howells2aa349f2005-10-30 15:02:42 -0800131error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000133}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
David Howells2aa349f2005-10-30 15:02:42 -0800135EXPORT_SYMBOL_GPL(user_update);
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/*
David Howells31204ed2006-06-26 00:24:51 -0700138 * dispose of the links from a revoked keyring
139 * - called with the key sem write-locked
140 */
141void user_revoke(struct key *key)
142{
143 struct user_key_payload *upayload = key->payload.data;
144
145 /* clear the quota */
146 key_payload_reserve(key, 0);
147
148 if (upayload) {
Mimi Zoharf6b24572012-01-18 10:03:14 +0000149 rcu_assign_keypointer(key, NULL);
Lai Jiangshan3acb4582011-03-18 12:11:07 +0800150 kfree_rcu(upayload, rcu);
David Howells31204ed2006-06-26 00:24:51 -0700151 }
David Howellsa8b17ed2011-01-20 16:38:27 +0000152}
David Howells31204ed2006-06-26 00:24:51 -0700153
154EXPORT_SYMBOL(user_revoke);
155
David Howells31204ed2006-06-26 00:24:51 -0700156/*
157 * dispose of the data dangling from the corpse of a user key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 */
David Howells2aa349f2005-10-30 15:02:42 -0800159void user_destroy(struct key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
David Howells76d8aea2005-06-23 22:00:49 -0700161 struct user_key_payload *upayload = key->payload.data;
162
163 kfree(upayload);
David Howellsa8b17ed2011-01-20 16:38:27 +0000164}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
David Howells2aa349f2005-10-30 15:02:42 -0800166EXPORT_SYMBOL_GPL(user_destroy);
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
David Howells76d8aea2005-06-23 22:00:49 -0700169 * describe the user key
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
David Howells2aa349f2005-10-30 15:02:42 -0800171void user_describe(const struct key *key, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 seq_puts(m, key->description);
David Howells78b72802011-03-11 17:57:23 +0000174 if (key_is_instantiated(key))
175 seq_printf(m, ": %u", key->datalen);
David Howellsa8b17ed2011-01-20 16:38:27 +0000176}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
David Howells2aa349f2005-10-30 15:02:42 -0800178EXPORT_SYMBOL_GPL(user_describe);
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
181 * read the key data
David Howells76d8aea2005-06-23 22:00:49 -0700182 * - the key's semaphore is read-locked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 */
David Howells2aa349f2005-10-30 15:02:42 -0800184long user_read(const struct key *key, char __user *buffer, size_t buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
David Howells76d8aea2005-06-23 22:00:49 -0700186 struct user_key_payload *upayload;
187 long ret;
188
David Howells633e8042011-03-07 15:05:51 +0000189 upayload = rcu_dereference_key(key);
David Howells76d8aea2005-06-23 22:00:49 -0700190 ret = upayload->datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /* we can return the data as is */
193 if (buffer && buflen > 0) {
David Howells76d8aea2005-06-23 22:00:49 -0700194 if (buflen > upayload->datalen)
195 buflen = upayload->datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
David Howells76d8aea2005-06-23 22:00:49 -0700197 if (copy_to_user(buffer, upayload->data, buflen) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 ret = -EFAULT;
199 }
200
201 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000202}
David Howells2aa349f2005-10-30 15:02:42 -0800203
204EXPORT_SYMBOL_GPL(user_read);
Jeff Layton9f6ed2c2012-01-17 16:09:11 -0500205
206/* Vet the description for a "logon" key */
207static int logon_vet_description(const char *desc)
208{
209 char *p;
210
211 /* require a "qualified" description string */
212 p = strchr(desc, ':');
213 if (!p)
214 return -EINVAL;
215
216 /* also reject description with ':' as first char */
217 if (p == desc)
218 return -EINVAL;
219
220 return 0;
221}