blob: 7418f852e40ccc57788dcf29fee7d9accbbb5740 [file] [log] [blame]
Rusty Russellf938d2c2007-07-26 10:41:02 -07001/*P:100 This is the Launcher code, a simple program which lays out the
2 * "physical" memory for the new Guest by mapping the kernel image and the
3 * virtual devices, then reads repeatedly from /dev/lguest to run the Guest.
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10004:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07005#define _LARGEFILE64_SOURCE
6#define _GNU_SOURCE
7#include <stdio.h>
8#include <string.h>
9#include <unistd.h>
10#include <err.h>
11#include <stdint.h>
12#include <stdlib.h>
13#include <elf.h>
14#include <sys/mman.h>
Ronald G. Minnich6649bb72007-08-28 14:35:59 -070015#include <sys/param.h>
Rusty Russell8ca47e02007-07-19 01:49:29 -070016#include <sys/types.h>
17#include <sys/stat.h>
18#include <sys/wait.h>
19#include <fcntl.h>
20#include <stdbool.h>
21#include <errno.h>
22#include <ctype.h>
23#include <sys/socket.h>
24#include <sys/ioctl.h>
25#include <sys/time.h>
26#include <time.h>
27#include <netinet/in.h>
28#include <net/if.h>
29#include <linux/sockios.h>
30#include <linux/if_tun.h>
31#include <sys/uio.h>
32#include <termios.h>
33#include <getopt.h>
34#include <zlib.h>
Rusty Russell17cbca22007-10-22 11:24:22 +100035#include <assert.h>
36#include <sched.h>
37/*L:110 We can ignore the 30 include files we need for this program, but I do
Rusty Russelldde79782007-07-26 10:41:03 -070038 * want to draw attention to the use of kernel-style types.
39 *
40 * As Linus said, "C is a Spartan language, and so should your naming be." I
41 * like these abbreviations and the header we need uses them, so we define them
42 * here.
43 */
Rusty Russell8ca47e02007-07-19 01:49:29 -070044typedef unsigned long long u64;
45typedef uint32_t u32;
46typedef uint16_t u16;
47typedef uint8_t u8;
Rusty Russellb45d8cb2007-10-22 10:56:24 +100048#include "linux/lguest_launcher.h"
Rusty Russell17cbca22007-10-22 11:24:22 +100049#include "linux/pci_ids.h"
50#include "linux/virtio_config.h"
51#include "linux/virtio_net.h"
52#include "linux/virtio_blk.h"
53#include "linux/virtio_console.h"
54#include "linux/virtio_ring.h"
Rusty Russellb45d8cb2007-10-22 10:56:24 +100055#include "asm-x86/e820.h"
Rusty Russelldde79782007-07-26 10:41:03 -070056/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -070057
58#define PAGE_PRESENT 0x7 /* Present, RW, Execute */
59#define NET_PEERNUM 1
60#define BRIDGE_PFX "bridge:"
61#ifndef SIOCBRADDIF
62#define SIOCBRADDIF 0x89a2 /* add interface to bridge */
63#endif
Rusty Russell3c6b5bf2007-10-22 11:03:26 +100064/* We can have up to 256 pages for devices. */
65#define DEVICE_PAGES 256
Rusty Russell17cbca22007-10-22 11:24:22 +100066/* This fits nicely in a single 4096-byte page. */
67#define VIRTQUEUE_NUM 127
Rusty Russell8ca47e02007-07-19 01:49:29 -070068
Rusty Russelldde79782007-07-26 10:41:03 -070069/*L:120 verbose is both a global flag and a macro. The C preprocessor allows
70 * this, and although I wouldn't recommend it, it works quite nicely here. */
Rusty Russell8ca47e02007-07-19 01:49:29 -070071static bool verbose;
72#define verbose(args...) \
73 do { if (verbose) printf(args); } while(0)
Rusty Russelldde79782007-07-26 10:41:03 -070074/*:*/
75
76/* The pipe to send commands to the waker process */
Rusty Russell8ca47e02007-07-19 01:49:29 -070077static int waker_fd;
Rusty Russell3c6b5bf2007-10-22 11:03:26 +100078/* The pointer to the start of guest memory. */
79static void *guest_base;
80/* The maximum guest physical address allowed, and maximum possible. */
81static unsigned long guest_limit, guest_max;
Rusty Russell8ca47e02007-07-19 01:49:29 -070082
Rusty Russelldde79782007-07-26 10:41:03 -070083/* This is our list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -070084struct device_list
85{
Rusty Russelldde79782007-07-26 10:41:03 -070086 /* Summary information about the devices in our list: ready to pass to
87 * select() to ask which need servicing.*/
Rusty Russell8ca47e02007-07-19 01:49:29 -070088 fd_set infds;
89 int max_infd;
90
Rusty Russell17cbca22007-10-22 11:24:22 +100091 /* Counter to assign interrupt numbers. */
92 unsigned int next_irq;
93
94 /* Counter to print out convenient device numbers. */
95 unsigned int device_num;
96
Rusty Russelldde79782007-07-26 10:41:03 -070097 /* The descriptor page for the devices. */
Rusty Russell17cbca22007-10-22 11:24:22 +100098 u8 *descpage;
99
100 /* The tail of the last descriptor. */
101 unsigned int desc_used;
Rusty Russelldde79782007-07-26 10:41:03 -0700102
103 /* A single linked list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700104 struct device *dev;
Rusty Russelldde79782007-07-26 10:41:03 -0700105 /* ... And an end pointer so we can easily append new devices */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700106 struct device **lastdev;
107};
108
Rusty Russell17cbca22007-10-22 11:24:22 +1000109/* The list of Guest devices, based on command line arguments. */
110static struct device_list devices;
111
Rusty Russelldde79782007-07-26 10:41:03 -0700112/* The device structure describes a single device. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700113struct device
114{
Rusty Russelldde79782007-07-26 10:41:03 -0700115 /* The linked-list pointer. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700116 struct device *next;
Rusty Russell17cbca22007-10-22 11:24:22 +1000117
118 /* The this device's descriptor, as mapped into the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700119 struct lguest_device_desc *desc;
Rusty Russell17cbca22007-10-22 11:24:22 +1000120
121 /* The name of this device, for --verbose. */
122 const char *name;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700123
Rusty Russelldde79782007-07-26 10:41:03 -0700124 /* If handle_input is set, it wants to be called when this file
125 * descriptor is ready. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700126 int fd;
127 bool (*handle_input)(int fd, struct device *me);
128
Rusty Russell17cbca22007-10-22 11:24:22 +1000129 /* Any queues attached to this device */
130 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700131
132 /* Device-specific data. */
133 void *priv;
134};
135
Rusty Russell17cbca22007-10-22 11:24:22 +1000136/* The virtqueue structure describes a queue attached to a device. */
137struct virtqueue
138{
139 struct virtqueue *next;
140
141 /* Which device owns me. */
142 struct device *dev;
143
144 /* The configuration for this queue. */
145 struct lguest_vqconfig config;
146
147 /* The actual ring of buffers. */
148 struct vring vring;
149
150 /* Last available index we saw. */
151 u16 last_avail_idx;
152
153 /* The routine to call when the Guest pings us. */
154 void (*handle_output)(int fd, struct virtqueue *me);
155};
156
157/* Since guest is UP and we don't run at the same time, we don't need barriers.
158 * But I include them in the code in case others copy it. */
159#define wmb()
160
161/* Convert an iovec element to the given type.
162 *
163 * This is a fairly ugly trick: we need to know the size of the type and
164 * alignment requirement to check the pointer is kosher. It's also nice to
165 * have the name of the type in case we report failure.
166 *
167 * Typing those three things all the time is cumbersome and error prone, so we
168 * have a macro which sets them all up and passes to the real function. */
169#define convert(iov, type) \
170 ((type *)_convert((iov), sizeof(type), __alignof__(type), #type))
171
172static void *_convert(struct iovec *iov, size_t size, size_t align,
173 const char *name)
174{
175 if (iov->iov_len != size)
176 errx(1, "Bad iovec size %zu for %s", iov->iov_len, name);
177 if ((unsigned long)iov->iov_base % align != 0)
178 errx(1, "Bad alignment %p for %s", iov->iov_base, name);
179 return iov->iov_base;
180}
181
182/* The virtio configuration space is defined to be little-endian. x86 is
183 * little-endian too, but it's nice to be explicit so we have these helpers. */
184#define cpu_to_le16(v16) (v16)
185#define cpu_to_le32(v32) (v32)
186#define cpu_to_le64(v64) (v64)
187#define le16_to_cpu(v16) (v16)
188#define le32_to_cpu(v32) (v32)
189#define le64_to_cpu(v32) (v64)
190
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000191/*L:100 The Launcher code itself takes us out into userspace, that scary place
192 * where pointers run wild and free! Unfortunately, like most userspace
193 * programs, it's quite boring (which is why everyone likes to hack on the
194 * kernel!). Perhaps if you make up an Lguest Drinking Game at this point, it
195 * will get you through this section. Or, maybe not.
196 *
197 * The Launcher sets up a big chunk of memory to be the Guest's "physical"
198 * memory and stores it in "guest_base". In other words, Guest physical ==
199 * Launcher virtual with an offset.
200 *
201 * This can be tough to get your head around, but usually it just means that we
202 * use these trivial conversion functions when the Guest gives us it's
203 * "physical" addresses: */
204static void *from_guest_phys(unsigned long addr)
205{
206 return guest_base + addr;
207}
208
209static unsigned long to_guest_phys(const void *addr)
210{
211 return (addr - guest_base);
212}
213
Rusty Russelldde79782007-07-26 10:41:03 -0700214/*L:130
215 * Loading the Kernel.
216 *
217 * We start with couple of simple helper routines. open_or_die() avoids
218 * error-checking code cluttering the callers: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700219static int open_or_die(const char *name, int flags)
220{
221 int fd = open(name, flags);
222 if (fd < 0)
223 err(1, "Failed to open %s", name);
224 return fd;
225}
226
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000227/* map_zeroed_pages() takes a number of pages. */
228static void *map_zeroed_pages(unsigned int num)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700229{
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000230 int fd = open_or_die("/dev/zero", O_RDONLY);
231 void *addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700232
Rusty Russelldde79782007-07-26 10:41:03 -0700233 /* We use a private mapping (ie. if we write to the page, it will be
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000234 * copied). */
235 addr = mmap(NULL, getpagesize() * num,
236 PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, fd, 0);
237 if (addr == MAP_FAILED)
238 err(1, "Mmaping %u pages of /dev/zero", num);
Rusty Russelldde79782007-07-26 10:41:03 -0700239
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000240 return addr;
241}
242
243/* Get some more pages for a device. */
244static void *get_pages(unsigned int num)
245{
246 void *addr = from_guest_phys(guest_limit);
247
248 guest_limit += num * getpagesize();
249 if (guest_limit > guest_max)
250 errx(1, "Not enough memory for devices");
251 return addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700252}
253
Rusty Russelldde79782007-07-26 10:41:03 -0700254/* To find out where to start we look for the magic Guest string, which marks
255 * the code we see in lguest_asm.S. This is a hack which we are currently
256 * plotting to replace with the normal Linux entry point. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000257static unsigned long entry_point(const void *start, const void *end)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700258{
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000259 const void *p;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700260
Rusty Russell47436aa2007-10-22 11:03:36 +1000261 /* The scan gives us the physical starting address. We boot with
262 * pagetables set up with virtual and physical the same, so that's
263 * OK. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700264 for (p = start; p < end; p++)
265 if (memcmp(p, "GenuineLguest", strlen("GenuineLguest")) == 0)
Rusty Russell47436aa2007-10-22 11:03:36 +1000266 return to_guest_phys(p + strlen("GenuineLguest"));
Rusty Russell8ca47e02007-07-19 01:49:29 -0700267
Glauber de Oliveira Costababed5c2007-10-22 10:56:21 +1000268 errx(1, "Is this image a genuine lguest?");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700269}
270
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700271/* This routine is used to load the kernel or initrd. It tries mmap, but if
272 * that fails (Plan 9's kernel file isn't nicely aligned on page boundaries),
273 * it falls back to reading the memory in. */
274static void map_at(int fd, void *addr, unsigned long offset, unsigned long len)
275{
276 ssize_t r;
277
278 /* We map writable even though for some segments are marked read-only.
279 * The kernel really wants to be writable: it patches its own
280 * instructions.
281 *
282 * MAP_PRIVATE means that the page won't be copied until a write is
283 * done to it. This allows us to share untouched memory between
284 * Guests. */
285 if (mmap(addr, len, PROT_READ|PROT_WRITE|PROT_EXEC,
286 MAP_FIXED|MAP_PRIVATE, fd, offset) != MAP_FAILED)
287 return;
288
289 /* pread does a seek and a read in one shot: saves a few lines. */
290 r = pread(fd, addr, len, offset);
291 if (r != len)
292 err(1, "Reading offset %lu len %lu gave %zi", offset, len, r);
293}
294
Rusty Russelldde79782007-07-26 10:41:03 -0700295/* This routine takes an open vmlinux image, which is in ELF, and maps it into
296 * the Guest memory. ELF = Embedded Linking Format, which is the format used
297 * by all modern binaries on Linux including the kernel.
298 *
299 * The ELF headers give *two* addresses: a physical address, and a virtual
Rusty Russell47436aa2007-10-22 11:03:36 +1000300 * address. We use the physical address; the Guest will map itself to the
301 * virtual address.
Rusty Russelldde79782007-07-26 10:41:03 -0700302 *
303 * We return the starting address. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000304static unsigned long map_elf(int elf_fd, const Elf32_Ehdr *ehdr)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700305{
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000306 void *start = (void *)-1, *end = NULL;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700307 Elf32_Phdr phdr[ehdr->e_phnum];
308 unsigned int i;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700309
Rusty Russelldde79782007-07-26 10:41:03 -0700310 /* Sanity checks on the main ELF header: an x86 executable with a
311 * reasonable number of correctly-sized program headers. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700312 if (ehdr->e_type != ET_EXEC
313 || ehdr->e_machine != EM_386
314 || ehdr->e_phentsize != sizeof(Elf32_Phdr)
315 || ehdr->e_phnum < 1 || ehdr->e_phnum > 65536U/sizeof(Elf32_Phdr))
316 errx(1, "Malformed elf header");
317
Rusty Russelldde79782007-07-26 10:41:03 -0700318 /* An ELF executable contains an ELF header and a number of "program"
319 * headers which indicate which parts ("segments") of the program to
320 * load where. */
321
322 /* We read in all the program headers at once: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700323 if (lseek(elf_fd, ehdr->e_phoff, SEEK_SET) < 0)
324 err(1, "Seeking to program headers");
325 if (read(elf_fd, phdr, sizeof(phdr)) != sizeof(phdr))
326 err(1, "Reading program headers");
327
Rusty Russelldde79782007-07-26 10:41:03 -0700328 /* Try all the headers: there are usually only three. A read-only one,
329 * a read-write one, and a "note" section which isn't loadable. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700330 for (i = 0; i < ehdr->e_phnum; i++) {
Rusty Russelldde79782007-07-26 10:41:03 -0700331 /* If this isn't a loadable segment, we ignore it */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700332 if (phdr[i].p_type != PT_LOAD)
333 continue;
334
335 verbose("Section %i: size %i addr %p\n",
336 i, phdr[i].p_memsz, (void *)phdr[i].p_paddr);
337
Rusty Russelldde79782007-07-26 10:41:03 -0700338 /* We track the first and last address we mapped, so we can
339 * tell entry_point() where to scan. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000340 if (from_guest_phys(phdr[i].p_paddr) < start)
341 start = from_guest_phys(phdr[i].p_paddr);
342 if (from_guest_phys(phdr[i].p_paddr) + phdr[i].p_filesz > end)
343 end=from_guest_phys(phdr[i].p_paddr)+phdr[i].p_filesz;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700344
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700345 /* We map this section of the file at its physical address. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000346 map_at(elf_fd, from_guest_phys(phdr[i].p_paddr),
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700347 phdr[i].p_offset, phdr[i].p_filesz);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700348 }
349
Rusty Russell47436aa2007-10-22 11:03:36 +1000350 return entry_point(start, end);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700351}
352
Rusty Russelldde79782007-07-26 10:41:03 -0700353/*L:160 Unfortunately the entire ELF image isn't compressed: the segments
354 * which need loading are extracted and compressed raw. This denies us the
355 * information we need to make a fully-general loader. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000356static unsigned long unpack_bzimage(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700357{
358 gzFile f;
359 int ret, len = 0;
Rusty Russelldde79782007-07-26 10:41:03 -0700360 /* A bzImage always gets loaded at physical address 1M. This is
361 * actually configurable as CONFIG_PHYSICAL_START, but as the comment
362 * there says, "Don't change this unless you know what you are doing".
363 * Indeed. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000364 void *img = from_guest_phys(0x100000);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700365
Rusty Russelldde79782007-07-26 10:41:03 -0700366 /* gzdopen takes our file descriptor (carefully placed at the start of
367 * the GZIP header we found) and returns a gzFile. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700368 f = gzdopen(fd, "rb");
Rusty Russelldde79782007-07-26 10:41:03 -0700369 /* We read it into memory in 64k chunks until we hit the end. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700370 while ((ret = gzread(f, img + len, 65536)) > 0)
371 len += ret;
372 if (ret < 0)
373 err(1, "reading image from bzImage");
374
375 verbose("Unpacked size %i addr %p\n", len, img);
Rusty Russelldde79782007-07-26 10:41:03 -0700376
Rusty Russell47436aa2007-10-22 11:03:36 +1000377 return entry_point(img, img + len);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700378}
379
Rusty Russelldde79782007-07-26 10:41:03 -0700380/*L:150 A bzImage, unlike an ELF file, is not meant to be loaded. You're
381 * supposed to jump into it and it will unpack itself. We can't do that
382 * because the Guest can't run the unpacking code, and adding features to
383 * lguest kills puppies, so we don't want to.
384 *
385 * The bzImage is formed by putting the decompressing code in front of the
386 * compressed kernel code. So we can simple scan through it looking for the
387 * first "gzip" header, and start decompressing from there. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000388static unsigned long load_bzimage(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700389{
390 unsigned char c;
391 int state = 0;
392
Rusty Russelldde79782007-07-26 10:41:03 -0700393 /* GZIP header is 0x1F 0x8B <method> <flags>... <compressed-by>. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700394 while (read(fd, &c, 1) == 1) {
395 switch (state) {
396 case 0:
397 if (c == 0x1F)
398 state++;
399 break;
400 case 1:
401 if (c == 0x8B)
402 state++;
403 else
404 state = 0;
405 break;
406 case 2 ... 8:
407 state++;
408 break;
409 case 9:
Rusty Russelldde79782007-07-26 10:41:03 -0700410 /* Seek back to the start of the gzip header. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700411 lseek(fd, -10, SEEK_CUR);
Rusty Russelldde79782007-07-26 10:41:03 -0700412 /* One final check: "compressed under UNIX". */
413 if (c != 0x03)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700414 state = -1;
415 else
Rusty Russell47436aa2007-10-22 11:03:36 +1000416 return unpack_bzimage(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700417 }
418 }
419 errx(1, "Could not find kernel in bzImage");
420}
421
Rusty Russelldde79782007-07-26 10:41:03 -0700422/*L:140 Loading the kernel is easy when it's a "vmlinux", but most kernels
423 * come wrapped up in the self-decompressing "bzImage" format. With some funky
424 * coding, we can load those, too. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000425static unsigned long load_kernel(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700426{
427 Elf32_Ehdr hdr;
428
Rusty Russelldde79782007-07-26 10:41:03 -0700429 /* Read in the first few bytes. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700430 if (read(fd, &hdr, sizeof(hdr)) != sizeof(hdr))
431 err(1, "Reading kernel");
432
Rusty Russelldde79782007-07-26 10:41:03 -0700433 /* If it's an ELF file, it starts with "\177ELF" */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700434 if (memcmp(hdr.e_ident, ELFMAG, SELFMAG) == 0)
Rusty Russell47436aa2007-10-22 11:03:36 +1000435 return map_elf(fd, &hdr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700436
Rusty Russelldde79782007-07-26 10:41:03 -0700437 /* Otherwise we assume it's a bzImage, and try to unpack it */
Rusty Russell47436aa2007-10-22 11:03:36 +1000438 return load_bzimage(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700439}
440
Rusty Russelldde79782007-07-26 10:41:03 -0700441/* This is a trivial little helper to align pages. Andi Kleen hated it because
442 * it calls getpagesize() twice: "it's dumb code."
443 *
444 * Kernel guys get really het up about optimization, even when it's not
445 * necessary. I leave this code as a reaction against that. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700446static inline unsigned long page_align(unsigned long addr)
447{
Rusty Russelldde79782007-07-26 10:41:03 -0700448 /* Add upwards and truncate downwards. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700449 return ((addr + getpagesize()-1) & ~(getpagesize()-1));
450}
451
Rusty Russelldde79782007-07-26 10:41:03 -0700452/*L:180 An "initial ram disk" is a disk image loaded into memory along with
453 * the kernel which the kernel can use to boot from without needing any
454 * drivers. Most distributions now use this as standard: the initrd contains
455 * the code to load the appropriate driver modules for the current machine.
456 *
457 * Importantly, James Morris works for RedHat, and Fedora uses initrds for its
458 * kernels. He sent me this (and tells me when I break it). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700459static unsigned long load_initrd(const char *name, unsigned long mem)
460{
461 int ifd;
462 struct stat st;
463 unsigned long len;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700464
465 ifd = open_or_die(name, O_RDONLY);
Rusty Russelldde79782007-07-26 10:41:03 -0700466 /* fstat() is needed to get the file size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700467 if (fstat(ifd, &st) < 0)
468 err(1, "fstat() on initrd '%s'", name);
469
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700470 /* We map the initrd at the top of memory, but mmap wants it to be
471 * page-aligned, so we round the size up for that. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700472 len = page_align(st.st_size);
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000473 map_at(ifd, from_guest_phys(mem - len), 0, st.st_size);
Rusty Russelldde79782007-07-26 10:41:03 -0700474 /* Once a file is mapped, you can close the file descriptor. It's a
475 * little odd, but quite useful. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700476 close(ifd);
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700477 verbose("mapped initrd %s size=%lu @ %p\n", name, len, (void*)mem-len);
Rusty Russelldde79782007-07-26 10:41:03 -0700478
479 /* We return the initrd size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700480 return len;
481}
482
Rusty Russell47436aa2007-10-22 11:03:36 +1000483/* Once we know how much memory we have, we can construct simple linear page
484 * tables which set virtual == physical which will get the Guest far enough
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000485 * into the boot to create its own.
Rusty Russelldde79782007-07-26 10:41:03 -0700486 *
487 * We lay them out of the way, just below the initrd (which is why we need to
488 * know its size). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700489static unsigned long setup_pagetables(unsigned long mem,
Rusty Russell47436aa2007-10-22 11:03:36 +1000490 unsigned long initrd_size)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700491{
Jes Sorensen511801d2007-10-22 11:03:31 +1000492 unsigned long *pgdir, *linear;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700493 unsigned int mapped_pages, i, linear_pages;
Jes Sorensen511801d2007-10-22 11:03:31 +1000494 unsigned int ptes_per_page = getpagesize()/sizeof(void *);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700495
Rusty Russell47436aa2007-10-22 11:03:36 +1000496 mapped_pages = mem/getpagesize();
Rusty Russell8ca47e02007-07-19 01:49:29 -0700497
Rusty Russelldde79782007-07-26 10:41:03 -0700498 /* Each PTE page can map ptes_per_page pages: how many do we need? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700499 linear_pages = (mapped_pages + ptes_per_page-1)/ptes_per_page;
500
Rusty Russelldde79782007-07-26 10:41:03 -0700501 /* We put the toplevel page directory page at the top of memory. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000502 pgdir = from_guest_phys(mem) - initrd_size - getpagesize();
Rusty Russelldde79782007-07-26 10:41:03 -0700503
504 /* Now we use the next linear_pages pages as pte pages */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700505 linear = (void *)pgdir - linear_pages*getpagesize();
506
Rusty Russelldde79782007-07-26 10:41:03 -0700507 /* Linear mapping is easy: put every page's address into the mapping in
508 * order. PAGE_PRESENT contains the flags Present, Writable and
509 * Executable. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700510 for (i = 0; i < mapped_pages; i++)
511 linear[i] = ((i * getpagesize()) | PAGE_PRESENT);
512
Rusty Russell47436aa2007-10-22 11:03:36 +1000513 /* The top level points to the linear page table pages above. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700514 for (i = 0; i < mapped_pages; i += ptes_per_page) {
Rusty Russell47436aa2007-10-22 11:03:36 +1000515 pgdir[i/ptes_per_page]
Jes Sorensen511801d2007-10-22 11:03:31 +1000516 = ((to_guest_phys(linear) + i*sizeof(void *))
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000517 | PAGE_PRESENT);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700518 }
519
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000520 verbose("Linear mapping of %u pages in %u pte pages at %#lx\n",
521 mapped_pages, linear_pages, to_guest_phys(linear));
Rusty Russell8ca47e02007-07-19 01:49:29 -0700522
Rusty Russelldde79782007-07-26 10:41:03 -0700523 /* We return the top level (guest-physical) address: the kernel needs
524 * to know where it is. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000525 return to_guest_phys(pgdir);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700526}
527
Rusty Russelldde79782007-07-26 10:41:03 -0700528/* Simple routine to roll all the commandline arguments together with spaces
529 * between them. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700530static void concat(char *dst, char *args[])
531{
532 unsigned int i, len = 0;
533
534 for (i = 0; args[i]; i++) {
535 strcpy(dst+len, args[i]);
536 strcat(dst+len, " ");
537 len += strlen(args[i]) + 1;
538 }
539 /* In case it's empty. */
540 dst[len] = '\0';
541}
542
Rusty Russelldde79782007-07-26 10:41:03 -0700543/* This is where we actually tell the kernel to initialize the Guest. We saw
544 * the arguments it expects when we looked at initialize() in lguest_user.c:
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000545 * the base of guest "physical" memory, the top physical page to allow, the
Rusty Russell47436aa2007-10-22 11:03:36 +1000546 * top level pagetable and the entry point for the Guest. */
547static int tell_kernel(unsigned long pgdir, unsigned long start)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700548{
Jes Sorensen511801d2007-10-22 11:03:31 +1000549 unsigned long args[] = { LHREQ_INITIALIZE,
550 (unsigned long)guest_base,
Rusty Russell47436aa2007-10-22 11:03:36 +1000551 guest_limit / getpagesize(), pgdir, start };
Rusty Russell8ca47e02007-07-19 01:49:29 -0700552 int fd;
553
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000554 verbose("Guest: %p - %p (%#lx)\n",
555 guest_base, guest_base + guest_limit, guest_limit);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700556 fd = open_or_die("/dev/lguest", O_RDWR);
557 if (write(fd, args, sizeof(args)) < 0)
558 err(1, "Writing to /dev/lguest");
Rusty Russelldde79782007-07-26 10:41:03 -0700559
560 /* We return the /dev/lguest file descriptor to control this Guest */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700561 return fd;
562}
Rusty Russelldde79782007-07-26 10:41:03 -0700563/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700564
Rusty Russell17cbca22007-10-22 11:24:22 +1000565static void add_device_fd(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700566{
Rusty Russell17cbca22007-10-22 11:24:22 +1000567 FD_SET(fd, &devices.infds);
568 if (fd > devices.max_infd)
569 devices.max_infd = fd;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700570}
571
Rusty Russelldde79782007-07-26 10:41:03 -0700572/*L:200
573 * The Waker.
574 *
575 * With a console and network devices, we can have lots of input which we need
576 * to process. We could try to tell the kernel what file descriptors to watch,
577 * but handing a file descriptor mask through to the kernel is fairly icky.
578 *
579 * Instead, we fork off a process which watches the file descriptors and writes
580 * the LHREQ_BREAK command to the /dev/lguest filedescriptor to tell the Host
581 * loop to stop running the Guest. This causes it to return from the
582 * /dev/lguest read with -EAGAIN, where it will write to /dev/lguest to reset
583 * the LHREQ_BREAK and wake us up again.
584 *
585 * This, of course, is merely a different *kind* of icky.
586 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000587static void wake_parent(int pipefd, int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700588{
Rusty Russelldde79782007-07-26 10:41:03 -0700589 /* Add the pipe from the Launcher to the fdset in the device_list, so
590 * we watch it, too. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000591 add_device_fd(pipefd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700592
593 for (;;) {
Rusty Russell17cbca22007-10-22 11:24:22 +1000594 fd_set rfds = devices.infds;
Jes Sorensen511801d2007-10-22 11:03:31 +1000595 unsigned long args[] = { LHREQ_BREAK, 1 };
Rusty Russell8ca47e02007-07-19 01:49:29 -0700596
Rusty Russelldde79782007-07-26 10:41:03 -0700597 /* Wait until input is ready from one of the devices. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000598 select(devices.max_infd+1, &rfds, NULL, NULL, NULL);
Rusty Russelldde79782007-07-26 10:41:03 -0700599 /* Is it a message from the Launcher? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700600 if (FD_ISSET(pipefd, &rfds)) {
601 int ignorefd;
Rusty Russelldde79782007-07-26 10:41:03 -0700602 /* If read() returns 0, it means the Launcher has
603 * exited. We silently follow. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700604 if (read(pipefd, &ignorefd, sizeof(ignorefd)) == 0)
605 exit(0);
Rusty Russelldde79782007-07-26 10:41:03 -0700606 /* Otherwise it's telling us there's a problem with one
607 * of the devices, and we should ignore that file
608 * descriptor from now on. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000609 FD_CLR(ignorefd, &devices.infds);
Rusty Russelldde79782007-07-26 10:41:03 -0700610 } else /* Send LHREQ_BREAK command. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700611 write(lguest_fd, args, sizeof(args));
612 }
613}
614
Rusty Russelldde79782007-07-26 10:41:03 -0700615/* This routine just sets up a pipe to the Waker process. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000616static int setup_waker(int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700617{
618 int pipefd[2], child;
619
Rusty Russelldde79782007-07-26 10:41:03 -0700620 /* We create a pipe to talk to the waker, and also so it knows when the
621 * Launcher dies (and closes pipe). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700622 pipe(pipefd);
623 child = fork();
624 if (child == -1)
625 err(1, "forking");
626
627 if (child == 0) {
Rusty Russelldde79782007-07-26 10:41:03 -0700628 /* Close the "writing" end of our copy of the pipe */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700629 close(pipefd[1]);
Rusty Russell17cbca22007-10-22 11:24:22 +1000630 wake_parent(pipefd[0], lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700631 }
Rusty Russelldde79782007-07-26 10:41:03 -0700632 /* Close the reading end of our copy of the pipe. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700633 close(pipefd[0]);
634
Rusty Russelldde79782007-07-26 10:41:03 -0700635 /* Here is the fd used to talk to the waker. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700636 return pipefd[1];
637}
638
Rusty Russelldde79782007-07-26 10:41:03 -0700639/*L:210
640 * Device Handling.
641 *
642 * When the Guest sends DMA to us, it sends us an array of addresses and sizes.
643 * We need to make sure it's not trying to reach into the Launcher itself, so
644 * we have a convenient routine which check it and exits with an error message
645 * if something funny is going on:
646 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700647static void *_check_pointer(unsigned long addr, unsigned int size,
648 unsigned int line)
649{
Rusty Russelldde79782007-07-26 10:41:03 -0700650 /* We have to separately check addr and addr+size, because size could
651 * be huge and addr + size might wrap around. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000652 if (addr >= guest_limit || addr + size >= guest_limit)
Rusty Russell17cbca22007-10-22 11:24:22 +1000653 errx(1, "%s:%i: Invalid address %#lx", __FILE__, line, addr);
Rusty Russelldde79782007-07-26 10:41:03 -0700654 /* We return a pointer for the caller's convenience, now we know it's
655 * safe to use. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000656 return from_guest_phys(addr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700657}
Rusty Russelldde79782007-07-26 10:41:03 -0700658/* A macro which transparently hands the line number to the real function. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700659#define check_pointer(addr,size) _check_pointer(addr, size, __LINE__)
660
Rusty Russelldde79782007-07-26 10:41:03 -0700661/* This simply sets up an iovec array where we can put data to be discarded.
662 * This happens when the Guest doesn't want or can't handle the input: we have
663 * to get rid of it somewhere, and if we bury it in the ceiling space it will
664 * start to smell after a week. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700665static void discard_iovec(struct iovec *iov, unsigned int *num)
666{
667 static char discard_buf[1024];
668 *num = 1;
669 iov->iov_base = discard_buf;
670 iov->iov_len = sizeof(discard_buf);
671}
672
Rusty Russell17cbca22007-10-22 11:24:22 +1000673/* This function returns the next descriptor in the chain, or vq->vring.num. */
674static unsigned next_desc(struct virtqueue *vq, unsigned int i)
675{
676 unsigned int next;
677
678 /* If this descriptor says it doesn't chain, we're done. */
679 if (!(vq->vring.desc[i].flags & VRING_DESC_F_NEXT))
680 return vq->vring.num;
681
682 /* Check they're not leading us off end of descriptors. */
683 next = vq->vring.desc[i].next;
684 /* Make sure compiler knows to grab that: we don't want it changing! */
685 wmb();
686
687 if (next >= vq->vring.num)
688 errx(1, "Desc next is %u", next);
689
690 return next;
691}
692
693/* This looks in the virtqueue and for the first available buffer, and converts
694 * it to an iovec for convenient access. Since descriptors consist of some
695 * number of output then some number of input descriptors, it's actually two
696 * iovecs, but we pack them into one and note how many of each there were.
697 *
698 * This function returns the descriptor number found, or vq->vring.num (which
699 * is never a valid descriptor number) if none was found. */
700static unsigned get_vq_desc(struct virtqueue *vq,
701 struct iovec iov[],
702 unsigned int *out_num, unsigned int *in_num)
703{
704 unsigned int i, head;
705
706 /* Check it isn't doing very strange things with descriptor numbers. */
707 if ((u16)(vq->vring.avail->idx - vq->last_avail_idx) > vq->vring.num)
708 errx(1, "Guest moved used index from %u to %u",
709 vq->last_avail_idx, vq->vring.avail->idx);
710
711 /* If there's nothing new since last we looked, return invalid. */
712 if (vq->vring.avail->idx == vq->last_avail_idx)
713 return vq->vring.num;
714
715 /* Grab the next descriptor number they're advertising, and increment
716 * the index we've seen. */
717 head = vq->vring.avail->ring[vq->last_avail_idx++ % vq->vring.num];
718
719 /* If their number is silly, that's a fatal mistake. */
720 if (head >= vq->vring.num)
721 errx(1, "Guest says index %u is available", head);
722
723 /* When we start there are none of either input nor output. */
724 *out_num = *in_num = 0;
725
726 i = head;
727 do {
728 /* Grab the first descriptor, and check it's OK. */
729 iov[*out_num + *in_num].iov_len = vq->vring.desc[i].len;
730 iov[*out_num + *in_num].iov_base
731 = check_pointer(vq->vring.desc[i].addr,
732 vq->vring.desc[i].len);
733 /* If this is an input descriptor, increment that count. */
734 if (vq->vring.desc[i].flags & VRING_DESC_F_WRITE)
735 (*in_num)++;
736 else {
737 /* If it's an output descriptor, they're all supposed
738 * to come before any input descriptors. */
739 if (*in_num)
740 errx(1, "Descriptor has out after in");
741 (*out_num)++;
742 }
743
744 /* If we've got too many, that implies a descriptor loop. */
745 if (*out_num + *in_num > vq->vring.num)
746 errx(1, "Looped descriptor");
747 } while ((i = next_desc(vq, i)) != vq->vring.num);
748
749 return head;
750}
751
752/* Once we've used one of their buffers, we tell them about it. We'll then
753 * want to send them an interrupt, using trigger_irq(). */
754static void add_used(struct virtqueue *vq, unsigned int head, int len)
755{
756 struct vring_used_elem *used;
757
758 /* Get a pointer to the next entry in the used ring. */
759 used = &vq->vring.used->ring[vq->vring.used->idx % vq->vring.num];
760 used->id = head;
761 used->len = len;
762 /* Make sure buffer is written before we update index. */
763 wmb();
764 vq->vring.used->idx++;
765}
766
767/* This actually sends the interrupt for this virtqueue */
768static void trigger_irq(int fd, struct virtqueue *vq)
769{
770 unsigned long buf[] = { LHREQ_IRQ, vq->config.irq };
771
772 if (vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT)
773 return;
774
775 /* Send the Guest an interrupt tell them we used something up. */
776 if (write(fd, buf, sizeof(buf)) != 0)
777 err(1, "Triggering irq %i", vq->config.irq);
778}
779
780/* And here's the combo meal deal. Supersize me! */
781static void add_used_and_trigger(int fd, struct virtqueue *vq,
782 unsigned int head, int len)
783{
784 add_used(vq, head, len);
785 trigger_irq(fd, vq);
786}
787
Rusty Russelldde79782007-07-26 10:41:03 -0700788/* Here is the input terminal setting we save, and the routine to restore them
789 * on exit so the user can see what they type next. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700790static struct termios orig_term;
791static void restore_term(void)
792{
793 tcsetattr(STDIN_FILENO, TCSANOW, &orig_term);
794}
795
Rusty Russelldde79782007-07-26 10:41:03 -0700796/* We associate some data with the console for our exit hack. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700797struct console_abort
798{
Rusty Russelldde79782007-07-26 10:41:03 -0700799 /* How many times have they hit ^C? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700800 int count;
Rusty Russelldde79782007-07-26 10:41:03 -0700801 /* When did they start? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700802 struct timeval start;
803};
804
Rusty Russelldde79782007-07-26 10:41:03 -0700805/* This is the routine which handles console input (ie. stdin). */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700806static bool handle_console_input(int fd, struct device *dev)
807{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700808 int len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000809 unsigned int head, in_num, out_num;
810 struct iovec iov[dev->vq->vring.num];
Rusty Russell8ca47e02007-07-19 01:49:29 -0700811 struct console_abort *abort = dev->priv;
812
Rusty Russell17cbca22007-10-22 11:24:22 +1000813 /* First we need a console buffer from the Guests's input virtqueue. */
814 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
815 if (head == dev->vq->vring.num) {
816 /* If they're not ready for input, we warn and set up to
817 * discard. */
818 warnx("console: no dma buffer!");
819 discard_iovec(iov, &in_num);
820 } else if (out_num)
821 errx(1, "Output buffers in console in queue?");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700822
Rusty Russelldde79782007-07-26 10:41:03 -0700823 /* This is why we convert to iovecs: the readv() call uses them, and so
824 * it reads straight into the Guest's buffer. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000825 len = readv(dev->fd, iov, in_num);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700826 if (len <= 0) {
Rusty Russelldde79782007-07-26 10:41:03 -0700827 /* This implies that the console is closed, is /dev/null, or
Rusty Russell17cbca22007-10-22 11:24:22 +1000828 * something went terribly wrong. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700829 warnx("Failed to get console input, ignoring console.");
Rusty Russell17cbca22007-10-22 11:24:22 +1000830 /* Put the input terminal back and return failure (meaning,
831 * don't call us again). */
832 restore_term();
833 return false;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700834 }
835
Rusty Russell17cbca22007-10-22 11:24:22 +1000836 /* If we actually read the data into the Guest, tell them about it. */
837 if (head != dev->vq->vring.num)
838 add_used_and_trigger(fd, dev->vq, head, len);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700839
Rusty Russelldde79782007-07-26 10:41:03 -0700840 /* Three ^C within one second? Exit.
841 *
842 * This is such a hack, but works surprisingly well. Each ^C has to be
843 * in a buffer by itself, so they can't be too fast. But we check that
844 * we get three within about a second, so they can't be too slow. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700845 if (len == 1 && ((char *)iov[0].iov_base)[0] == 3) {
846 if (!abort->count++)
847 gettimeofday(&abort->start, NULL);
848 else if (abort->count == 3) {
849 struct timeval now;
850 gettimeofday(&now, NULL);
851 if (now.tv_sec <= abort->start.tv_sec+1) {
Jes Sorensen511801d2007-10-22 11:03:31 +1000852 unsigned long args[] = { LHREQ_BREAK, 0 };
Rusty Russelldde79782007-07-26 10:41:03 -0700853 /* Close the fd so Waker will know it has to
854 * exit. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700855 close(waker_fd);
Rusty Russelldde79782007-07-26 10:41:03 -0700856 /* Just in case waker is blocked in BREAK, send
857 * unbreak now. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700858 write(fd, args, sizeof(args));
859 exit(2);
860 }
861 abort->count = 0;
862 }
863 } else
Rusty Russelldde79782007-07-26 10:41:03 -0700864 /* Any other key resets the abort counter. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700865 abort->count = 0;
866
Rusty Russelldde79782007-07-26 10:41:03 -0700867 /* Everything went OK! */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700868 return true;
869}
870
Rusty Russell17cbca22007-10-22 11:24:22 +1000871/* Handling output for console is simple: we just get all the output buffers
872 * and write them to stdout. */
873static void handle_console_output(int fd, struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700874{
Rusty Russell17cbca22007-10-22 11:24:22 +1000875 unsigned int head, out, in;
876 int len;
877 struct iovec iov[vq->vring.num];
878
879 /* Keep getting output buffers from the Guest until we run out. */
880 while ((head = get_vq_desc(vq, iov, &out, &in)) != vq->vring.num) {
881 if (in)
882 errx(1, "Input buffers in output queue?");
883 len = writev(STDOUT_FILENO, iov, out);
884 add_used_and_trigger(fd, vq, head, len);
885 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700886}
887
Rusty Russell17cbca22007-10-22 11:24:22 +1000888/* Handling output for network is also simple: we get all the output buffers
889 * and write them (ignoring the first element) to this device's file descriptor
890 * (stdout). */
891static void handle_net_output(int fd, struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700892{
Rusty Russell17cbca22007-10-22 11:24:22 +1000893 unsigned int head, out, in;
894 int len;
895 struct iovec iov[vq->vring.num];
896
897 /* Keep getting output buffers from the Guest until we run out. */
898 while ((head = get_vq_desc(vq, iov, &out, &in)) != vq->vring.num) {
899 if (in)
900 errx(1, "Input buffers in output queue?");
901 /* Check header, but otherwise ignore it (we said we supported
902 * no features). */
903 (void)convert(&iov[0], struct virtio_net_hdr);
904 len = writev(vq->dev->fd, iov+1, out-1);
905 add_used_and_trigger(fd, vq, head, len);
906 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700907}
908
Rusty Russell17cbca22007-10-22 11:24:22 +1000909/* This is where we handle a packet coming in from the tun device to our
910 * Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700911static bool handle_tun_input(int fd, struct device *dev)
912{
Rusty Russell17cbca22007-10-22 11:24:22 +1000913 unsigned int head, in_num, out_num;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700914 int len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000915 struct iovec iov[dev->vq->vring.num];
916 struct virtio_net_hdr *hdr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700917
Rusty Russell17cbca22007-10-22 11:24:22 +1000918 /* First we need a network buffer from the Guests's recv virtqueue. */
919 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
920 if (head == dev->vq->vring.num) {
Rusty Russelldde79782007-07-26 10:41:03 -0700921 /* Now, it's expected that if we try to send a packet too
Rusty Russell17cbca22007-10-22 11:24:22 +1000922 * early, the Guest won't be ready yet. Wait until the device
923 * status says it's ready. */
924 /* FIXME: Actually want DRIVER_ACTIVE here. */
925 if (dev->desc->status & VIRTIO_CONFIG_S_DRIVER_OK)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700926 warn("network: no dma buffer!");
Rusty Russell17cbca22007-10-22 11:24:22 +1000927 discard_iovec(iov, &in_num);
928 } else if (out_num)
929 errx(1, "Output buffers in network recv queue?");
930
931 /* First element is the header: we set it to 0 (no features). */
932 hdr = convert(&iov[0], struct virtio_net_hdr);
933 hdr->flags = 0;
934 hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700935
Rusty Russelldde79782007-07-26 10:41:03 -0700936 /* Read the packet from the device directly into the Guest's buffer. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000937 len = readv(dev->fd, iov+1, in_num-1);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700938 if (len <= 0)
939 err(1, "reading network");
Rusty Russelldde79782007-07-26 10:41:03 -0700940
Rusty Russell17cbca22007-10-22 11:24:22 +1000941 /* If we actually read the data into the Guest, tell them about it. */
942 if (head != dev->vq->vring.num)
943 add_used_and_trigger(fd, dev->vq, head, sizeof(*hdr) + len);
944
Rusty Russell8ca47e02007-07-19 01:49:29 -0700945 verbose("tun input packet len %i [%02x %02x] (%s)\n", len,
Rusty Russell17cbca22007-10-22 11:24:22 +1000946 ((u8 *)iov[1].iov_base)[0], ((u8 *)iov[1].iov_base)[1],
947 head != dev->vq->vring.num ? "sent" : "discarded");
948
Rusty Russelldde79782007-07-26 10:41:03 -0700949 /* All good. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700950 return true;
951}
952
Rusty Russell17cbca22007-10-22 11:24:22 +1000953/* This is the generic routine we call when the Guest uses LHCALL_NOTIFY. */
954static void handle_output(int fd, unsigned long addr)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700955{
956 struct device *i;
Rusty Russell17cbca22007-10-22 11:24:22 +1000957 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700958
Rusty Russell17cbca22007-10-22 11:24:22 +1000959 /* Check each virtqueue. */
960 for (i = devices.dev; i; i = i->next) {
961 for (vq = i->vq; vq; vq = vq->next) {
962 if (vq->config.pfn == addr/getpagesize()
963 && vq->handle_output) {
964 verbose("Output to %s\n", vq->dev->name);
965 vq->handle_output(fd, vq);
966 return;
967 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700968 }
969 }
Rusty Russelldde79782007-07-26 10:41:03 -0700970
Rusty Russell17cbca22007-10-22 11:24:22 +1000971 /* Early console write is done using notify on a nul-terminated string
972 * in Guest memory. */
973 if (addr >= guest_limit)
974 errx(1, "Bad NOTIFY %#lx", addr);
975
976 write(STDOUT_FILENO, from_guest_phys(addr),
977 strnlen(from_guest_phys(addr), guest_limit - addr));
Rusty Russell8ca47e02007-07-19 01:49:29 -0700978}
979
Rusty Russelldde79782007-07-26 10:41:03 -0700980/* This is called when the waker wakes us up: check for incoming file
981 * descriptors. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000982static void handle_input(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700983{
Rusty Russelldde79782007-07-26 10:41:03 -0700984 /* select() wants a zeroed timeval to mean "don't wait". */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700985 struct timeval poll = { .tv_sec = 0, .tv_usec = 0 };
986
987 for (;;) {
988 struct device *i;
Rusty Russell17cbca22007-10-22 11:24:22 +1000989 fd_set fds = devices.infds;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700990
Rusty Russelldde79782007-07-26 10:41:03 -0700991 /* If nothing is ready, we're done. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000992 if (select(devices.max_infd+1, &fds, NULL, NULL, &poll) == 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700993 break;
994
Rusty Russelldde79782007-07-26 10:41:03 -0700995 /* Otherwise, call the device(s) which have readable
996 * file descriptors and a method of handling them. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000997 for (i = devices.dev; i; i = i->next) {
Rusty Russell8ca47e02007-07-19 01:49:29 -0700998 if (i->handle_input && FD_ISSET(i->fd, &fds)) {
Rusty Russelldde79782007-07-26 10:41:03 -0700999 /* If handle_input() returns false, it means we
1000 * should no longer service it.
1001 * handle_console_input() does this. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001002 if (!i->handle_input(fd, i)) {
Rusty Russelldde79782007-07-26 10:41:03 -07001003 /* Clear it from the set of input file
1004 * descriptors kept at the head of the
1005 * device list. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001006 FD_CLR(i->fd, &devices.infds);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001007 /* Tell waker to ignore it too... */
1008 write(waker_fd, &i->fd, sizeof(i->fd));
1009 }
1010 }
1011 }
1012 }
1013}
1014
Rusty Russelldde79782007-07-26 10:41:03 -07001015/*L:190
1016 * Device Setup
1017 *
1018 * All devices need a descriptor so the Guest knows it exists, and a "struct
1019 * device" so the Launcher can keep track of it. We have common helper
1020 * routines to allocate them.
1021 *
1022 * This routine allocates a new "struct lguest_device_desc" from descriptor
Rusty Russell17cbca22007-10-22 11:24:22 +10001023 * table just above the Guest's normal memory. It returns a pointer to that
1024 * descriptor. */
1025static struct lguest_device_desc *new_dev_desc(u16 type)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001026{
Rusty Russell17cbca22007-10-22 11:24:22 +10001027 struct lguest_device_desc *d;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001028
Rusty Russell17cbca22007-10-22 11:24:22 +10001029 /* We only have one page for all the descriptors. */
1030 if (devices.desc_used + sizeof(*d) > getpagesize())
1031 errx(1, "Too many devices");
1032
1033 /* We don't need to set config_len or status: page is 0 already. */
1034 d = (void *)devices.descpage + devices.desc_used;
1035 d->type = type;
1036 devices.desc_used += sizeof(*d);
1037
1038 return d;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001039}
1040
Rusty Russell17cbca22007-10-22 11:24:22 +10001041/* Each device descriptor is followed by some configuration information.
1042 * The first byte is a "status" byte for the Guest to report what's happening.
1043 * After that are fields: u8 type, u8 len, [... len bytes...].
1044 *
1045 * This routine adds a new field to an existing device's descriptor. It only
1046 * works for the last device, but that's OK because that's how we use it. */
1047static void add_desc_field(struct device *dev, u8 type, u8 len, const void *c)
1048{
1049 /* This is the last descriptor, right? */
1050 assert(devices.descpage + devices.desc_used
1051 == (u8 *)(dev->desc + 1) + dev->desc->config_len);
1052
1053 /* We only have one page of device descriptions. */
1054 if (devices.desc_used + 2 + len > getpagesize())
1055 errx(1, "Too many devices");
1056
1057 /* Copy in the new config header: type then length. */
1058 devices.descpage[devices.desc_used++] = type;
1059 devices.descpage[devices.desc_used++] = len;
1060 memcpy(devices.descpage + devices.desc_used, c, len);
1061 devices.desc_used += len;
1062
1063 /* Update the device descriptor length: two byte head then data. */
1064 dev->desc->config_len += 2 + len;
1065}
1066
1067/* This routine adds a virtqueue to a device. We specify how many descriptors
1068 * the virtqueue is to have. */
1069static void add_virtqueue(struct device *dev, unsigned int num_descs,
1070 void (*handle_output)(int fd, struct virtqueue *me))
1071{
1072 unsigned int pages;
1073 struct virtqueue **i, *vq = malloc(sizeof(*vq));
1074 void *p;
1075
1076 /* First we need some pages for this virtqueue. */
1077 pages = (vring_size(num_descs) + getpagesize() - 1) / getpagesize();
1078 p = get_pages(pages);
1079
1080 /* Initialize the configuration. */
1081 vq->config.num = num_descs;
1082 vq->config.irq = devices.next_irq++;
1083 vq->config.pfn = to_guest_phys(p) / getpagesize();
1084
1085 /* Initialize the vring. */
1086 vring_init(&vq->vring, num_descs, p);
1087
1088 /* Add the configuration information to this device's descriptor. */
1089 add_desc_field(dev, VIRTIO_CONFIG_F_VIRTQUEUE,
1090 sizeof(vq->config), &vq->config);
1091
1092 /* Add to tail of list, so dev->vq is first vq, dev->vq->next is
1093 * second. */
1094 for (i = &dev->vq; *i; i = &(*i)->next);
1095 *i = vq;
1096
1097 /* Link virtqueue back to device. */
1098 vq->dev = dev;
1099
1100 /* Set up handler. */
1101 vq->handle_output = handle_output;
1102 if (!handle_output)
1103 vq->vring.used->flags = VRING_USED_F_NO_NOTIFY;
1104}
1105
1106/* This routine does all the creation and setup of a new device, including
1107 * caling new_dev_desc() to allocate the descriptor and device memory. */
1108static struct device *new_device(const char *name, u16 type, int fd,
1109 bool (*handle_input)(int, struct device *))
Rusty Russell8ca47e02007-07-19 01:49:29 -07001110{
1111 struct device *dev = malloc(sizeof(*dev));
1112
Rusty Russelldde79782007-07-26 10:41:03 -07001113 /* Append to device list. Prepending to a single-linked list is
1114 * easier, but the user expects the devices to be arranged on the bus
1115 * in command-line order. The first network device on the command line
1116 * is eth0, the first block device /dev/lgba, etc. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001117 *devices.lastdev = dev;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001118 dev->next = NULL;
Rusty Russell17cbca22007-10-22 11:24:22 +10001119 devices.lastdev = &dev->next;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001120
Rusty Russelldde79782007-07-26 10:41:03 -07001121 /* Now we populate the fields one at a time. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001122 dev->fd = fd;
Rusty Russelldde79782007-07-26 10:41:03 -07001123 /* If we have an input handler for this file descriptor, then we add it
1124 * to the device_list's fdset and maxfd. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001125 if (handle_input)
Rusty Russell17cbca22007-10-22 11:24:22 +10001126 add_device_fd(dev->fd);
1127 dev->desc = new_dev_desc(type);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001128 dev->handle_input = handle_input;
Rusty Russell17cbca22007-10-22 11:24:22 +10001129 dev->name = name;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001130 return dev;
1131}
1132
Rusty Russelldde79782007-07-26 10:41:03 -07001133/* Our first setup routine is the console. It's a fairly simple device, but
1134 * UNIX tty handling makes it uglier than it could be. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001135static void setup_console(void)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001136{
1137 struct device *dev;
1138
Rusty Russelldde79782007-07-26 10:41:03 -07001139 /* If we can save the initial standard input settings... */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001140 if (tcgetattr(STDIN_FILENO, &orig_term) == 0) {
1141 struct termios term = orig_term;
Rusty Russelldde79782007-07-26 10:41:03 -07001142 /* Then we turn off echo, line buffering and ^C etc. We want a
1143 * raw input stream to the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001144 term.c_lflag &= ~(ISIG|ICANON|ECHO);
1145 tcsetattr(STDIN_FILENO, TCSANOW, &term);
Rusty Russelldde79782007-07-26 10:41:03 -07001146 /* If we exit gracefully, the original settings will be
1147 * restored so the user can see what they're typing. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001148 atexit(restore_term);
1149 }
1150
Rusty Russell17cbca22007-10-22 11:24:22 +10001151 dev = new_device("console", VIRTIO_ID_CONSOLE,
1152 STDIN_FILENO, handle_console_input);
Rusty Russelldde79782007-07-26 10:41:03 -07001153 /* We store the console state in dev->priv, and initialize it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001154 dev->priv = malloc(sizeof(struct console_abort));
1155 ((struct console_abort *)dev->priv)->count = 0;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001156
Rusty Russell17cbca22007-10-22 11:24:22 +10001157 /* The console needs two virtqueues: the input then the output. We
1158 * don't care when they refill the input queue, since we don't hold
1159 * data waiting for them. That's why the input queue's callback is
1160 * NULL. */
1161 add_virtqueue(dev, VIRTQUEUE_NUM, NULL);
1162 add_virtqueue(dev, VIRTQUEUE_NUM, handle_console_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001163
Rusty Russell17cbca22007-10-22 11:24:22 +10001164 verbose("device %u: console\n", devices.device_num++);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001165}
Rusty Russelldde79782007-07-26 10:41:03 -07001166/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001167
Rusty Russell17cbca22007-10-22 11:24:22 +10001168/*M:010 Inter-guest networking is an interesting area. Simplest is to have a
1169 * --sharenet=<name> option which opens or creates a named pipe. This can be
1170 * used to send packets to another guest in a 1:1 manner.
1171 *
1172 * More sopisticated is to use one of the tools developed for project like UML
1173 * to do networking.
1174 *
1175 * Faster is to do virtio bonding in kernel. Doing this 1:1 would be
1176 * completely generic ("here's my vring, attach to your vring") and would work
1177 * for any traffic. Of course, namespace and permissions issues need to be
1178 * dealt with. A more sophisticated "multi-channel" virtio_net.c could hide
1179 * multiple inter-guest channels behind one interface, although it would
1180 * require some manner of hotplugging new virtio channels.
1181 *
1182 * Finally, we could implement a virtio network switch in the kernel. :*/
1183
Rusty Russell8ca47e02007-07-19 01:49:29 -07001184static u32 str2ip(const char *ipaddr)
1185{
1186 unsigned int byte[4];
1187
1188 sscanf(ipaddr, "%u.%u.%u.%u", &byte[0], &byte[1], &byte[2], &byte[3]);
1189 return (byte[0] << 24) | (byte[1] << 16) | (byte[2] << 8) | byte[3];
1190}
1191
Rusty Russelldde79782007-07-26 10:41:03 -07001192/* This code is "adapted" from libbridge: it attaches the Host end of the
1193 * network device to the bridge device specified by the command line.
1194 *
1195 * This is yet another James Morris contribution (I'm an IP-level guy, so I
1196 * dislike bridging), and I just try not to break it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001197static void add_to_bridge(int fd, const char *if_name, const char *br_name)
1198{
1199 int ifidx;
1200 struct ifreq ifr;
1201
1202 if (!*br_name)
1203 errx(1, "must specify bridge name");
1204
1205 ifidx = if_nametoindex(if_name);
1206 if (!ifidx)
1207 errx(1, "interface %s does not exist!", if_name);
1208
1209 strncpy(ifr.ifr_name, br_name, IFNAMSIZ);
1210 ifr.ifr_ifindex = ifidx;
1211 if (ioctl(fd, SIOCBRADDIF, &ifr) < 0)
1212 err(1, "can't add %s to bridge %s", if_name, br_name);
1213}
1214
Rusty Russelldde79782007-07-26 10:41:03 -07001215/* This sets up the Host end of the network device with an IP address, brings
1216 * it up so packets will flow, the copies the MAC address into the hwaddr
Rusty Russell17cbca22007-10-22 11:24:22 +10001217 * pointer. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001218static void configure_device(int fd, const char *devname, u32 ipaddr,
1219 unsigned char hwaddr[6])
1220{
1221 struct ifreq ifr;
1222 struct sockaddr_in *sin = (struct sockaddr_in *)&ifr.ifr_addr;
1223
Rusty Russelldde79782007-07-26 10:41:03 -07001224 /* Don't read these incantations. Just cut & paste them like I did! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001225 memset(&ifr, 0, sizeof(ifr));
1226 strcpy(ifr.ifr_name, devname);
1227 sin->sin_family = AF_INET;
1228 sin->sin_addr.s_addr = htonl(ipaddr);
1229 if (ioctl(fd, SIOCSIFADDR, &ifr) != 0)
1230 err(1, "Setting %s interface address", devname);
1231 ifr.ifr_flags = IFF_UP;
1232 if (ioctl(fd, SIOCSIFFLAGS, &ifr) != 0)
1233 err(1, "Bringing interface %s up", devname);
1234
Rusty Russelldde79782007-07-26 10:41:03 -07001235 /* SIOC stands for Socket I/O Control. G means Get (vs S for Set
1236 * above). IF means Interface, and HWADDR is hardware address.
1237 * Simple! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001238 if (ioctl(fd, SIOCGIFHWADDR, &ifr) != 0)
1239 err(1, "getting hw address for %s", devname);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001240 memcpy(hwaddr, ifr.ifr_hwaddr.sa_data, 6);
1241}
1242
Rusty Russell17cbca22007-10-22 11:24:22 +10001243/*L:195 Our network is a Host<->Guest network. This can either use bridging or
1244 * routing, but the principle is the same: it uses the "tun" device to inject
1245 * packets into the Host as if they came in from a normal network card. We
1246 * just shunt packets between the Guest and the tun device. */
1247static void setup_tun_net(const char *arg)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001248{
1249 struct device *dev;
1250 struct ifreq ifr;
1251 int netfd, ipfd;
1252 u32 ip;
1253 const char *br_name = NULL;
Rusty Russell17cbca22007-10-22 11:24:22 +10001254 u8 hwaddr[6];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001255
Rusty Russelldde79782007-07-26 10:41:03 -07001256 /* We open the /dev/net/tun device and tell it we want a tap device. A
1257 * tap device is like a tun device, only somehow different. To tell
1258 * the truth, I completely blundered my way through this code, but it
1259 * works now! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001260 netfd = open_or_die("/dev/net/tun", O_RDWR);
1261 memset(&ifr, 0, sizeof(ifr));
1262 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1263 strcpy(ifr.ifr_name, "tap%d");
1264 if (ioctl(netfd, TUNSETIFF, &ifr) != 0)
1265 err(1, "configuring /dev/net/tun");
Rusty Russelldde79782007-07-26 10:41:03 -07001266 /* We don't need checksums calculated for packets coming in this
1267 * device: trust us! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001268 ioctl(netfd, TUNSETNOCSUM, 1);
1269
Rusty Russell17cbca22007-10-22 11:24:22 +10001270 /* First we create a new network device. */
1271 dev = new_device("net", VIRTIO_ID_NET, netfd, handle_tun_input);
Rusty Russelldde79782007-07-26 10:41:03 -07001272
Rusty Russell17cbca22007-10-22 11:24:22 +10001273 /* Network devices need a receive and a send queue. */
1274 add_virtqueue(dev, VIRTQUEUE_NUM, NULL);
1275 add_virtqueue(dev, VIRTQUEUE_NUM, handle_net_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001276
Rusty Russelldde79782007-07-26 10:41:03 -07001277 /* We need a socket to perform the magic network ioctls to bring up the
1278 * tap interface, connect to the bridge etc. Any socket will do! */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001279 ipfd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
1280 if (ipfd < 0)
1281 err(1, "opening IP socket");
1282
Rusty Russelldde79782007-07-26 10:41:03 -07001283 /* If the command line was --tunnet=bridge:<name> do bridging. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001284 if (!strncmp(BRIDGE_PFX, arg, strlen(BRIDGE_PFX))) {
1285 ip = INADDR_ANY;
1286 br_name = arg + strlen(BRIDGE_PFX);
1287 add_to_bridge(ipfd, ifr.ifr_name, br_name);
Rusty Russelldde79782007-07-26 10:41:03 -07001288 } else /* It is an IP address to set up the device with */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001289 ip = str2ip(arg);
1290
Rusty Russell17cbca22007-10-22 11:24:22 +10001291 /* Set up the tun device, and get the mac address for the interface. */
1292 configure_device(ipfd, ifr.ifr_name, ip, hwaddr);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001293
Rusty Russell17cbca22007-10-22 11:24:22 +10001294 /* Tell Guest what MAC address to use. */
1295 add_desc_field(dev, VIRTIO_CONFIG_NET_MAC_F, sizeof(hwaddr), hwaddr);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001296
Rusty Russell17cbca22007-10-22 11:24:22 +10001297 /* We don't seed the socket any more; setup is done. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001298 close(ipfd);
1299
Rusty Russell17cbca22007-10-22 11:24:22 +10001300 verbose("device %u: tun net %u.%u.%u.%u\n",
1301 devices.device_num++,
1302 (u8)(ip>>24),(u8)(ip>>16),(u8)(ip>>8),(u8)ip);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001303 if (br_name)
1304 verbose("attached to bridge: %s\n", br_name);
1305}
Rusty Russell17cbca22007-10-22 11:24:22 +10001306
1307
1308/*
1309 * Block device.
1310 *
1311 * Serving a block device is really easy: the Guest asks for a block number and
1312 * we read or write that position in the file.
1313 *
1314 * Unfortunately, this is amazingly slow: the Guest waits until the read is
1315 * finished before running anything else, even if it could be doing useful
1316 * work. We could use async I/O, except it's reputed to suck so hard that
1317 * characters actually go missing from your code when you try to use it.
1318 *
1319 * So we farm the I/O out to thread, and communicate with it via a pipe. */
1320
1321/* This hangs off device->priv, with the data. */
1322struct vblk_info
1323{
1324 /* The size of the file. */
1325 off64_t len;
1326
1327 /* The file descriptor for the file. */
1328 int fd;
1329
1330 /* IO thread listens on this file descriptor [0]. */
1331 int workpipe[2];
1332
1333 /* IO thread writes to this file descriptor to mark it done, then
1334 * Launcher triggers interrupt to Guest. */
1335 int done_fd;
1336};
1337
1338/* This is the core of the I/O thread. It returns true if it did something. */
1339static bool service_io(struct device *dev)
1340{
1341 struct vblk_info *vblk = dev->priv;
1342 unsigned int head, out_num, in_num, wlen;
1343 int ret;
1344 struct virtio_blk_inhdr *in;
1345 struct virtio_blk_outhdr *out;
1346 struct iovec iov[dev->vq->vring.num];
1347 off64_t off;
1348
1349 head = get_vq_desc(dev->vq, iov, &out_num, &in_num);
1350 if (head == dev->vq->vring.num)
1351 return false;
1352
1353 if (out_num == 0 || in_num == 0)
1354 errx(1, "Bad virtblk cmd %u out=%u in=%u",
1355 head, out_num, in_num);
1356
1357 out = convert(&iov[0], struct virtio_blk_outhdr);
1358 in = convert(&iov[out_num+in_num-1], struct virtio_blk_inhdr);
1359 off = out->sector * 512;
1360
1361 /* This is how we implement barriers. Pretty poor, no? */
1362 if (out->type & VIRTIO_BLK_T_BARRIER)
1363 fdatasync(vblk->fd);
1364
1365 if (out->type & VIRTIO_BLK_T_SCSI_CMD) {
1366 fprintf(stderr, "Scsi commands unsupported\n");
1367 in->status = VIRTIO_BLK_S_UNSUPP;
1368 wlen = sizeof(in);
1369 } else if (out->type & VIRTIO_BLK_T_OUT) {
1370 /* Write */
1371
1372 /* Move to the right location in the block file. This can fail
1373 * if they try to write past end. */
1374 if (lseek64(vblk->fd, off, SEEK_SET) != off)
1375 err(1, "Bad seek to sector %llu", out->sector);
1376
1377 ret = writev(vblk->fd, iov+1, out_num-1);
1378 verbose("WRITE to sector %llu: %i\n", out->sector, ret);
1379
1380 /* Grr... Now we know how long the descriptor they sent was, we
1381 * make sure they didn't try to write over the end of the block
1382 * file (possibly extending it). */
1383 if (ret > 0 && off + ret > vblk->len) {
1384 /* Trim it back to the correct length */
1385 ftruncate64(vblk->fd, vblk->len);
1386 /* Die, bad Guest, die. */
1387 errx(1, "Write past end %llu+%u", off, ret);
1388 }
1389 wlen = sizeof(in);
1390 in->status = (ret >= 0 ? VIRTIO_BLK_S_OK : VIRTIO_BLK_S_IOERR);
1391 } else {
1392 /* Read */
1393
1394 /* Move to the right location in the block file. This can fail
1395 * if they try to read past end. */
1396 if (lseek64(vblk->fd, off, SEEK_SET) != off)
1397 err(1, "Bad seek to sector %llu", out->sector);
1398
1399 ret = readv(vblk->fd, iov+1, in_num-1);
1400 verbose("READ from sector %llu: %i\n", out->sector, ret);
1401 if (ret >= 0) {
1402 wlen = sizeof(in) + ret;
1403 in->status = VIRTIO_BLK_S_OK;
1404 } else {
1405 wlen = sizeof(in);
1406 in->status = VIRTIO_BLK_S_IOERR;
1407 }
1408 }
1409
1410 /* We can't trigger an IRQ, because we're not the Launcher. It does
1411 * that when we tell it we're done. */
1412 add_used(dev->vq, head, wlen);
1413 return true;
1414}
1415
1416/* This is the thread which actually services the I/O. */
1417static int io_thread(void *_dev)
1418{
1419 struct device *dev = _dev;
1420 struct vblk_info *vblk = dev->priv;
1421 char c;
1422
1423 /* Close other side of workpipe so we get 0 read when main dies. */
1424 close(vblk->workpipe[1]);
1425 /* Close the other side of the done_fd pipe. */
1426 close(dev->fd);
1427
1428 /* When this read fails, it means Launcher died, so we follow. */
1429 while (read(vblk->workpipe[0], &c, 1) == 1) {
1430 /* We acknowledge each request immediately, to reduce latency,
1431 * rather than waiting until we've done them all. I haven't
1432 * measured to see if it makes any difference. */
1433 while (service_io(dev))
1434 write(vblk->done_fd, &c, 1);
1435 }
1436 return 0;
1437}
1438
1439/* When the thread says some I/O is done, we interrupt the Guest. */
1440static bool handle_io_finish(int fd, struct device *dev)
1441{
1442 char c;
1443
1444 /* If child died, presumably it printed message. */
1445 if (read(dev->fd, &c, 1) != 1)
1446 exit(1);
1447
1448 /* It did some work, so trigger the irq. */
1449 trigger_irq(fd, dev->vq);
1450 return true;
1451}
1452
1453/* When the Guest submits some I/O, we wake the I/O thread. */
1454static void handle_virtblk_output(int fd, struct virtqueue *vq)
1455{
1456 struct vblk_info *vblk = vq->dev->priv;
1457 char c = 0;
1458
1459 /* Wake up I/O thread and tell it to go to work! */
1460 if (write(vblk->workpipe[1], &c, 1) != 1)
1461 /* Presumably it indicated why it died. */
1462 exit(1);
1463}
1464
1465/* This creates a virtual block device. */
1466static void setup_block_file(const char *filename)
1467{
1468 int p[2];
1469 struct device *dev;
1470 struct vblk_info *vblk;
1471 void *stack;
1472 u64 cap;
1473 unsigned int val;
1474
1475 /* This is the pipe the I/O thread will use to tell us I/O is done. */
1476 pipe(p);
1477
1478 /* The device responds to return from I/O thread. */
1479 dev = new_device("block", VIRTIO_ID_BLOCK, p[0], handle_io_finish);
1480
1481 /* The device has a virtqueue. */
1482 add_virtqueue(dev, VIRTQUEUE_NUM, handle_virtblk_output);
1483
1484 /* Allocate the room for our own bookkeeping */
1485 vblk = dev->priv = malloc(sizeof(*vblk));
1486
1487 /* First we open the file and store the length. */
1488 vblk->fd = open_or_die(filename, O_RDWR|O_LARGEFILE);
1489 vblk->len = lseek64(vblk->fd, 0, SEEK_END);
1490
1491 /* Tell Guest how many sectors this device has. */
1492 cap = cpu_to_le64(vblk->len / 512);
1493 add_desc_field(dev, VIRTIO_CONFIG_BLK_F_CAPACITY, sizeof(cap), &cap);
1494
1495 /* Tell Guest not to put in too many descriptors at once: two are used
1496 * for the in and out elements. */
1497 val = cpu_to_le32(VIRTQUEUE_NUM - 2);
1498 add_desc_field(dev, VIRTIO_CONFIG_BLK_F_SEG_MAX, sizeof(val), &val);
1499
1500 /* The I/O thread writes to this end of the pipe when done. */
1501 vblk->done_fd = p[1];
1502
1503 /* This is how we tell the I/O thread about more work. */
1504 pipe(vblk->workpipe);
1505
1506 /* Create stack for thread and run it */
1507 stack = malloc(32768);
1508 if (clone(io_thread, stack + 32768, CLONE_VM, dev) == -1)
1509 err(1, "Creating clone");
1510
1511 /* We don't need to keep the I/O thread's end of the pipes open. */
1512 close(vblk->done_fd);
1513 close(vblk->workpipe[0]);
1514
1515 verbose("device %u: virtblock %llu sectors\n",
1516 devices.device_num, cap);
1517}
Rusty Russelldde79782007-07-26 10:41:03 -07001518/* That's the end of device setup. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001519
Rusty Russelldde79782007-07-26 10:41:03 -07001520/*L:220 Finally we reach the core of the Launcher, which runs the Guest, serves
1521 * its input and output, and finally, lays it to rest. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001522static void __attribute__((noreturn)) run_guest(int lguest_fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001523{
1524 for (;;) {
Jes Sorensen511801d2007-10-22 11:03:31 +10001525 unsigned long args[] = { LHREQ_BREAK, 0 };
Rusty Russell17cbca22007-10-22 11:24:22 +10001526 unsigned long notify_addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001527 int readval;
1528
1529 /* We read from the /dev/lguest device to run the Guest. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001530 readval = read(lguest_fd, &notify_addr, sizeof(notify_addr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001531
Rusty Russell17cbca22007-10-22 11:24:22 +10001532 /* One unsigned long means the Guest did HCALL_NOTIFY */
1533 if (readval == sizeof(notify_addr)) {
1534 verbose("Notify on address %#lx\n", notify_addr);
1535 handle_output(lguest_fd, notify_addr);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001536 continue;
Rusty Russelldde79782007-07-26 10:41:03 -07001537 /* ENOENT means the Guest died. Reading tells us why. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001538 } else if (errno == ENOENT) {
1539 char reason[1024] = { 0 };
1540 read(lguest_fd, reason, sizeof(reason)-1);
1541 errx(1, "%s", reason);
Rusty Russelldde79782007-07-26 10:41:03 -07001542 /* EAGAIN means the waker wanted us to look at some input.
1543 * Anything else means a bug or incompatible change. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001544 } else if (errno != EAGAIN)
1545 err(1, "Running guest failed");
Rusty Russelldde79782007-07-26 10:41:03 -07001546
1547 /* Service input, then unset the BREAK which releases
1548 * the Waker. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001549 handle_input(lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001550 if (write(lguest_fd, args, sizeof(args)) < 0)
1551 err(1, "Resetting break");
1552 }
1553}
Rusty Russelldde79782007-07-26 10:41:03 -07001554/*
1555 * This is the end of the Launcher.
1556 *
1557 * But wait! We've seen I/O from the Launcher, and we've seen I/O from the
1558 * Drivers. If we were to see the Host kernel I/O code, our understanding
1559 * would be complete... :*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001560
1561static struct option opts[] = {
1562 { "verbose", 0, NULL, 'v' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07001563 { "tunnet", 1, NULL, 't' },
1564 { "block", 1, NULL, 'b' },
1565 { "initrd", 1, NULL, 'i' },
1566 { NULL },
1567};
1568static void usage(void)
1569{
1570 errx(1, "Usage: lguest [--verbose] "
Rusty Russell17cbca22007-10-22 11:24:22 +10001571 "[--tunnet=(<ipaddr>|bridge:<bridgename>)\n"
Rusty Russell8ca47e02007-07-19 01:49:29 -07001572 "|--block=<filename>|--initrd=<filename>]...\n"
1573 "<mem-in-mb> vmlinux [args...]");
1574}
1575
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001576/*L:105 The main routine is where the real work begins: */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001577int main(int argc, char *argv[])
1578{
Rusty Russell47436aa2007-10-22 11:03:36 +10001579 /* Memory, top-level pagetable, code startpoint and size of the
1580 * (optional) initrd. */
1581 unsigned long mem = 0, pgdir, start, initrd_size = 0;
Rusty Russelldde79782007-07-26 10:41:03 -07001582 /* A temporary and the /dev/lguest file descriptor. */
Rusty Russell6570c45992007-07-23 18:43:56 -07001583 int i, c, lguest_fd;
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001584 /* The boot information for the Guest. */
1585 void *boot;
Rusty Russelldde79782007-07-26 10:41:03 -07001586 /* If they specify an initrd file to load. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001587 const char *initrd_name = NULL;
1588
Rusty Russelldde79782007-07-26 10:41:03 -07001589 /* First we initialize the device list. Since console and network
1590 * device receive input from a file descriptor, we keep an fdset
1591 * (infds) and the maximum fd number (max_infd) with the head of the
1592 * list. We also keep a pointer to the last device, for easy appending
Rusty Russell17cbca22007-10-22 11:24:22 +10001593 * to the list. Finally, we keep the next interrupt number to hand out
1594 * (1: remember that 0 is used by the timer). */
1595 FD_ZERO(&devices.infds);
1596 devices.max_infd = -1;
1597 devices.lastdev = &devices.dev;
1598 devices.next_irq = 1;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001599
Rusty Russelldde79782007-07-26 10:41:03 -07001600 /* We need to know how much memory so we can set up the device
1601 * descriptor and memory pages for the devices as we parse the command
1602 * line. So we quickly look through the arguments to find the amount
1603 * of memory now. */
Rusty Russell6570c45992007-07-23 18:43:56 -07001604 for (i = 1; i < argc; i++) {
1605 if (argv[i][0] != '-') {
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001606 mem = atoi(argv[i]) * 1024 * 1024;
1607 /* We start by mapping anonymous pages over all of
1608 * guest-physical memory range. This fills it with 0,
1609 * and ensures that the Guest won't be killed when it
1610 * tries to access it. */
1611 guest_base = map_zeroed_pages(mem / getpagesize()
1612 + DEVICE_PAGES);
1613 guest_limit = mem;
1614 guest_max = mem + DEVICE_PAGES*getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10001615 devices.descpage = get_pages(1);
Rusty Russell6570c45992007-07-23 18:43:56 -07001616 break;
1617 }
1618 }
Rusty Russelldde79782007-07-26 10:41:03 -07001619
1620 /* The options are fairly straight-forward */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001621 while ((c = getopt_long(argc, argv, "v", opts, NULL)) != EOF) {
1622 switch (c) {
1623 case 'v':
1624 verbose = true;
1625 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001626 case 't':
Rusty Russell17cbca22007-10-22 11:24:22 +10001627 setup_tun_net(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001628 break;
1629 case 'b':
Rusty Russell17cbca22007-10-22 11:24:22 +10001630 setup_block_file(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001631 break;
1632 case 'i':
1633 initrd_name = optarg;
1634 break;
1635 default:
1636 warnx("Unknown argument %s", argv[optind]);
1637 usage();
1638 }
1639 }
Rusty Russelldde79782007-07-26 10:41:03 -07001640 /* After the other arguments we expect memory and kernel image name,
1641 * followed by command line arguments for the kernel. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001642 if (optind + 2 > argc)
1643 usage();
1644
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001645 verbose("Guest base is at %p\n", guest_base);
1646
Rusty Russelldde79782007-07-26 10:41:03 -07001647 /* We always have a console device */
Rusty Russell17cbca22007-10-22 11:24:22 +10001648 setup_console();
Rusty Russell8ca47e02007-07-19 01:49:29 -07001649
Rusty Russell8ca47e02007-07-19 01:49:29 -07001650 /* Now we load the kernel */
Rusty Russell47436aa2007-10-22 11:03:36 +10001651 start = load_kernel(open_or_die(argv[optind+1], O_RDONLY));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001652
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001653 /* Boot information is stashed at physical address 0 */
1654 boot = from_guest_phys(0);
1655
Rusty Russelldde79782007-07-26 10:41:03 -07001656 /* Map the initrd image if requested (at top of physical memory) */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001657 if (initrd_name) {
1658 initrd_size = load_initrd(initrd_name, mem);
Rusty Russelldde79782007-07-26 10:41:03 -07001659 /* These are the location in the Linux boot header where the
1660 * start and size of the initrd are expected to be found. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001661 *(unsigned long *)(boot+0x218) = mem - initrd_size;
1662 *(unsigned long *)(boot+0x21c) = initrd_size;
Rusty Russelldde79782007-07-26 10:41:03 -07001663 /* The bootloader type 0xFF means "unknown"; that's OK. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001664 *(unsigned char *)(boot+0x210) = 0xFF;
1665 }
1666
Rusty Russelldde79782007-07-26 10:41:03 -07001667 /* Set up the initial linear pagetables, starting below the initrd. */
Rusty Russell47436aa2007-10-22 11:03:36 +10001668 pgdir = setup_pagetables(mem, initrd_size);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001669
Rusty Russelldde79782007-07-26 10:41:03 -07001670 /* The Linux boot header contains an "E820" memory map: ours is a
1671 * simple, single region. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001672 *(char*)(boot+E820NR) = 1;
1673 *((struct e820entry *)(boot+E820MAP))
1674 = ((struct e820entry) { 0, mem, E820_RAM });
Rusty Russelldde79782007-07-26 10:41:03 -07001675 /* The boot header contains a command line pointer: we put the command
1676 * line after the boot header (at address 4096) */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10001677 *(u32 *)(boot + 0x228) = 4096;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001678 concat(boot + 4096, argv+optind+2);
Rusty Russelldde79782007-07-26 10:41:03 -07001679
1680 /* The guest type value of "1" tells the Guest it's under lguest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001681 *(int *)(boot + 0x23c) = 1;
1682
Rusty Russelldde79782007-07-26 10:41:03 -07001683 /* We tell the kernel to initialize the Guest: this returns the open
1684 * /dev/lguest file descriptor. */
Rusty Russell47436aa2007-10-22 11:03:36 +10001685 lguest_fd = tell_kernel(pgdir, start);
Rusty Russelldde79782007-07-26 10:41:03 -07001686
1687 /* We fork off a child process, which wakes the Launcher whenever one
1688 * of the input file descriptors needs attention. Otherwise we would
1689 * run the Guest until it tries to output something. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001690 waker_fd = setup_waker(lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001691
Rusty Russelldde79782007-07-26 10:41:03 -07001692 /* Finally, run the Guest. This doesn't return. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001693 run_guest(lguest_fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001694}
Rusty Russellf56a3842007-07-26 10:41:05 -07001695/*:*/
1696
1697/*M:999
1698 * Mastery is done: you now know everything I do.
1699 *
1700 * But surely you have seen code, features and bugs in your wanderings which
1701 * you now yearn to attack? That is the real game, and I look forward to you
1702 * patching and forking lguest into the Your-Name-Here-visor.
1703 *
1704 * Farewell, and good coding!
1705 * Rusty Russell.
1706 */