Loading...
1/*
2 * linux/net/sunrpc/gss_krb5_crypto.c
3 *
4 * Copyright (c) 2000-2008 The Regents of the University of Michigan.
5 * All rights reserved.
6 *
7 * Andy Adamson <andros@umich.edu>
8 * Bruce Fields <bfields@umich.edu>
9 */
10
11/*
12 * Copyright (C) 1998 by the FundsXpress, INC.
13 *
14 * All rights reserved.
15 *
16 * Export of this software from the United States of America may require
17 * a specific license from the United States Government. It is the
18 * responsibility of any person or organization contemplating export to
19 * obtain such a license before exporting.
20 *
21 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
22 * distribute this software and its documentation for any purpose and
23 * without fee is hereby granted, provided that the above copyright
24 * notice appear in all copies and that both that copyright notice and
25 * this permission notice appear in supporting documentation, and that
26 * the name of FundsXpress. not be used in advertising or publicity pertaining
27 * to distribution of the software without specific, written prior
28 * permission. FundsXpress makes no representations about the suitability of
29 * this software for any purpose. It is provided "as is" without express
30 * or implied warranty.
31 *
32 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
33 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
34 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
35 */
36
37#include <crypto/algapi.h>
38#include <crypto/hash.h>
39#include <crypto/skcipher.h>
40#include <linux/err.h>
41#include <linux/types.h>
42#include <linux/mm.h>
43#include <linux/scatterlist.h>
44#include <linux/highmem.h>
45#include <linux/pagemap.h>
46#include <linux/random.h>
47#include <linux/sunrpc/gss_krb5.h>
48#include <linux/sunrpc/xdr.h>
49
50#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
51# define RPCDBG_FACILITY RPCDBG_AUTH
52#endif
53
54u32
55krb5_encrypt(
56 struct crypto_sync_skcipher *tfm,
57 void * iv,
58 void * in,
59 void * out,
60 int length)
61{
62 u32 ret = -EINVAL;
63 struct scatterlist sg[1];
64 u8 local_iv[GSS_KRB5_MAX_BLOCKSIZE] = {0};
65 SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
66
67 if (length % crypto_sync_skcipher_blocksize(tfm) != 0)
68 goto out;
69
70 if (crypto_sync_skcipher_ivsize(tfm) > GSS_KRB5_MAX_BLOCKSIZE) {
71 dprintk("RPC: gss_k5encrypt: tfm iv size too large %d\n",
72 crypto_sync_skcipher_ivsize(tfm));
73 goto out;
74 }
75
76 if (iv)
77 memcpy(local_iv, iv, crypto_sync_skcipher_ivsize(tfm));
78
79 memcpy(out, in, length);
80 sg_init_one(sg, out, length);
81
82 skcipher_request_set_sync_tfm(req, tfm);
83 skcipher_request_set_callback(req, 0, NULL, NULL);
84 skcipher_request_set_crypt(req, sg, sg, length, local_iv);
85
86 ret = crypto_skcipher_encrypt(req);
87 skcipher_request_zero(req);
88out:
89 dprintk("RPC: krb5_encrypt returns %d\n", ret);
90 return ret;
91}
92
93u32
94krb5_decrypt(
95 struct crypto_sync_skcipher *tfm,
96 void * iv,
97 void * in,
98 void * out,
99 int length)
100{
101 u32 ret = -EINVAL;
102 struct scatterlist sg[1];
103 u8 local_iv[GSS_KRB5_MAX_BLOCKSIZE] = {0};
104 SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
105
106 if (length % crypto_sync_skcipher_blocksize(tfm) != 0)
107 goto out;
108
109 if (crypto_sync_skcipher_ivsize(tfm) > GSS_KRB5_MAX_BLOCKSIZE) {
110 dprintk("RPC: gss_k5decrypt: tfm iv size too large %d\n",
111 crypto_sync_skcipher_ivsize(tfm));
112 goto out;
113 }
114 if (iv)
115 memcpy(local_iv, iv, crypto_sync_skcipher_ivsize(tfm));
116
117 memcpy(out, in, length);
118 sg_init_one(sg, out, length);
119
120 skcipher_request_set_sync_tfm(req, tfm);
121 skcipher_request_set_callback(req, 0, NULL, NULL);
122 skcipher_request_set_crypt(req, sg, sg, length, local_iv);
123
124 ret = crypto_skcipher_decrypt(req);
125 skcipher_request_zero(req);
126out:
127 dprintk("RPC: gss_k5decrypt returns %d\n",ret);
128 return ret;
129}
130
131static int
132checksummer(struct scatterlist *sg, void *data)
133{
134 struct ahash_request *req = data;
135
136 ahash_request_set_crypt(req, sg, NULL, sg->length);
137
138 return crypto_ahash_update(req);
139}
140
141/*
142 * checksum the plaintext data and hdrlen bytes of the token header
143 * The checksum is performed over the first 8 bytes of the
144 * gss token header and then over the data body
145 */
146u32
147make_checksum(struct krb5_ctx *kctx, char *header, int hdrlen,
148 struct xdr_buf *body, int body_offset, u8 *cksumkey,
149 unsigned int usage, struct xdr_netobj *cksumout)
150{
151 struct crypto_ahash *tfm;
152 struct ahash_request *req;
153 struct scatterlist sg[1];
154 int err = -1;
155 u8 *checksumdata;
156 unsigned int checksumlen;
157
158 if (cksumout->len < kctx->gk5e->cksumlength) {
159 dprintk("%s: checksum buffer length, %u, too small for %s\n",
160 __func__, cksumout->len, kctx->gk5e->name);
161 return GSS_S_FAILURE;
162 }
163
164 checksumdata = kmalloc(GSS_KRB5_MAX_CKSUM_LEN, GFP_KERNEL);
165 if (checksumdata == NULL)
166 return GSS_S_FAILURE;
167
168 tfm = crypto_alloc_ahash(kctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
169 if (IS_ERR(tfm))
170 goto out_free_cksum;
171
172 req = ahash_request_alloc(tfm, GFP_KERNEL);
173 if (!req)
174 goto out_free_ahash;
175
176 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
177
178 checksumlen = crypto_ahash_digestsize(tfm);
179
180 if (cksumkey != NULL) {
181 err = crypto_ahash_setkey(tfm, cksumkey,
182 kctx->gk5e->keylength);
183 if (err)
184 goto out;
185 }
186
187 err = crypto_ahash_init(req);
188 if (err)
189 goto out;
190 sg_init_one(sg, header, hdrlen);
191 ahash_request_set_crypt(req, sg, NULL, hdrlen);
192 err = crypto_ahash_update(req);
193 if (err)
194 goto out;
195 err = xdr_process_buf(body, body_offset, body->len - body_offset,
196 checksummer, req);
197 if (err)
198 goto out;
199 ahash_request_set_crypt(req, NULL, checksumdata, 0);
200 err = crypto_ahash_final(req);
201 if (err)
202 goto out;
203
204 switch (kctx->gk5e->ctype) {
205 case CKSUMTYPE_RSA_MD5:
206 err = kctx->gk5e->encrypt(kctx->seq, NULL, checksumdata,
207 checksumdata, checksumlen);
208 if (err)
209 goto out;
210 memcpy(cksumout->data,
211 checksumdata + checksumlen - kctx->gk5e->cksumlength,
212 kctx->gk5e->cksumlength);
213 break;
214 case CKSUMTYPE_HMAC_SHA1_DES3:
215 memcpy(cksumout->data, checksumdata, kctx->gk5e->cksumlength);
216 break;
217 default:
218 BUG();
219 break;
220 }
221 cksumout->len = kctx->gk5e->cksumlength;
222out:
223 ahash_request_free(req);
224out_free_ahash:
225 crypto_free_ahash(tfm);
226out_free_cksum:
227 kfree(checksumdata);
228 return err ? GSS_S_FAILURE : 0;
229}
230
231/*
232 * checksum the plaintext data and hdrlen bytes of the token header
233 * Per rfc4121, sec. 4.2.4, the checksum is performed over the data
234 * body then over the first 16 octets of the MIC token
235 * Inclusion of the header data in the calculation of the
236 * checksum is optional.
237 */
238u32
239make_checksum_v2(struct krb5_ctx *kctx, char *header, int hdrlen,
240 struct xdr_buf *body, int body_offset, u8 *cksumkey,
241 unsigned int usage, struct xdr_netobj *cksumout)
242{
243 struct crypto_ahash *tfm;
244 struct ahash_request *req;
245 struct scatterlist sg[1];
246 int err = -1;
247 u8 *checksumdata;
248
249 if (kctx->gk5e->keyed_cksum == 0) {
250 dprintk("%s: expected keyed hash for %s\n",
251 __func__, kctx->gk5e->name);
252 return GSS_S_FAILURE;
253 }
254 if (cksumkey == NULL) {
255 dprintk("%s: no key supplied for %s\n",
256 __func__, kctx->gk5e->name);
257 return GSS_S_FAILURE;
258 }
259
260 checksumdata = kmalloc(GSS_KRB5_MAX_CKSUM_LEN, GFP_KERNEL);
261 if (!checksumdata)
262 return GSS_S_FAILURE;
263
264 tfm = crypto_alloc_ahash(kctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
265 if (IS_ERR(tfm))
266 goto out_free_cksum;
267
268 req = ahash_request_alloc(tfm, GFP_KERNEL);
269 if (!req)
270 goto out_free_ahash;
271
272 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
273
274 err = crypto_ahash_setkey(tfm, cksumkey, kctx->gk5e->keylength);
275 if (err)
276 goto out;
277
278 err = crypto_ahash_init(req);
279 if (err)
280 goto out;
281 err = xdr_process_buf(body, body_offset, body->len - body_offset,
282 checksummer, req);
283 if (err)
284 goto out;
285 if (header != NULL) {
286 sg_init_one(sg, header, hdrlen);
287 ahash_request_set_crypt(req, sg, NULL, hdrlen);
288 err = crypto_ahash_update(req);
289 if (err)
290 goto out;
291 }
292 ahash_request_set_crypt(req, NULL, checksumdata, 0);
293 err = crypto_ahash_final(req);
294 if (err)
295 goto out;
296
297 cksumout->len = kctx->gk5e->cksumlength;
298
299 switch (kctx->gk5e->ctype) {
300 case CKSUMTYPE_HMAC_SHA1_96_AES128:
301 case CKSUMTYPE_HMAC_SHA1_96_AES256:
302 /* note that this truncates the hash */
303 memcpy(cksumout->data, checksumdata, kctx->gk5e->cksumlength);
304 break;
305 default:
306 BUG();
307 break;
308 }
309out:
310 ahash_request_free(req);
311out_free_ahash:
312 crypto_free_ahash(tfm);
313out_free_cksum:
314 kfree(checksumdata);
315 return err ? GSS_S_FAILURE : 0;
316}
317
318struct encryptor_desc {
319 u8 iv[GSS_KRB5_MAX_BLOCKSIZE];
320 struct skcipher_request *req;
321 int pos;
322 struct xdr_buf *outbuf;
323 struct page **pages;
324 struct scatterlist infrags[4];
325 struct scatterlist outfrags[4];
326 int fragno;
327 int fraglen;
328};
329
330static int
331encryptor(struct scatterlist *sg, void *data)
332{
333 struct encryptor_desc *desc = data;
334 struct xdr_buf *outbuf = desc->outbuf;
335 struct crypto_sync_skcipher *tfm =
336 crypto_sync_skcipher_reqtfm(desc->req);
337 struct page *in_page;
338 int thislen = desc->fraglen + sg->length;
339 int fraglen, ret;
340 int page_pos;
341
342 /* Worst case is 4 fragments: head, end of page 1, start
343 * of page 2, tail. Anything more is a bug. */
344 BUG_ON(desc->fragno > 3);
345
346 page_pos = desc->pos - outbuf->head[0].iov_len;
347 if (page_pos >= 0 && page_pos < outbuf->page_len) {
348 /* pages are not in place: */
349 int i = (page_pos + outbuf->page_base) >> PAGE_SHIFT;
350 in_page = desc->pages[i];
351 } else {
352 in_page = sg_page(sg);
353 }
354 sg_set_page(&desc->infrags[desc->fragno], in_page, sg->length,
355 sg->offset);
356 sg_set_page(&desc->outfrags[desc->fragno], sg_page(sg), sg->length,
357 sg->offset);
358 desc->fragno++;
359 desc->fraglen += sg->length;
360 desc->pos += sg->length;
361
362 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1);
363 thislen -= fraglen;
364
365 if (thislen == 0)
366 return 0;
367
368 sg_mark_end(&desc->infrags[desc->fragno - 1]);
369 sg_mark_end(&desc->outfrags[desc->fragno - 1]);
370
371 skcipher_request_set_crypt(desc->req, desc->infrags, desc->outfrags,
372 thislen, desc->iv);
373
374 ret = crypto_skcipher_encrypt(desc->req);
375 if (ret)
376 return ret;
377
378 sg_init_table(desc->infrags, 4);
379 sg_init_table(desc->outfrags, 4);
380
381 if (fraglen) {
382 sg_set_page(&desc->outfrags[0], sg_page(sg), fraglen,
383 sg->offset + sg->length - fraglen);
384 desc->infrags[0] = desc->outfrags[0];
385 sg_assign_page(&desc->infrags[0], in_page);
386 desc->fragno = 1;
387 desc->fraglen = fraglen;
388 } else {
389 desc->fragno = 0;
390 desc->fraglen = 0;
391 }
392 return 0;
393}
394
395int
396gss_encrypt_xdr_buf(struct crypto_sync_skcipher *tfm, struct xdr_buf *buf,
397 int offset, struct page **pages)
398{
399 int ret;
400 struct encryptor_desc desc;
401 SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
402
403 BUG_ON((buf->len - offset) % crypto_sync_skcipher_blocksize(tfm) != 0);
404
405 skcipher_request_set_sync_tfm(req, tfm);
406 skcipher_request_set_callback(req, 0, NULL, NULL);
407
408 memset(desc.iv, 0, sizeof(desc.iv));
409 desc.req = req;
410 desc.pos = offset;
411 desc.outbuf = buf;
412 desc.pages = pages;
413 desc.fragno = 0;
414 desc.fraglen = 0;
415
416 sg_init_table(desc.infrags, 4);
417 sg_init_table(desc.outfrags, 4);
418
419 ret = xdr_process_buf(buf, offset, buf->len - offset, encryptor, &desc);
420 skcipher_request_zero(req);
421 return ret;
422}
423
424struct decryptor_desc {
425 u8 iv[GSS_KRB5_MAX_BLOCKSIZE];
426 struct skcipher_request *req;
427 struct scatterlist frags[4];
428 int fragno;
429 int fraglen;
430};
431
432static int
433decryptor(struct scatterlist *sg, void *data)
434{
435 struct decryptor_desc *desc = data;
436 int thislen = desc->fraglen + sg->length;
437 struct crypto_sync_skcipher *tfm =
438 crypto_sync_skcipher_reqtfm(desc->req);
439 int fraglen, ret;
440
441 /* Worst case is 4 fragments: head, end of page 1, start
442 * of page 2, tail. Anything more is a bug. */
443 BUG_ON(desc->fragno > 3);
444 sg_set_page(&desc->frags[desc->fragno], sg_page(sg), sg->length,
445 sg->offset);
446 desc->fragno++;
447 desc->fraglen += sg->length;
448
449 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1);
450 thislen -= fraglen;
451
452 if (thislen == 0)
453 return 0;
454
455 sg_mark_end(&desc->frags[desc->fragno - 1]);
456
457 skcipher_request_set_crypt(desc->req, desc->frags, desc->frags,
458 thislen, desc->iv);
459
460 ret = crypto_skcipher_decrypt(desc->req);
461 if (ret)
462 return ret;
463
464 sg_init_table(desc->frags, 4);
465
466 if (fraglen) {
467 sg_set_page(&desc->frags[0], sg_page(sg), fraglen,
468 sg->offset + sg->length - fraglen);
469 desc->fragno = 1;
470 desc->fraglen = fraglen;
471 } else {
472 desc->fragno = 0;
473 desc->fraglen = 0;
474 }
475 return 0;
476}
477
478int
479gss_decrypt_xdr_buf(struct crypto_sync_skcipher *tfm, struct xdr_buf *buf,
480 int offset)
481{
482 int ret;
483 struct decryptor_desc desc;
484 SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
485
486 /* XXXJBF: */
487 BUG_ON((buf->len - offset) % crypto_sync_skcipher_blocksize(tfm) != 0);
488
489 skcipher_request_set_sync_tfm(req, tfm);
490 skcipher_request_set_callback(req, 0, NULL, NULL);
491
492 memset(desc.iv, 0, sizeof(desc.iv));
493 desc.req = req;
494 desc.fragno = 0;
495 desc.fraglen = 0;
496
497 sg_init_table(desc.frags, 4);
498
499 ret = xdr_process_buf(buf, offset, buf->len - offset, decryptor, &desc);
500 skcipher_request_zero(req);
501 return ret;
502}
503
504/*
505 * This function makes the assumption that it was ultimately called
506 * from gss_wrap().
507 *
508 * The client auth_gss code moves any existing tail data into a
509 * separate page before calling gss_wrap.
510 * The server svcauth_gss code ensures that both the head and the
511 * tail have slack space of RPC_MAX_AUTH_SIZE before calling gss_wrap.
512 *
513 * Even with that guarantee, this function may be called more than
514 * once in the processing of gss_wrap(). The best we can do is
515 * verify at compile-time (see GSS_KRB5_SLACK_CHECK) that the
516 * largest expected shift will fit within RPC_MAX_AUTH_SIZE.
517 * At run-time we can verify that a single invocation of this
518 * function doesn't attempt to use more the RPC_MAX_AUTH_SIZE.
519 */
520
521int
522xdr_extend_head(struct xdr_buf *buf, unsigned int base, unsigned int shiftlen)
523{
524 u8 *p;
525
526 if (shiftlen == 0)
527 return 0;
528
529 BUILD_BUG_ON(GSS_KRB5_MAX_SLACK_NEEDED > RPC_MAX_AUTH_SIZE);
530 BUG_ON(shiftlen > RPC_MAX_AUTH_SIZE);
531
532 p = buf->head[0].iov_base + base;
533
534 memmove(p + shiftlen, p, buf->head[0].iov_len - base);
535
536 buf->head[0].iov_len += shiftlen;
537 buf->len += shiftlen;
538
539 return 0;
540}
541
542static u32
543gss_krb5_cts_crypt(struct crypto_sync_skcipher *cipher, struct xdr_buf *buf,
544 u32 offset, u8 *iv, struct page **pages, int encrypt)
545{
546 u32 ret;
547 struct scatterlist sg[1];
548 SYNC_SKCIPHER_REQUEST_ON_STACK(req, cipher);
549 u8 *data;
550 struct page **save_pages;
551 u32 len = buf->len - offset;
552
553 if (len > GSS_KRB5_MAX_BLOCKSIZE * 2) {
554 WARN_ON(0);
555 return -ENOMEM;
556 }
557 data = kmalloc(GSS_KRB5_MAX_BLOCKSIZE * 2, GFP_KERNEL);
558 if (!data)
559 return -ENOMEM;
560
561 /*
562 * For encryption, we want to read from the cleartext
563 * page cache pages, and write the encrypted data to
564 * the supplied xdr_buf pages.
565 */
566 save_pages = buf->pages;
567 if (encrypt)
568 buf->pages = pages;
569
570 ret = read_bytes_from_xdr_buf(buf, offset, data, len);
571 buf->pages = save_pages;
572 if (ret)
573 goto out;
574
575 sg_init_one(sg, data, len);
576
577 skcipher_request_set_sync_tfm(req, cipher);
578 skcipher_request_set_callback(req, 0, NULL, NULL);
579 skcipher_request_set_crypt(req, sg, sg, len, iv);
580
581 if (encrypt)
582 ret = crypto_skcipher_encrypt(req);
583 else
584 ret = crypto_skcipher_decrypt(req);
585
586 skcipher_request_zero(req);
587
588 if (ret)
589 goto out;
590
591 ret = write_bytes_to_xdr_buf(buf, offset, data, len);
592
593out:
594 kfree(data);
595 return ret;
596}
597
598u32
599gss_krb5_aes_encrypt(struct krb5_ctx *kctx, u32 offset,
600 struct xdr_buf *buf, struct page **pages)
601{
602 u32 err;
603 struct xdr_netobj hmac;
604 u8 *cksumkey;
605 u8 *ecptr;
606 struct crypto_sync_skcipher *cipher, *aux_cipher;
607 int blocksize;
608 struct page **save_pages;
609 int nblocks, nbytes;
610 struct encryptor_desc desc;
611 u32 cbcbytes;
612 unsigned int usage;
613
614 if (kctx->initiate) {
615 cipher = kctx->initiator_enc;
616 aux_cipher = kctx->initiator_enc_aux;
617 cksumkey = kctx->initiator_integ;
618 usage = KG_USAGE_INITIATOR_SEAL;
619 } else {
620 cipher = kctx->acceptor_enc;
621 aux_cipher = kctx->acceptor_enc_aux;
622 cksumkey = kctx->acceptor_integ;
623 usage = KG_USAGE_ACCEPTOR_SEAL;
624 }
625 blocksize = crypto_sync_skcipher_blocksize(cipher);
626
627 /* hide the gss token header and insert the confounder */
628 offset += GSS_KRB5_TOK_HDR_LEN;
629 if (xdr_extend_head(buf, offset, kctx->gk5e->conflen))
630 return GSS_S_FAILURE;
631 gss_krb5_make_confounder(buf->head[0].iov_base + offset, kctx->gk5e->conflen);
632 offset -= GSS_KRB5_TOK_HDR_LEN;
633
634 if (buf->tail[0].iov_base != NULL) {
635 ecptr = buf->tail[0].iov_base + buf->tail[0].iov_len;
636 } else {
637 buf->tail[0].iov_base = buf->head[0].iov_base
638 + buf->head[0].iov_len;
639 buf->tail[0].iov_len = 0;
640 ecptr = buf->tail[0].iov_base;
641 }
642
643 /* copy plaintext gss token header after filler (if any) */
644 memcpy(ecptr, buf->head[0].iov_base + offset, GSS_KRB5_TOK_HDR_LEN);
645 buf->tail[0].iov_len += GSS_KRB5_TOK_HDR_LEN;
646 buf->len += GSS_KRB5_TOK_HDR_LEN;
647
648 /* Do the HMAC */
649 hmac.len = GSS_KRB5_MAX_CKSUM_LEN;
650 hmac.data = buf->tail[0].iov_base + buf->tail[0].iov_len;
651
652 /*
653 * When we are called, pages points to the real page cache
654 * data -- which we can't go and encrypt! buf->pages points
655 * to scratch pages which we are going to send off to the
656 * client/server. Swap in the plaintext pages to calculate
657 * the hmac.
658 */
659 save_pages = buf->pages;
660 buf->pages = pages;
661
662 err = make_checksum_v2(kctx, NULL, 0, buf,
663 offset + GSS_KRB5_TOK_HDR_LEN,
664 cksumkey, usage, &hmac);
665 buf->pages = save_pages;
666 if (err)
667 return GSS_S_FAILURE;
668
669 nbytes = buf->len - offset - GSS_KRB5_TOK_HDR_LEN;
670 nblocks = (nbytes + blocksize - 1) / blocksize;
671 cbcbytes = 0;
672 if (nblocks > 2)
673 cbcbytes = (nblocks - 2) * blocksize;
674
675 memset(desc.iv, 0, sizeof(desc.iv));
676
677 if (cbcbytes) {
678 SYNC_SKCIPHER_REQUEST_ON_STACK(req, aux_cipher);
679
680 desc.pos = offset + GSS_KRB5_TOK_HDR_LEN;
681 desc.fragno = 0;
682 desc.fraglen = 0;
683 desc.pages = pages;
684 desc.outbuf = buf;
685 desc.req = req;
686
687 skcipher_request_set_sync_tfm(req, aux_cipher);
688 skcipher_request_set_callback(req, 0, NULL, NULL);
689
690 sg_init_table(desc.infrags, 4);
691 sg_init_table(desc.outfrags, 4);
692
693 err = xdr_process_buf(buf, offset + GSS_KRB5_TOK_HDR_LEN,
694 cbcbytes, encryptor, &desc);
695 skcipher_request_zero(req);
696 if (err)
697 goto out_err;
698 }
699
700 /* Make sure IV carries forward from any CBC results. */
701 err = gss_krb5_cts_crypt(cipher, buf,
702 offset + GSS_KRB5_TOK_HDR_LEN + cbcbytes,
703 desc.iv, pages, 1);
704 if (err) {
705 err = GSS_S_FAILURE;
706 goto out_err;
707 }
708
709 /* Now update buf to account for HMAC */
710 buf->tail[0].iov_len += kctx->gk5e->cksumlength;
711 buf->len += kctx->gk5e->cksumlength;
712
713out_err:
714 if (err)
715 err = GSS_S_FAILURE;
716 return err;
717}
718
719u32
720gss_krb5_aes_decrypt(struct krb5_ctx *kctx, u32 offset, u32 len,
721 struct xdr_buf *buf, u32 *headskip, u32 *tailskip)
722{
723 struct xdr_buf subbuf;
724 u32 ret = 0;
725 u8 *cksum_key;
726 struct crypto_sync_skcipher *cipher, *aux_cipher;
727 struct xdr_netobj our_hmac_obj;
728 u8 our_hmac[GSS_KRB5_MAX_CKSUM_LEN];
729 u8 pkt_hmac[GSS_KRB5_MAX_CKSUM_LEN];
730 int nblocks, blocksize, cbcbytes;
731 struct decryptor_desc desc;
732 unsigned int usage;
733
734 if (kctx->initiate) {
735 cipher = kctx->acceptor_enc;
736 aux_cipher = kctx->acceptor_enc_aux;
737 cksum_key = kctx->acceptor_integ;
738 usage = KG_USAGE_ACCEPTOR_SEAL;
739 } else {
740 cipher = kctx->initiator_enc;
741 aux_cipher = kctx->initiator_enc_aux;
742 cksum_key = kctx->initiator_integ;
743 usage = KG_USAGE_INITIATOR_SEAL;
744 }
745 blocksize = crypto_sync_skcipher_blocksize(cipher);
746
747
748 /* create a segment skipping the header and leaving out the checksum */
749 xdr_buf_subsegment(buf, &subbuf, offset + GSS_KRB5_TOK_HDR_LEN,
750 (len - offset - GSS_KRB5_TOK_HDR_LEN -
751 kctx->gk5e->cksumlength));
752
753 nblocks = (subbuf.len + blocksize - 1) / blocksize;
754
755 cbcbytes = 0;
756 if (nblocks > 2)
757 cbcbytes = (nblocks - 2) * blocksize;
758
759 memset(desc.iv, 0, sizeof(desc.iv));
760
761 if (cbcbytes) {
762 SYNC_SKCIPHER_REQUEST_ON_STACK(req, aux_cipher);
763
764 desc.fragno = 0;
765 desc.fraglen = 0;
766 desc.req = req;
767
768 skcipher_request_set_sync_tfm(req, aux_cipher);
769 skcipher_request_set_callback(req, 0, NULL, NULL);
770
771 sg_init_table(desc.frags, 4);
772
773 ret = xdr_process_buf(&subbuf, 0, cbcbytes, decryptor, &desc);
774 skcipher_request_zero(req);
775 if (ret)
776 goto out_err;
777 }
778
779 /* Make sure IV carries forward from any CBC results. */
780 ret = gss_krb5_cts_crypt(cipher, &subbuf, cbcbytes, desc.iv, NULL, 0);
781 if (ret)
782 goto out_err;
783
784
785 /* Calculate our hmac over the plaintext data */
786 our_hmac_obj.len = sizeof(our_hmac);
787 our_hmac_obj.data = our_hmac;
788
789 ret = make_checksum_v2(kctx, NULL, 0, &subbuf, 0,
790 cksum_key, usage, &our_hmac_obj);
791 if (ret)
792 goto out_err;
793
794 /* Get the packet's hmac value */
795 ret = read_bytes_from_xdr_buf(buf, len - kctx->gk5e->cksumlength,
796 pkt_hmac, kctx->gk5e->cksumlength);
797 if (ret)
798 goto out_err;
799
800 if (crypto_memneq(pkt_hmac, our_hmac, kctx->gk5e->cksumlength) != 0) {
801 ret = GSS_S_BAD_SIG;
802 goto out_err;
803 }
804 *headskip = kctx->gk5e->conflen;
805 *tailskip = kctx->gk5e->cksumlength;
806out_err:
807 if (ret && ret != GSS_S_BAD_SIG)
808 ret = GSS_S_FAILURE;
809 return ret;
810}
1/*
2 * linux/net/sunrpc/gss_krb5_crypto.c
3 *
4 * Copyright (c) 2000-2008 The Regents of the University of Michigan.
5 * All rights reserved.
6 *
7 * Andy Adamson <andros@umich.edu>
8 * Bruce Fields <bfields@umich.edu>
9 */
10
11/*
12 * Copyright (C) 1998 by the FundsXpress, INC.
13 *
14 * All rights reserved.
15 *
16 * Export of this software from the United States of America may require
17 * a specific license from the United States Government. It is the
18 * responsibility of any person or organization contemplating export to
19 * obtain such a license before exporting.
20 *
21 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
22 * distribute this software and its documentation for any purpose and
23 * without fee is hereby granted, provided that the above copyright
24 * notice appear in all copies and that both that copyright notice and
25 * this permission notice appear in supporting documentation, and that
26 * the name of FundsXpress. not be used in advertising or publicity pertaining
27 * to distribution of the software without specific, written prior
28 * permission. FundsXpress makes no representations about the suitability of
29 * this software for any purpose. It is provided "as is" without express
30 * or implied warranty.
31 *
32 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
33 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
34 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
35 */
36
37#include <crypto/algapi.h>
38#include <crypto/hash.h>
39#include <crypto/skcipher.h>
40#include <linux/err.h>
41#include <linux/types.h>
42#include <linux/mm.h>
43#include <linux/scatterlist.h>
44#include <linux/highmem.h>
45#include <linux/pagemap.h>
46#include <linux/random.h>
47#include <linux/sunrpc/gss_krb5.h>
48#include <linux/sunrpc/xdr.h>
49
50#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
51# define RPCDBG_FACILITY RPCDBG_AUTH
52#endif
53
54u32
55krb5_encrypt(
56 struct crypto_sync_skcipher *tfm,
57 void * iv,
58 void * in,
59 void * out,
60 int length)
61{
62 u32 ret = -EINVAL;
63 struct scatterlist sg[1];
64 u8 local_iv[GSS_KRB5_MAX_BLOCKSIZE] = {0};
65 SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
66
67 if (length % crypto_sync_skcipher_blocksize(tfm) != 0)
68 goto out;
69
70 if (crypto_sync_skcipher_ivsize(tfm) > GSS_KRB5_MAX_BLOCKSIZE) {
71 dprintk("RPC: gss_k5encrypt: tfm iv size too large %d\n",
72 crypto_sync_skcipher_ivsize(tfm));
73 goto out;
74 }
75
76 if (iv)
77 memcpy(local_iv, iv, crypto_sync_skcipher_ivsize(tfm));
78
79 memcpy(out, in, length);
80 sg_init_one(sg, out, length);
81
82 skcipher_request_set_sync_tfm(req, tfm);
83 skcipher_request_set_callback(req, 0, NULL, NULL);
84 skcipher_request_set_crypt(req, sg, sg, length, local_iv);
85
86 ret = crypto_skcipher_encrypt(req);
87 skcipher_request_zero(req);
88out:
89 dprintk("RPC: krb5_encrypt returns %d\n", ret);
90 return ret;
91}
92
93u32
94krb5_decrypt(
95 struct crypto_sync_skcipher *tfm,
96 void * iv,
97 void * in,
98 void * out,
99 int length)
100{
101 u32 ret = -EINVAL;
102 struct scatterlist sg[1];
103 u8 local_iv[GSS_KRB5_MAX_BLOCKSIZE] = {0};
104 SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
105
106 if (length % crypto_sync_skcipher_blocksize(tfm) != 0)
107 goto out;
108
109 if (crypto_sync_skcipher_ivsize(tfm) > GSS_KRB5_MAX_BLOCKSIZE) {
110 dprintk("RPC: gss_k5decrypt: tfm iv size too large %d\n",
111 crypto_sync_skcipher_ivsize(tfm));
112 goto out;
113 }
114 if (iv)
115 memcpy(local_iv, iv, crypto_sync_skcipher_ivsize(tfm));
116
117 memcpy(out, in, length);
118 sg_init_one(sg, out, length);
119
120 skcipher_request_set_sync_tfm(req, tfm);
121 skcipher_request_set_callback(req, 0, NULL, NULL);
122 skcipher_request_set_crypt(req, sg, sg, length, local_iv);
123
124 ret = crypto_skcipher_decrypt(req);
125 skcipher_request_zero(req);
126out:
127 dprintk("RPC: gss_k5decrypt returns %d\n",ret);
128 return ret;
129}
130
131static int
132checksummer(struct scatterlist *sg, void *data)
133{
134 struct ahash_request *req = data;
135
136 ahash_request_set_crypt(req, sg, NULL, sg->length);
137
138 return crypto_ahash_update(req);
139}
140
141static int
142arcfour_hmac_md5_usage_to_salt(unsigned int usage, u8 salt[4])
143{
144 unsigned int ms_usage;
145
146 switch (usage) {
147 case KG_USAGE_SIGN:
148 ms_usage = 15;
149 break;
150 case KG_USAGE_SEAL:
151 ms_usage = 13;
152 break;
153 default:
154 return -EINVAL;
155 }
156 salt[0] = (ms_usage >> 0) & 0xff;
157 salt[1] = (ms_usage >> 8) & 0xff;
158 salt[2] = (ms_usage >> 16) & 0xff;
159 salt[3] = (ms_usage >> 24) & 0xff;
160
161 return 0;
162}
163
164static u32
165make_checksum_hmac_md5(struct krb5_ctx *kctx, char *header, int hdrlen,
166 struct xdr_buf *body, int body_offset, u8 *cksumkey,
167 unsigned int usage, struct xdr_netobj *cksumout)
168{
169 struct scatterlist sg[1];
170 int err = -1;
171 u8 *checksumdata;
172 u8 *rc4salt;
173 struct crypto_ahash *md5;
174 struct crypto_ahash *hmac_md5;
175 struct ahash_request *req;
176
177 if (cksumkey == NULL)
178 return GSS_S_FAILURE;
179
180 if (cksumout->len < kctx->gk5e->cksumlength) {
181 dprintk("%s: checksum buffer length, %u, too small for %s\n",
182 __func__, cksumout->len, kctx->gk5e->name);
183 return GSS_S_FAILURE;
184 }
185
186 rc4salt = kmalloc_array(4, sizeof(*rc4salt), GFP_NOFS);
187 if (!rc4salt)
188 return GSS_S_FAILURE;
189
190 if (arcfour_hmac_md5_usage_to_salt(usage, rc4salt)) {
191 dprintk("%s: invalid usage value %u\n", __func__, usage);
192 goto out_free_rc4salt;
193 }
194
195 checksumdata = kmalloc(GSS_KRB5_MAX_CKSUM_LEN, GFP_NOFS);
196 if (!checksumdata)
197 goto out_free_rc4salt;
198
199 md5 = crypto_alloc_ahash("md5", 0, CRYPTO_ALG_ASYNC);
200 if (IS_ERR(md5))
201 goto out_free_cksum;
202
203 hmac_md5 = crypto_alloc_ahash(kctx->gk5e->cksum_name, 0,
204 CRYPTO_ALG_ASYNC);
205 if (IS_ERR(hmac_md5))
206 goto out_free_md5;
207
208 req = ahash_request_alloc(md5, GFP_NOFS);
209 if (!req)
210 goto out_free_hmac_md5;
211
212 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
213
214 err = crypto_ahash_init(req);
215 if (err)
216 goto out;
217 sg_init_one(sg, rc4salt, 4);
218 ahash_request_set_crypt(req, sg, NULL, 4);
219 err = crypto_ahash_update(req);
220 if (err)
221 goto out;
222
223 sg_init_one(sg, header, hdrlen);
224 ahash_request_set_crypt(req, sg, NULL, hdrlen);
225 err = crypto_ahash_update(req);
226 if (err)
227 goto out;
228 err = xdr_process_buf(body, body_offset, body->len - body_offset,
229 checksummer, req);
230 if (err)
231 goto out;
232 ahash_request_set_crypt(req, NULL, checksumdata, 0);
233 err = crypto_ahash_final(req);
234 if (err)
235 goto out;
236
237 ahash_request_free(req);
238 req = ahash_request_alloc(hmac_md5, GFP_NOFS);
239 if (!req)
240 goto out_free_hmac_md5;
241
242 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
243
244 err = crypto_ahash_setkey(hmac_md5, cksumkey, kctx->gk5e->keylength);
245 if (err)
246 goto out;
247
248 sg_init_one(sg, checksumdata, crypto_ahash_digestsize(md5));
249 ahash_request_set_crypt(req, sg, checksumdata,
250 crypto_ahash_digestsize(md5));
251 err = crypto_ahash_digest(req);
252 if (err)
253 goto out;
254
255 memcpy(cksumout->data, checksumdata, kctx->gk5e->cksumlength);
256 cksumout->len = kctx->gk5e->cksumlength;
257out:
258 ahash_request_free(req);
259out_free_hmac_md5:
260 crypto_free_ahash(hmac_md5);
261out_free_md5:
262 crypto_free_ahash(md5);
263out_free_cksum:
264 kfree(checksumdata);
265out_free_rc4salt:
266 kfree(rc4salt);
267 return err ? GSS_S_FAILURE : 0;
268}
269
270/*
271 * checksum the plaintext data and hdrlen bytes of the token header
272 * The checksum is performed over the first 8 bytes of the
273 * gss token header and then over the data body
274 */
275u32
276make_checksum(struct krb5_ctx *kctx, char *header, int hdrlen,
277 struct xdr_buf *body, int body_offset, u8 *cksumkey,
278 unsigned int usage, struct xdr_netobj *cksumout)
279{
280 struct crypto_ahash *tfm;
281 struct ahash_request *req;
282 struct scatterlist sg[1];
283 int err = -1;
284 u8 *checksumdata;
285 unsigned int checksumlen;
286
287 if (kctx->gk5e->ctype == CKSUMTYPE_HMAC_MD5_ARCFOUR)
288 return make_checksum_hmac_md5(kctx, header, hdrlen,
289 body, body_offset,
290 cksumkey, usage, cksumout);
291
292 if (cksumout->len < kctx->gk5e->cksumlength) {
293 dprintk("%s: checksum buffer length, %u, too small for %s\n",
294 __func__, cksumout->len, kctx->gk5e->name);
295 return GSS_S_FAILURE;
296 }
297
298 checksumdata = kmalloc(GSS_KRB5_MAX_CKSUM_LEN, GFP_NOFS);
299 if (checksumdata == NULL)
300 return GSS_S_FAILURE;
301
302 tfm = crypto_alloc_ahash(kctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
303 if (IS_ERR(tfm))
304 goto out_free_cksum;
305
306 req = ahash_request_alloc(tfm, GFP_NOFS);
307 if (!req)
308 goto out_free_ahash;
309
310 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
311
312 checksumlen = crypto_ahash_digestsize(tfm);
313
314 if (cksumkey != NULL) {
315 err = crypto_ahash_setkey(tfm, cksumkey,
316 kctx->gk5e->keylength);
317 if (err)
318 goto out;
319 }
320
321 err = crypto_ahash_init(req);
322 if (err)
323 goto out;
324 sg_init_one(sg, header, hdrlen);
325 ahash_request_set_crypt(req, sg, NULL, hdrlen);
326 err = crypto_ahash_update(req);
327 if (err)
328 goto out;
329 err = xdr_process_buf(body, body_offset, body->len - body_offset,
330 checksummer, req);
331 if (err)
332 goto out;
333 ahash_request_set_crypt(req, NULL, checksumdata, 0);
334 err = crypto_ahash_final(req);
335 if (err)
336 goto out;
337
338 switch (kctx->gk5e->ctype) {
339 case CKSUMTYPE_RSA_MD5:
340 err = kctx->gk5e->encrypt(kctx->seq, NULL, checksumdata,
341 checksumdata, checksumlen);
342 if (err)
343 goto out;
344 memcpy(cksumout->data,
345 checksumdata + checksumlen - kctx->gk5e->cksumlength,
346 kctx->gk5e->cksumlength);
347 break;
348 case CKSUMTYPE_HMAC_SHA1_DES3:
349 memcpy(cksumout->data, checksumdata, kctx->gk5e->cksumlength);
350 break;
351 default:
352 BUG();
353 break;
354 }
355 cksumout->len = kctx->gk5e->cksumlength;
356out:
357 ahash_request_free(req);
358out_free_ahash:
359 crypto_free_ahash(tfm);
360out_free_cksum:
361 kfree(checksumdata);
362 return err ? GSS_S_FAILURE : 0;
363}
364
365/*
366 * checksum the plaintext data and hdrlen bytes of the token header
367 * Per rfc4121, sec. 4.2.4, the checksum is performed over the data
368 * body then over the first 16 octets of the MIC token
369 * Inclusion of the header data in the calculation of the
370 * checksum is optional.
371 */
372u32
373make_checksum_v2(struct krb5_ctx *kctx, char *header, int hdrlen,
374 struct xdr_buf *body, int body_offset, u8 *cksumkey,
375 unsigned int usage, struct xdr_netobj *cksumout)
376{
377 struct crypto_ahash *tfm;
378 struct ahash_request *req;
379 struct scatterlist sg[1];
380 int err = -1;
381 u8 *checksumdata;
382
383 if (kctx->gk5e->keyed_cksum == 0) {
384 dprintk("%s: expected keyed hash for %s\n",
385 __func__, kctx->gk5e->name);
386 return GSS_S_FAILURE;
387 }
388 if (cksumkey == NULL) {
389 dprintk("%s: no key supplied for %s\n",
390 __func__, kctx->gk5e->name);
391 return GSS_S_FAILURE;
392 }
393
394 checksumdata = kmalloc(GSS_KRB5_MAX_CKSUM_LEN, GFP_NOFS);
395 if (!checksumdata)
396 return GSS_S_FAILURE;
397
398 tfm = crypto_alloc_ahash(kctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
399 if (IS_ERR(tfm))
400 goto out_free_cksum;
401
402 req = ahash_request_alloc(tfm, GFP_NOFS);
403 if (!req)
404 goto out_free_ahash;
405
406 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
407
408 err = crypto_ahash_setkey(tfm, cksumkey, kctx->gk5e->keylength);
409 if (err)
410 goto out;
411
412 err = crypto_ahash_init(req);
413 if (err)
414 goto out;
415 err = xdr_process_buf(body, body_offset, body->len - body_offset,
416 checksummer, req);
417 if (err)
418 goto out;
419 if (header != NULL) {
420 sg_init_one(sg, header, hdrlen);
421 ahash_request_set_crypt(req, sg, NULL, hdrlen);
422 err = crypto_ahash_update(req);
423 if (err)
424 goto out;
425 }
426 ahash_request_set_crypt(req, NULL, checksumdata, 0);
427 err = crypto_ahash_final(req);
428 if (err)
429 goto out;
430
431 cksumout->len = kctx->gk5e->cksumlength;
432
433 switch (kctx->gk5e->ctype) {
434 case CKSUMTYPE_HMAC_SHA1_96_AES128:
435 case CKSUMTYPE_HMAC_SHA1_96_AES256:
436 /* note that this truncates the hash */
437 memcpy(cksumout->data, checksumdata, kctx->gk5e->cksumlength);
438 break;
439 default:
440 BUG();
441 break;
442 }
443out:
444 ahash_request_free(req);
445out_free_ahash:
446 crypto_free_ahash(tfm);
447out_free_cksum:
448 kfree(checksumdata);
449 return err ? GSS_S_FAILURE : 0;
450}
451
452struct encryptor_desc {
453 u8 iv[GSS_KRB5_MAX_BLOCKSIZE];
454 struct skcipher_request *req;
455 int pos;
456 struct xdr_buf *outbuf;
457 struct page **pages;
458 struct scatterlist infrags[4];
459 struct scatterlist outfrags[4];
460 int fragno;
461 int fraglen;
462};
463
464static int
465encryptor(struct scatterlist *sg, void *data)
466{
467 struct encryptor_desc *desc = data;
468 struct xdr_buf *outbuf = desc->outbuf;
469 struct crypto_sync_skcipher *tfm =
470 crypto_sync_skcipher_reqtfm(desc->req);
471 struct page *in_page;
472 int thislen = desc->fraglen + sg->length;
473 int fraglen, ret;
474 int page_pos;
475
476 /* Worst case is 4 fragments: head, end of page 1, start
477 * of page 2, tail. Anything more is a bug. */
478 BUG_ON(desc->fragno > 3);
479
480 page_pos = desc->pos - outbuf->head[0].iov_len;
481 if (page_pos >= 0 && page_pos < outbuf->page_len) {
482 /* pages are not in place: */
483 int i = (page_pos + outbuf->page_base) >> PAGE_SHIFT;
484 in_page = desc->pages[i];
485 } else {
486 in_page = sg_page(sg);
487 }
488 sg_set_page(&desc->infrags[desc->fragno], in_page, sg->length,
489 sg->offset);
490 sg_set_page(&desc->outfrags[desc->fragno], sg_page(sg), sg->length,
491 sg->offset);
492 desc->fragno++;
493 desc->fraglen += sg->length;
494 desc->pos += sg->length;
495
496 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1);
497 thislen -= fraglen;
498
499 if (thislen == 0)
500 return 0;
501
502 sg_mark_end(&desc->infrags[desc->fragno - 1]);
503 sg_mark_end(&desc->outfrags[desc->fragno - 1]);
504
505 skcipher_request_set_crypt(desc->req, desc->infrags, desc->outfrags,
506 thislen, desc->iv);
507
508 ret = crypto_skcipher_encrypt(desc->req);
509 if (ret)
510 return ret;
511
512 sg_init_table(desc->infrags, 4);
513 sg_init_table(desc->outfrags, 4);
514
515 if (fraglen) {
516 sg_set_page(&desc->outfrags[0], sg_page(sg), fraglen,
517 sg->offset + sg->length - fraglen);
518 desc->infrags[0] = desc->outfrags[0];
519 sg_assign_page(&desc->infrags[0], in_page);
520 desc->fragno = 1;
521 desc->fraglen = fraglen;
522 } else {
523 desc->fragno = 0;
524 desc->fraglen = 0;
525 }
526 return 0;
527}
528
529int
530gss_encrypt_xdr_buf(struct crypto_sync_skcipher *tfm, struct xdr_buf *buf,
531 int offset, struct page **pages)
532{
533 int ret;
534 struct encryptor_desc desc;
535 SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
536
537 BUG_ON((buf->len - offset) % crypto_sync_skcipher_blocksize(tfm) != 0);
538
539 skcipher_request_set_sync_tfm(req, tfm);
540 skcipher_request_set_callback(req, 0, NULL, NULL);
541
542 memset(desc.iv, 0, sizeof(desc.iv));
543 desc.req = req;
544 desc.pos = offset;
545 desc.outbuf = buf;
546 desc.pages = pages;
547 desc.fragno = 0;
548 desc.fraglen = 0;
549
550 sg_init_table(desc.infrags, 4);
551 sg_init_table(desc.outfrags, 4);
552
553 ret = xdr_process_buf(buf, offset, buf->len - offset, encryptor, &desc);
554 skcipher_request_zero(req);
555 return ret;
556}
557
558struct decryptor_desc {
559 u8 iv[GSS_KRB5_MAX_BLOCKSIZE];
560 struct skcipher_request *req;
561 struct scatterlist frags[4];
562 int fragno;
563 int fraglen;
564};
565
566static int
567decryptor(struct scatterlist *sg, void *data)
568{
569 struct decryptor_desc *desc = data;
570 int thislen = desc->fraglen + sg->length;
571 struct crypto_sync_skcipher *tfm =
572 crypto_sync_skcipher_reqtfm(desc->req);
573 int fraglen, ret;
574
575 /* Worst case is 4 fragments: head, end of page 1, start
576 * of page 2, tail. Anything more is a bug. */
577 BUG_ON(desc->fragno > 3);
578 sg_set_page(&desc->frags[desc->fragno], sg_page(sg), sg->length,
579 sg->offset);
580 desc->fragno++;
581 desc->fraglen += sg->length;
582
583 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1);
584 thislen -= fraglen;
585
586 if (thislen == 0)
587 return 0;
588
589 sg_mark_end(&desc->frags[desc->fragno - 1]);
590
591 skcipher_request_set_crypt(desc->req, desc->frags, desc->frags,
592 thislen, desc->iv);
593
594 ret = crypto_skcipher_decrypt(desc->req);
595 if (ret)
596 return ret;
597
598 sg_init_table(desc->frags, 4);
599
600 if (fraglen) {
601 sg_set_page(&desc->frags[0], sg_page(sg), fraglen,
602 sg->offset + sg->length - fraglen);
603 desc->fragno = 1;
604 desc->fraglen = fraglen;
605 } else {
606 desc->fragno = 0;
607 desc->fraglen = 0;
608 }
609 return 0;
610}
611
612int
613gss_decrypt_xdr_buf(struct crypto_sync_skcipher *tfm, struct xdr_buf *buf,
614 int offset)
615{
616 int ret;
617 struct decryptor_desc desc;
618 SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
619
620 /* XXXJBF: */
621 BUG_ON((buf->len - offset) % crypto_sync_skcipher_blocksize(tfm) != 0);
622
623 skcipher_request_set_sync_tfm(req, tfm);
624 skcipher_request_set_callback(req, 0, NULL, NULL);
625
626 memset(desc.iv, 0, sizeof(desc.iv));
627 desc.req = req;
628 desc.fragno = 0;
629 desc.fraglen = 0;
630
631 sg_init_table(desc.frags, 4);
632
633 ret = xdr_process_buf(buf, offset, buf->len - offset, decryptor, &desc);
634 skcipher_request_zero(req);
635 return ret;
636}
637
638/*
639 * This function makes the assumption that it was ultimately called
640 * from gss_wrap().
641 *
642 * The client auth_gss code moves any existing tail data into a
643 * separate page before calling gss_wrap.
644 * The server svcauth_gss code ensures that both the head and the
645 * tail have slack space of RPC_MAX_AUTH_SIZE before calling gss_wrap.
646 *
647 * Even with that guarantee, this function may be called more than
648 * once in the processing of gss_wrap(). The best we can do is
649 * verify at compile-time (see GSS_KRB5_SLACK_CHECK) that the
650 * largest expected shift will fit within RPC_MAX_AUTH_SIZE.
651 * At run-time we can verify that a single invocation of this
652 * function doesn't attempt to use more the RPC_MAX_AUTH_SIZE.
653 */
654
655int
656xdr_extend_head(struct xdr_buf *buf, unsigned int base, unsigned int shiftlen)
657{
658 u8 *p;
659
660 if (shiftlen == 0)
661 return 0;
662
663 BUILD_BUG_ON(GSS_KRB5_MAX_SLACK_NEEDED > RPC_MAX_AUTH_SIZE);
664 BUG_ON(shiftlen > RPC_MAX_AUTH_SIZE);
665
666 p = buf->head[0].iov_base + base;
667
668 memmove(p + shiftlen, p, buf->head[0].iov_len - base);
669
670 buf->head[0].iov_len += shiftlen;
671 buf->len += shiftlen;
672
673 return 0;
674}
675
676static u32
677gss_krb5_cts_crypt(struct crypto_sync_skcipher *cipher, struct xdr_buf *buf,
678 u32 offset, u8 *iv, struct page **pages, int encrypt)
679{
680 u32 ret;
681 struct scatterlist sg[1];
682 SYNC_SKCIPHER_REQUEST_ON_STACK(req, cipher);
683 u8 *data;
684 struct page **save_pages;
685 u32 len = buf->len - offset;
686
687 if (len > GSS_KRB5_MAX_BLOCKSIZE * 2) {
688 WARN_ON(0);
689 return -ENOMEM;
690 }
691 data = kmalloc(GSS_KRB5_MAX_BLOCKSIZE * 2, GFP_NOFS);
692 if (!data)
693 return -ENOMEM;
694
695 /*
696 * For encryption, we want to read from the cleartext
697 * page cache pages, and write the encrypted data to
698 * the supplied xdr_buf pages.
699 */
700 save_pages = buf->pages;
701 if (encrypt)
702 buf->pages = pages;
703
704 ret = read_bytes_from_xdr_buf(buf, offset, data, len);
705 buf->pages = save_pages;
706 if (ret)
707 goto out;
708
709 sg_init_one(sg, data, len);
710
711 skcipher_request_set_sync_tfm(req, cipher);
712 skcipher_request_set_callback(req, 0, NULL, NULL);
713 skcipher_request_set_crypt(req, sg, sg, len, iv);
714
715 if (encrypt)
716 ret = crypto_skcipher_encrypt(req);
717 else
718 ret = crypto_skcipher_decrypt(req);
719
720 skcipher_request_zero(req);
721
722 if (ret)
723 goto out;
724
725 ret = write_bytes_to_xdr_buf(buf, offset, data, len);
726
727out:
728 kfree(data);
729 return ret;
730}
731
732u32
733gss_krb5_aes_encrypt(struct krb5_ctx *kctx, u32 offset,
734 struct xdr_buf *buf, struct page **pages)
735{
736 u32 err;
737 struct xdr_netobj hmac;
738 u8 *cksumkey;
739 u8 *ecptr;
740 struct crypto_sync_skcipher *cipher, *aux_cipher;
741 int blocksize;
742 struct page **save_pages;
743 int nblocks, nbytes;
744 struct encryptor_desc desc;
745 u32 cbcbytes;
746 unsigned int usage;
747
748 if (kctx->initiate) {
749 cipher = kctx->initiator_enc;
750 aux_cipher = kctx->initiator_enc_aux;
751 cksumkey = kctx->initiator_integ;
752 usage = KG_USAGE_INITIATOR_SEAL;
753 } else {
754 cipher = kctx->acceptor_enc;
755 aux_cipher = kctx->acceptor_enc_aux;
756 cksumkey = kctx->acceptor_integ;
757 usage = KG_USAGE_ACCEPTOR_SEAL;
758 }
759 blocksize = crypto_sync_skcipher_blocksize(cipher);
760
761 /* hide the gss token header and insert the confounder */
762 offset += GSS_KRB5_TOK_HDR_LEN;
763 if (xdr_extend_head(buf, offset, kctx->gk5e->conflen))
764 return GSS_S_FAILURE;
765 gss_krb5_make_confounder(buf->head[0].iov_base + offset, kctx->gk5e->conflen);
766 offset -= GSS_KRB5_TOK_HDR_LEN;
767
768 if (buf->tail[0].iov_base != NULL) {
769 ecptr = buf->tail[0].iov_base + buf->tail[0].iov_len;
770 } else {
771 buf->tail[0].iov_base = buf->head[0].iov_base
772 + buf->head[0].iov_len;
773 buf->tail[0].iov_len = 0;
774 ecptr = buf->tail[0].iov_base;
775 }
776
777 /* copy plaintext gss token header after filler (if any) */
778 memcpy(ecptr, buf->head[0].iov_base + offset, GSS_KRB5_TOK_HDR_LEN);
779 buf->tail[0].iov_len += GSS_KRB5_TOK_HDR_LEN;
780 buf->len += GSS_KRB5_TOK_HDR_LEN;
781
782 /* Do the HMAC */
783 hmac.len = GSS_KRB5_MAX_CKSUM_LEN;
784 hmac.data = buf->tail[0].iov_base + buf->tail[0].iov_len;
785
786 /*
787 * When we are called, pages points to the real page cache
788 * data -- which we can't go and encrypt! buf->pages points
789 * to scratch pages which we are going to send off to the
790 * client/server. Swap in the plaintext pages to calculate
791 * the hmac.
792 */
793 save_pages = buf->pages;
794 buf->pages = pages;
795
796 err = make_checksum_v2(kctx, NULL, 0, buf,
797 offset + GSS_KRB5_TOK_HDR_LEN,
798 cksumkey, usage, &hmac);
799 buf->pages = save_pages;
800 if (err)
801 return GSS_S_FAILURE;
802
803 nbytes = buf->len - offset - GSS_KRB5_TOK_HDR_LEN;
804 nblocks = (nbytes + blocksize - 1) / blocksize;
805 cbcbytes = 0;
806 if (nblocks > 2)
807 cbcbytes = (nblocks - 2) * blocksize;
808
809 memset(desc.iv, 0, sizeof(desc.iv));
810
811 if (cbcbytes) {
812 SYNC_SKCIPHER_REQUEST_ON_STACK(req, aux_cipher);
813
814 desc.pos = offset + GSS_KRB5_TOK_HDR_LEN;
815 desc.fragno = 0;
816 desc.fraglen = 0;
817 desc.pages = pages;
818 desc.outbuf = buf;
819 desc.req = req;
820
821 skcipher_request_set_sync_tfm(req, aux_cipher);
822 skcipher_request_set_callback(req, 0, NULL, NULL);
823
824 sg_init_table(desc.infrags, 4);
825 sg_init_table(desc.outfrags, 4);
826
827 err = xdr_process_buf(buf, offset + GSS_KRB5_TOK_HDR_LEN,
828 cbcbytes, encryptor, &desc);
829 skcipher_request_zero(req);
830 if (err)
831 goto out_err;
832 }
833
834 /* Make sure IV carries forward from any CBC results. */
835 err = gss_krb5_cts_crypt(cipher, buf,
836 offset + GSS_KRB5_TOK_HDR_LEN + cbcbytes,
837 desc.iv, pages, 1);
838 if (err) {
839 err = GSS_S_FAILURE;
840 goto out_err;
841 }
842
843 /* Now update buf to account for HMAC */
844 buf->tail[0].iov_len += kctx->gk5e->cksumlength;
845 buf->len += kctx->gk5e->cksumlength;
846
847out_err:
848 if (err)
849 err = GSS_S_FAILURE;
850 return err;
851}
852
853u32
854gss_krb5_aes_decrypt(struct krb5_ctx *kctx, u32 offset, u32 len,
855 struct xdr_buf *buf, u32 *headskip, u32 *tailskip)
856{
857 struct xdr_buf subbuf;
858 u32 ret = 0;
859 u8 *cksum_key;
860 struct crypto_sync_skcipher *cipher, *aux_cipher;
861 struct xdr_netobj our_hmac_obj;
862 u8 our_hmac[GSS_KRB5_MAX_CKSUM_LEN];
863 u8 pkt_hmac[GSS_KRB5_MAX_CKSUM_LEN];
864 int nblocks, blocksize, cbcbytes;
865 struct decryptor_desc desc;
866 unsigned int usage;
867
868 if (kctx->initiate) {
869 cipher = kctx->acceptor_enc;
870 aux_cipher = kctx->acceptor_enc_aux;
871 cksum_key = kctx->acceptor_integ;
872 usage = KG_USAGE_ACCEPTOR_SEAL;
873 } else {
874 cipher = kctx->initiator_enc;
875 aux_cipher = kctx->initiator_enc_aux;
876 cksum_key = kctx->initiator_integ;
877 usage = KG_USAGE_INITIATOR_SEAL;
878 }
879 blocksize = crypto_sync_skcipher_blocksize(cipher);
880
881
882 /* create a segment skipping the header and leaving out the checksum */
883 xdr_buf_subsegment(buf, &subbuf, offset + GSS_KRB5_TOK_HDR_LEN,
884 (len - offset - GSS_KRB5_TOK_HDR_LEN -
885 kctx->gk5e->cksumlength));
886
887 nblocks = (subbuf.len + blocksize - 1) / blocksize;
888
889 cbcbytes = 0;
890 if (nblocks > 2)
891 cbcbytes = (nblocks - 2) * blocksize;
892
893 memset(desc.iv, 0, sizeof(desc.iv));
894
895 if (cbcbytes) {
896 SYNC_SKCIPHER_REQUEST_ON_STACK(req, aux_cipher);
897
898 desc.fragno = 0;
899 desc.fraglen = 0;
900 desc.req = req;
901
902 skcipher_request_set_sync_tfm(req, aux_cipher);
903 skcipher_request_set_callback(req, 0, NULL, NULL);
904
905 sg_init_table(desc.frags, 4);
906
907 ret = xdr_process_buf(&subbuf, 0, cbcbytes, decryptor, &desc);
908 skcipher_request_zero(req);
909 if (ret)
910 goto out_err;
911 }
912
913 /* Make sure IV carries forward from any CBC results. */
914 ret = gss_krb5_cts_crypt(cipher, &subbuf, cbcbytes, desc.iv, NULL, 0);
915 if (ret)
916 goto out_err;
917
918
919 /* Calculate our hmac over the plaintext data */
920 our_hmac_obj.len = sizeof(our_hmac);
921 our_hmac_obj.data = our_hmac;
922
923 ret = make_checksum_v2(kctx, NULL, 0, &subbuf, 0,
924 cksum_key, usage, &our_hmac_obj);
925 if (ret)
926 goto out_err;
927
928 /* Get the packet's hmac value */
929 ret = read_bytes_from_xdr_buf(buf, len - kctx->gk5e->cksumlength,
930 pkt_hmac, kctx->gk5e->cksumlength);
931 if (ret)
932 goto out_err;
933
934 if (crypto_memneq(pkt_hmac, our_hmac, kctx->gk5e->cksumlength) != 0) {
935 ret = GSS_S_BAD_SIG;
936 goto out_err;
937 }
938 *headskip = kctx->gk5e->conflen;
939 *tailskip = kctx->gk5e->cksumlength;
940out_err:
941 if (ret && ret != GSS_S_BAD_SIG)
942 ret = GSS_S_FAILURE;
943 return ret;
944}
945
946/*
947 * Compute Kseq given the initial session key and the checksum.
948 * Set the key of the given cipher.
949 */
950int
951krb5_rc4_setup_seq_key(struct krb5_ctx *kctx,
952 struct crypto_sync_skcipher *cipher,
953 unsigned char *cksum)
954{
955 struct crypto_shash *hmac;
956 struct shash_desc *desc;
957 u8 Kseq[GSS_KRB5_MAX_KEYLEN];
958 u32 zeroconstant = 0;
959 int err;
960
961 dprintk("%s: entered\n", __func__);
962
963 hmac = crypto_alloc_shash(kctx->gk5e->cksum_name, 0, 0);
964 if (IS_ERR(hmac)) {
965 dprintk("%s: error %ld, allocating hash '%s'\n",
966 __func__, PTR_ERR(hmac), kctx->gk5e->cksum_name);
967 return PTR_ERR(hmac);
968 }
969
970 desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(hmac),
971 GFP_NOFS);
972 if (!desc) {
973 dprintk("%s: failed to allocate shash descriptor for '%s'\n",
974 __func__, kctx->gk5e->cksum_name);
975 crypto_free_shash(hmac);
976 return -ENOMEM;
977 }
978
979 desc->tfm = hmac;
980
981 /* Compute intermediate Kseq from session key */
982 err = crypto_shash_setkey(hmac, kctx->Ksess, kctx->gk5e->keylength);
983 if (err)
984 goto out_err;
985
986 err = crypto_shash_digest(desc, (u8 *)&zeroconstant, 4, Kseq);
987 if (err)
988 goto out_err;
989
990 /* Compute final Kseq from the checksum and intermediate Kseq */
991 err = crypto_shash_setkey(hmac, Kseq, kctx->gk5e->keylength);
992 if (err)
993 goto out_err;
994
995 err = crypto_shash_digest(desc, cksum, 8, Kseq);
996 if (err)
997 goto out_err;
998
999 err = crypto_sync_skcipher_setkey(cipher, Kseq, kctx->gk5e->keylength);
1000 if (err)
1001 goto out_err;
1002
1003 err = 0;
1004
1005out_err:
1006 kfree_sensitive(desc);
1007 crypto_free_shash(hmac);
1008 dprintk("%s: returning %d\n", __func__, err);
1009 return err;
1010}
1011
1012/*
1013 * Compute Kcrypt given the initial session key and the plaintext seqnum.
1014 * Set the key of cipher kctx->enc.
1015 */
1016int
1017krb5_rc4_setup_enc_key(struct krb5_ctx *kctx,
1018 struct crypto_sync_skcipher *cipher,
1019 s32 seqnum)
1020{
1021 struct crypto_shash *hmac;
1022 struct shash_desc *desc;
1023 u8 Kcrypt[GSS_KRB5_MAX_KEYLEN];
1024 u8 zeroconstant[4] = {0};
1025 u8 seqnumarray[4];
1026 int err, i;
1027
1028 dprintk("%s: entered, seqnum %u\n", __func__, seqnum);
1029
1030 hmac = crypto_alloc_shash(kctx->gk5e->cksum_name, 0, 0);
1031 if (IS_ERR(hmac)) {
1032 dprintk("%s: error %ld, allocating hash '%s'\n",
1033 __func__, PTR_ERR(hmac), kctx->gk5e->cksum_name);
1034 return PTR_ERR(hmac);
1035 }
1036
1037 desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(hmac),
1038 GFP_NOFS);
1039 if (!desc) {
1040 dprintk("%s: failed to allocate shash descriptor for '%s'\n",
1041 __func__, kctx->gk5e->cksum_name);
1042 crypto_free_shash(hmac);
1043 return -ENOMEM;
1044 }
1045
1046 desc->tfm = hmac;
1047
1048 /* Compute intermediate Kcrypt from session key */
1049 for (i = 0; i < kctx->gk5e->keylength; i++)
1050 Kcrypt[i] = kctx->Ksess[i] ^ 0xf0;
1051
1052 err = crypto_shash_setkey(hmac, Kcrypt, kctx->gk5e->keylength);
1053 if (err)
1054 goto out_err;
1055
1056 err = crypto_shash_digest(desc, zeroconstant, 4, Kcrypt);
1057 if (err)
1058 goto out_err;
1059
1060 /* Compute final Kcrypt from the seqnum and intermediate Kcrypt */
1061 err = crypto_shash_setkey(hmac, Kcrypt, kctx->gk5e->keylength);
1062 if (err)
1063 goto out_err;
1064
1065 seqnumarray[0] = (unsigned char) ((seqnum >> 24) & 0xff);
1066 seqnumarray[1] = (unsigned char) ((seqnum >> 16) & 0xff);
1067 seqnumarray[2] = (unsigned char) ((seqnum >> 8) & 0xff);
1068 seqnumarray[3] = (unsigned char) ((seqnum >> 0) & 0xff);
1069
1070 err = crypto_shash_digest(desc, seqnumarray, 4, Kcrypt);
1071 if (err)
1072 goto out_err;
1073
1074 err = crypto_sync_skcipher_setkey(cipher, Kcrypt,
1075 kctx->gk5e->keylength);
1076 if (err)
1077 goto out_err;
1078
1079 err = 0;
1080
1081out_err:
1082 kfree_sensitive(desc);
1083 crypto_free_shash(hmac);
1084 dprintk("%s: returning %d\n", __func__, err);
1085 return err;
1086}