4168
|
1 |
/*
|
5506
|
2 |
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
|
4168
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
|
7 |
* published by the Free Software Foundation.
|
|
8 |
*
|
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
13 |
* accompanied this code).
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License version
|
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
18 |
*
|
5506
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
20 |
* or visit www.oracle.com if you need additional information or have any
|
|
21 |
* questions.
|
4168
|
22 |
*/
|
|
23 |
|
|
24 |
/*
|
|
25 |
* @test
|
|
26 |
* @bug 6893158
|
4532
|
27 |
* @bug 6907425
|
4168
|
28 |
* @summary AP_REQ check should use key version number
|
|
29 |
*/
|
|
30 |
|
4532
|
31 |
import org.ietf.jgss.GSSException;
|
4168
|
32 |
import sun.security.jgss.GSSUtil;
|
4532
|
33 |
import sun.security.krb5.KrbException;
|
4168
|
34 |
import sun.security.krb5.PrincipalName;
|
|
35 |
import sun.security.krb5.internal.ktab.KeyTab;
|
4532
|
36 |
import sun.security.krb5.internal.Krb5;
|
4168
|
37 |
|
|
38 |
public class MoreKvno {
|
|
39 |
|
4532
|
40 |
static PrincipalName p;
|
4168
|
41 |
public static void main(String[] args)
|
|
42 |
throws Exception {
|
|
43 |
|
|
44 |
OneKDC kdc = new OneKDC(null);
|
|
45 |
kdc.writeJAASConf();
|
|
46 |
|
|
47 |
// Rewrite keytab, 3 set of keys with different kvno
|
|
48 |
KeyTab ktab = KeyTab.create(OneKDC.KTAB);
|
4532
|
49 |
p = new PrincipalName(
|
|
50 |
OneKDC.SERVER+"@"+OneKDC.REALM, PrincipalName.KRB_NT_SRV_HST);
|
|
51 |
ktab.addEntry(p, "pass1".toCharArray(), 1);
|
|
52 |
ktab.addEntry(p, "pass3".toCharArray(), 3);
|
4168
|
53 |
ktab.addEntry(p, "pass2".toCharArray(), 2);
|
|
54 |
ktab.save();
|
|
55 |
|
4532
|
56 |
char[] pass = "pass2".toCharArray();
|
|
57 |
kdc.addPrincipal(OneKDC.SERVER, pass);
|
|
58 |
go(OneKDC.SERVER, "com.sun.security.jgss.krb5.accept", pass);
|
|
59 |
|
|
60 |
pass = "pass3".toCharArray();
|
|
61 |
kdc.addPrincipal(OneKDC.SERVER, pass);
|
4168
|
62 |
// "server" initiate also, check pass2 is used at authentication
|
4532
|
63 |
go(OneKDC.SERVER, "server", pass);
|
|
64 |
|
|
65 |
try {
|
|
66 |
pass = "pass4".toCharArray();
|
|
67 |
kdc.addPrincipal(OneKDC.SERVER, pass);
|
|
68 |
go(OneKDC.SERVER, "com.sun.security.jgss.krb5.accept", pass);
|
|
69 |
throw new Exception("This test should fail");
|
|
70 |
} catch (GSSException gsse) {
|
|
71 |
KrbException ke = (KrbException)gsse.getCause();
|
|
72 |
if (ke.returnCode() != Krb5.KRB_AP_ERR_BADKEYVER) {
|
|
73 |
throw new Exception("Not expected failure code: " +
|
|
74 |
ke.returnCode());
|
|
75 |
}
|
|
76 |
}
|
4168
|
77 |
}
|
|
78 |
|
4532
|
79 |
static void go(String server, String entry, char[] pass) throws Exception {
|
4168
|
80 |
Context c, s;
|
4532
|
81 |
|
|
82 |
// Part 1: Test keytab
|
4168
|
83 |
c = Context.fromUserPass("dummy", "bogus".toCharArray(), false);
|
|
84 |
s = Context.fromJAAS(entry);
|
|
85 |
|
|
86 |
c.startAsClient(server, GSSUtil.GSS_KRB5_MECH_OID);
|
|
87 |
s.startAsServer(GSSUtil.GSS_KRB5_MECH_OID);
|
|
88 |
|
|
89 |
Context.handshake(c, s);
|
|
90 |
|
|
91 |
s.dispose();
|
|
92 |
c.dispose();
|
4532
|
93 |
|
|
94 |
// Part 2: Test username/password pair
|
|
95 |
c = Context.fromUserPass("dummy", "bogus".toCharArray(), false);
|
|
96 |
s = Context.fromUserPass(p.getNameString(), pass, true);
|
|
97 |
|
|
98 |
c.startAsClient(server, GSSUtil.GSS_KRB5_MECH_OID);
|
|
99 |
s.startAsServer(GSSUtil.GSS_KRB5_MECH_OID);
|
|
100 |
|
|
101 |
Context.handshake(c, s);
|
|
102 |
|
|
103 |
s.dispose();
|
|
104 |
c.dispose();
|
4168
|
105 |
}
|
|
106 |
}
|