You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by cc...@apache.org on 2010/01/12 21:41:43 UTC

svn commit: r898500 - in /servicemix/smx3/trunk/core/servicemix-core/src/test: java/org/apache/servicemix/jbi/security/SpringSecuredRemoteBrokerTest.java resources/org/apache/servicemix/jbi/security/secure2.xml

Author: ccustine
Date: Tue Jan 12 20:41:42 2010
New Revision: 898500

URL: http://svn.apache.org/viewvc?rev=898500&view=rev
Log:
SM-1925 Add security check on remote broker when using JMSFlow/JCAFlow

Added:
    servicemix/smx3/trunk/core/servicemix-core/src/test/java/org/apache/servicemix/jbi/security/SpringSecuredRemoteBrokerTest.java
    servicemix/smx3/trunk/core/servicemix-core/src/test/resources/org/apache/servicemix/jbi/security/secure2.xml

Added: servicemix/smx3/trunk/core/servicemix-core/src/test/java/org/apache/servicemix/jbi/security/SpringSecuredRemoteBrokerTest.java
URL: http://svn.apache.org/viewvc/servicemix/smx3/trunk/core/servicemix-core/src/test/java/org/apache/servicemix/jbi/security/SpringSecuredRemoteBrokerTest.java?rev=898500&view=auto
==============================================================================
--- servicemix/smx3/trunk/core/servicemix-core/src/test/java/org/apache/servicemix/jbi/security/SpringSecuredRemoteBrokerTest.java (added)
+++ servicemix/smx3/trunk/core/servicemix-core/src/test/java/org/apache/servicemix/jbi/security/SpringSecuredRemoteBrokerTest.java Tue Jan 12 20:41:42 2010
@@ -0,0 +1,197 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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 org.apache.servicemix.jbi.security;
+
+import java.io.File;
+import java.io.IOException;
+import java.net.URL;
+import java.security.Security;
+
+import javax.jbi.messaging.InOnly;
+import javax.security.auth.Subject;
+import javax.security.auth.callback.Callback;
+import javax.security.auth.callback.CallbackHandler;
+import javax.security.auth.callback.NameCallback;
+import javax.security.auth.callback.PasswordCallback;
+import javax.security.auth.callback.UnsupportedCallbackException;
+import javax.security.auth.login.LoginContext;
+import javax.xml.namespace.QName;
+
+import junit.framework.TestCase;
+import org.apache.activemq.broker.BrokerService;
+import org.apache.activemq.xbean.BrokerFactoryBean;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.apache.servicemix.client.DefaultServiceMixClient;
+import org.apache.servicemix.client.ServiceMixClient;
+import org.apache.servicemix.jbi.container.SpringJBIContainer;
+import org.apache.servicemix.jbi.jaxp.StringSource;
+import org.apache.xbean.spring.context.ClassPathXmlApplicationContext;
+import org.springframework.context.support.AbstractXmlApplicationContext;
+import org.springframework.core.io.ClassPathResource;
+
+
+public class SpringSecuredRemoteBrokerTest extends TestCase {
+
+    private static final Log LOG = LogFactory.getLog(SpringSecuredRemoteBrokerTest.class);
+
+    static {
+        String path = System.getProperty("java.security.auth.login.config");
+        if (path == null) {
+            URL resource = PropertiesLoginModuleTest.class.getResource("login.properties");
+            if (resource != null) {
+                path = new File(resource.getFile()).getAbsolutePath();
+                System.setProperty("java.security.auth.login.config", path);
+            }
+        }
+        LOG.info("Path to login config: " + path);
+        //
+        // This test depends on the "policy.allowSystemProperty" security
+        // property being set to true.  If we don't ensure it is set here,
+        // ibmjdk 5 SR2 will fail with the following message:
+        // "Unable to locate a login configuration".
+        //
+        try {
+            if (!"true".equals(Security.getProperty("policy.allowSystemProperty"))) {
+                Security.setProperty("policy.allowSystemProperty", "true");
+                LOG.info("Reset security property 'policy.allowSystemProperty' to 'true'");
+            }
+        } catch (SecurityException e) {
+            // Ignore.
+        }
+    }
+
+    protected ServiceMixClient client;
+    protected SpringJBIContainer jbi1;
+    protected SpringJBIContainer jbi2;
+    protected AbstractXmlApplicationContext context;
+    protected BrokerService broker;
+
+    protected void setUp() throws Exception {
+        BrokerFactoryBean bfb = new BrokerFactoryBean(new ClassPathResource("org/apache/servicemix/jbi/nmr/flow/jca/broker.xml"));
+        bfb.afterPropertiesSet();
+        broker = bfb.getBroker();
+        broker.start();
+
+        context = createBeanFactory();
+        jbi1 = (SpringJBIContainer) context.getBean("jbi1");
+        jbi2 = (SpringJBIContainer) context.getBean("jbi2");
+
+        assertNotNull("JBI Container not found in spring!", jbi1);
+        assertNotNull("JBI Container not found in spring!", jbi2);
+
+        client = new DefaultServiceMixClient(jbi1);
+    }
+
+    protected void tearDown() throws Exception {
+        if (context != null) {
+            LOG.info("Closing down the spring context");
+            context.destroy();
+        }
+        broker.stop();
+    }
+
+    protected AbstractXmlApplicationContext createBeanFactory() {
+        return new ClassPathXmlApplicationContext("org/apache/servicemix/jbi/security/secure2.xml");
+    }
+
+    protected Subject login(final String username, final String password) throws Exception {
+        LoginContext logincontext = new LoginContext("servicemix-domain", new CallbackHandler() {
+            public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
+                for (int i = 0; i < callbacks.length; i++) {
+                    if (callbacks[i] instanceof NameCallback) {
+                        ((NameCallback) callbacks[i]).setName(username);
+                    } else if (callbacks[i] instanceof PasswordCallback) {
+                        ((PasswordCallback) callbacks[i]).setPassword(password.toCharArray());
+                    } else {
+                        throw new UnsupportedCallbackException(callbacks[i]);
+                    }
+                }
+            }
+        });
+        logincontext.login();
+        return logincontext.getSubject();
+    }
+
+    protected void send(String username, String password, QName service) throws Exception {
+        Subject subject = login(username, password);
+        InOnly me = client.createInOnlyExchange();
+        me.setService(service);
+        me.getInMessage().setSecuritySubject(subject);
+        me.getInMessage().setContent(new StringSource("<hello>world</hello>"));
+        client.sendSync(me);
+    }
+
+    public void testAuthorizationsOnLocalReceiver1() throws Exception {
+        QName service = new QName("http://servicemix.org/example/1", "receiver1");
+        // receiver1 should be available to: programmers, accounting, testers
+        send("first", "secret", service);
+        send("second", "password", service);
+        send("third", "another", service);
+    }
+
+    public void testAuthorizationsOnLocalReceiver2() throws Exception {
+        QName service = new QName("http://servicemix.org/example/1", "receiver2");
+        // receiver2 should be available to: programmers, accounting
+        send("first", "secret", service);
+        send("second", "password", service);
+        try {
+            send("third", "another", service);
+            fail("receiver2 is not available to testers");
+        } catch (SecurityException e) {
+            // Expected
+        }
+    }
+
+    public void testAuthorizationsOnLocalReceiver3() throws Exception {
+        QName service = new QName("http://servicemix.org/example/1a", "receiver1");
+        // receiver3 should be available to: programmers
+        send("first", "secret", service);
+        try {
+            send("second", "password", service);
+            fail("receiver2 is not available to accounting");
+        } catch (SecurityException e) {
+            // Expected
+        }
+        try {
+            send("third", "another", service);
+            fail("receiver2 is not available to testers");
+        } catch (SecurityException e) {
+            // Expected
+        }
+    }
+
+    public void testAuthorizationsOnRemoteReceiver() throws Exception {
+        QName service = new QName("http://servicemix.org/example/2a", "receiver1");
+        // remote endpoint should be available to: programmers
+        send("first", "secret", service);
+        try {
+            send("second", "password", service);
+            fail("receiver3 is not available to accounting");
+        } catch (SecurityException e) {
+            // Expected
+        }
+        
+        try {
+            send("third", "another", service);
+            fail("receiver3 is not available to testers");
+        } catch (SecurityException e) {
+            // Expected
+        }
+    }
+
+}

Added: servicemix/smx3/trunk/core/servicemix-core/src/test/resources/org/apache/servicemix/jbi/security/secure2.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/trunk/core/servicemix-core/src/test/resources/org/apache/servicemix/jbi/security/secure2.xml?rev=898500&view=auto
==============================================================================
--- servicemix/smx3/trunk/core/servicemix-core/src/test/resources/org/apache/servicemix/jbi/security/secure2.xml (added)
+++ servicemix/smx3/trunk/core/servicemix-core/src/test/resources/org/apache/servicemix/jbi/security/secure2.xml Tue Jan 12 20:41:42 2010
@@ -0,0 +1,100 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You 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.
+
+-->
+<beans xmlns:sm="http://servicemix.apache.org/config/1.0"
+       xmlns:container1="http://servicemix.org/example/1"
+       xmlns:container1a="http://servicemix.org/example/1a"
+       xmlns:container2="http://servicemix.org/example/2"
+       xmlns:container2a="http://servicemix.org/example/2a">
+
+  <sm:container id="jbi1" embedded="true" useMBeanServer="false" name="ServiceMix1">
+    <sm:broker>
+      <sm:securedBroker>
+        <sm:authorizationMap>
+	      <sm:authorizationMap>
+	        <sm:authorizationEntries>
+	          <sm:authorizationEntry service="*:*" roles="programmers" />
+	          <sm:authorizationEntry service="container1:*" roles="accounting" />
+	          <sm:authorizationEntry service="container1:receiver1" roles="testers" />
+	        </sm:authorizationEntries>
+	      </sm:authorizationMap>
+        </sm:authorizationMap>
+        <sm:flows>
+          <sm:jmsFlow jmsURL="tcp://localhost:61216" />
+        </sm:flows>
+      </sm:securedBroker>
+    </sm:broker>
+      
+    <sm:activationSpecs>
+      <sm:activationSpec id="receiver11" service="container1:receiver1">
+        <sm:component>
+          <bean class="org.apache.servicemix.tck.ReceiverComponent" />
+        </sm:component>
+      </sm:activationSpec>
+      <sm:activationSpec id="receiver12" service="container1:receiver2">
+        <sm:component>
+          <bean class="org.apache.servicemix.tck.ReceiverComponent" />
+        </sm:component>
+      </sm:activationSpec>
+      <sm:activationSpec id="receiver13" service="container1a:receiver1">
+        <sm:component>
+          <bean class="org.apache.servicemix.tck.ReceiverComponent" />
+        </sm:component>
+      </sm:activationSpec>
+    </sm:activationSpecs>
+  </sm:container>
+
+  <sm:container id="jbi2" embedded="true" useMBeanServer="false" name="ServiceMix2">
+    <sm:broker>
+      <sm:securedBroker>
+        <sm:authorizationMap>
+	      <sm:authorizationMap>
+	        <sm:authorizationEntries>
+	          <sm:authorizationEntry service="*:*" roles="programmers" />
+	          <sm:authorizationEntry service="container2:*" roles="accounting" />
+	          <sm:authorizationEntry service="container2:receiver1" roles="testers" />
+	        </sm:authorizationEntries>
+	      </sm:authorizationMap>
+        </sm:authorizationMap>
+        <sm:flows>
+          <sm:jmsFlow jmsURL="tcp://localhost:61216" />
+        </sm:flows>
+      </sm:securedBroker>
+    </sm:broker>
+
+    <sm:activationSpecs>
+      <sm:activationSpec id="receiver21" service="container2:receiver1">
+        <sm:component>
+          <bean class="org.apache.servicemix.tck.ReceiverComponent" />
+        </sm:component>
+      </sm:activationSpec>
+      <sm:activationSpec id="receiver22" service="container2:receiver2">
+        <sm:component>
+          <bean class="org.apache.servicemix.tck.ReceiverComponent" />
+        </sm:component>
+      </sm:activationSpec>
+      <sm:activationSpec id="receiver23" service="container2a:receiver1">
+        <sm:component>
+          <bean class="org.apache.servicemix.tck.ReceiverComponent" />
+        </sm:component>
+      </sm:activationSpec>
+    </sm:activationSpecs>
+  </sm:container>
+
+</beans>