The Shibboleth IdP V3 software has reached its End of Life and is no longer supported. This documentation is available for historical purposes only. See the IDP4 wiki space for current documentation on the supported version.
PredicateMetadataFilter
The Predicate metadata filter applies an include or exclude rule to each entity in the input if a supplied Predicate<EntityDescriptor> returns true. The predicate may be defined explicitly (via the conditionRef attribute) or implicitly from the child elements.
Contents
- 1 Schema
- 2 Attributes
- 3 Child Elements
- 4 Examples
Filter order is important!
This filter changes the content of the metadata and so a filter of type Predicate should appear after any SignatureValidationFilter in the overall sequence of filters.
Schema
The <MetadataFilter> element and the type Predicate are defined by the urn:mace:shibboleth:2.0:metadata schema, which can be located at http://shibboleth.net/schema/idp/shibboleth-metadata.xsd.
Attributes
Name | Type | Default | Description |
|---|---|---|---|
| "include" or "exclude" | This attribute must be set to either If set to If set to | |
| Bean Refererence | If present, the value of this attribute is the (Spring) ID of a Predicate If this attribute is not present, then the child elements are used to construct an implicit predicate as described below. | |
| boolean | This attribute is required if a | |
| boolean | true | If the value of this attribute is true, then any |
Child Elements
If the conditionRef attribute is specified, then only it is used and any child elements are ignored. Otherwise the condition is constructed as one that returns true if:
The
entityIDof the candidate matches any of the supplied<Entity>elements ORThe
Nameof any ancestor<md:EntitiesDescriptor>element for the candidate matches any of the supplied<Group>child elements ORAny
<mdattr:EntityAttributes>extension elements associated with the candidate match the supplied<Tag>child elements ORAny scripts designated by a
<ConditionScript>element return true
Name | Cardinality | Description |
|---|---|---|
| 0 or more | The content of this element is an entity ID. If the content matches a candidate entity's |
| 0 or more | The content of this element is the Name of an |
| 0 or more | The (required) attribute ' The content of this element is a series of one or more |
| 0 or more | The content of this element is an inline or local script resource that implements Predicate<EntityDescriptor> |
Don't forget to configure a child element
If conditionRef is not present and you neglect to configure at least one child element, the filter will either exclude all entities (if direction="include") or include all entities (if direction="exclude"). In either case, this is probably not what you want to do.
Examples
Include a single entity
The following simple example includes at most one entity. This filter intentionally prevents new or unexpected entities from appearing in the metadata feed.
Include a single entity
<MetadataFilter xsi:type="Predicate" direction="include" removeEmptyEntitiesDescriptors="true">
<Entity>https://sp.example.org/trusted-sp</Entity>
</MetadataFilter>Exclude all entities containing a particular entity attribute
The next example excludes all entities containing a particular entity attribute, presumably because the IdP is the sole authority for this attribute.
Exclude all entities containing an unauthorized entity attribute
<MetadataFilter xsi:type="Predicate" direction="exclude" removeEmptyEntitiesDescriptors="true" trim="true">
<Tag name="http://macedir.org/entity-category" nameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:uri">
<Value>http://idp.example.org/local-category</Value>
</Tag>
</MetadataFilter>Exclude all entities subject to a compound implicit condition
Note that implicit conditions may be combined in logical OR fashion. For instance, if any of the conditions in the following example are true, the entity is excluded:
Exclude all entities subject to a compound implicit condition
<MetadataFilter xsi:type="Predicate" direction="exclude" removeEmptyEntitiesDescriptors="true" trim="true">
<Entity>https://sp.example.org/untrusted-sp</Entity>
<Tag name="http://macedir.org/entity-category" nameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:uri">
<Value>http://idp.example.org/local-category-one</Value>
<Value>http://idp.example.org/local-category-two</Value>
</Tag>
<Tag name="http://idp.example.org/entity-category" nameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:uri">
<Value>http://idp.example.org/local-category-three</Value>
</Tag>
</MetadataFilter>Reference
The name "http://macedir.org/entity-category" used in the above examples is a standard entity attribute name. For reference, consult the following specification: The Entity Category SAML Attribute Types
Software version requirement
All of the following predicates require IdP v3.4 or later.
Include all entities based on a regexp applied to the entityID
The core of this is the RegexPredicate. However this takes a string, rather than an EntityID and so we need to navigate to it. We could of course use jacascript, but the Spring EL Predicate provides a better shorthand. One injects the RegexPredicate to do the work and use Spring EL to do the navigation. The result is this Spring Segment
Regexp predicate (Java 3.4 and later)
<bean id="the.Metadata.regexp.Pred" class="net.shibboleth.utilities.java.support.logic.RegexPredicate" c:_0="^.*sp1.*" />
<bean id="the.Metadata.Pred" class="net.shibboleth.ext.spring.util.SpringExpressionPredicate"
p:customObject-ref="the.Metadata.regexp.Pred"
c:expression="#custom.apply(#input.getEntityID())" />Exclude "roleless" entity descriptors
Recall that the following EntityRoleWhiteList filter retains all <md:SPSSODescriptor> elements in the input:
Retain SP roles only
<MetadataFilter xsi:type="EntityRoleWhiteList" xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata">
<RetainedRole>md:SPSSODescriptor</RetainedRole>
</MetadataFilter>The previous filter essentially filters all non-SP role descriptors from the input. At the end of that process, if an empty entity descriptor remains (because all of its roles have been removed), the entity itself is removed.
Unfortunately the EntityRoleWhiteList filter may not handle affiliation descriptors as expected. Specifically, an <md:EntityDescriptor> element that contains an <md:AffiliationDescriptor> child element is handled in exactly the same way as an <md:EntityDescriptor> element that contains no role descriptors. That is, if removeRolelessEntityDescriptors is true (which it is by default), both are removed from the input.
A quick fix that preserves any affiliation descriptors in the input is to set removeRolelessEntityDescriptors to false on the EntityRoleWhiteList filter. However, this also prevents truly “roleless” entity descriptors from being removed, which may have a negative impact on memory utilization. A workaround is to use both an EntityRoleWhiteList filter and a Predicate filter, in sequence.
The following filter sequence is a complete replacement for the above EntityRoleWhiteList filter:
Retain SP roles while preserving affiliation descriptors
<!-- retain SPs only but don’t remove “roleless” entity descriptors -->
<MetadataFilter xsi:type="EntityRoleWhiteList" removeRolelessEntityDescriptors="false" xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata">
<RetainedRole>md:SPSSODescriptor</RetainedRole>
</MetadataFilter>
<!-- clean up the mess made by the EntityRoleWhiteList filter -->
<MetadataFilter xsi:type="Predicate" direction="exclude" removeEmptyEntitiesDescriptors="true">
<ConditionScript>
<Script>
<![CDATA[
// an implementation of Predicate<EntityDescriptor>
//
// if the predicate function returns true, the entity descriptor
// is excluded from the output (since direction="exclude").
//
// the input argument is of type:
// org.opensaml.saml.saml2.metadata.EntityDescriptor
//
(function (entity) {
"use strict";
// check the parameter
if (entity === null) { return false; }
// preserve an affiliation descriptor
if (entity.getAffiliationDescriptor() !== null) { return false; }
// exclude a "roleless" entity descriptor
return entity.getRoleDescriptors() === null;
}(input));
]]>
</Script>
</ConditionScript>
</MetadataFilter>Note that removeRolelessEntityDescriptors is set to false on the EntityRoleWhiteList filter, which runs first. The Predicate filter then removes the “roleless” entity descriptors from its input without disturbing the affiliation descriptors (if any).