blob: 61b177e1e6497a0c804cff1df2710519983b147d [file] [log] [blame]
Rusty Russellf938d2c2007-07-26 10:41:02 -07001/*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
Rusty Russell3c6b5bf2007-10-22 11:03:26 +10003 * tell us the Guest's memory layout, pagetable, entry point and kernel address
4 * offset. A read will run the Guest until something happens, such as a signal
5 * or the Guest doing a DMA out to the Launcher. Writes are also used to get a
6 * DMA buffer registered by the Guest and to send the Guest an interrupt. :*/
Rusty Russelld7e28ff2007-07-19 01:49:23 -07007#include <linux/uaccess.h>
8#include <linux/miscdevice.h>
9#include <linux/fs.h>
10#include "lg.h"
11
Rusty Russelldde79782007-07-26 10:41:03 -070012/*L:310 To send DMA into the Guest, the Launcher needs to be able to ask for a
13 * DMA buffer. This is done by writing LHREQ_GETDMA and the key to
14 * /dev/lguest. */
Jes Sorensen511801d2007-10-22 11:03:31 +100015static long user_get_dma(struct lguest *lg, const unsigned long __user *input)
Rusty Russelld7e28ff2007-07-19 01:49:23 -070016{
17 unsigned long key, udma, irq;
18
Rusty Russelldde79782007-07-26 10:41:03 -070019 /* Fetch the key they wrote to us. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070020 if (get_user(key, input) != 0)
21 return -EFAULT;
Rusty Russelldde79782007-07-26 10:41:03 -070022 /* Look for a free Guest DMA buffer bound to that key. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070023 udma = get_dma_buffer(lg, key, &irq);
24 if (!udma)
25 return -ENOENT;
26
Rusty Russelldde79782007-07-26 10:41:03 -070027 /* We need to tell the Launcher what interrupt the Guest expects after
28 * the buffer is filled. We stash it in udma->used_len. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070029 lgwrite_u32(lg, udma + offsetof(struct lguest_dma, used_len), irq);
Rusty Russelldde79782007-07-26 10:41:03 -070030
31 /* The (guest-physical) address of the DMA buffer is returned from
32 * the write(). */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070033 return udma;
34}
35
Rusty Russelldde79782007-07-26 10:41:03 -070036/*L:315 To force the Guest to stop running and return to the Launcher, the
Rusty Russelld7e28ff2007-07-19 01:49:23 -070037 * Waker sets writes LHREQ_BREAK and the value "1" to /dev/lguest. The
38 * Launcher then writes LHREQ_BREAK and "0" to release the Waker. */
Jes Sorensen511801d2007-10-22 11:03:31 +100039static int break_guest_out(struct lguest *lg, const unsigned long __user *input)
Rusty Russelld7e28ff2007-07-19 01:49:23 -070040{
41 unsigned long on;
42
43 /* Fetch whether they're turning break on or off.. */
44 if (get_user(on, input) != 0)
45 return -EFAULT;
46
47 if (on) {
48 lg->break_out = 1;
49 /* Pop it out (may be running on different CPU) */
50 wake_up_process(lg->tsk);
51 /* Wait for them to reset it */
52 return wait_event_interruptible(lg->break_wq, !lg->break_out);
53 } else {
54 lg->break_out = 0;
55 wake_up(&lg->break_wq);
56 return 0;
57 }
58}
59
Rusty Russelldde79782007-07-26 10:41:03 -070060/*L:050 Sending an interrupt is done by writing LHREQ_IRQ and an interrupt
61 * number to /dev/lguest. */
Jes Sorensen511801d2007-10-22 11:03:31 +100062static int user_send_irq(struct lguest *lg, const unsigned long __user *input)
Rusty Russelld7e28ff2007-07-19 01:49:23 -070063{
Jes Sorensen511801d2007-10-22 11:03:31 +100064 unsigned long irq;
Rusty Russelld7e28ff2007-07-19 01:49:23 -070065
66 if (get_user(irq, input) != 0)
67 return -EFAULT;
68 if (irq >= LGUEST_IRQS)
69 return -EINVAL;
Rusty Russelldde79782007-07-26 10:41:03 -070070 /* Next time the Guest runs, the core code will see if it can deliver
71 * this interrupt. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070072 set_bit(irq, lg->irqs_pending);
73 return 0;
74}
75
Rusty Russelldde79782007-07-26 10:41:03 -070076/*L:040 Once our Guest is initialized, the Launcher makes it run by reading
77 * from /dev/lguest. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070078static ssize_t read(struct file *file, char __user *user, size_t size,loff_t*o)
79{
80 struct lguest *lg = file->private_data;
81
Rusty Russelldde79782007-07-26 10:41:03 -070082 /* You must write LHREQ_INITIALIZE first! */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070083 if (!lg)
84 return -EINVAL;
85
86 /* If you're not the task which owns the guest, go away. */
87 if (current != lg->tsk)
88 return -EPERM;
89
Rusty Russelldde79782007-07-26 10:41:03 -070090 /* If the guest is already dead, we indicate why */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070091 if (lg->dead) {
92 size_t len;
93
Rusty Russelldde79782007-07-26 10:41:03 -070094 /* lg->dead either contains an error code, or a string. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070095 if (IS_ERR(lg->dead))
96 return PTR_ERR(lg->dead);
97
Rusty Russelldde79782007-07-26 10:41:03 -070098 /* We can only return as much as the buffer they read with. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -070099 len = min(size, strlen(lg->dead)+1);
100 if (copy_to_user(user, lg->dead, len) != 0)
101 return -EFAULT;
102 return len;
103 }
104
Rusty Russelldde79782007-07-26 10:41:03 -0700105 /* If we returned from read() last time because the Guest sent DMA,
106 * clear the flag. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700107 if (lg->dma_is_pending)
108 lg->dma_is_pending = 0;
109
Rusty Russelldde79782007-07-26 10:41:03 -0700110 /* Run the Guest until something interesting happens. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700111 return run_guest(lg, (unsigned long __user *)user);
112}
113
Rusty Russell47436aa2007-10-22 11:03:36 +1000114/*L:020 The initialization write supplies 4 pointer sized (32 or 64 bit)
Jes Sorensen511801d2007-10-22 11:03:31 +1000115 * values (in addition to the LHREQ_INITIALIZE value). These are:
Rusty Russelldde79782007-07-26 10:41:03 -0700116 *
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000117 * base: The start of the Guest-physical memory inside the Launcher memory.
118 *
Rusty Russelldde79782007-07-26 10:41:03 -0700119 * pfnlimit: The highest (Guest-physical) page number the Guest should be
120 * allowed to access. The Launcher has to live in Guest memory, so it sets
121 * this to ensure the Guest can't reach it.
122 *
123 * pgdir: The (Guest-physical) address of the top of the initial Guest
124 * pagetables (which are set up by the Launcher).
125 *
126 * start: The first instruction to execute ("eip" in x86-speak).
Rusty Russelldde79782007-07-26 10:41:03 -0700127 */
Jes Sorensen511801d2007-10-22 11:03:31 +1000128static int initialize(struct file *file, const unsigned long __user *input)
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700129{
Rusty Russelldde79782007-07-26 10:41:03 -0700130 /* "struct lguest" contains everything we (the Host) know about a
131 * Guest. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700132 struct lguest *lg;
Rusty Russell48245cc2007-10-22 11:03:27 +1000133 int err;
Rusty Russell47436aa2007-10-22 11:03:36 +1000134 unsigned long args[4];
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700135
Rusty Russell48245cc2007-10-22 11:03:27 +1000136 /* We grab the Big Lguest lock, which protects against multiple
137 * simultaneous initializations. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700138 mutex_lock(&lguest_lock);
Rusty Russelldde79782007-07-26 10:41:03 -0700139 /* You can't initialize twice! Close the device and start again... */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700140 if (file->private_data) {
141 err = -EBUSY;
142 goto unlock;
143 }
144
145 if (copy_from_user(args, input, sizeof(args)) != 0) {
146 err = -EFAULT;
147 goto unlock;
148 }
149
Rusty Russell48245cc2007-10-22 11:03:27 +1000150 lg = kzalloc(sizeof(*lg), GFP_KERNEL);
151 if (!lg) {
152 err = -ENOMEM;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700153 goto unlock;
154 }
Rusty Russelldde79782007-07-26 10:41:03 -0700155
156 /* Populate the easy fields of our "struct lguest" */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000157 lg->mem_base = (void __user *)(long)args[0];
158 lg->pfn_limit = args[1];
Rusty Russelldde79782007-07-26 10:41:03 -0700159
160 /* We need a complete page for the Guest registers: they are accessible
161 * to the Guest and we can only grant it access to whole pages. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700162 lg->regs_page = get_zeroed_page(GFP_KERNEL);
163 if (!lg->regs_page) {
164 err = -ENOMEM;
165 goto release_guest;
166 }
Rusty Russelldde79782007-07-26 10:41:03 -0700167 /* We actually put the registers at the bottom of the page. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700168 lg->regs = (void *)lg->regs_page + PAGE_SIZE - sizeof(*lg->regs);
169
Rusty Russelldde79782007-07-26 10:41:03 -0700170 /* Initialize the Guest's shadow page tables, using the toplevel
171 * address the Launcher gave us. This allocates memory, so can
172 * fail. */
Rusty Russell3c6b5bf2007-10-22 11:03:26 +1000173 err = init_guest_pagetable(lg, args[2]);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700174 if (err)
175 goto free_regs;
176
Rusty Russelldde79782007-07-26 10:41:03 -0700177 /* Now we initialize the Guest's registers, handing it the start
178 * address. */
Jes Sorensend612cde2007-10-22 11:03:32 +1000179 lguest_arch_setup_regs(lg, args[3]);
Rusty Russelldde79782007-07-26 10:41:03 -0700180
181 /* The timer for lguest's clock needs initialization. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700182 init_clockdev(lg);
Rusty Russelldde79782007-07-26 10:41:03 -0700183
184 /* We keep a pointer to the Launcher task (ie. current task) for when
185 * other Guests want to wake this one (inter-Guest I/O). */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700186 lg->tsk = current;
Rusty Russelldde79782007-07-26 10:41:03 -0700187 /* We need to keep a pointer to the Launcher's memory map, because if
188 * the Launcher dies we need to clean it up. If we don't keep a
189 * reference, it is destroyed before close() is called. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700190 lg->mm = get_task_mm(lg->tsk);
Rusty Russelldde79782007-07-26 10:41:03 -0700191
192 /* Initialize the queue for the waker to wait on */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700193 init_waitqueue_head(&lg->break_wq);
Rusty Russelldde79782007-07-26 10:41:03 -0700194
195 /* We remember which CPU's pages this Guest used last, for optimization
196 * when the same Guest runs on the same CPU twice. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700197 lg->last_pages = NULL;
Rusty Russelldde79782007-07-26 10:41:03 -0700198
199 /* We keep our "struct lguest" in the file's private_data. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700200 file->private_data = lg;
201
202 mutex_unlock(&lguest_lock);
203
Rusty Russelldde79782007-07-26 10:41:03 -0700204 /* And because this is a write() call, we return the length used. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700205 return sizeof(args);
206
207free_regs:
208 free_page(lg->regs_page);
209release_guest:
210 memset(lg, 0, sizeof(*lg));
211unlock:
212 mutex_unlock(&lguest_lock);
213 return err;
214}
215
Rusty Russelldde79782007-07-26 10:41:03 -0700216/*L:010 The first operation the Launcher does must be a write. All writes
217 * start with a 32 bit number: for the first write this must be
218 * LHREQ_INITIALIZE to set up the Guest. After that the Launcher can use
219 * writes of other values to get DMA buffers and send interrupts. */
Jes Sorensen511801d2007-10-22 11:03:31 +1000220static ssize_t write(struct file *file, const char __user *in,
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700221 size_t size, loff_t *off)
222{
Rusty Russelldde79782007-07-26 10:41:03 -0700223 /* Once the guest is initialized, we hold the "struct lguest" in the
224 * file private data. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700225 struct lguest *lg = file->private_data;
Jes Sorensen511801d2007-10-22 11:03:31 +1000226 const unsigned long __user *input = (const unsigned long __user *)in;
227 unsigned long req;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700228
229 if (get_user(req, input) != 0)
230 return -EFAULT;
Jes Sorensen511801d2007-10-22 11:03:31 +1000231 input++;
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700232
Rusty Russelldde79782007-07-26 10:41:03 -0700233 /* If you haven't initialized, you must do that first. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700234 if (req != LHREQ_INITIALIZE && !lg)
235 return -EINVAL;
Rusty Russelldde79782007-07-26 10:41:03 -0700236
237 /* Once the Guest is dead, all you can do is read() why it died. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700238 if (lg && lg->dead)
239 return -ENOENT;
240
241 /* If you're not the task which owns the Guest, you can only break */
242 if (lg && current != lg->tsk && req != LHREQ_BREAK)
243 return -EPERM;
244
245 switch (req) {
246 case LHREQ_INITIALIZE:
Jes Sorensen511801d2007-10-22 11:03:31 +1000247 return initialize(file, input);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700248 case LHREQ_GETDMA:
Jes Sorensen511801d2007-10-22 11:03:31 +1000249 return user_get_dma(lg, input);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700250 case LHREQ_IRQ:
Jes Sorensen511801d2007-10-22 11:03:31 +1000251 return user_send_irq(lg, input);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700252 case LHREQ_BREAK:
Jes Sorensen511801d2007-10-22 11:03:31 +1000253 return break_guest_out(lg, input);
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700254 default:
255 return -EINVAL;
256 }
257}
258
Rusty Russelldde79782007-07-26 10:41:03 -0700259/*L:060 The final piece of interface code is the close() routine. It reverses
260 * everything done in initialize(). This is usually called because the
261 * Launcher exited.
262 *
263 * Note that the close routine returns 0 or a negative error number: it can't
264 * really fail, but it can whine. I blame Sun for this wart, and K&R C for
265 * letting them do it. :*/
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700266static int close(struct inode *inode, struct file *file)
267{
268 struct lguest *lg = file->private_data;
269
Rusty Russelldde79782007-07-26 10:41:03 -0700270 /* If we never successfully initialized, there's nothing to clean up */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700271 if (!lg)
272 return 0;
273
Rusty Russelldde79782007-07-26 10:41:03 -0700274 /* We need the big lock, to protect from inter-guest I/O and other
275 * Launchers initializing guests. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700276 mutex_lock(&lguest_lock);
277 /* Cancels the hrtimer set via LHCALL_SET_CLOCKEVENT. */
278 hrtimer_cancel(&lg->hrt);
Rusty Russelldde79782007-07-26 10:41:03 -0700279 /* Free any DMA buffers the Guest had bound. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700280 release_all_dma(lg);
Rusty Russelldde79782007-07-26 10:41:03 -0700281 /* Free up the shadow page tables for the Guest. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700282 free_guest_pagetable(lg);
Rusty Russelldde79782007-07-26 10:41:03 -0700283 /* Now all the memory cleanups are done, it's safe to release the
284 * Launcher's memory management structure. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700285 mmput(lg->mm);
Rusty Russelldde79782007-07-26 10:41:03 -0700286 /* If lg->dead doesn't contain an error code it will be NULL or a
287 * kmalloc()ed string, either of which is ok to hand to kfree(). */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700288 if (!IS_ERR(lg->dead))
289 kfree(lg->dead);
Rusty Russelldde79782007-07-26 10:41:03 -0700290 /* We can free up the register page we allocated. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700291 free_page(lg->regs_page);
Rusty Russelldde79782007-07-26 10:41:03 -0700292 /* We clear the entire structure, which also marks it as free for the
293 * next user. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700294 memset(lg, 0, sizeof(*lg));
Rusty Russelldde79782007-07-26 10:41:03 -0700295 /* Release lock and exit. */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700296 mutex_unlock(&lguest_lock);
Rusty Russelldde79782007-07-26 10:41:03 -0700297
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700298 return 0;
299}
300
Rusty Russelldde79782007-07-26 10:41:03 -0700301/*L:000
302 * Welcome to our journey through the Launcher!
303 *
304 * The Launcher is the Host userspace program which sets up, runs and services
305 * the Guest. In fact, many comments in the Drivers which refer to "the Host"
306 * doing things are inaccurate: the Launcher does all the device handling for
307 * the Guest. The Guest can't tell what's done by the the Launcher and what by
308 * the Host.
309 *
310 * Just to confuse you: to the Host kernel, the Launcher *is* the Guest and we
311 * shall see more of that later.
312 *
313 * We begin our understanding with the Host kernel interface which the Launcher
314 * uses: reading and writing a character device called /dev/lguest. All the
315 * work happens in the read(), write() and close() routines: */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700316static struct file_operations lguest_fops = {
317 .owner = THIS_MODULE,
318 .release = close,
319 .write = write,
320 .read = read,
321};
Rusty Russelldde79782007-07-26 10:41:03 -0700322
323/* This is a textbook example of a "misc" character device. Populate a "struct
324 * miscdevice" and register it with misc_register(). */
Rusty Russelld7e28ff2007-07-19 01:49:23 -0700325static struct miscdevice lguest_dev = {
326 .minor = MISC_DYNAMIC_MINOR,
327 .name = "lguest",
328 .fops = &lguest_fops,
329};
330
331int __init lguest_device_init(void)
332{
333 return misc_register(&lguest_dev);
334}
335
336void __exit lguest_device_remove(void)
337{
338 misc_deregister(&lguest_dev);
339}