Skip to content

Commit 31a1f9c

Browse files
committedApr 16, 2024
8307143: CredentialsCache.cacheName should not be static
Reviewed-by: valeriep
1 parent 274c805 commit 31a1f9c

File tree

5 files changed

+92
-118
lines changed

5 files changed

+92
-118
lines changed
 

‎src/java.security.jgss/share/classes/sun/security/krb5/internal/ccache/CredentialsCache.java

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2022, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -44,8 +44,6 @@
4444
* @author Yanni Zhang
4545
*/
4646
public abstract class CredentialsCache {
47-
static String cacheName;
48-
4947
public static CredentialsCache getInstance(PrincipalName principal) {
5048
return FileCredentialsCache.acquireInstance(principal, null);
5149
}
@@ -105,9 +103,7 @@ public static CredentialsCache create(PrincipalName principal) {
105103
return (FileCredentialsCache.New(principal));
106104
}
107105

108-
public static String cacheName() {
109-
return cacheName;
110-
}
106+
public abstract String cacheName();
111107

112108
public abstract PrincipalName getPrimaryPrincipal();
113109
public abstract void update(Credentials c);

‎src/java.security.jgss/share/classes/sun/security/krb5/internal/ccache/FileCredentialsCache.java

+36-33
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,18 @@
6666
*/
6767

6868
public class FileCredentialsCache extends CredentialsCache
69-
implements FileCCacheConstants {
69+
implements FileCCacheConstants {
7070
public int version;
7171
public Tag tag; // optional
7272
public PrincipalName primaryPrincipal;
7373
private Vector<Credentials> credentialsList;
7474

75+
private final String localCacheName;
76+
7577
public static synchronized FileCredentialsCache acquireInstance(
7678
PrincipalName principal, String cache) {
7779
try {
78-
FileCredentialsCache fcc = new FileCredentialsCache();
80+
String cacheName;
7981
if (cache == null) {
8082
cacheName = FileCredentialsCache.getDefaultCacheName();
8183
} else {
@@ -85,10 +87,11 @@ public static synchronized FileCredentialsCache acquireInstance(
8587
// invalid cache name or the file doesn't exist
8688
return null;
8789
}
90+
FileCredentialsCache fcc = new FileCredentialsCache(cacheName);
8891
if (principal != null) {
8992
fcc.primaryPrincipal = principal;
9093
}
91-
fcc.load(cacheName);
94+
fcc.load();
9295
return fcc;
9396
} catch (IOException | KrbException e) {
9497
// we don't handle it now, instead we return a null at the end.
@@ -106,13 +109,13 @@ public static FileCredentialsCache acquireInstance() {
106109
static synchronized FileCredentialsCache New(PrincipalName principal,
107110
String name) {
108111
try {
109-
FileCredentialsCache fcc = new FileCredentialsCache();
110-
cacheName = FileCredentialsCache.checkValidation(name);
112+
String cacheName = FileCredentialsCache.checkValidation(name);
111113
if (cacheName == null) {
112-
// invalid cache name or the file doesn't exist
114+
// invalid cache name
113115
return null;
114116
}
115-
fcc.init(principal, cacheName);
117+
FileCredentialsCache fcc = new FileCredentialsCache(cacheName);
118+
fcc.init(principal);
116119
return fcc;
117120
}
118121
catch (IOException | KrbException e) {
@@ -122,9 +125,9 @@ static synchronized FileCredentialsCache New(PrincipalName principal,
122125

123126
static synchronized FileCredentialsCache New(PrincipalName principal) {
124127
try {
125-
FileCredentialsCache fcc = new FileCredentialsCache();
126-
cacheName = FileCredentialsCache.getDefaultCacheName();
127-
fcc.init(principal, cacheName);
128+
String cacheName = FileCredentialsCache.getDefaultCacheName();
129+
FileCredentialsCache fcc = new FileCredentialsCache(cacheName);
130+
fcc.init(principal);
128131
return fcc;
129132
}
130133
catch (IOException | KrbException e) {
@@ -135,29 +138,29 @@ static synchronized FileCredentialsCache New(PrincipalName principal) {
135138
return null;
136139
}
137140

138-
private FileCredentialsCache() {
141+
private FileCredentialsCache(String cacheName) {
142+
localCacheName = cacheName;
139143
}
140144

141-
boolean exists(String cache) {
142-
File file = new File(cache);
143-
return file.exists();
145+
@Override
146+
public String cacheName() {
147+
return localCacheName;
144148
}
145149

146-
synchronized void init(PrincipalName principal, String name)
147-
throws IOException, KrbException {
150+
synchronized void init(PrincipalName principal)
151+
throws IOException, KrbException {
148152
primaryPrincipal = principal;
149-
try (FileOutputStream fos = new FileOutputStream(name);
153+
try (FileOutputStream fos = new FileOutputStream(localCacheName);
150154
CCacheOutputStream cos = new CCacheOutputStream(fos)) {
151155
version = KRB5_FCC_FVNO_3;
152156
cos.writeHeader(primaryPrincipal, version);
153157
}
154-
load(name);
158+
load();
155159
}
156160

157-
synchronized void load(String name) throws IOException, KrbException {
158-
PrincipalName p;
159-
try (FileInputStream fis = new FileInputStream(name);
160-
CCacheInputStream cis = new CCacheInputStream(fis)) {
161+
synchronized void load() throws IOException, KrbException {
162+
try (FileInputStream fis = new FileInputStream(localCacheName);
163+
CCacheInputStream cis = new CCacheInputStream(fis)) {
161164
version = cis.readVersion();
162165
if (version == KRB5_FCC_FVNO_4) {
163166
tag = cis.readTag();
@@ -167,14 +170,15 @@ synchronized void load(String name) throws IOException, KrbException {
167170
cis.setNativeByteOrder();
168171
}
169172
}
170-
p = cis.readPrincipal(version);
173+
PrincipalName p = cis.readPrincipal(version);
171174

172175
if (primaryPrincipal != null) {
173176
if (!(primaryPrincipal.match(p))) {
174177
throw new IOException("Primary principals don't match.");
175178
}
176-
} else
179+
} else {
177180
primaryPrincipal = p;
181+
}
178182
credentialsList = new Vector<>();
179183
while (cis.available() > 0) {
180184
Object cred = cis.readCred(version);
@@ -245,8 +249,8 @@ public synchronized PrincipalName getPrimaryPrincipal() {
245249
* Saves the credentials cache file to the disk.
246250
*/
247251
public synchronized void save() throws IOException, Asn1Exception {
248-
try (FileOutputStream fos = new FileOutputStream(cacheName);
249-
CCacheOutputStream cos = new CCacheOutputStream(fos)) {
252+
try (FileOutputStream fos = new FileOutputStream(localCacheName);
253+
CCacheOutputStream cos = new CCacheOutputStream(fos)) {
250254
cos.writeHeader(primaryPrincipal, version);
251255
Credentials[] tmp;
252256
if ((tmp = getCredsList()) != null) {
@@ -533,12 +537,10 @@ public static String checkValidation(String name) {
533537
// get absolute directory
534538
File temp = new File(fCheck.getParent());
535539
// test if the directory exists
536-
if (!(temp.isDirectory()))
540+
if (!(temp.isDirectory())) {
537541
fullname = null;
538-
temp = null;
542+
}
539543
}
540-
fCheck = null;
541-
542544
} catch (IOException e) {
543545
fullname = null; // invalid name
544546
}
@@ -554,7 +556,6 @@ private static String exec(String c) {
554556
}
555557
final String[] command = v.toArray(new String[0]);
556558
try {
557-
558559
@SuppressWarnings("removal")
559560
Process p =
560561
java.security.AccessController.doPrivileged
@@ -582,13 +583,15 @@ private static String exec(String c) {
582583
while ((s1 = commandResult.readLine()) != null) {
583584
if (s1.length() >= 11) {
584585
if ((s1.substring(0, 11)).equalsIgnoreCase
585-
("KRB5CCNAME=")) {
586+
("KRB5CCNAME=")) {
586587
s1 = s1.substring(11);
587588
break;
588589
}
589590
}
590591
}
591-
} else s1 = commandResult.readLine();
592+
} else {
593+
s1 = commandResult.readLine();
594+
}
592595
commandResult.close();
593596
return s1;
594597
} catch (Exception e) {

‎src/java.security.jgss/share/classes/sun/security/krb5/internal/ccache/MemoryCredentialsCache.java

-73
This file was deleted.

‎src/java.security.jgss/windows/classes/sun/security/krb5/internal/tools/Klist.java

+8-6
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,12 @@ public int run(String[] args) {
144144
switch (action) {
145145
case 'c':
146146
if (name == null) {
147-
target = CredentialsCache.getInstance();
148-
name = CredentialsCache.cacheName();
149-
} else
147+
CredentialsCache cc = CredentialsCache.getInstance();
148+
target = cc;
149+
name = cc.cacheName();
150+
} else {
150151
target = CredentialsCache.getInstance(name);
151-
152+
}
152153
if (target != null) {
153154
return displayCache();
154155
} else {
@@ -172,8 +173,9 @@ public int run(String[] args) {
172173
printHelp();
173174
return -1;
174175
} else {
175-
target = CredentialsCache.getInstance();
176-
name = CredentialsCache.cacheName();
176+
CredentialsCache cc = CredentialsCache.getInstance();
177+
target = cc;
178+
name = cc.cacheName();
177179
if (target != null) {
178180
return displayCache();
179181
} else {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/*
2+
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
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+
*
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.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8307143
27+
* @summary CredentialsCache.cacheName should not be static
28+
* @modules java.security.jgss/sun.security.krb5
29+
* java.security.jgss/sun.security.krb5.internal.ccache
30+
* @library /test/lib
31+
*/
32+
33+
import jdk.test.lib.Asserts;
34+
import sun.security.krb5.PrincipalName;
35+
import sun.security.krb5.internal.ccache.CredentialsCache;
36+
37+
public class TwoFiles {
38+
public static void main(String[] args) throws Exception {
39+
PrincipalName pn = new PrincipalName("me@HERE");
40+
CredentialsCache cc1 = CredentialsCache.create(pn, "cc1");
41+
CredentialsCache cc2 = CredentialsCache.create(pn, "cc2");
42+
// name is canonicalized
43+
Asserts.assertTrue(cc1.cacheName().endsWith("cc1"), cc1.cacheName());
44+
Asserts.assertTrue(cc2.cacheName().endsWith("cc2"), cc2.cacheName());
45+
}
46+
}

0 commit comments

Comments
 (0)
Please sign in to comment.