1 /* RxRPC key management
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
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:
15 #include <linux/module.h>
16 #include <linux/net.h>
17 #include <linux/skbuff.h>
18 #include <linux/key-type.h>
19 #include <linux/crypto.h>
20 #include <linux/ctype.h>
22 #include <net/af_rxrpc.h>
23 #include <keys/rxrpc-type.h>
24 #include <keys/user-type.h>
25 #include "ar-internal.h"
27 static int rxrpc_instantiate(struct key *, const void *, size_t);
28 static int rxrpc_instantiate_s(struct key *, const void *, size_t);
29 static void rxrpc_destroy(struct key *);
30 static void rxrpc_destroy_s(struct key *);
31 static void rxrpc_describe(const struct key *, struct seq_file *);
32 static long rxrpc_read(const struct key *, char __user *, size_t);
35 * rxrpc defined keys take an arbitrary string as the description and an
36 * arbitrary blob of data as the payload
38 struct key_type key_type_rxrpc = {
40 .instantiate = rxrpc_instantiate,
42 .destroy = rxrpc_destroy,
43 .describe = rxrpc_describe,
46 EXPORT_SYMBOL(key_type_rxrpc);
49 * rxrpc server defined keys take "<serviceId>:<securityIndex>" as the
50 * description and an 8-byte decryption key as the payload
52 struct key_type key_type_rxrpc_s = {
54 .instantiate = rxrpc_instantiate_s,
56 .destroy = rxrpc_destroy_s,
57 .describe = rxrpc_describe,
61 * parse an RxKAD type XDR format token
62 * - the caller guarantees we have at least 4 words
64 static int rxrpc_instantiate_xdr_rxkad(struct key *key, const __be32 *xdr,
67 struct rxrpc_key_token *token, **pptoken;
72 _enter(",{%x,%x,%x,%x},%u",
73 ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
78 tktlen = ntohl(xdr[7]);
79 _debug("tktlen: %x", tktlen);
80 if (tktlen > AFSTOKEN_RK_TIX_MAX)
82 if (8 * 4 + tktlen != toklen)
85 plen = sizeof(*token) + sizeof(*token->kad) + tktlen;
86 ret = key_payload_reserve(key, key->datalen + plen);
90 plen -= sizeof(*token);
91 token = kmalloc(sizeof(*token), GFP_KERNEL);
95 token->kad = kmalloc(plen, GFP_KERNEL);
101 token->security_index = RXRPC_SECURITY_RXKAD;
102 token->kad->ticket_len = tktlen;
103 token->kad->vice_id = ntohl(xdr[0]);
104 token->kad->kvno = ntohl(xdr[1]);
105 token->kad->start = ntohl(xdr[4]);
106 token->kad->expiry = ntohl(xdr[5]);
107 token->kad->primary_flag = ntohl(xdr[6]);
108 memcpy(&token->kad->session_key, &xdr[2], 8);
109 memcpy(&token->kad->ticket, &xdr[8], tktlen);
111 _debug("SCIX: %u", token->security_index);
112 _debug("TLEN: %u", token->kad->ticket_len);
113 _debug("EXPY: %x", token->kad->expiry);
114 _debug("KVNO: %u", token->kad->kvno);
115 _debug("PRIM: %u", token->kad->primary_flag);
116 _debug("SKEY: %02x%02x%02x%02x%02x%02x%02x%02x",
117 token->kad->session_key[0], token->kad->session_key[1],
118 token->kad->session_key[2], token->kad->session_key[3],
119 token->kad->session_key[4], token->kad->session_key[5],
120 token->kad->session_key[6], token->kad->session_key[7]);
121 if (token->kad->ticket_len >= 8)
122 _debug("TCKT: %02x%02x%02x%02x%02x%02x%02x%02x",
123 token->kad->ticket[0], token->kad->ticket[1],
124 token->kad->ticket[2], token->kad->ticket[3],
125 token->kad->ticket[4], token->kad->ticket[5],
126 token->kad->ticket[6], token->kad->ticket[7]);
128 /* count the number of tokens attached */
129 key->type_data.x[0]++;
131 /* attach the data */
132 for (pptoken = (struct rxrpc_key_token **)&key->payload.data;
134 pptoken = &(*pptoken)->next)
137 if (token->kad->expiry < key->expiry)
138 key->expiry = token->kad->expiry;
144 static void rxrpc_free_krb5_principal(struct krb5_principal *princ)
148 if (princ->name_parts) {
149 for (loop = princ->n_name_parts - 1; loop >= 0; loop--)
150 kfree(princ->name_parts[loop]);
151 kfree(princ->name_parts);
156 static void rxrpc_free_krb5_tagged(struct krb5_tagged_data *td)
162 * free up an RxK5 token
164 static void rxrpc_rxk5_free(struct rxk5_key *rxk5)
168 rxrpc_free_krb5_principal(&rxk5->client);
169 rxrpc_free_krb5_principal(&rxk5->server);
170 rxrpc_free_krb5_tagged(&rxk5->session);
172 if (rxk5->addresses) {
173 for (loop = rxk5->n_addresses - 1; loop >= 0; loop--)
174 rxrpc_free_krb5_tagged(&rxk5->addresses[loop]);
175 kfree(rxk5->addresses);
177 if (rxk5->authdata) {
178 for (loop = rxk5->n_authdata - 1; loop >= 0; loop--)
179 rxrpc_free_krb5_tagged(&rxk5->authdata[loop]);
180 kfree(rxk5->authdata);
184 kfree(rxk5->ticket2);
189 * extract a krb5 principal
191 static int rxrpc_krb5_decode_principal(struct krb5_principal *princ,
195 const __be32 *xdr = *_xdr;
196 unsigned toklen = *_toklen, n_parts, loop, tmp;
198 /* there must be at least one name, and at least #names+1 length
203 _enter(",{%x,%x,%x},%u",
204 ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), toklen);
206 n_parts = ntohl(*xdr++);
208 if (n_parts <= 0 || n_parts > AFSTOKEN_K5_COMPONENTS_MAX)
210 princ->n_name_parts = n_parts;
212 if (toklen <= (n_parts + 1) * 4)
215 princ->name_parts = kcalloc(sizeof(char *), n_parts, GFP_KERNEL);
216 if (!princ->name_parts)
219 for (loop = 0; loop < n_parts; loop++) {
224 if (tmp <= 0 || tmp > AFSTOKEN_STRING_MAX)
228 princ->name_parts[loop] = kmalloc(tmp + 1, GFP_KERNEL);
229 if (!princ->name_parts[loop])
231 memcpy(princ->name_parts[loop], xdr, tmp);
232 princ->name_parts[loop][tmp] = 0;
233 tmp = (tmp + 3) & ~3;
242 if (tmp <= 0 || tmp > AFSTOKEN_K5_REALM_MAX)
246 princ->realm = kmalloc(tmp + 1, GFP_KERNEL);
249 memcpy(princ->realm, xdr, tmp);
250 princ->realm[tmp] = 0;
251 tmp = (tmp + 3) & ~3;
255 _debug("%s/...@%s", princ->name_parts[0], princ->realm);
259 _leave(" = 0 [toklen=%u]", toklen);
264 * extract a piece of krb5 tagged data
266 static int rxrpc_krb5_decode_tagged_data(struct krb5_tagged_data *td,
267 size_t max_data_size,
271 const __be32 *xdr = *_xdr;
272 unsigned toklen = *_toklen, len;
274 /* there must be at least one tag and one length word */
278 _enter(",%zu,{%x,%x},%u",
279 max_data_size, ntohl(xdr[0]), ntohl(xdr[1]), toklen);
281 td->tag = ntohl(*xdr++);
284 if (len > max_data_size)
289 td->data = kmalloc(len, GFP_KERNEL);
292 memcpy(td->data, xdr, len);
293 len = (len + 3) & ~3;
298 _debug("tag %x len %x", td->tag, td->data_len);
302 _leave(" = 0 [toklen=%u]", toklen);
307 * extract an array of tagged data
309 static int rxrpc_krb5_decode_tagged_array(struct krb5_tagged_data **_td,
312 size_t max_elem_size,
316 struct krb5_tagged_data *td;
317 const __be32 *xdr = *_xdr;
318 unsigned toklen = *_toklen, n_elem, loop;
321 /* there must be at least one count */
325 _enter(",,%u,%zu,{%x},%u",
326 max_n_elem, max_elem_size, ntohl(xdr[0]), toklen);
328 n_elem = ntohl(*xdr++);
330 if (n_elem < 0 || n_elem > max_n_elem)
334 if (toklen <= (n_elem + 1) * 4)
337 _debug("n_elem %d", n_elem);
339 td = kcalloc(sizeof(struct krb5_tagged_data), n_elem,
345 for (loop = 0; loop < n_elem; loop++) {
346 ret = rxrpc_krb5_decode_tagged_data(&td[loop],
356 _leave(" = 0 [toklen=%u]", toklen);
361 * extract a krb5 ticket
363 static int rxrpc_krb5_decode_ticket(u8 **_ticket, u16 *_tktlen,
364 const __be32 **_xdr, unsigned *_toklen)
366 const __be32 *xdr = *_xdr;
367 unsigned toklen = *_toklen, len;
369 /* there must be at least one length word */
373 _enter(",{%x},%u", ntohl(xdr[0]), toklen);
377 if (len > AFSTOKEN_K5_TIX_MAX)
381 _debug("ticket len %u", len);
384 *_ticket = kmalloc(len, GFP_KERNEL);
387 memcpy(*_ticket, xdr, len);
388 len = (len + 3) & ~3;
395 _leave(" = 0 [toklen=%u]", toklen);
400 * parse an RxK5 type XDR format token
401 * - the caller guarantees we have at least 4 words
403 static int rxrpc_instantiate_xdr_rxk5(struct key *key, const __be32 *xdr,
406 struct rxrpc_key_token *token, **pptoken;
407 struct rxk5_key *rxk5;
408 const __be32 *end_xdr = xdr + (toklen >> 2);
411 _enter(",{%x,%x,%x,%x},%u",
412 ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
415 /* reserve some payload space for this subkey - the length of the token
416 * is a reasonable approximation */
417 ret = key_payload_reserve(key, key->datalen + toklen);
421 token = kzalloc(sizeof(*token), GFP_KERNEL);
425 rxk5 = kzalloc(sizeof(*rxk5), GFP_KERNEL);
431 token->security_index = RXRPC_SECURITY_RXK5;
434 /* extract the principals */
435 ret = rxrpc_krb5_decode_principal(&rxk5->client, &xdr, &toklen);
438 ret = rxrpc_krb5_decode_principal(&rxk5->server, &xdr, &toklen);
442 /* extract the session key and the encoding type (the tag field ->
444 ret = rxrpc_krb5_decode_tagged_data(&rxk5->session, AFSTOKEN_DATA_MAX,
449 if (toklen < 4 * 8 + 2 * 4)
451 rxk5->authtime = be64_to_cpup((const __be64 *) xdr);
453 rxk5->starttime = be64_to_cpup((const __be64 *) xdr);
455 rxk5->endtime = be64_to_cpup((const __be64 *) xdr);
457 rxk5->renew_till = be64_to_cpup((const __be64 *) xdr);
459 rxk5->is_skey = ntohl(*xdr++);
460 rxk5->flags = ntohl(*xdr++);
461 toklen -= 4 * 8 + 2 * 4;
463 _debug("times: a=%llx s=%llx e=%llx rt=%llx",
464 rxk5->authtime, rxk5->starttime, rxk5->endtime,
466 _debug("is_skey=%x flags=%x", rxk5->is_skey, rxk5->flags);
468 /* extract the permitted client addresses */
469 ret = rxrpc_krb5_decode_tagged_array(&rxk5->addresses,
471 AFSTOKEN_K5_ADDRESSES_MAX,
477 ASSERTCMP((end_xdr - xdr) << 2, ==, toklen);
479 /* extract the tickets */
480 ret = rxrpc_krb5_decode_ticket(&rxk5->ticket, &rxk5->ticket_len,
484 ret = rxrpc_krb5_decode_ticket(&rxk5->ticket2, &rxk5->ticket2_len,
489 ASSERTCMP((end_xdr - xdr) << 2, ==, toklen);
491 /* extract the typed auth data */
492 ret = rxrpc_krb5_decode_tagged_array(&rxk5->authdata,
494 AFSTOKEN_K5_AUTHDATA_MAX,
495 AFSTOKEN_BDATALN_MAX,
500 ASSERTCMP((end_xdr - xdr) << 2, ==, toklen);
505 /* attach the payload to the key */
506 for (pptoken = (struct rxrpc_key_token **)&key->payload.data;
508 pptoken = &(*pptoken)->next)
511 if (token->kad->expiry < key->expiry)
512 key->expiry = token->kad->expiry;
520 rxrpc_rxk5_free(rxk5);
522 _leave(" = %d", ret);
527 * attempt to parse the data as the XDR format
528 * - the caller guarantees we have more than 7 words
530 static int rxrpc_instantiate_xdr(struct key *key, const void *data, size_t datalen)
532 const __be32 *xdr = data, *token;
534 unsigned len, tmp, loop, ntoken, toklen, sec_ix;
537 _enter(",{%x,%x,%x,%x},%zu",
538 ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
541 if (datalen > AFSTOKEN_LENGTH_MAX)
544 /* XDR is an array of __be32's */
548 /* the flags should be 0 (the setpag bit must be handled by
550 if (ntohl(*xdr++) != 0)
554 /* check the cell name */
556 if (len < 1 || len > AFSTOKEN_CELL_MAX)
559 tmp = (len + 3) & ~3;
563 cp = (const char *) xdr;
564 for (loop = 0; loop < len; loop++)
565 if (!isprint(cp[loop]))
568 for (; loop < tmp; loop++)
571 _debug("cellname: [%u/%u] '%*.*s'",
572 len, tmp, len, len, (const char *) xdr);
576 /* get the token count */
579 ntoken = ntohl(*xdr++);
581 _debug("ntoken: %x", ntoken);
582 if (ntoken < 1 || ntoken > AFSTOKEN_MAX)
585 /* check each token wrapper */
591 toklen = ntohl(*xdr++);
592 sec_ix = ntohl(*xdr);
594 _debug("token: [%x/%zx] %x", toklen, datalen, sec_ix);
595 if (toklen < 20 || toklen > datalen)
597 datalen -= (toklen + 3) & ~3;
598 xdr += (toklen + 3) >> 2;
600 } while (--loop > 0);
602 _debug("remainder: %zu", datalen);
606 /* okay: we're going to assume it's valid XDR format
607 * - we ignore the cellname, relying on the key to be correctly named
611 toklen = ntohl(*xdr++);
612 token = xdr + ((toklen + 3) >> 2);
613 sec_ix = ntohl(*xdr++);
616 _debug("TOKEN type=%u [%p-%p]", sec_ix, xdr, token);
619 case RXRPC_SECURITY_RXKAD:
620 ret = rxrpc_instantiate_xdr_rxkad(key, xdr, toklen);
625 case RXRPC_SECURITY_RXK5:
626 ret = rxrpc_instantiate_xdr_rxk5(key, xdr, toklen);
632 ret = -EPROTONOSUPPORT;
636 } while (--ntoken > 0);
642 _leave(" = -EPROTO");
645 _leave(" = %d", ret);
650 * instantiate an rxrpc defined key
651 * data should be of the form:
653 * 0 4 key interface version number
654 * 4 2 security index (type)
656 * 8 4 key expiry time (time_t)
661 * if no data is provided, then a no-security key is made
663 static int rxrpc_instantiate(struct key *key, const void *data, size_t datalen)
665 const struct rxrpc_key_data_v1 *v1;
666 struct rxrpc_key_token *token, **pp;
671 _enter("{%x},,%zu", key_serial(key), datalen);
673 /* handle a no-security key */
674 if (!data && datalen == 0)
677 /* determine if the XDR payload format is being used */
678 if (datalen > 7 * 4) {
679 ret = rxrpc_instantiate_xdr(key, data, datalen);
684 /* get the key interface version number */
686 if (datalen <= 4 || !data)
688 memcpy(&kver, data, sizeof(kver));
689 data += sizeof(kver);
690 datalen -= sizeof(kver);
692 _debug("KEY I/F VERSION: %u", kver);
698 /* deal with a version 1 key */
700 if (datalen < sizeof(*v1))
704 if (datalen != sizeof(*v1) + v1->ticket_length)
707 _debug("SCIX: %u", v1->security_index);
708 _debug("TLEN: %u", v1->ticket_length);
709 _debug("EXPY: %x", v1->expiry);
710 _debug("KVNO: %u", v1->kvno);
711 _debug("SKEY: %02x%02x%02x%02x%02x%02x%02x%02x",
712 v1->session_key[0], v1->session_key[1],
713 v1->session_key[2], v1->session_key[3],
714 v1->session_key[4], v1->session_key[5],
715 v1->session_key[6], v1->session_key[7]);
716 if (v1->ticket_length >= 8)
717 _debug("TCKT: %02x%02x%02x%02x%02x%02x%02x%02x",
718 v1->ticket[0], v1->ticket[1],
719 v1->ticket[2], v1->ticket[3],
720 v1->ticket[4], v1->ticket[5],
721 v1->ticket[6], v1->ticket[7]);
723 ret = -EPROTONOSUPPORT;
724 if (v1->security_index != RXRPC_SECURITY_RXKAD)
727 plen = sizeof(*token->kad) + v1->ticket_length;
728 ret = key_payload_reserve(key, plen + sizeof(*token));
733 token = kmalloc(sizeof(*token), GFP_KERNEL);
736 token->kad = kmalloc(plen, GFP_KERNEL);
740 token->security_index = RXRPC_SECURITY_RXKAD;
741 token->kad->ticket_len = v1->ticket_length;
742 token->kad->expiry = v1->expiry;
743 token->kad->kvno = v1->kvno;
744 memcpy(&token->kad->session_key, &v1->session_key, 8);
745 memcpy(&token->kad->ticket, v1->ticket, v1->ticket_length);
747 /* attach the data */
748 key->type_data.x[0]++;
750 pp = (struct rxrpc_key_token **)&key->payload.data;
754 if (token->kad->expiry < key->expiry)
755 key->expiry = token->kad->expiry;
766 * instantiate a server secret key
767 * data should be a pointer to the 8-byte secret key
769 static int rxrpc_instantiate_s(struct key *key, const void *data,
772 struct crypto_blkcipher *ci;
774 _enter("{%x},,%zu", key_serial(key), datalen);
779 memcpy(&key->type_data, data, 8);
781 ci = crypto_alloc_blkcipher("pcbc(des)", 0, CRYPTO_ALG_ASYNC);
783 _leave(" = %ld", PTR_ERR(ci));
787 if (crypto_blkcipher_setkey(ci, data, 8) < 0)
790 key->payload.data = ci;
796 * dispose of the data dangling from the corpse of a rxrpc key
798 static void rxrpc_destroy(struct key *key)
800 struct rxrpc_key_token *token;
802 while ((token = key->payload.data)) {
803 key->payload.data = token->next;
804 switch (token->security_index) {
805 case RXRPC_SECURITY_RXKAD:
808 case RXRPC_SECURITY_RXK5:
810 rxrpc_rxk5_free(token->k5);
813 printk(KERN_ERR "Unknown token type %x on rxrpc key\n",
814 token->security_index);
823 * dispose of the data dangling from the corpse of a rxrpc key
825 static void rxrpc_destroy_s(struct key *key)
827 if (key->payload.data) {
828 crypto_free_blkcipher(key->payload.data);
829 key->payload.data = NULL;
834 * describe the rxrpc key
836 static void rxrpc_describe(const struct key *key, struct seq_file *m)
838 seq_puts(m, key->description);
842 * grab the security key for a socket
844 int rxrpc_request_key(struct rxrpc_sock *rx, char __user *optval, int optlen)
851 if (optlen <= 0 || optlen > PAGE_SIZE - 1)
854 description = kmalloc(optlen + 1, GFP_KERNEL);
858 if (copy_from_user(description, optval, optlen)) {
862 description[optlen] = 0;
864 key = request_key(&key_type_rxrpc, description, NULL);
867 _leave(" = %ld", PTR_ERR(key));
873 _leave(" = 0 [key %x]", key->serial);
878 * grab the security keyring for a server socket
880 int rxrpc_server_keyring(struct rxrpc_sock *rx, char __user *optval,
888 if (optlen <= 0 || optlen > PAGE_SIZE - 1)
891 description = kmalloc(optlen + 1, GFP_KERNEL);
895 if (copy_from_user(description, optval, optlen)) {
899 description[optlen] = 0;
901 key = request_key(&key_type_keyring, description, NULL);
904 _leave(" = %ld", PTR_ERR(key));
908 rx->securities = key;
910 _leave(" = 0 [key %x]", key->serial);
915 * generate a server data key
917 int rxrpc_get_server_data_key(struct rxrpc_connection *conn,
918 const void *session_key,
922 const struct cred *cred = current_cred();
928 struct rxrpc_key_data_v1 v1;
933 key = key_alloc(&key_type_rxrpc, "x", 0, 0, cred, 0,
934 KEY_ALLOC_NOT_IN_QUOTA);
936 _leave(" = -ENOMEM [alloc %ld]", PTR_ERR(key));
940 _debug("key %d", key_serial(key));
943 data.v1.security_index = RXRPC_SECURITY_RXKAD;
944 data.v1.ticket_length = 0;
945 data.v1.expiry = expiry;
948 memcpy(&data.v1.session_key, session_key, sizeof(data.v1.session_key));
950 ret = key_instantiate_and_link(key, &data, sizeof(data), NULL, NULL);
955 _leave(" = 0 [%d]", key_serial(key));
961 _leave(" = -ENOMEM [ins %d]", ret);
964 EXPORT_SYMBOL(rxrpc_get_server_data_key);
967 * rxrpc_get_null_key - Generate a null RxRPC key
968 * @keyname: The name to give the key.
970 * Generate a null RxRPC key that can be used to indicate anonymous security is
971 * required for a particular domain.
973 struct key *rxrpc_get_null_key(const char *keyname)
975 const struct cred *cred = current_cred();
979 key = key_alloc(&key_type_rxrpc, keyname, 0, 0, cred,
980 KEY_POS_SEARCH, KEY_ALLOC_NOT_IN_QUOTA);
984 ret = key_instantiate_and_link(key, NULL, 0, NULL, NULL);
993 EXPORT_SYMBOL(rxrpc_get_null_key);
996 * read the contents of an rxrpc key
997 * - this returns the result in XDR form
999 static long rxrpc_read(const struct key *key,
1000 char __user *buffer, size_t buflen)
1002 const struct rxrpc_key_token *token;
1003 const struct krb5_principal *princ;
1005 __be32 __user *xdr, *oldxdr;
1006 u32 cnlen, toksize, ntoks, tok, zero;
1007 u16 toksizes[AFSTOKEN_MAX];
1012 /* we don't know what form we should return non-AFS keys in */
1013 if (memcmp(key->description, "afs@", 4) != 0)
1015 cnlen = strlen(key->description + 4);
1017 #define RND(X) (((X) + 3) & ~3)
1019 /* AFS keys we return in XDR form, so we need to work out the size of
1021 size = 2 * 4; /* flags, cellname len */
1022 size += RND(cnlen); /* cellname */
1023 size += 1 * 4; /* token count */
1026 for (token = key->payload.data; token; token = token->next) {
1027 toksize = 4; /* sec index */
1029 switch (token->security_index) {
1030 case RXRPC_SECURITY_RXKAD:
1031 toksize += 8 * 4; /* viceid, kvno, key*2, begin,
1032 * end, primary, tktlen */
1033 toksize += RND(token->kad->ticket_len);
1036 case RXRPC_SECURITY_RXK5:
1037 princ = &token->k5->client;
1038 toksize += 4 + princ->n_name_parts * 4;
1039 for (loop = 0; loop < princ->n_name_parts; loop++)
1040 toksize += RND(strlen(princ->name_parts[loop]));
1041 toksize += 4 + RND(strlen(princ->realm));
1043 princ = &token->k5->server;
1044 toksize += 4 + princ->n_name_parts * 4;
1045 for (loop = 0; loop < princ->n_name_parts; loop++)
1046 toksize += RND(strlen(princ->name_parts[loop]));
1047 toksize += 4 + RND(strlen(princ->realm));
1049 toksize += 8 + RND(token->k5->session.data_len);
1051 toksize += 4 * 8 + 2 * 4;
1053 toksize += 4 + token->k5->n_addresses * 8;
1054 for (loop = 0; loop < token->k5->n_addresses; loop++)
1055 toksize += RND(token->k5->addresses[loop].data_len);
1057 toksize += 4 + RND(token->k5->ticket_len);
1058 toksize += 4 + RND(token->k5->ticket2_len);
1060 toksize += 4 + token->k5->n_authdata * 8;
1061 for (loop = 0; loop < token->k5->n_authdata; loop++)
1062 toksize += RND(token->k5->authdata[loop].data_len);
1065 default: /* we have a ticket we can't encode */
1070 _debug("token[%u]: toksize=%u", ntoks, toksize);
1071 ASSERTCMP(toksize, <=, AFSTOKEN_LENGTH_MAX);
1073 toksizes[ntoks++] = toksize;
1074 size += toksize + 4; /* each token has a length word */
1079 if (!buffer || buflen < size)
1082 xdr = (__be32 __user *) buffer;
1086 __be32 y = htonl(x); \
1087 if (put_user(y, xdr++) < 0) \
1090 #define ENCODE_DATA(l, s) \
1094 if (copy_to_user(xdr, (s), _l) != 0) \
1097 copy_to_user((u8 *)xdr + _l, &zero, 4 - (_l & 3)) != 0) \
1099 xdr += (_l + 3) >> 2; \
1101 #define ENCODE64(x) \
1103 __be64 y = cpu_to_be64(x); \
1104 if (copy_to_user(xdr, &y, 8) != 0) \
1108 #define ENCODE_STR(s) \
1110 const char *_s = (s); \
1111 ENCODE_DATA(strlen(_s), _s); \
1114 ENCODE(0); /* flags */
1115 ENCODE_DATA(cnlen, key->description + 4); /* cellname */
1119 for (token = key->payload.data; token; token = token->next) {
1120 toksize = toksizes[tok++];
1123 ENCODE(token->security_index);
1125 switch (token->security_index) {
1126 case RXRPC_SECURITY_RXKAD:
1127 ENCODE(token->kad->vice_id);
1128 ENCODE(token->kad->kvno);
1129 ENCODE_DATA(8, token->kad->session_key);
1130 ENCODE(token->kad->start);
1131 ENCODE(token->kad->expiry);
1132 ENCODE(token->kad->primary_flag);
1133 ENCODE_DATA(token->kad->ticket_len, token->kad->ticket);
1136 case RXRPC_SECURITY_RXK5:
1137 princ = &token->k5->client;
1138 ENCODE(princ->n_name_parts);
1139 for (loop = 0; loop < princ->n_name_parts; loop++)
1140 ENCODE_STR(princ->name_parts[loop]);
1141 ENCODE_STR(princ->realm);
1143 princ = &token->k5->server;
1144 ENCODE(princ->n_name_parts);
1145 for (loop = 0; loop < princ->n_name_parts; loop++)
1146 ENCODE_STR(princ->name_parts[loop]);
1147 ENCODE_STR(princ->realm);
1149 ENCODE(token->k5->session.tag);
1150 ENCODE_DATA(token->k5->session.data_len,
1151 token->k5->session.data);
1153 ENCODE64(token->k5->authtime);
1154 ENCODE64(token->k5->starttime);
1155 ENCODE64(token->k5->endtime);
1156 ENCODE64(token->k5->renew_till);
1157 ENCODE(token->k5->is_skey);
1158 ENCODE(token->k5->flags);
1160 ENCODE(token->k5->n_addresses);
1161 for (loop = 0; loop < token->k5->n_addresses; loop++) {
1162 ENCODE(token->k5->addresses[loop].tag);
1163 ENCODE_DATA(token->k5->addresses[loop].data_len,
1164 token->k5->addresses[loop].data);
1167 ENCODE_DATA(token->k5->ticket_len, token->k5->ticket);
1168 ENCODE_DATA(token->k5->ticket2_len, token->k5->ticket2);
1170 ENCODE(token->k5->n_authdata);
1171 for (loop = 0; loop < token->k5->n_authdata; loop++) {
1172 ENCODE(token->k5->authdata[loop].tag);
1173 ENCODE_DATA(token->k5->authdata[loop].data_len,
1174 token->k5->authdata[loop].data);
1183 ASSERTCMP((unsigned long)xdr - (unsigned long)oldxdr, ==,
1192 ASSERTCMP(tok, ==, ntoks);
1193 ASSERTCMP((char __user *) xdr - buffer, ==, size);
1194 _leave(" = %zu", size);
1198 _leave(" = -EFAULT");