virtmgr: don't depend on crosvm's libbase_rust module

`base::UnixSeqpacketListener::bind` is just setting up a socket, which
we can easily reproduce without a crosvm dependency.

crosvm sets the backlog to 128, which is the max supported by bionic.
The `nix` crate tries to validate the value isn't beyond the max, but
has an off-by-one error that makes the max value unusable, so I've
lowered it to 127. It is unlikely we'd hit either limit in practice.

Bug: 269356487
Test: boot microdroid
Change-Id: I24560e120374c825e419c16b7c5b5e3d7a5f5b25
2 files changed
tree: 741f44dbbffcbd42f40963e91e85f33855f300ac
  1. android/
  2. build/
  3. docs/
  4. guest/
  5. libs/
  6. microfuchsia/
  7. tests/
  8. .clang-format
  9. .gitignore
  10. Android.bp
  11. dice_for_avf_guest.cddl
  12. OWNERS
  13. PREUPLOAD.cfg
  14. README.md
  15. rustfmt.toml
  16. TEST_MAPPING
README.md

Android Virtualization Framework (AVF)

Android Virtualization Framework (AVF) provides secure and private execution environments for executing code. AVF is ideal for security-oriented use cases that require stronger isolation assurances over those offered by Android’s app sandbox.

Visit our public doc site to learn more about what AVF is, what it is for, and how it is structured. This repository contains source code for userspace components of AVF.

If you want a quick start, see the getting started guideline and follow the steps there.

For in-depth explanations about individual topics and components, visit the following links.

AVF components:

AVF APIs:

How-Tos: