com.sun.xml.wss.impl.misc.HANonceManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://oss.oracle.com/licenses/CDDL+GPL-1.1
* or LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.sun.xml.wss.impl.misc;
import com.sun.xml.ws.api.ha.HaInfo;
import com.sun.xml.ws.api.ha.HighAvailabilityProvider;
import com.sun.xml.ws.commons.ha.HaContext;
import com.sun.xml.ws.commons.ha.StickyKey;
import com.sun.xml.wss.NonceManager;
import com.sun.xml.wss.logging.LogStringsMessages;
import java.io.Serializable;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
import java.util.logging.Level;
import org.glassfish.ha.store.api.BackingStore;
import org.glassfish.ha.store.api.BackingStoreConfiguration;
import org.glassfish.ha.store.api.BackingStoreException;
import org.glassfish.ha.store.api.BackingStoreFactory;
/**
*
* @author suresh
*/
public class HANonceManager extends NonceManager {
private Long maxNonceAge;
private BackingStore backingStore = null;
private NonceCache localCache;
private final ScheduledExecutorService singleThreadScheduledExecutor = Executors.newSingleThreadScheduledExecutor();
//private boolean isScheduled = false;
public HANonceManager(final long maxNonceAge) {
this.maxNonceAge = maxNonceAge;
try {
final BackingStoreConfiguration bsConfig =
HighAvailabilityProvider.INSTANCE.initBackingStoreConfiguration("HANonceManagerStore", StickyKey.class, HANonceManager.HAPojo.class);
//maxNonceAge is in milliseconds so convert it into seconds
bsConfig.getVendorSpecificSettings().put("max.idle.timeout.in.seconds", maxNonceAge / 1000L);
//bsConfig.getVendorSpecificSettings().put("local.caching", true);
//bsConfig.setClassLoader(this.getClass().getClassLoader());
//not sure whether this statement required or not ?
bsConfig.getVendorSpecificSettings().put(BackingStoreConfiguration.START_GMS, true);
final BackingStoreFactory bsFactory = HighAvailabilityProvider.INSTANCE.getBackingStoreFactory(HighAvailabilityProvider.StoreType.IN_MEMORY);
backingStore = bsFactory.createBackingStore(bsConfig);
localCache = new NonceCache(maxNonceAge);
singleThreadScheduledExecutor.scheduleAtFixedRate(new nonceCleanupTask(), this.maxNonceAge, this.maxNonceAge, TimeUnit.MILLISECONDS);
} catch (BackingStoreException ex) {
LOGGER.log(Level.SEVERE, LogStringsMessages.WSS_0826_ERROR_INITIALIZE_BACKINGSTORE(), ex);
}
}
public HANonceManager(BackingStore backingStore, final long maxNonceAge) {
this.backingStore = backingStore;
this.maxNonceAge = maxNonceAge;
singleThreadScheduledExecutor.scheduleAtFixedRate(new nonceCleanupTask(), this.maxNonceAge, this.maxNonceAge, TimeUnit.MILLISECONDS);
}
@Override
public boolean validateNonce(String nonce, String created) throws NonceException {
//need to eagerly start the NonceCleanupTask otherwise in a cluster mode if the
//first request goes to one instance and second request goes to another one after
//MAX_NONCE_AGE the second instance would detect this as a replay since its NonceCleanup Task
//never executed.
//if(!isScheduled){
// singleThreadScheduledExecutor.scheduleAtFixedRate(new nonceCleanupTask(), maxNonceAge, maxNonceAge, TimeUnit.MILLISECONDS);
// isScheduled = true;
//}
//first check in local NonceCache.
boolean isnewNonce = localCache.validateAndCacheNonce(nonce, created);
byte[] data = created.getBytes();
HAPojo pojo = new HAPojo();
pojo.setData(data);
try {
HAPojo value = null;
try {
value = HighAvailabilityProvider.INSTANCE.loadFrom(backingStore, new StickyKey(nonce), null);
} catch (Exception ex) {
LOGGER.log(Level.WARNING, " exception during load command ", ex);
}
if (value != null) {
final String message = "Nonce Repeated : Nonce Cache already contains the nonce value :" + nonce;
LOGGER.log(Level.WARNING, LogStringsMessages.WSS_0815_NONCE_REPEATED_ERROR(nonce));
throw new NonceManager.NonceException(message);
} else {
HaInfo haInfo = HaContext.currentHaInfo();
if (haInfo != null) {
HaContext.udpateReplicaInstance(HighAvailabilityProvider.INSTANCE.saveTo(backingStore, new StickyKey(nonce, haInfo.getKey()), pojo, true));
} else {
final StickyKey stickyKey = new StickyKey(nonce);
final String replicaId = HighAvailabilityProvider.saveTo(backingStore, stickyKey, pojo, true);
HaContext.updateHaInfo(new HaInfo(stickyKey.getHashKey(), replicaId, false));
}
LOGGER.log(Level.INFO, " nonce {0} saved ", nonce);
}
} catch (Exception ex) {
LOGGER.log(Level.SEVERE, LogStringsMessages.WSS_0825_ERROR_VALIDATE_NONCE(), ex);
return false;
}
return true;
}
public class nonceCleanupTask implements Runnable {
public void run() {
try {
//clear local nonce cache
localCache.removeExpired();
if (backingStore.size() <= 0) {
return;
}
int removed = backingStore.removeExpired(maxNonceAge);
LOGGER.log(Level.INFO, " removed {0} expired entries from backing store ",removed);
} catch (BackingStoreException ex) {
LOGGER.log(Level.SEVERE, LogStringsMessages.WSS_0827_ERROR_REMOVING_EXPIRED_ENTRIES(), ex);
}
}
}
public void remove(String key) throws BackingStoreException{
backingStore.remove(new StickyKey(key));
}
static public class HAPojo implements Serializable {
byte[] data;
public void setData(byte[] data) {
this.data = data;
}
public byte[] getData() {
return this.data;
}
public String toString() {
if (data == null) {
return "";
}
return new String(data);
}
}
}