1 /* RxRPC key management
3 * Copyright (C) 2007 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 License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 * RxRPC keys should have a description of describing their purpose:
12 * "afs@CAMBRIDGE.REDHAT.COM>
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 #include <crypto/skcipher.h>
18 #include <linux/module.h>
19 #include <linux/net.h>
20 #include <linux/skbuff.h>
21 #include <linux/key-type.h>
22 #include <linux/ctype.h>
23 #include <linux/slab.h>
25 #include <net/af_rxrpc.h>
26 #include <keys/rxrpc-type.h>
27 #include <keys/user-type.h>
28 #include "ar-internal.h"
30 static int rxrpc_vet_description_s(const char *);
31 static int rxrpc_preparse(struct key_preparsed_payload *);
32 static int rxrpc_preparse_s(struct key_preparsed_payload *);
33 static void rxrpc_free_preparse(struct key_preparsed_payload *);
34 static void rxrpc_free_preparse_s(struct key_preparsed_payload *);
35 static void rxrpc_destroy(struct key *);
36 static void rxrpc_destroy_s(struct key *);
37 static void rxrpc_describe(const struct key *, struct seq_file *);
38 static long rxrpc_read(const struct key *, char __user *, size_t);
41 * rxrpc 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_rxrpc = {
46 .preparse = rxrpc_preparse,
47 .free_preparse = rxrpc_free_preparse,
48 .instantiate = generic_key_instantiate,
49 .destroy = rxrpc_destroy,
50 .describe = rxrpc_describe,
53 EXPORT_SYMBOL(key_type_rxrpc);
56 * rxrpc server defined keys take "<serviceId>:<securityIndex>" as the
57 * description and an 8-byte decryption key as the payload
59 struct key_type key_type_rxrpc_s = {
61 .vet_description = rxrpc_vet_description_s,
62 .preparse = rxrpc_preparse_s,
63 .free_preparse = rxrpc_free_preparse_s,
64 .instantiate = generic_key_instantiate,
65 .destroy = rxrpc_destroy_s,
66 .describe = rxrpc_describe,
70 * Vet the description for an RxRPC server key
72 static int rxrpc_vet_description_s(const char *desc)
77 num = simple_strtoul(desc, &p, 10);
78 if (*p != ':' || num > 65535)
80 num = simple_strtoul(p + 1, &p, 10);
81 if (*p || num < 1 || num > 255)
87 * parse an RxKAD type XDR format token
88 * - the caller guarantees we have at least 4 words
90 static int rxrpc_preparse_xdr_rxkad(struct key_preparsed_payload *prep,
92 const __be32 *xdr, unsigned int toklen)
94 struct rxrpc_key_token *token, **pptoken;
98 _enter(",{%x,%x,%x,%x},%u",
99 ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
103 return -EKEYREJECTED;
104 tktlen = ntohl(xdr[7]);
105 _debug("tktlen: %x", tktlen);
106 if (tktlen > AFSTOKEN_RK_TIX_MAX)
107 return -EKEYREJECTED;
108 if (toklen < 8 * 4 + tktlen)
109 return -EKEYREJECTED;
111 plen = sizeof(*token) + sizeof(*token->kad) + tktlen;
112 prep->quotalen = datalen + plen;
114 plen -= sizeof(*token);
115 token = kzalloc(sizeof(*token), GFP_KERNEL);
119 token->kad = kzalloc(plen, GFP_KERNEL);
125 token->security_index = RXRPC_SECURITY_RXKAD;
126 token->kad->ticket_len = tktlen;
127 token->kad->vice_id = ntohl(xdr[0]);
128 token->kad->kvno = ntohl(xdr[1]);
129 token->kad->start = ntohl(xdr[4]);
130 token->kad->expiry = ntohl(xdr[5]);
131 token->kad->primary_flag = ntohl(xdr[6]);
132 memcpy(&token->kad->session_key, &xdr[2], 8);
133 memcpy(&token->kad->ticket, &xdr[8], tktlen);
135 _debug("SCIX: %u", token->security_index);
136 _debug("TLEN: %u", token->kad->ticket_len);
137 _debug("EXPY: %x", token->kad->expiry);
138 _debug("KVNO: %u", token->kad->kvno);
139 _debug("PRIM: %u", token->kad->primary_flag);
140 _debug("SKEY: %02x%02x%02x%02x%02x%02x%02x%02x",
141 token->kad->session_key[0], token->kad->session_key[1],
142 token->kad->session_key[2], token->kad->session_key[3],
143 token->kad->session_key[4], token->kad->session_key[5],
144 token->kad->session_key[6], token->kad->session_key[7]);
145 if (token->kad->ticket_len >= 8)
146 _debug("TCKT: %02x%02x%02x%02x%02x%02x%02x%02x",
147 token->kad->ticket[0], token->kad->ticket[1],
148 token->kad->ticket[2], token->kad->ticket[3],
149 token->kad->ticket[4], token->kad->ticket[5],
150 token->kad->ticket[6], token->kad->ticket[7]);
152 /* count the number of tokens attached */
153 prep->payload.data[1] = (void *)((unsigned long)prep->payload.data[1] + 1);
155 /* attach the data */
156 for (pptoken = (struct rxrpc_key_token **)&prep->payload.data[0];
158 pptoken = &(*pptoken)->next)
161 if (token->kad->expiry < prep->expiry)
162 prep->expiry = token->kad->expiry;
168 static void rxrpc_free_krb5_principal(struct krb5_principal *princ)
172 if (princ->name_parts) {
173 for (loop = princ->n_name_parts - 1; loop >= 0; loop--)
174 kfree(princ->name_parts[loop]);
175 kfree(princ->name_parts);
180 static void rxrpc_free_krb5_tagged(struct krb5_tagged_data *td)
186 * free up an RxK5 token
188 static void rxrpc_rxk5_free(struct rxk5_key *rxk5)
192 rxrpc_free_krb5_principal(&rxk5->client);
193 rxrpc_free_krb5_principal(&rxk5->server);
194 rxrpc_free_krb5_tagged(&rxk5->session);
196 if (rxk5->addresses) {
197 for (loop = rxk5->n_addresses - 1; loop >= 0; loop--)
198 rxrpc_free_krb5_tagged(&rxk5->addresses[loop]);
199 kfree(rxk5->addresses);
201 if (rxk5->authdata) {
202 for (loop = rxk5->n_authdata - 1; loop >= 0; loop--)
203 rxrpc_free_krb5_tagged(&rxk5->authdata[loop]);
204 kfree(rxk5->authdata);
208 kfree(rxk5->ticket2);
213 * extract a krb5 principal
215 static int rxrpc_krb5_decode_principal(struct krb5_principal *princ,
217 unsigned int *_toklen)
219 const __be32 *xdr = *_xdr;
220 unsigned int toklen = *_toklen, n_parts, loop, tmp;
222 /* there must be at least one name, and at least #names+1 length
227 _enter(",{%x,%x,%x},%u",
228 ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), toklen);
230 n_parts = ntohl(*xdr++);
232 if (n_parts <= 0 || n_parts > AFSTOKEN_K5_COMPONENTS_MAX)
234 princ->n_name_parts = n_parts;
236 if (toklen <= (n_parts + 1) * 4)
239 princ->name_parts = kcalloc(n_parts, sizeof(char *), GFP_KERNEL);
240 if (!princ->name_parts)
243 for (loop = 0; loop < n_parts; loop++) {
248 if (tmp <= 0 || tmp > AFSTOKEN_STRING_MAX)
252 princ->name_parts[loop] = kmalloc(tmp + 1, GFP_KERNEL);
253 if (!princ->name_parts[loop])
255 memcpy(princ->name_parts[loop], xdr, tmp);
256 princ->name_parts[loop][tmp] = 0;
257 tmp = (tmp + 3) & ~3;
266 if (tmp <= 0 || tmp > AFSTOKEN_K5_REALM_MAX)
270 princ->realm = kmalloc(tmp + 1, GFP_KERNEL);
273 memcpy(princ->realm, xdr, tmp);
274 princ->realm[tmp] = 0;
275 tmp = (tmp + 3) & ~3;
279 _debug("%s/...@%s", princ->name_parts[0], princ->realm);
283 _leave(" = 0 [toklen=%u]", toklen);
288 * extract a piece of krb5 tagged data
290 static int rxrpc_krb5_decode_tagged_data(struct krb5_tagged_data *td,
291 size_t max_data_size,
293 unsigned int *_toklen)
295 const __be32 *xdr = *_xdr;
296 unsigned int toklen = *_toklen, len;
298 /* there must be at least one tag and one length word */
302 _enter(",%zu,{%x,%x},%u",
303 max_data_size, ntohl(xdr[0]), ntohl(xdr[1]), toklen);
305 td->tag = ntohl(*xdr++);
308 if (len > max_data_size)
313 td->data = kmemdup(xdr, len, GFP_KERNEL);
316 len = (len + 3) & ~3;
321 _debug("tag %x len %x", td->tag, td->data_len);
325 _leave(" = 0 [toklen=%u]", toklen);
330 * extract an array of tagged data
332 static int rxrpc_krb5_decode_tagged_array(struct krb5_tagged_data **_td,
335 size_t max_elem_size,
337 unsigned int *_toklen)
339 struct krb5_tagged_data *td;
340 const __be32 *xdr = *_xdr;
341 unsigned int toklen = *_toklen, n_elem, loop;
344 /* there must be at least one count */
348 _enter(",,%u,%zu,{%x},%u",
349 max_n_elem, max_elem_size, ntohl(xdr[0]), toklen);
351 n_elem = ntohl(*xdr++);
353 if (n_elem > max_n_elem)
357 if (toklen <= (n_elem + 1) * 4)
360 _debug("n_elem %d", n_elem);
362 td = kcalloc(n_elem, sizeof(struct krb5_tagged_data),
368 for (loop = 0; loop < n_elem; loop++) {
369 ret = rxrpc_krb5_decode_tagged_data(&td[loop],
379 _leave(" = 0 [toklen=%u]", toklen);
384 * extract a krb5 ticket
386 static int rxrpc_krb5_decode_ticket(u8 **_ticket, u16 *_tktlen,
387 const __be32 **_xdr, unsigned int *_toklen)
389 const __be32 *xdr = *_xdr;
390 unsigned int toklen = *_toklen, len;
392 /* there must be at least one length word */
396 _enter(",{%x},%u", ntohl(xdr[0]), toklen);
400 if (len > AFSTOKEN_K5_TIX_MAX)
404 _debug("ticket len %u", len);
407 *_ticket = kmemdup(xdr, len, GFP_KERNEL);
410 len = (len + 3) & ~3;
417 _leave(" = 0 [toklen=%u]", toklen);
422 * parse an RxK5 type XDR format token
423 * - the caller guarantees we have at least 4 words
425 static int rxrpc_preparse_xdr_rxk5(struct key_preparsed_payload *prep,
427 const __be32 *xdr, unsigned int toklen)
429 struct rxrpc_key_token *token, **pptoken;
430 struct rxk5_key *rxk5;
431 const __be32 *end_xdr = xdr + (toklen >> 2);
434 _enter(",{%x,%x,%x,%x},%u",
435 ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
438 /* reserve some payload space for this subkey - the length of the token
439 * is a reasonable approximation */
440 prep->quotalen = datalen + toklen;
442 token = kzalloc(sizeof(*token), GFP_KERNEL);
446 rxk5 = kzalloc(sizeof(*rxk5), GFP_KERNEL);
452 token->security_index = RXRPC_SECURITY_RXK5;
455 /* extract the principals */
456 ret = rxrpc_krb5_decode_principal(&rxk5->client, &xdr, &toklen);
459 ret = rxrpc_krb5_decode_principal(&rxk5->server, &xdr, &toklen);
463 /* extract the session key and the encoding type (the tag field ->
465 ret = rxrpc_krb5_decode_tagged_data(&rxk5->session, AFSTOKEN_DATA_MAX,
470 if (toklen < 4 * 8 + 2 * 4)
472 rxk5->authtime = be64_to_cpup((const __be64 *) xdr);
474 rxk5->starttime = be64_to_cpup((const __be64 *) xdr);
476 rxk5->endtime = be64_to_cpup((const __be64 *) xdr);
478 rxk5->renew_till = be64_to_cpup((const __be64 *) xdr);
480 rxk5->is_skey = ntohl(*xdr++);
481 rxk5->flags = ntohl(*xdr++);
482 toklen -= 4 * 8 + 2 * 4;
484 _debug("times: a=%llx s=%llx e=%llx rt=%llx",
485 rxk5->authtime, rxk5->starttime, rxk5->endtime,
487 _debug("is_skey=%x flags=%x", rxk5->is_skey, rxk5->flags);
489 /* extract the permitted client addresses */
490 ret = rxrpc_krb5_decode_tagged_array(&rxk5->addresses,
492 AFSTOKEN_K5_ADDRESSES_MAX,
498 ASSERTCMP((end_xdr - xdr) << 2, ==, toklen);
500 /* extract the tickets */
501 ret = rxrpc_krb5_decode_ticket(&rxk5->ticket, &rxk5->ticket_len,
505 ret = rxrpc_krb5_decode_ticket(&rxk5->ticket2, &rxk5->ticket2_len,
510 ASSERTCMP((end_xdr - xdr) << 2, ==, toklen);
512 /* extract the typed auth data */
513 ret = rxrpc_krb5_decode_tagged_array(&rxk5->authdata,
515 AFSTOKEN_K5_AUTHDATA_MAX,
516 AFSTOKEN_BDATALN_MAX,
521 ASSERTCMP((end_xdr - xdr) << 2, ==, toklen);
526 /* attach the payload */
527 for (pptoken = (struct rxrpc_key_token **)&prep->payload.data[0];
529 pptoken = &(*pptoken)->next)
532 if (token->kad->expiry < prep->expiry)
533 prep->expiry = token->kad->expiry;
541 rxrpc_rxk5_free(rxk5);
543 _leave(" = %d", ret);
548 * attempt to parse the data as the XDR format
549 * - the caller guarantees we have more than 7 words
551 static int rxrpc_preparse_xdr(struct key_preparsed_payload *prep)
553 const __be32 *xdr = prep->data, *token;
555 unsigned int len, tmp, loop, ntoken, toklen, sec_ix;
556 size_t datalen = prep->datalen;
559 _enter(",{%x,%x,%x,%x},%zu",
560 ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
563 if (datalen > AFSTOKEN_LENGTH_MAX)
566 /* XDR is an array of __be32's */
570 /* the flags should be 0 (the setpag bit must be handled by
572 if (ntohl(*xdr++) != 0)
576 /* check the cell name */
578 if (len < 1 || len > AFSTOKEN_CELL_MAX)
581 tmp = (len + 3) & ~3;
585 cp = (const char *) xdr;
586 for (loop = 0; loop < len; loop++)
587 if (!isprint(cp[loop]))
590 for (; loop < tmp; loop++)
593 _debug("cellname: [%u/%u] '%*.*s'",
594 len, tmp, len, len, (const char *) xdr);
598 /* get the token count */
601 ntoken = ntohl(*xdr++);
603 _debug("ntoken: %x", ntoken);
604 if (ntoken < 1 || ntoken > AFSTOKEN_MAX)
607 /* check each token wrapper */
613 toklen = ntohl(*xdr++);
614 sec_ix = ntohl(*xdr);
616 _debug("token: [%x/%zx] %x", toklen, datalen, sec_ix);
617 if (toklen < 20 || toklen > datalen)
619 datalen -= (toklen + 3) & ~3;
620 xdr += (toklen + 3) >> 2;
622 } while (--loop > 0);
624 _debug("remainder: %zu", datalen);
628 /* okay: we're going to assume it's valid XDR format
629 * - we ignore the cellname, relying on the key to be correctly named
633 toklen = ntohl(*xdr++);
634 token = xdr + ((toklen + 3) >> 2);
635 sec_ix = ntohl(*xdr++);
638 _debug("TOKEN type=%u [%p-%p]", sec_ix, xdr, token);
641 case RXRPC_SECURITY_RXKAD:
642 ret = rxrpc_preparse_xdr_rxkad(prep, datalen, xdr, toklen);
647 case RXRPC_SECURITY_RXK5:
648 ret = rxrpc_preparse_xdr_rxk5(prep, datalen, xdr, toklen);
654 ret = -EPROTONOSUPPORT;
658 } while (--ntoken > 0);
664 _leave(" = -EPROTO");
667 _leave(" = %d", ret);
672 * Preparse an rxrpc defined key.
674 * Data should be of the form:
676 * 0 4 key interface version number
677 * 4 2 security index (type)
679 * 8 4 key expiry time (time_t)
684 * if no data is provided, then a no-security key is made
686 static int rxrpc_preparse(struct key_preparsed_payload *prep)
688 const struct rxrpc_key_data_v1 *v1;
689 struct rxrpc_key_token *token, **pp;
694 _enter("%zu", prep->datalen);
696 /* handle a no-security key */
697 if (!prep->data && prep->datalen == 0)
700 /* determine if the XDR payload format is being used */
701 if (prep->datalen > 7 * 4) {
702 ret = rxrpc_preparse_xdr(prep);
707 /* get the key interface version number */
709 if (prep->datalen <= 4 || !prep->data)
711 memcpy(&kver, prep->data, sizeof(kver));
712 prep->data += sizeof(kver);
713 prep->datalen -= sizeof(kver);
715 _debug("KEY I/F VERSION: %u", kver);
721 /* deal with a version 1 key */
723 if (prep->datalen < sizeof(*v1))
727 if (prep->datalen != sizeof(*v1) + v1->ticket_length)
730 _debug("SCIX: %u", v1->security_index);
731 _debug("TLEN: %u", v1->ticket_length);
732 _debug("EXPY: %x", v1->expiry);
733 _debug("KVNO: %u", v1->kvno);
734 _debug("SKEY: %02x%02x%02x%02x%02x%02x%02x%02x",
735 v1->session_key[0], v1->session_key[1],
736 v1->session_key[2], v1->session_key[3],
737 v1->session_key[4], v1->session_key[5],
738 v1->session_key[6], v1->session_key[7]);
739 if (v1->ticket_length >= 8)
740 _debug("TCKT: %02x%02x%02x%02x%02x%02x%02x%02x",
741 v1->ticket[0], v1->ticket[1],
742 v1->ticket[2], v1->ticket[3],
743 v1->ticket[4], v1->ticket[5],
744 v1->ticket[6], v1->ticket[7]);
746 ret = -EPROTONOSUPPORT;
747 if (v1->security_index != RXRPC_SECURITY_RXKAD)
750 plen = sizeof(*token->kad) + v1->ticket_length;
751 prep->quotalen = plen + sizeof(*token);
754 token = kzalloc(sizeof(*token), GFP_KERNEL);
757 token->kad = kzalloc(plen, GFP_KERNEL);
761 token->security_index = RXRPC_SECURITY_RXKAD;
762 token->kad->ticket_len = v1->ticket_length;
763 token->kad->expiry = v1->expiry;
764 token->kad->kvno = v1->kvno;
765 memcpy(&token->kad->session_key, &v1->session_key, 8);
766 memcpy(&token->kad->ticket, v1->ticket, v1->ticket_length);
768 /* count the number of tokens attached */
769 prep->payload.data[1] = (void *)((unsigned long)prep->payload.data[1] + 1);
771 /* attach the data */
772 pp = (struct rxrpc_key_token **)&prep->payload.data[0];
776 if (token->kad->expiry < prep->expiry)
777 prep->expiry = token->kad->expiry;
790 static void rxrpc_free_token_list(struct rxrpc_key_token *token)
792 struct rxrpc_key_token *next;
794 for (; token; token = next) {
796 switch (token->security_index) {
797 case RXRPC_SECURITY_RXKAD:
800 case RXRPC_SECURITY_RXK5:
802 rxrpc_rxk5_free(token->k5);
805 pr_err("Unknown token type %x on rxrpc key\n",
806 token->security_index);
815 * Clean up preparse data.
817 static void rxrpc_free_preparse(struct key_preparsed_payload *prep)
819 rxrpc_free_token_list(prep->payload.data[0]);
823 * Preparse a server secret key.
825 * The data should be the 8-byte secret key.
827 static int rxrpc_preparse_s(struct key_preparsed_payload *prep)
829 struct crypto_skcipher *ci;
831 _enter("%zu", prep->datalen);
833 if (prep->datalen != 8)
836 memcpy(&prep->payload.data[2], prep->data, 8);
838 ci = crypto_alloc_skcipher("pcbc(des)", 0, CRYPTO_ALG_ASYNC);
840 _leave(" = %ld", PTR_ERR(ci));
844 if (crypto_skcipher_setkey(ci, prep->data, 8) < 0)
847 prep->payload.data[0] = ci;
853 * Clean up preparse data.
855 static void rxrpc_free_preparse_s(struct key_preparsed_payload *prep)
857 if (prep->payload.data[0])
858 crypto_free_skcipher(prep->payload.data[0]);
862 * dispose of the data dangling from the corpse of a rxrpc key
864 static void rxrpc_destroy(struct key *key)
866 rxrpc_free_token_list(key->payload.data[0]);
870 * dispose of the data dangling from the corpse of a rxrpc key
872 static void rxrpc_destroy_s(struct key *key)
874 if (key->payload.data[0]) {
875 crypto_free_skcipher(key->payload.data[0]);
876 key->payload.data[0] = NULL;
881 * describe the rxrpc key
883 static void rxrpc_describe(const struct key *key, struct seq_file *m)
885 seq_puts(m, key->description);
889 * grab the security key for a socket
891 int rxrpc_request_key(struct rxrpc_sock *rx, char __user *optval, int optlen)
898 if (optlen <= 0 || optlen > PAGE_SIZE - 1)
901 description = memdup_user_nul(optval, optlen);
902 if (IS_ERR(description))
903 return PTR_ERR(description);
905 key = request_key(&key_type_rxrpc, description, NULL);
908 _leave(" = %ld", PTR_ERR(key));
914 _leave(" = 0 [key %x]", key->serial);
919 * grab the security keyring for a server socket
921 int rxrpc_server_keyring(struct rxrpc_sock *rx, char __user *optval,
929 if (optlen <= 0 || optlen > PAGE_SIZE - 1)
932 description = memdup_user_nul(optval, optlen);
933 if (IS_ERR(description))
934 return PTR_ERR(description);
936 key = request_key(&key_type_keyring, description, NULL);
939 _leave(" = %ld", PTR_ERR(key));
943 rx->securities = key;
945 _leave(" = 0 [key %x]", key->serial);
950 * generate a server data key
952 int rxrpc_get_server_data_key(struct rxrpc_connection *conn,
953 const void *session_key,
957 const struct cred *cred = current_cred();
963 struct rxrpc_key_data_v1 v1;
968 key = key_alloc(&key_type_rxrpc, "x",
969 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred, 0,
970 KEY_ALLOC_NOT_IN_QUOTA, NULL);
972 _leave(" = -ENOMEM [alloc %ld]", PTR_ERR(key));
976 _debug("key %d", key_serial(key));
979 data.v1.security_index = RXRPC_SECURITY_RXKAD;
980 data.v1.ticket_length = 0;
981 data.v1.expiry = expiry;
984 memcpy(&data.v1.session_key, session_key, sizeof(data.v1.session_key));
986 ret = key_instantiate_and_link(key, &data, sizeof(data), NULL, NULL);
990 conn->params.key = key;
991 _leave(" = 0 [%d]", key_serial(key));
997 _leave(" = -ENOMEM [ins %d]", ret);
1000 EXPORT_SYMBOL(rxrpc_get_server_data_key);
1003 * rxrpc_get_null_key - Generate a null RxRPC key
1004 * @keyname: The name to give the key.
1006 * Generate a null RxRPC key that can be used to indicate anonymous security is
1007 * required for a particular domain.
1009 struct key *rxrpc_get_null_key(const char *keyname)
1011 const struct cred *cred = current_cred();
1015 key = key_alloc(&key_type_rxrpc, keyname,
1016 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred,
1017 KEY_POS_SEARCH, KEY_ALLOC_NOT_IN_QUOTA, NULL);
1021 ret = key_instantiate_and_link(key, NULL, 0, NULL, NULL);
1025 return ERR_PTR(ret);
1030 EXPORT_SYMBOL(rxrpc_get_null_key);
1033 * read the contents of an rxrpc key
1034 * - this returns the result in XDR form
1036 static long rxrpc_read(const struct key *key,
1037 char __user *buffer, size_t buflen)
1039 const struct rxrpc_key_token *token;
1040 const struct krb5_principal *princ;
1042 __be32 __user *xdr, *oldxdr;
1043 u32 cnlen, toksize, ntoks, tok, zero;
1044 u16 toksizes[AFSTOKEN_MAX];
1049 /* we don't know what form we should return non-AFS keys in */
1050 if (memcmp(key->description, "afs@", 4) != 0)
1052 cnlen = strlen(key->description + 4);
1054 #define RND(X) (((X) + 3) & ~3)
1056 /* AFS keys we return in XDR form, so we need to work out the size of
1058 size = 2 * 4; /* flags, cellname len */
1059 size += RND(cnlen); /* cellname */
1060 size += 1 * 4; /* token count */
1063 for (token = key->payload.data[0]; token; token = token->next) {
1064 toksize = 4; /* sec index */
1066 switch (token->security_index) {
1067 case RXRPC_SECURITY_RXKAD:
1068 toksize += 8 * 4; /* viceid, kvno, key*2, begin,
1069 * end, primary, tktlen */
1070 toksize += RND(token->kad->ticket_len);
1073 case RXRPC_SECURITY_RXK5:
1074 princ = &token->k5->client;
1075 toksize += 4 + princ->n_name_parts * 4;
1076 for (loop = 0; loop < princ->n_name_parts; loop++)
1077 toksize += RND(strlen(princ->name_parts[loop]));
1078 toksize += 4 + RND(strlen(princ->realm));
1080 princ = &token->k5->server;
1081 toksize += 4 + princ->n_name_parts * 4;
1082 for (loop = 0; loop < princ->n_name_parts; loop++)
1083 toksize += RND(strlen(princ->name_parts[loop]));
1084 toksize += 4 + RND(strlen(princ->realm));
1086 toksize += 8 + RND(token->k5->session.data_len);
1088 toksize += 4 * 8 + 2 * 4;
1090 toksize += 4 + token->k5->n_addresses * 8;
1091 for (loop = 0; loop < token->k5->n_addresses; loop++)
1092 toksize += RND(token->k5->addresses[loop].data_len);
1094 toksize += 4 + RND(token->k5->ticket_len);
1095 toksize += 4 + RND(token->k5->ticket2_len);
1097 toksize += 4 + token->k5->n_authdata * 8;
1098 for (loop = 0; loop < token->k5->n_authdata; loop++)
1099 toksize += RND(token->k5->authdata[loop].data_len);
1102 default: /* we have a ticket we can't encode */
1107 _debug("token[%u]: toksize=%u", ntoks, toksize);
1108 ASSERTCMP(toksize, <=, AFSTOKEN_LENGTH_MAX);
1110 toksizes[ntoks++] = toksize;
1111 size += toksize + 4; /* each token has a length word */
1116 if (!buffer || buflen < size)
1119 xdr = (__be32 __user *) buffer;
1123 __be32 y = htonl(x); \
1124 if (put_user(y, xdr++) < 0) \
1127 #define ENCODE_DATA(l, s) \
1131 if (copy_to_user(xdr, (s), _l) != 0) \
1134 copy_to_user((u8 __user *)xdr + _l, &zero, 4 - (_l & 3)) != 0) \
1136 xdr += (_l + 3) >> 2; \
1138 #define ENCODE64(x) \
1140 __be64 y = cpu_to_be64(x); \
1141 if (copy_to_user(xdr, &y, 8) != 0) \
1145 #define ENCODE_STR(s) \
1147 const char *_s = (s); \
1148 ENCODE_DATA(strlen(_s), _s); \
1151 ENCODE(0); /* flags */
1152 ENCODE_DATA(cnlen, key->description + 4); /* cellname */
1156 for (token = key->payload.data[0]; token; token = token->next) {
1157 toksize = toksizes[tok++];
1160 ENCODE(token->security_index);
1162 switch (token->security_index) {
1163 case RXRPC_SECURITY_RXKAD:
1164 ENCODE(token->kad->vice_id);
1165 ENCODE(token->kad->kvno);
1166 ENCODE_DATA(8, token->kad->session_key);
1167 ENCODE(token->kad->start);
1168 ENCODE(token->kad->expiry);
1169 ENCODE(token->kad->primary_flag);
1170 ENCODE_DATA(token->kad->ticket_len, token->kad->ticket);
1173 case RXRPC_SECURITY_RXK5:
1174 princ = &token->k5->client;
1175 ENCODE(princ->n_name_parts);
1176 for (loop = 0; loop < princ->n_name_parts; loop++)
1177 ENCODE_STR(princ->name_parts[loop]);
1178 ENCODE_STR(princ->realm);
1180 princ = &token->k5->server;
1181 ENCODE(princ->n_name_parts);
1182 for (loop = 0; loop < princ->n_name_parts; loop++)
1183 ENCODE_STR(princ->name_parts[loop]);
1184 ENCODE_STR(princ->realm);
1186 ENCODE(token->k5->session.tag);
1187 ENCODE_DATA(token->k5->session.data_len,
1188 token->k5->session.data);
1190 ENCODE64(token->k5->authtime);
1191 ENCODE64(token->k5->starttime);
1192 ENCODE64(token->k5->endtime);
1193 ENCODE64(token->k5->renew_till);
1194 ENCODE(token->k5->is_skey);
1195 ENCODE(token->k5->flags);
1197 ENCODE(token->k5->n_addresses);
1198 for (loop = 0; loop < token->k5->n_addresses; loop++) {
1199 ENCODE(token->k5->addresses[loop].tag);
1200 ENCODE_DATA(token->k5->addresses[loop].data_len,
1201 token->k5->addresses[loop].data);
1204 ENCODE_DATA(token->k5->ticket_len, token->k5->ticket);
1205 ENCODE_DATA(token->k5->ticket2_len, token->k5->ticket2);
1207 ENCODE(token->k5->n_authdata);
1208 for (loop = 0; loop < token->k5->n_authdata; loop++) {
1209 ENCODE(token->k5->authdata[loop].tag);
1210 ENCODE_DATA(token->k5->authdata[loop].data_len,
1211 token->k5->authdata[loop].data);
1220 ASSERTCMP((unsigned long)xdr - (unsigned long)oldxdr, ==,
1229 ASSERTCMP(tok, ==, ntoks);
1230 ASSERTCMP((char __user *) xdr - buffer, ==, size);
1231 _leave(" = %zu", size);
1235 _leave(" = -EFAULT");