blob: cd512719092b8addad5e39e334dee4a4a131c17b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/net/sunrpc/gss_krb5_seal.c
3 *
4 * Adapted from MIT Kerberos 5-1.2.1 lib/gssapi/krb5/k5seal.c
5 *
Kevin Coffman81d4a432010-03-17 13:02:51 -04006 * Copyright (c) 2000-2008 The Regents of the University of Michigan.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/jiffies.h>
63#include <linux/sunrpc/gss_krb5.h>
64#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/crypto.h>
66
67#ifdef RPC_DEBUG
68# define RPCDBG_FACILITY RPCDBG_AUTH
69#endif
70
Ingo Molnar34af9462006-06-27 02:53:55 -070071DEFINE_SPINLOCK(krb5_seq_lock);
J. Bruce Fieldseaa82ed2006-03-20 23:24:04 -050072
Kevin Coffman81d4a432010-03-17 13:02:51 -040073static char *
74setup_token(struct krb5_ctx *ctx, struct xdr_netobj *token)
75{
76 __be16 *ptr, *krb5_hdr;
77 int body_size = GSS_KRB5_TOK_HDR_LEN + ctx->gk5e->cksumlength;
78
79 token->len = g_token_size(&ctx->mech_used, body_size);
80
81 ptr = (__be16 *)token->data;
82 g_make_token_header(&ctx->mech_used, body_size, (unsigned char **)&ptr);
83
84 /* ptr now at start of header described in rfc 1964, section 1.2.1: */
85 krb5_hdr = ptr;
86 *ptr++ = KG_TOK_MIC_MSG;
87 *ptr++ = cpu_to_le16(ctx->gk5e->signalg);
88 *ptr++ = SEAL_ALG_NONE;
89 *ptr++ = 0xffff;
90
91 return (char *)krb5_hdr;
92}
93
Kevin Coffman1ac37192010-03-17 13:02:49 -040094static u32
95gss_get_mic_v1(struct krb5_ctx *ctx, struct xdr_buf *text,
J. Bruce Fieldsa0857d02005-10-13 16:55:23 -040096 struct xdr_netobj *token)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Kevin Coffman81d4a432010-03-17 13:02:51 -040098 char cksumdata[GSS_KRB5_MAX_CKSUM_LEN];
99 struct xdr_netobj md5cksum = {.len = sizeof(cksumdata),
100 .data = cksumdata};
101 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 s32 now;
J. Bruce Fieldseaa82ed2006-03-20 23:24:04 -0500103 u32 seq_send;
Kevin Coffmane1f6c072010-03-17 13:02:52 -0400104 u8 *cksumkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Kevin Coffman81d4a432010-03-17 13:02:51 -0400106 dprintk("RPC: %s\n", __func__);
Kevin Coffmanef338be2007-11-09 18:42:09 -0500107 BUG_ON(ctx == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 now = get_seconds();
110
Kevin Coffman81d4a432010-03-17 13:02:51 -0400111 ptr = setup_token(ctx, token);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Kevin Coffmane1f6c072010-03-17 13:02:52 -0400113 if (ctx->gk5e->keyed_cksum)
114 cksumkey = ctx->cksum;
115 else
116 cksumkey = NULL;
117
118 if (make_checksum(ctx, ptr, 8, text, 0, cksumkey, &md5cksum))
J. Bruce Fields39a21dd2006-12-04 20:22:39 -0500119 return GSS_S_FAILURE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Kevin Coffmane1f6c072010-03-17 13:02:52 -0400121 memcpy(ptr + GSS_KRB5_TOK_HDR_LEN, md5cksum.data, md5cksum.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
J. Bruce Fieldseaa82ed2006-03-20 23:24:04 -0500123 spin_lock(&krb5_seq_lock);
124 seq_send = ctx->seq_send++;
125 spin_unlock(&krb5_seq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
J. Bruce Fields94efa932006-12-04 20:22:42 -0500127 if (krb5_make_seq_num(ctx->seq, ctx->initiate ? 0 : 0xff,
Kevin Coffmand00953a2008-04-30 12:45:53 -0400128 seq_send, ptr + GSS_KRB5_TOK_HDR_LEN,
129 ptr + 8))
J. Bruce Fields39a21dd2006-12-04 20:22:39 -0500130 return GSS_S_FAILURE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
J. Bruce Fields94efa932006-12-04 20:22:42 -0500132 return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
Kevin Coffman1ac37192010-03-17 13:02:49 -0400134
135u32
136gss_get_mic_kerberos(struct gss_ctx *gss_ctx, struct xdr_buf *text,
137 struct xdr_netobj *token)
138{
139 struct krb5_ctx *ctx = gss_ctx->internal_ctx_id;
140
141 switch (ctx->enctype) {
142 default:
143 BUG();
144 case ENCTYPE_DES_CBC_RAW:
145 return gss_get_mic_v1(ctx, text, token);
146 }
147}
148