2 * Copyright (C) International Business Machines Corp., 2005
3 * Author(s): Anthony Liguori <aliguori@us.ibm.com>
5 * Copyright (C) Red Hat 2007
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; under version 2 of the License.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, see <http://www.gnu.org/licenses/>.
25 #include <sys/select.h>
32 #include <xen/io/console.h>
37 #include "qemu-char.h"
38 #include "xen_backend.h"
49 struct XenDevice xendev; /* must be first */
51 char console[XEN_BUFSIZE];
58 static void buffer_append(struct XenConsole *con)
60 struct buffer *buffer = &con->buffer;
61 XENCONS_RING_IDX cons, prod, size;
62 struct xencons_interface *intf = con->sring;
64 cons = intf->out_cons;
65 prod = intf->out_prod;
69 if ((size == 0) || (size > sizeof(intf->out)))
72 if ((buffer->capacity - buffer->size) < size) {
73 buffer->capacity += (size + 1024);
74 buffer->data = qemu_realloc(buffer->data, buffer->capacity);
78 buffer->data[buffer->size++] = intf->out[
79 MASK_XENCONS_IDX(cons++, intf->out)];
82 intf->out_cons = cons;
83 xen_be_send_notify(&con->xendev);
85 if (buffer->max_capacity &&
86 buffer->size > buffer->max_capacity) {
87 /* Discard the middle of the data. */
89 size_t over = buffer->size - buffer->max_capacity;
90 uint8_t *maxpos = buffer->data + buffer->max_capacity;
92 memmove(maxpos - over, maxpos, over);
93 buffer->data = qemu_realloc(buffer->data, buffer->max_capacity);
94 buffer->size = buffer->capacity = buffer->max_capacity;
96 if (buffer->consumed > buffer->max_capacity - over)
97 buffer->consumed = buffer->max_capacity - over;
101 static void buffer_advance(struct buffer *buffer, size_t len)
103 buffer->consumed += len;
104 if (buffer->consumed == buffer->size) {
105 buffer->consumed = 0;
110 static int ring_free_bytes(struct XenConsole *con)
112 struct xencons_interface *intf = con->sring;
113 XENCONS_RING_IDX cons, prod, space;
115 cons = intf->in_cons;
116 prod = intf->in_prod;
120 if (space > sizeof(intf->in))
121 return 0; /* ring is screwed: ignore it */
123 return (sizeof(intf->in) - space);
126 static int xencons_can_receive(void *opaque)
128 struct XenConsole *con = opaque;
129 return ring_free_bytes(con);
132 static void xencons_receive(void *opaque, const uint8_t *buf, int len)
134 struct XenConsole *con = opaque;
135 struct xencons_interface *intf = con->sring;
136 XENCONS_RING_IDX prod;
139 max = ring_free_bytes(con);
140 /* The can_receive() func limits this, but check again anyway */
144 prod = intf->in_prod;
145 for (i = 0; i < len; i++) {
146 intf->in[MASK_XENCONS_IDX(prod++, intf->in)] =
150 intf->in_prod = prod;
151 xen_be_send_notify(&con->xendev);
154 static void xencons_send(struct XenConsole *con)
158 size = con->buffer.size - con->buffer.consumed;
160 len = qemu_chr_write(con->chr, con->buffer.data + con->buffer.consumed,
167 xen_be_printf(&con->xendev, 1, "backlog piling up, nobody listening?\n");
170 buffer_advance(&con->buffer, len);
171 if (con->backlog && len == size) {
173 xen_be_printf(&con->xendev, 1, "backlog is gone\n");
178 /* -------------------------------------------------------------------- */
180 static int con_init(struct XenDevice *xendev)
182 struct XenConsole *con = container_of(xendev, struct XenConsole, xendev);
186 dom = xs_get_domain_path(xenstore, con->xendev.dom);
187 snprintf(con->console, sizeof(con->console), "%s/console", dom);
190 type = xenstore_read_str(con->console, "type");
191 if (!type || strcmp(type, "ioemu") != 0) {
192 xen_be_printf(xendev, 1, "not for me (type=%s)\n", type);
196 if (!serial_hds[con->xendev.dev])
197 xen_be_printf(xendev, 1, "WARNING: serial line %d not configured\n",
200 con->chr = serial_hds[con->xendev.dev];
205 static int con_connect(struct XenDevice *xendev)
207 struct XenConsole *con = container_of(xendev, struct XenConsole, xendev);
210 if (xenstore_read_int(con->console, "ring-ref", &con->ring_ref) == -1)
212 if (xenstore_read_int(con->console, "port", &con->xendev.remote_port) == -1)
214 if (xenstore_read_int(con->console, "limit", &limit) == 0)
215 con->buffer.max_capacity = limit;
217 con->sring = xc_map_foreign_range(xen_xc, con->xendev.dom,
219 PROT_READ|PROT_WRITE,
224 xen_be_bind_evtchn(&con->xendev);
226 qemu_chr_add_handlers(con->chr, xencons_can_receive, xencons_receive,
229 xen_be_printf(xendev, 1, "ring mfn %d, remote port %d, local port %d, limit %zd\n",
231 con->xendev.remote_port,
232 con->xendev.local_port,
233 con->buffer.max_capacity);
237 static void con_disconnect(struct XenDevice *xendev)
239 struct XenConsole *con = container_of(xendev, struct XenConsole, xendev);
242 qemu_chr_add_handlers(con->chr, NULL, NULL, NULL, NULL);
243 xen_be_unbind_evtchn(&con->xendev);
246 munmap(con->sring, XC_PAGE_SIZE);
251 static void con_event(struct XenDevice *xendev)
253 struct XenConsole *con = container_of(xendev, struct XenConsole, xendev);
256 if (con->buffer.size - con->buffer.consumed)
260 /* -------------------------------------------------------------------- */
262 struct XenDevOps xen_console_ops = {
263 .size = sizeof(struct XenConsole),
264 .flags = DEVOPS_FLAG_IGNORE_STATE,
266 .connect = con_connect,
268 .disconnect = con_disconnect,