Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix][client] Fixed an issue where a cert chain could not be used in TLS authentication #23644

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@
import java.security.Principal;
import java.security.PrivateKey;
import java.security.UnrecoverableKeyException;
import java.security.cert.Certificate;
import java.security.cert.CertificateException;
import java.security.cert.CertificateFactory;
import java.security.cert.X509Certificate;
import java.util.List;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
import javax.net.ssl.KeyManagerFactory;
import javax.net.ssl.SSLEngine;
import javax.net.ssl.X509ExtendedKeyManager;
Expand Down Expand Up @@ -88,18 +91,16 @@ private void updateKeyManager()
return;
}

X509Certificate certificate;
PrivateKey privateKey = null;
KeyStore keyStore;
try (InputStream publicCertStream = new FileInputStream(certFile.getFileName());
InputStream privateKeyStream = new FileInputStream(keyFile.getFileName())) {
final KeyStore keyStore;
try (InputStream publicCertStream = new FileInputStream(certFile.getFileName())) {
final CertificateFactory cf = CertificateFactory.getInstance("X.509");
certificate = (X509Certificate) cf.generateCertificate(publicCertStream);
final List<X509Certificate> certificateList = cf.generateCertificates(publicCertStream)
.stream().map(o -> (X509Certificate) o).collect(Collectors.toList());
keyStore = KeyStore.getInstance("JKS");
String alias = certificate.getSubjectX500Principal().getName();
privateKey = SecurityUtility.loadPrivateKeyFromPemFile(keyFile.getFileName());
final String alias = certificateList.get(0).getSubjectX500Principal().getName();
final PrivateKey privateKey = SecurityUtility.loadPrivateKeyFromPemFile(keyFile.getFileName());
keyStore.load(null);
keyStore.setKeyEntry(alias, privateKey, KEYSTORE_PASSWORD, new X509Certificate[] { certificate });
keyStore.setKeyEntry(alias, privateKey, KEYSTORE_PASSWORD, certificateList.toArray(new Certificate[0]));
} catch (IOException | KeyManagementException e) {
throw new IllegalArgumentException(e);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package org.apache.pulsar.common.util;

import static org.testng.Assert.assertEquals;
import com.google.common.io.Resources;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import lombok.Cleanup;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;

public class KeyManagerProxyTest {

@DataProvider(name = "certDataProvider")
public static Object[][] caDataProvider() {
return new Object[][]{
{"ca/multiple-ca.pem", 2},
{"ca/single-ca.pem", 1}
};
}

@Test(dataProvider = "certDataProvider")
public void testLoadCert(String path, int certCount) {
final String certFilePath = Resources.getResource(path).getPath();
// This key is not paired with certs, but this is not a problem as the key is not used in this test
final String keyFilePath = Resources.getResource("ssl/my-ca/client-key.pem").getPath();
@Cleanup("shutdownNow")
final ScheduledExecutorService scheduledExecutor = Executors.newSingleThreadScheduledExecutor();
lhotari marked this conversation as resolved.
Show resolved Hide resolved

final KeyManagerProxy keyManager = new KeyManagerProxy(certFilePath, keyFilePath, 60, scheduledExecutor);
assertEquals(keyManager.getCertificateChain("cn=test1").length, certCount);
}
}
Loading