Ookii.VmSockets
1.0.0-preview
See the version list below for details.
dotnet add package Ookii.VmSockets --version 1.0.0-preview
NuGet\Install-Package Ookii.VmSockets -Version 1.0.0-preview
<PackageReference Include="Ookii.VmSockets" Version="1.0.0-preview" />
paket add Ookii.VmSockets --version 1.0.0-preview
#r "nuget: Ookii.VmSockets, 1.0.0-preview"
// 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 regularSocket
class constructor does not allow the use of address families other than the ones predefined by .Net. TheVSock.Create()
method uses PInvoke with the libcsocket
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 | Versions 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. |
-
.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 | 142 | 5/31/2024 |
1.0.0-preview | 101 | 4/19/2024 |
For details, please view: https://www.ookii.org/Link/VmSocketsVersionHistory