mm: remove gup_flags FOLL_WRITE games from __get_user_pages()
[linux/fpc-iii.git] / security / keys / big_key.c
blobc0b3030b563486af0f1756d6d73ae32fe02a77c8
1 /* Large capacity key type
3 * Copyright (C) 2013 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #include <linux/init.h>
13 #include <linux/seq_file.h>
14 #include <linux/file.h>
15 #include <linux/shmem_fs.h>
16 #include <linux/err.h>
17 #include <linux/scatterlist.h>
18 #include <keys/user-type.h>
19 #include <keys/big_key-type.h>
20 #include <crypto/rng.h>
21 #include <crypto/skcipher.h>
24 * Layout of key payload words.
26 enum {
27 big_key_data,
28 big_key_path,
29 big_key_path_2nd_part,
30 big_key_len,
34 * Crypto operation with big_key data
36 enum big_key_op {
37 BIG_KEY_ENC,
38 BIG_KEY_DEC,
42 * If the data is under this limit, there's no point creating a shm file to
43 * hold it as the permanently resident metadata for the shmem fs will be at
44 * least as large as the data.
46 #define BIG_KEY_FILE_THRESHOLD (sizeof(struct inode) + sizeof(struct dentry))
49 * Key size for big_key data encryption
51 #define ENC_KEY_SIZE 16
54 * big_key defined keys take an arbitrary string as the description and an
55 * arbitrary blob of data as the payload
57 struct key_type key_type_big_key = {
58 .name = "big_key",
59 .preparse = big_key_preparse,
60 .free_preparse = big_key_free_preparse,
61 .instantiate = generic_key_instantiate,
62 .revoke = big_key_revoke,
63 .destroy = big_key_destroy,
64 .describe = big_key_describe,
65 .read = big_key_read,
69 * Crypto names for big_key data encryption
71 static const char big_key_rng_name[] = "stdrng";
72 static const char big_key_alg_name[] = "ecb(aes)";
75 * Crypto algorithms for big_key data encryption
77 static struct crypto_rng *big_key_rng;
78 static struct crypto_skcipher *big_key_skcipher;
81 * Generate random key to encrypt big_key data
83 static inline int big_key_gen_enckey(u8 *key)
85 return crypto_rng_get_bytes(big_key_rng, key, ENC_KEY_SIZE);
89 * Encrypt/decrypt big_key data
91 static int big_key_crypt(enum big_key_op op, u8 *data, size_t datalen, u8 *key)
93 int ret = -EINVAL;
94 struct scatterlist sgio;
95 SKCIPHER_REQUEST_ON_STACK(req, big_key_skcipher);
97 if (crypto_skcipher_setkey(big_key_skcipher, key, ENC_KEY_SIZE)) {
98 ret = -EAGAIN;
99 goto error;
102 skcipher_request_set_tfm(req, big_key_skcipher);
103 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP,
104 NULL, NULL);
106 sg_init_one(&sgio, data, datalen);
107 skcipher_request_set_crypt(req, &sgio, &sgio, datalen, NULL);
109 if (op == BIG_KEY_ENC)
110 ret = crypto_skcipher_encrypt(req);
111 else
112 ret = crypto_skcipher_decrypt(req);
114 skcipher_request_zero(req);
116 error:
117 return ret;
121 * Preparse a big key
123 int big_key_preparse(struct key_preparsed_payload *prep)
125 struct path *path = (struct path *)&prep->payload.data[big_key_path];
126 struct file *file;
127 u8 *enckey;
128 u8 *data = NULL;
129 ssize_t written;
130 size_t datalen = prep->datalen;
131 int ret;
133 ret = -EINVAL;
134 if (datalen <= 0 || datalen > 1024 * 1024 || !prep->data)
135 goto error;
137 /* Set an arbitrary quota */
138 prep->quotalen = 16;
140 prep->payload.data[big_key_len] = (void *)(unsigned long)datalen;
142 if (datalen > BIG_KEY_FILE_THRESHOLD) {
143 /* Create a shmem file to store the data in. This will permit the data
144 * to be swapped out if needed.
146 * File content is stored encrypted with randomly generated key.
148 size_t enclen = ALIGN(datalen, crypto_skcipher_blocksize(big_key_skcipher));
150 /* prepare aligned data to encrypt */
151 data = kmalloc(enclen, GFP_KERNEL);
152 if (!data)
153 return -ENOMEM;
155 memcpy(data, prep->data, datalen);
156 memset(data + datalen, 0x00, enclen - datalen);
158 /* generate random key */
159 enckey = kmalloc(ENC_KEY_SIZE, GFP_KERNEL);
160 if (!enckey) {
161 ret = -ENOMEM;
162 goto error;
165 ret = big_key_gen_enckey(enckey);
166 if (ret)
167 goto err_enckey;
169 /* encrypt aligned data */
170 ret = big_key_crypt(BIG_KEY_ENC, data, enclen, enckey);
171 if (ret)
172 goto err_enckey;
174 /* save aligned data to file */
175 file = shmem_kernel_file_setup("", enclen, 0);
176 if (IS_ERR(file)) {
177 ret = PTR_ERR(file);
178 goto err_enckey;
181 written = kernel_write(file, data, enclen, 0);
182 if (written != enclen) {
183 ret = written;
184 if (written >= 0)
185 ret = -ENOMEM;
186 goto err_fput;
189 /* Pin the mount and dentry to the key so that we can open it again
190 * later
192 prep->payload.data[big_key_data] = enckey;
193 *path = file->f_path;
194 path_get(path);
195 fput(file);
196 kfree(data);
197 } else {
198 /* Just store the data in a buffer */
199 void *data = kmalloc(datalen, GFP_KERNEL);
201 if (!data)
202 return -ENOMEM;
204 prep->payload.data[big_key_data] = data;
205 memcpy(data, prep->data, prep->datalen);
207 return 0;
209 err_fput:
210 fput(file);
211 err_enckey:
212 kfree(enckey);
213 error:
214 kfree(data);
215 return ret;
219 * Clear preparsement.
221 void big_key_free_preparse(struct key_preparsed_payload *prep)
223 if (prep->datalen > BIG_KEY_FILE_THRESHOLD) {
224 struct path *path = (struct path *)&prep->payload.data[big_key_path];
226 path_put(path);
228 kfree(prep->payload.data[big_key_data]);
232 * dispose of the links from a revoked keyring
233 * - called with the key sem write-locked
235 void big_key_revoke(struct key *key)
237 struct path *path = (struct path *)&key->payload.data[big_key_path];
239 /* clear the quota */
240 key_payload_reserve(key, 0);
241 if (key_is_instantiated(key) &&
242 (size_t)key->payload.data[big_key_len] > BIG_KEY_FILE_THRESHOLD)
243 vfs_truncate(path, 0);
247 * dispose of the data dangling from the corpse of a big_key key
249 void big_key_destroy(struct key *key)
251 size_t datalen = (size_t)key->payload.data[big_key_len];
253 if (datalen > BIG_KEY_FILE_THRESHOLD) {
254 struct path *path = (struct path *)&key->payload.data[big_key_path];
256 path_put(path);
257 path->mnt = NULL;
258 path->dentry = NULL;
260 kfree(key->payload.data[big_key_data]);
261 key->payload.data[big_key_data] = NULL;
265 * describe the big_key key
267 void big_key_describe(const struct key *key, struct seq_file *m)
269 size_t datalen = (size_t)key->payload.data[big_key_len];
271 seq_puts(m, key->description);
273 if (key_is_instantiated(key))
274 seq_printf(m, ": %zu [%s]",
275 datalen,
276 datalen > BIG_KEY_FILE_THRESHOLD ? "file" : "buff");
280 * read the key data
281 * - the key's semaphore is read-locked
283 long big_key_read(const struct key *key, char __user *buffer, size_t buflen)
285 size_t datalen = (size_t)key->payload.data[big_key_len];
286 long ret;
288 if (!buffer || buflen < datalen)
289 return datalen;
291 if (datalen > BIG_KEY_FILE_THRESHOLD) {
292 struct path *path = (struct path *)&key->payload.data[big_key_path];
293 struct file *file;
294 u8 *data;
295 u8 *enckey = (u8 *)key->payload.data[big_key_data];
296 size_t enclen = ALIGN(datalen, crypto_skcipher_blocksize(big_key_skcipher));
298 data = kmalloc(enclen, GFP_KERNEL);
299 if (!data)
300 return -ENOMEM;
302 file = dentry_open(path, O_RDONLY, current_cred());
303 if (IS_ERR(file)) {
304 ret = PTR_ERR(file);
305 goto error;
308 /* read file to kernel and decrypt */
309 ret = kernel_read(file, 0, data, enclen);
310 if (ret >= 0 && ret != enclen) {
311 ret = -EIO;
312 goto err_fput;
315 ret = big_key_crypt(BIG_KEY_DEC, data, enclen, enckey);
316 if (ret)
317 goto err_fput;
319 ret = datalen;
321 /* copy decrypted data to user */
322 if (copy_to_user(buffer, data, datalen) != 0)
323 ret = -EFAULT;
325 err_fput:
326 fput(file);
327 error:
328 kfree(data);
329 } else {
330 ret = datalen;
331 if (copy_to_user(buffer, key->payload.data[big_key_data],
332 datalen) != 0)
333 ret = -EFAULT;
336 return ret;
340 * Register key type
342 static int __init big_key_init(void)
344 return register_key_type(&key_type_big_key);
348 * Initialize big_key crypto and RNG algorithms
350 static int __init big_key_crypto_init(void)
352 int ret = -EINVAL;
354 /* init RNG */
355 big_key_rng = crypto_alloc_rng(big_key_rng_name, 0, 0);
356 if (IS_ERR(big_key_rng)) {
357 big_key_rng = NULL;
358 return -EFAULT;
361 /* seed RNG */
362 ret = crypto_rng_reset(big_key_rng, NULL, crypto_rng_seedsize(big_key_rng));
363 if (ret)
364 goto error;
366 /* init block cipher */
367 big_key_skcipher = crypto_alloc_skcipher(big_key_alg_name,
368 0, CRYPTO_ALG_ASYNC);
369 if (IS_ERR(big_key_skcipher)) {
370 big_key_skcipher = NULL;
371 ret = -EFAULT;
372 goto error;
375 return 0;
377 error:
378 crypto_free_rng(big_key_rng);
379 big_key_rng = NULL;
380 return ret;
383 device_initcall(big_key_init);
384 late_initcall(big_key_crypto_init);