/*
|
* CDDL HEADER START
|
*
|
* The contents of this file are subject to the terms of the
|
* Common Development and Distribution License, Version 1.0 only
|
* (the "License"). You may not use this file except in compliance
|
* with the License.
|
*
|
* You can obtain a copy of the license at
|
* trunk/opends/resource/legal-notices/OpenDS.LICENSE
|
* or https://OpenDS.dev.java.net/OpenDS.LICENSE.
|
* See the License for the specific language governing permissions
|
* and limitations under the License.
|
*
|
* When distributing Covered Code, include this CDDL HEADER in each
|
* file and include the License file at
|
* trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
|
* add the following below this CDDL HEADER, with the fields enclosed
|
* by brackets "[]" replaced with your own identifying information:
|
* Portions Copyright [yyyy] [name of copyright owner]
|
*
|
* CDDL HEADER END
|
*
|
*
|
* Portions Copyright 2007 Sun Microsystems, Inc.
|
*/
|
package org.opends.server.core;
|
|
|
|
import java.lang.reflect.Method;
|
import java.util.ArrayList;
|
import java.util.Iterator;
|
import java.util.List;
|
import java.util.LinkedHashSet;
|
import java.util.concurrent.ConcurrentHashMap;
|
|
import org.opends.server.admin.ClassPropertyDefinition;
|
import org.opends.server.admin.server.ConfigurationAddListener;
|
import org.opends.server.admin.server.ConfigurationChangeListener;
|
import org.opends.server.admin.server.ConfigurationDeleteListener;
|
import org.opends.server.admin.std.meta.VirtualAttributeCfgDefn;
|
import org.opends.server.admin.std.server.VirtualAttributeCfg;
|
import org.opends.server.admin.std.server.RootCfg;
|
import org.opends.server.admin.server.ServerManagementContext;
|
import org.opends.server.api.VirtualAttributeProvider;
|
import org.opends.server.config.ConfigException;
|
import org.opends.server.types.ConfigChangeResult;
|
import org.opends.server.types.DebugLogLevel;
|
import org.opends.server.types.DirectoryException;
|
import org.opends.server.types.DN;
|
import org.opends.server.types.ErrorLogCategory;
|
import org.opends.server.types.ErrorLogSeverity;
|
import org.opends.server.types.InitializationException;
|
import org.opends.server.types.ResultCode;
|
import org.opends.server.types.SearchFilter;
|
import org.opends.server.types.VirtualAttributeRule;
|
|
import static org.opends.server.loggers.ErrorLogger.*;
|
import static org.opends.server.loggers.debug.DebugLogger.*;
|
import org.opends.server.loggers.debug.DebugTracer;
|
import static org.opends.server.messages.ConfigMessages.*;
|
import static org.opends.server.messages.MessageHandler.*;
|
import static org.opends.server.util.StaticUtils.*;
|
|
|
|
/**
|
* This class defines a utility that will be used to manage the set of
|
* virtual attribute providers defined in the Directory Server. It will
|
* initialize the providers when the server starts, and then will manage any
|
* additions, removals, or modifications to any virtual attribute providers
|
* while the server is running.
|
*/
|
public class VirtualAttributeConfigManager
|
implements ConfigurationChangeListener<VirtualAttributeCfg>,
|
ConfigurationAddListener<VirtualAttributeCfg>,
|
ConfigurationDeleteListener<VirtualAttributeCfg>
|
{
|
/**
|
* The tracer object for the debug logger.
|
*/
|
private static final DebugTracer TRACER = getTracer();
|
|
// A mapping between the DNs of the config entries and the associated
|
// virtual attribute rules.
|
private ConcurrentHashMap<DN,VirtualAttributeRule> rules;
|
|
|
|
/**
|
* Creates a new instance of this virtual attribute config manager.
|
*/
|
public VirtualAttributeConfigManager()
|
{
|
rules = new ConcurrentHashMap<DN,VirtualAttributeRule>();
|
}
|
|
|
|
/**
|
* Initializes all virtual attribute providers currently defined in the
|
* Directory Server configuration. This should only be called at Directory
|
* Server startup.
|
*
|
* @throws ConfigException If a configuration problem causes the virtual
|
* attribute provider initialization process to
|
* fail.
|
*
|
* @throws InitializationException If a problem occurs while initializing
|
* the virtual attribute providers that is
|
* not related to the server configuration.
|
*/
|
public void initializeVirtualAttributes()
|
throws ConfigException, InitializationException
|
{
|
// Get the root configuration object.
|
ServerManagementContext managementContext =
|
ServerManagementContext.getInstance();
|
RootCfg rootConfiguration =
|
managementContext.getRootConfiguration();
|
|
|
// Register as an add and delete listener with the root configuration so we
|
// can be notified if any virtual attribute provider entries are added or
|
// removed.
|
rootConfiguration.addVirtualAttributeAddListener(this);
|
rootConfiguration.addVirtualAttributeDeleteListener(this);
|
|
|
//Initialize the existing virtual attribute providers.
|
for (String providerName : rootConfiguration.listVirtualAttributes())
|
{
|
VirtualAttributeCfg cfg =
|
rootConfiguration.getVirtualAttribute(providerName);
|
cfg.addChangeListener(this);
|
|
if (cfg.isEnabled())
|
{
|
String className = cfg.getProviderClass();
|
try
|
{
|
VirtualAttributeProvider<? extends VirtualAttributeCfg> provider =
|
loadProvider(className, cfg, true);
|
|
LinkedHashSet<SearchFilter> filters =
|
new LinkedHashSet<SearchFilter>();
|
for (String filterString : cfg.getFilter())
|
{
|
try
|
{
|
filters.add(SearchFilter.createFilterFromString(filterString));
|
}
|
catch (DirectoryException de)
|
{
|
if (debugEnabled())
|
{
|
TRACER.debugCaught(DebugLogLevel.ERROR, de);
|
}
|
|
int msgID = MSGID_CONFIG_VATTR_INVALID_SEARCH_FILTER;
|
String message = getMessage(msgID, filterString,
|
String.valueOf(cfg.dn()),
|
de.getErrorMessage());
|
throw new ConfigException(msgID, message, de);
|
}
|
}
|
|
if (cfg.getAttributeType().isSingleValue())
|
{
|
if (provider.isMultiValued())
|
{
|
int msgID = MSGID_CONFIG_VATTR_SV_TYPE_WITH_MV_PROVIDER;
|
String message = getMessage(msgID, String.valueOf(cfg.dn()),
|
cfg.getAttributeType().getNameOrOID(),
|
className);
|
throw new ConfigException(msgID, message);
|
}
|
else if (cfg.getConflictBehavior() ==
|
VirtualAttributeCfgDefn.ConflictBehavior.
|
MERGE_REAL_AND_VIRTUAL)
|
{
|
int msgID = MSGID_CONFIG_VATTR_SV_TYPE_WITH_MERGE_VALUES;
|
String message = getMessage(msgID, String.valueOf(cfg.dn()),
|
cfg.getAttributeType().getNameOrOID());
|
throw new ConfigException(msgID, message);
|
}
|
}
|
|
VirtualAttributeRule rule =
|
new VirtualAttributeRule(cfg.getAttributeType(), provider,
|
cfg.getBaseDN(), cfg.getGroupDN(),
|
filters, cfg.getConflictBehavior());
|
rules.put(cfg.dn(), rule);
|
DirectoryServer.registerVirtualAttribute(rule);
|
}
|
catch (InitializationException ie)
|
{
|
logError(ErrorLogCategory.CONFIGURATION,
|
ErrorLogSeverity.SEVERE_ERROR,
|
ie.getMessage(), ie.getMessageID());
|
continue;
|
}
|
}
|
}
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
public boolean isConfigurationAddAcceptable(
|
VirtualAttributeCfg configuration,
|
List<String> unacceptableReasons)
|
{
|
if (configuration.isEnabled())
|
{
|
// Get the name of the class and make sure we can instantiate it as a
|
// virtual attribute provider.
|
String className = configuration.getProviderClass();
|
try
|
{
|
loadProvider(className, configuration, false);
|
}
|
catch (InitializationException ie)
|
{
|
unacceptableReasons.add(ie.getMessage());
|
return false;
|
}
|
}
|
|
// If there were any search filters provided, then make sure they are all
|
// valid.
|
for (String filterString : configuration.getFilter())
|
{
|
try
|
{
|
SearchFilter.createFilterFromString(filterString);
|
}
|
catch (DirectoryException de)
|
{
|
if (debugEnabled())
|
{
|
TRACER.debugCaught(DebugLogLevel.ERROR, de);
|
}
|
|
int msgID = MSGID_CONFIG_VATTR_INVALID_SEARCH_FILTER;
|
String message = getMessage(msgID, filterString,
|
String.valueOf(configuration.dn()),
|
de.getErrorMessage());
|
unacceptableReasons.add(message);
|
return false;
|
}
|
}
|
|
// If we've gotten here, then it's fine.
|
return true;
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
public ConfigChangeResult applyConfigurationAdd(
|
VirtualAttributeCfg configuration)
|
{
|
ResultCode resultCode = ResultCode.SUCCESS;
|
boolean adminActionRequired = false;
|
ArrayList<String> messages = new ArrayList<String>();
|
|
configuration.addChangeListener(this);
|
|
if (! configuration.isEnabled())
|
{
|
return new ConfigChangeResult(resultCode, adminActionRequired, messages);
|
}
|
|
// Make sure that we can parse all of the search filters.
|
LinkedHashSet<SearchFilter> filters =
|
new LinkedHashSet<SearchFilter>();
|
for (String filterString : configuration.getFilter())
|
{
|
try
|
{
|
filters.add(SearchFilter.createFilterFromString(filterString));
|
}
|
catch (DirectoryException de)
|
{
|
if (debugEnabled())
|
{
|
TRACER.debugCaught(DebugLogLevel.ERROR, de);
|
}
|
|
if (resultCode == ResultCode.SUCCESS)
|
{
|
resultCode = ResultCode.INVALID_ATTRIBUTE_SYNTAX;
|
}
|
|
int msgID = MSGID_CONFIG_VATTR_INVALID_SEARCH_FILTER;
|
String message = getMessage(msgID, filterString,
|
String.valueOf(configuration.dn()),
|
de.getErrorMessage());
|
messages.add(message);
|
}
|
}
|
|
// Get the name of the class and make sure we can instantiate it as a
|
// certificate mapper.
|
VirtualAttributeProvider<? extends VirtualAttributeCfg> provider = null;
|
if (resultCode == ResultCode.SUCCESS)
|
{
|
String className = configuration.getProviderClass();
|
try
|
{
|
provider = loadProvider(className, configuration, true);
|
}
|
catch (InitializationException ie)
|
{
|
resultCode = DirectoryServer.getServerErrorResultCode();
|
messages.add(ie.getMessage());
|
}
|
}
|
|
if (resultCode == ResultCode.SUCCESS)
|
{
|
VirtualAttributeRule rule =
|
new VirtualAttributeRule(configuration.getAttributeType(), provider,
|
configuration.getBaseDN(),
|
configuration.getGroupDN(),
|
filters,
|
configuration.getConflictBehavior());
|
|
rules.put(configuration.dn(), rule);
|
DirectoryServer.registerVirtualAttribute(rule);
|
}
|
|
return new ConfigChangeResult(resultCode, adminActionRequired, messages);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
public boolean isConfigurationDeleteAcceptable(
|
VirtualAttributeCfg configuration,
|
List<String> unacceptableReasons)
|
{
|
// We will always allow getting rid of a virtual attribute rule.
|
return true;
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
public ConfigChangeResult applyConfigurationDelete(
|
VirtualAttributeCfg configuration)
|
{
|
ResultCode resultCode = ResultCode.SUCCESS;
|
boolean adminActionRequired = false;
|
ArrayList<String> messages = new ArrayList<String>();
|
|
VirtualAttributeRule rule = rules.remove(configuration.dn());
|
if (rule != null)
|
{
|
DirectoryServer.deregisterVirtualAttribute(rule);
|
rule.getProvider().finalizeVirtualAttributeProvider();
|
}
|
|
return new ConfigChangeResult(resultCode, adminActionRequired, messages);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
public boolean isConfigurationChangeAcceptable(
|
VirtualAttributeCfg configuration,
|
List<String> unacceptableReasons)
|
{
|
if (configuration.isEnabled())
|
{
|
// Get the name of the class and make sure we can instantiate it as a
|
// virtual attribute provider.
|
String className = configuration.getProviderClass();
|
try
|
{
|
loadProvider(className, configuration, false);
|
}
|
catch (InitializationException ie)
|
{
|
unacceptableReasons.add(ie.getMessage());
|
return false;
|
}
|
}
|
|
// If there were any search filters provided, then make sure they are all
|
// valid.
|
for (String filterString : configuration.getFilter())
|
{
|
try
|
{
|
SearchFilter.createFilterFromString(filterString);
|
}
|
catch (DirectoryException de)
|
{
|
if (debugEnabled())
|
{
|
TRACER.debugCaught(DebugLogLevel.ERROR, de);
|
}
|
|
int msgID = MSGID_CONFIG_VATTR_INVALID_SEARCH_FILTER;
|
String message = getMessage(msgID, filterString,
|
String.valueOf(configuration.dn()),
|
de.getErrorMessage());
|
unacceptableReasons.add(message);
|
return false;
|
}
|
}
|
|
// If we've gotten here, then it's fine.
|
return true;
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
public ConfigChangeResult applyConfigurationChange(
|
VirtualAttributeCfg configuration)
|
{
|
ResultCode resultCode = ResultCode.SUCCESS;
|
boolean adminActionRequired = false;
|
ArrayList<String> messages = new ArrayList<String>();
|
|
|
// Get the existing rule if it's already enabled.
|
VirtualAttributeRule existingRule = rules.get(configuration.dn());
|
|
|
// If the new configuration has the rule disabled, then disable it if it
|
// is enabled, or do nothing if it's already disabled.
|
if (! configuration.isEnabled())
|
{
|
if (existingRule != null)
|
{
|
DirectoryServer.deregisterVirtualAttribute(existingRule);
|
existingRule.getProvider().finalizeVirtualAttributeProvider();
|
}
|
|
return new ConfigChangeResult(resultCode, adminActionRequired, messages);
|
}
|
|
|
// Make sure that we can parse all of the search filters.
|
LinkedHashSet<SearchFilter> filters =
|
new LinkedHashSet<SearchFilter>();
|
for (String filterString : configuration.getFilter())
|
{
|
try
|
{
|
filters.add(SearchFilter.createFilterFromString(filterString));
|
}
|
catch (DirectoryException de)
|
{
|
if (debugEnabled())
|
{
|
TRACER.debugCaught(DebugLogLevel.ERROR, de);
|
}
|
|
if (resultCode == ResultCode.SUCCESS)
|
{
|
resultCode = ResultCode.INVALID_ATTRIBUTE_SYNTAX;
|
}
|
|
int msgID = MSGID_CONFIG_VATTR_INVALID_SEARCH_FILTER;
|
String message = getMessage(msgID, filterString,
|
String.valueOf(configuration.dn()),
|
de.getErrorMessage());
|
messages.add(message);
|
}
|
}
|
|
// Get the name of the class and make sure we can instantiate it as a
|
// certificate mapper.
|
VirtualAttributeProvider<? extends VirtualAttributeCfg> provider = null;
|
if (resultCode == ResultCode.SUCCESS)
|
{
|
String className = configuration.getProviderClass();
|
try
|
{
|
provider = loadProvider(className, configuration, true);
|
}
|
catch (InitializationException ie)
|
{
|
resultCode = DirectoryServer.getServerErrorResultCode();
|
messages.add(ie.getMessage());
|
}
|
}
|
|
if (resultCode == ResultCode.SUCCESS)
|
{
|
VirtualAttributeRule rule =
|
new VirtualAttributeRule(configuration.getAttributeType(), provider,
|
configuration.getBaseDN(),
|
configuration.getGroupDN(),
|
filters,
|
configuration.getConflictBehavior());
|
|
rules.put(configuration.dn(), rule);
|
if (existingRule == null)
|
{
|
DirectoryServer.registerVirtualAttribute(rule);
|
}
|
else
|
{
|
DirectoryServer.replaceVirtualAttribute(existingRule, rule);
|
existingRule.getProvider().finalizeVirtualAttributeProvider();
|
}
|
}
|
|
return new ConfigChangeResult(resultCode, adminActionRequired, messages);
|
}
|
|
|
|
/**
|
* Loads the specified class, instantiates it as a certificate mapper, and
|
* optionally initializes that instance.
|
*
|
* @param className The fully-qualified name of the certificate mapper
|
* class to load, instantiate, and initialize.
|
* @param configuration The configuration to use to initialize the
|
* virtual attribute provider. It must not be
|
* {@code null}.
|
* @param initialize Indicates whether the virtual attribute provider
|
* instance should be initialized.
|
*
|
* @return The possibly initialized certificate mapper.
|
*
|
* @throws InitializationException If a problem occurred while attempting to
|
* initialize the certificate mapper.
|
*/
|
private VirtualAttributeProvider<? extends VirtualAttributeCfg>
|
loadProvider(String className, VirtualAttributeCfg configuration,
|
boolean initialize)
|
throws InitializationException
|
{
|
try
|
{
|
VirtualAttributeCfgDefn definition =
|
VirtualAttributeCfgDefn.getInstance();
|
ClassPropertyDefinition propertyDefinition =
|
definition.getProviderClassPropertyDefinition();
|
Class<? extends VirtualAttributeProvider> providerClass =
|
propertyDefinition.loadClass(className,
|
VirtualAttributeProvider.class);
|
VirtualAttributeProvider<? extends VirtualAttributeCfg> provider =
|
(VirtualAttributeProvider<? extends VirtualAttributeCfg>)
|
providerClass.newInstance();
|
|
if (initialize)
|
{
|
Method method =
|
provider.getClass().getMethod("initializeVirtualAttributeProvider",
|
configuration.definition().getServerConfigurationClass());
|
method.invoke(provider, configuration);
|
}
|
else
|
{
|
Method method =
|
provider.getClass().getMethod("isConfigurationAcceptable",
|
VirtualAttributeCfg.class,
|
List.class);
|
|
List<String> unacceptableReasons = new ArrayList<String>();
|
Boolean acceptable = (Boolean) method.invoke(provider, configuration,
|
unacceptableReasons);
|
if (! acceptable)
|
{
|
StringBuilder buffer = new StringBuilder();
|
if (! unacceptableReasons.isEmpty())
|
{
|
Iterator<String> iterator = unacceptableReasons.iterator();
|
buffer.append(iterator.next());
|
while (iterator.hasNext())
|
{
|
buffer.append(". ");
|
buffer.append(iterator.next());
|
}
|
}
|
|
int msgID = MSGID_CONFIG_VATTR_CONFIG_NOT_ACCEPTABLE;
|
String message = getMessage(msgID, String.valueOf(configuration.dn()),
|
buffer.toString());
|
throw new InitializationException(msgID, message);
|
}
|
}
|
|
return provider;
|
}
|
catch (Exception e)
|
{
|
int msgID = MSGID_CONFIG_VATTR_INITIALIZATION_FAILED;
|
String message = getMessage(msgID, className,
|
String.valueOf(configuration.dn()),
|
stackTraceToSingleLineString(e));
|
throw new InitializationException(msgID, message, e);
|
}
|
}
|
}
|