2 * linux/net/sunrpc/gss_spkm3_mech.c
4 * Copyright (c) 2003 The Regents of the University of Michigan.
7 * Andy Adamson <andros@umich.edu>
8 * J. Bruce Fields <bfields@umich.edu>
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include <linux/err.h>
38 #include <linux/module.h>
39 #include <linux/init.h>
40 #include <linux/types.h>
41 #include <linux/slab.h>
42 #include <linux/sunrpc/auth.h>
44 #include <linux/sunrpc/svcauth_gss.h>
45 #include <linux/sunrpc/gss_spkm3.h>
46 #include <linux/sunrpc/xdr.h>
47 #include <linux/crypto.h>
50 # define RPCDBG_FACILITY RPCDBG_AUTH
54 simple_get_bytes(const void *p, const void *end, void *res, int len)
56 const void *q = (const void *)((const char *)p + len);
57 if (unlikely(q > end || q < p))
58 return ERR_PTR(-EFAULT);
64 simple_get_netobj(const void *p, const void *end, struct xdr_netobj *res)
68 p = simple_get_bytes(p, end, &len, sizeof(len));
76 q = (const void *)((const char *)p + len);
77 if (unlikely(q > end || q < p))
78 return ERR_PTR(-EFAULT);
79 res->data = kmemdup(p, len, GFP_KERNEL);
80 if (unlikely(res->data == NULL))
81 return ERR_PTR(-ENOMEM);
85 static inline const void *
86 get_key(const void *p, const void *end, struct crypto_blkcipher **res,
89 struct xdr_netobj key = { 0 };
93 p = simple_get_bytes(p, end, resalg, sizeof(*resalg));
96 p = simple_get_netobj(p, end, &key);
102 alg_name = "cbc(des)";
106 /* XXXX here in name only, not used */
107 alg_name = "cbc(cast5)";
108 setkey = 0; /* XXX will need to set to 1 */
112 dprintk("RPC: SPKM3 get_key: NID_md5 zero Key length\n");
118 dprintk("gss_spkm3_mech: unsupported algorithm %d\n", *resalg);
119 goto out_err_free_key;
121 *res = crypto_alloc_blkcipher(alg_name, 0, CRYPTO_ALG_ASYNC);
123 printk("gss_spkm3_mech: unable to initialize crypto algorthm %s\n", alg_name);
125 goto out_err_free_key;
128 if (crypto_blkcipher_setkey(*res, key.data, key.len)) {
129 printk("gss_spkm3_mech: error setting key for crypto algorthm %s\n", alg_name);
130 goto out_err_free_tfm;
139 crypto_free_blkcipher(*res);
143 p = ERR_PTR(-EINVAL);
149 gss_import_sec_context_spkm3(const void *p, size_t len,
150 struct gss_ctx *ctx_id)
152 const void *end = (const void *)((const char *)p + len);
153 struct spkm3_ctx *ctx;
155 if (!(ctx = kzalloc(sizeof(*ctx), GFP_KERNEL)))
158 p = simple_get_netobj(p, end, &ctx->ctx_id);
160 goto out_err_free_ctx;
162 p = simple_get_bytes(p, end, &ctx->qop, sizeof(ctx->qop));
164 goto out_err_free_ctx_id;
166 p = simple_get_netobj(p, end, &ctx->mech_used);
168 goto out_err_free_mech;
170 p = simple_get_bytes(p, end, &ctx->ret_flags, sizeof(ctx->ret_flags));
172 goto out_err_free_mech;
174 p = simple_get_bytes(p, end, &ctx->req_flags, sizeof(ctx->req_flags));
176 goto out_err_free_mech;
178 p = simple_get_netobj(p, end, &ctx->share_key);
180 goto out_err_free_s_key;
182 p = get_key(p, end, &ctx->derived_conf_key, &ctx->conf_alg);
184 goto out_err_free_s_key;
186 p = get_key(p, end, &ctx->derived_integ_key, &ctx->intg_alg);
188 goto out_err_free_key1;
190 p = simple_get_bytes(p, end, &ctx->keyestb_alg, sizeof(ctx->keyestb_alg));
192 goto out_err_free_key2;
194 p = simple_get_bytes(p, end, &ctx->owf_alg, sizeof(ctx->owf_alg));
196 goto out_err_free_key2;
199 goto out_err_free_key2;
201 ctx_id->internal_ctx_id = ctx;
203 dprintk("Successfully imported new spkm context.\n");
207 crypto_free_blkcipher(ctx->derived_integ_key);
209 crypto_free_blkcipher(ctx->derived_conf_key);
211 kfree(ctx->share_key.data);
213 kfree(ctx->mech_used.data);
215 kfree(ctx->ctx_id.data);
223 gss_delete_sec_context_spkm3(void *internal_ctx) {
224 struct spkm3_ctx *sctx = internal_ctx;
226 crypto_free_blkcipher(sctx->derived_integ_key);
227 crypto_free_blkcipher(sctx->derived_conf_key);
228 kfree(sctx->share_key.data);
229 kfree(sctx->mech_used.data);
234 gss_verify_mic_spkm3(struct gss_ctx *ctx,
235 struct xdr_buf *signbuf,
236 struct xdr_netobj *checksum)
239 struct spkm3_ctx *sctx = ctx->internal_ctx_id;
241 dprintk("RPC: gss_verify_mic_spkm3 calling spkm3_read_token\n");
242 maj_stat = spkm3_read_token(sctx, checksum, signbuf, SPKM_MIC_TOK);
244 dprintk("RPC: gss_verify_mic_spkm3 returning %d\n", maj_stat);
249 gss_get_mic_spkm3(struct gss_ctx *ctx,
250 struct xdr_buf *message_buffer,
251 struct xdr_netobj *message_token)
254 struct spkm3_ctx *sctx = ctx->internal_ctx_id;
256 dprintk("RPC: gss_get_mic_spkm3\n");
258 err = spkm3_make_token(sctx, message_buffer,
259 message_token, SPKM_MIC_TOK);
263 static struct gss_api_ops gss_spkm3_ops = {
264 .gss_import_sec_context = gss_import_sec_context_spkm3,
265 .gss_get_mic = gss_get_mic_spkm3,
266 .gss_verify_mic = gss_verify_mic_spkm3,
267 .gss_delete_sec_context = gss_delete_sec_context_spkm3,
270 static struct pf_desc gss_spkm3_pfs[] = {
271 {RPC_AUTH_GSS_SPKM, RPC_GSS_SVC_NONE, "spkm3"},
272 {RPC_AUTH_GSS_SPKMI, RPC_GSS_SVC_INTEGRITY, "spkm3i"},
275 static struct gss_api_mech gss_spkm3_mech = {
277 .gm_owner = THIS_MODULE,
278 .gm_ops = &gss_spkm3_ops,
279 .gm_pf_num = ARRAY_SIZE(gss_spkm3_pfs),
280 .gm_pfs = gss_spkm3_pfs,
283 static int __init init_spkm3_module(void)
287 status = gss_mech_register(&gss_spkm3_mech);
289 printk("Failed to register spkm3 gss mechanism!\n");
293 static void __exit cleanup_spkm3_module(void)
295 gss_mech_unregister(&gss_spkm3_mech);
298 MODULE_LICENSE("GPL");
299 module_init(init_spkm3_module);
300 module_exit(cleanup_spkm3_module);