All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sshtools.server.callback.CallbackServer Maven / Gradle / Ivy

/**
 * (c) 2002-2021 JADAPTIVE Limited. All Rights Reserved.
 *
 * This file is part of the Maverick Synergy Java SSH API.
 *
 * Maverick Synergy 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 3 of the License, or
 * (at your option) any later version.
 *
 * Maverick Synergy 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 Maverick Synergy.  If not, see .
 */
package com.sshtools.server.callback;

import java.io.IOException;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.nio.channels.SocketChannel;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

import com.sshtools.client.AuthenticationProtocolClient;
import com.sshtools.client.ClientStateListener;
import com.sshtools.client.SshClientContext;
import com.sshtools.common.auth.InMemoryMutualKeyAuthenticationStore;
import com.sshtools.common.auth.MutualKeyAuthenticatonStore;
import com.sshtools.common.logger.Log;
import com.sshtools.common.ssh.SshConnection;
import com.sshtools.common.ssh.SshException;
import com.sshtools.server.AbstractSshServer;
import com.sshtools.server.SshServerContext;
import com.sshtools.synergy.nio.ProtocolContextFactory;
import com.sshtools.synergy.nio.SshEngineContext;

/**
 * An abstract server that provides a callback facility, listening on a port and acting as a client to 
 * any callback clients that connect to it. The callback client similarly acts as a server allowing 
 * this server to perform operations on the remote client.
 * 
 * The server also has the facility to act as a normal server. Switching modes depending on the 
 * client identifier provided by the SSH client.
 */
public class CallbackServer extends AbstractSshServer {

	public static final String CALLBACK_IDENTIFIER = "CallbackClient-";
	
	String callbackIdentifier = CALLBACK_IDENTIFIER;
	MutualKeyAuthenticatonStore authenticationStore = new InMemoryMutualKeyAuthenticationStore();
	ClientContextFactory defaultContextFactory = new ClientContextFactory();
	Map callbackClients = new HashMap<>();
	
	public CallbackServer() {
	}
	
	public CallbackServer(InetAddress addressToBind, int port) {
		super(addressToBind, port);
	}
	
	public CallbackServer(int port) throws UnknownHostException {
		super(port);
	}

	public CallbackServer(String addressToBind, int port) throws UnknownHostException {
		super(addressToBind, port);
	}

	public void setCallbackIdentifier(String callbackIdentifier) {
		this.callbackIdentifier = callbackIdentifier;
	}
	
	public void setMutualKeyAuthenticationStore(MutualKeyAuthenticatonStore authenticationStore) {
		this.authenticationStore = authenticationStore;
	}
	
	public Collection getCallbackClients() {
		return Collections.unmodifiableCollection(callbackClients.values());
	}
	
	public SshConnection getCallbackClient(String username) {
		return callbackClients.get(username);
	}
	
	protected void configureClientContext(SshClientContext clientContext) {
		
	}

	protected class ClientContextFactory implements ProtocolContextFactory {

		public ClientContextFactory() {
		}

		@Override
		public SshClientContext createContext(SshEngineContext daemonContext, SocketChannel sc)
				throws IOException, SshException {
			SshClientContext clientContext = new SwitchingSshContext(
					getEngine(), callbackIdentifier, new ServerContextFactory());
			configureClientContext(clientContext);
			clientContext.addAuthenticator(new MutualCallbackAuthenticator(authenticationStore));
			clientContext.addStateListener(new ClientStateListener() {

				@Override
				public void authenticationStarted(AuthenticationProtocolClient authClient,
						SshConnection con) {
					if(callbackClients.containsKey(con.getUsername())) {
						con.disconnect(String.format("Only one connection allowed by %s at anyone time", con.getUsername()));
					}
				}

				@Override
				public void connected(SshConnection con) {
					Log.info("Callback client {} connected", con.getUsername());
					callbackClients.put(con.getUsername(), con);
				}

				@Override
				public void disconnected(SshConnection con) {
					SshConnection connected = callbackClients.get(con.getUsername());
					if(Objects.nonNull(connected)) {
						if(connected.equals(con)) {
							Log.info("Callback client {} disconnected", con.getUsername());
							callbackClients.remove(con.getUsername());
						}
					}
					
				}
			});
			return clientContext;
		}
	}
	
	class ServerContextFactory implements ProtocolContextFactory {

		@Override
		public SshServerContext createContext(SshEngineContext daemonContext, SocketChannel sc)
				throws IOException, SshException {
			SshServerContext serverContext = createServerContext(daemonContext, sc);
			return serverContext;
		}
	}

	@Override
	protected ProtocolContextFactory getDefaultContextFactory() {
		return defaultContextFactory;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy