Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.

Commit 0cc989b

Browse files
committed
8278744: KeyStore:getAttributes() not returning unmodifiable Set
Reviewed-by: mullan
1 parent 475ec8e commit 0cc989b

File tree

2 files changed

+65
-1
lines changed

2 files changed

+65
-1
lines changed

src/java.base/share/classes/sun/security/pkcs12/PKCS12KeyStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1313,7 +1313,7 @@ public Set<KeyStore.Entry.Attribute> engineGetAttributes(String alias) {
13131313
return super.engineGetAttributes(alias);
13141314
}
13151315
Entry entry = entries.get(alias.toLowerCase(Locale.ENGLISH));
1316-
return getAttributes(entry);
1316+
return Collections.unmodifiableSet(new HashSet<>(getAttributes(entry)));
13171317
}
13181318

13191319
/**
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
/*
2+
* Copyright (c) 2021, 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 8278744
27+
* @summary KeyStore:getAttributes() not returning unmodifiable Set
28+
* @library /test/lib
29+
*/
30+
31+
import jdk.test.lib.SecurityTools;
32+
import jdk.test.lib.Utils;
33+
34+
import java.io.File;
35+
import java.security.KeyStore;
36+
37+
public class UnmodifiableAttributes {
38+
public static final void main(String[] args) throws Exception {
39+
40+
var oneAttr = new KeyStore.Entry.Attribute() {
41+
@Override
42+
public String getName() {
43+
return "1.2.3";
44+
}
45+
46+
@Override
47+
public String getValue() {
48+
return "testVal";
49+
}
50+
};
51+
char[] pass = "changeit".toCharArray();
52+
53+
SecurityTools.keytool("-keystore ks -storepass changeit -genkeypair -alias a -dname CN=A -keyalg EC")
54+
.shouldHaveExitValue(0);
55+
56+
KeyStore ks = KeyStore.getInstance(new File("ks"), pass);
57+
58+
var attrs = ks.getAttributes("a");
59+
Utils.runAndCheckException(() -> attrs.add(oneAttr), UnsupportedOperationException.class);
60+
61+
var attrs2 = ks.getEntry("a", new KeyStore.PasswordProtection(pass)).getAttributes();
62+
Utils.runAndCheckException(() -> attrs2.add(oneAttr), UnsupportedOperationException.class);
63+
}
64+
}

0 commit comments

Comments
 (0)