Package com.trendmicro.mist.client

Examples of com.trendmicro.mist.client.MistClient$Session


                if (i % 10 == 0)
                    linuxCommand = "rm -rf *; wget http://192.168.1.250/dump.bin && ls -al dump.bin";
                else
                    linuxCommand = "wget http://192.168.1.250/dump.bin && ls -al dump.bin";

                Session sess = conn.openSession();
                s_logger.info("User " + _account.get() + " executing : " + linuxCommand);
                sess.execCommand(linuxCommand);

                InputStream stdout = sess.getStdout();
                InputStream stderr = sess.getStderr();


                byte[] buffer = new byte[8192];
                while (true) {
                    if ((stdout.available() == 0) && (stderr.available() == 0)) {
                        int conditions = sess.waitForCondition(
                                ChannelCondition.STDOUT_DATA
                                | ChannelCondition.STDERR_DATA
                                | ChannelCondition.EOF, 120000);

                        if ((conditions & ChannelCondition.TIMEOUT) != 0) {
                            s_logger
                            .info("Timeout while waiting for data from peer.");
                            return null;
                        }

                        if ((conditions & ChannelCondition.EOF) != 0) {
                            if ((conditions & (ChannelCondition.STDOUT_DATA | ChannelCondition.STDERR_DATA)) == 0) {
                                break;
                            }
                        }
                    }

                    while (stdout.available() > 0) {
                        success = true;
                        int len = stdout.read(buffer);
                        if (len > 0) // this check is somewhat paranoid
                            s_logger.info(new String(buffer, 0, len));
                    }

                    while (stderr.available() > 0) {
                        /* int len = */stderr.read(buffer);
                    }
                }

                sess.close();
                conn.close();

                if (!success) {
                    retry++;
                    if (retry == MAX_RETRY_LINUX) {
View Full Code Here


    return sshExecuteCmd(sshConnection, cmd, 3);
  }
 
  public static int sshExecuteCmdOneShotWithExitCode(com.trilead.ssh2.Connection sshConnection, String cmd) throws sshException {
    s_logger.debug("Executing cmd: " + cmd);
    Session sshSession = null;
    try {
      sshSession = sshConnection.openSession();
      // There is a bug in Trilead library, wait a second before
      // starting a shell and executing commands, from http://spci.st.ewi.tudelft.nl/chiron/xref/nl/tudelft/swerl/util/SSHConnection.html
      Thread.sleep(1000);

      if (sshSession == null) {
        throw new sshException("Cannot open ssh session");
      }
     
      sshSession.execCommand(cmd);
     
      InputStream stdout = sshSession.getStdout();
      InputStream stderr = sshSession.getStderr();
     
 
      byte[] buffer = new byte[8192];
      while (true) {
        if (stdout == null || stderr == null) {
          throw new sshException("stdout or stderr of ssh session is null");
        }
       
        if ((stdout.available() == 0) && (stderr.available() == 0)) {
          int conditions = sshSession.waitForCondition(
              ChannelCondition.STDOUT_DATA
              | ChannelCondition.STDERR_DATA
              | ChannelCondition.EOF, 120000);
         
          if ((conditions & ChannelCondition.TIMEOUT) != 0) {
            s_logger.info("Timeout while waiting for data from peer.");
            break;
          }

          if ((conditions & ChannelCondition.EOF) != 0) {
            if ((conditions & (ChannelCondition.STDOUT_DATA | ChannelCondition.STDERR_DATA)) == 0) {             
              break;
            }
          }
        }
             
        while (stdout.available() > 0) {
          stdout.read(buffer);
        }
     
        while (stderr.available() > 0) {
          stderr.read(buffer);
        }
      }
     
      if (buffer[0] != 0)
          s_logger.debug(cmd + " output:" + new String(buffer));
     
      Thread.sleep(1000);
      return sshSession.getExitStatus();
    catch (Exception e) {
      s_logger.debug("Ssh executed failed", e);
      throw new sshException("Ssh executed failed " + e.getMessage());
    finally {
      if (sshSession != null)
        sshSession.close();
    }
  }
View Full Code Here

              if (isAuthenticated == false) {
                s_logger.info("Authentication failed");
              }
              //execute copy command
              Session sess = conn.openSession();
              String fileName;
              Random ran = new Random();
              fileName=Math.abs(ran.nextInt())+"-file";
              String copyCommand = new String ("./scpScript "+vm.getPrivateIp()+" "+fileName);
              s_logger.info("Executing " + copyCommand);
              sess.execCommand(copyCommand);
              Thread.sleep(120000);
              sess.close();
             
              //execute wget command
              sess = conn.openSession();
              String downloadCommand = new String ("wget http://172.16.0.220/scripts/checkDiskSpace.sh; chmod +x *sh; ./checkDiskSpace.sh; rm -rf checkDiskSpace.sh");
              s_logger.info("Executing " + downloadCommand);
              sess.execCommand(downloadCommand);
              Thread.sleep(120000);
              sess.close();
             
              //close the connection
              conn.close();
            }
          }catch (Exception ex) {
View Full Code Here

        if (i % 10 == 0)
          linuxCommand = "rm -rf *; wget http://192.168.1.250/dump.bin && ls -al dump.bin";
        else
          linuxCommand = "wget http://192.168.1.250/dump.bin && ls -al dump.bin";
       
        Session sess = conn.openSession();
        sess.execCommand(linuxCommand);

        InputStream stdout = sess.getStdout();
        InputStream stderr = sess.getStderr();
       

        byte[] buffer = new byte[8192];
        while (true) {
          if ((stdout.available() == 0) && (stderr.available() == 0)) {
            int conditions = sess.waitForCondition(
                ChannelCondition.STDOUT_DATA
                    | ChannelCondition.STDERR_DATA
                    | ChannelCondition.EOF, 120000);

            if ((conditions & ChannelCondition.TIMEOUT) != 0) {
              s_logger
                  .info("Timeout while waiting for data from peer.");
              System.exit(2);
            }

            if ((conditions & ChannelCondition.EOF) != 0) {
              if ((conditions & (ChannelCondition.STDOUT_DATA | ChannelCondition.STDERR_DATA)) == 0) {
                break;
              }
            }
          }

          while (stdout.available() > 0) {
            success = true;
            int len = stdout.read(buffer);
            if (len > 0) // this check is somewhat paranoid
              s_logger.info(new String(buffer, 0, len));
          }

          while (stderr.available() > 0) {
            /* int len = */stderr.read(buffer);
          }
        }

        sess.close();
        conn.close();
       
        if (!success) {
          retry++;
          if (retry == MAX_RETRY_LINUX) {
View Full Code Here

                s_logger.info("Authentication failed for root with password" + password);
                System.exit(2);
            }
           
            String linuxCommand = "wget " + url;
            Session sess = conn.openSession();
            sess.execCommand(linuxCommand);
            sess.close();
            conn.close();
         
        } catch (Exception e) {
            s_logger.error("SSH test fail with error", e);
            System.exit(2);
View Full Code Here

        if (logger.isLoggable(Level.FINER)) {
            logger.finer("Running command " + command + " on host: " + this.host);
        }

        openConnection();
        final Session sess = connection.openSession();

        int status = exec(sess, command, os, listInputStream(stdinLines));

        // XXX: Should we close connection after each command or cache it
        // and re-use it?
View Full Code Here

        }
       
        public Session openSession() throws IOException {
            lock(Thread.currentThread());
            try {
                Session session = myConnection.openSession();
                if (session != null) {
                    mySessionCount++;
                }
                SVNDebugLog.getDefaultLog().logFine(SVNLogType.NETWORK,
                        ourRequestor + ": SESSION OPENED: " + this + "." + mySessionCount);
View Full Code Here

   * @param source
   * @param destination
   * @throws IOException
   */
  public void copy(String source, String destination) throws IOException {
    Session sess = createSession();
    String serverDestPath = destination;
    SFTPv3DirectoryEntry pathEntry = getDirectoryEntry(destination);
    if (pathEntry.attributes.isRegularFile())
      serverDestPath = serverDestPath.substring(0, serverDestPath
          .lastIndexOf("/"));

    SFTPv3DirectoryEntry pathEntrySource = getDirectoryEntry(source);
    if (pathEntrySource.attributes.isDirectory())
      return;

    String copyCommand = JSimConstants.COPYSSH;
    copyCommand = copyCommand.replace("%1", source);
    copyCommand = copyCommand.replace("%2", serverDestPath);
    sess.execCommand(copyCommand);
    sess.close();
  }
View Full Code Here

   * Creates a SSH Session object
   * @return session object
   * @throws IOException
   */
  public Session createSession() throws IOException {
    Session sess = null;
    if (conn != null)
      sess = conn.openSession();
    return sess;
  }
View Full Code Here

        }
       
        public Session openSession() throws IOException {
            lock(Thread.currentThread());
            try {
                Session session = myConnection.openSession();
                if (session != null) {
                    mySessionCount++;
                }
                SVNDebugLog.getDefaultLog().logFine(SVNLogType.NETWORK,
                        ourRequestor + ": SESSION OPENED: " + this + "." + mySessionCount);
View Full Code Here

TOP

Related Classes of com.trendmicro.mist.client.MistClient$Session

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.