Skip to content

Commit

Permalink
8328864: NullPointerException in sun.security.jca.ProviderList.getSer…
Browse files Browse the repository at this point in the history
…vice()

Reviewed-by: weijun
  • Loading branch information
blperez01 authored and wangweij committed May 2, 2024
1 parent 73cdc9a commit cd3a607
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,17 +369,19 @@ public Service getService(String type, String name) {
int i;

// Preferred provider list
if (preferredPropList != null &&
(pList = preferredPropList.getAll(type, name)) != null) {
if (preferredPropList != null) {
pList = preferredPropList.getAll(type, name);
for (i = 0; i < pList.size(); i++) {
Provider p = getProvider(pList.get(i).provider);
if (p == null) {
continue;
}
Service s = p.getService(type, name);
if (s != null) {
return s;
}
}
}

for (i = 0; i < configs.length; i++) {
Provider p = getProvider(i);
Service s = p.getService(type, name);
Expand Down
41 changes: 41 additions & 0 deletions test/jdk/sun/security/jca/NullPreferredList.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

import java.security.*;

/**
* @test
* @bug 8328864
* @summary Test that ProviderList.getService checks configs when
* ProviderList.getProvider fails for preferred providers.
* @run main/othervm
* -Djava.security.properties=${test.src}/app-security.properties NullPreferredList
*/

public class NullPreferredList {

public static void main(final String[] args) throws Exception {
final KeyStore ks = KeyStore.getInstance("PKCS12");
System.out.println("Got keystore " + ks);
}
}
1 change: 1 addition & 0 deletions test/jdk/sun/security/jca/app-security.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
jdk.security.provider.preferred=KeyStore.PKCS12:NonExistingProvider

1 comment on commit cd3a607

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.