lguest_user.c 9.9 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 9 10
#include <linux/uaccess.h>
#include <linux/miscdevice.h>
#include <linux/fs.h>
#include "lg.h"

R
Rusty Russell 已提交
11 12 13 14 15
/*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. */
16
static int break_guest_out(struct lguest *lg, const unsigned long __user *input)
R
Rusty Russell 已提交
17 18 19
{
	unsigned long on;

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

	if (on) {
		lg->break_out = 1;
R
Rusty Russell 已提交
26
		/* Pop it out of the Guest (may be running on different CPU) */
R
Rusty Russell 已提交
27 28 29 30 31 32 33 34 35 36
		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;
	}
}

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

	if (get_user(irq, input) != 0)
		return -EFAULT;
	if (irq >= LGUEST_IRQS)
		return -EINVAL;
47 48
	/* Next time the Guest runs, the core code will see if it can deliver
	 * this interrupt. */
R
Rusty Russell 已提交
49 50 51 52
	set_bit(irq, lg->irqs_pending);
	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 58
static ssize_t read(struct file *file, char __user *user, size_t size,loff_t*o)
{
	struct lguest *lg = file->private_data;

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

R
Rusty Russell 已提交
63
	/* If you're not the task which owns the Guest, go away. */
R
Rusty Russell 已提交
64 65 66
	if (current != lg->tsk)
		return -EPERM;

67
	/* If the guest is already dead, we indicate why */
R
Rusty Russell 已提交
68 69 70
	if (lg->dead) {
		size_t len;

71
		/* lg->dead either contains an error code, or a string. */
R
Rusty Russell 已提交
72 73 74
		if (IS_ERR(lg->dead))
			return PTR_ERR(lg->dead);

75
		/* We can only return as much as the buffer they read with. */
R
Rusty Russell 已提交
76 77 78 79 80 81
		len = min(size, strlen(lg->dead)+1);
		if (copy_to_user(user, lg->dead, len) != 0)
			return -EFAULT;
		return len;
	}

82
	/* If we returned from read() last time because the Guest notified,
83
	 * clear the flag. */
84 85
	if (lg->pending_notify)
		lg->pending_notify = 0;
R
Rusty Russell 已提交
86

87
	/* Run the Guest until something interesting happens. */
R
Rusty Russell 已提交
88 89 90
	return run_guest(lg, (unsigned long __user *)user);
}

91 92 93 94 95 96 97 98 99 100 101 102
static int lg_cpu_start(struct lg_cpu *cpu, unsigned id, unsigned long start_ip)
{
	if (id >= NR_CPUS)
		return -EINVAL;

	cpu->id = id;
	cpu->lg = container_of((cpu - id), struct lguest, cpus[0]);
	cpu->lg->nr_cpus++;

	return 0;
}

103
/*L:020 The initialization write supplies 4 pointer sized (32 or 64 bit)
104
 * values (in addition to the LHREQ_INITIALIZE value).  These are:
105
 *
106 107
 * base: The start of the Guest-physical memory inside the Launcher memory.
 *
108
 * pfnlimit: The highest (Guest-physical) page number the Guest should be
R
Rusty Russell 已提交
109 110
 * allowed to access.  The Guest memory lives inside the Launcher, so it sets
 * this to ensure the Guest can only reach its own memory.
111 112 113 114 115 116
 *
 * 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).
 */
117
static int initialize(struct file *file, const unsigned long __user *input)
R
Rusty Russell 已提交
118
{
119 120
	/* "struct lguest" contains everything we (the Host) know about a
	 * Guest. */
R
Rusty Russell 已提交
121
	struct lguest *lg;
122
	int err;
123
	unsigned long args[4];
R
Rusty Russell 已提交
124

125 126
	/* We grab the Big Lguest lock, which protects against multiple
	 * simultaneous initializations. */
R
Rusty Russell 已提交
127
	mutex_lock(&lguest_lock);
128
	/* You can't initialize twice!  Close the device and start again... */
R
Rusty Russell 已提交
129 130 131 132 133 134 135 136 137 138
	if (file->private_data) {
		err = -EBUSY;
		goto unlock;
	}

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

139 140 141
	lg = kzalloc(sizeof(*lg), GFP_KERNEL);
	if (!lg) {
		err = -ENOMEM;
R
Rusty Russell 已提交
142 143
		goto unlock;
	}
144 145

	/* Populate the easy fields of our "struct lguest" */
146 147
	lg->mem_base = (void __user *)(long)args[0];
	lg->pfn_limit = args[1];
148

149 150 151 152 153
	/* This is the first cpu */
	err = cpu_start(&lg->cpus[0], 0, args[3]);
	if (err)
		goto release_guest;

154 155
	/* 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 已提交
156 157 158 159 160
	lg->regs_page = get_zeroed_page(GFP_KERNEL);
	if (!lg->regs_page) {
		err = -ENOMEM;
		goto release_guest;
	}
161
	/* We actually put the registers at the bottom of the page. */
R
Rusty Russell 已提交
162 163
	lg->regs = (void *)lg->regs_page + PAGE_SIZE - sizeof(*lg->regs);

164 165 166
	/* Initialize the Guest's shadow page tables, using the toplevel
	 * address the Launcher gave us.  This allocates memory, so can
	 * fail. */
167
	err = init_guest_pagetable(lg, args[2]);
R
Rusty Russell 已提交
168 169 170
	if (err)
		goto free_regs;

171 172
	/* Now we initialize the Guest's registers, handing it the start
	 * address. */
173
	lguest_arch_setup_regs(lg, args[3]);
174 175

	/* The timer for lguest's clock needs initialization. */
R
Rusty Russell 已提交
176
	init_clockdev(lg);
177 178 179

	/* 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 已提交
180
	lg->tsk = current;
181 182 183
	/* 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 已提交
184
	lg->mm = get_task_mm(lg->tsk);
185 186

	/* Initialize the queue for the waker to wait on */
R
Rusty Russell 已提交
187
	init_waitqueue_head(&lg->break_wq);
188 189 190

	/* 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 已提交
191
	lg->last_pages = NULL;
192 193

	/* We keep our "struct lguest" in the file's private_data. */
R
Rusty Russell 已提交
194 195 196 197
	file->private_data = lg;

	mutex_unlock(&lguest_lock);

198
	/* And because this is a write() call, we return the length used. */
R
Rusty Russell 已提交
199 200 201 202 203
	return sizeof(args);

free_regs:
	free_page(lg->regs_page);
release_guest:
A
Adrian Bunk 已提交
204
	kfree(lg);
R
Rusty Russell 已提交
205 206 207 208 209
unlock:
	mutex_unlock(&lguest_lock);
	return err;
}

210
/*L:010 The first operation the Launcher does must be a write.  All writes
R
Rusty Russell 已提交
211
 * start with an unsigned long number: for the first write this must be
212
 * LHREQ_INITIALIZE to set up the Guest.  After that the Launcher can use
213
 * writes of other values to send interrupts. */
214
static ssize_t write(struct file *file, const char __user *in,
R
Rusty Russell 已提交
215 216
		     size_t size, loff_t *off)
{
217 218
	/* Once the guest is initialized, we hold the "struct lguest" in the
	 * file private data. */
R
Rusty Russell 已提交
219
	struct lguest *lg = file->private_data;
220 221
	const unsigned long __user *input = (const unsigned long __user *)in;
	unsigned long req;
R
Rusty Russell 已提交
222 223 224

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

227
	/* If you haven't initialized, you must do that first. */
R
Rusty Russell 已提交
228 229
	if (req != LHREQ_INITIALIZE && !lg)
		return -EINVAL;
230 231

	/* Once the Guest is dead, all you can do is read() why it died. */
R
Rusty Russell 已提交
232 233 234 235 236 237 238 239 240
	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:
241
		return initialize(file, input);
R
Rusty Russell 已提交
242
	case LHREQ_IRQ:
243
		return user_send_irq(lg, input);
R
Rusty Russell 已提交
244
	case LHREQ_BREAK:
245
		return break_guest_out(lg, input);
R
Rusty Russell 已提交
246 247 248 249 250
	default:
		return -EINVAL;
	}
}

251 252 253 254 255 256 257
/*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 已提交
258 259 260 261
static int close(struct inode *inode, struct file *file)
{
	struct lguest *lg = file->private_data;

262
	/* If we never successfully initialized, there's nothing to clean up */
R
Rusty Russell 已提交
263 264 265
	if (!lg)
		return 0;

266 267
	/* We need the big lock, to protect from inter-guest I/O and other
	 * Launchers initializing guests. */
R
Rusty Russell 已提交
268 269 270
	mutex_lock(&lguest_lock);
	/* Cancels the hrtimer set via LHCALL_SET_CLOCKEVENT. */
	hrtimer_cancel(&lg->hrt);
271
	/* Free up the shadow page tables for the Guest. */
R
Rusty Russell 已提交
272
	free_guest_pagetable(lg);
273 274
	/* Now all the memory cleanups are done, it's safe to release the
	 * Launcher's memory management structure. */
R
Rusty Russell 已提交
275
	mmput(lg->mm);
276 277
	/* 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 已提交
278 279
	if (!IS_ERR(lg->dead))
		kfree(lg->dead);
280
	/* We can free up the register page we allocated. */
R
Rusty Russell 已提交
281
	free_page(lg->regs_page);
282 283
	/* We clear the entire structure, which also marks it as free for the
	 * next user. */
R
Rusty Russell 已提交
284
	memset(lg, 0, sizeof(*lg));
285
	/* Release lock and exit. */
R
Rusty Russell 已提交
286
	mutex_unlock(&lguest_lock);
287

R
Rusty Russell 已提交
288 289 290
	return 0;
}

291 292 293 294 295 296
/*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 已提交
297
 * the Guest, but the Guest can't know that.
298 299 300 301 302 303 304
 *
 * 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 已提交
305 306 307 308 309 310
static struct file_operations lguest_fops = {
	.owner	 = THIS_MODULE,
	.release = close,
	.write	 = write,
	.read	 = read,
};
311 312 313

/* This is a textbook example of a "misc" character device.  Populate a "struct
 * miscdevice" and register it with misc_register(). */
R
Rusty Russell 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
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);
}