Rusty Russell | f938d2c | 2007-07-26 10:41:02 -0700 | [diff] [blame] | 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 |
Rusty Russell | 3c6b5bf | 2007-10-22 11:03:26 +1000 | [diff] [blame] | 3 | * 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 |
Rusty Russell | 1504527 | 2007-10-22 11:24:10 +1000 | [diff] [blame] | 5 | * or the Guest doing a NOTIFY out to the Launcher. :*/ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 6 | #include <linux/uaccess.h> |
| 7 | #include <linux/miscdevice.h> |
| 8 | #include <linux/fs.h> |
| 9 | #include "lg.h" |
| 10 | |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 11 | /*L:055 When something happens, the Waker process needs a way to stop the |
| 12 | * kernel running the Guest and return to the Launcher. So the Waker writes |
| 13 | * LHREQ_BREAK and the value "1" to /dev/lguest to do this. Once the Launcher |
| 14 | * has done whatever needs attention, it writes LHREQ_BREAK and "0" to release |
| 15 | * the Waker. */ |
Jes Sorensen | 511801d | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 16 | static int break_guest_out(struct lguest *lg, const unsigned long __user *input) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 17 | { |
| 18 | unsigned long on; |
| 19 | |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 20 | /* Fetch whether they're turning break on or off. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 21 | if (get_user(on, input) != 0) |
| 22 | return -EFAULT; |
| 23 | |
| 24 | if (on) { |
| 25 | lg->break_out = 1; |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 26 | /* Pop it out of the Guest (may be running on different CPU) */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 27 | wake_up_process(lg->tsk); |
| 28 | /* Wait for them to reset it */ |
| 29 | return wait_event_interruptible(lg->break_wq, !lg->break_out); |
| 30 | } else { |
| 31 | lg->break_out = 0; |
| 32 | wake_up(&lg->break_wq); |
| 33 | return 0; |
| 34 | } |
| 35 | } |
| 36 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 37 | /*L:050 Sending an interrupt is done by writing LHREQ_IRQ and an interrupt |
| 38 | * number to /dev/lguest. */ |
Glauber de Oliveira Costa | 177e449 | 2008-01-07 11:05:29 -0200 | [diff] [blame] | 39 | static int user_send_irq(struct lg_cpu *cpu, const unsigned long __user *input) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 40 | { |
Jes Sorensen | 511801d | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 41 | unsigned long irq; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 42 | |
| 43 | if (get_user(irq, input) != 0) |
| 44 | return -EFAULT; |
| 45 | if (irq >= LGUEST_IRQS) |
| 46 | return -EINVAL; |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 47 | /* Next time the Guest runs, the core code will see if it can deliver |
| 48 | * this interrupt. */ |
Glauber de Oliveira Costa | 177e449 | 2008-01-07 11:05:29 -0200 | [diff] [blame] | 49 | set_bit(irq, cpu->irqs_pending); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 50 | return 0; |
| 51 | } |
| 52 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 53 | /*L:040 Once our Guest is initialized, the Launcher makes it run by reading |
| 54 | * from /dev/lguest. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 55 | static ssize_t read(struct file *file, char __user *user, size_t size,loff_t*o) |
| 56 | { |
| 57 | struct lguest *lg = file->private_data; |
Glauber de Oliveira Costa | d0953d4 | 2008-01-07 11:05:25 -0200 | [diff] [blame] | 58 | struct lg_cpu *cpu; |
| 59 | unsigned int cpu_id = *o; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 60 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 61 | /* You must write LHREQ_INITIALIZE first! */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 62 | if (!lg) |
| 63 | return -EINVAL; |
| 64 | |
Glauber de Oliveira Costa | d0953d4 | 2008-01-07 11:05:25 -0200 | [diff] [blame] | 65 | /* Watch out for arbitrary vcpu indexes! */ |
| 66 | if (cpu_id >= lg->nr_cpus) |
| 67 | return -EINVAL; |
| 68 | |
| 69 | cpu = &lg->cpus[cpu_id]; |
| 70 | |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 71 | /* If you're not the task which owns the Guest, go away. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 72 | if (current != lg->tsk) |
| 73 | return -EPERM; |
| 74 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 75 | /* If the guest is already dead, we indicate why */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 76 | if (lg->dead) { |
| 77 | size_t len; |
| 78 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 79 | /* lg->dead either contains an error code, or a string. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 80 | if (IS_ERR(lg->dead)) |
| 81 | return PTR_ERR(lg->dead); |
| 82 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 83 | /* We can only return as much as the buffer they read with. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 84 | len = min(size, strlen(lg->dead)+1); |
| 85 | if (copy_to_user(user, lg->dead, len) != 0) |
| 86 | return -EFAULT; |
| 87 | return len; |
| 88 | } |
| 89 | |
Rusty Russell | 1504527 | 2007-10-22 11:24:10 +1000 | [diff] [blame] | 90 | /* If we returned from read() last time because the Guest notified, |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 91 | * clear the flag. */ |
Rusty Russell | 1504527 | 2007-10-22 11:24:10 +1000 | [diff] [blame] | 92 | if (lg->pending_notify) |
| 93 | lg->pending_notify = 0; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 94 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 95 | /* Run the Guest until something interesting happens. */ |
Glauber de Oliveira Costa | d0953d4 | 2008-01-07 11:05:25 -0200 | [diff] [blame] | 96 | return run_guest(cpu, (unsigned long __user *)user); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Glauber de Oliveira Costa | 4dcc53d | 2008-01-07 11:05:24 -0200 | [diff] [blame] | 99 | static int lg_cpu_start(struct lg_cpu *cpu, unsigned id, unsigned long start_ip) |
| 100 | { |
| 101 | if (id >= NR_CPUS) |
| 102 | return -EINVAL; |
| 103 | |
| 104 | cpu->id = id; |
| 105 | cpu->lg = container_of((cpu - id), struct lguest, cpus[0]); |
| 106 | cpu->lg->nr_cpus++; |
Glauber de Oliveira Costa | ad8d8f3 | 2008-01-07 11:05:28 -0200 | [diff] [blame] | 107 | init_clockdev(cpu); |
Glauber de Oliveira Costa | 4dcc53d | 2008-01-07 11:05:24 -0200 | [diff] [blame] | 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | |
Rusty Russell | 47436aa | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 112 | /*L:020 The initialization write supplies 4 pointer sized (32 or 64 bit) |
Jes Sorensen | 511801d | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 113 | * values (in addition to the LHREQ_INITIALIZE value). These are: |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 114 | * |
Rusty Russell | 3c6b5bf | 2007-10-22 11:03:26 +1000 | [diff] [blame] | 115 | * base: The start of the Guest-physical memory inside the Launcher memory. |
| 116 | * |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 117 | * pfnlimit: The highest (Guest-physical) page number the Guest should be |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 118 | * allowed to access. The Guest memory lives inside the Launcher, so it sets |
| 119 | * this to ensure the Guest can only reach its own memory. |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 120 | * |
| 121 | * pgdir: The (Guest-physical) address of the top of the initial Guest |
| 122 | * pagetables (which are set up by the Launcher). |
| 123 | * |
| 124 | * start: The first instruction to execute ("eip" in x86-speak). |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 125 | */ |
Jes Sorensen | 511801d | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 126 | static int initialize(struct file *file, const unsigned long __user *input) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 127 | { |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 128 | /* "struct lguest" contains everything we (the Host) know about a |
| 129 | * Guest. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 130 | struct lguest *lg; |
Rusty Russell | 48245cc | 2007-10-22 11:03:27 +1000 | [diff] [blame] | 131 | int err; |
Rusty Russell | 47436aa | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 132 | unsigned long args[4]; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 133 | |
Rusty Russell | 48245cc | 2007-10-22 11:03:27 +1000 | [diff] [blame] | 134 | /* We grab the Big Lguest lock, which protects against multiple |
| 135 | * simultaneous initializations. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 136 | mutex_lock(&lguest_lock); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 137 | /* You can't initialize twice! Close the device and start again... */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 138 | if (file->private_data) { |
| 139 | err = -EBUSY; |
| 140 | goto unlock; |
| 141 | } |
| 142 | |
| 143 | if (copy_from_user(args, input, sizeof(args)) != 0) { |
| 144 | err = -EFAULT; |
| 145 | goto unlock; |
| 146 | } |
| 147 | |
Rusty Russell | 48245cc | 2007-10-22 11:03:27 +1000 | [diff] [blame] | 148 | lg = kzalloc(sizeof(*lg), GFP_KERNEL); |
| 149 | if (!lg) { |
| 150 | err = -ENOMEM; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 151 | goto unlock; |
| 152 | } |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 153 | |
| 154 | /* Populate the easy fields of our "struct lguest" */ |
Rusty Russell | 3c6b5bf | 2007-10-22 11:03:26 +1000 | [diff] [blame] | 155 | lg->mem_base = (void __user *)(long)args[0]; |
| 156 | lg->pfn_limit = args[1]; |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 157 | |
Glauber de Oliveira Costa | 4dcc53d | 2008-01-07 11:05:24 -0200 | [diff] [blame] | 158 | /* This is the first cpu */ |
Glauber de Oliveira Costa | d0953d4 | 2008-01-07 11:05:25 -0200 | [diff] [blame] | 159 | err = lg_cpu_start(&lg->cpus[0], 0, args[3]); |
Glauber de Oliveira Costa | 4dcc53d | 2008-01-07 11:05:24 -0200 | [diff] [blame] | 160 | if (err) |
| 161 | goto release_guest; |
| 162 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 163 | /* We need a complete page for the Guest registers: they are accessible |
| 164 | * to the Guest and we can only grant it access to whole pages. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 165 | lg->regs_page = get_zeroed_page(GFP_KERNEL); |
| 166 | if (!lg->regs_page) { |
| 167 | err = -ENOMEM; |
| 168 | goto release_guest; |
| 169 | } |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 170 | /* We actually put the registers at the bottom of the page. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 171 | lg->regs = (void *)lg->regs_page + PAGE_SIZE - sizeof(*lg->regs); |
| 172 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 173 | /* Initialize the Guest's shadow page tables, using the toplevel |
| 174 | * address the Launcher gave us. This allocates memory, so can |
| 175 | * fail. */ |
Rusty Russell | 3c6b5bf | 2007-10-22 11:03:26 +1000 | [diff] [blame] | 176 | err = init_guest_pagetable(lg, args[2]); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 177 | if (err) |
| 178 | goto free_regs; |
| 179 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 180 | /* Now we initialize the Guest's registers, handing it the start |
| 181 | * address. */ |
Jes Sorensen | d612cde | 2007-10-22 11:03:32 +1000 | [diff] [blame] | 182 | lguest_arch_setup_regs(lg, args[3]); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 183 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 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 Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 186 | lg->tsk = current; |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 187 | /* 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 Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 190 | lg->mm = get_task_mm(lg->tsk); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 191 | |
| 192 | /* Initialize the queue for the waker to wait on */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 193 | init_waitqueue_head(&lg->break_wq); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 194 | |
| 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 Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 197 | lg->last_pages = NULL; |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 198 | |
| 199 | /* We keep our "struct lguest" in the file's private_data. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 200 | file->private_data = lg; |
| 201 | |
| 202 | mutex_unlock(&lguest_lock); |
| 203 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 204 | /* And because this is a write() call, we return the length used. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 205 | return sizeof(args); |
| 206 | |
| 207 | free_regs: |
| 208 | free_page(lg->regs_page); |
| 209 | release_guest: |
Adrian Bunk | 4305441 | 2007-11-14 16:59:00 -0800 | [diff] [blame] | 210 | kfree(lg); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 211 | unlock: |
| 212 | mutex_unlock(&lguest_lock); |
| 213 | return err; |
| 214 | } |
| 215 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 216 | /*L:010 The first operation the Launcher does must be a write. All writes |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 217 | * start with an unsigned long number: for the first write this must be |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 218 | * LHREQ_INITIALIZE to set up the Guest. After that the Launcher can use |
Rusty Russell | 1504527 | 2007-10-22 11:24:10 +1000 | [diff] [blame] | 219 | * writes of other values to send interrupts. */ |
Jes Sorensen | 511801d | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 220 | static ssize_t write(struct file *file, const char __user *in, |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 221 | size_t size, loff_t *off) |
| 222 | { |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 223 | /* Once the guest is initialized, we hold the "struct lguest" in the |
| 224 | * file private data. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 225 | struct lguest *lg = file->private_data; |
Jes Sorensen | 511801d | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 226 | const unsigned long __user *input = (const unsigned long __user *)in; |
| 227 | unsigned long req; |
Glauber de Oliveira Costa | 177e449 | 2008-01-07 11:05:29 -0200 | [diff] [blame] | 228 | struct lg_cpu *uninitialized_var(cpu); |
Glauber de Oliveira Costa | 7ea07a1 | 2008-01-07 11:05:26 -0200 | [diff] [blame] | 229 | unsigned int cpu_id = *off; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 230 | |
| 231 | if (get_user(req, input) != 0) |
| 232 | return -EFAULT; |
Jes Sorensen | 511801d | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 233 | input++; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 234 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 235 | /* If you haven't initialized, you must do that first. */ |
Glauber de Oliveira Costa | 7ea07a1 | 2008-01-07 11:05:26 -0200 | [diff] [blame] | 236 | if (req != LHREQ_INITIALIZE) { |
| 237 | if (!lg || (cpu_id >= lg->nr_cpus)) |
| 238 | return -EINVAL; |
| 239 | cpu = &lg->cpus[cpu_id]; |
| 240 | if (!cpu) |
| 241 | return -EINVAL; |
| 242 | } |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 243 | |
| 244 | /* Once the Guest is dead, all you can do is read() why it died. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 245 | if (lg && lg->dead) |
| 246 | return -ENOENT; |
| 247 | |
| 248 | /* If you're not the task which owns the Guest, you can only break */ |
| 249 | if (lg && current != lg->tsk && req != LHREQ_BREAK) |
| 250 | return -EPERM; |
| 251 | |
| 252 | switch (req) { |
| 253 | case LHREQ_INITIALIZE: |
Jes Sorensen | 511801d | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 254 | return initialize(file, input); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 255 | case LHREQ_IRQ: |
Glauber de Oliveira Costa | 177e449 | 2008-01-07 11:05:29 -0200 | [diff] [blame] | 256 | return user_send_irq(cpu, input); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 257 | case LHREQ_BREAK: |
Jes Sorensen | 511801d | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 258 | return break_guest_out(lg, input); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 259 | default: |
| 260 | return -EINVAL; |
| 261 | } |
| 262 | } |
| 263 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 264 | /*L:060 The final piece of interface code is the close() routine. It reverses |
| 265 | * everything done in initialize(). This is usually called because the |
| 266 | * Launcher exited. |
| 267 | * |
| 268 | * Note that the close routine returns 0 or a negative error number: it can't |
| 269 | * really fail, but it can whine. I blame Sun for this wart, and K&R C for |
| 270 | * letting them do it. :*/ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 271 | static int close(struct inode *inode, struct file *file) |
| 272 | { |
| 273 | struct lguest *lg = file->private_data; |
Glauber de Oliveira Costa | ad8d8f3 | 2008-01-07 11:05:28 -0200 | [diff] [blame] | 274 | unsigned int i; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 275 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 276 | /* If we never successfully initialized, there's nothing to clean up */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 277 | if (!lg) |
| 278 | return 0; |
| 279 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 280 | /* We need the big lock, to protect from inter-guest I/O and other |
| 281 | * Launchers initializing guests. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 282 | mutex_lock(&lguest_lock); |
Glauber de Oliveira Costa | ad8d8f3 | 2008-01-07 11:05:28 -0200 | [diff] [blame] | 283 | for (i = 0; i < lg->nr_cpus; i++) |
| 284 | /* Cancels the hrtimer set via LHCALL_SET_CLOCKEVENT. */ |
| 285 | hrtimer_cancel(&lg->cpus[i].hrt); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 286 | /* Free up the shadow page tables for the Guest. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 287 | free_guest_pagetable(lg); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 288 | /* Now all the memory cleanups are done, it's safe to release the |
| 289 | * Launcher's memory management structure. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 290 | mmput(lg->mm); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 291 | /* If lg->dead doesn't contain an error code it will be NULL or a |
| 292 | * kmalloc()ed string, either of which is ok to hand to kfree(). */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 293 | if (!IS_ERR(lg->dead)) |
| 294 | kfree(lg->dead); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 295 | /* We can free up the register page we allocated. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 296 | free_page(lg->regs_page); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 297 | /* We clear the entire structure, which also marks it as free for the |
| 298 | * next user. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 299 | memset(lg, 0, sizeof(*lg)); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 300 | /* Release lock and exit. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 301 | mutex_unlock(&lguest_lock); |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 302 | |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 303 | return 0; |
| 304 | } |
| 305 | |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 306 | /*L:000 |
| 307 | * Welcome to our journey through the Launcher! |
| 308 | * |
| 309 | * The Launcher is the Host userspace program which sets up, runs and services |
| 310 | * the Guest. In fact, many comments in the Drivers which refer to "the Host" |
| 311 | * doing things are inaccurate: the Launcher does all the device handling for |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 312 | * the Guest, but the Guest can't know that. |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 313 | * |
| 314 | * Just to confuse you: to the Host kernel, the Launcher *is* the Guest and we |
| 315 | * shall see more of that later. |
| 316 | * |
| 317 | * We begin our understanding with the Host kernel interface which the Launcher |
| 318 | * uses: reading and writing a character device called /dev/lguest. All the |
| 319 | * work happens in the read(), write() and close() routines: */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 320 | static struct file_operations lguest_fops = { |
| 321 | .owner = THIS_MODULE, |
| 322 | .release = close, |
| 323 | .write = write, |
| 324 | .read = read, |
| 325 | }; |
Rusty Russell | dde7978 | 2007-07-26 10:41:03 -0700 | [diff] [blame] | 326 | |
| 327 | /* This is a textbook example of a "misc" character device. Populate a "struct |
| 328 | * miscdevice" and register it with misc_register(). */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 329 | static struct miscdevice lguest_dev = { |
| 330 | .minor = MISC_DYNAMIC_MINOR, |
| 331 | .name = "lguest", |
| 332 | .fops = &lguest_fops, |
| 333 | }; |
| 334 | |
| 335 | int __init lguest_device_init(void) |
| 336 | { |
| 337 | return misc_register(&lguest_dev); |
| 338 | } |
| 339 | |
| 340 | void __exit lguest_device_remove(void) |
| 341 | { |
| 342 | misc_deregister(&lguest_dev); |
| 343 | } |