blob: 7bb2514aadd9d888469eef0687097e2f5c2ea1e2 [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 Xu3b5cf202016-01-24 21:17:59 +080037#include <crypto/hash.h>
38#include <crypto/skcipher.h>
Herbert Xu378c6692006-08-22 20:33:54 +100039#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/module.h>
41#include <linux/init.h>
42#include <linux/types.h>
43#include <linux/slab.h>
44#include <linux/sunrpc/auth.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/sunrpc/gss_krb5.h>
46#include <linux/sunrpc/xdr.h>
J. Bruce Fieldsb084f592011-05-31 12:24:58 -040047#include <linux/sunrpc/gss_krb5_enctypes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Jeff Laytonf895b252014-11-17 16:58:04 -050049#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050# define RPCDBG_FACILITY RPCDBG_AUTH
51#endif
52
Kevin Coffman47d84802010-03-17 13:02:54 -040053static struct gss_api_mech gss_kerberos_mech; /* forward declaration */
54
Kevin Coffman81d4a432010-03-17 13:02:51 -040055static const struct gss_krb5_enctype supported_gss_krb5_enctypes[] = {
56 /*
57 * DES (All DES enctypes are mapped to the same gss functionality)
58 */
59 {
60 .etype = ENCTYPE_DES_CBC_RAW,
61 .ctype = CKSUMTYPE_RSA_MD5,
62 .name = "des-cbc-crc",
63 .encrypt_name = "cbc(des)",
64 .cksum_name = "md5",
65 .encrypt = krb5_encrypt,
66 .decrypt = krb5_decrypt,
Kevin Coffman4891f2d2010-03-17 13:02:53 -040067 .mk_key = NULL,
Kevin Coffman81d4a432010-03-17 13:02:51 -040068 .signalg = SGN_ALG_DES_MAC_MD5,
69 .sealalg = SEAL_ALG_DES,
70 .keybytes = 7,
71 .keylength = 8,
72 .blocksize = 8,
Kevin Coffman5af46542010-03-17 13:03:05 -040073 .conflen = 8,
Kevin Coffman81d4a432010-03-17 13:02:51 -040074 .cksumlength = 8,
Kevin Coffmane1f6c072010-03-17 13:02:52 -040075 .keyed_cksum = 0,
Kevin Coffman81d4a432010-03-17 13:02:51 -040076 },
Kevin Coffman958142e2010-03-17 13:02:55 -040077 /*
Kevin Coffmanfffdaef2010-03-17 13:03:06 -040078 * RC4-HMAC
79 */
80 {
81 .etype = ENCTYPE_ARCFOUR_HMAC,
82 .ctype = CKSUMTYPE_HMAC_MD5_ARCFOUR,
83 .name = "rc4-hmac",
84 .encrypt_name = "ecb(arc4)",
85 .cksum_name = "hmac(md5)",
86 .encrypt = krb5_encrypt,
87 .decrypt = krb5_decrypt,
88 .mk_key = NULL,
89 .signalg = SGN_ALG_HMAC_MD5,
90 .sealalg = SEAL_ALG_MICROSOFT_RC4,
91 .keybytes = 16,
92 .keylength = 16,
93 .blocksize = 1,
94 .conflen = 8,
95 .cksumlength = 8,
96 .keyed_cksum = 1,
97 },
98 /*
Kevin Coffman958142e2010-03-17 13:02:55 -040099 * 3DES
100 */
101 {
102 .etype = ENCTYPE_DES3_CBC_RAW,
103 .ctype = CKSUMTYPE_HMAC_SHA1_DES3,
104 .name = "des3-hmac-sha1",
105 .encrypt_name = "cbc(des3_ede)",
106 .cksum_name = "hmac(sha1)",
107 .encrypt = krb5_encrypt,
108 .decrypt = krb5_decrypt,
109 .mk_key = gss_krb5_des3_make_key,
110 .signalg = SGN_ALG_HMAC_SHA1_DES3_KD,
111 .sealalg = SEAL_ALG_DES3KD,
112 .keybytes = 21,
113 .keylength = 24,
114 .blocksize = 8,
Kevin Coffman5af46542010-03-17 13:03:05 -0400115 .conflen = 8,
Kevin Coffman958142e2010-03-17 13:02:55 -0400116 .cksumlength = 20,
117 .keyed_cksum = 1,
118 },
Kevin Coffman934a95a2010-03-17 13:03:00 -0400119 /*
120 * AES128
121 */
122 {
123 .etype = ENCTYPE_AES128_CTS_HMAC_SHA1_96,
124 .ctype = CKSUMTYPE_HMAC_SHA1_96_AES128,
125 .name = "aes128-cts",
126 .encrypt_name = "cts(cbc(aes))",
127 .cksum_name = "hmac(sha1)",
128 .encrypt = krb5_encrypt,
129 .decrypt = krb5_decrypt,
130 .mk_key = gss_krb5_aes_make_key,
131 .encrypt_v2 = gss_krb5_aes_encrypt,
132 .decrypt_v2 = gss_krb5_aes_decrypt,
133 .signalg = -1,
134 .sealalg = -1,
135 .keybytes = 16,
136 .keylength = 16,
137 .blocksize = 16,
Kevin Coffman5af46542010-03-17 13:03:05 -0400138 .conflen = 16,
Kevin Coffman934a95a2010-03-17 13:03:00 -0400139 .cksumlength = 12,
140 .keyed_cksum = 1,
141 },
142 /*
143 * AES256
144 */
145 {
146 .etype = ENCTYPE_AES256_CTS_HMAC_SHA1_96,
147 .ctype = CKSUMTYPE_HMAC_SHA1_96_AES256,
148 .name = "aes256-cts",
149 .encrypt_name = "cts(cbc(aes))",
150 .cksum_name = "hmac(sha1)",
151 .encrypt = krb5_encrypt,
152 .decrypt = krb5_decrypt,
153 .mk_key = gss_krb5_aes_make_key,
154 .encrypt_v2 = gss_krb5_aes_encrypt,
155 .decrypt_v2 = gss_krb5_aes_decrypt,
156 .signalg = -1,
157 .sealalg = -1,
158 .keybytes = 32,
159 .keylength = 32,
160 .blocksize = 16,
Kevin Coffman5af46542010-03-17 13:03:05 -0400161 .conflen = 16,
Kevin Coffman934a95a2010-03-17 13:03:00 -0400162 .cksumlength = 12,
163 .keyed_cksum = 1,
164 },
Kevin Coffman81d4a432010-03-17 13:02:51 -0400165};
166
167static const int num_supported_enctypes =
168 ARRAY_SIZE(supported_gss_krb5_enctypes);
169
170static int
171supported_gss_krb5_enctype(int etype)
172{
173 int i;
174 for (i = 0; i < num_supported_enctypes; i++)
175 if (supported_gss_krb5_enctypes[i].etype == etype)
176 return 1;
177 return 0;
178}
179
180static const struct gss_krb5_enctype *
181get_gss_krb5_enctype(int etype)
182{
183 int i;
184 for (i = 0; i < num_supported_enctypes; i++)
185 if (supported_gss_krb5_enctypes[i].etype == etype)
186 return &supported_gss_krb5_enctypes[i];
187 return NULL;
188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static const void *
191simple_get_bytes(const void *p, const void *end, void *res, int len)
192{
193 const void *q = (const void *)((const char *)p + len);
194 if (unlikely(q > end || q < p))
195 return ERR_PTR(-EFAULT);
196 memcpy(res, p, len);
197 return q;
198}
199
200static const void *
201simple_get_netobj(const void *p, const void *end, struct xdr_netobj *res)
202{
203 const void *q;
204 unsigned int len;
205
206 p = simple_get_bytes(p, end, &len, sizeof(len));
207 if (IS_ERR(p))
208 return p;
209 q = (const void *)((const char *)p + len);
210 if (unlikely(q > end || q < p))
211 return ERR_PTR(-EFAULT);
Trond Myklebust0f38b872008-06-10 18:31:01 -0400212 res->data = kmemdup(p, len, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (unlikely(res->data == NULL))
214 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 res->len = len;
216 return q;
217}
218
219static inline const void *
Kevin Coffman81d4a432010-03-17 13:02:51 -0400220get_key(const void *p, const void *end,
Herbert Xu3b5cf202016-01-24 21:17:59 +0800221 struct krb5_ctx *ctx, struct crypto_skcipher **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct xdr_netobj key;
Herbert Xu378c6692006-08-22 20:33:54 +1000224 int alg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 p = simple_get_bytes(p, end, &alg, sizeof(alg));
227 if (IS_ERR(p))
228 goto out_err;
Kevin Coffman81d4a432010-03-17 13:02:51 -0400229
230 switch (alg) {
231 case ENCTYPE_DES_CBC_CRC:
232 case ENCTYPE_DES_CBC_MD4:
233 case ENCTYPE_DES_CBC_MD5:
234 /* Map all these key types to ENCTYPE_DES_CBC_RAW */
235 alg = ENCTYPE_DES_CBC_RAW;
236 break;
237 }
238
239 if (!supported_gss_krb5_enctype(alg)) {
240 printk(KERN_WARNING "gss_kerberos_mech: unsupported "
241 "encryption key algorithm %d\n", alg);
Bian Naimengce8477e2010-09-12 19:55:25 -0400242 p = ERR_PTR(-EINVAL);
Kevin Coffman81d4a432010-03-17 13:02:51 -0400243 goto out_err;
244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 p = simple_get_netobj(p, end, &key);
246 if (IS_ERR(p))
247 goto out_err;
248
Herbert Xu3b5cf202016-01-24 21:17:59 +0800249 *res = crypto_alloc_skcipher(ctx->gk5e->encrypt_name, 0,
Kevin Coffman81d4a432010-03-17 13:02:51 -0400250 CRYPTO_ALG_ASYNC);
Herbert Xu378c6692006-08-22 20:33:54 +1000251 if (IS_ERR(*res)) {
Kevin Coffman81d4a432010-03-17 13:02:51 -0400252 printk(KERN_WARNING "gss_kerberos_mech: unable to initialize "
253 "crypto algorithm %s\n", ctx->gk5e->encrypt_name);
Herbert Xu378c6692006-08-22 20:33:54 +1000254 *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 goto out_err_free_key;
J. Bruce Fields9e569042006-01-03 09:56:01 +0100256 }
Herbert Xu3b5cf202016-01-24 21:17:59 +0800257 if (crypto_skcipher_setkey(*res, key.data, key.len)) {
Kevin Coffman81d4a432010-03-17 13:02:51 -0400258 printk(KERN_WARNING "gss_kerberos_mech: error setting key for "
259 "crypto algorithm %s\n", ctx->gk5e->encrypt_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 goto out_err_free_tfm;
J. Bruce Fields9e569042006-01-03 09:56:01 +0100261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 kfree(key.data);
264 return p;
265
266out_err_free_tfm:
Herbert Xu3b5cf202016-01-24 21:17:59 +0800267 crypto_free_skcipher(*res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268out_err_free_key:
269 kfree(key.data);
270 p = ERR_PTR(-EINVAL);
271out_err:
272 return p;
273}
274
275static int
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400276gss_import_v1_context(const void *p, const void *end, struct krb5_ctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
J. Bruce Fieldse678e062006-12-04 20:22:35 -0500278 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 p = simple_get_bytes(p, end, &ctx->initiate, sizeof(ctx->initiate));
281 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400282 goto out_err;
283
284 /* Old format supports only DES! Any other enctype uses new format */
Kevin Coffman1ac37192010-03-17 13:02:49 -0400285 ctx->enctype = ENCTYPE_DES_CBC_RAW;
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400286
Kevin Coffman81d4a432010-03-17 13:02:51 -0400287 ctx->gk5e = get_gss_krb5_enctype(ctx->enctype);
Bian Naimengce8477e2010-09-12 19:55:25 -0400288 if (ctx->gk5e == NULL) {
289 p = ERR_PTR(-EINVAL);
Kevin Coffman81d4a432010-03-17 13:02:51 -0400290 goto out_err;
Bian Naimengce8477e2010-09-12 19:55:25 -0400291 }
Kevin Coffman81d4a432010-03-17 13:02:51 -0400292
J. Bruce Fields717757a2006-12-04 20:22:41 -0500293 /* The downcall format was designed before we completely understood
294 * the uses of the context fields; so it includes some stuff we
295 * just give some minimal sanity-checking, and some we ignore
296 * completely (like the next twenty bytes): */
Bian Naimengce8477e2010-09-12 19:55:25 -0400297 if (unlikely(p + 20 > end || p + 20 < p)) {
298 p = ERR_PTR(-EFAULT);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400299 goto out_err;
Bian Naimengce8477e2010-09-12 19:55:25 -0400300 }
J. Bruce Fields717757a2006-12-04 20:22:41 -0500301 p += 20;
J. Bruce Fieldse678e062006-12-04 20:22:35 -0500302 p = simple_get_bytes(p, end, &tmp, sizeof(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400304 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500305 if (tmp != SGN_ALG_DES_MAC_MD5) {
306 p = ERR_PTR(-ENOSYS);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400307 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500308 }
J. Bruce Fieldsd922a842006-12-04 20:22:40 -0500309 p = simple_get_bytes(p, end, &tmp, sizeof(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400311 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500312 if (tmp != SEAL_ALG_DES) {
313 p = ERR_PTR(-ENOSYS);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400314 goto out_err;
Kevin Coffmanef338be2007-11-09 18:42:09 -0500315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 p = simple_get_bytes(p, end, &ctx->endtime, sizeof(ctx->endtime));
317 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400318 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 p = simple_get_bytes(p, end, &ctx->seq_send, sizeof(ctx->seq_send));
320 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400321 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 p = simple_get_netobj(p, end, &ctx->mech_used);
323 if (IS_ERR(p))
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400324 goto out_err;
Kevin Coffman81d4a432010-03-17 13:02:51 -0400325 p = get_key(p, end, ctx, &ctx->enc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (IS_ERR(p))
327 goto out_err_free_mech;
Kevin Coffman81d4a432010-03-17 13:02:51 -0400328 p = get_key(p, end, ctx, &ctx->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (IS_ERR(p))
330 goto out_err_free_key1;
331 if (p != end) {
332 p = ERR_PTR(-EFAULT);
333 goto out_err_free_key2;
334 }
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return 0;
337
338out_err_free_key2:
Herbert Xu3b5cf202016-01-24 21:17:59 +0800339 crypto_free_skcipher(ctx->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340out_err_free_key1:
Herbert Xu3b5cf202016-01-24 21:17:59 +0800341 crypto_free_skcipher(ctx->enc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342out_err_free_mech:
343 kfree(ctx->mech_used.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344out_err:
345 return PTR_ERR(p);
346}
347
Herbert Xu3b5cf202016-01-24 21:17:59 +0800348static struct crypto_skcipher *
Kevin Coffman934a95a2010-03-17 13:03:00 -0400349context_v2_alloc_cipher(struct krb5_ctx *ctx, const char *cname, u8 *key)
Kevin Coffman47d84802010-03-17 13:02:54 -0400350{
Herbert Xu3b5cf202016-01-24 21:17:59 +0800351 struct crypto_skcipher *cp;
Kevin Coffman47d84802010-03-17 13:02:54 -0400352
Herbert Xu3b5cf202016-01-24 21:17:59 +0800353 cp = crypto_alloc_skcipher(cname, 0, CRYPTO_ALG_ASYNC);
Kevin Coffman47d84802010-03-17 13:02:54 -0400354 if (IS_ERR(cp)) {
355 dprintk("gss_kerberos_mech: unable to initialize "
Kevin Coffman934a95a2010-03-17 13:03:00 -0400356 "crypto algorithm %s\n", cname);
Kevin Coffman47d84802010-03-17 13:02:54 -0400357 return NULL;
358 }
Herbert Xu3b5cf202016-01-24 21:17:59 +0800359 if (crypto_skcipher_setkey(cp, key, ctx->gk5e->keylength)) {
Kevin Coffman47d84802010-03-17 13:02:54 -0400360 dprintk("gss_kerberos_mech: error setting key for "
Kevin Coffman934a95a2010-03-17 13:03:00 -0400361 "crypto algorithm %s\n", cname);
Herbert Xu3b5cf202016-01-24 21:17:59 +0800362 crypto_free_skcipher(cp);
Kevin Coffman47d84802010-03-17 13:02:54 -0400363 return NULL;
364 }
365 return cp;
366}
367
368static inline void
369set_cdata(u8 cdata[GSS_KRB5_K5CLENGTH], u32 usage, u8 seed)
370{
371 cdata[0] = (usage>>24)&0xff;
372 cdata[1] = (usage>>16)&0xff;
373 cdata[2] = (usage>>8)&0xff;
374 cdata[3] = usage&0xff;
375 cdata[4] = seed;
376}
377
378static int
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400379context_derive_keys_des3(struct krb5_ctx *ctx, gfp_t gfp_mask)
Kevin Coffman47d84802010-03-17 13:02:54 -0400380{
381 struct xdr_netobj c, keyin, keyout;
382 u8 cdata[GSS_KRB5_K5CLENGTH];
383 u32 err;
384
385 c.len = GSS_KRB5_K5CLENGTH;
386 c.data = cdata;
387
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400388 keyin.data = ctx->Ksess;
389 keyin.len = ctx->gk5e->keylength;
390 keyout.len = ctx->gk5e->keylength;
Kevin Coffman47d84802010-03-17 13:02:54 -0400391
392 /* seq uses the raw key */
Kevin Coffman934a95a2010-03-17 13:03:00 -0400393 ctx->seq = context_v2_alloc_cipher(ctx, ctx->gk5e->encrypt_name,
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400394 ctx->Ksess);
Kevin Coffman47d84802010-03-17 13:02:54 -0400395 if (ctx->seq == NULL)
396 goto out_err;
397
Kevin Coffman934a95a2010-03-17 13:03:00 -0400398 ctx->enc = context_v2_alloc_cipher(ctx, ctx->gk5e->encrypt_name,
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400399 ctx->Ksess);
Kevin Coffman47d84802010-03-17 13:02:54 -0400400 if (ctx->enc == NULL)
401 goto out_free_seq;
402
403 /* derive cksum */
404 set_cdata(cdata, KG_USAGE_SIGN, KEY_USAGE_SEED_CHECKSUM);
405 keyout.data = ctx->cksum;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400406 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400407 if (err) {
408 dprintk("%s: Error %d deriving cksum key\n",
409 __func__, err);
410 goto out_free_enc;
411 }
412
413 return 0;
414
415out_free_enc:
Herbert Xu3b5cf202016-01-24 21:17:59 +0800416 crypto_free_skcipher(ctx->enc);
Kevin Coffman47d84802010-03-17 13:02:54 -0400417out_free_seq:
Herbert Xu3b5cf202016-01-24 21:17:59 +0800418 crypto_free_skcipher(ctx->seq);
Kevin Coffman47d84802010-03-17 13:02:54 -0400419out_err:
420 return -EINVAL;
421}
422
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400423/*
424 * Note that RC4 depends on deriving keys using the sequence
425 * number or the checksum of a token. Therefore, the final keys
426 * cannot be calculated until the token is being constructed!
427 */
428static int
429context_derive_keys_rc4(struct krb5_ctx *ctx)
430{
Herbert Xu3b5cf202016-01-24 21:17:59 +0800431 struct crypto_shash *hmac;
Trond Myklebust08676592011-04-06 10:13:32 -0700432 char sigkeyconstant[] = "signaturekey";
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400433 int slen = strlen(sigkeyconstant) + 1; /* include null terminator */
Herbert Xu3b5cf202016-01-24 21:17:59 +0800434 struct shash_desc *desc;
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400435 int err;
436
437 dprintk("RPC: %s: entered\n", __func__);
438 /*
439 * derive cksum (aka Ksign) key
440 */
Herbert Xu3b5cf202016-01-24 21:17:59 +0800441 hmac = crypto_alloc_shash(ctx->gk5e->cksum_name, 0, 0);
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400442 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
Herbert Xu3b5cf202016-01-24 21:17:59 +0800449 err = crypto_shash_setkey(hmac, ctx->Ksess, ctx->gk5e->keylength);
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400450 if (err)
451 goto out_err_free_hmac;
452
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400453
J. Bruce Fields56094ed2016-10-26 16:03:00 -0400454 desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(hmac), GFP_NOFS);
Herbert Xu3b5cf202016-01-24 21:17:59 +0800455 if (!desc) {
456 dprintk("%s: failed to allocate hash descriptor for '%s'\n",
457 __func__, ctx->gk5e->cksum_name);
458 err = -ENOMEM;
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400459 goto out_err_free_hmac;
Herbert Xu3b5cf202016-01-24 21:17:59 +0800460 }
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400461
Herbert Xu3b5cf202016-01-24 21:17:59 +0800462 desc->tfm = hmac;
463 desc->flags = 0;
464
465 err = crypto_shash_digest(desc, sigkeyconstant, slen, ctx->cksum);
466 kzfree(desc);
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400467 if (err)
468 goto out_err_free_hmac;
469 /*
Herbert Xu3b5cf202016-01-24 21:17:59 +0800470 * allocate hash, and skciphers for data and seqnum encryption
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400471 */
Herbert Xu3b5cf202016-01-24 21:17:59 +0800472 ctx->enc = crypto_alloc_skcipher(ctx->gk5e->encrypt_name, 0,
473 CRYPTO_ALG_ASYNC);
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400474 if (IS_ERR(ctx->enc)) {
475 err = PTR_ERR(ctx->enc);
476 goto out_err_free_hmac;
477 }
478
Herbert Xu3b5cf202016-01-24 21:17:59 +0800479 ctx->seq = crypto_alloc_skcipher(ctx->gk5e->encrypt_name, 0,
480 CRYPTO_ALG_ASYNC);
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400481 if (IS_ERR(ctx->seq)) {
Herbert Xu3b5cf202016-01-24 21:17:59 +0800482 crypto_free_skcipher(ctx->enc);
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400483 err = PTR_ERR(ctx->seq);
484 goto out_err_free_hmac;
485 }
486
487 dprintk("RPC: %s: returning success\n", __func__);
488
489 err = 0;
490
491out_err_free_hmac:
Herbert Xu3b5cf202016-01-24 21:17:59 +0800492 crypto_free_shash(hmac);
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400493out_err:
494 dprintk("RPC: %s: returning %d\n", __func__, err);
495 return err;
496}
497
Kevin Coffman47d84802010-03-17 13:02:54 -0400498static int
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400499context_derive_keys_new(struct krb5_ctx *ctx, gfp_t gfp_mask)
Kevin Coffman47d84802010-03-17 13:02:54 -0400500{
501 struct xdr_netobj c, keyin, keyout;
502 u8 cdata[GSS_KRB5_K5CLENGTH];
503 u32 err;
504
505 c.len = GSS_KRB5_K5CLENGTH;
506 c.data = cdata;
507
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400508 keyin.data = ctx->Ksess;
509 keyin.len = ctx->gk5e->keylength;
510 keyout.len = ctx->gk5e->keylength;
Kevin Coffman47d84802010-03-17 13:02:54 -0400511
512 /* initiator seal encryption */
513 set_cdata(cdata, KG_USAGE_INITIATOR_SEAL, KEY_USAGE_SEED_ENCRYPTION);
514 keyout.data = ctx->initiator_seal;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400515 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400516 if (err) {
517 dprintk("%s: Error %d deriving initiator_seal key\n",
518 __func__, err);
519 goto out_err;
520 }
Kevin Coffman934a95a2010-03-17 13:03:00 -0400521 ctx->initiator_enc = context_v2_alloc_cipher(ctx,
522 ctx->gk5e->encrypt_name,
523 ctx->initiator_seal);
Kevin Coffman47d84802010-03-17 13:02:54 -0400524 if (ctx->initiator_enc == NULL)
525 goto out_err;
526
527 /* acceptor seal encryption */
528 set_cdata(cdata, KG_USAGE_ACCEPTOR_SEAL, KEY_USAGE_SEED_ENCRYPTION);
529 keyout.data = ctx->acceptor_seal;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400530 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400531 if (err) {
532 dprintk("%s: Error %d deriving acceptor_seal key\n",
533 __func__, err);
534 goto out_free_initiator_enc;
535 }
Kevin Coffman934a95a2010-03-17 13:03:00 -0400536 ctx->acceptor_enc = context_v2_alloc_cipher(ctx,
537 ctx->gk5e->encrypt_name,
538 ctx->acceptor_seal);
Kevin Coffman47d84802010-03-17 13:02:54 -0400539 if (ctx->acceptor_enc == NULL)
540 goto out_free_initiator_enc;
541
542 /* initiator sign checksum */
543 set_cdata(cdata, KG_USAGE_INITIATOR_SIGN, KEY_USAGE_SEED_CHECKSUM);
544 keyout.data = ctx->initiator_sign;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400545 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400546 if (err) {
547 dprintk("%s: Error %d deriving initiator_sign key\n",
548 __func__, err);
549 goto out_free_acceptor_enc;
550 }
551
552 /* acceptor sign checksum */
553 set_cdata(cdata, KG_USAGE_ACCEPTOR_SIGN, KEY_USAGE_SEED_CHECKSUM);
554 keyout.data = ctx->acceptor_sign;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400555 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400556 if (err) {
557 dprintk("%s: Error %d deriving acceptor_sign key\n",
558 __func__, err);
559 goto out_free_acceptor_enc;
560 }
561
562 /* initiator seal integrity */
563 set_cdata(cdata, KG_USAGE_INITIATOR_SEAL, KEY_USAGE_SEED_INTEGRITY);
564 keyout.data = ctx->initiator_integ;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400565 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400566 if (err) {
567 dprintk("%s: Error %d deriving initiator_integ key\n",
568 __func__, err);
569 goto out_free_acceptor_enc;
570 }
571
572 /* acceptor seal integrity */
573 set_cdata(cdata, KG_USAGE_ACCEPTOR_SEAL, KEY_USAGE_SEED_INTEGRITY);
574 keyout.data = ctx->acceptor_integ;
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400575 err = krb5_derive_key(ctx->gk5e, &keyin, &keyout, &c, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400576 if (err) {
577 dprintk("%s: Error %d deriving acceptor_integ key\n",
578 __func__, err);
579 goto out_free_acceptor_enc;
580 }
581
Kevin Coffman934a95a2010-03-17 13:03:00 -0400582 switch (ctx->enctype) {
583 case ENCTYPE_AES128_CTS_HMAC_SHA1_96:
584 case ENCTYPE_AES256_CTS_HMAC_SHA1_96:
585 ctx->initiator_enc_aux =
586 context_v2_alloc_cipher(ctx, "cbc(aes)",
587 ctx->initiator_seal);
588 if (ctx->initiator_enc_aux == NULL)
589 goto out_free_acceptor_enc;
590 ctx->acceptor_enc_aux =
591 context_v2_alloc_cipher(ctx, "cbc(aes)",
592 ctx->acceptor_seal);
593 if (ctx->acceptor_enc_aux == NULL) {
Herbert Xu3b5cf202016-01-24 21:17:59 +0800594 crypto_free_skcipher(ctx->initiator_enc_aux);
Kevin Coffman934a95a2010-03-17 13:03:00 -0400595 goto out_free_acceptor_enc;
596 }
597 }
598
Kevin Coffman47d84802010-03-17 13:02:54 -0400599 return 0;
600
601out_free_acceptor_enc:
Herbert Xu3b5cf202016-01-24 21:17:59 +0800602 crypto_free_skcipher(ctx->acceptor_enc);
Kevin Coffman47d84802010-03-17 13:02:54 -0400603out_free_initiator_enc:
Herbert Xu3b5cf202016-01-24 21:17:59 +0800604 crypto_free_skcipher(ctx->initiator_enc);
Kevin Coffman47d84802010-03-17 13:02:54 -0400605out_err:
606 return -EINVAL;
607}
608
609static int
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400610gss_import_v2_context(const void *p, const void *end, struct krb5_ctx *ctx,
611 gfp_t gfp_mask)
Kevin Coffman47d84802010-03-17 13:02:54 -0400612{
Kevin Coffman47d84802010-03-17 13:02:54 -0400613 int keylen;
614
615 p = simple_get_bytes(p, end, &ctx->flags, sizeof(ctx->flags));
616 if (IS_ERR(p))
617 goto out_err;
618 ctx->initiate = ctx->flags & KRB5_CTX_FLAG_INITIATOR;
619
620 p = simple_get_bytes(p, end, &ctx->endtime, sizeof(ctx->endtime));
621 if (IS_ERR(p))
622 goto out_err;
623 p = simple_get_bytes(p, end, &ctx->seq_send64, sizeof(ctx->seq_send64));
624 if (IS_ERR(p))
625 goto out_err;
626 /* set seq_send for use by "older" enctypes */
627 ctx->seq_send = ctx->seq_send64;
628 if (ctx->seq_send64 != ctx->seq_send) {
629 dprintk("%s: seq_send64 %lx, seq_send %x overflow?\n", __func__,
Eric Dumazet95c96172012-04-15 05:58:06 +0000630 (unsigned long)ctx->seq_send64, ctx->seq_send);
Bian Naimengce8477e2010-09-12 19:55:25 -0400631 p = ERR_PTR(-EINVAL);
Kevin Coffman47d84802010-03-17 13:02:54 -0400632 goto out_err;
633 }
634 p = simple_get_bytes(p, end, &ctx->enctype, sizeof(ctx->enctype));
635 if (IS_ERR(p))
636 goto out_err;
Kevin Coffman958142e2010-03-17 13:02:55 -0400637 /* Map ENCTYPE_DES3_CBC_SHA1 to ENCTYPE_DES3_CBC_RAW */
638 if (ctx->enctype == ENCTYPE_DES3_CBC_SHA1)
639 ctx->enctype = ENCTYPE_DES3_CBC_RAW;
Kevin Coffman47d84802010-03-17 13:02:54 -0400640 ctx->gk5e = get_gss_krb5_enctype(ctx->enctype);
641 if (ctx->gk5e == NULL) {
642 dprintk("gss_kerberos_mech: unsupported krb5 enctype %u\n",
643 ctx->enctype);
644 p = ERR_PTR(-EINVAL);
645 goto out_err;
646 }
647 keylen = ctx->gk5e->keylength;
648
Kevin Coffmanfc263a92010-03-17 13:03:03 -0400649 p = simple_get_bytes(p, end, ctx->Ksess, keylen);
Kevin Coffman47d84802010-03-17 13:02:54 -0400650 if (IS_ERR(p))
651 goto out_err;
652
653 if (p != end) {
654 p = ERR_PTR(-EINVAL);
655 goto out_err;
656 }
657
658 ctx->mech_used.data = kmemdup(gss_kerberos_mech.gm_oid.data,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400659 gss_kerberos_mech.gm_oid.len, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400660 if (unlikely(ctx->mech_used.data == NULL)) {
661 p = ERR_PTR(-ENOMEM);
662 goto out_err;
663 }
664 ctx->mech_used.len = gss_kerberos_mech.gm_oid.len;
665
666 switch (ctx->enctype) {
667 case ENCTYPE_DES3_CBC_RAW:
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400668 return context_derive_keys_des3(ctx, gfp_mask);
Kevin Coffmanfffdaef2010-03-17 13:03:06 -0400669 case ENCTYPE_ARCFOUR_HMAC:
670 return context_derive_keys_rc4(ctx);
Kevin Coffman47d84802010-03-17 13:02:54 -0400671 case ENCTYPE_AES128_CTS_HMAC_SHA1_96:
672 case ENCTYPE_AES256_CTS_HMAC_SHA1_96:
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400673 return context_derive_keys_new(ctx, gfp_mask);
Kevin Coffman47d84802010-03-17 13:02:54 -0400674 default:
675 return -EINVAL;
676 }
677
678out_err:
679 return PTR_ERR(p);
680}
681
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400682static int
683gss_import_sec_context_kerberos(const void *p, size_t len,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400684 struct gss_ctx *ctx_id,
Simo Sorce400f26b2012-05-25 18:09:53 -0400685 time_t *endtime,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400686 gfp_t gfp_mask)
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400687{
688 const void *end = (const void *)((const char *)p + len);
689 struct krb5_ctx *ctx;
690 int ret;
691
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400692 ctx = kzalloc(sizeof(*ctx), gfp_mask);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400693 if (ctx == NULL)
694 return -ENOMEM;
695
696 if (len == 85)
697 ret = gss_import_v1_context(p, end, ctx);
698 else
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400699 ret = gss_import_v2_context(p, end, ctx, gfp_mask);
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400700
Simo Sorce400f26b2012-05-25 18:09:53 -0400701 if (ret == 0) {
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400702 ctx_id->internal_ctx_id = ctx;
Simo Sorce400f26b2012-05-25 18:09:53 -0400703 if (endtime)
704 *endtime = ctx->endtime;
705 } else
Kevin Coffmana8cc1cb2010-03-17 13:02:50 -0400706 kfree(ctx);
707
708 dprintk("RPC: %s: returning %d\n", __func__, ret);
709 return ret;
710}
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712static void
713gss_delete_sec_context_kerberos(void *internal_ctx) {
714 struct krb5_ctx *kctx = internal_ctx;
715
Herbert Xu3b5cf202016-01-24 21:17:59 +0800716 crypto_free_skcipher(kctx->seq);
717 crypto_free_skcipher(kctx->enc);
718 crypto_free_skcipher(kctx->acceptor_enc);
719 crypto_free_skcipher(kctx->initiator_enc);
720 crypto_free_skcipher(kctx->acceptor_enc_aux);
721 crypto_free_skcipher(kctx->initiator_enc_aux);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700722 kfree(kctx->mech_used.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 kfree(kctx);
724}
725
Trond Myklebustf1c0a862007-06-23 20:17:58 -0400726static const struct gss_api_ops gss_kerberos_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 .gss_import_sec_context = gss_import_sec_context_kerberos,
728 .gss_get_mic = gss_get_mic_kerberos,
729 .gss_verify_mic = gss_verify_mic_kerberos,
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400730 .gss_wrap = gss_wrap_kerberos,
731 .gss_unwrap = gss_unwrap_kerberos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 .gss_delete_sec_context = gss_delete_sec_context_kerberos,
733};
734
735static struct pf_desc gss_kerberos_pfs[] = {
736 [0] = {
737 .pseudoflavor = RPC_AUTH_GSS_KRB5,
Chuck Lever83523d02013-03-16 15:55:01 -0400738 .qop = GSS_C_QOP_DEFAULT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 .service = RPC_GSS_SVC_NONE,
740 .name = "krb5",
741 },
742 [1] = {
743 .pseudoflavor = RPC_AUTH_GSS_KRB5I,
Chuck Lever83523d02013-03-16 15:55:01 -0400744 .qop = GSS_C_QOP_DEFAULT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 .service = RPC_GSS_SVC_INTEGRITY,
746 .name = "krb5i",
Chuck Lever65b80172016-06-29 13:55:06 -0400747 .datatouch = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 },
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400749 [2] = {
750 .pseudoflavor = RPC_AUTH_GSS_KRB5P,
Chuck Lever83523d02013-03-16 15:55:01 -0400751 .qop = GSS_C_QOP_DEFAULT,
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400752 .service = RPC_GSS_SVC_PRIVACY,
753 .name = "krb5p",
Chuck Lever65b80172016-06-29 13:55:06 -0400754 .datatouch = true,
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400755 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756};
757
J. Bruce Fields058c5c92011-06-22 10:50:08 -0400758MODULE_ALIAS("rpc-auth-gss-krb5");
759MODULE_ALIAS("rpc-auth-gss-krb5i");
760MODULE_ALIAS("rpc-auth-gss-krb5p");
761MODULE_ALIAS("rpc-auth-gss-390003");
762MODULE_ALIAS("rpc-auth-gss-390004");
763MODULE_ALIAS("rpc-auth-gss-390005");
Chuck Leverf7832882013-03-16 15:54:52 -0400764MODULE_ALIAS("rpc-auth-gss-1.2.840.113554.1.2.2");
J. Bruce Fields058c5c92011-06-22 10:50:08 -0400765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766static struct gss_api_mech gss_kerberos_mech = {
767 .gm_name = "krb5",
768 .gm_owner = THIS_MODULE,
Chuck Leverfb15b262013-03-16 15:54:34 -0400769 .gm_oid = { 9, "\x2a\x86\x48\x86\xf7\x12\x01\x02\x02" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 .gm_ops = &gss_kerberos_ops,
771 .gm_pf_num = ARRAY_SIZE(gss_kerberos_pfs),
772 .gm_pfs = gss_kerberos_pfs,
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400773 .gm_upcall_enctypes = KRB5_SUPPORTED_ENCTYPES,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774};
775
776static int __init init_kerberos_module(void)
777{
778 int status;
779
780 status = gss_mech_register(&gss_kerberos_mech);
781 if (status)
782 printk("Failed to register kerberos gss mechanism!\n");
783 return status;
784}
785
786static void __exit cleanup_kerberos_module(void)
787{
788 gss_mech_unregister(&gss_kerberos_mech);
789}
790
791MODULE_LICENSE("GPL");
792module_init(init_kerberos_module);
793module_exit(cleanup_kerberos_module);