SshBase.cs :  » Network-Clients » SharpSSH » Tamir » SharpSsh » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Network Clients » SharpSSH 
SharpSSH » Tamir » SharpSsh » SshBase.cs
using System;
using System.Collections;
using Tamir.SharpSsh.jsch;

/* 
 * SshBase.cs
 * 
 * Copyright (c) 2006 Tamir Gal, http://www.tamirgal.com, 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 THE AUTHOR
 *  *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.
 * 
 **/
namespace Tamir.SharpSsh{
  /// <summary>
  /// A wrapper class for JSch's SSH channel
  /// </summary>
  public abstract class SshBase
  {
    protected string    m_host;
    protected string  m_user;
    protected string  m_pass;
    protected JSch      m_jsch;
    protected Session   m_session;
    protected Channel   m_channel;

    /// <summary>
    /// Default TCP port of SSH protocol
    /// </summary>
    private static int SSH_TCP_PORT = 22;

    /// <summary>
    /// Constructs a new SSH instance
    /// </summary>
    /// <param name="sftpHost">The remote SSH host</param>
    /// <param name="user">The login username</param>
    /// <param name="password">The login password</param>
    public SshBase(string sftpHost, string user, string password)
    {
      this.m_host = sftpHost;
      this.m_user = user;
      this.Password = password;
      m_jsch = new JSch();
    }

    /// <summary>
    /// Constructs a new SSH instance
    /// </summary>
    /// <param name="sftpHost">The remote SSH host</param>
    /// <param name="user">The login username</param>
    public SshBase(string sftpHost, string user)
      : this(sftpHost, user, null)
    {
    }

    /// <summary>
    /// Adds identity file for publickey user authentication
    /// </summary>
    /// <param name="privateKeyFile">The path to the private key file</param>
    public virtual void AddIdentityFile(string privateKeyFile)
    {
      m_jsch.addIdentity(privateKeyFile);
    }

    /// <summary>
    /// Adds identity file for publickey user authentication
    /// </summary>
    /// <param name="privateKeyFile">The path to the private key file</param>
    /// <param name="passphrase">A passphrase for decrypting the private key file</param>
    public virtual void AddIdentityFile(string privateKeyFile, string passphrase)
    {
      m_jsch.addIdentity(privateKeyFile, passphrase);
    }

    protected abstract string ChannelType{get;}

    /// <summary>
    /// Connect to remote SSH server
    /// </summary>
    public virtual void Connect()
    {
      this.Connect(SSH_TCP_PORT);
    }

    /// <summary>
    /// Connect to remote SSH server
    /// </summary>
    /// <param name="tcpPort">The destination TCP port for this connection</param>
    public virtual void Connect(int tcpPort)
    {
      this.ConnectSession(tcpPort);
      this.ConnectChannel();  
    }

    protected virtual void ConnectSession(int tcpPort)
    {
      m_session = m_jsch.getSession(m_user, m_host, tcpPort);
      if (Password != null)
        m_session.setUserInfo(new KeyboardInteractiveUserInfo(Password));
      Hashtable config = new Hashtable();
      config.Add("StrictHostKeyChecking", "no");
      m_session.setConfig(config);
      m_session.connect();
    }

    protected virtual void ConnectChannel()
    {
      m_channel = m_session.openChannel(ChannelType);
      this.OnChannelReceived();
      m_channel.connect();
      this.OnConnected();
    }

    protected virtual void OnConnected()
    {
    }

    protected virtual void OnChannelReceived()
    {
    }

    /// <summary>
    /// Closes the SSH subsystem
    /// </summary>
    public virtual void Close()
    {
      if (m_channel != null)
      {
        m_channel.disconnect();
        m_channel = null;
      }
      if (m_session != null)
      {
        m_session.disconnect();
        m_session = null;
      }
    }

    /// <summary>
    /// Return true if the SSH subsystem is connected
    /// </summary>
    public virtual bool Connected
    {
      get 
      {
        if (m_session != null)
          return m_session.isConnected();
        return false;
      }
    }

    /// <summary>
    /// Gets the Cipher algorithm name used in this SSH connection.
    /// </summary>
    public string Cipher
    {
      get
      {
        CheckConnected(); 
        return m_session.getCipher();
      }
    }

    /// <summary>
    /// Gets the MAC algorithm name used in this SSH connection.
    /// </summary>
    public string Mac
    {
      get
      {
        CheckConnected(); 
        return m_session.getMac();
      }
    }

    /// <summary>
    /// Gets the server SSH version string.
    /// </summary>
    public string ServerVersion
    {
      get
      {
        CheckConnected(); 
        return m_session.getServerVersion();
      }
    }

    /// <summary>
    /// Gets the client SSH version string.
    /// </summary>
    public string ClientVersion
    {
      get
      {
        CheckConnected(); 
        return m_session.getClientVersion();
      }
    }

    public string Host
    {
      get
      {
        CheckConnected(); 
        return m_session.getHost();
      }
    }

    public HostKey HostKey
    {
      get
      {
        CheckConnected(); 
        return m_session.getHostKey();
      }
    }

    public int Port
    {
      get
      {
        CheckConnected(); 
        return m_session.getPort();
      }
    }

    /// <summary>
    /// The password string of the SSH subsystem
    /// </summary>
    public string Password
    {
      get { return m_pass; }
      set { m_pass = value; }
    }
    public string Username
    {
      get { return m_user; }
    }

    public static Version Version
    {
      get
      {
        System.Reflection.Assembly asm
          = System.Reflection.Assembly.GetAssembly(typeof(Tamir.SharpSsh.SshBase));
        return asm.GetName().Version;
      }
    }

    private void CheckConnected()
    {
      if(!Connected)
      {
        throw new Exception("SSH session is not connected.");
      }
    }
    
    /// <summary>
    /// For password and KI auth modes
    /// </summary>
    protected class KeyboardInteractiveUserInfo : UserInfo, UIKeyboardInteractive
    {
      string _password;
 
      public KeyboardInteractiveUserInfo(string password)
      {
        _password = password;  
      }
 
      #region UIKeyboardInteractive Members
 
      public string[] promptKeyboardInteractive(string destination, string name, string instruction, string[] prompt, bool[] echo)
      {
        return new string[] { _password };
      }
 
      #endregion
 
      #region UserInfo Members
 
      public bool promptYesNo(string message)
      {
        return true;
      }
 
      public bool promptPassword(string message)
      {
        return true;
      }
 
      public string getPassword()
      {
        return _password;
      }
 
      public bool promptPassphrase(string message)
      {
        return true;
      }
 
      public string getPassphrase()
      {
        return null;
      }
 
      public void showMessage(string message)
      {
      }
 
      #endregion
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.