コード例 #1
0
        void runNoAuthInitWithCredentials()
        {
            foreach (CredentialGenerator gen in SecurityTestUtil.getAllGenerators(false))
            {
                Properties <string, string> extraProps = gen.SystemProperties;
                Properties <string, string> javaProps  = gen.JavaProperties;
                string authenticator = gen.Authenticator;
                string authInit      = gen.AuthInit;

                if (authInit == null || authInit.Length == 0)
                {
                    // If the scheme does not have an authInit in the first place
                    // (e.g. SSL) then skip it
                    Util.Log("NoAuthInitWithCredentials: Skipping scheme [" +
                             gen.GetClassCode() + "] which has no authInit");
                    continue;
                }

                Util.Log("NoAuthInitWithCredentials: Using scheme: " +
                         gen.GetClassCode());
                Util.Log("NoAuthInitWithCredentials: Using authenticator: " +
                         authenticator);

                // Start the server
                CacheHelper.SetupJavaServers(true, CacheXml1);
                CacheHelper.StartJavaLocator(1, "GFELOC");
                Util.Log("Locator started");
                CacheHelper.StartJavaServerWithLocators(1, "GFECS1", 1, SecurityTestUtil.GetServerArgs(
                                                            authenticator, extraProps, javaProps));
                Util.Log("Cacheserver 1 started.");

                // Start client1 with valid credentials and client2 with invalid
                // credentials; both should fail without an authInit
                Properties <string, string> credentials1 = gen.GetValidCredentials(6);
                Properties <string, string> javaProps1   = gen.JavaProperties;
                Util.Log("NoAuthInitWithCredentials: For first client valid " +
                         "credentials: " + credentials1 + " : " + javaProps1);
                Properties <string, string> credentials2 = gen.GetInvalidCredentials(2);
                Properties <string, string> javaProps2   = gen.JavaProperties;
                Util.Log("NoAuthInitWithCredentials: For second client invalid " +
                         "credentials: " + credentials2 + " : " + javaProps2);

                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, (string)null, credentials1,
                               ExpectedResult.AuthRequiredException);
                m_client2.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, (string)null, credentials2,
                               ExpectedResult.AuthRequiredException);

                m_client1.Call(Close);
                m_client2.Call(Close);

                CacheHelper.StopJavaServer(1);

                CacheHelper.StopJavaLocator(1);

                CacheHelper.ClearEndpoints();
                CacheHelper.ClearLocators();
            }
        }
コード例 #2
0
        protected List <AuthzCredentialGenerator> GetAllGeneratorCombos(bool isMultiUser)
        {
            List <AuthzCredentialGenerator> generators =
                new List <AuthzCredentialGenerator>();

            foreach (AuthzCredentialGenerator.ClassCode authzClassCode in
                     Enum.GetValues(typeof(AuthzCredentialGenerator.ClassCode)))
            {
                List <CredentialGenerator> cGenerators =
                    SecurityTestUtil.getAllGenerators(isMultiUser);
                foreach (CredentialGenerator cGen in cGenerators)
                {
                    AuthzCredentialGenerator authzGen = AuthzCredentialGenerator
                                                        .Create(authzClassCode);
                    if (authzGen != null)
                    {
                        if (authzGen.Init(cGen))
                        {
                            generators.Add(authzGen);
                        }
                    }
                }
            }
            return(generators);
        }
コード例 #3
0
        void runInvalidAuthenticator()
        {
            foreach (CredentialGenerator gen in SecurityTestUtil.getAllGenerators(false))
            {
                Properties <string, string> extraProps = gen.SystemProperties;
                Properties <string, string> javaProps  = gen.JavaProperties;
                string authInit = gen.AuthInit;

                if (authInit == null || authInit.Length == 0)
                {
                    // Skip a scheme which does not have an authInit in the first place
                    // (e.g. SSL) since that will fail with AuthReqEx before
                    // authenticator is even invoked
                    Util.Log("InvalidAuthenticator: Skipping scheme [" +
                             gen.GetClassCode() + "] which has no authInit");
                    continue;
                }

                Util.Log("InvalidAuthenticator: Using scheme: " + gen.GetClassCode());
                Util.Log("InvalidAuthenticator: Using authinit: " + authInit);

                // Start the server with invalid authenticator
                CacheHelper.SetupJavaServers(true, CacheXml1);
                CacheHelper.StartJavaLocator(1, "GFELOC");
                Util.Log("Locator started");
                CacheHelper.StartJavaServerWithLocators(1, "GFECS1", 1, SecurityTestUtil.GetServerArgs(
                                                            "org.apache.geode.none", extraProps, javaProps));
                Util.Log("Cacheserver 1 started.");

                // Starting the client with valid credentials should throw
                // authentication failed exception
                Properties <string, string> credentials1 = gen.GetValidCredentials(1);
                Properties <string, string> javaProps1   = gen.JavaProperties;
                Util.Log("InvalidAuthenticator: For first client valid credentials: " +
                         credentials1 + " : " + javaProps1);
                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials1,
                               ExpectedResult.AuthFailedException);

                // Also try with invalid credentials
                Properties <string, string> credentials2 = gen.GetInvalidCredentials(1);
                Properties <string, string> javaProps2   = gen.JavaProperties;
                Util.Log("InvalidAuthenticator: For first client invalid " +
                         "credentials: " + credentials2 + " : " + javaProps2);
                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials2,
                               ExpectedResult.AuthFailedException);

                m_client1.Call(Close);

                CacheHelper.StopJavaServer(1);

                CacheHelper.StopJavaLocator(1);

                CacheHelper.ClearEndpoints();
                CacheHelper.ClearLocators();
            }
        }
コード例 #4
0
        void runValidCredentials()
        {
            foreach (CredentialGenerator gen in SecurityTestUtil.getAllGenerators(false))
            {
                Properties <string, string> extraProps = gen.SystemProperties;
                Properties <string, string> javaProps  = gen.JavaProperties;
                string authenticator = gen.Authenticator;
                string authInit      = gen.AuthInit;

                Util.Log("ValidCredentials: Using scheme: " + gen.GetClassCode());
                Util.Log("ValidCredentials: Using authenticator: " + authenticator);
                Util.Log("ValidCredentials: Using authinit: " + authInit);

                // Start the server
                CacheHelper.SetupJavaServers(true, CacheXml1);
                CacheHelper.StartJavaLocator(1, "GFELOC");
                Util.Log("Locator started");
                CacheHelper.StartJavaServerWithLocators(1, "GFECS1", 1, SecurityTestUtil.GetServerArgs(
                                                            authenticator, extraProps, javaProps));
                Util.Log("Cacheserver 1 started.");

                // Start the clients with valid credentials
                Properties <string, string> credentials1 = gen.GetValidCredentials(1);
                Properties <string, string> javaProps1   = gen.JavaProperties;
                Util.Log("ValidCredentials: For first client credentials: " +
                         credentials1 + " : " + javaProps1);
                Properties <string, string> credentials2 = gen.GetValidCredentials(2);
                Properties <string, string> javaProps2   = gen.JavaProperties;
                Util.Log("ValidCredentials: For second client credentials: " +
                         credentials2 + " : " + javaProps2);

                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials1);
                m_client2.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials2);

                // Perform some put operations from client1
                m_client1.Call(DoPuts, 4);

                m_client1.Call(DoTxPuts);

                // Verify that the puts succeeded
                m_client2.Call(DoGets, 4);

                m_client2.Call(DoGetsTx);

                m_client1.Call(Close);
                m_client2.Call(Close);

                CacheHelper.StopJavaServer(1);

                CacheHelper.StopJavaLocator(1);

                CacheHelper.ClearEndpoints();
                CacheHelper.ClearLocators();
            }
        }
コード例 #5
0
        void runInvalidCredentials()
        {
            foreach (CredentialGenerator gen in SecurityTestUtil.getAllGenerators(true))
            {
                Properties <string, string> extraProps = gen.SystemProperties;
                Properties <string, string> javaProps  = gen.JavaProperties;
                string authenticator = gen.Authenticator;
                string authInit      = gen.AuthInit;

                Util.Log("InvalidCredentials: Using scheme: " + gen.GetClassCode());
                Util.Log("InvalidCredentials: Using authenticator: " + authenticator);
                Util.Log("InvalidCredentials: Using authinit: " + authInit);

                // Start the server
                CacheHelper.SetupJavaServers(true, CacheXml1);
                CacheHelper.StartJavaLocator(1, "GFELOC");
                Util.Log("Locator started");
                CacheHelper.StartJavaServerWithLocators(1, "GFECS1", 1, SecurityTestUtil.GetServerArgs(
                                                            authenticator, extraProps, javaProps));
                Util.Log("Cacheserver 1 started.");

                // Start the clients with valid credentials
                Properties <string, string> credentials1 = gen.GetValidCredentials(8);
                Properties <string, string> javaProps1   = gen.JavaProperties;
                Util.Log("InvalidCredentials: For first client credentials: " +
                         credentials1 + " : " + javaProps1);
                Properties <string, string> credentials2 = gen.GetInvalidCredentials(7);
                Properties <string, string> javaProps2   = gen.JavaProperties;
                Util.Log("InvalidCredentials: For second client credentials: " +
                         credentials2 + " : " + javaProps2);

                m_client1.Call(SecurityTestUtil.CreateClientMU, RegionName,
                               CacheHelper.Locators, authInit, (Properties <string, string>)null, true);

                // Perform some put operations from client1
                m_client1.Call(DoPutsMU, 4, credentials1, true);

                // Creating region on client2 should throw authentication
                // failure exception
                m_client2.Call(SecurityTestUtil.CreateClientMU, RegionName,
                               CacheHelper.Locators, authInit, (Properties <string, string>)null, true);

                // Perform some put operations from client1
                m_client2.Call(DoPutsMU, 4, credentials2, true, ExpectedResult.AuthFailedException);

                m_client1.Call(Close);
                m_client2.Call(Close);

                CacheHelper.StopJavaServer(1);

                CacheHelper.StopJavaLocator(1);

                CacheHelper.ClearEndpoints();
                CacheHelper.ClearLocators();
            }
        }
コード例 #6
0
        void runInvalidAuthInit()
        {
            foreach (CredentialGenerator gen in SecurityTestUtil.getAllGenerators(true))
            {
                Properties <string, string> extraProps = gen.SystemProperties;
                Properties <string, string> javaProps  = gen.JavaProperties;
                string authenticator = gen.Authenticator;

                Util.Log("InvalidAuthInit: Using scheme: " + gen.GetClassCode());
                Util.Log("InvalidAuthInit: Using authenticator: " + authenticator);

                // Start the server
                CacheHelper.SetupJavaServers(true, CacheXml1);
                CacheHelper.StartJavaLocator(1, "GFELOC");
                Util.Log("Locator started");
                CacheHelper.StartJavaServerWithLocators(1, "GFECS1", 1, SecurityTestUtil.GetServerArgs(
                                                            authenticator, extraProps, javaProps));
                Util.Log("Cacheserver 1 started.");

                // Creating region on client1 with invalid authInit callback should
                // throw authentication required exception
                Properties <string, string> credentials = gen.GetValidCredentials(5);
                javaProps = gen.JavaProperties;
                Util.Log("InvalidAuthInit: For first client credentials: " +
                         credentials + " : " + javaProps);
                m_client1.Call(SecurityTestUtil.CreateClientMU, RegionName,
                               CacheHelper.Locators, "Apache.Geode.Templates.Cache.Security.none",
                               (Properties <string, string>)null, true);

                // Perform some put operations from client1
                m_client1.Call(DoPutsMU, 20, credentials, true);

                m_client1.Call(Close);

                CacheHelper.StopJavaServer(1);

                CacheHelper.StopJavaLocator(1);

                CacheHelper.ClearEndpoints();
                CacheHelper.ClearLocators();
            }
        }
コード例 #7
0
        void runCredentialsForNotifications()
        {
            foreach (CredentialGenerator gen in SecurityTestUtil.getAllGenerators(false))
            {
                Properties <string, string> extraProps = gen.SystemProperties;
                Properties <string, string> javaProps  = gen.JavaProperties;
                string authenticator = gen.Authenticator;
                string authInit      = gen.AuthInit;

                Util.Log("CredentialsForNotifications: Using scheme: " +
                         gen.GetClassCode());
                Util.Log("CredentialsForNotifications: Using authenticator: " +
                         authenticator);
                Util.Log("CredentialsForNotifications: Using authinit: " + authInit);

                // Start the two servers.
                CacheHelper.SetupJavaServers(true, CacheXml1, CacheXml2);
                CacheHelper.StartJavaLocator(1, "GFELOC");
                Util.Log("Locator started");
                CacheHelper.StartJavaServerWithLocators(1, "GFECS1", 1, SecurityTestUtil.GetServerArgs(
                                                            authenticator, extraProps, javaProps));
                Util.Log("Cacheserver 1 started.");
                CacheHelper.StartJavaServerWithLocators(2, "GFECS2", 1, SecurityTestUtil.GetServerArgs(
                                                            authenticator, extraProps, javaProps));
                Util.Log("Cacheserver 2 started.");

                // Start the clients with valid credentials
                Properties <string, string> credentials1 = gen.GetValidCredentials(5);
                Properties <string, string> javaProps1   = gen.JavaProperties;
                Util.Log("CredentialsForNotifications: For first client valid " +
                         "credentials: " + credentials1 + " : " + javaProps1);
                Properties <string, string> credentials2 = gen.GetValidCredentials(6);
                Properties <string, string> javaProps2   = gen.JavaProperties;
                Util.Log("CredentialsForNotifications: For second client valid " +
                         "credentials: " + credentials2 + " : " + javaProps2);
                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials1);
                // Set up zero forward connections to check notification handshake only
                m_client2.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials2,
                               0, ExpectedResult.Success);

                m_client1.Call(registerPdxType8);
                m_client2.Call(registerPdxType8);

                // Register interest for all keys on second client
                m_client2.Call(RegisterAllKeys, new string[] { RegionName });

                // Wait for secondary server to see second client
                Thread.Sleep(1000);

                // Perform some put operations from client1
                m_client1.Call(DoPuts, 2);
                // Verify that the puts succeeded
                m_client2.Call(DoLocalGets, 2);

                // Stop the first server
                CacheHelper.StopJavaServer(1);

                // Perform some create/update operations from client1
                m_client1.Call(DoPuts, 4, true, ExpectedResult.Success);
                // Verify that the creates/updates succeeded
                m_client2.Call(DoLocalGets, 4, true);

                // Start server1 again and try to connect client1 using zero forward
                // connections with no credentials.
                // Verify that the creation of region throws authentication
                // required exception
                CacheHelper.StartJavaServerWithLocators(1, "GFECS1", 1, SecurityTestUtil.GetServerArgs(
                                                            authenticator, extraProps, javaProps));
                Util.Log("Cacheserver 1 started.");
                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, (string)null, (Properties <string, string>)null,
                               0, ExpectedResult.AuthRequiredException);

                // Now try to connect client2 using zero forward connections
                // with invalid credentials.
                // Verify that the creation of region throws security exception
                credentials2 = gen.GetInvalidCredentials(3);
                javaProps2   = gen.JavaProperties;
                Util.Log("CredentialsForNotifications: For second client invalid " +
                         "credentials: " + credentials2 + " : " + javaProps2);
                m_client2.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials2,
                               0, ExpectedResult.AuthFailedException);
                // Now try to connect client2 with invalid auth-init method
                // Trying to create the region on client with valid credentials should
                // throw an authentication failed exception
                m_client2.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, "Apache.Geode.Templates.Cache.Security.none",
                               credentials1, 0, ExpectedResult.AuthRequiredException);

                // Try connection with null auth-init on clients.
                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, (string)null, credentials1,
                               0, ExpectedResult.AuthRequiredException);
                m_client2.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, (string)null, credentials2,
                               0, ExpectedResult.AuthRequiredException);

                m_client1.Call(Close);
                m_client2.Call(Close);

                CacheHelper.StopJavaServer(1);
                CacheHelper.StopJavaServer(2);

                CacheHelper.StopJavaLocator(1);
                CacheHelper.ClearLocators();
                CacheHelper.ClearEndpoints();
            }
        }
コード例 #8
0
        void runCredentialsWithFailover()
        {
            foreach (CredentialGenerator gen in SecurityTestUtil.getAllGenerators(false))
            {
                Properties <string, string> extraProps = gen.SystemProperties;
                Properties <string, string> javaProps  = gen.JavaProperties;
                string authenticator = gen.Authenticator;
                string authInit      = gen.AuthInit;

                Util.Log("CredentialsWithFailover: Using scheme: " +
                         gen.GetClassCode());
                Util.Log("CredentialsWithFailover: Using authenticator: " +
                         authenticator);
                Util.Log("CredentialsWithFailover: Using authinit: " + authInit);

                // Start the first server; do not start second server yet to force
                // the clients to connect to the first server.
                CacheHelper.SetupJavaServers(true, CacheXml1, CacheXml2);
                CacheHelper.StartJavaLocator(1, "GFELOC");
                Util.Log("Locator started");
                CacheHelper.StartJavaServerWithLocators(1, "GFECS1", 1, SecurityTestUtil.GetServerArgs(
                                                            authenticator, extraProps, javaProps));
                Util.Log("Cacheserver 1 started.");

                // Start the clients with valid credentials
                Properties <string, string> credentials1 = gen.GetValidCredentials(5);
                Properties <string, string> javaProps1   = gen.JavaProperties;
                Util.Log("CredentialsWithFailover: For first client valid " +
                         "credentials: " + credentials1 + " : " + javaProps1);
                Properties <string, string> credentials2 = gen.GetValidCredentials(6);
                Properties <string, string> javaProps2   = gen.JavaProperties;
                Util.Log("CredentialsWithFailover: For second client valid " +
                         "credentials: " + credentials2 + " : " + javaProps2);
                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials1);
                m_client2.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials2);

                // Perform some put operations from client1
                m_client1.Call(DoPuts, 2);
                // Verify that the puts succeeded
                m_client2.Call(DoGets, 2);

                // Start the second server and stop the first one to force a failover
                CacheHelper.StartJavaServerWithLocators(2, "GFECS2", 1, SecurityTestUtil.GetServerArgs(
                                                            authenticator, extraProps, javaProps));
                Util.Log("Cacheserver 2 started.");
                CacheHelper.StopJavaServer(1);

                // Perform some create/update operations from client1
                // and verify from client2
                m_client1.Call(DoPuts, 4, true, ExpectedResult.Success);
                m_client2.Call(DoGets, 4, true);

                // Try to connect client2 with no credentials
                // Verify that the creation of region throws security exception
                m_client2.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, (string)null, (Properties <string, string>)null,
                               ExpectedResult.AuthRequiredException);

                // Now try to connect client1 with invalid credentials
                // Verify that the creation of region throws security exception
                credentials1 = gen.GetInvalidCredentials(7);
                javaProps1   = gen.JavaProperties;
                Util.Log("CredentialsWithFailover: For first client invalid " +
                         "credentials: " + credentials1 + " : " + javaProps1);
                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials1,
                               ExpectedResult.AuthFailedException);

                m_client1.Call(Close);
                m_client2.Call(Close);

                CacheHelper.StopJavaServer(2);

                CacheHelper.StopJavaLocator(1);

                CacheHelper.ClearLocators();
                CacheHelper.ClearEndpoints();
            }
        }
コード例 #9
0
        void runNoAuthenticatorWithCredentials()
        {
            foreach (CredentialGenerator gen in SecurityTestUtil.getAllGenerators(false))
            {
                Properties <string, string> extraProps = gen.SystemProperties;
                Properties <string, string> javaProps  = gen.JavaProperties;
                string authenticator = gen.Authenticator;
                string authInit      = gen.AuthInit;

                if (authenticator == null || authenticator.Length == 0)
                {
                    // If the scheme does not have an authenticator in the first place
                    // (e.g. SSL) then skip it since this test is useless
                    Util.Log("NoAuthenticatorWithCredentials: Skipping scheme [" +
                             gen.GetClassCode() + "] which has no authenticator");
                    continue;
                }

                Util.Log("NoAuthenticatorWithCredentials: Using scheme: " +
                         gen.GetClassCode());
                Util.Log("NoAuthenticatorWithCredentials: Using authinit: " +
                         authInit);

                // Start the servers
                CacheHelper.SetupJavaServers(true, CacheXml1);
                CacheHelper.StartJavaLocator(1, "GFELOC");
                Util.Log("Locator started");
                CacheHelper.StartJavaServerWithLocators(1, "GFECS1", 1, SecurityTestUtil.GetServerArgs(
                                                            null, extraProps, javaProps));
                Util.Log("Cacheserver 1 started.");

                // Start client1 with valid credentials and client2 with invalid
                // credentials; both should succeed with no authenticator on server
                Properties <string, string> credentials1 = gen.GetValidCredentials(3);
                Properties <string, string> javaProps1   = gen.JavaProperties;
                Util.Log("NoAuthenticatorWithCredentials: For first client valid " +
                         "credentials: " + credentials1 + " : " + javaProps1);
                Properties <string, string> credentials2 = gen.GetInvalidCredentials(12);
                Properties <string, string> javaProps2   = gen.JavaProperties;
                Util.Log("NoAuthenticatorWithCredentials: For second client invalid " +
                         "credentials: " + credentials2 + " : " + javaProps2);

                m_client1.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials1);
                m_client2.Call(SecurityTestUtil.CreateClient, RegionName,
                               CacheHelper.Locators, authInit, credentials2);

                // Perform some put operations from client1
                m_client1.Call(DoPuts, 4);

                // Verify that the puts succeeded
                m_client2.Call(DoGets, 4);

                m_client1.Call(Close);
                m_client2.Call(Close);

                CacheHelper.StopJavaServer(1);

                CacheHelper.StopJavaLocator(1);

                CacheHelper.ClearEndpoints();
                CacheHelper.ClearLocators();
            }
        }