blob: c59f91b97c34ffca5726e7c4848ec4597ff99841 [file] [log] [blame]
/*
* 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.directory.server.core.security;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.Key;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.KeyStoreSpi;
import java.security.NoSuchAlgorithmException;
import java.security.UnrecoverableKeyException;
import java.security.cert.Certificate;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.util.Date;
import java.util.Enumeration;
import java.util.Objects;
import org.apache.directory.api.ldap.model.entry.Entry;
import org.apache.directory.api.ldap.model.exception.LdapException;
import org.apache.directory.api.ldap.model.name.Dn;
import org.apache.directory.api.util.SingletonEnumeration;
import org.apache.directory.api.util.exception.NotImplementedException;
import org.apache.directory.server.constants.ServerDNConstants;
import org.apache.directory.server.core.api.DirectoryService;
import org.apache.directory.server.i18n.I18n;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A read only key store facility designed specifically for TLS/CA operations.
* It is only intended for accessing the 'apacheds' private/public key pairs
* as well as the self signed certificate.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class CoreKeyStoreSpi extends KeyStoreSpi
{
private static final String APACHEDS_ALIAS = "apacheds";
private static final Logger LOG = LoggerFactory.getLogger( CoreKeyStoreSpi.class );
private DirectoryService directoryService;
private KeyStore keyStore;
/**
* Creates a new instance of LocalKeyStore.
* @param directoryService The DirectoryService instance
*/
public CoreKeyStoreSpi( DirectoryService directoryService )
{
LOG.debug( "Constructor called." );
this.directoryService = directoryService;
}
public void setKeyStore( KeyStore keyStore )
{
this.keyStore = keyStore;
}
private Entry getTlsEntry() throws LdapException
{
Dn adminDn = directoryService.getDnFactory().create( ServerDNConstants.ADMIN_SYSTEM_DN );
return directoryService.getAdminSession().lookup( adminDn );
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineAliases()
*/
@Override
public Enumeration<String> engineAliases()
{
LOG.debug( "engineAliases() called." );
return new SingletonEnumeration<>( APACHEDS_ALIAS );
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineContainsAlias(java.lang.String)
*/
@Override
public boolean engineContainsAlias( String alias )
{
LOG.debug( "engineContainsAlias({}) called.", alias );
return alias.equalsIgnoreCase( APACHEDS_ALIAS );
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineDeleteEntry(java.lang.String)
*/
@Override
public void engineDeleteEntry( String alias ) throws KeyStoreException
{
LOG.debug( "engineDeleteEntry({}) called.", alias );
throw new UnsupportedOperationException();
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineGetCertificate(java.lang.String)
*/
@Override
public Certificate engineGetCertificate( String alias )
{
LOG.debug( "engineGetCertificate({}) called.", alias );
if ( alias.equalsIgnoreCase( APACHEDS_ALIAS ) )
{
try
{
return keyStore.getCertificate( alias );
//Entry entry = getTlsEntry();
//return TlsKeyGenerator.getCertificate( entry );
}
catch ( Exception e )
{
LOG.error( I18n.err( I18n.ERR_65 ), e );
}
}
return null;
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineGetCertificateAlias(java.security.cert.Certificate)
*/
@Override
public String engineGetCertificateAlias( Certificate cert )
{
LOG.debug( "engineGetCertificateAlias({}) called.", cert );
if ( cert instanceof X509Certificate )
{
LOG.debug( "Certificate in alias request is X.509 based." );
X509Certificate xcert = ( X509Certificate ) cert;
if ( xcert.getIssuerDN().toString().equals( TlsKeyGenerator.CERTIFICATE_PRINCIPAL_DN ) )
{
return APACHEDS_ALIAS;
}
}
try
{
Certificate certificate = keyStore.getCertificate( APACHEDS_ALIAS );
if ( Objects.deepEquals( cert.getEncoded(), certificate.getEncoded() ) )
{
return APACHEDS_ALIAS;
}
/*
Entry entry = getTlsEntry();
if ( Objects.deepEquals( cert.getEncoded(), entry.get( TlsKeyGenerator.USER_CERTIFICATE_AT ).getBytes() ) )
{
return APACHEDS_ALIAS;
}
*/
}
catch ( Exception e )
{
LOG.error( I18n.err( I18n.ERR_66 ), e );
}
return null;
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineGetCertificateChain(java.lang.String)
*/
@Override
public Certificate[] engineGetCertificateChain( String alias )
{
LOG.debug( "engineGetCertificateChain({}) called.", alias );
try
{
Entry entry = getTlsEntry();
LOG.debug( "Entry:\n{}", entry );
return new Certificate[]
{
keyStore.getCertificate( alias )
};
//{ TlsKeyGenerator.getCertificate( entry ) };
}
catch ( Exception e )
{
LOG.error( I18n.err( I18n.ERR_66 ), e );
}
return new Certificate[0];
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineGetCreationDate(java.lang.String)
*/
@Override
public Date engineGetCreationDate( String alias )
{
LOG.debug( "engineGetCreationDate({}) called.", alias );
return new Date();
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineGetKey(java.lang.String, char[])
*/
@Override
public Key engineGetKey( String alias, char[] password ) throws NoSuchAlgorithmException, UnrecoverableKeyException
{
LOG.debug( "engineGetKey({}, {}) called.", alias, password );
try
{
return keyStore.getKey( alias, password );
/*
Entry entry = getTlsEntry();
KeyPair keyPair = TlsKeyGenerator.getKeyPair( entry );
return keyPair.getPrivate();
*/
}
catch ( Exception e )
{
LOG.error( I18n.err( I18n.ERR_68 ), e );
}
return null;
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineIsCertificateEntry(java.lang.String)
*/
@Override
public boolean engineIsCertificateEntry( String alias )
{
LOG.debug( "engineIsCertificateEntry({}) called.", alias );
return false;
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineIsKeyEntry(java.lang.String)
*/
@Override
public boolean engineIsKeyEntry( String alias )
{
LOG.debug( "engineIsKeyEntry({}) called.", alias );
return true;
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineLoad(java.io.InputStream, char[])
*/
@Override
public void engineLoad( InputStream stream, char[] password ) throws IOException, NoSuchAlgorithmException,
CertificateException
{
LOG.debug( "engineLoad({}, {}) called.", stream, password );
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineSetCertificateEntry(java.lang.String, java.security.cert.Certificate)
*/
@Override
public void engineSetCertificateEntry( String alias, Certificate cert ) throws KeyStoreException
{
LOG.debug( "engineSetCertificateEntry({}, {}) called.", alias, cert );
throw new NotImplementedException();
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineSetKeyEntry(java.lang.String, byte[], java.security.cert.Certificate[])
*/
@Override
public void engineSetKeyEntry( String alias, byte[] key, Certificate[] chain ) throws KeyStoreException
{
LOG.debug( "engineSetKeyEntry({}, key, {}) called.", alias, chain );
throw new NotImplementedException();
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineSetKeyEntry(java.lang.String, java.security.Key, char[], java.security.cert.Certificate[])
*/
@Override
public void engineSetKeyEntry( String alias, Key key, char[] password, Certificate[] chain )
throws KeyStoreException
{
if ( LOG.isDebugEnabled() )
{
LOG.debug( "engineSetKeyEntry({}, key, {}, chain) called.", alias, new String( password ) );
}
throw new NotImplementedException();
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineSize()
*/
@Override
public int engineSize()
{
if ( LOG.isDebugEnabled() )
{
LOG.debug( "engineSize() called." );
}
return 1;
}
/* (non-Javadoc)
* @see java.security.KeyStoreSpi#engineStore(java.io.OutputStream, char[])
*/
@Override
public void engineStore( OutputStream stream, char[] password ) throws IOException, NoSuchAlgorithmException,
CertificateException
{
if ( LOG.isDebugEnabled() )
{
LOG.debug( "engineStore(stream, {}) called.", new String( password ) );
}
}
}