blob: 28db442a0034ad601d1a4cc2f2f82dc16a32a3da [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>
J. Bruce Fieldsb084f592011-05-31 12:24:58 -040046#include <linux/sunrpc/gss_krb5_enctypes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Jeff Laytonf895b252014-11-17 16:58:04 -050048#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049# define RPCDBG_FACILITY RPCDBG_AUTH
50#endif
51
Kevin Coffman47d84802010-03-17 13:02:54 -040052static struct gss_api_mech gss_kerberos_mech; /* forward declaration */
53
Kevin Coffman81d4a432010-03-17 13:02:51 -040054static const struct gss_krb5_enctype supported_gss_krb5_enctypes[] = {
55 /*
56 * DES (All DES enctypes are mapped to the same gss functionality)
57 */
58 {
59 .etype = ENCTYPE_DES_CBC_RAW,
60 .ctype = CKSUMTYPE_RSA_MD5,
61 .name = "des-cbc-crc",
62 .encrypt_name = "cbc(des)",
63 .cksum_name = "md5",
64 .encrypt = krb5_encrypt,
65 .decrypt = krb5_decrypt,
Kevin Coffman4891f2d2010-03-17 13:02:53 -040066 .mk_key = NULL,
Kevin Coffman81d4a432010-03-17 13:02:51 -040067 .signalg = SGN_ALG_DES_MAC_MD5,
68 .sealalg = SEAL_ALG_DES,
69 .keybytes = 7,
70 .keylength = 8,
71 .blocksize = 8,
Kevin Coffman5af46542010-03-17 13:03:05 -040072 .conflen = 8,
Kevin Coffman81d4a432010-03-17 13:02:51 -040073 .cksumlength = 8,
Kevin Coffmane1f6c072010-03-17 13:02:52 -040074 .keyed_cksum = 0,
Kevin Coffman81d4a432010-03-17 13:02:51 -040075 },
Kevin Coffman958142e2010-03-17 13:02:55 -040076 /*
Kevin Coffmanfffdaef2010-03-17 13:03:06 -040077 * RC4-HMAC
78 */
79 {
80 .etype = ENCTYPE_ARCFOUR_HMAC,
81 .ctype = CKSUMTYPE_HMAC_MD5_ARCFOUR,
82 .name = "rc4-hmac",
83 .encrypt_name = "ecb(arc4)",
84 .cksum_name = "hmac(md5)",
85 .encrypt = krb5_encrypt,
86 .decrypt = krb5_decrypt,
87 .mk_key = NULL,
88 .signalg = SGN_ALG_HMAC_MD5,
89 .sealalg = SEAL_ALG_MICROSOFT_RC4,
90 .keybytes = 16,
91 .keylength = 16,
92 .blocksize = 1,
93 .conflen = 8,
94 .cksumlength = 8,
95 .keyed_cksum = 1,
96 },
97 /*
Kevin Coffman958142e2010-03-17 13:02:55 -040098 * 3DES
99 */
100 {
101 .etype = ENCTYPE_DES3_CBC_RAW,
102 .ctype = CKSUMTYPE_HMAC_SHA1_DES3,
103 .name = "des3-hmac-sha1",
104 .encrypt_name = "cbc(des3_ede)",
105 .cksum_name = "hmac(sha1)",
106 .encrypt = krb5_encrypt,
107 .decrypt = krb5_decrypt,
108 .mk_key = gss_krb5_des3_make_key,
109 .signalg = SGN_ALG_HMAC_SHA1_DES3_KD,
110 .sealalg = SEAL_ALG_DES3KD,
111 .keybytes = 21,
112 .keylength = 24,
113 .blocksize = 8,
Kevin Coffman5af46542010-03-17 13:03:05 -0400114 .conflen = 8,
Kevin Coffman958142e2010-03-17 13:02:55 -0400115 .cksumlength = 20,
116 .keyed_cksum = 1,
117 },
Kevin Coffman934a95a2010-03-17 13:03:00 -0400118 /*
119 * AES128
120 */
121 {
122 .etype = ENCTYPE_AES128_CTS_HMAC_SHA1_96,
123 .ctype = CKSUMTYPE_HMAC_SHA1_96_AES128,
124 .name = "aes128-cts",
125 .encrypt_name = "cts(cbc(aes))",
126 .cksum_name = "hmac(sha1)",
127 .encrypt = krb5_encrypt,
128 .decrypt = krb5_decrypt,
129 .mk_key = gss_krb5_aes_make_key,
130 .encrypt_v2 = gss_krb5_aes_encrypt,
131 .decrypt_v2 = gss_krb5_aes_decrypt,
132 .signalg = -1,
133 .sealalg = -1,
134 .keybytes = 16,
135 .keylength = 16,
136 .blocksize = 16,
Kevin Coffman5af46542010-03-17 13:03:05 -0400137 .conflen = 16,
Kevin Coffman934a95a2010-03-17 13:03:00 -0400138 .cksumlength = 12,
139 .keyed_cksum = 1,
140 },
141 /*
142 * AES256
143 */
144 {
145 .etype = ENCTYPE_AES256_CTS_HMAC_SHA1_96,
146 .ctype = CKSUMTYPE_HMAC_SHA1_96_AES256,
147 .name = "aes256-cts",
148 .encrypt_name = "cts(cbc(aes))",
149 .cksum_name = "hmac(sha1)",
150 .encrypt = krb5_encrypt,
151 .decrypt = krb5_decrypt,
152 .mk_key = gss_krb5_aes_make_key,
153 .encrypt_v2 = gss_krb5_aes_encrypt,
154 .decrypt_v2 = gss_krb5_aes_decrypt,
155 .signalg = -1,
156 .sealalg = -1,
157 .keybytes = 32,
158 .keylength = 32,
159 .blocksize = 16,
Kevin Coffman5af46542010-03-17 13:03:05 -0400160 .conflen = 16,
Kevin Coffman934a95a2010-03-17 13:03:00 -0400161 .cksumlength = 12,
162 .keyed_cksum = 1,
163 },
Kevin Coffman81d4a432010-03-17 13:02:51 -0400164};
165
166static const int num_supported_enctypes =
167 ARRAY_SIZE(supported_gss_krb5_enctypes);
168
169static int
170supported_gss_krb5_enctype(int etype)
171{
172 int i;
173 for (i = 0; i < num_supported_enctypes; i++)
174 if (supported_gss_krb5_enctypes[i].etype == etype)
175 return 1;
176 return 0;
177}
178
179static const struct gss_krb5_enctype *
180get_gss_krb5_enctype(int etype)
181{
182 int i;
183 for (i = 0; i < num_supported_enctypes; i++)
184 if (supported_gss_krb5_enctypes[i].etype == etype)
185 return &supported_gss_krb5_enctypes[i];
186 return NULL;
187}
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189static const void *
190simple_get_bytes(const void *p, const void *end, void *res, int len)
191{
192 const void *q = (const void *)((const char *)p + len);
193 if (unlikely(q > end || q < p))
194 return ERR_PTR(-EFAULT);
195 memcpy(res, p, len);
196 return q;
197}
198
199static const void *
200simple_get_netobj(const void *p, const void *end, struct xdr_netobj *res)
201{
202 const void *q;
203 unsigned int len;
204
205 p = simple_get_bytes(p, end, &len, sizeof(len));
206 if (IS_ERR(p))
207 return p;
208 q = (const void *)((const char *)p + len);
209 if (unlikely(q > end || q < p))
210 return ERR_PTR(-EFAULT);
Trond Myklebust0f38b872008-06-10 18:31:01 -0400211 res->data = kmemdup(p, len, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (unlikely(res->data == NULL))
213 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 res->len = len;
215 return q;
216}
217
218static inline const void *
Kevin Coffman81d4a432010-03-17 13:02:51 -0400219get_key(const void *p, const void *end,
220 struct krb5_ctx *ctx, struct crypto_blkcipher **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 struct xdr_netobj key;
Herbert Xu378c6692006-08-22 20:33:54 +1000223 int alg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 p = simple_get_bytes(p, end, &alg, sizeof(alg));
226 if (IS_ERR(p))
227 goto out_err;
Kevin Coffman81d4a432010-03-17 13:02:51 -0400228
229 switch (alg) {
230 case ENCTYPE_DES_CBC_CRC:
231 case ENCTYPE_DES_CBC_MD4:
232 case ENCTYPE_DES_CBC_MD5:
233 /* Map all these key types to ENCTYPE_DES_CBC_RAW */
234 alg = ENCTYPE_DES_CBC_RAW;
235 break;
236 }
237
238 if (!supported_gss_krb5_enctype(alg)) {
239 printk(KERN_WARNING "gss_kerberos_mech: unsupported "
240 "encryption key algorithm %d\n", alg);
Bian Naimengce8477e2010-09-12 19:55:25 -0400241 p = ERR_PTR(-EINVAL);
Kevin Coffman81d4a432010-03-17 13:02:51 -0400242 goto out_err;
243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 p = simple_get_netobj(p, end, &key);
245 if (IS_ERR(p))
246 goto out_err;
247
Kevin Coffman81d4a432010-03-17 13:02:51 -0400248 *res = crypto_alloc_blkcipher(ctx->gk5e->encrypt_name, 0,
249 CRYPTO_ALG_ASYNC);
Herbert Xu378c6692006-08-22 20:33:54 +1000250 if (IS_ERR(*res)) {
Kevin Coffman81d4a432010-03-17 13:02:51 -0400251 printk(KERN_WARNING "gss_kerberos_mech: unable to initialize "
252 "crypto algorithm %s\n", ctx->gk5e->encrypt_name);
Herbert Xu378c6692006-08-22 20:33:54 +1000253 *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 goto out_err_free_key;
J. Bruce Fields9e569042006-01-03 09:56:01 +0100255 }
Herbert Xu378c6692006-08-22 20:33:54 +1000256 if (crypto_blkcipher_setkey(*res, key.data, key.len)) {
Kevin Coffman81d4a432010-03-17 13:02:51 -0400257 printk(KERN_WARNING "gss_kerberos_mech: error setting key for "
258 "crypto algorithm %s\n", ctx->gk5e->encrypt_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 goto out_err_free_tfm;
J. Bruce Fields9e569042006-01-03 09:56:01 +0100260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 kfree(key.data);
263 return p;
264
265out_err_free_tfm:
Herbert Xu378c6692006-08-22 20:33:54 +1000266 crypto_free_blkcipher(*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267out_err_free_key:
268 kfree(key.data);
269 p = ERR_PTR(-EINVAL);
270out_err:
271 return p;
272}
273
274static int
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400275gss_import_v1_context(const void *p, const void *end, struct krb5_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
J. Bruce Fieldse678e062006-12-04 20:22:35 -0500277 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 p = simple_get_bytes(p, end, &ctx->initiate, sizeof(ctx->initiate));
280 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400281 goto out_err;
282
283 /* Old format supports only DES! Any other enctype uses new format */
Kevin Coffman1ac37192010-03-17 13:02:49 -0400284 ctx->enctype = ENCTYPE_DES_CBC_RAW;
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400285
Kevin Coffman81d4a432010-03-17 13:02:51 -0400286 ctx->gk5e = get_gss_krb5_enctype(ctx->enctype);
Bian Naimengce8477e2010-09-12 19:55:25 -0400287 if (ctx->gk5e == NULL) {
288 p = ERR_PTR(-EINVAL);
Kevin Coffman81d4a432010-03-17 13:02:51 -0400289 goto out_err;
Bian Naimengce8477e2010-09-12 19:55:25 -0400290 }
Kevin Coffman81d4a432010-03-17 13:02:51 -0400291
J. Bruce Fields717757a2006-12-04 20:22:41 -0500292 /* The downcall format was designed before we completely understood
293 * the uses of the context fields; so it includes some stuff we
294 * just give some minimal sanity-checking, and some we ignore
295 * completely (like the next twenty bytes): */
Bian Naimengce8477e2010-09-12 19:55:25 -0400296 if (unlikely(p + 20 > end || p + 20 < p)) {
297 p = ERR_PTR(-EFAULT);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400298 goto out_err;
Bian Naimengce8477e2010-09-12 19:55:25 -0400299 }
J. Bruce Fields717757a2006-12-04 20:22:41 -0500300 p += 20;
J. Bruce Fieldse678e062006-12-04 20:22:35 -0500301 p = simple_get_bytes(p, end, &tmp, sizeof(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400303 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500304 if (tmp != SGN_ALG_DES_MAC_MD5) {
305 p = ERR_PTR(-ENOSYS);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400306 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500307 }
J. Bruce Fieldsd922a842006-12-04 20:22:40 -0500308 p = simple_get_bytes(p, end, &tmp, sizeof(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400310 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500311 if (tmp != SEAL_ALG_DES) {
312 p = ERR_PTR(-ENOSYS);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400313 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 p = simple_get_bytes(p, end, &ctx->endtime, sizeof(ctx->endtime));
316 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400317 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 p = simple_get_bytes(p, end, &ctx->seq_send, sizeof(ctx->seq_send));
319 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400320 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 p = simple_get_netobj(p, end, &ctx->mech_used);
322 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400323 goto out_err;
Kevin Coffman81d4a432010-03-17 13:02:51 -0400324 p = get_key(p, end, ctx, &ctx->enc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (IS_ERR(p))
326 goto out_err_free_mech;
Kevin Coffman81d4a432010-03-17 13:02:51 -0400327 p = get_key(p, end, ctx, &ctx->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (IS_ERR(p))
329 goto out_err_free_key1;
330 if (p != end) {
331 p = ERR_PTR(-EFAULT);
332 goto out_err_free_key2;
333 }
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
336
337out_err_free_key2:
Herbert Xu378c6692006-08-22 20:33:54 +1000338 crypto_free_blkcipher(ctx->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339out_err_free_key1:
Herbert Xu378c6692006-08-22 20:33:54 +1000340 crypto_free_blkcipher(ctx->enc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341out_err_free_mech:
342 kfree(ctx->mech_used.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343out_err:
344 return PTR_ERR(p);
345}
346
Trond Myklebust09acfea2012-03-11 15:22:54 -0400347static struct crypto_blkcipher *
Kevin Coffman934a95a2010-03-17 13:03:00 -0400348context_v2_alloc_cipher(struct krb5_ctx *ctx, const char *cname, u8 *key)
Kevin Coffman47d84802010-03-17 13:02:54 -0400349{
350 struct crypto_blkcipher *cp;
351
Kevin Coffman934a95a2010-03-17 13:03:00 -0400352 cp = crypto_alloc_blkcipher(cname, 0, CRYPTO_ALG_ASYNC);
Kevin Coffman47d84802010-03-17 13:02:54 -0400353 if (IS_ERR(cp)) {
354 dprintk("gss_kerberos_mech: unable to initialize "
Kevin Coffman934a95a2010-03-17 13:03:00 -0400355 "crypto algorithm %s\n", cname);
Kevin Coffman47d84802010-03-17 13:02:54 -0400356 return NULL;
357 }
358 if (crypto_blkcipher_setkey(cp, key, ctx->gk5e->keylength)) {
359 dprintk("gss_kerberos_mech: error setting key for "
Kevin Coffman934a95a2010-03-17 13:03:00 -0400360 "crypto algorithm %s\n", cname);
Kevin Coffman47d84802010-03-17 13:02:54 -0400361 crypto_free_blkcipher(cp);
362 return NULL;
363 }
364 return cp;
365}
366
367static inline void
368set_cdata(u8 cdata[GSS_KRB5_K5CLENGTH], u32 usage, u8 seed)
369{
370 cdata[0] = (usage>>24)&0xff;
371 cdata[1] = (usage>>16)&0xff;
372 cdata[2] = (usage>>8)&0xff;
373 cdata[3] = usage&0xff;
374 cdata[4] = seed;
375}
376
377static int
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400378context_derive_keys_des3(struct krb5_ctx *ctx, gfp_t gfp_mask)
Kevin Coffman47d84802010-03-17 13:02:54 -0400379{
380 struct xdr_netobj c, keyin, keyout;
381 u8 cdata[GSS_KRB5_K5CLENGTH];
382 u32 err;
383
384 c.len = GSS_KRB5_K5CLENGTH;
385 c.data = cdata;
386
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400387 keyin.data = ctx->Ksess;
388 keyin.len = ctx->gk5e->keylength;
389 keyout.len = ctx->gk5e->keylength;
Kevin Coffman47d84802010-03-17 13:02:54 -0400390
391 /* seq uses the raw key */
Kevin Coffman934a95a2010-03-17 13:03:00 -0400392 ctx->seq = context_v2_alloc_cipher(ctx, ctx->gk5e->encrypt_name,
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400393 ctx->Ksess);
Kevin Coffman47d84802010-03-17 13:02:54 -0400394 if (ctx->seq == NULL)
395 goto out_err;
396
Kevin Coffman934a95a2010-03-17 13:03:00 -0400397 ctx->enc = context_v2_alloc_cipher(ctx, ctx->gk5e->encrypt_name,
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400398 ctx->Ksess);
Kevin Coffman47d84802010-03-17 13:02:54 -0400399 if (ctx->enc == NULL)
400 goto out_free_seq;
401
402 /* derive cksum */
403 set_cdata(cdata, KG_USAGE_SIGN, KEY_USAGE_SEED_CHECKSUM);
404 keyout.data = ctx->cksum;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400405 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400406 if (err) {
407 dprintk("%s: Error %d deriving cksum key\n",
408 __func__, err);
409 goto out_free_enc;
410 }
411
412 return 0;
413
414out_free_enc:
415 crypto_free_blkcipher(ctx->enc);
416out_free_seq:
417 crypto_free_blkcipher(ctx->seq);
418out_err:
419 return -EINVAL;
420}
421
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400422/*
423 * Note that RC4 depends on deriving keys using the sequence
424 * number or the checksum of a token. Therefore, the final keys
425 * cannot be calculated until the token is being constructed!
426 */
427static int
428context_derive_keys_rc4(struct krb5_ctx *ctx)
429{
430 struct crypto_hash *hmac;
Trond Myklebust08676592011-04-06 10:13:32 -0700431 char sigkeyconstant[] = "signaturekey";
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400432 int slen = strlen(sigkeyconstant) + 1; /* include null terminator */
433 struct hash_desc desc;
434 struct scatterlist sg[1];
435 int err;
436
437 dprintk("RPC: %s: entered\n", __func__);
438 /*
439 * derive cksum (aka Ksign) key
440 */
441 hmac = crypto_alloc_hash(ctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
442 if (IS_ERR(hmac)) {
443 dprintk("%s: error %ld allocating hash '%s'\n",
444 __func__, PTR_ERR(hmac), ctx->gk5e->cksum_name);
445 err = PTR_ERR(hmac);
446 goto out_err;
447 }
448
449 err = crypto_hash_setkey(hmac, ctx->Ksess, ctx->gk5e->keylength);
450 if (err)
451 goto out_err_free_hmac;
452
453 sg_init_table(sg, 1);
454 sg_set_buf(sg, sigkeyconstant, slen);
455
456 desc.tfm = hmac;
457 desc.flags = 0;
458
459 err = crypto_hash_init(&desc);
460 if (err)
461 goto out_err_free_hmac;
462
463 err = crypto_hash_digest(&desc, sg, slen, ctx->cksum);
464 if (err)
465 goto out_err_free_hmac;
466 /*
467 * allocate hash, and blkciphers for data and seqnum encryption
468 */
469 ctx->enc = crypto_alloc_blkcipher(ctx->gk5e->encrypt_name, 0,
470 CRYPTO_ALG_ASYNC);
471 if (IS_ERR(ctx->enc)) {
472 err = PTR_ERR(ctx->enc);
473 goto out_err_free_hmac;
474 }
475
476 ctx->seq = crypto_alloc_blkcipher(ctx->gk5e->encrypt_name, 0,
477 CRYPTO_ALG_ASYNC);
478 if (IS_ERR(ctx->seq)) {
479 crypto_free_blkcipher(ctx->enc);
480 err = PTR_ERR(ctx->seq);
481 goto out_err_free_hmac;
482 }
483
484 dprintk("RPC: %s: returning success\n", __func__);
485
486 err = 0;
487
488out_err_free_hmac:
489 crypto_free_hash(hmac);
490out_err:
491 dprintk("RPC: %s: returning %d\n", __func__, err);
492 return err;
493}
494
Kevin Coffman47d84802010-03-17 13:02:54 -0400495static int
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400496context_derive_keys_new(struct krb5_ctx *ctx, gfp_t gfp_mask)
Kevin Coffman47d84802010-03-17 13:02:54 -0400497{
498 struct xdr_netobj c, keyin, keyout;
499 u8 cdata[GSS_KRB5_K5CLENGTH];
500 u32 err;
501
502 c.len = GSS_KRB5_K5CLENGTH;
503 c.data = cdata;
504
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400505 keyin.data = ctx->Ksess;
506 keyin.len = ctx->gk5e->keylength;
507 keyout.len = ctx->gk5e->keylength;
Kevin Coffman47d84802010-03-17 13:02:54 -0400508
509 /* initiator seal encryption */
510 set_cdata(cdata, KG_USAGE_INITIATOR_SEAL, KEY_USAGE_SEED_ENCRYPTION);
511 keyout.data = ctx->initiator_seal;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400512 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400513 if (err) {
514 dprintk("%s: Error %d deriving initiator_seal key\n",
515 __func__, err);
516 goto out_err;
517 }
Kevin Coffman934a95a2010-03-17 13:03:00 -0400518 ctx->initiator_enc = context_v2_alloc_cipher(ctx,
519 ctx->gk5e->encrypt_name,
520 ctx->initiator_seal);
Kevin Coffman47d84802010-03-17 13:02:54 -0400521 if (ctx->initiator_enc == NULL)
522 goto out_err;
523
524 /* acceptor seal encryption */
525 set_cdata(cdata, KG_USAGE_ACCEPTOR_SEAL, KEY_USAGE_SEED_ENCRYPTION);
526 keyout.data = ctx->acceptor_seal;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400527 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400528 if (err) {
529 dprintk("%s: Error %d deriving acceptor_seal key\n",
530 __func__, err);
531 goto out_free_initiator_enc;
532 }
Kevin Coffman934a95a2010-03-17 13:03:00 -0400533 ctx->acceptor_enc = context_v2_alloc_cipher(ctx,
534 ctx->gk5e->encrypt_name,
535 ctx->acceptor_seal);
Kevin Coffman47d84802010-03-17 13:02:54 -0400536 if (ctx->acceptor_enc == NULL)
537 goto out_free_initiator_enc;
538
539 /* initiator sign checksum */
540 set_cdata(cdata, KG_USAGE_INITIATOR_SIGN, KEY_USAGE_SEED_CHECKSUM);
541 keyout.data = ctx->initiator_sign;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400542 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400543 if (err) {
544 dprintk("%s: Error %d deriving initiator_sign key\n",
545 __func__, err);
546 goto out_free_acceptor_enc;
547 }
548
549 /* acceptor sign checksum */
550 set_cdata(cdata, KG_USAGE_ACCEPTOR_SIGN, KEY_USAGE_SEED_CHECKSUM);
551 keyout.data = ctx->acceptor_sign;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400552 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400553 if (err) {
554 dprintk("%s: Error %d deriving acceptor_sign key\n",
555 __func__, err);
556 goto out_free_acceptor_enc;
557 }
558
559 /* initiator seal integrity */
560 set_cdata(cdata, KG_USAGE_INITIATOR_SEAL, KEY_USAGE_SEED_INTEGRITY);
561 keyout.data = ctx->initiator_integ;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400562 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400563 if (err) {
564 dprintk("%s: Error %d deriving initiator_integ key\n",
565 __func__, err);
566 goto out_free_acceptor_enc;
567 }
568
569 /* acceptor seal integrity */
570 set_cdata(cdata, KG_USAGE_ACCEPTOR_SEAL, KEY_USAGE_SEED_INTEGRITY);
571 keyout.data = ctx->acceptor_integ;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400572 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400573 if (err) {
574 dprintk("%s: Error %d deriving acceptor_integ key\n",
575 __func__, err);
576 goto out_free_acceptor_enc;
577 }
578
Kevin Coffman934a95a2010-03-17 13:03:00 -0400579 switch (ctx->enctype) {
580 case ENCTYPE_AES128_CTS_HMAC_SHA1_96:
581 case ENCTYPE_AES256_CTS_HMAC_SHA1_96:
582 ctx->initiator_enc_aux =
583 context_v2_alloc_cipher(ctx, "cbc(aes)",
584 ctx->initiator_seal);
585 if (ctx->initiator_enc_aux == NULL)
586 goto out_free_acceptor_enc;
587 ctx->acceptor_enc_aux =
588 context_v2_alloc_cipher(ctx, "cbc(aes)",
589 ctx->acceptor_seal);
590 if (ctx->acceptor_enc_aux == NULL) {
591 crypto_free_blkcipher(ctx->initiator_enc_aux);
592 goto out_free_acceptor_enc;
593 }
594 }
595
Kevin Coffman47d84802010-03-17 13:02:54 -0400596 return 0;
597
598out_free_acceptor_enc:
599 crypto_free_blkcipher(ctx->acceptor_enc);
600out_free_initiator_enc:
601 crypto_free_blkcipher(ctx->initiator_enc);
602out_err:
603 return -EINVAL;
604}
605
606static int
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400607gss_import_v2_context(const void *p, const void *end, struct krb5_ctx *ctx,
608 gfp_t gfp_mask)
Kevin Coffman47d84802010-03-17 13:02:54 -0400609{
Kevin Coffman47d84802010-03-17 13:02:54 -0400610 int keylen;
611
612 p = simple_get_bytes(p, end, &ctx->flags, sizeof(ctx->flags));
613 if (IS_ERR(p))
614 goto out_err;
615 ctx->initiate = ctx->flags & KRB5_CTX_FLAG_INITIATOR;
616
617 p = simple_get_bytes(p, end, &ctx->endtime, sizeof(ctx->endtime));
618 if (IS_ERR(p))
619 goto out_err;
620 p = simple_get_bytes(p, end, &ctx->seq_send64, sizeof(ctx->seq_send64));
621 if (IS_ERR(p))
622 goto out_err;
623 /* set seq_send for use by "older" enctypes */
624 ctx->seq_send = ctx->seq_send64;
625 if (ctx->seq_send64 != ctx->seq_send) {
626 dprintk("%s: seq_send64 %lx, seq_send %x overflow?\n", __func__,
Eric Dumazet95c96172012-04-15 05:58:06 +0000627 (unsigned long)ctx->seq_send64, ctx->seq_send);
Bian Naimengce8477e2010-09-12 19:55:25 -0400628 p = ERR_PTR(-EINVAL);
Kevin Coffman47d84802010-03-17 13:02:54 -0400629 goto out_err;
630 }
631 p = simple_get_bytes(p, end, &ctx->enctype, sizeof(ctx->enctype));
632 if (IS_ERR(p))
633 goto out_err;
Kevin Coffman958142e2010-03-17 13:02:55 -0400634 /* Map ENCTYPE_DES3_CBC_SHA1 to ENCTYPE_DES3_CBC_RAW */
635 if (ctx->enctype == ENCTYPE_DES3_CBC_SHA1)
636 ctx->enctype = ENCTYPE_DES3_CBC_RAW;
Kevin Coffman47d84802010-03-17 13:02:54 -0400637 ctx->gk5e = get_gss_krb5_enctype(ctx->enctype);
638 if (ctx->gk5e == NULL) {
639 dprintk("gss_kerberos_mech: unsupported krb5 enctype %u\n",
640 ctx->enctype);
641 p = ERR_PTR(-EINVAL);
642 goto out_err;
643 }
644 keylen = ctx->gk5e->keylength;
645
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400646 p = simple_get_bytes(p, end, ctx->Ksess, keylen);
Kevin Coffman47d84802010-03-17 13:02:54 -0400647 if (IS_ERR(p))
648 goto out_err;
649
650 if (p != end) {
651 p = ERR_PTR(-EINVAL);
652 goto out_err;
653 }
654
655 ctx->mech_used.data = kmemdup(gss_kerberos_mech.gm_oid.data,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400656 gss_kerberos_mech.gm_oid.len, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400657 if (unlikely(ctx->mech_used.data == NULL)) {
658 p = ERR_PTR(-ENOMEM);
659 goto out_err;
660 }
661 ctx->mech_used.len = gss_kerberos_mech.gm_oid.len;
662
663 switch (ctx->enctype) {
664 case ENCTYPE_DES3_CBC_RAW:
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400665 return context_derive_keys_des3(ctx, gfp_mask);
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400666 case ENCTYPE_ARCFOUR_HMAC:
667 return context_derive_keys_rc4(ctx);
Kevin Coffman47d84802010-03-17 13:02:54 -0400668 case ENCTYPE_AES128_CTS_HMAC_SHA1_96:
669 case ENCTYPE_AES256_CTS_HMAC_SHA1_96:
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400670 return context_derive_keys_new(ctx, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400671 default:
672 return -EINVAL;
673 }
674
675out_err:
676 return PTR_ERR(p);
677}
678
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400679static int
680gss_import_sec_context_kerberos(const void *p, size_t len,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400681 struct gss_ctx *ctx_id,
Simo Sorce400f26b2012-05-25 18:09:53 -0400682 time_t *endtime,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400683 gfp_t gfp_mask)
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400684{
685 const void *end = (const void *)((const char *)p + len);
686 struct krb5_ctx *ctx;
687 int ret;
688
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400689 ctx = kzalloc(sizeof(*ctx), gfp_mask);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400690 if (ctx == NULL)
691 return -ENOMEM;
692
693 if (len == 85)
694 ret = gss_import_v1_context(p, end, ctx);
695 else
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400696 ret = gss_import_v2_context(p, end, ctx, gfp_mask);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400697
Simo Sorce400f26b2012-05-25 18:09:53 -0400698 if (ret == 0) {
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400699 ctx_id->internal_ctx_id = ctx;
Simo Sorce400f26b2012-05-25 18:09:53 -0400700 if (endtime)
701 *endtime = ctx->endtime;
702 } else
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400703 kfree(ctx);
704
705 dprintk("RPC: %s: returning %d\n", __func__, ret);
706 return ret;
707}
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709static void
710gss_delete_sec_context_kerberos(void *internal_ctx) {
711 struct krb5_ctx *kctx = internal_ctx;
712
Herbert Xu378c6692006-08-22 20:33:54 +1000713 crypto_free_blkcipher(kctx->seq);
714 crypto_free_blkcipher(kctx->enc);
Kevin Coffman47d84802010-03-17 13:02:54 -0400715 crypto_free_blkcipher(kctx->acceptor_enc);
716 crypto_free_blkcipher(kctx->initiator_enc);
Kevin Coffman934a95a2010-03-17 13:03:00 -0400717 crypto_free_blkcipher(kctx->acceptor_enc_aux);
718 crypto_free_blkcipher(kctx->initiator_enc_aux);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700719 kfree(kctx->mech_used.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 kfree(kctx);
721}
722
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400723static const struct gss_api_ops gss_kerberos_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 .gss_import_sec_context = gss_import_sec_context_kerberos,
725 .gss_get_mic = gss_get_mic_kerberos,
726 .gss_verify_mic = gss_verify_mic_kerberos,
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400727 .gss_wrap = gss_wrap_kerberos,
728 .gss_unwrap = gss_unwrap_kerberos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 .gss_delete_sec_context = gss_delete_sec_context_kerberos,
730};
731
732static struct pf_desc gss_kerberos_pfs[] = {
733 [0] = {
734 .pseudoflavor = RPC_AUTH_GSS_KRB5,
Chuck Lever83523d02013-03-16 15:55:01 -0400735 .qop = GSS_C_QOP_DEFAULT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 .service = RPC_GSS_SVC_NONE,
737 .name = "krb5",
738 },
739 [1] = {
740 .pseudoflavor = RPC_AUTH_GSS_KRB5I,
Chuck Lever83523d02013-03-16 15:55:01 -0400741 .qop = GSS_C_QOP_DEFAULT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 .service = RPC_GSS_SVC_INTEGRITY,
743 .name = "krb5i",
744 },
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400745 [2] = {
746 .pseudoflavor = RPC_AUTH_GSS_KRB5P,
Chuck Lever83523d02013-03-16 15:55:01 -0400747 .qop = GSS_C_QOP_DEFAULT,
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400748 .service = RPC_GSS_SVC_PRIVACY,
749 .name = "krb5p",
750 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751};
752
J. Bruce Fields058c5c92011-06-22 10:50:08 -0400753MODULE_ALIAS("rpc-auth-gss-krb5");
754MODULE_ALIAS("rpc-auth-gss-krb5i");
755MODULE_ALIAS("rpc-auth-gss-krb5p");
756MODULE_ALIAS("rpc-auth-gss-390003");
757MODULE_ALIAS("rpc-auth-gss-390004");
758MODULE_ALIAS("rpc-auth-gss-390005");
Chuck Leverf7832882013-03-16 15:54:52 -0400759MODULE_ALIAS("rpc-auth-gss-1.2.840.113554.1.2.2");
J. Bruce Fields058c5c92011-06-22 10:50:08 -0400760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761static struct gss_api_mech gss_kerberos_mech = {
762 .gm_name = "krb5",
763 .gm_owner = THIS_MODULE,
Chuck Leverfb15b262013-03-16 15:54:34 -0400764 .gm_oid = { 9, "\x2a\x86\x48\x86\xf7\x12\x01\x02\x02" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 .gm_ops = &gss_kerberos_ops,
766 .gm_pf_num = ARRAY_SIZE(gss_kerberos_pfs),
767 .gm_pfs = gss_kerberos_pfs,
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400768 .gm_upcall_enctypes = KRB5_SUPPORTED_ENCTYPES,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769};
770
771static int __init init_kerberos_module(void)
772{
773 int status;
774
775 status = gss_mech_register(&gss_kerberos_mech);
776 if (status)
777 printk("Failed to register kerberos gss mechanism!\n");
778 return status;
779}
780
781static void __exit cleanup_kerberos_module(void)
782{
783 gss_mech_unregister(&gss_kerberos_mech);
784}
785
786MODULE_LICENSE("GPL");
787module_init(init_kerberos_module);
788module_exit(cleanup_kerberos_module);