2004-07-14 19:28:59 +02:00
|
|
|
/*
|
|
|
|
* QEMU graphical console
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2004-07-14 19:28:59 +02:00
|
|
|
* Copyright (c) 2004 Fabrice Bellard
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2004-07-14 19:28:59 +02:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2018-02-01 12:18:31 +01:00
|
|
|
|
2016-01-29 18:49:51 +01:00
|
|
|
#include "qemu/osdep.h"
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/console.h"
|
2013-04-17 10:21:27 +02:00
|
|
|
#include "hw/qdev-core.h"
|
2018-02-01 12:18:31 +01:00
|
|
|
#include "qapi/error.h"
|
2018-02-11 10:36:01 +01:00
|
|
|
#include "qapi/qapi-commands-ui.h"
|
2021-09-16 21:22:36 +02:00
|
|
|
#include "qemu/fifo8.h"
|
2021-09-16 21:22:38 +02:00
|
|
|
#include "qemu/main-loop.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2018-02-01 12:18:46 +01:00
|
|
|
#include "qemu/option.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
2021-09-16 21:22:38 +02:00
|
|
|
#include "chardev/char.h"
|
2013-11-10 14:20:16 +01:00
|
|
|
#include "trace.h"
|
2014-06-19 08:46:08 +02:00
|
|
|
#include "exec/memory.h"
|
2019-11-08 14:31:43 +01:00
|
|
|
#include "io/channel-file.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2022-04-08 09:13:35 +02:00
|
|
|
#ifdef CONFIG_PNG
|
|
|
|
#include <png.h>
|
|
|
|
#endif
|
2004-07-14 19:28:59 +02:00
|
|
|
|
|
|
|
#define DEFAULT_BACKSCROLL 512
|
2012-07-10 22:00:55 +02:00
|
|
|
#define CONSOLE_CURSOR_PERIOD 500
|
2004-07-14 19:28:59 +02:00
|
|
|
|
2006-03-11 16:35:30 +01:00
|
|
|
typedef struct TextAttributes {
|
|
|
|
uint8_t fgcol:4;
|
|
|
|
uint8_t bgcol:4;
|
|
|
|
uint8_t bold:1;
|
|
|
|
uint8_t uline:1;
|
|
|
|
uint8_t blink:1;
|
|
|
|
uint8_t invers:1;
|
|
|
|
uint8_t unvisible:1;
|
|
|
|
} TextAttributes;
|
|
|
|
|
2004-07-14 19:28:59 +02:00
|
|
|
typedef struct TextCell {
|
|
|
|
uint8_t ch;
|
2006-03-11 16:35:30 +01:00
|
|
|
TextAttributes t_attrib;
|
2004-07-14 19:28:59 +02:00
|
|
|
} TextCell;
|
|
|
|
|
|
|
|
#define MAX_ESC_PARAMS 3
|
|
|
|
|
|
|
|
enum TTYState {
|
|
|
|
TTY_STATE_NORM,
|
|
|
|
TTY_STATE_ESC,
|
|
|
|
TTY_STATE_CSI,
|
|
|
|
};
|
|
|
|
|
2007-07-12 01:14:59 +02:00
|
|
|
typedef enum {
|
|
|
|
GRAPHIC_CONSOLE,
|
2008-09-24 05:32:33 +02:00
|
|
|
TEXT_CONSOLE,
|
|
|
|
TEXT_CONSOLE_FIXED_SIZE
|
2009-10-01 23:12:16 +02:00
|
|
|
} console_type_t;
|
2007-07-12 01:14:59 +02:00
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
struct QemuConsole {
|
2013-04-17 09:45:10 +02:00
|
|
|
Object parent;
|
|
|
|
|
2011-09-16 00:48:07 +02:00
|
|
|
int index;
|
2009-10-01 23:12:16 +02:00
|
|
|
console_type_t console_type;
|
2004-07-14 19:28:59 +02:00
|
|
|
DisplayState *ds;
|
2013-03-12 14:39:22 +01:00
|
|
|
DisplaySurface *surface;
|
2021-02-20 13:23:03 +01:00
|
|
|
DisplayScanout scanout;
|
2013-03-15 15:45:54 +01:00
|
|
|
int dcls;
|
2021-10-09 21:48:46 +02:00
|
|
|
DisplayGLCtx *gl;
|
2021-03-11 08:45:33 +01:00
|
|
|
int gl_block;
|
2021-03-11 08:56:58 +01:00
|
|
|
QEMUTimer *gl_unblock_timer;
|
2016-12-21 01:38:04 +01:00
|
|
|
int window_id;
|
2012-09-28 13:24:17 +02:00
|
|
|
|
2006-04-09 03:06:34 +02:00
|
|
|
/* Graphic console state. */
|
2013-04-17 10:21:27 +02:00
|
|
|
Object *device;
|
2014-01-24 15:35:21 +01:00
|
|
|
uint32_t head;
|
2014-01-24 17:38:20 +01:00
|
|
|
QemuUIInfo ui_info;
|
2015-03-12 12:51:13 +01:00
|
|
|
QEMUTimer *ui_timer;
|
2013-03-13 14:04:18 +01:00
|
|
|
const GraphicHwOps *hw_ops;
|
2006-04-09 03:06:34 +02:00
|
|
|
void *hw;
|
2012-09-28 13:24:17 +02:00
|
|
|
|
|
|
|
/* Text console state */
|
2004-07-14 19:28:59 +02:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int total_height;
|
|
|
|
int backscroll_height;
|
|
|
|
int x, y;
|
2007-01-17 00:02:36 +01:00
|
|
|
int x_saved, y_saved;
|
2004-07-14 19:28:59 +02:00
|
|
|
int y_displayed;
|
|
|
|
int y_base;
|
2006-03-11 16:35:30 +01:00
|
|
|
TextAttributes t_attrib_default; /* default text attributes */
|
|
|
|
TextAttributes t_attrib; /* currently active text attributes */
|
2004-07-14 19:28:59 +02:00
|
|
|
TextCell *cells;
|
2008-02-10 17:33:14 +01:00
|
|
|
int text_x[2], text_y[2], cursor_invalidate;
|
2010-12-23 13:42:52 +01:00
|
|
|
int echo;
|
2004-07-14 19:28:59 +02:00
|
|
|
|
2009-01-21 04:02:52 +01:00
|
|
|
int update_x0;
|
|
|
|
int update_y0;
|
|
|
|
int update_x1;
|
|
|
|
int update_y1;
|
|
|
|
|
2004-07-14 19:28:59 +02:00
|
|
|
enum TTYState state;
|
|
|
|
int esc_params[MAX_ESC_PARAMS];
|
|
|
|
int nb_esc_params;
|
|
|
|
|
2016-12-07 14:20:22 +01:00
|
|
|
Chardev *chr;
|
2006-06-25 18:26:29 +02:00
|
|
|
/* fifo for key pressed */
|
2021-09-16 21:22:36 +02:00
|
|
|
Fifo8 out_fifo;
|
2020-10-27 14:36:02 +01:00
|
|
|
CoQueue dump_queue;
|
2018-05-07 11:54:24 +02:00
|
|
|
|
|
|
|
QTAILQ_ENTRY(QemuConsole) next;
|
2004-07-14 19:28:59 +02:00
|
|
|
};
|
|
|
|
|
2013-03-13 12:25:25 +01:00
|
|
|
struct DisplayState {
|
2013-12-01 08:49:47 +01:00
|
|
|
QEMUTimer *gui_timer;
|
2013-03-14 11:56:16 +01:00
|
|
|
uint64_t last_update;
|
|
|
|
uint64_t update_interval;
|
|
|
|
bool refreshing;
|
2013-03-13 12:25:25 +01:00
|
|
|
bool have_gfx;
|
|
|
|
bool have_text;
|
|
|
|
|
|
|
|
QLIST_HEAD(, DisplayChangeListener) listeners;
|
|
|
|
};
|
|
|
|
|
2010-02-11 00:29:57 +01:00
|
|
|
static DisplayState *display_state;
|
2012-09-28 13:24:17 +02:00
|
|
|
static QemuConsole *active_console;
|
2018-12-06 13:10:34 +01:00
|
|
|
static QTAILQ_HEAD(, QemuConsole) consoles =
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_HEAD_INITIALIZER(consoles);
|
2014-05-22 11:27:13 +02:00
|
|
|
static bool cursor_visible_phase;
|
|
|
|
static QEMUTimer *cursor_timer;
|
2004-07-14 19:28:59 +02:00
|
|
|
|
2016-12-07 14:20:22 +01:00
|
|
|
static void text_console_do_init(Chardev *chr, DisplayState *ds);
|
2013-03-14 11:56:16 +01:00
|
|
|
static void dpy_refresh(DisplayState *s);
|
2013-04-23 15:44:31 +02:00
|
|
|
static DisplayState *get_alloc_displaystate(void);
|
2014-05-22 11:27:13 +02:00
|
|
|
static void text_console_update_cursor_timer(void);
|
|
|
|
static void text_console_update_cursor(void *opaque);
|
2021-02-20 13:23:03 +01:00
|
|
|
static bool displaychangelistener_has_dmabuf(DisplayChangeListener *dcl);
|
2022-02-16 17:16:55 +01:00
|
|
|
static bool console_compatible_with(QemuConsole *con,
|
|
|
|
DisplayChangeListener *dcl, Error **errp);
|
2013-03-07 17:08:29 +01:00
|
|
|
|
2013-03-13 12:17:13 +01:00
|
|
|
static void gui_update(void *opaque)
|
|
|
|
{
|
2013-03-14 11:56:16 +01:00
|
|
|
uint64_t interval = GUI_REFRESH_INTERVAL_IDLE;
|
|
|
|
uint64_t dcl_interval;
|
2013-03-13 12:17:13 +01:00
|
|
|
DisplayState *ds = opaque;
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
2013-03-14 11:56:16 +01:00
|
|
|
ds->refreshing = true;
|
2013-03-13 12:17:13 +01:00
|
|
|
dpy_refresh(ds);
|
2013-03-14 11:56:16 +01:00
|
|
|
ds->refreshing = false;
|
2013-03-13 12:17:13 +01:00
|
|
|
|
|
|
|
QLIST_FOREACH(dcl, &ds->listeners, next) {
|
2013-03-14 11:56:16 +01:00
|
|
|
dcl_interval = dcl->update_interval ?
|
|
|
|
dcl->update_interval : GUI_REFRESH_INTERVAL_DEFAULT;
|
|
|
|
if (interval > dcl_interval) {
|
|
|
|
interval = dcl_interval;
|
2013-03-13 12:17:13 +01:00
|
|
|
}
|
|
|
|
}
|
2013-03-14 11:56:16 +01:00
|
|
|
if (ds->update_interval != interval) {
|
|
|
|
ds->update_interval = interval;
|
|
|
|
trace_console_refresh(interval);
|
|
|
|
}
|
2013-08-21 17:03:08 +02:00
|
|
|
ds->last_update = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
|
|
|
|
timer_mod(ds->gui_timer, ds->last_update + interval);
|
2013-03-13 12:17:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gui_setup_refresh(DisplayState *ds)
|
|
|
|
{
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
bool need_timer = false;
|
|
|
|
bool have_gfx = false;
|
|
|
|
bool have_text = false;
|
|
|
|
|
|
|
|
QLIST_FOREACH(dcl, &ds->listeners, next) {
|
|
|
|
if (dcl->ops->dpy_refresh != NULL) {
|
|
|
|
need_timer = true;
|
|
|
|
}
|
|
|
|
if (dcl->ops->dpy_gfx_update != NULL) {
|
|
|
|
have_gfx = true;
|
|
|
|
}
|
|
|
|
if (dcl->ops->dpy_text_update != NULL) {
|
|
|
|
have_text = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (need_timer && ds->gui_timer == NULL) {
|
2013-08-21 17:03:08 +02:00
|
|
|
ds->gui_timer = timer_new_ms(QEMU_CLOCK_REALTIME, gui_update, ds);
|
|
|
|
timer_mod(ds->gui_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
|
2013-03-13 12:17:13 +01:00
|
|
|
}
|
|
|
|
if (!need_timer && ds->gui_timer != NULL) {
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_free(ds->gui_timer);
|
2013-03-13 12:17:13 +01:00
|
|
|
ds->gui_timer = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ds->have_gfx = have_gfx;
|
|
|
|
ds->have_text = have_text;
|
|
|
|
}
|
|
|
|
|
2015-08-24 13:20:49 +02:00
|
|
|
void graphic_hw_update_done(QemuConsole *con)
|
|
|
|
{
|
2020-11-24 13:29:36 +01:00
|
|
|
if (con) {
|
2022-04-27 15:08:29 +02:00
|
|
|
qemu_co_enter_all(&con->dump_queue, NULL);
|
2020-11-24 13:29:36 +01:00
|
|
|
}
|
2015-08-24 13:20:49 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 13:44:38 +01:00
|
|
|
void graphic_hw_update(QemuConsole *con)
|
2006-04-09 03:06:34 +02:00
|
|
|
{
|
2015-08-24 13:20:49 +02:00
|
|
|
bool async = false;
|
2020-11-06 18:03:39 +01:00
|
|
|
con = con ? con : active_console;
|
2013-03-12 13:44:38 +01:00
|
|
|
if (!con) {
|
2020-11-06 18:03:39 +01:00
|
|
|
return;
|
2013-03-12 13:44:38 +01:00
|
|
|
}
|
2020-11-06 18:03:39 +01:00
|
|
|
if (con->hw_ops->gfx_update) {
|
2013-03-13 14:04:18 +01:00
|
|
|
con->hw_ops->gfx_update(con->hw);
|
2015-08-24 13:20:49 +02:00
|
|
|
async = con->hw_ops->gfx_update_async;
|
|
|
|
}
|
|
|
|
if (!async) {
|
|
|
|
graphic_hw_update_done(con);
|
2013-03-12 13:44:38 +01:00
|
|
|
}
|
2006-04-09 03:06:34 +02:00
|
|
|
}
|
|
|
|
|
2021-03-11 08:56:58 +01:00
|
|
|
static void graphic_hw_gl_unblock_timer(void *opaque)
|
|
|
|
{
|
|
|
|
warn_report("console: no gl-unblock within one second");
|
|
|
|
}
|
|
|
|
|
2015-12-03 12:34:25 +01:00
|
|
|
void graphic_hw_gl_block(QemuConsole *con, bool block)
|
|
|
|
{
|
2021-03-11 08:56:58 +01:00
|
|
|
uint64_t timeout;
|
2016-09-23 09:50:27 +02:00
|
|
|
assert(con != NULL);
|
|
|
|
|
2021-03-11 08:45:33 +01:00
|
|
|
if (block) {
|
|
|
|
con->gl_block++;
|
|
|
|
} else {
|
|
|
|
con->gl_block--;
|
2015-12-03 12:34:25 +01:00
|
|
|
}
|
2021-03-11 08:45:33 +01:00
|
|
|
assert(con->gl_block >= 0);
|
|
|
|
if (!con->hw_ops->gl_block) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((block && con->gl_block != 1) || (!block && con->gl_block != 0)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
con->hw_ops->gl_block(con->hw, block);
|
2021-03-11 08:56:58 +01:00
|
|
|
|
|
|
|
if (block) {
|
|
|
|
timeout = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
|
|
|
|
timeout += 1000; /* one sec */
|
|
|
|
timer_mod(con->gl_unblock_timer, timeout);
|
|
|
|
} else {
|
|
|
|
timer_del(con->gl_unblock_timer);
|
|
|
|
}
|
2015-12-03 12:34:25 +01:00
|
|
|
}
|
|
|
|
|
2016-12-21 01:38:04 +01:00
|
|
|
int qemu_console_get_window_id(QemuConsole *con)
|
|
|
|
{
|
|
|
|
return con->window_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_console_set_window_id(QemuConsole *con, int window_id)
|
|
|
|
{
|
|
|
|
con->window_id = window_id;
|
|
|
|
}
|
|
|
|
|
2013-03-12 13:44:38 +01:00
|
|
|
void graphic_hw_invalidate(QemuConsole *con)
|
2006-04-09 03:06:34 +02:00
|
|
|
{
|
2013-03-12 13:44:38 +01:00
|
|
|
if (!con) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
2013-03-13 14:04:18 +01:00
|
|
|
if (con && con->hw_ops->invalidate) {
|
|
|
|
con->hw_ops->invalidate(con->hw);
|
2013-03-12 13:44:38 +01:00
|
|
|
}
|
2006-04-09 03:06:34 +02:00
|
|
|
}
|
|
|
|
|
2022-04-08 09:13:35 +02:00
|
|
|
#ifdef CONFIG_PNG
|
|
|
|
/**
|
|
|
|
* png_save: Take a screenshot as PNG
|
|
|
|
*
|
|
|
|
* Saves screendump as a PNG file
|
|
|
|
*
|
|
|
|
* Returns true for success or false for error.
|
|
|
|
*
|
|
|
|
* @fd: File descriptor for PNG file.
|
|
|
|
* @image: Image data in pixman format.
|
|
|
|
* @errp: Pointer to an error.
|
|
|
|
*/
|
|
|
|
static bool png_save(int fd, pixman_image_t *image, Error **errp)
|
|
|
|
{
|
|
|
|
int width = pixman_image_get_width(image);
|
|
|
|
int height = pixman_image_get_height(image);
|
2022-09-19 08:19:56 +02:00
|
|
|
png_struct *png_ptr;
|
|
|
|
png_info *info_ptr;
|
2022-04-08 09:13:35 +02:00
|
|
|
g_autoptr(pixman_image_t) linebuf =
|
|
|
|
qemu_pixman_linebuf_create(PIXMAN_a8r8g8b8, width);
|
|
|
|
uint8_t *buf = (uint8_t *)pixman_image_get_data(linebuf);
|
|
|
|
FILE *f = fdopen(fd, "wb");
|
|
|
|
int y;
|
|
|
|
if (!f) {
|
|
|
|
error_setg_errno(errp, errno,
|
|
|
|
"Failed to create file from file descriptor");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL,
|
|
|
|
NULL, NULL);
|
|
|
|
if (!png_ptr) {
|
|
|
|
error_setg(errp, "PNG creation failed. Unable to write struct");
|
|
|
|
fclose(f);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
info_ptr = png_create_info_struct(png_ptr);
|
|
|
|
|
|
|
|
if (!info_ptr) {
|
|
|
|
error_setg(errp, "PNG creation failed. Unable to write info");
|
|
|
|
fclose(f);
|
|
|
|
png_destroy_write_struct(&png_ptr, &info_ptr);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
png_init_io(png_ptr, f);
|
|
|
|
|
|
|
|
png_set_IHDR(png_ptr, info_ptr, width, height, 8,
|
|
|
|
PNG_COLOR_TYPE_RGB_ALPHA, PNG_INTERLACE_NONE,
|
|
|
|
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
|
|
|
|
|
|
|
|
png_write_info(png_ptr, info_ptr);
|
|
|
|
|
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
qemu_pixman_linebuf_fill(linebuf, image, width, 0, y);
|
|
|
|
png_write_row(png_ptr, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
png_write_end(png_ptr, NULL);
|
|
|
|
|
|
|
|
png_destroy_write_struct(&png_ptr, &info_ptr);
|
|
|
|
|
|
|
|
if (fclose(f) != 0) {
|
|
|
|
error_setg_errno(errp, errno,
|
|
|
|
"PNG creation failed. Unable to close file");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* no png support */
|
|
|
|
|
|
|
|
static bool png_save(int fd, pixman_image_t *image, Error **errp)
|
|
|
|
{
|
|
|
|
error_setg(errp, "Enable PNG support with libpng for screendump");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_PNG */
|
|
|
|
|
2020-10-27 14:36:01 +01:00
|
|
|
static bool ppm_save(int fd, pixman_image_t *image, Error **errp)
|
2006-04-09 03:06:34 +02:00
|
|
|
{
|
2020-10-27 14:36:01 +01:00
|
|
|
int width = pixman_image_get_width(image);
|
|
|
|
int height = pixman_image_get_height(image);
|
2019-11-08 14:31:43 +01:00
|
|
|
g_autoptr(Object) ioc = OBJECT(qio_channel_file_new_fd(fd));
|
|
|
|
g_autofree char *header = NULL;
|
|
|
|
g_autoptr(pixman_image_t) linebuf = NULL;
|
2013-03-12 14:48:31 +01:00
|
|
|
int y;
|
|
|
|
|
2020-10-27 14:36:01 +01:00
|
|
|
trace_ppm_save(fd, image);
|
2019-11-08 14:31:43 +01:00
|
|
|
|
|
|
|
header = g_strdup_printf("P6\n%d %d\n%d\n", width, height, 255);
|
|
|
|
if (qio_channel_write_all(QIO_CHANNEL(ioc),
|
|
|
|
header, strlen(header), errp) < 0) {
|
|
|
|
return false;
|
2013-03-12 14:48:31 +01:00
|
|
|
}
|
2019-11-08 14:31:43 +01:00
|
|
|
|
2013-03-12 14:48:31 +01:00
|
|
|
linebuf = qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8, width);
|
|
|
|
for (y = 0; y < height; y++) {
|
2020-10-27 14:36:01 +01:00
|
|
|
qemu_pixman_linebuf_fill(linebuf, image, width, 0, y);
|
2019-11-08 14:31:43 +01:00
|
|
|
if (qio_channel_write_all(QIO_CHANNEL(ioc),
|
|
|
|
(char *)pixman_image_get_data(linebuf),
|
|
|
|
pixman_image_get_stride(linebuf), errp) < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-09-16 00:48:07 +02:00
|
|
|
}
|
|
|
|
|
2019-11-08 14:31:43 +01:00
|
|
|
return true;
|
2013-03-12 14:48:31 +01:00
|
|
|
}
|
|
|
|
|
2020-10-27 14:36:02 +01:00
|
|
|
static void graphic_hw_update_bh(void *con)
|
|
|
|
{
|
|
|
|
graphic_hw_update(con);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Safety: coroutine-only, concurrent-coroutine safe, main thread only */
|
|
|
|
void coroutine_fn
|
|
|
|
qmp_screendump(const char *filename, bool has_device, const char *device,
|
2022-04-08 09:13:35 +02:00
|
|
|
bool has_head, int64_t head,
|
|
|
|
bool has_format, ImageFormat format, Error **errp)
|
2013-03-12 14:48:31 +01:00
|
|
|
{
|
2020-10-27 14:36:01 +01:00
|
|
|
g_autoptr(pixman_image_t) image = NULL;
|
2018-03-05 17:37:48 +01:00
|
|
|
QemuConsole *con;
|
2013-03-12 14:48:31 +01:00
|
|
|
DisplaySurface *surface;
|
2019-11-08 12:23:15 +01:00
|
|
|
int fd;
|
2013-03-12 14:48:31 +01:00
|
|
|
|
2018-03-05 17:37:48 +01:00
|
|
|
if (has_device) {
|
|
|
|
con = qemu_console_lookup_by_device_name(device, has_head ? head : 0,
|
|
|
|
errp);
|
|
|
|
if (!con) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (has_head) {
|
|
|
|
error_setg(errp, "'head' must be specified together with 'device'");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
con = qemu_console_lookup_by_index(0);
|
|
|
|
if (!con) {
|
|
|
|
error_setg(errp, "There is no console to take a screendump from");
|
|
|
|
return;
|
|
|
|
}
|
2011-11-18 16:41:59 +01:00
|
|
|
}
|
2013-03-12 14:48:31 +01:00
|
|
|
|
2020-10-27 14:36:02 +01:00
|
|
|
if (qemu_co_queue_empty(&con->dump_queue)) {
|
|
|
|
/* Defer the update, it will restart the pending coroutines */
|
|
|
|
aio_bh_schedule_oneshot(qemu_get_aio_context(),
|
|
|
|
graphic_hw_update_bh, con);
|
|
|
|
}
|
|
|
|
qemu_co_queue_wait(&con->dump_queue, NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* All pending coroutines are woken up, while the BQL is held. No
|
|
|
|
* further graphic update are possible until it is released. Take
|
|
|
|
* an image ref before that.
|
|
|
|
*/
|
2013-03-12 14:48:31 +01:00
|
|
|
surface = qemu_console_surface(con);
|
console: Avoid segfault in screendump
After f771c5440e04626f1 it is possible to select device and
head which to take screendump from. And even though we check if
provided head number falls within range, it may still happen that
the console has no surface yet leading to SIGSEGV:
qemu.git $ ./x86_64-softmmu/qemu-system-x86_64 \
-qmp stdio \
-device virtio-vga,id=video0,max_outputs=4
{"execute":"qmp_capabilities"}
{"execute":"screendump", "arguments":{"filename":"/tmp/screen.ppm", "device":"video0", "head":1}}
Segmentation fault
#0 0x00005628249dda88 in ppm_save (filename=0x56282826cbc0 "/tmp/screen.ppm", ds=0x0, errp=0x7fff52a6fae0) at ui/console.c:304
#1 0x00005628249ddd9b in qmp_screendump (filename=0x56282826cbc0 "/tmp/screen.ppm", has_device=true, device=0x5628276902d0 "video0", has_head=true, head=1, errp=0x7fff52a6fae0) at ui/console.c:375
#2 0x00005628247740df in qmp_marshal_screendump (args=0x562828265e00, ret=0x7fff52a6fb68, errp=0x7fff52a6fb60) at qapi/qapi-commands-ui.c:110
Here, @ds from frame #0 (or @surface from frame #1) is
dereferenced at the very beginning of ppm_save(). And because
it's NULL crash happens.
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-id: cb05bb1909daa6ba62145c0194aafa05a14ed3d1.1526569138.git.mprivozn@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2018-05-17 17:00:11 +02:00
|
|
|
if (!surface) {
|
|
|
|
error_setg(errp, "no surface");
|
|
|
|
return;
|
|
|
|
}
|
2020-10-27 14:36:01 +01:00
|
|
|
image = pixman_image_ref(surface->image);
|
console: Avoid segfault in screendump
After f771c5440e04626f1 it is possible to select device and
head which to take screendump from. And even though we check if
provided head number falls within range, it may still happen that
the console has no surface yet leading to SIGSEGV:
qemu.git $ ./x86_64-softmmu/qemu-system-x86_64 \
-qmp stdio \
-device virtio-vga,id=video0,max_outputs=4
{"execute":"qmp_capabilities"}
{"execute":"screendump", "arguments":{"filename":"/tmp/screen.ppm", "device":"video0", "head":1}}
Segmentation fault
#0 0x00005628249dda88 in ppm_save (filename=0x56282826cbc0 "/tmp/screen.ppm", ds=0x0, errp=0x7fff52a6fae0) at ui/console.c:304
#1 0x00005628249ddd9b in qmp_screendump (filename=0x56282826cbc0 "/tmp/screen.ppm", has_device=true, device=0x5628276902d0 "video0", has_head=true, head=1, errp=0x7fff52a6fae0) at ui/console.c:375
#2 0x00005628247740df in qmp_marshal_screendump (args=0x562828265e00, ret=0x7fff52a6fb68, errp=0x7fff52a6fb60) at qapi/qapi-commands-ui.c:110
Here, @ds from frame #0 (or @surface from frame #1) is
dereferenced at the very beginning of ppm_save(). And because
it's NULL crash happens.
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-id: cb05bb1909daa6ba62145c0194aafa05a14ed3d1.1526569138.git.mprivozn@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2018-05-17 17:00:11 +02:00
|
|
|
|
2020-07-21 14:25:21 +02:00
|
|
|
fd = qemu_open_old(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
|
2019-11-08 12:23:15 +01:00
|
|
|
if (fd == -1) {
|
|
|
|
error_setg(errp, "failed to open file '%s': %s", filename,
|
|
|
|
strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-27 14:36:02 +01:00
|
|
|
/*
|
|
|
|
* The image content could potentially be updated as the coroutine
|
|
|
|
* yields and releases the BQL. It could produce corrupted dump, but
|
|
|
|
* it should be otherwise safe.
|
|
|
|
*/
|
2022-04-08 09:13:35 +02:00
|
|
|
if (has_format && format == IMAGE_FORMAT_PNG) {
|
|
|
|
/* PNG format specified for screendump */
|
|
|
|
if (!png_save(fd, image, errp)) {
|
|
|
|
qemu_unlink(filename);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* PPM format specified/default for screendump */
|
|
|
|
if (!ppm_save(fd, image, errp)) {
|
|
|
|
qemu_unlink(filename);
|
|
|
|
}
|
2019-11-08 12:23:15 +01:00
|
|
|
}
|
2006-04-09 03:06:34 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 13:44:38 +01:00
|
|
|
void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata)
|
2008-02-10 17:33:14 +01:00
|
|
|
{
|
2013-03-12 13:44:38 +01:00
|
|
|
if (!con) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
2013-03-13 14:04:18 +01:00
|
|
|
if (con && con->hw_ops->text_update) {
|
|
|
|
con->hw_ops->text_update(con->hw, chardata);
|
|
|
|
}
|
2008-02-10 17:33:14 +01:00
|
|
|
}
|
|
|
|
|
2013-03-06 13:40:47 +01:00
|
|
|
static void vga_fill_rect(QemuConsole *con,
|
|
|
|
int posx, int posy, int width, int height,
|
2013-03-08 08:43:24 +01:00
|
|
|
pixman_color_t color)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
2013-03-06 13:40:47 +01:00
|
|
|
DisplaySurface *surface = qemu_console_surface(con);
|
2013-03-06 15:43:23 +01:00
|
|
|
pixman_rectangle16_t rect = {
|
|
|
|
.x = posx, .y = posy, .width = width, .height = height
|
|
|
|
};
|
|
|
|
|
|
|
|
pixman_image_fill_rectangles(PIXMAN_OP_SRC, surface->image,
|
2013-03-08 08:43:24 +01:00
|
|
|
&color, 1, &rect);
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* copy from (xs, ys) to (xd, yd) a rectangle of size (w, h) */
|
2013-03-06 13:40:47 +01:00
|
|
|
static void vga_bitblt(QemuConsole *con,
|
|
|
|
int xs, int ys, int xd, int yd, int w, int h)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
2013-03-06 13:40:47 +01:00
|
|
|
DisplaySurface *surface = qemu_console_surface(con);
|
2013-03-06 15:43:23 +01:00
|
|
|
|
|
|
|
pixman_image_composite(PIXMAN_OP_SRC,
|
|
|
|
surface->image, NULL, surface->image,
|
|
|
|
xs, ys, 0, 0, xd, yd, w, h);
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************/
|
|
|
|
/* basic char display */
|
|
|
|
|
|
|
|
#define FONT_HEIGHT 16
|
|
|
|
#define FONT_WIDTH 8
|
|
|
|
|
|
|
|
#include "vgafont.h"
|
|
|
|
|
2013-03-08 08:43:24 +01:00
|
|
|
#define QEMU_RGB(r, g, b) \
|
|
|
|
{ .red = r << 8, .green = g << 8, .blue = b << 8, .alpha = 0xffff }
|
|
|
|
|
|
|
|
static const pixman_color_t color_table_rgb[2][8] = {
|
2006-03-11 16:35:30 +01:00
|
|
|
{ /* dark */
|
2015-11-29 14:28:24 +01:00
|
|
|
[QEMU_COLOR_BLACK] = QEMU_RGB(0x00, 0x00, 0x00), /* black */
|
|
|
|
[QEMU_COLOR_BLUE] = QEMU_RGB(0x00, 0x00, 0xaa), /* blue */
|
|
|
|
[QEMU_COLOR_GREEN] = QEMU_RGB(0x00, 0xaa, 0x00), /* green */
|
|
|
|
[QEMU_COLOR_CYAN] = QEMU_RGB(0x00, 0xaa, 0xaa), /* cyan */
|
|
|
|
[QEMU_COLOR_RED] = QEMU_RGB(0xaa, 0x00, 0x00), /* red */
|
|
|
|
[QEMU_COLOR_MAGENTA] = QEMU_RGB(0xaa, 0x00, 0xaa), /* magenta */
|
|
|
|
[QEMU_COLOR_YELLOW] = QEMU_RGB(0xaa, 0xaa, 0x00), /* yellow */
|
|
|
|
[QEMU_COLOR_WHITE] = QEMU_RGB(0xaa, 0xaa, 0xaa), /* white */
|
2006-03-11 16:35:30 +01:00
|
|
|
},
|
|
|
|
{ /* bright */
|
2015-11-29 14:28:24 +01:00
|
|
|
[QEMU_COLOR_BLACK] = QEMU_RGB(0x00, 0x00, 0x00), /* black */
|
|
|
|
[QEMU_COLOR_BLUE] = QEMU_RGB(0x00, 0x00, 0xff), /* blue */
|
|
|
|
[QEMU_COLOR_GREEN] = QEMU_RGB(0x00, 0xff, 0x00), /* green */
|
|
|
|
[QEMU_COLOR_CYAN] = QEMU_RGB(0x00, 0xff, 0xff), /* cyan */
|
|
|
|
[QEMU_COLOR_RED] = QEMU_RGB(0xff, 0x00, 0x00), /* red */
|
|
|
|
[QEMU_COLOR_MAGENTA] = QEMU_RGB(0xff, 0x00, 0xff), /* magenta */
|
|
|
|
[QEMU_COLOR_YELLOW] = QEMU_RGB(0xff, 0xff, 0x00), /* yellow */
|
|
|
|
[QEMU_COLOR_WHITE] = QEMU_RGB(0xff, 0xff, 0xff), /* white */
|
2006-03-11 16:35:30 +01:00
|
|
|
}
|
2004-07-14 19:28:59 +02:00
|
|
|
};
|
|
|
|
|
2013-03-06 13:40:47 +01:00
|
|
|
static void vga_putcharxy(QemuConsole *s, int x, int y, int ch,
|
2006-03-11 16:35:30 +01:00
|
|
|
TextAttributes *t_attrib)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
2013-03-06 15:44:10 +01:00
|
|
|
static pixman_image_t *glyphs[256];
|
2013-03-06 13:40:47 +01:00
|
|
|
DisplaySurface *surface = qemu_console_surface(s);
|
2013-03-08 08:43:24 +01:00
|
|
|
pixman_color_t fgcol, bgcol;
|
2006-03-11 16:35:30 +01:00
|
|
|
|
|
|
|
if (t_attrib->invers) {
|
2013-03-06 09:50:51 +01:00
|
|
|
bgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol];
|
|
|
|
fgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol];
|
2006-03-11 16:35:30 +01:00
|
|
|
} else {
|
2013-03-06 09:50:51 +01:00
|
|
|
fgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol];
|
|
|
|
bgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol];
|
2006-03-11 16:35:30 +01:00
|
|
|
}
|
2004-07-14 19:28:59 +02:00
|
|
|
|
2013-03-06 15:44:10 +01:00
|
|
|
if (!glyphs[ch]) {
|
|
|
|
glyphs[ch] = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, ch);
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
2013-03-06 15:44:10 +01:00
|
|
|
qemu_pixman_glyph_render(glyphs[ch], surface->image,
|
2013-03-08 08:43:24 +01:00
|
|
|
&fgcol, &bgcol, x, y, FONT_WIDTH, FONT_HEIGHT);
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
static void text_console_resize(QemuConsole *s)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
|
|
|
TextCell *cells, *c, *c1;
|
|
|
|
int w1, x, y, last_width;
|
|
|
|
|
2021-02-20 13:23:03 +01:00
|
|
|
assert(s->scanout.kind == SCANOUT_SURFACE);
|
|
|
|
|
2004-07-14 19:28:59 +02:00
|
|
|
last_width = s->width;
|
2013-03-13 10:14:52 +01:00
|
|
|
s->width = surface_width(s->surface) / FONT_WIDTH;
|
|
|
|
s->height = surface_height(s->surface) / FONT_HEIGHT;
|
2004-07-14 19:28:59 +02:00
|
|
|
|
|
|
|
w1 = last_width;
|
|
|
|
if (s->width < w1)
|
|
|
|
w1 = s->width;
|
|
|
|
|
2019-07-01 09:53:01 +02:00
|
|
|
cells = g_new(TextCell, s->width * s->total_height + 1);
|
2004-07-14 19:28:59 +02:00
|
|
|
for(y = 0; y < s->total_height; y++) {
|
|
|
|
c = &cells[y * s->width];
|
|
|
|
if (w1 > 0) {
|
|
|
|
c1 = &s->cells[y * last_width];
|
|
|
|
for(x = 0; x < w1; x++) {
|
|
|
|
*c++ = *c1++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(x = w1; x < s->width; x++) {
|
|
|
|
c->ch = ' ';
|
2006-03-11 16:35:30 +01:00
|
|
|
c->t_attrib = s->t_attrib_default;
|
2004-07-14 19:28:59 +02:00
|
|
|
c++;
|
|
|
|
}
|
|
|
|
}
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free(s->cells);
|
2004-07-14 19:28:59 +02:00
|
|
|
s->cells = cells;
|
|
|
|
}
|
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
static inline void text_update_xy(QemuConsole *s, int x, int y)
|
2008-02-10 17:33:14 +01:00
|
|
|
{
|
|
|
|
s->text_x[0] = MIN(s->text_x[0], x);
|
|
|
|
s->text_x[1] = MAX(s->text_x[1], x);
|
|
|
|
s->text_y[0] = MIN(s->text_y[0], y);
|
|
|
|
s->text_y[1] = MAX(s->text_y[1], y);
|
|
|
|
}
|
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
static void invalidate_xy(QemuConsole *s, int x, int y)
|
2009-01-21 04:02:52 +01:00
|
|
|
{
|
2014-05-22 11:01:42 +02:00
|
|
|
if (!qemu_console_is_visible(s)) {
|
|
|
|
return;
|
|
|
|
}
|
2009-01-21 04:02:52 +01:00
|
|
|
if (s->update_x0 > x * FONT_WIDTH)
|
|
|
|
s->update_x0 = x * FONT_WIDTH;
|
|
|
|
if (s->update_y0 > y * FONT_HEIGHT)
|
|
|
|
s->update_y0 = y * FONT_HEIGHT;
|
|
|
|
if (s->update_x1 < (x + 1) * FONT_WIDTH)
|
|
|
|
s->update_x1 = (x + 1) * FONT_WIDTH;
|
|
|
|
if (s->update_y1 < (y + 1) * FONT_HEIGHT)
|
|
|
|
s->update_y1 = (y + 1) * FONT_HEIGHT;
|
|
|
|
}
|
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
static void update_xy(QemuConsole *s, int x, int y)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
|
|
|
TextCell *c;
|
|
|
|
int y1, y2;
|
|
|
|
|
2013-03-06 13:40:47 +01:00
|
|
|
if (s->ds->have_text) {
|
|
|
|
text_update_xy(s, x, y);
|
|
|
|
}
|
2008-02-10 17:33:14 +01:00
|
|
|
|
2014-05-22 11:01:42 +02:00
|
|
|
y1 = (s->y_base + y) % s->total_height;
|
|
|
|
y2 = y1 - s->y_displayed;
|
|
|
|
if (y2 < 0) {
|
|
|
|
y2 += s->total_height;
|
|
|
|
}
|
|
|
|
if (y2 < s->height) {
|
2019-07-01 09:53:01 +02:00
|
|
|
if (x >= s->width) {
|
|
|
|
x = s->width - 1;
|
|
|
|
}
|
2014-05-22 11:01:42 +02:00
|
|
|
c = &s->cells[y1 * s->width + x];
|
|
|
|
vga_putcharxy(s, x, y2, c->ch,
|
|
|
|
&(c->t_attrib));
|
|
|
|
invalidate_xy(s, x, y2);
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
static void console_show_cursor(QemuConsole *s, int show)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
|
|
|
TextCell *c;
|
|
|
|
int y, y1;
|
2013-03-06 13:40:47 +01:00
|
|
|
int x = s->x;
|
2004-07-14 19:28:59 +02:00
|
|
|
|
2013-03-06 13:40:47 +01:00
|
|
|
if (s->ds->have_text) {
|
|
|
|
s->cursor_invalidate = 1;
|
|
|
|
}
|
2008-02-10 17:33:14 +01:00
|
|
|
|
2014-05-22 11:01:42 +02:00
|
|
|
if (x >= s->width) {
|
|
|
|
x = s->width - 1;
|
|
|
|
}
|
|
|
|
y1 = (s->y_base + s->y) % s->total_height;
|
|
|
|
y = y1 - s->y_displayed;
|
|
|
|
if (y < 0) {
|
|
|
|
y += s->total_height;
|
|
|
|
}
|
|
|
|
if (y < s->height) {
|
|
|
|
c = &s->cells[y1 * s->width + x];
|
2014-05-22 11:27:13 +02:00
|
|
|
if (show && cursor_visible_phase) {
|
2014-05-22 11:01:42 +02:00
|
|
|
TextAttributes t_attrib = s->t_attrib_default;
|
|
|
|
t_attrib.invers = !(t_attrib.invers); /* invert fg and bg */
|
|
|
|
vga_putcharxy(s, x, y, c->ch, &t_attrib);
|
|
|
|
} else {
|
|
|
|
vga_putcharxy(s, x, y, c->ch, &(c->t_attrib));
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
2014-05-22 11:01:42 +02:00
|
|
|
invalidate_xy(s, x, y);
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
static void console_refresh(QemuConsole *s)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
2013-03-06 13:40:47 +01:00
|
|
|
DisplaySurface *surface = qemu_console_surface(s);
|
2004-07-14 19:28:59 +02:00
|
|
|
TextCell *c;
|
|
|
|
int x, y, y1;
|
|
|
|
|
2012-09-28 15:02:08 +02:00
|
|
|
if (s->ds->have_text) {
|
2008-02-10 17:33:14 +01:00
|
|
|
s->text_x[0] = 0;
|
|
|
|
s->text_y[0] = 0;
|
|
|
|
s->text_x[1] = s->width - 1;
|
|
|
|
s->text_y[1] = s->height - 1;
|
|
|
|
s->cursor_invalidate = 1;
|
|
|
|
}
|
2004-07-14 19:28:59 +02:00
|
|
|
|
2014-05-22 11:01:42 +02:00
|
|
|
vga_fill_rect(s, 0, 0, surface_width(surface), surface_height(surface),
|
2015-11-29 14:28:24 +01:00
|
|
|
color_table_rgb[0][QEMU_COLOR_BLACK]);
|
2014-05-22 11:01:42 +02:00
|
|
|
y1 = s->y_displayed;
|
|
|
|
for (y = 0; y < s->height; y++) {
|
|
|
|
c = s->cells + y1 * s->width;
|
|
|
|
for (x = 0; x < s->width; x++) {
|
|
|
|
vga_putcharxy(s, x, y, c->ch,
|
|
|
|
&(c->t_attrib));
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
if (++y1 == s->total_height) {
|
|
|
|
y1 = 0;
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
}
|
2014-05-22 11:01:42 +02:00
|
|
|
console_show_cursor(s, 1);
|
|
|
|
dpy_gfx_update(s, 0, 0,
|
|
|
|
surface_width(surface), surface_height(surface));
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
static void console_scroll(QemuConsole *s, int ydelta)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
|
|
|
int i, y1;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2004-07-14 19:28:59 +02:00
|
|
|
if (ydelta > 0) {
|
|
|
|
for(i = 0; i < ydelta; i++) {
|
|
|
|
if (s->y_displayed == s->y_base)
|
|
|
|
break;
|
|
|
|
if (++s->y_displayed == s->total_height)
|
|
|
|
s->y_displayed = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ydelta = -ydelta;
|
|
|
|
i = s->backscroll_height;
|
|
|
|
if (i > s->total_height - s->height)
|
|
|
|
i = s->total_height - s->height;
|
|
|
|
y1 = s->y_base - i;
|
|
|
|
if (y1 < 0)
|
|
|
|
y1 += s->total_height;
|
|
|
|
for(i = 0; i < ydelta; i++) {
|
|
|
|
if (s->y_displayed == y1)
|
|
|
|
break;
|
|
|
|
if (--s->y_displayed < 0)
|
|
|
|
s->y_displayed = s->total_height - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console_refresh(s);
|
|
|
|
}
|
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
static void console_put_lf(QemuConsole *s)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
|
|
|
TextCell *c;
|
|
|
|
int x, y1;
|
|
|
|
|
|
|
|
s->y++;
|
|
|
|
if (s->y >= s->height) {
|
|
|
|
s->y = s->height - 1;
|
2006-03-11 16:35:30 +01:00
|
|
|
|
2004-07-14 19:28:59 +02:00
|
|
|
if (s->y_displayed == s->y_base) {
|
|
|
|
if (++s->y_displayed == s->total_height)
|
|
|
|
s->y_displayed = 0;
|
|
|
|
}
|
|
|
|
if (++s->y_base == s->total_height)
|
|
|
|
s->y_base = 0;
|
|
|
|
if (s->backscroll_height < s->total_height)
|
|
|
|
s->backscroll_height++;
|
|
|
|
y1 = (s->y_base + s->height - 1) % s->total_height;
|
|
|
|
c = &s->cells[y1 * s->width];
|
|
|
|
for(x = 0; x < s->width; x++) {
|
|
|
|
c->ch = ' ';
|
2006-03-11 16:35:30 +01:00
|
|
|
c->t_attrib = s->t_attrib_default;
|
2004-07-14 19:28:59 +02:00
|
|
|
c++;
|
|
|
|
}
|
2014-05-22 11:01:42 +02:00
|
|
|
if (s->y_displayed == s->y_base) {
|
2013-03-06 13:40:47 +01:00
|
|
|
if (s->ds->have_text) {
|
2008-02-10 17:33:14 +01:00
|
|
|
s->text_x[0] = 0;
|
|
|
|
s->text_y[0] = 0;
|
|
|
|
s->text_x[1] = s->width - 1;
|
|
|
|
s->text_y[1] = s->height - 1;
|
|
|
|
}
|
|
|
|
|
2014-05-22 11:01:42 +02:00
|
|
|
vga_bitblt(s, 0, FONT_HEIGHT, 0, 0,
|
|
|
|
s->width * FONT_WIDTH,
|
|
|
|
(s->height - 1) * FONT_HEIGHT);
|
|
|
|
vga_fill_rect(s, 0, (s->height - 1) * FONT_HEIGHT,
|
|
|
|
s->width * FONT_WIDTH, FONT_HEIGHT,
|
|
|
|
color_table_rgb[0][s->t_attrib_default.bgcol]);
|
|
|
|
s->update_x0 = 0;
|
|
|
|
s->update_y0 = 0;
|
|
|
|
s->update_x1 = s->width * FONT_WIDTH;
|
|
|
|
s->update_y1 = s->height * FONT_HEIGHT;
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-11 16:35:30 +01:00
|
|
|
/* Set console attributes depending on the current escape codes.
|
|
|
|
* NOTE: I know this code is not very efficient (checking every color for it
|
|
|
|
* self) but it is more readable and better maintainable.
|
|
|
|
*/
|
2012-09-28 13:24:17 +02:00
|
|
|
static void console_handle_escape(QemuConsole *s)
|
2006-03-11 16:35:30 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<s->nb_esc_params; i++) {
|
|
|
|
switch (s->esc_params[i]) {
|
|
|
|
case 0: /* reset all console attributes to default */
|
|
|
|
s->t_attrib = s->t_attrib_default;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
s->t_attrib.bold = 1;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
s->t_attrib.uline = 1;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
s->t_attrib.blink = 1;
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
s->t_attrib.invers = 1;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
s->t_attrib.unvisible = 1;
|
|
|
|
break;
|
|
|
|
case 22:
|
|
|
|
s->t_attrib.bold = 0;
|
|
|
|
break;
|
|
|
|
case 24:
|
|
|
|
s->t_attrib.uline = 0;
|
|
|
|
break;
|
|
|
|
case 25:
|
|
|
|
s->t_attrib.blink = 0;
|
|
|
|
break;
|
|
|
|
case 27:
|
|
|
|
s->t_attrib.invers = 0;
|
|
|
|
break;
|
|
|
|
case 28:
|
|
|
|
s->t_attrib.unvisible = 0;
|
|
|
|
break;
|
|
|
|
/* set foreground color */
|
|
|
|
case 30:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.fgcol = QEMU_COLOR_BLACK;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 31:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.fgcol = QEMU_COLOR_RED;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 32:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.fgcol = QEMU_COLOR_GREEN;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 33:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.fgcol = QEMU_COLOR_YELLOW;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 34:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.fgcol = QEMU_COLOR_BLUE;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 35:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.fgcol = QEMU_COLOR_MAGENTA;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 36:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.fgcol = QEMU_COLOR_CYAN;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 37:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.fgcol = QEMU_COLOR_WHITE;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
/* set background color */
|
|
|
|
case 40:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.bgcol = QEMU_COLOR_BLACK;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 41:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.bgcol = QEMU_COLOR_RED;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 42:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.bgcol = QEMU_COLOR_GREEN;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 43:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.bgcol = QEMU_COLOR_YELLOW;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 44:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.bgcol = QEMU_COLOR_BLUE;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 45:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.bgcol = QEMU_COLOR_MAGENTA;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 46:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.bgcol = QEMU_COLOR_CYAN;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case 47:
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.bgcol = QEMU_COLOR_WHITE;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
static void console_clear_xy(QemuConsole *s, int x, int y)
|
2007-01-17 00:02:36 +01:00
|
|
|
{
|
|
|
|
int y1 = (s->y_base + y) % s->total_height;
|
2019-07-01 09:53:01 +02:00
|
|
|
if (x >= s->width) {
|
|
|
|
x = s->width - 1;
|
|
|
|
}
|
2007-01-17 00:02:36 +01:00
|
|
|
TextCell *c = &s->cells[y1 * s->width + x];
|
|
|
|
c->ch = ' ';
|
|
|
|
c->t_attrib = s->t_attrib_default;
|
|
|
|
update_xy(s, x, y);
|
|
|
|
}
|
|
|
|
|
2016-03-08 20:51:21 +01:00
|
|
|
static void console_put_one(QemuConsole *s, int ch)
|
|
|
|
{
|
|
|
|
TextCell *c;
|
|
|
|
int y1;
|
|
|
|
if (s->x >= s->width) {
|
|
|
|
/* line wrap */
|
|
|
|
s->x = 0;
|
|
|
|
console_put_lf(s);
|
|
|
|
}
|
|
|
|
y1 = (s->y_base + s->y) % s->total_height;
|
|
|
|
c = &s->cells[y1 * s->width + s->x];
|
|
|
|
c->ch = ch;
|
|
|
|
c->t_attrib = s->t_attrib;
|
|
|
|
update_xy(s, s->x, s->y);
|
|
|
|
s->x++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void console_respond_str(QemuConsole *s, const char *buf)
|
|
|
|
{
|
|
|
|
while (*buf) {
|
|
|
|
console_put_one(s, *buf);
|
|
|
|
buf++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-04 17:26:09 +02:00
|
|
|
/* set cursor, checking bounds */
|
2012-09-28 13:24:17 +02:00
|
|
|
static void set_cursor(QemuConsole *s, int x, int y)
|
2012-09-04 17:26:09 +02:00
|
|
|
{
|
|
|
|
if (x < 0) {
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
if (y < 0) {
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
if (y >= s->height) {
|
|
|
|
y = s->height - 1;
|
|
|
|
}
|
|
|
|
if (x >= s->width) {
|
|
|
|
x = s->width - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->x = x;
|
|
|
|
s->y = y;
|
|
|
|
}
|
|
|
|
|
2012-09-28 13:24:17 +02:00
|
|
|
static void console_putchar(QemuConsole *s, int ch)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
2016-03-08 20:51:21 +01:00
|
|
|
int i;
|
2007-01-17 00:02:36 +01:00
|
|
|
int x, y;
|
2016-03-08 20:51:21 +01:00
|
|
|
char response[40];
|
2004-07-14 19:28:59 +02:00
|
|
|
|
|
|
|
switch(s->state) {
|
|
|
|
case TTY_STATE_NORM:
|
|
|
|
switch(ch) {
|
2006-03-11 16:35:30 +01:00
|
|
|
case '\r': /* carriage return */
|
2004-07-14 19:28:59 +02:00
|
|
|
s->x = 0;
|
|
|
|
break;
|
2006-03-11 16:35:30 +01:00
|
|
|
case '\n': /* newline */
|
2004-07-14 19:28:59 +02:00
|
|
|
console_put_lf(s);
|
|
|
|
break;
|
2006-03-11 16:35:30 +01:00
|
|
|
case '\b': /* backspace */
|
2007-09-16 23:08:06 +02:00
|
|
|
if (s->x > 0)
|
2006-06-25 18:26:29 +02:00
|
|
|
s->x--;
|
2006-03-11 16:35:30 +01:00
|
|
|
break;
|
|
|
|
case '\t': /* tabspace */
|
|
|
|
if (s->x + (8 - (s->x % 8)) > s->width) {
|
2006-07-14 22:24:31 +02:00
|
|
|
s->x = 0;
|
2006-03-11 16:35:30 +01:00
|
|
|
console_put_lf(s);
|
|
|
|
} else {
|
|
|
|
s->x = s->x + (8 - (s->x % 8));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '\a': /* alert aka. bell */
|
|
|
|
/* TODO: has to be implemented */
|
|
|
|
break;
|
2007-01-17 00:02:36 +01:00
|
|
|
case 14:
|
|
|
|
/* SI (shift in), character set 0 (ignored) */
|
|
|
|
break;
|
|
|
|
case 15:
|
|
|
|
/* SO (shift out), character set 1 (ignored) */
|
|
|
|
break;
|
2006-03-11 16:35:30 +01:00
|
|
|
case 27: /* esc (introducing an escape sequence) */
|
2004-07-14 19:28:59 +02:00
|
|
|
s->state = TTY_STATE_ESC;
|
|
|
|
break;
|
|
|
|
default:
|
2016-03-08 20:51:21 +01:00
|
|
|
console_put_one(s, ch);
|
2004-07-14 19:28:59 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2006-03-11 16:35:30 +01:00
|
|
|
case TTY_STATE_ESC: /* check if it is a terminal escape sequence */
|
2004-07-14 19:28:59 +02:00
|
|
|
if (ch == '[') {
|
|
|
|
for(i=0;i<MAX_ESC_PARAMS;i++)
|
|
|
|
s->esc_params[i] = 0;
|
|
|
|
s->nb_esc_params = 0;
|
|
|
|
s->state = TTY_STATE_CSI;
|
|
|
|
} else {
|
|
|
|
s->state = TTY_STATE_NORM;
|
|
|
|
}
|
|
|
|
break;
|
2006-03-11 16:35:30 +01:00
|
|
|
case TTY_STATE_CSI: /* handle escape sequence parameters */
|
2004-07-14 19:28:59 +02:00
|
|
|
if (ch >= '0' && ch <= '9') {
|
|
|
|
if (s->nb_esc_params < MAX_ESC_PARAMS) {
|
2012-09-17 11:10:03 +02:00
|
|
|
int *param = &s->esc_params[s->nb_esc_params];
|
|
|
|
int digit = (ch - '0');
|
|
|
|
|
|
|
|
*param = (*param <= (INT_MAX - digit) / 10) ?
|
|
|
|
*param * 10 + digit : INT_MAX;
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
} else {
|
2012-09-04 17:26:09 +02:00
|
|
|
if (s->nb_esc_params < MAX_ESC_PARAMS)
|
|
|
|
s->nb_esc_params++;
|
2017-08-29 13:38:18 +02:00
|
|
|
if (ch == ';' || ch == '?') {
|
2004-07-14 19:28:59 +02:00
|
|
|
break;
|
2017-08-29 13:38:18 +02:00
|
|
|
}
|
2013-11-10 16:04:16 +01:00
|
|
|
trace_console_putchar_csi(s->esc_params[0], s->esc_params[1],
|
|
|
|
ch, s->nb_esc_params);
|
2004-07-14 19:28:59 +02:00
|
|
|
s->state = TTY_STATE_NORM;
|
|
|
|
switch(ch) {
|
2007-01-17 00:02:36 +01:00
|
|
|
case 'A':
|
|
|
|
/* move cursor up */
|
|
|
|
if (s->esc_params[0] == 0) {
|
|
|
|
s->esc_params[0] = 1;
|
|
|
|
}
|
2012-09-04 17:26:09 +02:00
|
|
|
set_cursor(s, s->x, s->y - s->esc_params[0]);
|
2007-01-17 00:02:36 +01:00
|
|
|
break;
|
|
|
|
case 'B':
|
|
|
|
/* move cursor down */
|
|
|
|
if (s->esc_params[0] == 0) {
|
|
|
|
s->esc_params[0] = 1;
|
|
|
|
}
|
2012-09-04 17:26:09 +02:00
|
|
|
set_cursor(s, s->x, s->y + s->esc_params[0]);
|
2004-07-14 19:28:59 +02:00
|
|
|
break;
|
|
|
|
case 'C':
|
2007-01-17 00:02:36 +01:00
|
|
|
/* move cursor right */
|
|
|
|
if (s->esc_params[0] == 0) {
|
|
|
|
s->esc_params[0] = 1;
|
|
|
|
}
|
2012-09-04 17:26:09 +02:00
|
|
|
set_cursor(s, s->x + s->esc_params[0], s->y);
|
2004-07-14 19:28:59 +02:00
|
|
|
break;
|
2007-01-17 00:02:36 +01:00
|
|
|
case 'D':
|
|
|
|
/* move cursor left */
|
|
|
|
if (s->esc_params[0] == 0) {
|
|
|
|
s->esc_params[0] = 1;
|
|
|
|
}
|
2012-09-04 17:26:09 +02:00
|
|
|
set_cursor(s, s->x - s->esc_params[0], s->y);
|
2007-01-17 00:02:36 +01:00
|
|
|
break;
|
|
|
|
case 'G':
|
|
|
|
/* move cursor to column */
|
2012-09-04 17:26:09 +02:00
|
|
|
set_cursor(s, s->esc_params[0] - 1, s->y);
|
2007-01-17 00:02:36 +01:00
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
case 'H':
|
|
|
|
/* move cursor to row, column */
|
2012-09-04 17:26:09 +02:00
|
|
|
set_cursor(s, s->esc_params[1] - 1, s->esc_params[0] - 1);
|
2007-01-17 00:02:36 +01:00
|
|
|
break;
|
|
|
|
case 'J':
|
|
|
|
switch (s->esc_params[0]) {
|
|
|
|
case 0:
|
|
|
|
/* clear to end of screen */
|
|
|
|
for (y = s->y; y < s->height; y++) {
|
|
|
|
for (x = 0; x < s->width; x++) {
|
|
|
|
if (y == s->y && x < s->x) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
console_clear_xy(s, x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
/* clear from beginning of screen */
|
|
|
|
for (y = 0; y <= s->y; y++) {
|
|
|
|
for (x = 0; x < s->width; x++) {
|
|
|
|
if (y == s->y && x > s->x) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
console_clear_xy(s, x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
/* clear entire screen */
|
|
|
|
for (y = 0; y <= s->height; y++) {
|
|
|
|
for (x = 0; x < s->width; x++) {
|
|
|
|
console_clear_xy(s, x, y);
|
|
|
|
}
|
|
|
|
}
|
2011-11-22 11:59:06 +01:00
|
|
|
break;
|
2007-01-17 00:02:36 +01:00
|
|
|
}
|
2011-11-22 11:59:07 +01:00
|
|
|
break;
|
2004-07-14 19:28:59 +02:00
|
|
|
case 'K':
|
2007-01-17 00:02:36 +01:00
|
|
|
switch (s->esc_params[0]) {
|
|
|
|
case 0:
|
2011-11-22 11:59:06 +01:00
|
|
|
/* clear to eol */
|
|
|
|
for(x = s->x; x < s->width; x++) {
|
2007-01-17 00:02:36 +01:00
|
|
|
console_clear_xy(s, x, s->y);
|
2011-11-22 11:59:06 +01:00
|
|
|
}
|
|
|
|
break;
|
2007-01-17 00:02:36 +01:00
|
|
|
case 1:
|
|
|
|
/* clear from beginning of line */
|
2019-07-01 09:53:01 +02:00
|
|
|
for (x = 0; x <= s->x && x < s->width; x++) {
|
2007-01-17 00:02:36 +01:00
|
|
|
console_clear_xy(s, x, s->y);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
/* clear entire line */
|
|
|
|
for(x = 0; x < s->width; x++) {
|
|
|
|
console_clear_xy(s, x, s->y);
|
|
|
|
}
|
2011-11-22 11:59:06 +01:00
|
|
|
break;
|
|
|
|
}
|
2007-01-17 00:02:36 +01:00
|
|
|
break;
|
|
|
|
case 'm':
|
2011-11-22 11:59:06 +01:00
|
|
|
console_handle_escape(s);
|
|
|
|
break;
|
2007-01-17 00:02:36 +01:00
|
|
|
case 'n':
|
2016-03-08 20:51:21 +01:00
|
|
|
switch (s->esc_params[0]) {
|
|
|
|
case 5:
|
|
|
|
/* report console status (always succeed)*/
|
|
|
|
console_respond_str(s, "\033[0n");
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
/* report cursor position */
|
|
|
|
sprintf(response, "\033[%d;%dR",
|
|
|
|
(s->y_base + s->y) % s->total_height + 1,
|
|
|
|
s->x + 1);
|
|
|
|
console_respond_str(s, response);
|
|
|
|
break;
|
|
|
|
}
|
2007-01-17 00:02:36 +01:00
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
/* save cursor position */
|
|
|
|
s->x_saved = s->x;
|
|
|
|
s->y_saved = s->y;
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
/* restore cursor position */
|
|
|
|
s->x = s->x_saved;
|
|
|
|
s->y = s->y_saved;
|
|
|
|
break;
|
|
|
|
default:
|
2013-11-10 16:04:16 +01:00
|
|
|
trace_console_putchar_unhandled(ch);
|
2007-01-17 00:02:36 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-17 09:42:20 +01:00
|
|
|
static void displaychangelistener_gfx_switch(DisplayChangeListener *dcl,
|
2022-02-20 20:31:58 +01:00
|
|
|
struct DisplaySurface *new_surface,
|
|
|
|
bool update)
|
2022-02-17 09:42:20 +01:00
|
|
|
{
|
|
|
|
if (dcl->ops->dpy_gfx_switch) {
|
|
|
|
dcl->ops->dpy_gfx_switch(dcl, new_surface);
|
|
|
|
}
|
2022-02-20 20:31:58 +01:00
|
|
|
|
|
|
|
if (update && dcl->ops->dpy_gfx_update) {
|
|
|
|
dcl->ops->dpy_gfx_update(dcl, 0, 0,
|
|
|
|
surface_width(new_surface),
|
|
|
|
surface_height(new_surface));
|
|
|
|
}
|
2022-02-17 09:42:20 +01:00
|
|
|
}
|
|
|
|
|
2022-02-17 12:07:21 +01:00
|
|
|
static void dpy_gfx_create_texture(QemuConsole *con, DisplaySurface *surface)
|
|
|
|
{
|
|
|
|
if (con->gl && con->gl->ops->dpy_gl_ctx_create_texture) {
|
|
|
|
con->gl->ops->dpy_gl_ctx_create_texture(con->gl, surface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dpy_gfx_destroy_texture(QemuConsole *con, DisplaySurface *surface)
|
|
|
|
{
|
|
|
|
if (con->gl && con->gl->ops->dpy_gl_ctx_destroy_texture) {
|
|
|
|
con->gl->ops->dpy_gl_ctx_destroy_texture(con->gl, surface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dpy_gfx_update_texture(QemuConsole *con, DisplaySurface *surface,
|
|
|
|
int x, int y, int w, int h)
|
|
|
|
{
|
|
|
|
if (con->gl && con->gl->ops->dpy_gl_ctx_update_texture) {
|
|
|
|
con->gl->ops->dpy_gl_ctx_update_texture(con->gl, surface, x, y, w, h);
|
|
|
|
}
|
|
|
|
}
|
2022-02-17 09:42:20 +01:00
|
|
|
|
2021-02-20 13:23:03 +01:00
|
|
|
static void displaychangelistener_display_console(DisplayChangeListener *dcl,
|
2022-02-16 17:16:55 +01:00
|
|
|
QemuConsole *con,
|
|
|
|
Error **errp)
|
2021-02-20 13:23:03 +01:00
|
|
|
{
|
|
|
|
static const char nodev[] =
|
|
|
|
"This VM has no graphic display device.";
|
|
|
|
static DisplaySurface *dummy;
|
|
|
|
|
2022-02-16 17:16:55 +01:00
|
|
|
if (!con || !console_compatible_with(con, dcl, errp)) {
|
2021-02-20 13:23:03 +01:00
|
|
|
if (!dummy) {
|
|
|
|
dummy = qemu_create_placeholder_surface(640, 480, nodev);
|
|
|
|
}
|
2022-02-17 12:07:21 +01:00
|
|
|
if (con) {
|
|
|
|
dpy_gfx_create_texture(con, dummy);
|
|
|
|
}
|
2022-02-20 20:31:58 +01:00
|
|
|
displaychangelistener_gfx_switch(dcl, dummy, TRUE);
|
2021-02-20 13:23:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-02-20 20:45:38 +01:00
|
|
|
dpy_gfx_create_texture(con, con->surface);
|
|
|
|
displaychangelistener_gfx_switch(dcl, con->surface,
|
|
|
|
con->scanout.kind == SCANOUT_SURFACE);
|
|
|
|
|
2021-02-20 13:23:03 +01:00
|
|
|
if (con->scanout.kind == SCANOUT_DMABUF &&
|
|
|
|
displaychangelistener_has_dmabuf(dcl)) {
|
|
|
|
dcl->ops->dpy_gl_scanout_dmabuf(dcl, con->scanout.dmabuf);
|
|
|
|
} else if (con->scanout.kind == SCANOUT_TEXTURE &&
|
|
|
|
dcl->ops->dpy_gl_scanout_texture) {
|
|
|
|
dcl->ops->dpy_gl_scanout_texture(dcl,
|
|
|
|
con->scanout.texture.backing_id,
|
|
|
|
con->scanout.texture.backing_y_0_top,
|
|
|
|
con->scanout.texture.backing_width,
|
|
|
|
con->scanout.texture.backing_height,
|
|
|
|
con->scanout.texture.x,
|
|
|
|
con->scanout.texture.y,
|
|
|
|
con->scanout.texture.width,
|
|
|
|
con->scanout.texture.height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-14 19:28:59 +02:00
|
|
|
void console_select(unsigned int index)
|
|
|
|
{
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2012-09-28 13:24:17 +02:00
|
|
|
QemuConsole *s;
|
2006-03-11 16:35:30 +01:00
|
|
|
|
2013-03-07 16:04:52 +01:00
|
|
|
trace_console_select(index);
|
2013-03-15 15:45:54 +01:00
|
|
|
s = qemu_console_lookup_by_index(index);
|
2004-07-14 19:28:59 +02:00
|
|
|
if (s) {
|
2009-01-15 23:14:11 +01:00
|
|
|
DisplayState *ds = s->ds;
|
2012-07-10 22:00:55 +02:00
|
|
|
|
2004-07-14 19:28:59 +02:00
|
|
|
active_console = s;
|
2012-09-28 15:02:08 +02:00
|
|
|
if (ds->have_gfx) {
|
2013-03-15 15:45:54 +01:00
|
|
|
QLIST_FOREACH(dcl, &ds->listeners, next) {
|
|
|
|
if (dcl->con != NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-02-16 17:16:55 +01:00
|
|
|
displaychangelistener_display_console(dcl, s, NULL);
|
2018-03-08 17:18:03 +01:00
|
|
|
}
|
2012-09-28 15:02:08 +02:00
|
|
|
}
|
|
|
|
if (ds->have_text) {
|
2013-03-05 15:24:14 +01:00
|
|
|
dpy_text_resize(s, s->width, s->height);
|
2009-01-21 19:59:12 +01:00
|
|
|
}
|
2014-05-22 11:27:13 +02:00
|
|
|
text_console_update_cursor(NULL);
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct VCChardev {
|
2016-12-07 14:20:22 +01:00
|
|
|
Chardev parent;
|
2016-10-21 22:44:44 +02:00
|
|
|
QemuConsole *console;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
|
|
|
typedef struct VCChardev VCChardev;
|
2016-10-21 22:44:44 +02:00
|
|
|
|
2016-12-07 16:39:10 +01:00
|
|
|
#define TYPE_CHARDEV_VC "chardev-vc"
|
2020-08-31 23:07:33 +02:00
|
|
|
DECLARE_INSTANCE_CHECKER(VCChardev, VC_CHARDEV,
|
|
|
|
TYPE_CHARDEV_VC)
|
2016-12-07 16:39:10 +01:00
|
|
|
|
2017-01-05 17:30:29 +01:00
|
|
|
static int vc_chr_write(Chardev *chr, const uint8_t *buf, int len)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
VCChardev *drv = VC_CHARDEV(chr);
|
2016-10-21 22:44:44 +02:00
|
|
|
QemuConsole *s = drv->console;
|
2004-07-14 19:28:59 +02:00
|
|
|
int i;
|
|
|
|
|
2016-10-21 19:49:37 +02:00
|
|
|
if (!s->ds) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-21 04:02:52 +01:00
|
|
|
s->update_x0 = s->width * FONT_WIDTH;
|
|
|
|
s->update_y0 = s->height * FONT_HEIGHT;
|
|
|
|
s->update_x1 = 0;
|
|
|
|
s->update_y1 = 0;
|
2004-07-14 19:28:59 +02:00
|
|
|
console_show_cursor(s, 0);
|
|
|
|
for(i = 0; i < len; i++) {
|
|
|
|
console_putchar(s, buf[i]);
|
|
|
|
}
|
|
|
|
console_show_cursor(s, 1);
|
2012-09-28 15:02:08 +02:00
|
|
|
if (s->ds->have_gfx && s->update_x0 < s->update_x1) {
|
2013-03-05 15:24:14 +01:00
|
|
|
dpy_gfx_update(s, s->update_x0, s->update_y0,
|
2012-09-28 15:02:08 +02:00
|
|
|
s->update_x1 - s->update_x0,
|
|
|
|
s->update_y1 - s->update_y0);
|
2009-01-21 04:02:52 +01:00
|
|
|
}
|
2004-07-14 19:28:59 +02:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2021-09-16 21:22:37 +02:00
|
|
|
static void kbd_send_chars(QemuConsole *s)
|
2006-06-25 18:26:29 +02:00
|
|
|
{
|
2021-09-16 21:22:36 +02:00
|
|
|
uint32_t len, avail;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2011-08-15 18:17:31 +02:00
|
|
|
len = qemu_chr_be_can_write(s->chr);
|
2021-09-16 21:22:36 +02:00
|
|
|
avail = fifo8_num_used(&s->out_fifo);
|
2021-09-16 21:22:37 +02:00
|
|
|
while (len > 0 && avail > 0) {
|
2021-09-16 21:22:36 +02:00
|
|
|
const uint8_t *buf;
|
|
|
|
uint32_t size;
|
|
|
|
|
2021-09-16 21:22:37 +02:00
|
|
|
buf = fifo8_pop_buf(&s->out_fifo, MIN(len, avail), &size);
|
2022-10-22 16:12:04 +02:00
|
|
|
qemu_chr_be_write(s->chr, buf, size);
|
2021-09-16 21:22:37 +02:00
|
|
|
len = qemu_chr_be_can_write(s->chr);
|
2021-09-16 21:22:36 +02:00
|
|
|
avail -= size;
|
2006-06-25 18:26:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-14 19:28:59 +02:00
|
|
|
/* called when an ascii key is pressed */
|
2014-05-22 12:05:52 +02:00
|
|
|
void kbd_put_keysym_console(QemuConsole *s, int keysym)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
|
|
|
uint8_t buf[16], *q;
|
|
|
|
int c;
|
2021-09-16 21:22:36 +02:00
|
|
|
uint32_t num_free;
|
2004-07-14 19:28:59 +02:00
|
|
|
|
2007-07-12 01:14:59 +02:00
|
|
|
if (!s || (s->console_type == GRAPHIC_CONSOLE))
|
2004-07-14 19:28:59 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
switch(keysym) {
|
|
|
|
case QEMU_KEY_CTRL_UP:
|
2013-03-14 14:27:08 +01:00
|
|
|
console_scroll(s, -1);
|
2004-07-14 19:28:59 +02:00
|
|
|
break;
|
|
|
|
case QEMU_KEY_CTRL_DOWN:
|
2013-03-14 14:27:08 +01:00
|
|
|
console_scroll(s, 1);
|
2004-07-14 19:28:59 +02:00
|
|
|
break;
|
|
|
|
case QEMU_KEY_CTRL_PAGEUP:
|
2013-03-14 14:27:08 +01:00
|
|
|
console_scroll(s, -10);
|
2004-07-14 19:28:59 +02:00
|
|
|
break;
|
|
|
|
case QEMU_KEY_CTRL_PAGEDOWN:
|
2013-03-14 14:27:08 +01:00
|
|
|
console_scroll(s, 10);
|
2004-07-14 19:28:59 +02:00
|
|
|
break;
|
|
|
|
default:
|
2006-06-25 18:26:29 +02:00
|
|
|
/* convert the QEMU keysym to VT100 key string */
|
|
|
|
q = buf;
|
|
|
|
if (keysym >= 0xe100 && keysym <= 0xe11f) {
|
|
|
|
*q++ = '\033';
|
|
|
|
*q++ = '[';
|
|
|
|
c = keysym - 0xe100;
|
|
|
|
if (c >= 10)
|
|
|
|
*q++ = '0' + (c / 10);
|
|
|
|
*q++ = '0' + (c % 10);
|
|
|
|
*q++ = '~';
|
|
|
|
} else if (keysym >= 0xe120 && keysym <= 0xe17f) {
|
|
|
|
*q++ = '\033';
|
|
|
|
*q++ = '[';
|
|
|
|
*q++ = keysym & 0xff;
|
2010-12-23 13:42:52 +01:00
|
|
|
} else if (s->echo && (keysym == '\r' || keysym == '\n')) {
|
2017-01-05 17:30:29 +01:00
|
|
|
vc_chr_write(s->chr, (const uint8_t *) "\r", 1);
|
2010-12-23 13:42:52 +01:00
|
|
|
*q++ = '\n';
|
2006-06-25 18:26:29 +02:00
|
|
|
} else {
|
2010-12-23 13:42:52 +01:00
|
|
|
*q++ = keysym;
|
|
|
|
}
|
|
|
|
if (s->echo) {
|
2017-01-05 17:30:29 +01:00
|
|
|
vc_chr_write(s->chr, buf, q - buf);
|
2006-06-25 18:26:29 +02:00
|
|
|
}
|
2021-09-16 21:22:38 +02:00
|
|
|
num_free = fifo8_num_free(&s->out_fifo);
|
|
|
|
fifo8_push_all(&s->out_fifo, buf, MIN(num_free, q - buf));
|
|
|
|
kbd_send_chars(s);
|
2004-07-14 19:28:59 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
qapi: Don't let implicit enum MAX member collide
Now that we guarantee the user doesn't have any enum values
beginning with a single underscore, we can use that for our
own purposes. Renaming ENUM_MAX to ENUM__MAX makes it obvious
that the sentinel is generated.
This patch was mostly generated by applying a temporary patch:
|diff --git a/scripts/qapi.py b/scripts/qapi.py
|index e6d014b..b862ec9 100644
|--- a/scripts/qapi.py
|+++ b/scripts/qapi.py
|@@ -1570,6 +1570,7 @@ const char *const %(c_name)s_lookup[] = {
| max_index = c_enum_const(name, 'MAX', prefix)
| ret += mcgen('''
| [%(max_index)s] = NULL,
|+// %(max_index)s
| };
| ''',
| max_index=max_index)
then running:
$ cat qapi-{types,event}.c tests/test-qapi-types.c |
sed -n 's,^// \(.*\)MAX,s|\1MAX|\1_MAX|g,p' > list
$ git grep -l _MAX | xargs sed -i -f list
The only things not generated are the changes in scripts/qapi.py.
Rejecting enum members named 'MAX' is now useless, and will be dropped
in the next patch.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1447836791-369-23-git-send-email-eblake@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
[Rebased to current master, commit message tweaked]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-11-18 09:52:57 +01:00
|
|
|
static const int qcode_to_keysym[Q_KEY_CODE__MAX] = {
|
2014-05-27 09:28:38 +02:00
|
|
|
[Q_KEY_CODE_UP] = QEMU_KEY_UP,
|
|
|
|
[Q_KEY_CODE_DOWN] = QEMU_KEY_DOWN,
|
|
|
|
[Q_KEY_CODE_RIGHT] = QEMU_KEY_RIGHT,
|
|
|
|
[Q_KEY_CODE_LEFT] = QEMU_KEY_LEFT,
|
|
|
|
[Q_KEY_CODE_HOME] = QEMU_KEY_HOME,
|
|
|
|
[Q_KEY_CODE_END] = QEMU_KEY_END,
|
|
|
|
[Q_KEY_CODE_PGUP] = QEMU_KEY_PAGEUP,
|
|
|
|
[Q_KEY_CODE_PGDN] = QEMU_KEY_PAGEDOWN,
|
|
|
|
[Q_KEY_CODE_DELETE] = QEMU_KEY_DELETE,
|
2022-08-12 00:01:38 +02:00
|
|
|
[Q_KEY_CODE_TAB] = QEMU_KEY_TAB,
|
2016-08-11 09:21:00 +02:00
|
|
|
[Q_KEY_CODE_BACKSPACE] = QEMU_KEY_BACKSPACE,
|
2014-05-27 09:28:38 +02:00
|
|
|
};
|
|
|
|
|
2018-03-21 14:50:36 +01:00
|
|
|
static const int ctrl_qcode_to_keysym[Q_KEY_CODE__MAX] = {
|
|
|
|
[Q_KEY_CODE_UP] = QEMU_KEY_CTRL_UP,
|
|
|
|
[Q_KEY_CODE_DOWN] = QEMU_KEY_CTRL_DOWN,
|
|
|
|
[Q_KEY_CODE_RIGHT] = QEMU_KEY_CTRL_RIGHT,
|
|
|
|
[Q_KEY_CODE_LEFT] = QEMU_KEY_CTRL_LEFT,
|
|
|
|
[Q_KEY_CODE_HOME] = QEMU_KEY_CTRL_HOME,
|
|
|
|
[Q_KEY_CODE_END] = QEMU_KEY_CTRL_END,
|
|
|
|
[Q_KEY_CODE_PGUP] = QEMU_KEY_CTRL_PAGEUP,
|
|
|
|
[Q_KEY_CODE_PGDN] = QEMU_KEY_CTRL_PAGEDOWN,
|
|
|
|
};
|
|
|
|
|
|
|
|
bool kbd_put_qcode_console(QemuConsole *s, int qcode, bool ctrl)
|
2014-05-27 09:28:38 +02:00
|
|
|
{
|
|
|
|
int keysym;
|
|
|
|
|
2018-03-21 14:50:36 +01:00
|
|
|
keysym = ctrl ? ctrl_qcode_to_keysym[qcode] : qcode_to_keysym[qcode];
|
2014-05-27 09:28:38 +02:00
|
|
|
if (keysym == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
kbd_put_keysym_console(s, keysym);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-27 09:32:36 +02:00
|
|
|
void kbd_put_string_console(QemuConsole *s, const char *str, int len)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < len && str[i]; i++) {
|
|
|
|
kbd_put_keysym_console(s, str[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-22 12:05:52 +02:00
|
|
|
void kbd_put_keysym(int keysym)
|
|
|
|
{
|
|
|
|
kbd_put_keysym_console(active_console, keysym);
|
|
|
|
}
|
|
|
|
|
2008-02-10 17:33:14 +01:00
|
|
|
static void text_console_invalidate(void *opaque)
|
|
|
|
{
|
2012-09-28 13:24:17 +02:00
|
|
|
QemuConsole *s = (QemuConsole *) opaque;
|
2013-03-06 13:40:47 +01:00
|
|
|
|
|
|
|
if (s->ds->have_text && s->console_type == TEXT_CONSOLE) {
|
2009-01-21 19:59:12 +01:00
|
|
|
text_console_resize(s);
|
|
|
|
}
|
2008-02-10 17:33:14 +01:00
|
|
|
console_refresh(s);
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static void text_console_update(void *opaque, console_ch_t *chardata)
|
2008-02-10 17:33:14 +01:00
|
|
|
{
|
2012-09-28 13:24:17 +02:00
|
|
|
QemuConsole *s = (QemuConsole *) opaque;
|
2008-02-10 17:33:14 +01:00
|
|
|
int i, j, src;
|
|
|
|
|
|
|
|
if (s->text_x[0] <= s->text_x[1]) {
|
|
|
|
src = (s->y_base + s->text_y[0]) * s->width;
|
|
|
|
chardata += s->text_y[0] * s->width;
|
|
|
|
for (i = s->text_y[0]; i <= s->text_y[1]; i ++)
|
2015-11-29 14:28:24 +01:00
|
|
|
for (j = 0; j < s->width; j++, src++) {
|
|
|
|
console_write_ch(chardata ++,
|
|
|
|
ATTR2CHTYPE(s->cells[src].ch,
|
|
|
|
s->cells[src].t_attrib.fgcol,
|
|
|
|
s->cells[src].t_attrib.bgcol,
|
|
|
|
s->cells[src].t_attrib.bold));
|
|
|
|
}
|
2013-03-05 15:24:14 +01:00
|
|
|
dpy_text_update(s, s->text_x[0], s->text_y[0],
|
2012-09-28 15:02:08 +02:00
|
|
|
s->text_x[1] - s->text_x[0], i - s->text_y[0]);
|
2008-02-10 17:33:14 +01:00
|
|
|
s->text_x[0] = s->width;
|
|
|
|
s->text_y[0] = s->height;
|
|
|
|
s->text_x[1] = 0;
|
|
|
|
s->text_y[1] = 0;
|
|
|
|
}
|
|
|
|
if (s->cursor_invalidate) {
|
2013-03-05 15:24:14 +01:00
|
|
|
dpy_text_cursor(s, s->x, s->y);
|
2008-02-10 17:33:14 +01:00
|
|
|
s->cursor_invalidate = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-24 16:15:58 +02:00
|
|
|
static QemuConsole *new_console(DisplayState *ds, console_type_t console_type,
|
|
|
|
uint32_t head)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
2013-04-17 09:45:10 +02:00
|
|
|
Object *obj;
|
2012-09-28 13:24:17 +02:00
|
|
|
QemuConsole *s;
|
2006-04-09 03:06:34 +02:00
|
|
|
int i;
|
2004-07-14 19:28:59 +02:00
|
|
|
|
2013-04-17 09:45:10 +02:00
|
|
|
obj = object_new(TYPE_QEMU_CONSOLE);
|
|
|
|
s = QEMU_CONSOLE(obj);
|
2020-10-27 14:36:02 +01:00
|
|
|
qemu_co_queue_init(&s->dump_queue);
|
2014-04-24 16:15:58 +02:00
|
|
|
s->head = head;
|
2013-04-17 10:21:27 +02:00
|
|
|
object_property_add_link(obj, "device", TYPE_DEVICE,
|
qom: Make QOM link property unref optional
Some object_property_add_link() callers expect property deletion to
unref the link property object. Other callers expect to manage the
refcount themselves. The former are currently broken and therefore leak
the link property object.
This patch adds a flags argument to object_property_add_link() so the
caller can specify which refcount behavior they require. The new
OBJ_PROP_LINK_UNREF_ON_RELEASE flag causes the link pointer to be
unreferenced when the property is deleted.
This fixes refcount leaks in qdev.c, xilinx_axidma.c, xilinx_axienet.c,
s390-virtio-bus.c, virtio-pci.c, virtio-rng.c, and ui/console.c.
Rationale for refcount behavior:
* hw/core/qdev.c
- bus children are explicitly unreferenced, don't interfere
- parent_bus is essentially a read-only property that doesn't hold a
refcount, don't unref
- hotplug_handler is leaked, do unref
* hw/dma/xilinx_axidma.c
- rx stream "dma" links are set using set_link, therefore they
need unref
- tx streams are set using set_link, therefore they need unref
* hw/net/xilinx_axienet.c
- same reasoning as hw/dma/xilinx_axidma.c
* hw/pcmcia/pxa2xx.c
- pxa2xx bypasses set_link and therefore does not use refcounts
* hw/s390x/s390-virtio-bus.c
* hw/virtio/virtio-pci.c
* hw/virtio/virtio-rng.c
* ui/console.c
- set_link is used and there is no explicit unref, do unref
Cc: Peter Crosthwaite <peter.crosthwaite@petalogix.com>
Cc: Alexander Graf <agraf@suse.de>
Cc: Anthony Liguori <aliguori@amazon.com>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
2014-03-19 08:58:55 +01:00
|
|
|
(Object **)&s->device,
|
2014-03-19 08:58:56 +01:00
|
|
|
object_property_allow_set_link,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 17:29:22 +02:00
|
|
|
OBJ_PROP_LINK_STRONG);
|
2020-02-04 14:15:58 +01:00
|
|
|
object_property_add_uint32_ptr(obj, "head", &s->head,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 17:29:22 +02:00
|
|
|
OBJ_PROP_FLAG_READ);
|
2013-04-17 10:21:27 +02:00
|
|
|
|
2007-07-12 01:14:59 +02:00
|
|
|
if (!active_console || ((active_console->console_type != GRAPHIC_CONSOLE) &&
|
|
|
|
(console_type == GRAPHIC_CONSOLE))) {
|
2004-07-14 19:28:59 +02:00
|
|
|
active_console = s;
|
2007-07-12 01:14:59 +02:00
|
|
|
}
|
2004-07-14 19:28:59 +02:00
|
|
|
s->ds = ds;
|
2007-07-12 01:14:59 +02:00
|
|
|
s->console_type = console_type;
|
2020-09-14 12:06:37 +02:00
|
|
|
s->window_id = -1;
|
2014-05-26 10:36:35 +02:00
|
|
|
|
2018-05-07 11:54:24 +02:00
|
|
|
if (QTAILQ_EMPTY(&consoles)) {
|
|
|
|
s->index = 0;
|
|
|
|
QTAILQ_INSERT_TAIL(&consoles, s, next);
|
2020-11-12 15:38:36 +01:00
|
|
|
} else if (console_type != GRAPHIC_CONSOLE || phase_check(PHASE_MACHINE_READY)) {
|
2018-12-06 13:10:34 +01:00
|
|
|
QemuConsole *last = QTAILQ_LAST(&consoles);
|
2018-05-07 11:54:24 +02:00
|
|
|
s->index = last->index + 1;
|
|
|
|
QTAILQ_INSERT_TAIL(&consoles, s, next);
|
2006-04-09 03:06:34 +02:00
|
|
|
} else {
|
2018-03-13 18:17:29 +01:00
|
|
|
/*
|
|
|
|
* HACK: Put graphical consoles before text consoles.
|
|
|
|
*
|
|
|
|
* Only do that for coldplugged devices. After initial device
|
|
|
|
* initialization we will not renumber the consoles any more.
|
|
|
|
*/
|
2018-05-07 11:54:24 +02:00
|
|
|
QemuConsole *c = QTAILQ_FIRST(&consoles);
|
|
|
|
|
|
|
|
while (QTAILQ_NEXT(c, next) != NULL &&
|
|
|
|
c->console_type == GRAPHIC_CONSOLE) {
|
|
|
|
c = QTAILQ_NEXT(c, next);
|
|
|
|
}
|
|
|
|
if (c->console_type == GRAPHIC_CONSOLE) {
|
|
|
|
/* have no text consoles */
|
|
|
|
s->index = c->index + 1;
|
|
|
|
QTAILQ_INSERT_AFTER(&consoles, c, s, next);
|
|
|
|
} else {
|
|
|
|
s->index = c->index;
|
|
|
|
QTAILQ_INSERT_BEFORE(c, s, next);
|
|
|
|
/* renumber text consoles */
|
|
|
|
for (i = s->index + 1; c != NULL; c = QTAILQ_NEXT(c, next), i++) {
|
|
|
|
c->index = i;
|
|
|
|
}
|
2006-04-09 03:06:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2021-03-12 11:00:42 +01:00
|
|
|
DisplaySurface *qemu_create_displaysurface(int width, int height)
|
2011-03-16 13:33:30 +01:00
|
|
|
{
|
2021-03-12 11:00:42 +01:00
|
|
|
DisplaySurface *surface = g_new0(DisplaySurface, 1);
|
2012-09-26 15:20:05 +02:00
|
|
|
|
2021-03-12 11:00:42 +01:00
|
|
|
trace_displaysurface_create(surface, width, height);
|
2014-06-18 11:03:15 +02:00
|
|
|
surface->format = PIXMAN_x8r8g8b8;
|
2012-09-26 15:20:05 +02:00
|
|
|
surface->image = pixman_image_create_bits(surface->format,
|
|
|
|
width, height,
|
2014-06-18 11:03:15 +02:00
|
|
|
NULL, width * 4);
|
2012-09-26 15:20:05 +02:00
|
|
|
assert(surface->image != NULL);
|
2014-06-18 11:03:15 +02:00
|
|
|
surface->flags = QEMU_ALLOCATED_FLAG;
|
2010-02-11 00:29:57 +01:00
|
|
|
|
2012-09-27 11:06:36 +02:00
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
2014-06-18 11:03:15 +02:00
|
|
|
DisplaySurface *qemu_create_displaysurface_from(int width, int height,
|
|
|
|
pixman_format_code_t format,
|
|
|
|
int linesize, uint8_t *data)
|
2010-02-11 00:29:57 +01:00
|
|
|
{
|
2012-09-26 15:20:05 +02:00
|
|
|
DisplaySurface *surface = g_new0(DisplaySurface, 1);
|
2010-02-11 00:29:57 +01:00
|
|
|
|
2014-06-18 11:03:15 +02:00
|
|
|
trace_displaysurface_create_from(surface, width, height, format);
|
|
|
|
surface->format = format;
|
2012-09-26 15:20:05 +02:00
|
|
|
surface->image = pixman_image_create_bits(surface->format,
|
|
|
|
width, height,
|
|
|
|
(void *)data, linesize);
|
|
|
|
assert(surface->image != NULL);
|
|
|
|
|
2010-02-11 00:29:57 +01:00
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
2016-04-01 10:27:20 +02:00
|
|
|
DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image)
|
|
|
|
{
|
|
|
|
DisplaySurface *surface = g_new0(DisplaySurface, 1);
|
|
|
|
|
|
|
|
trace_displaysurface_create_pixman(surface);
|
|
|
|
surface->format = pixman_image_get_format(image);
|
|
|
|
surface->image = pixman_image_ref(image);
|
|
|
|
|
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
2021-02-25 11:13:14 +01:00
|
|
|
DisplaySurface *qemu_create_placeholder_surface(int w, int h,
|
|
|
|
const char *msg)
|
2013-04-25 09:33:19 +02:00
|
|
|
{
|
2013-04-25 12:10:45 +02:00
|
|
|
DisplaySurface *surface = qemu_create_displaysurface(w, h);
|
2015-11-29 14:28:24 +01:00
|
|
|
pixman_color_t bg = color_table_rgb[0][QEMU_COLOR_BLACK];
|
|
|
|
pixman_color_t fg = color_table_rgb[0][QEMU_COLOR_WHITE];
|
2013-04-25 09:33:19 +02:00
|
|
|
pixman_image_t *glyph;
|
|
|
|
int len, x, y, i;
|
|
|
|
|
|
|
|
len = strlen(msg);
|
2013-04-25 12:10:45 +02:00
|
|
|
x = (w / FONT_WIDTH - len) / 2;
|
|
|
|
y = (h / FONT_HEIGHT - 1) / 2;
|
2013-04-25 09:33:19 +02:00
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
glyph = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, msg[i]);
|
|
|
|
qemu_pixman_glyph_render(glyph, surface->image, &fg, &bg,
|
|
|
|
x+i, y, FONT_WIDTH, FONT_HEIGHT);
|
|
|
|
qemu_pixman_image_unref(glyph);
|
|
|
|
}
|
2021-02-25 11:13:14 +01:00
|
|
|
surface->flags |= QEMU_PLACEHOLDER_FLAG;
|
2013-04-25 09:33:19 +02:00
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
2013-02-28 10:48:02 +01:00
|
|
|
void qemu_free_displaysurface(DisplaySurface *surface)
|
2010-02-11 00:29:57 +01:00
|
|
|
{
|
2013-02-28 10:48:02 +01:00
|
|
|
if (surface == NULL) {
|
2010-02-11 00:29:57 +01:00
|
|
|
return;
|
2012-09-26 07:46:20 +02:00
|
|
|
}
|
2013-02-28 10:48:02 +01:00
|
|
|
trace_displaysurface_free(surface);
|
|
|
|
qemu_pixman_image_unref(surface->image);
|
|
|
|
g_free(surface);
|
2010-02-11 00:29:57 +01:00
|
|
|
}
|
|
|
|
|
2014-07-11 13:56:51 +02:00
|
|
|
bool console_has_gl(QemuConsole *con)
|
|
|
|
{
|
|
|
|
return con->gl != NULL;
|
|
|
|
}
|
|
|
|
|
2021-02-04 11:52:24 +01:00
|
|
|
static bool displaychangelistener_has_dmabuf(DisplayChangeListener *dcl)
|
|
|
|
{
|
|
|
|
if (dcl->ops->dpy_has_dmabuf) {
|
|
|
|
return dcl->ops->dpy_has_dmabuf(dcl);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dcl->ops->dpy_gl_scanout_dmabuf) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-02-16 17:16:55 +01:00
|
|
|
static bool console_compatible_with(QemuConsole *con,
|
|
|
|
DisplayChangeListener *dcl, Error **errp)
|
2021-02-04 11:52:25 +01:00
|
|
|
{
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
flags = con->hw_ops->get_flags ? con->hw_ops->get_flags(con->hw) : 0;
|
|
|
|
|
2022-02-16 16:33:37 +01:00
|
|
|
if (console_has_gl(con) &&
|
|
|
|
!con->gl->ops->dpy_gl_ctx_is_compatible_dcl(con->gl, dcl)) {
|
2022-02-16 14:35:28 +01:00
|
|
|
error_setg(errp, "Display %s is incompatible with the GL context",
|
|
|
|
dcl->ops->dpy_name);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-04 11:52:25 +01:00
|
|
|
if (flags & GRAPHIC_FLAGS_GL &&
|
|
|
|
!console_has_gl(con)) {
|
|
|
|
error_setg(errp, "The console requires a GL context.");
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & GRAPHIC_FLAGS_DMABUF &&
|
|
|
|
!displaychangelistener_has_dmabuf(dcl)) {
|
|
|
|
error_setg(errp, "The console requires display DMABUF support.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-10-09 21:48:46 +02:00
|
|
|
void qemu_console_set_display_gl_ctx(QemuConsole *con, DisplayGLCtx *gl)
|
2021-01-25 11:53:18 +01:00
|
|
|
{
|
|
|
|
/* display has opengl support */
|
2021-10-09 21:48:46 +02:00
|
|
|
assert(con);
|
|
|
|
if (con->gl) {
|
|
|
|
error_report("The console already has an OpenGL context.");
|
2021-01-25 11:53:18 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
2021-10-09 21:48:46 +02:00
|
|
|
con->gl = gl;
|
|
|
|
}
|
|
|
|
|
2013-04-23 15:44:31 +02:00
|
|
|
void register_displaychangelistener(DisplayChangeListener *dcl)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-15 15:45:54 +01:00
|
|
|
QemuConsole *con;
|
|
|
|
|
2017-04-06 14:05:12 +02:00
|
|
|
assert(!dcl->ds);
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
trace_displaychangelistener_register(dcl, dcl->ops->dpy_name);
|
2013-04-23 15:44:31 +02:00
|
|
|
dcl->ds = get_alloc_displaystate();
|
|
|
|
QLIST_INSERT_HEAD(&dcl->ds->listeners, dcl, next);
|
|
|
|
gui_setup_refresh(dcl->ds);
|
2013-03-15 15:45:54 +01:00
|
|
|
if (dcl->con) {
|
|
|
|
dcl->con->dcls++;
|
|
|
|
con = dcl->con;
|
|
|
|
} else {
|
|
|
|
con = active_console;
|
|
|
|
}
|
2022-02-16 17:16:55 +01:00
|
|
|
displaychangelistener_display_console(dcl, con, dcl->con ? &error_fatal : NULL);
|
2014-05-22 11:27:13 +02:00
|
|
|
text_console_update_cursor(NULL);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
2013-03-14 11:56:16 +01:00
|
|
|
void update_displaychangelistener(DisplayChangeListener *dcl,
|
|
|
|
uint64_t interval)
|
|
|
|
{
|
|
|
|
DisplayState *ds = dcl->ds;
|
|
|
|
|
|
|
|
dcl->update_interval = interval;
|
|
|
|
if (!ds->refreshing && ds->update_interval > interval) {
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_mod(ds->gui_timer, ds->last_update + interval);
|
2013-03-14 11:56:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
void unregister_displaychangelistener(DisplayChangeListener *dcl)
|
|
|
|
{
|
|
|
|
DisplayState *ds = dcl->ds;
|
|
|
|
trace_displaychangelistener_unregister(dcl, dcl->ops->dpy_name);
|
2013-03-15 15:45:54 +01:00
|
|
|
if (dcl->con) {
|
|
|
|
dcl->con->dcls--;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_REMOVE(dcl, next);
|
2017-11-09 11:51:54 +01:00
|
|
|
dcl->ds = NULL;
|
2012-11-13 14:51:41 +01:00
|
|
|
gui_setup_refresh(ds);
|
|
|
|
}
|
|
|
|
|
2015-03-12 12:51:13 +01:00
|
|
|
static void dpy_set_ui_info_timer(void *opaque)
|
|
|
|
{
|
|
|
|
QemuConsole *con = opaque;
|
|
|
|
|
|
|
|
con->hw_ops->ui_info(con->hw, con->head, &con->ui_info);
|
|
|
|
}
|
|
|
|
|
2015-03-13 12:21:14 +01:00
|
|
|
bool dpy_ui_info_supported(QemuConsole *con)
|
|
|
|
{
|
2020-12-08 12:57:30 +01:00
|
|
|
if (con == NULL) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
|
|
|
|
2015-03-13 12:21:14 +01:00
|
|
|
return con->hw_ops->ui_info != NULL;
|
|
|
|
}
|
|
|
|
|
2020-09-27 16:57:48 +02:00
|
|
|
const QemuUIInfo *dpy_get_ui_info(const QemuConsole *con)
|
|
|
|
{
|
2020-12-08 12:57:30 +01:00
|
|
|
if (con == NULL) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
2020-09-27 16:57:48 +02:00
|
|
|
|
|
|
|
return &con->ui_info;
|
|
|
|
}
|
|
|
|
|
2021-04-13 18:39:11 +02:00
|
|
|
int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info, bool delay)
|
2014-01-24 17:38:20 +01:00
|
|
|
{
|
2020-12-08 12:57:30 +01:00
|
|
|
if (con == NULL) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
2016-05-30 10:41:13 +02:00
|
|
|
|
2015-03-13 12:21:14 +01:00
|
|
|
if (!dpy_ui_info_supported(con)) {
|
2015-03-12 12:51:13 +01:00
|
|
|
return -1;
|
2014-01-24 17:38:20 +01:00
|
|
|
}
|
2016-05-30 10:41:13 +02:00
|
|
|
if (memcmp(&con->ui_info, info, sizeof(con->ui_info)) == 0) {
|
|
|
|
/* nothing changed -- ignore */
|
|
|
|
return 0;
|
|
|
|
}
|
2015-03-12 12:51:13 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Typically we get a flood of these as the user resizes the window.
|
|
|
|
* Wait until the dust has settled (one second without updates), then
|
|
|
|
* go notify the guest.
|
|
|
|
*/
|
2016-05-30 10:41:13 +02:00
|
|
|
con->ui_info = *info;
|
2021-04-13 18:39:11 +02:00
|
|
|
timer_mod(con->ui_timer,
|
|
|
|
qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + (delay ? 1000 : 0));
|
2015-03-12 12:51:13 +01:00
|
|
|
return 0;
|
2014-01-24 17:38:20 +01:00
|
|
|
}
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2021-02-20 13:23:03 +01:00
|
|
|
int width = qemu_console_get_width(con, x + w);
|
|
|
|
int height = qemu_console_get_height(con, y + h);
|
2012-11-13 14:51:41 +01:00
|
|
|
|
|
|
|
x = MAX(x, 0);
|
|
|
|
y = MAX(y, 0);
|
|
|
|
x = MIN(x, width);
|
|
|
|
y = MIN(y, height);
|
|
|
|
w = MIN(w, width - x);
|
|
|
|
h = MIN(h, height - y);
|
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2022-02-17 12:07:21 +01:00
|
|
|
dpy_gfx_update_texture(con, con->surface, x, y, w, h);
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2013-03-15 15:45:54 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_gfx_update) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_gfx_update(dcl, x, y, w, h);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-27 11:11:05 +02:00
|
|
|
void dpy_gfx_update_full(QemuConsole *con)
|
|
|
|
{
|
2021-02-20 13:23:03 +01:00
|
|
|
int w = qemu_console_get_width(con, 0);
|
|
|
|
int h = qemu_console_get_height(con, 0);
|
|
|
|
|
|
|
|
dpy_gfx_update(con, 0, 0, w, h);
|
2018-04-27 11:11:05 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 14:39:22 +01:00
|
|
|
void dpy_gfx_replace_surface(QemuConsole *con,
|
|
|
|
DisplaySurface *surface)
|
|
|
|
{
|
2021-02-25 11:13:15 +01:00
|
|
|
static const char placeholder_msg[] = "Display output is not active.";
|
2013-03-12 14:39:22 +01:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
DisplaySurface *old_surface = con->surface;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2021-02-25 11:13:15 +01:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
|
|
|
|
if (!surface) {
|
|
|
|
if (old_surface) {
|
|
|
|
width = surface_width(old_surface);
|
|
|
|
height = surface_height(old_surface);
|
|
|
|
} else {
|
|
|
|
width = 640;
|
|
|
|
height = 480;
|
|
|
|
}
|
|
|
|
|
|
|
|
surface = qemu_create_placeholder_surface(width, height, placeholder_msg);
|
|
|
|
}
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2021-02-25 11:13:15 +01:00
|
|
|
assert(old_surface != surface);
|
2017-04-06 14:05:11 +02:00
|
|
|
|
2021-02-20 13:23:03 +01:00
|
|
|
con->scanout.kind = SCANOUT_SURFACE;
|
2013-03-12 14:39:22 +01:00
|
|
|
con->surface = surface;
|
2022-02-17 12:07:21 +01:00
|
|
|
dpy_gfx_create_texture(con, surface);
|
2013-03-15 15:45:54 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-02-20 20:31:58 +01:00
|
|
|
displaychangelistener_gfx_switch(dcl, surface, FALSE);
|
2013-03-12 14:39:22 +01:00
|
|
|
}
|
2022-02-17 12:07:21 +01:00
|
|
|
dpy_gfx_destroy_texture(con, old_surface);
|
2013-02-28 10:48:02 +01:00
|
|
|
qemu_free_displaysurface(old_surface);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
2014-07-07 08:39:05 +02:00
|
|
|
bool dpy_gfx_check_format(QemuConsole *con,
|
|
|
|
pixman_format_code_t format)
|
|
|
|
{
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
DisplayState *s = con->ds;
|
|
|
|
|
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
|
|
|
if (dcl->con && dcl->con != con) {
|
|
|
|
/* dcl bound to another console -> skip */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (dcl->ops->dpy_gfx_check_format) {
|
|
|
|
if (!dcl->ops->dpy_gfx_check_format(dcl, format)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
2021-03-03 19:46:40 +01:00
|
|
|
/* default is to allow native 32 bpp only */
|
2014-07-07 08:39:05 +02:00
|
|
|
if (format != qemu_default_pixman_format(32, true)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-02 22:48:30 +02:00
|
|
|
static void dpy_refresh(DisplayState *s)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
|
|
|
if (dcl->ops->dpy_refresh) {
|
2017-06-14 10:45:38 +02:00
|
|
|
dcl->ops->dpy_refresh(dcl);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_text_cursor(QemuConsole *con, int x, int y)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2013-03-15 15:45:54 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_text_cursor) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_text_cursor(dcl, x, y);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_text_update(QemuConsole *con, int x, int y, int w, int h)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2013-03-15 15:45:54 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_text_update) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_text_update(dcl, x, y, w, h);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_text_resize(QemuConsole *con, int w, int h)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2015-04-08 20:04:13 +02:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2013-03-15 15:45:54 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_text_resize) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_text_resize(dcl, w, h);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_mouse_set(QemuConsole *con, int x, int y, int on)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2013-03-15 15:45:54 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_mouse_set) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_mouse_set(dcl, x, y, on);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2013-03-15 15:45:54 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_cursor_define) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_cursor_define(dcl, cursor);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
bool dpy_cursor_define_supported(QemuConsole *con)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
|
|
|
if (dcl->ops->dpy_cursor_define) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-11 13:56:51 +02:00
|
|
|
QEMUGLContext dpy_gl_ctx_create(QemuConsole *con,
|
|
|
|
struct QEMUGLParams *qparams)
|
|
|
|
{
|
|
|
|
assert(con->gl);
|
|
|
|
return con->gl->ops->dpy_gl_ctx_create(con->gl, qparams);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dpy_gl_ctx_destroy(QemuConsole *con, QEMUGLContext ctx)
|
|
|
|
{
|
|
|
|
assert(con->gl);
|
|
|
|
con->gl->ops->dpy_gl_ctx_destroy(con->gl, ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
int dpy_gl_ctx_make_current(QemuConsole *con, QEMUGLContext ctx)
|
|
|
|
{
|
|
|
|
assert(con->gl);
|
|
|
|
return con->gl->ops->dpy_gl_ctx_make_current(con->gl, ctx);
|
|
|
|
}
|
|
|
|
|
2017-02-21 10:37:17 +01:00
|
|
|
void dpy_gl_scanout_disable(QemuConsole *con)
|
|
|
|
{
|
2021-01-25 21:00:30 +01:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
2021-02-20 13:23:03 +01:00
|
|
|
if (con->scanout.kind != SCANOUT_SURFACE) {
|
|
|
|
con->scanout.kind = SCANOUT_NONE;
|
|
|
|
}
|
2021-01-25 21:00:30 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2022-03-25 17:12:16 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-02-14 21:13:35 +01:00
|
|
|
if (dcl->ops->dpy_gl_scanout_disable) {
|
|
|
|
dcl->ops->dpy_gl_scanout_disable(dcl);
|
|
|
|
}
|
2021-01-25 21:00:30 +01:00
|
|
|
}
|
2017-02-21 10:37:17 +01:00
|
|
|
}
|
|
|
|
|
2017-02-21 10:37:16 +01:00
|
|
|
void dpy_gl_scanout_texture(QemuConsole *con,
|
|
|
|
uint32_t backing_id,
|
|
|
|
bool backing_y_0_top,
|
|
|
|
uint32_t backing_width,
|
|
|
|
uint32_t backing_height,
|
|
|
|
uint32_t x, uint32_t y,
|
|
|
|
uint32_t width, uint32_t height)
|
2014-07-11 13:56:51 +02:00
|
|
|
{
|
2021-01-25 21:00:30 +01:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
2021-02-20 13:23:03 +01:00
|
|
|
con->scanout.kind = SCANOUT_TEXTURE;
|
|
|
|
con->scanout.texture = (ScanoutTexture) {
|
|
|
|
backing_id, backing_y_0_top, backing_width, backing_height,
|
|
|
|
x, y, width, height
|
|
|
|
};
|
2021-01-25 21:00:30 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2022-03-25 17:12:16 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-02-14 21:13:35 +01:00
|
|
|
if (dcl->ops->dpy_gl_scanout_texture) {
|
|
|
|
dcl->ops->dpy_gl_scanout_texture(dcl, backing_id,
|
|
|
|
backing_y_0_top,
|
|
|
|
backing_width, backing_height,
|
|
|
|
x, y, width, height);
|
|
|
|
}
|
2021-01-25 21:00:30 +01:00
|
|
|
}
|
2014-07-11 13:56:51 +02:00
|
|
|
}
|
|
|
|
|
2017-10-10 15:54:48 +02:00
|
|
|
void dpy_gl_scanout_dmabuf(QemuConsole *con,
|
|
|
|
QemuDmaBuf *dmabuf)
|
|
|
|
{
|
2021-01-25 21:00:30 +01:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
2021-02-20 13:23:03 +01:00
|
|
|
con->scanout.kind = SCANOUT_DMABUF;
|
|
|
|
con->scanout.dmabuf = dmabuf;
|
2021-01-25 21:00:30 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2022-03-25 17:12:16 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-02-14 21:13:35 +01:00
|
|
|
if (dcl->ops->dpy_gl_scanout_dmabuf) {
|
|
|
|
dcl->ops->dpy_gl_scanout_dmabuf(dcl, dmabuf);
|
|
|
|
}
|
2021-01-25 21:00:30 +01:00
|
|
|
}
|
2017-10-10 15:54:48 +02:00
|
|
|
}
|
|
|
|
|
2018-02-20 12:04:31 +01:00
|
|
|
void dpy_gl_cursor_dmabuf(QemuConsole *con, QemuDmaBuf *dmabuf,
|
|
|
|
bool have_hot, uint32_t hot_x, uint32_t hot_y)
|
2017-10-10 15:54:48 +02:00
|
|
|
{
|
2021-01-25 21:00:30 +01:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
DisplayChangeListener *dcl;
|
2017-10-10 15:54:48 +02:00
|
|
|
|
2021-01-25 21:00:30 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2022-03-25 17:12:16 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2021-01-25 21:00:30 +01:00
|
|
|
if (dcl->ops->dpy_gl_cursor_dmabuf) {
|
|
|
|
dcl->ops->dpy_gl_cursor_dmabuf(dcl, dmabuf,
|
2018-02-20 12:04:31 +01:00
|
|
|
have_hot, hot_x, hot_y);
|
2021-01-25 21:00:30 +01:00
|
|
|
}
|
2018-02-20 12:04:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void dpy_gl_cursor_position(QemuConsole *con,
|
|
|
|
uint32_t pos_x, uint32_t pos_y)
|
|
|
|
{
|
2021-01-25 21:00:30 +01:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
DisplayChangeListener *dcl;
|
2018-02-20 12:04:31 +01:00
|
|
|
|
2021-01-25 21:00:30 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2022-03-25 17:12:16 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2021-01-25 21:00:30 +01:00
|
|
|
if (dcl->ops->dpy_gl_cursor_position) {
|
|
|
|
dcl->ops->dpy_gl_cursor_position(dcl, pos_x, pos_y);
|
|
|
|
}
|
2017-10-10 15:54:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void dpy_gl_release_dmabuf(QemuConsole *con,
|
|
|
|
QemuDmaBuf *dmabuf)
|
|
|
|
{
|
2021-01-25 21:00:30 +01:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
DisplayChangeListener *dcl;
|
2017-10-10 15:54:48 +02:00
|
|
|
|
2021-01-25 21:00:30 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2022-03-25 17:12:16 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2021-01-25 21:00:30 +01:00
|
|
|
if (dcl->ops->dpy_gl_release_dmabuf) {
|
|
|
|
dcl->ops->dpy_gl_release_dmabuf(dcl, dmabuf);
|
|
|
|
}
|
2017-10-10 15:54:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 13:56:51 +02:00
|
|
|
void dpy_gl_update(QemuConsole *con,
|
|
|
|
uint32_t x, uint32_t y, uint32_t w, uint32_t h)
|
|
|
|
{
|
2021-01-25 21:00:30 +01:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
2014-07-11 13:56:51 +02:00
|
|
|
assert(con->gl);
|
2021-03-11 09:11:37 +01:00
|
|
|
|
|
|
|
graphic_hw_gl_block(con, true);
|
2021-01-25 21:00:30 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2022-03-25 17:12:16 +01:00
|
|
|
if (con != (dcl->con ? dcl->con : active_console)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-02-14 21:13:35 +01:00
|
|
|
if (dcl->ops->dpy_gl_update) {
|
|
|
|
dcl->ops->dpy_gl_update(dcl, x, y, w, h);
|
|
|
|
}
|
2021-01-25 21:00:30 +01:00
|
|
|
}
|
2021-03-11 09:11:37 +01:00
|
|
|
graphic_hw_gl_block(con, false);
|
2014-07-11 13:56:51 +02:00
|
|
|
}
|
|
|
|
|
2010-02-11 00:29:57 +01:00
|
|
|
/***********************************************************/
|
|
|
|
/* register display */
|
|
|
|
|
2013-03-07 17:08:29 +01:00
|
|
|
/* console.c internal use only */
|
|
|
|
static DisplayState *get_alloc_displaystate(void)
|
2010-02-11 00:29:57 +01:00
|
|
|
{
|
2013-03-07 17:08:29 +01:00
|
|
|
if (!display_state) {
|
|
|
|
display_state = g_new0(DisplayState, 1);
|
2014-05-22 11:27:13 +02:00
|
|
|
cursor_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
|
|
|
|
text_console_update_cursor, NULL);
|
2013-03-07 17:08:29 +01:00
|
|
|
}
|
|
|
|
return display_state;
|
2010-02-11 00:29:57 +01:00
|
|
|
}
|
|
|
|
|
2013-03-07 17:08:29 +01:00
|
|
|
/*
|
|
|
|
* Called by main(), after creating QemuConsoles
|
|
|
|
* and before initializing ui (sdl/vnc/...).
|
|
|
|
*/
|
|
|
|
DisplayState *init_displaystate(void)
|
2010-02-11 00:29:57 +01:00
|
|
|
{
|
2013-06-25 10:49:31 +02:00
|
|
|
gchar *name;
|
2018-05-07 11:54:24 +02:00
|
|
|
QemuConsole *con;
|
2013-03-07 17:08:29 +01:00
|
|
|
|
2014-06-02 14:07:18 +02:00
|
|
|
get_alloc_displaystate();
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
|
|
|
if (con->console_type != GRAPHIC_CONSOLE &&
|
|
|
|
con->ds == NULL) {
|
|
|
|
text_console_do_init(con->chr, display_state);
|
2013-03-07 17:08:29 +01:00
|
|
|
}
|
2013-06-25 10:49:31 +02:00
|
|
|
|
|
|
|
/* Hook up into the qom tree here (not in new_console()), once
|
|
|
|
* all QemuConsoles are created and the order / numbering
|
|
|
|
* doesn't change any more */
|
2018-05-07 11:54:24 +02:00
|
|
|
name = g_strdup_printf("console[%d]", con->index);
|
2013-06-25 10:49:31 +02:00
|
|
|
object_property_add_child(container_get(object_get_root(), "/backend"),
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 17:29:22 +02:00
|
|
|
name, OBJECT(con));
|
2013-06-25 10:49:31 +02:00
|
|
|
g_free(name);
|
2013-03-07 17:08:29 +01:00
|
|
|
}
|
|
|
|
|
2010-02-11 00:29:57 +01:00
|
|
|
return display_state;
|
|
|
|
}
|
|
|
|
|
2014-09-24 17:05:27 +02:00
|
|
|
void graphic_console_set_hwops(QemuConsole *con,
|
|
|
|
const GraphicHwOps *hw_ops,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
con->hw_ops = hw_ops;
|
|
|
|
con->hw = opaque;
|
|
|
|
}
|
|
|
|
|
2014-01-24 15:35:21 +01:00
|
|
|
QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
|
2013-04-17 10:21:27 +02:00
|
|
|
const GraphicHwOps *hw_ops,
|
2013-03-05 15:24:14 +01:00
|
|
|
void *opaque)
|
2006-04-09 03:06:34 +02:00
|
|
|
{
|
2013-04-25 12:10:45 +02:00
|
|
|
static const char noinit[] =
|
|
|
|
"Guest has not initialized the display (yet).";
|
2013-03-07 17:08:29 +01:00
|
|
|
int width = 640;
|
|
|
|
int height = 480;
|
2012-09-28 13:24:17 +02:00
|
|
|
QemuConsole *s;
|
2009-01-16 20:04:14 +01:00
|
|
|
DisplayState *ds;
|
2018-03-13 18:17:29 +01:00
|
|
|
DisplaySurface *surface;
|
2009-01-16 22:13:49 +01:00
|
|
|
|
2013-03-07 17:08:29 +01:00
|
|
|
ds = get_alloc_displaystate();
|
2018-03-13 18:17:29 +01:00
|
|
|
s = qemu_console_lookup_unused();
|
|
|
|
if (s) {
|
|
|
|
trace_console_gfx_reuse(s->index);
|
2021-02-20 13:23:03 +01:00
|
|
|
width = qemu_console_get_width(s, 0);
|
|
|
|
height = qemu_console_get_height(s, 0);
|
2018-03-13 18:17:29 +01:00
|
|
|
} else {
|
|
|
|
trace_console_gfx_new();
|
|
|
|
s = new_console(ds, GRAPHIC_CONSOLE, head);
|
|
|
|
s->ui_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
|
|
|
|
dpy_set_ui_info_timer, s);
|
|
|
|
}
|
2014-09-24 17:05:27 +02:00
|
|
|
graphic_console_set_hwops(s, hw_ops, opaque);
|
2013-04-17 10:21:27 +02:00
|
|
|
if (dev) {
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 18:05:54 +02:00
|
|
|
object_property_set_link(OBJECT(s), "device", OBJECT(dev),
|
2014-04-24 16:15:58 +02:00
|
|
|
&error_abort);
|
2013-04-17 10:21:27 +02:00
|
|
|
}
|
2009-01-16 20:04:14 +01:00
|
|
|
|
2021-02-25 11:13:14 +01:00
|
|
|
surface = qemu_create_placeholder_surface(width, height, noinit);
|
2018-03-13 18:17:29 +01:00
|
|
|
dpy_gfx_replace_surface(s, surface);
|
2021-03-11 08:56:58 +01:00
|
|
|
s->gl_unblock_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
|
|
|
|
graphic_hw_gl_unblock_timer, s);
|
2013-03-05 15:24:14 +01:00
|
|
|
return s;
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
2018-03-13 18:17:29 +01:00
|
|
|
static const GraphicHwOps unused_ops = {
|
|
|
|
/* no callbacks */
|
|
|
|
};
|
|
|
|
|
|
|
|
void graphic_console_close(QemuConsole *con)
|
|
|
|
{
|
|
|
|
static const char unplugged[] =
|
|
|
|
"Guest display has been unplugged";
|
|
|
|
DisplaySurface *surface;
|
2021-02-20 13:23:03 +01:00
|
|
|
int width = qemu_console_get_width(con, 640);
|
|
|
|
int height = qemu_console_get_height(con, 480);
|
2018-03-13 18:17:29 +01:00
|
|
|
|
|
|
|
trace_console_gfx_close(con->index);
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 18:05:54 +02:00
|
|
|
object_property_set_link(OBJECT(con), "device", NULL, &error_abort);
|
2018-03-13 18:17:29 +01:00
|
|
|
graphic_console_set_hwops(con, &unused_ops, NULL);
|
|
|
|
|
|
|
|
if (con->gl) {
|
|
|
|
dpy_gl_scanout_disable(con);
|
|
|
|
}
|
2021-02-25 11:13:14 +01:00
|
|
|
surface = qemu_create_placeholder_surface(width, height, unplugged);
|
2018-03-13 18:17:29 +01:00
|
|
|
dpy_gfx_replace_surface(con, surface);
|
|
|
|
}
|
|
|
|
|
2013-03-15 15:45:54 +01:00
|
|
|
QemuConsole *qemu_console_lookup_by_index(unsigned int index)
|
|
|
|
{
|
2018-05-07 11:54:24 +02:00
|
|
|
QemuConsole *con;
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
|
|
|
if (con->index == index) {
|
|
|
|
return con;
|
|
|
|
}
|
2013-03-15 15:45:54 +01:00
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
return NULL;
|
2013-03-15 15:45:54 +01:00
|
|
|
}
|
|
|
|
|
2014-01-24 15:35:21 +01:00
|
|
|
QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head)
|
2013-04-18 07:30:40 +02:00
|
|
|
{
|
2018-05-07 11:54:24 +02:00
|
|
|
QemuConsole *con;
|
2013-04-18 07:30:40 +02:00
|
|
|
Object *obj;
|
2014-01-24 15:35:21 +01:00
|
|
|
uint32_t h;
|
2013-04-18 07:30:40 +02:00
|
|
|
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
|
|
|
obj = object_property_get_link(OBJECT(con),
|
2014-04-24 16:15:58 +02:00
|
|
|
"device", &error_abort);
|
2014-01-24 15:35:21 +01:00
|
|
|
if (DEVICE(obj) != dev) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
h = object_property_get_uint(OBJECT(con),
|
2017-06-07 18:36:32 +02:00
|
|
|
"head", &error_abort);
|
2014-01-24 15:35:21 +01:00
|
|
|
if (h != head) {
|
|
|
|
continue;
|
2013-04-18 07:30:40 +02:00
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
return con;
|
2013-04-18 07:30:40 +02:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-01-12 11:45:43 +01:00
|
|
|
QemuConsole *qemu_console_lookup_by_device_name(const char *device_id,
|
|
|
|
uint32_t head, Error **errp)
|
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
QemuConsole *con;
|
|
|
|
|
|
|
|
dev = qdev_find_recursive(sysbus_get_default(), device_id);
|
|
|
|
if (dev == NULL) {
|
|
|
|
error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
|
|
|
|
"Device '%s' not found", device_id);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
con = qemu_console_lookup_by_device(dev, head);
|
|
|
|
if (con == NULL) {
|
|
|
|
error_setg(errp, "Device %s (head %d) is not bound to a QemuConsole",
|
|
|
|
device_id, head);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return con;
|
|
|
|
}
|
|
|
|
|
2018-03-13 18:17:29 +01:00
|
|
|
QemuConsole *qemu_console_lookup_unused(void)
|
|
|
|
{
|
2018-05-07 11:54:24 +02:00
|
|
|
QemuConsole *con;
|
2018-03-13 18:17:29 +01:00
|
|
|
Object *obj;
|
|
|
|
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
|
|
|
if (con->hw_ops != &unused_ops) {
|
2018-03-13 18:17:29 +01:00
|
|
|
continue;
|
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
obj = object_property_get_link(OBJECT(con),
|
2018-03-13 18:17:29 +01:00
|
|
|
"device", &error_abort);
|
|
|
|
if (obj != NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
return con;
|
2018-03-13 18:17:29 +01:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
bool qemu_console_is_visible(QemuConsole *con)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
2013-03-15 15:45:54 +01:00
|
|
|
return (con == active_console) || (con->dcls > 0);
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
bool qemu_console_is_graphic(QemuConsole *con)
|
2008-09-24 05:32:33 +02:00
|
|
|
{
|
2013-03-14 14:27:08 +01:00
|
|
|
if (con == NULL) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
|
|
|
return con && (con->console_type == GRAPHIC_CONSOLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool qemu_console_is_fixedsize(QemuConsole *con)
|
|
|
|
{
|
|
|
|
if (con == NULL) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
|
|
|
return con && (con->console_type != TEXT_CONSOLE);
|
2008-09-24 05:32:33 +02:00
|
|
|
}
|
|
|
|
|
2016-09-23 09:50:27 +02:00
|
|
|
bool qemu_console_is_gl_blocked(QemuConsole *con)
|
|
|
|
{
|
|
|
|
assert(con != NULL);
|
|
|
|
return con->gl_block;
|
|
|
|
}
|
|
|
|
|
2022-06-15 08:35:14 +02:00
|
|
|
bool qemu_console_is_multihead(DeviceState *dev)
|
|
|
|
{
|
|
|
|
QemuConsole *con;
|
|
|
|
Object *obj;
|
|
|
|
uint32_t f = 0xffffffff;
|
|
|
|
uint32_t h;
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
|
|
|
obj = object_property_get_link(OBJECT(con),
|
|
|
|
"device", &error_abort);
|
|
|
|
if (DEVICE(obj) != dev) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
h = object_property_get_uint(OBJECT(con),
|
|
|
|
"head", &error_abort);
|
|
|
|
if (f == 0xffffffff) {
|
|
|
|
f = h;
|
|
|
|
} else if (h != f) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-17 10:41:08 +01:00
|
|
|
char *qemu_console_get_label(QemuConsole *con)
|
|
|
|
{
|
|
|
|
if (con->console_type == GRAPHIC_CONSOLE) {
|
|
|
|
if (con->device) {
|
2022-06-15 08:35:14 +02:00
|
|
|
DeviceState *dev;
|
|
|
|
bool multihead;
|
|
|
|
|
|
|
|
dev = DEVICE(con->device);
|
|
|
|
multihead = qemu_console_is_multihead(dev);
|
|
|
|
if (multihead) {
|
|
|
|
return g_strdup_printf("%s.%d", dev->id ?
|
|
|
|
dev->id :
|
|
|
|
object_get_typename(con->device),
|
|
|
|
con->head);
|
|
|
|
} else {
|
|
|
|
return g_strdup_printf("%s", dev->id ?
|
|
|
|
dev->id :
|
|
|
|
object_get_typename(con->device));
|
|
|
|
}
|
2015-02-17 10:41:08 +01:00
|
|
|
}
|
|
|
|
return g_strdup("VGA");
|
|
|
|
} else {
|
|
|
|
if (con->chr && con->chr->label) {
|
|
|
|
return g_strdup(con->chr->label);
|
|
|
|
}
|
|
|
|
return g_strdup_printf("vc%d", con->index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-28 09:58:18 +01:00
|
|
|
int qemu_console_get_index(QemuConsole *con)
|
|
|
|
{
|
|
|
|
if (con == NULL) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
|
|
|
return con ? con->index : -1;
|
|
|
|
}
|
|
|
|
|
2014-01-24 15:35:21 +01:00
|
|
|
uint32_t qemu_console_get_head(QemuConsole *con)
|
|
|
|
{
|
|
|
|
if (con == NULL) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
|
|
|
return con ? con->head : -1;
|
|
|
|
}
|
|
|
|
|
2013-11-28 09:58:18 +01:00
|
|
|
int qemu_console_get_width(QemuConsole *con, int fallback)
|
|
|
|
{
|
|
|
|
if (con == NULL) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
2021-02-20 13:23:03 +01:00
|
|
|
if (con == NULL) {
|
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
switch (con->scanout.kind) {
|
|
|
|
case SCANOUT_DMABUF:
|
|
|
|
return con->scanout.dmabuf->width;
|
|
|
|
case SCANOUT_TEXTURE:
|
|
|
|
return con->scanout.texture.width;
|
|
|
|
case SCANOUT_SURFACE:
|
|
|
|
return surface_width(con->surface);
|
|
|
|
default:
|
|
|
|
return fallback;
|
|
|
|
}
|
2013-11-28 09:58:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int qemu_console_get_height(QemuConsole *con, int fallback)
|
|
|
|
{
|
|
|
|
if (con == NULL) {
|
|
|
|
con = active_console;
|
|
|
|
}
|
2021-02-20 13:23:03 +01:00
|
|
|
if (con == NULL) {
|
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
switch (con->scanout.kind) {
|
|
|
|
case SCANOUT_DMABUF:
|
|
|
|
return con->scanout.dmabuf->height;
|
|
|
|
case SCANOUT_TEXTURE:
|
|
|
|
return con->scanout.texture.height;
|
|
|
|
case SCANOUT_SURFACE:
|
|
|
|
return surface_height(con->surface);
|
|
|
|
default:
|
|
|
|
return fallback;
|
|
|
|
}
|
2013-11-28 09:58:18 +01:00
|
|
|
}
|
|
|
|
|
2021-09-16 21:22:37 +02:00
|
|
|
static void vc_chr_accept_input(Chardev *chr)
|
|
|
|
{
|
|
|
|
VCChardev *drv = VC_CHARDEV(chr);
|
|
|
|
QemuConsole *s = drv->console;
|
|
|
|
|
|
|
|
kbd_send_chars(s);
|
|
|
|
}
|
|
|
|
|
2017-01-05 17:30:29 +01:00
|
|
|
static void vc_chr_set_echo(Chardev *chr, bool echo)
|
2010-12-23 13:42:52 +01:00
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
VCChardev *drv = VC_CHARDEV(chr);
|
2016-10-21 22:44:44 +02:00
|
|
|
QemuConsole *s = drv->console;
|
2010-12-23 13:42:52 +01:00
|
|
|
|
|
|
|
s->echo = echo;
|
|
|
|
}
|
|
|
|
|
2014-05-22 11:27:13 +02:00
|
|
|
static void text_console_update_cursor_timer(void)
|
|
|
|
{
|
|
|
|
timer_mod(cursor_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
|
|
|
|
+ CONSOLE_CURSOR_PERIOD / 2);
|
|
|
|
}
|
|
|
|
|
2012-07-10 22:00:55 +02:00
|
|
|
static void text_console_update_cursor(void *opaque)
|
|
|
|
{
|
2014-05-22 11:27:13 +02:00
|
|
|
QemuConsole *s;
|
2018-05-07 11:54:24 +02:00
|
|
|
int count = 0;
|
2014-05-22 11:27:13 +02:00
|
|
|
|
|
|
|
cursor_visible_phase = !cursor_visible_phase;
|
2012-07-10 22:00:55 +02:00
|
|
|
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_FOREACH(s, &consoles, next) {
|
2014-05-22 11:27:13 +02:00
|
|
|
if (qemu_console_is_graphic(s) ||
|
|
|
|
!qemu_console_is_visible(s)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
count++;
|
|
|
|
graphic_hw_invalidate(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count) {
|
|
|
|
text_console_update_cursor_timer();
|
|
|
|
}
|
2012-07-10 22:00:55 +02:00
|
|
|
}
|
|
|
|
|
2013-03-13 14:04:18 +01:00
|
|
|
static const GraphicHwOps text_console_ops = {
|
|
|
|
.invalidate = text_console_invalidate,
|
|
|
|
.text_update = text_console_update,
|
|
|
|
};
|
|
|
|
|
2016-12-07 14:20:22 +01:00
|
|
|
static void text_console_do_init(Chardev *chr, DisplayState *ds)
|
2004-07-14 19:28:59 +02:00
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
VCChardev *drv = VC_CHARDEV(chr);
|
2016-10-21 22:44:44 +02:00
|
|
|
QemuConsole *s = drv->console;
|
2013-03-13 10:14:52 +01:00
|
|
|
int g_width = 80 * FONT_WIDTH;
|
|
|
|
int g_height = 24 * FONT_HEIGHT;
|
2006-03-11 16:35:30 +01:00
|
|
|
|
2021-09-16 21:22:36 +02:00
|
|
|
fifo8_create(&s->out_fifo, 16);
|
2009-01-16 20:04:14 +01:00
|
|
|
s->ds = ds;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2004-07-14 19:28:59 +02:00
|
|
|
s->y_displayed = 0;
|
|
|
|
s->y_base = 0;
|
|
|
|
s->total_height = DEFAULT_BACKSCROLL;
|
|
|
|
s->x = 0;
|
|
|
|
s->y = 0;
|
2021-02-20 13:23:03 +01:00
|
|
|
if (s->scanout.kind != SCANOUT_SURFACE) {
|
|
|
|
if (active_console && active_console->scanout.kind == SCANOUT_SURFACE) {
|
|
|
|
g_width = qemu_console_get_width(active_console, g_width);
|
|
|
|
g_height = qemu_console_get_height(active_console, g_height);
|
2013-03-12 14:39:22 +01:00
|
|
|
}
|
2013-03-13 10:14:52 +01:00
|
|
|
s->surface = qemu_create_displaysurface(g_width, g_height);
|
2021-02-20 13:23:03 +01:00
|
|
|
s->scanout.kind = SCANOUT_SURFACE;
|
2010-12-23 13:42:51 +01:00
|
|
|
}
|
2006-03-11 16:35:30 +01:00
|
|
|
|
2013-03-13 14:04:18 +01:00
|
|
|
s->hw_ops = &text_console_ops;
|
2008-02-10 17:33:14 +01:00
|
|
|
s->hw = s;
|
|
|
|
|
2006-03-11 16:35:30 +01:00
|
|
|
/* Set text attribute defaults */
|
|
|
|
s->t_attrib_default.bold = 0;
|
|
|
|
s->t_attrib_default.uline = 0;
|
|
|
|
s->t_attrib_default.blink = 0;
|
|
|
|
s->t_attrib_default.invers = 0;
|
|
|
|
s->t_attrib_default.unvisible = 0;
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib_default.fgcol = QEMU_COLOR_WHITE;
|
|
|
|
s->t_attrib_default.bgcol = QEMU_COLOR_BLACK;
|
2006-03-11 16:35:30 +01:00
|
|
|
/* set current text attributes to default */
|
|
|
|
s->t_attrib = s->t_attrib_default;
|
2004-07-14 19:28:59 +02:00
|
|
|
text_console_resize(s);
|
|
|
|
|
2009-12-08 13:11:39 +01:00
|
|
|
if (chr->label) {
|
2020-07-01 20:18:01 +02:00
|
|
|
char *msg;
|
2009-12-08 13:11:39 +01:00
|
|
|
|
2015-11-29 14:28:24 +01:00
|
|
|
s->t_attrib.bgcol = QEMU_COLOR_BLUE;
|
2020-07-01 20:18:01 +02:00
|
|
|
msg = g_strdup_printf("%s console\r\n", chr->label);
|
|
|
|
vc_chr_write(chr, (uint8_t *)msg, strlen(msg));
|
|
|
|
g_free(msg);
|
2009-12-08 13:11:40 +01:00
|
|
|
s->t_attrib = s->t_attrib_default;
|
2009-12-08 13:11:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-14 12:23:02 +01:00
|
|
|
qemu_chr_be_event(chr, CHR_EVENT_OPENED);
|
2004-07-14 19:28:59 +02:00
|
|
|
}
|
2008-07-01 18:24:38 +02:00
|
|
|
|
2016-12-07 16:39:10 +01:00
|
|
|
static void vc_chr_open(Chardev *chr,
|
|
|
|
ChardevBackend *backend,
|
|
|
|
bool *be_opened,
|
|
|
|
Error **errp)
|
2009-01-16 21:23:27 +01:00
|
|
|
{
|
2016-12-07 13:13:50 +01:00
|
|
|
ChardevVC *vc = backend->u.vc.data;
|
2016-12-07 16:39:10 +01:00
|
|
|
VCChardev *drv = VC_CHARDEV(chr);
|
2012-09-28 13:24:17 +02:00
|
|
|
QemuConsole *s;
|
2013-02-25 15:52:32 +01:00
|
|
|
unsigned width = 0;
|
|
|
|
unsigned height = 0;
|
2009-01-16 21:23:27 +01:00
|
|
|
|
2013-02-25 15:52:32 +01:00
|
|
|
if (vc->has_width) {
|
|
|
|
width = vc->width;
|
|
|
|
} else if (vc->has_cols) {
|
|
|
|
width = vc->cols * FONT_WIDTH;
|
|
|
|
}
|
2010-12-23 13:42:51 +01:00
|
|
|
|
2013-02-25 15:52:32 +01:00
|
|
|
if (vc->has_height) {
|
|
|
|
height = vc->height;
|
|
|
|
} else if (vc->has_rows) {
|
|
|
|
height = vc->rows * FONT_HEIGHT;
|
|
|
|
}
|
2010-12-23 13:42:51 +01:00
|
|
|
|
2013-03-07 16:04:52 +01:00
|
|
|
trace_console_txt_new(width, height);
|
2010-12-23 13:42:51 +01:00
|
|
|
if (width == 0 || height == 0) {
|
2014-04-24 16:15:58 +02:00
|
|
|
s = new_console(NULL, TEXT_CONSOLE, 0);
|
2010-12-23 13:42:51 +01:00
|
|
|
} else {
|
2014-04-24 16:15:58 +02:00
|
|
|
s = new_console(NULL, TEXT_CONSOLE_FIXED_SIZE, 0);
|
2021-02-20 13:23:03 +01:00
|
|
|
s->scanout.kind = SCANOUT_SURFACE;
|
2013-03-13 10:14:52 +01:00
|
|
|
s->surface = qemu_create_displaysurface(width, height);
|
2010-12-23 13:42:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!s) {
|
2015-09-29 15:49:06 +02:00
|
|
|
error_setg(errp, "cannot create text console");
|
2016-12-07 16:39:10 +01:00
|
|
|
return;
|
2010-12-23 13:42:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
s->chr = chr;
|
2016-10-21 22:44:44 +02:00
|
|
|
drv->console = s;
|
2013-03-07 17:08:29 +01:00
|
|
|
|
|
|
|
if (display_state) {
|
|
|
|
text_console_do_init(chr, display_state);
|
|
|
|
}
|
2009-01-16 21:23:27 +01:00
|
|
|
|
2016-10-22 12:09:43 +02:00
|
|
|
/* console/chardev init sometimes completes elsewhere in a 2nd
|
|
|
|
* stage, so defer OPENED events until they are fully initialized
|
|
|
|
*/
|
|
|
|
*be_opened = false;
|
2013-02-20 14:43:19 +01:00
|
|
|
}
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void qemu_console_resize(QemuConsole *s, int width, int height)
|
2008-07-01 18:24:38 +02:00
|
|
|
{
|
2022-07-25 13:58:15 +02:00
|
|
|
DisplaySurface *surface = qemu_console_surface(s);
|
2013-03-12 14:39:22 +01:00
|
|
|
|
|
|
|
assert(s->console_type == GRAPHIC_CONSOLE);
|
2016-08-26 11:47:11 +02:00
|
|
|
|
2022-07-25 13:58:15 +02:00
|
|
|
if ((s->scanout.kind != SCANOUT_SURFACE ||
|
|
|
|
(surface && surface->flags & QEMU_ALLOCATED_FLAG)) &&
|
|
|
|
qemu_console_get_width(s, -1) == width &&
|
2022-02-14 21:13:37 +01:00
|
|
|
qemu_console_get_height(s, -1) == height) {
|
2016-08-26 11:47:11 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-12 14:39:22 +01:00
|
|
|
surface = qemu_create_displaysurface(width, height);
|
|
|
|
dpy_gfx_replace_surface(s, surface);
|
2008-07-01 18:24:38 +02:00
|
|
|
}
|
2008-09-24 04:21:24 +02:00
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplaySurface *qemu_console_surface(QemuConsole *console)
|
|
|
|
{
|
2021-02-20 13:23:03 +01:00
|
|
|
switch (console->scanout.kind) {
|
|
|
|
case SCANOUT_SURFACE:
|
|
|
|
return console->surface;
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-03-05 15:24:14 +01:00
|
|
|
}
|
|
|
|
|
2009-01-23 20:56:19 +01:00
|
|
|
PixelFormat qemu_default_pixelformat(int bpp)
|
|
|
|
{
|
2014-06-18 11:07:50 +02:00
|
|
|
pixman_format_code_t fmt = qemu_default_pixman_format(bpp, true);
|
|
|
|
PixelFormat pf = qemu_pixelformat_from_pixman(fmt);
|
2009-01-15 23:14:11 +01:00
|
|
|
return pf;
|
|
|
|
}
|
2013-03-05 18:51:32 +01:00
|
|
|
|
2018-03-01 11:05:35 +01:00
|
|
|
static QemuDisplay *dpys[DISPLAY_TYPE__MAX];
|
|
|
|
|
|
|
|
void qemu_display_register(QemuDisplay *ui)
|
|
|
|
{
|
|
|
|
assert(ui->type < DISPLAY_TYPE__MAX);
|
|
|
|
dpys[ui->type] = ui;
|
|
|
|
}
|
|
|
|
|
2018-03-01 11:05:40 +01:00
|
|
|
bool qemu_display_find_default(DisplayOptions *opts)
|
|
|
|
{
|
|
|
|
static DisplayType prio[] = {
|
ui: Make the DisplayType enum entries conditional
Libvirt's "domcapabilities" command has a way to state whether certain
graphic frontends are available in QEMU or not. Originally, libvirt
looked at the "--help" output of the QEMU binary to determine whether
SDL was available or not (by looking for the "-sdl" parameter in the
help text), but since libvirt stopped doing this analysis of the help
text, the detection of SDL is currently broken, see:
https://bugzilla.redhat.com/show_bug.cgi?id=1790902
QEMU should provide a way via the QMP interface instead. A simple way,
without introducing additional commands, is to make the DisplayType
enum entries conditional, so that the enum only contains the entries if
the corresponding CONFIG_xxx switches have been set. This of course
only gives an indication which possibilities have been enabled during
compile-time of QEMU (and does not take into account whether modules
are later available or not for example - for this we'd need a separate
command), but anyway, this should already be good enough for the above
bug ticket, and it's a good idea anyway to make the QMP interface
conditional here, so let's simply do it.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210615090439.70926-1-thuth@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2021-06-15 11:04:39 +02:00
|
|
|
#if defined(CONFIG_GTK)
|
2018-03-01 11:05:40 +01:00
|
|
|
DISPLAY_TYPE_GTK,
|
ui: Make the DisplayType enum entries conditional
Libvirt's "domcapabilities" command has a way to state whether certain
graphic frontends are available in QEMU or not. Originally, libvirt
looked at the "--help" output of the QEMU binary to determine whether
SDL was available or not (by looking for the "-sdl" parameter in the
help text), but since libvirt stopped doing this analysis of the help
text, the detection of SDL is currently broken, see:
https://bugzilla.redhat.com/show_bug.cgi?id=1790902
QEMU should provide a way via the QMP interface instead. A simple way,
without introducing additional commands, is to make the DisplayType
enum entries conditional, so that the enum only contains the entries if
the corresponding CONFIG_xxx switches have been set. This of course
only gives an indication which possibilities have been enabled during
compile-time of QEMU (and does not take into account whether modules
are later available or not for example - for this we'd need a separate
command), but anyway, this should already be good enough for the above
bug ticket, and it's a good idea anyway to make the QMP interface
conditional here, so let's simply do it.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210615090439.70926-1-thuth@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2021-06-15 11:04:39 +02:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_SDL)
|
2018-03-01 11:05:40 +01:00
|
|
|
DISPLAY_TYPE_SDL,
|
ui: Make the DisplayType enum entries conditional
Libvirt's "domcapabilities" command has a way to state whether certain
graphic frontends are available in QEMU or not. Originally, libvirt
looked at the "--help" output of the QEMU binary to determine whether
SDL was available or not (by looking for the "-sdl" parameter in the
help text), but since libvirt stopped doing this analysis of the help
text, the detection of SDL is currently broken, see:
https://bugzilla.redhat.com/show_bug.cgi?id=1790902
QEMU should provide a way via the QMP interface instead. A simple way,
without introducing additional commands, is to make the DisplayType
enum entries conditional, so that the enum only contains the entries if
the corresponding CONFIG_xxx switches have been set. This of course
only gives an indication which possibilities have been enabled during
compile-time of QEMU (and does not take into account whether modules
are later available or not for example - for this we'd need a separate
command), but anyway, this should already be good enough for the above
bug ticket, and it's a good idea anyway to make the QMP interface
conditional here, so let's simply do it.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210615090439.70926-1-thuth@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2021-06-15 11:04:39 +02:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_COCOA)
|
2018-03-01 11:05:40 +01:00
|
|
|
DISPLAY_TYPE_COCOA
|
ui: Make the DisplayType enum entries conditional
Libvirt's "domcapabilities" command has a way to state whether certain
graphic frontends are available in QEMU or not. Originally, libvirt
looked at the "--help" output of the QEMU binary to determine whether
SDL was available or not (by looking for the "-sdl" parameter in the
help text), but since libvirt stopped doing this analysis of the help
text, the detection of SDL is currently broken, see:
https://bugzilla.redhat.com/show_bug.cgi?id=1790902
QEMU should provide a way via the QMP interface instead. A simple way,
without introducing additional commands, is to make the DisplayType
enum entries conditional, so that the enum only contains the entries if
the corresponding CONFIG_xxx switches have been set. This of course
only gives an indication which possibilities have been enabled during
compile-time of QEMU (and does not take into account whether modules
are later available or not for example - for this we'd need a separate
command), but anyway, this should already be good enough for the above
bug ticket, and it's a good idea anyway to make the QMP interface
conditional here, so let's simply do it.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210615090439.70926-1-thuth@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2021-06-15 11:04:39 +02:00
|
|
|
#endif
|
2018-03-01 11:05:40 +01:00
|
|
|
};
|
|
|
|
int i;
|
|
|
|
|
ui: Make the DisplayType enum entries conditional
Libvirt's "domcapabilities" command has a way to state whether certain
graphic frontends are available in QEMU or not. Originally, libvirt
looked at the "--help" output of the QEMU binary to determine whether
SDL was available or not (by looking for the "-sdl" parameter in the
help text), but since libvirt stopped doing this analysis of the help
text, the detection of SDL is currently broken, see:
https://bugzilla.redhat.com/show_bug.cgi?id=1790902
QEMU should provide a way via the QMP interface instead. A simple way,
without introducing additional commands, is to make the DisplayType
enum entries conditional, so that the enum only contains the entries if
the corresponding CONFIG_xxx switches have been set. This of course
only gives an indication which possibilities have been enabled during
compile-time of QEMU (and does not take into account whether modules
are later available or not for example - for this we'd need a separate
command), but anyway, this should already be good enough for the above
bug ticket, and it's a good idea anyway to make the QMP interface
conditional here, so let's simply do it.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210615090439.70926-1-thuth@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2021-06-15 11:04:39 +02:00
|
|
|
for (i = 0; i < (int)ARRAY_SIZE(prio); i++) {
|
2018-03-01 11:05:41 +01:00
|
|
|
if (dpys[prio[i]] == NULL) {
|
2018-08-01 11:25:08 +02:00
|
|
|
ui_module_load_one(DisplayType_str(prio[i]));
|
2018-03-01 11:05:41 +01:00
|
|
|
}
|
2018-03-01 11:05:40 +01:00
|
|
|
if (dpys[prio[i]] == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
opts->type = prio[i];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-01 11:05:35 +01:00
|
|
|
void qemu_display_early_init(DisplayOptions *opts)
|
|
|
|
{
|
|
|
|
assert(opts->type < DISPLAY_TYPE__MAX);
|
|
|
|
if (opts->type == DISPLAY_TYPE_NONE) {
|
|
|
|
return;
|
|
|
|
}
|
2018-03-01 11:05:41 +01:00
|
|
|
if (dpys[opts->type] == NULL) {
|
2018-08-01 11:25:08 +02:00
|
|
|
ui_module_load_one(DisplayType_str(opts->type));
|
2018-03-01 11:05:41 +01:00
|
|
|
}
|
2018-03-01 11:05:35 +01:00
|
|
|
if (dpys[opts->type] == NULL) {
|
|
|
|
error_report("Display '%s' is not available.",
|
2018-08-01 11:25:08 +02:00
|
|
|
DisplayType_str(opts->type));
|
2018-03-01 11:05:35 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (dpys[opts->type]->early_init) {
|
|
|
|
dpys[opts->type]->early_init(opts);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_display_init(DisplayState *ds, DisplayOptions *opts)
|
|
|
|
{
|
|
|
|
assert(opts->type < DISPLAY_TYPE__MAX);
|
|
|
|
if (opts->type == DISPLAY_TYPE_NONE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
assert(dpys[opts->type] != NULL);
|
|
|
|
dpys[opts->type]->init(ds, opts);
|
|
|
|
}
|
|
|
|
|
2020-01-08 15:47:02 +01:00
|
|
|
void qemu_display_help(void)
|
|
|
|
{
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
printf("Available display backend types:\n");
|
2020-01-20 20:29:47 +01:00
|
|
|
printf("none\n");
|
2020-01-08 15:47:02 +01:00
|
|
|
for (idx = DISPLAY_TYPE_NONE; idx < DISPLAY_TYPE__MAX; idx++) {
|
|
|
|
if (!dpys[idx]) {
|
|
|
|
ui_module_load_one(DisplayType_str(idx));
|
|
|
|
}
|
|
|
|
if (dpys[idx]) {
|
|
|
|
printf("%s\n", DisplayType_str(dpys[idx]->type));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 13:13:50 +01:00
|
|
|
void qemu_chr_parse_vc(QemuOpts *opts, ChardevBackend *backend, Error **errp)
|
2013-02-25 15:52:32 +01:00
|
|
|
{
|
|
|
|
int val;
|
2016-02-20 01:19:31 +01:00
|
|
|
ChardevVC *vc;
|
2013-02-25 15:52:32 +01:00
|
|
|
|
2016-12-09 09:04:51 +01:00
|
|
|
backend->type = CHARDEV_BACKEND_KIND_VC;
|
qapi: Don't special-case simple union wrappers
Simple unions were carrying a special case that hid their 'data'
QMP member from the resulting C struct, via the hack method
QAPISchemaObjectTypeVariant.simple_union_type(). But by using
the work we started by unboxing flat union and alternate
branches, coupled with the ability to visit the members of an
implicit type, we can now expose the simple union's implicit
type in qapi-types.h:
| struct q_obj_ImageInfoSpecificQCow2_wrapper {
| ImageInfoSpecificQCow2 *data;
| };
|
| struct q_obj_ImageInfoSpecificVmdk_wrapper {
| ImageInfoSpecificVmdk *data;
| };
...
| struct ImageInfoSpecific {
| ImageInfoSpecificKind type;
| union { /* union tag is @type */
| void *data;
|- ImageInfoSpecificQCow2 *qcow2;
|- ImageInfoSpecificVmdk *vmdk;
|+ q_obj_ImageInfoSpecificQCow2_wrapper qcow2;
|+ q_obj_ImageInfoSpecificVmdk_wrapper vmdk;
| } u;
| };
Doing this removes asymmetry between QAPI's QMP side and its
C side (both sides now expose 'data'), and means that the
treatment of a simple union as sugar for a flat union is now
equivalent in both languages (previously the two approaches used
a different layer of dereferencing, where the simple union could
be converted to a flat union with equivalent C layout but
different {} on the wire, or to an equivalent QMP wire form
but with different C representation). Using the implicit type
also lets us get rid of the simple_union_type() hack.
Of course, now all clients of simple unions have to adjust from
using su->u.member to using su->u.member.data; while this touches
a number of files in the tree, some earlier cleanup patches
helped minimize the change to the initialization of a temporary
variable rather than every single member access. The generated
qapi-visit.c code is also affected by the layout change:
|@@ -7393,10 +7393,10 @@ void visit_type_ImageInfoSpecific_member
| }
| switch (obj->type) {
| case IMAGE_INFO_SPECIFIC_KIND_QCOW2:
|- visit_type_ImageInfoSpecificQCow2(v, "data", &obj->u.qcow2, &err);
|+ visit_type_q_obj_ImageInfoSpecificQCow2_wrapper_members(v, &obj->u.qcow2, &err);
| break;
| case IMAGE_INFO_SPECIFIC_KIND_VMDK:
|- visit_type_ImageInfoSpecificVmdk(v, "data", &obj->u.vmdk, &err);
|+ visit_type_q_obj_ImageInfoSpecificVmdk_wrapper_members(v, &obj->u.vmdk, &err);
| break;
| default:
| abort();
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1458254921-17042-13-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-03-17 23:48:37 +01:00
|
|
|
vc = backend->u.vc.data = g_new0(ChardevVC, 1);
|
2016-02-20 01:19:31 +01:00
|
|
|
qemu_chr_parse_common(opts, qapi_ChardevVC_base(vc));
|
2013-02-25 15:52:32 +01:00
|
|
|
|
|
|
|
val = qemu_opt_get_number(opts, "width", 0);
|
|
|
|
if (val != 0) {
|
2016-02-20 01:19:31 +01:00
|
|
|
vc->has_width = true;
|
|
|
|
vc->width = val;
|
2013-02-25 15:52:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
val = qemu_opt_get_number(opts, "height", 0);
|
|
|
|
if (val != 0) {
|
2016-02-20 01:19:31 +01:00
|
|
|
vc->has_height = true;
|
|
|
|
vc->height = val;
|
2013-02-25 15:52:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
val = qemu_opt_get_number(opts, "cols", 0);
|
|
|
|
if (val != 0) {
|
2016-02-20 01:19:31 +01:00
|
|
|
vc->has_cols = true;
|
|
|
|
vc->cols = val;
|
2013-02-25 15:52:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
val = qemu_opt_get_number(opts, "rows", 0);
|
|
|
|
if (val != 0) {
|
2016-02-20 01:19:31 +01:00
|
|
|
vc->has_rows = true;
|
|
|
|
vc->rows = val;
|
2013-02-25 15:52:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-17 09:45:10 +02:00
|
|
|
static const TypeInfo qemu_console_info = {
|
|
|
|
.name = TYPE_QEMU_CONSOLE,
|
|
|
|
.parent = TYPE_OBJECT,
|
|
|
|
.instance_size = sizeof(QemuConsole),
|
|
|
|
.class_size = sizeof(QemuConsoleClass),
|
|
|
|
};
|
|
|
|
|
2016-12-07 16:39:10 +01:00
|
|
|
static void char_vc_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
ChardevClass *cc = CHARDEV_CLASS(oc);
|
|
|
|
|
2016-12-08 22:50:12 +01:00
|
|
|
cc->parse = qemu_chr_parse_vc;
|
2016-12-07 16:39:10 +01:00
|
|
|
cc->open = vc_chr_open;
|
|
|
|
cc->chr_write = vc_chr_write;
|
2021-09-16 21:22:37 +02:00
|
|
|
cc->chr_accept_input = vc_chr_accept_input;
|
2016-12-07 16:39:10 +01:00
|
|
|
cc->chr_set_echo = vc_chr_set_echo;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo char_vc_type_info = {
|
|
|
|
.name = TYPE_CHARDEV_VC,
|
|
|
|
.parent = TYPE_CHARDEV,
|
2016-12-07 14:20:22 +01:00
|
|
|
.instance_size = sizeof(VCChardev),
|
2016-12-07 16:39:10 +01:00
|
|
|
.class_init = char_vc_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
void qemu_console_early_init(void)
|
|
|
|
{
|
|
|
|
/* set the default vc driver */
|
|
|
|
if (!object_class_by_name(TYPE_CHARDEV_VC)) {
|
|
|
|
type_register(&char_vc_type_info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-05 18:51:32 +01:00
|
|
|
static void register_types(void)
|
|
|
|
{
|
2013-04-17 09:45:10 +02:00
|
|
|
type_register_static(&qemu_console_info);
|
2013-03-05 18:51:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type_init(register_types);
|