Version 0.9.x
Version 0.9.2 (previous stable release)
Release date: 19th October 2016
This release adds some minor new features:
MDA-76 multi-output serialiser for offline use cases
This adds aMultiOutputSerializationStagewhich can be provided with aSerializerand anOutputStrategyto allow eachItemin a collection to be serialized to a different location. This is intended for use cases such as per-entity metadata generation. AFilesInDirectoryMultiOutputStrategyis provided for this use case; its properties include a destination directory within which individual files are created based on a prefix and suffix string, and a transformed version of each item's firstItemId. Transformer classesSHA1StringTransformerandPathSegmentStringTransformerhave been added to cover the most common current use cases. An example of the use of these new classes are available in this example.MDA-170 allow use of PKCS#11 for XML DSIG
Adds aPKCS11PrivateKeyFactoryBeanto allow a PKCS#11 token (such as a smart card or HSM) to be used to sign documents. An example of its use can be found in this example. Note that this class is deprecated and will not appear in version 0.10.0. In that release, the same functionality will be available from the spring-extensions project, see JSE-20.
The following bug fix is included:
MDA-168
EntityAttributeFilteringStagemishandles multiple containers
TheEntityAttributeFilteringStageonly processed the firstEntityAttributescontainer in an entity descriptor'sExtensions. Although the specification requires that at most one such container be present, this is not a schema constraint and cannot be relied on in security-sensitive applications.EntityAttributeFilteringStagenow processes allEntityAttributescontainers in an entity.
Version 0.9.1 (previous stable release)
Release date: 25th April 2016
This release adds a single new feature:
MDA-163: add stage to detect CR characters in metadata
This adds a CRDetectionStage for use in detecting metadata that can trigger the SSPCPP-684 issue in the Shibboleth SP.
Version 0.9.0
Release date: 18th December 2015.
For a complete list of issues addressed in this release, see https://issues.shibboleth.net/jira/issues/?filter=10873
This is a major pre-1.0 feature release.
Highlights
Now using Spring Resources instead of (now deprecated) Shibboleth Resources.
The factory bean classes PrivateKeyFactoryBean, PublicKeyFactoryBean, X509CertificateFactoryBean and X509CertificateChainFactoryBean bundled from the spring-extensions package have significant API improvements. Each factory now takes a "resource" property which is a Spring Resource rather than a Java File. This allows these factories to be used with any kind of Spring resource, including ClassPathResource. Existing configurations will need to change to compensate for this.
Before
<bean class="...X509CertificateFactoryBean">
<property name="certificateFile">
<bean class="java.io.File">
<constructor-arg value="..."/>
</bean>
</property>
</bean>After
<bean class="...X509CertificateFactoryBean">
<property name="resource">
<bean class="org.springframework.core.io.FileSystemResource">
<constructor-arg value="..."/>
</bean>
</property>
</bean>If you were previously setting the input property of one of these factories to a string value representing the path, and relying on the Spring resource loader to convert that into a File object, you may need to change your configuration to explicitly create a FileSystemResource if that is not the default used by the Spring context type in use in your application.
Now uses the JAXP implementation supplied by the JRE, rather than a much older "endorsed" version. This will affect any configurations which depended on Xerces or Xalan specific extensions; re-endorse the implementation of your choice if this is an issue.
All provided stages now implement a new collectionPredicate property. This can be set to a Predicate<Collection<Item<T>>> which will be applied to each collection passed to the stage. If the collectionPredicate returns true, the stage is executed as normal; this is the default. If the collectionPredicate returns false, the stage is skipped. This can be used used to perform lightweight conditional operations such as forming an EntitiesDescriptor from a collection only if the collection contains at least two items. The AtLeastCollectionPredicate class has been added to address this specific use case. Conditional evaluation of a series of stages with the same collectionPredicate can be simplified by use of a CompositeStage.
This release bundles a new version of the Shibboleth spring-extensions package, which provides a new IdentifiableBeanPostProcessor class. If you include an instance of this class in your Spring configuration, you can now default the "id" property on all Shibboleth components from the bean's "id" attribute, simplifying your configuration by removing the usual duplication between these values.
Before
<bean class="..." id="theBean">
<property name="id" value="theBean"/>
...
</bean>After
<bean class="net.shibboleth.ext.spring.config.IdentifiableBeanPostProcessor"/>
<bean class="..." id="theBean">
...
</bean>The ItemSerializer interface is no longer defined over a collection of items, but now (less surprisingly) operates on a single item. A new ItemCollectionSerializer interface (with a serializeCollection method) takes its place in operating on collections of items. In addition, ItemSerializer and ItemCollectionSerializer implementations are no longer responsible for closing the OutputStream they write the serialized form of their input to. These changes allow reuse of serializer implementations in cases other than the current SerializationStage. The SerializationStage implementation now accepts an ItemCollectionSerializer rather than an ItemSerializer, but DOMElementSerializer has been changed to support both interfaces so that no changes to configurations should be required.
The SetValidUntilStage and SetCacheDurationStage duration setters are now marked using an annotation to indicate that they take non-negative duration values. If you provide an appropriate converter in your Spring configuration, this means that configurations can now use ISO duration values (e.g., "PT6H") rather than a literal number of milliseconds (e.g., "21600000"). For example:
<!-- This bean MUST be called "conversionService" to work properly. -->
<bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean">
<property name="converters">
<set>
<bean class="net.shibboleth.ext.spring.config.DurationToLongConverter" />
<bean class="net.shibboleth.ext.spring.config.StringToIPRangeConverter" />
<bean class="net.shibboleth.ext.spring.config.BooleanToPredicateConverter" />
<bean class="net.shibboleth.ext.spring.config.StringBooleanToPredicateConverter" />
<bean class="net.shibboleth.ext.spring.config.StringToResourceConverter" />
</set>
</property>
</bean>
<bean id="stage" class="net.shibboleth.metadata.dom.saml.SetValidUntilStage"
p:id="stage"
p:validityDuration="PT6H"
init-method="initialize"
destroy-method="destroy"/>API Additions
MDA-55: added
EntityAttributeFilteringStageand associated matchers:EntityCategoryMatcher,EntityCategorySupportMatcher,MultiPredicateMatcher,RegistrationAuthorityMatcher. Additional support classes:SAMLSupport,MDAttrSupport.EntityAttributeFilteringStageevaluates a list of matching rules for each entity attribute present in a SAMLEntityDescriptor. The list of rules is logically ORed to determine (along with a whitelisting/blacklisting property) whether each attribute value is retained or filtered out.Each matching rule is in the form of a
Predicateover anEntityAttributeContextcontaining the attribute's value,Name,NameFormatand the entity's registration authority.The registration authority value in the
EntityAttributeContextis taken from aRegistrationAuthorityobject in the entity's item metadata. This would normally be extracted from the entity beforehand using theRegistrationAuthorityPopulationStage.The
EntityCategoryMatcherandEntityCategorySupportMatcherclasses match a given attribute value with appropriate attributeNameandNameFormatvalues as defined in the entity category specification.RegistrationAuthorityMatchercan match against a specific registrar authority, or against the absence of any authority.MultiPredicateMatchercan be used with arbitraryPredicate<CharSequence>objects evaluated against the four components of theEntityAttributeContext. SuitablePredicateobjects can be obtained, for example, from Guava'sPredicates.containsPatternmethod. Unset component predicates are evaluated astrue.If the filtering out of an
AttributeValueresults in an emptyAttributecontainer, that container is removed.If the removal of an empty
Attributecontainer results in an emptyEntityAttributescontainer, that container is removed.
MDA-109: added
ElementWhitespaceTrimmingStageto trim whitespace from start and end of text contents of selected elementsMDA-132: new property
collectionPredicateadded on all stages; newAtLeastCollectionPredicateclass addedMDA-139: new classes supporting the Metadata Query Protocol:
ItemIdTransformStageMDQueryMD5ItemIdTransformerMDQuerySAML1ItemIdTransformer
MDA-141: New
ItemMetadataAddingStageadds a collection ofItemMetadataobjects to eachItem's item metadataMDA-150: added
NamespacesStrippingStageto whitelist/blacklist multiple namespacesMDA-154: added
X509ValidationStageto allow validation of X.509 certificates in XML metadata. This is supplied with a list ofValidator<X509Certificate>instances to determine the validation performed.MDA-69:
X509RSAOpenSSLBlacklistValidatorchecks for RSA modulus values from blacklist set. AblacklistResourceproperty is used to set a SpringResourcefrom which the blacklist set is read in OpenSSL blacklist format. The following resources are made available in the classpath for common use cases such as Debian weak keys and popular known-compromised keys such as those improperly shipped with SAML software releases:net/shibboleth/metadata/validate/x509/debian-512.txtnet/shibboleth/metadata/validate/x509/debian-1024.txtnet/shibboleth/metadata/validate/x509/debian-2048.txtnet/shibboleth/metadata/validate/x509/debian-4096.txtnet/shibboleth/metadata/validate/x509/compromised-1024.txtnet/shibboleth/metadata/validate/x509/compromised-2048.txtMultiple
X509RSAOpenSSLBlacklistValidatorinstances should be configured to test for multiple blacklist sets, as only oneResourcecan be consumed by each instance. Note, however, that if RSA key length is also constrained to, say, 2048 bits, blacklists corresponding to shorter keys can be ignored.
MDA-74:
X509RSAKeyLengthValidatorchecks for RSA modulus sizes smaller than a given number of bits. Properties allow setting a warning and error threshold; by default, modulus values less than 2048 bits in length are regarded as errors.MDA-155:
X509RSAExponentValidatorchecks for invalid (negative or odd) or insecurely small RSA exponent values. Properties allow setting a warning and error threshold; by default, values ofesmaller than 5 are regarded as errors.
MDA-156: added
RegistrationAuthorityItemIdentificationStrategyfor interfederation use cases. This extends the basic identifier produced byFirstItemIdItemIdentificationStrategyby adding a component corresponding toRegistrationAuthorityitem metadata, if present. This would normally be extracted from the entity beforehand using theRegistrationAuthorityPopulationStage.A set of registration authorities can be ignored by setting the
ignoredRegistrationAuthoritiesproperty. For example, you may wish to provide only basic identifiers for entities from your own registration authority.Registration authority names (URIs) can be mapped to more convenient display names (such as country codes or federation proper names) by setting a
Map<String, String>as theregistrationAuthoritiesDisplayNamesproperty.
API Changes
MDA-131: the
identifierStrategyproperty ofItemMetadataFilterStage,ItemMetadataTerminationStageandStatusMetadataLoggingStagehas been renamed toidentificationStrategyfor consistency with other parts of the API.PrivateKeyFactoryBean,PublicKeyFactoryBean,X509CertificateFactoryBeanandX509CertificateChainFactoryBeaninput properties are all now called "resource" and are all SpringResourceobjects rather than JavaFileobjects.ItemSerializer#serializenow takesItem<T>instead ofCollection<Item<T>>DomDocumentFactoryBeanis nowDOMDocumentFactoryBeanDOMDocumentFactoryBean'sdocumentResourceproperty is nowresourceThe
SetValidUntilStageandSetCacheDurationStageduration setters now throwConstraintViolationExceptionif a value less than or equal to zero is provided, rather than leaving this to be detected at initialization time.The
connectionDisregardSslCertificateproperty of thenet.shibboleth.utilities.java.support.httpclient.HttpClientBuilderhas been renamed to beconnectionDisregardTLSCertificate.MDA-123:
EntityRegistrationAuthorityFilterStagehas moved from thenet.shibboleth.metadata.dom.samlpackage tonet.shibboleth.metadata.dom.saml.mdrpi
API Removals
MDA-129:
ElementFormattingStageremovedMDA-122:
EntityPublisherPathFilterStageremovedMDA-122:
PushDownCacheDurationStageremovedMDA-122:
PushDownValidUntilStageremovedMDA-122:
SetPublicationInforemovedMDA-122:
XMLSignatureSigningStage'sderiveKeyNamesproperty removedMDA-123:
SAMLMetadataSupport.RPI_NSremoved (useMDRPIMetadataSupport.MDRPI_NS)