/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */ /* Copyright (c) 2002-2015 ymnk, JCraft,Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package com.jcraft.jsch; import java.io.PipedInputStream; import java.io.PipedOutputStream; import java.io.InputStream; import java.io.OutputStream; import java.io.IOException; public abstract class Channel implements Runnable{ static final int SSH_MSG_CHANNEL_OPEN_CONFIRMATION= 91; static final int SSH_MSG_CHANNEL_OPEN_FAILURE= 92; static final int SSH_MSG_CHANNEL_WINDOW_ADJUST= 93; static final int SSH_OPEN_ADMINISTRATIVELY_PROHIBITED= 1; static final int SSH_OPEN_CONNECT_FAILED= 2; static final int SSH_OPEN_UNKNOWN_CHANNEL_TYPE= 3; static final int SSH_OPEN_RESOURCE_SHORTAGE= 4; static int index=0; private static java.util.Vector pool=new java.util.Vector(); static Channel getChannel(String type){ if(type.equals("session")){ return new ChannelSession(); } if(type.equals("shell")){ return new ChannelShell(); } if(type.equals("exec")){ return new ChannelExec(); } if(type.equals("x11")){ return new ChannelX11(); } if(type.equals("auth-agent@openssh.com")){ return new ChannelAgentForwarding(); } if(type.equals("direct-tcpip")){ return new ChannelDirectTCPIP(); } if(type.equals("forwarded-tcpip")){ return new ChannelForwardedTCPIP(); } if(type.equals("sftp")){ return new ChannelSftp(); } if(type.equals("subsystem")){ return new ChannelSubsystem(); } return null; } static Channel getChannel(int id, Session session){ synchronized(pool){ for(int i=0; i0) notifyAll(); } int getRecipient(){ return recipient; } void init() throws JSchException { } public void connect() throws JSchException{ connect(0); } public void connect(int connectTimeout) throws JSchException{ this.connectTimeout=connectTimeout; try{ sendChannelOpen(); start(); } catch(Exception e){ connected=false; disconnect(); if(e instanceof JSchException) throw (JSchException)e; throw new JSchException(e.toString(), e); } } public void setXForwarding(boolean foo){ } public void start() throws JSchException{} public boolean isEOF() {return eof_remote;} void getData(Buffer buf){ setRecipient(buf.getInt()); setRemoteWindowSize(buf.getUInt()); setRemotePacketSize(buf.getInt()); } public void setInputStream(InputStream in){ io.setInputStream(in, false); } public void setInputStream(InputStream in, boolean dontclose){ io.setInputStream(in, dontclose); } public void setOutputStream(OutputStream out){ io.setOutputStream(out, false); } public void setOutputStream(OutputStream out, boolean dontclose){ io.setOutputStream(out, dontclose); } public void setExtOutputStream(OutputStream out){ io.setExtOutputStream(out, false); } public void setExtOutputStream(OutputStream out, boolean dontclose){ io.setExtOutputStream(out, dontclose); } public InputStream getInputStream() throws IOException { int max_input_buffer_size = 32*1024; try { max_input_buffer_size = Integer.parseInt(getSession().getConfig("max_input_buffer_size")); } catch(Exception e){} PipedInputStream in = new MyPipedInputStream( 32*1024, // this value should be customizable. max_input_buffer_size ); boolean resizable = 32*10240){ int _l=l; if(l>_bufl-(14+dataLen)-Session.buffer_margin){ _l=_bufl-(14+dataLen)-Session.buffer_margin; } if(_l<=0){ flush(); continue; } System.arraycopy(buf, s, _buf, 14+dataLen, _l); dataLen+=_l; s+=_l; l-=_l; } } public void flush() throws java.io.IOException{ if(closed){ throw new java.io.IOException("Already closed"); } if(dataLen==0) return; packet.reset(); buffer.putByte((byte)Session.SSH_MSG_CHANNEL_DATA); buffer.putInt(recipient); buffer.putInt(dataLen); buffer.skip(dataLen); try{ int foo=dataLen; dataLen=0; synchronized(channel){ if(!channel.close) getSession().write(packet, channel, foo); } } catch(Exception e){ close(); throw new java.io.IOException(e.toString()); } } public void close() throws java.io.IOException{ if(packet==null){ try{ init(); } catch(java.io.IOException e){ // close should be finished silently. return; } } if(closed){ return; } if(dataLen>0){ flush(); } channel.eof(); closed=true; } }; return out; } class MyPipedInputStream extends PipedInputStream{ private int BUFFER_SIZE = 1024; private int max_buffer_size = BUFFER_SIZE; MyPipedInputStream() throws IOException{ super(); } MyPipedInputStream(int size) throws IOException{ super(); buffer=new byte[size]; BUFFER_SIZE = size; max_buffer_size = size; } MyPipedInputStream(int size, int max_buffer_size) throws IOException{ this(size); this.max_buffer_size = max_buffer_size; } MyPipedInputStream(PipedOutputStream out) throws IOException{ super(out); } MyPipedInputStream(PipedOutputStream out, int size) throws IOException{ super(out); buffer=new byte[size]; BUFFER_SIZE=size; } /* * TODO: We should have our own Piped[I/O]Stream implementation. * Before accepting data, JDK's PipedInputStream will check the existence of * reader thread, and if it is not alive, the stream will be closed. * That behavior may cause the problem if multiple threads make access to it. */ public synchronized void updateReadSide() throws IOException { if(available() != 0){ // not empty return; } in = 0; out = 0; buffer[in++] = 0; read(); } private int freeSpace(){ int size = 0; if(out < in) { size = buffer.length-in; } else if(in < out){ if(in == -1) size = buffer.length; else size = out - in; } return size; } synchronized void checkSpace(int len) throws IOException { int size = freeSpace(); if(size max_buffer_size){ foo = max_buffer_size; } if((foo - datasize) < len) return; byte[] tmp = new byte[foo]; if(out < in) { System.arraycopy(buffer, 0, tmp, 0, buffer.length); } else if(in < out){ if(in == -1) { } else { System.arraycopy(buffer, 0, tmp, 0, in); System.arraycopy(buffer, out, tmp, tmp.length-(buffer.length-out), (buffer.length-out)); out = tmp.length-(buffer.length-out); } } else if(in == out){ System.arraycopy(buffer, 0, tmp, 0, buffer.length); in=buffer.length; } buffer=tmp; } else if(buffer.length == size && size > BUFFER_SIZE) { int i = size/2; if(i0) notifyAll(); } void setRemotePacketSize(int foo){ this.rmpsize=foo; } public void run(){ } void write(byte[] foo) throws IOException { write(foo, 0, foo.length); } void write(byte[] foo, int s, int l) throws IOException { try{ io.put(foo, s, l); }catch(NullPointerException e){} } void write_ext(byte[] foo, int s, int l) throws IOException { try{ io.put_ext(foo, s, l); }catch(NullPointerException e){} } void eof_remote(){ eof_remote=true; try{ io.out_close(); } catch(NullPointerException e){} } void eof(){ if(eof_local)return; eof_local=true; int i = getRecipient(); if(i == -1) return; try{ Buffer buf=new Buffer(100); Packet packet=new Packet(buf); packet.reset(); buf.putByte((byte)Session.SSH_MSG_CHANNEL_EOF); buf.putInt(i); synchronized(this){ if(!close) getSession().write(packet); } } catch(Exception e){ //System.err.println("Channel.eof"); //e.printStackTrace(); } /* if(!isConnected()){ disconnect(); } */ } /* http://www1.ietf.org/internet-drafts/draft-ietf-secsh-connect-24.txt 5.3 Closing a Channel When a party will no longer send more data to a channel, it SHOULD send SSH_MSG_CHANNEL_EOF. byte SSH_MSG_CHANNEL_EOF uint32 recipient_channel No explicit response is sent to this message. However, the application may send EOF to whatever is at the other end of the channel. Note that the channel remains open after this message, and more data may still be sent in the other direction. This message does not consume window space and can be sent even if no window space is available. When either party wishes to terminate the channel, it sends SSH_MSG_CHANNEL_CLOSE. Upon receiving this message, a party MUST send back a SSH_MSG_CHANNEL_CLOSE unless it has already sent this message for the channel. The channel is considered closed for a party when it has both sent and received SSH_MSG_CHANNEL_CLOSE, and the party may then reuse the channel number. A party MAY send SSH_MSG_CHANNEL_CLOSE without having sent or received SSH_MSG_CHANNEL_EOF. byte SSH_MSG_CHANNEL_CLOSE uint32 recipient_channel This message does not consume window space and can be sent even if no window space is available. It is recommended that any data sent before this message is delivered to the actual destination, if possible. */ void close(){ if(close)return; close=true; eof_local=eof_remote=true; int i = getRecipient(); if(i == -1) return; try{ Buffer buf=new Buffer(100); Packet packet=new Packet(buf); packet.reset(); buf.putByte((byte)Session.SSH_MSG_CHANNEL_CLOSE); buf.putInt(i); synchronized(this){ getSession().write(packet); } } catch(Exception e){ //e.printStackTrace(); } } public boolean isClosed(){ return close; } static void disconnect(Session session){ Channel[] channels=null; int count=0; synchronized(pool){ channels=new Channel[pool.size()]; for(int i=0; i0){ if(timeout>0L){ if((System.currentTimeMillis()-start)>timeout){ retry=0; continue; } } try{ long t = timeout==0L ? 10L : timeout; this.notifyme=1; wait(t); } catch(java.lang.InterruptedException e){ } finally{ this.notifyme=0; } retry--; } } if(!_session.isConnected()){ throw new JSchException("session is down"); } if(this.getRecipient()==-1){ // timeout throw new JSchException("channel is not opened."); } if(this.open_confirmation==false){ // SSH_MSG_CHANNEL_OPEN_FAILURE throw new JSchException("channel is not opened."); } connected=true; } }