lguest_user.c 12.3 KB
Newer Older
1 2
/*P:200 This contains all the /dev/lguest code, whereby the userspace launcher
 * controls and communicates with the Guest.  For example, the first write will
3 4 5 6
 * tell us the Guest's memory layout, pagetable, entry point and kernel address
 * offset.  A read will run the Guest until something happens, such as a signal
 * or the Guest doing a DMA out to the Launcher.  Writes are also used to get a
 * DMA buffer registered by the Guest and to send the Guest an interrupt. :*/
R
Rusty Russell 已提交
7 8 9 10 11
#include <linux/uaccess.h>
#include <linux/miscdevice.h>
#include <linux/fs.h>
#include "lg.h"

12 13 14 15 16
/*L:030 setup_regs() doesn't really belong in this file, but it gives us an
 * early glimpse deeper into the Host so it's worth having here.
 *
 * Most of the Guest's registers are left alone: we used get_zeroed_page() to
 * allocate the structure, so they will be 0. */
R
Rusty Russell 已提交
17 18
static void setup_regs(struct lguest_regs *regs, unsigned long start)
{
19 20 21 22 23 24 25
	/* There are four "segment" registers which the Guest needs to boot:
	 * The "code segment" register (cs) refers to the kernel code segment
	 * __KERNEL_CS, and the "data", "extra" and "stack" segment registers
	 * refer to the kernel data segment __KERNEL_DS.
	 *
	 * The privilege level is packed into the lower bits.  The Guest runs
	 * at privilege level 1 (GUEST_PL).*/
R
Rusty Russell 已提交
26 27
	regs->ds = regs->es = regs->ss = __KERNEL_DS|GUEST_PL;
	regs->cs = __KERNEL_CS|GUEST_PL;
28 29 30 31 32 33 34 35 36

	/* The "eflags" register contains miscellaneous flags.  Bit 1 (0x002)
	 * is supposed to always be "1".  Bit 9 (0x200) controls whether
	 * interrupts are enabled.  We always leave interrupts enabled while
	 * running the Guest. */
	regs->eflags = 0x202;

	/* The "Extended Instruction Pointer" register says where the Guest is
	 * running. */
R
Rusty Russell 已提交
37
	regs->eip = start;
38 39 40

	/* %esi points to our boot information, at physical address 0, so don't
	 * touch it. */
R
Rusty Russell 已提交
41 42
}

43 44 45
/*L:310 To send DMA into the Guest, the Launcher needs to be able to ask for a
 * DMA buffer.  This is done by writing LHREQ_GETDMA and the key to
 * /dev/lguest. */
46
static long user_get_dma(struct lguest *lg, const unsigned long __user *input)
R
Rusty Russell 已提交
47 48 49
{
	unsigned long key, udma, irq;

50
	/* Fetch the key they wrote to us. */
R
Rusty Russell 已提交
51 52
	if (get_user(key, input) != 0)
		return -EFAULT;
53
	/* Look for a free Guest DMA buffer bound to that key. */
R
Rusty Russell 已提交
54 55 56 57
	udma = get_dma_buffer(lg, key, &irq);
	if (!udma)
		return -ENOENT;

58 59
	/* We need to tell the Launcher what interrupt the Guest expects after
	 * the buffer is filled.  We stash it in udma->used_len. */
R
Rusty Russell 已提交
60
	lgwrite_u32(lg, udma + offsetof(struct lguest_dma, used_len), irq);
61 62 63

	/* The (guest-physical) address of the DMA buffer is returned from
	 * the write(). */
R
Rusty Russell 已提交
64 65 66
	return udma;
}

67
/*L:315 To force the Guest to stop running and return to the Launcher, the
R
Rusty Russell 已提交
68 69
 * Waker sets writes LHREQ_BREAK and the value "1" to /dev/lguest.  The
 * Launcher then writes LHREQ_BREAK and "0" to release the Waker. */
70
static int break_guest_out(struct lguest *lg, const unsigned long __user *input)
R
Rusty Russell 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
{
	unsigned long on;

	/* Fetch whether they're turning break on or off.. */
	if (get_user(on, input) != 0)
		return -EFAULT;

	if (on) {
		lg->break_out = 1;
		/* Pop it out (may be running on different CPU) */
		wake_up_process(lg->tsk);
		/* Wait for them to reset it */
		return wait_event_interruptible(lg->break_wq, !lg->break_out);
	} else {
		lg->break_out = 0;
		wake_up(&lg->break_wq);
		return 0;
	}
}

91 92
/*L:050 Sending an interrupt is done by writing LHREQ_IRQ and an interrupt
 * number to /dev/lguest. */
93
static int user_send_irq(struct lguest *lg, const unsigned long __user *input)
R
Rusty Russell 已提交
94
{
95
	unsigned long irq;
R
Rusty Russell 已提交
96 97 98 99 100

	if (get_user(irq, input) != 0)
		return -EFAULT;
	if (irq >= LGUEST_IRQS)
		return -EINVAL;
101 102
	/* Next time the Guest runs, the core code will see if it can deliver
	 * this interrupt. */
R
Rusty Russell 已提交
103 104 105 106
	set_bit(irq, lg->irqs_pending);
	return 0;
}

107 108
/*L:040 Once our Guest is initialized, the Launcher makes it run by reading
 * from /dev/lguest. */
R
Rusty Russell 已提交
109 110 111 112
static ssize_t read(struct file *file, char __user *user, size_t size,loff_t*o)
{
	struct lguest *lg = file->private_data;

113
	/* You must write LHREQ_INITIALIZE first! */
R
Rusty Russell 已提交
114 115 116 117 118 119 120
	if (!lg)
		return -EINVAL;

	/* If you're not the task which owns the guest, go away. */
	if (current != lg->tsk)
		return -EPERM;

121
	/* If the guest is already dead, we indicate why */
R
Rusty Russell 已提交
122 123 124
	if (lg->dead) {
		size_t len;

125
		/* lg->dead either contains an error code, or a string. */
R
Rusty Russell 已提交
126 127 128
		if (IS_ERR(lg->dead))
			return PTR_ERR(lg->dead);

129
		/* We can only return as much as the buffer they read with. */
R
Rusty Russell 已提交
130 131 132 133 134 135
		len = min(size, strlen(lg->dead)+1);
		if (copy_to_user(user, lg->dead, len) != 0)
			return -EFAULT;
		return len;
	}

136 137
	/* If we returned from read() last time because the Guest sent DMA,
	 * clear the flag. */
R
Rusty Russell 已提交
138 139 140
	if (lg->dma_is_pending)
		lg->dma_is_pending = 0;

141
	/* Run the Guest until something interesting happens. */
R
Rusty Russell 已提交
142 143 144
	return run_guest(lg, (unsigned long __user *)user);
}

145 146
/*L:020 The initialization write supplies 5 pointer sized (32 or 64 bit)
 * values (in addition to the LHREQ_INITIALIZE value).  These are:
147
 *
148 149
 * base: The start of the Guest-physical memory inside the Launcher memory.
 *
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
 * pfnlimit: The highest (Guest-physical) page number the Guest should be
 * allowed to access.  The Launcher has to live in Guest memory, so it sets
 * this to ensure the Guest can't reach it.
 *
 * pgdir: The (Guest-physical) address of the top of the initial Guest
 * pagetables (which are set up by the Launcher).
 *
 * start: The first instruction to execute ("eip" in x86-speak).
 *
 * page_offset: The PAGE_OFFSET constant in the Guest kernel.  We should
 * probably wean the code off this, but it's a very useful constant!  Any
 * address above this is within the Guest kernel, and any kernel address can
 * quickly converted from physical to virtual by adding PAGE_OFFSET.  It's
 * 0xC0000000 (3G) by default, but it's configurable at kernel build time.
 */
165
static int initialize(struct file *file, const unsigned long __user *input)
R
Rusty Russell 已提交
166
{
167 168
	/* "struct lguest" contains everything we (the Host) know about a
	 * Guest. */
R
Rusty Russell 已提交
169
	struct lguest *lg;
170
	int err;
171
	unsigned long args[5];
R
Rusty Russell 已提交
172

173 174
	/* We grab the Big Lguest lock, which protects against multiple
	 * simultaneous initializations. */
R
Rusty Russell 已提交
175
	mutex_lock(&lguest_lock);
176
	/* You can't initialize twice!  Close the device and start again... */
R
Rusty Russell 已提交
177 178 179 180 181 182 183 184 185 186
	if (file->private_data) {
		err = -EBUSY;
		goto unlock;
	}

	if (copy_from_user(args, input, sizeof(args)) != 0) {
		err = -EFAULT;
		goto unlock;
	}

187 188 189
	lg = kzalloc(sizeof(*lg), GFP_KERNEL);
	if (!lg) {
		err = -ENOMEM;
R
Rusty Russell 已提交
190 191
		goto unlock;
	}
192 193

	/* Populate the easy fields of our "struct lguest" */
194 195 196
	lg->mem_base = (void __user *)(long)args[0];
	lg->pfn_limit = args[1];
	lg->page_offset = args[4];
197 198 199

	/* We need a complete page for the Guest registers: they are accessible
	 * to the Guest and we can only grant it access to whole pages. */
R
Rusty Russell 已提交
200 201 202 203 204
	lg->regs_page = get_zeroed_page(GFP_KERNEL);
	if (!lg->regs_page) {
		err = -ENOMEM;
		goto release_guest;
	}
205
	/* We actually put the registers at the bottom of the page. */
R
Rusty Russell 已提交
206 207
	lg->regs = (void *)lg->regs_page + PAGE_SIZE - sizeof(*lg->regs);

208 209 210
	/* Initialize the Guest's shadow page tables, using the toplevel
	 * address the Launcher gave us.  This allocates memory, so can
	 * fail. */
211
	err = init_guest_pagetable(lg, args[2]);
R
Rusty Russell 已提交
212 213 214
	if (err)
		goto free_regs;

215 216
	/* Now we initialize the Guest's registers, handing it the start
	 * address. */
217
	setup_regs(lg->regs, args[3]);
218 219 220

	/* There are a couple of GDT entries the Guest expects when first
	 * booting. */
R
Rusty Russell 已提交
221
	setup_guest_gdt(lg);
222 223

	/* The timer for lguest's clock needs initialization. */
R
Rusty Russell 已提交
224
	init_clockdev(lg);
225 226 227

	/* We keep a pointer to the Launcher task (ie. current task) for when
	 * other Guests want to wake this one (inter-Guest I/O). */
R
Rusty Russell 已提交
228
	lg->tsk = current;
229 230 231
	/* We need to keep a pointer to the Launcher's memory map, because if
	 * the Launcher dies we need to clean it up.  If we don't keep a
	 * reference, it is destroyed before close() is called. */
R
Rusty Russell 已提交
232
	lg->mm = get_task_mm(lg->tsk);
233 234

	/* Initialize the queue for the waker to wait on */
R
Rusty Russell 已提交
235
	init_waitqueue_head(&lg->break_wq);
236 237 238

	/* We remember which CPU's pages this Guest used last, for optimization
	 * when the same Guest runs on the same CPU twice. */
R
Rusty Russell 已提交
239
	lg->last_pages = NULL;
240 241

	/* We keep our "struct lguest" in the file's private_data. */
R
Rusty Russell 已提交
242 243 244 245
	file->private_data = lg;

	mutex_unlock(&lguest_lock);

246
	/* And because this is a write() call, we return the length used. */
R
Rusty Russell 已提交
247 248 249 250 251 252 253 254 255 256 257
	return sizeof(args);

free_regs:
	free_page(lg->regs_page);
release_guest:
	memset(lg, 0, sizeof(*lg));
unlock:
	mutex_unlock(&lguest_lock);
	return err;
}

258 259 260 261
/*L:010 The first operation the Launcher does must be a write.  All writes
 * start with a 32 bit number: for the first write this must be
 * LHREQ_INITIALIZE to set up the Guest.  After that the Launcher can use
 * writes of other values to get DMA buffers and send interrupts. */
262
static ssize_t write(struct file *file, const char __user *in,
R
Rusty Russell 已提交
263 264
		     size_t size, loff_t *off)
{
265 266
	/* Once the guest is initialized, we hold the "struct lguest" in the
	 * file private data. */
R
Rusty Russell 已提交
267
	struct lguest *lg = file->private_data;
268 269
	const unsigned long __user *input = (const unsigned long __user *)in;
	unsigned long req;
R
Rusty Russell 已提交
270 271 272

	if (get_user(req, input) != 0)
		return -EFAULT;
273
	input++;
R
Rusty Russell 已提交
274

275
	/* If you haven't initialized, you must do that first. */
R
Rusty Russell 已提交
276 277
	if (req != LHREQ_INITIALIZE && !lg)
		return -EINVAL;
278 279

	/* Once the Guest is dead, all you can do is read() why it died. */
R
Rusty Russell 已提交
280 281 282 283 284 285 286 287 288
	if (lg && lg->dead)
		return -ENOENT;

	/* If you're not the task which owns the Guest, you can only break */
	if (lg && current != lg->tsk && req != LHREQ_BREAK)
		return -EPERM;

	switch (req) {
	case LHREQ_INITIALIZE:
289
		return initialize(file, input);
R
Rusty Russell 已提交
290
	case LHREQ_GETDMA:
291
		return user_get_dma(lg, input);
R
Rusty Russell 已提交
292
	case LHREQ_IRQ:
293
		return user_send_irq(lg, input);
R
Rusty Russell 已提交
294
	case LHREQ_BREAK:
295
		return break_guest_out(lg, input);
R
Rusty Russell 已提交
296 297 298 299 300
	default:
		return -EINVAL;
	}
}

301 302 303 304 305 306 307
/*L:060 The final piece of interface code is the close() routine.  It reverses
 * everything done in initialize().  This is usually called because the
 * Launcher exited.
 *
 * Note that the close routine returns 0 or a negative error number: it can't
 * really fail, but it can whine.  I blame Sun for this wart, and K&R C for
 * letting them do it. :*/
R
Rusty Russell 已提交
308 309 310 311
static int close(struct inode *inode, struct file *file)
{
	struct lguest *lg = file->private_data;

312
	/* If we never successfully initialized, there's nothing to clean up */
R
Rusty Russell 已提交
313 314 315
	if (!lg)
		return 0;

316 317
	/* We need the big lock, to protect from inter-guest I/O and other
	 * Launchers initializing guests. */
R
Rusty Russell 已提交
318 319 320
	mutex_lock(&lguest_lock);
	/* Cancels the hrtimer set via LHCALL_SET_CLOCKEVENT. */
	hrtimer_cancel(&lg->hrt);
321
	/* Free any DMA buffers the Guest had bound. */
R
Rusty Russell 已提交
322
	release_all_dma(lg);
323
	/* Free up the shadow page tables for the Guest. */
R
Rusty Russell 已提交
324
	free_guest_pagetable(lg);
325 326
	/* Now all the memory cleanups are done, it's safe to release the
	 * Launcher's memory management structure. */
R
Rusty Russell 已提交
327
	mmput(lg->mm);
328 329
	/* If lg->dead doesn't contain an error code it will be NULL or a
	 * kmalloc()ed string, either of which is ok to hand to kfree(). */
R
Rusty Russell 已提交
330 331
	if (!IS_ERR(lg->dead))
		kfree(lg->dead);
332
	/* We can free up the register page we allocated. */
R
Rusty Russell 已提交
333
	free_page(lg->regs_page);
334 335
	/* We clear the entire structure, which also marks it as free for the
	 * next user. */
R
Rusty Russell 已提交
336
	memset(lg, 0, sizeof(*lg));
337
	/* Release lock and exit. */
R
Rusty Russell 已提交
338
	mutex_unlock(&lguest_lock);
339

R
Rusty Russell 已提交
340 341 342
	return 0;
}

343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
/*L:000
 * Welcome to our journey through the Launcher!
 *
 * The Launcher is the Host userspace program which sets up, runs and services
 * the Guest.  In fact, many comments in the Drivers which refer to "the Host"
 * doing things are inaccurate: the Launcher does all the device handling for
 * the Guest.  The Guest can't tell what's done by the the Launcher and what by
 * the Host.
 *
 * Just to confuse you: to the Host kernel, the Launcher *is* the Guest and we
 * shall see more of that later.
 *
 * We begin our understanding with the Host kernel interface which the Launcher
 * uses: reading and writing a character device called /dev/lguest.  All the
 * work happens in the read(), write() and close() routines: */
R
Rusty Russell 已提交
358 359 360 361 362 363
static struct file_operations lguest_fops = {
	.owner	 = THIS_MODULE,
	.release = close,
	.write	 = write,
	.read	 = read,
};
364 365 366

/* This is a textbook example of a "misc" character device.  Populate a "struct
 * miscdevice" and register it with misc_register(). */
R
Rusty Russell 已提交
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
static struct miscdevice lguest_dev = {
	.minor	= MISC_DYNAMIC_MINOR,
	.name	= "lguest",
	.fops	= &lguest_fops,
};

int __init lguest_device_init(void)
{
	return misc_register(&lguest_dev);
}

void __exit lguest_device_remove(void)
{
	misc_deregister(&lguest_dev);
}