2 * linux/net/sunrpc/gss_krb5_crypto.c
4 * Copyright (c) 2000 The Regents of the University of Michigan.
7 * Andy Adamson <andros@umich.edu>
8 * Bruce Fields <bfields@umich.edu>
12 * Copyright (C) 1998 by the FundsXpress, INC.
14 * All rights reserved.
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.
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.
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.
37 #include <linux/err.h>
38 #include <linux/types.h>
40 #include <linux/slab.h>
41 #include <linux/scatterlist.h>
42 #include <linux/crypto.h>
43 #include <linux/highmem.h>
44 #include <linux/pagemap.h>
45 #include <linux/sunrpc/gss_krb5.h>
46 #include <linux/sunrpc/xdr.h>
49 # define RPCDBG_FACILITY RPCDBG_AUTH
54 struct crypto_blkcipher *tfm,
61 struct scatterlist sg[1];
62 u8 local_iv[16] = {0};
63 struct blkcipher_desc desc = { .tfm = tfm, .info = local_iv };
65 if (length % crypto_blkcipher_blocksize(tfm) != 0)
68 if (crypto_blkcipher_ivsize(tfm) > 16) {
69 dprintk("RPC: gss_k5encrypt: tfm iv size too large %d\n",
70 crypto_blkcipher_ivsize(tfm));
75 memcpy(local_iv, iv, crypto_blkcipher_ivsize(tfm));
77 memcpy(out, in, length);
78 sg_init_one(sg, out, length);
80 ret = crypto_blkcipher_encrypt_iv(&desc, sg, sg, length);
82 dprintk("RPC: krb5_encrypt returns %d\n", ret);
88 struct crypto_blkcipher *tfm,
95 struct scatterlist sg[1];
96 u8 local_iv[16] = {0};
97 struct blkcipher_desc desc = { .tfm = tfm, .info = local_iv };
99 if (length % crypto_blkcipher_blocksize(tfm) != 0)
102 if (crypto_blkcipher_ivsize(tfm) > 16) {
103 dprintk("RPC: gss_k5decrypt: tfm iv size too large %d\n",
104 crypto_blkcipher_ivsize(tfm));
108 memcpy(local_iv,iv, crypto_blkcipher_ivsize(tfm));
110 memcpy(out, in, length);
111 sg_init_one(sg, out, length);
113 ret = crypto_blkcipher_decrypt_iv(&desc, sg, sg, length);
115 dprintk("RPC: gss_k5decrypt returns %d\n",ret);
120 checksummer(struct scatterlist *sg, void *data)
122 struct hash_desc *desc = data;
124 return crypto_hash_update(desc, sg, sg->length);
127 /* checksum the plaintext data and hdrlen bytes of the token header */
129 make_checksum(char *cksumname, char *header, int hdrlen, struct xdr_buf *body,
130 int body_offset, struct xdr_netobj *cksum)
132 struct hash_desc desc; /* XXX add to ctx? */
133 struct scatterlist sg[1];
136 desc.tfm = crypto_alloc_hash(cksumname, 0, CRYPTO_ALG_ASYNC);
137 if (IS_ERR(desc.tfm))
138 return GSS_S_FAILURE;
139 cksum->len = crypto_hash_digestsize(desc.tfm);
140 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
142 err = crypto_hash_init(&desc);
145 sg_init_one(sg, header, hdrlen);
146 err = crypto_hash_update(&desc, sg, hdrlen);
149 err = xdr_process_buf(body, body_offset, body->len - body_offset,
153 err = crypto_hash_final(&desc, cksum->data);
156 crypto_free_hash(desc.tfm);
157 return err ? GSS_S_FAILURE : 0;
160 struct encryptor_desc {
161 u8 iv[8]; /* XXX hard-coded blocksize */
162 struct blkcipher_desc desc;
164 struct xdr_buf *outbuf;
166 struct scatterlist infrags[4];
167 struct scatterlist outfrags[4];
173 encryptor(struct scatterlist *sg, void *data)
175 struct encryptor_desc *desc = data;
176 struct xdr_buf *outbuf = desc->outbuf;
177 struct page *in_page;
178 int thislen = desc->fraglen + sg->length;
182 /* Worst case is 4 fragments: head, end of page 1, start
183 * of page 2, tail. Anything more is a bug. */
184 BUG_ON(desc->fragno > 3);
186 page_pos = desc->pos - outbuf->head[0].iov_len;
187 if (page_pos >= 0 && page_pos < outbuf->page_len) {
188 /* pages are not in place: */
189 int i = (page_pos + outbuf->page_base) >> PAGE_CACHE_SHIFT;
190 in_page = desc->pages[i];
192 in_page = sg_page(sg);
194 sg_set_page(&desc->infrags[desc->fragno], in_page, sg->length,
196 sg_set_page(&desc->outfrags[desc->fragno], sg_page(sg), sg->length,
199 desc->fraglen += sg->length;
200 desc->pos += sg->length;
202 fraglen = thislen & 7; /* XXX hardcoded blocksize */
208 sg_mark_end(&desc->infrags[desc->fragno - 1]);
209 sg_mark_end(&desc->outfrags[desc->fragno - 1]);
211 ret = crypto_blkcipher_encrypt_iv(&desc->desc, desc->outfrags,
212 desc->infrags, thislen);
216 sg_init_table(desc->infrags, 4);
217 sg_init_table(desc->outfrags, 4);
220 sg_set_page(&desc->outfrags[0], sg_page(sg), fraglen,
221 sg->offset + sg->length - fraglen);
222 desc->infrags[0] = desc->outfrags[0];
223 sg_assign_page(&desc->infrags[0], in_page);
225 desc->fraglen = fraglen;
234 gss_encrypt_xdr_buf(struct crypto_blkcipher *tfm, struct xdr_buf *buf,
235 int offset, struct page **pages)
238 struct encryptor_desc desc;
240 BUG_ON((buf->len - offset) % crypto_blkcipher_blocksize(tfm) != 0);
242 memset(desc.iv, 0, sizeof(desc.iv));
244 desc.desc.info = desc.iv;
252 sg_init_table(desc.infrags, 4);
253 sg_init_table(desc.outfrags, 4);
255 ret = xdr_process_buf(buf, offset, buf->len - offset, encryptor, &desc);
259 struct decryptor_desc {
260 u8 iv[8]; /* XXX hard-coded blocksize */
261 struct blkcipher_desc desc;
262 struct scatterlist frags[4];
268 decryptor(struct scatterlist *sg, void *data)
270 struct decryptor_desc *desc = data;
271 int thislen = desc->fraglen + sg->length;
274 /* Worst case is 4 fragments: head, end of page 1, start
275 * of page 2, tail. Anything more is a bug. */
276 BUG_ON(desc->fragno > 3);
277 sg_set_page(&desc->frags[desc->fragno], sg_page(sg), sg->length,
280 desc->fraglen += sg->length;
282 fraglen = thislen & 7; /* XXX hardcoded blocksize */
288 sg_mark_end(&desc->frags[desc->fragno - 1]);
290 ret = crypto_blkcipher_decrypt_iv(&desc->desc, desc->frags,
291 desc->frags, thislen);
295 sg_init_table(desc->frags, 4);
298 sg_set_page(&desc->frags[0], sg_page(sg), fraglen,
299 sg->offset + sg->length - fraglen);
301 desc->fraglen = fraglen;
310 gss_decrypt_xdr_buf(struct crypto_blkcipher *tfm, struct xdr_buf *buf,
313 struct decryptor_desc desc;
316 BUG_ON((buf->len - offset) % crypto_blkcipher_blocksize(tfm) != 0);
318 memset(desc.iv, 0, sizeof(desc.iv));
320 desc.desc.info = desc.iv;
325 sg_init_table(desc.frags, 4);
327 return xdr_process_buf(buf, offset, buf->len - offset, decryptor, &desc);