blob: 6d0f50c70c690e51edcfd6e21ae181a8c5bb1e2d [file] [log] [blame]
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed 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.harmony.xnet.provider.jsse;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.security.KeyStore;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.cert.X509Certificate;
import java.util.Arrays;
import java.util.Collections;
import java.util.Enumeration;
import java.util.HashSet;
import java.util.NoSuchElementException;
import java.util.Set;
import javax.security.auth.x500.X500Principal;
import junit.framework.TestCase;
import libcore.java.security.TestKeyStore;
public class TrustedCertificateStoreTest extends TestCase {
private static final File DIR_TEMP = new File(System.getProperty("java.io.tmpdir"));
private static final File DIR_TEST = new File(DIR_TEMP, "test");
private static final File DIR_SYSTEM = new File(DIR_TEST, "system");
private static final File DIR_ADDED = new File(DIR_TEST, "added");
private static final File DIR_DELETED = new File(DIR_TEST, "removed");
private static X509Certificate CA1;
private static X509Certificate CA2;
private static KeyStore.PrivateKeyEntry PRIVATE;
private static X509Certificate[] CHAIN;
private static X509Certificate CA3_WITH_CA1_SUBJECT;
private static String ALIAS_SYSTEM_CA1;
private static String ALIAS_SYSTEM_CA2;
private static String ALIAS_USER_CA1;
private static String ALIAS_USER_CA2;
private static String ALIAS_SYSTEM_CHAIN0;
private static String ALIAS_SYSTEM_CHAIN1;
private static String ALIAS_SYSTEM_CHAIN2;
private static String ALIAS_USER_CHAIN0;
private static String ALIAS_USER_CHAIN1;
private static String ALIAS_USER_CHAIN2;
private static String ALIAS_SYSTEM_CA3;
private static String ALIAS_SYSTEM_CA3_COLLISION;
private static String ALIAS_USER_CA3;
private static String ALIAS_USER_CA3_COLLISION;
private static X509Certificate getCa1() {
initCerts();
return CA1;
}
private static X509Certificate getCa2() {
initCerts();
return CA2;
}
private static KeyStore.PrivateKeyEntry getPrivate() {
initCerts();
return PRIVATE;
}
private static X509Certificate[] getChain() {
initCerts();
return CHAIN;
}
private static X509Certificate getCa3WithCa1Subject() {
initCerts();
return CA3_WITH_CA1_SUBJECT;
}
private static String getAliasSystemCa1() {
initCerts();
return ALIAS_SYSTEM_CA1;
}
private static String getAliasSystemCa2() {
initCerts();
return ALIAS_SYSTEM_CA2;
}
private static String getAliasUserCa1() {
initCerts();
return ALIAS_USER_CA1;
}
private static String getAliasUserCa2() {
initCerts();
return ALIAS_USER_CA2;
}
private static String getAliasSystemChain0() {
initCerts();
return ALIAS_SYSTEM_CHAIN0;
}
private static String getAliasSystemChain1() {
initCerts();
return ALIAS_SYSTEM_CHAIN1;
}
private static String getAliasSystemChain2() {
initCerts();
return ALIAS_SYSTEM_CHAIN2;
}
private static String getAliasUserChain0() {
initCerts();
return ALIAS_USER_CHAIN0;
}
private static String getAliasUserChain1() {
initCerts();
return ALIAS_USER_CHAIN1;
}
private static String getAliasUserChain2() {
initCerts();
return ALIAS_USER_CHAIN2;
}
private static String getAliasSystemCa3() {
initCerts();
return ALIAS_SYSTEM_CA3;
}
private static String getAliasSystemCa3Collision() {
initCerts();
return ALIAS_SYSTEM_CA3_COLLISION;
}
private static String getAliasUserCa3() {
initCerts();
return ALIAS_USER_CA3;
}
private static String getAliasUserCa3Collision() {
initCerts();
return ALIAS_USER_CA3_COLLISION;
}
/**
* Lazily create shared test certificates.
*/
private static synchronized void initCerts() {
if (CA1 != null) {
return;
}
try {
CA1 = TestKeyStore.getClient().getRootCertificate("RSA");
CA2 = TestKeyStore.getClientCA2().getRootCertificate("RSA");
PRIVATE = TestKeyStore.getServer().getPrivateKey("RSA", "RSA");
CHAIN = (X509Certificate[]) PRIVATE.getCertificateChain();
CA3_WITH_CA1_SUBJECT = new TestKeyStore.Builder()
.aliasPrefix("unused")
.subject(CA1.getSubjectX500Principal())
.ca(true)
.build().getRootCertificate("RSA");
ALIAS_SYSTEM_CA1 = alias(false, CA1, 0);
ALIAS_SYSTEM_CA2 = alias(false, CA2, 0);
ALIAS_USER_CA1 = alias(true, CA1, 0);
ALIAS_USER_CA2 = alias(true, CA2, 0);
ALIAS_SYSTEM_CHAIN0 = alias(false, getChain()[0], 0);
ALIAS_SYSTEM_CHAIN1 = alias(false, getChain()[1], 0);
ALIAS_SYSTEM_CHAIN2 = alias(false, getChain()[2], 0);
ALIAS_USER_CHAIN0 = alias(true, getChain()[0], 0);
ALIAS_USER_CHAIN1 = alias(true, getChain()[1], 0);
ALIAS_USER_CHAIN2 = alias(true, getChain()[2], 0);
ALIAS_SYSTEM_CA3 = alias(false, CA3_WITH_CA1_SUBJECT, 0);
ALIAS_SYSTEM_CA3_COLLISION = alias(false, CA3_WITH_CA1_SUBJECT, 1);
ALIAS_USER_CA3 = alias(true, CA3_WITH_CA1_SUBJECT, 0);
ALIAS_USER_CA3_COLLISION = alias(true, CA3_WITH_CA1_SUBJECT, 1);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private TrustedCertificateStore store;
@Override protected void setUp() {
setupStore();
}
private void setupStore() {
DIR_SYSTEM.mkdirs();
createStore();
}
private void createStore() {
store = new TrustedCertificateStore(DIR_SYSTEM, DIR_ADDED, DIR_DELETED);
}
@Override protected void tearDown() {
cleanStore();
}
private void cleanStore() {
for (File dir : new File[] { DIR_SYSTEM, DIR_ADDED, DIR_DELETED, DIR_TEST }) {
File[] files = dir.listFiles();
if (files == null) {
continue;
}
for (File file : files) {
assertTrue(file.delete());
}
}
store = null;
}
private void resetStore() {
cleanStore();
setupStore();
}
public void testEmptyDirectories() throws Exception {
assertEmpty();
}
public void testOneSystemOneDeleted() throws Exception {
install(getCa1(), getAliasSystemCa1());
store.deleteCertificateEntry(getAliasSystemCa1());
assertEmpty();
assertDeleted(getCa1(), getAliasSystemCa1());
}
public void testTwoSystemTwoDeleted() throws Exception {
install(getCa1(), getAliasSystemCa1());
store.deleteCertificateEntry(getAliasSystemCa1());
install(getCa2(), getAliasSystemCa2());
store.deleteCertificateEntry(getAliasSystemCa2());
assertEmpty();
assertDeleted(getCa1(), getAliasSystemCa1());
assertDeleted(getCa2(), getAliasSystemCa2());
}
public void testPartialFileIsIgnored() throws Exception {
File file = file(getAliasSystemCa1());
OutputStream os = new FileOutputStream(file);
os.write(0);
os.close();
assertTrue(file.exists());
assertEmpty();
assertTrue(file.exists());
}
private void assertEmpty() throws Exception {
try {
store.getCertificate(null);
fail();
} catch (NullPointerException expected) {
}
assertNull(store.getCertificate(""));
try {
store.getCreationDate(null);
fail();
} catch (NullPointerException expected) {
}
assertNull(store.getCreationDate(""));
Set<String> s = store.aliases();
assertNotNull(s);
assertTrue(s.isEmpty());
assertAliases();
Set<String> u = store.userAliases();
assertNotNull(u);
assertTrue(u.isEmpty());
try {
store.containsAlias(null);
fail();
} catch (NullPointerException expected) {
}
assertFalse(store.containsAlias(""));
assertNull(store.getCertificateAlias(null));
assertNull(store.getCertificateAlias(getCa1()));
try {
store.isTrustAnchor(null);
fail();
} catch (NullPointerException expected) {
}
assertFalse(store.isTrustAnchor(getCa1()));
try {
store.findIssuer(null);
fail();
} catch (NullPointerException expected) {
}
assertNull(store.findIssuer(getCa1()));
try {
store.installCertificate(null);
fail();
} catch (NullPointerException expected) {
}
store.deleteCertificateEntry(null);
store.deleteCertificateEntry("");
String[] userFiles = DIR_ADDED.list();
assertTrue(userFiles == null || userFiles.length == 0);
}
public void testTwoSystem() throws Exception {
testTwo(getCa1(), getAliasSystemCa1(),
getCa2(), getAliasSystemCa2());
}
public void testTwoUser() throws Exception {
testTwo(getCa1(), getAliasUserCa1(),
getCa2(), getAliasUserCa2());
}
public void testOneSystemOneUser() throws Exception {
testTwo(getCa1(), getAliasSystemCa1(),
getCa2(), getAliasUserCa2());
}
public void testTwoSystemSameSubject() throws Exception {
testTwo(getCa1(), getAliasSystemCa1(),
getCa3WithCa1Subject(), getAliasSystemCa3Collision());
}
public void testTwoUserSameSubject() throws Exception {
testTwo(getCa1(), getAliasUserCa1(),
getCa3WithCa1Subject(), getAliasUserCa3Collision());
store.deleteCertificateEntry(getAliasUserCa1());
assertDeleted(getCa1(), getAliasUserCa1());
assertTombstone(getAliasUserCa1());
assertRootCa(getCa3WithCa1Subject(), getAliasUserCa3Collision());
assertAliases(getAliasUserCa3Collision());
store.deleteCertificateEntry(getAliasUserCa3Collision());
assertDeleted(getCa3WithCa1Subject(), getAliasUserCa3Collision());
assertNoTombstone(getAliasUserCa3Collision());
assertNoTombstone(getAliasUserCa1());
assertEmpty();
}
public void testOneSystemOneUserSameSubject() throws Exception {
testTwo(getCa1(), getAliasSystemCa1(),
getCa3WithCa1Subject(), getAliasUserCa3());
testTwo(getCa1(), getAliasUserCa1(),
getCa3WithCa1Subject(), getAliasSystemCa3());
}
private void testTwo(X509Certificate x1, String alias1,
X509Certificate x2, String alias2) {
install(x1, alias1);
install(x2, alias2);
assertRootCa(x1, alias1);
assertRootCa(x2, alias2);
assertAliases(alias1, alias2);
}
public void testOneSystemOneUserOneDeleted() throws Exception {
install(getCa1(), getAliasSystemCa1());
store.installCertificate(getCa2());
store.deleteCertificateEntry(getAliasSystemCa1());
assertDeleted(getCa1(), getAliasSystemCa1());
assertRootCa(getCa2(), getAliasUserCa2());
assertAliases(getAliasUserCa2());
}
public void testOneSystemOneUserOneDeletedSameSubject() throws Exception {
install(getCa1(), getAliasSystemCa1());
store.installCertificate(getCa3WithCa1Subject());
store.deleteCertificateEntry(getAliasSystemCa1());
assertDeleted(getCa1(), getAliasSystemCa1());
assertRootCa(getCa3WithCa1Subject(), getAliasUserCa3());
assertAliases(getAliasUserCa3());
}
public void testUserMaskingSystem() throws Exception {
install(getCa1(), getAliasSystemCa1());
install(getCa1(), getAliasUserCa1());
assertMasked(getCa1(), getAliasSystemCa1());
assertRootCa(getCa1(), getAliasUserCa1());
assertAliases(getAliasSystemCa1(), getAliasUserCa1());
}
public void testChain() throws Exception {
testChain(getAliasSystemChain1(), getAliasSystemChain2());
testChain(getAliasSystemChain1(), getAliasUserChain2());
testChain(getAliasUserChain1(), getAliasSystemCa1());
testChain(getAliasUserChain1(), getAliasUserChain2());
}
private void testChain(String alias1, String alias2) throws Exception {
install(getChain()[1], alias1);
install(getChain()[2], alias2);
assertIntermediateCa(getChain()[1], alias1);
assertRootCa(getChain()[2], alias2);
assertAliases(alias1, alias2);
assertEquals(getChain()[2], store.findIssuer(getChain()[1]));
assertEquals(getChain()[1], store.findIssuer(getChain()[0]));
resetStore();
}
public void testMissingSystemDirectory() throws Exception {
cleanStore();
createStore();
assertEmpty();
}
public void testWithExistingUserDirectories() throws Exception {
DIR_ADDED.mkdirs();
DIR_DELETED.mkdirs();
install(getCa1(), getAliasSystemCa1());
assertRootCa(getCa1(), getAliasSystemCa1());
assertAliases(getAliasSystemCa1());
}
public void testIsTrustAnchorWithReissuedgetCa() throws Exception {
PublicKey publicKey = getPrivate().getCertificate().getPublicKey();
PrivateKey privateKey = getPrivate().getPrivateKey();
String name = "CN=CA4";
X509Certificate ca1 = TestKeyStore.createCa(publicKey, privateKey, name);
Thread.sleep(1 * 1000); // wait to ensure CAs vary by expiration
X509Certificate ca2 = TestKeyStore.createCa(publicKey, privateKey, name);
assertFalse(ca1.equals(ca2));
String systemAlias = alias(false, ca1, 0);
install(ca1, systemAlias);
assertRootCa(ca1, systemAlias);
assertTrue(store.isTrustAnchor(ca2));
assertEquals(ca1, store.findIssuer(ca2));
resetStore();
String userAlias = alias(true, ca1, 0);
store.installCertificate(ca1);
assertRootCa(ca1, userAlias);
assertTrue(store.isTrustAnchor(ca2));
assertEquals(ca1, store.findIssuer(ca2));
resetStore();
}
public void testInstallEmpty() throws Exception {
store.installCertificate(getCa1());
assertRootCa(getCa1(), getAliasUserCa1());
assertAliases(getAliasUserCa1());
// reinstalling should not change anything
store.installCertificate(getCa1());
assertRootCa(getCa1(), getAliasUserCa1());
assertAliases(getAliasUserCa1());
}
public void testInstallEmptySystemExists() throws Exception {
install(getCa1(), getAliasSystemCa1());
assertRootCa(getCa1(), getAliasSystemCa1());
assertAliases(getAliasSystemCa1());
// reinstalling should not affect system CA
store.installCertificate(getCa1());
assertRootCa(getCa1(), getAliasSystemCa1());
assertAliases(getAliasSystemCa1());
}
public void testInstallEmptyDeletedSystemExists() throws Exception {
install(getCa1(), getAliasSystemCa1());
store.deleteCertificateEntry(getAliasSystemCa1());
assertEmpty();
assertDeleted(getCa1(), getAliasSystemCa1());
// installing should restore deleted system CA
store.installCertificate(getCa1());
assertRootCa(getCa1(), getAliasSystemCa1());
assertAliases(getAliasSystemCa1());
}
public void testDeleteEmpty() throws Exception {
store.deleteCertificateEntry(getAliasSystemCa1());
assertEmpty();
assertDeleted(getCa1(), getAliasSystemCa1());
}
public void testDeleteUser() throws Exception {
store.installCertificate(getCa1());
assertRootCa(getCa1(), getAliasUserCa1());
assertAliases(getAliasUserCa1());
store.deleteCertificateEntry(getAliasUserCa1());
assertEmpty();
assertDeleted(getCa1(), getAliasUserCa1());
assertNoTombstone(getAliasUserCa1());
}
public void testDeleteSystem() throws Exception {
install(getCa1(), getAliasSystemCa1());
assertRootCa(getCa1(), getAliasSystemCa1());
assertAliases(getAliasSystemCa1());
store.deleteCertificateEntry(getAliasSystemCa1());
assertEmpty();
assertDeleted(getCa1(), getAliasSystemCa1());
// deleting again should not change anything
store.deleteCertificateEntry(getAliasSystemCa1());
assertEmpty();
assertDeleted(getCa1(), getAliasSystemCa1());
}
private void assertRootCa(X509Certificate x, String alias) {
assertIntermediateCa(x, alias);
assertEquals(x, store.findIssuer(x));
}
private void assertTrusted(X509Certificate x, String alias) {
assertEquals(x, store.getCertificate(alias));
assertEquals(file(alias).lastModified(), store.getCreationDate(alias).getTime());
assertTrue(store.containsAlias(alias));
assertTrue(store.isTrustAnchor(x));
}
private void assertIntermediateCa(X509Certificate x, String alias) {
assertTrusted(x, alias);
assertEquals(alias, store.getCertificateAlias(x));
}
private void assertMasked(X509Certificate x, String alias) {
assertTrusted(x, alias);
assertFalse(alias.equals(store.getCertificateAlias(x)));
}
private void assertDeleted(X509Certificate x, String alias) {
assertNull(store.getCertificate(alias));
assertFalse(store.containsAlias(alias));
assertNull(store.getCertificateAlias(x));
assertFalse(store.isTrustAnchor(x));
assertEquals(store.allSystemAliases().contains(alias),
store.getCertificate(alias, true) != null);
}
private void assertTombstone(String alias) {
assertTrue(TrustedCertificateStore.isUser(alias));
File file = file(alias);
assertTrue(file.exists());
assertEquals(0, file.length());
}
private void assertNoTombstone(String alias) {
assertTrue(TrustedCertificateStore.isUser(alias));
assertFalse(file(alias).exists());
}
private void assertAliases(String... aliases) {
Set<String> expected = new HashSet<String>(Arrays.asList(aliases));
Set<String> actual = new HashSet<String>();
for (String alias : store.aliases()) {
boolean system = TrustedCertificateStore.isSystem(alias);
boolean user = TrustedCertificateStore.isUser(alias);
if (system || user) {
assertEquals(system, store.allSystemAliases().contains(alias));
assertEquals(user, store.userAliases().contains(alias));
actual.add(alias);
} else {
throw new AssertionError(alias);
}
}
assertEquals(expected, actual);
}
/**
* format a certificate alias
*/
private static String alias(boolean user, X509Certificate x, int index) {
String prefix = user ? "user:" : "system:";
X500Principal subject = x.getSubjectX500Principal();
int intHash = NativeCrypto.X509_NAME_hash_old(subject);
String strHash = IntegralToString.intToHexString(intHash, false, 8);
return prefix + strHash + '.' + index;
}
/**
* Install certificate under specified alias
*/
private static void install(X509Certificate x, String alias) {
try {
File file = file(alias);
file.getParentFile().mkdirs();
OutputStream out = new FileOutputStream(file);
out.write(x.getEncoded());
out.close();
} catch (Exception e) {
throw new RuntimeException(e);
}
}
/**
* Compute file for an alias
*/
private static File file(String alias) {
File dir;
if (TrustedCertificateStore.isSystem(alias)) {
dir = DIR_SYSTEM;
} else if (TrustedCertificateStore.isUser(alias)) {
dir = DIR_ADDED;
} else {
throw new IllegalArgumentException(alias);
}
int index = alias.lastIndexOf(":");
if (index == -1) {
throw new IllegalArgumentException(alias);
}
String filename = alias.substring(index+1);
return new File(dir, filename);
}
}