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/module.h>
13 #include <linux/init.h>
14 #include <linux/seq_file.h>
15 #include <linux/file.h>
16 #include <linux/shmem_fs.h>
17 #include <linux/err.h>
18 #include <keys/user-type.h>
19 #include <keys/big_key-type.h>
21 MODULE_LICENSE("GPL");
24 * Layout of key payload words.
29 big_key_path_2nd_part
,
34 * If the data is under this limit, there's no point creating a shm file to
35 * hold it as the permanently resident metadata for the shmem fs will be at
36 * least as large as the data.
38 #define BIG_KEY_FILE_THRESHOLD (sizeof(struct inode) + sizeof(struct dentry))
41 * big_key defined keys take an arbitrary string as the description and an
42 * arbitrary blob of data as the payload
44 struct key_type key_type_big_key
= {
46 .preparse
= big_key_preparse
,
47 .free_preparse
= big_key_free_preparse
,
48 .instantiate
= generic_key_instantiate
,
49 .revoke
= big_key_revoke
,
50 .destroy
= big_key_destroy
,
51 .describe
= big_key_describe
,
58 int big_key_preparse(struct key_preparsed_payload
*prep
)
60 struct path
*path
= (struct path
*)&prep
->payload
.data
[big_key_path
];
63 size_t datalen
= prep
->datalen
;
67 if (datalen
<= 0 || datalen
> 1024 * 1024 || !prep
->data
)
70 /* Set an arbitrary quota */
73 prep
->payload
.data
[big_key_len
] = (void *)(unsigned long)datalen
;
75 if (datalen
> BIG_KEY_FILE_THRESHOLD
) {
76 /* Create a shmem file to store the data in. This will permit the data
77 * to be swapped out if needed.
79 * TODO: Encrypt the stored data with a temporary key.
81 file
= shmem_kernel_file_setup("", datalen
, 0);
87 written
= kernel_write(file
, prep
->data
, prep
->datalen
, 0);
88 if (written
!= datalen
) {
95 /* Pin the mount and dentry to the key so that we can open it again
102 /* Just store the data in a buffer */
103 void *data
= kmalloc(datalen
, GFP_KERNEL
);
107 prep
->payload
.data
[big_key_data
] = data
;
108 memcpy(data
, prep
->data
, prep
->datalen
);
119 * Clear preparsement.
121 void big_key_free_preparse(struct key_preparsed_payload
*prep
)
123 if (prep
->datalen
> BIG_KEY_FILE_THRESHOLD
) {
124 struct path
*path
= (struct path
*)&prep
->payload
.data
[big_key_path
];
127 kfree(prep
->payload
.data
[big_key_data
]);
132 * dispose of the links from a revoked keyring
133 * - called with the key sem write-locked
135 void big_key_revoke(struct key
*key
)
137 struct path
*path
= (struct path
*)&key
->payload
.data
[big_key_path
];
139 /* clear the quota */
140 key_payload_reserve(key
, 0);
141 if (key_is_instantiated(key
) &&
142 (size_t)key
->payload
.data
[big_key_len
] > BIG_KEY_FILE_THRESHOLD
)
143 vfs_truncate(path
, 0);
147 * dispose of the data dangling from the corpse of a big_key key
149 void big_key_destroy(struct key
*key
)
151 size_t datalen
= (size_t)key
->payload
.data
[big_key_len
];
154 struct path
*path
= (struct path
*)&key
->payload
.data
[big_key_path
];
159 kfree(key
->payload
.data
[big_key_data
]);
160 key
->payload
.data
[big_key_data
] = NULL
;
165 * describe the big_key key
167 void big_key_describe(const struct key
*key
, struct seq_file
*m
)
169 size_t datalen
= (size_t)key
->payload
.data
[big_key_len
];
171 seq_puts(m
, key
->description
);
173 if (key_is_instantiated(key
))
174 seq_printf(m
, ": %zu [%s]",
176 datalen
> BIG_KEY_FILE_THRESHOLD
? "file" : "buff");
181 * - the key's semaphore is read-locked
183 long big_key_read(const struct key
*key
, char __user
*buffer
, size_t buflen
)
185 size_t datalen
= (size_t)key
->payload
.data
[big_key_len
];
188 if (!buffer
|| buflen
< datalen
)
191 if (datalen
> BIG_KEY_FILE_THRESHOLD
) {
192 struct path
*path
= (struct path
*)&key
->payload
.data
[big_key_path
];
196 file
= dentry_open(path
, O_RDONLY
, current_cred());
198 return PTR_ERR(file
);
201 ret
= vfs_read(file
, buffer
, datalen
, &pos
);
203 if (ret
>= 0 && ret
!= datalen
)
207 if (copy_to_user(buffer
, key
->payload
.data
[big_key_data
],
218 static int __init
big_key_init(void)
220 return register_key_type(&key_type_big_key
);
223 static void __exit
big_key_cleanup(void)
225 unregister_key_type(&key_type_big_key
);
228 module_init(big_key_init
);
229 module_exit(big_key_cleanup
);