/*
* 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.authz.support;
import javax.naming.directory.SearchControls;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import org.apache.directory.server.core.authn.AuthenticationInterceptor;
import org.apache.directory.server.core.authz.AciAuthorizationInterceptor;
import org.apache.directory.server.core.authz.DefaultAuthorizationInterceptor;
import org.apache.directory.server.core.entry.ServerEntry;
import org.apache.directory.server.core.event.EventInterceptor;
import org.apache.directory.server.core.filtering.EntryFilteringCursor;
import org.apache.directory.server.core.interceptor.context.OperationContext;
import org.apache.directory.server.core.interceptor.context.SearchOperationContext;
import org.apache.directory.server.core.normalization.NormalizationInterceptor;
import org.apache.directory.server.core.operational.OperationalAttributeInterceptor;
import org.apache.directory.server.core.schema.SchemaInterceptor;
import org.apache.directory.server.core.subtree.SubentryInterceptor;
import org.apache.directory.server.schema.registries.Registries;
import org.apache.directory.shared.ldap.aci.ACITuple;
import org.apache.directory.shared.ldap.aci.MicroOperation;
import org.apache.directory.shared.ldap.aci.ProtectedItem;
import org.apache.directory.shared.ldap.constants.AuthenticationLevel;
import org.apache.directory.shared.ldap.constants.SchemaConstants;
import org.apache.directory.shared.ldap.entry.Value;
import org.apache.directory.shared.ldap.filter.ExprNode;
import org.apache.directory.shared.ldap.filter.PresenceNode;
import org.apache.directory.shared.ldap.message.AliasDerefMode;
import org.apache.directory.shared.ldap.name.LdapDN;
/**
* An {@link ACITupleFilter} that discards all tuples that doesn't satisfy
* {@link org.apache.directory.shared.ldap.aci.ProtectedItem.MaxImmSub} constraint if available. (18.8.3.3, X.501)
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev: 690042 $, $Date: 2008-08-29 01:14:21 +0200 (Ven, 29 ao 2008) $
*/
public class MaxImmSubFilter implements ACITupleFilter
{
private final ExprNode childrenFilter;
private final SearchControls childrenSearchControls;
public MaxImmSubFilter()
{
childrenFilter = new PresenceNode( SchemaConstants.OBJECT_CLASS_AT );
childrenSearchControls = new SearchControls();
childrenSearchControls.setSearchScope( SearchControls.ONELEVEL_SCOPE );
}
public Collection<ACITuple> filter(
Registries registries,
Collection<ACITuple> tuples,
OperationScope scope,
OperationContext opContext,
Collection<LdapDN> userGroupNames,
LdapDN userName,
ServerEntry userEntry,
AuthenticationLevel authenticationLevel,
LdapDN entryName,
String attrId,
Value<?> attrValue,
ServerEntry entry,
Collection<MicroOperation> microOperations,
ServerEntry entryView )
throws Exception
{
if ( entryName.size() == 0 )
{
return tuples;
}
if ( tuples.size() == 0 )
{
return tuples;
}
if ( scope != OperationScope.ENTRY )
{
return tuples;
}
int immSubCount = -1;
for ( Iterator<ACITuple> i = tuples.iterator(); i.hasNext(); )
{
ACITuple tuple = i.next();
if ( !tuple.isGrant() )
{
continue;
}
for ( ProtectedItem item : tuple.getProtectedItems() )
{
if ( item instanceof ProtectedItem.MaxImmSub )
{
if ( immSubCount < 0 )
{
immSubCount = getImmSubCount( registries, opContext, entryName );
}
ProtectedItem.MaxImmSub mis = ( ProtectedItem.MaxImmSub ) item;
if ( immSubCount >= mis.getValue() )
{
i.remove();
break;
}
}
}
}
return tuples;
}
public static final Collection<String> SEARCH_BYPASS;
static
{
Collection<String> c = new HashSet<String>();
c.add( NormalizationInterceptor.class.getName() );
c.add( AuthenticationInterceptor.class.getName() );
c.add( AciAuthorizationInterceptor.class.getName() );
c.add( DefaultAuthorizationInterceptor.class.getName() );
c.add( OperationalAttributeInterceptor.class.getName() );
c.add( SchemaInterceptor.class.getName() );
c.add( SubentryInterceptor.class.getName() );
c.add( EventInterceptor.class.getName() );
SEARCH_BYPASS = Collections.unmodifiableCollection( c );
}
private int getImmSubCount( Registries registries, OperationContext opContext, LdapDN entryName ) throws Exception
{
int cnt = 0;
EntryFilteringCursor results = null;
try
{
SearchOperationContext searchContext = new SearchOperationContext( opContext.getSession(),
( LdapDN ) entryName.getPrefix( 1 ), AliasDerefMode.DEREF_ALWAYS,
childrenFilter, childrenSearchControls );
searchContext.setByPassed( SEARCH_BYPASS );
results = opContext.getSession().getDirectoryService().getOperationManager().search( searchContext );
while ( results.next() )
{
results.get();
cnt++;
}
}
finally
{
if ( results != null )
{
results.close();
}
}
return cnt;
}
}
|