Commit a19e3c22 authored by David Howells's avatar David Howells

Merge tag 'keys-preparse-1-20140722' into keys-next

Here are a set of changes that make all but encrypted and trusted keys use
preparsing.  Unfortunately, encrypted and trusted keys incorrectly use the
update op to alter a key, so other changes will need to be made for them.

These changes permit payload parsing when instantiating or updating a key to be
done before locks are taken and to determine the amount of quota that will be
required in advance.  The latter will make it possible to do LRU discard before
any locks are taken.
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
parents 32c2e675 f1dcde91
...@@ -1150,20 +1150,24 @@ The structure has a number of fields, some of which are mandatory: ...@@ -1150,20 +1150,24 @@ The structure has a number of fields, some of which are mandatory:
const void *data; const void *data;
size_t datalen; size_t datalen;
size_t quotalen; size_t quotalen;
time_t expiry;
}; };
Before calling the method, the caller will fill in data and datalen with Before calling the method, the caller will fill in data and datalen with
the payload blob parameters; quotalen will be filled in with the default the payload blob parameters; quotalen will be filled in with the default
quota size from the key type and the rest will be cleared. quota size from the key type; expiry will be set to TIME_T_MAX and the
rest will be cleared.
If a description can be proposed from the payload contents, that should be If a description can be proposed from the payload contents, that should be
attached as a string to the description field. This will be used for the attached as a string to the description field. This will be used for the
key description if the caller of add_key() passes NULL or "". key description if the caller of add_key() passes NULL or "".
The method can attach anything it likes to type_data[] and payload. These The method can attach anything it likes to type_data[] and payload. These
are merely passed along to the instantiate() or update() operations. are merely passed along to the instantiate() or update() operations. If
set, the expiry time will be applied to the key if it is instantiated from
this data.
The method should return 0 if success ful or a negative error code The method should return 0 if successful or a negative error code
otherwise. otherwise.
...@@ -1172,7 +1176,9 @@ The structure has a number of fields, some of which are mandatory: ...@@ -1172,7 +1176,9 @@ The structure has a number of fields, some of which are mandatory:
This method is only required if the preparse() method is provided, This method is only required if the preparse() method is provided,
otherwise it is unused. It cleans up anything attached to the otherwise it is unused. It cleans up anything attached to the
description, type_data and payload fields of the key_preparsed_payload description, type_data and payload fields of the key_preparsed_payload
struct as filled in by the preparse() method. struct as filled in by the preparse() method. It will always be called
after preparse() returns successfully, even if instantiate() or update()
succeed.
(*) int (*instantiate)(struct key *key, struct key_preparsed_payload *prep); (*) int (*instantiate)(struct key *key, struct key_preparsed_payload *prep);
......
...@@ -156,36 +156,13 @@ static void asymmetric_key_free_preparse(struct key_preparsed_payload *prep) ...@@ -156,36 +156,13 @@ static void asymmetric_key_free_preparse(struct key_preparsed_payload *prep)
pr_devel("==>%s()\n", __func__); pr_devel("==>%s()\n", __func__);
if (subtype) { if (subtype) {
subtype->destroy(prep->payload); subtype->destroy(prep->payload[0]);
module_put(subtype->owner); module_put(subtype->owner);
} }
kfree(prep->type_data[1]); kfree(prep->type_data[1]);
kfree(prep->description); kfree(prep->description);
} }
/*
* Instantiate a asymmetric_key defined key. The key was preparsed, so we just
* have to transfer the data here.
*/
static int asymmetric_key_instantiate(struct key *key, struct key_preparsed_payload *prep)
{
int ret;
pr_devel("==>%s()\n", __func__);
ret = key_payload_reserve(key, prep->quotalen);
if (ret == 0) {
key->type_data.p[0] = prep->type_data[0];
key->type_data.p[1] = prep->type_data[1];
key->payload.data = prep->payload;
prep->type_data[0] = NULL;
prep->type_data[1] = NULL;
prep->payload = NULL;
}
pr_devel("<==%s() = %d\n", __func__, ret);
return ret;
}
/* /*
* dispose of the data dangling from the corpse of a asymmetric key * dispose of the data dangling from the corpse of a asymmetric key
*/ */
...@@ -205,7 +182,7 @@ struct key_type key_type_asymmetric = { ...@@ -205,7 +182,7 @@ struct key_type key_type_asymmetric = {
.name = "asymmetric", .name = "asymmetric",
.preparse = asymmetric_key_preparse, .preparse = asymmetric_key_preparse,
.free_preparse = asymmetric_key_free_preparse, .free_preparse = asymmetric_key_free_preparse,
.instantiate = asymmetric_key_instantiate, .instantiate = generic_key_instantiate,
.match = asymmetric_key_match, .match = asymmetric_key_match,
.destroy = asymmetric_key_destroy, .destroy = asymmetric_key_destroy,
.describe = asymmetric_key_describe, .describe = asymmetric_key_describe,
......
...@@ -177,7 +177,7 @@ static int x509_key_preparse(struct key_preparsed_payload *prep) ...@@ -177,7 +177,7 @@ static int x509_key_preparse(struct key_preparsed_payload *prep)
__module_get(public_key_subtype.owner); __module_get(public_key_subtype.owner);
prep->type_data[0] = &public_key_subtype; prep->type_data[0] = &public_key_subtype;
prep->type_data[1] = cert->fingerprint; prep->type_data[1] = cert->fingerprint;
prep->payload = cert->pub; prep->payload[0] = cert->pub;
prep->description = desc; prep->description = desc;
prep->quotalen = 100; prep->quotalen = 100;
......
...@@ -174,7 +174,9 @@ static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen) ...@@ -174,7 +174,9 @@ static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen)
static struct key_type key_type_id_resolver = { static struct key_type key_type_id_resolver = {
.name = "id_resolver", .name = "id_resolver",
.instantiate = user_instantiate, .preparse = user_preparse,
.free_preparse = user_free_preparse,
.instantiate = generic_key_instantiate,
.match = user_match, .match = user_match,
.revoke = user_revoke, .revoke = user_revoke,
.destroy = user_destroy, .destroy = user_destroy,
...@@ -394,7 +396,9 @@ static const struct rpc_pipe_ops idmap_upcall_ops = { ...@@ -394,7 +396,9 @@ static const struct rpc_pipe_ops idmap_upcall_ops = {
static struct key_type key_type_id_resolver_legacy = { static struct key_type key_type_id_resolver_legacy = {
.name = "id_legacy", .name = "id_legacy",
.instantiate = user_instantiate, .preparse = user_preparse,
.free_preparse = user_free_preparse,
.instantiate = generic_key_instantiate,
.match = user_match, .match = user_match,
.revoke = user_revoke, .revoke = user_revoke,
.destroy = user_destroy, .destroy = user_destroy,
......
...@@ -16,7 +16,8 @@ ...@@ -16,7 +16,8 @@
extern struct key_type key_type_big_key; extern struct key_type key_type_big_key;
extern int big_key_instantiate(struct key *key, struct key_preparsed_payload *prep); extern int big_key_preparse(struct key_preparsed_payload *prep);
extern void big_key_free_preparse(struct key_preparsed_payload *prep);
extern void big_key_revoke(struct key *key); extern void big_key_revoke(struct key *key);
extern void big_key_destroy(struct key *key); extern void big_key_destroy(struct key *key);
extern void big_key_describe(const struct key *big_key, struct seq_file *m); extern void big_key_describe(const struct key *big_key, struct seq_file *m);
......
...@@ -37,7 +37,8 @@ extern struct key_type key_type_logon; ...@@ -37,7 +37,8 @@ extern struct key_type key_type_logon;
struct key_preparsed_payload; struct key_preparsed_payload;
extern int user_instantiate(struct key *key, struct key_preparsed_payload *prep); extern int user_preparse(struct key_preparsed_payload *prep);
extern void user_free_preparse(struct key_preparsed_payload *prep);
extern int user_update(struct key *key, struct key_preparsed_payload *prep); extern int user_update(struct key *key, struct key_preparsed_payload *prep);
extern int user_match(const struct key *key, const void *criterion); extern int user_match(const struct key *key, const void *criterion);
extern void user_revoke(struct key *key); extern void user_revoke(struct key *key);
......
...@@ -41,10 +41,11 @@ struct key_construction { ...@@ -41,10 +41,11 @@ struct key_construction {
struct key_preparsed_payload { struct key_preparsed_payload {
char *description; /* Proposed key description (or NULL) */ char *description; /* Proposed key description (or NULL) */
void *type_data[2]; /* Private key-type data */ void *type_data[2]; /* Private key-type data */
void *payload; /* Proposed payload */ void *payload[2]; /* Proposed payload */
const void *data; /* Raw data */ const void *data; /* Raw data */
size_t datalen; /* Raw datalen */ size_t datalen; /* Raw datalen */
size_t quotalen; /* Quota length for proposed payload */ size_t quotalen; /* Quota length for proposed payload */
time_t expiry; /* Expiry time of key */
bool trusted; /* True if key is trusted */ bool trusted; /* True if key is trusted */
}; };
...@@ -159,5 +160,7 @@ static inline int key_negate_and_link(struct key *key, ...@@ -159,5 +160,7 @@ static inline int key_negate_and_link(struct key *key,
return key_reject_and_link(key, timeout, ENOKEY, keyring, instkey); return key_reject_and_link(key, timeout, ENOKEY, keyring, instkey);
} }
extern int generic_key_instantiate(struct key *key, struct key_preparsed_payload *prep);
#endif /* CONFIG_KEYS */ #endif /* CONFIG_KEYS */
#endif /* _LINUX_KEY_TYPE_H */ #endif /* _LINUX_KEY_TYPE_H */
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#include <linux/key-type.h> #include <linux/key-type.h>
#include <keys/ceph-type.h> #include <keys/ceph-type.h>
#include <keys/user-type.h>
#include <linux/ceph/decode.h> #include <linux/ceph/decode.h>
#include "crypto.h" #include "crypto.h"
...@@ -423,8 +424,7 @@ int ceph_encrypt2(struct ceph_crypto_key *secret, void *dst, size_t *dst_len, ...@@ -423,8 +424,7 @@ int ceph_encrypt2(struct ceph_crypto_key *secret, void *dst, size_t *dst_len,
} }
} }
static int ceph_key_instantiate(struct key *key, static int ceph_key_preparse(struct key_preparsed_payload *prep)
struct key_preparsed_payload *prep)
{ {
struct ceph_crypto_key *ckey; struct ceph_crypto_key *ckey;
size_t datalen = prep->datalen; size_t datalen = prep->datalen;
...@@ -435,10 +435,6 @@ static int ceph_key_instantiate(struct key *key, ...@@ -435,10 +435,6 @@ static int ceph_key_instantiate(struct key *key,
if (datalen <= 0 || datalen > 32767 || !prep->data) if (datalen <= 0 || datalen > 32767 || !prep->data)
goto err; goto err;
ret = key_payload_reserve(key, datalen);
if (ret < 0)
goto err;
ret = -ENOMEM; ret = -ENOMEM;
ckey = kmalloc(sizeof(*ckey), GFP_KERNEL); ckey = kmalloc(sizeof(*ckey), GFP_KERNEL);
if (!ckey) if (!ckey)
...@@ -450,7 +446,8 @@ static int ceph_key_instantiate(struct key *key, ...@@ -450,7 +446,8 @@ static int ceph_key_instantiate(struct key *key,
if (ret < 0) if (ret < 0)
goto err_ckey; goto err_ckey;
key->payload.data = ckey; prep->payload[0] = ckey;
prep->quotalen = datalen;
return 0; return 0;
err_ckey: err_ckey:
...@@ -459,12 +456,15 @@ static int ceph_key_instantiate(struct key *key, ...@@ -459,12 +456,15 @@ static int ceph_key_instantiate(struct key *key,
return ret; return ret;
} }
static int ceph_key_match(const struct key *key, const void *description) static void ceph_key_free_preparse(struct key_preparsed_payload *prep)
{ {
return strcmp(key->description, description) == 0; struct ceph_crypto_key *ckey = prep->payload[0];
ceph_crypto_key_destroy(ckey);
kfree(ckey);
} }
static void ceph_key_destroy(struct key *key) { static void ceph_key_destroy(struct key *key)
{
struct ceph_crypto_key *ckey = key->payload.data; struct ceph_crypto_key *ckey = key->payload.data;
ceph_crypto_key_destroy(ckey); ceph_crypto_key_destroy(ckey);
...@@ -473,8 +473,10 @@ static void ceph_key_destroy(struct key *key) { ...@@ -473,8 +473,10 @@ static void ceph_key_destroy(struct key *key) {
struct key_type key_type_ceph = { struct key_type key_type_ceph = {
.name = "ceph", .name = "ceph",
.instantiate = ceph_key_instantiate, .preparse = ceph_key_preparse,
.match = ceph_key_match, .free_preparse = ceph_key_free_preparse,
.instantiate = generic_key_instantiate,
.match = user_match,
.destroy = ceph_key_destroy, .destroy = ceph_key_destroy,
}; };
......
...@@ -46,7 +46,7 @@ const struct cred *dns_resolver_cache; ...@@ -46,7 +46,7 @@ const struct cred *dns_resolver_cache;
#define DNS_ERRORNO_OPTION "dnserror" #define DNS_ERRORNO_OPTION "dnserror"
/* /*
* Instantiate a user defined key for dns_resolver. * Preparse instantiation data for a dns_resolver key.
* *
* The data must be a NUL-terminated string, with the NUL char accounted in * The data must be a NUL-terminated string, with the NUL char accounted in
* datalen. * datalen.
...@@ -58,17 +58,15 @@ const struct cred *dns_resolver_cache; ...@@ -58,17 +58,15 @@ const struct cred *dns_resolver_cache;
* "ip1,ip2,...#foo=bar" * "ip1,ip2,...#foo=bar"
*/ */
static int static int
dns_resolver_instantiate(struct key *key, struct key_preparsed_payload *prep) dns_resolver_preparse(struct key_preparsed_payload *prep)
{ {
struct user_key_payload *upayload; struct user_key_payload *upayload;
unsigned long derrno; unsigned long derrno;
int ret; int ret;
size_t datalen = prep->datalen, result_len = 0; int datalen = prep->datalen, result_len = 0;
const char *data = prep->data, *end, *opt; const char *data = prep->data, *end, *opt;
kenter("%%%d,%s,'%*.*s',%zu", kenter("'%*.*s',%u", datalen, datalen, data, datalen);
key->serial, key->description,
(int)datalen, (int)datalen, data, datalen);
if (datalen <= 1 || !data || data[datalen - 1] != '\0') if (datalen <= 1 || !data || data[datalen - 1] != '\0')
return -EINVAL; return -EINVAL;
...@@ -95,8 +93,7 @@ dns_resolver_instantiate(struct key *key, struct key_preparsed_payload *prep) ...@@ -95,8 +93,7 @@ dns_resolver_instantiate(struct key *key, struct key_preparsed_payload *prep)
opt_len = next_opt - opt; opt_len = next_opt - opt;
if (!opt_len) { if (!opt_len) {
printk(KERN_WARNING printk(KERN_WARNING
"Empty option to dns_resolver key %d\n", "Empty option to dns_resolver key\n");
key->serial);
return -EINVAL; return -EINVAL;
} }
...@@ -125,30 +122,28 @@ dns_resolver_instantiate(struct key *key, struct key_preparsed_payload *prep) ...@@ -125,30 +122,28 @@ dns_resolver_instantiate(struct key *key, struct key_preparsed_payload *prep)
goto bad_option_value; goto bad_option_value;
kdebug("dns error no. = %lu", derrno); kdebug("dns error no. = %lu", derrno);
key->type_data.x[0] = -derrno; prep->type_data[0] = ERR_PTR(-derrno);
continue; continue;
} }
bad_option_value: bad_option_value:
printk(KERN_WARNING printk(KERN_WARNING
"Option '%*.*s' to dns_resolver key %d:" "Option '%*.*s' to dns_resolver key:"
" bad/missing value\n", " bad/missing value\n",
opt_nlen, opt_nlen, opt, key->serial); opt_nlen, opt_nlen, opt);
return -EINVAL; return -EINVAL;
} while (opt = next_opt + 1, opt < end); } while (opt = next_opt + 1, opt < end);
} }
/* don't cache the result if we're caching an error saying there's no /* don't cache the result if we're caching an error saying there's no
* result */ * result */
if (key->type_data.x[0]) { if (prep->type_data[0]) {
kleave(" = 0 [h_error %ld]", key->type_data.x[0]); kleave(" = 0 [h_error %ld]", PTR_ERR(prep->type_data[0]));
return 0; return 0;
} }
kdebug("store result"); kdebug("store result");
ret = key_payload_reserve(key, result_len); prep->quotalen = result_len;
if (ret < 0)
return -EINVAL;
upayload = kmalloc(sizeof(*upayload) + result_len + 1, GFP_KERNEL); upayload = kmalloc(sizeof(*upayload) + result_len + 1, GFP_KERNEL);
if (!upayload) { if (!upayload) {
...@@ -159,12 +154,22 @@ dns_resolver_instantiate(struct key *key, struct key_preparsed_payload *prep) ...@@ -159,12 +154,22 @@ dns_resolver_instantiate(struct key *key, struct key_preparsed_payload *prep)
upayload->datalen = result_len; upayload->datalen = result_len;
memcpy(upayload->data, data, result_len); memcpy(upayload->data, data, result_len);
upayload->data[result_len] = '\0'; upayload->data[result_len] = '\0';
rcu_assign_pointer(key->payload.data, upayload);
prep->payload[0] = upayload;
kleave(" = 0"); kleave(" = 0");
return 0; return 0;
} }
/*
* Clean up the preparse data
*/
static void dns_resolver_free_preparse(struct key_preparsed_payload *prep)
{
pr_devel("==>%s()\n", __func__);
kfree(prep->payload[0]);
}
/* /*
* The description is of the form "[<type>:]<domain_name>" * The description is of the form "[<type>:]<domain_name>"
* *
...@@ -234,7 +239,9 @@ static long dns_resolver_read(const struct key *key, ...@@ -234,7 +239,9 @@ static long dns_resolver_read(const struct key *key,
struct key_type key_type_dns_resolver = { struct key_type key_type_dns_resolver = {
.name = "dns_resolver", .name = "dns_resolver",
.instantiate = dns_resolver_instantiate, .preparse = dns_resolver_preparse,
.free_preparse = dns_resolver_free_preparse,
.instantiate = generic_key_instantiate,
.match = dns_resolver_match, .match = dns_resolver_match,
.revoke = user_revoke, .revoke = user_revoke,
.destroy = user_destroy, .destroy = user_destroy,
......
...@@ -26,8 +26,10 @@ ...@@ -26,8 +26,10 @@
#include "ar-internal.h" #include "ar-internal.h"
static int rxrpc_vet_description_s(const char *); static int rxrpc_vet_description_s(const char *);
static int rxrpc_instantiate(struct key *, struct key_preparsed_payload *); static int rxrpc_preparse(struct key_preparsed_payload *);
static int rxrpc_instantiate_s(struct key *, struct key_preparsed_payload *); static int rxrpc_preparse_s(struct key_preparsed_payload *);
static void rxrpc_free_preparse(struct key_preparsed_payload *);
static void rxrpc_free_preparse_s(struct key_preparsed_payload *);
static void rxrpc_destroy(struct key *); static void rxrpc_destroy(struct key *);
static void rxrpc_destroy_s(struct key *); static void rxrpc_destroy_s(struct key *);
static void rxrpc_describe(const struct key *, struct seq_file *); static void rxrpc_describe(const struct key *, struct seq_file *);
...@@ -39,7 +41,9 @@ static long rxrpc_read(const struct key *, char __user *, size_t); ...@@ -39,7 +41,9 @@ static long rxrpc_read(const struct key *, char __user *, size_t);
*/ */
struct key_type key_type_rxrpc = { struct key_type key_type_rxrpc = {
.name = "rxrpc", .name = "rxrpc",
.instantiate = rxrpc_instantiate, .preparse = rxrpc_preparse,
.free_preparse = rxrpc_free_preparse,
.instantiate = generic_key_instantiate,
.match = user_match, .match = user_match,
.destroy = rxrpc_destroy, .destroy = rxrpc_destroy,
.describe = rxrpc_describe, .describe = rxrpc_describe,
...@@ -54,7 +58,9 @@ EXPORT_SYMBOL(key_type_rxrpc); ...@@ -54,7 +58,9 @@ EXPORT_SYMBOL(key_type_rxrpc);
struct key_type key_type_rxrpc_s = { struct key_type key_type_rxrpc_s = {
.name = "rxrpc_s", .name = "rxrpc_s",
.vet_description = rxrpc_vet_description_s, .vet_description = rxrpc_vet_description_s,
.instantiate = rxrpc_instantiate_s, .preparse = rxrpc_preparse_s,
.free_preparse = rxrpc_free_preparse_s,
.instantiate = generic_key_instantiate,
.match = user_match, .match = user_match,
.destroy = rxrpc_destroy_s, .destroy = rxrpc_destroy_s,
.describe = rxrpc_describe, .describe = rxrpc_describe,
...@@ -81,13 +87,13 @@ static int rxrpc_vet_description_s(const char *desc) ...@@ -81,13 +87,13 @@ static int rxrpc_vet_description_s(const char *desc)
* parse an RxKAD type XDR format token * parse an RxKAD type XDR format token
* - the caller guarantees we have at least 4 words * - the caller guarantees we have at least 4 words
*/ */
static int rxrpc_instantiate_xdr_rxkad(struct key *key, const __be32 *xdr, static int rxrpc_preparse_xdr_rxkad(struct key_preparsed_payload *prep,
unsigned int toklen) size_t datalen,
const __be32 *xdr, unsigned int toklen)
{ {
struct rxrpc_key_token *token, **pptoken; struct rxrpc_key_token *token, **pptoken;
size_t plen; size_t plen;
u32 tktlen; u32 tktlen;
int ret;
_enter(",{%x,%x,%x,%x},%u", _enter(",{%x,%x,%x,%x},%u",
ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]), ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
...@@ -103,9 +109,7 @@ static int rxrpc_instantiate_xdr_rxkad(struct key *key, const __be32 *xdr, ...@@ -103,9 +109,7 @@ static int rxrpc_instantiate_xdr_rxkad(struct key *key, const __be32 *xdr,
return -EKEYREJECTED; return -EKEYREJECTED;
plen = sizeof(*token) + sizeof(*token->kad) + tktlen; plen = sizeof(*token) + sizeof(*token->kad) + tktlen;
ret = key_payload_reserve(key, key->datalen + plen); prep->quotalen = datalen + plen;
if (ret < 0)
return ret;
plen -= sizeof(*token); plen -= sizeof(*token);
token = kzalloc(sizeof(*token), GFP_KERNEL); token = kzalloc(sizeof(*token), GFP_KERNEL);
...@@ -146,16 +150,16 @@ static int rxrpc_instantiate_xdr_rxkad(struct key *key, const __be32 *xdr, ...@@ -146,16 +150,16 @@ static int rxrpc_instantiate_xdr_rxkad(struct key *key, const __be32 *xdr,
token->kad->ticket[6], token->kad->ticket[7]); token->kad->ticket[6], token->kad->ticket[7]);
/* count the number of tokens attached */ /* count the number of tokens attached */
key->type_data.x[0]++; prep->type_data[0] = (void *)((unsigned long)prep->type_data[0] + 1);
/* attach the data */ /* attach the data */
for (pptoken = (struct rxrpc_key_token **)&key->payload.data; for (pptoken = (struct rxrpc_key_token **)&prep->payload[0];
*pptoken; *pptoken;
pptoken = &(*pptoken)->next) pptoken = &(*pptoken)->next)
continue; continue;
*pptoken = token; *pptoken = token;
if (token->kad->expiry < key->expiry) if (token->kad->expiry < prep->expiry)
key->expiry = token->kad->expiry; prep->expiry = token->kad->expiry;
_leave(" = 0"); _leave(" = 0");
return 0; return 0;
...@@ -418,8 +422,9 @@ static int rxrpc_krb5_decode_ticket(u8 **_ticket, u16 *_tktlen, ...@@ -418,8 +422,9 @@ static int rxrpc_krb5_decode_ticket(u8 **_ticket, u16 *_tktlen,
* parse an RxK5 type XDR format token * parse an RxK5 type XDR format token
* - the caller guarantees we have at least 4 words * - the caller guarantees we have at least 4 words
*/ */
static int rxrpc_instantiate_xdr_rxk5(struct key *key, const __be32 *xdr, static int rxrpc_preparse_xdr_rxk5(struct key_preparsed_payload *prep,
unsigned int toklen) size_t datalen,
const __be32 *xdr, unsigned int toklen)
{ {
struct rxrpc_key_token *token, **pptoken; struct rxrpc_key_token *token, **pptoken;
struct rxk5_key *rxk5; struct rxk5_key *rxk5;
...@@ -432,9 +437,7 @@ static int rxrpc_instantiate_xdr_rxk5(struct key *key, const __be32 *xdr, ...@@ -432,9 +437,7 @@ static int rxrpc_instantiate_xdr_rxk5(struct key *key, const __be32 *xdr,
/* reserve some payload space for this subkey - the length of the token /* reserve some payload space for this subkey - the length of the token
* is a reasonable approximation */ * is a reasonable approximation */
ret = key_payload_reserve(key, key->datalen + toklen); prep->quotalen = datalen + toklen;
if (ret < 0)
return ret;
token = kzalloc(sizeof(*token), GFP_KERNEL); token = kzalloc(sizeof(*token), GFP_KERNEL);
if (!token) if (!token)
...@@ -520,14 +523,14 @@ static int rxrpc_instantiate_xdr_rxk5(struct key *key, const __be32 *xdr, ...@@ -520,14 +523,14 @@ static int rxrpc_instantiate_xdr_rxk5(struct key *key, const __be32 *xdr,
if (toklen != 0) if (toklen != 0)
goto inval; goto inval;
/* attach the payload to the key */ /* attach the payload */
for (pptoken = (struct rxrpc_key_token **)&key->payload.data; for (pptoken = (struct rxrpc_key_token **)&prep->payload[0];
*pptoken; *pptoken;
pptoken = &(*pptoken)->next) pptoken = &(*pptoken)->next)
continue; continue;
*pptoken = token; *pptoken = token;
if (token->kad->expiry < key->expiry) if (token->kad->expiry < prep->expiry)
key->expiry = token->kad->expiry; prep->expiry = token->kad->expiry;
_leave(" = 0"); _leave(" = 0");
return 0; return 0;
...@@ -545,16 +548,17 @@ static int rxrpc_instantiate_xdr_rxk5(struct key *key, const __be32 *xdr, ...@@ -545,16 +548,17 @@ static int rxrpc_instantiate_xdr_rxk5(struct key *key, const __be32 *xdr,
* attempt to parse the data as the XDR format * attempt to parse the data as the XDR format
* - the caller guarantees we have more than 7 words * - the caller guarantees we have more than 7 words
*/ */
static int rxrpc_instantiate_xdr(struct key *key, const void *data, size_t datalen) static int rxrpc_preparse_xdr(struct key_preparsed_payload *prep)
{ {
const __be32 *xdr = data, *token; const __be32 *xdr = prep->data, *token;
const char *cp; const char *cp;
unsigned int len, tmp, loop, ntoken, toklen, sec_ix; unsigned int len, tmp, loop, ntoken, toklen, sec_ix;
size_t datalen = prep->datalen;
int ret; int ret;
_enter(",{%x,%x,%x,%x},%zu", _enter(",{%x,%x,%x,%x},%zu",
ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]), ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
datalen); prep->datalen);
if (datalen > AFSTOKEN_LENGTH_MAX) if (datalen > AFSTOKEN_LENGTH_MAX)
goto not_xdr; goto not_xdr;
...@@ -635,13 +639,13 @@ static int rxrpc_instantiate_xdr(struct key *key, const void *data, size_t datal ...@@ -635,13 +639,13 @@ static int rxrpc_instantiate_xdr(struct key *key, const void *data, size_t datal
switch (sec_ix) { switch (sec_ix) {
case RXRPC_SECURITY_RXKAD: case RXRPC_SECURITY_RXKAD:
ret = rxrpc_instantiate_xdr_rxkad(key, xdr, toklen); ret = rxrpc_preparse_xdr_rxkad(prep, datalen, xdr, toklen);
if (ret != 0) if (ret != 0)
goto error; goto error;
break; break;
case RXRPC_SECURITY_RXK5: case RXRPC_SECURITY_RXK5:
ret = rxrpc_instantiate_xdr_rxk5(key, xdr, toklen); ret = rxrpc_preparse_xdr_rxk5(prep, datalen, xdr, toklen);
if (ret != 0) if (ret != 0)
goto error; goto error;
break; break;
...@@ -665,8 +669,9 @@ static int rxrpc_instantiate_xdr(struct key *key, const void *data, size_t datal ...@@ -665,8 +669,9 @@ static int rxrpc_instantiate_xdr(struct key *key, const void *data, size_t datal
} }
/* /*
* instantiate an rxrpc defined key * Preparse an rxrpc defined key.
* data should be of the form: *
* Data should be of the form:
* OFFSET LEN CONTENT * OFFSET LEN CONTENT
* 0 4 key interface version number * 0 4 key interface version number
* 4 2 security index (type) * 4 2 security index (type)
...@@ -678,7 +683,7 @@ static int rxrpc_instantiate_xdr(struct key *key, const void *data, size_t datal ...@@ -678,7 +683,7 @@ static int rxrpc_instantiate_xdr(struct key *key, const void *data, size_t datal
* *
* if no data is provided, then a no-security key is made * if no data is provided, then a no-security key is made
*/ */
static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep) static int rxrpc_preparse(struct key_preparsed_payload *prep)
{ {
const struct rxrpc_key_data_v1 *v1; const struct rxrpc_key_data_v1 *v1;
struct rxrpc_key_token *token, **pp; struct rxrpc_key_token *token, **pp;
...@@ -686,7 +691,7 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep ...@@ -686,7 +691,7 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep
u32 kver; u32 kver;
int ret; int ret;
_enter("{%x},,%zu", key_serial(key), prep->datalen); _enter("%zu", prep->datalen);
/* handle a no-security key */ /* handle a no-security key */
if (!prep->data && prep->datalen == 0) if (!prep->data && prep->datalen == 0)
...@@ -694,7 +699,7 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep ...@@ -694,7 +699,7 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep
/* determine if the XDR payload format is being used */ /* determine if the XDR payload format is being used */
if (prep->datalen > 7 * 4) { if (prep->datalen > 7 * 4) {
ret = rxrpc_instantiate_xdr(key, prep->data, prep->datalen); ret = rxrpc_preparse_xdr(prep);
if (ret != -EPROTO) if (ret != -EPROTO)
return ret; return ret;
} }
...@@ -743,9 +748,7 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep ...@@ -743,9 +748,7 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep
goto error; goto error;
plen = sizeof(*token->kad) + v1->ticket_length; plen = sizeof(*token->kad) + v1->ticket_length;
ret = key_payload_reserve(key, plen + sizeof(*token)); prep->quotalen = plen + sizeof(*token);
if (ret < 0)
goto error;
ret = -ENOMEM; ret = -ENOMEM;
token = kzalloc(sizeof(*token), GFP_KERNEL); token = kzalloc(sizeof(*token), GFP_KERNEL);
...@@ -762,15 +765,16 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep ...@@ -762,15 +765,16 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep
memcpy(&token->kad->session_key, &v1->session_key, 8); memcpy(&token->kad->session_key, &v1->session_key, 8);
memcpy(&token->kad->ticket, v1->ticket, v1->ticket_length); memcpy(&token->kad->ticket, v1->ticket, v1->ticket_length);
/* attach the data */ /* count the number of tokens attached */
key->type_data.x[0]++; prep->type_data[0] = (void *)((unsigned long)prep->type_data[0] + 1);
pp = (struct rxrpc_key_token **)&key->payload.data; /* attach the data */
pp = (struct rxrpc_key_token **)&prep->payload[0];
while (*pp) while (*pp)
pp = &(*pp)->next; pp = &(*pp)->next;
*pp = token; *pp = token;
if (token->kad->expiry < key->expiry) if (token->kad->expiry < prep->expiry)
key->expiry = token->kad->expiry; prep->expiry = token->kad->expiry;
token = NULL; token = NULL;
ret = 0; ret = 0;
...@@ -781,20 +785,55 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep ...@@ -781,20 +785,55 @@ static int rxrpc_instantiate(struct key *key, struct key_preparsed_payload *prep
} }
/* /*
* instantiate a server secret key * Free token list.
* data should be a pointer to the 8-byte secret key
*/ */
static int rxrpc_instantiate_s(struct key *key, static void rxrpc_free_token_list(struct rxrpc_key_token *token)
struct key_preparsed_payload *prep) {
struct rxrpc_key_token *next;
for (; token; token = next) {
next = token->next;
switch (token->security_index) {
case RXRPC_SECURITY_RXKAD:
kfree(token->kad);
break;
case RXRPC_SECURITY_RXK5:
if (token->k5)
rxrpc_rxk5_free(token->k5);
break;
default:
printk(KERN_ERR "Unknown token type %x on rxrpc key\n",
token->security_index);
BUG();
}
kfree(token);
}
}
/*
* Clean up preparse data.
*/
static void rxrpc_free_preparse(struct key_preparsed_payload *prep)
{
rxrpc_free_token_list(prep->payload[0]);
}
/*
* Preparse a server secret key.
*
* The data should be the 8-byte secret key.
*/
static int rxrpc_preparse_s(struct key_preparsed_payload *prep)
{ {
struct crypto_blkcipher *ci; struct crypto_blkcipher *ci;
_enter("{%x},,%zu", key_serial(key), prep->datalen); _enter("%zu", prep->datalen);
if (prep->datalen != 8) if (prep->datalen != 8)
return -EINVAL; return -EINVAL;
memcpy(&key->type_data, prep->data, 8); memcpy(&prep->type_data, prep->data, 8);
ci = crypto_alloc_blkcipher("pcbc(des)", 0, CRYPTO_ALG_ASYNC); ci = crypto_alloc_blkcipher("pcbc(des)", 0, CRYPTO_ALG_ASYNC);
if (IS_ERR(ci)) { if (IS_ERR(ci)) {
...@@ -805,36 +844,26 @@ static int rxrpc_instantiate_s(struct key *key, ...@@ -805,36 +844,26 @@ static int rxrpc_instantiate_s(struct key *key,
if (crypto_blkcipher_setkey(ci, prep->data, 8) < 0) if (crypto_blkcipher_setkey(ci, prep->data, 8) < 0)
BUG(); BUG();
key->payload.data = ci; prep->payload[0] = ci;
_leave(" = 0"); _leave(" = 0");
return 0; return 0;
} }
/*
* Clean up preparse data.
*/
static void rxrpc_free_preparse_s(struct key_preparsed_payload *prep)
{
if (prep->payload[0])
crypto_free_blkcipher(prep->payload[0]);
}
/* /*
* dispose of the data dangling from the corpse of a rxrpc key * dispose of the data dangling from the corpse of a rxrpc key
*/ */
static void rxrpc_destroy(struct key *key) static void rxrpc_destroy(struct key *key)
{ {
struct rxrpc_key_token *token; rxrpc_free_token_list(key->payload.data);
while ((token = key->payload.data)) {
key->payload.data = token->next;
switch (token->security_index) {
case RXRPC_SECURITY_RXKAD:
kfree(token->kad);
break;
case RXRPC_SECURITY_RXK5:
if (token->k5)
rxrpc_rxk5_free(token->k5);
break;
default:
printk(KERN_ERR "Unknown token type %x on rxrpc key\n",
token->security_index);
BUG();
}
kfree(token);
}
} }
/* /*
......
...@@ -34,7 +34,9 @@ MODULE_LICENSE("GPL"); ...@@ -34,7 +34,9 @@ MODULE_LICENSE("GPL");
struct key_type key_type_big_key = { struct key_type key_type_big_key = {
.name = "big_key", .name = "big_key",
.def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT, .def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
.instantiate = big_key_instantiate, .preparse = big_key_preparse,
.free_preparse = big_key_free_preparse,
.instantiate = generic_key_instantiate,
.match = user_match, .match = user_match,
.revoke = big_key_revoke, .revoke = big_key_revoke,
.destroy = big_key_destroy, .destroy = big_key_destroy,
...@@ -43,11 +45,11 @@ struct key_type key_type_big_key = { ...@@ -43,11 +45,11 @@ struct key_type key_type_big_key = {
}; };
/* /*
* Instantiate a big key * Preparse a big key
*/ */
int big_key_instantiate(struct key *key, struct key_preparsed_payload *prep) int big_key_preparse(struct key_preparsed_payload *prep)
{ {
struct path *path = (struct path *)&key->payload.data2; struct path *path = (struct path *)&prep->payload;
struct file *file; struct file *file;
ssize_t written; ssize_t written;
size_t datalen = prep->datalen; size_t datalen = prep->datalen;
...@@ -58,11 +60,9 @@ int big_key_instantiate(struct key *key, struct key_preparsed_payload *prep) ...@@ -58,11 +60,9 @@ int big_key_instantiate(struct key *key, struct key_preparsed_payload *prep)
goto error; goto error;
/* Set an arbitrary quota */ /* Set an arbitrary quota */
ret = key_payload_reserve(key, 16); prep->quotalen = 16;
if (ret < 0)
goto error;
key->type_data.x[1] = datalen; prep->type_data[1] = (void *)(unsigned long)datalen;
if (datalen > BIG_KEY_FILE_THRESHOLD) { if (datalen > BIG_KEY_FILE_THRESHOLD) {
/* Create a shmem file to store the data in. This will permit the data /* Create a shmem file to store the data in. This will permit the data
...@@ -73,7 +73,7 @@ int big_key_instantiate(struct key *key, struct key_preparsed_payload *prep) ...@@ -73,7 +73,7 @@ int big_key_instantiate(struct key *key, struct key_preparsed_payload *prep)
file = shmem_kernel_file_setup("", datalen, 0); file = shmem_kernel_file_setup("", datalen, 0);
if (IS_ERR(file)) { if (IS_ERR(file)) {
ret = PTR_ERR(file); ret = PTR_ERR(file);
goto err_quota; goto error;
} }
written = kernel_write(file, prep->data, prep->datalen, 0); written = kernel_write(file, prep->data, prep->datalen, 0);
...@@ -93,23 +93,32 @@ int big_key_instantiate(struct key *key, struct key_preparsed_payload *prep) ...@@ -93,23 +93,32 @@ int big_key_instantiate(struct key *key, struct key_preparsed_payload *prep)
} else { } else {
/* Just store the data in a buffer */ /* Just store the data in a buffer */
void *data = kmalloc(datalen, GFP_KERNEL); void *data = kmalloc(datalen, GFP_KERNEL);
if (!data) { if (!data)
ret = -ENOMEM; return -ENOMEM;
goto err_quota;
}
key->payload.data = memcpy(data, prep->data, prep->datalen); prep->payload[0] = memcpy(data, prep->data, prep->datalen);
} }
return 0; return 0;
err_fput: err_fput:
fput(file); fput(file);
err_quota:
key_payload_reserve(key, 0);
error: error:
return ret; return ret;
} }
/*
* Clear preparsement.
*/
void big_key_free_preparse(struct key_preparsed_payload *prep)
{
if (prep->datalen > BIG_KEY_FILE_THRESHOLD) {
struct path *path = (struct path *)&prep->payload;
path_put(path);
} else {
kfree(prep->payload[0]);
}
}
/* /*
* dispose of the links from a revoked keyring * dispose of the links from a revoked keyring
* - called with the key sem write-locked * - called with the key sem write-locked
......
...@@ -811,7 +811,7 @@ static int encrypted_instantiate(struct key *key, ...@@ -811,7 +811,7 @@ static int encrypted_instantiate(struct key *key,
goto out; goto out;
} }
rcu_assign_keypointer(key, epayload); prep->payload[0] = epayload;
out: out:
kfree(datablob); kfree(datablob);
return ret; return ret;
......
...@@ -437,6 +437,11 @@ static int __key_instantiate_and_link(struct key *key, ...@@ -437,6 +437,11 @@ static int __key_instantiate_and_link(struct key *key,
/* disable the authorisation key */ /* disable the authorisation key */
if (authkey) if (authkey)
key_revoke(authkey); key_revoke(authkey);
if (prep->expiry != TIME_T_MAX) {
key->expiry = prep->expiry;
key_schedule_gc(prep->expiry + key_gc_delay);
}
} }
} }
...@@ -479,6 +484,7 @@ int key_instantiate_and_link(struct key *key, ...@@ -479,6 +484,7 @@ int key_instantiate_and_link(struct key *key,
prep.data = data; prep.data = data;
prep.datalen = datalen; prep.datalen = datalen;
prep.quotalen = key->type->def_datalen; prep.quotalen = key->type->def_datalen;
prep.expiry = TIME_T_MAX;
if (key->type->preparse) { if (key->type->preparse) {
ret = key->type->preparse(&prep); ret = key->type->preparse(&prep);
if (ret < 0) if (ret < 0)
...@@ -488,7 +494,7 @@ int key_instantiate_and_link(struct key *key, ...@@ -488,7 +494,7 @@ int key_instantiate_and_link(struct key *key,
if (keyring) { if (keyring) {
ret = __key_link_begin(keyring, &key->index_key, &edit); ret = __key_link_begin(keyring, &key->index_key, &edit);
if (ret < 0) if (ret < 0)
goto error_free_preparse; goto error;
} }
ret = __key_instantiate_and_link(key, &prep, keyring, authkey, &edit); ret = __key_instantiate_and_link(key, &prep, keyring, authkey, &edit);
...@@ -496,10 +502,9 @@ int key_instantiate_and_link(struct key *key, ...@@ -496,10 +502,9 @@ int key_instantiate_and_link(struct key *key,
if (keyring) if (keyring)
__key_link_end(keyring, &key->index_key, edit); __key_link_end(keyring, &key->index_key, edit);
error_free_preparse: error:
if (key->type->preparse) if (key->type->preparse)
key->type->free_preparse(&prep); key->type->free_preparse(&prep);
error:
return ret; return ret;
} }
...@@ -811,11 +816,12 @@ key_ref_t key_create_or_update(key_ref_t keyring_ref, ...@@ -811,11 +816,12 @@ key_ref_t key_create_or_update(key_ref_t keyring_ref,
prep.datalen = plen; prep.datalen = plen;
prep.quotalen = index_key.type->def_datalen; prep.quotalen = index_key.type->def_datalen;
prep.trusted = flags & KEY_ALLOC_TRUSTED; prep.trusted = flags & KEY_ALLOC_TRUSTED;
prep.expiry = TIME_T_MAX;
if (index_key.type->preparse) { if (index_key.type->preparse) {
ret = index_key.type->preparse(&prep); ret = index_key.type->preparse(&prep);
if (ret < 0) { if (ret < 0) {
key_ref = ERR_PTR(ret); key_ref = ERR_PTR(ret);
goto error_put_type; goto error_free_prep;
} }
if (!index_key.description) if (!index_key.description)
index_key.description = prep.description; index_key.description = prep.description;
...@@ -941,6 +947,7 @@ int key_update(key_ref_t key_ref, const void *payload, size_t plen) ...@@ -941,6 +947,7 @@ int key_update(key_ref_t key_ref, const void *payload, size_t plen)
prep.data = payload; prep.data = payload;
prep.datalen = plen; prep.datalen = plen;
prep.quotalen = key->type->def_datalen; prep.quotalen = key->type->def_datalen;
prep.expiry = TIME_T_MAX;
if (key->type->preparse) { if (key->type->preparse) {
ret = key->type->preparse(&prep); ret = key->type->preparse(&prep);
if (ret < 0) if (ret < 0)
...@@ -956,9 +963,9 @@ int key_update(key_ref_t key_ref, const void *payload, size_t plen) ...@@ -956,9 +963,9 @@ int key_update(key_ref_t key_ref, const void *payload, size_t plen)
up_write(&key->sem); up_write(&key->sem);
error:
if (key->type->preparse) if (key->type->preparse)
key->type->free_preparse(&prep); key->type->free_preparse(&prep);
error:
return ret; return ret;
} }
EXPORT_SYMBOL(key_update); EXPORT_SYMBOL(key_update);
...@@ -1023,6 +1030,38 @@ void key_invalidate(struct key *key) ...@@ -1023,6 +1030,38 @@ void key_invalidate(struct key *key)
} }
EXPORT_SYMBOL(key_invalidate); EXPORT_SYMBOL(key_invalidate);
/**
* generic_key_instantiate - Simple instantiation of a key from preparsed data
* @key: The key to be instantiated
* @prep: The preparsed data to load.
*
* Instantiate a key from preparsed data. We assume we can just copy the data
* in directly and clear the old pointers.
*
* This can be pointed to directly by the key type instantiate op pointer.
*/
int generic_key_instantiate(struct key *key, struct key_preparsed_payload *prep)
{
int ret;
pr_devel("==>%s()\n", __func__);
ret = key_payload_reserve(key, prep->quotalen);
if (ret == 0) {
key->type_data.p[0] = prep->type_data[0];
key->type_data.p[1] = prep->type_data[1];
rcu_assign_keypointer(key, prep->payload[0]);
key->payload.data2[1] = prep->payload[1];
prep->type_data[0] = NULL;
prep->type_data[1] = NULL;
prep->payload[0] = NULL;
prep->payload[1] = NULL;
}
pr_devel("<==%s() = %d\n", __func__, ret);
return ret;
}
EXPORT_SYMBOL(generic_key_instantiate);
/** /**
* register_key_type - Register a type of key. * register_key_type - Register a type of key.
* @ktype: The new key type. * @ktype: The new key type.
......
...@@ -73,6 +73,8 @@ static inline unsigned keyring_hash(const char *desc) ...@@ -73,6 +73,8 @@ static inline unsigned keyring_hash(const char *desc)
* can be treated as ordinary keys in addition to having their own special * can be treated as ordinary keys in addition to having their own special
* operations. * operations.
*/ */
static int keyring_preparse(struct key_preparsed_payload *prep);
static void keyring_free_preparse(struct key_preparsed_payload *prep);
static int keyring_instantiate(struct key *keyring, static int keyring_instantiate(struct key *keyring,
struct key_preparsed_payload *prep); struct key_preparsed_payload *prep);
static void keyring_revoke(struct key *keyring); static void keyring_revoke(struct key *keyring);
...@@ -84,6 +86,8 @@ static long keyring_read(const struct key *keyring, ...@@ -84,6 +86,8 @@ static long keyring_read(const struct key *keyring,
struct key_type key_type_keyring = { struct key_type key_type_keyring = {
.name = "keyring", .name = "keyring",
.def_datalen = 0, .def_datalen = 0,
.preparse = keyring_preparse,
.free_preparse = keyring_free_preparse,
.instantiate = keyring_instantiate, .instantiate = keyring_instantiate,
.match = user_match, .match = user_match,
.revoke = keyring_revoke, .revoke = keyring_revoke,
...@@ -122,6 +126,21 @@ static void keyring_publish_name(struct key *keyring) ...@@ -122,6 +126,21 @@ static void keyring_publish_name(struct key *keyring)
} }
} }
/*
* Preparse a keyring payload
*/
static int keyring_preparse(struct key_preparsed_payload *prep)
{
return prep->datalen != 0 ? -EINVAL : 0;
}
/*
* Free a preparse of a user defined key payload
*/
static void keyring_free_preparse(struct key_preparsed_payload *prep)
{
}
/* /*
* Initialise a keyring. * Initialise a keyring.
* *
...@@ -130,17 +149,10 @@ static void keyring_publish_name(struct key *keyring) ...@@ -130,17 +149,10 @@ static void keyring_publish_name(struct key *keyring)
static int keyring_instantiate(struct key *keyring, static int keyring_instantiate(struct key *keyring,
struct key_preparsed_payload *prep) struct key_preparsed_payload *prep)
{ {
int ret; assoc_array_init(&keyring->keys);
/* make the keyring available by name if it has one */
ret = -EINVAL; keyring_publish_name(keyring);
if (prep->datalen == 0) { return 0;
assoc_array_init(&keyring->keys);
/* make the keyring available by name if it has one */
keyring_publish_name(keyring);
ret = 0;
}
return ret;
} }
/* /*
......
...@@ -20,6 +20,8 @@ ...@@ -20,6 +20,8 @@
#include "internal.h" #include "internal.h"
#include <keys/user-type.h> #include <keys/user-type.h>
static int request_key_auth_preparse(struct key_preparsed_payload *);
static void request_key_auth_free_preparse(struct key_preparsed_payload *);
static int request_key_auth_instantiate(struct key *, static int request_key_auth_instantiate(struct key *,
struct key_preparsed_payload *); struct key_preparsed_payload *);
static void request_key_auth_describe(const struct key *, struct seq_file *); static void request_key_auth_describe(const struct key *, struct seq_file *);
...@@ -33,6 +35,8 @@ static long request_key_auth_read(const struct key *, char __user *, size_t); ...@@ -33,6 +35,8 @@ static long request_key_auth_read(const struct key *, char __user *, size_t);
struct key_type key_type_request_key_auth = { struct key_type key_type_request_key_auth = {
.name = ".request_key_auth", .name = ".request_key_auth",
.def_datalen = sizeof(struct request_key_auth), .def_datalen = sizeof(struct request_key_auth),
.preparse = request_key_auth_preparse,
.free_preparse = request_key_auth_free_preparse,
.instantiate = request_key_auth_instantiate, .instantiate = request_key_auth_instantiate,
.describe = request_key_auth_describe, .describe = request_key_auth_describe,
.revoke = request_key_auth_revoke, .revoke = request_key_auth_revoke,
...@@ -40,6 +44,15 @@ struct key_type key_type_request_key_auth = { ...@@ -40,6 +44,15 @@ struct key_type key_type_request_key_auth = {
.read = request_key_auth_read, .read = request_key_auth_read,
}; };
int request_key_auth_preparse(struct key_preparsed_payload *prep)
{
return 0;
}
void request_key_auth_free_preparse(struct key_preparsed_payload *prep)
{
}
/* /*
* Instantiate a request-key authorisation key. * Instantiate a request-key authorisation key.
*/ */
......
...@@ -27,7 +27,9 @@ static int logon_vet_description(const char *desc); ...@@ -27,7 +27,9 @@ static int logon_vet_description(const char *desc);
struct key_type key_type_user = { struct key_type key_type_user = {
.name = "user", .name = "user",
.def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT, .def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
.instantiate = user_instantiate, .preparse = user_preparse,
.free_preparse = user_free_preparse,
.instantiate = generic_key_instantiate,
.update = user_update, .update = user_update,
.match = user_match, .match = user_match,
.revoke = user_revoke, .revoke = user_revoke,
...@@ -47,7 +49,9 @@ EXPORT_SYMBOL_GPL(key_type_user); ...@@ -47,7 +49,9 @@ EXPORT_SYMBOL_GPL(key_type_user);
struct key_type key_type_logon = { struct key_type key_type_logon = {
.name = "logon", .name = "logon",
.def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT, .def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
.instantiate = user_instantiate, .preparse = user_preparse,
.free_preparse = user_free_preparse,
.instantiate = generic_key_instantiate,
.update = user_update, .update = user_update,
.match = user_match, .match = user_match,
.revoke = user_revoke, .revoke = user_revoke,
...@@ -58,38 +62,37 @@ struct key_type key_type_logon = { ...@@ -58,38 +62,37 @@ struct key_type key_type_logon = {
EXPORT_SYMBOL_GPL(key_type_logon); EXPORT_SYMBOL_GPL(key_type_logon);
/* /*
* instantiate a user defined key * Preparse a user defined key payload
*/ */
int user_instantiate(struct key *key, struct key_preparsed_payload *prep) int user_preparse(struct key_preparsed_payload *prep)
{ {
struct user_key_payload *upayload; struct user_key_payload *upayload;
size_t datalen = prep->datalen; size_t datalen = prep->datalen;
int ret;
ret = -EINVAL;
if (datalen <= 0 || datalen > 32767 || !prep->data) if (datalen <= 0 || datalen > 32767 || !prep->data)
goto error; return -EINVAL;
ret = key_payload_reserve(key, datalen);
if (ret < 0)
goto error;
ret = -ENOMEM;
upayload = kmalloc(sizeof(*upayload) + datalen, GFP_KERNEL); upayload = kmalloc(sizeof(*upayload) + datalen, GFP_KERNEL);
if (!upayload) if (!upayload)
goto error; return -ENOMEM;
/* attach the data */ /* attach the data */
prep->quotalen = datalen;
prep->payload[0] = upayload;
upayload->datalen = datalen; upayload->datalen = datalen;
memcpy(upayload->data, prep->data, datalen); memcpy(upayload->data, prep->data, datalen);
rcu_assign_keypointer(key, upayload); return 0;
ret = 0;
error:
return ret;
} }
EXPORT_SYMBOL_GPL(user_preparse);
EXPORT_SYMBOL_GPL(user_instantiate); /*
* Free a preparse of a user defined key payload
*/
void user_free_preparse(struct key_preparsed_payload *prep)
{
kfree(prep->payload[0]);
}
EXPORT_SYMBOL_GPL(user_free_preparse);
/* /*
* update a user defined key * update a user defined key
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment