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 aMultiOutputSerializationStage
which can be provided with aSerializer
and anOutputStrategy
to allow eachItem
in a collection to be serialized to a different location. This is intended for use cases such as per-entity metadata generation. AFilesInDirectoryMultiOutputStrategy
is 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 classesSHA1StringTransformer
andPathSegmentStringTransformer
have 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 aPKCS11PrivateKeyFactoryBean
to 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
EntityAttributeFilteringStage
mishandles multiple containers
TheEntityAttributeFilteringStage
only processed the firstEntityAttributes
container 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.EntityAttributeFilteringStage
now processes allEntityAttributes
containers 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 Resource
s instead of (now deprecated) Shibboleth Resource
s.
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
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:
API Additions
MDA-55: added
EntityAttributeFilteringStage
and associated matchers:EntityCategoryMatcher
,EntityCategorySupportMatcher
,MultiPredicateMatcher
,RegistrationAuthorityMatcher
. Additional support classes:SAMLSupport
,MDAttrSupport
.EntityAttributeFilteringStage
evaluates 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
Predicate
over anEntityAttributeContext
containing the attribute's value,Name
,NameFormat
and the entity's registration authority.The registration authority value in the
EntityAttributeContext
is taken from aRegistrationAuthority
object in the entity's item metadata. This would normally be extracted from the entity beforehand using theRegistrationAuthorityPopulationStage
.The
EntityCategoryMatcher
andEntityCategorySupportMatcher
classes match a given attribute value with appropriate attributeName
andNameFormat
values as defined in the entity category specification.RegistrationAuthorityMatcher
can match against a specific registrar authority, or against the absence of any authority.MultiPredicateMatcher
can be used with arbitraryPredicate<CharSequence>
objects evaluated against the four components of theEntityAttributeContext
. SuitablePredicate
objects can be obtained, for example, from Guava'sPredicates.containsPattern
method. Unset component predicates are evaluated astrue
.If the filtering out of an
AttributeValue
results in an emptyAttribute
container, that container is removed.If the removal of an empty
Attribute
container results in an emptyEntityAttributes
container, that container is removed.
MDA-109: added
ElementWhitespaceTrimmingStage
to trim whitespace from start and end of text contents of selected elementsMDA-132: new property
collectionPredicate
added on all stages; newAtLeastCollectionPredicate
class addedMDA-139: new classes supporting the Metadata Query Protocol:
ItemIdTransformStage
MDQueryMD5ItemIdTransformer
MDQuerySAML1ItemIdTransformer
MDA-141: New
ItemMetadataAddingStage
adds a collection ofItemMetadata
objects to eachItem
's item metadataMDA-150: added
NamespacesStrippingStage
to whitelist/blacklist multiple namespacesMDA-154: added
X509ValidationStage
to 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:
X509RSAOpenSSLBlacklistValidator
checks for RSA modulus values from blacklist set. AblacklistResource
property is used to set a SpringResource
from 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.txt
net/shibboleth/metadata/validate/x509/debian-1024.txt
net/shibboleth/metadata/validate/x509/debian-2048.txt
net/shibboleth/metadata/validate/x509/debian-4096.txt
net/shibboleth/metadata/validate/x509/compromised-1024.txt
net/shibboleth/metadata/validate/x509/compromised-2048.txt
Multiple
X509RSAOpenSSLBlacklistValidator
instances should be configured to test for multiple blacklist sets, as only oneResource
can 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:
X509RSAKeyLengthValidator
checks 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:
X509RSAExponentValidator
checks for invalid (negative or odd) or insecurely small RSA exponent values. Properties allow setting a warning and error threshold; by default, values ofe
smaller than 5 are regarded as errors.
MDA-156: added
RegistrationAuthorityItemIdentificationStrategy
for interfederation use cases. This extends the basic identifier produced byFirstItemIdItemIdentificationStrategy
by adding a component corresponding toRegistrationAuthority
item 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
ignoredRegistrationAuthorities
property. 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 theregistrationAuthoritiesDisplayNames
property.
API Changes
MDA-131: the
identifierStrategy
property ofItemMetadataFilterStage
,ItemMetadataTerminationStage
andStatusMetadataLoggingStage
has been renamed toidentificationStrategy
for consistency with other parts of the API.PrivateKeyFactoryBean
,PublicKeyFactoryBean
,X509CertificateFactoryBean
andX509CertificateChainFactoryBean
input properties are all now called "resource" and are all SpringResource
objects rather than JavaFile
objects.ItemSerializer#serialize
now takesItem<T>
instead ofCollection<Item<T>>
DomDocumentFactoryBean
is nowDOMDocumentFactoryBean
DOMDocumentFactoryBean
'sdocumentResource
property is nowresource
The
SetValidUntilStage
andSetCacheDurationStage
duration setters now throwConstraintViolationException
if a value less than or equal to zero is provided, rather than leaving this to be detected at initialization time.The
connectionDisregardSslCertificate
property of thenet.shibboleth.utilities.java.support.httpclient.HttpClientBuilder
has been renamed to beconnectionDisregardTLSCertificate
.MDA-123:
EntityRegistrationAuthorityFilterStage
has moved from thenet.shibboleth.metadata.dom.saml
package tonet.shibboleth.metadata.dom.saml.mdrpi
API Removals
MDA-129:
ElementFormattingStage
removedMDA-122:
EntityPublisherPathFilterStage
removedMDA-122:
PushDownCacheDurationStage
removedMDA-122:
PushDownValidUntilStage
removedMDA-122:
SetPublicationInfo
removedMDA-122:
XMLSignatureSigningStage
'sderiveKeyNames
property removedMDA-123:
SAMLMetadataSupport.RPI_NS
removed (useMDRPIMetadataSupport.MDRPI_NS
)