All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.security.authz.jacc.ElytronPolicyConfigurationFactory Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote Jakarta Enterprise Beans and Jakarta Messaging, including all dependencies. It is intended for use by those not using maven, maven users should just import the Jakarta Enterprise Beans and Jakarta Messaging BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

There is a newer version: 35.0.0.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source
 *
 * Copyright 2015 Red Hat, Inc. and/or its affiliates.
 *
 * 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.wildfly.security.authz.jacc;

import javax.security.jacc.PolicyConfiguration;
import javax.security.jacc.PolicyConfigurationFactory;
import javax.security.jacc.PolicyContext;
import javax.security.jacc.PolicyContextException;
import java.security.PrivilegedAction;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import static java.lang.System.getSecurityManager;
import static java.security.AccessController.doPrivileged;
import static org.wildfly.common.Assert.checkNotNullParam;
import static org.wildfly.security.authz.jacc.ElytronMessages.log;
import static org.wildfly.security.authz.jacc.ElytronPolicyConfiguration.State.OPEN;

/**
 * 

A {@link javax.security.jacc.PolicyConfigurationFactory} implementation. * *

Accordingly with the JACC specification, a {@link PolicyConfigurationFactory} is a singleton, instantiate once during * the application server startup. Thus, there is only one instance of this class for a given JRE of an application server. * *

The static method {@link #getCurrentPolicyConfiguration()} is necessary in order to keep compatibility with TCK, given that * it will wrap both factory and policy provider into its own implementations and still should be possible to obtain the policy configuration * created by this factory by the {@link JaccDelegatingPolicy}. This behavior is exactly the same as currently being used by RI implementation from * GF and PicketBox. * * @author Pedro Igor * @see org.wildfly.security.authz.jacc.JaccDelegatingPolicy */ public class ElytronPolicyConfigurationFactory extends PolicyConfigurationFactory { public static final PrivilegedAction GET_CONTEXT_ID = () -> PolicyContext.getContextID(); /** * Holds all {@link javax.security.jacc.PolicyConfiguration} created in runtime. */ private static final Map configurationRegistry = new ConcurrentHashMap<>(); /** *

Returns the {@link javax.security.jacc.PolicyConfiguration} associated with the current policy context identifier. * *

This method only returns {@link javax.security.jacc.PolicyConfiguration} transitioned to the in service state. * If the configuration associated with the current policy context identifier is in a different state, a exception is thrown. * * @return this method always returns a configuration instance transitioned with the in service state and associated * with the current policy context identifier. * @throws PolicyContextException if the configuration is in a different state than in service, no policy context identifier * was set or if no configuration is found for the given identifier. */ static

P getCurrentPolicyConfiguration() throws PolicyContextException { String contextID; if (getSecurityManager() != null) { contextID = doPrivileged(GET_CONTEXT_ID); } else { contextID = PolicyContext.getContextID(); } if (contextID == null) { throw log.authzContextIdentifierNotSet(); } try { P policyConfiguration = (P) configurationRegistry.get(contextID); if (policyConfiguration == null) { throw log.authzInvalidPolicyContextIdentifier(contextID); } if (!policyConfiguration.inService()) { throw log.authzPolicyConfigurationNotInService(contextID); } return policyConfiguration; } catch (Exception e) { throw log.authzUnableToObtainPolicyConfiguration(contextID, e); } } @Override public PolicyConfiguration getPolicyConfiguration(String contextID, boolean remove) throws PolicyContextException { checkNotNullParam("contextID", contextID); synchronized (configurationRegistry) { ElytronPolicyConfiguration policyConfiguration = configurationRegistry.get(contextID); if (policyConfiguration == null) { return createPolicyConfiguration(contextID); } if (remove) { policyConfiguration.delete(); } policyConfiguration.transitionTo(OPEN); return policyConfiguration; } } @Override public boolean inService(String contextID) throws PolicyContextException { checkNotNullParam("contextID", contextID); synchronized (configurationRegistry) { PolicyConfiguration policyConfiguration = configurationRegistry.get(contextID); if (policyConfiguration == null) { return false; } return policyConfiguration.inService(); } } private ElytronPolicyConfiguration createPolicyConfiguration(String contextID) { return configurationRegistry.computeIfAbsent(contextID, ElytronPolicyConfiguration::new); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy