blob: fdf0eb2057ab9674e0e22332fa8b640e8b896f2f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/net/sunrpc/gss_krb5_mech.c
3 *
Kevin Coffman81d4a432010-03-17 13:02:51 -04004 * Copyright (c) 2001-2008 The Regents of the University of Michigan.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * All rights reserved.
6 *
7 * Andy Adamson <andros@umich.edu>
8 * J. Bruce Fields <bfields@umich.edu>
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
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.
22 *
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.
34 *
35 */
36
Herbert Xu378c6692006-08-22 20:33:54 +100037#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/sunrpc/gss_krb5.h>
44#include <linux/sunrpc/xdr.h>
45#include <linux/crypto.h>
46
47#ifdef RPC_DEBUG
48# define RPCDBG_FACILITY RPCDBG_AUTH
49#endif
50
Kevin Coffman81d4a432010-03-17 13:02:51 -040051static const struct gss_krb5_enctype supported_gss_krb5_enctypes[] = {
52 /*
53 * DES (All DES enctypes are mapped to the same gss functionality)
54 */
55 {
56 .etype = ENCTYPE_DES_CBC_RAW,
57 .ctype = CKSUMTYPE_RSA_MD5,
58 .name = "des-cbc-crc",
59 .encrypt_name = "cbc(des)",
60 .cksum_name = "md5",
61 .encrypt = krb5_encrypt,
62 .decrypt = krb5_decrypt,
Kevin Coffman4891f2d2010-03-17 13:02:53 -040063 .mk_key = NULL,
Kevin Coffman81d4a432010-03-17 13:02:51 -040064 .signalg = SGN_ALG_DES_MAC_MD5,
65 .sealalg = SEAL_ALG_DES,
66 .keybytes = 7,
67 .keylength = 8,
68 .blocksize = 8,
69 .cksumlength = 8,
Kevin Coffmane1f6c072010-03-17 13:02:52 -040070 .keyed_cksum = 0,
Kevin Coffman81d4a432010-03-17 13:02:51 -040071 },
72};
73
74static const int num_supported_enctypes =
75 ARRAY_SIZE(supported_gss_krb5_enctypes);
76
77static int
78supported_gss_krb5_enctype(int etype)
79{
80 int i;
81 for (i = 0; i < num_supported_enctypes; i++)
82 if (supported_gss_krb5_enctypes[i].etype == etype)
83 return 1;
84 return 0;
85}
86
87static const struct gss_krb5_enctype *
88get_gss_krb5_enctype(int etype)
89{
90 int i;
91 for (i = 0; i < num_supported_enctypes; i++)
92 if (supported_gss_krb5_enctypes[i].etype == etype)
93 return &supported_gss_krb5_enctypes[i];
94 return NULL;
95}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static const void *
98simple_get_bytes(const void *p, const void *end, void *res, int len)
99{
100 const void *q = (const void *)((const char *)p + len);
101 if (unlikely(q > end || q < p))
102 return ERR_PTR(-EFAULT);
103 memcpy(res, p, len);
104 return q;
105}
106
107static const void *
108simple_get_netobj(const void *p, const void *end, struct xdr_netobj *res)
109{
110 const void *q;
111 unsigned int len;
112
113 p = simple_get_bytes(p, end, &len, sizeof(len));
114 if (IS_ERR(p))
115 return p;
116 q = (const void *)((const char *)p + len);
117 if (unlikely(q > end || q < p))
118 return ERR_PTR(-EFAULT);
Trond Myklebust0f38b872008-06-10 18:31:01 -0400119 res->data = kmemdup(p, len, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (unlikely(res->data == NULL))
121 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 res->len = len;
123 return q;
124}
125
126static inline const void *
Kevin Coffman81d4a432010-03-17 13:02:51 -0400127get_key(const void *p, const void *end,
128 struct krb5_ctx *ctx, struct crypto_blkcipher **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct xdr_netobj key;
Herbert Xu378c6692006-08-22 20:33:54 +1000131 int alg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 p = simple_get_bytes(p, end, &alg, sizeof(alg));
134 if (IS_ERR(p))
135 goto out_err;
Kevin Coffman81d4a432010-03-17 13:02:51 -0400136
137 switch (alg) {
138 case ENCTYPE_DES_CBC_CRC:
139 case ENCTYPE_DES_CBC_MD4:
140 case ENCTYPE_DES_CBC_MD5:
141 /* Map all these key types to ENCTYPE_DES_CBC_RAW */
142 alg = ENCTYPE_DES_CBC_RAW;
143 break;
144 }
145
146 if (!supported_gss_krb5_enctype(alg)) {
147 printk(KERN_WARNING "gss_kerberos_mech: unsupported "
148 "encryption key algorithm %d\n", alg);
149 goto out_err;
150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 p = simple_get_netobj(p, end, &key);
152 if (IS_ERR(p))
153 goto out_err;
154
Kevin Coffman81d4a432010-03-17 13:02:51 -0400155 *res = crypto_alloc_blkcipher(ctx->gk5e->encrypt_name, 0,
156 CRYPTO_ALG_ASYNC);
Herbert Xu378c6692006-08-22 20:33:54 +1000157 if (IS_ERR(*res)) {
Kevin Coffman81d4a432010-03-17 13:02:51 -0400158 printk(KERN_WARNING "gss_kerberos_mech: unable to initialize "
159 "crypto algorithm %s\n", ctx->gk5e->encrypt_name);
Herbert Xu378c6692006-08-22 20:33:54 +1000160 *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 goto out_err_free_key;
J. Bruce Fields9e569042006-01-03 09:56:01 +0100162 }
Herbert Xu378c6692006-08-22 20:33:54 +1000163 if (crypto_blkcipher_setkey(*res, key.data, key.len)) {
Kevin Coffman81d4a432010-03-17 13:02:51 -0400164 printk(KERN_WARNING "gss_kerberos_mech: error setting key for "
165 "crypto algorithm %s\n", ctx->gk5e->encrypt_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 goto out_err_free_tfm;
J. Bruce Fields9e569042006-01-03 09:56:01 +0100167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 kfree(key.data);
170 return p;
171
172out_err_free_tfm:
Herbert Xu378c6692006-08-22 20:33:54 +1000173 crypto_free_blkcipher(*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174out_err_free_key:
175 kfree(key.data);
176 p = ERR_PTR(-EINVAL);
177out_err:
178 return p;
179}
180
181static int
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400182gss_import_v1_context(const void *p, const void *end, struct krb5_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
J. Bruce Fieldse678e062006-12-04 20:22:35 -0500184 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 p = simple_get_bytes(p, end, &ctx->initiate, sizeof(ctx->initiate));
187 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400188 goto out_err;
189
190 /* Old format supports only DES! Any other enctype uses new format */
Kevin Coffman1ac37192010-03-17 13:02:49 -0400191 ctx->enctype = ENCTYPE_DES_CBC_RAW;
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400192
Kevin Coffman81d4a432010-03-17 13:02:51 -0400193 ctx->gk5e = get_gss_krb5_enctype(ctx->enctype);
194 if (ctx->gk5e == NULL)
195 goto out_err;
196
J. Bruce Fields717757a2006-12-04 20:22:41 -0500197 /* The downcall format was designed before we completely understood
198 * the uses of the context fields; so it includes some stuff we
199 * just give some minimal sanity-checking, and some we ignore
200 * completely (like the next twenty bytes): */
201 if (unlikely(p + 20 > end || p + 20 < p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400202 goto out_err;
J. Bruce Fields717757a2006-12-04 20:22:41 -0500203 p += 20;
J. Bruce Fieldse678e062006-12-04 20:22:35 -0500204 p = simple_get_bytes(p, end, &tmp, sizeof(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400206 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500207 if (tmp != SGN_ALG_DES_MAC_MD5) {
208 p = ERR_PTR(-ENOSYS);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400209 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500210 }
J. Bruce Fieldsd922a842006-12-04 20:22:40 -0500211 p = simple_get_bytes(p, end, &tmp, sizeof(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400213 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500214 if (tmp != SEAL_ALG_DES) {
215 p = ERR_PTR(-ENOSYS);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400216 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 p = simple_get_bytes(p, end, &ctx->endtime, sizeof(ctx->endtime));
219 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400220 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 p = simple_get_bytes(p, end, &ctx->seq_send, sizeof(ctx->seq_send));
222 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400223 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 p = simple_get_netobj(p, end, &ctx->mech_used);
225 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400226 goto out_err;
Kevin Coffman81d4a432010-03-17 13:02:51 -0400227 p = get_key(p, end, ctx, &ctx->enc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (IS_ERR(p))
229 goto out_err_free_mech;
Kevin Coffman81d4a432010-03-17 13:02:51 -0400230 p = get_key(p, end, ctx, &ctx->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (IS_ERR(p))
232 goto out_err_free_key1;
233 if (p != end) {
234 p = ERR_PTR(-EFAULT);
235 goto out_err_free_key2;
236 }
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return 0;
239
240out_err_free_key2:
Herbert Xu378c6692006-08-22 20:33:54 +1000241 crypto_free_blkcipher(ctx->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242out_err_free_key1:
Herbert Xu378c6692006-08-22 20:33:54 +1000243 crypto_free_blkcipher(ctx->enc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244out_err_free_mech:
245 kfree(ctx->mech_used.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246out_err:
247 return PTR_ERR(p);
248}
249
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400250static int
251gss_import_sec_context_kerberos(const void *p, size_t len,
252 struct gss_ctx *ctx_id)
253{
254 const void *end = (const void *)((const char *)p + len);
255 struct krb5_ctx *ctx;
256 int ret;
257
258 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
259 if (ctx == NULL)
260 return -ENOMEM;
261
262 if (len == 85)
263 ret = gss_import_v1_context(p, end, ctx);
264 else
265 ret = -EINVAL;
266
267 if (ret == 0)
268 ctx_id->internal_ctx_id = ctx;
269 else
270 kfree(ctx);
271
272 dprintk("RPC: %s: returning %d\n", __func__, ret);
273 return ret;
274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276static void
277gss_delete_sec_context_kerberos(void *internal_ctx) {
278 struct krb5_ctx *kctx = internal_ctx;
279
Herbert Xu378c6692006-08-22 20:33:54 +1000280 crypto_free_blkcipher(kctx->seq);
281 crypto_free_blkcipher(kctx->enc);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700282 kfree(kctx->mech_used.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 kfree(kctx);
284}
285
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400286static const struct gss_api_ops gss_kerberos_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 .gss_import_sec_context = gss_import_sec_context_kerberos,
288 .gss_get_mic = gss_get_mic_kerberos,
289 .gss_verify_mic = gss_verify_mic_kerberos,
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400290 .gss_wrap = gss_wrap_kerberos,
291 .gss_unwrap = gss_unwrap_kerberos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 .gss_delete_sec_context = gss_delete_sec_context_kerberos,
293};
294
295static struct pf_desc gss_kerberos_pfs[] = {
296 [0] = {
297 .pseudoflavor = RPC_AUTH_GSS_KRB5,
298 .service = RPC_GSS_SVC_NONE,
299 .name = "krb5",
300 },
301 [1] = {
302 .pseudoflavor = RPC_AUTH_GSS_KRB5I,
303 .service = RPC_GSS_SVC_INTEGRITY,
304 .name = "krb5i",
305 },
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400306 [2] = {
307 .pseudoflavor = RPC_AUTH_GSS_KRB5P,
308 .service = RPC_GSS_SVC_PRIVACY,
309 .name = "krb5p",
310 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
313static struct gss_api_mech gss_kerberos_mech = {
314 .gm_name = "krb5",
315 .gm_owner = THIS_MODULE,
Usha Ketineniae4c40b2007-07-17 04:04:50 -0700316 .gm_oid = {9, (void *)"\x2a\x86\x48\x86\xf7\x12\x01\x02\x02"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 .gm_ops = &gss_kerberos_ops,
318 .gm_pf_num = ARRAY_SIZE(gss_kerberos_pfs),
319 .gm_pfs = gss_kerberos_pfs,
320};
321
322static int __init init_kerberos_module(void)
323{
324 int status;
325
326 status = gss_mech_register(&gss_kerberos_mech);
327 if (status)
328 printk("Failed to register kerberos gss mechanism!\n");
329 return status;
330}
331
332static void __exit cleanup_kerberos_module(void)
333{
334 gss_mech_unregister(&gss_kerberos_mech);
335}
336
337MODULE_LICENSE("GPL");
338module_init(init_kerberos_module);
339module_exit(cleanup_kerberos_module);