Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/*
* 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.ignite.internal.client.integration;

import org.apache.ignite.internal.client.GridClient;
import org.apache.ignite.internal.client.GridClientCompute;
import org.apache.ignite.internal.client.GridClientConfiguration;
import org.apache.ignite.internal.client.GridClientData;
import org.apache.ignite.internal.client.GridClientException;
import org.apache.ignite.internal.client.GridClientNode;
import org.apache.ignite.internal.client.GridClientPredicate;
import org.apache.ignite.internal.client.GridClientProtocol;
import org.apache.ignite.internal.client.ssl.GridSslContextFactory;
import org.apache.ignite.plugin.security.SecurityCredentials;
import org.apache.ignite.plugin.security.SecurityCredentialsBasicProvider;
import org.apache.ignite.spi.discovery.tcp.TestAuthPluginProvider;
import org.apache.ignite.spi.discovery.tcp.TestAuthProcessor;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

import java.util.Collections;

/**
* Tests the Authorization in client-server communication.
*/
public class ClientTcpAuthTest extends ClientAbstractSelfTest {

@Override
protected GridClientConfiguration clientConfiguration() throws GridClientException {
GridClientConfiguration cliCfg = super.clientConfiguration();
cliCfg.setSecurityCredentialsProvider(
new SecurityCredentialsBasicProvider(
new SecurityCredentials("user", "password")));
return cliCfg;
}

@Test
public void testAuthorization() throws Exception{
GridClient client = client();

GridClientData data = client.data("cache");
data.put("key", "val");
assertEquals("val", data.get("key"));

GridClientCompute compute = client.compute().projection(new GridClientPredicate<GridClientNode>() {
@Override public boolean apply(GridClientNode e) {
return true;
}
});

Integer result = compute.execute(getTaskName(), Collections.singletonList("taskArg"));
assertNotNull(result);
assertEquals(7, result.intValue());
}

/** {@inheritDoc} */
@Override protected GridClientProtocol protocol() {
return GridClientProtocol.TCP;
}

/** {@inheritDoc} */
@Override protected String serverAddress() {
return HOST + ":" + BINARY_PORT;
}

/** {@inheritDoc} */
@Override protected boolean useSsl() {
return false;
}

/** {@inheritDoc} */
@Override protected GridSslContextFactory sslContextFactory() {
return null;
}

@BeforeClass
public static void enableAuth(){
TestAuthPluginProvider.enabled = true;
TestAuthProcessor.enabled = true;
}

@AfterClass
public static void disableAuth(){
TestAuthPluginProvider.enabled = false;
TestAuthProcessor.enabled = false;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,19 @@ else if (now - lastPingSndTime > pingInterval && lastPingRcvTime != Long.MAX_VAL

assert old == null;

GridNioFuture<?> sndFut = ses.send(msg);
GridNioFuture<?> sndFut;
if(sesTok == null && credentials() != null) {
fut.retryState(TcpClientFuture.STATE_AUTH_RETRY);

GridClientAuthenticationRequest req = buildAuthRequest();

req.requestId(reqId);

sndFut = ses.send(req);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't see where you send "msg" in this branch. Is it ignored?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The message is already pended in the original future (for which status is changing to STATE_AUTH_RETRY). So the message is not ignored but postponed.

}
else {
sndFut = ses.send(msg);
}

lastMsgSndTime = System.currentTimeMillis();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
org.apache.ignite.spi.discovery.tcp.TestReconnectPluginProvider
org.apache.ignite.spi.discovery.tcp.TestAuthPluginProvider
org.apache.ignite.internal.processors.cache.persistence.standbycluster.IgniteStandByClusterTest$StanByClusterTestProvider
org.apache.ignite.internal.processors.cache.persistence.wal.memtracker.PageMemoryTrackerPluginProvider
org.apache.ignite.internal.processors.configuration.distributed.TestDistibutedConfigurationPlugin
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
/*
* 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.ignite.spi.discovery.tcp;

import org.apache.ignite.IgniteCheckedException;
import org.apache.ignite.cluster.ClusterNode;
import org.apache.ignite.internal.GridKernalContext;
import org.apache.ignite.internal.IgniteKernal;
import org.apache.ignite.internal.processors.security.GridSecurityProcessor;
import org.apache.ignite.plugin.CachePluginContext;
import org.apache.ignite.plugin.CachePluginProvider;
import org.apache.ignite.plugin.ExtensionRegistry;
import org.apache.ignite.plugin.IgnitePlugin;
import org.apache.ignite.plugin.PluginContext;
import org.apache.ignite.plugin.PluginProvider;
import org.apache.ignite.plugin.PluginValidationException;
import org.jetbrains.annotations.Nullable;

import java.io.Serializable;
import java.util.UUID;

/**
* Creates TestAuthProcessor.
*/
public class TestAuthPluginProvider implements PluginProvider {
/** */
private GridKernalContext igniteCtx;

/** */
public static volatile boolean enabled;

/** {@inheritDoc} */
@Override public String name() {
return "TestAuthPlugin";
}

/** {@inheritDoc} */
@Override public String version() {
return "1.0";
}

/** {@inheritDoc} */
@Override public String copyright() {
return "";
}

/** {@inheritDoc} */
@Override public void initExtensions(PluginContext ctx, ExtensionRegistry registry) {
igniteCtx = ((IgniteKernal)ctx.grid()).context();
}

/** {@inheritDoc} */
@Override public void start(PluginContext ctx) throws IgniteCheckedException {
// No-op
}

/** {@inheritDoc} */
@Override public void stop(boolean cancel) throws IgniteCheckedException {
// No-op
}

/** {@inheritDoc} */
@Override public void onIgniteStart() throws IgniteCheckedException {
// No-op
}

/** {@inheritDoc} */
@Override public void onIgniteStop(boolean cancel) {
// No-op
}

/** {@inheritDoc} */
@Nullable @Override public Serializable provideDiscoveryData(UUID nodeId) {
return null;
}

/** {@inheritDoc} */
@Override public void receiveDiscoveryData(UUID nodeId, Serializable data) {
// No-op
}

/** {@inheritDoc} */
@Override public void validateNewNode(ClusterNode node) throws PluginValidationException {
// No-op
}

/** {@inheritDoc} */
@Nullable @Override public Object createComponent(PluginContext ctx, Class cls) {
if (enabled && GridSecurityProcessor.class.equals(cls))
return new TestAuthProcessor(igniteCtx);

return null;
}

/** {@inheritDoc} */
@Override public IgnitePlugin plugin() {
return new IgnitePlugin() {};
}

/** {@inheritDoc} */
@Override public CachePluginProvider createCacheProvider(CachePluginContext ctx) {
return null;
}
}
Loading