Bumps the vhost-device group with 9 updates: | Package | From | To | | --- | --- | --- | | [nix](https://github.com/nix-rust/nix) | `0.27.1` | `0.28.0` | | [alsa](https://github.com/diwic/alsa-rs) | `0.8.1` | `0.9.0` | | [serde](https://github.com/serde-rs/serde) | `1.0.196` | `1.0.197` | | [serde_yaml](https://github.com/dtolnay/serde-yaml) | `0.9.31` | `0.9.32` | | [cc](https://github.com/rust-lang/cc-rs) | `1.0.83` | `1.0.88` | | [futures-timer](https://github.com/async-rs/futures-timer) | `3.0.2` | `3.0.3` | | [ryu](https://github.com/dtolnay/ryu) | `1.0.16` | `1.0.17` | | [serde_derive](https://github.com/serde-rs/serde) | `1.0.196` | `1.0.197` | | [target-lexicon](https://github.com/bytecodealliance/target-lexicon) | `0.12.13` | `0.12.14` | Updates `nix` from 0.27.1 to 0.28.0 - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.27.1...v0.28.0) Updates `alsa` from 0.8.1 to 0.9.0 - [Commits](https://github.com/diwic/alsa-rs/compare/v0.8.1...v0.9.0) Updates `serde` from 1.0.196 to 1.0.197 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.196...v1.0.197) Updates `serde_yaml` from 0.9.31 to 0.9.32 - [Release notes](https://github.com/dtolnay/serde-yaml/releases) - [Commits](https://github.com/dtolnay/serde-yaml/compare/0.9.31...0.9.32) Updates `cc` from 1.0.83 to 1.0.88 - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Commits](https://github.com/rust-lang/cc-rs/compare/1.0.83...1.0.88) Updates `futures-timer` from 3.0.2 to 3.0.3 - [Commits](https://github.com/async-rs/futures-timer/commits/v3.0.3) Updates `ryu` from 1.0.16 to 1.0.17 - [Release notes](https://github.com/dtolnay/ryu/releases) - [Commits](https://github.com/dtolnay/ryu/compare/1.0.16...1.0.17) Updates `serde_derive` from 1.0.196 to 1.0.197 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.196...v1.0.197) Updates `target-lexicon` from 0.12.13 to 0.12.14 - [Commits](https://github.com/bytecodealliance/target-lexicon/compare/v0.12.13...v0.12.14) --- updated-dependencies: - dependency-name: nix dependency-type: direct:production update-type: version-update:semver-minor dependency-group: vhost-device - dependency-name: alsa dependency-type: direct:production update-type: version-update:semver-minor dependency-group: vhost-device - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: serde_yaml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: cc dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: futures-timer dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: ryu dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: serde_derive dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device - dependency-name: target-lexicon dependency-type: indirect update-type: version-update:semver-patch dependency-group: vhost-device ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|---|---|---|
| .. | ||
| src | ||
| Cargo.toml | ||
| CHANGELOG.md | ||
| LICENSE-APACHE | ||
| LICENSE-BSD-3-Clause | ||
| README.md | ||
vhost-device-input
Synopsis
vhost-device-input --socket-path <SOCKET_PATH> --event-list <EVENT_LIST>
Description
This program is a vhost-user backend that emulates a VirtIO input event. It polls on a host's input event device (/dev/input/eventX) and passes the input event data to guests.
This program is tested with QEMU's vhost-user-input-pci. The
implemenation is based on the vhost-user protocol and as such should be
interoperable with other virtual machine managers. Please see below for
working examples.
Options
-h, --help
Print help.
-s, --socket-path <SOCKET_PATH>
Location of vhost-user Unix domain sockets, this path will be suffixed with
0,1,2..event_count-1.
-e, --event-list <EVENT_LIST>
Input event device list in the format: event_device1,event_device2,...
Example: --event-list /dev/input/event14,/dev/input/event15
Examples
The daemon should be started first:
host# vhost-device-input --socket-path /some/path/input.sock \
--event-list /dev/input/event14,/dev/input/event15
Note that from the above command the socket path "/some/path/input.sock0" and "/some/path/input.sock1" will be created for input events "event14" and "event15" respectively. This in turn needs to be communicated as chardev sockets to QEMU in order for the backend daemon and access the Virtio queues with the guest over the shared memory.
host# qemu-system -M virt \
-object memory-backend-file,id=mem,size=4G,mem-path=/dev/shm,share=on \
-chardev socket,path=/some/path/input.sock0,id=kbd0 \
-device vhost-user-input-pci,chardev=kdb0 \
-chardev socket,path=/some/path/input.sock1,id=mouse0 \
-device vhost-user-input-pci,chardev=mouse0 \
-numa node,memdev=mem \
...
License
This project is licensed under either of
- Apache License, Version 2.0
- BSD-3-Clause License