rpc: move process_xdr_buf
[linux-2.6/verdex.git] / net / sunrpc / auth_gss / gss_krb5_crypto.c
blob10d05ea3721336e7adc8859771dc52e7866f88b7
1 /*
2 * linux/net/sunrpc/gss_krb5_crypto.c
4 * Copyright (c) 2000 The Regents of the University of Michigan.
5 * All rights reserved.
7 * Andy Adamson <andros@umich.edu>
8 * Bruce Fields <bfields@umich.edu>
9 */
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>
39 #include <linux/mm.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>
48 #ifdef RPC_DEBUG
49 # define RPCDBG_FACILITY RPCDBG_AUTH
50 #endif
52 u32
53 krb5_encrypt(
54 struct crypto_blkcipher *tfm,
55 void * iv,
56 void * in,
57 void * out,
58 int length)
60 u32 ret = -EINVAL;
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)
66 goto out;
68 if (crypto_blkcipher_ivsize(tfm) > 16) {
69 dprintk("RPC: gss_k5encrypt: tfm iv size to large %d\n",
70 crypto_blkcipher_ivsize(tfm));
71 goto out;
74 if (iv)
75 memcpy(local_iv, iv, crypto_blkcipher_ivsize(tfm));
77 memcpy(out, in, length);
78 sg_set_buf(sg, out, length);
80 ret = crypto_blkcipher_encrypt_iv(&desc, sg, sg, length);
81 out:
82 dprintk("RPC: krb5_encrypt returns %d\n",ret);
83 return ret;
86 EXPORT_SYMBOL(krb5_encrypt);
88 u32
89 krb5_decrypt(
90 struct crypto_blkcipher *tfm,
91 void * iv,
92 void * in,
93 void * out,
94 int length)
96 u32 ret = -EINVAL;
97 struct scatterlist sg[1];
98 u8 local_iv[16] = {0};
99 struct blkcipher_desc desc = { .tfm = tfm, .info = local_iv };
101 if (length % crypto_blkcipher_blocksize(tfm) != 0)
102 goto out;
104 if (crypto_blkcipher_ivsize(tfm) > 16) {
105 dprintk("RPC: gss_k5decrypt: tfm iv size to large %d\n",
106 crypto_blkcipher_ivsize(tfm));
107 goto out;
109 if (iv)
110 memcpy(local_iv,iv, crypto_blkcipher_ivsize(tfm));
112 memcpy(out, in, length);
113 sg_set_buf(sg, out, length);
115 ret = crypto_blkcipher_decrypt_iv(&desc, sg, sg, length);
116 out:
117 dprintk("RPC: gss_k5decrypt returns %d\n",ret);
118 return ret;
121 EXPORT_SYMBOL(krb5_decrypt);
123 static int
124 checksummer(struct scatterlist *sg, void *data)
126 struct hash_desc *desc = data;
128 return crypto_hash_update(desc, sg, sg->length);
131 /* checksum the plaintext data and hdrlen bytes of the token header */
133 make_checksum(s32 cksumtype, char *header, int hdrlen, struct xdr_buf *body,
134 int body_offset, struct xdr_netobj *cksum)
136 char *cksumname;
137 struct hash_desc desc; /* XXX add to ctx? */
138 struct scatterlist sg[1];
139 int err;
141 switch (cksumtype) {
142 case CKSUMTYPE_RSA_MD5:
143 cksumname = "md5";
144 break;
145 default:
146 dprintk("RPC: krb5_make_checksum:"
147 " unsupported checksum %d", cksumtype);
148 return GSS_S_FAILURE;
150 desc.tfm = crypto_alloc_hash(cksumname, 0, CRYPTO_ALG_ASYNC);
151 if (IS_ERR(desc.tfm))
152 return GSS_S_FAILURE;
153 cksum->len = crypto_hash_digestsize(desc.tfm);
154 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
156 err = crypto_hash_init(&desc);
157 if (err)
158 goto out;
159 sg_set_buf(sg, header, hdrlen);
160 err = crypto_hash_update(&desc, sg, hdrlen);
161 if (err)
162 goto out;
163 err = xdr_process_buf(body, body_offset, body->len - body_offset,
164 checksummer, &desc);
165 if (err)
166 goto out;
167 err = crypto_hash_final(&desc, cksum->data);
169 out:
170 crypto_free_hash(desc.tfm);
171 return err ? GSS_S_FAILURE : 0;
174 EXPORT_SYMBOL(make_checksum);
176 struct encryptor_desc {
177 u8 iv[8]; /* XXX hard-coded blocksize */
178 struct blkcipher_desc desc;
179 int pos;
180 struct xdr_buf *outbuf;
181 struct page **pages;
182 struct scatterlist infrags[4];
183 struct scatterlist outfrags[4];
184 int fragno;
185 int fraglen;
188 static int
189 encryptor(struct scatterlist *sg, void *data)
191 struct encryptor_desc *desc = data;
192 struct xdr_buf *outbuf = desc->outbuf;
193 struct page *in_page;
194 int thislen = desc->fraglen + sg->length;
195 int fraglen, ret;
196 int page_pos;
198 /* Worst case is 4 fragments: head, end of page 1, start
199 * of page 2, tail. Anything more is a bug. */
200 BUG_ON(desc->fragno > 3);
201 desc->infrags[desc->fragno] = *sg;
202 desc->outfrags[desc->fragno] = *sg;
204 page_pos = desc->pos - outbuf->head[0].iov_len;
205 if (page_pos >= 0 && page_pos < outbuf->page_len) {
206 /* pages are not in place: */
207 int i = (page_pos + outbuf->page_base) >> PAGE_CACHE_SHIFT;
208 in_page = desc->pages[i];
209 } else {
210 in_page = sg->page;
212 desc->infrags[desc->fragno].page = in_page;
213 desc->fragno++;
214 desc->fraglen += sg->length;
215 desc->pos += sg->length;
217 fraglen = thislen & 7; /* XXX hardcoded blocksize */
218 thislen -= fraglen;
220 if (thislen == 0)
221 return 0;
223 ret = crypto_blkcipher_encrypt_iv(&desc->desc, desc->outfrags,
224 desc->infrags, thislen);
225 if (ret)
226 return ret;
227 if (fraglen) {
228 desc->outfrags[0].page = sg->page;
229 desc->outfrags[0].offset = sg->offset + sg->length - fraglen;
230 desc->outfrags[0].length = fraglen;
231 desc->infrags[0] = desc->outfrags[0];
232 desc->infrags[0].page = in_page;
233 desc->fragno = 1;
234 desc->fraglen = fraglen;
235 } else {
236 desc->fragno = 0;
237 desc->fraglen = 0;
239 return 0;
243 gss_encrypt_xdr_buf(struct crypto_blkcipher *tfm, struct xdr_buf *buf,
244 int offset, struct page **pages)
246 int ret;
247 struct encryptor_desc desc;
249 BUG_ON((buf->len - offset) % crypto_blkcipher_blocksize(tfm) != 0);
251 memset(desc.iv, 0, sizeof(desc.iv));
252 desc.desc.tfm = tfm;
253 desc.desc.info = desc.iv;
254 desc.desc.flags = 0;
255 desc.pos = offset;
256 desc.outbuf = buf;
257 desc.pages = pages;
258 desc.fragno = 0;
259 desc.fraglen = 0;
261 ret = xdr_process_buf(buf, offset, buf->len - offset, encryptor, &desc);
262 return ret;
265 EXPORT_SYMBOL(gss_encrypt_xdr_buf);
267 struct decryptor_desc {
268 u8 iv[8]; /* XXX hard-coded blocksize */
269 struct blkcipher_desc desc;
270 struct scatterlist frags[4];
271 int fragno;
272 int fraglen;
275 static int
276 decryptor(struct scatterlist *sg, void *data)
278 struct decryptor_desc *desc = data;
279 int thislen = desc->fraglen + sg->length;
280 int fraglen, ret;
282 /* Worst case is 4 fragments: head, end of page 1, start
283 * of page 2, tail. Anything more is a bug. */
284 BUG_ON(desc->fragno > 3);
285 desc->frags[desc->fragno] = *sg;
286 desc->fragno++;
287 desc->fraglen += sg->length;
289 fraglen = thislen & 7; /* XXX hardcoded blocksize */
290 thislen -= fraglen;
292 if (thislen == 0)
293 return 0;
295 ret = crypto_blkcipher_decrypt_iv(&desc->desc, desc->frags,
296 desc->frags, thislen);
297 if (ret)
298 return ret;
299 if (fraglen) {
300 desc->frags[0].page = sg->page;
301 desc->frags[0].offset = sg->offset + sg->length - fraglen;
302 desc->frags[0].length = fraglen;
303 desc->fragno = 1;
304 desc->fraglen = fraglen;
305 } else {
306 desc->fragno = 0;
307 desc->fraglen = 0;
309 return 0;
313 gss_decrypt_xdr_buf(struct crypto_blkcipher *tfm, struct xdr_buf *buf,
314 int offset)
316 struct decryptor_desc desc;
318 /* XXXJBF: */
319 BUG_ON((buf->len - offset) % crypto_blkcipher_blocksize(tfm) != 0);
321 memset(desc.iv, 0, sizeof(desc.iv));
322 desc.desc.tfm = tfm;
323 desc.desc.info = desc.iv;
324 desc.desc.flags = 0;
325 desc.fragno = 0;
326 desc.fraglen = 0;
327 return xdr_process_buf(buf, offset, buf->len - offset, decryptor, &desc);
330 EXPORT_SYMBOL(gss_decrypt_xdr_buf);