/src/net/bytemine/openvpn/ssh/SSHTool.java

http://github.com/bytemine/bytemine-manager · Java · 126 lines · 69 code · 30 blank · 27 comment · 8 complexity · 8b6ed6624a2f2d81615ac54da82325ab MD5 · raw file

  1. /*************************************************************************
  2. * Written by / Copyright (C) 2009-2012 bytemine GmbH *
  3. * Author: Daniel Rauer, E-Mail: rauer@bytemine.net, *
  4. * Florian Reichel reichel@bytemine.net *
  5. * *
  6. * http://www.bytemine.net/ *
  7. *************************************************************************/
  8. package net.bytemine.openvpn.ssh;
  9. import java.io.ByteArrayOutputStream;
  10. import java.io.IOException;
  11. import java.io.InputStream;
  12. import java.io.OutputStream;
  13. import java.net.ConnectException;
  14. import java.util.logging.Logger;
  15. import net.bytemine.manager.bean.Server;
  16. import net.bytemine.manager.exception.VisualException;
  17. import com.jcraft.jsch.Channel;
  18. import com.jcraft.jsch.ChannelExec;
  19. import com.jcraft.jsch.Session;
  20. import net.bytemine.openvpn.ScpTool;
  21. /**
  22. * is able to send commands via ssh
  23. *
  24. * @author Daniel Rauer
  25. */
  26. public class SSHTool {
  27. private static Logger logger = Logger.getLogger(SSHTool.class.getName());
  28. // private ResourceBundle rb = ResourceBundleMgmt.getInstance().getUserBundle();
  29. private Server server;
  30. private Session sshSession;
  31. private SSHConnector sshConnector;
  32. public SSHTool(Server server) throws ConnectException, Exception {
  33. this.server = server;
  34. sshConnector = new SSHConnector(this.server);
  35. }
  36. public SSHTool(Server server, String username, String keyfile, int authtype) throws ConnectException, Exception {
  37. this.server = server;
  38. sshConnector = new SSHConnector(this.server,username,keyfile,authtype);
  39. }
  40. private Session getSession() throws ConnectException {
  41. sshSession = SSHSessionPool.getInstance().getSession(server.getHostname());
  42. if (sshSession == null || !sshSession.isConnected())
  43. this.sshSession = sshConnector.createSessionImmediately();
  44. return sshSession;
  45. }
  46. public void exec(String command) throws Exception {
  47. try {
  48. logger.info("SSHTool.exec start with command: " + command);
  49. // exec 'scp -t rfile' remotely
  50. String exec = command;
  51. Channel channel = getSession().openChannel("exec");
  52. ((ChannelExec) channel).setCommand(exec);
  53. OutputStream out = channel.getOutputStream();
  54. InputStream in = channel.getInputStream();
  55. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  56. ((ChannelExec)channel).setErrStream(baos);
  57. ((ChannelExec)channel).setXForwarding(true);
  58. channel.connect();
  59. checkAck(in);
  60. String err = baos.toString();
  61. if (err.length() > 0)
  62. throw new Exception(err);
  63. out.close();
  64. channel.disconnect();
  65. logger.info("SSHTool.exec end");
  66. } catch (Exception e) {
  67. new VisualException(e);
  68. throw e;
  69. }
  70. }
  71. public void disconnectSession() {
  72. int i = 1;
  73. ScpTool.disconnectSSHSession(i, this.sshSession);
  74. SSHSessionPool.getInstance().removeSession(server.getHostname());
  75. }
  76. /**
  77. * Checks if the server accepts a connection
  78. *
  79. * @param in
  80. * @return 0 for success
  81. * 1 for an error
  82. * 2 for a fatal error
  83. * @throws IOException
  84. */
  85. private static int checkAck(InputStream in) throws IOException {
  86. int b = in.read();
  87. // b may be 0 for success,
  88. // 1 for error,
  89. // 2 for fatal error,
  90. // -1
  91. if (b == 0 || b == -1)
  92. return b;
  93. ScpTool.CheckAcceptConnection(in, b, logger);
  94. return b;
  95. }
  96. }