SSH.NET Versions Save

SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.

2016.1.0-beta2

6 years ago

Changes

General

  • Increase initial window size for SSH channels from 2 MB to 2147483647 (2^31 - 1) bytes. This results in less protocol overhead when receiving data from a SSH server.

SftpClient

  • When the read buffer is empty, SftpFileStream.Read(byte[], int, int) only writes those bytes to the buffer that go beyond the number of bytes requested by the caller.
  • Reduced memory allocations in SftpFileStream by lazily allocating read and write buffer.
  • Improved compatibility of SftpFileStream.SetLength(long value) with System.IO.FileStream (PR #272):
    • Flush buffers before changing the length of stream.
    • Move the current position to the last byte of the stream if the current position is greater than the new length.
  • Eliminated extra read from server in SftpFileStream to determine EOF.
  • Greatly improved performance of SftpClient.(Begin)DownloadFile(...) by asynchronously reading ahead chunks (issue #145 and #100).

Breaking changes

SftpClient

  • The IsAsync property was removed from SftpFileStream. Previously this property always returned false.

  • The read and write position in SftpFileStream are no longer tracked separately. Reading from or seeking in the SftpFileStream will now also affect the position at which a subsequent write is performed, and vice versa (issue #253).

    For example, the following code snippet will now write "123456" to the console:

    var buffer = Encoding.UTF8.GetBytes("123456");

    using (var client = new SftpClient("host", "user", "pwd"))
    {
        client.Connect();

        using (var ws = client.OpenWrite(path))
        {
            ws.Write(buffer, 0, 3);
        }

        using (var ws = client.OpenWrite(path))
        {
            ws.Seek(3, SeekOrigin.Begin);
            ws.Write(buffer, 3, 3);
        }

        Console.WriteLine(client.ReadAllText(path, Encoding.UTF8));
    }
  • To improve compatibility of SftpFileStream with System.IO.FileStream, Append mode is now only allowed when combined with write-only access (issue #267). This only affects SftpClient.Open(string path, FileMode mode, FileAccess access).

    The following code snippet will now throw an ArgumentException:

      using (var client = new SftpClient("host", "user", "pwd"))
      {
          client.Connect();
    
          using (var fs = client.Open("/home/user/file.log", FileMode.Append, FileShare.Read))
          {
          }
      }
    

    Result: System.ArgumentException: Append mode can be requested only when combined with write-only access.

  • To improve compatibility of SftpClient with System.IO.File, the following methods now use UTF-8 encoding without a Byte-Order Mark (BOM):

    • void AppendAllLines(string path, IEnumerable<string> contents)
    • void AppendAllText(string path, string contents)
    • StreamWriter AppendText(string path)
    • StreamWriter CreateText(string path)
    • void WriteAllLines(string path, IEnumerable<string> contents)
    • void WriteAllLines(string path, string[] contents)
    • void WriteAllText(string path, string contents)

Fixes

General

  • ConnectSocks5() throws a ProxyException with a wrong message (issue #167).
  • Comments in ProxyException.cs are not relevant (issue #163).
  • SSH exception after client connect using .NET 3.5 version (issue #113).

SftpClient

  • SftpFileStream allows invalid combinations of FileMode and FileAccess (issue #191).
  • SftpFileStream.ReadByte() throws ArgumentException when no data is available in read buffer (issue #173).
  • SftpFileStream also sends SSH_FXP_FSTAT upon initialization when mode is not Append (issue #154).
  • In Append mode, SftpFileStream throws a SftpPathNotFoundException when the specified file does not exist (issue #266).

2016.1.0-beta1

7 years ago

New Features

SshClient

  • A ForwardedPortDynamic now supports domain name addresses for SOCKS5 requests (issue #98).

Changes

Distribution

The NuGet Package Manager in Visual Studio 2012 does not support packages in which a given dependency is defined for more than one TFM. Since a fix for this issue is not expected any time soon, we're reviving support for a binary distribution.

This plain .zip file contains the SSH.NET assembly, and where applicable any dependencies, for all supported target frameworks.

For Visual Studio 2015 and higher, the SSH.NET NuGet package remains our primary distribution mechanism.

General

  • Data of an SSH_MSG_IGNORE server request is now ignored when the specified length is greater than the actual available bytes (issue #41).

SshClient

  • ForwardedPort.Stop() no longer throws ObjectDisposedException when the port is disposed.

Performance

  • Reduce overhead when invoking both Disconnect() and Dispose().
  • Improve performance of SSH message processing by eliminating use of dynamic dispatching.

Fixes

General

  • Handle leak when connection to SSH server fails (issue #55).
  • Race condition when both server and client close channel (issue #84).
  • Suppressing a not-connected exception on socket shutdown (issue #86).
  • Race condition when both server and client disconnect (issue #80).
  • Do not consume request-specific data for SSH_MSG_GLOBAL_REQUEST (issue #58).
  • SocketAsyncEventArgs leak establishing socket connection (issue #133 and #87).

SftpClient

  • Uploads with a buffer size that is less than or greather than 32 Kb would corrupt (issue #70).

SshClient

  • Dispose() throws exception when SSH session gets disconnected unexpectedly (issue #96).

ScpClient

  • ScpClient.Upload(DirectoryInfo, string) adds extra directory level (issue #128).
  • ScpClient.Upload(DirectoryInfo, string) applies timestamp of parent directory (issue #129).

2016.0.0

7 years ago

Changes since 2016.0.0-beta3

Fixes

  • Exception if both Password and PrivateKey authentication are tried (issue #55).

Changes since 2013.4.7

Breaking Changes

  • Assembly name is now Renci.SshNet for all supported target frameworks.
  • The Renci.SshNet assemblies for .NET and Silverlight are now strong-named (CodePlex issue #1802).

New Features

Target framework support

This is the first release of SSH.NET providing support for .NET Core and Universal Windows Platform 10 (UAP10.0). The support for .NET Core comes in the form of an assembly targeting the .NET Platform Standard 1.3 TFM.

The full list of the supported target frameworks for this release is:

  • .NET Framework 3.5
  • .NET Framework 4.0 (and higher)
  • .NET Platform Standard 1.3
  • Silverlight 4
  • Silverlight 5
  • Windows Phone 7.1
  • Windows Phone 8.0
  • Universal Windows Platform 10

Security

  • A given private key file can now be used concurrently.
  • Exception message for authentication failures have been improved.
  • Added support for ssh.com (SSH-2) private keys (CodePlex issue #1987).
  • Support an acceptable group of up to 8192 bits for SHA-1 and SHA-256 Diffie-Hellman Group and Key Exchange (CodePlex issue #1973 and #1777).
  • Added support for HMAC-SHA512 (hmac-sha2-512 and hmac-sha2-512-96).

General

  • Improved accuracy of IsConnected on .NET.
  • Relicensed code under MIT license, explicitly permitting reuse within proprietary software provided all copies of the licensed software include a copy of the MIT License terms and the copyright notice.
  • Separated our hash algorithms into SshNet.Security.Cryptography project and package.
  • When available, we prefer hash algorithms and encodings provided by a given target framework above our implementations.

Changes

Performance

Overall performance has been greatly improved. Some of the changes that contributed to these gains are:

  • Optimization of payload size for both read and write operations for SftpClient.
  • Increase window size from 1 MB to 2 MB.
  • Increase default buffer size from 16 KB to 32 KB for SftpClient.
  • Take into account the maximum remote packet size of the channel for write operations.
  • Increase maximum size of packets that we can receive from 32 KB to 64 KB.
  • No longer flush after every SCP write operation (issue #21).
  • Do not use reflection to create SSH message instances.
  • Eliminate creation and copy of buffers where possible.

Distribution

The SSH.NET NuGet package is now our only binary distribution mechanism. We no longer provide zip files that contain the assembly for individual target frameworks.

Stop port forwarding

Up to now, stopping a forwarding port would block until all pending requests have completed and all channels are closed. This could result in a serious slowdown when stopping a SshClient with multiple forwarding ports.

As of this release, pending requests will be interrupted and the port will gracefully stop once all channels are closed.

Documentation

Allround improvements to the API documentation.

Exceptions in async methods

Exceptions that are thrown during async processing are no longer wrapped in a SshException. For example, the following code will now just work:

using (var client = new SftpClient(connectionInfo))
{
    var asyncResult = client.BeginDownloadFile("/home/sshnet/remoteFileThatDoesNotExist", ms);
    ...
    try
    {
        client.EndDownloadFile(asyncResult);
    }
    catch (SftpPathNotFoundException)
    {
        // we should be landing here
    }
}

Fixes

Security

  • Exception if both Password and PrivateKey authentication are tried (issue #55).
  • Stuck loop on key exchange using arcfour encryption (CodePlex issue #1922).
  • No connection possible with the same auth method requested multiple times (CodePlex issue #1930).
  • Client cipher is used to decrypt server messages (CodePlex issue #1917).
  • Connection dropped by server due to invalid DSA signature (CodePlex issue #1918).
  • BlockCipher.Encrypt fails if input message is not padded (CodePlex issue #2547).
  • Wrong PKCS7 padding in DES algorithm (CodePlex issue #1580).
  • Write access required for private key file
  • Stack overflow during authentication when server returns same allowed methods after partial success (CodePlex issue #2399).

SshClient

  • Terminal width (pixels) is not passed in pty-req.
  • Stopping ForwardedPortDynamic without ever having started would result in a NRE.
  • Remove linefeed from WriteLine method in Shellstream class (CodePlex issue #1584).
  • SshCommand doesn't cleanup subscribed events (CodePlex issue #2295).
  • ShellStream.ReadLine produces incorrect output when reading multi-byte characters (CodePlex issue #3290).
  • Forwarded Port channels can get stuck waiting (CodePlex issue #1558).
  • Dynamic port forwarding slows down to a crawl (CodePlex issue #2010).
  • ForwardedPortDynamic: Unhandled exception if client terminates socket (CodePlex issue #1844).
  • Incorrect check for timeout values (CodePlex issue #1620).

SftpClient

  • SftpFileStream is very slow (CodePlex issue #1919).
  • SftpClient is throwing undocumented exceptions (CodePlex issue #2148).
  • SftpClient.Exists(string) returns true for a path that does not exist (CodePlex issue #1952, #1696 and #1574).
  • SftpClient constructor throws ArgumentException when host contains underscore (CodePlex issue #1845).
  • NullReferenceException when SftpFileStream is finalized after dispose of session (CodePlex issue #2013).
  • Partial reads from stream assume end (CodePlex issue #1516).

ScpClient

  • No longer flush after every SCP write operation (issue #21).
  • Missing files when using DirectoryUpload (CodePlex issue #1382).

General

  • Session.Disconnect() hangs forever (CodePlex issue #2591).
  • SshData.ReadInt64() is broken (CodePlex issue #2579).
  • Race condition when SSH_MSG_GLOBAL_REQUEST is received immediately after successful authentication (issue #8).
  • Lines before protocol identification string are not skipped (CodePlex issue #1935 and #2223).
  • Disable logging of messages in release builds (CodePlex issue #1767).
  • Timeout sending data to server with low window size (CodePlex issue #1706).
  • Unobserved exception rethrown by finalizer thread (CodePlex issue #1298 and #1587).
  • SendKeepAlive causes SocketException when connection is dropped (CodePlex issue #2029).
  • SocketException on Dispose or Disconnect (CodePlex issue #2400).
  • Sending EOF on wrong channel number (CodePlex issue #1877).
  • HTTP proxy hangs (CodePlex issue #1890).
  • Wrong parameters to SetSocketOption leads to SocketException under Mono (CodePlex issue #1799).
  • OverflowException on empty server response (CodePlex issue #1562).
  • Event handle leak (CodePlex issue #1761).
  • Client channels are no longer closed on dispose (CodePlex issue #1943).
  • ObjectDisposedException when channel is closing (CodePlex issue #1942 and #1944).
  • Signing key is missing from source download (CodePlex issue #2455).
  • Correct casing of Security/Cryptography/HMAC.cs to fix build on Linux (CodePlex issue #1505).

2016.0.0-beta3

7 years ago

New Features

.NET Core support

This is the first release of SSH.NET providing support for .NET Core. The focus for this release was feature completeness and stability. Future releases will focus on performance.

Changes

Stop port forwarding

Up to now, stopping a forwarding port would block until all pending requests have completed and all channels are closed. This could result in a serious slowdown when stopping a SshClient with multiple forwarding ports.

As of this release, pending requests will be interrupted and the port will gracefully stop once all channels are closed.

Documentation

Allround improvements to the API documentation.

Exceptions in async methods

Exceptions that are thrown during async processing are no longer wrapped in a SshException. For example, the following code will now just work:

using (var client = new SftpClient(connectionInfo))
{
    var asyncResult = client.BeginDownloadFile("/home/sshnet/remoteFileThatDoesNotExist", ms);
    ...
    try
    {
        client.EndDownloadFile(asyncResult);
    }
    catch (SftpPathNotFoundException)
    {
        // we should be landing here
    }
}

2016.0.0-beta2

7 years ago

Changes:

  • Improved performance of ScpClient (GitHub issue #21)

Fixes:

  • Terminal width (pixels) is not passed in pty-req
  • Stopping ForwardedPortDynamic without ever having started would result in a NRE

2016.0.0-beta1

7 years ago

New Features:

  • Added support for HMAC-SHA512 (hmac-sha2-512 and hmac-sha2-512-96)
  • Added support for Universal Windows Platform 10 (UAP10.0)

Changes:

  • Overall performance improvements
  • Relicensed code under MIT license, explicitly permitting reuse within proprietary software provided all copies of the licensed software include a copy of the MIT License terms and the copyright notice
  • Separated our hash algorithms into SshNet.Security.Cryptography project and package
  • When available, prefer hash algorithms and encodings from target framework
  • Refactoring to prepare for upcoming .NET Core support

Fixes:

  • Partial reads from stream assume end (CodePlex issue #1516)
  • Session.Disconnect() hangs forever (CodePlex issue #2591)
  • SshData.ReadInt64() is broken (CodePlex issue #2579)
  • Race condition when SSH_MSG_GLOBAL_REQUEST is received immediately after successful authentication (GitHub issue #8)