vhost-scsi: create a vhost-scsi-common abstraction
[qemu/ar7.git] / include / sysemu / char.h
blob84f5c2312c488656ecbc363ffcd073dce7f4793c
1 #ifndef QEMU_CHAR_H
2 #define QEMU_CHAR_H
4 #include "qemu-common.h"
5 #include "qemu/option.h"
6 #include "qemu/main-loop.h"
7 #include "qemu/bitmap.h"
8 #include "qom/object.h"
10 /* character device */
12 typedef enum {
13 CHR_EVENT_BREAK, /* serial break char */
14 CHR_EVENT_OPENED, /* new connection established */
15 CHR_EVENT_MUX_IN, /* mux-focus was set to this terminal */
16 CHR_EVENT_MUX_OUT, /* mux-focus will move on */
17 CHR_EVENT_CLOSED /* connection closed */
18 } QEMUChrEvent;
20 #define CHR_READ_BUF_LEN 4096
22 #define CHR_IOCTL_SERIAL_SET_PARAMS 1
23 typedef struct {
24 int speed;
25 int parity;
26 int data_bits;
27 int stop_bits;
28 } QEMUSerialSetParams;
30 #define CHR_IOCTL_SERIAL_SET_BREAK 2
32 #define CHR_IOCTL_PP_READ_DATA 3
33 #define CHR_IOCTL_PP_WRITE_DATA 4
34 #define CHR_IOCTL_PP_READ_CONTROL 5
35 #define CHR_IOCTL_PP_WRITE_CONTROL 6
36 #define CHR_IOCTL_PP_READ_STATUS 7
37 #define CHR_IOCTL_PP_EPP_READ_ADDR 8
38 #define CHR_IOCTL_PP_EPP_READ 9
39 #define CHR_IOCTL_PP_EPP_WRITE_ADDR 10
40 #define CHR_IOCTL_PP_EPP_WRITE 11
41 #define CHR_IOCTL_PP_DATA_DIR 12
43 struct ParallelIOArg {
44 void *buffer;
45 int count;
48 #define CHR_IOCTL_SERIAL_SET_TIOCM 13
49 #define CHR_IOCTL_SERIAL_GET_TIOCM 14
51 #define CHR_TIOCM_CTS 0x020
52 #define CHR_TIOCM_CAR 0x040
53 #define CHR_TIOCM_DSR 0x100
54 #define CHR_TIOCM_RI 0x080
55 #define CHR_TIOCM_DTR 0x002
56 #define CHR_TIOCM_RTS 0x004
58 typedef void IOEventHandler(void *opaque, int event);
60 typedef enum {
61 /* Whether the chardev peer is able to close and
62 * reopen the data channel, thus requiring support
63 * for qemu_chr_wait_connected() to wait for a
64 * valid connection */
65 QEMU_CHAR_FEATURE_RECONNECTABLE,
66 /* Whether it is possible to send/recv file descriptors
67 * over the data channel */
68 QEMU_CHAR_FEATURE_FD_PASS,
69 /* Whether replay or record mode is enabled */
70 QEMU_CHAR_FEATURE_REPLAY,
72 QEMU_CHAR_FEATURE_LAST,
73 } ChardevFeature;
75 /* This is the backend as seen by frontend, the actual backend is
76 * Chardev */
77 typedef struct CharBackend {
78 Chardev *chr;
79 IOEventHandler *chr_event;
80 IOCanReadHandler *chr_can_read;
81 IOReadHandler *chr_read;
82 void *opaque;
83 int tag;
84 int fe_open;
85 } CharBackend;
87 struct Chardev {
88 Object parent_obj;
90 QemuMutex chr_write_lock;
91 CharBackend *be;
92 char *label;
93 char *filename;
94 int logfd;
95 int be_open;
96 GSource *gsource;
97 DECLARE_BITMAP(features, QEMU_CHAR_FEATURE_LAST);
98 QTAILQ_ENTRY(Chardev) next;
102 * @qemu_chr_new_from_opts:
104 * Create a new character backend from a QemuOpts list.
106 * @opts see qemu-config.c for a list of valid options
108 * Returns: a new character backend
110 Chardev *qemu_chr_new_from_opts(QemuOpts *opts,
111 Error **errp);
114 * @qemu_chr_parse_common:
116 * Parse the common options available to all character backends.
118 * @opts the options that still need parsing
119 * @backend a new backend
121 void qemu_chr_parse_common(QemuOpts *opts, ChardevCommon *backend);
124 * @qemu_chr_new:
126 * Create a new character backend from a URI.
128 * @label the name of the backend
129 * @filename the URI
131 * Returns: a new character backend
133 Chardev *qemu_chr_new(const char *label, const char *filename);
137 * @qemu_chr_fe_disconnect:
139 * Close a fd accpeted by character backend.
140 * Without associated Chardev, do nothing.
142 void qemu_chr_fe_disconnect(CharBackend *be);
145 * @qemu_chr_cleanup:
147 * Delete all chardevs (when leaving qemu)
149 void qemu_chr_cleanup(void);
152 * @qemu_chr_fe_wait_connected:
154 * Wait for characted backend to be connected, return < 0 on error or
155 * if no assicated Chardev.
157 int qemu_chr_fe_wait_connected(CharBackend *be, Error **errp);
160 * @qemu_chr_new_noreplay:
162 * Create a new character backend from a URI.
163 * Character device communications are not written
164 * into the replay log.
166 * @label the name of the backend
167 * @filename the URI
169 * Returns: a new character backend
171 Chardev *qemu_chr_new_noreplay(const char *label, const char *filename);
174 * @qemu_chr_delete:
176 * Destroy a character backend and remove it from the list of
177 * identified character backends.
179 void qemu_chr_delete(Chardev *chr);
182 * @qemu_chr_fe_set_echo:
184 * Ask the backend to override its normal echo setting. This only really
185 * applies to the stdio backend and is used by the QMP server such that you
186 * can see what you type if you try to type QMP commands.
187 * Without associated Chardev, do nothing.
189 * @echo true to enable echo, false to disable echo
191 void qemu_chr_fe_set_echo(CharBackend *be, bool echo);
194 * @qemu_chr_fe_set_open:
196 * Set character frontend open status. This is an indication that the
197 * front end is ready (or not) to begin doing I/O.
198 * Without associated Chardev, do nothing.
200 void qemu_chr_fe_set_open(CharBackend *be, int fe_open);
203 * @qemu_chr_fe_printf:
205 * Write to a character backend using a printf style interface. This
206 * function is thread-safe. It does nothing without associated
207 * Chardev.
209 * @fmt see #printf
211 void qemu_chr_fe_printf(CharBackend *be, const char *fmt, ...)
212 GCC_FMT_ATTR(2, 3);
215 * @qemu_chr_fe_add_watch:
217 * If the backend is connected, create and add a #GSource that fires
218 * when the given condition (typically G_IO_OUT|G_IO_HUP or G_IO_HUP)
219 * is active; return the #GSource's tag. If it is disconnected,
220 * or without associated Chardev, return 0.
222 * @cond the condition to poll for
223 * @func the function to call when the condition happens
224 * @user_data the opaque pointer to pass to @func
226 * Returns: the source tag
228 guint qemu_chr_fe_add_watch(CharBackend *be, GIOCondition cond,
229 GIOFunc func, void *user_data);
232 * @qemu_chr_fe_write:
234 * Write data to a character backend from the front end. This function
235 * will send data from the front end to the back end. This function
236 * is thread-safe.
238 * @buf the data
239 * @len the number of bytes to send
241 * Returns: the number of bytes consumed (0 if no assicated Chardev)
243 int qemu_chr_fe_write(CharBackend *be, const uint8_t *buf, int len);
246 * @qemu_chr_fe_write_all:
248 * Write data to a character backend from the front end. This function will
249 * send data from the front end to the back end. Unlike @qemu_chr_fe_write,
250 * this function will block if the back end cannot consume all of the data
251 * attempted to be written. This function is thread-safe.
253 * @buf the data
254 * @len the number of bytes to send
256 * Returns: the number of bytes consumed (0 if no assicated Chardev)
258 int qemu_chr_fe_write_all(CharBackend *be, const uint8_t *buf, int len);
261 * @qemu_chr_fe_read_all:
263 * Read data to a buffer from the back end.
265 * @buf the data buffer
266 * @len the number of bytes to read
268 * Returns: the number of bytes read (0 if no assicated Chardev)
270 int qemu_chr_fe_read_all(CharBackend *be, uint8_t *buf, int len);
273 * @qemu_chr_fe_ioctl:
275 * Issue a device specific ioctl to a backend. This function is thread-safe.
277 * @cmd see CHR_IOCTL_*
278 * @arg the data associated with @cmd
280 * Returns: if @cmd is not supported by the backend or there is no
281 * associated Chardev, -ENOTSUP, otherwise the return
282 * value depends on the semantics of @cmd
284 int qemu_chr_fe_ioctl(CharBackend *be, int cmd, void *arg);
287 * @qemu_chr_fe_get_msgfd:
289 * For backends capable of fd passing, return the latest file descriptor passed
290 * by a client.
292 * Returns: -1 if fd passing isn't supported or there is no pending file
293 * descriptor. If a file descriptor is returned, subsequent calls to
294 * this function will return -1 until a client sends a new file
295 * descriptor.
297 int qemu_chr_fe_get_msgfd(CharBackend *be);
300 * @qemu_chr_fe_get_msgfds:
302 * For backends capable of fd passing, return the number of file received
303 * descriptors and fills the fds array up to num elements
305 * Returns: -1 if fd passing isn't supported or there are no pending file
306 * descriptors. If file descriptors are returned, subsequent calls to
307 * this function will return -1 until a client sends a new set of file
308 * descriptors.
310 int qemu_chr_fe_get_msgfds(CharBackend *be, int *fds, int num);
313 * @qemu_chr_fe_set_msgfds:
315 * For backends capable of fd passing, set an array of fds to be passed with
316 * the next send operation.
317 * A subsequent call to this function before calling a write function will
318 * result in overwriting the fd array with the new value without being send.
319 * Upon writing the message the fd array is freed.
321 * Returns: -1 if fd passing isn't supported or no associated Chardev.
323 int qemu_chr_fe_set_msgfds(CharBackend *be, int *fds, int num);
326 * @qemu_chr_be_can_write:
328 * Determine how much data the front end can currently accept. This function
329 * returns the number of bytes the front end can accept. If it returns 0, the
330 * front end cannot receive data at the moment. The function must be polled
331 * to determine when data can be received.
333 * Returns: the number of bytes the front end can receive via @qemu_chr_be_write
335 int qemu_chr_be_can_write(Chardev *s);
338 * @qemu_chr_be_write:
340 * Write data from the back end to the front end. Before issuing this call,
341 * the caller should call @qemu_chr_be_can_write to determine how much data
342 * the front end can currently accept.
344 * @buf a buffer to receive data from the front end
345 * @len the number of bytes to receive from the front end
347 void qemu_chr_be_write(Chardev *s, uint8_t *buf, int len);
350 * @qemu_chr_be_write_impl:
352 * Implementation of back end writing. Used by replay module.
354 * @buf a buffer to receive data from the front end
355 * @len the number of bytes to receive from the front end
357 void qemu_chr_be_write_impl(Chardev *s, uint8_t *buf, int len);
360 * @qemu_chr_be_event:
362 * Send an event from the back end to the front end.
364 * @event the event to send
366 void qemu_chr_be_event(Chardev *s, int event);
369 * @qemu_chr_fe_init:
371 * Initializes a front end for the given CharBackend and
372 * Chardev. Call qemu_chr_fe_deinit() to remove the association and
373 * release the driver.
375 * Returns: false on error.
377 bool qemu_chr_fe_init(CharBackend *b, Chardev *s, Error **errp);
380 * @qemu_chr_fe_get_driver:
382 * Returns the driver associated with a CharBackend or NULL if no
383 * associated Chardev.
385 Chardev *qemu_chr_fe_get_driver(CharBackend *be);
388 * @qemu_chr_fe_deinit:
390 * Dissociate the CharBackend from the Chardev.
392 * Safe to call without associated Chardev.
394 void qemu_chr_fe_deinit(CharBackend *b);
397 * @qemu_chr_fe_set_handlers:
398 * @b: a CharBackend
399 * @fd_can_read: callback to get the amount of data the frontend may
400 * receive
401 * @fd_read: callback to receive data from char
402 * @fd_event: event callback
403 * @opaque: an opaque pointer for the callbacks
404 * @context: a main loop context or NULL for the default
405 * @set_open: whether to call qemu_chr_fe_set_open() implicitely when
406 * any of the handler is non-NULL
408 * Set the front end char handlers. The front end takes the focus if
409 * any of the handler is non-NULL.
411 * Without associated Chardev, nothing is changed.
413 void qemu_chr_fe_set_handlers(CharBackend *b,
414 IOCanReadHandler *fd_can_read,
415 IOReadHandler *fd_read,
416 IOEventHandler *fd_event,
417 void *opaque,
418 GMainContext *context,
419 bool set_open);
422 * @qemu_chr_fe_take_focus:
424 * Take the focus (if the front end is muxed).
426 * Without associated Chardev, nothing is changed.
428 void qemu_chr_fe_take_focus(CharBackend *b);
430 void qemu_chr_be_generic_open(Chardev *s);
431 void qemu_chr_fe_accept_input(CharBackend *be);
432 int qemu_chr_add_client(Chardev *s, int fd);
433 Chardev *qemu_chr_find(const char *name);
435 bool qemu_chr_has_feature(Chardev *chr,
436 ChardevFeature feature);
437 void qemu_chr_set_feature(Chardev *chr,
438 ChardevFeature feature);
439 QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename);
440 int qemu_chr_write_all(Chardev *s, const uint8_t *buf, int len);
441 int qemu_chr_wait_connected(Chardev *chr, Error **errp);
443 #define TYPE_CHARDEV "chardev"
444 #define CHARDEV(obj) OBJECT_CHECK(Chardev, (obj), TYPE_CHARDEV)
445 #define CHARDEV_CLASS(klass) \
446 OBJECT_CLASS_CHECK(ChardevClass, (klass), TYPE_CHARDEV)
447 #define CHARDEV_GET_CLASS(obj) \
448 OBJECT_GET_CLASS(ChardevClass, (obj), TYPE_CHARDEV)
450 #define TYPE_CHARDEV_NULL "chardev-null"
451 #define TYPE_CHARDEV_MUX "chardev-mux"
452 #define TYPE_CHARDEV_RINGBUF "chardev-ringbuf"
453 #define TYPE_CHARDEV_PTY "chardev-pty"
454 #define TYPE_CHARDEV_CONSOLE "chardev-console"
455 #define TYPE_CHARDEV_STDIO "chardev-stdio"
456 #define TYPE_CHARDEV_PIPE "chardev-pipe"
457 #define TYPE_CHARDEV_MEMORY "chardev-memory"
458 #define TYPE_CHARDEV_PARALLEL "chardev-parallel"
459 #define TYPE_CHARDEV_FILE "chardev-file"
460 #define TYPE_CHARDEV_SERIAL "chardev-serial"
461 #define TYPE_CHARDEV_SOCKET "chardev-socket"
462 #define TYPE_CHARDEV_UDP "chardev-udp"
464 #define CHARDEV_IS_RINGBUF(chr) \
465 object_dynamic_cast(OBJECT(chr), TYPE_CHARDEV_RINGBUF)
466 #define CHARDEV_IS_PTY(chr) \
467 object_dynamic_cast(OBJECT(chr), TYPE_CHARDEV_PTY)
469 typedef struct ChardevClass {
470 ObjectClass parent_class;
472 bool internal; /* TODO: eventually use TYPE_USER_CREATABLE */
473 void (*parse)(QemuOpts *opts, ChardevBackend *backend, Error **errp);
475 void (*open)(Chardev *chr, ChardevBackend *backend,
476 bool *be_opened, Error **errp);
478 int (*chr_write)(Chardev *s, const uint8_t *buf, int len);
479 int (*chr_sync_read)(Chardev *s, const uint8_t *buf, int len);
480 GSource *(*chr_add_watch)(Chardev *s, GIOCondition cond);
481 void (*chr_update_read_handler)(Chardev *s, GMainContext *context);
482 int (*chr_ioctl)(Chardev *s, int cmd, void *arg);
483 int (*get_msgfds)(Chardev *s, int* fds, int num);
484 int (*set_msgfds)(Chardev *s, int *fds, int num);
485 int (*chr_add_client)(Chardev *chr, int fd);
486 int (*chr_wait_connected)(Chardev *chr, Error **errp);
487 void (*chr_disconnect)(Chardev *chr);
488 void (*chr_accept_input)(Chardev *chr);
489 void (*chr_set_echo)(Chardev *chr, bool echo);
490 void (*chr_set_fe_open)(Chardev *chr, int fe_open);
491 } ChardevClass;
493 Chardev *qemu_chardev_new(const char *id, const char *typename,
494 ChardevBackend *backend, Error **errp);
496 extern int term_escape_char;
498 /* console.c */
499 void qemu_chr_parse_vc(QemuOpts *opts, ChardevBackend *backend, Error **errp);
501 #endif