/* * Palacios VM Graphics Console Interface (shared framebuffer between palacios and host) * Copyright (c) 2011 Peter Dinda */ #include #include #include #include #include #include #include #include #include #include #include #include "iface-graphics-console.h" #include "palacios.h" #include "linux-exts.h" #include "vm.h" /* This is an implementation of the Palacios Graphics Console interface that is designed to interact with a vnc server running in user space, typically something based on x0vncserver. The basic idea is that we manage a frame buffer that we share with palacios. Palacios draws whatever it likes on it. The user-land vncserver will send us requests for fb updates, which we implement by copying the FB to it. When the user-land sends us characters, etc, we deliver those immediately to palacios via the deliver_key and deliver_mouse event interfaces. The end-result is that whatever the graphics system in palacios renders is visible via vnc. */ static struct list_head global_gcons; struct palacios_graphics_console { // descriptor for the data in the shared frame buffer struct v3_frame_buffer_spec spec; // the actual shared frame buffer // Note that "shared" here means shared between palacios and us // This data could of course also be shared with userland void * data; int cons_refcount; int data_refcount; uint32_t num_updates; int change_request; int (*render_request)(v3_graphics_console_t cons, void *priv_data); void *render_data; int (*update_inquire)(v3_graphics_console_t cons, void *priv_data); void *update_data; struct list_head gcons_node; }; static v3_graphics_console_t g_open(void * priv_data, struct v3_frame_buffer_spec *desired_spec, struct v3_frame_buffer_spec *actual_spec) { struct v3_guest * guest = (struct v3_guest *)priv_data; struct palacios_graphics_console * gc = NULL; uint32_t mem; if (guest == NULL) { return 0; } gc = get_vm_ext_data(guest, "GRAPHICS_CONSOLE_INTERFACE"); if (gc == NULL) { ERROR("palacios: Could not locate graphics console data for extension GRAPHICS_CONSOLE_INTERFACE\n"); return 0; } if (gc->data != NULL) { DEBUG("palacios: framebuffer already allocated - returning it\n"); *actual_spec = gc->spec; gc->cons_refcount++; gc->data_refcount++; return gc; } mem = desired_spec->width * desired_spec->height * desired_spec->bytes_per_pixel; DEBUG("palacios: allocating %u bytes for %u by %u by %u buffer\n", mem, desired_spec->width, desired_spec->height, desired_spec->bytes_per_pixel); gc->data = palacios_valloc(mem); if (!(gc->data)) { ERROR("palacios: unable to allocate memory for frame buffer\n"); return 0; } gc->spec = *desired_spec; *actual_spec = gc->spec; gc->cons_refcount++; gc->data_refcount++; INFO("palacios: allocated frame buffer\n"); return gc; } static void g_close(v3_graphics_console_t cons) { struct palacios_graphics_console *gc = (struct palacios_graphics_console *) cons; gc->cons_refcount--; gc->data_refcount--; if (gc->data_refcount < gc->cons_refcount) { ERROR("palacios: error! data refcount is less than console refcount for graphics console\n"); } if (gc->cons_refcount > 0) { return; } else { if (gc->cons_refcount < 0) { ERROR("palacios: error! refcount for graphics console is negative on close!\n"); } if (gc->data_refcount > 0) { ERROR("palacios: error! refcount for graphics console data is positive on close - LEAKING MEMORY\n"); return; } if (gc->data) { palacios_vfree(gc->data); gc->data=0; } } } static void * g_get_data_read(v3_graphics_console_t cons, struct v3_frame_buffer_spec *cur_spec) { struct palacios_graphics_console *gc = (struct palacios_graphics_console *) cons; if (gc->data_refcount<=0) { ERROR("palacios: error! data refcount is <= 0 in get_data_read\n"); } gc->data_refcount++; *cur_spec=gc->spec; return gc->data; } static void g_release_data_read(v3_graphics_console_t cons) { struct palacios_graphics_console *gc = (struct palacios_graphics_console *) cons; gc->data_refcount--; if (gc->data_refcount<=0) { ERROR("palacios: error! data refcount is <= zero in release_data_read\n"); } } static void *g_get_data_rw(v3_graphics_console_t cons, struct v3_frame_buffer_spec *cur_spec) { return g_get_data_read(cons,cur_spec); } static void g_release_data_rw(v3_graphics_console_t cons) { return g_release_data_read(cons); } static int g_changed(v3_graphics_console_t cons) { struct palacios_graphics_console *gc = (struct palacios_graphics_console *) cons; int cr; cr = gc->change_request; gc->change_request=0; gc->num_updates++; return cr; } static int g_register_render_request( v3_graphics_console_t cons, int (*render_request)(v3_graphics_console_t, void *), void *priv_data) { struct palacios_graphics_console *gc = (struct palacios_graphics_console *) cons; gc->render_data = priv_data; gc->render_request = render_request; INFO("palacios: installed rendering callback function for graphics console\n"); return 0; } static int g_register_update_inquire( v3_graphics_console_t cons, int (*update_inquire)(v3_graphics_console_t, void *), void *priv_data) { struct palacios_graphics_console *gc = (struct palacios_graphics_console *) cons; gc->update_data = priv_data; gc->update_inquire = update_inquire; INFO("palacios: installed update inquiry callback function for graphics console\n"); return 0; } static int palacios_graphics_console_key(struct v3_guest * guest, struct palacios_graphics_console *cons, uint8_t scancode) { struct v3_keyboard_event e; e.status = 0; e.scan_code = scancode; //DEBUG("palacios: start key delivery\n"); v3_deliver_keyboard_event(guest->v3_ctx, &e); //DEBUG("palacios: end key delivery\n"); return 0; } static int palacios_graphics_console_mouse(struct v3_guest * guest, struct palacios_graphics_console *cons, uint8_t sx, uint8_t dx, uint8_t sy, uint8_t dy, uint8_t buttons) { struct v3_mouse_event e; e.sx=sx; e.dx=dx; e.sy=sy; e.dy=dy; e.buttons=buttons; v3_deliver_mouse_event(guest->v3_ctx,&e); return 0; } static struct v3_graphics_console_hooks palacios_graphics_console_hooks = { .open = g_open, .close = g_close, .get_data_read = g_get_data_read, .release_data_read = g_release_data_read, .get_data_rw = g_get_data_rw, .release_data_rw = g_release_data_rw, .changed = g_changed, .register_render_request = g_register_render_request, .register_update_inquire = g_register_update_inquire, }; static int graphics_console_init( void ) { INIT_LIST_HEAD(&(global_gcons)); V3_Init_Graphics_Console(&palacios_graphics_console_hooks); return 0; } static int graphics_console_deinit( void ) { struct palacios_graphics_console * gc = NULL; struct palacios_graphics_console * tmp = NULL; list_for_each_entry_safe(gc, tmp, &(global_gcons), gcons_node) { list_del(&(gc->gcons_node)); if (gc->data) palacios_vfree(gc->data); palacios_free(gc); } return 0; } static int fb_query(struct v3_guest * guest, unsigned int cmd, unsigned long arg, void * priv_data) { struct palacios_graphics_console * cons = priv_data; struct v3_fb_query_response q; if (copy_from_user(&q, (void __user *) arg, sizeof(struct v3_fb_query_response))) { ERROR("palacios: copy from user in getting query in fb\n"); return -EFAULT; } switch (q.request_type) { case V3_FB_SPEC: //INFO("palacios: request for db spec from Userland\n"); // returns only the spec for the FB q.spec = cons->spec; break; case V3_FB_UPDATE: //DEBUG("palacios: test for fb updatei from Userland\n"); // returns whether an update is available for the region if (cons->update_inquire) { q.updated = cons->update_inquire(cons,cons->update_data); } else { q.updated = 1; } //DEBUG("palacios: update=%d\n",q.updated); // request a render, since a FB_DATA will probably soon come cons->change_request = 1; break; case V3_FB_DATA_BOX: { // Not curently implemented ERROR("palacios: request for data in bounding box unsupported currently\n"); return -EFAULT; } break; case V3_FB_DATA_ALL: { //DEBUG("palacios: got FrameBuffer Request from Userland\n"); // First let's sanity check to see if they are requesting the same // spec that we have if (memcmp(&(q.spec),&(cons->spec),sizeof(struct v3_frame_buffer_spec))) { ERROR("palacios: request for data with non-matching fb spec \n"); return -EFAULT; } // Now we will force a render if we can if (cons->render_request) { //DEBUG("palacios: making rendering request\n"); cons->render_request(cons,cons->render_data); } // Now let's indicate an update is in the pointer and copy across the data if (copy_to_user(q.data,cons->data,cons->spec.width*cons->spec.height*cons->spec.bytes_per_pixel)) { ERROR("palacios: unable to copy fb content to user\n"); return -EFAULT; } //DEBUG("palacios: FrameBuffer copy out done\n"); q.updated = 1; // Now we don't need to request a render cons->change_request = 0; } break; default: return -EFAULT; } // now we'll copy back any changes we made to the query/response structure if (copy_to_user((void __user *) arg, (void*)&q, sizeof(struct v3_fb_query_response))) { ERROR("palacios: unable to copy fb response to user\n"); return -EFAULT; } return 0; } static int fb_input(struct v3_guest * guest, unsigned int cmd, unsigned long arg, void * priv_data) { struct palacios_graphics_console * cons = priv_data; struct v3_fb_input inp; int rc = 0; if (copy_from_user(&inp, (void __user *) arg, sizeof(struct v3_fb_input))) { ERROR("palacios: copy from user in getting input in fb\n"); return -EFAULT; } //DEBUG("palacios: input from Userland\n"); if ((inp.data_type == V3_FB_KEY) || (inp.data_type == V3_FB_BOTH)) { rc = palacios_graphics_console_key(guest, cons, inp.scan_code); //DEBUG("palacios: key delivered to palacios\n"); } if ((inp.data_type == V3_FB_MOUSE) || (inp.data_type == V3_FB_BOTH)) { rc |= palacios_graphics_console_mouse(guest, cons, inp.sx, inp.dx, inp.sy, inp.dy, inp.buttons); //DEBUG("palacios: mouse delivered to palacios\n"); } if (rc) { return -EFAULT; } else { cons->change_request=1; return 0; } } static int graphics_console_guest_init(struct v3_guest * guest, void ** vm_data) { struct palacios_graphics_console * graphics_cons = palacios_alloc(sizeof(struct palacios_graphics_console)); if (!graphics_cons) { ERROR("palacios: filed to do guest_init for graphics console\n"); return -1; } memset(graphics_cons, 0, sizeof(struct palacios_graphics_console)); *vm_data = graphics_cons; add_guest_ctrl(guest, V3_VM_FB_INPUT, fb_input, graphics_cons); add_guest_ctrl(guest, V3_VM_FB_QUERY, fb_query, graphics_cons); list_add(&(graphics_cons->gcons_node),&global_gcons); return 0; } static int graphics_console_guest_deinit(struct v3_guest * guest, void * vm_data) { struct palacios_graphics_console * graphics_cons = (struct palacios_graphics_console *)vm_data; list_del(&(graphics_cons->gcons_node)); remove_guest_ctrl(guest, V3_VM_FB_INPUT); remove_guest_ctrl(guest, V3_VM_FB_QUERY); if (graphics_cons->data) { palacios_vfree(graphics_cons->data); } palacios_free(graphics_cons); return 0; } static struct linux_ext graphics_cons_ext = { .name = "GRAPHICS_CONSOLE_INTERFACE", .init = graphics_console_init, .deinit = graphics_console_deinit, .guest_init = graphics_console_guest_init, .guest_deinit = graphics_console_guest_deinit, }; register_extension(&graphics_cons_ext);