lguest.txt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. __
  2. (___()'`; Rusty's Remarkably Unreliable Guide to Lguest
  3. /, /` - or, A Young Coder's Illustrated Hypervisor
  4. \\"--\\ http://lguest.ozlabs.org
  5. Lguest is designed to be a minimal 32-bit x86 hypervisor for the Linux kernel,
  6. for Linux developers and users to experiment with virtualization with the
  7. minimum of complexity. Nonetheless, it should have sufficient features to
  8. make it useful for specific tasks, and, of course, you are encouraged to fork
  9. and enhance it (see drivers/lguest/README).
  10. Features:
  11. - Kernel module which runs in a normal kernel.
  12. - Simple I/O model for communication.
  13. - Simple program to create new guests.
  14. - Logo contains cute puppies: http://lguest.ozlabs.org
  15. Developer features:
  16. - Fun to hack on.
  17. - No ABI: being tied to a specific kernel anyway, you can change anything.
  18. - Many opportunities for improvement or feature implementation.
  19. Running Lguest:
  20. - The easiest way to run lguest is to use same kernel as guest and host.
  21. You can configure them differently, but usually it's easiest not to.
  22. You will need to configure your kernel with the following options:
  23. "General setup":
  24. "Prompt for development and/or incomplete code/drivers" = Y
  25. (CONFIG_EXPERIMENTAL=y)
  26. "Processor type and features":
  27. "Paravirtualized guest support" = Y
  28. "Lguest guest support" = Y
  29. "High Memory Support" = off/4GB
  30. "Alignment value to which kernel should be aligned" = 0x100000
  31. (CONFIG_PARAVIRT=y, CONFIG_LGUEST_GUEST=y, CONFIG_HIGHMEM64G=n and
  32. CONFIG_PHYSICAL_ALIGN=0x100000)
  33. "Device Drivers":
  34. "Block devices"
  35. "Virtio block driver (EXPERIMENTAL)" = M/Y
  36. "Network device support"
  37. "Universal TUN/TAP device driver support" = M/Y
  38. "Virtio network driver (EXPERIMENTAL)" = M/Y
  39. (CONFIG_VIRTIO_BLK=m, CONFIG_VIRTIO_NET=m and CONFIG_TUN=m)
  40. "Virtualization"
  41. "Linux hypervisor example code" = M/Y
  42. (CONFIG_LGUEST=m)
  43. - A tool called "lguest" is available in this directory: type "make"
  44. to build it. If you didn't build your kernel in-tree, use "make
  45. O=<builddir>".
  46. - Create or find a root disk image. There are several useful ones
  47. around, such as the xm-test tiny root image at
  48. http://xm-test.xensource.com/ramdisks/initrd-1.1-i386.img
  49. For more serious work, I usually use a distribution ISO image and
  50. install it under qemu, then make multiple copies:
  51. dd if=/dev/zero of=rootfile bs=1M count=2048
  52. qemu -cdrom image.iso -hda rootfile -net user -net nic -boot d
  53. Make sure that you install a getty on /dev/hvc0 if you want to log in on the
  54. console!
  55. - "modprobe lg" if you built it as a module.
  56. - Run an lguest as root:
  57. Documentation/virtual/lguest/lguest 64 vmlinux --tunnet=192.168.19.1 \
  58. --block=rootfile root=/dev/vda
  59. Explanation:
  60. 64: the amount of memory to use, in MB.
  61. vmlinux: the kernel image found in the top of your build directory. You
  62. can also use a standard bzImage.
  63. --tunnet=192.168.19.1: configures a "tap" device for networking with this
  64. IP address.
  65. --block=rootfile: a file or block device which becomes /dev/vda
  66. inside the guest.
  67. root=/dev/vda: this (and anything else on the command line) are
  68. kernel boot parameters.
  69. - Configuring networking. I usually have the host masquerade, using
  70. "iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE" and "echo 1 >
  71. /proc/sys/net/ipv4/ip_forward". In this example, I would configure
  72. eth0 inside the guest at 192.168.19.2.
  73. Another method is to bridge the tap device to an external interface
  74. using --tunnet=bridge:<bridgename>, and perhaps run dhcp on the guest
  75. to obtain an IP address. The bridge needs to be configured first:
  76. this option simply adds the tap interface to it.
  77. A simple example on my system:
  78. ifconfig eth0 0.0.0.0
  79. brctl addbr lg0
  80. ifconfig lg0 up
  81. brctl addif lg0 eth0
  82. dhclient lg0
  83. Then use --tunnet=bridge:lg0 when launching the guest.
  84. See:
  85. http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
  86. for general information on how to get bridging to work.
  87. - Random number generation. Using the --rng option will provide a
  88. /dev/hwrng in the guest that will read from the host's /dev/random.
  89. Use this option in conjunction with rng-tools (see ../hw_random.txt)
  90. to provide entropy to the guest kernel's /dev/random.
  91. There is a helpful mailing list at http://ozlabs.org/mailman/listinfo/lguest
  92. Good luck!
  93. Rusty Russell rusty@rustcorp.com.au.