lguest_user.c 15.3 KB
Newer Older
R
Rusty Russell 已提交
1
/*P:200 This contains all the /dev/lguest code, whereby the userspace launcher
2
 * controls and communicates with the Guest.  For example, the first write will
R
Rusty Russell 已提交
3 4 5
 * tell us the Guest's memory layout and entry point.  A read will run the
 * Guest until something happens, such as a signal or the Guest doing a NOTIFY
 * out to the Launcher.
R
Rusty Russell 已提交
6
:*/
R
Rusty Russell 已提交
7 8 9
#include <linux/uaccess.h>
#include <linux/miscdevice.h>
#include <linux/fs.h>
10
#include <linux/sched.h>
11 12
#include <linux/eventfd.h>
#include <linux/file.h>
R
Rusty Russell 已提交
13 14
#include "lg.h"

R
Rusty Russell 已提交
15 16 17 18 19 20 21 22
/*L:056
 * Before we move on, let's jump ahead and look at what the kernel does when
 * it needs to look up the eventfds.  That will complete our picture of how we
 * use RCU.
 *
 * The notification value is in cpu->pending_notify: we return true if it went
 * to an eventfd.
 */
23 24 25 26 27
bool send_notify_to_eventfd(struct lg_cpu *cpu)
{
	unsigned int i;
	struct lg_eventfd_map *map;

R
Rusty Russell 已提交
28 29 30 31 32 33
	/*
	 * This "rcu_read_lock()" helps track when someone is still looking at
	 * the (RCU-using) eventfds array.  It's not actually a lock at all;
	 * indeed it's a noop in many configurations.  (You didn't expect me to
	 * explain all the RCU secrets here, did you?)
	 */
34
	rcu_read_lock();
R
Rusty Russell 已提交
35 36 37 38 39 40 41 42 43 44
	/*
	 * rcu_dereference is the counter-side of rcu_assign_pointer(); it
	 * makes sure we don't access the memory pointed to by
	 * cpu->lg->eventfds before cpu->lg->eventfds is set.  Sounds crazy,
	 * but Alpha allows this!  Paul McKenney points out that a really
	 * aggressive compiler could have the same effect:
	 *   http://lists.ozlabs.org/pipermail/lguest/2009-July/001560.html
	 *
	 * So play safe, use rcu_dereference to get the rcu-protected pointer:
	 */
45
	map = rcu_dereference(cpu->lg->eventfds);
R
Rusty Russell 已提交
46 47 48 49
	/*
	 * Simple array search: even if they add an eventfd while we do this,
	 * we'll continue to use the old array and just won't see the new one.
	 */
50 51 52 53 54 55 56
	for (i = 0; i < map->num; i++) {
		if (map->map[i].addr == cpu->pending_notify) {
			eventfd_signal(map->map[i].event, 1);
			cpu->pending_notify = 0;
			break;
		}
	}
R
Rusty Russell 已提交
57
	/* We're done with the rcu-protected variable cpu->lg->eventfds. */
58
	rcu_read_unlock();
R
Rusty Russell 已提交
59 60

	/* If we cleared the notification, it's because we found a match. */
61 62 63
	return cpu->pending_notify == 0;
}

R
Rusty Russell 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
/*L:055
 * One of the more tricksy tricks in the Linux Kernel is a technique called
 * Read Copy Update.  Since one point of lguest is to teach lguest journeyers
 * about kernel coding, I use it here.  (In case you're curious, other purposes
 * include learning about virtualization and instilling a deep appreciation for
 * simplicity and puppies).
 *
 * We keep a simple array which maps LHCALL_NOTIFY values to eventfds, but we
 * add new eventfds without ever blocking readers from accessing the array.
 * The current Launcher only does this during boot, so that never happens.  But
 * Read Copy Update is cool, and adding a lock risks damaging even more puppies
 * than this code does.
 *
 * We allocate a brand new one-larger array, copy the old one and add our new
 * element.  Then we make the lg eventfd pointer point to the new array.
 * That's the easy part: now we need to free the old one, but we need to make
 * sure no slow CPU somewhere is still looking at it.  That's what
 * synchronize_rcu does for us: waits until every CPU has indicated that it has
 * moved on to know it's no longer using the old one.
 *
 * If that's unclear, see http://en.wikipedia.org/wiki/Read-copy-update.
 */
86 87 88 89
static int add_eventfd(struct lguest *lg, unsigned long addr, int fd)
{
	struct lg_eventfd_map *new, *old = lg->eventfds;

R
Rusty Russell 已提交
90 91 92 93
	/*
	 * We don't allow notifications on value 0 anyway (pending_notify of
	 * 0 means "nothing pending").
	 */
94 95 96
	if (!addr)
		return -EINVAL;

R
Rusty Russell 已提交
97 98 99 100
	/*
	 * Replace the old array with the new one, carefully: others can
	 * be accessing it at the same time.
	 */
101 102 103 104 105 106 107 108 109 110 111
	new = kmalloc(sizeof(*new) + sizeof(new->map[0]) * (old->num + 1),
		      GFP_KERNEL);
	if (!new)
		return -ENOMEM;

	/* First make identical copy. */
	memcpy(new->map, old->map, sizeof(old->map[0]) * old->num);
	new->num = old->num;

	/* Now append new entry. */
	new->map[new->num].addr = addr;
112
	new->map[new->num].event = eventfd_ctx_fdget(fd);
113
	if (IS_ERR(new->map[new->num].event)) {
114
		int err =  PTR_ERR(new->map[new->num].event);
115
		kfree(new);
116
		return err;
117 118 119
	}
	new->num++;

R
Rusty Russell 已提交
120 121 122 123 124 125 126 127 128
	/*
	 * Now put new one in place: rcu_assign_pointer() is a fancy way of
	 * doing "lg->eventfds = new", but it uses memory barriers to make
	 * absolutely sure that the contents of "new" written above is nailed
	 * down before we actually do the assignment.
	 *
	 * We have to think about these kinds of things when we're operating on
	 * live data without locks.
	 */
129 130
	rcu_assign_pointer(lg->eventfds, new);

R
Rusty Russell 已提交
131 132
	/*
	 * We're not in a big hurry.  Wait until noone's looking at old
R
Rusty Russell 已提交
133
	 * version, then free it.
R
Rusty Russell 已提交
134
	 */
135 136 137 138 139 140
	synchronize_rcu();
	kfree(old);

	return 0;
}

R
Rusty Russell 已提交
141 142 143 144 145 146 147 148
/*L:052
 * Receiving notifications from the Guest is usually done by attaching a
 * particular LHCALL_NOTIFY value to an event filedescriptor.  The eventfd will
 * become readable when the Guest does an LHCALL_NOTIFY with that value.
 *
 * This is really convenient for processing each virtqueue in a separate
 * thread.
 */
149 150 151 152 153 154 155 156 157 158 159
static int attach_eventfd(struct lguest *lg, const unsigned long __user *input)
{
	unsigned long addr, fd;
	int err;

	if (get_user(addr, input) != 0)
		return -EFAULT;
	input++;
	if (get_user(fd, input) != 0)
		return -EFAULT;

R
Rusty Russell 已提交
160 161 162 163 164
	/*
	 * Just make sure two callers don't add eventfds at once.  We really
	 * only need to lock against callers adding to the same Guest, so using
	 * the Big Lguest Lock is overkill.  But this is setup, not a fast path.
	 */
165 166 167 168
	mutex_lock(&lguest_lock);
	err = add_eventfd(lg, addr, fd);
	mutex_unlock(&lguest_lock);

169
	return err;
170 171
}

R
Rusty Russell 已提交
172 173 174 175
/*L:050
 * Sending an interrupt is done by writing LHREQ_IRQ and an interrupt
 * number to /dev/lguest.
 */
176
static int user_send_irq(struct lg_cpu *cpu, const unsigned long __user *input)
R
Rusty Russell 已提交
177
{
178
	unsigned long irq;
R
Rusty Russell 已提交
179 180 181 182 183

	if (get_user(irq, input) != 0)
		return -EFAULT;
	if (irq >= LGUEST_IRQS)
		return -EINVAL;
184

R
Rusty Russell 已提交
185 186 187 188
	/*
	 * Next time the Guest runs, the core code will see if it can deliver
	 * this interrupt.
	 */
189
	set_interrupt(cpu, irq);
R
Rusty Russell 已提交
190 191 192
	return 0;
}

R
Rusty Russell 已提交
193 194 195 196
/*L:040
 * Once our Guest is initialized, the Launcher makes it run by reading
 * from /dev/lguest.
 */
R
Rusty Russell 已提交
197 198 199
static ssize_t read(struct file *file, char __user *user, size_t size,loff_t*o)
{
	struct lguest *lg = file->private_data;
200 201
	struct lg_cpu *cpu;
	unsigned int cpu_id = *o;
R
Rusty Russell 已提交
202

203
	/* You must write LHREQ_INITIALIZE first! */
R
Rusty Russell 已提交
204 205 206
	if (!lg)
		return -EINVAL;

207 208 209 210 211 212
	/* Watch out for arbitrary vcpu indexes! */
	if (cpu_id >= lg->nr_cpus)
		return -EINVAL;

	cpu = &lg->cpus[cpu_id];

R
Rusty Russell 已提交
213
	/* If you're not the task which owns the Guest, go away. */
214
	if (current != cpu->tsk)
R
Rusty Russell 已提交
215 216
		return -EPERM;

217
	/* If the Guest is already dead, we indicate why */
R
Rusty Russell 已提交
218 219 220
	if (lg->dead) {
		size_t len;

221
		/* lg->dead either contains an error code, or a string. */
R
Rusty Russell 已提交
222 223 224
		if (IS_ERR(lg->dead))
			return PTR_ERR(lg->dead);

225
		/* We can only return as much as the buffer they read with. */
R
Rusty Russell 已提交
226 227 228 229 230 231
		len = min(size, strlen(lg->dead)+1);
		if (copy_to_user(user, lg->dead, len) != 0)
			return -EFAULT;
		return len;
	}

R
Rusty Russell 已提交
232 233 234 235
	/*
	 * If we returned from read() last time because the Guest sent I/O,
	 * clear the flag.
	 */
236 237
	if (cpu->pending_notify)
		cpu->pending_notify = 0;
R
Rusty Russell 已提交
238

239
	/* Run the Guest until something interesting happens. */
240
	return run_guest(cpu, (unsigned long __user *)user);
R
Rusty Russell 已提交
241 242
}

R
Rusty Russell 已提交
243 244 245 246
/*L:025
 * This actually initializes a CPU.  For the moment, a Guest is only
 * uniprocessor, so "id" is always 0.
 */
247 248
static int lg_cpu_start(struct lg_cpu *cpu, unsigned id, unsigned long start_ip)
{
249
	/* We have a limited number the number of CPUs in the lguest struct. */
250
	if (id >= ARRAY_SIZE(cpu->lg->cpus))
251 252
		return -EINVAL;

253
	/* Set up this CPU's id, and pointer back to the lguest struct. */
254 255 256
	cpu->id = id;
	cpu->lg = container_of((cpu - id), struct lguest, cpus[0]);
	cpu->lg->nr_cpus++;
257 258

	/* Each CPU has a timer it can set. */
259
	init_clockdev(cpu);
260

R
Rusty Russell 已提交
261 262 263 264
	/*
	 * 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.
	 */
265 266 267 268 269 270 271
	cpu->regs_page = get_zeroed_page(GFP_KERNEL);
	if (!cpu->regs_page)
		return -ENOMEM;

	/* We actually put the registers at the bottom of the page. */
	cpu->regs = (void *)cpu->regs_page + PAGE_SIZE - sizeof(*cpu->regs);

R
Rusty Russell 已提交
272 273 274 275
	/*
	 * Now we initialize the Guest's registers, handing it the start
	 * address.
	 */
276 277
	lguest_arch_setup_regs(cpu, start_ip);

R
Rusty Russell 已提交
278 279 280 281
	/*
	 * We keep a pointer to the Launcher task (ie. current task) for when
	 * other Guests want to wake this one (eg. console input).
	 */
282 283
	cpu->tsk = current;

R
Rusty Russell 已提交
284 285
	/*
	 * We need to keep a pointer to the Launcher's memory map, because if
286
	 * the Launcher dies we need to clean it up.  If we don't keep a
R
Rusty Russell 已提交
287 288
	 * reference, it is destroyed before close() is called.
	 */
289 290
	cpu->mm = get_task_mm(cpu->tsk);

R
Rusty Russell 已提交
291 292 293 294
	/*
	 * We remember which CPU's pages this Guest used last, for optimization
	 * when the same Guest runs on the same CPU twice.
	 */
295 296
	cpu->last_pages = NULL;

297
	/* No error == success. */
298 299 300
	return 0;
}

R
Rusty Russell 已提交
301 302 303
/*L:020
 * The initialization write supplies 3 pointer sized (32 or 64 bit) values (in
 * addition to the LHREQ_INITIALIZE value).  These are:
304
 *
305 306
 * base: The start of the Guest-physical memory inside the Launcher memory.
 *
307
 * pfnlimit: The highest (Guest-physical) page number the Guest should be
R
Rusty Russell 已提交
308 309
 * allowed to access.  The Guest memory lives inside the Launcher, so it sets
 * this to ensure the Guest can only reach its own memory.
310 311 312
 *
 * start: The first instruction to execute ("eip" in x86-speak).
 */
313
static int initialize(struct file *file, const unsigned long __user *input)
R
Rusty Russell 已提交
314
{
R
Rusty Russell 已提交
315
	/* "struct lguest" contains all we (the Host) know about a Guest. */
R
Rusty Russell 已提交
316
	struct lguest *lg;
317
	int err;
318
	unsigned long args[3];
R
Rusty Russell 已提交
319

R
Rusty Russell 已提交
320 321 322 323
	/*
	 * We grab the Big Lguest lock, which protects against multiple
	 * simultaneous initializations.
	 */
R
Rusty Russell 已提交
324
	mutex_lock(&lguest_lock);
325
	/* You can't initialize twice!  Close the device and start again... */
R
Rusty Russell 已提交
326 327 328 329 330 331 332 333 334 335
	if (file->private_data) {
		err = -EBUSY;
		goto unlock;
	}

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

336 337 338
	lg = kzalloc(sizeof(*lg), GFP_KERNEL);
	if (!lg) {
		err = -ENOMEM;
R
Rusty Russell 已提交
339 340
		goto unlock;
	}
341

342 343 344 345 346 347 348
	lg->eventfds = kmalloc(sizeof(*lg->eventfds), GFP_KERNEL);
	if (!lg->eventfds) {
		err = -ENOMEM;
		goto free_lg;
	}
	lg->eventfds->num = 0;

349
	/* Populate the easy fields of our "struct lguest" */
350
	lg->mem_base = (void __user *)args[0];
351
	lg->pfn_limit = args[1];
352

353 354
	/* This is the first cpu (cpu 0) and it will start booting at args[2] */
	err = lg_cpu_start(&lg->cpus[0], 0, args[2]);
355
	if (err)
356
		goto free_eventfds;
357

R
Rusty Russell 已提交
358 359 360 361
	/*
	 * Initialize the Guest's shadow page tables, using the toplevel
	 * address the Launcher gave us.  This allocates memory, so can fail.
	 */
362
	err = init_guest_pagetable(lg);
R
Rusty Russell 已提交
363 364 365
	if (err)
		goto free_regs;

366
	/* We keep our "struct lguest" in the file's private_data. */
R
Rusty Russell 已提交
367 368 369 370
	file->private_data = lg;

	mutex_unlock(&lguest_lock);

371
	/* And because this is a write() call, we return the length used. */
R
Rusty Russell 已提交
372 373 374
	return sizeof(args);

free_regs:
375 376
	/* FIXME: This should be in free_vcpu */
	free_page(lg->cpus[0].regs_page);
377 378 379
free_eventfds:
	kfree(lg->eventfds);
free_lg:
A
Adrian Bunk 已提交
380
	kfree(lg);
R
Rusty Russell 已提交
381 382 383 384 385
unlock:
	mutex_unlock(&lguest_lock);
	return err;
}

R
Rusty Russell 已提交
386 387
/*L:010
 * The first operation the Launcher does must be a write.  All writes
R
Rusty Russell 已提交
388
 * start with an unsigned long number: for the first write this must be
389
 * LHREQ_INITIALIZE to set up the Guest.  After that the Launcher can use
R
Rusty Russell 已提交
390
 * writes of other values to send interrupts or set up receipt of notifications.
391 392
 *
 * Note that we overload the "offset" in the /dev/lguest file to indicate what
R
Rusty Russell 已提交
393
 * CPU number we're dealing with.  Currently this is always 0 since we only
394
 * support uniprocessor Guests, but you can see the beginnings of SMP support
R
Rusty Russell 已提交
395 396
 * here.
 */
397
static ssize_t write(struct file *file, const char __user *in,
R
Rusty Russell 已提交
398 399
		     size_t size, loff_t *off)
{
R
Rusty Russell 已提交
400 401 402 403
	/*
	 * Once the Guest is initialized, we hold the "struct lguest" in the
	 * file private data.
	 */
R
Rusty Russell 已提交
404
	struct lguest *lg = file->private_data;
405 406
	const unsigned long __user *input = (const unsigned long __user *)in;
	unsigned long req;
407
	struct lg_cpu *uninitialized_var(cpu);
408
	unsigned int cpu_id = *off;
R
Rusty Russell 已提交
409

410
	/* The first value tells us what this request is. */
R
Rusty Russell 已提交
411 412
	if (get_user(req, input) != 0)
		return -EFAULT;
413
	input++;
R
Rusty Russell 已提交
414

415
	/* If you haven't initialized, you must do that first. */
416 417 418 419
	if (req != LHREQ_INITIALIZE) {
		if (!lg || (cpu_id >= lg->nr_cpus))
			return -EINVAL;
		cpu = &lg->cpus[cpu_id];
420

421 422 423 424
		/* Once the Guest is dead, you can only read() why it died. */
		if (lg->dead)
			return -ENOENT;
	}
R
Rusty Russell 已提交
425 426 427

	switch (req) {
	case LHREQ_INITIALIZE:
428
		return initialize(file, input);
R
Rusty Russell 已提交
429
	case LHREQ_IRQ:
430
		return user_send_irq(cpu, input);
431 432
	case LHREQ_EVENTFD:
		return attach_eventfd(lg, input);
R
Rusty Russell 已提交
433 434 435 436 437
	default:
		return -EINVAL;
	}
}

R
Rusty Russell 已提交
438 439
/*L:060
 * The final piece of interface code is the close() routine.  It reverses
440 441 442 443 444
 * 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
R
Rusty Russell 已提交
445 446
 * letting them do it.
:*/
R
Rusty Russell 已提交
447 448 449
static int close(struct inode *inode, struct file *file)
{
	struct lguest *lg = file->private_data;
450
	unsigned int i;
R
Rusty Russell 已提交
451

452
	/* If we never successfully initialized, there's nothing to clean up */
R
Rusty Russell 已提交
453 454 455
	if (!lg)
		return 0;

R
Rusty Russell 已提交
456 457 458 459
	/*
	 * We need the big lock, to protect from inter-guest I/O and other
	 * Launchers initializing guests.
	 */
R
Rusty Russell 已提交
460
	mutex_lock(&lguest_lock);
461 462 463 464

	/* Free up the shadow page tables for the Guest. */
	free_guest_pagetable(lg);

465
	for (i = 0; i < lg->nr_cpus; i++) {
466 467
		/* Cancels the hrtimer set via LHCALL_SET_CLOCKEVENT. */
		hrtimer_cancel(&lg->cpus[i].hrt);
468 469
		/* We can free up the register page we allocated. */
		free_page(lg->cpus[i].regs_page);
R
Rusty Russell 已提交
470 471 472 473
		/*
		 * Now all the memory cleanups are done, it's safe to release
		 * the Launcher's memory management structure.
		 */
474
		mmput(lg->cpus[i].mm);
475
	}
476 477 478

	/* Release any eventfds they registered. */
	for (i = 0; i < lg->eventfds->num; i++)
479
		eventfd_ctx_put(lg->eventfds->map[i].event);
480 481
	kfree(lg->eventfds);

R
Rusty Russell 已提交
482 483 484 485
	/*
	 * 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 已提交
486 487
	if (!IS_ERR(lg->dead))
		kfree(lg->dead);
488 489
	/* Free the memory allocated to the lguest_struct */
	kfree(lg);
490
	/* Release lock and exit. */
R
Rusty Russell 已提交
491
	mutex_unlock(&lguest_lock);
492

R
Rusty Russell 已提交
493 494 495
	return 0;
}

496 497 498 499 500 501
/*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
R
Rusty Russell 已提交
502
 * the Guest, but the Guest can't know that.
503 504 505 506 507 508
 *
 * 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
R
Rusty Russell 已提交
509 510
 * work happens in the read(), write() and close() routines:
 */
R
Rusty Russell 已提交
511 512 513 514 515 516
static struct file_operations lguest_fops = {
	.owner	 = THIS_MODULE,
	.release = close,
	.write	 = write,
	.read	 = read,
};
517

R
Rusty Russell 已提交
518 519 520 521
/*
 * This is a textbook example of a "misc" character device.  Populate a "struct
 * miscdevice" and register it with misc_register().
 */
R
Rusty Russell 已提交
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
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);
}