blob: 485fe13db12e5808f9298577c0811f55f8488efa [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>
Rusty Russellc565650b2015-02-11 15:15:10 +103044#include <sys/user.h>
Philip Sanderson8aeb36e2011-01-20 21:37:28 -060045
Rusty Russell927cfb92013-07-15 10:50:13 +093046#ifndef VIRTIO_F_ANY_LAYOUT
47#define VIRTIO_F_ANY_LAYOUT 27
48#endif
49
Rusty Russell2e04ef72009-07-30 16:03:45 -060050/*L:110
Rusty Russell9f542882011-07-22 14:39:50 +093051 * We can ignore the 43 include files we need for this program, but I do want
Rusty Russell2e04ef72009-07-30 16:03:45 -060052 * to draw attention to the use of kernel-style types.
Rusty Russelldb24e8c2007-10-25 14:09:25 +100053 *
54 * As Linus said, "C is a Spartan language, and so should your naming be." I
55 * like these abbreviations, so we define them here. Note that u64 is always
56 * unsigned long long, which works on all Linux systems: this means that we can
Rusty Russell2e04ef72009-07-30 16:03:45 -060057 * use %llu in printf for any u64.
58 */
Rusty Russelldb24e8c2007-10-25 14:09:25 +100059typedef unsigned long long u64;
60typedef uint32_t u32;
61typedef uint16_t u16;
62typedef uint8_t u8;
Rusty Russelldde79782007-07-26 10:41:03 -070063/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -070064
Rusty Russelle6dc0412013-07-04 11:22:58 +093065#include <linux/virtio_config.h>
66#include <linux/virtio_net.h>
67#include <linux/virtio_blk.h>
68#include <linux/virtio_console.h>
69#include <linux/virtio_rng.h>
70#include <linux/virtio_ring.h>
71#include <asm/bootparam.h>
72#include "../../include/linux/lguest_launcher.h"
73
Rusty Russell8ca47e02007-07-19 01:49:29 -070074#define BRIDGE_PFX "bridge:"
75#ifndef SIOCBRADDIF
76#define SIOCBRADDIF 0x89a2 /* add interface to bridge */
77#endif
Rusty Russell3c6b5bf2007-10-22 11:03:26 +100078/* We can have up to 256 pages for devices. */
79#define DEVICE_PAGES 256
Rusty Russell0f0c4fa2008-07-29 09:58:37 -050080/* This will occupy 3 pages: it must be a power of 2. */
81#define VIRTQUEUE_NUM 256
Rusty Russell8ca47e02007-07-19 01:49:29 -070082
Rusty Russell2e04ef72009-07-30 16:03:45 -060083/*L:120
84 * verbose is both a global flag and a macro. The C preprocessor allows
85 * this, and although I wouldn't recommend it, it works quite nicely here.
86 */
Rusty Russell8ca47e02007-07-19 01:49:29 -070087static bool verbose;
88#define verbose(args...) \
89 do { if (verbose) printf(args); } while(0)
Rusty Russelldde79782007-07-26 10:41:03 -070090/*:*/
91
Rusty Russell3c6b5bf2007-10-22 11:03:26 +100092/* The pointer to the start of guest memory. */
93static void *guest_base;
94/* The maximum guest physical address allowed, and maximum possible. */
95static unsigned long guest_limit, guest_max;
Rusty Russell56739c802009-06-12 22:26:59 -060096/* The /dev/lguest file descriptor. */
97static int lguest_fd;
Rusty Russell8ca47e02007-07-19 01:49:29 -070098
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -020099/* a per-cpu variable indicating whose vcpu is currently running */
100static unsigned int __thread cpu_id;
101
Rusty Russelldde79782007-07-26 10:41:03 -0700102/* This is our list of devices. */
Rusty Russell1842f232009-07-30 16:03:46 -0600103struct device_list {
Rusty Russell17cbca22007-10-22 11:24:22 +1000104 /* Counter to assign interrupt numbers. */
105 unsigned int next_irq;
106
107 /* Counter to print out convenient device numbers. */
108 unsigned int device_num;
109
Rusty Russelldde79782007-07-26 10:41:03 -0700110 /* The descriptor page for the devices. */
Rusty Russell17cbca22007-10-22 11:24:22 +1000111 u8 *descpage;
112
Rusty Russelldde79782007-07-26 10:41:03 -0700113 /* A single linked list of devices. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700114 struct device *dev;
Rusty Russell2e04ef72009-07-30 16:03:45 -0600115 /* And a pointer to the last device for easy append. */
Rusty Russella586d4f2008-02-04 23:49:56 -0500116 struct device *lastdev;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700117};
118
Rusty Russell17cbca22007-10-22 11:24:22 +1000119/* The list of Guest devices, based on command line arguments. */
120static struct device_list devices;
121
Rusty Russelldde79782007-07-26 10:41:03 -0700122/* The device structure describes a single device. */
Rusty Russell1842f232009-07-30 16:03:46 -0600123struct device {
Rusty Russelldde79782007-07-26 10:41:03 -0700124 /* The linked-list pointer. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700125 struct device *next;
Rusty Russell17cbca22007-10-22 11:24:22 +1000126
Rusty Russell713b15b2009-06-12 22:26:58 -0600127 /* The device's descriptor, as mapped into the Guest. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700128 struct lguest_device_desc *desc;
Rusty Russell17cbca22007-10-22 11:24:22 +1000129
Rusty Russell713b15b2009-06-12 22:26:58 -0600130 /* We can't trust desc values once Guest has booted: we use these. */
131 unsigned int feature_len;
132 unsigned int num_vq;
133
Rusty Russell17cbca22007-10-22 11:24:22 +1000134 /* The name of this device, for --verbose. */
135 const char *name;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700136
Rusty Russell17cbca22007-10-22 11:24:22 +1000137 /* Any queues attached to this device */
138 struct virtqueue *vq;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700139
Rusty Russell659a0e62009-06-12 22:27:10 -0600140 /* Is it operational */
141 bool running;
Rusty Russella007a752008-05-02 21:50:53 -0500142
Rusty Russell8ca47e02007-07-19 01:49:29 -0700143 /* Device-specific data. */
144 void *priv;
145};
146
Rusty Russell17cbca22007-10-22 11:24:22 +1000147/* The virtqueue structure describes a queue attached to a device. */
Rusty Russell1842f232009-07-30 16:03:46 -0600148struct virtqueue {
Rusty Russell17cbca22007-10-22 11:24:22 +1000149 struct virtqueue *next;
150
151 /* Which device owns me. */
152 struct device *dev;
153
154 /* The configuration for this queue. */
155 struct lguest_vqconfig config;
156
157 /* The actual ring of buffers. */
158 struct vring vring;
159
160 /* Last available index we saw. */
161 u16 last_avail_idx;
162
Rusty Russell95c517c2009-06-12 22:27:11 -0600163 /* How many are used since we sent last irq? */
164 unsigned int pending_used;
165
Rusty Russell659a0e62009-06-12 22:27:10 -0600166 /* Eventfd where Guest notifications arrive. */
167 int eventfd;
Rusty Russell20887612008-05-30 15:09:46 -0500168
Rusty Russell659a0e62009-06-12 22:27:10 -0600169 /* Function for the thread which is servicing this virtqueue. */
170 void (*service)(struct virtqueue *vq);
171 pid_t thread;
Rusty Russell17cbca22007-10-22 11:24:22 +1000172};
173
Balaji Raoec04b132007-12-28 14:26:24 +0530174/* Remember the arguments to the program so we can "reboot" */
175static char **main_args;
176
Rusty Russell659a0e62009-06-12 22:27:10 -0600177/* The original tty settings to restore on exit. */
178static struct termios orig_term;
179
Rusty Russell2e04ef72009-07-30 16:03:45 -0600180/*
181 * We have to be careful with barriers: our devices are all run in separate
Rusty Russellf7027c62009-06-12 22:27:00 -0600182 * threads and so we need to make sure that changes visible to the Guest happen
Rusty Russell2e04ef72009-07-30 16:03:45 -0600183 * in precise order.
184 */
Rusty Russellf7027c62009-06-12 22:27:00 -0600185#define wmb() __asm__ __volatile__("" : : : "memory")
Rusty Russell0d69a652013-07-02 15:35:14 +0930186#define rmb() __asm__ __volatile__("lock; addl $0,0(%%esp)" : : : "memory")
187#define mb() __asm__ __volatile__("lock; addl $0,0(%%esp)" : : : "memory")
Rusty Russell17cbca22007-10-22 11:24:22 +1000188
Rusty Russellb5111792008-07-29 09:58:34 -0500189/* Wrapper for the last available index. Makes it easier to change. */
190#define lg_last_avail(vq) ((vq)->last_avail_idx)
191
Rusty Russell2e04ef72009-07-30 16:03:45 -0600192/*
193 * The virtio configuration space is defined to be little-endian. x86 is
194 * little-endian too, but it's nice to be explicit so we have these helpers.
195 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000196#define cpu_to_le16(v16) (v16)
197#define cpu_to_le32(v32) (v32)
198#define cpu_to_le64(v64) (v64)
199#define le16_to_cpu(v16) (v16)
200#define le32_to_cpu(v32) (v32)
Rusty Russella586d4f2008-02-04 23:49:56 -0500201#define le64_to_cpu(v64) (v64)
Rusty Russell17cbca22007-10-22 11:24:22 +1000202
Rusty Russell28fd6d72008-07-29 09:58:33 -0500203/* Is this iovec empty? */
204static bool iov_empty(const struct iovec iov[], unsigned int num_iov)
205{
206 unsigned int i;
207
208 for (i = 0; i < num_iov; i++)
209 if (iov[i].iov_len)
210 return false;
211 return true;
212}
213
214/* Take len bytes from the front of this iovec. */
Rusty Russellc0316a92012-10-16 23:56:13 +1030215static void iov_consume(struct iovec iov[], unsigned num_iov,
216 void *dest, unsigned len)
Rusty Russell28fd6d72008-07-29 09:58:33 -0500217{
218 unsigned int i;
219
220 for (i = 0; i < num_iov; i++) {
221 unsigned int used;
222
223 used = iov[i].iov_len < len ? iov[i].iov_len : len;
Rusty Russellc0316a92012-10-16 23:56:13 +1030224 if (dest) {
225 memcpy(dest, iov[i].iov_base, used);
226 dest += used;
227 }
Rusty Russell28fd6d72008-07-29 09:58:33 -0500228 iov[i].iov_base += used;
229 iov[i].iov_len -= used;
230 len -= used;
231 }
Rusty Russellc0316a92012-10-16 23:56:13 +1030232 if (len != 0)
233 errx(1, "iovec too short!");
Rusty Russell28fd6d72008-07-29 09:58:33 -0500234}
235
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500236/* The device virtqueue descriptors are followed by feature bitmasks. */
237static u8 *get_feature_bits(struct device *dev)
238{
239 return (u8 *)(dev->desc + 1)
Rusty Russell713b15b2009-06-12 22:26:58 -0600240 + dev->num_vq * sizeof(struct lguest_vqconfig);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500241}
242
Rusty Russell2e04ef72009-07-30 16:03:45 -0600243/*L:100
244 * The Launcher code itself takes us out into userspace, that scary place where
245 * pointers run wild and free! Unfortunately, like most userspace programs,
246 * it's quite boring (which is why everyone likes to hack on the kernel!).
247 * Perhaps if you make up an Lguest Drinking Game at this point, it will get
248 * you through this section. Or, maybe not.
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000249 *
250 * The Launcher sets up a big chunk of memory to be the Guest's "physical"
251 * memory and stores it in "guest_base". In other words, Guest physical ==
252 * Launcher virtual with an offset.
253 *
254 * This can be tough to get your head around, but usually it just means that we
Francis Galieguea33f3222010-04-23 00:08:02 +0200255 * use these trivial conversion functions when the Guest gives us its
Rusty Russell2e04ef72009-07-30 16:03:45 -0600256 * "physical" addresses:
257 */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000258static void *from_guest_phys(unsigned long addr)
259{
260 return guest_base + addr;
261}
262
263static unsigned long to_guest_phys(const void *addr)
264{
265 return (addr - guest_base);
266}
267
Rusty Russelldde79782007-07-26 10:41:03 -0700268/*L:130
269 * Loading the Kernel.
270 *
271 * We start with couple of simple helper routines. open_or_die() avoids
Rusty Russell2e04ef72009-07-30 16:03:45 -0600272 * error-checking code cluttering the callers:
273 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700274static int open_or_die(const char *name, int flags)
275{
276 int fd = open(name, flags);
277 if (fd < 0)
278 err(1, "Failed to open %s", name);
279 return fd;
280}
281
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000282/* map_zeroed_pages() takes a number of pages. */
283static void *map_zeroed_pages(unsigned int num)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700284{
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000285 int fd = open_or_die("/dev/zero", O_RDONLY);
286 void *addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700287
Rusty Russell2e04ef72009-07-30 16:03:45 -0600288 /*
289 * We use a private mapping (ie. if we write to the page, it will be
Philip Sanderson5230ff02011-01-20 21:37:28 -0600290 * copied). We allocate an extra two pages PROT_NONE to act as guard
291 * pages against read/write attempts that exceed allocated space.
Rusty Russell2e04ef72009-07-30 16:03:45 -0600292 */
Philip Sanderson5230ff02011-01-20 21:37:28 -0600293 addr = mmap(NULL, getpagesize() * (num+2),
294 PROT_NONE, MAP_PRIVATE, fd, 0);
295
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000296 if (addr == MAP_FAILED)
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200297 err(1, "Mmapping %u pages of /dev/zero", num);
Rusty Russella91d74a2009-07-30 16:03:45 -0600298
Philip Sanderson5230ff02011-01-20 21:37:28 -0600299 if (mprotect(addr + getpagesize(), getpagesize() * num,
300 PROT_READ|PROT_WRITE) == -1)
301 err(1, "mprotect rw %u pages failed", num);
302
Rusty Russella91d74a2009-07-30 16:03:45 -0600303 /*
304 * One neat mmap feature is that you can close the fd, and it
305 * stays mapped.
306 */
Mark McLoughlin34bdaab2008-06-13 14:04:58 +0100307 close(fd);
Rusty Russelldde79782007-07-26 10:41:03 -0700308
Philip Sanderson5230ff02011-01-20 21:37:28 -0600309 /* Return address after PROT_NONE page */
310 return addr + getpagesize();
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000311}
312
313/* Get some more pages for a device. */
314static void *get_pages(unsigned int num)
315{
316 void *addr = from_guest_phys(guest_limit);
317
318 guest_limit += num * getpagesize();
319 if (guest_limit > guest_max)
320 errx(1, "Not enough memory for devices");
321 return addr;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700322}
323
Rusty Russell2e04ef72009-07-30 16:03:45 -0600324/*
325 * This routine is used to load the kernel or initrd. It tries mmap, but if
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700326 * that fails (Plan 9's kernel file isn't nicely aligned on page boundaries),
Rusty Russell2e04ef72009-07-30 16:03:45 -0600327 * it falls back to reading the memory in.
328 */
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700329static void map_at(int fd, void *addr, unsigned long offset, unsigned long len)
330{
331 ssize_t r;
332
Rusty Russell2e04ef72009-07-30 16:03:45 -0600333 /*
334 * We map writable even though for some segments are marked read-only.
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700335 * The kernel really wants to be writable: it patches its own
336 * instructions.
337 *
338 * MAP_PRIVATE means that the page won't be copied until a write is
339 * done to it. This allows us to share untouched memory between
Rusty Russell2e04ef72009-07-30 16:03:45 -0600340 * Guests.
341 */
Philip Sanderson5230ff02011-01-20 21:37:28 -0600342 if (mmap(addr, len, PROT_READ|PROT_WRITE,
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700343 MAP_FIXED|MAP_PRIVATE, fd, offset) != MAP_FAILED)
344 return;
345
346 /* pread does a seek and a read in one shot: saves a few lines. */
347 r = pread(fd, addr, len, offset);
348 if (r != len)
349 err(1, "Reading offset %lu len %lu gave %zi", offset, len, r);
350}
351
Rusty Russell2e04ef72009-07-30 16:03:45 -0600352/*
353 * This routine takes an open vmlinux image, which is in ELF, and maps it into
Rusty Russelldde79782007-07-26 10:41:03 -0700354 * the Guest memory. ELF = Embedded Linking Format, which is the format used
355 * by all modern binaries on Linux including the kernel.
356 *
357 * The ELF headers give *two* addresses: a physical address, and a virtual
Rusty Russell47436aa2007-10-22 11:03:36 +1000358 * address. We use the physical address; the Guest will map itself to the
359 * virtual address.
Rusty Russelldde79782007-07-26 10:41:03 -0700360 *
Rusty Russell2e04ef72009-07-30 16:03:45 -0600361 * We return the starting address.
362 */
Rusty Russell47436aa2007-10-22 11:03:36 +1000363static unsigned long map_elf(int elf_fd, const Elf32_Ehdr *ehdr)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700364{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700365 Elf32_Phdr phdr[ehdr->e_phnum];
366 unsigned int i;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700367
Rusty Russell2e04ef72009-07-30 16:03:45 -0600368 /*
369 * Sanity checks on the main ELF header: an x86 executable with a
370 * reasonable number of correctly-sized program headers.
371 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700372 if (ehdr->e_type != ET_EXEC
373 || ehdr->e_machine != EM_386
374 || ehdr->e_phentsize != sizeof(Elf32_Phdr)
375 || ehdr->e_phnum < 1 || ehdr->e_phnum > 65536U/sizeof(Elf32_Phdr))
376 errx(1, "Malformed elf header");
377
Rusty Russell2e04ef72009-07-30 16:03:45 -0600378 /*
379 * An ELF executable contains an ELF header and a number of "program"
Rusty Russelldde79782007-07-26 10:41:03 -0700380 * headers which indicate which parts ("segments") of the program to
Rusty Russell2e04ef72009-07-30 16:03:45 -0600381 * load where.
382 */
Rusty Russelldde79782007-07-26 10:41:03 -0700383
384 /* We read in all the program headers at once: */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700385 if (lseek(elf_fd, ehdr->e_phoff, SEEK_SET) < 0)
386 err(1, "Seeking to program headers");
387 if (read(elf_fd, phdr, sizeof(phdr)) != sizeof(phdr))
388 err(1, "Reading program headers");
389
Rusty Russell2e04ef72009-07-30 16:03:45 -0600390 /*
391 * Try all the headers: there are usually only three. A read-only one,
392 * a read-write one, and a "note" section which we don't load.
393 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700394 for (i = 0; i < ehdr->e_phnum; i++) {
Rusty Russelldde79782007-07-26 10:41:03 -0700395 /* If this isn't a loadable segment, we ignore it */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700396 if (phdr[i].p_type != PT_LOAD)
397 continue;
398
399 verbose("Section %i: size %i addr %p\n",
400 i, phdr[i].p_memsz, (void *)phdr[i].p_paddr);
401
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700402 /* We map this section of the file at its physical address. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000403 map_at(elf_fd, from_guest_phys(phdr[i].p_paddr),
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700404 phdr[i].p_offset, phdr[i].p_filesz);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700405 }
406
Rusty Russell814a0e52007-10-22 11:29:44 +1000407 /* The entry point is given in the ELF header. */
408 return ehdr->e_entry;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700409}
410
Rusty Russell2e04ef72009-07-30 16:03:45 -0600411/*L:150
412 * A bzImage, unlike an ELF file, is not meant to be loaded. You're supposed
413 * to jump into it and it will unpack itself. We used to have to perform some
414 * hairy magic because the unpacking code scared me.
Rusty Russelldde79782007-07-26 10:41:03 -0700415 *
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000416 * Fortunately, Jeremy Fitzhardinge convinced me it wasn't that hard and wrote
417 * a small patch to jump over the tricky bits in the Guest, so now we just read
Rusty Russell2e04ef72009-07-30 16:03:45 -0600418 * the funky header so we know where in the file to load, and away we go!
419 */
Rusty Russell47436aa2007-10-22 11:03:36 +1000420static unsigned long load_bzimage(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700421{
Rusty Russell43d33b22007-10-22 11:29:57 +1000422 struct boot_params boot;
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000423 int r;
424 /* Modern bzImages get loaded at 1M. */
425 void *p = from_guest_phys(0x100000);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700426
Rusty Russell2e04ef72009-07-30 16:03:45 -0600427 /*
428 * Go back to the start of the file and read the header. It should be
Paul Bolle395cf962011-08-15 02:02:26 +0200429 * a Linux boot header (see Documentation/x86/boot.txt)
Rusty Russell2e04ef72009-07-30 16:03:45 -0600430 */
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000431 lseek(fd, 0, SEEK_SET);
Rusty Russell43d33b22007-10-22 11:29:57 +1000432 read(fd, &boot, sizeof(boot));
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000433
Rusty Russell43d33b22007-10-22 11:29:57 +1000434 /* Inside the setup_hdr, we expect the magic "HdrS" */
435 if (memcmp(&boot.hdr.header, "HdrS", 4) != 0)
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000436 errx(1, "This doesn't look like a bzImage to me");
437
Rusty Russell43d33b22007-10-22 11:29:57 +1000438 /* Skip over the extra sectors of the header. */
439 lseek(fd, (boot.hdr.setup_sects+1) * 512, SEEK_SET);
Rusty Russell5bbf89f2007-10-22 11:29:56 +1000440
441 /* Now read everything into memory. in nice big chunks. */
442 while ((r = read(fd, p, 65536)) > 0)
443 p += r;
444
Rusty Russell43d33b22007-10-22 11:29:57 +1000445 /* Finally, code32_start tells us where to enter the kernel. */
446 return boot.hdr.code32_start;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700447}
448
Rusty Russell2e04ef72009-07-30 16:03:45 -0600449/*L:140
450 * Loading the kernel is easy when it's a "vmlinux", but most kernels
Rusty Russelle1e72962007-10-25 15:02:50 +1000451 * come wrapped up in the self-decompressing "bzImage" format. With a little
Rusty Russell2e04ef72009-07-30 16:03:45 -0600452 * work, we can load those, too.
453 */
Rusty Russell47436aa2007-10-22 11:03:36 +1000454static unsigned long load_kernel(int fd)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700455{
456 Elf32_Ehdr hdr;
457
Rusty Russelldde79782007-07-26 10:41:03 -0700458 /* Read in the first few bytes. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700459 if (read(fd, &hdr, sizeof(hdr)) != sizeof(hdr))
460 err(1, "Reading kernel");
461
Rusty Russelldde79782007-07-26 10:41:03 -0700462 /* If it's an ELF file, it starts with "\177ELF" */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700463 if (memcmp(hdr.e_ident, ELFMAG, SELFMAG) == 0)
Rusty Russell47436aa2007-10-22 11:03:36 +1000464 return map_elf(fd, &hdr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700465
Rusty Russella6bd8e12008-03-28 11:05:53 -0500466 /* Otherwise we assume it's a bzImage, and try to load it. */
Rusty Russell47436aa2007-10-22 11:03:36 +1000467 return load_bzimage(fd);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700468}
469
Rusty Russell2e04ef72009-07-30 16:03:45 -0600470/*
471 * This is a trivial little helper to align pages. Andi Kleen hated it because
Rusty Russelldde79782007-07-26 10:41:03 -0700472 * it calls getpagesize() twice: "it's dumb code."
473 *
474 * Kernel guys get really het up about optimization, even when it's not
Rusty Russell2e04ef72009-07-30 16:03:45 -0600475 * necessary. I leave this code as a reaction against that.
476 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700477static inline unsigned long page_align(unsigned long addr)
478{
Rusty Russelldde79782007-07-26 10:41:03 -0700479 /* Add upwards and truncate downwards. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700480 return ((addr + getpagesize()-1) & ~(getpagesize()-1));
481}
482
Rusty Russell2e04ef72009-07-30 16:03:45 -0600483/*L:180
484 * An "initial ram disk" is a disk image loaded into memory along with the
485 * kernel which the kernel can use to boot from without needing any drivers.
486 * Most distributions now use this as standard: the initrd contains the code to
487 * load the appropriate driver modules for the current machine.
Rusty Russelldde79782007-07-26 10:41:03 -0700488 *
489 * Importantly, James Morris works for RedHat, and Fedora uses initrds for its
Rusty Russell2e04ef72009-07-30 16:03:45 -0600490 * kernels. He sent me this (and tells me when I break it).
491 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700492static unsigned long load_initrd(const char *name, unsigned long mem)
493{
494 int ifd;
495 struct stat st;
496 unsigned long len;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700497
498 ifd = open_or_die(name, O_RDONLY);
Rusty Russelldde79782007-07-26 10:41:03 -0700499 /* fstat() is needed to get the file size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700500 if (fstat(ifd, &st) < 0)
501 err(1, "fstat() on initrd '%s'", name);
502
Rusty Russell2e04ef72009-07-30 16:03:45 -0600503 /*
504 * We map the initrd at the top of memory, but mmap wants it to be
505 * page-aligned, so we round the size up for that.
506 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700507 len = page_align(st.st_size);
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000508 map_at(ifd, from_guest_phys(mem - len), 0, st.st_size);
Rusty Russell2e04ef72009-07-30 16:03:45 -0600509 /*
510 * Once a file is mapped, you can close the file descriptor. It's a
511 * little odd, but quite useful.
512 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700513 close(ifd);
Ronald G. Minnich6649bb72007-08-28 14:35:59 -0700514 verbose("mapped initrd %s size=%lu @ %p\n", name, len, (void*)mem-len);
Rusty Russelldde79782007-07-26 10:41:03 -0700515
516 /* We return the initrd size. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700517 return len;
518}
Rusty Russelle1e72962007-10-25 15:02:50 +1000519/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700520
Rusty Russell2e04ef72009-07-30 16:03:45 -0600521/*
522 * Simple routine to roll all the commandline arguments together with spaces
523 * between them.
524 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700525static void concat(char *dst, char *args[])
526{
527 unsigned int i, len = 0;
528
529 for (i = 0; args[i]; i++) {
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100530 if (i) {
531 strcat(dst+len, " ");
532 len++;
533 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700534 strcpy(dst+len, args[i]);
Paul Bolle1ef36fa2008-03-10 16:39:03 +0100535 len += strlen(args[i]);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700536 }
537 /* In case it's empty. */
538 dst[len] = '\0';
539}
540
Rusty Russell2e04ef72009-07-30 16:03:45 -0600541/*L:185
542 * This is where we actually tell the kernel to initialize the Guest. We
Rusty Russelle1e72962007-10-25 15:02:50 +1000543 * saw the arguments it expects when we looked at initialize() in lguest_user.c:
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300544 * the base of Guest "physical" memory, the top physical page to allow and the
Rusty Russell2e04ef72009-07-30 16:03:45 -0600545 * entry point for the Guest.
546 */
Rusty Russell56739c802009-06-12 22:26:59 -0600547static void tell_kernel(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,
Matias Zabaljauregui58a24562008-09-29 01:40:07 -0300551 guest_limit / getpagesize(), start };
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000552 verbose("Guest: %p - %p (%#lx)\n",
553 guest_base, guest_base + guest_limit, guest_limit);
Rusty Russell56739c802009-06-12 22:26:59 -0600554 lguest_fd = open_or_die("/dev/lguest", O_RDWR);
555 if (write(lguest_fd, args, sizeof(args)) < 0)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700556 err(1, "Writing to /dev/lguest");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700557}
Rusty Russelldde79782007-07-26 10:41:03 -0700558/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700559
Rusty Russella91d74a2009-07-30 16:03:45 -0600560/*L:200
Rusty Russelldde79782007-07-26 10:41:03 -0700561 * Device Handling.
562 *
Rusty Russelle1e72962007-10-25 15:02:50 +1000563 * When the Guest gives us a buffer, it sends an array of addresses and sizes.
Rusty Russelldde79782007-07-26 10:41:03 -0700564 * We need to make sure it's not trying to reach into the Launcher itself, so
Rusty Russelle1e72962007-10-25 15:02:50 +1000565 * we have a convenient routine which checks it and exits with an error message
Rusty Russelldde79782007-07-26 10:41:03 -0700566 * if something funny is going on:
567 */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700568static void *_check_pointer(unsigned long addr, unsigned int size,
569 unsigned int line)
570{
Rusty Russell2e04ef72009-07-30 16:03:45 -0600571 /*
Philip Sanderson5230ff02011-01-20 21:37:28 -0600572 * Check if the requested address and size exceeds the allocated memory,
573 * or addr + size wraps around.
Rusty Russell2e04ef72009-07-30 16:03:45 -0600574 */
Philip Sanderson5230ff02011-01-20 21:37:28 -0600575 if ((addr + size) > guest_limit || (addr + size) < addr)
Rusty Russell17cbca22007-10-22 11:24:22 +1000576 errx(1, "%s:%i: Invalid address %#lx", __FILE__, line, addr);
Rusty Russell2e04ef72009-07-30 16:03:45 -0600577 /*
578 * We return a pointer for the caller's convenience, now we know it's
579 * safe to use.
580 */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000581 return from_guest_phys(addr);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700582}
Rusty Russelldde79782007-07-26 10:41:03 -0700583/* A macro which transparently hands the line number to the real function. */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700584#define check_pointer(addr,size) _check_pointer(addr, size, __LINE__)
585
Rusty Russell2e04ef72009-07-30 16:03:45 -0600586/*
587 * Each buffer in the virtqueues is actually a chain of descriptors. This
Rusty Russelle1e72962007-10-25 15:02:50 +1000588 * function returns the next descriptor in the chain, or vq->vring.num if we're
Rusty Russell2e04ef72009-07-30 16:03:45 -0600589 * at the end.
590 */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100591static unsigned next_desc(struct vring_desc *desc,
592 unsigned int i, unsigned int max)
Rusty Russell17cbca22007-10-22 11:24:22 +1000593{
594 unsigned int next;
595
596 /* If this descriptor says it doesn't chain, we're done. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100597 if (!(desc[i].flags & VRING_DESC_F_NEXT))
598 return max;
Rusty Russell17cbca22007-10-22 11:24:22 +1000599
600 /* Check they're not leading us off end of descriptors. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100601 next = desc[i].next;
Rusty Russell17cbca22007-10-22 11:24:22 +1000602 /* Make sure compiler knows to grab that: we don't want it changing! */
603 wmb();
604
Mark McLoughlind1f01322009-05-11 18:11:46 +0100605 if (next >= max)
Rusty Russell17cbca22007-10-22 11:24:22 +1000606 errx(1, "Desc next is %u", next);
607
608 return next;
609}
610
Rusty Russella91d74a2009-07-30 16:03:45 -0600611/*
612 * This actually sends the interrupt for this virtqueue, if we've used a
613 * buffer.
614 */
Rusty Russell38bc2b82009-06-12 22:27:11 -0600615static void trigger_irq(struct virtqueue *vq)
616{
617 unsigned long buf[] = { LHREQ_IRQ, vq->config.irq };
618
Rusty Russell95c517c2009-06-12 22:27:11 -0600619 /* Don't inform them if nothing used. */
620 if (!vq->pending_used)
621 return;
622 vq->pending_used = 0;
623
Rusty Russellca60a422009-09-23 22:26:47 -0600624 /* If they don't want an interrupt, don't send one... */
625 if (vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT) {
Rusty Russell990c91f2011-05-30 11:14:12 -0600626 return;
Rusty Russellca60a422009-09-23 22:26:47 -0600627 }
Rusty Russell38bc2b82009-06-12 22:27:11 -0600628
629 /* Send the Guest an interrupt tell them we used something up. */
630 if (write(lguest_fd, buf, sizeof(buf)) != 0)
631 err(1, "Triggering irq %i", vq->config.irq);
632}
633
Rusty Russell2e04ef72009-07-30 16:03:45 -0600634/*
Rusty Russella91d74a2009-07-30 16:03:45 -0600635 * This looks in the virtqueue for the first available buffer, and converts
Rusty Russell17cbca22007-10-22 11:24:22 +1000636 * it to an iovec for convenient access. Since descriptors consist of some
637 * number of output then some number of input descriptors, it's actually two
638 * iovecs, but we pack them into one and note how many of each there were.
639 *
Rusty Russella91d74a2009-07-30 16:03:45 -0600640 * This function waits if necessary, and returns the descriptor number found.
Rusty Russell2e04ef72009-07-30 16:03:45 -0600641 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600642static unsigned wait_for_vq_desc(struct virtqueue *vq,
643 struct iovec iov[],
644 unsigned int *out_num, unsigned int *in_num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000645{
Mark McLoughlind1f01322009-05-11 18:11:46 +0100646 unsigned int i, head, max;
647 struct vring_desc *desc;
Rusty Russell659a0e62009-06-12 22:27:10 -0600648 u16 last_avail = lg_last_avail(vq);
649
Rusty Russella91d74a2009-07-30 16:03:45 -0600650 /* There's nothing available? */
Rusty Russell659a0e62009-06-12 22:27:10 -0600651 while (last_avail == vq->vring.avail->idx) {
652 u64 event;
653
Rusty Russella91d74a2009-07-30 16:03:45 -0600654 /*
655 * Since we're about to sleep, now is a good time to tell the
656 * Guest about what we've used up to now.
657 */
Rusty Russell38bc2b82009-06-12 22:27:11 -0600658 trigger_irq(vq);
659
Rusty Russellb60da132009-06-12 22:27:12 -0600660 /* OK, now we need to know about added descriptors. */
661 vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY;
662
Rusty Russell2e04ef72009-07-30 16:03:45 -0600663 /*
664 * They could have slipped one in as we were doing that: make
665 * sure it's written, then check again.
666 */
Rusty Russellb60da132009-06-12 22:27:12 -0600667 mb();
668 if (last_avail != vq->vring.avail->idx) {
669 vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY;
670 break;
671 }
672
Rusty Russell659a0e62009-06-12 22:27:10 -0600673 /* Nothing new? Wait for eventfd to tell us they refilled. */
674 if (read(vq->eventfd, &event, sizeof(event)) != sizeof(event))
675 errx(1, "Event read failed?");
Rusty Russellb60da132009-06-12 22:27:12 -0600676
677 /* We don't need to be notified again. */
678 vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY;
Rusty Russell659a0e62009-06-12 22:27:10 -0600679 }
Rusty Russell17cbca22007-10-22 11:24:22 +1000680
681 /* Check it isn't doing very strange things with descriptor numbers. */
Rusty Russellb5111792008-07-29 09:58:34 -0500682 if ((u16)(vq->vring.avail->idx - last_avail) > vq->vring.num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000683 errx(1, "Guest moved used index from %u to %u",
Rusty Russellb5111792008-07-29 09:58:34 -0500684 last_avail, vq->vring.avail->idx);
Rusty Russell17cbca22007-10-22 11:24:22 +1000685
Rusty Russell8fd9a632013-07-02 15:35:13 +0930686 /*
687 * Make sure we read the descriptor number *after* we read the ring
688 * update; don't let the cpu or compiler change the order.
689 */
690 rmb();
691
Rusty Russell2e04ef72009-07-30 16:03:45 -0600692 /*
693 * Grab the next descriptor number they're advertising, and increment
694 * the index we've seen.
695 */
Rusty Russellb5111792008-07-29 09:58:34 -0500696 head = vq->vring.avail->ring[last_avail % vq->vring.num];
697 lg_last_avail(vq)++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000698
699 /* If their number is silly, that's a fatal mistake. */
700 if (head >= vq->vring.num)
701 errx(1, "Guest says index %u is available", head);
702
703 /* When we start there are none of either input nor output. */
704 *out_num = *in_num = 0;
705
Mark McLoughlind1f01322009-05-11 18:11:46 +0100706 max = vq->vring.num;
707 desc = vq->vring.desc;
Rusty Russell17cbca22007-10-22 11:24:22 +1000708 i = head;
Mark McLoughlind1f01322009-05-11 18:11:46 +0100709
Rusty Russell2e04ef72009-07-30 16:03:45 -0600710 /*
Rusty Russell8fd9a632013-07-02 15:35:13 +0930711 * We have to read the descriptor after we read the descriptor number,
712 * but there's a data dependency there so the CPU shouldn't reorder
713 * that: no rmb() required.
714 */
715
716 /*
Rusty Russell2e04ef72009-07-30 16:03:45 -0600717 * If this is an indirect entry, then this buffer contains a descriptor
718 * table which we handle as if it's any normal descriptor chain.
719 */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100720 if (desc[i].flags & VRING_DESC_F_INDIRECT) {
721 if (desc[i].len % sizeof(struct vring_desc))
722 errx(1, "Invalid size for indirect buffer table");
723
724 max = desc[i].len / sizeof(struct vring_desc);
725 desc = check_pointer(desc[i].addr, desc[i].len);
726 i = 0;
727 }
728
Rusty Russell17cbca22007-10-22 11:24:22 +1000729 do {
730 /* Grab the first descriptor, and check it's OK. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100731 iov[*out_num + *in_num].iov_len = desc[i].len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000732 iov[*out_num + *in_num].iov_base
Mark McLoughlind1f01322009-05-11 18:11:46 +0100733 = check_pointer(desc[i].addr, desc[i].len);
Rusty Russell17cbca22007-10-22 11:24:22 +1000734 /* If this is an input descriptor, increment that count. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100735 if (desc[i].flags & VRING_DESC_F_WRITE)
Rusty Russell17cbca22007-10-22 11:24:22 +1000736 (*in_num)++;
737 else {
Rusty Russell2e04ef72009-07-30 16:03:45 -0600738 /*
739 * If it's an output descriptor, they're all supposed
740 * to come before any input descriptors.
741 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000742 if (*in_num)
743 errx(1, "Descriptor has out after in");
744 (*out_num)++;
745 }
746
747 /* If we've got too many, that implies a descriptor loop. */
Mark McLoughlind1f01322009-05-11 18:11:46 +0100748 if (*out_num + *in_num > max)
Rusty Russell17cbca22007-10-22 11:24:22 +1000749 errx(1, "Looped descriptor");
Mark McLoughlind1f01322009-05-11 18:11:46 +0100750 } while ((i = next_desc(desc, i, max)) != max);
Rusty Russell17cbca22007-10-22 11:24:22 +1000751
752 return head;
753}
754
Rusty Russell2e04ef72009-07-30 16:03:45 -0600755/*
Rusty Russella91d74a2009-07-30 16:03:45 -0600756 * After we've used one of their buffers, we tell the Guest about it. Sometime
757 * later we'll want to send them an interrupt using trigger_irq(); note that
758 * wait_for_vq_desc() does that for us if it has to wait.
Rusty Russell2e04ef72009-07-30 16:03:45 -0600759 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000760static void add_used(struct virtqueue *vq, unsigned int head, int len)
761{
762 struct vring_used_elem *used;
763
Rusty Russell2e04ef72009-07-30 16:03:45 -0600764 /*
765 * The virtqueue contains a ring of used buffers. Get a pointer to the
766 * next entry in that used ring.
767 */
Rusty Russell17cbca22007-10-22 11:24:22 +1000768 used = &vq->vring.used->ring[vq->vring.used->idx % vq->vring.num];
769 used->id = head;
770 used->len = len;
771 /* Make sure buffer is written before we update index. */
772 wmb();
773 vq->vring.used->idx++;
Rusty Russell95c517c2009-06-12 22:27:11 -0600774 vq->pending_used++;
Rusty Russell17cbca22007-10-22 11:24:22 +1000775}
776
Rusty Russell17cbca22007-10-22 11:24:22 +1000777/* And here's the combo meal deal. Supersize me! */
Rusty Russell56739c802009-06-12 22:26:59 -0600778static void add_used_and_trigger(struct virtqueue *vq, unsigned head, int len)
Rusty Russell17cbca22007-10-22 11:24:22 +1000779{
780 add_used(vq, head, len);
Rusty Russell56739c802009-06-12 22:26:59 -0600781 trigger_irq(vq);
Rusty Russell17cbca22007-10-22 11:24:22 +1000782}
783
Rusty Russelle1e72962007-10-25 15:02:50 +1000784/*
785 * The Console
786 *
Rusty Russell2e04ef72009-07-30 16:03:45 -0600787 * We associate some data with the console for our exit hack.
788 */
Rusty Russell1842f232009-07-30 16:03:46 -0600789struct console_abort {
Rusty Russelldde79782007-07-26 10:41:03 -0700790 /* How many times have they hit ^C? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700791 int count;
Rusty Russelldde79782007-07-26 10:41:03 -0700792 /* When did they start? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700793 struct timeval start;
794};
795
Rusty Russelldde79782007-07-26 10:41:03 -0700796/* This is the routine which handles console input (ie. stdin). */
Rusty Russell659a0e62009-06-12 22:27:10 -0600797static void console_input(struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700798{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700799 int len;
Rusty Russell17cbca22007-10-22 11:24:22 +1000800 unsigned int head, in_num, out_num;
Rusty Russell659a0e62009-06-12 22:27:10 -0600801 struct console_abort *abort = vq->dev->priv;
802 struct iovec iov[vq->vring.num];
Rusty Russell8ca47e02007-07-19 01:49:29 -0700803
Rusty Russella91d74a2009-07-30 16:03:45 -0600804 /* Make sure there's a descriptor available. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600805 head = wait_for_vq_desc(vq, iov, &out_num, &in_num);
Rusty Russell56ae43d2007-10-22 11:24:23 +1000806 if (out_num)
Rusty Russell17cbca22007-10-22 11:24:22 +1000807 errx(1, "Output buffers in console in queue?");
Rusty Russell8ca47e02007-07-19 01:49:29 -0700808
Rusty Russella91d74a2009-07-30 16:03:45 -0600809 /* Read into it. This is where we usually wait. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600810 len = readv(STDIN_FILENO, iov, in_num);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700811 if (len <= 0) {
Rusty Russell659a0e62009-06-12 22:27:10 -0600812 /* Ran out of input? */
Rusty Russell8ca47e02007-07-19 01:49:29 -0700813 warnx("Failed to get console input, ignoring console.");
Rusty Russell2e04ef72009-07-30 16:03:45 -0600814 /*
815 * For simplicity, dying threads kill the whole Launcher. So
816 * just nap here.
817 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600818 for (;;)
819 pause();
Rusty Russell8ca47e02007-07-19 01:49:29 -0700820 }
821
Rusty Russella91d74a2009-07-30 16:03:45 -0600822 /* Tell the Guest we used a buffer. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600823 add_used_and_trigger(vq, head, len);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700824
Rusty Russell2e04ef72009-07-30 16:03:45 -0600825 /*
826 * Three ^C within one second? Exit.
Rusty Russelldde79782007-07-26 10:41:03 -0700827 *
Rusty Russell659a0e62009-06-12 22:27:10 -0600828 * This is such a hack, but works surprisingly well. Each ^C has to
829 * be in a buffer by itself, so they can't be too fast. But we check
830 * that we get three within about a second, so they can't be too
Rusty Russell2e04ef72009-07-30 16:03:45 -0600831 * slow.
832 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600833 if (len != 1 || ((char *)iov[0].iov_base)[0] != 3) {
Rusty Russell8ca47e02007-07-19 01:49:29 -0700834 abort->count = 0;
Rusty Russell659a0e62009-06-12 22:27:10 -0600835 return;
836 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700837
Rusty Russell659a0e62009-06-12 22:27:10 -0600838 abort->count++;
839 if (abort->count == 1)
840 gettimeofday(&abort->start, NULL);
841 else if (abort->count == 3) {
842 struct timeval now;
843 gettimeofday(&now, NULL);
844 /* Kill all Launcher processes with SIGINT, like normal ^C */
845 if (now.tv_sec <= abort->start.tv_sec+1)
846 kill(0, SIGINT);
847 abort->count = 0;
848 }
Rusty Russell8ca47e02007-07-19 01:49:29 -0700849}
850
Rusty Russell659a0e62009-06-12 22:27:10 -0600851/* This is the routine which handles console output (ie. stdout). */
852static void console_output(struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700853{
Rusty Russell17cbca22007-10-22 11:24:22 +1000854 unsigned int head, out, in;
Rusty Russell17cbca22007-10-22 11:24:22 +1000855 struct iovec iov[vq->vring.num];
856
Rusty Russella91d74a2009-07-30 16:03:45 -0600857 /* We usually wait in here, for the Guest to give us something. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600858 head = wait_for_vq_desc(vq, iov, &out, &in);
859 if (in)
860 errx(1, "Input buffers in console output queue?");
Rusty Russella91d74a2009-07-30 16:03:45 -0600861
862 /* writev can return a partial write, so we loop here. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600863 while (!iov_empty(iov, out)) {
864 int len = writev(STDOUT_FILENO, iov, out);
Sakari Ailuse0377e22011-06-26 19:36:46 +0300865 if (len <= 0) {
866 warn("Write to stdout gave %i (%d)", len, errno);
867 break;
868 }
Rusty Russellc0316a92012-10-16 23:56:13 +1030869 iov_consume(iov, out, NULL, len);
Rusty Russell17cbca22007-10-22 11:24:22 +1000870 }
Rusty Russella91d74a2009-07-30 16:03:45 -0600871
872 /*
873 * We're finished with that buffer: if we're going to sleep,
874 * wait_for_vq_desc() will prod the Guest with an interrupt.
875 */
Rusty Russell38bc2b82009-06-12 22:27:11 -0600876 add_used(vq, head, 0);
Rusty Russella1618832008-07-29 09:58:35 -0500877}
878
Rusty Russelle1e72962007-10-25 15:02:50 +1000879/*
880 * The Network
881 *
882 * Handling output for network is also simple: we get all the output buffers
Rusty Russell659a0e62009-06-12 22:27:10 -0600883 * and write them to /dev/net/tun.
Rusty Russella6bd8e12008-03-28 11:05:53 -0500884 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600885struct net_info {
886 int tunfd;
887};
888
889static void net_output(struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700890{
Rusty Russell659a0e62009-06-12 22:27:10 -0600891 struct net_info *net_info = vq->dev->priv;
892 unsigned int head, out, in;
Rusty Russell17cbca22007-10-22 11:24:22 +1000893 struct iovec iov[vq->vring.num];
894
Rusty Russella91d74a2009-07-30 16:03:45 -0600895 /* We usually wait in here for the Guest to give us a packet. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600896 head = wait_for_vq_desc(vq, iov, &out, &in);
897 if (in)
898 errx(1, "Input buffers in net output queue?");
Rusty Russella91d74a2009-07-30 16:03:45 -0600899 /*
900 * Send the whole thing through to /dev/net/tun. It expects the exact
901 * same format: what a coincidence!
902 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600903 if (writev(net_info->tunfd, iov, out) < 0)
Sakari Ailuse0377e22011-06-26 19:36:46 +0300904 warnx("Write to tun failed (%d)?", errno);
Rusty Russella91d74a2009-07-30 16:03:45 -0600905
906 /*
907 * Done with that one; wait_for_vq_desc() will send the interrupt if
908 * all packets are processed.
909 */
Rusty Russell38bc2b82009-06-12 22:27:11 -0600910 add_used(vq, head, 0);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700911}
912
Rusty Russella91d74a2009-07-30 16:03:45 -0600913/*
914 * Handling network input is a bit trickier, because I've tried to optimize it.
915 *
916 * First we have a helper routine which tells is if from this file descriptor
917 * (ie. the /dev/net/tun device) will block:
918 */
Rusty Russell4a8962e2009-06-12 22:27:12 -0600919static bool will_block(int fd)
920{
921 fd_set fdset;
922 struct timeval zero = { 0, 0 };
923 FD_ZERO(&fdset);
924 FD_SET(fd, &fdset);
925 return select(fd+1, &fdset, NULL, NULL, &zero) != 1;
926}
927
Rusty Russella91d74a2009-07-30 16:03:45 -0600928/*
929 * This handles packets coming in from the tun device to our Guest. Like all
930 * service routines, it gets called again as soon as it returns, so you don't
931 * see a while(1) loop here.
932 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600933static void net_input(struct virtqueue *vq)
Rusty Russell8ca47e02007-07-19 01:49:29 -0700934{
Rusty Russell8ca47e02007-07-19 01:49:29 -0700935 int len;
Rusty Russell659a0e62009-06-12 22:27:10 -0600936 unsigned int head, out, in;
937 struct iovec iov[vq->vring.num];
938 struct net_info *net_info = vq->dev->priv;
Rusty Russell8ca47e02007-07-19 01:49:29 -0700939
Rusty Russella91d74a2009-07-30 16:03:45 -0600940 /*
941 * Get a descriptor to write an incoming packet into. This will also
942 * send an interrupt if they're out of descriptors.
943 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600944 head = wait_for_vq_desc(vq, iov, &out, &in);
945 if (out)
946 errx(1, "Output buffers in net input queue?");
Rusty Russell4a8962e2009-06-12 22:27:12 -0600947
Rusty Russella91d74a2009-07-30 16:03:45 -0600948 /*
949 * If it looks like we'll block reading from the tun device, send them
950 * an interrupt.
951 */
Rusty Russell4a8962e2009-06-12 22:27:12 -0600952 if (vq->pending_used && will_block(net_info->tunfd))
953 trigger_irq(vq);
954
Rusty Russella91d74a2009-07-30 16:03:45 -0600955 /*
956 * Read in the packet. This is where we normally wait (when there's no
957 * incoming network traffic).
958 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600959 len = readv(net_info->tunfd, iov, in);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700960 if (len <= 0)
Sakari Ailuse0377e22011-06-26 19:36:46 +0300961 warn("Failed to read from tun (%d).", errno);
Rusty Russella91d74a2009-07-30 16:03:45 -0600962
963 /*
964 * Mark that packet buffer as used, but don't interrupt here. We want
965 * to wait until we've done as much work as we can.
966 */
Rusty Russell4a8962e2009-06-12 22:27:12 -0600967 add_used(vq, head, len);
Rusty Russell8ca47e02007-07-19 01:49:29 -0700968}
Rusty Russella91d74a2009-07-30 16:03:45 -0600969/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -0700970
Rusty Russella91d74a2009-07-30 16:03:45 -0600971/* This is the helper to create threads: run the service routine in a loop. */
Rusty Russell659a0e62009-06-12 22:27:10 -0600972static int do_thread(void *_vq)
Rusty Russell56ae43d2007-10-22 11:24:23 +1000973{
Rusty Russell659a0e62009-06-12 22:27:10 -0600974 struct virtqueue *vq = _vq;
975
976 for (;;)
977 vq->service(vq);
978 return 0;
Rusty Russell56ae43d2007-10-22 11:24:23 +1000979}
980
Rusty Russell2e04ef72009-07-30 16:03:45 -0600981/*
982 * When a child dies, we kill our entire process group with SIGTERM. This
983 * also has the side effect that the shell restores the console for us!
984 */
Rusty Russell659a0e62009-06-12 22:27:10 -0600985static void kill_launcher(int signal)
Rusty Russell5dae7852008-07-29 09:58:35 -0500986{
Rusty Russell659a0e62009-06-12 22:27:10 -0600987 kill(0, SIGTERM);
988}
989
990static void reset_device(struct device *dev)
991{
992 struct virtqueue *vq;
993
994 verbose("Resetting device %s\n", dev->name);
995
996 /* Clear any features they've acked. */
997 memset(get_feature_bits(dev) + dev->feature_len, 0, dev->feature_len);
998
999 /* We're going to be explicitly killing threads, so ignore them. */
1000 signal(SIGCHLD, SIG_IGN);
1001
1002 /* Zero out the virtqueues, get rid of their threads */
1003 for (vq = dev->vq; vq; vq = vq->next) {
1004 if (vq->thread != (pid_t)-1) {
1005 kill(vq->thread, SIGTERM);
1006 waitpid(vq->thread, NULL, 0);
1007 vq->thread = (pid_t)-1;
1008 }
1009 memset(vq->vring.desc, 0,
1010 vring_size(vq->config.num, LGUEST_VRING_ALIGN));
1011 lg_last_avail(vq) = 0;
1012 }
1013 dev->running = false;
1014
1015 /* Now we care if threads die. */
1016 signal(SIGCHLD, (void *)kill_launcher);
1017}
1018
Rusty Russella91d74a2009-07-30 16:03:45 -06001019/*L:216
1020 * This actually creates the thread which services the virtqueue for a device.
1021 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001022static void create_thread(struct virtqueue *vq)
1023{
Rusty Russell2e04ef72009-07-30 16:03:45 -06001024 /*
Rusty Russella91d74a2009-07-30 16:03:45 -06001025 * Create stack for thread. Since the stack grows upwards, we point
1026 * the stack pointer to the end of this region.
Rusty Russell2e04ef72009-07-30 16:03:45 -06001027 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001028 char *stack = malloc(32768);
1029 unsigned long args[] = { LHREQ_EVENTFD,
1030 vq->config.pfn*getpagesize(), 0 };
1031
1032 /* Create a zero-initialized eventfd. */
1033 vq->eventfd = eventfd(0, 0);
1034 if (vq->eventfd < 0)
1035 err(1, "Creating eventfd");
1036 args[2] = vq->eventfd;
1037
Rusty Russella91d74a2009-07-30 16:03:45 -06001038 /*
1039 * Attach an eventfd to this virtqueue: it will go off when the Guest
1040 * does an LHCALL_NOTIFY for this vq.
1041 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001042 if (write(lguest_fd, &args, sizeof(args)) != 0)
1043 err(1, "Attaching eventfd");
1044
Rusty Russella91d74a2009-07-30 16:03:45 -06001045 /*
1046 * CLONE_VM: because it has to access the Guest memory, and SIGCHLD so
1047 * we get a signal if it dies.
1048 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001049 vq->thread = clone(do_thread, stack + 32768, CLONE_VM | SIGCHLD, vq);
1050 if (vq->thread == (pid_t)-1)
1051 err(1, "Creating clone");
Rusty Russella91d74a2009-07-30 16:03:45 -06001052
1053 /* We close our local copy now the child has it. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001054 close(vq->eventfd);
1055}
1056
1057static void start_device(struct device *dev)
1058{
1059 unsigned int i;
1060 struct virtqueue *vq;
1061
1062 verbose("Device %s OK: offered", dev->name);
1063 for (i = 0; i < dev->feature_len; i++)
1064 verbose(" %02x", get_feature_bits(dev)[i]);
1065 verbose(", accepted");
1066 for (i = 0; i < dev->feature_len; i++)
1067 verbose(" %02x", get_feature_bits(dev)
1068 [dev->feature_len+i]);
1069
1070 for (vq = dev->vq; vq; vq = vq->next) {
1071 if (vq->service)
1072 create_thread(vq);
1073 }
1074 dev->running = true;
1075}
1076
1077static void cleanup_devices(void)
1078{
1079 struct device *dev;
1080
1081 for (dev = devices.dev; dev; dev = dev->next)
1082 reset_device(dev);
1083
1084 /* If we saved off the original terminal settings, restore them now. */
1085 if (orig_term.c_lflag & (ISIG|ICANON|ECHO))
1086 tcsetattr(STDIN_FILENO, TCSANOW, &orig_term);
Rusty Russell5dae7852008-07-29 09:58:35 -05001087}
1088
Rusty Russella007a752008-05-02 21:50:53 -05001089/* When the Guest tells us they updated the status field, we handle it. */
1090static void update_device_status(struct device *dev)
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001091{
Rusty Russell659a0e62009-06-12 22:27:10 -06001092 /* A zero status is a reset, otherwise it's a set of flags. */
1093 if (dev->desc->status == 0)
1094 reset_device(dev);
1095 else if (dev->desc->status & VIRTIO_CONFIG_S_FAILED) {
Rusty Russella007a752008-05-02 21:50:53 -05001096 warnx("Device %s configuration FAILED", dev->name);
Rusty Russell659a0e62009-06-12 22:27:10 -06001097 if (dev->running)
1098 reset_device(dev);
Rusty Russell3c3ed482011-07-22 14:39:49 +09301099 } else {
1100 if (dev->running)
1101 err(1, "Device %s features finalized twice", dev->name);
1102 start_device(dev);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001103 }
1104}
1105
Rusty Russella91d74a2009-07-30 16:03:45 -06001106/*L:215
1107 * This is the generic routine we call when the Guest uses LHCALL_NOTIFY. In
1108 * particular, it's used to notify us of device status changes during boot.
1109 */
Rusty Russell56739c802009-06-12 22:26:59 -06001110static void handle_output(unsigned long addr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001111{
1112 struct device *i;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001113
Rusty Russell659a0e62009-06-12 22:27:10 -06001114 /* Check each device. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001115 for (i = devices.dev; i; i = i->next) {
Rusty Russell659a0e62009-06-12 22:27:10 -06001116 struct virtqueue *vq;
1117
Rusty Russella91d74a2009-07-30 16:03:45 -06001118 /*
1119 * Notifications to device descriptors mean they updated the
1120 * device status.
1121 */
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001122 if (from_guest_phys(addr) == i->desc) {
Rusty Russella007a752008-05-02 21:50:53 -05001123 update_device_status(i);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001124 return;
1125 }
1126
Rusty Russell3c3ed482011-07-22 14:39:49 +09301127 /* Devices should not be used before features are finalized. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001128 for (vq = i->vq; vq; vq = vq->next) {
Rusty Russell659a0e62009-06-12 22:27:10 -06001129 if (addr != vq->config.pfn*getpagesize())
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001130 continue;
Rusty Russell3c3ed482011-07-22 14:39:49 +09301131 errx(1, "Notification on %s before setup!", i->name);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001132 }
1133 }
Rusty Russelldde79782007-07-26 10:41:03 -07001134
Rusty Russell2e04ef72009-07-30 16:03:45 -06001135 /*
1136 * Early console write is done using notify on a nul-terminated string
1137 * in Guest memory. It's also great for hacking debugging messages
1138 * into a Guest.
1139 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001140 if (addr >= guest_limit)
1141 errx(1, "Bad NOTIFY %#lx", addr);
1142
1143 write(STDOUT_FILENO, from_guest_phys(addr),
1144 strnlen(from_guest_phys(addr), guest_limit - addr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001145}
1146
Rusty Russellc565650b2015-02-11 15:15:10 +10301147/*L:216
1148 * This is where we emulate a handful of Guest instructions. It's ugly
1149 * and we used to do it in the kernel but it grew over time.
1150 */
1151
1152/*
1153 * We use the ptrace syscall's pt_regs struct to talk about registers
1154 * to lguest: these macros convert the names to the offsets.
1155 */
1156#define getreg(name) getreg_off(offsetof(struct user_regs_struct, name))
1157#define setreg(name, val) \
1158 setreg_off(offsetof(struct user_regs_struct, name), (val))
1159
1160static u32 getreg_off(size_t offset)
1161{
1162 u32 r;
1163 unsigned long args[] = { LHREQ_GETREG, offset };
1164
1165 if (pwrite(lguest_fd, args, sizeof(args), cpu_id) < 0)
1166 err(1, "Getting register %u", offset);
1167 if (pread(lguest_fd, &r, sizeof(r), cpu_id) != sizeof(r))
1168 err(1, "Reading register %u", offset);
1169
1170 return r;
1171}
1172
1173static void setreg_off(size_t offset, u32 val)
1174{
1175 unsigned long args[] = { LHREQ_SETREG, offset, val };
1176
1177 if (pwrite(lguest_fd, args, sizeof(args), cpu_id) < 0)
1178 err(1, "Setting register %u", offset);
1179}
1180
1181static void emulate_insn(const u8 insn[])
1182{
1183 unsigned long args[] = { LHREQ_TRAP, 13 };
1184 unsigned int insnlen = 0, in = 0, small_operand = 0, byte_access;
1185 unsigned int eax, port, mask;
1186 /*
1187 * We always return all-ones on IO port reads, which traditionally
1188 * means "there's nothing there".
1189 */
1190 u32 val = 0xFFFFFFFF;
1191
1192 /*
1193 * This must be the Guest kernel trying to do something, not userspace!
1194 * The bottom two bits of the CS segment register are the privilege
1195 * level.
1196 */
1197 if ((getreg(xcs) & 3) != 0x1)
1198 goto no_emulate;
1199
1200 /* Decoding x86 instructions is icky. */
1201
1202 /*
1203 * Around 2.6.33, the kernel started using an emulation for the
1204 * cmpxchg8b instruction in early boot on many configurations. This
1205 * code isn't paravirtualized, and it tries to disable interrupts.
1206 * Ignore it, which will Mostly Work.
1207 */
1208 if (insn[insnlen] == 0xfa) {
1209 /* "cli", or Clear Interrupt Enable instruction. Skip it. */
1210 insnlen = 1;
1211 goto skip_insn;
1212 }
1213
1214 /*
1215 * 0x66 is an "operand prefix". It means a 16, not 32 bit in/out.
1216 */
1217 if (insn[insnlen] == 0x66) {
1218 small_operand = 1;
1219 /* The instruction is 1 byte so far, read the next byte. */
1220 insnlen = 1;
1221 }
1222
1223 /* If the lower bit isn't set, it's a single byte access */
1224 byte_access = !(insn[insnlen] & 1);
1225
1226 /*
1227 * Now we can ignore the lower bit and decode the 4 opcodes
1228 * we need to emulate.
1229 */
1230 switch (insn[insnlen] & 0xFE) {
1231 case 0xE4: /* in <next byte>,%al */
1232 port = insn[insnlen+1];
1233 insnlen += 2;
1234 in = 1;
1235 break;
1236 case 0xEC: /* in (%dx),%al */
1237 port = getreg(edx) & 0xFFFF;
1238 insnlen += 1;
1239 in = 1;
1240 break;
1241 case 0xE6: /* out %al,<next byte> */
1242 port = insn[insnlen+1];
1243 insnlen += 2;
1244 break;
1245 case 0xEE: /* out %al,(%dx) */
1246 port = getreg(edx) & 0xFFFF;
1247 insnlen += 1;
1248 break;
1249 default:
1250 /* OK, we don't know what this is, can't emulate. */
1251 goto no_emulate;
1252 }
1253
1254 /* Set a mask of the 1, 2 or 4 bytes, depending on size of IO */
1255 if (byte_access)
1256 mask = 0xFF;
1257 else if (small_operand)
1258 mask = 0xFFFF;
1259 else
1260 mask = 0xFFFFFFFF;
1261
Rusty Russell48fd6b72015-02-11 15:15:10 +10301262 /* This is the PS/2 keyboard status; 1 means ready for output */
1263 if (port == 0x64)
1264 val = 1;
1265
Rusty Russellc565650b2015-02-11 15:15:10 +10301266 /*
1267 * If it was an "IN" instruction, they expect the result to be read
1268 * into %eax, so we change %eax.
1269 */
1270 eax = getreg(eax);
1271
1272 if (in) {
1273 /* Clear the bits we're about to read */
1274 eax &= ~mask;
1275 /* Copy bits in from val. */
1276 eax |= val & mask;
1277 /* Now update the register. */
1278 setreg(eax, eax);
1279 }
1280
1281 verbose("IO %s of %x to %u: %#08x\n",
1282 in ? "IN" : "OUT", mask, port, eax);
1283skip_insn:
1284 /* Finally, we've "done" the instruction, so move past it. */
1285 setreg(eip, getreg(eip) + insnlen);
1286 return;
1287
1288no_emulate:
1289 /* Inject trap into Guest. */
1290 if (write(lguest_fd, args, sizeof(args)) < 0)
1291 err(1, "Reinjecting trap 13 for fault at %#x", getreg(eip));
1292}
1293
1294
Rusty Russelldde79782007-07-26 10:41:03 -07001295/*L:190
1296 * Device Setup
1297 *
1298 * All devices need a descriptor so the Guest knows it exists, and a "struct
1299 * device" so the Launcher can keep track of it. We have common helper
Rusty Russella6bd8e12008-03-28 11:05:53 -05001300 * routines to allocate and manage them.
1301 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001302
Rusty Russell2e04ef72009-07-30 16:03:45 -06001303/*
1304 * The layout of the device page is a "struct lguest_device_desc" followed by a
Rusty Russella586d4f2008-02-04 23:49:56 -05001305 * number of virtqueue descriptors, then two sets of feature bits, then an
1306 * array of configuration bytes. This routine returns the configuration
Rusty Russell2e04ef72009-07-30 16:03:45 -06001307 * pointer.
1308 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001309static u8 *device_config(const struct device *dev)
1310{
1311 return (void *)(dev->desc + 1)
Rusty Russell713b15b2009-06-12 22:26:58 -06001312 + dev->num_vq * sizeof(struct lguest_vqconfig)
1313 + dev->feature_len * 2;
Rusty Russella586d4f2008-02-04 23:49:56 -05001314}
1315
Rusty Russell2e04ef72009-07-30 16:03:45 -06001316/*
1317 * This routine allocates a new "struct lguest_device_desc" from descriptor
Rusty Russella586d4f2008-02-04 23:49:56 -05001318 * table page just above the Guest's normal memory. It returns a pointer to
Rusty Russell2e04ef72009-07-30 16:03:45 -06001319 * that descriptor.
1320 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001321static struct lguest_device_desc *new_dev_desc(u16 type)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001322{
Rusty Russella586d4f2008-02-04 23:49:56 -05001323 struct lguest_device_desc d = { .type = type };
1324 void *p;
1325
1326 /* Figure out where the next device config is, based on the last one. */
1327 if (devices.lastdev)
1328 p = device_config(devices.lastdev)
1329 + devices.lastdev->desc->config_len;
1330 else
1331 p = devices.descpage;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001332
Rusty Russell17cbca22007-10-22 11:24:22 +10001333 /* We only have one page for all the descriptors. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001334 if (p + sizeof(d) > (void *)devices.descpage + getpagesize())
Rusty Russell17cbca22007-10-22 11:24:22 +10001335 errx(1, "Too many devices");
1336
Rusty Russella586d4f2008-02-04 23:49:56 -05001337 /* p might not be aligned, so we memcpy in. */
1338 return memcpy(p, &d, sizeof(d));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001339}
1340
Rusty Russell2e04ef72009-07-30 16:03:45 -06001341/*
1342 * Each device descriptor is followed by the description of its virtqueues. We
1343 * specify how many descriptors the virtqueue is to have.
1344 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001345static void add_virtqueue(struct device *dev, unsigned int num_descs,
Rusty Russell659a0e62009-06-12 22:27:10 -06001346 void (*service)(struct virtqueue *))
Rusty Russell17cbca22007-10-22 11:24:22 +10001347{
1348 unsigned int pages;
1349 struct virtqueue **i, *vq = malloc(sizeof(*vq));
1350 void *p;
1351
Rusty Russella6bd8e12008-03-28 11:05:53 -05001352 /* First we need some memory for this virtqueue. */
Rusty Russell2966af72008-12-30 09:25:58 -06001353 pages = (vring_size(num_descs, LGUEST_VRING_ALIGN) + getpagesize() - 1)
Rusty Russell42b36cc2007-11-12 13:39:18 +11001354 / getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10001355 p = get_pages(pages);
1356
Rusty Russelld1c856e2007-11-19 11:20:40 -05001357 /* Initialize the virtqueue */
1358 vq->next = NULL;
1359 vq->last_avail_idx = 0;
1360 vq->dev = dev;
Rusty Russella91d74a2009-07-30 16:03:45 -06001361
1362 /*
1363 * This is the routine the service thread will run, and its Process ID
1364 * once it's running.
1365 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001366 vq->service = service;
1367 vq->thread = (pid_t)-1;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001368
Rusty Russell17cbca22007-10-22 11:24:22 +10001369 /* Initialize the configuration. */
1370 vq->config.num = num_descs;
1371 vq->config.irq = devices.next_irq++;
1372 vq->config.pfn = to_guest_phys(p) / getpagesize();
1373
1374 /* Initialize the vring. */
Rusty Russell2966af72008-12-30 09:25:58 -06001375 vring_init(&vq->vring, num_descs, p, LGUEST_VRING_ALIGN);
Rusty Russell17cbca22007-10-22 11:24:22 +10001376
Rusty Russell2e04ef72009-07-30 16:03:45 -06001377 /*
1378 * Append virtqueue to this device's descriptor. We use
Rusty Russella586d4f2008-02-04 23:49:56 -05001379 * device_config() to get the end of the device's current virtqueues;
1380 * we check that we haven't added any config or feature information
Rusty Russell2e04ef72009-07-30 16:03:45 -06001381 * yet, otherwise we'd be overwriting them.
1382 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001383 assert(dev->desc->config_len == 0 && dev->desc->feature_len == 0);
1384 memcpy(device_config(dev), &vq->config, sizeof(vq->config));
Rusty Russell713b15b2009-06-12 22:26:58 -06001385 dev->num_vq++;
Rusty Russella586d4f2008-02-04 23:49:56 -05001386 dev->desc->num_vq++;
1387
1388 verbose("Virtqueue page %#lx\n", to_guest_phys(p));
Rusty Russell17cbca22007-10-22 11:24:22 +10001389
Rusty Russell2e04ef72009-07-30 16:03:45 -06001390 /*
1391 * Add to tail of list, so dev->vq is first vq, dev->vq->next is
1392 * second.
1393 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001394 for (i = &dev->vq; *i; i = &(*i)->next);
1395 *i = vq;
Rusty Russell17cbca22007-10-22 11:24:22 +10001396}
1397
Rusty Russell2e04ef72009-07-30 16:03:45 -06001398/*
1399 * The first half of the feature bitmask is for us to advertise features. The
1400 * second half is for the Guest to accept features.
1401 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001402static void add_feature(struct device *dev, unsigned bit)
1403{
Rusty Russell6e5aa7e2008-02-04 23:50:03 -05001404 u8 *features = get_feature_bits(dev);
Rusty Russella586d4f2008-02-04 23:49:56 -05001405
1406 /* We can't extend the feature bits once we've added config bytes */
1407 if (dev->desc->feature_len <= bit / CHAR_BIT) {
1408 assert(dev->desc->config_len == 0);
Rusty Russell713b15b2009-06-12 22:26:58 -06001409 dev->feature_len = dev->desc->feature_len = (bit/CHAR_BIT) + 1;
Rusty Russella586d4f2008-02-04 23:49:56 -05001410 }
1411
Rusty Russella586d4f2008-02-04 23:49:56 -05001412 features[bit / CHAR_BIT] |= (1 << (bit % CHAR_BIT));
1413}
1414
Rusty Russell2e04ef72009-07-30 16:03:45 -06001415/*
1416 * This routine sets the configuration fields for an existing device's
Rusty Russella586d4f2008-02-04 23:49:56 -05001417 * descriptor. It only works for the last device, but that's OK because that's
Rusty Russell2e04ef72009-07-30 16:03:45 -06001418 * how we use it.
1419 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001420static void set_config(struct device *dev, unsigned len, const void *conf)
1421{
1422 /* Check we haven't overflowed our single page. */
1423 if (device_config(dev) + len > devices.descpage + getpagesize())
1424 errx(1, "Too many devices");
1425
1426 /* Copy in the config information, and store the length. */
1427 memcpy(device_config(dev), conf, len);
1428 dev->desc->config_len = len;
Rusty Russell8ef562d2009-07-30 16:03:43 -06001429
1430 /* Size must fit in config_len field (8 bits)! */
1431 assert(dev->desc->config_len == len);
Rusty Russella586d4f2008-02-04 23:49:56 -05001432}
1433
Rusty Russell2e04ef72009-07-30 16:03:45 -06001434/*
1435 * This routine does all the creation and setup of a new device, including
Rusty Russella91d74a2009-07-30 16:03:45 -06001436 * calling new_dev_desc() to allocate the descriptor and device memory. We
1437 * don't actually start the service threads until later.
Rusty Russella6bd8e12008-03-28 11:05:53 -05001438 *
Rusty Russell2e04ef72009-07-30 16:03:45 -06001439 * See what I mean about userspace being boring?
1440 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001441static struct device *new_device(const char *name, u16 type)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001442{
1443 struct device *dev = malloc(sizeof(*dev));
1444
Rusty Russelldde79782007-07-26 10:41:03 -07001445 /* Now we populate the fields one at a time. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001446 dev->desc = new_dev_desc(type);
Rusty Russell17cbca22007-10-22 11:24:22 +10001447 dev->name = name;
Rusty Russelld1c856e2007-11-19 11:20:40 -05001448 dev->vq = NULL;
Rusty Russell713b15b2009-06-12 22:26:58 -06001449 dev->feature_len = 0;
1450 dev->num_vq = 0;
Rusty Russell659a0e62009-06-12 22:27:10 -06001451 dev->running = false;
Rusty Russellca16f582012-10-04 12:03:25 +09301452 dev->next = NULL;
Rusty Russella586d4f2008-02-04 23:49:56 -05001453
Rusty Russell2e04ef72009-07-30 16:03:45 -06001454 /*
1455 * Append to device list. Prepending to a single-linked list is
Rusty Russella586d4f2008-02-04 23:49:56 -05001456 * easier, but the user expects the devices to be arranged on the bus
1457 * in command-line order. The first network device on the command line
Rusty Russell2e04ef72009-07-30 16:03:45 -06001458 * is eth0, the first block device /dev/vda, etc.
1459 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001460 if (devices.lastdev)
1461 devices.lastdev->next = dev;
1462 else
1463 devices.dev = dev;
1464 devices.lastdev = dev;
1465
Rusty Russell8ca47e02007-07-19 01:49:29 -07001466 return dev;
1467}
1468
Rusty Russell2e04ef72009-07-30 16:03:45 -06001469/*
1470 * Our first setup routine is the console. It's a fairly simple device, but
1471 * UNIX tty handling makes it uglier than it could be.
1472 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001473static void setup_console(void)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001474{
1475 struct device *dev;
1476
Rusty Russelldde79782007-07-26 10:41:03 -07001477 /* If we can save the initial standard input settings... */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001478 if (tcgetattr(STDIN_FILENO, &orig_term) == 0) {
1479 struct termios term = orig_term;
Rusty Russell2e04ef72009-07-30 16:03:45 -06001480 /*
1481 * Then we turn off echo, line buffering and ^C etc: We want a
1482 * raw input stream to the Guest.
1483 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001484 term.c_lflag &= ~(ISIG|ICANON|ECHO);
1485 tcsetattr(STDIN_FILENO, TCSANOW, &term);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001486 }
1487
Rusty Russell659a0e62009-06-12 22:27:10 -06001488 dev = new_device("console", VIRTIO_ID_CONSOLE);
1489
Rusty Russelldde79782007-07-26 10:41:03 -07001490 /* We store the console state in dev->priv, and initialize it. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001491 dev->priv = malloc(sizeof(struct console_abort));
1492 ((struct console_abort *)dev->priv)->count = 0;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001493
Rusty Russell2e04ef72009-07-30 16:03:45 -06001494 /*
1495 * The console needs two virtqueues: the input then the output. When
Rusty Russell56ae43d2007-10-22 11:24:23 +10001496 * they put something the input queue, we make sure we're listening to
1497 * stdin. When they put something in the output queue, we write it to
Rusty Russell2e04ef72009-07-30 16:03:45 -06001498 * stdout.
1499 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001500 add_virtqueue(dev, VIRTQUEUE_NUM, console_input);
1501 add_virtqueue(dev, VIRTQUEUE_NUM, console_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001502
Rusty Russell659a0e62009-06-12 22:27:10 -06001503 verbose("device %u: console\n", ++devices.device_num);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001504}
Rusty Russelldde79782007-07-26 10:41:03 -07001505/*:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07001506
Rusty Russell2e04ef72009-07-30 16:03:45 -06001507/*M:010
1508 * Inter-guest networking is an interesting area. Simplest is to have a
Rusty Russell17cbca22007-10-22 11:24:22 +10001509 * --sharenet=<name> option which opens or creates a named pipe. This can be
1510 * used to send packets to another guest in a 1:1 manner.
1511 *
Rusty Russell9f542882011-07-22 14:39:50 +09301512 * More sophisticated is to use one of the tools developed for project like UML
Rusty Russell17cbca22007-10-22 11:24:22 +10001513 * to do networking.
1514 *
1515 * Faster is to do virtio bonding in kernel. Doing this 1:1 would be
1516 * completely generic ("here's my vring, attach to your vring") and would work
1517 * for any traffic. Of course, namespace and permissions issues need to be
1518 * dealt with. A more sophisticated "multi-channel" virtio_net.c could hide
1519 * multiple inter-guest channels behind one interface, although it would
1520 * require some manner of hotplugging new virtio channels.
1521 *
Rusty Russell9f542882011-07-22 14:39:50 +09301522 * Finally, we could use a virtio network switch in the kernel, ie. vhost.
Rusty Russell2e04ef72009-07-30 16:03:45 -06001523:*/
Rusty Russell17cbca22007-10-22 11:24:22 +10001524
Rusty Russell8ca47e02007-07-19 01:49:29 -07001525static u32 str2ip(const char *ipaddr)
1526{
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001527 unsigned int b[4];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001528
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001529 if (sscanf(ipaddr, "%u.%u.%u.%u", &b[0], &b[1], &b[2], &b[3]) != 4)
1530 errx(1, "Failed to parse IP address '%s'", ipaddr);
1531 return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];
1532}
1533
1534static void str2mac(const char *macaddr, unsigned char mac[6])
1535{
1536 unsigned int m[6];
1537 if (sscanf(macaddr, "%02x:%02x:%02x:%02x:%02x:%02x",
1538 &m[0], &m[1], &m[2], &m[3], &m[4], &m[5]) != 6)
1539 errx(1, "Failed to parse mac address '%s'", macaddr);
1540 mac[0] = m[0];
1541 mac[1] = m[1];
1542 mac[2] = m[2];
1543 mac[3] = m[3];
1544 mac[4] = m[4];
1545 mac[5] = m[5];
Rusty Russell8ca47e02007-07-19 01:49:29 -07001546}
1547
Rusty Russell2e04ef72009-07-30 16:03:45 -06001548/*
1549 * This code is "adapted" from libbridge: it attaches the Host end of the
Rusty Russelldde79782007-07-26 10:41:03 -07001550 * network device to the bridge device specified by the command line.
1551 *
1552 * This is yet another James Morris contribution (I'm an IP-level guy, so I
Rusty Russell2e04ef72009-07-30 16:03:45 -06001553 * dislike bridging), and I just try not to break it.
1554 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001555static void add_to_bridge(int fd, const char *if_name, const char *br_name)
1556{
1557 int ifidx;
1558 struct ifreq ifr;
1559
1560 if (!*br_name)
1561 errx(1, "must specify bridge name");
1562
1563 ifidx = if_nametoindex(if_name);
1564 if (!ifidx)
1565 errx(1, "interface %s does not exist!", if_name);
1566
1567 strncpy(ifr.ifr_name, br_name, IFNAMSIZ);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001568 ifr.ifr_name[IFNAMSIZ-1] = '\0';
Rusty Russell8ca47e02007-07-19 01:49:29 -07001569 ifr.ifr_ifindex = ifidx;
1570 if (ioctl(fd, SIOCBRADDIF, &ifr) < 0)
1571 err(1, "can't add %s to bridge %s", if_name, br_name);
1572}
1573
Rusty Russell2e04ef72009-07-30 16:03:45 -06001574/*
1575 * This sets up the Host end of the network device with an IP address, brings
Rusty Russelldde79782007-07-26 10:41:03 -07001576 * it up so packets will flow, the copies the MAC address into the hwaddr
Rusty Russell2e04ef72009-07-30 16:03:45 -06001577 * pointer.
1578 */
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001579static void configure_device(int fd, const char *tapif, u32 ipaddr)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001580{
1581 struct ifreq ifr;
Rusty Russellf8466192010-08-27 08:39:48 -06001582 struct sockaddr_in sin;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001583
1584 memset(&ifr, 0, sizeof(ifr));
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001585 strcpy(ifr.ifr_name, tapif);
1586
1587 /* Don't read these incantations. Just cut & paste them like I did! */
Rusty Russellf8466192010-08-27 08:39:48 -06001588 sin.sin_family = AF_INET;
1589 sin.sin_addr.s_addr = htonl(ipaddr);
1590 memcpy(&ifr.ifr_addr, &sin, sizeof(sin));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001591 if (ioctl(fd, SIOCSIFADDR, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001592 err(1, "Setting %s interface address", tapif);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001593 ifr.ifr_flags = IFF_UP;
1594 if (ioctl(fd, SIOCSIFFLAGS, &ifr) != 0)
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001595 err(1, "Bringing interface %s up", tapif);
1596}
1597
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001598static int get_tun_device(char tapif[IFNAMSIZ])
Rusty Russell8ca47e02007-07-19 01:49:29 -07001599{
Rusty Russell8ca47e02007-07-19 01:49:29 -07001600 struct ifreq ifr;
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001601 int netfd;
1602
1603 /* Start with this zeroed. Messy but sure. */
1604 memset(&ifr, 0, sizeof(ifr));
Rusty Russell8ca47e02007-07-19 01:49:29 -07001605
Rusty Russell2e04ef72009-07-30 16:03:45 -06001606 /*
1607 * We open the /dev/net/tun device and tell it we want a tap device. A
Rusty Russelldde79782007-07-26 10:41:03 -07001608 * tap device is like a tun device, only somehow different. To tell
1609 * the truth, I completely blundered my way through this code, but it
Rusty Russell2e04ef72009-07-30 16:03:45 -06001610 * works now!
1611 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001612 netfd = open_or_die("/dev/net/tun", O_RDWR);
Rusty Russell398f1872008-07-29 09:58:37 -05001613 ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_VNET_HDR;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001614 strcpy(ifr.ifr_name, "tap%d");
1615 if (ioctl(netfd, TUNSETIFF, &ifr) != 0)
1616 err(1, "configuring /dev/net/tun");
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001617
Rusty Russell398f1872008-07-29 09:58:37 -05001618 if (ioctl(netfd, TUNSETOFFLOAD,
1619 TUN_F_CSUM|TUN_F_TSO4|TUN_F_TSO6|TUN_F_TSO_ECN) != 0)
1620 err(1, "Could not set features for tun device");
1621
Rusty Russell2e04ef72009-07-30 16:03:45 -06001622 /*
1623 * We don't need checksums calculated for packets coming in this
1624 * device: trust us!
1625 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001626 ioctl(netfd, TUNSETNOCSUM, 1);
1627
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001628 memcpy(tapif, ifr.ifr_name, IFNAMSIZ);
1629 return netfd;
1630}
1631
Rusty Russell2e04ef72009-07-30 16:03:45 -06001632/*L:195
1633 * Our network is a Host<->Guest network. This can either use bridging or
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001634 * routing, but the principle is the same: it uses the "tun" device to inject
1635 * packets into the Host as if they came in from a normal network card. We
Rusty Russell2e04ef72009-07-30 16:03:45 -06001636 * just shunt packets between the Guest and the tun device.
1637 */
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001638static void setup_tun_net(char *arg)
1639{
1640 struct device *dev;
Rusty Russell659a0e62009-06-12 22:27:10 -06001641 struct net_info *net_info = malloc(sizeof(*net_info));
1642 int ipfd;
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001643 u32 ip = INADDR_ANY;
1644 bool bridging = false;
1645 char tapif[IFNAMSIZ], *p;
1646 struct virtio_net_config conf;
1647
Rusty Russell659a0e62009-06-12 22:27:10 -06001648 net_info->tunfd = get_tun_device(tapif);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001649
Rusty Russell17cbca22007-10-22 11:24:22 +10001650 /* First we create a new network device. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001651 dev = new_device("net", VIRTIO_ID_NET);
1652 dev->priv = net_info;
Rusty Russelldde79782007-07-26 10:41:03 -07001653
Rusty Russell2e04ef72009-07-30 16:03:45 -06001654 /* Network devices need a recv and a send queue, just like console. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001655 add_virtqueue(dev, VIRTQUEUE_NUM, net_input);
1656 add_virtqueue(dev, VIRTQUEUE_NUM, net_output);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001657
Rusty Russell2e04ef72009-07-30 16:03:45 -06001658 /*
1659 * We need a socket to perform the magic network ioctls to bring up the
1660 * tap interface, connect to the bridge etc. Any socket will do!
1661 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001662 ipfd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
1663 if (ipfd < 0)
1664 err(1, "opening IP socket");
1665
Rusty Russelldde79782007-07-26 10:41:03 -07001666 /* If the command line was --tunnet=bridge:<name> do bridging. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001667 if (!strncmp(BRIDGE_PFX, arg, strlen(BRIDGE_PFX))) {
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001668 arg += strlen(BRIDGE_PFX);
1669 bridging = true;
1670 }
1671
1672 /* A mac address may follow the bridge name or IP address */
1673 p = strchr(arg, ':');
1674 if (p) {
1675 str2mac(p+1, conf.mac);
Rusty Russell40c42072008-08-12 17:52:51 -05001676 add_feature(dev, VIRTIO_NET_F_MAC);
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001677 *p = '\0';
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001678 }
1679
1680 /* arg is now either an IP address or a bridge name */
1681 if (bridging)
1682 add_to_bridge(ipfd, tapif, arg);
1683 else
Rusty Russell8ca47e02007-07-19 01:49:29 -07001684 ip = str2ip(arg);
1685
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001686 /* Set up the tun device. */
1687 configure_device(ipfd, tapif, ip);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001688
Rusty Russell398f1872008-07-29 09:58:37 -05001689 /* Expect Guest to handle everything except UFO */
1690 add_feature(dev, VIRTIO_NET_F_CSUM);
1691 add_feature(dev, VIRTIO_NET_F_GUEST_CSUM);
Rusty Russell398f1872008-07-29 09:58:37 -05001692 add_feature(dev, VIRTIO_NET_F_GUEST_TSO4);
1693 add_feature(dev, VIRTIO_NET_F_GUEST_TSO6);
1694 add_feature(dev, VIRTIO_NET_F_GUEST_ECN);
1695 add_feature(dev, VIRTIO_NET_F_HOST_TSO4);
1696 add_feature(dev, VIRTIO_NET_F_HOST_TSO6);
1697 add_feature(dev, VIRTIO_NET_F_HOST_ECN);
Mark McLoughlind1f01322009-05-11 18:11:46 +01001698 /* We handle indirect ring entries */
1699 add_feature(dev, VIRTIO_RING_F_INDIRECT_DESC);
Rusty Russell927cfb92013-07-15 10:50:13 +09301700 /* We're compliant with the damn spec. */
1701 add_feature(dev, VIRTIO_F_ANY_LAYOUT);
Rusty Russella586d4f2008-02-04 23:49:56 -05001702 set_config(dev, sizeof(conf), &conf);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001703
Rusty Russella586d4f2008-02-04 23:49:56 -05001704 /* We don't need the socket any more; setup is done. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001705 close(ipfd);
1706
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05001707 devices.device_num++;
1708
1709 if (bridging)
1710 verbose("device %u: tun %s attached to bridge: %s\n",
1711 devices.device_num, tapif, arg);
1712 else
1713 verbose("device %u: tun %s: %s\n",
1714 devices.device_num, tapif, arg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001715}
Rusty Russella91d74a2009-07-30 16:03:45 -06001716/*:*/
Rusty Russell17cbca22007-10-22 11:24:22 +10001717
Rusty Russelle1e72962007-10-25 15:02:50 +10001718/* This hangs off device->priv. */
Rusty Russell1842f232009-07-30 16:03:46 -06001719struct vblk_info {
Rusty Russell17cbca22007-10-22 11:24:22 +10001720 /* The size of the file. */
1721 off64_t len;
1722
1723 /* The file descriptor for the file. */
1724 int fd;
1725
Rusty Russell17cbca22007-10-22 11:24:22 +10001726};
1727
Rusty Russelle1e72962007-10-25 15:02:50 +10001728/*L:210
1729 * The Disk
1730 *
Rusty Russella91d74a2009-07-30 16:03:45 -06001731 * The disk only has one virtqueue, so it only has one thread. It is really
1732 * simple: the Guest asks for a block number and we read or write that position
1733 * in the file.
1734 *
1735 * Before we serviced each virtqueue in a separate thread, that was unacceptably
1736 * slow: the Guest waits until the read is finished before running anything
1737 * else, even if it could have been doing useful work.
1738 *
1739 * We could have used async I/O, except it's reputed to suck so hard that
1740 * characters actually go missing from your code when you try to use it.
Rusty Russelle1e72962007-10-25 15:02:50 +10001741 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001742static void blk_request(struct virtqueue *vq)
Rusty Russell17cbca22007-10-22 11:24:22 +10001743{
Rusty Russell659a0e62009-06-12 22:27:10 -06001744 struct vblk_info *vblk = vq->dev->priv;
Rusty Russell17cbca22007-10-22 11:24:22 +10001745 unsigned int head, out_num, in_num, wlen;
Rusty Russellc0316a92012-10-16 23:56:13 +10301746 int ret, i;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001747 u8 *in;
Rusty Russellc0316a92012-10-16 23:56:13 +10301748 struct virtio_blk_outhdr out;
Rusty Russell659a0e62009-06-12 22:27:10 -06001749 struct iovec iov[vq->vring.num];
Rusty Russell17cbca22007-10-22 11:24:22 +10001750 off64_t off;
1751
Rusty Russella91d74a2009-07-30 16:03:45 -06001752 /*
1753 * Get the next request, where we normally wait. It triggers the
1754 * interrupt to acknowledge previously serviced requests (if any).
1755 */
Rusty Russell659a0e62009-06-12 22:27:10 -06001756 head = wait_for_vq_desc(vq, iov, &out_num, &in_num);
Rusty Russell17cbca22007-10-22 11:24:22 +10001757
Rusty Russellc0316a92012-10-16 23:56:13 +10301758 /* Copy the output header from the front of the iov (adjusts iov) */
1759 iov_consume(iov, out_num, &out, sizeof(out));
Rusty Russell17cbca22007-10-22 11:24:22 +10001760
Rusty Russellc0316a92012-10-16 23:56:13 +10301761 /* Find and trim end of iov input array, for our status byte. */
1762 in = NULL;
1763 for (i = out_num + in_num - 1; i >= out_num; i--) {
1764 if (iov[i].iov_len > 0) {
1765 in = iov[i].iov_base + iov[i].iov_len - 1;
1766 iov[i].iov_len--;
1767 break;
1768 }
1769 }
1770 if (!in)
1771 errx(1, "Bad virtblk cmd with no room for status");
1772
Rusty Russella91d74a2009-07-30 16:03:45 -06001773 /*
1774 * For historical reasons, block operations are expressed in 512 byte
1775 * "sectors".
1776 */
Rusty Russellc0316a92012-10-16 23:56:13 +10301777 off = out.sector * 512;
Rusty Russell17cbca22007-10-22 11:24:22 +10001778
Rusty Russell2e04ef72009-07-30 16:03:45 -06001779 /*
Rusty Russell2e04ef72009-07-30 16:03:45 -06001780 * In general the virtio block driver is allowed to try SCSI commands.
1781 * It'd be nice if we supported eject, for example, but we don't.
1782 */
Rusty Russellc0316a92012-10-16 23:56:13 +10301783 if (out.type & VIRTIO_BLK_T_SCSI_CMD) {
Rusty Russell17cbca22007-10-22 11:24:22 +10001784 fprintf(stderr, "Scsi commands unsupported\n");
Rusty Russellcb38fa22008-05-02 21:50:45 -05001785 *in = VIRTIO_BLK_S_UNSUPP;
Anthony Liguori1200e642007-11-08 21:13:44 -06001786 wlen = sizeof(*in);
Rusty Russellc0316a92012-10-16 23:56:13 +10301787 } else if (out.type & VIRTIO_BLK_T_OUT) {
Rusty Russell2e04ef72009-07-30 16:03:45 -06001788 /*
1789 * Write
1790 *
1791 * Move to the right location in the block file. This can fail
1792 * if they try to write past end.
1793 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001794 if (lseek64(vblk->fd, off, SEEK_SET) != off)
Rusty Russellc0316a92012-10-16 23:56:13 +10301795 err(1, "Bad seek to sector %llu", out.sector);
Rusty Russell17cbca22007-10-22 11:24:22 +10001796
Rusty Russellc0316a92012-10-16 23:56:13 +10301797 ret = writev(vblk->fd, iov, out_num);
1798 verbose("WRITE to sector %llu: %i\n", out.sector, ret);
Rusty Russell17cbca22007-10-22 11:24:22 +10001799
Rusty Russell2e04ef72009-07-30 16:03:45 -06001800 /*
1801 * Grr... Now we know how long the descriptor they sent was, we
Rusty Russell17cbca22007-10-22 11:24:22 +10001802 * make sure they didn't try to write over the end of the block
Rusty Russell2e04ef72009-07-30 16:03:45 -06001803 * file (possibly extending it).
1804 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001805 if (ret > 0 && off + ret > vblk->len) {
1806 /* Trim it back to the correct length */
1807 ftruncate64(vblk->fd, vblk->len);
1808 /* Die, bad Guest, die. */
1809 errx(1, "Write past end %llu+%u", off, ret);
1810 }
Tejun Heo7bc9fdd2010-09-03 11:56:18 +02001811
1812 wlen = sizeof(*in);
1813 *in = (ret >= 0 ? VIRTIO_BLK_S_OK : VIRTIO_BLK_S_IOERR);
Rusty Russellc0316a92012-10-16 23:56:13 +10301814 } else if (out.type & VIRTIO_BLK_T_FLUSH) {
Tejun Heo7bc9fdd2010-09-03 11:56:18 +02001815 /* Flush */
1816 ret = fdatasync(vblk->fd);
1817 verbose("FLUSH fdatasync: %i\n", ret);
Anthony Liguori1200e642007-11-08 21:13:44 -06001818 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001819 *in = (ret >= 0 ? VIRTIO_BLK_S_OK : VIRTIO_BLK_S_IOERR);
Rusty Russell17cbca22007-10-22 11:24:22 +10001820 } else {
Rusty Russell2e04ef72009-07-30 16:03:45 -06001821 /*
1822 * Read
1823 *
1824 * Move to the right location in the block file. This can fail
1825 * if they try to read past end.
1826 */
Rusty Russell17cbca22007-10-22 11:24:22 +10001827 if (lseek64(vblk->fd, off, SEEK_SET) != off)
Rusty Russellc0316a92012-10-16 23:56:13 +10301828 err(1, "Bad seek to sector %llu", out.sector);
Rusty Russell17cbca22007-10-22 11:24:22 +10001829
Rusty Russellc0316a92012-10-16 23:56:13 +10301830 ret = readv(vblk->fd, iov + out_num, in_num);
Rusty Russell17cbca22007-10-22 11:24:22 +10001831 if (ret >= 0) {
Anthony Liguori1200e642007-11-08 21:13:44 -06001832 wlen = sizeof(*in) + ret;
Rusty Russellcb38fa22008-05-02 21:50:45 -05001833 *in = VIRTIO_BLK_S_OK;
Rusty Russell17cbca22007-10-22 11:24:22 +10001834 } else {
Anthony Liguori1200e642007-11-08 21:13:44 -06001835 wlen = sizeof(*in);
Rusty Russellcb38fa22008-05-02 21:50:45 -05001836 *in = VIRTIO_BLK_S_IOERR;
Rusty Russell17cbca22007-10-22 11:24:22 +10001837 }
1838 }
1839
Rusty Russella91d74a2009-07-30 16:03:45 -06001840 /* Finished that request. */
Rusty Russell38bc2b82009-06-12 22:27:11 -06001841 add_used(vq, head, wlen);
Rusty Russell17cbca22007-10-22 11:24:22 +10001842}
1843
Rusty Russelle1e72962007-10-25 15:02:50 +10001844/*L:198 This actually sets up a virtual block device. */
Rusty Russell17cbca22007-10-22 11:24:22 +10001845static void setup_block_file(const char *filename)
1846{
Rusty Russell17cbca22007-10-22 11:24:22 +10001847 struct device *dev;
1848 struct vblk_info *vblk;
Rusty Russella586d4f2008-02-04 23:49:56 -05001849 struct virtio_blk_config conf;
Rusty Russell17cbca22007-10-22 11:24:22 +10001850
Rusty Russell2e04ef72009-07-30 16:03:45 -06001851 /* Creat the device. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001852 dev = new_device("block", VIRTIO_ID_BLOCK);
Rusty Russell17cbca22007-10-22 11:24:22 +10001853
Rusty Russelle1e72962007-10-25 15:02:50 +10001854 /* The device has one virtqueue, where the Guest places requests. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001855 add_virtqueue(dev, VIRTQUEUE_NUM, blk_request);
Rusty Russell17cbca22007-10-22 11:24:22 +10001856
1857 /* Allocate the room for our own bookkeeping */
1858 vblk = dev->priv = malloc(sizeof(*vblk));
1859
1860 /* First we open the file and store the length. */
1861 vblk->fd = open_or_die(filename, O_RDWR|O_LARGEFILE);
1862 vblk->len = lseek64(vblk->fd, 0, SEEK_END);
1863
Tejun Heo7bc9fdd2010-09-03 11:56:18 +02001864 /* We support FLUSH. */
1865 add_feature(dev, VIRTIO_BLK_F_FLUSH);
Rusty Russella586d4f2008-02-04 23:49:56 -05001866
Rusty Russell17cbca22007-10-22 11:24:22 +10001867 /* Tell Guest how many sectors this device has. */
Rusty Russella586d4f2008-02-04 23:49:56 -05001868 conf.capacity = cpu_to_le64(vblk->len / 512);
Rusty Russell17cbca22007-10-22 11:24:22 +10001869
Rusty Russell2e04ef72009-07-30 16:03:45 -06001870 /*
1871 * Tell Guest not to put in too many descriptors at once: two are used
1872 * for the in and out elements.
1873 */
Rusty Russella586d4f2008-02-04 23:49:56 -05001874 add_feature(dev, VIRTIO_BLK_F_SEG_MAX);
1875 conf.seg_max = cpu_to_le32(VIRTQUEUE_NUM - 2);
1876
Rusty Russell8ef562d2009-07-30 16:03:43 -06001877 /* Don't try to put whole struct: we have 8 bit limit. */
1878 set_config(dev, offsetof(struct virtio_blk_config, geometry), &conf);
Rusty Russell17cbca22007-10-22 11:24:22 +10001879
Rusty Russell17cbca22007-10-22 11:24:22 +10001880 verbose("device %u: virtblock %llu sectors\n",
Rusty Russell659a0e62009-06-12 22:27:10 -06001881 ++devices.device_num, le64_to_cpu(conf.capacity));
Rusty Russell17cbca22007-10-22 11:24:22 +10001882}
Rusty Russell28fd6d72008-07-29 09:58:33 -05001883
Rusty Russell2e04ef72009-07-30 16:03:45 -06001884/*L:211
Rusty Russella454bb32015-02-11 15:15:09 +10301885 * Our random number generator device reads from /dev/urandom into the Guest's
Rusty Russell28fd6d72008-07-29 09:58:33 -05001886 * input buffers. The usual case is that the Guest doesn't want random numbers
Rusty Russella454bb32015-02-11 15:15:09 +10301887 * and so has no buffers although /dev/urandom is still readable, whereas
Rusty Russell28fd6d72008-07-29 09:58:33 -05001888 * console is the reverse.
1889 *
Rusty Russell2e04ef72009-07-30 16:03:45 -06001890 * The same logic applies, however.
1891 */
1892struct rng_info {
1893 int rfd;
1894};
1895
Rusty Russell659a0e62009-06-12 22:27:10 -06001896static void rng_input(struct virtqueue *vq)
Rusty Russell28fd6d72008-07-29 09:58:33 -05001897{
1898 int len;
1899 unsigned int head, in_num, out_num, totlen = 0;
Rusty Russell659a0e62009-06-12 22:27:10 -06001900 struct rng_info *rng_info = vq->dev->priv;
1901 struct iovec iov[vq->vring.num];
Rusty Russell28fd6d72008-07-29 09:58:33 -05001902
1903 /* First we need a buffer from the Guests's virtqueue. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001904 head = wait_for_vq_desc(vq, iov, &out_num, &in_num);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001905 if (out_num)
1906 errx(1, "Output buffers in rng?");
1907
Rusty Russell2e04ef72009-07-30 16:03:45 -06001908 /*
Rusty Russella91d74a2009-07-30 16:03:45 -06001909 * Just like the console write, we loop to cover the whole iovec.
1910 * In this case, short reads actually happen quite a bit.
Rusty Russell2e04ef72009-07-30 16:03:45 -06001911 */
Rusty Russell28fd6d72008-07-29 09:58:33 -05001912 while (!iov_empty(iov, in_num)) {
Rusty Russell659a0e62009-06-12 22:27:10 -06001913 len = readv(rng_info->rfd, iov, in_num);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001914 if (len <= 0)
Rusty Russella454bb32015-02-11 15:15:09 +10301915 err(1, "Read from /dev/urandom gave %i", len);
Rusty Russellc0316a92012-10-16 23:56:13 +10301916 iov_consume(iov, in_num, NULL, len);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001917 totlen += len;
1918 }
1919
1920 /* Tell the Guest about the new input. */
Rusty Russell38bc2b82009-06-12 22:27:11 -06001921 add_used(vq, head, totlen);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001922}
1923
Rusty Russell2e04ef72009-07-30 16:03:45 -06001924/*L:199
1925 * This creates a "hardware" random number device for the Guest.
1926 */
Rusty Russell28fd6d72008-07-29 09:58:33 -05001927static void setup_rng(void)
1928{
1929 struct device *dev;
Rusty Russell659a0e62009-06-12 22:27:10 -06001930 struct rng_info *rng_info = malloc(sizeof(*rng_info));
Rusty Russell28fd6d72008-07-29 09:58:33 -05001931
Rusty Russella454bb32015-02-11 15:15:09 +10301932 /* Our device's private info simply contains the /dev/urandom fd. */
1933 rng_info->rfd = open_or_die("/dev/urandom", O_RDONLY);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001934
Rusty Russell2e04ef72009-07-30 16:03:45 -06001935 /* Create the new device. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001936 dev = new_device("rng", VIRTIO_ID_RNG);
1937 dev->priv = rng_info;
Rusty Russell28fd6d72008-07-29 09:58:33 -05001938
1939 /* The device has one virtqueue, where the Guest places inbufs. */
Rusty Russell659a0e62009-06-12 22:27:10 -06001940 add_virtqueue(dev, VIRTQUEUE_NUM, rng_input);
Rusty Russell28fd6d72008-07-29 09:58:33 -05001941
1942 verbose("device %u: rng\n", devices.device_num++);
1943}
Rusty Russella6bd8e12008-03-28 11:05:53 -05001944/* That's the end of device setup. */
Balaji Raoec04b132007-12-28 14:26:24 +05301945
Rusty Russella6bd8e12008-03-28 11:05:53 -05001946/*L:230 Reboot is pretty easy: clean up and exec() the Launcher afresh. */
Balaji Raoec04b132007-12-28 14:26:24 +05301947static void __attribute__((noreturn)) restart_guest(void)
1948{
1949 unsigned int i;
1950
Rusty Russell2e04ef72009-07-30 16:03:45 -06001951 /*
1952 * Since we don't track all open fds, we simply close everything beyond
1953 * stderr.
1954 */
Balaji Raoec04b132007-12-28 14:26:24 +05301955 for (i = 3; i < FD_SETSIZE; i++)
1956 close(i);
Rusty Russell8c798732008-07-29 09:58:38 -05001957
Rusty Russell659a0e62009-06-12 22:27:10 -06001958 /* Reset all the devices (kills all threads). */
1959 cleanup_devices();
1960
Balaji Raoec04b132007-12-28 14:26:24 +05301961 execv(main_args[0], main_args);
1962 err(1, "Could not exec %s", main_args[0]);
1963}
Rusty Russell8ca47e02007-07-19 01:49:29 -07001964
Rusty Russell2e04ef72009-07-30 16:03:45 -06001965/*L:220
1966 * Finally we reach the core of the Launcher which runs the Guest, serves
1967 * its input and output, and finally, lays it to rest.
1968 */
Rusty Russell56739c802009-06-12 22:26:59 -06001969static void __attribute__((noreturn)) run_guest(void)
Rusty Russell8ca47e02007-07-19 01:49:29 -07001970{
1971 for (;;) {
Rusty Russell69a09dc2015-02-11 15:15:09 +10301972 struct lguest_pending notify;
Rusty Russell8ca47e02007-07-19 01:49:29 -07001973 int readval;
1974
1975 /* We read from the /dev/lguest device to run the Guest. */
Rusty Russell69a09dc2015-02-11 15:15:09 +10301976 readval = pread(lguest_fd, &notify, sizeof(notify), cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001977
Rusty Russell17cbca22007-10-22 11:24:22 +10001978 /* One unsigned long means the Guest did HCALL_NOTIFY */
Rusty Russell69a09dc2015-02-11 15:15:09 +10301979 if (readval == sizeof(notify)) {
1980 if (notify.trap == 0x1F) {
1981 verbose("Notify on address %#08x\n",
1982 notify.addr);
1983 handle_output(notify.addr);
Rusty Russellc565650b2015-02-11 15:15:10 +10301984 } else if (notify.trap == 13) {
1985 verbose("Emulating instruction at %#x\n",
1986 getreg(eip));
1987 emulate_insn(notify.insn);
Rusty Russell69a09dc2015-02-11 15:15:09 +10301988 } else
1989 errx(1, "Unknown trap %i addr %#08x\n",
1990 notify.trap, notify.addr);
Rusty Russelldde79782007-07-26 10:41:03 -07001991 /* ENOENT means the Guest died. Reading tells us why. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07001992 } else if (errno == ENOENT) {
1993 char reason[1024] = { 0 };
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02001994 pread(lguest_fd, reason, sizeof(reason)-1, cpu_id);
Rusty Russell8ca47e02007-07-19 01:49:29 -07001995 errx(1, "%s", reason);
Balaji Raoec04b132007-12-28 14:26:24 +05301996 /* ERESTART means that we need to reboot the guest */
1997 } else if (errno == ERESTART) {
1998 restart_guest();
Rusty Russell659a0e62009-06-12 22:27:10 -06001999 /* Anything else means a bug or incompatible change. */
2000 } else
Rusty Russell8ca47e02007-07-19 01:49:29 -07002001 err(1, "Running guest failed");
Rusty Russell8ca47e02007-07-19 01:49:29 -07002002 }
2003}
Rusty Russella6bd8e12008-03-28 11:05:53 -05002004/*L:240
Rusty Russelle1e72962007-10-25 15:02:50 +10002005 * This is the end of the Launcher. The good news: we are over halfway
2006 * through! The bad news: the most fiendish part of the code still lies ahead
2007 * of us.
Rusty Russelldde79782007-07-26 10:41:03 -07002008 *
Rusty Russelle1e72962007-10-25 15:02:50 +10002009 * Are you ready? Take a deep breath and join me in the core of the Host, in
2010 * "make Host".
Rusty Russell2e04ef72009-07-30 16:03:45 -06002011:*/
Rusty Russell8ca47e02007-07-19 01:49:29 -07002012
2013static struct option opts[] = {
2014 { "verbose", 0, NULL, 'v' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07002015 { "tunnet", 1, NULL, 't' },
2016 { "block", 1, NULL, 'b' },
Rusty Russell28fd6d72008-07-29 09:58:33 -05002017 { "rng", 0, NULL, 'r' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07002018 { "initrd", 1, NULL, 'i' },
Philip Sanderson8aeb36e2011-01-20 21:37:28 -06002019 { "username", 1, NULL, 'u' },
2020 { "chroot", 1, NULL, 'c' },
Rusty Russell8ca47e02007-07-19 01:49:29 -07002021 { NULL },
2022};
2023static void usage(void)
2024{
2025 errx(1, "Usage: lguest [--verbose] "
Mark McLoughlindec6a2b2008-07-29 09:58:33 -05002026 "[--tunnet=(<ipaddr>:<macaddr>|bridge:<bridgename>:<macaddr>)\n"
Rusty Russell8ca47e02007-07-19 01:49:29 -07002027 "|--block=<filename>|--initrd=<filename>]...\n"
2028 "<mem-in-mb> vmlinux [args...]");
2029}
2030
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002031/*L:105 The main routine is where the real work begins: */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002032int main(int argc, char *argv[])
2033{
Rusty Russell2e04ef72009-07-30 16:03:45 -06002034 /* Memory, code startpoint and size of the (optional) initrd. */
Matias Zabaljauregui58a24562008-09-29 01:40:07 -03002035 unsigned long mem = 0, start, initrd_size = 0;
Rusty Russell56739c802009-06-12 22:26:59 -06002036 /* Two temporaries. */
2037 int i, c;
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002038 /* The boot information for the Guest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002039 struct boot_params *boot;
Rusty Russelldde79782007-07-26 10:41:03 -07002040 /* If they specify an initrd file to load. */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002041 const char *initrd_name = NULL;
2042
Philip Sanderson8aeb36e2011-01-20 21:37:28 -06002043 /* Password structure for initgroups/setres[gu]id */
2044 struct passwd *user_details = NULL;
2045
2046 /* Directory to chroot to */
2047 char *chroot_path = NULL;
2048
Balaji Raoec04b132007-12-28 14:26:24 +05302049 /* Save the args: we "reboot" by execing ourselves again. */
2050 main_args = argv;
Balaji Raoec04b132007-12-28 14:26:24 +05302051
Rusty Russell2e04ef72009-07-30 16:03:45 -06002052 /*
2053 * First we initialize the device list. We keep a pointer to the last
Rusty Russell659a0e62009-06-12 22:27:10 -06002054 * device, and the next interrupt number to use for devices (1:
Rusty Russell2e04ef72009-07-30 16:03:45 -06002055 * remember that 0 is used by the timer).
2056 */
Rusty Russella586d4f2008-02-04 23:49:56 -05002057 devices.lastdev = NULL;
Rusty Russell17cbca22007-10-22 11:24:22 +10002058 devices.next_irq = 1;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002059
Rusty Russella91d74a2009-07-30 16:03:45 -06002060 /* We're CPU 0. In fact, that's the only CPU possible right now. */
Glauber de Oliveira Costae3283fa2008-01-07 11:05:23 -02002061 cpu_id = 0;
Rusty Russella91d74a2009-07-30 16:03:45 -06002062
Rusty Russell2e04ef72009-07-30 16:03:45 -06002063 /*
2064 * We need to know how much memory so we can set up the device
Rusty Russelldde79782007-07-26 10:41:03 -07002065 * descriptor and memory pages for the devices as we parse the command
2066 * line. So we quickly look through the arguments to find the amount
Rusty Russell2e04ef72009-07-30 16:03:45 -06002067 * of memory now.
2068 */
Rusty Russell6570c45992007-07-23 18:43:56 -07002069 for (i = 1; i < argc; i++) {
2070 if (argv[i][0] != '-') {
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002071 mem = atoi(argv[i]) * 1024 * 1024;
Rusty Russell2e04ef72009-07-30 16:03:45 -06002072 /*
2073 * We start by mapping anonymous pages over all of
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002074 * guest-physical memory range. This fills it with 0,
2075 * and ensures that the Guest won't be killed when it
Rusty Russell2e04ef72009-07-30 16:03:45 -06002076 * tries to access it.
2077 */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002078 guest_base = map_zeroed_pages(mem / getpagesize()
2079 + DEVICE_PAGES);
2080 guest_limit = mem;
2081 guest_max = mem + DEVICE_PAGES*getpagesize();
Rusty Russell17cbca22007-10-22 11:24:22 +10002082 devices.descpage = get_pages(1);
Rusty Russell6570c45992007-07-23 18:43:56 -07002083 break;
2084 }
2085 }
Rusty Russelldde79782007-07-26 10:41:03 -07002086
2087 /* The options are fairly straight-forward */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002088 while ((c = getopt_long(argc, argv, "v", opts, NULL)) != EOF) {
2089 switch (c) {
2090 case 'v':
2091 verbose = true;
2092 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002093 case 't':
Rusty Russell17cbca22007-10-22 11:24:22 +10002094 setup_tun_net(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002095 break;
2096 case 'b':
Rusty Russell17cbca22007-10-22 11:24:22 +10002097 setup_block_file(optarg);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002098 break;
Rusty Russell28fd6d72008-07-29 09:58:33 -05002099 case 'r':
2100 setup_rng();
2101 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002102 case 'i':
2103 initrd_name = optarg;
2104 break;
Philip Sanderson8aeb36e2011-01-20 21:37:28 -06002105 case 'u':
2106 user_details = getpwnam(optarg);
2107 if (!user_details)
2108 err(1, "getpwnam failed, incorrect username?");
2109 break;
2110 case 'c':
2111 chroot_path = optarg;
2112 break;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002113 default:
2114 warnx("Unknown argument %s", argv[optind]);
2115 usage();
2116 }
2117 }
Rusty Russell2e04ef72009-07-30 16:03:45 -06002118 /*
2119 * After the other arguments we expect memory and kernel image name,
2120 * followed by command line arguments for the kernel.
2121 */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002122 if (optind + 2 > argc)
2123 usage();
2124
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002125 verbose("Guest base is at %p\n", guest_base);
2126
Rusty Russelldde79782007-07-26 10:41:03 -07002127 /* We always have a console device */
Rusty Russell17cbca22007-10-22 11:24:22 +10002128 setup_console();
Rusty Russell8ca47e02007-07-19 01:49:29 -07002129
Rusty Russell8ca47e02007-07-19 01:49:29 -07002130 /* Now we load the kernel */
Rusty Russell47436aa2007-10-22 11:03:36 +10002131 start = load_kernel(open_or_die(argv[optind+1], O_RDONLY));
Rusty Russell8ca47e02007-07-19 01:49:29 -07002132
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10002133 /* Boot information is stashed at physical address 0 */
2134 boot = from_guest_phys(0);
2135
Rusty Russelldde79782007-07-26 10:41:03 -07002136 /* Map the initrd image if requested (at top of physical memory) */
Rusty Russell8ca47e02007-07-19 01:49:29 -07002137 if (initrd_name) {
2138 initrd_size = load_initrd(initrd_name, mem);
Rusty Russell2e04ef72009-07-30 16:03:45 -06002139 /*
2140 * These are the location in the Linux boot header where the
2141 * start and size of the initrd are expected to be found.
2142 */
Rusty Russell43d33b22007-10-22 11:29:57 +10002143 boot->hdr.ramdisk_image = mem - initrd_size;
2144 boot->hdr.ramdisk_size = initrd_size;
Rusty Russelldde79782007-07-26 10:41:03 -07002145 /* The bootloader type 0xFF means "unknown"; that's OK. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002146 boot->hdr.type_of_loader = 0xFF;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002147 }
2148
Rusty Russell2e04ef72009-07-30 16:03:45 -06002149 /*
2150 * The Linux boot header contains an "E820" memory map: ours is a
2151 * simple, single region.
2152 */
Rusty Russell43d33b22007-10-22 11:29:57 +10002153 boot->e820_entries = 1;
2154 boot->e820_map[0] = ((struct e820entry) { 0, mem, E820_RAM });
Rusty Russell2e04ef72009-07-30 16:03:45 -06002155 /*
2156 * The boot header contains a command line pointer: we put the command
2157 * line after the boot header.
2158 */
Rusty Russell43d33b22007-10-22 11:29:57 +10002159 boot->hdr.cmd_line_ptr = to_guest_phys(boot + 1);
Rusty Russelle1e72962007-10-25 15:02:50 +10002160 /* We use a simple helper to copy the arguments separated by spaces. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002161 concat((char *)(boot + 1), argv+optind+2);
Rusty Russelldde79782007-07-26 10:41:03 -07002162
Rusty Russelle22a5392011-08-15 10:15:10 +09302163 /* Set kernel alignment to 16M (CONFIG_PHYSICAL_ALIGN) */
2164 boot->hdr.kernel_alignment = 0x1000000;
2165
Rusty Russell814a0e52007-10-22 11:29:44 +10002166 /* Boot protocol version: 2.07 supports the fields for lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002167 boot->hdr.version = 0x207;
Rusty Russell814a0e52007-10-22 11:29:44 +10002168
2169 /* The hardware_subarch value of "1" tells the Guest it's an lguest. */
Rusty Russell43d33b22007-10-22 11:29:57 +10002170 boot->hdr.hardware_subarch = 1;
Rusty Russell814a0e52007-10-22 11:29:44 +10002171
Rusty Russell43d33b22007-10-22 11:29:57 +10002172 /* Tell the entry path not to try to reload segment registers. */
2173 boot->hdr.loadflags |= KEEP_SEGMENTS;
Rusty Russell8ca47e02007-07-19 01:49:29 -07002174
Rusty Russell9f542882011-07-22 14:39:50 +09302175 /* We tell the kernel to initialize the Guest. */
Rusty Russell56739c802009-06-12 22:26:59 -06002176 tell_kernel(start);
Rusty Russelldde79782007-07-26 10:41:03 -07002177
Rusty Russella91d74a2009-07-30 16:03:45 -06002178 /* Ensure that we terminate if a device-servicing child dies. */
Rusty Russell659a0e62009-06-12 22:27:10 -06002179 signal(SIGCHLD, kill_launcher);
2180
2181 /* If we exit via err(), this kills all the threads, restores tty. */
2182 atexit(cleanup_devices);
Rusty Russell8ca47e02007-07-19 01:49:29 -07002183
Philip Sanderson8aeb36e2011-01-20 21:37:28 -06002184 /* If requested, chroot to a directory */
2185 if (chroot_path) {
2186 if (chroot(chroot_path) != 0)
2187 err(1, "chroot(\"%s\") failed", chroot_path);
2188
2189 if (chdir("/") != 0)
2190 err(1, "chdir(\"/\") failed");
2191
2192 verbose("chroot done\n");
2193 }
2194
2195 /* If requested, drop privileges */
2196 if (user_details) {
2197 uid_t u;
2198 gid_t g;
2199
2200 u = user_details->pw_uid;
2201 g = user_details->pw_gid;
2202
2203 if (initgroups(user_details->pw_name, g) != 0)
2204 err(1, "initgroups failed");
2205
2206 if (setresgid(g, g, g) != 0)
2207 err(1, "setresgid failed");
2208
2209 if (setresuid(u, u, u) != 0)
2210 err(1, "setresuid failed");
2211
2212 verbose("Dropping privileges completed\n");
2213 }
2214
Rusty Russelldde79782007-07-26 10:41:03 -07002215 /* Finally, run the Guest. This doesn't return. */
Rusty Russell56739c802009-06-12 22:26:59 -06002216 run_guest();
Rusty Russell8ca47e02007-07-19 01:49:29 -07002217}
Rusty Russellf56a3842007-07-26 10:41:05 -07002218/*:*/
2219
2220/*M:999
2221 * Mastery is done: you now know everything I do.
2222 *
2223 * But surely you have seen code, features and bugs in your wanderings which
2224 * you now yearn to attack? That is the real game, and I look forward to you
2225 * patching and forking lguest into the Your-Name-Here-visor.
2226 *
2227 * Farewell, and good coding!
2228 * Rusty Russell.
2229 */