]> asedeno.scripts.mit.edu Git - linux.git/blob - net/sunrpc/auth_gss/gss_krb5_seal.c
0ffb797b92e5678389e2e9d2076634e7dd967b8d
[linux.git] / net / sunrpc / auth_gss / gss_krb5_seal.c
1 /*
2  *  linux/net/sunrpc/gss_krb5_seal.c
3  *
4  *  Adapted from MIT Kerberos 5-1.2.1 lib/gssapi/krb5/k5seal.c
5  *
6  *  Copyright (c) 2000-2008 The Regents of the University of Michigan.
7  *  All rights reserved.
8  *
9  *  Andy Adamson        <andros@umich.edu>
10  *  J. Bruce Fields     <bfields@umich.edu>
11  */
12
13 /*
14  * Copyright 1993 by OpenVision Technologies, Inc.
15  *
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.
25  *
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.
33  */
34
35 /*
36  * Copyright (C) 1998 by the FundsXpress, INC.
37  *
38  * All rights reserved.
39  *
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.
44  *
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.
55  *
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.
59  */
60
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
67 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
68 # define RPCDBG_FACILITY        RPCDBG_AUTH
69 #endif
70
71 static void *
72 setup_token(struct krb5_ctx *ctx, struct xdr_netobj *token)
73 {
74         u16 *ptr;
75         void *krb5_hdr;
76         int body_size = GSS_KRB5_TOK_HDR_LEN + ctx->gk5e->cksumlength;
77
78         token->len = g_token_size(&ctx->mech_used, body_size);
79
80         ptr = (u16 *)token->data;
81         g_make_token_header(&ctx->mech_used, body_size, (unsigned char **)&ptr);
82
83         /* ptr now at start of header described in rfc 1964, section 1.2.1: */
84         krb5_hdr = ptr;
85         *ptr++ = KG_TOK_MIC_MSG;
86         /*
87          * signalg is stored as if it were converted from LE to host endian, even
88          * though it's an opaque pair of bytes according to the RFC.
89          */
90         *ptr++ = (__force u16)cpu_to_le16(ctx->gk5e->signalg);
91         *ptr++ = SEAL_ALG_NONE;
92         *ptr = 0xffff;
93
94         return krb5_hdr;
95 }
96
97 static void *
98 setup_token_v2(struct krb5_ctx *ctx, struct xdr_netobj *token)
99 {
100         u16 *ptr;
101         void *krb5_hdr;
102         u8 *p, flags = 0x00;
103
104         if ((ctx->flags & KRB5_CTX_FLAG_INITIATOR) == 0)
105                 flags |= 0x01;
106         if (ctx->flags & KRB5_CTX_FLAG_ACCEPTOR_SUBKEY)
107                 flags |= 0x04;
108
109         /* Per rfc 4121, sec 4.2.6.1, there is no header,
110          * just start the token */
111         krb5_hdr = ptr = (u16 *)token->data;
112
113         *ptr++ = KG2_TOK_MIC;
114         p = (u8 *)ptr;
115         *p++ = flags;
116         *p++ = 0xff;
117         ptr = (u16 *)p;
118         *ptr++ = 0xffff;
119         *ptr = 0xffff;
120
121         token->len = GSS_KRB5_TOK_HDR_LEN + ctx->gk5e->cksumlength;
122         return krb5_hdr;
123 }
124
125 u32
126 gss_seq_send_fetch_and_inc(struct krb5_ctx *ctx)
127 {
128         u32 old, seq_send = READ_ONCE(ctx->seq_send);
129
130         do {
131                 old = seq_send;
132                 seq_send = cmpxchg(&ctx->seq_send, old, old + 1);
133         } while (old != seq_send);
134         return seq_send;
135 }
136
137 u64
138 gss_seq_send64_fetch_and_inc(struct krb5_ctx *ctx)
139 {
140         u64 old, seq_send = READ_ONCE(ctx->seq_send);
141
142         do {
143                 old = seq_send;
144                 seq_send = cmpxchg(&ctx->seq_send64, old, old + 1);
145         } while (old != seq_send);
146         return seq_send;
147 }
148
149 static u32
150 gss_get_mic_v1(struct krb5_ctx *ctx, struct xdr_buf *text,
151                 struct xdr_netobj *token)
152 {
153         char                    cksumdata[GSS_KRB5_MAX_CKSUM_LEN];
154         struct xdr_netobj       md5cksum = {.len = sizeof(cksumdata),
155                                             .data = cksumdata};
156         void                    *ptr;
157         s32                     now;
158         u32                     seq_send;
159         u8                      *cksumkey;
160
161         dprintk("RPC:       %s\n", __func__);
162         BUG_ON(ctx == NULL);
163
164         now = get_seconds();
165
166         ptr = setup_token(ctx, token);
167
168         if (ctx->gk5e->keyed_cksum)
169                 cksumkey = ctx->cksum;
170         else
171                 cksumkey = NULL;
172
173         if (make_checksum(ctx, ptr, 8, text, 0, cksumkey,
174                           KG_USAGE_SIGN, &md5cksum))
175                 return GSS_S_FAILURE;
176
177         memcpy(ptr + GSS_KRB5_TOK_HDR_LEN, md5cksum.data, md5cksum.len);
178
179         seq_send = gss_seq_send_fetch_and_inc(ctx);
180
181         if (krb5_make_seq_num(ctx, ctx->seq, ctx->initiate ? 0 : 0xff,
182                               seq_send, ptr + GSS_KRB5_TOK_HDR_LEN, ptr + 8))
183                 return GSS_S_FAILURE;
184
185         return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE;
186 }
187
188 static u32
189 gss_get_mic_v2(struct krb5_ctx *ctx, struct xdr_buf *text,
190                 struct xdr_netobj *token)
191 {
192         char cksumdata[GSS_KRB5_MAX_CKSUM_LEN];
193         struct xdr_netobj cksumobj = { .len = sizeof(cksumdata),
194                                        .data = cksumdata};
195         void *krb5_hdr;
196         s32 now;
197         u8 *cksumkey;
198         unsigned int cksum_usage;
199         __be64 seq_send_be64;
200
201         dprintk("RPC:       %s\n", __func__);
202
203         krb5_hdr = setup_token_v2(ctx, token);
204
205         /* Set up the sequence number. Now 64-bits in clear
206          * text and w/o direction indicator */
207         seq_send_be64 = cpu_to_be64(gss_seq_send64_fetch_and_inc(ctx));
208         memcpy(krb5_hdr + 8, (char *) &seq_send_be64, 8);
209
210         if (ctx->initiate) {
211                 cksumkey = ctx->initiator_sign;
212                 cksum_usage = KG_USAGE_INITIATOR_SIGN;
213         } else {
214                 cksumkey = ctx->acceptor_sign;
215                 cksum_usage = KG_USAGE_ACCEPTOR_SIGN;
216         }
217
218         if (make_checksum_v2(ctx, krb5_hdr, GSS_KRB5_TOK_HDR_LEN,
219                              text, 0, cksumkey, cksum_usage, &cksumobj))
220                 return GSS_S_FAILURE;
221
222         memcpy(krb5_hdr + GSS_KRB5_TOK_HDR_LEN, cksumobj.data, cksumobj.len);
223
224         now = get_seconds();
225
226         return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE;
227 }
228
229 u32
230 gss_get_mic_kerberos(struct gss_ctx *gss_ctx, struct xdr_buf *text,
231                      struct xdr_netobj *token)
232 {
233         struct krb5_ctx         *ctx = gss_ctx->internal_ctx_id;
234
235         switch (ctx->enctype) {
236         default:
237                 BUG();
238         case ENCTYPE_DES_CBC_RAW:
239         case ENCTYPE_DES3_CBC_RAW:
240         case ENCTYPE_ARCFOUR_HMAC:
241                 return gss_get_mic_v1(ctx, text, token);
242         case ENCTYPE_AES128_CTS_HMAC_SHA1_96:
243         case ENCTYPE_AES256_CTS_HMAC_SHA1_96:
244                 return gss_get_mic_v2(ctx, text, token);
245         }
246 }