/* * 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.sshd.client.channel; import java.io.IOException; import java.net.InetAddress; import java.net.UnknownHostException; import org.apache.sshd.client.future.DefaultOpenFuture; import org.apache.sshd.client.future.OpenFuture; import org.apache.sshd.common.SshConstants; import org.apache.sshd.common.SshException; import org.apache.sshd.common.channel.ChannelAsyncInputStream; import org.apache.sshd.common.channel.ChannelAsyncOutputStream; import org.apache.sshd.common.channel.ChannelOutputStream; import org.apache.sshd.common.channel.ChannelPipedInputStream; import org.apache.sshd.common.channel.ChannelPipedOutputStream; import org.apache.sshd.common.channel.Window; import org.apache.sshd.common.session.Session; import org.apache.sshd.common.util.ValidateUtils; import org.apache.sshd.common.util.buffer.Buffer; import org.apache.sshd.common.util.net.SshdSocketAddress; /** * TODO Add javadoc * * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a> */ public class ChannelDirectTcpip extends AbstractClientChannel { private final SshdSocketAddress local; private final SshdSocketAddress remote; private ChannelPipedOutputStream pipe; public ChannelDirectTcpip(SshdSocketAddress local, SshdSocketAddress remote) { super("direct-tcpip"); if (local == null) { try { local = new SshdSocketAddress(InetAddress.getLocalHost().getHostName(), 0); } catch (UnknownHostException e) { throw new IllegalStateException("Unable to retrieve local host name"); } } if (remote == null) { throw new IllegalArgumentException("Remote address must not be null"); } this.local = local; this.remote = remote; } @Override public synchronized OpenFuture open() throws IOException { if (closeFuture.isClosed()) { throw new SshException("Session has been closed"); } openFuture = new DefaultOpenFuture(lock); if (log.isDebugEnabled()) { log.debug("open({}) SSH_MSG_CHANNEL_OPEN", this); } Session session = getSession(); String remoteName = remote.getHostName(); String localName = local.getHostName(); Window wLocal = getLocalWindow(); Buffer buffer = session.createBuffer(SshConstants.SSH_MSG_CHANNEL_OPEN, type.length() + remoteName.length() + localName.length() + Long.SIZE); buffer.putString(type); buffer.putInt(getId()); buffer.putInt(wLocal.getSize()); buffer.putInt(wLocal.getPacketSize()); buffer.putString(remoteName); buffer.putInt(remote.getPort()); buffer.putString(localName); buffer.putInt(local.getPort()); writePacket(buffer); return openFuture; } @Override protected void doOpen() throws IOException { if (streaming == Streaming.Async) { asyncIn = new ChannelAsyncOutputStream(this, SshConstants.SSH_MSG_CHANNEL_DATA); asyncOut = new ChannelAsyncInputStream(this); } else { out = new ChannelOutputStream(this, getRemoteWindow(), log, SshConstants.SSH_MSG_CHANNEL_DATA, true); invertedIn = out; ChannelPipedInputStream pis = new ChannelPipedInputStream(this, getLocalWindow()); pipe = new ChannelPipedOutputStream(pis); in = pis; invertedOut = in; } } @Override protected void doWriteData(byte[] data, int off, long len) throws IOException { ValidateUtils.checkTrue(len <= Integer.MAX_VALUE, "Data length exceeds int boundaries: %d", len); pipe.write(data, off, (int) len); pipe.flush(); Window wLocal = getLocalWindow(); wLocal.consumeAndCheck(len); } }