📄 sshtunnel.java
字号:
/****************************************************************************** * * Copyright (c) 1999-2003 AppGate Network Security AB. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code as * defined in and that are subject to the MindTerm Public Source License, * Version 2.0, (the 'License'). You may not use this file except in compliance * with the License. * * You should have received a copy of the MindTerm Public Source License * along with this software; see the file LICENSE. If not, write to * AppGate Network Security AB, Otterhallegatan 2, SE-41118 Goteborg, SWEDEN * *****************************************************************************/package com.mindbright.ssh;import java.net.*;import java.io.*;import com.mindbright.util.Queue;public class SSHTunnel implements SSHChannelListener { int channelId; int remoteChannelId; boolean sentInputEOF; boolean sentOutputClosed; boolean receivedInputEOF; boolean receivedOutputClosed; protected SSHChannelController controller; protected Socket ioSocket; protected SSHTxChannel txChan; protected SSHRxChannel rxChan; protected Queue txQueue; protected String remoteDesc; public SSHTunnel(Socket ioSocket, int channelId, int remoteChannelId, SSHChannelController controller) throws IOException { this.ioSocket = ioSocket; this.channelId = channelId; this.remoteChannelId = remoteChannelId; this.controller = controller; this.sentInputEOF = false; this.sentOutputClosed = false; this.receivedInputEOF = false; this.receivedOutputClosed = false; if(ioSocket != null) { try { rxChan = new SSHRxChannel(new BufferedInputStream(ioSocket.getInputStream(), 8192), channelId); txChan = new SSHTxChannel(new BufferedOutputStream(ioSocket.getOutputStream()), channelId); } catch (Exception e) { throw new IOException("Could not create tunnel: " + e.toString()); } txQueue = txChan.getQueue(); rxChan.setSSHPduFactory(new SSHPduOutputStream(SSH.MSG_CHANNEL_DATA, controller.sndCipher, controller.sndComp, SSH.secureRandom())); txChan.setSSHChannelListener(this); rxChan.setSSHChannelListener(this); } } public int getLocalPort() { if(ioSocket != null) return ioSocket.getLocalPort(); return 0; } public String getLocalHost() { if(ioSocket != null) return ioSocket.getLocalAddress().getHostAddress(); return "N/A"; } public boolean isOpen() { if(this.remoteChannelId == SSH.UNKNOWN_CHAN_NUM) return false; return true; } public boolean setRemoteChannelId(int remoteChannelId) { if(isOpen()) return false; this.remoteChannelId = remoteChannelId; return true; } public void start() { txChan.start(); rxChan.start(); } public void openFailure() { if(ioSocket != null) { try { ioSocket.close(); } catch (IOException e) { // !!! } } } public SSHPdu prepare(SSHPdu pdu) throws IOException { ((SSHPduOutputStream)pdu).writeInt(remoteChannelId); return pdu; } public void receive(SSHPdu pdu) { controller.transmit(pdu); } public void transmit(SSHPdu pdu) { txQueue.putLast(pdu); } public void close(SSHChannel chan) { if(chan == null || chan instanceof SSHTxChannel) { sendOutputClosed(); try { ioSocket.close(); } catch (IOException e) { controller.alert("Error closing socket for: " + channelId + " : " + e.toString()); } } else { sendInputEOF(); } checkTermination(); } public synchronized void terminateNow() { close(null); } public synchronized void checkTermination() { if(sentInputEOF && sentOutputClosed && receivedInputEOF && receivedOutputClosed) { controller.delTunnel(channelId); if(txChan != null && txChan.isAlive()) txChan.stop(); if(rxChan != null && rxChan.isAlive()) rxChan.stop(); } } public void sendOutputClosed() { if(sentOutputClosed) return; try { SSHPduOutputStream pdu = new SSHPduOutputStream(SSH.MSG_CHANNEL_OUTPUT_CLOSED, controller.sndCipher, controller.sndComp, SSH.secureRandom()); pdu.writeInt(remoteChannelId); controller.transmit(pdu); sentOutputClosed = true; } catch (Exception e) { controller.alert("Error sending output-closed: " + e.toString()); } } public void sendInputEOF() { if(sentInputEOF) return; try { SSHPduOutputStream pdu = new SSHPduOutputStream(SSH.MSG_CHANNEL_INPUT_EOF, controller.sndCipher, controller.sndComp, SSH.secureRandom()); pdu.writeInt(remoteChannelId); controller.transmit(pdu); sentInputEOF = true; } catch (Exception e) { controller.alert("Error sending input-EOF: " + e.toString()); } } public void receiveOutputClosed() { if(rxChan != null) rxChan.stop(); receivedOutputClosed = true; sendInputEOF(); checkTermination(); } public void receiveInputEOF() { if(txChan != null) txChan.setClosePending(); receivedInputEOF = true; checkTermination(); } public void setRemoteDesc(String desc) { remoteDesc = desc; } public String getDescription() { if(ioSocket != null) return ioSocket.getInetAddress().getHostAddress() + ":" + ioSocket.getPort() + " <--> " + getLocalHost() + ":" + ioSocket.getLocalPort() + " <-ssh-> " + remoteDesc; else return "< N/A >"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -