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.


f0c762d7b8828c70177585c62ba123f58e8232a4
[palacios.git] / palacios / src / devices / char_stream.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) 2010, Peter Dinda <pdinda@northwestern.edu>
11  * Copyright (c) 2010, The V3VEE Project <http://www.v3vee.org> 
12  * All rights reserved.
13  *
14  * Author: Peter Dinda <pdinda@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 #include <palacios/vmm.h>
21 #include <interfaces/vmm_stream.h>
22 #include <palacios/vmm_dev_mgr.h>
23 #include <palacios/vmm_sprintf.h>
24 #include <palacios/vmm_host_events.h>
25 #include <palacios/vmm_lock.h>
26 #include <palacios/vmm_string.h>
27
28
29 struct stream_state {
30     v3_stream_t stream;
31
32     struct v3_dev_char_ops char_ops;
33
34     void * push_fn_arg;
35 };
36
37
38 static int serial_event_handler(struct v3_vm_info * vm, 
39                                 struct v3_serial_event * evt, 
40                                 void * private_data) {
41     struct stream_state * state = (struct stream_state *)private_data;
42
43     if (state->char_ops.push != NULL){
44         state->char_ops.push(vm, evt->data, evt->len, state->push_fn_arg);
45     }
46
47     return 0;
48 }
49
50 static int stream_write(uint8_t * buf, uint64_t length, void * private_data) {
51     struct stream_state * state = (struct stream_state *)private_data;
52     
53     return v3_stream_write(state->stream, buf, length);
54 }
55
56 static int stream_free(struct stream_state * state) {
57     v3_stream_close(state->stream);
58
59     // detach host event
60
61     V3_Free(state);
62
63     return 0;
64 }
65
66
67 static struct v3_device_ops dev_ops = {
68     .free = (int (*)(void *))stream_free,
69 };
70
71 static int stream_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) {
72     char * dev_id = v3_cfg_val(cfg, "ID");
73     char * stream_name = v3_cfg_val(cfg, "name");
74     struct stream_state * state = NULL;
75
76     v3_cfg_tree_t * frontend_cfg = v3_cfg_subtree(cfg, "frontend");
77
78     state = (struct stream_state *)V3_Malloc(sizeof(struct stream_state));
79
80     if (state == NULL) {
81         PrintError("Could not allocate stream backend device\n");
82         return -1;
83     }
84
85     memset(state, 0, sizeof(struct stream_state));
86
87     struct vm_device * dev = v3_add_device(vm, dev_id, &dev_ops, state);
88
89     if (dev == NULL) {
90         PrintError("Could not allocate device %s\n", dev_id);
91         V3_Free(state);
92         return -1;
93     }
94
95
96
97     state->stream = v3_stream_open(vm, stream_name);
98
99     if (state->stream == NULL) {
100         PrintError("Could not open stream %s\n", stream_name);
101         v3_remove_device(dev);
102         return -1;
103     }
104
105     state->char_ops.write = stream_write;
106
107     if (v3_dev_connect_char(vm, v3_cfg_val(frontend_cfg, "tag"), 
108                             &(state->char_ops), frontend_cfg, 
109                             state, &(state->push_fn_arg)) == -1) {
110         PrintError("Could not connect %s to frontend %s\n", 
111                    dev_id, v3_cfg_val(frontend_cfg, "tag"));
112         v3_remove_device(dev);
113         return -1;
114     }
115
116     v3_hook_host_event(vm, HOST_SERIAL_EVT, V3_HOST_EVENT_HANDLER(serial_event_handler), state);
117
118     return 0;
119 }
120
121 device_register("CHAR_STREAM", stream_init);