Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


huge update for merge
[palacios.git] / palacios / src / devices / os_debug.c
1 /* 
2  * This file is part of the Palacios Virtual Machine Monitor developed
3  * by the V3VEE Project with funding from the United States National 
4  * Science Foundation and the Department of Energy.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
10  * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
11  * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
12  * All rights reserved.
13  *
14  * Author: Jack Lange <jarusl@cs.northwestern.edu>
15  *
16  * This is free software.  You are permitted to use,
17  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
18  */
19
20
21 #include <devices/os_debug.h>
22 #include <palacios/vmm.h>
23 #include <palacios/vm_guest_mem.h>
24
25 #define BUF_SIZE 1024
26
27 #define DEBUG_PORT1 0xc0c0
28 #define DEBUG_HCALL 0xc0c0
29
30 struct debug_state {
31     char debug_buf[BUF_SIZE];
32     uint_t debug_offset;
33
34 };
35
36
37 static int handle_gen_write(ushort_t port, void * src, uint_t length, struct vm_device * dev) {
38     struct debug_state * state = (struct debug_state *)dev->private_data;
39
40     state->debug_buf[state->debug_offset++] = *(char*)src;
41
42     if ((*(char*)src == 0xa) ||  (state->debug_offset == (BUF_SIZE - 1))) {
43         PrintDebug("VM_CONSOLE>%s", state->debug_buf);
44         memset(state->debug_buf, 0, BUF_SIZE);
45         state->debug_offset = 0;
46     }
47
48     return length;
49 }
50
51 static int handle_hcall(struct guest_info * info, uint_t hcall_id, void * priv_data) {
52     struct vm_device * dev = (struct vm_device *)priv_data;
53     struct debug_state * state = (struct debug_state *)dev->private_data;
54
55     int msg_len = info->vm_regs.rcx;
56     addr_t msg_gpa = info->vm_regs.rbx;
57     
58     if (msg_len >= BUF_SIZE) {
59         PrintError("Console message too large for buffer (len=%d)\n", msg_len);
60         return -1;
61     }
62     
63     if (read_guest_pa_memory(info, msg_gpa, msg_len, (uchar_t *)state->debug_buf) != msg_len) {
64         PrintError("Could not read debug message\n");
65         return -1;
66     }
67
68     state->debug_buf[msg_len] = 0;
69
70     PrintDebug("VM_CONSOLE>%s\n", state->debug_buf);
71
72     return 0;
73 }
74
75
76 static int debug_init(struct vm_device * dev) {
77     struct debug_state * state = (struct debug_state *)dev->private_data;
78
79     v3_dev_hook_io(dev, DEBUG_PORT1,  NULL, &handle_gen_write);
80     v3_register_hypercall(dev->vm, DEBUG_HCALL, handle_hcall, dev);
81
82     state->debug_offset = 0;
83     memset(state->debug_buf, 0, BUF_SIZE);
84   
85     return 0;
86 }
87
88 static int debug_deinit(struct vm_device * dev) {
89     v3_dev_unhook_io(dev, DEBUG_PORT1);
90
91
92     return 0;
93 };
94
95
96
97
98 static struct vm_device_ops dev_ops = {
99     .init = debug_init,
100     .deinit = debug_deinit,
101     .reset = NULL,
102     .start = NULL,
103     .stop = NULL,
104 };
105
106
107 struct vm_device * v3_create_os_debug() {
108     struct debug_state * state = NULL;
109
110     state = (struct debug_state *)V3_Malloc(sizeof(struct debug_state));
111
112     PrintDebug("Creating OS Debug Device\n");
113     struct vm_device * device = v3_create_device("OS Debug", &dev_ops, state);
114
115
116
117     return device;
118 }