blob: 07a03452c227e3804a04661f26e7ca8cc73bec35 [file] [log] [blame]
Rusty Russell2e04ef72009-07-30 16:03:45 -06001/*P:100
2 * This is the Launcher code, a simple program which lays out the "physical"
3 * memory for the new Guest by mapping the kernel image and the virtual
4 * devices, then opens /dev/lguest to tell the kernel about the Guest and
5 * control it.
6:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07007#define _LARGEFILE64_SOURCE
8#define _GNU_SOURCE
9#include <stdio.h>
10#include <string.h>
11#include <unistd.h>
12#include <err.h>
13#include <stdint.h>
14#include <stdlib.h>
15#include <elf.h>
16#include <sys/mman.h>
Ronald G. Minnich6649bb72007-08-28 14:35:59 -070017#include <sys/param.h>
Rusty Russell8ca47e02007-07-19 01:49:29 -070018#include <sys/types.h>
19#include <sys/stat.h>
20#include <sys/wait.h>
Rusty Russell659a0e62009-06-12 22:27:10 -060021#include <sys/eventfd.h>
Rusty Russell8ca47e02007-07-19 01:49:29 -070022#include <fcntl.h>
23#include <stdbool.h>
24#include <errno.h>
25#include <ctype.h>
26#include <sys/socket.h>
27#include <sys/ioctl.h>
28#include <sys/time.h>
29#include <time.h>
30#include <netinet/in.h>
31#include <net/if.h>
32#include <linux/sockios.h>
33#include <linux/if_tun.h>
34#include <sys/uio.h>
35#include <termios.h>
36#include <getopt.h>
Rusty Russell17cbca22007-10-22 11:24:22 +100037#include <assert.h>
38#include <sched.h>
Rusty Russella586d4f2008-02-04 23:49:56 -050039#include <limits.h>
40#include <stddef.h>
Rusty Russella1618832008-07-29 09:58:35 -050041#include <signal.h>
Philip Sanderson8aeb36e2011-01-20 21:37:28 -060042#include <pwd.h>
43#include <grp.h>
44
Rusty Russellf8466192010-08-27 08:39:48 -060045#include <linux/virtio_config.h>
46#include <linux/virtio_net.h>
47#include <linux/virtio_blk.h>
48#include <linux/virtio_console.h>
49#include <linux/virtio_rng.h>
50#include <linux/virtio_ring.h>
51#include <asm/bootparam.h>
Davidlohr Bueso07fe9972012-01-12 15:44:47 +103052#include "../../include/linux/lguest_launcher.h"
Rusty Russell2e04ef72009-07-30 16:03:45 -060053/*L:110
Rusty Russell9f542882011-07-22 14:39:50 +093054 * We can ignore the 43 include files we need for this program, but I do want
Rusty Russell2e04ef72009-07-30 16:03:45 -060055 * to draw attention to the use of kernel-style types.
Rusty Russelldb24e8c2007-10-25 14:09:25 +100056 *
57 * As Linus said, "C is a Spartan language, and so should your naming be." I
58 * like these abbreviations, so we define them here. Note that u64 is always
59 * unsigned long long, which works on all Linux systems: this means that we can
Rusty Russell2e04ef72009-07-30 16:03:45 -060060 * use %llu in printf for any u64.
61 */
Rusty Russelldb24e8c2007-10-25 14:09:25 +100062typedef unsigned long long u64;
63typedef uint32_t u32;
64typedef uint16_t u16;
65typedef uint8_t u8;
Rusty Russelldde79782007-07-26 10:41:03 -070066/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -070067
Rusty Russell8ca47e02007-07-19 01:49:29 -070068#define BRIDGE_PFX "bridge:"
69#ifndef SIOCBRADDIF
70#define SIOCBRADDIF 0x89a2 /* add interface to bridge */
71#endif
Rusty Russell3c6b5bf2007-10-22 11:03:26 +100072/* We can have up to 256 pages for devices. */
73#define DEVICE_PAGES 256
Rusty Russell0f0c4fa2008-07-29 09:58:37 -050074/* This will occupy 3 pages: it must be a power of 2. */
75#define VIRTQUEUE_NUM 256
Rusty Russell8ca47e02007-07-19 01:49:29 -070076
Rusty Russell2e04ef72009-07-30 16:03:45 -060077/*L:120
78 * verbose is both a global flag and a macro. The C preprocessor allows
79 * this, and although I wouldn't recommend it, it works quite nicely here.
80 */
Rusty Russell8ca47e02007-07-19 01:49:29 -070081static bool verbose;
82#define verbose(args...) \
83 do { if (verbose) printf(args); } while(0)
Rusty Russelldde79782007-07-26 10:41:03 -070084/*:*/
85
Rusty Russell3c6b5bf2007-10-22 11:03:26 +100086/* The pointer to the start of guest memory. */
87static void *guest_base;
88/* The maximum guest physical address allowed, and maximum possible. */
89static unsigned long guest_limit, guest_max;
Rusty Russell56739c802009-06-12 22:26:59 -060090/* The /dev/lguest file descriptor. */
91static int lguest_fd;
Rusty Russell8ca47e02007-07-19 01:49:29 -070092
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -020093/* a per-cpu variable indicating whose vcpu is currently running */
94static unsigned int __thread cpu_id;
95
Rusty Russelldde79782007-07-26 10:41:03 -070096/* This is our list of devices. */
Rusty Russell1842f232009-07-30 16:03:46 -060097struct device_list {
Rusty Russell17cbca22007-10-22 11:24:22 +100098 /* Counter to assign interrupt numbers. */
99 unsigned int next_irq;
100
101 /* Counter to print out convenient device numbers. */
102 unsigned int device_num;
103
Rusty Russelldde79782007-07-26 10:41:03 -0700104 /* The descriptor page for the devices. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000105 u8 *descpage;
106
Rusty Russelldde79782007-07-26 10:41:03 -0700107 /* A single linked list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700108 struct device *dev;
Rusty Russell2e04ef72009-07-30 16:03:45 -0600109 /* And a pointer to the last device for easy append. */
Rusty Russella586d4f2008-02-04 23:49:56 -0500110 struct device *lastdev;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700111};
112
Rusty Russell17cbca22007-10-22 11:24:22 +1000113/* The list of Guest devices, based on command line arguments. */
114static struct device_list devices;
115
Rusty Russelldde79782007-07-26 10:41:03 -0700116/* The device structure describes a single device. */
Rusty Russell1842f232009-07-30 16:03:46 -0600117struct device {
Rusty Russelldde79782007-07-26 10:41:03 -0700118 /* The linked-list pointer. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700119 struct device *next;
Rusty Russell17cbca22007-10-22 11:24:22 +1000120
Rusty Russell713b15b2009-06-12 22:26:58 -0600121 /* The device's descriptor, as mapped into the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700122 struct lguest_device_desc *desc;
Rusty Russell17cbca22007-10-22 11:24:22 +1000123
Rusty Russell713b15b2009-06-12 22:26:58 -0600124 /* We can't trust desc values once Guest has booted: we use these. */
125 unsigned int feature_len;
126 unsigned int num_vq;
127
Rusty Russell17cbca22007-10-22 11:24:22 +1000128 /* The name of this device, for --verbose. */
129 const char *name;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700130
Rusty Russell17cbca22007-10-22 11:24:22 +1000131 /* Any queues attached to this device */
132 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700133
Rusty Russell659a0e62009-06-12 22:27:10 -0600134 /* Is it operational */
135 bool running;
Rusty Russella007a752008-05-02 21:50:53 -0500136
Rusty Russell8ca47e02007-07-19 01:49:29 -0700137 /* Device-specific data. */
138 void *priv;
139};
140
Rusty Russell17cbca22007-10-22 11:24:22 +1000141/* The virtqueue structure describes a queue attached to a device. */
Rusty Russell1842f232009-07-30 16:03:46 -0600142struct virtqueue {
Rusty Russell17cbca22007-10-22 11:24:22 +1000143 struct virtqueue *next;
144
145 /* Which device owns me. */
146 struct device *dev;
147
148 /* The configuration for this queue. */
149 struct lguest_vqconfig config;
150
151 /* The actual ring of buffers. */
152 struct vring vring;
153
154 /* Last available index we saw. */
155 u16 last_avail_idx;
156
Rusty Russell95c517c2009-06-12 22:27:11 -0600157 /* How many are used since we sent last irq? */
158 unsigned int pending_used;
159
Rusty Russell659a0e62009-06-12 22:27:10 -0600160 /* Eventfd where Guest notifications arrive. */
161 int eventfd;
Rusty Russell20887612008-05-30 15:09:46 -0500162
Rusty Russell659a0e62009-06-12 22:27:10 -0600163 /* Function for the thread which is servicing this virtqueue. */
164 void (*service)(struct virtqueue *vq);
165 pid_t thread;
Rusty Russell17cbca22007-10-22 11:24:22 +1000166};
167
Balaji Raoec04b132007-12-28 14:26:24 +0530168/* Remember the arguments to the program so we can "reboot" */
169static char **main_args;
170
Rusty Russell659a0e62009-06-12 22:27:10 -0600171/* The original tty settings to restore on exit. */
172static struct termios orig_term;
173
Rusty Russell2e04ef72009-07-30 16:03:45 -0600174/*
175 * We have to be careful with barriers: our devices are all run in separate
Rusty Russellf7027c62009-06-12 22:27:00 -0600176 * threads and so we need to make sure that changes visible to the Guest happen
Rusty Russell2e04ef72009-07-30 16:03:45 -0600177 * in precise order.
178 */
Rusty Russellf7027c62009-06-12 22:27:00 -0600179#define wmb() __asm__ __volatile__("" : : : "memory")
Rusty Russellb60da132009-06-12 22:27:12 -0600180#define mb() __asm__ __volatile__("" : : : "memory")
Rusty Russell17cbca22007-10-22 11:24:22 +1000181
Rusty Russellb5111792008-07-29 09:58:34 -0500182/* Wrapper for the last available index. Makes it easier to change. */
183#define lg_last_avail(vq) ((vq)->last_avail_idx)
184
Rusty Russell2e04ef72009-07-30 16:03:45 -0600185/*
186 * The virtio configuration space is defined to be little-endian. x86 is
187 * little-endian too, but it's nice to be explicit so we have these helpers.
188 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000189#define cpu_to_le16(v16) (v16)
190#define cpu_to_le32(v32) (v32)
191#define cpu_to_le64(v64) (v64)
192#define le16_to_cpu(v16) (v16)
193#define le32_to_cpu(v32) (v32)
Rusty Russella586d4f2008-02-04 23:49:56 -0500194#define le64_to_cpu(v64) (v64)
Rusty Russell17cbca22007-10-22 11:24:22 +1000195
Rusty Russell28fd6d72008-07-29 09:58:33 -0500196/* Is this iovec empty? */
197static bool iov_empty(const struct iovec iov[], unsigned int num_iov)
198{
199 unsigned int i;
200
201 for (i = 0; i < num_iov; i++)
202 if (iov[i].iov_len)
203 return false;
204 return true;
205}
206
207/* Take len bytes from the front of this iovec. */
Rusty Russellc0316a92012-10-16 23:56:13 +1030208static void iov_consume(struct iovec iov[], unsigned num_iov,
209 void *dest, unsigned len)
Rusty Russell28fd6d72008-07-29 09:58:33 -0500210{
211 unsigned int i;
212
213 for (i = 0; i < num_iov; i++) {
214 unsigned int used;
215
216 used = iov[i].iov_len < len ? iov[i].iov_len : len;
Rusty Russellc0316a92012-10-16 23:56:13 +1030217 if (dest) {
218 memcpy(dest, iov[i].iov_base, used);
219 dest += used;
220 }
Rusty Russell28fd6d72008-07-29 09:58:33 -0500221 iov[i].iov_base += used;
222 iov[i].iov_len -= used;
223 len -= used;
224 }
Rusty Russellc0316a92012-10-16 23:56:13 +1030225 if (len != 0)
226 errx(1, "iovec too short!");
Rusty Russell28fd6d72008-07-29 09:58:33 -0500227}
228
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500229/* The device virtqueue descriptors are followed by feature bitmasks. */
230static u8 *get_feature_bits(struct device *dev)
231{
232 return (u8 *)(dev->desc + 1)
Rusty Russell713b15b2009-06-12 22:26:58 -0600233 + dev->num_vq * sizeof(struct lguest_vqconfig);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500234}
235
Rusty Russell2e04ef72009-07-30 16:03:45 -0600236/*L:100
237 * The Launcher code itself takes us out into userspace, that scary place where
238 * pointers run wild and free! Unfortunately, like most userspace programs,
239 * it's quite boring (which is why everyone likes to hack on the kernel!).
240 * Perhaps if you make up an Lguest Drinking Game at this point, it will get
241 * you through this section. Or, maybe not.
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000242 *
243 * The Launcher sets up a big chunk of memory to be the Guest's "physical"
244 * memory and stores it in "guest_base". In other words, Guest physical ==
245 * Launcher virtual with an offset.
246 *
247 * This can be tough to get your head around, but usually it just means that we
Francis Galieguea33f3222010-04-23 00:08:02 +0200248 * use these trivial conversion functions when the Guest gives us its
Rusty Russell2e04ef72009-07-30 16:03:45 -0600249 * "physical" addresses:
250 */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000251static void *from_guest_phys(unsigned long addr)
252{
253 return guest_base + addr;
254}
255
256static unsigned long to_guest_phys(const void *addr)
257{
258 return (addr - guest_base);
259}
260
Rusty Russelldde79782007-07-26 10:41:03 -0700261/*L:130
262 * Loading the Kernel.
263 *
264 * We start with couple of simple helper routines. open_or_die() avoids
Rusty Russell2e04ef72009-07-30 16:03:45 -0600265 * error-checking code cluttering the callers:
266 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700267static int open_or_die(const char *name, int flags)
268{
269 int fd = open(name, flags);
270 if (fd < 0)
271 err(1, "Failed to open %s", name);
272 return fd;
273}
274
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000275/* map_zeroed_pages() takes a number of pages. */
276static void *map_zeroed_pages(unsigned int num)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700277{
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000278 int fd = open_or_die("/dev/zero", O_RDONLY);
279 void *addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700280
Rusty Russell2e04ef72009-07-30 16:03:45 -0600281 /*
282 * We use a private mapping (ie. if we write to the page, it will be
Philip Sanderson5230ff02011-01-20 21:37:28 -0600283 * copied). We allocate an extra two pages PROT_NONE to act as guard
284 * pages against read/write attempts that exceed allocated space.
Rusty Russell2e04ef72009-07-30 16:03:45 -0600285 */
Philip Sanderson5230ff02011-01-20 21:37:28 -0600286 addr = mmap(NULL, getpagesize() * (num+2),
287 PROT_NONE, MAP_PRIVATE, fd, 0);
288
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000289 if (addr == MAP_FAILED)
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200290 err(1, "Mmapping %u pages of /dev/zero", num);
Rusty Russella91d74a2009-07-30 16:03:45 -0600291
Philip Sanderson5230ff02011-01-20 21:37:28 -0600292 if (mprotect(addr + getpagesize(), getpagesize() * num,
293 PROT_READ|PROT_WRITE) == -1)
294 err(1, "mprotect rw %u pages failed", num);
295
Rusty Russella91d74a2009-07-30 16:03:45 -0600296 /*
297 * One neat mmap feature is that you can close the fd, and it
298 * stays mapped.
299 */
Mark McLoughlin34bdaab2008-06-13 14:04:58 +0100300 close(fd);
Rusty Russelldde79782007-07-26 10:41:03 -0700301
Philip Sanderson5230ff02011-01-20 21:37:28 -0600302 /* Return address after PROT_NONE page */
303 return addr + getpagesize();
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000304}
305
306/* Get some more pages for a device. */
307static void *get_pages(unsigned int num)
308{
309 void *addr = from_guest_phys(guest_limit);
310
311 guest_limit += num * getpagesize();
312 if (guest_limit > guest_max)
313 errx(1, "Not enough memory for devices");
314 return addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700315}
316
Rusty Russell2e04ef72009-07-30 16:03:45 -0600317/*
318 * This routine is used to load the kernel or initrd. It tries mmap, but if
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700319 * that fails (Plan 9's kernel file isn't nicely aligned on page boundaries),
Rusty Russell2e04ef72009-07-30 16:03:45 -0600320 * it falls back to reading the memory in.
321 */
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700322static void map_at(int fd, void *addr, unsigned long offset, unsigned long len)
323{
324 ssize_t r;
325
Rusty Russell2e04ef72009-07-30 16:03:45 -0600326 /*
327 * We map writable even though for some segments are marked read-only.
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700328 * The kernel really wants to be writable: it patches its own
329 * instructions.
330 *
331 * MAP_PRIVATE means that the page won't be copied until a write is
332 * done to it. This allows us to share untouched memory between
Rusty Russell2e04ef72009-07-30 16:03:45 -0600333 * Guests.
334 */
Philip Sanderson5230ff02011-01-20 21:37:28 -0600335 if (mmap(addr, len, PROT_READ|PROT_WRITE,
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700336 MAP_FIXED|MAP_PRIVATE, fd, offset) != MAP_FAILED)
337 return;
338
339 /* pread does a seek and a read in one shot: saves a few lines. */
340 r = pread(fd, addr, len, offset);
341 if (r != len)
342 err(1, "Reading offset %lu len %lu gave %zi", offset, len, r);
343}
344
Rusty Russell2e04ef72009-07-30 16:03:45 -0600345/*
346 * This routine takes an open vmlinux image, which is in ELF, and maps it into
Rusty Russelldde79782007-07-26 10:41:03 -0700347 * the Guest memory. ELF = Embedded Linking Format, which is the format used
348 * by all modern binaries on Linux including the kernel.
349 *
350 * The ELF headers give *two* addresses: a physical address, and a virtual
Rusty Russell47436aa2007-10-22 11:03:36 +1000351 * address. We use the physical address; the Guest will map itself to the
352 * virtual address.
Rusty Russelldde79782007-07-26 10:41:03 -0700353 *
Rusty Russell2e04ef72009-07-30 16:03:45 -0600354 * We return the starting address.
355 */
Rusty Russell47436aa2007-10-22 11:03:36 +1000356static unsigned long map_elf(int elf_fd, const Elf32_Ehdr *ehdr)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700357{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700358 Elf32_Phdr phdr[ehdr->e_phnum];
359 unsigned int i;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700360
Rusty Russell2e04ef72009-07-30 16:03:45 -0600361 /*
362 * Sanity checks on the main ELF header: an x86 executable with a
363 * reasonable number of correctly-sized program headers.
364 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700365 if (ehdr->e_type != ET_EXEC
366 || ehdr->e_machine != EM_386
367 || ehdr->e_phentsize != sizeof(Elf32_Phdr)
368 || ehdr->e_phnum < 1 || ehdr->e_phnum > 65536U/sizeof(Elf32_Phdr))
369 errx(1, "Malformed elf header");
370
Rusty Russell2e04ef72009-07-30 16:03:45 -0600371 /*
372 * An ELF executable contains an ELF header and a number of "program"
Rusty Russelldde79782007-07-26 10:41:03 -0700373 * headers which indicate which parts ("segments") of the program to
Rusty Russell2e04ef72009-07-30 16:03:45 -0600374 * load where.
375 */
Rusty Russelldde79782007-07-26 10:41:03 -0700376
377 /* We read in all the program headers at once: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700378 if (lseek(elf_fd, ehdr->e_phoff, SEEK_SET) < 0)
379 err(1, "Seeking to program headers");
380 if (read(elf_fd, phdr, sizeof(phdr)) != sizeof(phdr))
381 err(1, "Reading program headers");
382
Rusty Russell2e04ef72009-07-30 16:03:45 -0600383 /*
384 * Try all the headers: there are usually only three. A read-only one,
385 * a read-write one, and a "note" section which we don't load.
386 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700387 for (i = 0; i < ehdr->e_phnum; i++) {
Rusty Russelldde79782007-07-26 10:41:03 -0700388 /* If this isn't a loadable segment, we ignore it */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700389 if (phdr[i].p_type != PT_LOAD)
390 continue;
391
392 verbose("Section %i: size %i addr %p\n",
393 i, phdr[i].p_memsz, (void *)phdr[i].p_paddr);
394
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700395 /* We map this section of the file at its physical address. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000396 map_at(elf_fd, from_guest_phys(phdr[i].p_paddr),
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700397 phdr[i].p_offset, phdr[i].p_filesz);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700398 }
399
Rusty Russell814a0e52007-10-22 11:29:44 +1000400 /* The entry point is given in the ELF header. */
401 return ehdr->e_entry;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700402}
403
Rusty Russell2e04ef72009-07-30 16:03:45 -0600404/*L:150
405 * A bzImage, unlike an ELF file, is not meant to be loaded. You're supposed
406 * to jump into it and it will unpack itself. We used to have to perform some
407 * hairy magic because the unpacking code scared me.
Rusty Russelldde79782007-07-26 10:41:03 -0700408 *
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000409 * Fortunately, Jeremy Fitzhardinge convinced me it wasn't that hard and wrote
410 * a small patch to jump over the tricky bits in the Guest, so now we just read
Rusty Russell2e04ef72009-07-30 16:03:45 -0600411 * the funky header so we know where in the file to load, and away we go!
412 */
Rusty Russell47436aa2007-10-22 11:03:36 +1000413static unsigned long load_bzimage(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700414{
Rusty Russell43d33b22007-10-22 11:29:57 +1000415 struct boot_params boot;
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000416 int r;
417 /* Modern bzImages get loaded at 1M. */
418 void *p = from_guest_phys(0x100000);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700419
Rusty Russell2e04ef72009-07-30 16:03:45 -0600420 /*
421 * Go back to the start of the file and read the header. It should be
Paul Bolle395cf962011-08-15 02:02:26 +0200422 * a Linux boot header (see Documentation/x86/boot.txt)
Rusty Russell2e04ef72009-07-30 16:03:45 -0600423 */
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000424 lseek(fd, 0, SEEK_SET);
Rusty Russell43d33b22007-10-22 11:29:57 +1000425 read(fd, &boot, sizeof(boot));
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000426
Rusty Russell43d33b22007-10-22 11:29:57 +1000427 /* Inside the setup_hdr, we expect the magic "HdrS" */
428 if (memcmp(&boot.hdr.header, "HdrS", 4) != 0)
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000429 errx(1, "This doesn't look like a bzImage to me");
430
Rusty Russell43d33b22007-10-22 11:29:57 +1000431 /* Skip over the extra sectors of the header. */
432 lseek(fd, (boot.hdr.setup_sects+1) * 512, SEEK_SET);
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000433
434 /* Now read everything into memory. in nice big chunks. */
435 while ((r = read(fd, p, 65536)) > 0)
436 p += r;
437
Rusty Russell43d33b22007-10-22 11:29:57 +1000438 /* Finally, code32_start tells us where to enter the kernel. */
439 return boot.hdr.code32_start;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700440}
441
Rusty Russell2e04ef72009-07-30 16:03:45 -0600442/*L:140
443 * Loading the kernel is easy when it's a "vmlinux", but most kernels
Rusty Russelle1e72962007-10-25 15:02:50 +1000444 * come wrapped up in the self-decompressing "bzImage" format. With a little
Rusty Russell2e04ef72009-07-30 16:03:45 -0600445 * work, we can load those, too.
446 */
Rusty Russell47436aa2007-10-22 11:03:36 +1000447static unsigned long load_kernel(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700448{
449 Elf32_Ehdr hdr;
450
Rusty Russelldde79782007-07-26 10:41:03 -0700451 /* Read in the first few bytes. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700452 if (read(fd, &hdr, sizeof(hdr)) != sizeof(hdr))
453 err(1, "Reading kernel");
454
Rusty Russelldde79782007-07-26 10:41:03 -0700455 /* If it's an ELF file, it starts with "\177ELF" */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700456 if (memcmp(hdr.e_ident, ELFMAG, SELFMAG) == 0)
Rusty Russell47436aa2007-10-22 11:03:36 +1000457 return map_elf(fd, &hdr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700458
Rusty Russella6bd8e12008-03-28 11:05:53 -0500459 /* Otherwise we assume it's a bzImage, and try to load it. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000460 return load_bzimage(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700461}
462
Rusty Russell2e04ef72009-07-30 16:03:45 -0600463/*
464 * This is a trivial little helper to align pages. Andi Kleen hated it because
Rusty Russelldde79782007-07-26 10:41:03 -0700465 * it calls getpagesize() twice: "it's dumb code."
466 *
467 * Kernel guys get really het up about optimization, even when it's not
Rusty Russell2e04ef72009-07-30 16:03:45 -0600468 * necessary. I leave this code as a reaction against that.
469 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700470static inline unsigned long page_align(unsigned long addr)
471{
Rusty Russelldde79782007-07-26 10:41:03 -0700472 /* Add upwards and truncate downwards. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700473 return ((addr + getpagesize()-1) & ~(getpagesize()-1));
474}
475
Rusty Russell2e04ef72009-07-30 16:03:45 -0600476/*L:180
477 * An "initial ram disk" is a disk image loaded into memory along with the
478 * kernel which the kernel can use to boot from without needing any drivers.
479 * Most distributions now use this as standard: the initrd contains the code to
480 * load the appropriate driver modules for the current machine.
Rusty Russelldde79782007-07-26 10:41:03 -0700481 *
482 * Importantly, James Morris works for RedHat, and Fedora uses initrds for its
Rusty Russell2e04ef72009-07-30 16:03:45 -0600483 * kernels. He sent me this (and tells me when I break it).
484 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700485static unsigned long load_initrd(const char *name, unsigned long mem)
486{
487 int ifd;
488 struct stat st;
489 unsigned long len;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700490
491 ifd = open_or_die(name, O_RDONLY);
Rusty Russelldde79782007-07-26 10:41:03 -0700492 /* fstat() is needed to get the file size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700493 if (fstat(ifd, &st) < 0)
494 err(1, "fstat() on initrd '%s'", name);
495
Rusty Russell2e04ef72009-07-30 16:03:45 -0600496 /*
497 * We map the initrd at the top of memory, but mmap wants it to be
498 * page-aligned, so we round the size up for that.
499 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700500 len = page_align(st.st_size);
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000501 map_at(ifd, from_guest_phys(mem - len), 0, st.st_size);
Rusty Russell2e04ef72009-07-30 16:03:45 -0600502 /*
503 * Once a file is mapped, you can close the file descriptor. It's a
504 * little odd, but quite useful.
505 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700506 close(ifd);
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700507 verbose("mapped initrd %s size=%lu @ %p\n", name, len, (void*)mem-len);
Rusty Russelldde79782007-07-26 10:41:03 -0700508
509 /* We return the initrd size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700510 return len;
511}
Rusty Russelle1e72962007-10-25 15:02:50 +1000512/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700513
Rusty Russell2e04ef72009-07-30 16:03:45 -0600514/*
515 * Simple routine to roll all the commandline arguments together with spaces
516 * between them.
517 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700518static void concat(char *dst, char *args[])
519{
520 unsigned int i, len = 0;
521
522 for (i = 0; args[i]; i++) {
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100523 if (i) {
524 strcat(dst+len, " ");
525 len++;
526 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700527 strcpy(dst+len, args[i]);
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100528 len += strlen(args[i]);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700529 }
530 /* In case it's empty. */
531 dst[len] = '\0';
532}
533
Rusty Russell2e04ef72009-07-30 16:03:45 -0600534/*L:185
535 * This is where we actually tell the kernel to initialize the Guest. We
Rusty Russelle1e72962007-10-25 15:02:50 +1000536 * saw the arguments it expects when we looked at initialize() in lguest_user.c:
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300537 * the base of Guest "physical" memory, the top physical page to allow and the
Rusty Russell2e04ef72009-07-30 16:03:45 -0600538 * entry point for the Guest.
539 */
Rusty Russell56739c802009-06-12 22:26:59 -0600540static void tell_kernel(unsigned long start)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700541{
Jes Sorensen511801d2007-10-22 11:03:31 +1000542 unsigned long args[] = { LHREQ_INITIALIZE,
543 (unsigned long)guest_base,
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300544 guest_limit / getpagesize(), start };
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000545 verbose("Guest: %p - %p (%#lx)\n",
546 guest_base, guest_base + guest_limit, guest_limit);
Rusty Russell56739c802009-06-12 22:26:59 -0600547 lguest_fd = open_or_die("/dev/lguest", O_RDWR);
548 if (write(lguest_fd, args, sizeof(args)) < 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700549 err(1, "Writing to /dev/lguest");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700550}
Rusty Russelldde79782007-07-26 10:41:03 -0700551/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700552
Rusty Russella91d74a2009-07-30 16:03:45 -0600553/*L:200
Rusty Russelldde79782007-07-26 10:41:03 -0700554 * Device Handling.
555 *
Rusty Russelle1e72962007-10-25 15:02:50 +1000556 * When the Guest gives us a buffer, it sends an array of addresses and sizes.
Rusty Russelldde79782007-07-26 10:41:03 -0700557 * We need to make sure it's not trying to reach into the Launcher itself, so
Rusty Russelle1e72962007-10-25 15:02:50 +1000558 * we have a convenient routine which checks it and exits with an error message
Rusty Russelldde79782007-07-26 10:41:03 -0700559 * if something funny is going on:
560 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700561static void *_check_pointer(unsigned long addr, unsigned int size,
562 unsigned int line)
563{
Rusty Russell2e04ef72009-07-30 16:03:45 -0600564 /*
Philip Sanderson5230ff02011-01-20 21:37:28 -0600565 * Check if the requested address and size exceeds the allocated memory,
566 * or addr + size wraps around.
Rusty Russell2e04ef72009-07-30 16:03:45 -0600567 */
Philip Sanderson5230ff02011-01-20 21:37:28 -0600568 if ((addr + size) > guest_limit || (addr + size) < addr)
Rusty Russell17cbca22007-10-22 11:24:22 +1000569 errx(1, "%s:%i: Invalid address %#lx", __FILE__, line, addr);
Rusty Russell2e04ef72009-07-30 16:03:45 -0600570 /*
571 * We return a pointer for the caller's convenience, now we know it's
572 * safe to use.
573 */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000574 return from_guest_phys(addr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700575}
Rusty Russelldde79782007-07-26 10:41:03 -0700576/* A macro which transparently hands the line number to the real function. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700577#define check_pointer(addr,size) _check_pointer(addr, size, __LINE__)
578
Rusty Russell2e04ef72009-07-30 16:03:45 -0600579/*
580 * Each buffer in the virtqueues is actually a chain of descriptors. This
Rusty Russelle1e72962007-10-25 15:02:50 +1000581 * function returns the next descriptor in the chain, or vq->vring.num if we're
Rusty Russell2e04ef72009-07-30 16:03:45 -0600582 * at the end.
583 */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100584static unsigned next_desc(struct vring_desc *desc,
585 unsigned int i, unsigned int max)
Rusty Russell17cbca22007-10-22 11:24:22 +1000586{
587 unsigned int next;
588
589 /* If this descriptor says it doesn't chain, we're done. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100590 if (!(desc[i].flags & VRING_DESC_F_NEXT))
591 return max;
Rusty Russell17cbca22007-10-22 11:24:22 +1000592
593 /* Check they're not leading us off end of descriptors. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100594 next = desc[i].next;
Rusty Russell17cbca22007-10-22 11:24:22 +1000595 /* Make sure compiler knows to grab that: we don't want it changing! */
596 wmb();
597
Mark McLoughlind1f01322009-05-11 18:11:46 +0100598 if (next >= max)
Rusty Russell17cbca22007-10-22 11:24:22 +1000599 errx(1, "Desc next is %u", next);
600
601 return next;
602}
603
Rusty Russella91d74a2009-07-30 16:03:45 -0600604/*
605 * This actually sends the interrupt for this virtqueue, if we've used a
606 * buffer.
607 */
Rusty Russell38bc2b82009-06-12 22:27:11 -0600608static void trigger_irq(struct virtqueue *vq)
609{
610 unsigned long buf[] = { LHREQ_IRQ, vq->config.irq };
611
Rusty Russell95c517c2009-06-12 22:27:11 -0600612 /* Don't inform them if nothing used. */
613 if (!vq->pending_used)
614 return;
615 vq->pending_used = 0;
616
Rusty Russellca60a422009-09-23 22:26:47 -0600617 /* If they don't want an interrupt, don't send one... */
618 if (vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT) {
Rusty Russell990c91f2011-05-30 11:14:12 -0600619 return;
Rusty Russellca60a422009-09-23 22:26:47 -0600620 }
Rusty Russell38bc2b82009-06-12 22:27:11 -0600621
622 /* Send the Guest an interrupt tell them we used something up. */
623 if (write(lguest_fd, buf, sizeof(buf)) != 0)
624 err(1, "Triggering irq %i", vq->config.irq);
625}
626
Rusty Russell2e04ef72009-07-30 16:03:45 -0600627/*
Rusty Russella91d74a2009-07-30 16:03:45 -0600628 * This looks in the virtqueue for the first available buffer, and converts
Rusty Russell17cbca22007-10-22 11:24:22 +1000629 * it to an iovec for convenient access. Since descriptors consist of some
630 * number of output then some number of input descriptors, it's actually two
631 * iovecs, but we pack them into one and note how many of each there were.
632 *
Rusty Russella91d74a2009-07-30 16:03:45 -0600633 * This function waits if necessary, and returns the descriptor number found.
Rusty Russell2e04ef72009-07-30 16:03:45 -0600634 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600635static unsigned wait_for_vq_desc(struct virtqueue *vq,
636 struct iovec iov[],
637 unsigned int *out_num, unsigned int *in_num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000638{
Mark McLoughlind1f01322009-05-11 18:11:46 +0100639 unsigned int i, head, max;
640 struct vring_desc *desc;
Rusty Russell659a0e62009-06-12 22:27:10 -0600641 u16 last_avail = lg_last_avail(vq);
642
Rusty Russella91d74a2009-07-30 16:03:45 -0600643 /* There's nothing available? */
Rusty Russell659a0e62009-06-12 22:27:10 -0600644 while (last_avail == vq->vring.avail->idx) {
645 u64 event;
646
Rusty Russella91d74a2009-07-30 16:03:45 -0600647 /*
648 * Since we're about to sleep, now is a good time to tell the
649 * Guest about what we've used up to now.
650 */
Rusty Russell38bc2b82009-06-12 22:27:11 -0600651 trigger_irq(vq);
652
Rusty Russellb60da132009-06-12 22:27:12 -0600653 /* OK, now we need to know about added descriptors. */
654 vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY;
655
Rusty Russell2e04ef72009-07-30 16:03:45 -0600656 /*
657 * They could have slipped one in as we were doing that: make
658 * sure it's written, then check again.
659 */
Rusty Russellb60da132009-06-12 22:27:12 -0600660 mb();
661 if (last_avail != vq->vring.avail->idx) {
662 vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY;
663 break;
664 }
665
Rusty Russell659a0e62009-06-12 22:27:10 -0600666 /* Nothing new? Wait for eventfd to tell us they refilled. */
667 if (read(vq->eventfd, &event, sizeof(event)) != sizeof(event))
668 errx(1, "Event read failed?");
Rusty Russellb60da132009-06-12 22:27:12 -0600669
670 /* We don't need to be notified again. */
671 vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY;
Rusty Russell659a0e62009-06-12 22:27:10 -0600672 }
Rusty Russell17cbca22007-10-22 11:24:22 +1000673
674 /* Check it isn't doing very strange things with descriptor numbers. */
Rusty Russellb5111792008-07-29 09:58:34 -0500675 if ((u16)(vq->vring.avail->idx - last_avail) > vq->vring.num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000676 errx(1, "Guest moved used index from %u to %u",
Rusty Russellb5111792008-07-29 09:58:34 -0500677 last_avail, vq->vring.avail->idx);
Rusty Russell17cbca22007-10-22 11:24:22 +1000678
Rusty Russell2e04ef72009-07-30 16:03:45 -0600679 /*
680 * Grab the next descriptor number they're advertising, and increment
681 * the index we've seen.
682 */
Rusty Russellb5111792008-07-29 09:58:34 -0500683 head = vq->vring.avail->ring[last_avail % vq->vring.num];
684 lg_last_avail(vq)++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000685
686 /* If their number is silly, that's a fatal mistake. */
687 if (head >= vq->vring.num)
688 errx(1, "Guest says index %u is available", head);
689
690 /* When we start there are none of either input nor output. */
691 *out_num = *in_num = 0;
692
Mark McLoughlind1f01322009-05-11 18:11:46 +0100693 max = vq->vring.num;
694 desc = vq->vring.desc;
Rusty Russell17cbca22007-10-22 11:24:22 +1000695 i = head;
Mark McLoughlind1f01322009-05-11 18:11:46 +0100696
Rusty Russell2e04ef72009-07-30 16:03:45 -0600697 /*
698 * If this is an indirect entry, then this buffer contains a descriptor
699 * table which we handle as if it's any normal descriptor chain.
700 */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100701 if (desc[i].flags & VRING_DESC_F_INDIRECT) {
702 if (desc[i].len % sizeof(struct vring_desc))
703 errx(1, "Invalid size for indirect buffer table");
704
705 max = desc[i].len / sizeof(struct vring_desc);
706 desc = check_pointer(desc[i].addr, desc[i].len);
707 i = 0;
708 }
709
Rusty Russell17cbca22007-10-22 11:24:22 +1000710 do {
711 /* Grab the first descriptor, and check it's OK. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100712 iov[*out_num + *in_num].iov_len = desc[i].len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000713 iov[*out_num + *in_num].iov_base
Mark McLoughlind1f01322009-05-11 18:11:46 +0100714 = check_pointer(desc[i].addr, desc[i].len);
Rusty Russell17cbca22007-10-22 11:24:22 +1000715 /* If this is an input descriptor, increment that count. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100716 if (desc[i].flags & VRING_DESC_F_WRITE)
Rusty Russell17cbca22007-10-22 11:24:22 +1000717 (*in_num)++;
718 else {
Rusty Russell2e04ef72009-07-30 16:03:45 -0600719 /*
720 * If it's an output descriptor, they're all supposed
721 * to come before any input descriptors.
722 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000723 if (*in_num)
724 errx(1, "Descriptor has out after in");
725 (*out_num)++;
726 }
727
728 /* If we've got too many, that implies a descriptor loop. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100729 if (*out_num + *in_num > max)
Rusty Russell17cbca22007-10-22 11:24:22 +1000730 errx(1, "Looped descriptor");
Mark McLoughlind1f01322009-05-11 18:11:46 +0100731 } while ((i = next_desc(desc, i, max)) != max);
Rusty Russell17cbca22007-10-22 11:24:22 +1000732
733 return head;
734}
735
Rusty Russell2e04ef72009-07-30 16:03:45 -0600736/*
Rusty Russella91d74a2009-07-30 16:03:45 -0600737 * After we've used one of their buffers, we tell the Guest about it. Sometime
738 * later we'll want to send them an interrupt using trigger_irq(); note that
739 * wait_for_vq_desc() does that for us if it has to wait.
Rusty Russell2e04ef72009-07-30 16:03:45 -0600740 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000741static void add_used(struct virtqueue *vq, unsigned int head, int len)
742{
743 struct vring_used_elem *used;
744
Rusty Russell2e04ef72009-07-30 16:03:45 -0600745 /*
746 * The virtqueue contains a ring of used buffers. Get a pointer to the
747 * next entry in that used ring.
748 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000749 used = &vq->vring.used->ring[vq->vring.used->idx % vq->vring.num];
750 used->id = head;
751 used->len = len;
752 /* Make sure buffer is written before we update index. */
753 wmb();
754 vq->vring.used->idx++;
Rusty Russell95c517c2009-06-12 22:27:11 -0600755 vq->pending_used++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000756}
757
Rusty Russell17cbca22007-10-22 11:24:22 +1000758/* And here's the combo meal deal. Supersize me! */
Rusty Russell56739c802009-06-12 22:26:59 -0600759static void add_used_and_trigger(struct virtqueue *vq, unsigned head, int len)
Rusty Russell17cbca22007-10-22 11:24:22 +1000760{
761 add_used(vq, head, len);
Rusty Russell56739c802009-06-12 22:26:59 -0600762 trigger_irq(vq);
Rusty Russell17cbca22007-10-22 11:24:22 +1000763}
764
Rusty Russelle1e72962007-10-25 15:02:50 +1000765/*
766 * The Console
767 *
Rusty Russell2e04ef72009-07-30 16:03:45 -0600768 * We associate some data with the console for our exit hack.
769 */
Rusty Russell1842f232009-07-30 16:03:46 -0600770struct console_abort {
Rusty Russelldde79782007-07-26 10:41:03 -0700771 /* How many times have they hit ^C? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700772 int count;
Rusty Russelldde79782007-07-26 10:41:03 -0700773 /* When did they start? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700774 struct timeval start;
775};
776
Rusty Russelldde79782007-07-26 10:41:03 -0700777/* This is the routine which handles console input (ie. stdin). */
Rusty Russell659a0e62009-06-12 22:27:10 -0600778static void console_input(struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700779{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700780 int len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000781 unsigned int head, in_num, out_num;
Rusty Russell659a0e62009-06-12 22:27:10 -0600782 struct console_abort *abort = vq->dev->priv;
783 struct iovec iov[vq->vring.num];
Rusty Russell8ca47e02007-07-19 01:49:29 -0700784
Rusty Russella91d74a2009-07-30 16:03:45 -0600785 /* Make sure there's a descriptor available. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600786 head = wait_for_vq_desc(vq, iov, &out_num, &in_num);
Rusty Russell56ae43d2007-10-22 11:24:23 +1000787 if (out_num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000788 errx(1, "Output buffers in console in queue?");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700789
Rusty Russella91d74a2009-07-30 16:03:45 -0600790 /* Read into it. This is where we usually wait. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600791 len = readv(STDIN_FILENO, iov, in_num);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700792 if (len <= 0) {
Rusty Russell659a0e62009-06-12 22:27:10 -0600793 /* Ran out of input? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700794 warnx("Failed to get console input, ignoring console.");
Rusty Russell2e04ef72009-07-30 16:03:45 -0600795 /*
796 * For simplicity, dying threads kill the whole Launcher. So
797 * just nap here.
798 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600799 for (;;)
800 pause();
Rusty Russell8ca47e02007-07-19 01:49:29 -0700801 }
802
Rusty Russella91d74a2009-07-30 16:03:45 -0600803 /* Tell the Guest we used a buffer. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600804 add_used_and_trigger(vq, head, len);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700805
Rusty Russell2e04ef72009-07-30 16:03:45 -0600806 /*
807 * Three ^C within one second? Exit.
Rusty Russelldde79782007-07-26 10:41:03 -0700808 *
Rusty Russell659a0e62009-06-12 22:27:10 -0600809 * This is such a hack, but works surprisingly well. Each ^C has to
810 * be in a buffer by itself, so they can't be too fast. But we check
811 * that we get three within about a second, so they can't be too
Rusty Russell2e04ef72009-07-30 16:03:45 -0600812 * slow.
813 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600814 if (len != 1 || ((char *)iov[0].iov_base)[0] != 3) {
Rusty Russell8ca47e02007-07-19 01:49:29 -0700815 abort->count = 0;
Rusty Russell659a0e62009-06-12 22:27:10 -0600816 return;
817 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700818
Rusty Russell659a0e62009-06-12 22:27:10 -0600819 abort->count++;
820 if (abort->count == 1)
821 gettimeofday(&abort->start, NULL);
822 else if (abort->count == 3) {
823 struct timeval now;
824 gettimeofday(&now, NULL);
825 /* Kill all Launcher processes with SIGINT, like normal ^C */
826 if (now.tv_sec <= abort->start.tv_sec+1)
827 kill(0, SIGINT);
828 abort->count = 0;
829 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700830}
831
Rusty Russell659a0e62009-06-12 22:27:10 -0600832/* This is the routine which handles console output (ie. stdout). */
833static void console_output(struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700834{
Rusty Russell17cbca22007-10-22 11:24:22 +1000835 unsigned int head, out, in;
Rusty Russell17cbca22007-10-22 11:24:22 +1000836 struct iovec iov[vq->vring.num];
837
Rusty Russella91d74a2009-07-30 16:03:45 -0600838 /* We usually wait in here, for the Guest to give us something. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600839 head = wait_for_vq_desc(vq, iov, &out, &in);
840 if (in)
841 errx(1, "Input buffers in console output queue?");
Rusty Russella91d74a2009-07-30 16:03:45 -0600842
843 /* writev can return a partial write, so we loop here. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600844 while (!iov_empty(iov, out)) {
845 int len = writev(STDOUT_FILENO, iov, out);
Sakari Ailuse0377e22011-06-26 19:36:46 +0300846 if (len <= 0) {
847 warn("Write to stdout gave %i (%d)", len, errno);
848 break;
849 }
Rusty Russellc0316a92012-10-16 23:56:13 +1030850 iov_consume(iov, out, NULL, len);
Rusty Russell17cbca22007-10-22 11:24:22 +1000851 }
Rusty Russella91d74a2009-07-30 16:03:45 -0600852
853 /*
854 * We're finished with that buffer: if we're going to sleep,
855 * wait_for_vq_desc() will prod the Guest with an interrupt.
856 */
Rusty Russell38bc2b82009-06-12 22:27:11 -0600857 add_used(vq, head, 0);
Rusty Russella1618832008-07-29 09:58:35 -0500858}
859
Rusty Russelle1e72962007-10-25 15:02:50 +1000860/*
861 * The Network
862 *
863 * Handling output for network is also simple: we get all the output buffers
Rusty Russell659a0e62009-06-12 22:27:10 -0600864 * and write them to /dev/net/tun.
Rusty Russella6bd8e12008-03-28 11:05:53 -0500865 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600866struct net_info {
867 int tunfd;
868};
869
870static void net_output(struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700871{
Rusty Russell659a0e62009-06-12 22:27:10 -0600872 struct net_info *net_info = vq->dev->priv;
873 unsigned int head, out, in;
Rusty Russell17cbca22007-10-22 11:24:22 +1000874 struct iovec iov[vq->vring.num];
875
Rusty Russella91d74a2009-07-30 16:03:45 -0600876 /* We usually wait in here for the Guest to give us a packet. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600877 head = wait_for_vq_desc(vq, iov, &out, &in);
878 if (in)
879 errx(1, "Input buffers in net output queue?");
Rusty Russella91d74a2009-07-30 16:03:45 -0600880 /*
881 * Send the whole thing through to /dev/net/tun. It expects the exact
882 * same format: what a coincidence!
883 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600884 if (writev(net_info->tunfd, iov, out) < 0)
Sakari Ailuse0377e22011-06-26 19:36:46 +0300885 warnx("Write to tun failed (%d)?", errno);
Rusty Russella91d74a2009-07-30 16:03:45 -0600886
887 /*
888 * Done with that one; wait_for_vq_desc() will send the interrupt if
889 * all packets are processed.
890 */
Rusty Russell38bc2b82009-06-12 22:27:11 -0600891 add_used(vq, head, 0);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700892}
893
Rusty Russella91d74a2009-07-30 16:03:45 -0600894/*
895 * Handling network input is a bit trickier, because I've tried to optimize it.
896 *
897 * First we have a helper routine which tells is if from this file descriptor
898 * (ie. the /dev/net/tun device) will block:
899 */
Rusty Russell4a8962e2009-06-12 22:27:12 -0600900static bool will_block(int fd)
901{
902 fd_set fdset;
903 struct timeval zero = { 0, 0 };
904 FD_ZERO(&fdset);
905 FD_SET(fd, &fdset);
906 return select(fd+1, &fdset, NULL, NULL, &zero) != 1;
907}
908
Rusty Russella91d74a2009-07-30 16:03:45 -0600909/*
910 * This handles packets coming in from the tun device to our Guest. Like all
911 * service routines, it gets called again as soon as it returns, so you don't
912 * see a while(1) loop here.
913 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600914static void net_input(struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700915{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700916 int len;
Rusty Russell659a0e62009-06-12 22:27:10 -0600917 unsigned int head, out, in;
918 struct iovec iov[vq->vring.num];
919 struct net_info *net_info = vq->dev->priv;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700920
Rusty Russella91d74a2009-07-30 16:03:45 -0600921 /*
922 * Get a descriptor to write an incoming packet into. This will also
923 * send an interrupt if they're out of descriptors.
924 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600925 head = wait_for_vq_desc(vq, iov, &out, &in);
926 if (out)
927 errx(1, "Output buffers in net input queue?");
Rusty Russell4a8962e2009-06-12 22:27:12 -0600928
Rusty Russella91d74a2009-07-30 16:03:45 -0600929 /*
930 * If it looks like we'll block reading from the tun device, send them
931 * an interrupt.
932 */
Rusty Russell4a8962e2009-06-12 22:27:12 -0600933 if (vq->pending_used && will_block(net_info->tunfd))
934 trigger_irq(vq);
935
Rusty Russella91d74a2009-07-30 16:03:45 -0600936 /*
937 * Read in the packet. This is where we normally wait (when there's no
938 * incoming network traffic).
939 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600940 len = readv(net_info->tunfd, iov, in);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700941 if (len <= 0)
Sakari Ailuse0377e22011-06-26 19:36:46 +0300942 warn("Failed to read from tun (%d).", errno);
Rusty Russella91d74a2009-07-30 16:03:45 -0600943
944 /*
945 * Mark that packet buffer as used, but don't interrupt here. We want
946 * to wait until we've done as much work as we can.
947 */
Rusty Russell4a8962e2009-06-12 22:27:12 -0600948 add_used(vq, head, len);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700949}
Rusty Russella91d74a2009-07-30 16:03:45 -0600950/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700951
Rusty Russella91d74a2009-07-30 16:03:45 -0600952/* This is the helper to create threads: run the service routine in a loop. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600953static int do_thread(void *_vq)
Rusty Russell56ae43d2007-10-22 11:24:23 +1000954{
Rusty Russell659a0e62009-06-12 22:27:10 -0600955 struct virtqueue *vq = _vq;
956
957 for (;;)
958 vq->service(vq);
959 return 0;
Rusty Russell56ae43d2007-10-22 11:24:23 +1000960}
961
Rusty Russell2e04ef72009-07-30 16:03:45 -0600962/*
963 * When a child dies, we kill our entire process group with SIGTERM. This
964 * also has the side effect that the shell restores the console for us!
965 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600966static void kill_launcher(int signal)
Rusty Russell5dae7852008-07-29 09:58:35 -0500967{
Rusty Russell659a0e62009-06-12 22:27:10 -0600968 kill(0, SIGTERM);
969}
970
971static void reset_device(struct device *dev)
972{
973 struct virtqueue *vq;
974
975 verbose("Resetting device %s\n", dev->name);
976
977 /* Clear any features they've acked. */
978 memset(get_feature_bits(dev) + dev->feature_len, 0, dev->feature_len);
979
980 /* We're going to be explicitly killing threads, so ignore them. */
981 signal(SIGCHLD, SIG_IGN);
982
983 /* Zero out the virtqueues, get rid of their threads */
984 for (vq = dev->vq; vq; vq = vq->next) {
985 if (vq->thread != (pid_t)-1) {
986 kill(vq->thread, SIGTERM);
987 waitpid(vq->thread, NULL, 0);
988 vq->thread = (pid_t)-1;
989 }
990 memset(vq->vring.desc, 0,
991 vring_size(vq->config.num, LGUEST_VRING_ALIGN));
992 lg_last_avail(vq) = 0;
993 }
994 dev->running = false;
995
996 /* Now we care if threads die. */
997 signal(SIGCHLD, (void *)kill_launcher);
998}
999
Rusty Russella91d74a2009-07-30 16:03:45 -06001000/*L:216
1001 * This actually creates the thread which services the virtqueue for a device.
1002 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001003static void create_thread(struct virtqueue *vq)
1004{
Rusty Russell2e04ef72009-07-30 16:03:45 -06001005 /*
Rusty Russella91d74a2009-07-30 16:03:45 -06001006 * Create stack for thread. Since the stack grows upwards, we point
1007 * the stack pointer to the end of this region.
Rusty Russell2e04ef72009-07-30 16:03:45 -06001008 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001009 char *stack = malloc(32768);
1010 unsigned long args[] = { LHREQ_EVENTFD,
1011 vq->config.pfn*getpagesize(), 0 };
1012
1013 /* Create a zero-initialized eventfd. */
1014 vq->eventfd = eventfd(0, 0);
1015 if (vq->eventfd < 0)
1016 err(1, "Creating eventfd");
1017 args[2] = vq->eventfd;
1018
Rusty Russella91d74a2009-07-30 16:03:45 -06001019 /*
1020 * Attach an eventfd to this virtqueue: it will go off when the Guest
1021 * does an LHCALL_NOTIFY for this vq.
1022 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001023 if (write(lguest_fd, &args, sizeof(args)) != 0)
1024 err(1, "Attaching eventfd");
1025
Rusty Russella91d74a2009-07-30 16:03:45 -06001026 /*
1027 * CLONE_VM: because it has to access the Guest memory, and SIGCHLD so
1028 * we get a signal if it dies.
1029 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001030 vq->thread = clone(do_thread, stack + 32768, CLONE_VM | SIGCHLD, vq);
1031 if (vq->thread == (pid_t)-1)
1032 err(1, "Creating clone");
Rusty Russella91d74a2009-07-30 16:03:45 -06001033
1034 /* We close our local copy now the child has it. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001035 close(vq->eventfd);
1036}
1037
1038static void start_device(struct device *dev)
1039{
1040 unsigned int i;
1041 struct virtqueue *vq;
1042
1043 verbose("Device %s OK: offered", dev->name);
1044 for (i = 0; i < dev->feature_len; i++)
1045 verbose(" %02x", get_feature_bits(dev)[i]);
1046 verbose(", accepted");
1047 for (i = 0; i < dev->feature_len; i++)
1048 verbose(" %02x", get_feature_bits(dev)
1049 [dev->feature_len+i]);
1050
1051 for (vq = dev->vq; vq; vq = vq->next) {
1052 if (vq->service)
1053 create_thread(vq);
1054 }
1055 dev->running = true;
1056}
1057
1058static void cleanup_devices(void)
1059{
1060 struct device *dev;
1061
1062 for (dev = devices.dev; dev; dev = dev->next)
1063 reset_device(dev);
1064
1065 /* If we saved off the original terminal settings, restore them now. */
1066 if (orig_term.c_lflag & (ISIG|ICANON|ECHO))
1067 tcsetattr(STDIN_FILENO, TCSANOW, &orig_term);
Rusty Russell5dae7852008-07-29 09:58:35 -05001068}
1069
Rusty Russella007a752008-05-02 21:50:53 -05001070/* When the Guest tells us they updated the status field, we handle it. */
1071static void update_device_status(struct device *dev)
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001072{
Rusty Russell659a0e62009-06-12 22:27:10 -06001073 /* A zero status is a reset, otherwise it's a set of flags. */
1074 if (dev->desc->status == 0)
1075 reset_device(dev);
1076 else if (dev->desc->status & VIRTIO_CONFIG_S_FAILED) {
Rusty Russella007a752008-05-02 21:50:53 -05001077 warnx("Device %s configuration FAILED", dev->name);
Rusty Russell659a0e62009-06-12 22:27:10 -06001078 if (dev->running)
1079 reset_device(dev);
Rusty Russell3c3ed482011-07-22 14:39:49 +09301080 } else {
1081 if (dev->running)
1082 err(1, "Device %s features finalized twice", dev->name);
1083 start_device(dev);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001084 }
1085}
1086
Rusty Russella91d74a2009-07-30 16:03:45 -06001087/*L:215
1088 * This is the generic routine we call when the Guest uses LHCALL_NOTIFY. In
1089 * particular, it's used to notify us of device status changes during boot.
1090 */
Rusty Russell56739c802009-06-12 22:26:59 -06001091static void handle_output(unsigned long addr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001092{
1093 struct device *i;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001094
Rusty Russell659a0e62009-06-12 22:27:10 -06001095 /* Check each device. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001096 for (i = devices.dev; i; i = i->next) {
Rusty Russell659a0e62009-06-12 22:27:10 -06001097 struct virtqueue *vq;
1098
Rusty Russella91d74a2009-07-30 16:03:45 -06001099 /*
1100 * Notifications to device descriptors mean they updated the
1101 * device status.
1102 */
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001103 if (from_guest_phys(addr) == i->desc) {
Rusty Russella007a752008-05-02 21:50:53 -05001104 update_device_status(i);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001105 return;
1106 }
1107
Rusty Russell3c3ed482011-07-22 14:39:49 +09301108 /* Devices should not be used before features are finalized. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001109 for (vq = i->vq; vq; vq = vq->next) {
Rusty Russell659a0e62009-06-12 22:27:10 -06001110 if (addr != vq->config.pfn*getpagesize())
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001111 continue;
Rusty Russell3c3ed482011-07-22 14:39:49 +09301112 errx(1, "Notification on %s before setup!", i->name);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001113 }
1114 }
Rusty Russelldde79782007-07-26 10:41:03 -07001115
Rusty Russell2e04ef72009-07-30 16:03:45 -06001116 /*
1117 * Early console write is done using notify on a nul-terminated string
1118 * in Guest memory. It's also great for hacking debugging messages
1119 * into a Guest.
1120 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001121 if (addr >= guest_limit)
1122 errx(1, "Bad NOTIFY %#lx", addr);
1123
1124 write(STDOUT_FILENO, from_guest_phys(addr),
1125 strnlen(from_guest_phys(addr), guest_limit - addr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001126}
1127
Rusty Russelldde79782007-07-26 10:41:03 -07001128/*L:190
1129 * Device Setup
1130 *
1131 * All devices need a descriptor so the Guest knows it exists, and a "struct
1132 * device" so the Launcher can keep track of it. We have common helper
Rusty Russella6bd8e12008-03-28 11:05:53 -05001133 * routines to allocate and manage them.
1134 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001135
Rusty Russell2e04ef72009-07-30 16:03:45 -06001136/*
1137 * The layout of the device page is a "struct lguest_device_desc" followed by a
Rusty Russella586d4f2008-02-04 23:49:56 -05001138 * number of virtqueue descriptors, then two sets of feature bits, then an
1139 * array of configuration bytes. This routine returns the configuration
Rusty Russell2e04ef72009-07-30 16:03:45 -06001140 * pointer.
1141 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001142static u8 *device_config(const struct device *dev)
1143{
1144 return (void *)(dev->desc + 1)
Rusty Russell713b15b2009-06-12 22:26:58 -06001145 + dev->num_vq * sizeof(struct lguest_vqconfig)
1146 + dev->feature_len * 2;
Rusty Russella586d4f2008-02-04 23:49:56 -05001147}
1148
Rusty Russell2e04ef72009-07-30 16:03:45 -06001149/*
1150 * This routine allocates a new "struct lguest_device_desc" from descriptor
Rusty Russella586d4f2008-02-04 23:49:56 -05001151 * table page just above the Guest's normal memory. It returns a pointer to
Rusty Russell2e04ef72009-07-30 16:03:45 -06001152 * that descriptor.
1153 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001154static struct lguest_device_desc *new_dev_desc(u16 type)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001155{
Rusty Russella586d4f2008-02-04 23:49:56 -05001156 struct lguest_device_desc d = { .type = type };
1157 void *p;
1158
1159 /* Figure out where the next device config is, based on the last one. */
1160 if (devices.lastdev)
1161 p = device_config(devices.lastdev)
1162 + devices.lastdev->desc->config_len;
1163 else
1164 p = devices.descpage;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001165
Rusty Russell17cbca22007-10-22 11:24:22 +10001166 /* We only have one page for all the descriptors. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001167 if (p + sizeof(d) > (void *)devices.descpage + getpagesize())
Rusty Russell17cbca22007-10-22 11:24:22 +10001168 errx(1, "Too many devices");
1169
Rusty Russella586d4f2008-02-04 23:49:56 -05001170 /* p might not be aligned, so we memcpy in. */
1171 return memcpy(p, &d, sizeof(d));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001172}
1173
Rusty Russell2e04ef72009-07-30 16:03:45 -06001174/*
1175 * Each device descriptor is followed by the description of its virtqueues. We
1176 * specify how many descriptors the virtqueue is to have.
1177 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001178static void add_virtqueue(struct device *dev, unsigned int num_descs,
Rusty Russell659a0e62009-06-12 22:27:10 -06001179 void (*service)(struct virtqueue *))
Rusty Russell17cbca22007-10-22 11:24:22 +10001180{
1181 unsigned int pages;
1182 struct virtqueue **i, *vq = malloc(sizeof(*vq));
1183 void *p;
1184
Rusty Russella6bd8e12008-03-28 11:05:53 -05001185 /* First we need some memory for this virtqueue. */
Rusty Russell2966af72008-12-30 09:25:58 -06001186 pages = (vring_size(num_descs, LGUEST_VRING_ALIGN) + getpagesize() - 1)
Rusty Russell42b36cc2007-11-12 13:39:18 +11001187 / getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10001188 p = get_pages(pages);
1189
Rusty Russelld1c856e2007-11-19 11:20:40 -05001190 /* Initialize the virtqueue */
1191 vq->next = NULL;
1192 vq->last_avail_idx = 0;
1193 vq->dev = dev;
Rusty Russella91d74a2009-07-30 16:03:45 -06001194
1195 /*
1196 * This is the routine the service thread will run, and its Process ID
1197 * once it's running.
1198 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001199 vq->service = service;
1200 vq->thread = (pid_t)-1;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001201
Rusty Russell17cbca22007-10-22 11:24:22 +10001202 /* Initialize the configuration. */
1203 vq->config.num = num_descs;
1204 vq->config.irq = devices.next_irq++;
1205 vq->config.pfn = to_guest_phys(p) / getpagesize();
1206
1207 /* Initialize the vring. */
Rusty Russell2966af72008-12-30 09:25:58 -06001208 vring_init(&vq->vring, num_descs, p, LGUEST_VRING_ALIGN);
Rusty Russell17cbca22007-10-22 11:24:22 +10001209
Rusty Russell2e04ef72009-07-30 16:03:45 -06001210 /*
1211 * Append virtqueue to this device's descriptor. We use
Rusty Russella586d4f2008-02-04 23:49:56 -05001212 * device_config() to get the end of the device's current virtqueues;
1213 * we check that we haven't added any config or feature information
Rusty Russell2e04ef72009-07-30 16:03:45 -06001214 * yet, otherwise we'd be overwriting them.
1215 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001216 assert(dev->desc->config_len == 0 && dev->desc->feature_len == 0);
1217 memcpy(device_config(dev), &vq->config, sizeof(vq->config));
Rusty Russell713b15b2009-06-12 22:26:58 -06001218 dev->num_vq++;
Rusty Russella586d4f2008-02-04 23:49:56 -05001219 dev->desc->num_vq++;
1220
1221 verbose("Virtqueue page %#lx\n", to_guest_phys(p));
Rusty Russell17cbca22007-10-22 11:24:22 +10001222
Rusty Russell2e04ef72009-07-30 16:03:45 -06001223 /*
1224 * Add to tail of list, so dev->vq is first vq, dev->vq->next is
1225 * second.
1226 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001227 for (i = &dev->vq; *i; i = &(*i)->next);
1228 *i = vq;
Rusty Russell17cbca22007-10-22 11:24:22 +10001229}
1230
Rusty Russell2e04ef72009-07-30 16:03:45 -06001231/*
1232 * The first half of the feature bitmask is for us to advertise features. The
1233 * second half is for the Guest to accept features.
1234 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001235static void add_feature(struct device *dev, unsigned bit)
1236{
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001237 u8 *features = get_feature_bits(dev);
Rusty Russella586d4f2008-02-04 23:49:56 -05001238
1239 /* We can't extend the feature bits once we've added config bytes */
1240 if (dev->desc->feature_len <= bit / CHAR_BIT) {
1241 assert(dev->desc->config_len == 0);
Rusty Russell713b15b2009-06-12 22:26:58 -06001242 dev->feature_len = dev->desc->feature_len = (bit/CHAR_BIT) + 1;
Rusty Russella586d4f2008-02-04 23:49:56 -05001243 }
1244
Rusty Russella586d4f2008-02-04 23:49:56 -05001245 features[bit / CHAR_BIT] |= (1 << (bit % CHAR_BIT));
1246}
1247
Rusty Russell2e04ef72009-07-30 16:03:45 -06001248/*
1249 * This routine sets the configuration fields for an existing device's
Rusty Russella586d4f2008-02-04 23:49:56 -05001250 * descriptor. It only works for the last device, but that's OK because that's
Rusty Russell2e04ef72009-07-30 16:03:45 -06001251 * how we use it.
1252 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001253static void set_config(struct device *dev, unsigned len, const void *conf)
1254{
1255 /* Check we haven't overflowed our single page. */
1256 if (device_config(dev) + len > devices.descpage + getpagesize())
1257 errx(1, "Too many devices");
1258
1259 /* Copy in the config information, and store the length. */
1260 memcpy(device_config(dev), conf, len);
1261 dev->desc->config_len = len;
Rusty Russell8ef562d2009-07-30 16:03:43 -06001262
1263 /* Size must fit in config_len field (8 bits)! */
1264 assert(dev->desc->config_len == len);
Rusty Russella586d4f2008-02-04 23:49:56 -05001265}
1266
Rusty Russell2e04ef72009-07-30 16:03:45 -06001267/*
1268 * This routine does all the creation and setup of a new device, including
Rusty Russella91d74a2009-07-30 16:03:45 -06001269 * calling new_dev_desc() to allocate the descriptor and device memory. We
1270 * don't actually start the service threads until later.
Rusty Russella6bd8e12008-03-28 11:05:53 -05001271 *
Rusty Russell2e04ef72009-07-30 16:03:45 -06001272 * See what I mean about userspace being boring?
1273 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001274static struct device *new_device(const char *name, u16 type)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001275{
1276 struct device *dev = malloc(sizeof(*dev));
1277
Rusty Russelldde79782007-07-26 10:41:03 -07001278 /* Now we populate the fields one at a time. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001279 dev->desc = new_dev_desc(type);
Rusty Russell17cbca22007-10-22 11:24:22 +10001280 dev->name = name;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001281 dev->vq = NULL;
Rusty Russell713b15b2009-06-12 22:26:58 -06001282 dev->feature_len = 0;
1283 dev->num_vq = 0;
Rusty Russell659a0e62009-06-12 22:27:10 -06001284 dev->running = false;
Rusty Russellca16f582012-10-04 12:03:25 +09301285 dev->next = NULL;
Rusty Russella586d4f2008-02-04 23:49:56 -05001286
Rusty Russell2e04ef72009-07-30 16:03:45 -06001287 /*
1288 * Append to device list. Prepending to a single-linked list is
Rusty Russella586d4f2008-02-04 23:49:56 -05001289 * easier, but the user expects the devices to be arranged on the bus
1290 * in command-line order. The first network device on the command line
Rusty Russell2e04ef72009-07-30 16:03:45 -06001291 * is eth0, the first block device /dev/vda, etc.
1292 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001293 if (devices.lastdev)
1294 devices.lastdev->next = dev;
1295 else
1296 devices.dev = dev;
1297 devices.lastdev = dev;
1298
Rusty Russell8ca47e02007-07-19 01:49:29 -07001299 return dev;
1300}
1301
Rusty Russell2e04ef72009-07-30 16:03:45 -06001302/*
1303 * Our first setup routine is the console. It's a fairly simple device, but
1304 * UNIX tty handling makes it uglier than it could be.
1305 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001306static void setup_console(void)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001307{
1308 struct device *dev;
1309
Rusty Russelldde79782007-07-26 10:41:03 -07001310 /* If we can save the initial standard input settings... */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001311 if (tcgetattr(STDIN_FILENO, &orig_term) == 0) {
1312 struct termios term = orig_term;
Rusty Russell2e04ef72009-07-30 16:03:45 -06001313 /*
1314 * Then we turn off echo, line buffering and ^C etc: We want a
1315 * raw input stream to the Guest.
1316 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001317 term.c_lflag &= ~(ISIG|ICANON|ECHO);
1318 tcsetattr(STDIN_FILENO, TCSANOW, &term);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001319 }
1320
Rusty Russell659a0e62009-06-12 22:27:10 -06001321 dev = new_device("console", VIRTIO_ID_CONSOLE);
1322
Rusty Russelldde79782007-07-26 10:41:03 -07001323 /* We store the console state in dev->priv, and initialize it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001324 dev->priv = malloc(sizeof(struct console_abort));
1325 ((struct console_abort *)dev->priv)->count = 0;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001326
Rusty Russell2e04ef72009-07-30 16:03:45 -06001327 /*
1328 * The console needs two virtqueues: the input then the output. When
Rusty Russell56ae43d2007-10-22 11:24:23 +10001329 * they put something the input queue, we make sure we're listening to
1330 * stdin. When they put something in the output queue, we write it to
Rusty Russell2e04ef72009-07-30 16:03:45 -06001331 * stdout.
1332 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001333 add_virtqueue(dev, VIRTQUEUE_NUM, console_input);
1334 add_virtqueue(dev, VIRTQUEUE_NUM, console_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001335
Rusty Russell659a0e62009-06-12 22:27:10 -06001336 verbose("device %u: console\n", ++devices.device_num);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001337}
Rusty Russelldde79782007-07-26 10:41:03 -07001338/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001339
Rusty Russell2e04ef72009-07-30 16:03:45 -06001340/*M:010
1341 * Inter-guest networking is an interesting area. Simplest is to have a
Rusty Russell17cbca22007-10-22 11:24:22 +10001342 * --sharenet=<name> option which opens or creates a named pipe. This can be
1343 * used to send packets to another guest in a 1:1 manner.
1344 *
Rusty Russell9f542882011-07-22 14:39:50 +09301345 * More sophisticated is to use one of the tools developed for project like UML
Rusty Russell17cbca22007-10-22 11:24:22 +10001346 * to do networking.
1347 *
1348 * Faster is to do virtio bonding in kernel. Doing this 1:1 would be
1349 * completely generic ("here's my vring, attach to your vring") and would work
1350 * for any traffic. Of course, namespace and permissions issues need to be
1351 * dealt with. A more sophisticated "multi-channel" virtio_net.c could hide
1352 * multiple inter-guest channels behind one interface, although it would
1353 * require some manner of hotplugging new virtio channels.
1354 *
Rusty Russell9f542882011-07-22 14:39:50 +09301355 * Finally, we could use a virtio network switch in the kernel, ie. vhost.
Rusty Russell2e04ef72009-07-30 16:03:45 -06001356:*/
Rusty Russell17cbca22007-10-22 11:24:22 +10001357
Rusty Russell8ca47e02007-07-19 01:49:29 -07001358static u32 str2ip(const char *ipaddr)
1359{
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001360 unsigned int b[4];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001361
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001362 if (sscanf(ipaddr, "%u.%u.%u.%u", &b[0], &b[1], &b[2], &b[3]) != 4)
1363 errx(1, "Failed to parse IP address '%s'", ipaddr);
1364 return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];
1365}
1366
1367static void str2mac(const char *macaddr, unsigned char mac[6])
1368{
1369 unsigned int m[6];
1370 if (sscanf(macaddr, "%02x:%02x:%02x:%02x:%02x:%02x",
1371 &m[0], &m[1], &m[2], &m[3], &m[4], &m[5]) != 6)
1372 errx(1, "Failed to parse mac address '%s'", macaddr);
1373 mac[0] = m[0];
1374 mac[1] = m[1];
1375 mac[2] = m[2];
1376 mac[3] = m[3];
1377 mac[4] = m[4];
1378 mac[5] = m[5];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001379}
1380
Rusty Russell2e04ef72009-07-30 16:03:45 -06001381/*
1382 * This code is "adapted" from libbridge: it attaches the Host end of the
Rusty Russelldde79782007-07-26 10:41:03 -07001383 * network device to the bridge device specified by the command line.
1384 *
1385 * This is yet another James Morris contribution (I'm an IP-level guy, so I
Rusty Russell2e04ef72009-07-30 16:03:45 -06001386 * dislike bridging), and I just try not to break it.
1387 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001388static void add_to_bridge(int fd, const char *if_name, const char *br_name)
1389{
1390 int ifidx;
1391 struct ifreq ifr;
1392
1393 if (!*br_name)
1394 errx(1, "must specify bridge name");
1395
1396 ifidx = if_nametoindex(if_name);
1397 if (!ifidx)
1398 errx(1, "interface %s does not exist!", if_name);
1399
1400 strncpy(ifr.ifr_name, br_name, IFNAMSIZ);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001401 ifr.ifr_name[IFNAMSIZ-1] = '\0';
Rusty Russell8ca47e02007-07-19 01:49:29 -07001402 ifr.ifr_ifindex = ifidx;
1403 if (ioctl(fd, SIOCBRADDIF, &ifr) < 0)
1404 err(1, "can't add %s to bridge %s", if_name, br_name);
1405}
1406
Rusty Russell2e04ef72009-07-30 16:03:45 -06001407/*
1408 * This sets up the Host end of the network device with an IP address, brings
Rusty Russelldde79782007-07-26 10:41:03 -07001409 * it up so packets will flow, the copies the MAC address into the hwaddr
Rusty Russell2e04ef72009-07-30 16:03:45 -06001410 * pointer.
1411 */
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001412static void configure_device(int fd, const char *tapif, u32 ipaddr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001413{
1414 struct ifreq ifr;
Rusty Russellf8466192010-08-27 08:39:48 -06001415 struct sockaddr_in sin;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001416
1417 memset(&ifr, 0, sizeof(ifr));
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001418 strcpy(ifr.ifr_name, tapif);
1419
1420 /* Don't read these incantations. Just cut & paste them like I did! */
Rusty Russellf8466192010-08-27 08:39:48 -06001421 sin.sin_family = AF_INET;
1422 sin.sin_addr.s_addr = htonl(ipaddr);
1423 memcpy(&ifr.ifr_addr, &sin, sizeof(sin));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001424 if (ioctl(fd, SIOCSIFADDR, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001425 err(1, "Setting %s interface address", tapif);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001426 ifr.ifr_flags = IFF_UP;
1427 if (ioctl(fd, SIOCSIFFLAGS, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001428 err(1, "Bringing interface %s up", tapif);
1429}
1430
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001431static int get_tun_device(char tapif[IFNAMSIZ])
Rusty Russell8ca47e02007-07-19 01:49:29 -07001432{
Rusty Russell8ca47e02007-07-19 01:49:29 -07001433 struct ifreq ifr;
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001434 int netfd;
1435
1436 /* Start with this zeroed. Messy but sure. */
1437 memset(&ifr, 0, sizeof(ifr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001438
Rusty Russell2e04ef72009-07-30 16:03:45 -06001439 /*
1440 * We open the /dev/net/tun device and tell it we want a tap device. A
Rusty Russelldde79782007-07-26 10:41:03 -07001441 * tap device is like a tun device, only somehow different. To tell
1442 * the truth, I completely blundered my way through this code, but it
Rusty Russell2e04ef72009-07-30 16:03:45 -06001443 * works now!
1444 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001445 netfd = open_or_die("/dev/net/tun", O_RDWR);
Rusty Russell398f1872008-07-29 09:58:37 -05001446 ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_VNET_HDR;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001447 strcpy(ifr.ifr_name, "tap%d");
1448 if (ioctl(netfd, TUNSETIFF, &ifr) != 0)
1449 err(1, "configuring /dev/net/tun");
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001450
Rusty Russell398f1872008-07-29 09:58:37 -05001451 if (ioctl(netfd, TUNSETOFFLOAD,
1452 TUN_F_CSUM|TUN_F_TSO4|TUN_F_TSO6|TUN_F_TSO_ECN) != 0)
1453 err(1, "Could not set features for tun device");
1454
Rusty Russell2e04ef72009-07-30 16:03:45 -06001455 /*
1456 * We don't need checksums calculated for packets coming in this
1457 * device: trust us!
1458 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001459 ioctl(netfd, TUNSETNOCSUM, 1);
1460
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001461 memcpy(tapif, ifr.ifr_name, IFNAMSIZ);
1462 return netfd;
1463}
1464
Rusty Russell2e04ef72009-07-30 16:03:45 -06001465/*L:195
1466 * Our network is a Host<->Guest network. This can either use bridging or
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001467 * routing, but the principle is the same: it uses the "tun" device to inject
1468 * packets into the Host as if they came in from a normal network card. We
Rusty Russell2e04ef72009-07-30 16:03:45 -06001469 * just shunt packets between the Guest and the tun device.
1470 */
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001471static void setup_tun_net(char *arg)
1472{
1473 struct device *dev;
Rusty Russell659a0e62009-06-12 22:27:10 -06001474 struct net_info *net_info = malloc(sizeof(*net_info));
1475 int ipfd;
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001476 u32 ip = INADDR_ANY;
1477 bool bridging = false;
1478 char tapif[IFNAMSIZ], *p;
1479 struct virtio_net_config conf;
1480
Rusty Russell659a0e62009-06-12 22:27:10 -06001481 net_info->tunfd = get_tun_device(tapif);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001482
Rusty Russell17cbca22007-10-22 11:24:22 +10001483 /* First we create a new network device. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001484 dev = new_device("net", VIRTIO_ID_NET);
1485 dev->priv = net_info;
Rusty Russelldde79782007-07-26 10:41:03 -07001486
Rusty Russell2e04ef72009-07-30 16:03:45 -06001487 /* Network devices need a recv and a send queue, just like console. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001488 add_virtqueue(dev, VIRTQUEUE_NUM, net_input);
1489 add_virtqueue(dev, VIRTQUEUE_NUM, net_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001490
Rusty Russell2e04ef72009-07-30 16:03:45 -06001491 /*
1492 * We need a socket to perform the magic network ioctls to bring up the
1493 * tap interface, connect to the bridge etc. Any socket will do!
1494 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001495 ipfd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
1496 if (ipfd < 0)
1497 err(1, "opening IP socket");
1498
Rusty Russelldde79782007-07-26 10:41:03 -07001499 /* If the command line was --tunnet=bridge:<name> do bridging. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001500 if (!strncmp(BRIDGE_PFX, arg, strlen(BRIDGE_PFX))) {
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001501 arg += strlen(BRIDGE_PFX);
1502 bridging = true;
1503 }
1504
1505 /* A mac address may follow the bridge name or IP address */
1506 p = strchr(arg, ':');
1507 if (p) {
1508 str2mac(p+1, conf.mac);
Rusty Russell40c42072008-08-12 17:52:51 -05001509 add_feature(dev, VIRTIO_NET_F_MAC);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001510 *p = '\0';
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001511 }
1512
1513 /* arg is now either an IP address or a bridge name */
1514 if (bridging)
1515 add_to_bridge(ipfd, tapif, arg);
1516 else
Rusty Russell8ca47e02007-07-19 01:49:29 -07001517 ip = str2ip(arg);
1518
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001519 /* Set up the tun device. */
1520 configure_device(ipfd, tapif, ip);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001521
Rusty Russell398f1872008-07-29 09:58:37 -05001522 /* Expect Guest to handle everything except UFO */
1523 add_feature(dev, VIRTIO_NET_F_CSUM);
1524 add_feature(dev, VIRTIO_NET_F_GUEST_CSUM);
Rusty Russell398f1872008-07-29 09:58:37 -05001525 add_feature(dev, VIRTIO_NET_F_GUEST_TSO4);
1526 add_feature(dev, VIRTIO_NET_F_GUEST_TSO6);
1527 add_feature(dev, VIRTIO_NET_F_GUEST_ECN);
1528 add_feature(dev, VIRTIO_NET_F_HOST_TSO4);
1529 add_feature(dev, VIRTIO_NET_F_HOST_TSO6);
1530 add_feature(dev, VIRTIO_NET_F_HOST_ECN);
Mark McLoughlind1f01322009-05-11 18:11:46 +01001531 /* We handle indirect ring entries */
1532 add_feature(dev, VIRTIO_RING_F_INDIRECT_DESC);
Rusty Russella586d4f2008-02-04 23:49:56 -05001533 set_config(dev, sizeof(conf), &conf);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001534
Rusty Russella586d4f2008-02-04 23:49:56 -05001535 /* We don't need the socket any more; setup is done. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001536 close(ipfd);
1537
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001538 devices.device_num++;
1539
1540 if (bridging)
1541 verbose("device %u: tun %s attached to bridge: %s\n",
1542 devices.device_num, tapif, arg);
1543 else
1544 verbose("device %u: tun %s: %s\n",
1545 devices.device_num, tapif, arg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001546}
Rusty Russella91d74a2009-07-30 16:03:45 -06001547/*:*/
Rusty Russell17cbca22007-10-22 11:24:22 +10001548
Rusty Russelle1e72962007-10-25 15:02:50 +10001549/* This hangs off device->priv. */
Rusty Russell1842f232009-07-30 16:03:46 -06001550struct vblk_info {
Rusty Russell17cbca22007-10-22 11:24:22 +10001551 /* The size of the file. */
1552 off64_t len;
1553
1554 /* The file descriptor for the file. */
1555 int fd;
1556
Rusty Russell17cbca22007-10-22 11:24:22 +10001557};
1558
Rusty Russelle1e72962007-10-25 15:02:50 +10001559/*L:210
1560 * The Disk
1561 *
Rusty Russella91d74a2009-07-30 16:03:45 -06001562 * The disk only has one virtqueue, so it only has one thread. It is really
1563 * simple: the Guest asks for a block number and we read or write that position
1564 * in the file.
1565 *
1566 * Before we serviced each virtqueue in a separate thread, that was unacceptably
1567 * slow: the Guest waits until the read is finished before running anything
1568 * else, even if it could have been doing useful work.
1569 *
1570 * We could have used async I/O, except it's reputed to suck so hard that
1571 * characters actually go missing from your code when you try to use it.
Rusty Russelle1e72962007-10-25 15:02:50 +10001572 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001573static void blk_request(struct virtqueue *vq)
Rusty Russell17cbca22007-10-22 11:24:22 +10001574{
Rusty Russell659a0e62009-06-12 22:27:10 -06001575 struct vblk_info *vblk = vq->dev->priv;
Rusty Russell17cbca22007-10-22 11:24:22 +10001576 unsigned int head, out_num, in_num, wlen;
Rusty Russellc0316a92012-10-16 23:56:13 +10301577 int ret, i;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001578 u8 *in;
Rusty Russellc0316a92012-10-16 23:56:13 +10301579 struct virtio_blk_outhdr out;
Rusty Russell659a0e62009-06-12 22:27:10 -06001580 struct iovec iov[vq->vring.num];
Rusty Russell17cbca22007-10-22 11:24:22 +10001581 off64_t off;
1582
Rusty Russella91d74a2009-07-30 16:03:45 -06001583 /*
1584 * Get the next request, where we normally wait. It triggers the
1585 * interrupt to acknowledge previously serviced requests (if any).
1586 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001587 head = wait_for_vq_desc(vq, iov, &out_num, &in_num);
Rusty Russell17cbca22007-10-22 11:24:22 +10001588
Rusty Russellc0316a92012-10-16 23:56:13 +10301589 /* Copy the output header from the front of the iov (adjusts iov) */
1590 iov_consume(iov, out_num, &out, sizeof(out));
Rusty Russell17cbca22007-10-22 11:24:22 +10001591
Rusty Russellc0316a92012-10-16 23:56:13 +10301592 /* Find and trim end of iov input array, for our status byte. */
1593 in = NULL;
1594 for (i = out_num + in_num - 1; i >= out_num; i--) {
1595 if (iov[i].iov_len > 0) {
1596 in = iov[i].iov_base + iov[i].iov_len - 1;
1597 iov[i].iov_len--;
1598 break;
1599 }
1600 }
1601 if (!in)
1602 errx(1, "Bad virtblk cmd with no room for status");
1603
Rusty Russella91d74a2009-07-30 16:03:45 -06001604 /*
1605 * For historical reasons, block operations are expressed in 512 byte
1606 * "sectors".
1607 */
Rusty Russellc0316a92012-10-16 23:56:13 +10301608 off = out.sector * 512;
Rusty Russell17cbca22007-10-22 11:24:22 +10001609
Rusty Russell2e04ef72009-07-30 16:03:45 -06001610 /*
Rusty Russell2e04ef72009-07-30 16:03:45 -06001611 * In general the virtio block driver is allowed to try SCSI commands.
1612 * It'd be nice if we supported eject, for example, but we don't.
1613 */
Rusty Russellc0316a92012-10-16 23:56:13 +10301614 if (out.type & VIRTIO_BLK_T_SCSI_CMD) {
Rusty Russell17cbca22007-10-22 11:24:22 +10001615 fprintf(stderr, "Scsi commands unsupported\n");
Rusty Russellcb38fa22008-05-02 21:50:45 -05001616 *in = VIRTIO_BLK_S_UNSUPP;
Anthony Liguori1200e642007-11-08 21:13:44 -06001617 wlen = sizeof(*in);
Rusty Russellc0316a92012-10-16 23:56:13 +10301618 } else if (out.type & VIRTIO_BLK_T_OUT) {
Rusty Russell2e04ef72009-07-30 16:03:45 -06001619 /*
1620 * Write
1621 *
1622 * Move to the right location in the block file. This can fail
1623 * if they try to write past end.
1624 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001625 if (lseek64(vblk->fd, off, SEEK_SET) != off)
Rusty Russellc0316a92012-10-16 23:56:13 +10301626 err(1, "Bad seek to sector %llu", out.sector);
Rusty Russell17cbca22007-10-22 11:24:22 +10001627
Rusty Russellc0316a92012-10-16 23:56:13 +10301628 ret = writev(vblk->fd, iov, out_num);
1629 verbose("WRITE to sector %llu: %i\n", out.sector, ret);
Rusty Russell17cbca22007-10-22 11:24:22 +10001630
Rusty Russell2e04ef72009-07-30 16:03:45 -06001631 /*
1632 * Grr... Now we know how long the descriptor they sent was, we
Rusty Russell17cbca22007-10-22 11:24:22 +10001633 * make sure they didn't try to write over the end of the block
Rusty Russell2e04ef72009-07-30 16:03:45 -06001634 * file (possibly extending it).
1635 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001636 if (ret > 0 && off + ret > vblk->len) {
1637 /* Trim it back to the correct length */
1638 ftruncate64(vblk->fd, vblk->len);
1639 /* Die, bad Guest, die. */
1640 errx(1, "Write past end %llu+%u", off, ret);
1641 }
Tejun Heo7bc9fdd2010-09-03 11:56:18 +02001642
1643 wlen = sizeof(*in);
1644 *in = (ret >= 0 ? VIRTIO_BLK_S_OK : VIRTIO_BLK_S_IOERR);
Rusty Russellc0316a92012-10-16 23:56:13 +10301645 } else if (out.type & VIRTIO_BLK_T_FLUSH) {
Tejun Heo7bc9fdd2010-09-03 11:56:18 +02001646 /* Flush */
1647 ret = fdatasync(vblk->fd);
1648 verbose("FLUSH fdatasync: %i\n", ret);
Anthony Liguori1200e642007-11-08 21:13:44 -06001649 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001650 *in = (ret >= 0 ? VIRTIO_BLK_S_OK : VIRTIO_BLK_S_IOERR);
Rusty Russell17cbca22007-10-22 11:24:22 +10001651 } else {
Rusty Russell2e04ef72009-07-30 16:03:45 -06001652 /*
1653 * Read
1654 *
1655 * Move to the right location in the block file. This can fail
1656 * if they try to read past end.
1657 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001658 if (lseek64(vblk->fd, off, SEEK_SET) != off)
Rusty Russellc0316a92012-10-16 23:56:13 +10301659 err(1, "Bad seek to sector %llu", out.sector);
Rusty Russell17cbca22007-10-22 11:24:22 +10001660
Rusty Russellc0316a92012-10-16 23:56:13 +10301661 ret = readv(vblk->fd, iov + out_num, in_num);
Rusty Russell17cbca22007-10-22 11:24:22 +10001662 if (ret >= 0) {
Anthony Liguori1200e642007-11-08 21:13:44 -06001663 wlen = sizeof(*in) + ret;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001664 *in = VIRTIO_BLK_S_OK;
Rusty Russell17cbca22007-10-22 11:24:22 +10001665 } else {
Anthony Liguori1200e642007-11-08 21:13:44 -06001666 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001667 *in = VIRTIO_BLK_S_IOERR;
Rusty Russell17cbca22007-10-22 11:24:22 +10001668 }
1669 }
1670
Rusty Russella91d74a2009-07-30 16:03:45 -06001671 /* Finished that request. */
Rusty Russell38bc2b82009-06-12 22:27:11 -06001672 add_used(vq, head, wlen);
Rusty Russell17cbca22007-10-22 11:24:22 +10001673}
1674
Rusty Russelle1e72962007-10-25 15:02:50 +10001675/*L:198 This actually sets up a virtual block device. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001676static void setup_block_file(const char *filename)
1677{
Rusty Russell17cbca22007-10-22 11:24:22 +10001678 struct device *dev;
1679 struct vblk_info *vblk;
Rusty Russella586d4f2008-02-04 23:49:56 -05001680 struct virtio_blk_config conf;
Rusty Russell17cbca22007-10-22 11:24:22 +10001681
Rusty Russell2e04ef72009-07-30 16:03:45 -06001682 /* Creat the device. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001683 dev = new_device("block", VIRTIO_ID_BLOCK);
Rusty Russell17cbca22007-10-22 11:24:22 +10001684
Rusty Russelle1e72962007-10-25 15:02:50 +10001685 /* The device has one virtqueue, where the Guest places requests. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001686 add_virtqueue(dev, VIRTQUEUE_NUM, blk_request);
Rusty Russell17cbca22007-10-22 11:24:22 +10001687
1688 /* Allocate the room for our own bookkeeping */
1689 vblk = dev->priv = malloc(sizeof(*vblk));
1690
1691 /* First we open the file and store the length. */
1692 vblk->fd = open_or_die(filename, O_RDWR|O_LARGEFILE);
1693 vblk->len = lseek64(vblk->fd, 0, SEEK_END);
1694
Tejun Heo7bc9fdd2010-09-03 11:56:18 +02001695 /* We support FLUSH. */
1696 add_feature(dev, VIRTIO_BLK_F_FLUSH);
Rusty Russella586d4f2008-02-04 23:49:56 -05001697
Rusty Russell17cbca22007-10-22 11:24:22 +10001698 /* Tell Guest how many sectors this device has. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001699 conf.capacity = cpu_to_le64(vblk->len / 512);
Rusty Russell17cbca22007-10-22 11:24:22 +10001700
Rusty Russell2e04ef72009-07-30 16:03:45 -06001701 /*
1702 * Tell Guest not to put in too many descriptors at once: two are used
1703 * for the in and out elements.
1704 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001705 add_feature(dev, VIRTIO_BLK_F_SEG_MAX);
1706 conf.seg_max = cpu_to_le32(VIRTQUEUE_NUM - 2);
1707
Rusty Russell8ef562d2009-07-30 16:03:43 -06001708 /* Don't try to put whole struct: we have 8 bit limit. */
1709 set_config(dev, offsetof(struct virtio_blk_config, geometry), &conf);
Rusty Russell17cbca22007-10-22 11:24:22 +10001710
Rusty Russell17cbca22007-10-22 11:24:22 +10001711 verbose("device %u: virtblock %llu sectors\n",
Rusty Russell659a0e62009-06-12 22:27:10 -06001712 ++devices.device_num, le64_to_cpu(conf.capacity));
Rusty Russell17cbca22007-10-22 11:24:22 +10001713}
Rusty Russell28fd6d72008-07-29 09:58:33 -05001714
Rusty Russell2e04ef72009-07-30 16:03:45 -06001715/*L:211
1716 * Our random number generator device reads from /dev/random into the Guest's
Rusty Russell28fd6d72008-07-29 09:58:33 -05001717 * input buffers. The usual case is that the Guest doesn't want random numbers
1718 * and so has no buffers although /dev/random is still readable, whereas
1719 * console is the reverse.
1720 *
Rusty Russell2e04ef72009-07-30 16:03:45 -06001721 * The same logic applies, however.
1722 */
1723struct rng_info {
1724 int rfd;
1725};
1726
Rusty Russell659a0e62009-06-12 22:27:10 -06001727static void rng_input(struct virtqueue *vq)
Rusty Russell28fd6d72008-07-29 09:58:33 -05001728{
1729 int len;
1730 unsigned int head, in_num, out_num, totlen = 0;
Rusty Russell659a0e62009-06-12 22:27:10 -06001731 struct rng_info *rng_info = vq->dev->priv;
1732 struct iovec iov[vq->vring.num];
Rusty Russell28fd6d72008-07-29 09:58:33 -05001733
1734 /* First we need a buffer from the Guests's virtqueue. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001735 head = wait_for_vq_desc(vq, iov, &out_num, &in_num);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001736 if (out_num)
1737 errx(1, "Output buffers in rng?");
1738
Rusty Russell2e04ef72009-07-30 16:03:45 -06001739 /*
Rusty Russella91d74a2009-07-30 16:03:45 -06001740 * Just like the console write, we loop to cover the whole iovec.
1741 * In this case, short reads actually happen quite a bit.
Rusty Russell2e04ef72009-07-30 16:03:45 -06001742 */
Rusty Russell28fd6d72008-07-29 09:58:33 -05001743 while (!iov_empty(iov, in_num)) {
Rusty Russell659a0e62009-06-12 22:27:10 -06001744 len = readv(rng_info->rfd, iov, in_num);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001745 if (len <= 0)
1746 err(1, "Read from /dev/random gave %i", len);
Rusty Russellc0316a92012-10-16 23:56:13 +10301747 iov_consume(iov, in_num, NULL, len);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001748 totlen += len;
1749 }
1750
1751 /* Tell the Guest about the new input. */
Rusty Russell38bc2b82009-06-12 22:27:11 -06001752 add_used(vq, head, totlen);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001753}
1754
Rusty Russell2e04ef72009-07-30 16:03:45 -06001755/*L:199
1756 * This creates a "hardware" random number device for the Guest.
1757 */
Rusty Russell28fd6d72008-07-29 09:58:33 -05001758static void setup_rng(void)
1759{
1760 struct device *dev;
Rusty Russell659a0e62009-06-12 22:27:10 -06001761 struct rng_info *rng_info = malloc(sizeof(*rng_info));
Rusty Russell28fd6d72008-07-29 09:58:33 -05001762
Rusty Russell2e04ef72009-07-30 16:03:45 -06001763 /* Our device's privat info simply contains the /dev/random fd. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001764 rng_info->rfd = open_or_die("/dev/random", O_RDONLY);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001765
Rusty Russell2e04ef72009-07-30 16:03:45 -06001766 /* Create the new device. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001767 dev = new_device("rng", VIRTIO_ID_RNG);
1768 dev->priv = rng_info;
Rusty Russell28fd6d72008-07-29 09:58:33 -05001769
1770 /* The device has one virtqueue, where the Guest places inbufs. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001771 add_virtqueue(dev, VIRTQUEUE_NUM, rng_input);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001772
1773 verbose("device %u: rng\n", devices.device_num++);
1774}
Rusty Russella6bd8e12008-03-28 11:05:53 -05001775/* That's the end of device setup. */
Balaji Raoec04b132007-12-28 14:26:24 +05301776
Rusty Russella6bd8e12008-03-28 11:05:53 -05001777/*L:230 Reboot is pretty easy: clean up and exec() the Launcher afresh. */
Balaji Raoec04b132007-12-28 14:26:24 +05301778static void __attribute__((noreturn)) restart_guest(void)
1779{
1780 unsigned int i;
1781
Rusty Russell2e04ef72009-07-30 16:03:45 -06001782 /*
1783 * Since we don't track all open fds, we simply close everything beyond
1784 * stderr.
1785 */
Balaji Raoec04b132007-12-28 14:26:24 +05301786 for (i = 3; i < FD_SETSIZE; i++)
1787 close(i);
Rusty Russell8c798732008-07-29 09:58:38 -05001788
Rusty Russell659a0e62009-06-12 22:27:10 -06001789 /* Reset all the devices (kills all threads). */
1790 cleanup_devices();
1791
Balaji Raoec04b132007-12-28 14:26:24 +05301792 execv(main_args[0], main_args);
1793 err(1, "Could not exec %s", main_args[0]);
1794}
Rusty Russell8ca47e02007-07-19 01:49:29 -07001795
Rusty Russell2e04ef72009-07-30 16:03:45 -06001796/*L:220
1797 * Finally we reach the core of the Launcher which runs the Guest, serves
1798 * its input and output, and finally, lays it to rest.
1799 */
Rusty Russell56739c802009-06-12 22:26:59 -06001800static void __attribute__((noreturn)) run_guest(void)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001801{
1802 for (;;) {
Rusty Russell17cbca22007-10-22 11:24:22 +10001803 unsigned long notify_addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001804 int readval;
1805
1806 /* We read from the /dev/lguest device to run the Guest. */
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001807 readval = pread(lguest_fd, &notify_addr,
1808 sizeof(notify_addr), cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001809
Rusty Russell17cbca22007-10-22 11:24:22 +10001810 /* One unsigned long means the Guest did HCALL_NOTIFY */
1811 if (readval == sizeof(notify_addr)) {
1812 verbose("Notify on address %#lx\n", notify_addr);
Rusty Russell56739c802009-06-12 22:26:59 -06001813 handle_output(notify_addr);
Rusty Russelldde79782007-07-26 10:41:03 -07001814 /* ENOENT means the Guest died. Reading tells us why. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001815 } else if (errno == ENOENT) {
1816 char reason[1024] = { 0 };
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001817 pread(lguest_fd, reason, sizeof(reason)-1, cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001818 errx(1, "%s", reason);
Balaji Raoec04b132007-12-28 14:26:24 +05301819 /* ERESTART means that we need to reboot the guest */
1820 } else if (errno == ERESTART) {
1821 restart_guest();
Rusty Russell659a0e62009-06-12 22:27:10 -06001822 /* Anything else means a bug or incompatible change. */
1823 } else
Rusty Russell8ca47e02007-07-19 01:49:29 -07001824 err(1, "Running guest failed");
Rusty Russell8ca47e02007-07-19 01:49:29 -07001825 }
1826}
Rusty Russella6bd8e12008-03-28 11:05:53 -05001827/*L:240
Rusty Russelle1e72962007-10-25 15:02:50 +10001828 * This is the end of the Launcher. The good news: we are over halfway
1829 * through! The bad news: the most fiendish part of the code still lies ahead
1830 * of us.
Rusty Russelldde79782007-07-26 10:41:03 -07001831 *
Rusty Russelle1e72962007-10-25 15:02:50 +10001832 * Are you ready? Take a deep breath and join me in the core of the Host, in
1833 * "make Host".
Rusty Russell2e04ef72009-07-30 16:03:45 -06001834:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001835
1836static struct option opts[] = {
1837 { "verbose", 0, NULL, 'v' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001838 { "tunnet", 1, NULL, 't' },
1839 { "block", 1, NULL, 'b' },
Rusty Russell28fd6d72008-07-29 09:58:33 -05001840 { "rng", 0, NULL, 'r' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001841 { "initrd", 1, NULL, 'i' },
Philip Sanderson8aeb36e2011-01-20 21:37:28 -06001842 { "username", 1, NULL, 'u' },
1843 { "chroot", 1, NULL, 'c' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001844 { NULL },
1845};
1846static void usage(void)
1847{
1848 errx(1, "Usage: lguest [--verbose] "
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001849 "[--tunnet=(<ipaddr>:<macaddr>|bridge:<bridgename>:<macaddr>)\n"
Rusty Russell8ca47e02007-07-19 01:49:29 -07001850 "|--block=<filename>|--initrd=<filename>]...\n"
1851 "<mem-in-mb> vmlinux [args...]");
1852}
1853
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001854/*L:105 The main routine is where the real work begins: */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001855int main(int argc, char *argv[])
1856{
Rusty Russell2e04ef72009-07-30 16:03:45 -06001857 /* Memory, code startpoint and size of the (optional) initrd. */
Matias Zabaljauregui58a24562008-09-29 01:40:07 -03001858 unsigned long mem = 0, start, initrd_size = 0;
Rusty Russell56739c802009-06-12 22:26:59 -06001859 /* Two temporaries. */
1860 int i, c;
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001861 /* The boot information for the Guest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10001862 struct boot_params *boot;
Rusty Russelldde79782007-07-26 10:41:03 -07001863 /* If they specify an initrd file to load. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001864 const char *initrd_name = NULL;
1865
Philip Sanderson8aeb36e2011-01-20 21:37:28 -06001866 /* Password structure for initgroups/setres[gu]id */
1867 struct passwd *user_details = NULL;
1868
1869 /* Directory to chroot to */
1870 char *chroot_path = NULL;
1871
Balaji Raoec04b132007-12-28 14:26:24 +05301872 /* Save the args: we "reboot" by execing ourselves again. */
1873 main_args = argv;
Balaji Raoec04b132007-12-28 14:26:24 +05301874
Rusty Russell2e04ef72009-07-30 16:03:45 -06001875 /*
1876 * First we initialize the device list. We keep a pointer to the last
Rusty Russell659a0e62009-06-12 22:27:10 -06001877 * device, and the next interrupt number to use for devices (1:
Rusty Russell2e04ef72009-07-30 16:03:45 -06001878 * remember that 0 is used by the timer).
1879 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001880 devices.lastdev = NULL;
Rusty Russell17cbca22007-10-22 11:24:22 +10001881 devices.next_irq = 1;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001882
Rusty Russella91d74a2009-07-30 16:03:45 -06001883 /* We're CPU 0. In fact, that's the only CPU possible right now. */
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001884 cpu_id = 0;
Rusty Russella91d74a2009-07-30 16:03:45 -06001885
Rusty Russell2e04ef72009-07-30 16:03:45 -06001886 /*
1887 * We need to know how much memory so we can set up the device
Rusty Russelldde79782007-07-26 10:41:03 -07001888 * descriptor and memory pages for the devices as we parse the command
1889 * line. So we quickly look through the arguments to find the amount
Rusty Russell2e04ef72009-07-30 16:03:45 -06001890 * of memory now.
1891 */
Rusty Russell6570c45992007-07-23 18:43:56 -07001892 for (i = 1; i < argc; i++) {
1893 if (argv[i][0] != '-') {
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001894 mem = atoi(argv[i]) * 1024 * 1024;
Rusty Russell2e04ef72009-07-30 16:03:45 -06001895 /*
1896 * We start by mapping anonymous pages over all of
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001897 * guest-physical memory range. This fills it with 0,
1898 * and ensures that the Guest won't be killed when it
Rusty Russell2e04ef72009-07-30 16:03:45 -06001899 * tries to access it.
1900 */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001901 guest_base = map_zeroed_pages(mem / getpagesize()
1902 + DEVICE_PAGES);
1903 guest_limit = mem;
1904 guest_max = mem + DEVICE_PAGES*getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10001905 devices.descpage = get_pages(1);
Rusty Russell6570c45992007-07-23 18:43:56 -07001906 break;
1907 }
1908 }
Rusty Russelldde79782007-07-26 10:41:03 -07001909
1910 /* The options are fairly straight-forward */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001911 while ((c = getopt_long(argc, argv, "v", opts, NULL)) != EOF) {
1912 switch (c) {
1913 case 'v':
1914 verbose = true;
1915 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001916 case 't':
Rusty Russell17cbca22007-10-22 11:24:22 +10001917 setup_tun_net(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001918 break;
1919 case 'b':
Rusty Russell17cbca22007-10-22 11:24:22 +10001920 setup_block_file(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001921 break;
Rusty Russell28fd6d72008-07-29 09:58:33 -05001922 case 'r':
1923 setup_rng();
1924 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001925 case 'i':
1926 initrd_name = optarg;
1927 break;
Philip Sanderson8aeb36e2011-01-20 21:37:28 -06001928 case 'u':
1929 user_details = getpwnam(optarg);
1930 if (!user_details)
1931 err(1, "getpwnam failed, incorrect username?");
1932 break;
1933 case 'c':
1934 chroot_path = optarg;
1935 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001936 default:
1937 warnx("Unknown argument %s", argv[optind]);
1938 usage();
1939 }
1940 }
Rusty Russell2e04ef72009-07-30 16:03:45 -06001941 /*
1942 * After the other arguments we expect memory and kernel image name,
1943 * followed by command line arguments for the kernel.
1944 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001945 if (optind + 2 > argc)
1946 usage();
1947
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001948 verbose("Guest base is at %p\n", guest_base);
1949
Rusty Russelldde79782007-07-26 10:41:03 -07001950 /* We always have a console device */
Rusty Russell17cbca22007-10-22 11:24:22 +10001951 setup_console();
Rusty Russell8ca47e02007-07-19 01:49:29 -07001952
Rusty Russell8ca47e02007-07-19 01:49:29 -07001953 /* Now we load the kernel */
Rusty Russell47436aa2007-10-22 11:03:36 +10001954 start = load_kernel(open_or_die(argv[optind+1], O_RDONLY));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001955
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001956 /* Boot information is stashed at physical address 0 */
1957 boot = from_guest_phys(0);
1958
Rusty Russelldde79782007-07-26 10:41:03 -07001959 /* Map the initrd image if requested (at top of physical memory) */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001960 if (initrd_name) {
1961 initrd_size = load_initrd(initrd_name, mem);
Rusty Russell2e04ef72009-07-30 16:03:45 -06001962 /*
1963 * These are the location in the Linux boot header where the
1964 * start and size of the initrd are expected to be found.
1965 */
Rusty Russell43d33b22007-10-22 11:29:57 +10001966 boot->hdr.ramdisk_image = mem - initrd_size;
1967 boot->hdr.ramdisk_size = initrd_size;
Rusty Russelldde79782007-07-26 10:41:03 -07001968 /* The bootloader type 0xFF means "unknown"; that's OK. */
Rusty Russell43d33b22007-10-22 11:29:57 +10001969 boot->hdr.type_of_loader = 0xFF;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001970 }
1971
Rusty Russell2e04ef72009-07-30 16:03:45 -06001972 /*
1973 * The Linux boot header contains an "E820" memory map: ours is a
1974 * simple, single region.
1975 */
Rusty Russell43d33b22007-10-22 11:29:57 +10001976 boot->e820_entries = 1;
1977 boot->e820_map[0] = ((struct e820entry) { 0, mem, E820_RAM });
Rusty Russell2e04ef72009-07-30 16:03:45 -06001978 /*
1979 * The boot header contains a command line pointer: we put the command
1980 * line after the boot header.
1981 */
Rusty Russell43d33b22007-10-22 11:29:57 +10001982 boot->hdr.cmd_line_ptr = to_guest_phys(boot + 1);
Rusty Russelle1e72962007-10-25 15:02:50 +10001983 /* We use a simple helper to copy the arguments separated by spaces. */
Rusty Russell43d33b22007-10-22 11:29:57 +10001984 concat((char *)(boot + 1), argv+optind+2);
Rusty Russelldde79782007-07-26 10:41:03 -07001985
Rusty Russelle22a5392011-08-15 10:15:10 +09301986 /* Set kernel alignment to 16M (CONFIG_PHYSICAL_ALIGN) */
1987 boot->hdr.kernel_alignment = 0x1000000;
1988
Rusty Russell814a0e52007-10-22 11:29:44 +10001989 /* Boot protocol version: 2.07 supports the fields for lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10001990 boot->hdr.version = 0x207;
Rusty Russell814a0e52007-10-22 11:29:44 +10001991
1992 /* The hardware_subarch value of "1" tells the Guest it's an lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10001993 boot->hdr.hardware_subarch = 1;
Rusty Russell814a0e52007-10-22 11:29:44 +10001994
Rusty Russell43d33b22007-10-22 11:29:57 +10001995 /* Tell the entry path not to try to reload segment registers. */
1996 boot->hdr.loadflags |= KEEP_SEGMENTS;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001997
Rusty Russell9f542882011-07-22 14:39:50 +09301998 /* We tell the kernel to initialize the Guest. */
Rusty Russell56739c802009-06-12 22:26:59 -06001999 tell_kernel(start);
Rusty Russelldde79782007-07-26 10:41:03 -07002000
Rusty Russella91d74a2009-07-30 16:03:45 -06002001 /* Ensure that we terminate if a device-servicing child dies. */
Rusty Russell659a0e62009-06-12 22:27:10 -06002002 signal(SIGCHLD, kill_launcher);
2003
2004 /* If we exit via err(), this kills all the threads, restores tty. */
2005 atexit(cleanup_devices);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002006
Philip Sanderson8aeb36e2011-01-20 21:37:28 -06002007 /* If requested, chroot to a directory */
2008 if (chroot_path) {
2009 if (chroot(chroot_path) != 0)
2010 err(1, "chroot(\"%s\") failed", chroot_path);
2011
2012 if (chdir("/") != 0)
2013 err(1, "chdir(\"/\") failed");
2014
2015 verbose("chroot done\n");
2016 }
2017
2018 /* If requested, drop privileges */
2019 if (user_details) {
2020 uid_t u;
2021 gid_t g;
2022
2023 u = user_details->pw_uid;
2024 g = user_details->pw_gid;
2025
2026 if (initgroups(user_details->pw_name, g) != 0)
2027 err(1, "initgroups failed");
2028
2029 if (setresgid(g, g, g) != 0)
2030 err(1, "setresgid failed");
2031
2032 if (setresuid(u, u, u) != 0)
2033 err(1, "setresuid failed");
2034
2035 verbose("Dropping privileges completed\n");
2036 }
2037
Rusty Russelldde79782007-07-26 10:41:03 -07002038 /* Finally, run the Guest. This doesn't return. */
Rusty Russell56739c802009-06-12 22:26:59 -06002039 run_guest();
Rusty Russell8ca47e02007-07-19 01:49:29 -07002040}
Rusty Russellf56a3842007-07-26 10:41:05 -07002041/*:*/
2042
2043/*M:999
2044 * Mastery is done: you now know everything I do.
2045 *
2046 * But surely you have seen code, features and bugs in your wanderings which
2047 * you now yearn to attack? That is the real game, and I look forward to you
2048 * patching and forking lguest into the Your-Name-Here-visor.
2049 *
2050 * Farewell, and good coding!
2051 * Rusty Russell.
2052 */