Ookii.VmSockets 1.0.0-preview

This is a prerelease version of Ookii.VmSockets.
dotnet add package Ookii.VmSockets --version 1.0.0-preview
NuGet\Install-Package Ookii.VmSockets -Version 1.0.0-preview
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ookii.VmSockets" Version="1.0.0-preview" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ookii.VmSockets --version 1.0.0-preview
#r "nuget: Ookii.VmSockets, 1.0.0-preview"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Ookii.VmSockets as a Cake Addin
#addin nuget:?package=Ookii.VmSockets&version=1.0.0-preview&prerelease

// Install Ookii.VmSockets as a Cake Tool
#tool nuget:?package=Ookii.VmSockets&version=1.0.0-preview&prerelease

Ookii.VmSockets

Ookii.VmSockets is a library that provides support for Hyper-V sockets (hvsocket) and Linux VSock sockets for .Net applications. Both are used to communicate between the host and a guest virtual machine, on Windows Hyper-V and on Linux respectively. A Linux guest, including the Windows Subsystem for Linux (WSL) using VSock can also communicate with a Windows host using Hyper-V sockets.

Hyper-V sockets

Hyper-V sockets are sockets using the AF_HYPERV address family. They provide a method for a Windows host to communicate with a guest VM using regular socket APIs. Hvsockets are supported on Windows 10 and later.

Ookii.VmSockets provides the HvSocketEndPoint class, which allows you to listen or connect using Hyper-V sockets with the .Net Socket class. Hvsocket endpoints are identified using a VM ID and a service ID. Additionally, the HvSocket class provides a number of helper methods to create a socket or set socket options, as well as constants for well-known VM IDs such as HvSocket.Parent and HvSocket.Wildcard.

For example, the following creates a server socket that listens for connections from any source, where ServiceId is a GUID that represents your service:

using var server = HvSocket.Create(SocketType.Stream);
server.Bind(new HvSocketEndPoint(HvSocket.Wildcard, ServiceId));
server.Listen(1);
var socket = server.Accept();

[!IMPORTANT] When using hvsocket on the host to listen for connections from a guest, you must add your service ID to the registry. This is not required if a guest listens for connections from the host, with the client using Socket.Connect() running on the host.

The HvSocketEndPoint class can connect to a Linux guest using VSock by using the HvSocketEndPoint(Guid, int) constructor, specifying a VSock port number instead of a service ID. The below example connects to a Linux VM:

public Socket ConnectToLinuxVm(Guid vmId, int port)
{
    var socket = HvSocket.Create(SocketType.Stream);
    server.Connect(new HvSocketEndPoint(vmId, port));
    return server;
}

To determine the ID of a particular VM, the easiest method is to use the Get-VM PowerShell cmdlet. For example:

Get-VM | Format-Table -Property Name,Id

To determine the ID of the Windows Subsystem for Linux (WSL) utility VM, as well as other HCS VMs running on your system, you can use hcsdiag.exe list instead.

VSock sockets

Linux provides equivalent functionality using VSock, which uses the AF_VSOCK address family.

[!IMPORTANT] Due to limitations in the .Net sockets implementation on Linux, VSock support is only available for .Net 8.0 and later.

Ookii.VmSockets provides the VSockEndPoint class to represent a VSock address, which consists of a context ID (CID) and port number. The VSock class provides helper functions and constants.

[!IMPORTANT] Unlike with hvsockets, you must use the VSock.Create() method to create a VSock socket, because on Linux, the regular Socket class constructor does not allow the use of address families other than the ones predefined by .Net. The VSock.Create() method uses PInvoke with the libc socket function to create the socket instead.

The following example listens for connections on port 50000:

using var server = VSock.Create(SocketType.Stream);
server.Bind(new VSockEndPoint(VSock.Any, 50000));
server.Listen(1);
var socket = server.Accept();

Because of the limitations imposed by .Net, some properties of the Socket class may not return the correct values when using VSock sockets.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-preview 49 4/19/2024