lguest_user.c 10.6 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
 * 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
5
 * or the Guest doing a NOTIFY out to the Launcher. :*/
R
Rusty Russell 已提交
6 7 8
#include <linux/uaccess.h>
#include <linux/miscdevice.h>
#include <linux/fs.h>
9
#include <linux/sched.h>
R
Rusty Russell 已提交
10 11
#include "lg.h"

R
Rusty Russell 已提交
12 13 14 15 16
/*L:055 When something happens, the Waker process needs a way to stop the
 * kernel running the Guest and return to the Launcher.  So the Waker writes
 * LHREQ_BREAK and the value "1" to /dev/lguest to do this.  Once the Launcher
 * has done whatever needs attention, it writes LHREQ_BREAK and "0" to release
 * the Waker. */
17
static int break_guest_out(struct lg_cpu *cpu, const unsigned long __user*input)
R
Rusty Russell 已提交
18 19 20
{
	unsigned long on;

R
Rusty Russell 已提交
21
	/* Fetch whether they're turning break on or off. */
R
Rusty Russell 已提交
22 23 24 25
	if (get_user(on, input) != 0)
		return -EFAULT;

	if (on) {
26
		cpu->break_out = 1;
27 28
		if (!wake_up_process(cpu->tsk))
			kick_process(cpu->tsk);
R
Rusty Russell 已提交
29
		/* Wait for them to reset it */
30
		return wait_event_interruptible(cpu->break_wq, !cpu->break_out);
R
Rusty Russell 已提交
31
	} else {
32 33
		cpu->break_out = 0;
		wake_up(&cpu->break_wq);
R
Rusty Russell 已提交
34 35 36 37
		return 0;
	}
}

38 39
/*L:050 Sending an interrupt is done by writing LHREQ_IRQ and an interrupt
 * number to /dev/lguest. */
40
static int user_send_irq(struct lg_cpu *cpu, const unsigned long __user *input)
R
Rusty Russell 已提交
41
{
42
	unsigned long irq;
R
Rusty Russell 已提交
43 44 45 46 47

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

	set_interrupt(cpu, irq);
R
Rusty Russell 已提交
50 51 52
	return 0;
}

53 54
/*L:040 Once our Guest is initialized, the Launcher makes it run by reading
 * from /dev/lguest. */
R
Rusty Russell 已提交
55 56 57
static ssize_t read(struct file *file, char __user *user, size_t size,loff_t*o)
{
	struct lguest *lg = file->private_data;
58 59
	struct lg_cpu *cpu;
	unsigned int cpu_id = *o;
R
Rusty Russell 已提交
60

61
	/* You must write LHREQ_INITIALIZE first! */
R
Rusty Russell 已提交
62 63 64
	if (!lg)
		return -EINVAL;

65 66 67 68 69 70
	/* Watch out for arbitrary vcpu indexes! */
	if (cpu_id >= lg->nr_cpus)
		return -EINVAL;

	cpu = &lg->cpus[cpu_id];

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

75
	/* If the Guest is already dead, we indicate why */
R
Rusty Russell 已提交
76 77 78
	if (lg->dead) {
		size_t len;

79
		/* lg->dead either contains an error code, or a string. */
R
Rusty Russell 已提交
80 81 82
		if (IS_ERR(lg->dead))
			return PTR_ERR(lg->dead);

83
		/* We can only return as much as the buffer they read with. */
R
Rusty Russell 已提交
84 85 86 87 88 89
		len = min(size, strlen(lg->dead)+1);
		if (copy_to_user(user, lg->dead, len) != 0)
			return -EFAULT;
		return len;
	}

90
	/* If we returned from read() last time because the Guest sent I/O,
91
	 * clear the flag. */
92 93
	if (cpu->pending_notify)
		cpu->pending_notify = 0;
R
Rusty Russell 已提交
94

95
	/* Run the Guest until something interesting happens. */
96
	return run_guest(cpu, (unsigned long __user *)user);
R
Rusty Russell 已提交
97 98
}

99 100
/*L:025 This actually initializes a CPU.  For the moment, a Guest is only
 * uniprocessor, so "id" is always 0. */
101 102
static int lg_cpu_start(struct lg_cpu *cpu, unsigned id, unsigned long start_ip)
{
103
	/* We have a limited number the number of CPUs in the lguest struct. */
104
	if (id >= ARRAY_SIZE(cpu->lg->cpus))
105 106
		return -EINVAL;

107
	/* Set up this CPU's id, and pointer back to the lguest struct. */
108 109 110
	cpu->id = id;
	cpu->lg = container_of((cpu - id), struct lguest, cpus[0]);
	cpu->lg->nr_cpus++;
111 112

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

115 116 117 118 119 120 121 122 123 124 125 126 127
	/* 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. */
	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);

	/* Now we initialize the Guest's registers, handing it the start
	 * address. */
	lguest_arch_setup_regs(cpu, start_ip);

128
	/* Initialize the queue for the Waker to wait on */
129 130 131
	init_waitqueue_head(&cpu->break_wq);

	/* We keep a pointer to the Launcher task (ie. current task) for when
132
	 * other Guests want to wake this one (eg. console input). */
133 134 135 136 137 138 139
	cpu->tsk = current;

	/* 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. */
	cpu->mm = get_task_mm(cpu->tsk);

140 141 142 143
	/* We remember which CPU's pages this Guest used last, for optimization
	 * when the same Guest runs on the same CPU twice. */
	cpu->last_pages = NULL;

144
	/* No error == success. */
145 146 147
	return 0;
}

148
/*L:020 The initialization write supplies 3 pointer sized (32 or 64 bit)
149
 * values (in addition to the LHREQ_INITIALIZE value).  These are:
150
 *
151 152
 * base: The start of the Guest-physical memory inside the Launcher memory.
 *
153
 * pfnlimit: The highest (Guest-physical) page number the Guest should be
R
Rusty Russell 已提交
154 155
 * allowed to access.  The Guest memory lives inside the Launcher, so it sets
 * this to ensure the Guest can only reach its own memory.
156 157 158
 *
 * start: The first instruction to execute ("eip" in x86-speak).
 */
159
static int initialize(struct file *file, const unsigned long __user *input)
R
Rusty Russell 已提交
160
{
161 162
	/* "struct lguest" contains everything we (the Host) know about a
	 * Guest. */
R
Rusty Russell 已提交
163
	struct lguest *lg;
164
	int err;
165
	unsigned long args[3];
R
Rusty Russell 已提交
166

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

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

181 182 183
	lg = kzalloc(sizeof(*lg), GFP_KERNEL);
	if (!lg) {
		err = -ENOMEM;
R
Rusty Russell 已提交
184 185
		goto unlock;
	}
186 187

	/* Populate the easy fields of our "struct lguest" */
188
	lg->mem_base = (void __user *)args[0];
189
	lg->pfn_limit = args[1];
190

191 192
	/* 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]);
193 194 195
	if (err)
		goto release_guest;

196
	/* Initialize the Guest's shadow page tables, using the toplevel
197
	 * address the Launcher gave us.  This allocates memory, so can fail. */
198
	err = init_guest_pagetable(lg);
R
Rusty Russell 已提交
199 200 201
	if (err)
		goto free_regs;

202
	/* We keep our "struct lguest" in the file's private_data. */
R
Rusty Russell 已提交
203 204 205 206
	file->private_data = lg;

	mutex_unlock(&lguest_lock);

207
	/* And because this is a write() call, we return the length used. */
R
Rusty Russell 已提交
208 209 210
	return sizeof(args);

free_regs:
211 212
	/* FIXME: This should be in free_vcpu */
	free_page(lg->cpus[0].regs_page);
R
Rusty Russell 已提交
213
release_guest:
A
Adrian Bunk 已提交
214
	kfree(lg);
R
Rusty Russell 已提交
215 216 217 218 219
unlock:
	mutex_unlock(&lguest_lock);
	return err;
}

220
/*L:010 The first operation the Launcher does must be a write.  All writes
R
Rusty Russell 已提交
221
 * start with an unsigned long number: for the first write this must be
222
 * LHREQ_INITIALIZE to set up the Guest.  After that the Launcher can use
223 224 225 226 227 228
 * writes of other values to send interrupts.
 *
 * Note that we overload the "offset" in the /dev/lguest file to indicate what
 * CPU number we're dealing with.  Currently this is always 0, since we only
 * support uniprocessor Guests, but you can see the beginnings of SMP support
 * here. */
229
static ssize_t write(struct file *file, const char __user *in,
R
Rusty Russell 已提交
230 231
		     size_t size, loff_t *off)
{
232
	/* Once the Guest is initialized, we hold the "struct lguest" in the
233
	 * file private data. */
R
Rusty Russell 已提交
234
	struct lguest *lg = file->private_data;
235 236
	const unsigned long __user *input = (const unsigned long __user *)in;
	unsigned long req;
237
	struct lg_cpu *uninitialized_var(cpu);
238
	unsigned int cpu_id = *off;
R
Rusty Russell 已提交
239

240
	/* The first value tells us what this request is. */
R
Rusty Russell 已提交
241 242
	if (get_user(req, input) != 0)
		return -EFAULT;
243
	input++;
R
Rusty Russell 已提交
244

245
	/* If you haven't initialized, you must do that first. */
246 247 248 249
	if (req != LHREQ_INITIALIZE) {
		if (!lg || (cpu_id >= lg->nr_cpus))
			return -EINVAL;
		cpu = &lg->cpus[cpu_id];
250

251 252 253 254
		/* Once the Guest is dead, you can only read() why it died. */
		if (lg->dead)
			return -ENOENT;
	}
R
Rusty Russell 已提交
255 256 257

	switch (req) {
	case LHREQ_INITIALIZE:
258
		return initialize(file, input);
R
Rusty Russell 已提交
259
	case LHREQ_IRQ:
260
		return user_send_irq(cpu, input);
R
Rusty Russell 已提交
261
	case LHREQ_BREAK:
262
		return break_guest_out(cpu, input);
R
Rusty Russell 已提交
263 264 265 266 267
	default:
		return -EINVAL;
	}
}

268 269 270 271 272 273 274
/*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 已提交
275 276 277
static int close(struct inode *inode, struct file *file)
{
	struct lguest *lg = file->private_data;
278
	unsigned int i;
R
Rusty Russell 已提交
279

280
	/* If we never successfully initialized, there's nothing to clean up */
R
Rusty Russell 已提交
281 282 283
	if (!lg)
		return 0;

284 285
	/* We need the big lock, to protect from inter-guest I/O and other
	 * Launchers initializing guests. */
R
Rusty Russell 已提交
286
	mutex_lock(&lguest_lock);
287 288 289 290

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

291
	for (i = 0; i < lg->nr_cpus; i++) {
292 293
		/* Cancels the hrtimer set via LHCALL_SET_CLOCKEVENT. */
		hrtimer_cancel(&lg->cpus[i].hrt);
294 295
		/* We can free up the register page we allocated. */
		free_page(lg->cpus[i].regs_page);
296 297 298
		/* Now all the memory cleanups are done, it's safe to release
		 * the Launcher's memory management structure. */
		mmput(lg->cpus[i].mm);
299
	}
300 301
	/* 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 已提交
302 303
	if (!IS_ERR(lg->dead))
		kfree(lg->dead);
304 305
	/* Free the memory allocated to the lguest_struct */
	kfree(lg);
306
	/* Release lock and exit. */
R
Rusty Russell 已提交
307
	mutex_unlock(&lguest_lock);
308

R
Rusty Russell 已提交
309 310 311
	return 0;
}

312 313 314 315 316 317
/*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 已提交
318
 * the Guest, but the Guest can't know that.
319 320 321 322 323 324 325
 *
 * 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 已提交
326 327 328 329 330 331
static struct file_operations lguest_fops = {
	.owner	 = THIS_MODULE,
	.release = close,
	.write	 = write,
	.read	 = read,
};
332 333 334

/* This is a textbook example of a "misc" character device.  Populate a "struct
 * miscdevice" and register it with misc_register(). */
R
Rusty Russell 已提交
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
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);
}