6 #include <linux/device.h>
7 #include <linux/cdev.h>
8 #include <linux/errno.h>
9 #include <linux/percpu.h>
11 #include <linux/uaccess.h>
12 #include <linux/poll.h>
13 #include <linux/anon_inodes.h>
14 #include <linux/sched.h>
15 #include <linux/file.h>
16 #include <linux/spinlock.h>
17 #include <linux/rbtree.h>
18 #include <linux/module.h>
20 #include <palacios/vmm.h>
21 #include <palacios/vmm_host_events.h>
25 #include "linux-exts.h"
31 int (*handler)(struct v3_guest * guest,
32 unsigned int cmd, unsigned long arg,
37 struct rb_node tree_node;
41 static inline struct vm_ctrl * __insert_ctrl(struct v3_guest * vm,
42 struct vm_ctrl * ctrl) {
43 struct rb_node ** p = &(vm->vm_ctrls.rb_node);
44 struct rb_node * parent = NULL;
45 struct vm_ctrl * tmp_ctrl = NULL;
49 tmp_ctrl = rb_entry(parent, struct vm_ctrl, tree_node);
51 if (ctrl->cmd < tmp_ctrl->cmd) {
53 } else if (ctrl->cmd > tmp_ctrl->cmd) {
60 rb_link_node(&(ctrl->tree_node), parent, p);
67 int add_guest_ctrl(struct v3_guest * guest, unsigned int cmd,
68 int (*handler)(struct v3_guest * guest,
69 unsigned int cmd, unsigned long arg,
72 struct vm_ctrl * ctrl = palacios_alloc(sizeof(struct vm_ctrl));
75 WARNING("Error: Could not allocate vm ctrl %d\n", cmd);
80 ctrl->handler = handler;
81 ctrl->priv_data = priv_data;
83 if (__insert_ctrl(guest, ctrl) != NULL) {
84 WARNING("Could not insert guest ctrl %d\n", cmd);
89 rb_insert_color(&(ctrl->tree_node), &(guest->vm_ctrls));
97 static struct vm_ctrl * get_ctrl(struct v3_guest * guest, unsigned int cmd) {
98 struct rb_node * n = guest->vm_ctrls.rb_node;
99 struct vm_ctrl * ctrl = NULL;
102 ctrl = rb_entry(n, struct vm_ctrl, tree_node);
104 if (cmd < ctrl->cmd) {
106 } else if (cmd > ctrl->cmd) {
116 int remove_guest_ctrl(struct v3_guest * guest, unsigned int cmd) {
117 struct vm_ctrl * ctrl = get_ctrl(guest, cmd);
120 INFO("Could not find control (%d) to remove\n", cmd);
124 rb_erase(&(ctrl->tree_node), &(guest->vm_ctrls));
131 static void free_guest_ctrls(struct v3_guest * guest) {
132 struct rb_node * node = rb_first(&(guest->vm_ctrls));
133 struct vm_ctrl * ctrl = NULL;
136 ctrl = rb_entry(node, struct vm_ctrl, tree_node);
138 node = rb_next(node);
140 WARNING("Cleaning up guest ctrl that was not removed explicitly (%d)\n", ctrl->cmd);
151 extern struct class * v3_class;
154 static long v3_vm_ioctl(struct file * filp,
155 unsigned int ioctl, unsigned long arg) {
157 struct v3_guest * guest = filp->private_data;
159 DEBUG("V3 IOCTL %d\n", ioctl);
163 NOTICE("palacios: launching vm\n");
165 if (v3_start_vm(guest->v3_ctx, (0x1 << num_online_cpus()) - 1) < 0) {
166 WARNING("palacios: launch of vm failed\n");
173 NOTICE("Stopping VM (%s) (%p)\n", guest->name, guest);
175 if (irqs_disabled()) {
176 ERROR("WHAT!!?? IRQs are disabled??\n");
180 v3_stop_vm(guest->v3_ctx);
184 NOTICE("Pausing VM (%s)\n", guest->name);
185 v3_pause_vm(guest->v3_ctx);
188 case V3_VM_CONTINUE: {
189 NOTICE("Continuing VM (%s)\n", guest->name);
190 v3_continue_vm(guest->v3_ctx);
193 case V3_VM_SIMULATE: {
194 NOTICE("Simulating VM (%s) for %lu msecs\n", guest->name, arg);
195 v3_simulate_vm(guest->v3_ctx, arg);
199 struct v3_reset_cmd r;
200 void __user * argp = (void __user *)arg;
202 uint32_t core_range[2];
204 if (copy_from_user(&r, argp, sizeof(struct v3_reset_cmd))) {
205 WARNING("Copy from user error getting reset info\n");
209 if (r.type==V3_RESET_VM_ALL) {
211 } else if (r.type==V3_RESET_VM_HRT) {
213 } else if (r.type==V3_RESET_VM_ROS) {
215 } else if (r.type==V3_RESET_VM_CORE_RANGE){
216 t=V3_VM_RESET_CORE_RANGE;
217 core_range[0]=r.first_core;
218 core_range[1]=r.first_core+r.num_cores-1;
220 ERROR("Unknown reset type %d requested\n",r.type);
224 if (v3_reset_vm_extended(guest->v3_ctx, t, core_range) == -1) {
225 WARNING("Error reseting VM\n");
232 #ifdef V3_CONFIG_CHECKPOINT
234 struct v3_chkpt_info chkpt;
235 void __user * argp = (void __user *)arg;
237 memset(&chkpt, 0, sizeof(struct v3_chkpt_info));
239 if (copy_from_user(&chkpt, argp, sizeof(struct v3_chkpt_info))) {
240 WARNING("Copy from user error getting checkpoint info\n");
244 NOTICE("Saving Guest to %s:%s\n", chkpt.store, chkpt.url);
246 if (v3_save_vm(guest->v3_ctx, chkpt.store, chkpt.url, chkpt.opts) == -1) {
247 WARNING("Error checkpointing VM state\n");
254 struct v3_chkpt_info chkpt;
255 void __user * argp = (void __user *)arg;
257 memset(&chkpt, 0, sizeof(struct v3_chkpt_info));
259 if (copy_from_user(&chkpt, argp, sizeof(struct v3_chkpt_info))) {
260 WARNING("Copy from user error getting checkpoint info\n");
264 NOTICE("Loading Guest from %s:%s\n", chkpt.store, chkpt.url);
266 if (v3_load_vm(guest->v3_ctx, chkpt.store, chkpt.url, chkpt.opts) == -1) {
267 WARNING("Error Loading VM state\n");
275 #ifdef V3_CONFIG_LIVE_MIGRATION
277 struct v3_chkpt_info chkpt_info;
278 void __user * argp = (void __user *)arg;
280 memset(&chkpt_info,0, sizeof(struct v3_chkpt_info));
282 if(copy_from_user(&chkpt_info, argp, sizeof(struct v3_chkpt_info))){
283 WARNING("Copy from user error getting checkpoint info\n");
288 NOTICE("Sending (live-migrating) Guest to %s:%s\n",chkpt_info.store, chkpt_info.url);
290 if (v3_send_vm(guest->v3_ctx, chkpt_info.store, chkpt_info.url, chkpt_info.opts) == -1) {
291 WARNING("Error sending VM\n");
298 case V3_VM_RECEIVE: {
299 struct v3_chkpt_info chkpt_info;
300 void __user * argp = (void __user *)arg;
302 memset(&chkpt_info,0, sizeof(struct v3_chkpt_info));
304 if(copy_from_user(&chkpt_info, argp, sizeof(struct v3_chkpt_info))){
305 WARNING("Copy from user error getting checkpoint info\n");
310 NOTICE("Receiving (live-migrating) Guest to %s:%s\n",chkpt_info.store, chkpt_info.url);
312 if (v3_receive_vm(guest->v3_ctx, chkpt_info.store, chkpt_info.url, chkpt_info.opts) == -1) {
313 WARNING("Error receiving VM\n");
322 struct v3_debug_cmd cmd;
323 struct v3_debug_event evt;
324 void __user * argp = (void __user *)arg;
326 memset(&cmd, 0, sizeof(struct v3_debug_cmd));
328 if (copy_from_user(&cmd, argp, sizeof(struct v3_debug_cmd))) {
329 ERROR("Error: Could not copy debug command from user space\n");
333 evt.core_id = cmd.core;
336 INFO("Debugging VM\n");
338 if (v3_deliver_debug_event(guest->v3_ctx, &evt) == -1) {
339 ERROR("Error could not deliver debug cmd\n");
345 case V3_VM_MOVE_CORE: {
346 struct v3_core_move_cmd cmd;
347 void __user * argp = (void __user *)arg;
349 memset(&cmd, 0, sizeof(struct v3_core_move_cmd));
351 if (copy_from_user(&cmd, argp, sizeof(struct v3_core_move_cmd))) {
352 WARNING("copy from user error getting migrate core command...\n");
356 INFO("moving guest %s vcore %d to CPU %d\n", guest->name, cmd.vcore_id, cmd.pcore_id);
358 if (v3_move_vm_core(guest->v3_ctx, cmd.vcore_id, cmd.pcore_id)) {
359 ERROR("Could not move core\n");
365 case V3_VM_MOVE_MEM: {
366 struct v3_mem_move_cmd cmd;
367 void __user * argp = (void __user *)arg;
369 memset(&cmd, 0, sizeof(struct v3_mem_move_cmd));
371 if (copy_from_user(&cmd, argp, sizeof(struct v3_mem_move_cmd))) {
372 WARNING("copy from user error getting migrate memory command...\n");
376 INFO("moving guest %s memory at gpa %p to memory with affinity for CPU %d\n", guest->name, (void*)(cmd.gpa), cmd.pcore_id);
378 if (v3_move_vm_mem(guest->v3_ctx, (void*)(cmd.gpa), cmd.pcore_id)) {
379 ERROR("Could not move memory\n");
386 struct vm_ctrl * ctrl = get_ctrl(guest, ioctl);
389 return ctrl->handler(guest, ioctl, arg, ctrl->priv_data);
393 WARNING("\tUnhandled ctrl cmd: %d\n", ioctl);
401 static int v3_vm_open(struct inode * inode, struct file * filp) {
402 struct v3_guest * guest = container_of(inode->i_cdev, struct v3_guest, cdev);
403 filp->private_data = guest;
408 static ssize_t v3_vm_read(struct file * filp, char __user * buf, size_t size, loff_t * offset) {
414 static ssize_t v3_vm_write(struct file * filp, const char __user * buf, size_t size, loff_t * offset) {
420 static struct file_operations v3_vm_fops = {
421 .owner = THIS_MODULE,
422 .unlocked_ioctl = v3_vm_ioctl,
423 .compat_ioctl = v3_vm_ioctl,
426 .write = v3_vm_write,
430 extern u32 pg_allocs;
435 int create_palacios_vm(struct v3_guest * guest) {
438 if (init_vm_extensions(guest) < 0) {
439 WARNING("palacios: failed to initialize extensions\n");
443 guest->v3_ctx = v3_create_vm(guest->img, (void *)guest, guest->name, (0x1 << num_online_cpus()) - 1);
445 if (guest->v3_ctx == NULL) {
446 WARNING("palacios: failed to create vm\n");
450 NOTICE("Creating VM device: Major %d, Minor %d\n", MAJOR(guest->vm_dev), MINOR(guest->vm_dev));
452 cdev_init(&(guest->cdev), &v3_vm_fops);
454 guest->cdev.owner = THIS_MODULE;
455 guest->cdev.ops = &v3_vm_fops;
458 INFO("Adding VM device\n");
459 err = cdev_add(&(guest->cdev), guest->vm_dev, 1);
462 WARNING("Fails to add cdev\n");
466 if (device_create(v3_class, NULL, guest->vm_dev, guest, "v3-vm%d", MINOR(guest->vm_dev)) == NULL){
467 WARNING("Fails to create device\n");
471 NOTICE("palacios: vm created at /dev/v3-vm%d\n", MINOR(guest->vm_dev));
476 cdev_del(&(guest->cdev));
478 v3_free_vm(guest->v3_ctx);
480 deinit_vm_extensions(guest);
488 int free_palacios_vm(struct v3_guest * guest) {
490 if (v3_free_vm(guest->v3_ctx)<0) {
494 device_destroy(v3_class, guest->vm_dev);
496 cdev_del(&(guest->cdev));
498 free_guest_ctrls(guest);
500 deinit_vm_extensions(guest);
502 palacios_vfree(guest->img);
503 palacios_free(guest);