blob: 018472cee1515cee293267c0c5e00d0c3108d80a [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 Russell42b36cc2007-11-12 13:39:18 +110069/* This will occupy 2 pages: it must be a power of 2. */
70#define VIRTQUEUE_NUM 128
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
79/* The pipe to send commands to the waker process */
Rusty Russell8ca47e02007-07-19 01:49:29 -070080static int waker_fd;
Rusty Russell3c6b5bf2007-10-22 11:03:26 +100081/* The pointer to the start of guest memory. */
82static void *guest_base;
83/* The maximum guest physical address allowed, and maximum possible. */
84static unsigned long guest_limit, guest_max;
Rusty Russella1618832008-07-29 09:58:35 -050085/* The pipe for signal hander to write to. */
86static int timeoutpipe[2];
Rusty Russell8ca47e02007-07-19 01:49:29 -070087
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -020088/* a per-cpu variable indicating whose vcpu is currently running */
89static unsigned int __thread cpu_id;
90
Rusty Russelldde79782007-07-26 10:41:03 -070091/* This is our list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -070092struct device_list
93{
Rusty Russelldde79782007-07-26 10:41:03 -070094 /* Summary information about the devices in our list: ready to pass to
95 * select() to ask which need servicing.*/
Rusty Russell8ca47e02007-07-19 01:49:29 -070096 fd_set infds;
97 int max_infd;
98
Rusty Russell17cbca22007-10-22 11:24:22 +100099 /* Counter to assign interrupt numbers. */
100 unsigned int next_irq;
101
102 /* Counter to print out convenient device numbers. */
103 unsigned int device_num;
104
Rusty Russelldde79782007-07-26 10:41:03 -0700105 /* The descriptor page for the devices. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000106 u8 *descpage;
107
Rusty Russelldde79782007-07-26 10:41:03 -0700108 /* A single linked list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700109 struct device *dev;
Rusty Russella586d4f2008-02-04 23:49:56 -0500110 /* And a pointer to the last device for easy append and also for
111 * configuration appending. */
112 struct device *lastdev;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700113};
114
Rusty Russell17cbca22007-10-22 11:24:22 +1000115/* The list of Guest devices, based on command line arguments. */
116static struct device_list devices;
117
Rusty Russelldde79782007-07-26 10:41:03 -0700118/* The device structure describes a single device. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700119struct device
120{
Rusty Russelldde79782007-07-26 10:41:03 -0700121 /* The linked-list pointer. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700122 struct device *next;
Rusty Russell17cbca22007-10-22 11:24:22 +1000123
124 /* The this device's descriptor, as mapped into the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700125 struct lguest_device_desc *desc;
Rusty Russell17cbca22007-10-22 11:24:22 +1000126
127 /* The name of this device, for --verbose. */
128 const char *name;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700129
Rusty Russelldde79782007-07-26 10:41:03 -0700130 /* If handle_input is set, it wants to be called when this file
131 * descriptor is ready. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700132 int fd;
133 bool (*handle_input)(int fd, struct device *me);
134
Rusty Russell17cbca22007-10-22 11:24:22 +1000135 /* Any queues attached to this device */
136 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700137
Rusty Russella007a752008-05-02 21:50:53 -0500138 /* Handle status being finalized (ie. feature bits stable). */
139 void (*ready)(struct device *me);
140
Rusty Russell8ca47e02007-07-19 01:49:29 -0700141 /* Device-specific data. */
142 void *priv;
143};
144
Rusty Russell17cbca22007-10-22 11:24:22 +1000145/* The virtqueue structure describes a queue attached to a device. */
146struct virtqueue
147{
148 struct virtqueue *next;
149
150 /* Which device owns me. */
151 struct device *dev;
152
153 /* The configuration for this queue. */
154 struct lguest_vqconfig config;
155
156 /* The actual ring of buffers. */
157 struct vring vring;
158
159 /* Last available index we saw. */
160 u16 last_avail_idx;
161
Rusty Russella1618832008-07-29 09:58:35 -0500162 /* The routine to call when the Guest pings us, or timeout. */
163 void (*handle_output)(int fd, struct virtqueue *me, bool timeout);
Rusty Russell20887612008-05-30 15:09:46 -0500164
165 /* Outstanding buffers */
166 unsigned int inflight;
Rusty Russella1618832008-07-29 09:58:35 -0500167
168 /* Is this blocked awaiting a timer? */
169 bool blocked;
Rusty Russell17cbca22007-10-22 11:24:22 +1000170};
171
Balaji Raoec04b132007-12-28 14:26:24 +0530172/* Remember the arguments to the program so we can "reboot" */
173static char **main_args;
174
Rusty Russell17cbca22007-10-22 11:24:22 +1000175/* Since guest is UP and we don't run at the same time, we don't need barriers.
176 * But I include them in the code in case others copy it. */
177#define wmb()
178
179/* Convert an iovec element to the given type.
180 *
181 * This is a fairly ugly trick: we need to know the size of the type and
182 * alignment requirement to check the pointer is kosher. It's also nice to
183 * have the name of the type in case we report failure.
184 *
185 * Typing those three things all the time is cumbersome and error prone, so we
186 * have a macro which sets them all up and passes to the real function. */
187#define convert(iov, type) \
188 ((type *)_convert((iov), sizeof(type), __alignof__(type), #type))
189
190static void *_convert(struct iovec *iov, size_t size, size_t align,
191 const char *name)
192{
193 if (iov->iov_len != size)
194 errx(1, "Bad iovec size %zu for %s", iov->iov_len, name);
195 if ((unsigned long)iov->iov_base % align != 0)
196 errx(1, "Bad alignment %p for %s", iov->iov_base, name);
197 return iov->iov_base;
198}
199
Rusty Russellb5111792008-07-29 09:58:34 -0500200/* Wrapper for the last available index. Makes it easier to change. */
201#define lg_last_avail(vq) ((vq)->last_avail_idx)
202
Rusty Russell17cbca22007-10-22 11:24:22 +1000203/* The virtio configuration space is defined to be little-endian. x86 is
204 * little-endian too, but it's nice to be explicit so we have these helpers. */
205#define cpu_to_le16(v16) (v16)
206#define cpu_to_le32(v32) (v32)
207#define cpu_to_le64(v64) (v64)
208#define le16_to_cpu(v16) (v16)
209#define le32_to_cpu(v32) (v32)
Rusty Russella586d4f2008-02-04 23:49:56 -0500210#define le64_to_cpu(v64) (v64)
Rusty Russell17cbca22007-10-22 11:24:22 +1000211
Rusty Russell28fd6d72008-07-29 09:58:33 -0500212/* Is this iovec empty? */
213static bool iov_empty(const struct iovec iov[], unsigned int num_iov)
214{
215 unsigned int i;
216
217 for (i = 0; i < num_iov; i++)
218 if (iov[i].iov_len)
219 return false;
220 return true;
221}
222
223/* Take len bytes from the front of this iovec. */
224static void iov_consume(struct iovec iov[], unsigned num_iov, unsigned len)
225{
226 unsigned int i;
227
228 for (i = 0; i < num_iov; i++) {
229 unsigned int used;
230
231 used = iov[i].iov_len < len ? iov[i].iov_len : len;
232 iov[i].iov_base += used;
233 iov[i].iov_len -= used;
234 len -= used;
235 }
236 assert(len == 0);
237}
238
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500239/* The device virtqueue descriptors are followed by feature bitmasks. */
240static u8 *get_feature_bits(struct device *dev)
241{
242 return (u8 *)(dev->desc + 1)
243 + dev->desc->num_vq * sizeof(struct lguest_vqconfig);
244}
245
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000246/*L:100 The Launcher code itself takes us out into userspace, that scary place
247 * where pointers run wild and free! Unfortunately, like most userspace
248 * programs, it's quite boring (which is why everyone likes to hack on the
249 * kernel!). Perhaps if you make up an Lguest Drinking Game at this point, it
250 * will get you through this section. Or, maybe not.
251 *
252 * The Launcher sets up a big chunk of memory to be the Guest's "physical"
253 * memory and stores it in "guest_base". In other words, Guest physical ==
254 * Launcher virtual with an offset.
255 *
256 * This can be tough to get your head around, but usually it just means that we
257 * use these trivial conversion functions when the Guest gives us it's
258 * "physical" addresses: */
259static void *from_guest_phys(unsigned long addr)
260{
261 return guest_base + addr;
262}
263
264static unsigned long to_guest_phys(const void *addr)
265{
266 return (addr - guest_base);
267}
268
Rusty Russelldde79782007-07-26 10:41:03 -0700269/*L:130
270 * Loading the Kernel.
271 *
272 * We start with couple of simple helper routines. open_or_die() avoids
273 * error-checking code cluttering the callers: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700274static int open_or_die(const char *name, int flags)
275{
276 int fd = open(name, flags);
277 if (fd < 0)
278 err(1, "Failed to open %s", name);
279 return fd;
280}
281
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000282/* map_zeroed_pages() takes a number of pages. */
283static void *map_zeroed_pages(unsigned int num)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700284{
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000285 int fd = open_or_die("/dev/zero", O_RDONLY);
286 void *addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700287
Rusty Russelldde79782007-07-26 10:41:03 -0700288 /* We use a private mapping (ie. if we write to the page, it will be
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000289 * copied). */
290 addr = mmap(NULL, getpagesize() * num,
291 PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, fd, 0);
292 if (addr == MAP_FAILED)
293 err(1, "Mmaping %u pages of /dev/zero", num);
Mark McLoughlin34bdaab2008-06-13 14:04:58 +0100294 close(fd);
Rusty Russelldde79782007-07-26 10:41:03 -0700295
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000296 return addr;
297}
298
299/* Get some more pages for a device. */
300static void *get_pages(unsigned int num)
301{
302 void *addr = from_guest_phys(guest_limit);
303
304 guest_limit += num * getpagesize();
305 if (guest_limit > guest_max)
306 errx(1, "Not enough memory for devices");
307 return addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700308}
309
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700310/* This routine is used to load the kernel or initrd. It tries mmap, but if
311 * that fails (Plan 9's kernel file isn't nicely aligned on page boundaries),
312 * it falls back to reading the memory in. */
313static void map_at(int fd, void *addr, unsigned long offset, unsigned long len)
314{
315 ssize_t r;
316
317 /* We map writable even though for some segments are marked read-only.
318 * The kernel really wants to be writable: it patches its own
319 * instructions.
320 *
321 * MAP_PRIVATE means that the page won't be copied until a write is
322 * done to it. This allows us to share untouched memory between
323 * Guests. */
324 if (mmap(addr, len, PROT_READ|PROT_WRITE|PROT_EXEC,
325 MAP_FIXED|MAP_PRIVATE, fd, offset) != MAP_FAILED)
326 return;
327
328 /* pread does a seek and a read in one shot: saves a few lines. */
329 r = pread(fd, addr, len, offset);
330 if (r != len)
331 err(1, "Reading offset %lu len %lu gave %zi", offset, len, r);
332}
333
Rusty Russelldde79782007-07-26 10:41:03 -0700334/* This routine takes an open vmlinux image, which is in ELF, and maps it into
335 * the Guest memory. ELF = Embedded Linking Format, which is the format used
336 * by all modern binaries on Linux including the kernel.
337 *
338 * The ELF headers give *two* addresses: a physical address, and a virtual
Rusty Russell47436aa2007-10-22 11:03:36 +1000339 * address. We use the physical address; the Guest will map itself to the
340 * virtual address.
Rusty Russelldde79782007-07-26 10:41:03 -0700341 *
342 * We return the starting address. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000343static unsigned long map_elf(int elf_fd, const Elf32_Ehdr *ehdr)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700344{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700345 Elf32_Phdr phdr[ehdr->e_phnum];
346 unsigned int i;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700347
Rusty Russelldde79782007-07-26 10:41:03 -0700348 /* Sanity checks on the main ELF header: an x86 executable with a
349 * reasonable number of correctly-sized program headers. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700350 if (ehdr->e_type != ET_EXEC
351 || ehdr->e_machine != EM_386
352 || ehdr->e_phentsize != sizeof(Elf32_Phdr)
353 || ehdr->e_phnum < 1 || ehdr->e_phnum > 65536U/sizeof(Elf32_Phdr))
354 errx(1, "Malformed elf header");
355
Rusty Russelldde79782007-07-26 10:41:03 -0700356 /* An ELF executable contains an ELF header and a number of "program"
357 * headers which indicate which parts ("segments") of the program to
358 * load where. */
359
360 /* We read in all the program headers at once: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700361 if (lseek(elf_fd, ehdr->e_phoff, SEEK_SET) < 0)
362 err(1, "Seeking to program headers");
363 if (read(elf_fd, phdr, sizeof(phdr)) != sizeof(phdr))
364 err(1, "Reading program headers");
365
Rusty Russelldde79782007-07-26 10:41:03 -0700366 /* Try all the headers: there are usually only three. A read-only one,
Rusty Russella6bd8e12008-03-28 11:05:53 -0500367 * a read-write one, and a "note" section which we don't load. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700368 for (i = 0; i < ehdr->e_phnum; i++) {
Rusty Russelldde79782007-07-26 10:41:03 -0700369 /* If this isn't a loadable segment, we ignore it */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700370 if (phdr[i].p_type != PT_LOAD)
371 continue;
372
373 verbose("Section %i: size %i addr %p\n",
374 i, phdr[i].p_memsz, (void *)phdr[i].p_paddr);
375
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700376 /* We map this section of the file at its physical address. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000377 map_at(elf_fd, from_guest_phys(phdr[i].p_paddr),
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700378 phdr[i].p_offset, phdr[i].p_filesz);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700379 }
380
Rusty Russell814a0e52007-10-22 11:29:44 +1000381 /* The entry point is given in the ELF header. */
382 return ehdr->e_entry;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700383}
384
Rusty Russelldde79782007-07-26 10:41:03 -0700385/*L:150 A bzImage, unlike an ELF file, is not meant to be loaded. You're
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000386 * supposed to jump into it and it will unpack itself. We used to have to
387 * perform some hairy magic because the unpacking code scared me.
Rusty Russelldde79782007-07-26 10:41:03 -0700388 *
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000389 * Fortunately, Jeremy Fitzhardinge convinced me it wasn't that hard and wrote
390 * a small patch to jump over the tricky bits in the Guest, so now we just read
391 * the funky header so we know where in the file to load, and away we go! */
Rusty Russell47436aa2007-10-22 11:03:36 +1000392static unsigned long load_bzimage(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700393{
Rusty Russell43d33b22007-10-22 11:29:57 +1000394 struct boot_params boot;
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000395 int r;
396 /* Modern bzImages get loaded at 1M. */
397 void *p = from_guest_phys(0x100000);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700398
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000399 /* Go back to the start of the file and read the header. It should be
400 * a Linux boot header (see Documentation/i386/boot.txt) */
401 lseek(fd, 0, SEEK_SET);
Rusty Russell43d33b22007-10-22 11:29:57 +1000402 read(fd, &boot, sizeof(boot));
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000403
Rusty Russell43d33b22007-10-22 11:29:57 +1000404 /* Inside the setup_hdr, we expect the magic "HdrS" */
405 if (memcmp(&boot.hdr.header, "HdrS", 4) != 0)
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000406 errx(1, "This doesn't look like a bzImage to me");
407
Rusty Russell43d33b22007-10-22 11:29:57 +1000408 /* Skip over the extra sectors of the header. */
409 lseek(fd, (boot.hdr.setup_sects+1) * 512, SEEK_SET);
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000410
411 /* Now read everything into memory. in nice big chunks. */
412 while ((r = read(fd, p, 65536)) > 0)
413 p += r;
414
Rusty Russell43d33b22007-10-22 11:29:57 +1000415 /* Finally, code32_start tells us where to enter the kernel. */
416 return boot.hdr.code32_start;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700417}
418
Rusty Russelldde79782007-07-26 10:41:03 -0700419/*L:140 Loading the kernel is easy when it's a "vmlinux", but most kernels
Rusty Russelle1e72962007-10-25 15:02:50 +1000420 * come wrapped up in the self-decompressing "bzImage" format. With a little
421 * work, we can load those, too. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000422static unsigned long load_kernel(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700423{
424 Elf32_Ehdr hdr;
425
Rusty Russelldde79782007-07-26 10:41:03 -0700426 /* Read in the first few bytes. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700427 if (read(fd, &hdr, sizeof(hdr)) != sizeof(hdr))
428 err(1, "Reading kernel");
429
Rusty Russelldde79782007-07-26 10:41:03 -0700430 /* If it's an ELF file, it starts with "\177ELF" */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700431 if (memcmp(hdr.e_ident, ELFMAG, SELFMAG) == 0)
Rusty Russell47436aa2007-10-22 11:03:36 +1000432 return map_elf(fd, &hdr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700433
Rusty Russella6bd8e12008-03-28 11:05:53 -0500434 /* Otherwise we assume it's a bzImage, and try to load it. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000435 return load_bzimage(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700436}
437
Rusty Russelldde79782007-07-26 10:41:03 -0700438/* This is a trivial little helper to align pages. Andi Kleen hated it because
439 * it calls getpagesize() twice: "it's dumb code."
440 *
441 * Kernel guys get really het up about optimization, even when it's not
442 * necessary. I leave this code as a reaction against that. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700443static inline unsigned long page_align(unsigned long addr)
444{
Rusty Russelldde79782007-07-26 10:41:03 -0700445 /* Add upwards and truncate downwards. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700446 return ((addr + getpagesize()-1) & ~(getpagesize()-1));
447}
448
Rusty Russelldde79782007-07-26 10:41:03 -0700449/*L:180 An "initial ram disk" is a disk image loaded into memory along with
450 * the kernel which the kernel can use to boot from without needing any
451 * drivers. Most distributions now use this as standard: the initrd contains
452 * the code to load the appropriate driver modules for the current machine.
453 *
454 * Importantly, James Morris works for RedHat, and Fedora uses initrds for its
455 * kernels. He sent me this (and tells me when I break it). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700456static unsigned long load_initrd(const char *name, unsigned long mem)
457{
458 int ifd;
459 struct stat st;
460 unsigned long len;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700461
462 ifd = open_or_die(name, O_RDONLY);
Rusty Russelldde79782007-07-26 10:41:03 -0700463 /* fstat() is needed to get the file size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700464 if (fstat(ifd, &st) < 0)
465 err(1, "fstat() on initrd '%s'", name);
466
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700467 /* We map the initrd at the top of memory, but mmap wants it to be
468 * page-aligned, so we round the size up for that. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700469 len = page_align(st.st_size);
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000470 map_at(ifd, from_guest_phys(mem - len), 0, st.st_size);
Rusty Russelldde79782007-07-26 10:41:03 -0700471 /* Once a file is mapped, you can close the file descriptor. It's a
472 * little odd, but quite useful. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700473 close(ifd);
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700474 verbose("mapped initrd %s size=%lu @ %p\n", name, len, (void*)mem-len);
Rusty Russelldde79782007-07-26 10:41:03 -0700475
476 /* We return the initrd size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700477 return len;
478}
479
Rusty Russella6bd8e12008-03-28 11:05:53 -0500480/* Once we know how much memory we have we can construct simple linear page
Rusty Russell47436aa2007-10-22 11:03:36 +1000481 * tables which set virtual == physical which will get the Guest far enough
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000482 * into the boot to create its own.
Rusty Russelldde79782007-07-26 10:41:03 -0700483 *
484 * We lay them out of the way, just below the initrd (which is why we need to
Rusty Russella6bd8e12008-03-28 11:05:53 -0500485 * know its size here). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700486static unsigned long setup_pagetables(unsigned long mem,
Rusty Russell47436aa2007-10-22 11:03:36 +1000487 unsigned long initrd_size)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700488{
Jes Sorensen511801d2007-10-22 11:03:31 +1000489 unsigned long *pgdir, *linear;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700490 unsigned int mapped_pages, i, linear_pages;
Jes Sorensen511801d2007-10-22 11:03:31 +1000491 unsigned int ptes_per_page = getpagesize()/sizeof(void *);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700492
Rusty Russell47436aa2007-10-22 11:03:36 +1000493 mapped_pages = mem/getpagesize();
Rusty Russell8ca47e02007-07-19 01:49:29 -0700494
Rusty Russelldde79782007-07-26 10:41:03 -0700495 /* Each PTE page can map ptes_per_page pages: how many do we need? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700496 linear_pages = (mapped_pages + ptes_per_page-1)/ptes_per_page;
497
Rusty Russelldde79782007-07-26 10:41:03 -0700498 /* We put the toplevel page directory page at the top of memory. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000499 pgdir = from_guest_phys(mem) - initrd_size - getpagesize();
Rusty Russelldde79782007-07-26 10:41:03 -0700500
501 /* Now we use the next linear_pages pages as pte pages */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700502 linear = (void *)pgdir - linear_pages*getpagesize();
503
Rusty Russelldde79782007-07-26 10:41:03 -0700504 /* Linear mapping is easy: put every page's address into the mapping in
505 * order. PAGE_PRESENT contains the flags Present, Writable and
506 * Executable. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700507 for (i = 0; i < mapped_pages; i++)
508 linear[i] = ((i * getpagesize()) | PAGE_PRESENT);
509
Rusty Russell47436aa2007-10-22 11:03:36 +1000510 /* The top level points to the linear page table pages above. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700511 for (i = 0; i < mapped_pages; i += ptes_per_page) {
Rusty Russell47436aa2007-10-22 11:03:36 +1000512 pgdir[i/ptes_per_page]
Jes Sorensen511801d2007-10-22 11:03:31 +1000513 = ((to_guest_phys(linear) + i*sizeof(void *))
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000514 | PAGE_PRESENT);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700515 }
516
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000517 verbose("Linear mapping of %u pages in %u pte pages at %#lx\n",
518 mapped_pages, linear_pages, to_guest_phys(linear));
Rusty Russell8ca47e02007-07-19 01:49:29 -0700519
Rusty Russelldde79782007-07-26 10:41:03 -0700520 /* We return the top level (guest-physical) address: the kernel needs
521 * to know where it is. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000522 return to_guest_phys(pgdir);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700523}
Rusty Russelle1e72962007-10-25 15:02:50 +1000524/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700525
Rusty Russelldde79782007-07-26 10:41:03 -0700526/* Simple routine to roll all the commandline arguments together with spaces
527 * between them. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700528static void concat(char *dst, char *args[])
529{
530 unsigned int i, len = 0;
531
532 for (i = 0; args[i]; i++) {
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100533 if (i) {
534 strcat(dst+len, " ");
535 len++;
536 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700537 strcpy(dst+len, args[i]);
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100538 len += strlen(args[i]);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700539 }
540 /* In case it's empty. */
541 dst[len] = '\0';
542}
543
Rusty Russelle1e72962007-10-25 15:02:50 +1000544/*L:185 This is where we actually tell the kernel to initialize the Guest. We
545 * saw the arguments it expects when we looked at initialize() in lguest_user.c:
546 * the base of Guest "physical" memory, the top physical page to allow, the
Rusty Russell47436aa2007-10-22 11:03:36 +1000547 * top level pagetable and the entry point for the Guest. */
548static int tell_kernel(unsigned long pgdir, unsigned long start)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700549{
Jes Sorensen511801d2007-10-22 11:03:31 +1000550 unsigned long args[] = { LHREQ_INITIALIZE,
551 (unsigned long)guest_base,
Rusty Russell47436aa2007-10-22 11:03:36 +1000552 guest_limit / getpagesize(), pgdir, start };
Rusty Russell8ca47e02007-07-19 01:49:29 -0700553 int fd;
554
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000555 verbose("Guest: %p - %p (%#lx)\n",
556 guest_base, guest_base + guest_limit, guest_limit);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700557 fd = open_or_die("/dev/lguest", O_RDWR);
558 if (write(fd, args, sizeof(args)) < 0)
559 err(1, "Writing to /dev/lguest");
Rusty Russelldde79782007-07-26 10:41:03 -0700560
561 /* We return the /dev/lguest file descriptor to control this Guest */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700562 return fd;
563}
Rusty Russelldde79782007-07-26 10:41:03 -0700564/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700565
Rusty Russell17cbca22007-10-22 11:24:22 +1000566static void add_device_fd(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700567{
Rusty Russell17cbca22007-10-22 11:24:22 +1000568 FD_SET(fd, &devices.infds);
569 if (fd > devices.max_infd)
570 devices.max_infd = fd;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700571}
572
Rusty Russelldde79782007-07-26 10:41:03 -0700573/*L:200
574 * The Waker.
575 *
Rusty Russelle1e72962007-10-25 15:02:50 +1000576 * With console, block and network devices, we can have lots of input which we
577 * need to process. We could try to tell the kernel what file descriptors to
578 * watch, but handing a file descriptor mask through to the kernel is fairly
579 * icky.
Rusty Russelldde79782007-07-26 10:41:03 -0700580 *
581 * Instead, we fork off a process which watches the file descriptors and writes
Rusty Russelle1e72962007-10-25 15:02:50 +1000582 * the LHREQ_BREAK command to the /dev/lguest file descriptor to tell the Host
583 * stop running the Guest. This causes the Launcher to return from the
Rusty Russelldde79782007-07-26 10:41:03 -0700584 * /dev/lguest read with -EAGAIN, where it will write to /dev/lguest to reset
585 * the LHREQ_BREAK and wake us up again.
586 *
587 * This, of course, is merely a different *kind* of icky.
588 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000589static void wake_parent(int pipefd, int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700590{
Rusty Russelldde79782007-07-26 10:41:03 -0700591 /* Add the pipe from the Launcher to the fdset in the device_list, so
592 * we watch it, too. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000593 add_device_fd(pipefd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700594
595 for (;;) {
Rusty Russell17cbca22007-10-22 11:24:22 +1000596 fd_set rfds = devices.infds;
Jes Sorensen511801d2007-10-22 11:03:31 +1000597 unsigned long args[] = { LHREQ_BREAK, 1 };
Rusty Russell8ca47e02007-07-19 01:49:29 -0700598
Rusty Russelldde79782007-07-26 10:41:03 -0700599 /* Wait until input is ready from one of the devices. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000600 select(devices.max_infd+1, &rfds, NULL, NULL, NULL);
Rusty Russelldde79782007-07-26 10:41:03 -0700601 /* Is it a message from the Launcher? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700602 if (FD_ISSET(pipefd, &rfds)) {
Rusty Russell56ae43d2007-10-22 11:24:23 +1000603 int fd;
Rusty Russelldde79782007-07-26 10:41:03 -0700604 /* If read() returns 0, it means the Launcher has
605 * exited. We silently follow. */
Rusty Russell56ae43d2007-10-22 11:24:23 +1000606 if (read(pipefd, &fd, sizeof(fd)) == 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700607 exit(0);
Rusty Russell56ae43d2007-10-22 11:24:23 +1000608 /* Otherwise it's telling us to change what file
Rusty Russelle1e72962007-10-25 15:02:50 +1000609 * descriptors we're to listen to. Positive means
610 * listen to a new one, negative means stop
611 * listening. */
Rusty Russell56ae43d2007-10-22 11:24:23 +1000612 if (fd >= 0)
613 FD_SET(fd, &devices.infds);
614 else
615 FD_CLR(-fd - 1, &devices.infds);
Rusty Russelldde79782007-07-26 10:41:03 -0700616 } else /* Send LHREQ_BREAK command. */
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -0200617 pwrite(lguest_fd, args, sizeof(args), cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700618 }
619}
620
Rusty Russelldde79782007-07-26 10:41:03 -0700621/* This routine just sets up a pipe to the Waker process. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000622static int setup_waker(int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700623{
624 int pipefd[2], child;
625
Rusty Russelle1e72962007-10-25 15:02:50 +1000626 /* We create a pipe to talk to the Waker, and also so it knows when the
Rusty Russelldde79782007-07-26 10:41:03 -0700627 * Launcher dies (and closes pipe). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700628 pipe(pipefd);
629 child = fork();
630 if (child == -1)
631 err(1, "forking");
632
633 if (child == 0) {
Rusty Russelle1e72962007-10-25 15:02:50 +1000634 /* We are the Waker: close the "writing" end of our copy of the
635 * pipe and start waiting for input. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700636 close(pipefd[1]);
Rusty Russell17cbca22007-10-22 11:24:22 +1000637 wake_parent(pipefd[0], lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700638 }
Rusty Russelldde79782007-07-26 10:41:03 -0700639 /* Close the reading end of our copy of the pipe. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700640 close(pipefd[0]);
641
Rusty Russelldde79782007-07-26 10:41:03 -0700642 /* Here is the fd used to talk to the waker. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700643 return pipefd[1];
644}
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 Russell8ca47e02007-07-19 01:49:29 -0700865 close(waker_fd);
Rusty Russelldde79782007-07-26 10:41:03 -0700866 /* Just in case waker is blocked in BREAK, send
867 * 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;
908 itm.it_value.tv_usec = 500;
909
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];
925
926 /* Keep getting output buffers from the Guest until we run out. */
927 while ((head = get_vq_desc(vq, iov, &out, &in)) != vq->vring.num) {
928 if (in)
929 errx(1, "Input buffers in output queue?");
Rusty Russelle1e72962007-10-25 15:02:50 +1000930 /* Check header, but otherwise ignore it (we told the Guest we
931 * supported no features, so it shouldn't have anything
932 * interesting). */
Rusty Russell17cbca22007-10-22 11:24:22 +1000933 (void)convert(&iov[0], struct virtio_net_hdr);
934 len = writev(vq->dev->fd, iov+1, out-1);
935 add_used_and_trigger(fd, vq, head, len);
Rusty Russella1618832008-07-29 09:58:35 -0500936 num++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000937 }
Rusty Russella1618832008-07-29 09:58:35 -0500938
939 /* Block further kicks and set up a timer if we saw anything. */
940 if (!timeout && num)
941 block_vq(vq);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700942}
943
Rusty Russell17cbca22007-10-22 11:24:22 +1000944/* This is where we handle a packet coming in from the tun device to our
945 * Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700946static bool handle_tun_input(int fd, struct device *dev)
947{
Rusty Russell17cbca22007-10-22 11:24:22 +1000948 unsigned int head, in_num, out_num;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700949 int len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000950 struct iovec iov[dev->vq->vring.num];
951 struct virtio_net_hdr *hdr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700952
Rusty Russell17cbca22007-10-22 11:24:22 +1000953 /* First we need a network buffer from the Guests's recv virtqueue. */
954 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
955 if (head == dev->vq->vring.num) {
Rusty Russelldde79782007-07-26 10:41:03 -0700956 /* Now, it's expected that if we try to send a packet too
Rusty Russell17cbca22007-10-22 11:24:22 +1000957 * early, the Guest won't be ready yet. Wait until the device
958 * status says it's ready. */
959 /* FIXME: Actually want DRIVER_ACTIVE here. */
960 if (dev->desc->status & VIRTIO_CONFIG_S_DRIVER_OK)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700961 warn("network: no dma buffer!");
Rusty Russell5dae7852008-07-29 09:58:35 -0500962
963 /* Now tell it we want to know if new things appear. */
964 dev->vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY;
965 wmb();
966
Rusty Russell56ae43d2007-10-22 11:24:23 +1000967 /* We'll turn this back on if input buffers are registered. */
968 return false;
Rusty Russell17cbca22007-10-22 11:24:22 +1000969 } else if (out_num)
970 errx(1, "Output buffers in network recv queue?");
971
972 /* First element is the header: we set it to 0 (no features). */
973 hdr = convert(&iov[0], struct virtio_net_hdr);
974 hdr->flags = 0;
975 hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700976
Rusty Russelldde79782007-07-26 10:41:03 -0700977 /* Read the packet from the device directly into the Guest's buffer. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000978 len = readv(dev->fd, iov+1, in_num-1);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700979 if (len <= 0)
980 err(1, "reading network");
Rusty Russelldde79782007-07-26 10:41:03 -0700981
Rusty Russell56ae43d2007-10-22 11:24:23 +1000982 /* Tell the Guest about the new packet. */
983 add_used_and_trigger(fd, dev->vq, head, sizeof(*hdr) + len);
Rusty Russell17cbca22007-10-22 11:24:22 +1000984
Rusty Russell8ca47e02007-07-19 01:49:29 -0700985 verbose("tun input packet len %i [%02x %02x] (%s)\n", len,
Rusty Russell17cbca22007-10-22 11:24:22 +1000986 ((u8 *)iov[1].iov_base)[0], ((u8 *)iov[1].iov_base)[1],
987 head != dev->vq->vring.num ? "sent" : "discarded");
988
Rusty Russelldde79782007-07-26 10:41:03 -0700989 /* All good. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700990 return true;
991}
992
Rusty Russelle1e72962007-10-25 15:02:50 +1000993/*L:215 This is the callback attached to the network and console input
994 * virtqueues: it ensures we try again, in case we stopped console or net
Rusty Russell56ae43d2007-10-22 11:24:23 +1000995 * delivery because Guest didn't have any buffers. */
Rusty Russella1618832008-07-29 09:58:35 -0500996static void enable_fd(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell56ae43d2007-10-22 11:24:23 +1000997{
998 add_device_fd(vq->dev->fd);
999 /* Tell waker to listen to it again */
1000 write(waker_fd, &vq->dev->fd, sizeof(vq->dev->fd));
1001}
1002
Rusty Russella1618832008-07-29 09:58:35 -05001003static void net_enable_fd(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell5dae7852008-07-29 09:58:35 -05001004{
1005 /* We don't need to know again when Guest refills receive buffer. */
1006 vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY;
Rusty Russella1618832008-07-29 09:58:35 -05001007 enable_fd(fd, vq, timeout);
Rusty Russell5dae7852008-07-29 09:58:35 -05001008}
1009
Rusty Russella007a752008-05-02 21:50:53 -05001010/* When the Guest tells us they updated the status field, we handle it. */
1011static void update_device_status(struct device *dev)
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001012{
1013 struct virtqueue *vq;
1014
Rusty Russella007a752008-05-02 21:50:53 -05001015 /* This is a reset. */
1016 if (dev->desc->status == 0) {
1017 verbose("Resetting device %s\n", dev->name);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001018
Rusty Russella007a752008-05-02 21:50:53 -05001019 /* Clear any features they've acked. */
1020 memset(get_feature_bits(dev) + dev->desc->feature_len, 0,
1021 dev->desc->feature_len);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001022
Rusty Russella007a752008-05-02 21:50:53 -05001023 /* Zero out the virtqueues. */
1024 for (vq = dev->vq; vq; vq = vq->next) {
1025 memset(vq->vring.desc, 0,
1026 vring_size(vq->config.num, getpagesize()));
Rusty Russellb5111792008-07-29 09:58:34 -05001027 lg_last_avail(vq) = 0;
Rusty Russella007a752008-05-02 21:50:53 -05001028 }
1029 } else if (dev->desc->status & VIRTIO_CONFIG_S_FAILED) {
1030 warnx("Device %s configuration FAILED", dev->name);
1031 } else if (dev->desc->status & VIRTIO_CONFIG_S_DRIVER_OK) {
1032 unsigned int i;
1033
1034 verbose("Device %s OK: offered", dev->name);
1035 for (i = 0; i < dev->desc->feature_len; i++)
Rusty Russell32c68e52008-07-29 09:58:32 -05001036 verbose(" %02x", get_feature_bits(dev)[i]);
Rusty Russella007a752008-05-02 21:50:53 -05001037 verbose(", accepted");
1038 for (i = 0; i < dev->desc->feature_len; i++)
Rusty Russell32c68e52008-07-29 09:58:32 -05001039 verbose(" %02x", get_feature_bits(dev)
Rusty Russella007a752008-05-02 21:50:53 -05001040 [dev->desc->feature_len+i]);
1041
1042 if (dev->ready)
1043 dev->ready(dev);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001044 }
1045}
1046
Rusty Russell17cbca22007-10-22 11:24:22 +10001047/* This is the generic routine we call when the Guest uses LHCALL_NOTIFY. */
1048static void handle_output(int fd, unsigned long addr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001049{
1050 struct device *i;
Rusty Russell17cbca22007-10-22 11:24:22 +10001051 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001052
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001053 /* Check each device and virtqueue. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001054 for (i = devices.dev; i; i = i->next) {
Rusty Russella007a752008-05-02 21:50:53 -05001055 /* Notifications to device descriptors update device status. */
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001056 if (from_guest_phys(addr) == i->desc) {
Rusty Russella007a752008-05-02 21:50:53 -05001057 update_device_status(i);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001058 return;
1059 }
1060
1061 /* Notifications to virtqueues mean output has occurred. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001062 for (vq = i->vq; vq; vq = vq->next) {
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001063 if (vq->config.pfn != addr/getpagesize())
1064 continue;
1065
1066 /* Guest should acknowledge (and set features!) before
1067 * using the device. */
1068 if (i->desc->status == 0) {
1069 warnx("%s gave early output", i->name);
Rusty Russell17cbca22007-10-22 11:24:22 +10001070 return;
1071 }
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001072
1073 if (strcmp(vq->dev->name, "console") != 0)
1074 verbose("Output to %s\n", vq->dev->name);
1075 if (vq->handle_output)
Rusty Russella1618832008-07-29 09:58:35 -05001076 vq->handle_output(fd, vq, false);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001077 return;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001078 }
1079 }
Rusty Russelldde79782007-07-26 10:41:03 -07001080
Rusty Russell17cbca22007-10-22 11:24:22 +10001081 /* Early console write is done using notify on a nul-terminated string
1082 * in Guest memory. */
1083 if (addr >= guest_limit)
1084 errx(1, "Bad NOTIFY %#lx", addr);
1085
1086 write(STDOUT_FILENO, from_guest_phys(addr),
1087 strnlen(from_guest_phys(addr), guest_limit - addr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001088}
1089
Rusty Russella1618832008-07-29 09:58:35 -05001090static void handle_timeout(int fd)
1091{
1092 char buf[32];
1093 struct device *i;
1094 struct virtqueue *vq;
1095
1096 /* Clear the pipe */
1097 read(timeoutpipe[0], buf, sizeof(buf));
1098
1099 /* Check each device and virtqueue: flush blocked ones. */
1100 for (i = devices.dev; i; i = i->next) {
1101 for (vq = i->vq; vq; vq = vq->next) {
1102 if (!vq->blocked)
1103 continue;
1104
1105 vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY;
1106 vq->blocked = false;
1107 if (vq->handle_output)
1108 vq->handle_output(fd, vq, true);
1109 }
1110 }
1111}
1112
Rusty Russelle1e72962007-10-25 15:02:50 +10001113/* This is called when the Waker wakes us up: check for incoming file
Rusty Russelldde79782007-07-26 10:41:03 -07001114 * descriptors. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001115static void handle_input(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001116{
Rusty Russelldde79782007-07-26 10:41:03 -07001117 /* select() wants a zeroed timeval to mean "don't wait". */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001118 struct timeval poll = { .tv_sec = 0, .tv_usec = 0 };
1119
1120 for (;;) {
1121 struct device *i;
Rusty Russell17cbca22007-10-22 11:24:22 +10001122 fd_set fds = devices.infds;
Rusty Russella1618832008-07-29 09:58:35 -05001123 int num;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001124
Rusty Russella1618832008-07-29 09:58:35 -05001125 num = select(devices.max_infd+1, &fds, NULL, NULL, &poll);
1126 /* Could get interrupted */
1127 if (num < 0)
1128 continue;
Rusty Russelldde79782007-07-26 10:41:03 -07001129 /* If nothing is ready, we're done. */
Rusty Russella1618832008-07-29 09:58:35 -05001130 if (num == 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001131 break;
1132
Rusty Russella6bd8e12008-03-28 11:05:53 -05001133 /* Otherwise, call the device(s) which have readable file
1134 * descriptors and a method of handling them. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001135 for (i = devices.dev; i; i = i->next) {
Rusty Russell8ca47e02007-07-19 01:49:29 -07001136 if (i->handle_input && FD_ISSET(i->fd, &fds)) {
Rusty Russell56ae43d2007-10-22 11:24:23 +10001137 int dev_fd;
1138 if (i->handle_input(fd, i))
1139 continue;
1140
Rusty Russelldde79782007-07-26 10:41:03 -07001141 /* If handle_input() returns false, it means we
Rusty Russell56ae43d2007-10-22 11:24:23 +10001142 * should no longer service it. Networking and
1143 * console do this when there's no input
1144 * buffers to deliver into. Console also uses
Rusty Russella6bd8e12008-03-28 11:05:53 -05001145 * it when it discovers that stdin is closed. */
Rusty Russell56ae43d2007-10-22 11:24:23 +10001146 FD_CLR(i->fd, &devices.infds);
1147 /* Tell waker to ignore it too, by sending a
1148 * negative fd number (-1, since 0 is a valid
1149 * FD number). */
1150 dev_fd = -i->fd - 1;
1151 write(waker_fd, &dev_fd, sizeof(dev_fd));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001152 }
1153 }
Rusty Russella1618832008-07-29 09:58:35 -05001154
1155 /* Is this the timeout fd? */
1156 if (FD_ISSET(timeoutpipe[0], &fds))
1157 handle_timeout(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001158 }
1159}
1160
Rusty Russelldde79782007-07-26 10:41:03 -07001161/*L:190
1162 * Device Setup
1163 *
1164 * All devices need a descriptor so the Guest knows it exists, and a "struct
1165 * device" so the Launcher can keep track of it. We have common helper
Rusty Russella6bd8e12008-03-28 11:05:53 -05001166 * routines to allocate and manage them.
1167 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001168
1169/* The layout of the device page is a "struct lguest_device_desc" followed by a
1170 * number of virtqueue descriptors, then two sets of feature bits, then an
1171 * array of configuration bytes. This routine returns the configuration
1172 * pointer. */
1173static u8 *device_config(const struct device *dev)
1174{
1175 return (void *)(dev->desc + 1)
1176 + dev->desc->num_vq * sizeof(struct lguest_vqconfig)
1177 + dev->desc->feature_len * 2;
1178}
1179
1180/* This routine allocates a new "struct lguest_device_desc" from descriptor
1181 * table page just above the Guest's normal memory. It returns a pointer to
1182 * that descriptor. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001183static struct lguest_device_desc *new_dev_desc(u16 type)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001184{
Rusty Russella586d4f2008-02-04 23:49:56 -05001185 struct lguest_device_desc d = { .type = type };
1186 void *p;
1187
1188 /* Figure out where the next device config is, based on the last one. */
1189 if (devices.lastdev)
1190 p = device_config(devices.lastdev)
1191 + devices.lastdev->desc->config_len;
1192 else
1193 p = devices.descpage;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001194
Rusty Russell17cbca22007-10-22 11:24:22 +10001195 /* We only have one page for all the descriptors. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001196 if (p + sizeof(d) > (void *)devices.descpage + getpagesize())
Rusty Russell17cbca22007-10-22 11:24:22 +10001197 errx(1, "Too many devices");
1198
Rusty Russella586d4f2008-02-04 23:49:56 -05001199 /* p might not be aligned, so we memcpy in. */
1200 return memcpy(p, &d, sizeof(d));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001201}
1202
Rusty Russella586d4f2008-02-04 23:49:56 -05001203/* Each device descriptor is followed by the description of its virtqueues. We
1204 * specify how many descriptors the virtqueue is to have. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001205static void add_virtqueue(struct device *dev, unsigned int num_descs,
Rusty Russella1618832008-07-29 09:58:35 -05001206 void (*handle_output)(int, struct virtqueue *, bool))
Rusty Russell17cbca22007-10-22 11:24:22 +10001207{
1208 unsigned int pages;
1209 struct virtqueue **i, *vq = malloc(sizeof(*vq));
1210 void *p;
1211
Rusty Russella6bd8e12008-03-28 11:05:53 -05001212 /* First we need some memory for this virtqueue. */
Rusty Russell42b36cc2007-11-12 13:39:18 +11001213 pages = (vring_size(num_descs, getpagesize()) + getpagesize() - 1)
1214 / getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10001215 p = get_pages(pages);
1216
Rusty Russelld1c856e2007-11-19 11:20:40 -05001217 /* Initialize the virtqueue */
1218 vq->next = NULL;
1219 vq->last_avail_idx = 0;
1220 vq->dev = dev;
Rusty Russell20887612008-05-30 15:09:46 -05001221 vq->inflight = 0;
Rusty Russella1618832008-07-29 09:58:35 -05001222 vq->blocked = false;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001223
Rusty Russell17cbca22007-10-22 11:24:22 +10001224 /* Initialize the configuration. */
1225 vq->config.num = num_descs;
1226 vq->config.irq = devices.next_irq++;
1227 vq->config.pfn = to_guest_phys(p) / getpagesize();
1228
1229 /* Initialize the vring. */
Rusty Russell42b36cc2007-11-12 13:39:18 +11001230 vring_init(&vq->vring, num_descs, p, getpagesize());
Rusty Russell17cbca22007-10-22 11:24:22 +10001231
Rusty Russella586d4f2008-02-04 23:49:56 -05001232 /* Append virtqueue to this device's descriptor. We use
1233 * device_config() to get the end of the device's current virtqueues;
1234 * we check that we haven't added any config or feature information
1235 * yet, otherwise we'd be overwriting them. */
1236 assert(dev->desc->config_len == 0 && dev->desc->feature_len == 0);
1237 memcpy(device_config(dev), &vq->config, sizeof(vq->config));
1238 dev->desc->num_vq++;
1239
1240 verbose("Virtqueue page %#lx\n", to_guest_phys(p));
Rusty Russell17cbca22007-10-22 11:24:22 +10001241
1242 /* Add to tail of list, so dev->vq is first vq, dev->vq->next is
1243 * second. */
1244 for (i = &dev->vq; *i; i = &(*i)->next);
1245 *i = vq;
1246
Rusty Russelle1e72962007-10-25 15:02:50 +10001247 /* Set the routine to call when the Guest does something to this
1248 * virtqueue. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001249 vq->handle_output = handle_output;
Rusty Russelle1e72962007-10-25 15:02:50 +10001250
Rusty Russell426e3e02008-02-04 23:49:59 -05001251 /* As an optimization, set the advisory "Don't Notify Me" flag if we
1252 * don't have a handler */
Rusty Russell17cbca22007-10-22 11:24:22 +10001253 if (!handle_output)
1254 vq->vring.used->flags = VRING_USED_F_NO_NOTIFY;
1255}
1256
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001257/* The first half of the feature bitmask is for us to advertise features. The
Rusty Russella6bd8e12008-03-28 11:05:53 -05001258 * second half is for the Guest to accept features. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001259static void add_feature(struct device *dev, unsigned bit)
1260{
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001261 u8 *features = get_feature_bits(dev);
Rusty Russella586d4f2008-02-04 23:49:56 -05001262
1263 /* We can't extend the feature bits once we've added config bytes */
1264 if (dev->desc->feature_len <= bit / CHAR_BIT) {
1265 assert(dev->desc->config_len == 0);
1266 dev->desc->feature_len = (bit / CHAR_BIT) + 1;
1267 }
1268
Rusty Russella586d4f2008-02-04 23:49:56 -05001269 features[bit / CHAR_BIT] |= (1 << (bit % CHAR_BIT));
1270}
1271
1272/* This routine sets the configuration fields for an existing device's
1273 * descriptor. It only works for the last device, but that's OK because that's
1274 * how we use it. */
1275static void set_config(struct device *dev, unsigned len, const void *conf)
1276{
1277 /* Check we haven't overflowed our single page. */
1278 if (device_config(dev) + len > devices.descpage + getpagesize())
1279 errx(1, "Too many devices");
1280
1281 /* Copy in the config information, and store the length. */
1282 memcpy(device_config(dev), conf, len);
1283 dev->desc->config_len = len;
1284}
1285
Rusty Russell17cbca22007-10-22 11:24:22 +10001286/* This routine does all the creation and setup of a new device, including
Rusty Russella6bd8e12008-03-28 11:05:53 -05001287 * calling new_dev_desc() to allocate the descriptor and device memory.
1288 *
1289 * See what I mean about userspace being boring? */
Rusty Russell17cbca22007-10-22 11:24:22 +10001290static struct device *new_device(const char *name, u16 type, int fd,
1291 bool (*handle_input)(int, struct device *))
Rusty Russell8ca47e02007-07-19 01:49:29 -07001292{
1293 struct device *dev = malloc(sizeof(*dev));
1294
Rusty Russelldde79782007-07-26 10:41:03 -07001295 /* Now we populate the fields one at a time. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001296 dev->fd = fd;
Rusty Russelldde79782007-07-26 10:41:03 -07001297 /* If we have an input handler for this file descriptor, then we add it
1298 * to the device_list's fdset and maxfd. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001299 if (handle_input)
Rusty Russell17cbca22007-10-22 11:24:22 +10001300 add_device_fd(dev->fd);
1301 dev->desc = new_dev_desc(type);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001302 dev->handle_input = handle_input;
Rusty Russell17cbca22007-10-22 11:24:22 +10001303 dev->name = name;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001304 dev->vq = NULL;
Rusty Russella007a752008-05-02 21:50:53 -05001305 dev->ready = NULL;
Rusty Russella586d4f2008-02-04 23:49:56 -05001306
1307 /* Append to device list. Prepending to a single-linked list is
1308 * easier, but the user expects the devices to be arranged on the bus
1309 * in command-line order. The first network device on the command line
1310 * is eth0, the first block device /dev/vda, etc. */
1311 if (devices.lastdev)
1312 devices.lastdev->next = dev;
1313 else
1314 devices.dev = dev;
1315 devices.lastdev = dev;
1316
Rusty Russell8ca47e02007-07-19 01:49:29 -07001317 return dev;
1318}
1319
Rusty Russelldde79782007-07-26 10:41:03 -07001320/* Our first setup routine is the console. It's a fairly simple device, but
1321 * UNIX tty handling makes it uglier than it could be. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001322static void setup_console(void)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001323{
1324 struct device *dev;
1325
Rusty Russelldde79782007-07-26 10:41:03 -07001326 /* If we can save the initial standard input settings... */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001327 if (tcgetattr(STDIN_FILENO, &orig_term) == 0) {
1328 struct termios term = orig_term;
Rusty Russelldde79782007-07-26 10:41:03 -07001329 /* Then we turn off echo, line buffering and ^C etc. We want a
1330 * raw input stream to the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001331 term.c_lflag &= ~(ISIG|ICANON|ECHO);
1332 tcsetattr(STDIN_FILENO, TCSANOW, &term);
Rusty Russelldde79782007-07-26 10:41:03 -07001333 /* If we exit gracefully, the original settings will be
1334 * restored so the user can see what they're typing. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001335 atexit(restore_term);
1336 }
1337
Rusty Russell17cbca22007-10-22 11:24:22 +10001338 dev = new_device("console", VIRTIO_ID_CONSOLE,
1339 STDIN_FILENO, handle_console_input);
Rusty Russelldde79782007-07-26 10:41:03 -07001340 /* We store the console state in dev->priv, and initialize it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001341 dev->priv = malloc(sizeof(struct console_abort));
1342 ((struct console_abort *)dev->priv)->count = 0;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001343
Rusty Russell56ae43d2007-10-22 11:24:23 +10001344 /* The console needs two virtqueues: the input then the output. When
1345 * they put something the input queue, we make sure we're listening to
1346 * stdin. When they put something in the output queue, we write it to
Rusty Russelle1e72962007-10-25 15:02:50 +10001347 * stdout. */
Rusty Russell56ae43d2007-10-22 11:24:23 +10001348 add_virtqueue(dev, VIRTQUEUE_NUM, enable_fd);
Rusty Russell17cbca22007-10-22 11:24:22 +10001349 add_virtqueue(dev, VIRTQUEUE_NUM, handle_console_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001350
Rusty Russell17cbca22007-10-22 11:24:22 +10001351 verbose("device %u: console\n", devices.device_num++);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001352}
Rusty Russelldde79782007-07-26 10:41:03 -07001353/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001354
Rusty Russella1618832008-07-29 09:58:35 -05001355static void timeout_alarm(int sig)
1356{
1357 write(timeoutpipe[1], "", 1);
1358}
1359
1360static void setup_timeout(void)
1361{
1362 if (pipe(timeoutpipe) != 0)
1363 err(1, "Creating timeout pipe");
1364
1365 if (fcntl(timeoutpipe[1], F_SETFL,
1366 fcntl(timeoutpipe[1], F_GETFL) | O_NONBLOCK) != 0)
1367 err(1, "Making timeout pipe nonblocking");
1368
1369 add_device_fd(timeoutpipe[0]);
1370 signal(SIGALRM, timeout_alarm);
1371}
1372
Rusty Russell17cbca22007-10-22 11:24:22 +10001373/*M:010 Inter-guest networking is an interesting area. Simplest is to have a
1374 * --sharenet=<name> option which opens or creates a named pipe. This can be
1375 * used to send packets to another guest in a 1:1 manner.
1376 *
1377 * More sopisticated is to use one of the tools developed for project like UML
1378 * to do networking.
1379 *
1380 * Faster is to do virtio bonding in kernel. Doing this 1:1 would be
1381 * completely generic ("here's my vring, attach to your vring") and would work
1382 * for any traffic. Of course, namespace and permissions issues need to be
1383 * dealt with. A more sophisticated "multi-channel" virtio_net.c could hide
1384 * multiple inter-guest channels behind one interface, although it would
1385 * require some manner of hotplugging new virtio channels.
1386 *
1387 * Finally, we could implement a virtio network switch in the kernel. :*/
1388
Rusty Russell8ca47e02007-07-19 01:49:29 -07001389static u32 str2ip(const char *ipaddr)
1390{
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001391 unsigned int b[4];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001392
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001393 if (sscanf(ipaddr, "%u.%u.%u.%u", &b[0], &b[1], &b[2], &b[3]) != 4)
1394 errx(1, "Failed to parse IP address '%s'", ipaddr);
1395 return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];
1396}
1397
1398static void str2mac(const char *macaddr, unsigned char mac[6])
1399{
1400 unsigned int m[6];
1401 if (sscanf(macaddr, "%02x:%02x:%02x:%02x:%02x:%02x",
1402 &m[0], &m[1], &m[2], &m[3], &m[4], &m[5]) != 6)
1403 errx(1, "Failed to parse mac address '%s'", macaddr);
1404 mac[0] = m[0];
1405 mac[1] = m[1];
1406 mac[2] = m[2];
1407 mac[3] = m[3];
1408 mac[4] = m[4];
1409 mac[5] = m[5];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001410}
1411
Rusty Russelldde79782007-07-26 10:41:03 -07001412/* This code is "adapted" from libbridge: it attaches the Host end of the
1413 * network device to the bridge device specified by the command line.
1414 *
1415 * This is yet another James Morris contribution (I'm an IP-level guy, so I
1416 * dislike bridging), and I just try not to break it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001417static void add_to_bridge(int fd, const char *if_name, const char *br_name)
1418{
1419 int ifidx;
1420 struct ifreq ifr;
1421
1422 if (!*br_name)
1423 errx(1, "must specify bridge name");
1424
1425 ifidx = if_nametoindex(if_name);
1426 if (!ifidx)
1427 errx(1, "interface %s does not exist!", if_name);
1428
1429 strncpy(ifr.ifr_name, br_name, IFNAMSIZ);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001430 ifr.ifr_name[IFNAMSIZ-1] = '\0';
Rusty Russell8ca47e02007-07-19 01:49:29 -07001431 ifr.ifr_ifindex = ifidx;
1432 if (ioctl(fd, SIOCBRADDIF, &ifr) < 0)
1433 err(1, "can't add %s to bridge %s", if_name, br_name);
1434}
1435
Rusty Russelldde79782007-07-26 10:41:03 -07001436/* This sets up the Host end of the network device with an IP address, brings
1437 * it up so packets will flow, the copies the MAC address into the hwaddr
Rusty Russell17cbca22007-10-22 11:24:22 +10001438 * pointer. */
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001439static void configure_device(int fd, const char *tapif, u32 ipaddr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001440{
1441 struct ifreq ifr;
1442 struct sockaddr_in *sin = (struct sockaddr_in *)&ifr.ifr_addr;
1443
1444 memset(&ifr, 0, sizeof(ifr));
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001445 strcpy(ifr.ifr_name, tapif);
1446
1447 /* Don't read these incantations. Just cut & paste them like I did! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001448 sin->sin_family = AF_INET;
1449 sin->sin_addr.s_addr = htonl(ipaddr);
1450 if (ioctl(fd, SIOCSIFADDR, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001451 err(1, "Setting %s interface address", tapif);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001452 ifr.ifr_flags = IFF_UP;
1453 if (ioctl(fd, SIOCSIFFLAGS, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001454 err(1, "Bringing interface %s up", tapif);
1455}
1456
1457static void get_mac(int fd, const char *tapif, unsigned char hwaddr[6])
1458{
1459 struct ifreq ifr;
1460
1461 memset(&ifr, 0, sizeof(ifr));
1462 strcpy(ifr.ifr_name, tapif);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001463
Rusty Russelldde79782007-07-26 10:41:03 -07001464 /* SIOC stands for Socket I/O Control. G means Get (vs S for Set
1465 * above). IF means Interface, and HWADDR is hardware address.
1466 * Simple! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001467 if (ioctl(fd, SIOCGIFHWADDR, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001468 err(1, "getting hw address for %s", tapif);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001469 memcpy(hwaddr, ifr.ifr_hwaddr.sa_data, 6);
1470}
1471
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001472static int get_tun_device(char tapif[IFNAMSIZ])
Rusty Russell8ca47e02007-07-19 01:49:29 -07001473{
Rusty Russell8ca47e02007-07-19 01:49:29 -07001474 struct ifreq ifr;
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001475 int netfd;
1476
1477 /* Start with this zeroed. Messy but sure. */
1478 memset(&ifr, 0, sizeof(ifr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001479
Rusty Russelldde79782007-07-26 10:41:03 -07001480 /* We open the /dev/net/tun device and tell it we want a tap device. A
1481 * tap device is like a tun device, only somehow different. To tell
1482 * the truth, I completely blundered my way through this code, but it
1483 * works now! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001484 netfd = open_or_die("/dev/net/tun", O_RDWR);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001485 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1486 strcpy(ifr.ifr_name, "tap%d");
1487 if (ioctl(netfd, TUNSETIFF, &ifr) != 0)
1488 err(1, "configuring /dev/net/tun");
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001489
Rusty Russelldde79782007-07-26 10:41:03 -07001490 /* We don't need checksums calculated for packets coming in this
1491 * device: trust us! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001492 ioctl(netfd, TUNSETNOCSUM, 1);
1493
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001494 memcpy(tapif, ifr.ifr_name, IFNAMSIZ);
1495 return netfd;
1496}
1497
1498/*L:195 Our network is a Host<->Guest network. This can either use bridging or
1499 * routing, but the principle is the same: it uses the "tun" device to inject
1500 * packets into the Host as if they came in from a normal network card. We
1501 * just shunt packets between the Guest and the tun device. */
1502static void setup_tun_net(char *arg)
1503{
1504 struct device *dev;
1505 int netfd, ipfd;
1506 u32 ip = INADDR_ANY;
1507 bool bridging = false;
1508 char tapif[IFNAMSIZ], *p;
1509 struct virtio_net_config conf;
1510
1511 netfd = get_tun_device(tapif);
1512
Rusty Russell17cbca22007-10-22 11:24:22 +10001513 /* First we create a new network device. */
1514 dev = new_device("net", VIRTIO_ID_NET, netfd, handle_tun_input);
Rusty Russelldde79782007-07-26 10:41:03 -07001515
Rusty Russell56ae43d2007-10-22 11:24:23 +10001516 /* Network devices need a receive and a send queue, just like
1517 * console. */
Rusty Russell5dae7852008-07-29 09:58:35 -05001518 add_virtqueue(dev, VIRTQUEUE_NUM, net_enable_fd);
Rusty Russell17cbca22007-10-22 11:24:22 +10001519 add_virtqueue(dev, VIRTQUEUE_NUM, handle_net_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001520
Rusty Russelldde79782007-07-26 10:41:03 -07001521 /* We need a socket to perform the magic network ioctls to bring up the
1522 * tap interface, connect to the bridge etc. Any socket will do! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001523 ipfd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
1524 if (ipfd < 0)
1525 err(1, "opening IP socket");
1526
Rusty Russelldde79782007-07-26 10:41:03 -07001527 /* If the command line was --tunnet=bridge:<name> do bridging. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001528 if (!strncmp(BRIDGE_PFX, arg, strlen(BRIDGE_PFX))) {
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001529 arg += strlen(BRIDGE_PFX);
1530 bridging = true;
1531 }
1532
1533 /* A mac address may follow the bridge name or IP address */
1534 p = strchr(arg, ':');
1535 if (p) {
1536 str2mac(p+1, conf.mac);
1537 *p = '\0';
1538 } else {
1539 p = arg + strlen(arg);
1540 /* None supplied; query the randomly assigned mac. */
1541 get_mac(ipfd, tapif, conf.mac);
1542 }
1543
1544 /* arg is now either an IP address or a bridge name */
1545 if (bridging)
1546 add_to_bridge(ipfd, tapif, arg);
1547 else
Rusty Russell8ca47e02007-07-19 01:49:29 -07001548 ip = str2ip(arg);
1549
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001550 /* Set up the tun device. */
1551 configure_device(ipfd, tapif, ip);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001552
Rusty Russell17cbca22007-10-22 11:24:22 +10001553 /* Tell Guest what MAC address to use. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001554 add_feature(dev, VIRTIO_NET_F_MAC);
Rusty Russell20887612008-05-30 15:09:46 -05001555 add_feature(dev, VIRTIO_F_NOTIFY_ON_EMPTY);
Rusty Russella586d4f2008-02-04 23:49:56 -05001556 set_config(dev, sizeof(conf), &conf);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001557
Rusty Russella586d4f2008-02-04 23:49:56 -05001558 /* We don't need the socket any more; setup is done. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001559 close(ipfd);
1560
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001561 devices.device_num++;
1562
1563 if (bridging)
1564 verbose("device %u: tun %s attached to bridge: %s\n",
1565 devices.device_num, tapif, arg);
1566 else
1567 verbose("device %u: tun %s: %s\n",
1568 devices.device_num, tapif, arg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001569}
Rusty Russell17cbca22007-10-22 11:24:22 +10001570
Rusty Russelle1e72962007-10-25 15:02:50 +10001571/* Our block (disk) device should be really simple: the Guest asks for a block
1572 * number and we read or write that position in the file. Unfortunately, that
1573 * was amazingly slow: the Guest waits until the read is finished before
1574 * running anything else, even if it could have been doing useful work.
Rusty Russell17cbca22007-10-22 11:24:22 +10001575 *
Rusty Russelle1e72962007-10-25 15:02:50 +10001576 * We could use async I/O, except it's reputed to suck so hard that characters
1577 * actually go missing from your code when you try to use it.
Rusty Russell17cbca22007-10-22 11:24:22 +10001578 *
1579 * So we farm the I/O out to thread, and communicate with it via a pipe. */
1580
Rusty Russelle1e72962007-10-25 15:02:50 +10001581/* This hangs off device->priv. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001582struct vblk_info
1583{
1584 /* The size of the file. */
1585 off64_t len;
1586
1587 /* The file descriptor for the file. */
1588 int fd;
1589
1590 /* IO thread listens on this file descriptor [0]. */
1591 int workpipe[2];
1592
1593 /* IO thread writes to this file descriptor to mark it done, then
1594 * Launcher triggers interrupt to Guest. */
1595 int done_fd;
1596};
1597
Rusty Russelle1e72962007-10-25 15:02:50 +10001598/*L:210
1599 * The Disk
1600 *
1601 * Remember that the block device is handled by a separate I/O thread. We head
1602 * straight into the core of that thread here:
1603 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001604static bool service_io(struct device *dev)
1605{
1606 struct vblk_info *vblk = dev->priv;
1607 unsigned int head, out_num, in_num, wlen;
1608 int ret;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001609 u8 *in;
Rusty Russell17cbca22007-10-22 11:24:22 +10001610 struct virtio_blk_outhdr *out;
1611 struct iovec iov[dev->vq->vring.num];
1612 off64_t off;
1613
Rusty Russelle1e72962007-10-25 15:02:50 +10001614 /* See if there's a request waiting. If not, nothing to do. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001615 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
1616 if (head == dev->vq->vring.num)
1617 return false;
1618
Rusty Russelle1e72962007-10-25 15:02:50 +10001619 /* Every block request should contain at least one output buffer
1620 * (detailing the location on disk and the type of request) and one
1621 * input buffer (to hold the result). */
Rusty Russell17cbca22007-10-22 11:24:22 +10001622 if (out_num == 0 || in_num == 0)
1623 errx(1, "Bad virtblk cmd %u out=%u in=%u",
1624 head, out_num, in_num);
1625
1626 out = convert(&iov[0], struct virtio_blk_outhdr);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001627 in = convert(&iov[out_num+in_num-1], u8);
Rusty Russell17cbca22007-10-22 11:24:22 +10001628 off = out->sector * 512;
1629
Rusty Russelle1e72962007-10-25 15:02:50 +10001630 /* The block device implements "barriers", where the Guest indicates
1631 * that it wants all previous writes to occur before this write. We
1632 * don't have a way of asking our kernel to do a barrier, so we just
1633 * synchronize all the data in the file. Pretty poor, no? */
Rusty Russell17cbca22007-10-22 11:24:22 +10001634 if (out->type & VIRTIO_BLK_T_BARRIER)
1635 fdatasync(vblk->fd);
1636
Rusty Russelle1e72962007-10-25 15:02:50 +10001637 /* In general the virtio block driver is allowed to try SCSI commands.
1638 * It'd be nice if we supported eject, for example, but we don't. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001639 if (out->type & VIRTIO_BLK_T_SCSI_CMD) {
1640 fprintf(stderr, "Scsi commands unsupported\n");
Rusty Russellcb38fa22008-05-02 21:50:45 -05001641 *in = VIRTIO_BLK_S_UNSUPP;
Anthony Liguori1200e642007-11-08 21:13:44 -06001642 wlen = sizeof(*in);
Rusty Russell17cbca22007-10-22 11:24:22 +10001643 } else if (out->type & VIRTIO_BLK_T_OUT) {
1644 /* Write */
1645
1646 /* Move to the right location in the block file. This can fail
1647 * if they try to write past end. */
1648 if (lseek64(vblk->fd, off, SEEK_SET) != off)
1649 err(1, "Bad seek to sector %llu", out->sector);
1650
1651 ret = writev(vblk->fd, iov+1, out_num-1);
1652 verbose("WRITE to sector %llu: %i\n", out->sector, ret);
1653
1654 /* Grr... Now we know how long the descriptor they sent was, we
1655 * make sure they didn't try to write over the end of the block
1656 * file (possibly extending it). */
1657 if (ret > 0 && off + ret > vblk->len) {
1658 /* Trim it back to the correct length */
1659 ftruncate64(vblk->fd, vblk->len);
1660 /* Die, bad Guest, die. */
1661 errx(1, "Write past end %llu+%u", off, ret);
1662 }
Anthony Liguori1200e642007-11-08 21:13:44 -06001663 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001664 *in = (ret >= 0 ? VIRTIO_BLK_S_OK : VIRTIO_BLK_S_IOERR);
Rusty Russell17cbca22007-10-22 11:24:22 +10001665 } else {
1666 /* Read */
1667
1668 /* Move to the right location in the block file. This can fail
1669 * if they try to read past end. */
1670 if (lseek64(vblk->fd, off, SEEK_SET) != off)
1671 err(1, "Bad seek to sector %llu", out->sector);
1672
1673 ret = readv(vblk->fd, iov+1, in_num-1);
1674 verbose("READ from sector %llu: %i\n", out->sector, ret);
1675 if (ret >= 0) {
Anthony Liguori1200e642007-11-08 21:13:44 -06001676 wlen = sizeof(*in) + ret;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001677 *in = VIRTIO_BLK_S_OK;
Rusty Russell17cbca22007-10-22 11:24:22 +10001678 } else {
Anthony Liguori1200e642007-11-08 21:13:44 -06001679 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001680 *in = VIRTIO_BLK_S_IOERR;
Rusty Russell17cbca22007-10-22 11:24:22 +10001681 }
1682 }
1683
1684 /* We can't trigger an IRQ, because we're not the Launcher. It does
1685 * that when we tell it we're done. */
1686 add_used(dev->vq, head, wlen);
1687 return true;
1688}
1689
1690/* This is the thread which actually services the I/O. */
1691static int io_thread(void *_dev)
1692{
1693 struct device *dev = _dev;
1694 struct vblk_info *vblk = dev->priv;
1695 char c;
1696
1697 /* Close other side of workpipe so we get 0 read when main dies. */
1698 close(vblk->workpipe[1]);
1699 /* Close the other side of the done_fd pipe. */
1700 close(dev->fd);
1701
1702 /* When this read fails, it means Launcher died, so we follow. */
1703 while (read(vblk->workpipe[0], &c, 1) == 1) {
Rusty Russelle1e72962007-10-25 15:02:50 +10001704 /* We acknowledge each request immediately to reduce latency,
Rusty Russell17cbca22007-10-22 11:24:22 +10001705 * rather than waiting until we've done them all. I haven't
Rusty Russella6bd8e12008-03-28 11:05:53 -05001706 * measured to see if it makes any difference.
1707 *
1708 * That would be an interesting test, wouldn't it? You could
1709 * also try having more than one I/O thread. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001710 while (service_io(dev))
1711 write(vblk->done_fd, &c, 1);
1712 }
1713 return 0;
1714}
1715
Rusty Russelle1e72962007-10-25 15:02:50 +10001716/* Now we've seen the I/O thread, we return to the Launcher to see what happens
Rusty Russella6bd8e12008-03-28 11:05:53 -05001717 * when that thread tells us it's completed some I/O. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001718static bool handle_io_finish(int fd, struct device *dev)
1719{
1720 char c;
1721
Rusty Russelle1e72962007-10-25 15:02:50 +10001722 /* If the I/O thread died, presumably it printed the error, so we
1723 * simply exit. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001724 if (read(dev->fd, &c, 1) != 1)
1725 exit(1);
1726
1727 /* It did some work, so trigger the irq. */
1728 trigger_irq(fd, dev->vq);
1729 return true;
1730}
1731
Rusty Russelle1e72962007-10-25 15:02:50 +10001732/* When the Guest submits some I/O, we just need to wake the I/O thread. */
Rusty Russella1618832008-07-29 09:58:35 -05001733static void handle_virtblk_output(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell17cbca22007-10-22 11:24:22 +10001734{
1735 struct vblk_info *vblk = vq->dev->priv;
1736 char c = 0;
1737
1738 /* Wake up I/O thread and tell it to go to work! */
1739 if (write(vblk->workpipe[1], &c, 1) != 1)
1740 /* Presumably it indicated why it died. */
1741 exit(1);
1742}
1743
Rusty Russelle1e72962007-10-25 15:02:50 +10001744/*L:198 This actually sets up a virtual block device. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001745static void setup_block_file(const char *filename)
1746{
1747 int p[2];
1748 struct device *dev;
1749 struct vblk_info *vblk;
1750 void *stack;
Rusty Russella586d4f2008-02-04 23:49:56 -05001751 struct virtio_blk_config conf;
Rusty Russell17cbca22007-10-22 11:24:22 +10001752
1753 /* This is the pipe the I/O thread will use to tell us I/O is done. */
1754 pipe(p);
1755
1756 /* The device responds to return from I/O thread. */
1757 dev = new_device("block", VIRTIO_ID_BLOCK, p[0], handle_io_finish);
1758
Rusty Russelle1e72962007-10-25 15:02:50 +10001759 /* The device has one virtqueue, where the Guest places requests. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001760 add_virtqueue(dev, VIRTQUEUE_NUM, handle_virtblk_output);
1761
1762 /* Allocate the room for our own bookkeeping */
1763 vblk = dev->priv = malloc(sizeof(*vblk));
1764
1765 /* First we open the file and store the length. */
1766 vblk->fd = open_or_die(filename, O_RDWR|O_LARGEFILE);
1767 vblk->len = lseek64(vblk->fd, 0, SEEK_END);
1768
Rusty Russella586d4f2008-02-04 23:49:56 -05001769 /* We support barriers. */
1770 add_feature(dev, VIRTIO_BLK_F_BARRIER);
1771
Rusty Russell17cbca22007-10-22 11:24:22 +10001772 /* Tell Guest how many sectors this device has. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001773 conf.capacity = cpu_to_le64(vblk->len / 512);
Rusty Russell17cbca22007-10-22 11:24:22 +10001774
1775 /* Tell Guest not to put in too many descriptors at once: two are used
1776 * for the in and out elements. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001777 add_feature(dev, VIRTIO_BLK_F_SEG_MAX);
1778 conf.seg_max = cpu_to_le32(VIRTQUEUE_NUM - 2);
1779
1780 set_config(dev, sizeof(conf), &conf);
Rusty Russell17cbca22007-10-22 11:24:22 +10001781
1782 /* The I/O thread writes to this end of the pipe when done. */
1783 vblk->done_fd = p[1];
1784
Rusty Russelle1e72962007-10-25 15:02:50 +10001785 /* This is the second pipe, which is how we tell the I/O thread about
1786 * more work. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001787 pipe(vblk->workpipe);
1788
Rusty Russella6bd8e12008-03-28 11:05:53 -05001789 /* Create stack for thread and run it. Since stack grows upwards, we
1790 * point the stack pointer to the end of this region. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001791 stack = malloc(32768);
Balaji Raoec04b132007-12-28 14:26:24 +05301792 /* SIGCHLD - We dont "wait" for our cloned thread, so prevent it from
1793 * becoming a zombie. */
Rusty Russella6bd8e12008-03-28 11:05:53 -05001794 if (clone(io_thread, stack + 32768, CLONE_VM | SIGCHLD, dev) == -1)
Rusty Russell17cbca22007-10-22 11:24:22 +10001795 err(1, "Creating clone");
1796
1797 /* We don't need to keep the I/O thread's end of the pipes open. */
1798 close(vblk->done_fd);
1799 close(vblk->workpipe[0]);
1800
1801 verbose("device %u: virtblock %llu sectors\n",
Rusty Russella586d4f2008-02-04 23:49:56 -05001802 devices.device_num, le64_to_cpu(conf.capacity));
Rusty Russell17cbca22007-10-22 11:24:22 +10001803}
Rusty Russell28fd6d72008-07-29 09:58:33 -05001804
1805/* Our random number generator device reads from /dev/random into the Guest's
1806 * input buffers. The usual case is that the Guest doesn't want random numbers
1807 * and so has no buffers although /dev/random is still readable, whereas
1808 * console is the reverse.
1809 *
1810 * The same logic applies, however. */
1811static bool handle_rng_input(int fd, struct device *dev)
1812{
1813 int len;
1814 unsigned int head, in_num, out_num, totlen = 0;
1815 struct iovec iov[dev->vq->vring.num];
1816
1817 /* First we need a buffer from the Guests's virtqueue. */
1818 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
1819
1820 /* If they're not ready for input, stop listening to this file
1821 * descriptor. We'll start again once they add an input buffer. */
1822 if (head == dev->vq->vring.num)
1823 return false;
1824
1825 if (out_num)
1826 errx(1, "Output buffers in rng?");
1827
1828 /* This is why we convert to iovecs: the readv() call uses them, and so
1829 * it reads straight into the Guest's buffer. We loop to make sure we
1830 * fill it. */
1831 while (!iov_empty(iov, in_num)) {
1832 len = readv(dev->fd, iov, in_num);
1833 if (len <= 0)
1834 err(1, "Read from /dev/random gave %i", len);
1835 iov_consume(iov, in_num, len);
1836 totlen += len;
1837 }
1838
1839 /* Tell the Guest about the new input. */
1840 add_used_and_trigger(fd, dev->vq, head, totlen);
1841
1842 /* Everything went OK! */
1843 return true;
1844}
1845
1846/* And this creates a "hardware" random number device for the Guest. */
1847static void setup_rng(void)
1848{
1849 struct device *dev;
1850 int fd;
1851
1852 fd = open_or_die("/dev/random", O_RDONLY);
1853
1854 /* The device responds to return from I/O thread. */
1855 dev = new_device("rng", VIRTIO_ID_RNG, fd, handle_rng_input);
1856
1857 /* The device has one virtqueue, where the Guest places inbufs. */
1858 add_virtqueue(dev, VIRTQUEUE_NUM, enable_fd);
1859
1860 verbose("device %u: rng\n", devices.device_num++);
1861}
Rusty Russella6bd8e12008-03-28 11:05:53 -05001862/* That's the end of device setup. */
Balaji Raoec04b132007-12-28 14:26:24 +05301863
Rusty Russella6bd8e12008-03-28 11:05:53 -05001864/*L:230 Reboot is pretty easy: clean up and exec() the Launcher afresh. */
Balaji Raoec04b132007-12-28 14:26:24 +05301865static void __attribute__((noreturn)) restart_guest(void)
1866{
1867 unsigned int i;
1868
Rusty Russella6bd8e12008-03-28 11:05:53 -05001869 /* Closing pipes causes the Waker thread and io_threads to die, and
Balaji Raoec04b132007-12-28 14:26:24 +05301870 * closing /dev/lguest cleans up the Guest. Since we don't track all
1871 * open fds, we simply close everything beyond stderr. */
1872 for (i = 3; i < FD_SETSIZE; i++)
1873 close(i);
1874 execv(main_args[0], main_args);
1875 err(1, "Could not exec %s", main_args[0]);
1876}
Rusty Russell8ca47e02007-07-19 01:49:29 -07001877
Rusty Russella6bd8e12008-03-28 11:05:53 -05001878/*L:220 Finally we reach the core of the Launcher which runs the Guest, serves
Rusty Russelldde79782007-07-26 10:41:03 -07001879 * its input and output, and finally, lays it to rest. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001880static void __attribute__((noreturn)) run_guest(int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001881{
1882 for (;;) {
Jes Sorensen511801d2007-10-22 11:03:31 +10001883 unsigned long args[] = { LHREQ_BREAK, 0 };
Rusty Russell17cbca22007-10-22 11:24:22 +10001884 unsigned long notify_addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001885 int readval;
1886
1887 /* We read from the /dev/lguest device to run the Guest. */
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001888 readval = pread(lguest_fd, &notify_addr,
1889 sizeof(notify_addr), cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001890
Rusty Russell17cbca22007-10-22 11:24:22 +10001891 /* One unsigned long means the Guest did HCALL_NOTIFY */
1892 if (readval == sizeof(notify_addr)) {
1893 verbose("Notify on address %#lx\n", notify_addr);
1894 handle_output(lguest_fd, notify_addr);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001895 continue;
Rusty Russelldde79782007-07-26 10:41:03 -07001896 /* ENOENT means the Guest died. Reading tells us why. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001897 } else if (errno == ENOENT) {
1898 char reason[1024] = { 0 };
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001899 pread(lguest_fd, reason, sizeof(reason)-1, cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001900 errx(1, "%s", reason);
Balaji Raoec04b132007-12-28 14:26:24 +05301901 /* ERESTART means that we need to reboot the guest */
1902 } else if (errno == ERESTART) {
1903 restart_guest();
Rusty Russella1618832008-07-29 09:58:35 -05001904 /* EAGAIN means a signal (timeout).
Rusty Russelldde79782007-07-26 10:41:03 -07001905 * Anything else means a bug or incompatible change. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001906 } else if (errno != EAGAIN)
1907 err(1, "Running guest failed");
Rusty Russelldde79782007-07-26 10:41:03 -07001908
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001909 /* Only service input on thread for CPU 0. */
1910 if (cpu_id != 0)
1911 continue;
1912
Rusty Russelle1e72962007-10-25 15:02:50 +10001913 /* Service input, then unset the BREAK to release the Waker. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001914 handle_input(lguest_fd);
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001915 if (pwrite(lguest_fd, args, sizeof(args), cpu_id) < 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001916 err(1, "Resetting break");
1917 }
1918}
Rusty Russella6bd8e12008-03-28 11:05:53 -05001919/*L:240
Rusty Russelle1e72962007-10-25 15:02:50 +10001920 * This is the end of the Launcher. The good news: we are over halfway
1921 * through! The bad news: the most fiendish part of the code still lies ahead
1922 * of us.
Rusty Russelldde79782007-07-26 10:41:03 -07001923 *
Rusty Russelle1e72962007-10-25 15:02:50 +10001924 * Are you ready? Take a deep breath and join me in the core of the Host, in
1925 * "make Host".
1926 :*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001927
1928static struct option opts[] = {
1929 { "verbose", 0, NULL, 'v' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001930 { "tunnet", 1, NULL, 't' },
1931 { "block", 1, NULL, 'b' },
Rusty Russell28fd6d72008-07-29 09:58:33 -05001932 { "rng", 0, NULL, 'r' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001933 { "initrd", 1, NULL, 'i' },
1934 { NULL },
1935};
1936static void usage(void)
1937{
1938 errx(1, "Usage: lguest [--verbose] "
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001939 "[--tunnet=(<ipaddr>:<macaddr>|bridge:<bridgename>:<macaddr>)\n"
Rusty Russell8ca47e02007-07-19 01:49:29 -07001940 "|--block=<filename>|--initrd=<filename>]...\n"
1941 "<mem-in-mb> vmlinux [args...]");
1942}
1943
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001944/*L:105 The main routine is where the real work begins: */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001945int main(int argc, char *argv[])
1946{
Rusty Russell47436aa2007-10-22 11:03:36 +10001947 /* Memory, top-level pagetable, code startpoint and size of the
1948 * (optional) initrd. */
1949 unsigned long mem = 0, pgdir, start, initrd_size = 0;
Rusty Russelle1e72962007-10-25 15:02:50 +10001950 /* Two temporaries and the /dev/lguest file descriptor. */
Rusty Russell6570c45992007-07-23 18:43:56 -07001951 int i, c, lguest_fd;
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001952 /* The boot information for the Guest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10001953 struct boot_params *boot;
Rusty Russelldde79782007-07-26 10:41:03 -07001954 /* If they specify an initrd file to load. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001955 const char *initrd_name = NULL;
1956
Balaji Raoec04b132007-12-28 14:26:24 +05301957 /* Save the args: we "reboot" by execing ourselves again. */
1958 main_args = argv;
1959 /* We don't "wait" for the children, so prevent them from becoming
1960 * zombies. */
1961 signal(SIGCHLD, SIG_IGN);
1962
Rusty Russelldde79782007-07-26 10:41:03 -07001963 /* First we initialize the device list. Since console and network
1964 * device receive input from a file descriptor, we keep an fdset
1965 * (infds) and the maximum fd number (max_infd) with the head of the
Rusty Russella586d4f2008-02-04 23:49:56 -05001966 * list. We also keep a pointer to the last device. Finally, we keep
Rusty Russella6bd8e12008-03-28 11:05:53 -05001967 * the next interrupt number to use for devices (1: remember that 0 is
1968 * used by the timer). */
Rusty Russell17cbca22007-10-22 11:24:22 +10001969 FD_ZERO(&devices.infds);
1970 devices.max_infd = -1;
Rusty Russella586d4f2008-02-04 23:49:56 -05001971 devices.lastdev = NULL;
Rusty Russell17cbca22007-10-22 11:24:22 +10001972 devices.next_irq = 1;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001973
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001974 cpu_id = 0;
Rusty Russelldde79782007-07-26 10:41:03 -07001975 /* We need to know how much memory so we can set up the device
1976 * descriptor and memory pages for the devices as we parse the command
1977 * line. So we quickly look through the arguments to find the amount
1978 * of memory now. */
Rusty Russell6570c45992007-07-23 18:43:56 -07001979 for (i = 1; i < argc; i++) {
1980 if (argv[i][0] != '-') {
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001981 mem = atoi(argv[i]) * 1024 * 1024;
1982 /* We start by mapping anonymous pages over all of
1983 * guest-physical memory range. This fills it with 0,
1984 * and ensures that the Guest won't be killed when it
1985 * tries to access it. */
1986 guest_base = map_zeroed_pages(mem / getpagesize()
1987 + DEVICE_PAGES);
1988 guest_limit = mem;
1989 guest_max = mem + DEVICE_PAGES*getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10001990 devices.descpage = get_pages(1);
Rusty Russell6570c45992007-07-23 18:43:56 -07001991 break;
1992 }
1993 }
Rusty Russelldde79782007-07-26 10:41:03 -07001994
1995 /* The options are fairly straight-forward */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001996 while ((c = getopt_long(argc, argv, "v", opts, NULL)) != EOF) {
1997 switch (c) {
1998 case 'v':
1999 verbose = true;
2000 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002001 case 't':
Rusty Russell17cbca22007-10-22 11:24:22 +10002002 setup_tun_net(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002003 break;
2004 case 'b':
Rusty Russell17cbca22007-10-22 11:24:22 +10002005 setup_block_file(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002006 break;
Rusty Russell28fd6d72008-07-29 09:58:33 -05002007 case 'r':
2008 setup_rng();
2009 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002010 case 'i':
2011 initrd_name = optarg;
2012 break;
2013 default:
2014 warnx("Unknown argument %s", argv[optind]);
2015 usage();
2016 }
2017 }
Rusty Russelldde79782007-07-26 10:41:03 -07002018 /* After the other arguments we expect memory and kernel image name,
2019 * followed by command line arguments for the kernel. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002020 if (optind + 2 > argc)
2021 usage();
2022
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002023 verbose("Guest base is at %p\n", guest_base);
2024
Rusty Russelldde79782007-07-26 10:41:03 -07002025 /* We always have a console device */
Rusty Russell17cbca22007-10-22 11:24:22 +10002026 setup_console();
Rusty Russell8ca47e02007-07-19 01:49:29 -07002027
Rusty Russella1618832008-07-29 09:58:35 -05002028 /* We can timeout waiting for Guest network transmit. */
2029 setup_timeout();
2030
Rusty Russell8ca47e02007-07-19 01:49:29 -07002031 /* Now we load the kernel */
Rusty Russell47436aa2007-10-22 11:03:36 +10002032 start = load_kernel(open_or_die(argv[optind+1], O_RDONLY));
Rusty Russell8ca47e02007-07-19 01:49:29 -07002033
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002034 /* Boot information is stashed at physical address 0 */
2035 boot = from_guest_phys(0);
2036
Rusty Russelldde79782007-07-26 10:41:03 -07002037 /* Map the initrd image if requested (at top of physical memory) */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002038 if (initrd_name) {
2039 initrd_size = load_initrd(initrd_name, mem);
Rusty Russelldde79782007-07-26 10:41:03 -07002040 /* These are the location in the Linux boot header where the
2041 * start and size of the initrd are expected to be found. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002042 boot->hdr.ramdisk_image = mem - initrd_size;
2043 boot->hdr.ramdisk_size = initrd_size;
Rusty Russelldde79782007-07-26 10:41:03 -07002044 /* The bootloader type 0xFF means "unknown"; that's OK. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002045 boot->hdr.type_of_loader = 0xFF;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002046 }
2047
Rusty Russelldde79782007-07-26 10:41:03 -07002048 /* Set up the initial linear pagetables, starting below the initrd. */
Rusty Russell47436aa2007-10-22 11:03:36 +10002049 pgdir = setup_pagetables(mem, initrd_size);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002050
Rusty Russelldde79782007-07-26 10:41:03 -07002051 /* The Linux boot header contains an "E820" memory map: ours is a
2052 * simple, single region. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002053 boot->e820_entries = 1;
2054 boot->e820_map[0] = ((struct e820entry) { 0, mem, E820_RAM });
Rusty Russelldde79782007-07-26 10:41:03 -07002055 /* The boot header contains a command line pointer: we put the command
Rusty Russell43d33b22007-10-22 11:29:57 +10002056 * line after the boot header. */
2057 boot->hdr.cmd_line_ptr = to_guest_phys(boot + 1);
Rusty Russelle1e72962007-10-25 15:02:50 +10002058 /* We use a simple helper to copy the arguments separated by spaces. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002059 concat((char *)(boot + 1), argv+optind+2);
Rusty Russelldde79782007-07-26 10:41:03 -07002060
Rusty Russell814a0e52007-10-22 11:29:44 +10002061 /* Boot protocol version: 2.07 supports the fields for lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002062 boot->hdr.version = 0x207;
Rusty Russell814a0e52007-10-22 11:29:44 +10002063
2064 /* The hardware_subarch value of "1" tells the Guest it's an lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002065 boot->hdr.hardware_subarch = 1;
Rusty Russell814a0e52007-10-22 11:29:44 +10002066
Rusty Russell43d33b22007-10-22 11:29:57 +10002067 /* Tell the entry path not to try to reload segment registers. */
2068 boot->hdr.loadflags |= KEEP_SEGMENTS;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002069
Rusty Russelldde79782007-07-26 10:41:03 -07002070 /* We tell the kernel to initialize the Guest: this returns the open
2071 * /dev/lguest file descriptor. */
Rusty Russell47436aa2007-10-22 11:03:36 +10002072 lguest_fd = tell_kernel(pgdir, start);
Rusty Russelldde79782007-07-26 10:41:03 -07002073
2074 /* We fork off a child process, which wakes the Launcher whenever one
Rusty Russella6bd8e12008-03-28 11:05:53 -05002075 * of the input file descriptors needs attention. We call this the
2076 * Waker, and we'll cover it in a moment. */
Rusty Russell17cbca22007-10-22 11:24:22 +10002077 waker_fd = setup_waker(lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002078
Rusty Russelldde79782007-07-26 10:41:03 -07002079 /* Finally, run the Guest. This doesn't return. */
Rusty Russell17cbca22007-10-22 11:24:22 +10002080 run_guest(lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002081}
Rusty Russellf56a3842007-07-26 10:41:05 -07002082/*:*/
2083
2084/*M:999
2085 * Mastery is done: you now know everything I do.
2086 *
2087 * But surely you have seen code, features and bugs in your wanderings which
2088 * you now yearn to attack? That is the real game, and I look forward to you
2089 * patching and forking lguest into the Your-Name-Here-visor.
2090 *
2091 * Farewell, and good coding!
2092 * Rusty Russell.
2093 */