3 * Operations Command - Line Mode input
4 * Message - Line Mode output
6 * Copyright IBM, Corp. 2013
11 * This work is licensed under the terms of the GNU GPL, version 2 or (at your
12 * option) any later version. See the COPYING file in the top-level directory.
17 #include "qemu/thread.h"
18 #include "qemu/error-report.h"
19 #include "sysemu/char.h"
21 #include "hw/s390x/sclp.h"
22 #include "hw/s390x/event-facility.h"
23 #include "hw/s390x/ebcdic.h"
25 #define SIZE_BUFFER 4096
28 typedef struct OprtnsCommand {
29 EventBufferHeader header;
32 } QEMU_PACKED OprtnsCommand;
34 /* max size for line-mode data in 4K SCCB page */
35 #define SIZE_CONSOLE_BUFFER (SCCB_DATA_LEN - sizeof(OprtnsCommand))
37 typedef struct SCLPConsoleLM {
40 bool echo; /* immediate echo of input if true */
41 uint32_t write_errors; /* errors writing to char layer */
42 uint32_t length; /* length of byte stream in buffer */
43 uint8_t buf[SIZE_CONSOLE_BUFFER];
47 * Character layer call-back functions
49 * Allow 1 character at a time
51 * Accumulate bytes from character layer in console buffer,
52 * event_pending is set when a newline character is encountered
54 * The maximum command line length is limited by the maximum
55 * space available in an SCCB. Line mode console input is sent
56 * truncated to the guest in case it doesn't fit into the SCCB.
59 static int chr_can_read(void *opaque)
61 SCLPConsoleLM *scon = opaque;
63 if (scon->event.event_pending) {
69 static void chr_read(void *opaque, const uint8_t *buf, int size)
71 SCLPConsoleLM *scon = opaque;
75 if (*buf == '\r' || *buf == '\n') {
76 scon->event.event_pending = true;
77 sclp_service_interrupt(0);
80 if (scon->length == SIZE_CONSOLE_BUFFER) {
81 /* Eat the character, but still process CR and LF. */
84 scon->buf[scon->length] = *buf;
87 qemu_chr_fe_write(scon->chr, buf, size);
91 /* functions to be called by event facility */
93 static bool can_handle_event(uint8_t type)
95 return type == SCLP_EVENT_MESSAGE || type == SCLP_EVENT_PMSGCMD;
98 static unsigned int send_mask(void)
100 return SCLP_EVENT_MASK_OP_CMD | SCLP_EVENT_MASK_PMSGCMD;
103 static unsigned int receive_mask(void)
105 return SCLP_EVENT_MASK_MSG | SCLP_EVENT_MASK_PMSGCMD;
109 * Triggered by SCLP's read_event_data
110 * - convert ASCII byte stream to EBCDIC and
111 * - copy converted data into provided (SCLP) buffer
113 static int get_console_data(SCLPEvent *event, uint8_t *buf, size_t *size,
118 SCLPConsoleLM *cons = DO_UPCAST(SCLPConsoleLM, event, event);
121 /* data need to fit into provided SCLP buffer */
126 ebcdic_put(buf, (char *)&cons->buf, len);
129 /* data provided and no more data pending */
130 event->event_pending = false;
135 static int read_event_data(SCLPEvent *event, EventBufferHeader *evt_buf_hdr,
141 OprtnsCommand *oc = (OprtnsCommand *) evt_buf_hdr;
143 if (!event->event_pending) {
144 /* no data pending */
148 to = (uint8_t *)&oc->data;
149 avail = *slen - sizeof(OprtnsCommand);
150 rc = get_console_data(event, to, &src_len, avail);
152 /* data didn't fit, try next SCCB */
156 oc->message_unit.mdmsu.gds_id = GDS_ID_MDSMU;
157 oc->message_unit.mdmsu.length = cpu_to_be16(sizeof(struct MDMSU));
159 oc->message_unit.cpmsu.gds_id = GDS_ID_CPMSU;
160 oc->message_unit.cpmsu.length =
161 cpu_to_be16(sizeof(struct MDMSU) - sizeof(GdsVector));
163 oc->message_unit.text_command.gds_id = GDS_ID_TEXTCMD;
164 oc->message_unit.text_command.length =
165 cpu_to_be16(sizeof(struct MDMSU) - (2 * sizeof(GdsVector)));
167 oc->message_unit.self_def_text_message.key = GDS_KEY_SELFDEFTEXTMSG;
168 oc->message_unit.self_def_text_message.length =
169 cpu_to_be16(sizeof(struct MDMSU) - (3 * sizeof(GdsVector)));
171 oc->message_unit.text_message.key = GDS_KEY_TEXTMSG;
172 oc->message_unit.text_message.length =
173 cpu_to_be16(sizeof(GdsSubvector) + src_len);
175 oc->header.length = cpu_to_be16(sizeof(OprtnsCommand) + src_len);
176 oc->header.type = SCLP_EVENT_OPRTNS_COMMAND;
177 *slen = avail - src_len;
183 * Triggered by SCLP's write_event_data
184 * - write console data to character layer
185 * returns < 0 if an error occurred
187 static int write_console_data(SCLPEvent *event, const uint8_t *buf, int len)
190 const uint8_t *buf_offset;
192 SCLPConsoleLM *scon = DO_UPCAST(SCLPConsoleLM, event, event);
195 /* If there's no backend, we can just say we consumed all data. */
201 ret = qemu_chr_fe_write(scon->chr, buf, len);
203 /* a pty doesn't seem to be connected - no error */
205 } else if (ret == -EAGAIN || (ret > 0 && ret < len)) {
216 static int process_mdb(SCLPEvent *event, MDBO *mdbo)
220 uint8_t buffer[SIZE_BUFFER];
222 len = be16_to_cpu(mdbo->length);
223 len -= sizeof(mdbo->length) + sizeof(mdbo->type)
224 + sizeof(mdbo->mto.line_type_flags)
225 + sizeof(mdbo->mto.alarm_control)
226 + sizeof(mdbo->mto._reserved);
228 assert(len <= SIZE_BUFFER);
230 /* convert EBCDIC SCLP contents to ASCII console message */
231 ascii_put(buffer, mdbo->mto.message, len);
232 rc = write_console_data(event, (uint8_t *)NEWLINE, 1);
236 return write_console_data(event, buffer, len);
239 static int write_event_data(SCLPEvent *event, EventBufferHeader *ebh)
245 SclpMsg *data = (SclpMsg *) ebh;
246 SCLPConsoleLM *scon = DO_UPCAST(SCLPConsoleLM, event, event);
248 len = be16_to_cpu(data->mdb.header.length);
249 if (len < sizeof(data->mdb.header)) {
250 return SCLP_RC_INCONSISTENT_LENGTHS;
252 len -= sizeof(data->mdb.header);
254 /* first check message buffers */
255 mdbo = data->mdb.mdbo;
257 if (be16_to_cpu(mdbo->length) > len
258 || be16_to_cpu(mdbo->length) == 0) {
259 return SCLP_RC_INCONSISTENT_LENGTHS;
261 len -= be16_to_cpu(mdbo->length);
262 mdbo = (void *) mdbo + be16_to_cpu(mdbo->length);
266 len = be16_to_cpu(data->mdb.header.length) - sizeof(data->mdb.header);
267 mdbo = data->mdb.mdbo;
269 switch (be16_to_cpu(mdbo->type)) {
271 /* message text object */
272 written = process_mdb(event, mdbo);
274 /* character layer error */
278 default: /* ignore */
281 len -= be16_to_cpu(mdbo->length);
282 mdbo = (void *) mdbo + be16_to_cpu(mdbo->length);
285 scon->write_errors += errors;
287 data->header.flags = SCLP_EVENT_BUFFER_ACCEPTED;
289 return SCLP_RC_NORMAL_COMPLETION;
292 /* functions for live migration */
294 static const VMStateDescription vmstate_sclplmconsole = {
295 .name = "sclplmconsole",
297 .minimum_version_id = 0,
298 .fields = (VMStateField[]) {
299 VMSTATE_BOOL(event.event_pending, SCLPConsoleLM),
300 VMSTATE_UINT32(write_errors, SCLPConsoleLM),
301 VMSTATE_UINT32(length, SCLPConsoleLM),
302 VMSTATE_UINT8_ARRAY(buf, SCLPConsoleLM, SIZE_CONSOLE_BUFFER),
303 VMSTATE_END_OF_LIST()
307 /* qemu object creation and initialization functions */
309 /* tell character layer our call-back functions */
311 static int console_init(SCLPEvent *event)
313 static bool console_available;
315 SCLPConsoleLM *scon = DO_UPCAST(SCLPConsoleLM, event, event);
317 if (console_available) {
318 error_report("Multiple line-mode operator consoles are not supported");
321 console_available = true;
324 qemu_chr_add_handlers(scon->chr, chr_can_read, chr_read, NULL, scon);
330 static int console_exit(SCLPEvent *event)
335 static void console_reset(DeviceState *dev)
337 SCLPEvent *event = SCLP_EVENT(dev);
338 SCLPConsoleLM *scon = DO_UPCAST(SCLPConsoleLM, event, event);
340 event->event_pending = false;
342 scon->write_errors = 0;
345 static Property console_properties[] = {
346 DEFINE_PROP_CHR("chardev", SCLPConsoleLM, chr),
347 DEFINE_PROP_UINT32("write_errors", SCLPConsoleLM, write_errors, 0),
348 DEFINE_PROP_BOOL("echo", SCLPConsoleLM, echo, true),
349 DEFINE_PROP_END_OF_LIST(),
352 static void console_class_init(ObjectClass *klass, void *data)
354 DeviceClass *dc = DEVICE_CLASS(klass);
355 SCLPEventClass *ec = SCLP_EVENT_CLASS(klass);
357 dc->props = console_properties;
358 dc->reset = console_reset;
359 dc->vmsd = &vmstate_sclplmconsole;
360 ec->init = console_init;
361 ec->exit = console_exit;
362 ec->get_send_mask = send_mask;
363 ec->get_receive_mask = receive_mask;
364 ec->can_handle_event = can_handle_event;
365 ec->read_event_data = read_event_data;
366 ec->write_event_data = write_event_data;
369 static const TypeInfo sclp_console_info = {
370 .name = "sclplmconsole",
371 .parent = TYPE_SCLP_EVENT,
372 .instance_size = sizeof(SCLPConsoleLM),
373 .class_init = console_class_init,
374 .class_size = sizeof(SCLPEventClass),
377 static void register_types(void)
379 type_register_static(&sclp_console_info);
382 type_init(register_types)