From jboss-remoting-commits at lists.jboss.org Fri Dec 17 21:15:15 2010 Content-Type: multipart/mixed; boundary="===============3613961645420395417==" MIME-Version: 1.0 From: jboss-remoting-commits at lists.jboss.org To: jboss-remoting-commits at lists.jboss.org Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6176 - in remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/bisocket: dos and 1 other directory. Date: Fri, 17 Dec 2010 21:15:15 -0500 Message-ID: <201012180215.oBI2FF9h023460@svn01.web.mwc.hst.phx2.redhat.com> --===============3613961645420395417== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: ron.sigal(a)jboss.com Date: 2010-12-17 21:15:15 -0500 (Fri, 17 Dec 2010) New Revision: 6176 Added: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/bisoc= ket/dos/ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/bisoc= ket/dos/DosTestCase.java Log: JBREM-1261: New unit test. Added: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/b= isocket/dos/DosTestCase.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/biso= cket/dos/DosTestCase.java (rev 0) +++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/biso= cket/dos/DosTestCase.java 2010-12-18 02:15:15 UTC (rev 6176) @@ -0,0 +1,287 @@ +/* +* JBoss, Home of Professional Open Source +* Copyright 2009, JBoss Inc., and individual contributors as indicated +* by the @authors tag. See the copyright.txt in the distribution for a +* full listing of individual contributors. +* +* This is free software; you can redistribute it and/or modify it +* under the terms of the GNU Lesser General Public License as +* published by the Free Software Foundation; either version 2.1 of +* the License, or (at your option) any later version. +* +* This software is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +* Lesser General Public License for more details. +* +* You should have received a copy of the GNU Lesser General Public +* License along with this software; if not, write to the Free +* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +* 02110-1301 USA, or see the FSF site: http://www.fsf.org. +*/ +package org.jboss.test.remoting.transport.bisocket.dos; + +import java.io.IOException; +import java.net.InetAddress; +import java.net.Socket; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Iterator; +import java.util.Map; +import java.util.Set; + +import javax.management.MBeanServer; + +import junit.framework.TestCase; + +import org.apache.log4j.ConsoleAppender; +import org.apache.log4j.Level; +import org.apache.log4j.Logger; +import org.apache.log4j.PatternLayout; +import org.jboss.remoting.Client; +import org.jboss.remoting.InvocationRequest; +import org.jboss.remoting.InvokerLocator; +import org.jboss.remoting.ServerInvocationHandler; +import org.jboss.remoting.ServerInvoker; +import org.jboss.remoting.callback.Callback; +import org.jboss.remoting.callback.HandleCallbackException; +import org.jboss.remoting.callback.InvokerCallbackHandler; +import org.jboss.remoting.transport.Connector; +import org.jboss.remoting.transport.PortUtil; +import org.jboss.remoting.transport.bisocket.Bisocket; + +/** + * @author Ron Sigal + * @version $Rev$ + *
+ * Copyright Oct 13, 2010 + *
+ */ +public class DosTestCase extends TestCase +{ + private static final Logger log =3D Logger.getLogger(DosTestCase.class); + private static final String CALLBACK_TEST =3D "callbackTest"; + = + private static boolean firstTime =3D true; + = + protected String host; + protected int port; + protected int secondaryPort; + protected String locatorURI; + protected InvokerLocator serverLocator; + protected Connector connector; + protected TestInvocationHandler invocationHandler; + protected Object lock =3D new Object(); + protected boolean dosAttackThreadRan; + protected boolean secondCallbackRan; + + = + public void setUp() throws Exception + { + if (firstTime) + { + firstTime =3D false; + Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO); + Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO); + String pattern =3D "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n"; + PatternLayout layout =3D new PatternLayout(pattern); + ConsoleAppender consoleAppender =3D new ConsoleAppender(layout); + Logger.getRootLogger().addAppender(consoleAppender); = + } + } + + = + public void tearDown() + { + } + = + public void testDosAttack() throws Throwable + { + log.info("entering " + getName()); + = + // Start server. + setupServer(); + = + // Create client. + HashMap clientConfig =3D new HashMap(); + clientConfig.put(InvokerLocator.FORCE_REMOTE, "true"); + addExtraClientConfig(clientConfig); + final Client client =3D new Client(serverLocator, clientConfig); + client.connect(); + assertEquals("abc", client.invoke("abc")); + log.info("client is connected"); + = + // Add callback handler. + TestCallbackHandler callbackHandler =3D new TestCallbackHandler(); + HashMap metadata =3D new HashMap(); + metadata.put(Bisocket.IS_CALLBACK_SERVER, "true"); + client.addListener(callbackHandler, metadata); + client.invoke(CALLBACK_TEST); + assertEquals(1, callbackHandler.counter); + log.info("callback handler is installed"); + = + // Test DOS attack. = + new Thread() + { + public void run() + { + try + { + Socket s =3D new Socket(host, secondaryPort); + log.info(this + " created socket " + s); + synchronized (lock) + { + dosAttackThreadRan =3D true; + } = + } + catch (IOException e) + { + log.error("unable to connect to secondaryPort: " + secondar= yPort, e); + } + finally + { + synchronized (lock) + { + lock.notifyAll(); + } = + } + } + }.start(); + = + Thread.sleep(2000); + = + synchronized (lock) + { + if (!dosAttackThreadRan) + { + long start =3D System.currentTimeMillis(); + long end =3D start + 10000; + while (end - System.currentTimeMillis() > 0) + { + try + { + lock.wait(end - System.currentTimeMillis()); + } + catch (InterruptedException e){ + + } + } + } + } = + = + if (!dosAttackThreadRan) + { + fail("DOS attack thread did not run"); + } + = + = + // DOS attack has occurred. Try to add another callback handler. + new Thread() + { + public void run() + { + TestCallbackHandler callbackHandler2 =3D new TestCallbackHandl= er(); + try + { + = + HashMap metadata =3D new HashMap(); + metadata.put(Bisocket.IS_CALLBACK_SERVER, "true"); + client.addListener(callbackHandler2, metadata); + secondCallbackRan =3D true; + log.info(this + " second callback handler installed after D= OS attack"); + } + catch (Throwable e) + { + log.info(this + " second callback failed", e); + } = + } + }.start(); + = + Thread.sleep(10000); + assertTrue(secondCallbackRan); + = + client.removeListener(callbackHandler); + client.disconnect(); + connector.stop(); + } + = + protected String getTransport() + { + return "bisocket"; + } + = + = + protected void addExtraClientConfig(Map config) {} + protected void addExtraServerConfig(Map config) {} + = + + protected void setupServer() throws Exception + { + host =3D InetAddress.getLocalHost().getHostAddress(); + port =3D PortUtil.findFreePort(host); + secondaryPort =3D PortUtil.findFreePort(host); + locatorURI =3D getTransport() + "://" + host + ":" + port + "/?secon= daryBindPort=3D" + secondaryPort; + String metadata =3D System.getProperty("remoting.metadata"); + if (metadata !=3D null) + { + locatorURI +=3D "&" + metadata; + } + serverLocator =3D new InvokerLocator(locatorURI); + log.info("Starting remoting server with locator uri of: " + locatorU= RI); + HashMap config =3D new HashMap(); + config.put(InvokerLocator.FORCE_REMOTE, "true"); + addExtraServerConfig(config); + connector =3D new Connector(serverLocator, config); + connector.create(); + invocationHandler =3D new TestInvocationHandler(); + connector.addInvocationHandler("test", invocationHandler); + connector.start(); + } + = + = + protected void shutdownServer() throws Exception + { + if (connector !=3D null) + connector.stop(); + } + = + = + + static class TestInvocationHandler implements ServerInvocationHandler + { + public Set listeners =3D new HashSet(); + = + public void addListener(InvokerCallbackHandler callbackHandler) + { + listeners.add(callbackHandler); + } + public Object invoke(final InvocationRequest invocation) throws Thro= wable + { + if (CALLBACK_TEST.equals(invocation.getParameter())) + { + Iterator it =3D listeners.iterator(); + while (it.hasNext()) + { + InvokerCallbackHandler handler =3D (InvokerCallbackHandler)= it.next(); + handler.handleCallback(new Callback("test")); + log.info(this + " sent callback"); + } + } + return invocation.getParameter(); + } + public void removeListener(InvokerCallbackHandler callbackHandler) {} + public void setMBeanServer(MBeanServer server) {} + public void setInvoker(ServerInvoker invoker) {} + } + = + static class TestCallbackHandler implements InvokerCallbackHandler + { + public int counter; + = + public void handleCallback(Callback callback) throws HandleCallbackE= xception + { + log.info(this + " received callback"); + counter++; + } + } +} \ No newline at end of file --===============3613961645420395417==--