Linux 4.19.133
[linux/fpc-iii.git] / net / sunrpc / auth_gss / gss_krb5_seal.c
blobe1f0571843c8c700363bdade9b2282d91119e014
1 /*
2 * linux/net/sunrpc/gss_krb5_seal.c
4 * Adapted from MIT Kerberos 5-1.2.1 lib/gssapi/krb5/k5seal.c
6 * Copyright (c) 2000-2008 The Regents of the University of Michigan.
7 * All rights reserved.
9 * Andy Adamson <andros@umich.edu>
10 * J. Bruce Fields <bfields@umich.edu>
14 * Copyright 1993 by OpenVision Technologies, Inc.
16 * Permission to use, copy, modify, distribute, and sell this software
17 * and its documentation for any purpose is hereby granted without fee,
18 * provided that the above copyright notice appears in all copies and
19 * that both that copyright notice and this permission notice appear in
20 * supporting documentation, and that the name of OpenVision not be used
21 * in advertising or publicity pertaining to distribution of the software
22 * without specific, written prior permission. OpenVision makes no
23 * representations about the suitability of this software for any
24 * purpose. It is provided "as is" without express or implied warranty.
26 * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
27 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
28 * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
29 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
30 * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
31 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
32 * PERFORMANCE OF THIS SOFTWARE.
36 * Copyright (C) 1998 by the FundsXpress, INC.
38 * All rights reserved.
40 * Export of this software from the United States of America may require
41 * a specific license from the United States Government. It is the
42 * responsibility of any person or organization contemplating export to
43 * obtain such a license before exporting.
45 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
46 * distribute this software and its documentation for any purpose and
47 * without fee is hereby granted, provided that the above copyright
48 * notice appear in all copies and that both that copyright notice and
49 * this permission notice appear in supporting documentation, and that
50 * the name of FundsXpress. not be used in advertising or publicity pertaining
51 * to distribution of the software without specific, written prior
52 * permission. FundsXpress makes no representations about the suitability of
53 * this software for any purpose. It is provided "as is" without express
54 * or implied warranty.
56 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
57 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
58 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
61 #include <linux/types.h>
62 #include <linux/jiffies.h>
63 #include <linux/sunrpc/gss_krb5.h>
64 #include <linux/random.h>
65 #include <linux/crypto.h>
66 #include <linux/atomic.h>
68 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
69 # define RPCDBG_FACILITY RPCDBG_AUTH
70 #endif
72 DEFINE_SPINLOCK(krb5_seq_lock);
74 static void *
75 setup_token(struct krb5_ctx *ctx, struct xdr_netobj *token)
77 u16 *ptr;
78 void *krb5_hdr;
79 int body_size = GSS_KRB5_TOK_HDR_LEN + ctx->gk5e->cksumlength;
81 token->len = g_token_size(&ctx->mech_used, body_size);
83 ptr = (u16 *)token->data;
84 g_make_token_header(&ctx->mech_used, body_size, (unsigned char **)&ptr);
86 /* ptr now at start of header described in rfc 1964, section 1.2.1: */
87 krb5_hdr = ptr;
88 *ptr++ = KG_TOK_MIC_MSG;
90 * signalg is stored as if it were converted from LE to host endian, even
91 * though it's an opaque pair of bytes according to the RFC.
93 *ptr++ = (__force u16)cpu_to_le16(ctx->gk5e->signalg);
94 *ptr++ = SEAL_ALG_NONE;
95 *ptr = 0xffff;
97 return krb5_hdr;
100 static void *
101 setup_token_v2(struct krb5_ctx *ctx, struct xdr_netobj *token)
103 u16 *ptr;
104 void *krb5_hdr;
105 u8 *p, flags = 0x00;
107 if ((ctx->flags & KRB5_CTX_FLAG_INITIATOR) == 0)
108 flags |= 0x01;
109 if (ctx->flags & KRB5_CTX_FLAG_ACCEPTOR_SUBKEY)
110 flags |= 0x04;
112 /* Per rfc 4121, sec 4.2.6.1, there is no header,
113 * just start the token */
114 krb5_hdr = ptr = (u16 *)token->data;
116 *ptr++ = KG2_TOK_MIC;
117 p = (u8 *)ptr;
118 *p++ = flags;
119 *p++ = 0xff;
120 ptr = (u16 *)p;
121 *ptr++ = 0xffff;
122 *ptr = 0xffff;
124 token->len = GSS_KRB5_TOK_HDR_LEN + ctx->gk5e->cksumlength;
125 return krb5_hdr;
128 static u32
129 gss_get_mic_v1(struct krb5_ctx *ctx, struct xdr_buf *text,
130 struct xdr_netobj *token)
132 char cksumdata[GSS_KRB5_MAX_CKSUM_LEN];
133 struct xdr_netobj md5cksum = {.len = sizeof(cksumdata),
134 .data = cksumdata};
135 void *ptr;
136 s32 now;
137 u32 seq_send;
138 u8 *cksumkey;
140 dprintk("RPC: %s\n", __func__);
141 BUG_ON(ctx == NULL);
143 now = get_seconds();
145 ptr = setup_token(ctx, token);
147 if (ctx->gk5e->keyed_cksum)
148 cksumkey = ctx->cksum;
149 else
150 cksumkey = NULL;
152 if (make_checksum(ctx, ptr, 8, text, 0, cksumkey,
153 KG_USAGE_SIGN, &md5cksum))
154 return GSS_S_FAILURE;
156 memcpy(ptr + GSS_KRB5_TOK_HDR_LEN, md5cksum.data, md5cksum.len);
158 spin_lock(&krb5_seq_lock);
159 seq_send = ctx->seq_send++;
160 spin_unlock(&krb5_seq_lock);
162 if (krb5_make_seq_num(ctx, ctx->seq, ctx->initiate ? 0 : 0xff,
163 seq_send, ptr + GSS_KRB5_TOK_HDR_LEN, ptr + 8))
164 return GSS_S_FAILURE;
166 return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE;
169 static u32
170 gss_get_mic_v2(struct krb5_ctx *ctx, struct xdr_buf *text,
171 struct xdr_netobj *token)
173 char cksumdata[GSS_KRB5_MAX_CKSUM_LEN];
174 struct xdr_netobj cksumobj = { .len = sizeof(cksumdata),
175 .data = cksumdata};
176 void *krb5_hdr;
177 s32 now;
178 u64 seq_send;
179 u8 *cksumkey;
180 unsigned int cksum_usage;
181 __be64 seq_send_be64;
183 dprintk("RPC: %s\n", __func__);
185 krb5_hdr = setup_token_v2(ctx, token);
187 /* Set up the sequence number. Now 64-bits in clear
188 * text and w/o direction indicator */
189 spin_lock(&krb5_seq_lock);
190 seq_send = ctx->seq_send64++;
191 spin_unlock(&krb5_seq_lock);
193 seq_send_be64 = cpu_to_be64(seq_send);
194 memcpy(krb5_hdr + 8, (char *) &seq_send_be64, 8);
196 if (ctx->initiate) {
197 cksumkey = ctx->initiator_sign;
198 cksum_usage = KG_USAGE_INITIATOR_SIGN;
199 } else {
200 cksumkey = ctx->acceptor_sign;
201 cksum_usage = KG_USAGE_ACCEPTOR_SIGN;
204 if (make_checksum_v2(ctx, krb5_hdr, GSS_KRB5_TOK_HDR_LEN,
205 text, 0, cksumkey, cksum_usage, &cksumobj))
206 return GSS_S_FAILURE;
208 memcpy(krb5_hdr + GSS_KRB5_TOK_HDR_LEN, cksumobj.data, cksumobj.len);
210 now = get_seconds();
212 return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE;
216 gss_get_mic_kerberos(struct gss_ctx *gss_ctx, struct xdr_buf *text,
217 struct xdr_netobj *token)
219 struct krb5_ctx *ctx = gss_ctx->internal_ctx_id;
221 switch (ctx->enctype) {
222 default:
223 BUG();
224 case ENCTYPE_DES_CBC_RAW:
225 case ENCTYPE_DES3_CBC_RAW:
226 case ENCTYPE_ARCFOUR_HMAC:
227 return gss_get_mic_v1(ctx, text, token);
228 case ENCTYPE_AES128_CTS_HMAC_SHA1_96:
229 case ENCTYPE_AES256_CTS_HMAC_SHA1_96:
230 return gss_get_mic_v2(ctx, text, token);