lguest.txt 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. "Processor type and features":
  24. "Paravirtualized guest support" = Y
  25. "Lguest guest support" = Y
  26. "High Memory Support" = off/4GB
  27. "Alignment value to which kernel should be aligned" = 0x100000
  28. (CONFIG_PARAVIRT=y, CONFIG_LGUEST_GUEST=y, CONFIG_HIGHMEM64G=n and
  29. CONFIG_PHYSICAL_ALIGN=0x100000)
  30. "Device Drivers":
  31. "Block devices"
  32. "Virtio block driver" = M/Y
  33. "Network device support"
  34. "Universal TUN/TAP device driver support" = M/Y
  35. "Virtio network driver" = M/Y
  36. (CONFIG_VIRTIO_BLK=m, CONFIG_VIRTIO_NET=m and CONFIG_TUN=m)
  37. "Virtualization"
  38. "Linux hypervisor example code" = M/Y
  39. (CONFIG_LGUEST=m)
  40. - A tool called "lguest" is available in this directory: type "make"
  41. to build it. If you didn't build your kernel in-tree, use "make
  42. O=<builddir>".
  43. - Create or find a root disk image. There are several useful ones
  44. around, such as the xm-test tiny root image at
  45. http://xm-test.xensource.com/ramdisks/initrd-1.1-i386.img
  46. For more serious work, I usually use a distribution ISO image and
  47. install it under qemu, then make multiple copies:
  48. dd if=/dev/zero of=rootfile bs=1M count=2048
  49. qemu -cdrom image.iso -hda rootfile -net user -net nic -boot d
  50. Make sure that you install a getty on /dev/hvc0 if you want to log in on the
  51. console!
  52. - "modprobe lg" if you built it as a module.
  53. - Run an lguest as root:
  54. tools/lguest/lguest 64 vmlinux --tunnet=192.168.19.1 \
  55. --block=rootfile root=/dev/vda
  56. Explanation:
  57. 64: the amount of memory to use, in MB.
  58. vmlinux: the kernel image found in the top of your build directory. You
  59. can also use a standard bzImage.
  60. --tunnet=192.168.19.1: configures a "tap" device for networking with this
  61. IP address.
  62. --block=rootfile: a file or block device which becomes /dev/vda
  63. inside the guest.
  64. root=/dev/vda: this (and anything else on the command line) are
  65. kernel boot parameters.
  66. - Configuring networking. I usually have the host masquerade, using
  67. "iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE" and "echo 1 >
  68. /proc/sys/net/ipv4/ip_forward". In this example, I would configure
  69. eth0 inside the guest at 192.168.19.2.
  70. Another method is to bridge the tap device to an external interface
  71. using --tunnet=bridge:<bridgename>, and perhaps run dhcp on the guest
  72. to obtain an IP address. The bridge needs to be configured first:
  73. this option simply adds the tap interface to it.
  74. A simple example on my system:
  75. ifconfig eth0 0.0.0.0
  76. brctl addbr lg0
  77. ifconfig lg0 up
  78. brctl addif lg0 eth0
  79. dhclient lg0
  80. Then use --tunnet=bridge:lg0 when launching the guest.
  81. See:
  82. http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
  83. for general information on how to get bridging to work.
  84. - Random number generation. Using the --rng option will provide a
  85. /dev/hwrng in the guest that will read from the host's /dev/random.
  86. Use this option in conjunction with rng-tools (see ../hw_random.txt)
  87. to provide entropy to the guest kernel's /dev/random.
  88. There is a helpful mailing list at http://ozlabs.org/mailman/listinfo/lguest
  89. Good luck!
  90. Rusty Russell rusty@rustcorp.com.au.