package hvsock
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
sha256=c3dc439a50b2b83dc584b20726a1311ca52187792613e9cf441c39da51ef7407
    
    
  sha512=cd631f190c63dabd8151e51715d048c828aa9a8207661a6b06c5b7754de030ebec81f06d6c545afc3b7fc2637466ebe4ac5f205e4cbad672591f79f9c5366242
    
    
  Description
These bindings allow Host <-> VM communication on Hyper-V systems on both Linux and Windows.
Warning: the AF_HYPERV patches for Linux are not yet merged and hence the
definition of AF_HYPERV is not yet stable. If other address families are merged
before this one then the value of AF_HYPERV will change!
Please read the API documentation.
Published: 27 Aug 2025
README
ocaml-hvsock -- bindings for Hypervisor sockets
These bindings allow Host <-> VM communication
- on Windows with Hyper-V sockets
- on Linux with AF_VSOCK
- on macOS with VMs running with hyperkit.
Please read the API documentation and see the example src/hvcat.ml.
Addressing
The addressing scheme used is hypervisor-dependent. Windows identifies a VM (partition) with a GUID and a service with a GUID. Linux identifies a VM with a 32-bit int and a port as a 32-bit int. When running on a Windows host, the Linux kernel maps a 32-bit port number onto a special range of Hyper-V socket GUIDs using the format string "%08lx-FACB-11E6-BD58-64006A7986D3".
This library exposes the underlying addressing schemes in the modules
- Hvsock.Af_hyperv: corresponding to the- AF_HYPERVaddress family on Windows
- Hvsock.Af_vsock: corresponding to the- AF_VSOCKaddress family on Linux
- Hvsock.Hyperkit: corresponding to the macOS backend implementation of the- AF_VSOCKaddress family on Linux.
For utilities that wish to be cross-platform, there is a generic interface in Hvsock.Socket which understands addresses encoded as URIs, suitable for command-line interfaces (and compatible with those used by linuxkit/virtsock). The URIs look like:
- vsock://:80: listen on- AF_VSOCKport 80. If run in a Linux VM on a Windows host then the Windows service GUID will be- 00000050-FACB-11E6-BD58-64006A7986D3.
- hvsock://<VM GUID>/3049197C-9A4E-4FBF-9367-97F792F16994: connect to service- 3049..on a Windows VM- <VM GUID>as displayed by the powershell- (Get-VM Name).Id. This requires the service- 3049...to be pre-registered in the registry but the connection itself can be run as a non-Administrator user.
- hvsock://<VM name>/3049197C-9A4E-4FBF-9367-97F792F16994: connect to a service- 3049..in the Windows VM- <VM name>. Note the library will shell out to powershell to resolve the name to a GUID, which unfortunately requires Administrator.
- vsock://2:80/: connect to a Linux VM with id- 2on port- 80via- AF_VSOCK
- hyperkit://:80/Users/foo/Library/Containers/com.docker.docker/Data/vms/0: connect to- AF_VSOCKport 80 on the Hyperkit VM running at the given filesystem path.
Example
Consider the Linux VM running on a Windows host started by Docker Desktop. The VM name in Hyper V manager is MobyLinuxVM.
First build and run this code in a privileged Linux container in the VM:
docker build -t hvsock .
docker run -it -v <path>:/src --privileged hvsock sh
make
./_build/default/src/hvcat.exe -l vsock://:255Next build and run the code on the host:
make
./_build/default/src/hvcat hvsock://MobyLinuxVM/000000ff-FACB-11E6-BD58-64006A7986D3 --registerThe --register flag will run a powershell fragment to register the serviceid in the registry. This requires Administrator but only needs to be done once.
Limitations
Although the connections use the regular socket APIs, current Windows kernels don't support calls like select so we must always use blocking I/O from background threads, rather than regular asynchronous I/O. The Hvsock_lwt.Socket module can create a Lwt-compatible I/O layer on top of regular threads.
The client connect call seems to block forever if the server calls listen after the client calls connect. The Af_hyperv.connect works around this with a self-imposed 1s timeout after which time it will raise ECONNREFUSED.
Depending on the Windows and Linux kernel versions, in-flight data can be lost after a shutdown_write or close on a Windows host.
Background
For background, see the MSDN article on making an integration service