blob: b2bbbb7f8c57266f0d91a76235e4b98e9e2bec14 [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 Russellaa124982008-07-29 09:58:36 -050087static unsigned int timeout_usec = 500;
Rusty Russell8ca47e02007-07-19 01:49:29 -070088
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -020089/* a per-cpu variable indicating whose vcpu is currently running */
90static unsigned int __thread cpu_id;
91
Rusty Russelldde79782007-07-26 10:41:03 -070092/* This is our list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -070093struct device_list
94{
Rusty Russelldde79782007-07-26 10:41:03 -070095 /* Summary information about the devices in our list: ready to pass to
96 * select() to ask which need servicing.*/
Rusty Russell8ca47e02007-07-19 01:49:29 -070097 fd_set infds;
98 int max_infd;
99
Rusty Russell17cbca22007-10-22 11:24:22 +1000100 /* Counter to assign interrupt numbers. */
101 unsigned int next_irq;
102
103 /* Counter to print out convenient device numbers. */
104 unsigned int device_num;
105
Rusty Russelldde79782007-07-26 10:41:03 -0700106 /* The descriptor page for the devices. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000107 u8 *descpage;
108
Rusty Russelldde79782007-07-26 10:41:03 -0700109 /* A single linked list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700110 struct device *dev;
Rusty Russella586d4f2008-02-04 23:49:56 -0500111 /* And a pointer to the last device for easy append and also for
112 * configuration appending. */
113 struct device *lastdev;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700114};
115
Rusty Russell17cbca22007-10-22 11:24:22 +1000116/* The list of Guest devices, based on command line arguments. */
117static struct device_list devices;
118
Rusty Russelldde79782007-07-26 10:41:03 -0700119/* The device structure describes a single device. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700120struct device
121{
Rusty Russelldde79782007-07-26 10:41:03 -0700122 /* The linked-list pointer. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700123 struct device *next;
Rusty Russell17cbca22007-10-22 11:24:22 +1000124
125 /* The this device's descriptor, as mapped into the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700126 struct lguest_device_desc *desc;
Rusty Russell17cbca22007-10-22 11:24:22 +1000127
128 /* The name of this device, for --verbose. */
129 const char *name;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700130
Rusty Russelldde79782007-07-26 10:41:03 -0700131 /* If handle_input is set, it wants to be called when this file
132 * descriptor is ready. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700133 int fd;
134 bool (*handle_input)(int fd, struct device *me);
135
Rusty Russell17cbca22007-10-22 11:24:22 +1000136 /* Any queues attached to this device */
137 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700138
Rusty Russella007a752008-05-02 21:50:53 -0500139 /* Handle status being finalized (ie. feature bits stable). */
140 void (*ready)(struct device *me);
141
Rusty Russell8ca47e02007-07-19 01:49:29 -0700142 /* Device-specific data. */
143 void *priv;
144};
145
Rusty Russell17cbca22007-10-22 11:24:22 +1000146/* The virtqueue structure describes a queue attached to a device. */
147struct virtqueue
148{
149 struct virtqueue *next;
150
151 /* Which device owns me. */
152 struct device *dev;
153
154 /* The configuration for this queue. */
155 struct lguest_vqconfig config;
156
157 /* The actual ring of buffers. */
158 struct vring vring;
159
160 /* Last available index we saw. */
161 u16 last_avail_idx;
162
Rusty Russella1618832008-07-29 09:58:35 -0500163 /* The routine to call when the Guest pings us, or timeout. */
164 void (*handle_output)(int fd, struct virtqueue *me, bool timeout);
Rusty Russell20887612008-05-30 15:09:46 -0500165
166 /* Outstanding buffers */
167 unsigned int inflight;
Rusty Russella1618832008-07-29 09:58:35 -0500168
169 /* Is this blocked awaiting a timer? */
170 bool blocked;
Rusty Russell17cbca22007-10-22 11:24:22 +1000171};
172
Balaji Raoec04b132007-12-28 14:26:24 +0530173/* Remember the arguments to the program so we can "reboot" */
174static char **main_args;
175
Rusty Russell17cbca22007-10-22 11:24:22 +1000176/* Since guest is UP and we don't run at the same time, we don't need barriers.
177 * But I include them in the code in case others copy it. */
178#define wmb()
179
180/* Convert an iovec element to the given type.
181 *
182 * This is a fairly ugly trick: we need to know the size of the type and
183 * alignment requirement to check the pointer is kosher. It's also nice to
184 * have the name of the type in case we report failure.
185 *
186 * Typing those three things all the time is cumbersome and error prone, so we
187 * have a macro which sets them all up and passes to the real function. */
188#define convert(iov, type) \
189 ((type *)_convert((iov), sizeof(type), __alignof__(type), #type))
190
191static void *_convert(struct iovec *iov, size_t size, size_t align,
192 const char *name)
193{
194 if (iov->iov_len != size)
195 errx(1, "Bad iovec size %zu for %s", iov->iov_len, name);
196 if ((unsigned long)iov->iov_base % align != 0)
197 errx(1, "Bad alignment %p for %s", iov->iov_base, name);
198 return iov->iov_base;
199}
200
Rusty Russellb5111792008-07-29 09:58:34 -0500201/* Wrapper for the last available index. Makes it easier to change. */
202#define lg_last_avail(vq) ((vq)->last_avail_idx)
203
Rusty Russell17cbca22007-10-22 11:24:22 +1000204/* The virtio configuration space is defined to be little-endian. x86 is
205 * little-endian too, but it's nice to be explicit so we have these helpers. */
206#define cpu_to_le16(v16) (v16)
207#define cpu_to_le32(v32) (v32)
208#define cpu_to_le64(v64) (v64)
209#define le16_to_cpu(v16) (v16)
210#define le32_to_cpu(v32) (v32)
Rusty Russella586d4f2008-02-04 23:49:56 -0500211#define le64_to_cpu(v64) (v64)
Rusty Russell17cbca22007-10-22 11:24:22 +1000212
Rusty Russell28fd6d72008-07-29 09:58:33 -0500213/* Is this iovec empty? */
214static bool iov_empty(const struct iovec iov[], unsigned int num_iov)
215{
216 unsigned int i;
217
218 for (i = 0; i < num_iov; i++)
219 if (iov[i].iov_len)
220 return false;
221 return true;
222}
223
224/* Take len bytes from the front of this iovec. */
225static void iov_consume(struct iovec iov[], unsigned num_iov, unsigned len)
226{
227 unsigned int i;
228
229 for (i = 0; i < num_iov; i++) {
230 unsigned int used;
231
232 used = iov[i].iov_len < len ? iov[i].iov_len : len;
233 iov[i].iov_base += used;
234 iov[i].iov_len -= used;
235 len -= used;
236 }
237 assert(len == 0);
238}
239
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500240/* The device virtqueue descriptors are followed by feature bitmasks. */
241static u8 *get_feature_bits(struct device *dev)
242{
243 return (u8 *)(dev->desc + 1)
244 + dev->desc->num_vq * sizeof(struct lguest_vqconfig);
245}
246
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000247/*L:100 The Launcher code itself takes us out into userspace, that scary place
248 * where pointers run wild and free! Unfortunately, like most userspace
249 * programs, it's quite boring (which is why everyone likes to hack on the
250 * kernel!). Perhaps if you make up an Lguest Drinking Game at this point, it
251 * will get you through this section. Or, maybe not.
252 *
253 * The Launcher sets up a big chunk of memory to be the Guest's "physical"
254 * memory and stores it in "guest_base". In other words, Guest physical ==
255 * Launcher virtual with an offset.
256 *
257 * This can be tough to get your head around, but usually it just means that we
258 * use these trivial conversion functions when the Guest gives us it's
259 * "physical" addresses: */
260static void *from_guest_phys(unsigned long addr)
261{
262 return guest_base + addr;
263}
264
265static unsigned long to_guest_phys(const void *addr)
266{
267 return (addr - guest_base);
268}
269
Rusty Russelldde79782007-07-26 10:41:03 -0700270/*L:130
271 * Loading the Kernel.
272 *
273 * We start with couple of simple helper routines. open_or_die() avoids
274 * error-checking code cluttering the callers: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700275static int open_or_die(const char *name, int flags)
276{
277 int fd = open(name, flags);
278 if (fd < 0)
279 err(1, "Failed to open %s", name);
280 return fd;
281}
282
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000283/* map_zeroed_pages() takes a number of pages. */
284static void *map_zeroed_pages(unsigned int num)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700285{
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000286 int fd = open_or_die("/dev/zero", O_RDONLY);
287 void *addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700288
Rusty Russelldde79782007-07-26 10:41:03 -0700289 /* We use a private mapping (ie. if we write to the page, it will be
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000290 * copied). */
291 addr = mmap(NULL, getpagesize() * num,
292 PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, fd, 0);
293 if (addr == MAP_FAILED)
294 err(1, "Mmaping %u pages of /dev/zero", num);
Mark McLoughlin34bdaab2008-06-13 14:04:58 +0100295 close(fd);
Rusty Russelldde79782007-07-26 10:41:03 -0700296
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000297 return addr;
298}
299
300/* Get some more pages for a device. */
301static void *get_pages(unsigned int num)
302{
303 void *addr = from_guest_phys(guest_limit);
304
305 guest_limit += num * getpagesize();
306 if (guest_limit > guest_max)
307 errx(1, "Not enough memory for devices");
308 return addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700309}
310
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700311/* This routine is used to load the kernel or initrd. It tries mmap, but if
312 * that fails (Plan 9's kernel file isn't nicely aligned on page boundaries),
313 * it falls back to reading the memory in. */
314static void map_at(int fd, void *addr, unsigned long offset, unsigned long len)
315{
316 ssize_t r;
317
318 /* We map writable even though for some segments are marked read-only.
319 * The kernel really wants to be writable: it patches its own
320 * instructions.
321 *
322 * MAP_PRIVATE means that the page won't be copied until a write is
323 * done to it. This allows us to share untouched memory between
324 * Guests. */
325 if (mmap(addr, len, PROT_READ|PROT_WRITE|PROT_EXEC,
326 MAP_FIXED|MAP_PRIVATE, fd, offset) != MAP_FAILED)
327 return;
328
329 /* pread does a seek and a read in one shot: saves a few lines. */
330 r = pread(fd, addr, len, offset);
331 if (r != len)
332 err(1, "Reading offset %lu len %lu gave %zi", offset, len, r);
333}
334
Rusty Russelldde79782007-07-26 10:41:03 -0700335/* This routine takes an open vmlinux image, which is in ELF, and maps it into
336 * the Guest memory. ELF = Embedded Linking Format, which is the format used
337 * by all modern binaries on Linux including the kernel.
338 *
339 * The ELF headers give *two* addresses: a physical address, and a virtual
Rusty Russell47436aa2007-10-22 11:03:36 +1000340 * address. We use the physical address; the Guest will map itself to the
341 * virtual address.
Rusty Russelldde79782007-07-26 10:41:03 -0700342 *
343 * We return the starting address. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000344static unsigned long map_elf(int elf_fd, const Elf32_Ehdr *ehdr)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700345{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700346 Elf32_Phdr phdr[ehdr->e_phnum];
347 unsigned int i;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700348
Rusty Russelldde79782007-07-26 10:41:03 -0700349 /* Sanity checks on the main ELF header: an x86 executable with a
350 * reasonable number of correctly-sized program headers. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700351 if (ehdr->e_type != ET_EXEC
352 || ehdr->e_machine != EM_386
353 || ehdr->e_phentsize != sizeof(Elf32_Phdr)
354 || ehdr->e_phnum < 1 || ehdr->e_phnum > 65536U/sizeof(Elf32_Phdr))
355 errx(1, "Malformed elf header");
356
Rusty Russelldde79782007-07-26 10:41:03 -0700357 /* An ELF executable contains an ELF header and a number of "program"
358 * headers which indicate which parts ("segments") of the program to
359 * load where. */
360
361 /* We read in all the program headers at once: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700362 if (lseek(elf_fd, ehdr->e_phoff, SEEK_SET) < 0)
363 err(1, "Seeking to program headers");
364 if (read(elf_fd, phdr, sizeof(phdr)) != sizeof(phdr))
365 err(1, "Reading program headers");
366
Rusty Russelldde79782007-07-26 10:41:03 -0700367 /* Try all the headers: there are usually only three. A read-only one,
Rusty Russella6bd8e12008-03-28 11:05:53 -0500368 * a read-write one, and a "note" section which we don't load. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700369 for (i = 0; i < ehdr->e_phnum; i++) {
Rusty Russelldde79782007-07-26 10:41:03 -0700370 /* If this isn't a loadable segment, we ignore it */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700371 if (phdr[i].p_type != PT_LOAD)
372 continue;
373
374 verbose("Section %i: size %i addr %p\n",
375 i, phdr[i].p_memsz, (void *)phdr[i].p_paddr);
376
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700377 /* We map this section of the file at its physical address. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000378 map_at(elf_fd, from_guest_phys(phdr[i].p_paddr),
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700379 phdr[i].p_offset, phdr[i].p_filesz);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700380 }
381
Rusty Russell814a0e52007-10-22 11:29:44 +1000382 /* The entry point is given in the ELF header. */
383 return ehdr->e_entry;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700384}
385
Rusty Russelldde79782007-07-26 10:41:03 -0700386/*L:150 A bzImage, unlike an ELF file, is not meant to be loaded. You're
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000387 * supposed to jump into it and it will unpack itself. We used to have to
388 * perform some hairy magic because the unpacking code scared me.
Rusty Russelldde79782007-07-26 10:41:03 -0700389 *
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000390 * Fortunately, Jeremy Fitzhardinge convinced me it wasn't that hard and wrote
391 * a small patch to jump over the tricky bits in the Guest, so now we just read
392 * the funky header so we know where in the file to load, and away we go! */
Rusty Russell47436aa2007-10-22 11:03:36 +1000393static unsigned long load_bzimage(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700394{
Rusty Russell43d33b22007-10-22 11:29:57 +1000395 struct boot_params boot;
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000396 int r;
397 /* Modern bzImages get loaded at 1M. */
398 void *p = from_guest_phys(0x100000);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700399
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000400 /* Go back to the start of the file and read the header. It should be
401 * a Linux boot header (see Documentation/i386/boot.txt) */
402 lseek(fd, 0, SEEK_SET);
Rusty Russell43d33b22007-10-22 11:29:57 +1000403 read(fd, &boot, sizeof(boot));
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000404
Rusty Russell43d33b22007-10-22 11:29:57 +1000405 /* Inside the setup_hdr, we expect the magic "HdrS" */
406 if (memcmp(&boot.hdr.header, "HdrS", 4) != 0)
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000407 errx(1, "This doesn't look like a bzImage to me");
408
Rusty Russell43d33b22007-10-22 11:29:57 +1000409 /* Skip over the extra sectors of the header. */
410 lseek(fd, (boot.hdr.setup_sects+1) * 512, SEEK_SET);
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000411
412 /* Now read everything into memory. in nice big chunks. */
413 while ((r = read(fd, p, 65536)) > 0)
414 p += r;
415
Rusty Russell43d33b22007-10-22 11:29:57 +1000416 /* Finally, code32_start tells us where to enter the kernel. */
417 return boot.hdr.code32_start;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700418}
419
Rusty Russelldde79782007-07-26 10:41:03 -0700420/*L:140 Loading the kernel is easy when it's a "vmlinux", but most kernels
Rusty Russelle1e72962007-10-25 15:02:50 +1000421 * come wrapped up in the self-decompressing "bzImage" format. With a little
422 * work, we can load those, too. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000423static unsigned long load_kernel(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700424{
425 Elf32_Ehdr hdr;
426
Rusty Russelldde79782007-07-26 10:41:03 -0700427 /* Read in the first few bytes. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700428 if (read(fd, &hdr, sizeof(hdr)) != sizeof(hdr))
429 err(1, "Reading kernel");
430
Rusty Russelldde79782007-07-26 10:41:03 -0700431 /* If it's an ELF file, it starts with "\177ELF" */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700432 if (memcmp(hdr.e_ident, ELFMAG, SELFMAG) == 0)
Rusty Russell47436aa2007-10-22 11:03:36 +1000433 return map_elf(fd, &hdr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700434
Rusty Russella6bd8e12008-03-28 11:05:53 -0500435 /* Otherwise we assume it's a bzImage, and try to load it. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000436 return load_bzimage(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700437}
438
Rusty Russelldde79782007-07-26 10:41:03 -0700439/* This is a trivial little helper to align pages. Andi Kleen hated it because
440 * it calls getpagesize() twice: "it's dumb code."
441 *
442 * Kernel guys get really het up about optimization, even when it's not
443 * necessary. I leave this code as a reaction against that. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700444static inline unsigned long page_align(unsigned long addr)
445{
Rusty Russelldde79782007-07-26 10:41:03 -0700446 /* Add upwards and truncate downwards. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700447 return ((addr + getpagesize()-1) & ~(getpagesize()-1));
448}
449
Rusty Russelldde79782007-07-26 10:41:03 -0700450/*L:180 An "initial ram disk" is a disk image loaded into memory along with
451 * the kernel which the kernel can use to boot from without needing any
452 * drivers. Most distributions now use this as standard: the initrd contains
453 * the code to load the appropriate driver modules for the current machine.
454 *
455 * Importantly, James Morris works for RedHat, and Fedora uses initrds for its
456 * kernels. He sent me this (and tells me when I break it). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700457static unsigned long load_initrd(const char *name, unsigned long mem)
458{
459 int ifd;
460 struct stat st;
461 unsigned long len;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700462
463 ifd = open_or_die(name, O_RDONLY);
Rusty Russelldde79782007-07-26 10:41:03 -0700464 /* fstat() is needed to get the file size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700465 if (fstat(ifd, &st) < 0)
466 err(1, "fstat() on initrd '%s'", name);
467
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700468 /* We map the initrd at the top of memory, but mmap wants it to be
469 * page-aligned, so we round the size up for that. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700470 len = page_align(st.st_size);
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000471 map_at(ifd, from_guest_phys(mem - len), 0, st.st_size);
Rusty Russelldde79782007-07-26 10:41:03 -0700472 /* Once a file is mapped, you can close the file descriptor. It's a
473 * little odd, but quite useful. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700474 close(ifd);
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700475 verbose("mapped initrd %s size=%lu @ %p\n", name, len, (void*)mem-len);
Rusty Russelldde79782007-07-26 10:41:03 -0700476
477 /* We return the initrd size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700478 return len;
479}
480
Rusty Russella6bd8e12008-03-28 11:05:53 -0500481/* Once we know how much memory we have we can construct simple linear page
Rusty Russell47436aa2007-10-22 11:03:36 +1000482 * tables which set virtual == physical which will get the Guest far enough
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000483 * into the boot to create its own.
Rusty Russelldde79782007-07-26 10:41:03 -0700484 *
485 * We lay them out of the way, just below the initrd (which is why we need to
Rusty Russella6bd8e12008-03-28 11:05:53 -0500486 * know its size here). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700487static unsigned long setup_pagetables(unsigned long mem,
Rusty Russell47436aa2007-10-22 11:03:36 +1000488 unsigned long initrd_size)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700489{
Jes Sorensen511801d2007-10-22 11:03:31 +1000490 unsigned long *pgdir, *linear;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700491 unsigned int mapped_pages, i, linear_pages;
Jes Sorensen511801d2007-10-22 11:03:31 +1000492 unsigned int ptes_per_page = getpagesize()/sizeof(void *);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700493
Rusty Russell47436aa2007-10-22 11:03:36 +1000494 mapped_pages = mem/getpagesize();
Rusty Russell8ca47e02007-07-19 01:49:29 -0700495
Rusty Russelldde79782007-07-26 10:41:03 -0700496 /* Each PTE page can map ptes_per_page pages: how many do we need? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700497 linear_pages = (mapped_pages + ptes_per_page-1)/ptes_per_page;
498
Rusty Russelldde79782007-07-26 10:41:03 -0700499 /* We put the toplevel page directory page at the top of memory. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000500 pgdir = from_guest_phys(mem) - initrd_size - getpagesize();
Rusty Russelldde79782007-07-26 10:41:03 -0700501
502 /* Now we use the next linear_pages pages as pte pages */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700503 linear = (void *)pgdir - linear_pages*getpagesize();
504
Rusty Russelldde79782007-07-26 10:41:03 -0700505 /* Linear mapping is easy: put every page's address into the mapping in
506 * order. PAGE_PRESENT contains the flags Present, Writable and
507 * Executable. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700508 for (i = 0; i < mapped_pages; i++)
509 linear[i] = ((i * getpagesize()) | PAGE_PRESENT);
510
Rusty Russell47436aa2007-10-22 11:03:36 +1000511 /* The top level points to the linear page table pages above. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700512 for (i = 0; i < mapped_pages; i += ptes_per_page) {
Rusty Russell47436aa2007-10-22 11:03:36 +1000513 pgdir[i/ptes_per_page]
Jes Sorensen511801d2007-10-22 11:03:31 +1000514 = ((to_guest_phys(linear) + i*sizeof(void *))
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000515 | PAGE_PRESENT);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700516 }
517
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000518 verbose("Linear mapping of %u pages in %u pte pages at %#lx\n",
519 mapped_pages, linear_pages, to_guest_phys(linear));
Rusty Russell8ca47e02007-07-19 01:49:29 -0700520
Rusty Russelldde79782007-07-26 10:41:03 -0700521 /* We return the top level (guest-physical) address: the kernel needs
522 * to know where it is. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000523 return to_guest_phys(pgdir);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700524}
Rusty Russelle1e72962007-10-25 15:02:50 +1000525/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700526
Rusty Russelldde79782007-07-26 10:41:03 -0700527/* Simple routine to roll all the commandline arguments together with spaces
528 * between them. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700529static void concat(char *dst, char *args[])
530{
531 unsigned int i, len = 0;
532
533 for (i = 0; args[i]; i++) {
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100534 if (i) {
535 strcat(dst+len, " ");
536 len++;
537 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700538 strcpy(dst+len, args[i]);
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100539 len += strlen(args[i]);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700540 }
541 /* In case it's empty. */
542 dst[len] = '\0';
543}
544
Rusty Russelle1e72962007-10-25 15:02:50 +1000545/*L:185 This is where we actually tell the kernel to initialize the Guest. We
546 * saw the arguments it expects when we looked at initialize() in lguest_user.c:
547 * the base of Guest "physical" memory, the top physical page to allow, the
Rusty Russell47436aa2007-10-22 11:03:36 +1000548 * top level pagetable and the entry point for the Guest. */
549static int tell_kernel(unsigned long pgdir, unsigned long start)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700550{
Jes Sorensen511801d2007-10-22 11:03:31 +1000551 unsigned long args[] = { LHREQ_INITIALIZE,
552 (unsigned long)guest_base,
Rusty Russell47436aa2007-10-22 11:03:36 +1000553 guest_limit / getpagesize(), pgdir, start };
Rusty Russell8ca47e02007-07-19 01:49:29 -0700554 int fd;
555
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000556 verbose("Guest: %p - %p (%#lx)\n",
557 guest_base, guest_base + guest_limit, guest_limit);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700558 fd = open_or_die("/dev/lguest", O_RDWR);
559 if (write(fd, args, sizeof(args)) < 0)
560 err(1, "Writing to /dev/lguest");
Rusty Russelldde79782007-07-26 10:41:03 -0700561
562 /* We return the /dev/lguest file descriptor to control this Guest */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700563 return fd;
564}
Rusty Russelldde79782007-07-26 10:41:03 -0700565/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700566
Rusty Russell17cbca22007-10-22 11:24:22 +1000567static void add_device_fd(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700568{
Rusty Russell17cbca22007-10-22 11:24:22 +1000569 FD_SET(fd, &devices.infds);
570 if (fd > devices.max_infd)
571 devices.max_infd = fd;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700572}
573
Rusty Russelldde79782007-07-26 10:41:03 -0700574/*L:200
575 * The Waker.
576 *
Rusty Russelle1e72962007-10-25 15:02:50 +1000577 * With console, block and network devices, we can have lots of input which we
578 * need to process. We could try to tell the kernel what file descriptors to
579 * watch, but handing a file descriptor mask through to the kernel is fairly
580 * icky.
Rusty Russelldde79782007-07-26 10:41:03 -0700581 *
582 * Instead, we fork off a process which watches the file descriptors and writes
Rusty Russelle1e72962007-10-25 15:02:50 +1000583 * the LHREQ_BREAK command to the /dev/lguest file descriptor to tell the Host
584 * stop running the Guest. This causes the Launcher to return from the
Rusty Russelldde79782007-07-26 10:41:03 -0700585 * /dev/lguest read with -EAGAIN, where it will write to /dev/lguest to reset
586 * the LHREQ_BREAK and wake us up again.
587 *
588 * This, of course, is merely a different *kind* of icky.
589 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000590static void wake_parent(int pipefd, int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700591{
Rusty Russelldde79782007-07-26 10:41:03 -0700592 /* Add the pipe from the Launcher to the fdset in the device_list, so
593 * we watch it, too. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000594 add_device_fd(pipefd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700595
596 for (;;) {
Rusty Russell17cbca22007-10-22 11:24:22 +1000597 fd_set rfds = devices.infds;
Jes Sorensen511801d2007-10-22 11:03:31 +1000598 unsigned long args[] = { LHREQ_BREAK, 1 };
Rusty Russell8ca47e02007-07-19 01:49:29 -0700599
Rusty Russelldde79782007-07-26 10:41:03 -0700600 /* Wait until input is ready from one of the devices. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000601 select(devices.max_infd+1, &rfds, NULL, NULL, NULL);
Rusty Russelldde79782007-07-26 10:41:03 -0700602 /* Is it a message from the Launcher? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700603 if (FD_ISSET(pipefd, &rfds)) {
Rusty Russell56ae43d2007-10-22 11:24:23 +1000604 int fd;
Rusty Russelldde79782007-07-26 10:41:03 -0700605 /* If read() returns 0, it means the Launcher has
606 * exited. We silently follow. */
Rusty Russell56ae43d2007-10-22 11:24:23 +1000607 if (read(pipefd, &fd, sizeof(fd)) == 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700608 exit(0);
Rusty Russell56ae43d2007-10-22 11:24:23 +1000609 /* Otherwise it's telling us to change what file
Rusty Russelle1e72962007-10-25 15:02:50 +1000610 * descriptors we're to listen to. Positive means
611 * listen to a new one, negative means stop
612 * listening. */
Rusty Russell56ae43d2007-10-22 11:24:23 +1000613 if (fd >= 0)
614 FD_SET(fd, &devices.infds);
615 else
616 FD_CLR(-fd - 1, &devices.infds);
Rusty Russelldde79782007-07-26 10:41:03 -0700617 } else /* Send LHREQ_BREAK command. */
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -0200618 pwrite(lguest_fd, args, sizeof(args), cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700619 }
620}
621
Rusty Russelldde79782007-07-26 10:41:03 -0700622/* This routine just sets up a pipe to the Waker process. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000623static int setup_waker(int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700624{
625 int pipefd[2], child;
626
Rusty Russelle1e72962007-10-25 15:02:50 +1000627 /* We create a pipe to talk to the Waker, and also so it knows when the
Rusty Russelldde79782007-07-26 10:41:03 -0700628 * Launcher dies (and closes pipe). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700629 pipe(pipefd);
630 child = fork();
631 if (child == -1)
632 err(1, "forking");
633
634 if (child == 0) {
Rusty Russelle1e72962007-10-25 15:02:50 +1000635 /* We are the Waker: close the "writing" end of our copy of the
636 * pipe and start waiting for input. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700637 close(pipefd[1]);
Rusty Russell17cbca22007-10-22 11:24:22 +1000638 wake_parent(pipefd[0], lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700639 }
Rusty Russelldde79782007-07-26 10:41:03 -0700640 /* Close the reading end of our copy of the pipe. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700641 close(pipefd[0]);
642
Rusty Russelldde79782007-07-26 10:41:03 -0700643 /* Here is the fd used to talk to the waker. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700644 return pipefd[1];
645}
646
Rusty Russelle1e72962007-10-25 15:02:50 +1000647/*
Rusty Russelldde79782007-07-26 10:41:03 -0700648 * Device Handling.
649 *
Rusty Russelle1e72962007-10-25 15:02:50 +1000650 * When the Guest gives us a buffer, it sends an array of addresses and sizes.
Rusty Russelldde79782007-07-26 10:41:03 -0700651 * We need to make sure it's not trying to reach into the Launcher itself, so
Rusty Russelle1e72962007-10-25 15:02:50 +1000652 * we have a convenient routine which checks it and exits with an error message
Rusty Russelldde79782007-07-26 10:41:03 -0700653 * if something funny is going on:
654 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700655static void *_check_pointer(unsigned long addr, unsigned int size,
656 unsigned int line)
657{
Rusty Russelldde79782007-07-26 10:41:03 -0700658 /* We have to separately check addr and addr+size, because size could
659 * be huge and addr + size might wrap around. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000660 if (addr >= guest_limit || addr + size >= guest_limit)
Rusty Russell17cbca22007-10-22 11:24:22 +1000661 errx(1, "%s:%i: Invalid address %#lx", __FILE__, line, addr);
Rusty Russelldde79782007-07-26 10:41:03 -0700662 /* We return a pointer for the caller's convenience, now we know it's
663 * safe to use. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000664 return from_guest_phys(addr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700665}
Rusty Russelldde79782007-07-26 10:41:03 -0700666/* A macro which transparently hands the line number to the real function. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700667#define check_pointer(addr,size) _check_pointer(addr, size, __LINE__)
668
Rusty Russelle1e72962007-10-25 15:02:50 +1000669/* Each buffer in the virtqueues is actually a chain of descriptors. This
670 * function returns the next descriptor in the chain, or vq->vring.num if we're
671 * at the end. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000672static unsigned next_desc(struct virtqueue *vq, unsigned int i)
673{
674 unsigned int next;
675
676 /* If this descriptor says it doesn't chain, we're done. */
677 if (!(vq->vring.desc[i].flags & VRING_DESC_F_NEXT))
678 return vq->vring.num;
679
680 /* Check they're not leading us off end of descriptors. */
681 next = vq->vring.desc[i].next;
682 /* Make sure compiler knows to grab that: we don't want it changing! */
683 wmb();
684
685 if (next >= vq->vring.num)
686 errx(1, "Desc next is %u", next);
687
688 return next;
689}
690
691/* This looks in the virtqueue and for the first available buffer, and converts
692 * it to an iovec for convenient access. Since descriptors consist of some
693 * number of output then some number of input descriptors, it's actually two
694 * iovecs, but we pack them into one and note how many of each there were.
695 *
696 * This function returns the descriptor number found, or vq->vring.num (which
697 * is never a valid descriptor number) if none was found. */
698static unsigned get_vq_desc(struct virtqueue *vq,
699 struct iovec iov[],
700 unsigned int *out_num, unsigned int *in_num)
701{
702 unsigned int i, head;
Rusty Russellb5111792008-07-29 09:58:34 -0500703 u16 last_avail;
Rusty Russell17cbca22007-10-22 11:24:22 +1000704
705 /* Check it isn't doing very strange things with descriptor numbers. */
Rusty Russellb5111792008-07-29 09:58:34 -0500706 last_avail = lg_last_avail(vq);
707 if ((u16)(vq->vring.avail->idx - last_avail) > vq->vring.num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000708 errx(1, "Guest moved used index from %u to %u",
Rusty Russellb5111792008-07-29 09:58:34 -0500709 last_avail, vq->vring.avail->idx);
Rusty Russell17cbca22007-10-22 11:24:22 +1000710
711 /* If there's nothing new since last we looked, return invalid. */
Rusty Russellb5111792008-07-29 09:58:34 -0500712 if (vq->vring.avail->idx == last_avail)
Rusty Russell17cbca22007-10-22 11:24:22 +1000713 return vq->vring.num;
714
715 /* Grab the next descriptor number they're advertising, and increment
716 * the index we've seen. */
Rusty Russellb5111792008-07-29 09:58:34 -0500717 head = vq->vring.avail->ring[last_avail % vq->vring.num];
718 lg_last_avail(vq)++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000719
720 /* If their number is silly, that's a fatal mistake. */
721 if (head >= vq->vring.num)
722 errx(1, "Guest says index %u is available", head);
723
724 /* When we start there are none of either input nor output. */
725 *out_num = *in_num = 0;
726
727 i = head;
728 do {
729 /* Grab the first descriptor, and check it's OK. */
730 iov[*out_num + *in_num].iov_len = vq->vring.desc[i].len;
731 iov[*out_num + *in_num].iov_base
732 = check_pointer(vq->vring.desc[i].addr,
733 vq->vring.desc[i].len);
734 /* If this is an input descriptor, increment that count. */
735 if (vq->vring.desc[i].flags & VRING_DESC_F_WRITE)
736 (*in_num)++;
737 else {
738 /* If it's an output descriptor, they're all supposed
739 * to come before any input descriptors. */
740 if (*in_num)
741 errx(1, "Descriptor has out after in");
742 (*out_num)++;
743 }
744
745 /* If we've got too many, that implies a descriptor loop. */
746 if (*out_num + *in_num > vq->vring.num)
747 errx(1, "Looped descriptor");
748 } while ((i = next_desc(vq, i)) != vq->vring.num);
749
Rusty Russell20887612008-05-30 15:09:46 -0500750 vq->inflight++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000751 return head;
752}
753
Rusty Russelle1e72962007-10-25 15:02:50 +1000754/* After we've used one of their buffers, we tell them about it. We'll then
Rusty Russell17cbca22007-10-22 11:24:22 +1000755 * want to send them an interrupt, using trigger_irq(). */
756static void add_used(struct virtqueue *vq, unsigned int head, int len)
757{
758 struct vring_used_elem *used;
759
Rusty Russelle1e72962007-10-25 15:02:50 +1000760 /* The virtqueue contains a ring of used buffers. Get a pointer to the
761 * next entry in that used ring. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000762 used = &vq->vring.used->ring[vq->vring.used->idx % vq->vring.num];
763 used->id = head;
764 used->len = len;
765 /* Make sure buffer is written before we update index. */
766 wmb();
767 vq->vring.used->idx++;
Rusty Russell20887612008-05-30 15:09:46 -0500768 vq->inflight--;
Rusty Russell17cbca22007-10-22 11:24:22 +1000769}
770
771/* This actually sends the interrupt for this virtqueue */
772static void trigger_irq(int fd, struct virtqueue *vq)
773{
774 unsigned long buf[] = { LHREQ_IRQ, vq->config.irq };
775
Rusty Russell20887612008-05-30 15:09:46 -0500776 /* If they don't want an interrupt, don't send one, unless empty. */
777 if ((vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT)
778 && vq->inflight)
Rusty Russell17cbca22007-10-22 11:24:22 +1000779 return;
780
781 /* Send the Guest an interrupt tell them we used something up. */
782 if (write(fd, buf, sizeof(buf)) != 0)
783 err(1, "Triggering irq %i", vq->config.irq);
784}
785
786/* And here's the combo meal deal. Supersize me! */
787static void add_used_and_trigger(int fd, struct virtqueue *vq,
788 unsigned int head, int len)
789{
790 add_used(vq, head, len);
791 trigger_irq(fd, vq);
792}
793
Rusty Russelle1e72962007-10-25 15:02:50 +1000794/*
795 * The Console
796 *
797 * Here is the input terminal setting we save, and the routine to restore them
798 * on exit so the user gets their terminal back. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700799static struct termios orig_term;
800static void restore_term(void)
801{
802 tcsetattr(STDIN_FILENO, TCSANOW, &orig_term);
803}
804
Rusty Russelldde79782007-07-26 10:41:03 -0700805/* We associate some data with the console for our exit hack. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700806struct console_abort
807{
Rusty Russelldde79782007-07-26 10:41:03 -0700808 /* How many times have they hit ^C? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700809 int count;
Rusty Russelldde79782007-07-26 10:41:03 -0700810 /* When did they start? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700811 struct timeval start;
812};
813
Rusty Russelldde79782007-07-26 10:41:03 -0700814/* This is the routine which handles console input (ie. stdin). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700815static bool handle_console_input(int fd, struct device *dev)
816{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700817 int len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000818 unsigned int head, in_num, out_num;
819 struct iovec iov[dev->vq->vring.num];
Rusty Russell8ca47e02007-07-19 01:49:29 -0700820 struct console_abort *abort = dev->priv;
821
Rusty Russell17cbca22007-10-22 11:24:22 +1000822 /* First we need a console buffer from the Guests's input virtqueue. */
823 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
Rusty Russell56ae43d2007-10-22 11:24:23 +1000824
825 /* If they're not ready for input, stop listening to this file
826 * descriptor. We'll start again once they add an input buffer. */
827 if (head == dev->vq->vring.num)
828 return false;
829
830 if (out_num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000831 errx(1, "Output buffers in console in queue?");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700832
Rusty Russelldde79782007-07-26 10:41:03 -0700833 /* This is why we convert to iovecs: the readv() call uses them, and so
834 * it reads straight into the Guest's buffer. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000835 len = readv(dev->fd, iov, in_num);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700836 if (len <= 0) {
Rusty Russelldde79782007-07-26 10:41:03 -0700837 /* This implies that the console is closed, is /dev/null, or
Rusty Russell17cbca22007-10-22 11:24:22 +1000838 * something went terribly wrong. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700839 warnx("Failed to get console input, ignoring console.");
Rusty Russell56ae43d2007-10-22 11:24:23 +1000840 /* Put the input terminal back. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000841 restore_term();
Rusty Russell56ae43d2007-10-22 11:24:23 +1000842 /* Remove callback from input vq, so it doesn't restart us. */
843 dev->vq->handle_output = NULL;
844 /* Stop listening to this fd: don't call us again. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000845 return false;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700846 }
847
Rusty Russell56ae43d2007-10-22 11:24:23 +1000848 /* Tell the Guest about the new input. */
849 add_used_and_trigger(fd, dev->vq, head, len);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700850
Rusty Russelldde79782007-07-26 10:41:03 -0700851 /* Three ^C within one second? Exit.
852 *
853 * This is such a hack, but works surprisingly well. Each ^C has to be
854 * in a buffer by itself, so they can't be too fast. But we check that
855 * we get three within about a second, so they can't be too slow. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700856 if (len == 1 && ((char *)iov[0].iov_base)[0] == 3) {
857 if (!abort->count++)
858 gettimeofday(&abort->start, NULL);
859 else if (abort->count == 3) {
860 struct timeval now;
861 gettimeofday(&now, NULL);
862 if (now.tv_sec <= abort->start.tv_sec+1) {
Jes Sorensen511801d2007-10-22 11:03:31 +1000863 unsigned long args[] = { LHREQ_BREAK, 0 };
Rusty Russelldde79782007-07-26 10:41:03 -0700864 /* Close the fd so Waker will know it has to
865 * exit. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700866 close(waker_fd);
Rusty Russelldde79782007-07-26 10:41:03 -0700867 /* Just in case waker is blocked in BREAK, send
868 * unbreak now. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700869 write(fd, args, sizeof(args));
870 exit(2);
871 }
872 abort->count = 0;
873 }
874 } else
Rusty Russelldde79782007-07-26 10:41:03 -0700875 /* Any other key resets the abort counter. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700876 abort->count = 0;
877
Rusty Russelldde79782007-07-26 10:41:03 -0700878 /* Everything went OK! */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700879 return true;
880}
881
Rusty Russell17cbca22007-10-22 11:24:22 +1000882/* Handling output for console is simple: we just get all the output buffers
883 * and write them to stdout. */
Rusty Russella1618832008-07-29 09:58:35 -0500884static void handle_console_output(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700885{
Rusty Russell17cbca22007-10-22 11:24:22 +1000886 unsigned int head, out, in;
887 int len;
888 struct iovec iov[vq->vring.num];
889
890 /* Keep getting output buffers from the Guest until we run out. */
891 while ((head = get_vq_desc(vq, iov, &out, &in)) != vq->vring.num) {
892 if (in)
893 errx(1, "Input buffers in output queue?");
894 len = writev(STDOUT_FILENO, iov, out);
895 add_used_and_trigger(fd, vq, head, len);
896 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700897}
898
Rusty Russella1618832008-07-29 09:58:35 -0500899static void block_vq(struct virtqueue *vq)
900{
901 struct itimerval itm;
902
903 vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY;
904 vq->blocked = true;
905
906 itm.it_interval.tv_sec = 0;
907 itm.it_interval.tv_usec = 0;
908 itm.it_value.tv_sec = 0;
Rusty Russellaa124982008-07-29 09:58:36 -0500909 itm.it_value.tv_usec = timeout_usec;
Rusty Russella1618832008-07-29 09:58:35 -0500910
911 setitimer(ITIMER_REAL, &itm, NULL);
912}
913
Rusty Russelle1e72962007-10-25 15:02:50 +1000914/*
915 * The Network
916 *
917 * Handling output for network is also simple: we get all the output buffers
Rusty Russell17cbca22007-10-22 11:24:22 +1000918 * and write them (ignoring the first element) to this device's file descriptor
Rusty Russella6bd8e12008-03-28 11:05:53 -0500919 * (/dev/net/tun).
920 */
Rusty Russella1618832008-07-29 09:58:35 -0500921static void handle_net_output(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700922{
Rusty Russella1618832008-07-29 09:58:35 -0500923 unsigned int head, out, in, num = 0;
Rusty Russell17cbca22007-10-22 11:24:22 +1000924 int len;
925 struct iovec iov[vq->vring.num];
Rusty Russellaa124982008-07-29 09:58:36 -0500926 static int last_timeout_num;
Rusty Russell17cbca22007-10-22 11:24:22 +1000927
928 /* Keep getting output buffers from the Guest until we run out. */
929 while ((head = get_vq_desc(vq, iov, &out, &in)) != vq->vring.num) {
930 if (in)
931 errx(1, "Input buffers in output queue?");
Rusty Russelle1e72962007-10-25 15:02:50 +1000932 /* Check header, but otherwise ignore it (we told the Guest we
933 * supported no features, so it shouldn't have anything
934 * interesting). */
Rusty Russell17cbca22007-10-22 11:24:22 +1000935 (void)convert(&iov[0], struct virtio_net_hdr);
936 len = writev(vq->dev->fd, iov+1, out-1);
937 add_used_and_trigger(fd, vq, head, len);
Rusty Russella1618832008-07-29 09:58:35 -0500938 num++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000939 }
Rusty Russella1618832008-07-29 09:58:35 -0500940
941 /* Block further kicks and set up a timer if we saw anything. */
942 if (!timeout && num)
943 block_vq(vq);
Rusty Russellaa124982008-07-29 09:58:36 -0500944
945 if (timeout) {
946 if (num < last_timeout_num)
947 timeout_usec += 10;
948 else if (timeout_usec > 1)
949 timeout_usec--;
950 last_timeout_num = num;
951 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700952}
953
Rusty Russell17cbca22007-10-22 11:24:22 +1000954/* This is where we handle a packet coming in from the tun device to our
955 * Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700956static bool handle_tun_input(int fd, struct device *dev)
957{
Rusty Russell17cbca22007-10-22 11:24:22 +1000958 unsigned int head, in_num, out_num;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700959 int len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000960 struct iovec iov[dev->vq->vring.num];
961 struct virtio_net_hdr *hdr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700962
Rusty Russell17cbca22007-10-22 11:24:22 +1000963 /* First we need a network buffer from the Guests's recv virtqueue. */
964 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
965 if (head == dev->vq->vring.num) {
Rusty Russelldde79782007-07-26 10:41:03 -0700966 /* Now, it's expected that if we try to send a packet too
Rusty Russell17cbca22007-10-22 11:24:22 +1000967 * early, the Guest won't be ready yet. Wait until the device
968 * status says it's ready. */
969 /* FIXME: Actually want DRIVER_ACTIVE here. */
970 if (dev->desc->status & VIRTIO_CONFIG_S_DRIVER_OK)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700971 warn("network: no dma buffer!");
Rusty Russell5dae7852008-07-29 09:58:35 -0500972
973 /* Now tell it we want to know if new things appear. */
974 dev->vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY;
975 wmb();
976
Rusty Russell56ae43d2007-10-22 11:24:23 +1000977 /* We'll turn this back on if input buffers are registered. */
978 return false;
Rusty Russell17cbca22007-10-22 11:24:22 +1000979 } else if (out_num)
980 errx(1, "Output buffers in network recv queue?");
981
982 /* First element is the header: we set it to 0 (no features). */
983 hdr = convert(&iov[0], struct virtio_net_hdr);
984 hdr->flags = 0;
985 hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700986
Rusty Russelldde79782007-07-26 10:41:03 -0700987 /* Read the packet from the device directly into the Guest's buffer. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000988 len = readv(dev->fd, iov+1, in_num-1);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700989 if (len <= 0)
990 err(1, "reading network");
Rusty Russelldde79782007-07-26 10:41:03 -0700991
Rusty Russell56ae43d2007-10-22 11:24:23 +1000992 /* Tell the Guest about the new packet. */
993 add_used_and_trigger(fd, dev->vq, head, sizeof(*hdr) + len);
Rusty Russell17cbca22007-10-22 11:24:22 +1000994
Rusty Russell8ca47e02007-07-19 01:49:29 -0700995 verbose("tun input packet len %i [%02x %02x] (%s)\n", len,
Rusty Russell17cbca22007-10-22 11:24:22 +1000996 ((u8 *)iov[1].iov_base)[0], ((u8 *)iov[1].iov_base)[1],
997 head != dev->vq->vring.num ? "sent" : "discarded");
998
Rusty Russelldde79782007-07-26 10:41:03 -0700999 /* All good. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001000 return true;
1001}
1002
Rusty Russelle1e72962007-10-25 15:02:50 +10001003/*L:215 This is the callback attached to the network and console input
1004 * virtqueues: it ensures we try again, in case we stopped console or net
Rusty Russell56ae43d2007-10-22 11:24:23 +10001005 * delivery because Guest didn't have any buffers. */
Rusty Russella1618832008-07-29 09:58:35 -05001006static void enable_fd(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell56ae43d2007-10-22 11:24:23 +10001007{
1008 add_device_fd(vq->dev->fd);
1009 /* Tell waker to listen to it again */
1010 write(waker_fd, &vq->dev->fd, sizeof(vq->dev->fd));
1011}
1012
Rusty Russella1618832008-07-29 09:58:35 -05001013static void net_enable_fd(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell5dae7852008-07-29 09:58:35 -05001014{
1015 /* We don't need to know again when Guest refills receive buffer. */
1016 vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY;
Rusty Russella1618832008-07-29 09:58:35 -05001017 enable_fd(fd, vq, timeout);
Rusty Russell5dae7852008-07-29 09:58:35 -05001018}
1019
Rusty Russella007a752008-05-02 21:50:53 -05001020/* When the Guest tells us they updated the status field, we handle it. */
1021static void update_device_status(struct device *dev)
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001022{
1023 struct virtqueue *vq;
1024
Rusty Russella007a752008-05-02 21:50:53 -05001025 /* This is a reset. */
1026 if (dev->desc->status == 0) {
1027 verbose("Resetting device %s\n", dev->name);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001028
Rusty Russella007a752008-05-02 21:50:53 -05001029 /* Clear any features they've acked. */
1030 memset(get_feature_bits(dev) + dev->desc->feature_len, 0,
1031 dev->desc->feature_len);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001032
Rusty Russella007a752008-05-02 21:50:53 -05001033 /* Zero out the virtqueues. */
1034 for (vq = dev->vq; vq; vq = vq->next) {
1035 memset(vq->vring.desc, 0,
1036 vring_size(vq->config.num, getpagesize()));
Rusty Russellb5111792008-07-29 09:58:34 -05001037 lg_last_avail(vq) = 0;
Rusty Russella007a752008-05-02 21:50:53 -05001038 }
1039 } else if (dev->desc->status & VIRTIO_CONFIG_S_FAILED) {
1040 warnx("Device %s configuration FAILED", dev->name);
1041 } else if (dev->desc->status & VIRTIO_CONFIG_S_DRIVER_OK) {
1042 unsigned int i;
1043
1044 verbose("Device %s OK: offered", dev->name);
1045 for (i = 0; i < dev->desc->feature_len; i++)
Rusty Russell32c68e52008-07-29 09:58:32 -05001046 verbose(" %02x", get_feature_bits(dev)[i]);
Rusty Russella007a752008-05-02 21:50:53 -05001047 verbose(", accepted");
1048 for (i = 0; i < dev->desc->feature_len; i++)
Rusty Russell32c68e52008-07-29 09:58:32 -05001049 verbose(" %02x", get_feature_bits(dev)
Rusty Russella007a752008-05-02 21:50:53 -05001050 [dev->desc->feature_len+i]);
1051
1052 if (dev->ready)
1053 dev->ready(dev);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001054 }
1055}
1056
Rusty Russell17cbca22007-10-22 11:24:22 +10001057/* This is the generic routine we call when the Guest uses LHCALL_NOTIFY. */
1058static void handle_output(int fd, unsigned long addr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001059{
1060 struct device *i;
Rusty Russell17cbca22007-10-22 11:24:22 +10001061 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001062
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001063 /* Check each device and virtqueue. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001064 for (i = devices.dev; i; i = i->next) {
Rusty Russella007a752008-05-02 21:50:53 -05001065 /* Notifications to device descriptors update device status. */
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001066 if (from_guest_phys(addr) == i->desc) {
Rusty Russella007a752008-05-02 21:50:53 -05001067 update_device_status(i);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001068 return;
1069 }
1070
1071 /* Notifications to virtqueues mean output has occurred. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001072 for (vq = i->vq; vq; vq = vq->next) {
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001073 if (vq->config.pfn != addr/getpagesize())
1074 continue;
1075
1076 /* Guest should acknowledge (and set features!) before
1077 * using the device. */
1078 if (i->desc->status == 0) {
1079 warnx("%s gave early output", i->name);
Rusty Russell17cbca22007-10-22 11:24:22 +10001080 return;
1081 }
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001082
1083 if (strcmp(vq->dev->name, "console") != 0)
1084 verbose("Output to %s\n", vq->dev->name);
1085 if (vq->handle_output)
Rusty Russella1618832008-07-29 09:58:35 -05001086 vq->handle_output(fd, vq, false);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001087 return;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001088 }
1089 }
Rusty Russelldde79782007-07-26 10:41:03 -07001090
Rusty Russell17cbca22007-10-22 11:24:22 +10001091 /* Early console write is done using notify on a nul-terminated string
1092 * in Guest memory. */
1093 if (addr >= guest_limit)
1094 errx(1, "Bad NOTIFY %#lx", addr);
1095
1096 write(STDOUT_FILENO, from_guest_phys(addr),
1097 strnlen(from_guest_phys(addr), guest_limit - addr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001098}
1099
Rusty Russella1618832008-07-29 09:58:35 -05001100static void handle_timeout(int fd)
1101{
1102 char buf[32];
1103 struct device *i;
1104 struct virtqueue *vq;
1105
1106 /* Clear the pipe */
1107 read(timeoutpipe[0], buf, sizeof(buf));
1108
1109 /* Check each device and virtqueue: flush blocked ones. */
1110 for (i = devices.dev; i; i = i->next) {
1111 for (vq = i->vq; vq; vq = vq->next) {
1112 if (!vq->blocked)
1113 continue;
1114
1115 vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY;
1116 vq->blocked = false;
1117 if (vq->handle_output)
1118 vq->handle_output(fd, vq, true);
1119 }
1120 }
1121}
1122
Rusty Russelle1e72962007-10-25 15:02:50 +10001123/* This is called when the Waker wakes us up: check for incoming file
Rusty Russelldde79782007-07-26 10:41:03 -07001124 * descriptors. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001125static void handle_input(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001126{
Rusty Russelldde79782007-07-26 10:41:03 -07001127 /* select() wants a zeroed timeval to mean "don't wait". */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001128 struct timeval poll = { .tv_sec = 0, .tv_usec = 0 };
1129
1130 for (;;) {
1131 struct device *i;
Rusty Russell17cbca22007-10-22 11:24:22 +10001132 fd_set fds = devices.infds;
Rusty Russella1618832008-07-29 09:58:35 -05001133 int num;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001134
Rusty Russella1618832008-07-29 09:58:35 -05001135 num = select(devices.max_infd+1, &fds, NULL, NULL, &poll);
1136 /* Could get interrupted */
1137 if (num < 0)
1138 continue;
Rusty Russelldde79782007-07-26 10:41:03 -07001139 /* If nothing is ready, we're done. */
Rusty Russella1618832008-07-29 09:58:35 -05001140 if (num == 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001141 break;
1142
Rusty Russella6bd8e12008-03-28 11:05:53 -05001143 /* Otherwise, call the device(s) which have readable file
1144 * descriptors and a method of handling them. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001145 for (i = devices.dev; i; i = i->next) {
Rusty Russell8ca47e02007-07-19 01:49:29 -07001146 if (i->handle_input && FD_ISSET(i->fd, &fds)) {
Rusty Russell56ae43d2007-10-22 11:24:23 +10001147 int dev_fd;
1148 if (i->handle_input(fd, i))
1149 continue;
1150
Rusty Russelldde79782007-07-26 10:41:03 -07001151 /* If handle_input() returns false, it means we
Rusty Russell56ae43d2007-10-22 11:24:23 +10001152 * should no longer service it. Networking and
1153 * console do this when there's no input
1154 * buffers to deliver into. Console also uses
Rusty Russella6bd8e12008-03-28 11:05:53 -05001155 * it when it discovers that stdin is closed. */
Rusty Russell56ae43d2007-10-22 11:24:23 +10001156 FD_CLR(i->fd, &devices.infds);
1157 /* Tell waker to ignore it too, by sending a
1158 * negative fd number (-1, since 0 is a valid
1159 * FD number). */
1160 dev_fd = -i->fd - 1;
1161 write(waker_fd, &dev_fd, sizeof(dev_fd));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001162 }
1163 }
Rusty Russella1618832008-07-29 09:58:35 -05001164
1165 /* Is this the timeout fd? */
1166 if (FD_ISSET(timeoutpipe[0], &fds))
1167 handle_timeout(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001168 }
1169}
1170
Rusty Russelldde79782007-07-26 10:41:03 -07001171/*L:190
1172 * Device Setup
1173 *
1174 * All devices need a descriptor so the Guest knows it exists, and a "struct
1175 * device" so the Launcher can keep track of it. We have common helper
Rusty Russella6bd8e12008-03-28 11:05:53 -05001176 * routines to allocate and manage them.
1177 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001178
1179/* The layout of the device page is a "struct lguest_device_desc" followed by a
1180 * number of virtqueue descriptors, then two sets of feature bits, then an
1181 * array of configuration bytes. This routine returns the configuration
1182 * pointer. */
1183static u8 *device_config(const struct device *dev)
1184{
1185 return (void *)(dev->desc + 1)
1186 + dev->desc->num_vq * sizeof(struct lguest_vqconfig)
1187 + dev->desc->feature_len * 2;
1188}
1189
1190/* This routine allocates a new "struct lguest_device_desc" from descriptor
1191 * table page just above the Guest's normal memory. It returns a pointer to
1192 * that descriptor. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001193static struct lguest_device_desc *new_dev_desc(u16 type)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001194{
Rusty Russella586d4f2008-02-04 23:49:56 -05001195 struct lguest_device_desc d = { .type = type };
1196 void *p;
1197
1198 /* Figure out where the next device config is, based on the last one. */
1199 if (devices.lastdev)
1200 p = device_config(devices.lastdev)
1201 + devices.lastdev->desc->config_len;
1202 else
1203 p = devices.descpage;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001204
Rusty Russell17cbca22007-10-22 11:24:22 +10001205 /* We only have one page for all the descriptors. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001206 if (p + sizeof(d) > (void *)devices.descpage + getpagesize())
Rusty Russell17cbca22007-10-22 11:24:22 +10001207 errx(1, "Too many devices");
1208
Rusty Russella586d4f2008-02-04 23:49:56 -05001209 /* p might not be aligned, so we memcpy in. */
1210 return memcpy(p, &d, sizeof(d));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001211}
1212
Rusty Russella586d4f2008-02-04 23:49:56 -05001213/* Each device descriptor is followed by the description of its virtqueues. We
1214 * specify how many descriptors the virtqueue is to have. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001215static void add_virtqueue(struct device *dev, unsigned int num_descs,
Rusty Russella1618832008-07-29 09:58:35 -05001216 void (*handle_output)(int, struct virtqueue *, bool))
Rusty Russell17cbca22007-10-22 11:24:22 +10001217{
1218 unsigned int pages;
1219 struct virtqueue **i, *vq = malloc(sizeof(*vq));
1220 void *p;
1221
Rusty Russella6bd8e12008-03-28 11:05:53 -05001222 /* First we need some memory for this virtqueue. */
Rusty Russell42b36cc2007-11-12 13:39:18 +11001223 pages = (vring_size(num_descs, getpagesize()) + getpagesize() - 1)
1224 / getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10001225 p = get_pages(pages);
1226
Rusty Russelld1c856e2007-11-19 11:20:40 -05001227 /* Initialize the virtqueue */
1228 vq->next = NULL;
1229 vq->last_avail_idx = 0;
1230 vq->dev = dev;
Rusty Russell20887612008-05-30 15:09:46 -05001231 vq->inflight = 0;
Rusty Russella1618832008-07-29 09:58:35 -05001232 vq->blocked = false;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001233
Rusty Russell17cbca22007-10-22 11:24:22 +10001234 /* Initialize the configuration. */
1235 vq->config.num = num_descs;
1236 vq->config.irq = devices.next_irq++;
1237 vq->config.pfn = to_guest_phys(p) / getpagesize();
1238
1239 /* Initialize the vring. */
Rusty Russell42b36cc2007-11-12 13:39:18 +11001240 vring_init(&vq->vring, num_descs, p, getpagesize());
Rusty Russell17cbca22007-10-22 11:24:22 +10001241
Rusty Russella586d4f2008-02-04 23:49:56 -05001242 /* Append virtqueue to this device's descriptor. We use
1243 * device_config() to get the end of the device's current virtqueues;
1244 * we check that we haven't added any config or feature information
1245 * yet, otherwise we'd be overwriting them. */
1246 assert(dev->desc->config_len == 0 && dev->desc->feature_len == 0);
1247 memcpy(device_config(dev), &vq->config, sizeof(vq->config));
1248 dev->desc->num_vq++;
1249
1250 verbose("Virtqueue page %#lx\n", to_guest_phys(p));
Rusty Russell17cbca22007-10-22 11:24:22 +10001251
1252 /* Add to tail of list, so dev->vq is first vq, dev->vq->next is
1253 * second. */
1254 for (i = &dev->vq; *i; i = &(*i)->next);
1255 *i = vq;
1256
Rusty Russelle1e72962007-10-25 15:02:50 +10001257 /* Set the routine to call when the Guest does something to this
1258 * virtqueue. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001259 vq->handle_output = handle_output;
Rusty Russelle1e72962007-10-25 15:02:50 +10001260
Rusty Russell426e3e02008-02-04 23:49:59 -05001261 /* As an optimization, set the advisory "Don't Notify Me" flag if we
1262 * don't have a handler */
Rusty Russell17cbca22007-10-22 11:24:22 +10001263 if (!handle_output)
1264 vq->vring.used->flags = VRING_USED_F_NO_NOTIFY;
1265}
1266
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001267/* The first half of the feature bitmask is for us to advertise features. The
Rusty Russella6bd8e12008-03-28 11:05:53 -05001268 * second half is for the Guest to accept features. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001269static void add_feature(struct device *dev, unsigned bit)
1270{
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001271 u8 *features = get_feature_bits(dev);
Rusty Russella586d4f2008-02-04 23:49:56 -05001272
1273 /* We can't extend the feature bits once we've added config bytes */
1274 if (dev->desc->feature_len <= bit / CHAR_BIT) {
1275 assert(dev->desc->config_len == 0);
1276 dev->desc->feature_len = (bit / CHAR_BIT) + 1;
1277 }
1278
Rusty Russella586d4f2008-02-04 23:49:56 -05001279 features[bit / CHAR_BIT] |= (1 << (bit % CHAR_BIT));
1280}
1281
1282/* This routine sets the configuration fields for an existing device's
1283 * descriptor. It only works for the last device, but that's OK because that's
1284 * how we use it. */
1285static void set_config(struct device *dev, unsigned len, const void *conf)
1286{
1287 /* Check we haven't overflowed our single page. */
1288 if (device_config(dev) + len > devices.descpage + getpagesize())
1289 errx(1, "Too many devices");
1290
1291 /* Copy in the config information, and store the length. */
1292 memcpy(device_config(dev), conf, len);
1293 dev->desc->config_len = len;
1294}
1295
Rusty Russell17cbca22007-10-22 11:24:22 +10001296/* This routine does all the creation and setup of a new device, including
Rusty Russella6bd8e12008-03-28 11:05:53 -05001297 * calling new_dev_desc() to allocate the descriptor and device memory.
1298 *
1299 * See what I mean about userspace being boring? */
Rusty Russell17cbca22007-10-22 11:24:22 +10001300static struct device *new_device(const char *name, u16 type, int fd,
1301 bool (*handle_input)(int, struct device *))
Rusty Russell8ca47e02007-07-19 01:49:29 -07001302{
1303 struct device *dev = malloc(sizeof(*dev));
1304
Rusty Russelldde79782007-07-26 10:41:03 -07001305 /* Now we populate the fields one at a time. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001306 dev->fd = fd;
Rusty Russelldde79782007-07-26 10:41:03 -07001307 /* If we have an input handler for this file descriptor, then we add it
1308 * to the device_list's fdset and maxfd. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001309 if (handle_input)
Rusty Russell17cbca22007-10-22 11:24:22 +10001310 add_device_fd(dev->fd);
1311 dev->desc = new_dev_desc(type);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001312 dev->handle_input = handle_input;
Rusty Russell17cbca22007-10-22 11:24:22 +10001313 dev->name = name;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001314 dev->vq = NULL;
Rusty Russella007a752008-05-02 21:50:53 -05001315 dev->ready = NULL;
Rusty Russella586d4f2008-02-04 23:49:56 -05001316
1317 /* Append to device list. Prepending to a single-linked list is
1318 * easier, but the user expects the devices to be arranged on the bus
1319 * in command-line order. The first network device on the command line
1320 * is eth0, the first block device /dev/vda, etc. */
1321 if (devices.lastdev)
1322 devices.lastdev->next = dev;
1323 else
1324 devices.dev = dev;
1325 devices.lastdev = dev;
1326
Rusty Russell8ca47e02007-07-19 01:49:29 -07001327 return dev;
1328}
1329
Rusty Russelldde79782007-07-26 10:41:03 -07001330/* Our first setup routine is the console. It's a fairly simple device, but
1331 * UNIX tty handling makes it uglier than it could be. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001332static void setup_console(void)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001333{
1334 struct device *dev;
1335
Rusty Russelldde79782007-07-26 10:41:03 -07001336 /* If we can save the initial standard input settings... */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001337 if (tcgetattr(STDIN_FILENO, &orig_term) == 0) {
1338 struct termios term = orig_term;
Rusty Russelldde79782007-07-26 10:41:03 -07001339 /* Then we turn off echo, line buffering and ^C etc. We want a
1340 * raw input stream to the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001341 term.c_lflag &= ~(ISIG|ICANON|ECHO);
1342 tcsetattr(STDIN_FILENO, TCSANOW, &term);
Rusty Russelldde79782007-07-26 10:41:03 -07001343 /* If we exit gracefully, the original settings will be
1344 * restored so the user can see what they're typing. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001345 atexit(restore_term);
1346 }
1347
Rusty Russell17cbca22007-10-22 11:24:22 +10001348 dev = new_device("console", VIRTIO_ID_CONSOLE,
1349 STDIN_FILENO, handle_console_input);
Rusty Russelldde79782007-07-26 10:41:03 -07001350 /* We store the console state in dev->priv, and initialize it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001351 dev->priv = malloc(sizeof(struct console_abort));
1352 ((struct console_abort *)dev->priv)->count = 0;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001353
Rusty Russell56ae43d2007-10-22 11:24:23 +10001354 /* The console needs two virtqueues: the input then the output. When
1355 * they put something the input queue, we make sure we're listening to
1356 * stdin. When they put something in the output queue, we write it to
Rusty Russelle1e72962007-10-25 15:02:50 +10001357 * stdout. */
Rusty Russell56ae43d2007-10-22 11:24:23 +10001358 add_virtqueue(dev, VIRTQUEUE_NUM, enable_fd);
Rusty Russell17cbca22007-10-22 11:24:22 +10001359 add_virtqueue(dev, VIRTQUEUE_NUM, handle_console_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001360
Rusty Russell17cbca22007-10-22 11:24:22 +10001361 verbose("device %u: console\n", devices.device_num++);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001362}
Rusty Russelldde79782007-07-26 10:41:03 -07001363/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001364
Rusty Russella1618832008-07-29 09:58:35 -05001365static void timeout_alarm(int sig)
1366{
1367 write(timeoutpipe[1], "", 1);
1368}
1369
1370static void setup_timeout(void)
1371{
1372 if (pipe(timeoutpipe) != 0)
1373 err(1, "Creating timeout pipe");
1374
1375 if (fcntl(timeoutpipe[1], F_SETFL,
1376 fcntl(timeoutpipe[1], F_GETFL) | O_NONBLOCK) != 0)
1377 err(1, "Making timeout pipe nonblocking");
1378
1379 add_device_fd(timeoutpipe[0]);
1380 signal(SIGALRM, timeout_alarm);
1381}
1382
Rusty Russell17cbca22007-10-22 11:24:22 +10001383/*M:010 Inter-guest networking is an interesting area. Simplest is to have a
1384 * --sharenet=<name> option which opens or creates a named pipe. This can be
1385 * used to send packets to another guest in a 1:1 manner.
1386 *
1387 * More sopisticated is to use one of the tools developed for project like UML
1388 * to do networking.
1389 *
1390 * Faster is to do virtio bonding in kernel. Doing this 1:1 would be
1391 * completely generic ("here's my vring, attach to your vring") and would work
1392 * for any traffic. Of course, namespace and permissions issues need to be
1393 * dealt with. A more sophisticated "multi-channel" virtio_net.c could hide
1394 * multiple inter-guest channels behind one interface, although it would
1395 * require some manner of hotplugging new virtio channels.
1396 *
1397 * Finally, we could implement a virtio network switch in the kernel. :*/
1398
Rusty Russell8ca47e02007-07-19 01:49:29 -07001399static u32 str2ip(const char *ipaddr)
1400{
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001401 unsigned int b[4];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001402
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001403 if (sscanf(ipaddr, "%u.%u.%u.%u", &b[0], &b[1], &b[2], &b[3]) != 4)
1404 errx(1, "Failed to parse IP address '%s'", ipaddr);
1405 return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];
1406}
1407
1408static void str2mac(const char *macaddr, unsigned char mac[6])
1409{
1410 unsigned int m[6];
1411 if (sscanf(macaddr, "%02x:%02x:%02x:%02x:%02x:%02x",
1412 &m[0], &m[1], &m[2], &m[3], &m[4], &m[5]) != 6)
1413 errx(1, "Failed to parse mac address '%s'", macaddr);
1414 mac[0] = m[0];
1415 mac[1] = m[1];
1416 mac[2] = m[2];
1417 mac[3] = m[3];
1418 mac[4] = m[4];
1419 mac[5] = m[5];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001420}
1421
Rusty Russelldde79782007-07-26 10:41:03 -07001422/* This code is "adapted" from libbridge: it attaches the Host end of the
1423 * network device to the bridge device specified by the command line.
1424 *
1425 * This is yet another James Morris contribution (I'm an IP-level guy, so I
1426 * dislike bridging), and I just try not to break it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001427static void add_to_bridge(int fd, const char *if_name, const char *br_name)
1428{
1429 int ifidx;
1430 struct ifreq ifr;
1431
1432 if (!*br_name)
1433 errx(1, "must specify bridge name");
1434
1435 ifidx = if_nametoindex(if_name);
1436 if (!ifidx)
1437 errx(1, "interface %s does not exist!", if_name);
1438
1439 strncpy(ifr.ifr_name, br_name, IFNAMSIZ);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001440 ifr.ifr_name[IFNAMSIZ-1] = '\0';
Rusty Russell8ca47e02007-07-19 01:49:29 -07001441 ifr.ifr_ifindex = ifidx;
1442 if (ioctl(fd, SIOCBRADDIF, &ifr) < 0)
1443 err(1, "can't add %s to bridge %s", if_name, br_name);
1444}
1445
Rusty Russelldde79782007-07-26 10:41:03 -07001446/* This sets up the Host end of the network device with an IP address, brings
1447 * it up so packets will flow, the copies the MAC address into the hwaddr
Rusty Russell17cbca22007-10-22 11:24:22 +10001448 * pointer. */
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001449static void configure_device(int fd, const char *tapif, u32 ipaddr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001450{
1451 struct ifreq ifr;
1452 struct sockaddr_in *sin = (struct sockaddr_in *)&ifr.ifr_addr;
1453
1454 memset(&ifr, 0, sizeof(ifr));
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001455 strcpy(ifr.ifr_name, tapif);
1456
1457 /* Don't read these incantations. Just cut & paste them like I did! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001458 sin->sin_family = AF_INET;
1459 sin->sin_addr.s_addr = htonl(ipaddr);
1460 if (ioctl(fd, SIOCSIFADDR, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001461 err(1, "Setting %s interface address", tapif);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001462 ifr.ifr_flags = IFF_UP;
1463 if (ioctl(fd, SIOCSIFFLAGS, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001464 err(1, "Bringing interface %s up", tapif);
1465}
1466
1467static void get_mac(int fd, const char *tapif, unsigned char hwaddr[6])
1468{
1469 struct ifreq ifr;
1470
1471 memset(&ifr, 0, sizeof(ifr));
1472 strcpy(ifr.ifr_name, tapif);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001473
Rusty Russelldde79782007-07-26 10:41:03 -07001474 /* SIOC stands for Socket I/O Control. G means Get (vs S for Set
1475 * above). IF means Interface, and HWADDR is hardware address.
1476 * Simple! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001477 if (ioctl(fd, SIOCGIFHWADDR, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001478 err(1, "getting hw address for %s", tapif);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001479 memcpy(hwaddr, ifr.ifr_hwaddr.sa_data, 6);
1480}
1481
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001482static int get_tun_device(char tapif[IFNAMSIZ])
Rusty Russell8ca47e02007-07-19 01:49:29 -07001483{
Rusty Russell8ca47e02007-07-19 01:49:29 -07001484 struct ifreq ifr;
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001485 int netfd;
1486
1487 /* Start with this zeroed. Messy but sure. */
1488 memset(&ifr, 0, sizeof(ifr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001489
Rusty Russelldde79782007-07-26 10:41:03 -07001490 /* We open the /dev/net/tun device and tell it we want a tap device. A
1491 * tap device is like a tun device, only somehow different. To tell
1492 * the truth, I completely blundered my way through this code, but it
1493 * works now! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001494 netfd = open_or_die("/dev/net/tun", O_RDWR);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001495 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1496 strcpy(ifr.ifr_name, "tap%d");
1497 if (ioctl(netfd, TUNSETIFF, &ifr) != 0)
1498 err(1, "configuring /dev/net/tun");
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001499
Rusty Russelldde79782007-07-26 10:41:03 -07001500 /* We don't need checksums calculated for packets coming in this
1501 * device: trust us! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001502 ioctl(netfd, TUNSETNOCSUM, 1);
1503
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001504 memcpy(tapif, ifr.ifr_name, IFNAMSIZ);
1505 return netfd;
1506}
1507
1508/*L:195 Our network is a Host<->Guest network. This can either use bridging or
1509 * routing, but the principle is the same: it uses the "tun" device to inject
1510 * packets into the Host as if they came in from a normal network card. We
1511 * just shunt packets between the Guest and the tun device. */
1512static void setup_tun_net(char *arg)
1513{
1514 struct device *dev;
1515 int netfd, ipfd;
1516 u32 ip = INADDR_ANY;
1517 bool bridging = false;
1518 char tapif[IFNAMSIZ], *p;
1519 struct virtio_net_config conf;
1520
1521 netfd = get_tun_device(tapif);
1522
Rusty Russell17cbca22007-10-22 11:24:22 +10001523 /* First we create a new network device. */
1524 dev = new_device("net", VIRTIO_ID_NET, netfd, handle_tun_input);
Rusty Russelldde79782007-07-26 10:41:03 -07001525
Rusty Russell56ae43d2007-10-22 11:24:23 +10001526 /* Network devices need a receive and a send queue, just like
1527 * console. */
Rusty Russell5dae7852008-07-29 09:58:35 -05001528 add_virtqueue(dev, VIRTQUEUE_NUM, net_enable_fd);
Rusty Russell17cbca22007-10-22 11:24:22 +10001529 add_virtqueue(dev, VIRTQUEUE_NUM, handle_net_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001530
Rusty Russelldde79782007-07-26 10:41:03 -07001531 /* We need a socket to perform the magic network ioctls to bring up the
1532 * tap interface, connect to the bridge etc. Any socket will do! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001533 ipfd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
1534 if (ipfd < 0)
1535 err(1, "opening IP socket");
1536
Rusty Russelldde79782007-07-26 10:41:03 -07001537 /* If the command line was --tunnet=bridge:<name> do bridging. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001538 if (!strncmp(BRIDGE_PFX, arg, strlen(BRIDGE_PFX))) {
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001539 arg += strlen(BRIDGE_PFX);
1540 bridging = true;
1541 }
1542
1543 /* A mac address may follow the bridge name or IP address */
1544 p = strchr(arg, ':');
1545 if (p) {
1546 str2mac(p+1, conf.mac);
1547 *p = '\0';
1548 } else {
1549 p = arg + strlen(arg);
1550 /* None supplied; query the randomly assigned mac. */
1551 get_mac(ipfd, tapif, conf.mac);
1552 }
1553
1554 /* arg is now either an IP address or a bridge name */
1555 if (bridging)
1556 add_to_bridge(ipfd, tapif, arg);
1557 else
Rusty Russell8ca47e02007-07-19 01:49:29 -07001558 ip = str2ip(arg);
1559
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001560 /* Set up the tun device. */
1561 configure_device(ipfd, tapif, ip);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001562
Rusty Russell17cbca22007-10-22 11:24:22 +10001563 /* Tell Guest what MAC address to use. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001564 add_feature(dev, VIRTIO_NET_F_MAC);
Rusty Russell20887612008-05-30 15:09:46 -05001565 add_feature(dev, VIRTIO_F_NOTIFY_ON_EMPTY);
Rusty Russella586d4f2008-02-04 23:49:56 -05001566 set_config(dev, sizeof(conf), &conf);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001567
Rusty Russella586d4f2008-02-04 23:49:56 -05001568 /* We don't need the socket any more; setup is done. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001569 close(ipfd);
1570
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001571 devices.device_num++;
1572
1573 if (bridging)
1574 verbose("device %u: tun %s attached to bridge: %s\n",
1575 devices.device_num, tapif, arg);
1576 else
1577 verbose("device %u: tun %s: %s\n",
1578 devices.device_num, tapif, arg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001579}
Rusty Russell17cbca22007-10-22 11:24:22 +10001580
Rusty Russelle1e72962007-10-25 15:02:50 +10001581/* Our block (disk) device should be really simple: the Guest asks for a block
1582 * number and we read or write that position in the file. Unfortunately, that
1583 * was amazingly slow: the Guest waits until the read is finished before
1584 * running anything else, even if it could have been doing useful work.
Rusty Russell17cbca22007-10-22 11:24:22 +10001585 *
Rusty Russelle1e72962007-10-25 15:02:50 +10001586 * We could use async I/O, except it's reputed to suck so hard that characters
1587 * actually go missing from your code when you try to use it.
Rusty Russell17cbca22007-10-22 11:24:22 +10001588 *
1589 * So we farm the I/O out to thread, and communicate with it via a pipe. */
1590
Rusty Russelle1e72962007-10-25 15:02:50 +10001591/* This hangs off device->priv. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001592struct vblk_info
1593{
1594 /* The size of the file. */
1595 off64_t len;
1596
1597 /* The file descriptor for the file. */
1598 int fd;
1599
1600 /* IO thread listens on this file descriptor [0]. */
1601 int workpipe[2];
1602
1603 /* IO thread writes to this file descriptor to mark it done, then
1604 * Launcher triggers interrupt to Guest. */
1605 int done_fd;
1606};
1607
Rusty Russelle1e72962007-10-25 15:02:50 +10001608/*L:210
1609 * The Disk
1610 *
1611 * Remember that the block device is handled by a separate I/O thread. We head
1612 * straight into the core of that thread here:
1613 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001614static bool service_io(struct device *dev)
1615{
1616 struct vblk_info *vblk = dev->priv;
1617 unsigned int head, out_num, in_num, wlen;
1618 int ret;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001619 u8 *in;
Rusty Russell17cbca22007-10-22 11:24:22 +10001620 struct virtio_blk_outhdr *out;
1621 struct iovec iov[dev->vq->vring.num];
1622 off64_t off;
1623
Rusty Russelle1e72962007-10-25 15:02:50 +10001624 /* See if there's a request waiting. If not, nothing to do. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001625 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
1626 if (head == dev->vq->vring.num)
1627 return false;
1628
Rusty Russelle1e72962007-10-25 15:02:50 +10001629 /* Every block request should contain at least one output buffer
1630 * (detailing the location on disk and the type of request) and one
1631 * input buffer (to hold the result). */
Rusty Russell17cbca22007-10-22 11:24:22 +10001632 if (out_num == 0 || in_num == 0)
1633 errx(1, "Bad virtblk cmd %u out=%u in=%u",
1634 head, out_num, in_num);
1635
1636 out = convert(&iov[0], struct virtio_blk_outhdr);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001637 in = convert(&iov[out_num+in_num-1], u8);
Rusty Russell17cbca22007-10-22 11:24:22 +10001638 off = out->sector * 512;
1639
Rusty Russelle1e72962007-10-25 15:02:50 +10001640 /* The block device implements "barriers", where the Guest indicates
1641 * that it wants all previous writes to occur before this write. We
1642 * don't have a way of asking our kernel to do a barrier, so we just
1643 * synchronize all the data in the file. Pretty poor, no? */
Rusty Russell17cbca22007-10-22 11:24:22 +10001644 if (out->type & VIRTIO_BLK_T_BARRIER)
1645 fdatasync(vblk->fd);
1646
Rusty Russelle1e72962007-10-25 15:02:50 +10001647 /* In general the virtio block driver is allowed to try SCSI commands.
1648 * It'd be nice if we supported eject, for example, but we don't. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001649 if (out->type & VIRTIO_BLK_T_SCSI_CMD) {
1650 fprintf(stderr, "Scsi commands unsupported\n");
Rusty Russellcb38fa22008-05-02 21:50:45 -05001651 *in = VIRTIO_BLK_S_UNSUPP;
Anthony Liguori1200e642007-11-08 21:13:44 -06001652 wlen = sizeof(*in);
Rusty Russell17cbca22007-10-22 11:24:22 +10001653 } else if (out->type & VIRTIO_BLK_T_OUT) {
1654 /* Write */
1655
1656 /* Move to the right location in the block file. This can fail
1657 * if they try to write past end. */
1658 if (lseek64(vblk->fd, off, SEEK_SET) != off)
1659 err(1, "Bad seek to sector %llu", out->sector);
1660
1661 ret = writev(vblk->fd, iov+1, out_num-1);
1662 verbose("WRITE to sector %llu: %i\n", out->sector, ret);
1663
1664 /* Grr... Now we know how long the descriptor they sent was, we
1665 * make sure they didn't try to write over the end of the block
1666 * file (possibly extending it). */
1667 if (ret > 0 && off + ret > vblk->len) {
1668 /* Trim it back to the correct length */
1669 ftruncate64(vblk->fd, vblk->len);
1670 /* Die, bad Guest, die. */
1671 errx(1, "Write past end %llu+%u", off, ret);
1672 }
Anthony Liguori1200e642007-11-08 21:13:44 -06001673 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001674 *in = (ret >= 0 ? VIRTIO_BLK_S_OK : VIRTIO_BLK_S_IOERR);
Rusty Russell17cbca22007-10-22 11:24:22 +10001675 } else {
1676 /* Read */
1677
1678 /* Move to the right location in the block file. This can fail
1679 * if they try to read past end. */
1680 if (lseek64(vblk->fd, off, SEEK_SET) != off)
1681 err(1, "Bad seek to sector %llu", out->sector);
1682
1683 ret = readv(vblk->fd, iov+1, in_num-1);
1684 verbose("READ from sector %llu: %i\n", out->sector, ret);
1685 if (ret >= 0) {
Anthony Liguori1200e642007-11-08 21:13:44 -06001686 wlen = sizeof(*in) + ret;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001687 *in = VIRTIO_BLK_S_OK;
Rusty Russell17cbca22007-10-22 11:24:22 +10001688 } else {
Anthony Liguori1200e642007-11-08 21:13:44 -06001689 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001690 *in = VIRTIO_BLK_S_IOERR;
Rusty Russell17cbca22007-10-22 11:24:22 +10001691 }
1692 }
1693
1694 /* We can't trigger an IRQ, because we're not the Launcher. It does
1695 * that when we tell it we're done. */
1696 add_used(dev->vq, head, wlen);
1697 return true;
1698}
1699
1700/* This is the thread which actually services the I/O. */
1701static int io_thread(void *_dev)
1702{
1703 struct device *dev = _dev;
1704 struct vblk_info *vblk = dev->priv;
1705 char c;
1706
1707 /* Close other side of workpipe so we get 0 read when main dies. */
1708 close(vblk->workpipe[1]);
1709 /* Close the other side of the done_fd pipe. */
1710 close(dev->fd);
1711
1712 /* When this read fails, it means Launcher died, so we follow. */
1713 while (read(vblk->workpipe[0], &c, 1) == 1) {
Rusty Russelle1e72962007-10-25 15:02:50 +10001714 /* We acknowledge each request immediately to reduce latency,
Rusty Russell17cbca22007-10-22 11:24:22 +10001715 * rather than waiting until we've done them all. I haven't
Rusty Russella6bd8e12008-03-28 11:05:53 -05001716 * measured to see if it makes any difference.
1717 *
1718 * That would be an interesting test, wouldn't it? You could
1719 * also try having more than one I/O thread. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001720 while (service_io(dev))
1721 write(vblk->done_fd, &c, 1);
1722 }
1723 return 0;
1724}
1725
Rusty Russelle1e72962007-10-25 15:02:50 +10001726/* Now we've seen the I/O thread, we return to the Launcher to see what happens
Rusty Russella6bd8e12008-03-28 11:05:53 -05001727 * when that thread tells us it's completed some I/O. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001728static bool handle_io_finish(int fd, struct device *dev)
1729{
1730 char c;
1731
Rusty Russelle1e72962007-10-25 15:02:50 +10001732 /* If the I/O thread died, presumably it printed the error, so we
1733 * simply exit. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001734 if (read(dev->fd, &c, 1) != 1)
1735 exit(1);
1736
1737 /* It did some work, so trigger the irq. */
1738 trigger_irq(fd, dev->vq);
1739 return true;
1740}
1741
Rusty Russelle1e72962007-10-25 15:02:50 +10001742/* When the Guest submits some I/O, we just need to wake the I/O thread. */
Rusty Russella1618832008-07-29 09:58:35 -05001743static void handle_virtblk_output(int fd, struct virtqueue *vq, bool timeout)
Rusty Russell17cbca22007-10-22 11:24:22 +10001744{
1745 struct vblk_info *vblk = vq->dev->priv;
1746 char c = 0;
1747
1748 /* Wake up I/O thread and tell it to go to work! */
1749 if (write(vblk->workpipe[1], &c, 1) != 1)
1750 /* Presumably it indicated why it died. */
1751 exit(1);
1752}
1753
Rusty Russelle1e72962007-10-25 15:02:50 +10001754/*L:198 This actually sets up a virtual block device. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001755static void setup_block_file(const char *filename)
1756{
1757 int p[2];
1758 struct device *dev;
1759 struct vblk_info *vblk;
1760 void *stack;
Rusty Russella586d4f2008-02-04 23:49:56 -05001761 struct virtio_blk_config conf;
Rusty Russell17cbca22007-10-22 11:24:22 +10001762
1763 /* This is the pipe the I/O thread will use to tell us I/O is done. */
1764 pipe(p);
1765
1766 /* The device responds to return from I/O thread. */
1767 dev = new_device("block", VIRTIO_ID_BLOCK, p[0], handle_io_finish);
1768
Rusty Russelle1e72962007-10-25 15:02:50 +10001769 /* The device has one virtqueue, where the Guest places requests. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001770 add_virtqueue(dev, VIRTQUEUE_NUM, handle_virtblk_output);
1771
1772 /* Allocate the room for our own bookkeeping */
1773 vblk = dev->priv = malloc(sizeof(*vblk));
1774
1775 /* First we open the file and store the length. */
1776 vblk->fd = open_or_die(filename, O_RDWR|O_LARGEFILE);
1777 vblk->len = lseek64(vblk->fd, 0, SEEK_END);
1778
Rusty Russella586d4f2008-02-04 23:49:56 -05001779 /* We support barriers. */
1780 add_feature(dev, VIRTIO_BLK_F_BARRIER);
1781
Rusty Russell17cbca22007-10-22 11:24:22 +10001782 /* Tell Guest how many sectors this device has. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001783 conf.capacity = cpu_to_le64(vblk->len / 512);
Rusty Russell17cbca22007-10-22 11:24:22 +10001784
1785 /* Tell Guest not to put in too many descriptors at once: two are used
1786 * for the in and out elements. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001787 add_feature(dev, VIRTIO_BLK_F_SEG_MAX);
1788 conf.seg_max = cpu_to_le32(VIRTQUEUE_NUM - 2);
1789
1790 set_config(dev, sizeof(conf), &conf);
Rusty Russell17cbca22007-10-22 11:24:22 +10001791
1792 /* The I/O thread writes to this end of the pipe when done. */
1793 vblk->done_fd = p[1];
1794
Rusty Russelle1e72962007-10-25 15:02:50 +10001795 /* This is the second pipe, which is how we tell the I/O thread about
1796 * more work. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001797 pipe(vblk->workpipe);
1798
Rusty Russella6bd8e12008-03-28 11:05:53 -05001799 /* Create stack for thread and run it. Since stack grows upwards, we
1800 * point the stack pointer to the end of this region. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001801 stack = malloc(32768);
Balaji Raoec04b132007-12-28 14:26:24 +05301802 /* SIGCHLD - We dont "wait" for our cloned thread, so prevent it from
1803 * becoming a zombie. */
Rusty Russella6bd8e12008-03-28 11:05:53 -05001804 if (clone(io_thread, stack + 32768, CLONE_VM | SIGCHLD, dev) == -1)
Rusty Russell17cbca22007-10-22 11:24:22 +10001805 err(1, "Creating clone");
1806
1807 /* We don't need to keep the I/O thread's end of the pipes open. */
1808 close(vblk->done_fd);
1809 close(vblk->workpipe[0]);
1810
1811 verbose("device %u: virtblock %llu sectors\n",
Rusty Russella586d4f2008-02-04 23:49:56 -05001812 devices.device_num, le64_to_cpu(conf.capacity));
Rusty Russell17cbca22007-10-22 11:24:22 +10001813}
Rusty Russell28fd6d72008-07-29 09:58:33 -05001814
1815/* Our random number generator device reads from /dev/random into the Guest's
1816 * input buffers. The usual case is that the Guest doesn't want random numbers
1817 * and so has no buffers although /dev/random is still readable, whereas
1818 * console is the reverse.
1819 *
1820 * The same logic applies, however. */
1821static bool handle_rng_input(int fd, struct device *dev)
1822{
1823 int len;
1824 unsigned int head, in_num, out_num, totlen = 0;
1825 struct iovec iov[dev->vq->vring.num];
1826
1827 /* First we need a buffer from the Guests's virtqueue. */
1828 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
1829
1830 /* If they're not ready for input, stop listening to this file
1831 * descriptor. We'll start again once they add an input buffer. */
1832 if (head == dev->vq->vring.num)
1833 return false;
1834
1835 if (out_num)
1836 errx(1, "Output buffers in rng?");
1837
1838 /* This is why we convert to iovecs: the readv() call uses them, and so
1839 * it reads straight into the Guest's buffer. We loop to make sure we
1840 * fill it. */
1841 while (!iov_empty(iov, in_num)) {
1842 len = readv(dev->fd, iov, in_num);
1843 if (len <= 0)
1844 err(1, "Read from /dev/random gave %i", len);
1845 iov_consume(iov, in_num, len);
1846 totlen += len;
1847 }
1848
1849 /* Tell the Guest about the new input. */
1850 add_used_and_trigger(fd, dev->vq, head, totlen);
1851
1852 /* Everything went OK! */
1853 return true;
1854}
1855
1856/* And this creates a "hardware" random number device for the Guest. */
1857static void setup_rng(void)
1858{
1859 struct device *dev;
1860 int fd;
1861
1862 fd = open_or_die("/dev/random", O_RDONLY);
1863
1864 /* The device responds to return from I/O thread. */
1865 dev = new_device("rng", VIRTIO_ID_RNG, fd, handle_rng_input);
1866
1867 /* The device has one virtqueue, where the Guest places inbufs. */
1868 add_virtqueue(dev, VIRTQUEUE_NUM, enable_fd);
1869
1870 verbose("device %u: rng\n", devices.device_num++);
1871}
Rusty Russella6bd8e12008-03-28 11:05:53 -05001872/* That's the end of device setup. */
Balaji Raoec04b132007-12-28 14:26:24 +05301873
Rusty Russella6bd8e12008-03-28 11:05:53 -05001874/*L:230 Reboot is pretty easy: clean up and exec() the Launcher afresh. */
Balaji Raoec04b132007-12-28 14:26:24 +05301875static void __attribute__((noreturn)) restart_guest(void)
1876{
1877 unsigned int i;
1878
Rusty Russella6bd8e12008-03-28 11:05:53 -05001879 /* Closing pipes causes the Waker thread and io_threads to die, and
Balaji Raoec04b132007-12-28 14:26:24 +05301880 * closing /dev/lguest cleans up the Guest. Since we don't track all
1881 * open fds, we simply close everything beyond stderr. */
1882 for (i = 3; i < FD_SETSIZE; i++)
1883 close(i);
1884 execv(main_args[0], main_args);
1885 err(1, "Could not exec %s", main_args[0]);
1886}
Rusty Russell8ca47e02007-07-19 01:49:29 -07001887
Rusty Russella6bd8e12008-03-28 11:05:53 -05001888/*L:220 Finally we reach the core of the Launcher which runs the Guest, serves
Rusty Russelldde79782007-07-26 10:41:03 -07001889 * its input and output, and finally, lays it to rest. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001890static void __attribute__((noreturn)) run_guest(int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001891{
1892 for (;;) {
Jes Sorensen511801d2007-10-22 11:03:31 +10001893 unsigned long args[] = { LHREQ_BREAK, 0 };
Rusty Russell17cbca22007-10-22 11:24:22 +10001894 unsigned long notify_addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001895 int readval;
1896
1897 /* We read from the /dev/lguest device to run the Guest. */
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001898 readval = pread(lguest_fd, &notify_addr,
1899 sizeof(notify_addr), cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001900
Rusty Russell17cbca22007-10-22 11:24:22 +10001901 /* One unsigned long means the Guest did HCALL_NOTIFY */
1902 if (readval == sizeof(notify_addr)) {
1903 verbose("Notify on address %#lx\n", notify_addr);
1904 handle_output(lguest_fd, notify_addr);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001905 continue;
Rusty Russelldde79782007-07-26 10:41:03 -07001906 /* ENOENT means the Guest died. Reading tells us why. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001907 } else if (errno == ENOENT) {
1908 char reason[1024] = { 0 };
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001909 pread(lguest_fd, reason, sizeof(reason)-1, cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001910 errx(1, "%s", reason);
Balaji Raoec04b132007-12-28 14:26:24 +05301911 /* ERESTART means that we need to reboot the guest */
1912 } else if (errno == ERESTART) {
1913 restart_guest();
Rusty Russella1618832008-07-29 09:58:35 -05001914 /* EAGAIN means a signal (timeout).
Rusty Russelldde79782007-07-26 10:41:03 -07001915 * Anything else means a bug or incompatible change. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001916 } else if (errno != EAGAIN)
1917 err(1, "Running guest failed");
Rusty Russelldde79782007-07-26 10:41:03 -07001918
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001919 /* Only service input on thread for CPU 0. */
1920 if (cpu_id != 0)
1921 continue;
1922
Rusty Russelle1e72962007-10-25 15:02:50 +10001923 /* Service input, then unset the BREAK to release the Waker. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001924 handle_input(lguest_fd);
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001925 if (pwrite(lguest_fd, args, sizeof(args), cpu_id) < 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001926 err(1, "Resetting break");
1927 }
1928}
Rusty Russella6bd8e12008-03-28 11:05:53 -05001929/*L:240
Rusty Russelle1e72962007-10-25 15:02:50 +10001930 * This is the end of the Launcher. The good news: we are over halfway
1931 * through! The bad news: the most fiendish part of the code still lies ahead
1932 * of us.
Rusty Russelldde79782007-07-26 10:41:03 -07001933 *
Rusty Russelle1e72962007-10-25 15:02:50 +10001934 * Are you ready? Take a deep breath and join me in the core of the Host, in
1935 * "make Host".
1936 :*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001937
1938static struct option opts[] = {
1939 { "verbose", 0, NULL, 'v' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001940 { "tunnet", 1, NULL, 't' },
1941 { "block", 1, NULL, 'b' },
Rusty Russell28fd6d72008-07-29 09:58:33 -05001942 { "rng", 0, NULL, 'r' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001943 { "initrd", 1, NULL, 'i' },
1944 { NULL },
1945};
1946static void usage(void)
1947{
1948 errx(1, "Usage: lguest [--verbose] "
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001949 "[--tunnet=(<ipaddr>:<macaddr>|bridge:<bridgename>:<macaddr>)\n"
Rusty Russell8ca47e02007-07-19 01:49:29 -07001950 "|--block=<filename>|--initrd=<filename>]...\n"
1951 "<mem-in-mb> vmlinux [args...]");
1952}
1953
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001954/*L:105 The main routine is where the real work begins: */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001955int main(int argc, char *argv[])
1956{
Rusty Russell47436aa2007-10-22 11:03:36 +10001957 /* Memory, top-level pagetable, code startpoint and size of the
1958 * (optional) initrd. */
1959 unsigned long mem = 0, pgdir, start, initrd_size = 0;
Rusty Russelle1e72962007-10-25 15:02:50 +10001960 /* Two temporaries and the /dev/lguest file descriptor. */
Rusty Russell6570c45992007-07-23 18:43:56 -07001961 int i, c, lguest_fd;
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001962 /* The boot information for the Guest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10001963 struct boot_params *boot;
Rusty Russelldde79782007-07-26 10:41:03 -07001964 /* If they specify an initrd file to load. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001965 const char *initrd_name = NULL;
1966
Balaji Raoec04b132007-12-28 14:26:24 +05301967 /* Save the args: we "reboot" by execing ourselves again. */
1968 main_args = argv;
1969 /* We don't "wait" for the children, so prevent them from becoming
1970 * zombies. */
1971 signal(SIGCHLD, SIG_IGN);
1972
Rusty Russelldde79782007-07-26 10:41:03 -07001973 /* First we initialize the device list. Since console and network
1974 * device receive input from a file descriptor, we keep an fdset
1975 * (infds) and the maximum fd number (max_infd) with the head of the
Rusty Russella586d4f2008-02-04 23:49:56 -05001976 * list. We also keep a pointer to the last device. Finally, we keep
Rusty Russella6bd8e12008-03-28 11:05:53 -05001977 * the next interrupt number to use for devices (1: remember that 0 is
1978 * used by the timer). */
Rusty Russell17cbca22007-10-22 11:24:22 +10001979 FD_ZERO(&devices.infds);
1980 devices.max_infd = -1;
Rusty Russella586d4f2008-02-04 23:49:56 -05001981 devices.lastdev = NULL;
Rusty Russell17cbca22007-10-22 11:24:22 +10001982 devices.next_irq = 1;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001983
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001984 cpu_id = 0;
Rusty Russelldde79782007-07-26 10:41:03 -07001985 /* We need to know how much memory so we can set up the device
1986 * descriptor and memory pages for the devices as we parse the command
1987 * line. So we quickly look through the arguments to find the amount
1988 * of memory now. */
Rusty Russell6570c45992007-07-23 18:43:56 -07001989 for (i = 1; i < argc; i++) {
1990 if (argv[i][0] != '-') {
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001991 mem = atoi(argv[i]) * 1024 * 1024;
1992 /* We start by mapping anonymous pages over all of
1993 * guest-physical memory range. This fills it with 0,
1994 * and ensures that the Guest won't be killed when it
1995 * tries to access it. */
1996 guest_base = map_zeroed_pages(mem / getpagesize()
1997 + DEVICE_PAGES);
1998 guest_limit = mem;
1999 guest_max = mem + DEVICE_PAGES*getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10002000 devices.descpage = get_pages(1);
Rusty Russell6570c45992007-07-23 18:43:56 -07002001 break;
2002 }
2003 }
Rusty Russelldde79782007-07-26 10:41:03 -07002004
2005 /* The options are fairly straight-forward */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002006 while ((c = getopt_long(argc, argv, "v", opts, NULL)) != EOF) {
2007 switch (c) {
2008 case 'v':
2009 verbose = true;
2010 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002011 case 't':
Rusty Russell17cbca22007-10-22 11:24:22 +10002012 setup_tun_net(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002013 break;
2014 case 'b':
Rusty Russell17cbca22007-10-22 11:24:22 +10002015 setup_block_file(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002016 break;
Rusty Russell28fd6d72008-07-29 09:58:33 -05002017 case 'r':
2018 setup_rng();
2019 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002020 case 'i':
2021 initrd_name = optarg;
2022 break;
2023 default:
2024 warnx("Unknown argument %s", argv[optind]);
2025 usage();
2026 }
2027 }
Rusty Russelldde79782007-07-26 10:41:03 -07002028 /* After the other arguments we expect memory and kernel image name,
2029 * followed by command line arguments for the kernel. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002030 if (optind + 2 > argc)
2031 usage();
2032
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002033 verbose("Guest base is at %p\n", guest_base);
2034
Rusty Russelldde79782007-07-26 10:41:03 -07002035 /* We always have a console device */
Rusty Russell17cbca22007-10-22 11:24:22 +10002036 setup_console();
Rusty Russell8ca47e02007-07-19 01:49:29 -07002037
Rusty Russella1618832008-07-29 09:58:35 -05002038 /* We can timeout waiting for Guest network transmit. */
2039 setup_timeout();
2040
Rusty Russell8ca47e02007-07-19 01:49:29 -07002041 /* Now we load the kernel */
Rusty Russell47436aa2007-10-22 11:03:36 +10002042 start = load_kernel(open_or_die(argv[optind+1], O_RDONLY));
Rusty Russell8ca47e02007-07-19 01:49:29 -07002043
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002044 /* Boot information is stashed at physical address 0 */
2045 boot = from_guest_phys(0);
2046
Rusty Russelldde79782007-07-26 10:41:03 -07002047 /* Map the initrd image if requested (at top of physical memory) */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002048 if (initrd_name) {
2049 initrd_size = load_initrd(initrd_name, mem);
Rusty Russelldde79782007-07-26 10:41:03 -07002050 /* These are the location in the Linux boot header where the
2051 * start and size of the initrd are expected to be found. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002052 boot->hdr.ramdisk_image = mem - initrd_size;
2053 boot->hdr.ramdisk_size = initrd_size;
Rusty Russelldde79782007-07-26 10:41:03 -07002054 /* The bootloader type 0xFF means "unknown"; that's OK. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002055 boot->hdr.type_of_loader = 0xFF;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002056 }
2057
Rusty Russelldde79782007-07-26 10:41:03 -07002058 /* Set up the initial linear pagetables, starting below the initrd. */
Rusty Russell47436aa2007-10-22 11:03:36 +10002059 pgdir = setup_pagetables(mem, initrd_size);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002060
Rusty Russelldde79782007-07-26 10:41:03 -07002061 /* The Linux boot header contains an "E820" memory map: ours is a
2062 * simple, single region. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002063 boot->e820_entries = 1;
2064 boot->e820_map[0] = ((struct e820entry) { 0, mem, E820_RAM });
Rusty Russelldde79782007-07-26 10:41:03 -07002065 /* The boot header contains a command line pointer: we put the command
Rusty Russell43d33b22007-10-22 11:29:57 +10002066 * line after the boot header. */
2067 boot->hdr.cmd_line_ptr = to_guest_phys(boot + 1);
Rusty Russelle1e72962007-10-25 15:02:50 +10002068 /* We use a simple helper to copy the arguments separated by spaces. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002069 concat((char *)(boot + 1), argv+optind+2);
Rusty Russelldde79782007-07-26 10:41:03 -07002070
Rusty Russell814a0e52007-10-22 11:29:44 +10002071 /* Boot protocol version: 2.07 supports the fields for lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002072 boot->hdr.version = 0x207;
Rusty Russell814a0e52007-10-22 11:29:44 +10002073
2074 /* The hardware_subarch value of "1" tells the Guest it's an lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002075 boot->hdr.hardware_subarch = 1;
Rusty Russell814a0e52007-10-22 11:29:44 +10002076
Rusty Russell43d33b22007-10-22 11:29:57 +10002077 /* Tell the entry path not to try to reload segment registers. */
2078 boot->hdr.loadflags |= KEEP_SEGMENTS;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002079
Rusty Russelldde79782007-07-26 10:41:03 -07002080 /* We tell the kernel to initialize the Guest: this returns the open
2081 * /dev/lguest file descriptor. */
Rusty Russell47436aa2007-10-22 11:03:36 +10002082 lguest_fd = tell_kernel(pgdir, start);
Rusty Russelldde79782007-07-26 10:41:03 -07002083
2084 /* We fork off a child process, which wakes the Launcher whenever one
Rusty Russella6bd8e12008-03-28 11:05:53 -05002085 * of the input file descriptors needs attention. We call this the
2086 * Waker, and we'll cover it in a moment. */
Rusty Russell17cbca22007-10-22 11:24:22 +10002087 waker_fd = setup_waker(lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002088
Rusty Russelldde79782007-07-26 10:41:03 -07002089 /* Finally, run the Guest. This doesn't return. */
Rusty Russell17cbca22007-10-22 11:24:22 +10002090 run_guest(lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002091}
Rusty Russellf56a3842007-07-26 10:41:05 -07002092/*:*/
2093
2094/*M:999
2095 * Mastery is done: you now know everything I do.
2096 *
2097 * But surely you have seen code, features and bugs in your wanderings which
2098 * you now yearn to attack? That is the real game, and I look forward to you
2099 * patching and forking lguest into the Your-Name-Here-visor.
2100 *
2101 * Farewell, and good coding!
2102 * Rusty Russell.
2103 */