blob: 655414821edc361fae2382104a068bb2c895f0de [file] [log] [blame]
Rusty Russellf938d2c2007-07-26 10:41:02 -07001/*P:100 This is the Launcher code, a simple program which lays out the
Rusty Russella6bd8e12008-03-28 11:05:53 -05002 * "physical" memory for the new Guest by mapping the kernel image and
3 * the virtual devices, then opens /dev/lguest to tell the kernel
4 * about the Guest and control it. :*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07005#define _LARGEFILE64_SOURCE
6#define _GNU_SOURCE
7#include <stdio.h>
8#include <string.h>
9#include <unistd.h>
10#include <err.h>
11#include <stdint.h>
12#include <stdlib.h>
13#include <elf.h>
14#include <sys/mman.h>
Ronald G. Minnich6649bb72007-08-28 14:35:59 -070015#include <sys/param.h>
Rusty Russell8ca47e02007-07-19 01:49:29 -070016#include <sys/types.h>
17#include <sys/stat.h>
18#include <sys/wait.h>
19#include <fcntl.h>
20#include <stdbool.h>
21#include <errno.h>
22#include <ctype.h>
23#include <sys/socket.h>
24#include <sys/ioctl.h>
25#include <sys/time.h>
26#include <time.h>
27#include <netinet/in.h>
28#include <net/if.h>
29#include <linux/sockios.h>
30#include <linux/if_tun.h>
31#include <sys/uio.h>
32#include <termios.h>
33#include <getopt.h>
34#include <zlib.h>
Rusty Russell17cbca22007-10-22 11:24:22 +100035#include <assert.h>
36#include <sched.h>
Rusty Russella586d4f2008-02-04 23:49:56 -050037#include <limits.h>
38#include <stddef.h>
Rusty Russella1618832008-07-29 09:58:35 -050039#include <signal.h>
Rusty Russellb45d8cb2007-10-22 10:56:24 +100040#include "linux/lguest_launcher.h"
Rusty Russell17cbca22007-10-22 11:24:22 +100041#include "linux/virtio_config.h"
42#include "linux/virtio_net.h"
43#include "linux/virtio_blk.h"
44#include "linux/virtio_console.h"
Rusty Russell28fd6d72008-07-29 09:58:33 -050045#include "linux/virtio_rng.h"
Rusty Russell17cbca22007-10-22 11:24:22 +100046#include "linux/virtio_ring.h"
Rusty Russell43d33b22007-10-22 11:29:57 +100047#include "asm-x86/bootparam.h"
Rusty Russella6bd8e12008-03-28 11:05:53 -050048/*L:110 We can ignore the 39 include files we need for this program, but I do
Rusty Russelldb24e8c2007-10-25 14:09:25 +100049 * want to draw attention to the use of kernel-style types.
50 *
51 * As Linus said, "C is a Spartan language, and so should your naming be." I
52 * like these abbreviations, so we define them here. Note that u64 is always
53 * unsigned long long, which works on all Linux systems: this means that we can
54 * use %llu in printf for any u64. */
55typedef unsigned long long u64;
56typedef uint32_t u32;
57typedef uint16_t u16;
58typedef uint8_t u8;
Rusty Russelldde79782007-07-26 10:41:03 -070059/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -070060
61#define PAGE_PRESENT 0x7 /* Present, RW, Execute */
62#define NET_PEERNUM 1
63#define BRIDGE_PFX "bridge:"
64#ifndef SIOCBRADDIF
65#define SIOCBRADDIF 0x89a2 /* add interface to bridge */
66#endif
Rusty Russell3c6b5bf2007-10-22 11:03:26 +100067/* We can have up to 256 pages for devices. */
68#define DEVICE_PAGES 256
Rusty Russell0f0c4fa2008-07-29 09:58:37 -050069/* This will occupy 3 pages: it must be a power of 2. */
70#define VIRTQUEUE_NUM 256
Rusty Russell8ca47e02007-07-19 01:49:29 -070071
Rusty Russelldde79782007-07-26 10:41:03 -070072/*L:120 verbose is both a global flag and a macro. The C preprocessor allows
73 * this, and although I wouldn't recommend it, it works quite nicely here. */
Rusty Russell8ca47e02007-07-19 01:49:29 -070074static bool verbose;
75#define verbose(args...) \
76 do { if (verbose) printf(args); } while(0)
Rusty Russelldde79782007-07-26 10:41:03 -070077/*:*/
78
Rusty Russell8c798732008-07-29 09:58:38 -050079/* File descriptors for the Waker. */
80struct {
81 int pipe[2];
82 int lguest_fd;
83} waker_fds;
84
Rusty Russell3c6b5bf2007-10-22 11:03:26 +100085/* The pointer to the start of guest memory. */
86static void *guest_base;
87/* The maximum guest physical address allowed, and maximum possible. */
88static unsigned long guest_limit, guest_max;
Rusty Russella1618832008-07-29 09:58:35 -050089/* The pipe for signal hander to write to. */
90static int timeoutpipe[2];
Rusty Russellaa124982008-07-29 09:58:36 -050091static unsigned int timeout_usec = 500;
Rusty Russell8ca47e02007-07-19 01:49:29 -070092
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -020093/* a per-cpu variable indicating whose vcpu is currently running */
94static unsigned int __thread cpu_id;
95
Rusty Russelldde79782007-07-26 10:41:03 -070096/* This is our list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -070097struct device_list
98{
Rusty Russelldde79782007-07-26 10:41:03 -070099 /* Summary information about the devices in our list: ready to pass to
100 * select() to ask which need servicing.*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700101 fd_set infds;
102 int max_infd;
103
Rusty Russell17cbca22007-10-22 11:24:22 +1000104 /* Counter to assign interrupt numbers. */
105 unsigned int next_irq;
106
107 /* Counter to print out convenient device numbers. */
108 unsigned int device_num;
109
Rusty Russelldde79782007-07-26 10:41:03 -0700110 /* The descriptor page for the devices. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000111 u8 *descpage;
112
Rusty Russelldde79782007-07-26 10:41:03 -0700113 /* A single linked list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700114 struct device *dev;
Rusty Russella586d4f2008-02-04 23:49:56 -0500115 /* And a pointer to the last device for easy append and also for
116 * configuration appending. */
117 struct device *lastdev;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700118};
119
Rusty Russell17cbca22007-10-22 11:24:22 +1000120/* The list of Guest devices, based on command line arguments. */
121static struct device_list devices;
122
Rusty Russelldde79782007-07-26 10:41:03 -0700123/* The device structure describes a single device. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700124struct device
125{
Rusty Russelldde79782007-07-26 10:41:03 -0700126 /* The linked-list pointer. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700127 struct device *next;
Rusty Russell17cbca22007-10-22 11:24:22 +1000128
129 /* The this device's descriptor, as mapped into the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700130 struct lguest_device_desc *desc;
Rusty Russell17cbca22007-10-22 11:24:22 +1000131
132 /* The name of this device, for --verbose. */
133 const char *name;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700134
Rusty Russelldde79782007-07-26 10:41:03 -0700135 /* If handle_input is set, it wants to be called when this file
136 * descriptor is ready. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700137 int fd;
138 bool (*handle_input)(int fd, struct device *me);
139
Rusty Russell17cbca22007-10-22 11:24:22 +1000140 /* Any queues attached to this device */
141 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700142
Rusty Russella007a752008-05-02 21:50:53 -0500143 /* Handle status being finalized (ie. feature bits stable). */
144 void (*ready)(struct device *me);
145
Rusty Russell8ca47e02007-07-19 01:49:29 -0700146 /* Device-specific data. */
147 void *priv;
148};
149
Rusty Russell17cbca22007-10-22 11:24:22 +1000150/* The virtqueue structure describes a queue attached to a device. */
151struct virtqueue
152{
153 struct virtqueue *next;
154
155 /* Which device owns me. */
156 struct device *dev;
157
158 /* The configuration for this queue. */
159 struct lguest_vqconfig config;
160
161 /* The actual ring of buffers. */
162 struct vring vring;
163
164 /* Last available index we saw. */
165 u16 last_avail_idx;
166
Rusty Russella1618832008-07-29 09:58:35 -0500167 /* The routine to call when the Guest pings us, or timeout. */
168 void (*handle_output)(int fd, struct virtqueue *me, bool timeout);
Rusty Russell20887612008-05-30 15:09:46 -0500169
170 /* Outstanding buffers */
171 unsigned int inflight;
Rusty Russella1618832008-07-29 09:58:35 -0500172
173 /* Is this blocked awaiting a timer? */
174 bool blocked;
Rusty Russell17cbca22007-10-22 11:24:22 +1000175};
176
Balaji Raoec04b132007-12-28 14:26:24 +0530177/* Remember the arguments to the program so we can "reboot" */
178static char **main_args;
179
Rusty Russell17cbca22007-10-22 11:24:22 +1000180/* Since guest is UP and we don't run at the same time, we don't need barriers.
181 * But I include them in the code in case others copy it. */
182#define wmb()
183
184/* Convert an iovec element to the given type.
185 *
186 * This is a fairly ugly trick: we need to know the size of the type and
187 * alignment requirement to check the pointer is kosher. It's also nice to
188 * have the name of the type in case we report failure.
189 *
190 * Typing those three things all the time is cumbersome and error prone, so we
191 * have a macro which sets them all up and passes to the real function. */
192#define convert(iov, type) \
193 ((type *)_convert((iov), sizeof(type), __alignof__(type), #type))
194
195static void *_convert(struct iovec *iov, size_t size, size_t align,
196 const char *name)
197{
198 if (iov->iov_len != size)
199 errx(1, "Bad iovec size %zu for %s", iov->iov_len, name);
200 if ((unsigned long)iov->iov_base % align != 0)
201 errx(1, "Bad alignment %p for %s", iov->iov_base, name);
202 return iov->iov_base;
203}
204
Rusty Russellb5111792008-07-29 09:58:34 -0500205/* Wrapper for the last available index. Makes it easier to change. */
206#define lg_last_avail(vq) ((vq)->last_avail_idx)
207
Rusty Russell17cbca22007-10-22 11:24:22 +1000208/* The virtio configuration space is defined to be little-endian. x86 is
209 * little-endian too, but it's nice to be explicit so we have these helpers. */
210#define cpu_to_le16(v16) (v16)
211#define cpu_to_le32(v32) (v32)
212#define cpu_to_le64(v64) (v64)
213#define le16_to_cpu(v16) (v16)
214#define le32_to_cpu(v32) (v32)
Rusty Russella586d4f2008-02-04 23:49:56 -0500215#define le64_to_cpu(v64) (v64)
Rusty Russell17cbca22007-10-22 11:24:22 +1000216
Rusty Russell28fd6d72008-07-29 09:58:33 -0500217/* Is this iovec empty? */
218static bool iov_empty(const struct iovec iov[], unsigned int num_iov)
219{
220 unsigned int i;
221
222 for (i = 0; i < num_iov; i++)
223 if (iov[i].iov_len)
224 return false;
225 return true;
226}
227
228/* Take len bytes from the front of this iovec. */
229static void iov_consume(struct iovec iov[], unsigned num_iov, unsigned len)
230{
231 unsigned int i;
232
233 for (i = 0; i < num_iov; i++) {
234 unsigned int used;
235
236 used = iov[i].iov_len < len ? iov[i].iov_len : len;
237 iov[i].iov_base += used;
238 iov[i].iov_len -= used;
239 len -= used;
240 }
241 assert(len == 0);
242}
243
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500244/* The device virtqueue descriptors are followed by feature bitmasks. */
245static u8 *get_feature_bits(struct device *dev)
246{
247 return (u8 *)(dev->desc + 1)
248 + dev->desc->num_vq * sizeof(struct lguest_vqconfig);
249}
250
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000251/*L:100 The Launcher code itself takes us out into userspace, that scary place
252 * where pointers run wild and free! Unfortunately, like most userspace
253 * programs, it's quite boring (which is why everyone likes to hack on the
254 * kernel!). Perhaps if you make up an Lguest Drinking Game at this point, it
255 * will get you through this section. Or, maybe not.
256 *
257 * The Launcher sets up a big chunk of memory to be the Guest's "physical"
258 * memory and stores it in "guest_base". In other words, Guest physical ==
259 * Launcher virtual with an offset.
260 *
261 * This can be tough to get your head around, but usually it just means that we
262 * use these trivial conversion functions when the Guest gives us it's
263 * "physical" addresses: */
264static void *from_guest_phys(unsigned long addr)
265{
266 return guest_base + addr;
267}
268
269static unsigned long to_guest_phys(const void *addr)
270{
271 return (addr - guest_base);
272}
273
Rusty Russelldde79782007-07-26 10:41:03 -0700274/*L:130
275 * Loading the Kernel.
276 *
277 * We start with couple of simple helper routines. open_or_die() avoids
278 * error-checking code cluttering the callers: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700279static int open_or_die(const char *name, int flags)
280{
281 int fd = open(name, flags);
282 if (fd < 0)
283 err(1, "Failed to open %s", name);
284 return fd;
285}
286
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000287/* map_zeroed_pages() takes a number of pages. */
288static void *map_zeroed_pages(unsigned int num)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700289{
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000290 int fd = open_or_die("/dev/zero", O_RDONLY);
291 void *addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700292
Rusty Russelldde79782007-07-26 10:41:03 -0700293 /* We use a private mapping (ie. if we write to the page, it will be
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000294 * copied). */
295 addr = mmap(NULL, getpagesize() * num,
296 PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, fd, 0);
297 if (addr == MAP_FAILED)
298 err(1, "Mmaping %u pages of /dev/zero", num);
Mark McLoughlin34bdaab2008-06-13 14:04:58 +0100299 close(fd);
Rusty Russelldde79782007-07-26 10:41:03 -0700300
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000301 return addr;
302}
303
304/* Get some more pages for a device. */
305static void *get_pages(unsigned int num)
306{
307 void *addr = from_guest_phys(guest_limit);
308
309 guest_limit += num * getpagesize();
310 if (guest_limit > guest_max)
311 errx(1, "Not enough memory for devices");
312 return addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700313}
314
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700315/* This routine is used to load the kernel or initrd. It tries mmap, but if
316 * that fails (Plan 9's kernel file isn't nicely aligned on page boundaries),
317 * it falls back to reading the memory in. */
318static void map_at(int fd, void *addr, unsigned long offset, unsigned long len)
319{
320 ssize_t r;
321
322 /* We map writable even though for some segments are marked read-only.
323 * The kernel really wants to be writable: it patches its own
324 * instructions.
325 *
326 * MAP_PRIVATE means that the page won't be copied until a write is
327 * done to it. This allows us to share untouched memory between
328 * Guests. */
329 if (mmap(addr, len, PROT_READ|PROT_WRITE|PROT_EXEC,
330 MAP_FIXED|MAP_PRIVATE, fd, offset) != MAP_FAILED)
331 return;
332
333 /* pread does a seek and a read in one shot: saves a few lines. */
334 r = pread(fd, addr, len, offset);
335 if (r != len)
336 err(1, "Reading offset %lu len %lu gave %zi", offset, len, r);
337}
338
Rusty Russelldde79782007-07-26 10:41:03 -0700339/* This routine takes an open vmlinux image, which is in ELF, and maps it into
340 * the Guest memory. ELF = Embedded Linking Format, which is the format used
341 * by all modern binaries on Linux including the kernel.
342 *
343 * The ELF headers give *two* addresses: a physical address, and a virtual
Rusty Russell47436aa2007-10-22 11:03:36 +1000344 * address. We use the physical address; the Guest will map itself to the
345 * virtual address.
Rusty Russelldde79782007-07-26 10:41:03 -0700346 *
347 * We return the starting address. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000348static unsigned long map_elf(int elf_fd, const Elf32_Ehdr *ehdr)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700349{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700350 Elf32_Phdr phdr[ehdr->e_phnum];
351 unsigned int i;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700352
Rusty Russelldde79782007-07-26 10:41:03 -0700353 /* Sanity checks on the main ELF header: an x86 executable with a
354 * reasonable number of correctly-sized program headers. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700355 if (ehdr->e_type != ET_EXEC
356 || ehdr->e_machine != EM_386
357 || ehdr->e_phentsize != sizeof(Elf32_Phdr)
358 || ehdr->e_phnum < 1 || ehdr->e_phnum > 65536U/sizeof(Elf32_Phdr))
359 errx(1, "Malformed elf header");
360
Rusty Russelldde79782007-07-26 10:41:03 -0700361 /* An ELF executable contains an ELF header and a number of "program"
362 * headers which indicate which parts ("segments") of the program to
363 * load where. */
364
365 /* We read in all the program headers at once: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700366 if (lseek(elf_fd, ehdr->e_phoff, SEEK_SET) < 0)
367 err(1, "Seeking to program headers");
368 if (read(elf_fd, phdr, sizeof(phdr)) != sizeof(phdr))
369 err(1, "Reading program headers");
370
Rusty Russelldde79782007-07-26 10:41:03 -0700371 /* Try all the headers: there are usually only three. A read-only one,
Rusty Russella6bd8e12008-03-28 11:05:53 -0500372 * a read-write one, and a "note" section which we don't load. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700373 for (i = 0; i < ehdr->e_phnum; i++) {
Rusty Russelldde79782007-07-26 10:41:03 -0700374 /* If this isn't a loadable segment, we ignore it */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700375 if (phdr[i].p_type != PT_LOAD)
376 continue;
377
378 verbose("Section %i: size %i addr %p\n",
379 i, phdr[i].p_memsz, (void *)phdr[i].p_paddr);
380
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700381 /* We map this section of the file at its physical address. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000382 map_at(elf_fd, from_guest_phys(phdr[i].p_paddr),
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700383 phdr[i].p_offset, phdr[i].p_filesz);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700384 }
385
Rusty Russell814a0e52007-10-22 11:29:44 +1000386 /* The entry point is given in the ELF header. */
387 return ehdr->e_entry;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700388}
389
Rusty Russelldde79782007-07-26 10:41:03 -0700390/*L:150 A bzImage, unlike an ELF file, is not meant to be loaded. You're
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000391 * supposed to jump into it and it will unpack itself. We used to have to
392 * perform some hairy magic because the unpacking code scared me.
Rusty Russelldde79782007-07-26 10:41:03 -0700393 *
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000394 * Fortunately, Jeremy Fitzhardinge convinced me it wasn't that hard and wrote
395 * a small patch to jump over the tricky bits in the Guest, so now we just read
396 * the funky header so we know where in the file to load, and away we go! */
Rusty Russell47436aa2007-10-22 11:03:36 +1000397static unsigned long load_bzimage(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700398{
Rusty Russell43d33b22007-10-22 11:29:57 +1000399 struct boot_params boot;
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000400 int r;
401 /* Modern bzImages get loaded at 1M. */
402 void *p = from_guest_phys(0x100000);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700403
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000404 /* Go back to the start of the file and read the header. It should be
405 * a Linux boot header (see Documentation/i386/boot.txt) */
406 lseek(fd, 0, SEEK_SET);
Rusty Russell43d33b22007-10-22 11:29:57 +1000407 read(fd, &boot, sizeof(boot));
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000408
Rusty Russell43d33b22007-10-22 11:29:57 +1000409 /* Inside the setup_hdr, we expect the magic "HdrS" */
410 if (memcmp(&boot.hdr.header, "HdrS", 4) != 0)
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000411 errx(1, "This doesn't look like a bzImage to me");
412
Rusty Russell43d33b22007-10-22 11:29:57 +1000413 /* Skip over the extra sectors of the header. */
414 lseek(fd, (boot.hdr.setup_sects+1) * 512, SEEK_SET);
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000415
416 /* Now read everything into memory. in nice big chunks. */
417 while ((r = read(fd, p, 65536)) > 0)
418 p += r;
419
Rusty Russell43d33b22007-10-22 11:29:57 +1000420 /* Finally, code32_start tells us where to enter the kernel. */
421 return boot.hdr.code32_start;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700422}
423
Rusty Russelldde79782007-07-26 10:41:03 -0700424/*L:140 Loading the kernel is easy when it's a "vmlinux", but most kernels
Rusty Russelle1e72962007-10-25 15:02:50 +1000425 * come wrapped up in the self-decompressing "bzImage" format. With a little
426 * work, we can load those, too. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000427static unsigned long load_kernel(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700428{
429 Elf32_Ehdr hdr;
430
Rusty Russelldde79782007-07-26 10:41:03 -0700431 /* Read in the first few bytes. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700432 if (read(fd, &hdr, sizeof(hdr)) != sizeof(hdr))
433 err(1, "Reading kernel");
434
Rusty Russelldde79782007-07-26 10:41:03 -0700435 /* If it's an ELF file, it starts with "\177ELF" */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700436 if (memcmp(hdr.e_ident, ELFMAG, SELFMAG) == 0)
Rusty Russell47436aa2007-10-22 11:03:36 +1000437 return map_elf(fd, &hdr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700438
Rusty Russella6bd8e12008-03-28 11:05:53 -0500439 /* Otherwise we assume it's a bzImage, and try to load it. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000440 return load_bzimage(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700441}
442
Rusty Russelldde79782007-07-26 10:41:03 -0700443/* This is a trivial little helper to align pages. Andi Kleen hated it because
444 * it calls getpagesize() twice: "it's dumb code."
445 *
446 * Kernel guys get really het up about optimization, even when it's not
447 * necessary. I leave this code as a reaction against that. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700448static inline unsigned long page_align(unsigned long addr)
449{
Rusty Russelldde79782007-07-26 10:41:03 -0700450 /* Add upwards and truncate downwards. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700451 return ((addr + getpagesize()-1) & ~(getpagesize()-1));
452}
453
Rusty Russelldde79782007-07-26 10:41:03 -0700454/*L:180 An "initial ram disk" is a disk image loaded into memory along with
455 * the kernel which the kernel can use to boot from without needing any
456 * drivers. Most distributions now use this as standard: the initrd contains
457 * the code to load the appropriate driver modules for the current machine.
458 *
459 * Importantly, James Morris works for RedHat, and Fedora uses initrds for its
460 * kernels. He sent me this (and tells me when I break it). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700461static unsigned long load_initrd(const char *name, unsigned long mem)
462{
463 int ifd;
464 struct stat st;
465 unsigned long len;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700466
467 ifd = open_or_die(name, O_RDONLY);
Rusty Russelldde79782007-07-26 10:41:03 -0700468 /* fstat() is needed to get the file size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700469 if (fstat(ifd, &st) < 0)
470 err(1, "fstat() on initrd '%s'", name);
471
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700472 /* We map the initrd at the top of memory, but mmap wants it to be
473 * page-aligned, so we round the size up for that. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700474 len = page_align(st.st_size);
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000475 map_at(ifd, from_guest_phys(mem - len), 0, st.st_size);
Rusty Russelldde79782007-07-26 10:41:03 -0700476 /* Once a file is mapped, you can close the file descriptor. It's a
477 * little odd, but quite useful. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700478 close(ifd);
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700479 verbose("mapped initrd %s size=%lu @ %p\n", name, len, (void*)mem-len);
Rusty Russelldde79782007-07-26 10:41:03 -0700480
481 /* We return the initrd size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700482 return len;
483}
484
Rusty Russella6bd8e12008-03-28 11:05:53 -0500485/* Once we know how much memory we have we can construct simple linear page
Rusty Russell47436aa2007-10-22 11:03:36 +1000486 * tables which set virtual == physical which will get the Guest far enough
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000487 * into the boot to create its own.
Rusty Russelldde79782007-07-26 10:41:03 -0700488 *
489 * We lay them out of the way, just below the initrd (which is why we need to
Rusty Russella6bd8e12008-03-28 11:05:53 -0500490 * know its size here). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700491static unsigned long setup_pagetables(unsigned long mem,
Rusty Russell47436aa2007-10-22 11:03:36 +1000492 unsigned long initrd_size)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700493{
Jes Sorensen511801d2007-10-22 11:03:31 +1000494 unsigned long *pgdir, *linear;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700495 unsigned int mapped_pages, i, linear_pages;
Jes Sorensen511801d2007-10-22 11:03:31 +1000496 unsigned int ptes_per_page = getpagesize()/sizeof(void *);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700497
Rusty Russell47436aa2007-10-22 11:03:36 +1000498 mapped_pages = mem/getpagesize();
Rusty Russell8ca47e02007-07-19 01:49:29 -0700499
Rusty Russelldde79782007-07-26 10:41:03 -0700500 /* Each PTE page can map ptes_per_page pages: how many do we need? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700501 linear_pages = (mapped_pages + ptes_per_page-1)/ptes_per_page;
502
Rusty Russelldde79782007-07-26 10:41:03 -0700503 /* We put the toplevel page directory page at the top of memory. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000504 pgdir = from_guest_phys(mem) - initrd_size - getpagesize();
Rusty Russelldde79782007-07-26 10:41:03 -0700505
506 /* Now we use the next linear_pages pages as pte pages */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700507 linear = (void *)pgdir - linear_pages*getpagesize();
508
Rusty Russelldde79782007-07-26 10:41:03 -0700509 /* Linear mapping is easy: put every page's address into the mapping in
510 * order. PAGE_PRESENT contains the flags Present, Writable and
511 * Executable. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700512 for (i = 0; i < mapped_pages; i++)
513 linear[i] = ((i * getpagesize()) | PAGE_PRESENT);
514
Rusty Russell47436aa2007-10-22 11:03:36 +1000515 /* The top level points to the linear page table pages above. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700516 for (i = 0; i < mapped_pages; i += ptes_per_page) {
Rusty Russell47436aa2007-10-22 11:03:36 +1000517 pgdir[i/ptes_per_page]
Jes Sorensen511801d2007-10-22 11:03:31 +1000518 = ((to_guest_phys(linear) + i*sizeof(void *))
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000519 | PAGE_PRESENT);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700520 }
521
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000522 verbose("Linear mapping of %u pages in %u pte pages at %#lx\n",
523 mapped_pages, linear_pages, to_guest_phys(linear));
Rusty Russell8ca47e02007-07-19 01:49:29 -0700524
Rusty Russelldde79782007-07-26 10:41:03 -0700525 /* We return the top level (guest-physical) address: the kernel needs
526 * to know where it is. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000527 return to_guest_phys(pgdir);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700528}
Rusty Russelle1e72962007-10-25 15:02:50 +1000529/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700530
Rusty Russelldde79782007-07-26 10:41:03 -0700531/* Simple routine to roll all the commandline arguments together with spaces
532 * between them. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700533static void concat(char *dst, char *args[])
534{
535 unsigned int i, len = 0;
536
537 for (i = 0; args[i]; i++) {
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100538 if (i) {
539 strcat(dst+len, " ");
540 len++;
541 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700542 strcpy(dst+len, args[i]);
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100543 len += strlen(args[i]);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700544 }
545 /* In case it's empty. */
546 dst[len] = '\0';
547}
548
Rusty Russelle1e72962007-10-25 15:02:50 +1000549/*L:185 This is where we actually tell the kernel to initialize the Guest. We
550 * saw the arguments it expects when we looked at initialize() in lguest_user.c:
551 * the base of Guest "physical" memory, the top physical page to allow, the
Rusty Russell47436aa2007-10-22 11:03:36 +1000552 * top level pagetable and the entry point for the Guest. */
553static int tell_kernel(unsigned long pgdir, unsigned long start)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700554{
Jes Sorensen511801d2007-10-22 11:03:31 +1000555 unsigned long args[] = { LHREQ_INITIALIZE,
556 (unsigned long)guest_base,
Rusty Russell47436aa2007-10-22 11:03:36 +1000557 guest_limit / getpagesize(), pgdir, start };
Rusty Russell8ca47e02007-07-19 01:49:29 -0700558 int fd;
559
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000560 verbose("Guest: %p - %p (%#lx)\n",
561 guest_base, guest_base + guest_limit, guest_limit);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700562 fd = open_or_die("/dev/lguest", O_RDWR);
563 if (write(fd, args, sizeof(args)) < 0)
564 err(1, "Writing to /dev/lguest");
Rusty Russelldde79782007-07-26 10:41:03 -0700565
566 /* We return the /dev/lguest file descriptor to control this Guest */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700567 return fd;
568}
Rusty Russelldde79782007-07-26 10:41:03 -0700569/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700570
Rusty Russell17cbca22007-10-22 11:24:22 +1000571static void add_device_fd(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700572{
Rusty Russell17cbca22007-10-22 11:24:22 +1000573 FD_SET(fd, &devices.infds);
574 if (fd > devices.max_infd)
575 devices.max_infd = fd;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700576}
577
Rusty Russelldde79782007-07-26 10:41:03 -0700578/*L:200
579 * The Waker.
580 *
Rusty Russelle1e72962007-10-25 15:02:50 +1000581 * With console, block and network devices, we can have lots of input which we
582 * need to process. We could try to tell the kernel what file descriptors to
583 * watch, but handing a file descriptor mask through to the kernel is fairly
584 * icky.
Rusty Russelldde79782007-07-26 10:41:03 -0700585 *
Rusty Russell8c798732008-07-29 09:58:38 -0500586 * Instead, we clone off a thread which watches the file descriptors and writes
Rusty Russelle1e72962007-10-25 15:02:50 +1000587 * the LHREQ_BREAK command to the /dev/lguest file descriptor to tell the Host
588 * stop running the Guest. This causes the Launcher to return from the
Rusty Russelldde79782007-07-26 10:41:03 -0700589 * /dev/lguest read with -EAGAIN, where it will write to /dev/lguest to reset
590 * the LHREQ_BREAK and wake us up again.
591 *
592 * This, of course, is merely a different *kind* of icky.
Rusty Russell8c798732008-07-29 09:58:38 -0500593 *
594 * Given my well-known antipathy to threads, I'd prefer to use processes. But
595 * it's easier to share Guest memory with threads, and trivial to share the
596 * devices.infds as the Launcher changes it.
Rusty Russelldde79782007-07-26 10:41:03 -0700597 */
Rusty Russell8c798732008-07-29 09:58:38 -0500598static int waker(void *unused)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700599{
Rusty Russell8c798732008-07-29 09:58:38 -0500600 /* Close the write end of the pipe: only the Launcher has it open. */
601 close(waker_fds.pipe[1]);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700602
603 for (;;) {
Rusty Russell17cbca22007-10-22 11:24:22 +1000604 fd_set rfds = devices.infds;
Jes Sorensen511801d2007-10-22 11:03:31 +1000605 unsigned long args[] = { LHREQ_BREAK, 1 };
Rusty Russell8c798732008-07-29 09:58:38 -0500606 unsigned int maxfd = devices.max_infd;
607
608 /* We also listen to the pipe from the Launcher. */
609 FD_SET(waker_fds.pipe[0], &rfds);
610 if (waker_fds.pipe[0] > maxfd)
611 maxfd = waker_fds.pipe[0];
Rusty Russell8ca47e02007-07-19 01:49:29 -0700612
Rusty Russelldde79782007-07-26 10:41:03 -0700613 /* Wait until input is ready from one of the devices. */
Rusty Russell8c798732008-07-29 09:58:38 -0500614 select(maxfd+1, &rfds, NULL, NULL, NULL);
615
616 /* Message from Launcher? */
617 if (FD_ISSET(waker_fds.pipe[0], &rfds)) {
618 char c;
619 /* If this fails, then assume Launcher has exited.
620 * Don't do anything on exit: we're just a thread! */
621 if (read(waker_fds.pipe[0], &c, 1) != 1)
622 _exit(0);
623 continue;
624 }
625
626 /* Send LHREQ_BREAK command to snap the Launcher out of it. */
627 pwrite(waker_fds.lguest_fd, args, sizeof(args), cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700628 }
Rusty Russell8c798732008-07-29 09:58:38 -0500629 return 0;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700630}
631
Rusty Russelldde79782007-07-26 10:41:03 -0700632/* This routine just sets up a pipe to the Waker process. */
Rusty Russell8c798732008-07-29 09:58:38 -0500633static void setup_waker(int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700634{
Rusty Russell8c798732008-07-29 09:58:38 -0500635 /* This pipe is closed when Launcher dies, telling Waker. */
636 if (pipe(waker_fds.pipe) != 0)
637 err(1, "Creating pipe for Waker");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700638
Rusty Russell8c798732008-07-29 09:58:38 -0500639 /* Waker also needs to know the lguest fd */
640 waker_fds.lguest_fd = lguest_fd;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700641
Rusty Russell8c798732008-07-29 09:58:38 -0500642 if (clone(waker, malloc(4096) + 4096, CLONE_VM | SIGCHLD, NULL) == -1)
643 err(1, "Creating Waker");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700644}
645
Rusty Russelle1e72962007-10-25 15:02:50 +1000646/*
Rusty Russelldde79782007-07-26 10:41:03 -0700647 * Device Handling.
648 *
Rusty Russelle1e72962007-10-25 15:02:50 +1000649 * When the Guest gives us a buffer, it sends an array of addresses and sizes.
Rusty Russelldde79782007-07-26 10:41:03 -0700650 * We need to make sure it's not trying to reach into the Launcher itself, so
Rusty Russelle1e72962007-10-25 15:02:50 +1000651 * we have a convenient routine which checks it and exits with an error message
Rusty Russelldde79782007-07-26 10:41:03 -0700652 * if something funny is going on:
653 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700654static void *_check_pointer(unsigned long addr, unsigned int size,
655 unsigned int line)
656{
Rusty Russelldde79782007-07-26 10:41:03 -0700657 /* We have to separately check addr and addr+size, because size could
658 * be huge and addr + size might wrap around. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000659 if (addr >= guest_limit || addr + size >= guest_limit)
Rusty Russell17cbca22007-10-22 11:24:22 +1000660 errx(1, "%s:%i: Invalid address %#lx", __FILE__, line, addr);
Rusty Russelldde79782007-07-26 10:41:03 -0700661 /* We return a pointer for the caller's convenience, now we know it's
662 * safe to use. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000663 return from_guest_phys(addr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700664}
Rusty Russelldde79782007-07-26 10:41:03 -0700665/* A macro which transparently hands the line number to the real function. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700666#define check_pointer(addr,size) _check_pointer(addr, size, __LINE__)
667
Rusty Russelle1e72962007-10-25 15:02:50 +1000668/* Each buffer in the virtqueues is actually a chain of descriptors. This
669 * function returns the next descriptor in the chain, or vq->vring.num if we're
670 * at the end. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000671static unsigned next_desc(struct virtqueue *vq, unsigned int i)
672{
673 unsigned int next;
674
675 /* If this descriptor says it doesn't chain, we're done. */
676 if (!(vq->vring.desc[i].flags & VRING_DESC_F_NEXT))
677 return vq->vring.num;
678
679 /* Check they're not leading us off end of descriptors. */
680 next = vq->vring.desc[i].next;
681 /* Make sure compiler knows to grab that: we don't want it changing! */
682 wmb();
683
684 if (next >= vq->vring.num)
685 errx(1, "Desc next is %u", next);
686
687 return next;
688}
689
690/* This looks in the virtqueue and for the first available buffer, and converts
691 * it to an iovec for convenient access. Since descriptors consist of some
692 * number of output then some number of input descriptors, it's actually two
693 * iovecs, but we pack them into one and note how many of each there were.
694 *
695 * This function returns the descriptor number found, or vq->vring.num (which
696 * is never a valid descriptor number) if none was found. */
697static unsigned get_vq_desc(struct virtqueue *vq,
698 struct iovec iov[],
699 unsigned int *out_num, unsigned int *in_num)
700{
701 unsigned int i, head;
Rusty Russellb5111792008-07-29 09:58:34 -0500702 u16 last_avail;
Rusty Russell17cbca22007-10-22 11:24:22 +1000703
704 /* Check it isn't doing very strange things with descriptor numbers. */
Rusty Russellb5111792008-07-29 09:58:34 -0500705 last_avail = lg_last_avail(vq);
706 if ((u16)(vq->vring.avail->idx - last_avail) > vq->vring.num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000707 errx(1, "Guest moved used index from %u to %u",
Rusty Russellb5111792008-07-29 09:58:34 -0500708 last_avail, vq->vring.avail->idx);
Rusty Russell17cbca22007-10-22 11:24:22 +1000709
710 /* If there's nothing new since last we looked, return invalid. */
Rusty Russellb5111792008-07-29 09:58:34 -0500711 if (vq->vring.avail->idx == last_avail)
Rusty Russell17cbca22007-10-22 11:24:22 +1000712 return vq->vring.num;
713
714 /* Grab the next descriptor number they're advertising, and increment
715 * the index we've seen. */
Rusty Russellb5111792008-07-29 09:58:34 -0500716 head = vq->vring.avail->ring[last_avail % vq->vring.num];
717 lg_last_avail(vq)++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000718
719 /* If their number is silly, that's a fatal mistake. */
720 if (head >= vq->vring.num)
721 errx(1, "Guest says index %u is available", head);
722
723 /* When we start there are none of either input nor output. */
724 *out_num = *in_num = 0;
725
726 i = head;
727 do {
728 /* Grab the first descriptor, and check it's OK. */
729 iov[*out_num + *in_num].iov_len = vq->vring.desc[i].len;
730 iov[*out_num + *in_num].iov_base
731 = check_pointer(vq->vring.desc[i].addr,
732 vq->vring.desc[i].len);
733 /* If this is an input descriptor, increment that count. */
734 if (vq->vring.desc[i].flags & VRING_DESC_F_WRITE)
735 (*in_num)++;
736 else {
737 /* If it's an output descriptor, they're all supposed
738 * to come before any input descriptors. */
739 if (*in_num)
740 errx(1, "Descriptor has out after in");
741 (*out_num)++;
742 }
743
744 /* If we've got too many, that implies a descriptor loop. */
745 if (*out_num + *in_num > vq->vring.num)
746 errx(1, "Looped descriptor");
747 } while ((i = next_desc(vq, i)) != vq->vring.num);
748
Rusty Russell20887612008-05-30 15:09:46 -0500749 vq->inflight++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000750 return head;
751}
752
Rusty Russelle1e72962007-10-25 15:02:50 +1000753/* After we've used one of their buffers, we tell them about it. We'll then
Rusty Russell17cbca22007-10-22 11:24:22 +1000754 * want to send them an interrupt, using trigger_irq(). */
755static void add_used(struct virtqueue *vq, unsigned int head, int len)
756{
757 struct vring_used_elem *used;
758
Rusty Russelle1e72962007-10-25 15:02:50 +1000759 /* The virtqueue contains a ring of used buffers. Get a pointer to the
760 * next entry in that used ring. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000761 used = &vq->vring.used->ring[vq->vring.used->idx % vq->vring.num];
762 used->id = head;
763 used->len = len;
764 /* Make sure buffer is written before we update index. */
765 wmb();
766 vq->vring.used->idx++;
Rusty Russell20887612008-05-30 15:09:46 -0500767 vq->inflight--;
Rusty Russell17cbca22007-10-22 11:24:22 +1000768}
769
770/* This actually sends the interrupt for this virtqueue */
771static void trigger_irq(int fd, struct virtqueue *vq)
772{
773 unsigned long buf[] = { LHREQ_IRQ, vq->config.irq };
774
Rusty Russell20887612008-05-30 15:09:46 -0500775 /* If they don't want an interrupt, don't send one, unless empty. */
776 if ((vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT)
777 && vq->inflight)
Rusty Russell17cbca22007-10-22 11:24:22 +1000778 return;
779
780 /* Send the Guest an interrupt tell them we used something up. */
781 if (write(fd, buf, sizeof(buf)) != 0)
782 err(1, "Triggering irq %i", vq->config.irq);
783}
784
785/* And here's the combo meal deal. Supersize me! */
786static void add_used_and_trigger(int fd, struct virtqueue *vq,
787 unsigned int head, int len)
788{
789 add_used(vq, head, len);
790 trigger_irq(fd, vq);
791}
792
Rusty Russelle1e72962007-10-25 15:02:50 +1000793/*
794 * The Console
795 *
796 * Here is the input terminal setting we save, and the routine to restore them
797 * on exit so the user gets their terminal back. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700798static struct termios orig_term;
799static void restore_term(void)
800{
801 tcsetattr(STDIN_FILENO, TCSANOW, &orig_term);
802}
803
Rusty Russelldde79782007-07-26 10:41:03 -0700804/* We associate some data with the console for our exit hack. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700805struct console_abort
806{
Rusty Russelldde79782007-07-26 10:41:03 -0700807 /* How many times have they hit ^C? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700808 int count;
Rusty Russelldde79782007-07-26 10:41:03 -0700809 /* When did they start? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700810 struct timeval start;
811};
812
Rusty Russelldde79782007-07-26 10:41:03 -0700813/* This is the routine which handles console input (ie. stdin). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700814static bool handle_console_input(int fd, struct device *dev)
815{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700816 int len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000817 unsigned int head, in_num, out_num;
818 struct iovec iov[dev->vq->vring.num];
Rusty Russell8ca47e02007-07-19 01:49:29 -0700819 struct console_abort *abort = dev->priv;
820
Rusty Russell17cbca22007-10-22 11:24:22 +1000821 /* First we need a console buffer from the Guests's input virtqueue. */
822 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
Rusty Russell56ae43d2007-10-22 11:24:23 +1000823
824 /* If they're not ready for input, stop listening to this file
825 * descriptor. We'll start again once they add an input buffer. */
826 if (head == dev->vq->vring.num)
827 return false;
828
829 if (out_num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000830 errx(1, "Output buffers in console in queue?");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700831
Rusty Russelldde79782007-07-26 10:41:03 -0700832 /* This is why we convert to iovecs: the readv() call uses them, and so
833 * it reads straight into the Guest's buffer. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000834 len = readv(dev->fd, iov, in_num);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700835 if (len <= 0) {
Rusty Russelldde79782007-07-26 10:41:03 -0700836 /* This implies that the console is closed, is /dev/null, or
Rusty Russell17cbca22007-10-22 11:24:22 +1000837 * something went terribly wrong. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700838 warnx("Failed to get console input, ignoring console.");
Rusty Russell56ae43d2007-10-22 11:24:23 +1000839 /* Put the input terminal back. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000840 restore_term();
Rusty Russell56ae43d2007-10-22 11:24:23 +1000841 /* Remove callback from input vq, so it doesn't restart us. */
842 dev->vq->handle_output = NULL;
843 /* Stop listening to this fd: don't call us again. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000844 return false;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700845 }
846
Rusty Russell56ae43d2007-10-22 11:24:23 +1000847 /* Tell the Guest about the new input. */
848 add_used_and_trigger(fd, dev->vq, head, len);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700849
Rusty Russelldde79782007-07-26 10:41:03 -0700850 /* Three ^C within one second? Exit.
851 *
852 * This is such a hack, but works surprisingly well. Each ^C has to be
853 * in a buffer by itself, so they can't be too fast. But we check that
854 * we get three within about a second, so they can't be too slow. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700855 if (len == 1 && ((char *)iov[0].iov_base)[0] == 3) {
856 if (!abort->count++)
857 gettimeofday(&abort->start, NULL);
858 else if (abort->count == 3) {
859 struct timeval now;
860 gettimeofday(&now, NULL);
861 if (now.tv_sec <= abort->start.tv_sec+1) {
Jes Sorensen511801d2007-10-22 11:03:31 +1000862 unsigned long args[] = { LHREQ_BREAK, 0 };
Rusty Russelldde79782007-07-26 10:41:03 -0700863 /* Close the fd so Waker will know it has to
864 * exit. */
Rusty Russell8c798732008-07-29 09:58:38 -0500865 close(waker_fds.pipe[1]);
866 /* Just in case Waker is blocked in BREAK, send
Rusty Russelldde79782007-07-26 10:41:03 -0700867 * unbreak now. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700868 write(fd, args, sizeof(args));
869 exit(2);
870 }
871 abort->count = 0;
872 }
873 } else
Rusty Russelldde79782007-07-26 10:41:03 -0700874 /* Any other key resets the abort counter. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700875 abort->count = 0;
876
Rusty Russelldde79782007-07-26 10:41:03 -0700877 /* Everything went OK! */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700878 return true;
879}
880
Rusty Russell17cbca22007-10-22 11:24:22 +1000881/* Handling output for console is simple: we just get all the output buffers
882 * and write them to stdout. */
Rusty Russella1618832008-07-29 09:58:35 -0500883static void handle_console_output(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700884{
Rusty Russell17cbca22007-10-22 11:24:22 +1000885 unsigned int head, out, in;
886 int len;
887 struct iovec iov[vq->vring.num];
888
889 /* Keep getting output buffers from the Guest until we run out. */
890 while ((head = get_vq_desc(vq, iov, &out, &in)) != vq->vring.num) {
891 if (in)
892 errx(1, "Input buffers in output queue?");
893 len = writev(STDOUT_FILENO, iov, out);
894 add_used_and_trigger(fd, vq, head, len);
895 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700896}
897
Rusty Russella1618832008-07-29 09:58:35 -0500898static void block_vq(struct virtqueue *vq)
899{
900 struct itimerval itm;
901
902 vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY;
903 vq->blocked = true;
904
905 itm.it_interval.tv_sec = 0;
906 itm.it_interval.tv_usec = 0;
907 itm.it_value.tv_sec = 0;
Rusty Russellaa124982008-07-29 09:58:36 -0500908 itm.it_value.tv_usec = timeout_usec;
Rusty Russella1618832008-07-29 09:58:35 -0500909
910 setitimer(ITIMER_REAL, &itm, NULL);
911}
912
Rusty Russelle1e72962007-10-25 15:02:50 +1000913/*
914 * The Network
915 *
916 * Handling output for network is also simple: we get all the output buffers
Rusty Russell17cbca22007-10-22 11:24:22 +1000917 * and write them (ignoring the first element) to this device's file descriptor
Rusty Russella6bd8e12008-03-28 11:05:53 -0500918 * (/dev/net/tun).
919 */
Rusty Russella1618832008-07-29 09:58:35 -0500920static void handle_net_output(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700921{
Rusty Russella1618832008-07-29 09:58:35 -0500922 unsigned int head, out, in, num = 0;
Rusty Russell17cbca22007-10-22 11:24:22 +1000923 int len;
924 struct iovec iov[vq->vring.num];
Rusty Russellaa124982008-07-29 09:58:36 -0500925 static int last_timeout_num;
Rusty Russell17cbca22007-10-22 11:24:22 +1000926
927 /* Keep getting output buffers from the Guest until we run out. */
928 while ((head = get_vq_desc(vq, iov, &out, &in)) != vq->vring.num) {
929 if (in)
930 errx(1, "Input buffers in output queue?");
Rusty Russell398f1872008-07-29 09:58:37 -0500931 len = writev(vq->dev->fd, iov, out);
932 if (len < 0)
933 err(1, "Writing network packet to tun");
Rusty Russell17cbca22007-10-22 11:24:22 +1000934 add_used_and_trigger(fd, vq, head, len);
Rusty Russella1618832008-07-29 09:58:35 -0500935 num++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000936 }
Rusty Russella1618832008-07-29 09:58:35 -0500937
938 /* Block further kicks and set up a timer if we saw anything. */
939 if (!timeout && num)
940 block_vq(vq);
Rusty Russellaa124982008-07-29 09:58:36 -0500941
942 if (timeout) {
943 if (num < last_timeout_num)
944 timeout_usec += 10;
945 else if (timeout_usec > 1)
946 timeout_usec--;
947 last_timeout_num = num;
948 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700949}
950
Rusty Russell17cbca22007-10-22 11:24:22 +1000951/* This is where we handle a packet coming in from the tun device to our
952 * Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700953static bool handle_tun_input(int fd, struct device *dev)
954{
Rusty Russell17cbca22007-10-22 11:24:22 +1000955 unsigned int head, in_num, out_num;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700956 int len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000957 struct iovec iov[dev->vq->vring.num];
Rusty Russell8ca47e02007-07-19 01:49:29 -0700958
Rusty Russell17cbca22007-10-22 11:24:22 +1000959 /* First we need a network buffer from the Guests's recv virtqueue. */
960 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
961 if (head == dev->vq->vring.num) {
Rusty Russelldde79782007-07-26 10:41:03 -0700962 /* Now, it's expected that if we try to send a packet too
Rusty Russell17cbca22007-10-22 11:24:22 +1000963 * early, the Guest won't be ready yet. Wait until the device
964 * status says it's ready. */
965 /* FIXME: Actually want DRIVER_ACTIVE here. */
Rusty Russell5dae7852008-07-29 09:58:35 -0500966
967 /* Now tell it we want to know if new things appear. */
968 dev->vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY;
969 wmb();
970
Rusty Russell56ae43d2007-10-22 11:24:23 +1000971 /* We'll turn this back on if input buffers are registered. */
972 return false;
Rusty Russell17cbca22007-10-22 11:24:22 +1000973 } else if (out_num)
974 errx(1, "Output buffers in network recv queue?");
975
Rusty Russelldde79782007-07-26 10:41:03 -0700976 /* Read the packet from the device directly into the Guest's buffer. */
Rusty Russell398f1872008-07-29 09:58:37 -0500977 len = readv(dev->fd, iov, in_num);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700978 if (len <= 0)
979 err(1, "reading network");
Rusty Russelldde79782007-07-26 10:41:03 -0700980
Rusty Russell56ae43d2007-10-22 11:24:23 +1000981 /* Tell the Guest about the new packet. */
Rusty Russell398f1872008-07-29 09:58:37 -0500982 add_used_and_trigger(fd, dev->vq, head, len);
Rusty Russell17cbca22007-10-22 11:24:22 +1000983
Rusty Russell8ca47e02007-07-19 01:49:29 -0700984 verbose("tun input packet len %i [%02x %02x] (%s)\n", len,
Rusty Russell17cbca22007-10-22 11:24:22 +1000985 ((u8 *)iov[1].iov_base)[0], ((u8 *)iov[1].iov_base)[1],
986 head != dev->vq->vring.num ? "sent" : "discarded");
987
Rusty Russelldde79782007-07-26 10:41:03 -0700988 /* All good. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700989 return true;
990}
991
Rusty Russelle1e72962007-10-25 15:02:50 +1000992/*L:215 This is the callback attached to the network and console input
993 * virtqueues: it ensures we try again, in case we stopped console or net
Rusty Russell56ae43d2007-10-22 11:24:23 +1000994 * delivery because Guest didn't have any buffers. */
Rusty Russella1618832008-07-29 09:58:35 -0500995static void enable_fd(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell56ae43d2007-10-22 11:24:23 +1000996{
997 add_device_fd(vq->dev->fd);
Rusty Russell8c798732008-07-29 09:58:38 -0500998 /* Snap the Waker out of its select loop. */
999 write(waker_fds.pipe[1], "", 1);
Rusty Russell56ae43d2007-10-22 11:24:23 +10001000}
1001
Rusty Russella1618832008-07-29 09:58:35 -05001002static void net_enable_fd(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell5dae7852008-07-29 09:58:35 -05001003{
1004 /* We don't need to know again when Guest refills receive buffer. */
1005 vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY;
Rusty Russella1618832008-07-29 09:58:35 -05001006 enable_fd(fd, vq, timeout);
Rusty Russell5dae7852008-07-29 09:58:35 -05001007}
1008
Rusty Russella007a752008-05-02 21:50:53 -05001009/* When the Guest tells us they updated the status field, we handle it. */
1010static void update_device_status(struct device *dev)
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001011{
1012 struct virtqueue *vq;
1013
Rusty Russella007a752008-05-02 21:50:53 -05001014 /* This is a reset. */
1015 if (dev->desc->status == 0) {
1016 verbose("Resetting device %s\n", dev->name);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001017
Rusty Russella007a752008-05-02 21:50:53 -05001018 /* Clear any features they've acked. */
1019 memset(get_feature_bits(dev) + dev->desc->feature_len, 0,
1020 dev->desc->feature_len);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001021
Rusty Russella007a752008-05-02 21:50:53 -05001022 /* Zero out the virtqueues. */
1023 for (vq = dev->vq; vq; vq = vq->next) {
1024 memset(vq->vring.desc, 0,
1025 vring_size(vq->config.num, getpagesize()));
Rusty Russellb5111792008-07-29 09:58:34 -05001026 lg_last_avail(vq) = 0;
Rusty Russella007a752008-05-02 21:50:53 -05001027 }
1028 } else if (dev->desc->status & VIRTIO_CONFIG_S_FAILED) {
1029 warnx("Device %s configuration FAILED", dev->name);
1030 } else if (dev->desc->status & VIRTIO_CONFIG_S_DRIVER_OK) {
1031 unsigned int i;
1032
1033 verbose("Device %s OK: offered", dev->name);
1034 for (i = 0; i < dev->desc->feature_len; i++)
Rusty Russell32c68e52008-07-29 09:58:32 -05001035 verbose(" %02x", get_feature_bits(dev)[i]);
Rusty Russella007a752008-05-02 21:50:53 -05001036 verbose(", accepted");
1037 for (i = 0; i < dev->desc->feature_len; i++)
Rusty Russell32c68e52008-07-29 09:58:32 -05001038 verbose(" %02x", get_feature_bits(dev)
Rusty Russella007a752008-05-02 21:50:53 -05001039 [dev->desc->feature_len+i]);
1040
1041 if (dev->ready)
1042 dev->ready(dev);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001043 }
1044}
1045
Rusty Russell17cbca22007-10-22 11:24:22 +10001046/* This is the generic routine we call when the Guest uses LHCALL_NOTIFY. */
1047static void handle_output(int fd, unsigned long addr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001048{
1049 struct device *i;
Rusty Russell17cbca22007-10-22 11:24:22 +10001050 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001051
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001052 /* Check each device and virtqueue. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001053 for (i = devices.dev; i; i = i->next) {
Rusty Russella007a752008-05-02 21:50:53 -05001054 /* Notifications to device descriptors update device status. */
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001055 if (from_guest_phys(addr) == i->desc) {
Rusty Russella007a752008-05-02 21:50:53 -05001056 update_device_status(i);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001057 return;
1058 }
1059
1060 /* Notifications to virtqueues mean output has occurred. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001061 for (vq = i->vq; vq; vq = vq->next) {
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001062 if (vq->config.pfn != addr/getpagesize())
1063 continue;
1064
1065 /* Guest should acknowledge (and set features!) before
1066 * using the device. */
1067 if (i->desc->status == 0) {
1068 warnx("%s gave early output", i->name);
Rusty Russell17cbca22007-10-22 11:24:22 +10001069 return;
1070 }
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001071
1072 if (strcmp(vq->dev->name, "console") != 0)
1073 verbose("Output to %s\n", vq->dev->name);
1074 if (vq->handle_output)
Rusty Russella1618832008-07-29 09:58:35 -05001075 vq->handle_output(fd, vq, false);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001076 return;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001077 }
1078 }
Rusty Russelldde79782007-07-26 10:41:03 -07001079
Rusty Russell17cbca22007-10-22 11:24:22 +10001080 /* Early console write is done using notify on a nul-terminated string
1081 * in Guest memory. */
1082 if (addr >= guest_limit)
1083 errx(1, "Bad NOTIFY %#lx", addr);
1084
1085 write(STDOUT_FILENO, from_guest_phys(addr),
1086 strnlen(from_guest_phys(addr), guest_limit - addr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001087}
1088
Rusty Russella1618832008-07-29 09:58:35 -05001089static void handle_timeout(int fd)
1090{
1091 char buf[32];
1092 struct device *i;
1093 struct virtqueue *vq;
1094
1095 /* Clear the pipe */
1096 read(timeoutpipe[0], buf, sizeof(buf));
1097
1098 /* Check each device and virtqueue: flush blocked ones. */
1099 for (i = devices.dev; i; i = i->next) {
1100 for (vq = i->vq; vq; vq = vq->next) {
1101 if (!vq->blocked)
1102 continue;
1103
1104 vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY;
1105 vq->blocked = false;
1106 if (vq->handle_output)
1107 vq->handle_output(fd, vq, true);
1108 }
1109 }
1110}
1111
Rusty Russelle1e72962007-10-25 15:02:50 +10001112/* This is called when the Waker wakes us up: check for incoming file
Rusty Russelldde79782007-07-26 10:41:03 -07001113 * descriptors. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001114static void handle_input(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001115{
Rusty Russelldde79782007-07-26 10:41:03 -07001116 /* select() wants a zeroed timeval to mean "don't wait". */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001117 struct timeval poll = { .tv_sec = 0, .tv_usec = 0 };
1118
1119 for (;;) {
1120 struct device *i;
Rusty Russell17cbca22007-10-22 11:24:22 +10001121 fd_set fds = devices.infds;
Rusty Russella1618832008-07-29 09:58:35 -05001122 int num;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001123
Rusty Russella1618832008-07-29 09:58:35 -05001124 num = select(devices.max_infd+1, &fds, NULL, NULL, &poll);
1125 /* Could get interrupted */
1126 if (num < 0)
1127 continue;
Rusty Russelldde79782007-07-26 10:41:03 -07001128 /* If nothing is ready, we're done. */
Rusty Russella1618832008-07-29 09:58:35 -05001129 if (num == 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001130 break;
1131
Rusty Russella6bd8e12008-03-28 11:05:53 -05001132 /* Otherwise, call the device(s) which have readable file
1133 * descriptors and a method of handling them. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001134 for (i = devices.dev; i; i = i->next) {
Rusty Russell8ca47e02007-07-19 01:49:29 -07001135 if (i->handle_input && FD_ISSET(i->fd, &fds)) {
Rusty Russell56ae43d2007-10-22 11:24:23 +10001136 if (i->handle_input(fd, i))
1137 continue;
1138
Rusty Russelldde79782007-07-26 10:41:03 -07001139 /* If handle_input() returns false, it means we
Rusty Russell56ae43d2007-10-22 11:24:23 +10001140 * should no longer service it. Networking and
1141 * console do this when there's no input
1142 * buffers to deliver into. Console also uses
Rusty Russella6bd8e12008-03-28 11:05:53 -05001143 * it when it discovers that stdin is closed. */
Rusty Russell56ae43d2007-10-22 11:24:23 +10001144 FD_CLR(i->fd, &devices.infds);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001145 }
1146 }
Rusty Russella1618832008-07-29 09:58:35 -05001147
1148 /* Is this the timeout fd? */
1149 if (FD_ISSET(timeoutpipe[0], &fds))
1150 handle_timeout(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001151 }
1152}
1153
Rusty Russelldde79782007-07-26 10:41:03 -07001154/*L:190
1155 * Device Setup
1156 *
1157 * All devices need a descriptor so the Guest knows it exists, and a "struct
1158 * device" so the Launcher can keep track of it. We have common helper
Rusty Russella6bd8e12008-03-28 11:05:53 -05001159 * routines to allocate and manage them.
1160 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001161
1162/* The layout of the device page is a "struct lguest_device_desc" followed by a
1163 * number of virtqueue descriptors, then two sets of feature bits, then an
1164 * array of configuration bytes. This routine returns the configuration
1165 * pointer. */
1166static u8 *device_config(const struct device *dev)
1167{
1168 return (void *)(dev->desc + 1)
1169 + dev->desc->num_vq * sizeof(struct lguest_vqconfig)
1170 + dev->desc->feature_len * 2;
1171}
1172
1173/* This routine allocates a new "struct lguest_device_desc" from descriptor
1174 * table page just above the Guest's normal memory. It returns a pointer to
1175 * that descriptor. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001176static struct lguest_device_desc *new_dev_desc(u16 type)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001177{
Rusty Russella586d4f2008-02-04 23:49:56 -05001178 struct lguest_device_desc d = { .type = type };
1179 void *p;
1180
1181 /* Figure out where the next device config is, based on the last one. */
1182 if (devices.lastdev)
1183 p = device_config(devices.lastdev)
1184 + devices.lastdev->desc->config_len;
1185 else
1186 p = devices.descpage;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001187
Rusty Russell17cbca22007-10-22 11:24:22 +10001188 /* We only have one page for all the descriptors. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001189 if (p + sizeof(d) > (void *)devices.descpage + getpagesize())
Rusty Russell17cbca22007-10-22 11:24:22 +10001190 errx(1, "Too many devices");
1191
Rusty Russella586d4f2008-02-04 23:49:56 -05001192 /* p might not be aligned, so we memcpy in. */
1193 return memcpy(p, &d, sizeof(d));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001194}
1195
Rusty Russella586d4f2008-02-04 23:49:56 -05001196/* Each device descriptor is followed by the description of its virtqueues. We
1197 * specify how many descriptors the virtqueue is to have. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001198static void add_virtqueue(struct device *dev, unsigned int num_descs,
Rusty Russella1618832008-07-29 09:58:35 -05001199 void (*handle_output)(int, struct virtqueue *, bool))
Rusty Russell17cbca22007-10-22 11:24:22 +10001200{
1201 unsigned int pages;
1202 struct virtqueue **i, *vq = malloc(sizeof(*vq));
1203 void *p;
1204
Rusty Russella6bd8e12008-03-28 11:05:53 -05001205 /* First we need some memory for this virtqueue. */
Rusty Russell42b36cc2007-11-12 13:39:18 +11001206 pages = (vring_size(num_descs, getpagesize()) + getpagesize() - 1)
1207 / getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10001208 p = get_pages(pages);
1209
Rusty Russelld1c856e2007-11-19 11:20:40 -05001210 /* Initialize the virtqueue */
1211 vq->next = NULL;
1212 vq->last_avail_idx = 0;
1213 vq->dev = dev;
Rusty Russell20887612008-05-30 15:09:46 -05001214 vq->inflight = 0;
Rusty Russella1618832008-07-29 09:58:35 -05001215 vq->blocked = false;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001216
Rusty Russell17cbca22007-10-22 11:24:22 +10001217 /* Initialize the configuration. */
1218 vq->config.num = num_descs;
1219 vq->config.irq = devices.next_irq++;
1220 vq->config.pfn = to_guest_phys(p) / getpagesize();
1221
1222 /* Initialize the vring. */
Rusty Russell42b36cc2007-11-12 13:39:18 +11001223 vring_init(&vq->vring, num_descs, p, getpagesize());
Rusty Russell17cbca22007-10-22 11:24:22 +10001224
Rusty Russella586d4f2008-02-04 23:49:56 -05001225 /* Append virtqueue to this device's descriptor. We use
1226 * device_config() to get the end of the device's current virtqueues;
1227 * we check that we haven't added any config or feature information
1228 * yet, otherwise we'd be overwriting them. */
1229 assert(dev->desc->config_len == 0 && dev->desc->feature_len == 0);
1230 memcpy(device_config(dev), &vq->config, sizeof(vq->config));
1231 dev->desc->num_vq++;
1232
1233 verbose("Virtqueue page %#lx\n", to_guest_phys(p));
Rusty Russell17cbca22007-10-22 11:24:22 +10001234
1235 /* Add to tail of list, so dev->vq is first vq, dev->vq->next is
1236 * second. */
1237 for (i = &dev->vq; *i; i = &(*i)->next);
1238 *i = vq;
1239
Rusty Russelle1e72962007-10-25 15:02:50 +10001240 /* Set the routine to call when the Guest does something to this
1241 * virtqueue. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001242 vq->handle_output = handle_output;
Rusty Russelle1e72962007-10-25 15:02:50 +10001243
Rusty Russell426e3e02008-02-04 23:49:59 -05001244 /* As an optimization, set the advisory "Don't Notify Me" flag if we
1245 * don't have a handler */
Rusty Russell17cbca22007-10-22 11:24:22 +10001246 if (!handle_output)
1247 vq->vring.used->flags = VRING_USED_F_NO_NOTIFY;
1248}
1249
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001250/* The first half of the feature bitmask is for us to advertise features. The
Rusty Russella6bd8e12008-03-28 11:05:53 -05001251 * second half is for the Guest to accept features. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001252static void add_feature(struct device *dev, unsigned bit)
1253{
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001254 u8 *features = get_feature_bits(dev);
Rusty Russella586d4f2008-02-04 23:49:56 -05001255
1256 /* We can't extend the feature bits once we've added config bytes */
1257 if (dev->desc->feature_len <= bit / CHAR_BIT) {
1258 assert(dev->desc->config_len == 0);
1259 dev->desc->feature_len = (bit / CHAR_BIT) + 1;
1260 }
1261
Rusty Russella586d4f2008-02-04 23:49:56 -05001262 features[bit / CHAR_BIT] |= (1 << (bit % CHAR_BIT));
1263}
1264
1265/* This routine sets the configuration fields for an existing device's
1266 * descriptor. It only works for the last device, but that's OK because that's
1267 * how we use it. */
1268static void set_config(struct device *dev, unsigned len, const void *conf)
1269{
1270 /* Check we haven't overflowed our single page. */
1271 if (device_config(dev) + len > devices.descpage + getpagesize())
1272 errx(1, "Too many devices");
1273
1274 /* Copy in the config information, and store the length. */
1275 memcpy(device_config(dev), conf, len);
1276 dev->desc->config_len = len;
1277}
1278
Rusty Russell17cbca22007-10-22 11:24:22 +10001279/* This routine does all the creation and setup of a new device, including
Rusty Russella6bd8e12008-03-28 11:05:53 -05001280 * calling new_dev_desc() to allocate the descriptor and device memory.
1281 *
1282 * See what I mean about userspace being boring? */
Rusty Russell17cbca22007-10-22 11:24:22 +10001283static struct device *new_device(const char *name, u16 type, int fd,
1284 bool (*handle_input)(int, struct device *))
Rusty Russell8ca47e02007-07-19 01:49:29 -07001285{
1286 struct device *dev = malloc(sizeof(*dev));
1287
Rusty Russelldde79782007-07-26 10:41:03 -07001288 /* Now we populate the fields one at a time. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001289 dev->fd = fd;
Rusty Russelldde79782007-07-26 10:41:03 -07001290 /* If we have an input handler for this file descriptor, then we add it
1291 * to the device_list's fdset and maxfd. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001292 if (handle_input)
Rusty Russell17cbca22007-10-22 11:24:22 +10001293 add_device_fd(dev->fd);
1294 dev->desc = new_dev_desc(type);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001295 dev->handle_input = handle_input;
Rusty Russell17cbca22007-10-22 11:24:22 +10001296 dev->name = name;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001297 dev->vq = NULL;
Rusty Russella007a752008-05-02 21:50:53 -05001298 dev->ready = NULL;
Rusty Russella586d4f2008-02-04 23:49:56 -05001299
1300 /* Append to device list. Prepending to a single-linked list is
1301 * easier, but the user expects the devices to be arranged on the bus
1302 * in command-line order. The first network device on the command line
1303 * is eth0, the first block device /dev/vda, etc. */
1304 if (devices.lastdev)
1305 devices.lastdev->next = dev;
1306 else
1307 devices.dev = dev;
1308 devices.lastdev = dev;
1309
Rusty Russell8ca47e02007-07-19 01:49:29 -07001310 return dev;
1311}
1312
Rusty Russelldde79782007-07-26 10:41:03 -07001313/* Our first setup routine is the console. It's a fairly simple device, but
1314 * UNIX tty handling makes it uglier than it could be. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001315static void setup_console(void)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001316{
1317 struct device *dev;
1318
Rusty Russelldde79782007-07-26 10:41:03 -07001319 /* If we can save the initial standard input settings... */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001320 if (tcgetattr(STDIN_FILENO, &orig_term) == 0) {
1321 struct termios term = orig_term;
Rusty Russelldde79782007-07-26 10:41:03 -07001322 /* Then we turn off echo, line buffering and ^C etc. We want a
1323 * raw input stream to the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001324 term.c_lflag &= ~(ISIG|ICANON|ECHO);
1325 tcsetattr(STDIN_FILENO, TCSANOW, &term);
Rusty Russelldde79782007-07-26 10:41:03 -07001326 /* If we exit gracefully, the original settings will be
1327 * restored so the user can see what they're typing. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001328 atexit(restore_term);
1329 }
1330
Rusty Russell17cbca22007-10-22 11:24:22 +10001331 dev = new_device("console", VIRTIO_ID_CONSOLE,
1332 STDIN_FILENO, handle_console_input);
Rusty Russelldde79782007-07-26 10:41:03 -07001333 /* We store the console state in dev->priv, and initialize it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001334 dev->priv = malloc(sizeof(struct console_abort));
1335 ((struct console_abort *)dev->priv)->count = 0;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001336
Rusty Russell56ae43d2007-10-22 11:24:23 +10001337 /* The console needs two virtqueues: the input then the output. When
1338 * they put something the input queue, we make sure we're listening to
1339 * stdin. When they put something in the output queue, we write it to
Rusty Russelle1e72962007-10-25 15:02:50 +10001340 * stdout. */
Rusty Russell56ae43d2007-10-22 11:24:23 +10001341 add_virtqueue(dev, VIRTQUEUE_NUM, enable_fd);
Rusty Russell17cbca22007-10-22 11:24:22 +10001342 add_virtqueue(dev, VIRTQUEUE_NUM, handle_console_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001343
Rusty Russell17cbca22007-10-22 11:24:22 +10001344 verbose("device %u: console\n", devices.device_num++);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001345}
Rusty Russelldde79782007-07-26 10:41:03 -07001346/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001347
Rusty Russella1618832008-07-29 09:58:35 -05001348static void timeout_alarm(int sig)
1349{
1350 write(timeoutpipe[1], "", 1);
1351}
1352
1353static void setup_timeout(void)
1354{
1355 if (pipe(timeoutpipe) != 0)
1356 err(1, "Creating timeout pipe");
1357
1358 if (fcntl(timeoutpipe[1], F_SETFL,
1359 fcntl(timeoutpipe[1], F_GETFL) | O_NONBLOCK) != 0)
1360 err(1, "Making timeout pipe nonblocking");
1361
1362 add_device_fd(timeoutpipe[0]);
1363 signal(SIGALRM, timeout_alarm);
1364}
1365
Rusty Russell17cbca22007-10-22 11:24:22 +10001366/*M:010 Inter-guest networking is an interesting area. Simplest is to have a
1367 * --sharenet=<name> option which opens or creates a named pipe. This can be
1368 * used to send packets to another guest in a 1:1 manner.
1369 *
1370 * More sopisticated is to use one of the tools developed for project like UML
1371 * to do networking.
1372 *
1373 * Faster is to do virtio bonding in kernel. Doing this 1:1 would be
1374 * completely generic ("here's my vring, attach to your vring") and would work
1375 * for any traffic. Of course, namespace and permissions issues need to be
1376 * dealt with. A more sophisticated "multi-channel" virtio_net.c could hide
1377 * multiple inter-guest channels behind one interface, although it would
1378 * require some manner of hotplugging new virtio channels.
1379 *
1380 * Finally, we could implement a virtio network switch in the kernel. :*/
1381
Rusty Russell8ca47e02007-07-19 01:49:29 -07001382static u32 str2ip(const char *ipaddr)
1383{
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001384 unsigned int b[4];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001385
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001386 if (sscanf(ipaddr, "%u.%u.%u.%u", &b[0], &b[1], &b[2], &b[3]) != 4)
1387 errx(1, "Failed to parse IP address '%s'", ipaddr);
1388 return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];
1389}
1390
1391static void str2mac(const char *macaddr, unsigned char mac[6])
1392{
1393 unsigned int m[6];
1394 if (sscanf(macaddr, "%02x:%02x:%02x:%02x:%02x:%02x",
1395 &m[0], &m[1], &m[2], &m[3], &m[4], &m[5]) != 6)
1396 errx(1, "Failed to parse mac address '%s'", macaddr);
1397 mac[0] = m[0];
1398 mac[1] = m[1];
1399 mac[2] = m[2];
1400 mac[3] = m[3];
1401 mac[4] = m[4];
1402 mac[5] = m[5];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001403}
1404
Rusty Russelldde79782007-07-26 10:41:03 -07001405/* This code is "adapted" from libbridge: it attaches the Host end of the
1406 * network device to the bridge device specified by the command line.
1407 *
1408 * This is yet another James Morris contribution (I'm an IP-level guy, so I
1409 * dislike bridging), and I just try not to break it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001410static void add_to_bridge(int fd, const char *if_name, const char *br_name)
1411{
1412 int ifidx;
1413 struct ifreq ifr;
1414
1415 if (!*br_name)
1416 errx(1, "must specify bridge name");
1417
1418 ifidx = if_nametoindex(if_name);
1419 if (!ifidx)
1420 errx(1, "interface %s does not exist!", if_name);
1421
1422 strncpy(ifr.ifr_name, br_name, IFNAMSIZ);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001423 ifr.ifr_name[IFNAMSIZ-1] = '\0';
Rusty Russell8ca47e02007-07-19 01:49:29 -07001424 ifr.ifr_ifindex = ifidx;
1425 if (ioctl(fd, SIOCBRADDIF, &ifr) < 0)
1426 err(1, "can't add %s to bridge %s", if_name, br_name);
1427}
1428
Rusty Russelldde79782007-07-26 10:41:03 -07001429/* This sets up the Host end of the network device with an IP address, brings
1430 * it up so packets will flow, the copies the MAC address into the hwaddr
Rusty Russell17cbca22007-10-22 11:24:22 +10001431 * pointer. */
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001432static void configure_device(int fd, const char *tapif, u32 ipaddr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001433{
1434 struct ifreq ifr;
1435 struct sockaddr_in *sin = (struct sockaddr_in *)&ifr.ifr_addr;
1436
1437 memset(&ifr, 0, sizeof(ifr));
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001438 strcpy(ifr.ifr_name, tapif);
1439
1440 /* Don't read these incantations. Just cut & paste them like I did! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001441 sin->sin_family = AF_INET;
1442 sin->sin_addr.s_addr = htonl(ipaddr);
1443 if (ioctl(fd, SIOCSIFADDR, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001444 err(1, "Setting %s interface address", tapif);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001445 ifr.ifr_flags = IFF_UP;
1446 if (ioctl(fd, SIOCSIFFLAGS, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001447 err(1, "Bringing interface %s up", tapif);
1448}
1449
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001450static int get_tun_device(char tapif[IFNAMSIZ])
Rusty Russell8ca47e02007-07-19 01:49:29 -07001451{
Rusty Russell8ca47e02007-07-19 01:49:29 -07001452 struct ifreq ifr;
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001453 int netfd;
1454
1455 /* Start with this zeroed. Messy but sure. */
1456 memset(&ifr, 0, sizeof(ifr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001457
Rusty Russelldde79782007-07-26 10:41:03 -07001458 /* We open the /dev/net/tun device and tell it we want a tap device. A
1459 * tap device is like a tun device, only somehow different. To tell
1460 * the truth, I completely blundered my way through this code, but it
1461 * works now! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001462 netfd = open_or_die("/dev/net/tun", O_RDWR);
Rusty Russell398f1872008-07-29 09:58:37 -05001463 ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_VNET_HDR;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001464 strcpy(ifr.ifr_name, "tap%d");
1465 if (ioctl(netfd, TUNSETIFF, &ifr) != 0)
1466 err(1, "configuring /dev/net/tun");
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001467
Rusty Russell398f1872008-07-29 09:58:37 -05001468 if (ioctl(netfd, TUNSETOFFLOAD,
1469 TUN_F_CSUM|TUN_F_TSO4|TUN_F_TSO6|TUN_F_TSO_ECN) != 0)
1470 err(1, "Could not set features for tun device");
1471
Rusty Russelldde79782007-07-26 10:41:03 -07001472 /* We don't need checksums calculated for packets coming in this
1473 * device: trust us! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001474 ioctl(netfd, TUNSETNOCSUM, 1);
1475
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001476 memcpy(tapif, ifr.ifr_name, IFNAMSIZ);
1477 return netfd;
1478}
1479
1480/*L:195 Our network is a Host<->Guest network. This can either use bridging or
1481 * routing, but the principle is the same: it uses the "tun" device to inject
1482 * packets into the Host as if they came in from a normal network card. We
1483 * just shunt packets between the Guest and the tun device. */
1484static void setup_tun_net(char *arg)
1485{
1486 struct device *dev;
1487 int netfd, ipfd;
1488 u32 ip = INADDR_ANY;
1489 bool bridging = false;
1490 char tapif[IFNAMSIZ], *p;
1491 struct virtio_net_config conf;
1492
1493 netfd = get_tun_device(tapif);
1494
Rusty Russell17cbca22007-10-22 11:24:22 +10001495 /* First we create a new network device. */
1496 dev = new_device("net", VIRTIO_ID_NET, netfd, handle_tun_input);
Rusty Russelldde79782007-07-26 10:41:03 -07001497
Rusty Russell56ae43d2007-10-22 11:24:23 +10001498 /* Network devices need a receive and a send queue, just like
1499 * console. */
Rusty Russell5dae7852008-07-29 09:58:35 -05001500 add_virtqueue(dev, VIRTQUEUE_NUM, net_enable_fd);
Rusty Russell17cbca22007-10-22 11:24:22 +10001501 add_virtqueue(dev, VIRTQUEUE_NUM, handle_net_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001502
Rusty Russelldde79782007-07-26 10:41:03 -07001503 /* We need a socket to perform the magic network ioctls to bring up the
1504 * tap interface, connect to the bridge etc. Any socket will do! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001505 ipfd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
1506 if (ipfd < 0)
1507 err(1, "opening IP socket");
1508
Rusty Russelldde79782007-07-26 10:41:03 -07001509 /* If the command line was --tunnet=bridge:<name> do bridging. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001510 if (!strncmp(BRIDGE_PFX, arg, strlen(BRIDGE_PFX))) {
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001511 arg += strlen(BRIDGE_PFX);
1512 bridging = true;
1513 }
1514
1515 /* A mac address may follow the bridge name or IP address */
1516 p = strchr(arg, ':');
1517 if (p) {
1518 str2mac(p+1, conf.mac);
Rusty Russell40c42072008-08-12 17:52:51 -05001519 add_feature(dev, VIRTIO_NET_F_MAC);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001520 *p = '\0';
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001521 }
1522
1523 /* arg is now either an IP address or a bridge name */
1524 if (bridging)
1525 add_to_bridge(ipfd, tapif, arg);
1526 else
Rusty Russell8ca47e02007-07-19 01:49:29 -07001527 ip = str2ip(arg);
1528
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001529 /* Set up the tun device. */
1530 configure_device(ipfd, tapif, ip);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001531
Rusty Russell20887612008-05-30 15:09:46 -05001532 add_feature(dev, VIRTIO_F_NOTIFY_ON_EMPTY);
Rusty Russell398f1872008-07-29 09:58:37 -05001533 /* Expect Guest to handle everything except UFO */
1534 add_feature(dev, VIRTIO_NET_F_CSUM);
1535 add_feature(dev, VIRTIO_NET_F_GUEST_CSUM);
Rusty Russell398f1872008-07-29 09:58:37 -05001536 add_feature(dev, VIRTIO_NET_F_GUEST_TSO4);
1537 add_feature(dev, VIRTIO_NET_F_GUEST_TSO6);
1538 add_feature(dev, VIRTIO_NET_F_GUEST_ECN);
1539 add_feature(dev, VIRTIO_NET_F_HOST_TSO4);
1540 add_feature(dev, VIRTIO_NET_F_HOST_TSO6);
1541 add_feature(dev, VIRTIO_NET_F_HOST_ECN);
Rusty Russella586d4f2008-02-04 23:49:56 -05001542 set_config(dev, sizeof(conf), &conf);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001543
Rusty Russella586d4f2008-02-04 23:49:56 -05001544 /* We don't need the socket any more; setup is done. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001545 close(ipfd);
1546
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001547 devices.device_num++;
1548
1549 if (bridging)
1550 verbose("device %u: tun %s attached to bridge: %s\n",
1551 devices.device_num, tapif, arg);
1552 else
1553 verbose("device %u: tun %s: %s\n",
1554 devices.device_num, tapif, arg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001555}
Rusty Russell17cbca22007-10-22 11:24:22 +10001556
Rusty Russelle1e72962007-10-25 15:02:50 +10001557/* Our block (disk) device should be really simple: the Guest asks for a block
1558 * number and we read or write that position in the file. Unfortunately, that
1559 * was amazingly slow: the Guest waits until the read is finished before
1560 * running anything else, even if it could have been doing useful work.
Rusty Russell17cbca22007-10-22 11:24:22 +10001561 *
Rusty Russelle1e72962007-10-25 15:02:50 +10001562 * We could use async I/O, except it's reputed to suck so hard that characters
1563 * actually go missing from your code when you try to use it.
Rusty Russell17cbca22007-10-22 11:24:22 +10001564 *
1565 * So we farm the I/O out to thread, and communicate with it via a pipe. */
1566
Rusty Russelle1e72962007-10-25 15:02:50 +10001567/* This hangs off device->priv. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001568struct vblk_info
1569{
1570 /* The size of the file. */
1571 off64_t len;
1572
1573 /* The file descriptor for the file. */
1574 int fd;
1575
1576 /* IO thread listens on this file descriptor [0]. */
1577 int workpipe[2];
1578
1579 /* IO thread writes to this file descriptor to mark it done, then
1580 * Launcher triggers interrupt to Guest. */
1581 int done_fd;
1582};
1583
Rusty Russelle1e72962007-10-25 15:02:50 +10001584/*L:210
1585 * The Disk
1586 *
1587 * Remember that the block device is handled by a separate I/O thread. We head
1588 * straight into the core of that thread here:
1589 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001590static bool service_io(struct device *dev)
1591{
1592 struct vblk_info *vblk = dev->priv;
1593 unsigned int head, out_num, in_num, wlen;
1594 int ret;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001595 u8 *in;
Rusty Russell17cbca22007-10-22 11:24:22 +10001596 struct virtio_blk_outhdr *out;
1597 struct iovec iov[dev->vq->vring.num];
1598 off64_t off;
1599
Rusty Russelle1e72962007-10-25 15:02:50 +10001600 /* See if there's a request waiting. If not, nothing to do. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001601 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
1602 if (head == dev->vq->vring.num)
1603 return false;
1604
Rusty Russelle1e72962007-10-25 15:02:50 +10001605 /* Every block request should contain at least one output buffer
1606 * (detailing the location on disk and the type of request) and one
1607 * input buffer (to hold the result). */
Rusty Russell17cbca22007-10-22 11:24:22 +10001608 if (out_num == 0 || in_num == 0)
1609 errx(1, "Bad virtblk cmd %u out=%u in=%u",
1610 head, out_num, in_num);
1611
1612 out = convert(&iov[0], struct virtio_blk_outhdr);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001613 in = convert(&iov[out_num+in_num-1], u8);
Rusty Russell17cbca22007-10-22 11:24:22 +10001614 off = out->sector * 512;
1615
Rusty Russelle1e72962007-10-25 15:02:50 +10001616 /* The block device implements "barriers", where the Guest indicates
1617 * that it wants all previous writes to occur before this write. We
1618 * don't have a way of asking our kernel to do a barrier, so we just
1619 * synchronize all the data in the file. Pretty poor, no? */
Rusty Russell17cbca22007-10-22 11:24:22 +10001620 if (out->type & VIRTIO_BLK_T_BARRIER)
1621 fdatasync(vblk->fd);
1622
Rusty Russelle1e72962007-10-25 15:02:50 +10001623 /* In general the virtio block driver is allowed to try SCSI commands.
1624 * It'd be nice if we supported eject, for example, but we don't. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001625 if (out->type & VIRTIO_BLK_T_SCSI_CMD) {
1626 fprintf(stderr, "Scsi commands unsupported\n");
Rusty Russellcb38fa22008-05-02 21:50:45 -05001627 *in = VIRTIO_BLK_S_UNSUPP;
Anthony Liguori1200e642007-11-08 21:13:44 -06001628 wlen = sizeof(*in);
Rusty Russell17cbca22007-10-22 11:24:22 +10001629 } else if (out->type & VIRTIO_BLK_T_OUT) {
1630 /* Write */
1631
1632 /* Move to the right location in the block file. This can fail
1633 * if they try to write past end. */
1634 if (lseek64(vblk->fd, off, SEEK_SET) != off)
1635 err(1, "Bad seek to sector %llu", out->sector);
1636
1637 ret = writev(vblk->fd, iov+1, out_num-1);
1638 verbose("WRITE to sector %llu: %i\n", out->sector, ret);
1639
1640 /* Grr... Now we know how long the descriptor they sent was, we
1641 * make sure they didn't try to write over the end of the block
1642 * file (possibly extending it). */
1643 if (ret > 0 && off + ret > vblk->len) {
1644 /* Trim it back to the correct length */
1645 ftruncate64(vblk->fd, vblk->len);
1646 /* Die, bad Guest, die. */
1647 errx(1, "Write past end %llu+%u", off, ret);
1648 }
Anthony Liguori1200e642007-11-08 21:13:44 -06001649 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001650 *in = (ret >= 0 ? VIRTIO_BLK_S_OK : VIRTIO_BLK_S_IOERR);
Rusty Russell17cbca22007-10-22 11:24:22 +10001651 } else {
1652 /* Read */
1653
1654 /* Move to the right location in the block file. This can fail
1655 * if they try to read past end. */
1656 if (lseek64(vblk->fd, off, SEEK_SET) != off)
1657 err(1, "Bad seek to sector %llu", out->sector);
1658
1659 ret = readv(vblk->fd, iov+1, in_num-1);
1660 verbose("READ from sector %llu: %i\n", out->sector, ret);
1661 if (ret >= 0) {
Anthony Liguori1200e642007-11-08 21:13:44 -06001662 wlen = sizeof(*in) + ret;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001663 *in = VIRTIO_BLK_S_OK;
Rusty Russell17cbca22007-10-22 11:24:22 +10001664 } else {
Anthony Liguori1200e642007-11-08 21:13:44 -06001665 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001666 *in = VIRTIO_BLK_S_IOERR;
Rusty Russell17cbca22007-10-22 11:24:22 +10001667 }
1668 }
1669
1670 /* We can't trigger an IRQ, because we're not the Launcher. It does
1671 * that when we tell it we're done. */
1672 add_used(dev->vq, head, wlen);
1673 return true;
1674}
1675
1676/* This is the thread which actually services the I/O. */
1677static int io_thread(void *_dev)
1678{
1679 struct device *dev = _dev;
1680 struct vblk_info *vblk = dev->priv;
1681 char c;
1682
1683 /* Close other side of workpipe so we get 0 read when main dies. */
1684 close(vblk->workpipe[1]);
1685 /* Close the other side of the done_fd pipe. */
1686 close(dev->fd);
1687
1688 /* When this read fails, it means Launcher died, so we follow. */
1689 while (read(vblk->workpipe[0], &c, 1) == 1) {
Rusty Russelle1e72962007-10-25 15:02:50 +10001690 /* We acknowledge each request immediately to reduce latency,
Rusty Russell17cbca22007-10-22 11:24:22 +10001691 * rather than waiting until we've done them all. I haven't
Rusty Russella6bd8e12008-03-28 11:05:53 -05001692 * measured to see if it makes any difference.
1693 *
1694 * That would be an interesting test, wouldn't it? You could
1695 * also try having more than one I/O thread. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001696 while (service_io(dev))
1697 write(vblk->done_fd, &c, 1);
1698 }
1699 return 0;
1700}
1701
Rusty Russelle1e72962007-10-25 15:02:50 +10001702/* Now we've seen the I/O thread, we return to the Launcher to see what happens
Rusty Russella6bd8e12008-03-28 11:05:53 -05001703 * when that thread tells us it's completed some I/O. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001704static bool handle_io_finish(int fd, struct device *dev)
1705{
1706 char c;
1707
Rusty Russelle1e72962007-10-25 15:02:50 +10001708 /* If the I/O thread died, presumably it printed the error, so we
1709 * simply exit. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001710 if (read(dev->fd, &c, 1) != 1)
1711 exit(1);
1712
1713 /* It did some work, so trigger the irq. */
1714 trigger_irq(fd, dev->vq);
1715 return true;
1716}
1717
Rusty Russelle1e72962007-10-25 15:02:50 +10001718/* When the Guest submits some I/O, we just need to wake the I/O thread. */
Rusty Russella1618832008-07-29 09:58:35 -05001719static void handle_virtblk_output(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell17cbca22007-10-22 11:24:22 +10001720{
1721 struct vblk_info *vblk = vq->dev->priv;
1722 char c = 0;
1723
1724 /* Wake up I/O thread and tell it to go to work! */
1725 if (write(vblk->workpipe[1], &c, 1) != 1)
1726 /* Presumably it indicated why it died. */
1727 exit(1);
1728}
1729
Rusty Russelle1e72962007-10-25 15:02:50 +10001730/*L:198 This actually sets up a virtual block device. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001731static void setup_block_file(const char *filename)
1732{
1733 int p[2];
1734 struct device *dev;
1735 struct vblk_info *vblk;
1736 void *stack;
Rusty Russella586d4f2008-02-04 23:49:56 -05001737 struct virtio_blk_config conf;
Rusty Russell17cbca22007-10-22 11:24:22 +10001738
1739 /* This is the pipe the I/O thread will use to tell us I/O is done. */
1740 pipe(p);
1741
1742 /* The device responds to return from I/O thread. */
1743 dev = new_device("block", VIRTIO_ID_BLOCK, p[0], handle_io_finish);
1744
Rusty Russelle1e72962007-10-25 15:02:50 +10001745 /* The device has one virtqueue, where the Guest places requests. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001746 add_virtqueue(dev, VIRTQUEUE_NUM, handle_virtblk_output);
1747
1748 /* Allocate the room for our own bookkeeping */
1749 vblk = dev->priv = malloc(sizeof(*vblk));
1750
1751 /* First we open the file and store the length. */
1752 vblk->fd = open_or_die(filename, O_RDWR|O_LARGEFILE);
1753 vblk->len = lseek64(vblk->fd, 0, SEEK_END);
1754
Rusty Russella586d4f2008-02-04 23:49:56 -05001755 /* We support barriers. */
1756 add_feature(dev, VIRTIO_BLK_F_BARRIER);
1757
Rusty Russell17cbca22007-10-22 11:24:22 +10001758 /* Tell Guest how many sectors this device has. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001759 conf.capacity = cpu_to_le64(vblk->len / 512);
Rusty Russell17cbca22007-10-22 11:24:22 +10001760
1761 /* Tell Guest not to put in too many descriptors at once: two are used
1762 * for the in and out elements. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001763 add_feature(dev, VIRTIO_BLK_F_SEG_MAX);
1764 conf.seg_max = cpu_to_le32(VIRTQUEUE_NUM - 2);
1765
1766 set_config(dev, sizeof(conf), &conf);
Rusty Russell17cbca22007-10-22 11:24:22 +10001767
1768 /* The I/O thread writes to this end of the pipe when done. */
1769 vblk->done_fd = p[1];
1770
Rusty Russelle1e72962007-10-25 15:02:50 +10001771 /* This is the second pipe, which is how we tell the I/O thread about
1772 * more work. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001773 pipe(vblk->workpipe);
1774
Rusty Russella6bd8e12008-03-28 11:05:53 -05001775 /* Create stack for thread and run it. Since stack grows upwards, we
1776 * point the stack pointer to the end of this region. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001777 stack = malloc(32768);
Balaji Raoec04b132007-12-28 14:26:24 +05301778 /* SIGCHLD - We dont "wait" for our cloned thread, so prevent it from
1779 * becoming a zombie. */
Rusty Russella6bd8e12008-03-28 11:05:53 -05001780 if (clone(io_thread, stack + 32768, CLONE_VM | SIGCHLD, dev) == -1)
Rusty Russell17cbca22007-10-22 11:24:22 +10001781 err(1, "Creating clone");
1782
1783 /* We don't need to keep the I/O thread's end of the pipes open. */
1784 close(vblk->done_fd);
1785 close(vblk->workpipe[0]);
1786
1787 verbose("device %u: virtblock %llu sectors\n",
Rusty Russella586d4f2008-02-04 23:49:56 -05001788 devices.device_num, le64_to_cpu(conf.capacity));
Rusty Russell17cbca22007-10-22 11:24:22 +10001789}
Rusty Russell28fd6d72008-07-29 09:58:33 -05001790
1791/* Our random number generator device reads from /dev/random into the Guest's
1792 * input buffers. The usual case is that the Guest doesn't want random numbers
1793 * and so has no buffers although /dev/random is still readable, whereas
1794 * console is the reverse.
1795 *
1796 * The same logic applies, however. */
1797static bool handle_rng_input(int fd, struct device *dev)
1798{
1799 int len;
1800 unsigned int head, in_num, out_num, totlen = 0;
1801 struct iovec iov[dev->vq->vring.num];
1802
1803 /* First we need a buffer from the Guests's virtqueue. */
1804 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
1805
1806 /* If they're not ready for input, stop listening to this file
1807 * descriptor. We'll start again once they add an input buffer. */
1808 if (head == dev->vq->vring.num)
1809 return false;
1810
1811 if (out_num)
1812 errx(1, "Output buffers in rng?");
1813
1814 /* This is why we convert to iovecs: the readv() call uses them, and so
1815 * it reads straight into the Guest's buffer. We loop to make sure we
1816 * fill it. */
1817 while (!iov_empty(iov, in_num)) {
1818 len = readv(dev->fd, iov, in_num);
1819 if (len <= 0)
1820 err(1, "Read from /dev/random gave %i", len);
1821 iov_consume(iov, in_num, len);
1822 totlen += len;
1823 }
1824
1825 /* Tell the Guest about the new input. */
1826 add_used_and_trigger(fd, dev->vq, head, totlen);
1827
1828 /* Everything went OK! */
1829 return true;
1830}
1831
1832/* And this creates a "hardware" random number device for the Guest. */
1833static void setup_rng(void)
1834{
1835 struct device *dev;
1836 int fd;
1837
1838 fd = open_or_die("/dev/random", O_RDONLY);
1839
1840 /* The device responds to return from I/O thread. */
1841 dev = new_device("rng", VIRTIO_ID_RNG, fd, handle_rng_input);
1842
1843 /* The device has one virtqueue, where the Guest places inbufs. */
1844 add_virtqueue(dev, VIRTQUEUE_NUM, enable_fd);
1845
1846 verbose("device %u: rng\n", devices.device_num++);
1847}
Rusty Russella6bd8e12008-03-28 11:05:53 -05001848/* That's the end of device setup. */
Balaji Raoec04b132007-12-28 14:26:24 +05301849
Rusty Russella6bd8e12008-03-28 11:05:53 -05001850/*L:230 Reboot is pretty easy: clean up and exec() the Launcher afresh. */
Balaji Raoec04b132007-12-28 14:26:24 +05301851static void __attribute__((noreturn)) restart_guest(void)
1852{
1853 unsigned int i;
1854
Rusty Russell8c798732008-07-29 09:58:38 -05001855 /* Since we don't track all open fds, we simply close everything beyond
1856 * stderr. */
Balaji Raoec04b132007-12-28 14:26:24 +05301857 for (i = 3; i < FD_SETSIZE; i++)
1858 close(i);
Rusty Russell8c798732008-07-29 09:58:38 -05001859
1860 /* The exec automatically gets rid of the I/O and Waker threads. */
Balaji Raoec04b132007-12-28 14:26:24 +05301861 execv(main_args[0], main_args);
1862 err(1, "Could not exec %s", main_args[0]);
1863}
Rusty Russell8ca47e02007-07-19 01:49:29 -07001864
Rusty Russella6bd8e12008-03-28 11:05:53 -05001865/*L:220 Finally we reach the core of the Launcher which runs the Guest, serves
Rusty Russelldde79782007-07-26 10:41:03 -07001866 * its input and output, and finally, lays it to rest. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001867static void __attribute__((noreturn)) run_guest(int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001868{
1869 for (;;) {
Jes Sorensen511801d2007-10-22 11:03:31 +10001870 unsigned long args[] = { LHREQ_BREAK, 0 };
Rusty Russell17cbca22007-10-22 11:24:22 +10001871 unsigned long notify_addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001872 int readval;
1873
1874 /* We read from the /dev/lguest device to run the Guest. */
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001875 readval = pread(lguest_fd, &notify_addr,
1876 sizeof(notify_addr), cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001877
Rusty Russell17cbca22007-10-22 11:24:22 +10001878 /* One unsigned long means the Guest did HCALL_NOTIFY */
1879 if (readval == sizeof(notify_addr)) {
1880 verbose("Notify on address %#lx\n", notify_addr);
1881 handle_output(lguest_fd, notify_addr);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001882 continue;
Rusty Russelldde79782007-07-26 10:41:03 -07001883 /* ENOENT means the Guest died. Reading tells us why. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001884 } else if (errno == ENOENT) {
1885 char reason[1024] = { 0 };
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001886 pread(lguest_fd, reason, sizeof(reason)-1, cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001887 errx(1, "%s", reason);
Balaji Raoec04b132007-12-28 14:26:24 +05301888 /* ERESTART means that we need to reboot the guest */
1889 } else if (errno == ERESTART) {
1890 restart_guest();
Rusty Russella1618832008-07-29 09:58:35 -05001891 /* EAGAIN means a signal (timeout).
Rusty Russelldde79782007-07-26 10:41:03 -07001892 * Anything else means a bug or incompatible change. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001893 } else if (errno != EAGAIN)
1894 err(1, "Running guest failed");
Rusty Russelldde79782007-07-26 10:41:03 -07001895
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001896 /* Only service input on thread for CPU 0. */
1897 if (cpu_id != 0)
1898 continue;
1899
Rusty Russelle1e72962007-10-25 15:02:50 +10001900 /* Service input, then unset the BREAK to release the Waker. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001901 handle_input(lguest_fd);
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001902 if (pwrite(lguest_fd, args, sizeof(args), cpu_id) < 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001903 err(1, "Resetting break");
1904 }
1905}
Rusty Russella6bd8e12008-03-28 11:05:53 -05001906/*L:240
Rusty Russelle1e72962007-10-25 15:02:50 +10001907 * This is the end of the Launcher. The good news: we are over halfway
1908 * through! The bad news: the most fiendish part of the code still lies ahead
1909 * of us.
Rusty Russelldde79782007-07-26 10:41:03 -07001910 *
Rusty Russelle1e72962007-10-25 15:02:50 +10001911 * Are you ready? Take a deep breath and join me in the core of the Host, in
1912 * "make Host".
1913 :*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001914
1915static struct option opts[] = {
1916 { "verbose", 0, NULL, 'v' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001917 { "tunnet", 1, NULL, 't' },
1918 { "block", 1, NULL, 'b' },
Rusty Russell28fd6d72008-07-29 09:58:33 -05001919 { "rng", 0, NULL, 'r' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001920 { "initrd", 1, NULL, 'i' },
1921 { NULL },
1922};
1923static void usage(void)
1924{
1925 errx(1, "Usage: lguest [--verbose] "
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001926 "[--tunnet=(<ipaddr>:<macaddr>|bridge:<bridgename>:<macaddr>)\n"
Rusty Russell8ca47e02007-07-19 01:49:29 -07001927 "|--block=<filename>|--initrd=<filename>]...\n"
1928 "<mem-in-mb> vmlinux [args...]");
1929}
1930
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001931/*L:105 The main routine is where the real work begins: */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001932int main(int argc, char *argv[])
1933{
Rusty Russell47436aa2007-10-22 11:03:36 +10001934 /* Memory, top-level pagetable, code startpoint and size of the
1935 * (optional) initrd. */
1936 unsigned long mem = 0, pgdir, start, initrd_size = 0;
Rusty Russelle1e72962007-10-25 15:02:50 +10001937 /* Two temporaries and the /dev/lguest file descriptor. */
Rusty Russell6570c45992007-07-23 18:43:56 -07001938 int i, c, lguest_fd;
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001939 /* The boot information for the Guest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10001940 struct boot_params *boot;
Rusty Russelldde79782007-07-26 10:41:03 -07001941 /* If they specify an initrd file to load. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001942 const char *initrd_name = NULL;
1943
Balaji Raoec04b132007-12-28 14:26:24 +05301944 /* Save the args: we "reboot" by execing ourselves again. */
1945 main_args = argv;
1946 /* We don't "wait" for the children, so prevent them from becoming
1947 * zombies. */
1948 signal(SIGCHLD, SIG_IGN);
1949
Rusty Russelldde79782007-07-26 10:41:03 -07001950 /* First we initialize the device list. Since console and network
1951 * device receive input from a file descriptor, we keep an fdset
1952 * (infds) and the maximum fd number (max_infd) with the head of the
Rusty Russella586d4f2008-02-04 23:49:56 -05001953 * list. We also keep a pointer to the last device. Finally, we keep
Rusty Russella6bd8e12008-03-28 11:05:53 -05001954 * the next interrupt number to use for devices (1: remember that 0 is
1955 * used by the timer). */
Rusty Russell17cbca22007-10-22 11:24:22 +10001956 FD_ZERO(&devices.infds);
1957 devices.max_infd = -1;
Rusty Russella586d4f2008-02-04 23:49:56 -05001958 devices.lastdev = NULL;
Rusty Russell17cbca22007-10-22 11:24:22 +10001959 devices.next_irq = 1;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001960
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001961 cpu_id = 0;
Rusty Russelldde79782007-07-26 10:41:03 -07001962 /* We need to know how much memory so we can set up the device
1963 * descriptor and memory pages for the devices as we parse the command
1964 * line. So we quickly look through the arguments to find the amount
1965 * of memory now. */
Rusty Russell6570c45992007-07-23 18:43:56 -07001966 for (i = 1; i < argc; i++) {
1967 if (argv[i][0] != '-') {
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001968 mem = atoi(argv[i]) * 1024 * 1024;
1969 /* We start by mapping anonymous pages over all of
1970 * guest-physical memory range. This fills it with 0,
1971 * and ensures that the Guest won't be killed when it
1972 * tries to access it. */
1973 guest_base = map_zeroed_pages(mem / getpagesize()
1974 + DEVICE_PAGES);
1975 guest_limit = mem;
1976 guest_max = mem + DEVICE_PAGES*getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10001977 devices.descpage = get_pages(1);
Rusty Russell6570c45992007-07-23 18:43:56 -07001978 break;
1979 }
1980 }
Rusty Russelldde79782007-07-26 10:41:03 -07001981
1982 /* The options are fairly straight-forward */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001983 while ((c = getopt_long(argc, argv, "v", opts, NULL)) != EOF) {
1984 switch (c) {
1985 case 'v':
1986 verbose = true;
1987 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001988 case 't':
Rusty Russell17cbca22007-10-22 11:24:22 +10001989 setup_tun_net(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001990 break;
1991 case 'b':
Rusty Russell17cbca22007-10-22 11:24:22 +10001992 setup_block_file(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001993 break;
Rusty Russell28fd6d72008-07-29 09:58:33 -05001994 case 'r':
1995 setup_rng();
1996 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001997 case 'i':
1998 initrd_name = optarg;
1999 break;
2000 default:
2001 warnx("Unknown argument %s", argv[optind]);
2002 usage();
2003 }
2004 }
Rusty Russelldde79782007-07-26 10:41:03 -07002005 /* After the other arguments we expect memory and kernel image name,
2006 * followed by command line arguments for the kernel. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002007 if (optind + 2 > argc)
2008 usage();
2009
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002010 verbose("Guest base is at %p\n", guest_base);
2011
Rusty Russelldde79782007-07-26 10:41:03 -07002012 /* We always have a console device */
Rusty Russell17cbca22007-10-22 11:24:22 +10002013 setup_console();
Rusty Russell8ca47e02007-07-19 01:49:29 -07002014
Rusty Russella1618832008-07-29 09:58:35 -05002015 /* We can timeout waiting for Guest network transmit. */
2016 setup_timeout();
2017
Rusty Russell8ca47e02007-07-19 01:49:29 -07002018 /* Now we load the kernel */
Rusty Russell47436aa2007-10-22 11:03:36 +10002019 start = load_kernel(open_or_die(argv[optind+1], O_RDONLY));
Rusty Russell8ca47e02007-07-19 01:49:29 -07002020
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002021 /* Boot information is stashed at physical address 0 */
2022 boot = from_guest_phys(0);
2023
Rusty Russelldde79782007-07-26 10:41:03 -07002024 /* Map the initrd image if requested (at top of physical memory) */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002025 if (initrd_name) {
2026 initrd_size = load_initrd(initrd_name, mem);
Rusty Russelldde79782007-07-26 10:41:03 -07002027 /* These are the location in the Linux boot header where the
2028 * start and size of the initrd are expected to be found. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002029 boot->hdr.ramdisk_image = mem - initrd_size;
2030 boot->hdr.ramdisk_size = initrd_size;
Rusty Russelldde79782007-07-26 10:41:03 -07002031 /* The bootloader type 0xFF means "unknown"; that's OK. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002032 boot->hdr.type_of_loader = 0xFF;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002033 }
2034
Rusty Russelldde79782007-07-26 10:41:03 -07002035 /* Set up the initial linear pagetables, starting below the initrd. */
Rusty Russell47436aa2007-10-22 11:03:36 +10002036 pgdir = setup_pagetables(mem, initrd_size);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002037
Rusty Russelldde79782007-07-26 10:41:03 -07002038 /* The Linux boot header contains an "E820" memory map: ours is a
2039 * simple, single region. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002040 boot->e820_entries = 1;
2041 boot->e820_map[0] = ((struct e820entry) { 0, mem, E820_RAM });
Rusty Russelldde79782007-07-26 10:41:03 -07002042 /* The boot header contains a command line pointer: we put the command
Rusty Russell43d33b22007-10-22 11:29:57 +10002043 * line after the boot header. */
2044 boot->hdr.cmd_line_ptr = to_guest_phys(boot + 1);
Rusty Russelle1e72962007-10-25 15:02:50 +10002045 /* We use a simple helper to copy the arguments separated by spaces. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002046 concat((char *)(boot + 1), argv+optind+2);
Rusty Russelldde79782007-07-26 10:41:03 -07002047
Rusty Russell814a0e52007-10-22 11:29:44 +10002048 /* Boot protocol version: 2.07 supports the fields for lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002049 boot->hdr.version = 0x207;
Rusty Russell814a0e52007-10-22 11:29:44 +10002050
2051 /* The hardware_subarch value of "1" tells the Guest it's an lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002052 boot->hdr.hardware_subarch = 1;
Rusty Russell814a0e52007-10-22 11:29:44 +10002053
Rusty Russell43d33b22007-10-22 11:29:57 +10002054 /* Tell the entry path not to try to reload segment registers. */
2055 boot->hdr.loadflags |= KEEP_SEGMENTS;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002056
Rusty Russelldde79782007-07-26 10:41:03 -07002057 /* We tell the kernel to initialize the Guest: this returns the open
2058 * /dev/lguest file descriptor. */
Rusty Russell47436aa2007-10-22 11:03:36 +10002059 lguest_fd = tell_kernel(pgdir, start);
Rusty Russelldde79782007-07-26 10:41:03 -07002060
Rusty Russell8c798732008-07-29 09:58:38 -05002061 /* We clone off a thread, which wakes the Launcher whenever one of the
2062 * input file descriptors needs attention. We call this the Waker, and
2063 * we'll cover it in a moment. */
2064 setup_waker(lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002065
Rusty Russelldde79782007-07-26 10:41:03 -07002066 /* Finally, run the Guest. This doesn't return. */
Rusty Russell17cbca22007-10-22 11:24:22 +10002067 run_guest(lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002068}
Rusty Russellf56a3842007-07-26 10:41:05 -07002069/*:*/
2070
2071/*M:999
2072 * Mastery is done: you now know everything I do.
2073 *
2074 * But surely you have seen code, features and bugs in your wanderings which
2075 * you now yearn to attack? That is the real game, and I look forward to you
2076 * patching and forking lguest into the Your-Name-Here-visor.
2077 *
2078 * Farewell, and good coding!
2079 * Rusty Russell.
2080 */