blob: 633f41f11a40377bf5de2a7e8d3ad233ded3a90e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/linux/sunrpc/gss_krb5_types.h
3 *
4 * Adapted from MIT Kerberos 5-1.2.1 lib/include/krb5.h,
5 * lib/gssapi/krb5/gssapiP_krb5.h, and others
6 *
Kevin Coffman81d4a432010-03-17 13:02:51 -04007 * Copyright (c) 2000-2008 The Regents of the University of Michigan.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * All rights reserved.
9 *
10 * Andy Adamson <andros@umich.edu>
11 * Bruce Fields <bfields@umich.edu>
12 */
13
14/*
15 * Copyright 1995 by the Massachusetts Institute of Technology.
16 * All Rights Reserved.
17 *
18 * Export of this software from the United States of America may
19 * require a specific license from the United States Government.
20 * It is the responsibility of any person or organization contemplating
21 * export to obtain such a license before exporting.
22 *
23 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
24 * distribute this software and its documentation for any purpose and
25 * without fee is hereby granted, provided that the above copyright
26 * notice appear in all copies and that both that copyright notice and
27 * this permission notice appear in supporting documentation, and that
28 * the name of M.I.T. not be used in advertising or publicity pertaining
29 * to distribution of the software without specific, written prior
30 * permission. Furthermore if you modify this software you must label
31 * your software as modified software and not distribute it in such a
32 * fashion that it might be confused with the original M.I.T. software.
33 * M.I.T. makes no representations about the suitability of
34 * this software for any purpose. It is provided "as is" without express
35 * or implied warranty.
36 *
37 */
38
Kevin Coffman81d4a432010-03-17 13:02:51 -040039#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/sunrpc/auth_gss.h>
41#include <linux/sunrpc/gss_err.h>
42#include <linux/sunrpc/gss_asn1.h>
43
Kevin Coffman4891f2d2010-03-17 13:02:53 -040044/* Length of constant used in key derivation */
45#define GSS_KRB5_K5CLENGTH (5)
46
Kevin Coffmane1f6c072010-03-17 13:02:52 -040047/* Maximum key length (in bytes) for the supported crypto algorithms*/
48#define GSS_KRB5_MAX_KEYLEN (32)
49
Kevin Coffman725f2862010-03-17 13:02:46 -040050/* Maximum checksum function output for the supported crypto algorithms */
51#define GSS_KRB5_MAX_CKSUM_LEN (20)
52
53/* Maximum blocksize for the supported crypto algorithms */
54#define GSS_KRB5_MAX_BLOCKSIZE (16)
55
Kevin Coffmande9c17e2010-03-17 13:02:59 -040056struct krb5_ctx;
57
Kevin Coffman81d4a432010-03-17 13:02:51 -040058struct gss_krb5_enctype {
59 const u32 etype; /* encryption (key) type */
60 const u32 ctype; /* checksum type */
61 const char *name; /* "friendly" name */
62 const char *encrypt_name; /* crypto encrypt name */
63 const char *cksum_name; /* crypto checksum name */
64 const u16 signalg; /* signing algorithm */
65 const u16 sealalg; /* sealing algorithm */
66 const u32 blocksize; /* encryption blocksize */
67 const u32 cksumlength; /* checksum length */
68 const u32 keyed_cksum; /* is it a keyed cksum? */
69 const u32 keybytes; /* raw key len, in bytes */
70 const u32 keylength; /* final key len, in bytes */
71 u32 (*encrypt) (struct crypto_blkcipher *tfm,
72 void *iv, void *in, void *out,
73 int length); /* encryption function */
74 u32 (*decrypt) (struct crypto_blkcipher *tfm,
75 void *iv, void *in, void *out,
76 int length); /* decryption function */
Kevin Coffman47d84802010-03-17 13:02:54 -040077 u32 (*mk_key) (const struct gss_krb5_enctype *gk5e,
Kevin Coffman4891f2d2010-03-17 13:02:53 -040078 struct xdr_netobj *in,
79 struct xdr_netobj *out); /* complete key generation */
Kevin Coffmande9c17e2010-03-17 13:02:59 -040080 u32 (*encrypt_v2) (struct krb5_ctx *kctx, u32 offset,
81 struct xdr_buf *buf, int ec,
82 struct page **pages); /* v2 encryption function */
83 u32 (*decrypt_v2) (struct krb5_ctx *kctx, u32 offset,
84 struct xdr_buf *buf, u32 *headskip,
85 u32 *tailskip); /* v2 decryption function */
Kevin Coffman81d4a432010-03-17 13:02:51 -040086};
87
Kevin Coffman47d84802010-03-17 13:02:54 -040088/* krb5_ctx flags definitions */
89#define KRB5_CTX_FLAG_INITIATOR 0x00000001
90#define KRB5_CTX_FLAG_CFX 0x00000002
91#define KRB5_CTX_FLAG_ACCEPTOR_SUBKEY 0x00000004
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093struct krb5_ctx {
94 int initiate; /* 1 = initiating, 0 = accepting */
Kevin Coffman1ac37192010-03-17 13:02:49 -040095 u32 enctype;
Kevin Coffman47d84802010-03-17 13:02:54 -040096 u32 flags;
Kevin Coffman81d4a432010-03-17 13:02:51 -040097 const struct gss_krb5_enctype *gk5e; /* enctype-specific info */
Herbert Xu378c6692006-08-22 20:33:54 +100098 struct crypto_blkcipher *enc;
99 struct crypto_blkcipher *seq;
Kevin Coffman47d84802010-03-17 13:02:54 -0400100 struct crypto_blkcipher *acceptor_enc;
101 struct crypto_blkcipher *initiator_enc;
Kevin Coffman934a95a2010-03-17 13:03:00 -0400102 struct crypto_blkcipher *acceptor_enc_aux;
103 struct crypto_blkcipher *initiator_enc_aux;
Kevin Coffmane1f6c072010-03-17 13:02:52 -0400104 u8 cksum[GSS_KRB5_MAX_KEYLEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 s32 endtime;
106 u32 seq_send;
Kevin Coffman47d84802010-03-17 13:02:54 -0400107 u64 seq_send64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 struct xdr_netobj mech_used;
Kevin Coffman47d84802010-03-17 13:02:54 -0400109 u8 initiator_sign[GSS_KRB5_MAX_KEYLEN];
110 u8 acceptor_sign[GSS_KRB5_MAX_KEYLEN];
111 u8 initiator_seal[GSS_KRB5_MAX_KEYLEN];
112 u8 acceptor_seal[GSS_KRB5_MAX_KEYLEN];
113 u8 initiator_integ[GSS_KRB5_MAX_KEYLEN];
114 u8 acceptor_integ[GSS_KRB5_MAX_KEYLEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
J. Bruce Fieldseaa82ed2006-03-20 23:24:04 -0500117extern spinlock_t krb5_seq_lock;
118
Kevin Coffmand00953a2008-04-30 12:45:53 -0400119/* The length of the Kerberos GSS token header */
120#define GSS_KRB5_TOK_HDR_LEN (16)
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define KG_TOK_MIC_MSG 0x0101
123#define KG_TOK_WRAP_MSG 0x0201
124
Kevin Coffmande9c17e2010-03-17 13:02:59 -0400125#define KG2_TOK_INITIAL 0x0101
126#define KG2_TOK_RESPONSE 0x0202
127#define KG2_TOK_MIC 0x0404
128#define KG2_TOK_WRAP 0x0504
129
130#define KG2_TOKEN_FLAG_SENTBYACCEPTOR 0x01
131#define KG2_TOKEN_FLAG_SEALED 0x02
132#define KG2_TOKEN_FLAG_ACCEPTORSUBKEY 0x04
133
134#define KG2_RESP_FLAG_ERROR 0x0001
135#define KG2_RESP_FLAG_DELEG_OK 0x0002
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137enum sgn_alg {
138 SGN_ALG_DES_MAC_MD5 = 0x0000,
139 SGN_ALG_MD2_5 = 0x0001,
140 SGN_ALG_DES_MAC = 0x0002,
141 SGN_ALG_3 = 0x0003, /* not published */
142 SGN_ALG_HMAC_MD5 = 0x0011, /* microsoft w2k; no support */
143 SGN_ALG_HMAC_SHA1_DES3_KD = 0x0004
144};
145enum seal_alg {
146 SEAL_ALG_NONE = 0xffff,
147 SEAL_ALG_DES = 0x0000,
148 SEAL_ALG_1 = 0x0001, /* not published */
149 SEAL_ALG_MICROSOFT_RC4 = 0x0010,/* microsoft w2k; no support */
150 SEAL_ALG_DES3KD = 0x0002
151};
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define CKSUMTYPE_CRC32 0x0001
154#define CKSUMTYPE_RSA_MD4 0x0002
155#define CKSUMTYPE_RSA_MD4_DES 0x0003
156#define CKSUMTYPE_DESCBC 0x0004
157#define CKSUMTYPE_RSA_MD5 0x0007
158#define CKSUMTYPE_RSA_MD5_DES 0x0008
159#define CKSUMTYPE_NIST_SHA 0x0009
160#define CKSUMTYPE_HMAC_SHA1_DES3 0x000c
Kevin Coffmande9c17e2010-03-17 13:02:59 -0400161#define CKSUMTYPE_HMAC_SHA1_96_AES128 0x000f
162#define CKSUMTYPE_HMAC_SHA1_96_AES256 0x0010
163#define CKSUMTYPE_HMAC_MD5_ARCFOUR -138 /* Microsoft md5 hmac cksumtype */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165/* from gssapi_err_krb5.h */
166#define KG_CCACHE_NOMATCH (39756032L)
167#define KG_KEYTAB_NOMATCH (39756033L)
168#define KG_TGT_MISSING (39756034L)
169#define KG_NO_SUBKEY (39756035L)
170#define KG_CONTEXT_ESTABLISHED (39756036L)
171#define KG_BAD_SIGN_TYPE (39756037L)
172#define KG_BAD_LENGTH (39756038L)
173#define KG_CTX_INCOMPLETE (39756039L)
174#define KG_CONTEXT (39756040L)
175#define KG_CRED (39756041L)
176#define KG_ENC_DESC (39756042L)
177#define KG_BAD_SEQ (39756043L)
178#define KG_EMPTY_CCACHE (39756044L)
179#define KG_NO_CTYPES (39756045L)
180
181/* per Kerberos v5 protocol spec crypto types from the wire.
182 * these get mapped to linux kernel crypto routines.
183 */
184#define ENCTYPE_NULL 0x0000
185#define ENCTYPE_DES_CBC_CRC 0x0001 /* DES cbc mode with CRC-32 */
186#define ENCTYPE_DES_CBC_MD4 0x0002 /* DES cbc mode with RSA-MD4 */
187#define ENCTYPE_DES_CBC_MD5 0x0003 /* DES cbc mode with RSA-MD5 */
188#define ENCTYPE_DES_CBC_RAW 0x0004 /* DES cbc mode raw */
189/* XXX deprecated? */
190#define ENCTYPE_DES3_CBC_SHA 0x0005 /* DES-3 cbc mode with NIST-SHA */
191#define ENCTYPE_DES3_CBC_RAW 0x0006 /* DES-3 cbc mode raw */
192#define ENCTYPE_DES_HMAC_SHA1 0x0008
193#define ENCTYPE_DES3_CBC_SHA1 0x0010
Kevin Coffman47d84802010-03-17 13:02:54 -0400194#define ENCTYPE_AES128_CTS_HMAC_SHA1_96 0x0011
195#define ENCTYPE_AES256_CTS_HMAC_SHA1_96 0x0012
196#define ENCTYPE_ARCFOUR_HMAC 0x0017
197#define ENCTYPE_ARCFOUR_HMAC_EXP 0x0018
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#define ENCTYPE_UNKNOWN 0x01ff
199
Kevin Coffman725f2862010-03-17 13:02:46 -0400200/*
Kevin Coffman4891f2d2010-03-17 13:02:53 -0400201 * Constants used for key derivation
202 */
203/* for 3DES */
204#define KG_USAGE_SEAL (22)
205#define KG_USAGE_SIGN (23)
206#define KG_USAGE_SEQ (24)
207
208/* from rfc3961 */
209#define KEY_USAGE_SEED_CHECKSUM (0x99)
210#define KEY_USAGE_SEED_ENCRYPTION (0xAA)
211#define KEY_USAGE_SEED_INTEGRITY (0x55)
212
213/* from rfc4121 */
214#define KG_USAGE_ACCEPTOR_SEAL (22)
215#define KG_USAGE_ACCEPTOR_SIGN (23)
216#define KG_USAGE_INITIATOR_SEAL (24)
217#define KG_USAGE_INITIATOR_SIGN (25)
218
219/*
Kevin Coffman725f2862010-03-17 13:02:46 -0400220 * This compile-time check verifies that we will not exceed the
221 * slack space allotted by the client and server auth_gss code
222 * before they call gss_wrap().
223 */
224#define GSS_KRB5_MAX_SLACK_NEEDED \
225 (GSS_KRB5_TOK_HDR_LEN /* gss token header */ \
226 + GSS_KRB5_MAX_CKSUM_LEN /* gss token checksum */ \
227 + GSS_KRB5_MAX_BLOCKSIZE /* confounder */ \
228 + GSS_KRB5_MAX_BLOCKSIZE /* possible padding */ \
229 + GSS_KRB5_TOK_HDR_LEN /* encrypted hdr in v2 token */\
230 + GSS_KRB5_MAX_CKSUM_LEN /* encryption hmac */ \
231 + 4 + 4 /* RPC verifier */ \
232 + GSS_KRB5_TOK_HDR_LEN \
233 + GSS_KRB5_MAX_CKSUM_LEN)
234
Kevin Coffmane1f6c072010-03-17 13:02:52 -0400235u32
236make_checksum(struct krb5_ctx *kctx, char *header, int hdrlen,
237 struct xdr_buf *body, int body_offset, u8 *cksumkey,
Kevin Coffman8b237072010-03-17 13:03:02 -0400238 unsigned int usage, struct xdr_netobj *cksumout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Kevin Coffmande9c17e2010-03-17 13:02:59 -0400240u32
241make_checksum_v2(struct krb5_ctx *, char *header, int hdrlen,
242 struct xdr_buf *body, int body_offset, u8 *key,
Kevin Coffman8b237072010-03-17 13:03:02 -0400243 unsigned int usage, struct xdr_netobj *cksum);
Kevin Coffmande9c17e2010-03-17 13:02:59 -0400244
J. Bruce Fieldsa0857d02005-10-13 16:55:23 -0400245u32 gss_get_mic_kerberos(struct gss_ctx *, struct xdr_buf *,
246 struct xdr_netobj *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
J. Bruce Fieldsa0857d02005-10-13 16:55:23 -0400248u32 gss_verify_mic_kerberos(struct gss_ctx *, struct xdr_buf *,
249 struct xdr_netobj *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251u32
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400252gss_wrap_kerberos(struct gss_ctx *ctx_id, int offset,
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400253 struct xdr_buf *outbuf, struct page **pages);
254
255u32
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400256gss_unwrap_kerberos(struct gss_ctx *ctx_id, int offset,
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400257 struct xdr_buf *buf);
258
259
260u32
Herbert Xu378c6692006-08-22 20:33:54 +1000261krb5_encrypt(struct crypto_blkcipher *key,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 void *iv, void *in, void *out, int length);
263
264u32
Herbert Xu378c6692006-08-22 20:33:54 +1000265krb5_decrypt(struct crypto_blkcipher *key,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 void *iv, void *in, void *out, int length);
267
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400268int
Herbert Xu378c6692006-08-22 20:33:54 +1000269gss_encrypt_xdr_buf(struct crypto_blkcipher *tfm, struct xdr_buf *outbuf,
270 int offset, struct page **pages);
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400271
272int
Herbert Xu378c6692006-08-22 20:33:54 +1000273gss_decrypt_xdr_buf(struct crypto_blkcipher *tfm, struct xdr_buf *inbuf,
274 int offset);
J. Bruce Fields14ae1622005-10-13 16:55:13 -0400275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276s32
Herbert Xu378c6692006-08-22 20:33:54 +1000277krb5_make_seq_num(struct crypto_blkcipher *key,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 int direction,
Kevin Coffman5743d652008-03-31 10:31:33 -0400279 u32 seqnum, unsigned char *cksum, unsigned char *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281s32
Herbert Xu378c6692006-08-22 20:33:54 +1000282krb5_get_seq_num(struct crypto_blkcipher *key,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 unsigned char *cksum,
Kevin Coffman5743d652008-03-31 10:31:33 -0400284 unsigned char *buf, int *direction, u32 *seqnum);
Kevin Coffman725f2862010-03-17 13:02:46 -0400285
286int
287xdr_extend_head(struct xdr_buf *buf, unsigned int base, unsigned int shiftlen);
Kevin Coffman4891f2d2010-03-17 13:02:53 -0400288
289u32
Kevin Coffman47d84802010-03-17 13:02:54 -0400290krb5_derive_key(const struct gss_krb5_enctype *gk5e,
Kevin Coffman4891f2d2010-03-17 13:02:53 -0400291 const struct xdr_netobj *inkey,
292 struct xdr_netobj *outkey,
293 const struct xdr_netobj *in_constant);
Kevin Coffman958142e2010-03-17 13:02:55 -0400294
295u32
296gss_krb5_des3_make_key(const struct gss_krb5_enctype *gk5e,
297 struct xdr_netobj *randombits,
298 struct xdr_netobj *key);
Kevin Coffman934a95a2010-03-17 13:03:00 -0400299
300u32
301gss_krb5_aes_make_key(const struct gss_krb5_enctype *gk5e,
302 struct xdr_netobj *randombits,
303 struct xdr_netobj *key);
304
305u32
306gss_krb5_aes_encrypt(struct krb5_ctx *kctx, u32 offset,
307 struct xdr_buf *buf, int ec,
308 struct page **pages);
309
310u32
311gss_krb5_aes_decrypt(struct krb5_ctx *kctx, u32 offset,
312 struct xdr_buf *buf, u32 *plainoffset,
313 u32 *plainlen);
314
315void
316gss_krb5_make_confounder(char *p, u32 conflen);