se.litsec.opensaml.saml2.common.response.MessageReplayCheckerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensaml3-ext Show documentation
Show all versions of opensaml3-ext Show documentation
OpenSAML 3.X utility extension library
/*
* Copyright 2016-2018 Litsec AB
*
* Licensed 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 se.litsec.opensaml.saml2.common.response;
import org.opensaml.saml.common.SAMLObject;
import org.opensaml.saml.saml2.core.Assertion;
import org.opensaml.saml.saml2.core.Response;
import org.opensaml.storage.ReplayCache;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;
import net.shibboleth.utilities.java.support.annotation.Duration;
/**
* Message replay checker implementation using OpenSAML's {@link ReplayCache} as an underlying cache.
*
* @author Martin Lindström ([email protected])
*/
public class MessageReplayCheckerImpl implements MessageReplayChecker, InitializingBean {
/** Logging instance. */
private final Logger log = LoggerFactory.getLogger(MessageReplayCheckerImpl.class);
/** The replay cache. */
private ReplayCache replayCache;
/** Number of milliseconds to keep elements in the replay cache - default is 5 minutes. */
@Duration
private long replayCacheExpiration = 300 * 1000L;
/** The name of the replay cache. */
private String replayCacheName;
/** {@inheritDoc} */
@Override
public void checkReplay(String id) throws MessageReplayException {
if (!this.replayCache.check(this.replayCacheName, id, this.replayCacheExpiration + System.currentTimeMillis())) {
String msg = String.format("Replay check of ID '%s' failed", id);
log.warn(msg);
throw new MessageReplayException(msg);
}
log.debug("Message replay check of ID '{}' succeeded", id);
}
/** {@inheritDoc} */
@Override
public void checkReplay(SAMLObject object) throws MessageReplayException, IllegalArgumentException {
String id = null;
if (object instanceof Response) {
id = ((Response) object).getID();
}
else if (object instanceof Assertion) {
id = ((Assertion) object).getID();
}
if (id == null) {
throw new IllegalArgumentException("Unsupported object type");
}
this.checkReplay(id);
}
/**
* Assigns the replay cache to use when checking against replay attacks.
*
* @param replayCache
* the cache
*/
public void setReplayCache(ReplayCache replayCache) {
this.replayCache = replayCache;
}
/**
* Assigns the name of the replay cache.
*
* @param replayCacheName
* the name
*/
public void setReplayCacheName(String replayCacheName) {
this.replayCacheName = replayCacheName;
}
/**
* Assigns the number of milliseconds each stored ID should be kept in the cache. The default is 5 minutes.
*
* @param replayCacheExpiration
* number of millis
*/
@Duration
public void setReplayCacheExpiration(long replayCacheExpiration) {
if (replayCacheExpiration < 0) {
throw new IllegalArgumentException("replayCacheExpiration must be greater than 0");
}
this.replayCacheExpiration = replayCacheExpiration;
}
/** {@inheritDoc} */
@Override
public void afterPropertiesSet() throws Exception {
Assert.notNull(this.replayCache, "Property 'replayCache' must be assigned");
Assert.hasText(this.replayCacheName, "Property 'replayCacheName' must be assigned");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy