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

com.sun.enterprise.security.jacc.provider.SharedState Maven / Gradle / Ivy

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
// Portions Copyright [2018] [Payara Foundation and/or its affiliates]
package com.sun.enterprise.security.jacc.provider;

import static java.util.logging.Level.FINEST;
import static java.util.logging.Level.WARNING;
import static javax.security.jacc.PolicyContext.getContextID;

import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import java.util.logging.Logger;

import javax.security.jacc.PolicyContextException;

/**
 * 
 * @author monzillo
 */
public class SharedState {
    
    private static final Logger logger = Logger.getLogger(SharedState.class.getPackage().getName());

    // lock on the shared configTable and linkTable
    private static ReentrantReadWriteLock rwLock = new ReentrantReadWriteLock(true);
    private static Lock readLock = rwLock.readLock();
    private static Lock writeLock = rwLock.writeLock();
    private static HashMap configTable = new HashMap<>();
    private static HashMap> linkTable = new HashMap<>();
    

    private SharedState() {
    }

    static Logger getLogger() {
        return logger;
    }

    static SimplePolicyConfiguration lookupConfig(String pcid) {

        SimplePolicyConfiguration pc = null;
        writeLock.lock();
        try {
            pc = configTable.get(pcid);
        } finally {
            writeLock.unlock();
        }
        return pc;
    }

    static SimplePolicyConfiguration getConfig(String pcid, boolean remove) {

        SimplePolicyConfiguration pc = null;
        writeLock.lock();
        try {
            pc = configTable.get(pcid);
            if (pc == null) {
                pc = new SimplePolicyConfiguration(pcid);
                SharedState.initLinks(pcid);
                configTable.put(pcid, pc);
            } else if (remove) {
                SharedState.removeLinks(pcid);
            }
        } finally {
            writeLock.unlock();
        }
        return pc;
    }

    static SimplePolicyConfiguration getActiveConfig() throws PolicyContextException {
        String contextId = getContextID();
        SimplePolicyConfiguration policyConfiguration = null;
        
        if (contextId != null) {
            readLock.lock();
            try {
                policyConfiguration = configTable.get(contextId);
                if (policyConfiguration == null) {
                    
                    /*
                     * unknown policy context set on thread return null to allow checking to be performed with default context. Should
                     * repair improper setting of context by encompassing runtime.
                     */
                    SimplePolicyConfiguration.logException(WARNING, "invalid policy context id", new PolicyContextException());
                }

            } finally {
                readLock.unlock();
            }
            
            if (policyConfiguration != null) {
                if (!policyConfiguration.inService()) {
                    
                    /*
                     * policy context set on thread is not in service return null to allow checking to be performed with default context.
                     * Should repair improper setting of context by encompassing runtime.
                     */
                    SimplePolicyConfiguration.logException(FINEST, "invalid policy context state", new PolicyContextException());
                    policyConfiguration = null;
                }
            }
        }

        return policyConfiguration;
    }

    /**
     * Creates a relationship between this configuration and another such that they share the same principal-to-role
     * mappings. PolicyConfigurations are linked to apply a common principal-to-role mapping to multiple seperately
     * manageable PolicyConfigurations, as is required when an application is composed of multiple modules.
     * 

* Note that the policy statements which comprise a role, or comprise the excluded or unchecked policy collections in a * PolicyConfiguration are unaffected by the configuration being linked to another. *

* The relationship formed by this method is symetric, transitive and idempotent. * * @param id * @param otherId * @throws javax.security.jacc.PolicyContextException * If otherID equals receiverID. no relationship is formed. */ static void link(String id, String otherId) throws PolicyContextException { writeLock.lock(); try { if (otherId.equals(id)) { throw new IllegalArgumentException("Operation attempted to link PolicyConfiguration to itself."); } // get the linkSet corresponding to this context HashSet linkSet = linkTable.get(id); // get the linkSet corresponding to the context being linked to this HashSet otherLinkSet = linkTable.get(otherId); if (otherLinkSet == null) { throw new RuntimeException("Linked policy configuration (" + otherId + ") does not exist"); } Iterator it = otherLinkSet.iterator(); // For each context (id) linked to the context being linked to this while (it.hasNext()) { String nextid = (String) it.next(); // Add the id to this linkSet linkSet.add(nextid); // Replace the linkset mapped to all the contexts being linked // to this context, with this linkset. linkTable.put(nextid, linkSet); } } finally { writeLock.unlock(); } } static void initLinks(String id) { // Create a new linkSet with only this context id, and put in the table. HashSet linkSet = new HashSet<>(); linkSet.add(id); linkTable.put(id, linkSet); } static void removeLinks(String id) { writeLock.lock(); try { // get the linkSet corresponding to this context. HashSet linkSet = linkTable.get(id); // Remove this context id from the linkSet (which may be shared // with other contexts), and unmap the linkSet from this context. if (linkSet != null) { linkSet.remove(id); linkTable.remove(id); } initLinks(id); } finally { writeLock.unlock(); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy