1 /* 2 * QEMU graphical console 3 * 4 * Copyright (c) 2004 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights 9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 * copies of the Software, and to permit persons to whom the Software is 11 * furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 * THE SOFTWARE. 23 */ 24 25 #include "qemu/osdep.h" 26 #include "ui/console.h" 27 #include "hw/qdev-core.h" 28 #include "qapi/error.h" 29 #include "qapi/qapi-commands-ui.h" 30 #include "qemu/module.h" 31 #include "qemu/option.h" 32 #include "qemu/timer.h" 33 #include "chardev/char-fe.h" 34 #include "trace.h" 35 #include "exec/memory.h" 36 #include "io/channel-file.h" 37 #include "qom/object.h" 38 39 #define DEFAULT_BACKSCROLL 512 40 #define CONSOLE_CURSOR_PERIOD 500 41 42 typedef struct TextAttributes { 43 uint8_t fgcol:4; 44 uint8_t bgcol:4; 45 uint8_t bold:1; 46 uint8_t uline:1; 47 uint8_t blink:1; 48 uint8_t invers:1; 49 uint8_t unvisible:1; 50 } TextAttributes; 51 52 typedef struct TextCell { 53 uint8_t ch; 54 TextAttributes t_attrib; 55 } TextCell; 56 57 #define MAX_ESC_PARAMS 3 58 59 enum TTYState { 60 TTY_STATE_NORM, 61 TTY_STATE_ESC, 62 TTY_STATE_CSI, 63 }; 64 65 typedef struct QEMUFIFO { 66 uint8_t *buf; 67 int buf_size; 68 int count, wptr, rptr; 69 } QEMUFIFO; 70 71 static int qemu_fifo_write(QEMUFIFO *f, const uint8_t *buf, int len1) 72 { 73 int l, len; 74 75 l = f->buf_size - f->count; 76 if (len1 > l) 77 len1 = l; 78 len = len1; 79 while (len > 0) { 80 l = f->buf_size - f->wptr; 81 if (l > len) 82 l = len; 83 memcpy(f->buf + f->wptr, buf, l); 84 f->wptr += l; 85 if (f->wptr >= f->buf_size) 86 f->wptr = 0; 87 buf += l; 88 len -= l; 89 } 90 f->count += len1; 91 return len1; 92 } 93 94 static int qemu_fifo_read(QEMUFIFO *f, uint8_t *buf, int len1) 95 { 96 int l, len; 97 98 if (len1 > f->count) 99 len1 = f->count; 100 len = len1; 101 while (len > 0) { 102 l = f->buf_size - f->rptr; 103 if (l > len) 104 l = len; 105 memcpy(buf, f->buf + f->rptr, l); 106 f->rptr += l; 107 if (f->rptr >= f->buf_size) 108 f->rptr = 0; 109 buf += l; 110 len -= l; 111 } 112 f->count -= len1; 113 return len1; 114 } 115 116 typedef enum { 117 GRAPHIC_CONSOLE, 118 TEXT_CONSOLE, 119 TEXT_CONSOLE_FIXED_SIZE 120 } console_type_t; 121 122 struct QemuConsole { 123 Object parent; 124 125 int index; 126 console_type_t console_type; 127 DisplayState *ds; 128 DisplaySurface *surface; 129 int dcls; 130 DisplayChangeListener *gl; 131 bool gl_block; 132 int window_id; 133 134 /* Graphic console state. */ 135 Object *device; 136 uint32_t head; 137 QemuUIInfo ui_info; 138 QEMUTimer *ui_timer; 139 const GraphicHwOps *hw_ops; 140 void *hw; 141 142 /* Text console state */ 143 int width; 144 int height; 145 int total_height; 146 int backscroll_height; 147 int x, y; 148 int x_saved, y_saved; 149 int y_displayed; 150 int y_base; 151 TextAttributes t_attrib_default; /* default text attributes */ 152 TextAttributes t_attrib; /* currently active text attributes */ 153 TextCell *cells; 154 int text_x[2], text_y[2], cursor_invalidate; 155 int echo; 156 157 int update_x0; 158 int update_y0; 159 int update_x1; 160 int update_y1; 161 162 enum TTYState state; 163 int esc_params[MAX_ESC_PARAMS]; 164 int nb_esc_params; 165 166 Chardev *chr; 167 /* fifo for key pressed */ 168 QEMUFIFO out_fifo; 169 uint8_t out_fifo_buf[16]; 170 QEMUTimer *kbd_timer; 171 CoQueue dump_queue; 172 173 QTAILQ_ENTRY(QemuConsole) next; 174 }; 175 176 struct DisplayState { 177 QEMUTimer *gui_timer; 178 uint64_t last_update; 179 uint64_t update_interval; 180 bool refreshing; 181 bool have_gfx; 182 bool have_text; 183 184 QLIST_HEAD(, DisplayChangeListener) listeners; 185 }; 186 187 static DisplayState *display_state; 188 static QemuConsole *active_console; 189 static QTAILQ_HEAD(, QemuConsole) consoles = 190 QTAILQ_HEAD_INITIALIZER(consoles); 191 static bool cursor_visible_phase; 192 static QEMUTimer *cursor_timer; 193 194 static void text_console_do_init(Chardev *chr, DisplayState *ds); 195 static void dpy_refresh(DisplayState *s); 196 static DisplayState *get_alloc_displaystate(void); 197 static void text_console_update_cursor_timer(void); 198 static void text_console_update_cursor(void *opaque); 199 200 static void gui_update(void *opaque) 201 { 202 uint64_t interval = GUI_REFRESH_INTERVAL_IDLE; 203 uint64_t dcl_interval; 204 DisplayState *ds = opaque; 205 DisplayChangeListener *dcl; 206 QemuConsole *con; 207 208 ds->refreshing = true; 209 dpy_refresh(ds); 210 ds->refreshing = false; 211 212 QLIST_FOREACH(dcl, &ds->listeners, next) { 213 dcl_interval = dcl->update_interval ? 214 dcl->update_interval : GUI_REFRESH_INTERVAL_DEFAULT; 215 if (interval > dcl_interval) { 216 interval = dcl_interval; 217 } 218 } 219 if (ds->update_interval != interval) { 220 ds->update_interval = interval; 221 QTAILQ_FOREACH(con, &consoles, next) { 222 if (con->hw_ops->update_interval) { 223 con->hw_ops->update_interval(con->hw, interval); 224 } 225 } 226 trace_console_refresh(interval); 227 } 228 ds->last_update = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); 229 timer_mod(ds->gui_timer, ds->last_update + interval); 230 } 231 232 static void gui_setup_refresh(DisplayState *ds) 233 { 234 DisplayChangeListener *dcl; 235 bool need_timer = false; 236 bool have_gfx = false; 237 bool have_text = false; 238 239 QLIST_FOREACH(dcl, &ds->listeners, next) { 240 if (dcl->ops->dpy_refresh != NULL) { 241 need_timer = true; 242 } 243 if (dcl->ops->dpy_gfx_update != NULL) { 244 have_gfx = true; 245 } 246 if (dcl->ops->dpy_text_update != NULL) { 247 have_text = true; 248 } 249 } 250 251 if (need_timer && ds->gui_timer == NULL) { 252 ds->gui_timer = timer_new_ms(QEMU_CLOCK_REALTIME, gui_update, ds); 253 timer_mod(ds->gui_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME)); 254 } 255 if (!need_timer && ds->gui_timer != NULL) { 256 timer_free(ds->gui_timer); 257 ds->gui_timer = NULL; 258 } 259 260 ds->have_gfx = have_gfx; 261 ds->have_text = have_text; 262 } 263 264 void graphic_hw_update_done(QemuConsole *con) 265 { 266 if (con) { 267 qemu_co_queue_restart_all(&con->dump_queue); 268 } 269 } 270 271 void graphic_hw_update(QemuConsole *con) 272 { 273 bool async = false; 274 con = con ? con : active_console; 275 if (!con) { 276 return; 277 } 278 if (con->hw_ops->gfx_update) { 279 con->hw_ops->gfx_update(con->hw); 280 async = con->hw_ops->gfx_update_async; 281 } 282 if (!async) { 283 graphic_hw_update_done(con); 284 } 285 } 286 287 void graphic_hw_gl_block(QemuConsole *con, bool block) 288 { 289 assert(con != NULL); 290 291 con->gl_block = block; 292 if (con->hw_ops->gl_block) { 293 con->hw_ops->gl_block(con->hw, block); 294 } 295 } 296 297 int qemu_console_get_window_id(QemuConsole *con) 298 { 299 return con->window_id; 300 } 301 302 void qemu_console_set_window_id(QemuConsole *con, int window_id) 303 { 304 con->window_id = window_id; 305 } 306 307 void graphic_hw_invalidate(QemuConsole *con) 308 { 309 if (!con) { 310 con = active_console; 311 } 312 if (con && con->hw_ops->invalidate) { 313 con->hw_ops->invalidate(con->hw); 314 } 315 } 316 317 static bool ppm_save(int fd, pixman_image_t *image, Error **errp) 318 { 319 int width = pixman_image_get_width(image); 320 int height = pixman_image_get_height(image); 321 g_autoptr(Object) ioc = OBJECT(qio_channel_file_new_fd(fd)); 322 g_autofree char *header = NULL; 323 g_autoptr(pixman_image_t) linebuf = NULL; 324 int y; 325 326 trace_ppm_save(fd, image); 327 328 header = g_strdup_printf("P6\n%d %d\n%d\n", width, height, 255); 329 if (qio_channel_write_all(QIO_CHANNEL(ioc), 330 header, strlen(header), errp) < 0) { 331 return false; 332 } 333 334 linebuf = qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8, width); 335 for (y = 0; y < height; y++) { 336 qemu_pixman_linebuf_fill(linebuf, image, width, 0, y); 337 if (qio_channel_write_all(QIO_CHANNEL(ioc), 338 (char *)pixman_image_get_data(linebuf), 339 pixman_image_get_stride(linebuf), errp) < 0) { 340 return false; 341 } 342 } 343 344 return true; 345 } 346 347 static void graphic_hw_update_bh(void *con) 348 { 349 graphic_hw_update(con); 350 } 351 352 /* Safety: coroutine-only, concurrent-coroutine safe, main thread only */ 353 void coroutine_fn 354 qmp_screendump(const char *filename, bool has_device, const char *device, 355 bool has_head, int64_t head, Error **errp) 356 { 357 g_autoptr(pixman_image_t) image = NULL; 358 QemuConsole *con; 359 DisplaySurface *surface; 360 int fd; 361 362 if (has_device) { 363 con = qemu_console_lookup_by_device_name(device, has_head ? head : 0, 364 errp); 365 if (!con) { 366 return; 367 } 368 } else { 369 if (has_head) { 370 error_setg(errp, "'head' must be specified together with 'device'"); 371 return; 372 } 373 con = qemu_console_lookup_by_index(0); 374 if (!con) { 375 error_setg(errp, "There is no console to take a screendump from"); 376 return; 377 } 378 } 379 380 if (qemu_co_queue_empty(&con->dump_queue)) { 381 /* Defer the update, it will restart the pending coroutines */ 382 aio_bh_schedule_oneshot(qemu_get_aio_context(), 383 graphic_hw_update_bh, con); 384 } 385 qemu_co_queue_wait(&con->dump_queue, NULL); 386 387 /* 388 * All pending coroutines are woken up, while the BQL is held. No 389 * further graphic update are possible until it is released. Take 390 * an image ref before that. 391 */ 392 surface = qemu_console_surface(con); 393 if (!surface) { 394 error_setg(errp, "no surface"); 395 return; 396 } 397 image = pixman_image_ref(surface->image); 398 399 fd = qemu_open_old(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666); 400 if (fd == -1) { 401 error_setg(errp, "failed to open file '%s': %s", filename, 402 strerror(errno)); 403 return; 404 } 405 406 /* 407 * The image content could potentially be updated as the coroutine 408 * yields and releases the BQL. It could produce corrupted dump, but 409 * it should be otherwise safe. 410 */ 411 if (!ppm_save(fd, image, errp)) { 412 qemu_unlink(filename); 413 } 414 } 415 416 void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata) 417 { 418 if (!con) { 419 con = active_console; 420 } 421 if (con && con->hw_ops->text_update) { 422 con->hw_ops->text_update(con->hw, chardata); 423 } 424 } 425 426 static void vga_fill_rect(QemuConsole *con, 427 int posx, int posy, int width, int height, 428 pixman_color_t color) 429 { 430 DisplaySurface *surface = qemu_console_surface(con); 431 pixman_rectangle16_t rect = { 432 .x = posx, .y = posy, .width = width, .height = height 433 }; 434 435 pixman_image_fill_rectangles(PIXMAN_OP_SRC, surface->image, 436 &color, 1, &rect); 437 } 438 439 /* copy from (xs, ys) to (xd, yd) a rectangle of size (w, h) */ 440 static void vga_bitblt(QemuConsole *con, 441 int xs, int ys, int xd, int yd, int w, int h) 442 { 443 DisplaySurface *surface = qemu_console_surface(con); 444 445 pixman_image_composite(PIXMAN_OP_SRC, 446 surface->image, NULL, surface->image, 447 xs, ys, 0, 0, xd, yd, w, h); 448 } 449 450 /***********************************************************/ 451 /* basic char display */ 452 453 #define FONT_HEIGHT 16 454 #define FONT_WIDTH 8 455 456 #include "vgafont.h" 457 458 #define QEMU_RGB(r, g, b) \ 459 { .red = r << 8, .green = g << 8, .blue = b << 8, .alpha = 0xffff } 460 461 static const pixman_color_t color_table_rgb[2][8] = { 462 { /* dark */ 463 [QEMU_COLOR_BLACK] = QEMU_RGB(0x00, 0x00, 0x00), /* black */ 464 [QEMU_COLOR_BLUE] = QEMU_RGB(0x00, 0x00, 0xaa), /* blue */ 465 [QEMU_COLOR_GREEN] = QEMU_RGB(0x00, 0xaa, 0x00), /* green */ 466 [QEMU_COLOR_CYAN] = QEMU_RGB(0x00, 0xaa, 0xaa), /* cyan */ 467 [QEMU_COLOR_RED] = QEMU_RGB(0xaa, 0x00, 0x00), /* red */ 468 [QEMU_COLOR_MAGENTA] = QEMU_RGB(0xaa, 0x00, 0xaa), /* magenta */ 469 [QEMU_COLOR_YELLOW] = QEMU_RGB(0xaa, 0xaa, 0x00), /* yellow */ 470 [QEMU_COLOR_WHITE] = QEMU_RGB(0xaa, 0xaa, 0xaa), /* white */ 471 }, 472 { /* bright */ 473 [QEMU_COLOR_BLACK] = QEMU_RGB(0x00, 0x00, 0x00), /* black */ 474 [QEMU_COLOR_BLUE] = QEMU_RGB(0x00, 0x00, 0xff), /* blue */ 475 [QEMU_COLOR_GREEN] = QEMU_RGB(0x00, 0xff, 0x00), /* green */ 476 [QEMU_COLOR_CYAN] = QEMU_RGB(0x00, 0xff, 0xff), /* cyan */ 477 [QEMU_COLOR_RED] = QEMU_RGB(0xff, 0x00, 0x00), /* red */ 478 [QEMU_COLOR_MAGENTA] = QEMU_RGB(0xff, 0x00, 0xff), /* magenta */ 479 [QEMU_COLOR_YELLOW] = QEMU_RGB(0xff, 0xff, 0x00), /* yellow */ 480 [QEMU_COLOR_WHITE] = QEMU_RGB(0xff, 0xff, 0xff), /* white */ 481 } 482 }; 483 484 static void vga_putcharxy(QemuConsole *s, int x, int y, int ch, 485 TextAttributes *t_attrib) 486 { 487 static pixman_image_t *glyphs[256]; 488 DisplaySurface *surface = qemu_console_surface(s); 489 pixman_color_t fgcol, bgcol; 490 491 if (t_attrib->invers) { 492 bgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol]; 493 fgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol]; 494 } else { 495 fgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol]; 496 bgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol]; 497 } 498 499 if (!glyphs[ch]) { 500 glyphs[ch] = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, ch); 501 } 502 qemu_pixman_glyph_render(glyphs[ch], surface->image, 503 &fgcol, &bgcol, x, y, FONT_WIDTH, FONT_HEIGHT); 504 } 505 506 static void text_console_resize(QemuConsole *s) 507 { 508 TextCell *cells, *c, *c1; 509 int w1, x, y, last_width; 510 511 last_width = s->width; 512 s->width = surface_width(s->surface) / FONT_WIDTH; 513 s->height = surface_height(s->surface) / FONT_HEIGHT; 514 515 w1 = last_width; 516 if (s->width < w1) 517 w1 = s->width; 518 519 cells = g_new(TextCell, s->width * s->total_height + 1); 520 for(y = 0; y < s->total_height; y++) { 521 c = &cells[y * s->width]; 522 if (w1 > 0) { 523 c1 = &s->cells[y * last_width]; 524 for(x = 0; x < w1; x++) { 525 *c++ = *c1++; 526 } 527 } 528 for(x = w1; x < s->width; x++) { 529 c->ch = ' '; 530 c->t_attrib = s->t_attrib_default; 531 c++; 532 } 533 } 534 g_free(s->cells); 535 s->cells = cells; 536 } 537 538 static inline void text_update_xy(QemuConsole *s, int x, int y) 539 { 540 s->text_x[0] = MIN(s->text_x[0], x); 541 s->text_x[1] = MAX(s->text_x[1], x); 542 s->text_y[0] = MIN(s->text_y[0], y); 543 s->text_y[1] = MAX(s->text_y[1], y); 544 } 545 546 static void invalidate_xy(QemuConsole *s, int x, int y) 547 { 548 if (!qemu_console_is_visible(s)) { 549 return; 550 } 551 if (s->update_x0 > x * FONT_WIDTH) 552 s->update_x0 = x * FONT_WIDTH; 553 if (s->update_y0 > y * FONT_HEIGHT) 554 s->update_y0 = y * FONT_HEIGHT; 555 if (s->update_x1 < (x + 1) * FONT_WIDTH) 556 s->update_x1 = (x + 1) * FONT_WIDTH; 557 if (s->update_y1 < (y + 1) * FONT_HEIGHT) 558 s->update_y1 = (y + 1) * FONT_HEIGHT; 559 } 560 561 static void update_xy(QemuConsole *s, int x, int y) 562 { 563 TextCell *c; 564 int y1, y2; 565 566 if (s->ds->have_text) { 567 text_update_xy(s, x, y); 568 } 569 570 y1 = (s->y_base + y) % s->total_height; 571 y2 = y1 - s->y_displayed; 572 if (y2 < 0) { 573 y2 += s->total_height; 574 } 575 if (y2 < s->height) { 576 if (x >= s->width) { 577 x = s->width - 1; 578 } 579 c = &s->cells[y1 * s->width + x]; 580 vga_putcharxy(s, x, y2, c->ch, 581 &(c->t_attrib)); 582 invalidate_xy(s, x, y2); 583 } 584 } 585 586 static void console_show_cursor(QemuConsole *s, int show) 587 { 588 TextCell *c; 589 int y, y1; 590 int x = s->x; 591 592 if (s->ds->have_text) { 593 s->cursor_invalidate = 1; 594 } 595 596 if (x >= s->width) { 597 x = s->width - 1; 598 } 599 y1 = (s->y_base + s->y) % s->total_height; 600 y = y1 - s->y_displayed; 601 if (y < 0) { 602 y += s->total_height; 603 } 604 if (y < s->height) { 605 c = &s->cells[y1 * s->width + x]; 606 if (show && cursor_visible_phase) { 607 TextAttributes t_attrib = s->t_attrib_default; 608 t_attrib.invers = !(t_attrib.invers); /* invert fg and bg */ 609 vga_putcharxy(s, x, y, c->ch, &t_attrib); 610 } else { 611 vga_putcharxy(s, x, y, c->ch, &(c->t_attrib)); 612 } 613 invalidate_xy(s, x, y); 614 } 615 } 616 617 static void console_refresh(QemuConsole *s) 618 { 619 DisplaySurface *surface = qemu_console_surface(s); 620 TextCell *c; 621 int x, y, y1; 622 623 if (s->ds->have_text) { 624 s->text_x[0] = 0; 625 s->text_y[0] = 0; 626 s->text_x[1] = s->width - 1; 627 s->text_y[1] = s->height - 1; 628 s->cursor_invalidate = 1; 629 } 630 631 vga_fill_rect(s, 0, 0, surface_width(surface), surface_height(surface), 632 color_table_rgb[0][QEMU_COLOR_BLACK]); 633 y1 = s->y_displayed; 634 for (y = 0; y < s->height; y++) { 635 c = s->cells + y1 * s->width; 636 for (x = 0; x < s->width; x++) { 637 vga_putcharxy(s, x, y, c->ch, 638 &(c->t_attrib)); 639 c++; 640 } 641 if (++y1 == s->total_height) { 642 y1 = 0; 643 } 644 } 645 console_show_cursor(s, 1); 646 dpy_gfx_update(s, 0, 0, 647 surface_width(surface), surface_height(surface)); 648 } 649 650 static void console_scroll(QemuConsole *s, int ydelta) 651 { 652 int i, y1; 653 654 if (ydelta > 0) { 655 for(i = 0; i < ydelta; i++) { 656 if (s->y_displayed == s->y_base) 657 break; 658 if (++s->y_displayed == s->total_height) 659 s->y_displayed = 0; 660 } 661 } else { 662 ydelta = -ydelta; 663 i = s->backscroll_height; 664 if (i > s->total_height - s->height) 665 i = s->total_height - s->height; 666 y1 = s->y_base - i; 667 if (y1 < 0) 668 y1 += s->total_height; 669 for(i = 0; i < ydelta; i++) { 670 if (s->y_displayed == y1) 671 break; 672 if (--s->y_displayed < 0) 673 s->y_displayed = s->total_height - 1; 674 } 675 } 676 console_refresh(s); 677 } 678 679 static void console_put_lf(QemuConsole *s) 680 { 681 TextCell *c; 682 int x, y1; 683 684 s->y++; 685 if (s->y >= s->height) { 686 s->y = s->height - 1; 687 688 if (s->y_displayed == s->y_base) { 689 if (++s->y_displayed == s->total_height) 690 s->y_displayed = 0; 691 } 692 if (++s->y_base == s->total_height) 693 s->y_base = 0; 694 if (s->backscroll_height < s->total_height) 695 s->backscroll_height++; 696 y1 = (s->y_base + s->height - 1) % s->total_height; 697 c = &s->cells[y1 * s->width]; 698 for(x = 0; x < s->width; x++) { 699 c->ch = ' '; 700 c->t_attrib = s->t_attrib_default; 701 c++; 702 } 703 if (s->y_displayed == s->y_base) { 704 if (s->ds->have_text) { 705 s->text_x[0] = 0; 706 s->text_y[0] = 0; 707 s->text_x[1] = s->width - 1; 708 s->text_y[1] = s->height - 1; 709 } 710 711 vga_bitblt(s, 0, FONT_HEIGHT, 0, 0, 712 s->width * FONT_WIDTH, 713 (s->height - 1) * FONT_HEIGHT); 714 vga_fill_rect(s, 0, (s->height - 1) * FONT_HEIGHT, 715 s->width * FONT_WIDTH, FONT_HEIGHT, 716 color_table_rgb[0][s->t_attrib_default.bgcol]); 717 s->update_x0 = 0; 718 s->update_y0 = 0; 719 s->update_x1 = s->width * FONT_WIDTH; 720 s->update_y1 = s->height * FONT_HEIGHT; 721 } 722 } 723 } 724 725 /* Set console attributes depending on the current escape codes. 726 * NOTE: I know this code is not very efficient (checking every color for it 727 * self) but it is more readable and better maintainable. 728 */ 729 static void console_handle_escape(QemuConsole *s) 730 { 731 int i; 732 733 for (i=0; i<s->nb_esc_params; i++) { 734 switch (s->esc_params[i]) { 735 case 0: /* reset all console attributes to default */ 736 s->t_attrib = s->t_attrib_default; 737 break; 738 case 1: 739 s->t_attrib.bold = 1; 740 break; 741 case 4: 742 s->t_attrib.uline = 1; 743 break; 744 case 5: 745 s->t_attrib.blink = 1; 746 break; 747 case 7: 748 s->t_attrib.invers = 1; 749 break; 750 case 8: 751 s->t_attrib.unvisible = 1; 752 break; 753 case 22: 754 s->t_attrib.bold = 0; 755 break; 756 case 24: 757 s->t_attrib.uline = 0; 758 break; 759 case 25: 760 s->t_attrib.blink = 0; 761 break; 762 case 27: 763 s->t_attrib.invers = 0; 764 break; 765 case 28: 766 s->t_attrib.unvisible = 0; 767 break; 768 /* set foreground color */ 769 case 30: 770 s->t_attrib.fgcol = QEMU_COLOR_BLACK; 771 break; 772 case 31: 773 s->t_attrib.fgcol = QEMU_COLOR_RED; 774 break; 775 case 32: 776 s->t_attrib.fgcol = QEMU_COLOR_GREEN; 777 break; 778 case 33: 779 s->t_attrib.fgcol = QEMU_COLOR_YELLOW; 780 break; 781 case 34: 782 s->t_attrib.fgcol = QEMU_COLOR_BLUE; 783 break; 784 case 35: 785 s->t_attrib.fgcol = QEMU_COLOR_MAGENTA; 786 break; 787 case 36: 788 s->t_attrib.fgcol = QEMU_COLOR_CYAN; 789 break; 790 case 37: 791 s->t_attrib.fgcol = QEMU_COLOR_WHITE; 792 break; 793 /* set background color */ 794 case 40: 795 s->t_attrib.bgcol = QEMU_COLOR_BLACK; 796 break; 797 case 41: 798 s->t_attrib.bgcol = QEMU_COLOR_RED; 799 break; 800 case 42: 801 s->t_attrib.bgcol = QEMU_COLOR_GREEN; 802 break; 803 case 43: 804 s->t_attrib.bgcol = QEMU_COLOR_YELLOW; 805 break; 806 case 44: 807 s->t_attrib.bgcol = QEMU_COLOR_BLUE; 808 break; 809 case 45: 810 s->t_attrib.bgcol = QEMU_COLOR_MAGENTA; 811 break; 812 case 46: 813 s->t_attrib.bgcol = QEMU_COLOR_CYAN; 814 break; 815 case 47: 816 s->t_attrib.bgcol = QEMU_COLOR_WHITE; 817 break; 818 } 819 } 820 } 821 822 static void console_clear_xy(QemuConsole *s, int x, int y) 823 { 824 int y1 = (s->y_base + y) % s->total_height; 825 if (x >= s->width) { 826 x = s->width - 1; 827 } 828 TextCell *c = &s->cells[y1 * s->width + x]; 829 c->ch = ' '; 830 c->t_attrib = s->t_attrib_default; 831 update_xy(s, x, y); 832 } 833 834 static void console_put_one(QemuConsole *s, int ch) 835 { 836 TextCell *c; 837 int y1; 838 if (s->x >= s->width) { 839 /* line wrap */ 840 s->x = 0; 841 console_put_lf(s); 842 } 843 y1 = (s->y_base + s->y) % s->total_height; 844 c = &s->cells[y1 * s->width + s->x]; 845 c->ch = ch; 846 c->t_attrib = s->t_attrib; 847 update_xy(s, s->x, s->y); 848 s->x++; 849 } 850 851 static void console_respond_str(QemuConsole *s, const char *buf) 852 { 853 while (*buf) { 854 console_put_one(s, *buf); 855 buf++; 856 } 857 } 858 859 /* set cursor, checking bounds */ 860 static void set_cursor(QemuConsole *s, int x, int y) 861 { 862 if (x < 0) { 863 x = 0; 864 } 865 if (y < 0) { 866 y = 0; 867 } 868 if (y >= s->height) { 869 y = s->height - 1; 870 } 871 if (x >= s->width) { 872 x = s->width - 1; 873 } 874 875 s->x = x; 876 s->y = y; 877 } 878 879 static void console_putchar(QemuConsole *s, int ch) 880 { 881 int i; 882 int x, y; 883 char response[40]; 884 885 switch(s->state) { 886 case TTY_STATE_NORM: 887 switch(ch) { 888 case '\r': /* carriage return */ 889 s->x = 0; 890 break; 891 case '\n': /* newline */ 892 console_put_lf(s); 893 break; 894 case '\b': /* backspace */ 895 if (s->x > 0) 896 s->x--; 897 break; 898 case '\t': /* tabspace */ 899 if (s->x + (8 - (s->x % 8)) > s->width) { 900 s->x = 0; 901 console_put_lf(s); 902 } else { 903 s->x = s->x + (8 - (s->x % 8)); 904 } 905 break; 906 case '\a': /* alert aka. bell */ 907 /* TODO: has to be implemented */ 908 break; 909 case 14: 910 /* SI (shift in), character set 0 (ignored) */ 911 break; 912 case 15: 913 /* SO (shift out), character set 1 (ignored) */ 914 break; 915 case 27: /* esc (introducing an escape sequence) */ 916 s->state = TTY_STATE_ESC; 917 break; 918 default: 919 console_put_one(s, ch); 920 break; 921 } 922 break; 923 case TTY_STATE_ESC: /* check if it is a terminal escape sequence */ 924 if (ch == '[') { 925 for(i=0;i<MAX_ESC_PARAMS;i++) 926 s->esc_params[i] = 0; 927 s->nb_esc_params = 0; 928 s->state = TTY_STATE_CSI; 929 } else { 930 s->state = TTY_STATE_NORM; 931 } 932 break; 933 case TTY_STATE_CSI: /* handle escape sequence parameters */ 934 if (ch >= '0' && ch <= '9') { 935 if (s->nb_esc_params < MAX_ESC_PARAMS) { 936 int *param = &s->esc_params[s->nb_esc_params]; 937 int digit = (ch - '0'); 938 939 *param = (*param <= (INT_MAX - digit) / 10) ? 940 *param * 10 + digit : INT_MAX; 941 } 942 } else { 943 if (s->nb_esc_params < MAX_ESC_PARAMS) 944 s->nb_esc_params++; 945 if (ch == ';' || ch == '?') { 946 break; 947 } 948 trace_console_putchar_csi(s->esc_params[0], s->esc_params[1], 949 ch, s->nb_esc_params); 950 s->state = TTY_STATE_NORM; 951 switch(ch) { 952 case 'A': 953 /* move cursor up */ 954 if (s->esc_params[0] == 0) { 955 s->esc_params[0] = 1; 956 } 957 set_cursor(s, s->x, s->y - s->esc_params[0]); 958 break; 959 case 'B': 960 /* move cursor down */ 961 if (s->esc_params[0] == 0) { 962 s->esc_params[0] = 1; 963 } 964 set_cursor(s, s->x, s->y + s->esc_params[0]); 965 break; 966 case 'C': 967 /* move cursor right */ 968 if (s->esc_params[0] == 0) { 969 s->esc_params[0] = 1; 970 } 971 set_cursor(s, s->x + s->esc_params[0], s->y); 972 break; 973 case 'D': 974 /* move cursor left */ 975 if (s->esc_params[0] == 0) { 976 s->esc_params[0] = 1; 977 } 978 set_cursor(s, s->x - s->esc_params[0], s->y); 979 break; 980 case 'G': 981 /* move cursor to column */ 982 set_cursor(s, s->esc_params[0] - 1, s->y); 983 break; 984 case 'f': 985 case 'H': 986 /* move cursor to row, column */ 987 set_cursor(s, s->esc_params[1] - 1, s->esc_params[0] - 1); 988 break; 989 case 'J': 990 switch (s->esc_params[0]) { 991 case 0: 992 /* clear to end of screen */ 993 for (y = s->y; y < s->height; y++) { 994 for (x = 0; x < s->width; x++) { 995 if (y == s->y && x < s->x) { 996 continue; 997 } 998 console_clear_xy(s, x, y); 999 } 1000 } 1001 break; 1002 case 1: 1003 /* clear from beginning of screen */ 1004 for (y = 0; y <= s->y; y++) { 1005 for (x = 0; x < s->width; x++) { 1006 if (y == s->y && x > s->x) { 1007 break; 1008 } 1009 console_clear_xy(s, x, y); 1010 } 1011 } 1012 break; 1013 case 2: 1014 /* clear entire screen */ 1015 for (y = 0; y <= s->height; y++) { 1016 for (x = 0; x < s->width; x++) { 1017 console_clear_xy(s, x, y); 1018 } 1019 } 1020 break; 1021 } 1022 break; 1023 case 'K': 1024 switch (s->esc_params[0]) { 1025 case 0: 1026 /* clear to eol */ 1027 for(x = s->x; x < s->width; x++) { 1028 console_clear_xy(s, x, s->y); 1029 } 1030 break; 1031 case 1: 1032 /* clear from beginning of line */ 1033 for (x = 0; x <= s->x && x < s->width; x++) { 1034 console_clear_xy(s, x, s->y); 1035 } 1036 break; 1037 case 2: 1038 /* clear entire line */ 1039 for(x = 0; x < s->width; x++) { 1040 console_clear_xy(s, x, s->y); 1041 } 1042 break; 1043 } 1044 break; 1045 case 'm': 1046 console_handle_escape(s); 1047 break; 1048 case 'n': 1049 switch (s->esc_params[0]) { 1050 case 5: 1051 /* report console status (always succeed)*/ 1052 console_respond_str(s, "\033[0n"); 1053 break; 1054 case 6: 1055 /* report cursor position */ 1056 sprintf(response, "\033[%d;%dR", 1057 (s->y_base + s->y) % s->total_height + 1, 1058 s->x + 1); 1059 console_respond_str(s, response); 1060 break; 1061 } 1062 break; 1063 case 's': 1064 /* save cursor position */ 1065 s->x_saved = s->x; 1066 s->y_saved = s->y; 1067 break; 1068 case 'u': 1069 /* restore cursor position */ 1070 s->x = s->x_saved; 1071 s->y = s->y_saved; 1072 break; 1073 default: 1074 trace_console_putchar_unhandled(ch); 1075 break; 1076 } 1077 break; 1078 } 1079 } 1080 } 1081 1082 void console_select(unsigned int index) 1083 { 1084 DisplayChangeListener *dcl; 1085 QemuConsole *s; 1086 1087 trace_console_select(index); 1088 s = qemu_console_lookup_by_index(index); 1089 if (s) { 1090 DisplayState *ds = s->ds; 1091 1092 active_console = s; 1093 if (ds->have_gfx) { 1094 QLIST_FOREACH(dcl, &ds->listeners, next) { 1095 if (dcl->con != NULL) { 1096 continue; 1097 } 1098 if (dcl->ops->dpy_gfx_switch) { 1099 dcl->ops->dpy_gfx_switch(dcl, s->surface); 1100 } 1101 } 1102 if (s->surface) { 1103 dpy_gfx_update(s, 0, 0, surface_width(s->surface), 1104 surface_height(s->surface)); 1105 } 1106 } 1107 if (ds->have_text) { 1108 dpy_text_resize(s, s->width, s->height); 1109 } 1110 text_console_update_cursor(NULL); 1111 } 1112 } 1113 1114 struct VCChardev { 1115 Chardev parent; 1116 QemuConsole *console; 1117 }; 1118 typedef struct VCChardev VCChardev; 1119 1120 #define TYPE_CHARDEV_VC "chardev-vc" 1121 DECLARE_INSTANCE_CHECKER(VCChardev, VC_CHARDEV, 1122 TYPE_CHARDEV_VC) 1123 1124 static int vc_chr_write(Chardev *chr, const uint8_t *buf, int len) 1125 { 1126 VCChardev *drv = VC_CHARDEV(chr); 1127 QemuConsole *s = drv->console; 1128 int i; 1129 1130 if (!s->ds) { 1131 return 0; 1132 } 1133 1134 s->update_x0 = s->width * FONT_WIDTH; 1135 s->update_y0 = s->height * FONT_HEIGHT; 1136 s->update_x1 = 0; 1137 s->update_y1 = 0; 1138 console_show_cursor(s, 0); 1139 for(i = 0; i < len; i++) { 1140 console_putchar(s, buf[i]); 1141 } 1142 console_show_cursor(s, 1); 1143 if (s->ds->have_gfx && s->update_x0 < s->update_x1) { 1144 dpy_gfx_update(s, s->update_x0, s->update_y0, 1145 s->update_x1 - s->update_x0, 1146 s->update_y1 - s->update_y0); 1147 } 1148 return len; 1149 } 1150 1151 static void kbd_send_chars(void *opaque) 1152 { 1153 QemuConsole *s = opaque; 1154 int len; 1155 uint8_t buf[16]; 1156 1157 len = qemu_chr_be_can_write(s->chr); 1158 if (len > s->out_fifo.count) 1159 len = s->out_fifo.count; 1160 if (len > 0) { 1161 if (len > sizeof(buf)) 1162 len = sizeof(buf); 1163 qemu_fifo_read(&s->out_fifo, buf, len); 1164 qemu_chr_be_write(s->chr, buf, len); 1165 } 1166 /* characters are pending: we send them a bit later (XXX: 1167 horrible, should change char device API) */ 1168 if (s->out_fifo.count > 0) { 1169 timer_mod(s->kbd_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1); 1170 } 1171 } 1172 1173 /* called when an ascii key is pressed */ 1174 void kbd_put_keysym_console(QemuConsole *s, int keysym) 1175 { 1176 uint8_t buf[16], *q; 1177 CharBackend *be; 1178 int c; 1179 1180 if (!s || (s->console_type == GRAPHIC_CONSOLE)) 1181 return; 1182 1183 switch(keysym) { 1184 case QEMU_KEY_CTRL_UP: 1185 console_scroll(s, -1); 1186 break; 1187 case QEMU_KEY_CTRL_DOWN: 1188 console_scroll(s, 1); 1189 break; 1190 case QEMU_KEY_CTRL_PAGEUP: 1191 console_scroll(s, -10); 1192 break; 1193 case QEMU_KEY_CTRL_PAGEDOWN: 1194 console_scroll(s, 10); 1195 break; 1196 default: 1197 /* convert the QEMU keysym to VT100 key string */ 1198 q = buf; 1199 if (keysym >= 0xe100 && keysym <= 0xe11f) { 1200 *q++ = '\033'; 1201 *q++ = '['; 1202 c = keysym - 0xe100; 1203 if (c >= 10) 1204 *q++ = '0' + (c / 10); 1205 *q++ = '0' + (c % 10); 1206 *q++ = '~'; 1207 } else if (keysym >= 0xe120 && keysym <= 0xe17f) { 1208 *q++ = '\033'; 1209 *q++ = '['; 1210 *q++ = keysym & 0xff; 1211 } else if (s->echo && (keysym == '\r' || keysym == '\n')) { 1212 vc_chr_write(s->chr, (const uint8_t *) "\r", 1); 1213 *q++ = '\n'; 1214 } else { 1215 *q++ = keysym; 1216 } 1217 if (s->echo) { 1218 vc_chr_write(s->chr, buf, q - buf); 1219 } 1220 be = s->chr->be; 1221 if (be && be->chr_read) { 1222 qemu_fifo_write(&s->out_fifo, buf, q - buf); 1223 kbd_send_chars(s); 1224 } 1225 break; 1226 } 1227 } 1228 1229 static const int qcode_to_keysym[Q_KEY_CODE__MAX] = { 1230 [Q_KEY_CODE_UP] = QEMU_KEY_UP, 1231 [Q_KEY_CODE_DOWN] = QEMU_KEY_DOWN, 1232 [Q_KEY_CODE_RIGHT] = QEMU_KEY_RIGHT, 1233 [Q_KEY_CODE_LEFT] = QEMU_KEY_LEFT, 1234 [Q_KEY_CODE_HOME] = QEMU_KEY_HOME, 1235 [Q_KEY_CODE_END] = QEMU_KEY_END, 1236 [Q_KEY_CODE_PGUP] = QEMU_KEY_PAGEUP, 1237 [Q_KEY_CODE_PGDN] = QEMU_KEY_PAGEDOWN, 1238 [Q_KEY_CODE_DELETE] = QEMU_KEY_DELETE, 1239 [Q_KEY_CODE_BACKSPACE] = QEMU_KEY_BACKSPACE, 1240 }; 1241 1242 static const int ctrl_qcode_to_keysym[Q_KEY_CODE__MAX] = { 1243 [Q_KEY_CODE_UP] = QEMU_KEY_CTRL_UP, 1244 [Q_KEY_CODE_DOWN] = QEMU_KEY_CTRL_DOWN, 1245 [Q_KEY_CODE_RIGHT] = QEMU_KEY_CTRL_RIGHT, 1246 [Q_KEY_CODE_LEFT] = QEMU_KEY_CTRL_LEFT, 1247 [Q_KEY_CODE_HOME] = QEMU_KEY_CTRL_HOME, 1248 [Q_KEY_CODE_END] = QEMU_KEY_CTRL_END, 1249 [Q_KEY_CODE_PGUP] = QEMU_KEY_CTRL_PAGEUP, 1250 [Q_KEY_CODE_PGDN] = QEMU_KEY_CTRL_PAGEDOWN, 1251 }; 1252 1253 bool kbd_put_qcode_console(QemuConsole *s, int qcode, bool ctrl) 1254 { 1255 int keysym; 1256 1257 keysym = ctrl ? ctrl_qcode_to_keysym[qcode] : qcode_to_keysym[qcode]; 1258 if (keysym == 0) { 1259 return false; 1260 } 1261 kbd_put_keysym_console(s, keysym); 1262 return true; 1263 } 1264 1265 void kbd_put_string_console(QemuConsole *s, const char *str, int len) 1266 { 1267 int i; 1268 1269 for (i = 0; i < len && str[i]; i++) { 1270 kbd_put_keysym_console(s, str[i]); 1271 } 1272 } 1273 1274 void kbd_put_keysym(int keysym) 1275 { 1276 kbd_put_keysym_console(active_console, keysym); 1277 } 1278 1279 static void text_console_invalidate(void *opaque) 1280 { 1281 QemuConsole *s = (QemuConsole *) opaque; 1282 1283 if (s->ds->have_text && s->console_type == TEXT_CONSOLE) { 1284 text_console_resize(s); 1285 } 1286 console_refresh(s); 1287 } 1288 1289 static void text_console_update(void *opaque, console_ch_t *chardata) 1290 { 1291 QemuConsole *s = (QemuConsole *) opaque; 1292 int i, j, src; 1293 1294 if (s->text_x[0] <= s->text_x[1]) { 1295 src = (s->y_base + s->text_y[0]) * s->width; 1296 chardata += s->text_y[0] * s->width; 1297 for (i = s->text_y[0]; i <= s->text_y[1]; i ++) 1298 for (j = 0; j < s->width; j++, src++) { 1299 console_write_ch(chardata ++, 1300 ATTR2CHTYPE(s->cells[src].ch, 1301 s->cells[src].t_attrib.fgcol, 1302 s->cells[src].t_attrib.bgcol, 1303 s->cells[src].t_attrib.bold)); 1304 } 1305 dpy_text_update(s, s->text_x[0], s->text_y[0], 1306 s->text_x[1] - s->text_x[0], i - s->text_y[0]); 1307 s->text_x[0] = s->width; 1308 s->text_y[0] = s->height; 1309 s->text_x[1] = 0; 1310 s->text_y[1] = 0; 1311 } 1312 if (s->cursor_invalidate) { 1313 dpy_text_cursor(s, s->x, s->y); 1314 s->cursor_invalidate = 0; 1315 } 1316 } 1317 1318 static QemuConsole *new_console(DisplayState *ds, console_type_t console_type, 1319 uint32_t head) 1320 { 1321 Object *obj; 1322 QemuConsole *s; 1323 int i; 1324 1325 obj = object_new(TYPE_QEMU_CONSOLE); 1326 s = QEMU_CONSOLE(obj); 1327 qemu_co_queue_init(&s->dump_queue); 1328 s->head = head; 1329 object_property_add_link(obj, "device", TYPE_DEVICE, 1330 (Object **)&s->device, 1331 object_property_allow_set_link, 1332 OBJ_PROP_LINK_STRONG); 1333 object_property_add_uint32_ptr(obj, "head", &s->head, 1334 OBJ_PROP_FLAG_READ); 1335 1336 if (!active_console || ((active_console->console_type != GRAPHIC_CONSOLE) && 1337 (console_type == GRAPHIC_CONSOLE))) { 1338 active_console = s; 1339 } 1340 s->ds = ds; 1341 s->console_type = console_type; 1342 s->window_id = -1; 1343 1344 if (QTAILQ_EMPTY(&consoles)) { 1345 s->index = 0; 1346 QTAILQ_INSERT_TAIL(&consoles, s, next); 1347 } else if (console_type != GRAPHIC_CONSOLE || phase_check(PHASE_MACHINE_READY)) { 1348 QemuConsole *last = QTAILQ_LAST(&consoles); 1349 s->index = last->index + 1; 1350 QTAILQ_INSERT_TAIL(&consoles, s, next); 1351 } else { 1352 /* 1353 * HACK: Put graphical consoles before text consoles. 1354 * 1355 * Only do that for coldplugged devices. After initial device 1356 * initialization we will not renumber the consoles any more. 1357 */ 1358 QemuConsole *c = QTAILQ_FIRST(&consoles); 1359 1360 while (QTAILQ_NEXT(c, next) != NULL && 1361 c->console_type == GRAPHIC_CONSOLE) { 1362 c = QTAILQ_NEXT(c, next); 1363 } 1364 if (c->console_type == GRAPHIC_CONSOLE) { 1365 /* have no text consoles */ 1366 s->index = c->index + 1; 1367 QTAILQ_INSERT_AFTER(&consoles, c, s, next); 1368 } else { 1369 s->index = c->index; 1370 QTAILQ_INSERT_BEFORE(c, s, next); 1371 /* renumber text consoles */ 1372 for (i = s->index + 1; c != NULL; c = QTAILQ_NEXT(c, next), i++) { 1373 c->index = i; 1374 } 1375 } 1376 } 1377 return s; 1378 } 1379 1380 static void qemu_alloc_display(DisplaySurface *surface, int width, int height) 1381 { 1382 qemu_pixman_image_unref(surface->image); 1383 surface->image = NULL; 1384 1385 surface->format = PIXMAN_x8r8g8b8; 1386 surface->image = pixman_image_create_bits(surface->format, 1387 width, height, 1388 NULL, width * 4); 1389 assert(surface->image != NULL); 1390 1391 surface->flags = QEMU_ALLOCATED_FLAG; 1392 } 1393 1394 DisplaySurface *qemu_create_displaysurface(int width, int height) 1395 { 1396 DisplaySurface *surface = g_new0(DisplaySurface, 1); 1397 1398 trace_displaysurface_create(surface, width, height); 1399 qemu_alloc_display(surface, width, height); 1400 return surface; 1401 } 1402 1403 DisplaySurface *qemu_create_displaysurface_from(int width, int height, 1404 pixman_format_code_t format, 1405 int linesize, uint8_t *data) 1406 { 1407 DisplaySurface *surface = g_new0(DisplaySurface, 1); 1408 1409 trace_displaysurface_create_from(surface, width, height, format); 1410 surface->format = format; 1411 surface->image = pixman_image_create_bits(surface->format, 1412 width, height, 1413 (void *)data, linesize); 1414 assert(surface->image != NULL); 1415 1416 return surface; 1417 } 1418 1419 DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image) 1420 { 1421 DisplaySurface *surface = g_new0(DisplaySurface, 1); 1422 1423 trace_displaysurface_create_pixman(surface); 1424 surface->format = pixman_image_get_format(image); 1425 surface->image = pixman_image_ref(image); 1426 1427 return surface; 1428 } 1429 1430 DisplaySurface *qemu_create_message_surface(int w, int h, 1431 const char *msg) 1432 { 1433 DisplaySurface *surface = qemu_create_displaysurface(w, h); 1434 pixman_color_t bg = color_table_rgb[0][QEMU_COLOR_BLACK]; 1435 pixman_color_t fg = color_table_rgb[0][QEMU_COLOR_WHITE]; 1436 pixman_image_t *glyph; 1437 int len, x, y, i; 1438 1439 len = strlen(msg); 1440 x = (w / FONT_WIDTH - len) / 2; 1441 y = (h / FONT_HEIGHT - 1) / 2; 1442 for (i = 0; i < len; i++) { 1443 glyph = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, msg[i]); 1444 qemu_pixman_glyph_render(glyph, surface->image, &fg, &bg, 1445 x+i, y, FONT_WIDTH, FONT_HEIGHT); 1446 qemu_pixman_image_unref(glyph); 1447 } 1448 return surface; 1449 } 1450 1451 void qemu_free_displaysurface(DisplaySurface *surface) 1452 { 1453 if (surface == NULL) { 1454 return; 1455 } 1456 trace_displaysurface_free(surface); 1457 qemu_pixman_image_unref(surface->image); 1458 g_free(surface); 1459 } 1460 1461 bool console_has_gl(QemuConsole *con) 1462 { 1463 return con->gl != NULL; 1464 } 1465 1466 void register_displaychangelistener(DisplayChangeListener *dcl) 1467 { 1468 static const char nodev[] = 1469 "This VM has no graphic display device."; 1470 static DisplaySurface *dummy; 1471 QemuConsole *con; 1472 1473 assert(!dcl->ds); 1474 1475 if (dcl->ops->dpy_gl_ctx_create) { 1476 /* display has opengl support */ 1477 assert(dcl->con); 1478 if (dcl->con->gl) { 1479 fprintf(stderr, "can't register two opengl displays (%s, %s)\n", 1480 dcl->ops->dpy_name, dcl->con->gl->ops->dpy_name); 1481 exit(1); 1482 } 1483 dcl->con->gl = dcl; 1484 } 1485 1486 trace_displaychangelistener_register(dcl, dcl->ops->dpy_name); 1487 dcl->ds = get_alloc_displaystate(); 1488 QLIST_INSERT_HEAD(&dcl->ds->listeners, dcl, next); 1489 gui_setup_refresh(dcl->ds); 1490 if (dcl->con) { 1491 dcl->con->dcls++; 1492 con = dcl->con; 1493 } else { 1494 con = active_console; 1495 } 1496 if (dcl->ops->dpy_gfx_switch) { 1497 if (con) { 1498 dcl->ops->dpy_gfx_switch(dcl, con->surface); 1499 } else { 1500 if (!dummy) { 1501 dummy = qemu_create_message_surface(640, 480, nodev); 1502 } 1503 dcl->ops->dpy_gfx_switch(dcl, dummy); 1504 } 1505 } 1506 text_console_update_cursor(NULL); 1507 } 1508 1509 void update_displaychangelistener(DisplayChangeListener *dcl, 1510 uint64_t interval) 1511 { 1512 DisplayState *ds = dcl->ds; 1513 1514 dcl->update_interval = interval; 1515 if (!ds->refreshing && ds->update_interval > interval) { 1516 timer_mod(ds->gui_timer, ds->last_update + interval); 1517 } 1518 } 1519 1520 void unregister_displaychangelistener(DisplayChangeListener *dcl) 1521 { 1522 DisplayState *ds = dcl->ds; 1523 trace_displaychangelistener_unregister(dcl, dcl->ops->dpy_name); 1524 if (dcl->con) { 1525 dcl->con->dcls--; 1526 } 1527 QLIST_REMOVE(dcl, next); 1528 dcl->ds = NULL; 1529 gui_setup_refresh(ds); 1530 } 1531 1532 static void dpy_set_ui_info_timer(void *opaque) 1533 { 1534 QemuConsole *con = opaque; 1535 1536 con->hw_ops->ui_info(con->hw, con->head, &con->ui_info); 1537 } 1538 1539 bool dpy_ui_info_supported(QemuConsole *con) 1540 { 1541 if (con == NULL) { 1542 con = active_console; 1543 } 1544 1545 return con->hw_ops->ui_info != NULL; 1546 } 1547 1548 const QemuUIInfo *dpy_get_ui_info(const QemuConsole *con) 1549 { 1550 if (con == NULL) { 1551 con = active_console; 1552 } 1553 1554 return &con->ui_info; 1555 } 1556 1557 int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info) 1558 { 1559 if (con == NULL) { 1560 con = active_console; 1561 } 1562 1563 if (!dpy_ui_info_supported(con)) { 1564 return -1; 1565 } 1566 if (memcmp(&con->ui_info, info, sizeof(con->ui_info)) == 0) { 1567 /* nothing changed -- ignore */ 1568 return 0; 1569 } 1570 1571 /* 1572 * Typically we get a flood of these as the user resizes the window. 1573 * Wait until the dust has settled (one second without updates), then 1574 * go notify the guest. 1575 */ 1576 con->ui_info = *info; 1577 timer_mod(con->ui_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000); 1578 return 0; 1579 } 1580 1581 void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h) 1582 { 1583 DisplayState *s = con->ds; 1584 DisplayChangeListener *dcl; 1585 int width = w; 1586 int height = h; 1587 1588 if (con->surface) { 1589 width = surface_width(con->surface); 1590 height = surface_height(con->surface); 1591 } 1592 x = MAX(x, 0); 1593 y = MAX(y, 0); 1594 x = MIN(x, width); 1595 y = MIN(y, height); 1596 w = MIN(w, width - x); 1597 h = MIN(h, height - y); 1598 1599 if (!qemu_console_is_visible(con)) { 1600 return; 1601 } 1602 QLIST_FOREACH(dcl, &s->listeners, next) { 1603 if (con != (dcl->con ? dcl->con : active_console)) { 1604 continue; 1605 } 1606 if (dcl->ops->dpy_gfx_update) { 1607 dcl->ops->dpy_gfx_update(dcl, x, y, w, h); 1608 } 1609 } 1610 } 1611 1612 void dpy_gfx_update_full(QemuConsole *con) 1613 { 1614 if (!con->surface) { 1615 return; 1616 } 1617 dpy_gfx_update(con, 0, 0, 1618 surface_width(con->surface), 1619 surface_height(con->surface)); 1620 } 1621 1622 void dpy_gfx_replace_surface(QemuConsole *con, 1623 DisplaySurface *surface) 1624 { 1625 DisplayState *s = con->ds; 1626 DisplaySurface *old_surface = con->surface; 1627 DisplayChangeListener *dcl; 1628 1629 assert(old_surface != surface || surface == NULL); 1630 1631 con->surface = surface; 1632 QLIST_FOREACH(dcl, &s->listeners, next) { 1633 if (con != (dcl->con ? dcl->con : active_console)) { 1634 continue; 1635 } 1636 if (dcl->ops->dpy_gfx_switch) { 1637 dcl->ops->dpy_gfx_switch(dcl, surface); 1638 } 1639 } 1640 qemu_free_displaysurface(old_surface); 1641 } 1642 1643 bool dpy_gfx_check_format(QemuConsole *con, 1644 pixman_format_code_t format) 1645 { 1646 DisplayChangeListener *dcl; 1647 DisplayState *s = con->ds; 1648 1649 QLIST_FOREACH(dcl, &s->listeners, next) { 1650 if (dcl->con && dcl->con != con) { 1651 /* dcl bound to another console -> skip */ 1652 continue; 1653 } 1654 if (dcl->ops->dpy_gfx_check_format) { 1655 if (!dcl->ops->dpy_gfx_check_format(dcl, format)) { 1656 return false; 1657 } 1658 } else { 1659 /* default is to whitelist native 32 bpp only */ 1660 if (format != qemu_default_pixman_format(32, true)) { 1661 return false; 1662 } 1663 } 1664 } 1665 return true; 1666 } 1667 1668 static void dpy_refresh(DisplayState *s) 1669 { 1670 DisplayChangeListener *dcl; 1671 1672 QLIST_FOREACH(dcl, &s->listeners, next) { 1673 if (dcl->ops->dpy_refresh) { 1674 dcl->ops->dpy_refresh(dcl); 1675 } 1676 } 1677 } 1678 1679 void dpy_text_cursor(QemuConsole *con, int x, int y) 1680 { 1681 DisplayState *s = con->ds; 1682 DisplayChangeListener *dcl; 1683 1684 if (!qemu_console_is_visible(con)) { 1685 return; 1686 } 1687 QLIST_FOREACH(dcl, &s->listeners, next) { 1688 if (con != (dcl->con ? dcl->con : active_console)) { 1689 continue; 1690 } 1691 if (dcl->ops->dpy_text_cursor) { 1692 dcl->ops->dpy_text_cursor(dcl, x, y); 1693 } 1694 } 1695 } 1696 1697 void dpy_text_update(QemuConsole *con, int x, int y, int w, int h) 1698 { 1699 DisplayState *s = con->ds; 1700 DisplayChangeListener *dcl; 1701 1702 if (!qemu_console_is_visible(con)) { 1703 return; 1704 } 1705 QLIST_FOREACH(dcl, &s->listeners, next) { 1706 if (con != (dcl->con ? dcl->con : active_console)) { 1707 continue; 1708 } 1709 if (dcl->ops->dpy_text_update) { 1710 dcl->ops->dpy_text_update(dcl, x, y, w, h); 1711 } 1712 } 1713 } 1714 1715 void dpy_text_resize(QemuConsole *con, int w, int h) 1716 { 1717 DisplayState *s = con->ds; 1718 DisplayChangeListener *dcl; 1719 1720 if (!qemu_console_is_visible(con)) { 1721 return; 1722 } 1723 QLIST_FOREACH(dcl, &s->listeners, next) { 1724 if (con != (dcl->con ? dcl->con : active_console)) { 1725 continue; 1726 } 1727 if (dcl->ops->dpy_text_resize) { 1728 dcl->ops->dpy_text_resize(dcl, w, h); 1729 } 1730 } 1731 } 1732 1733 void dpy_mouse_set(QemuConsole *con, int x, int y, int on) 1734 { 1735 DisplayState *s = con->ds; 1736 DisplayChangeListener *dcl; 1737 1738 if (!qemu_console_is_visible(con)) { 1739 return; 1740 } 1741 QLIST_FOREACH(dcl, &s->listeners, next) { 1742 if (con != (dcl->con ? dcl->con : active_console)) { 1743 continue; 1744 } 1745 if (dcl->ops->dpy_mouse_set) { 1746 dcl->ops->dpy_mouse_set(dcl, x, y, on); 1747 } 1748 } 1749 } 1750 1751 void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor) 1752 { 1753 DisplayState *s = con->ds; 1754 DisplayChangeListener *dcl; 1755 1756 if (!qemu_console_is_visible(con)) { 1757 return; 1758 } 1759 QLIST_FOREACH(dcl, &s->listeners, next) { 1760 if (con != (dcl->con ? dcl->con : active_console)) { 1761 continue; 1762 } 1763 if (dcl->ops->dpy_cursor_define) { 1764 dcl->ops->dpy_cursor_define(dcl, cursor); 1765 } 1766 } 1767 } 1768 1769 bool dpy_cursor_define_supported(QemuConsole *con) 1770 { 1771 DisplayState *s = con->ds; 1772 DisplayChangeListener *dcl; 1773 1774 QLIST_FOREACH(dcl, &s->listeners, next) { 1775 if (dcl->ops->dpy_cursor_define) { 1776 return true; 1777 } 1778 } 1779 return false; 1780 } 1781 1782 QEMUGLContext dpy_gl_ctx_create(QemuConsole *con, 1783 struct QEMUGLParams *qparams) 1784 { 1785 assert(con->gl); 1786 return con->gl->ops->dpy_gl_ctx_create(con->gl, qparams); 1787 } 1788 1789 void dpy_gl_ctx_destroy(QemuConsole *con, QEMUGLContext ctx) 1790 { 1791 assert(con->gl); 1792 con->gl->ops->dpy_gl_ctx_destroy(con->gl, ctx); 1793 } 1794 1795 int dpy_gl_ctx_make_current(QemuConsole *con, QEMUGLContext ctx) 1796 { 1797 assert(con->gl); 1798 return con->gl->ops->dpy_gl_ctx_make_current(con->gl, ctx); 1799 } 1800 1801 void dpy_gl_scanout_disable(QemuConsole *con) 1802 { 1803 assert(con->gl); 1804 con->gl->ops->dpy_gl_scanout_disable(con->gl); 1805 } 1806 1807 void dpy_gl_scanout_texture(QemuConsole *con, 1808 uint32_t backing_id, 1809 bool backing_y_0_top, 1810 uint32_t backing_width, 1811 uint32_t backing_height, 1812 uint32_t x, uint32_t y, 1813 uint32_t width, uint32_t height) 1814 { 1815 assert(con->gl); 1816 con->gl->ops->dpy_gl_scanout_texture(con->gl, backing_id, 1817 backing_y_0_top, 1818 backing_width, backing_height, 1819 x, y, width, height); 1820 } 1821 1822 void dpy_gl_scanout_dmabuf(QemuConsole *con, 1823 QemuDmaBuf *dmabuf) 1824 { 1825 assert(con->gl); 1826 con->gl->ops->dpy_gl_scanout_dmabuf(con->gl, dmabuf); 1827 } 1828 1829 void dpy_gl_cursor_dmabuf(QemuConsole *con, QemuDmaBuf *dmabuf, 1830 bool have_hot, uint32_t hot_x, uint32_t hot_y) 1831 { 1832 assert(con->gl); 1833 1834 if (con->gl->ops->dpy_gl_cursor_dmabuf) { 1835 con->gl->ops->dpy_gl_cursor_dmabuf(con->gl, dmabuf, 1836 have_hot, hot_x, hot_y); 1837 } 1838 } 1839 1840 void dpy_gl_cursor_position(QemuConsole *con, 1841 uint32_t pos_x, uint32_t pos_y) 1842 { 1843 assert(con->gl); 1844 1845 if (con->gl->ops->dpy_gl_cursor_position) { 1846 con->gl->ops->dpy_gl_cursor_position(con->gl, pos_x, pos_y); 1847 } 1848 } 1849 1850 void dpy_gl_release_dmabuf(QemuConsole *con, 1851 QemuDmaBuf *dmabuf) 1852 { 1853 assert(con->gl); 1854 1855 if (con->gl->ops->dpy_gl_release_dmabuf) { 1856 con->gl->ops->dpy_gl_release_dmabuf(con->gl, dmabuf); 1857 } 1858 } 1859 1860 void dpy_gl_update(QemuConsole *con, 1861 uint32_t x, uint32_t y, uint32_t w, uint32_t h) 1862 { 1863 assert(con->gl); 1864 con->gl->ops->dpy_gl_update(con->gl, x, y, w, h); 1865 } 1866 1867 /***********************************************************/ 1868 /* register display */ 1869 1870 /* console.c internal use only */ 1871 static DisplayState *get_alloc_displaystate(void) 1872 { 1873 if (!display_state) { 1874 display_state = g_new0(DisplayState, 1); 1875 cursor_timer = timer_new_ms(QEMU_CLOCK_REALTIME, 1876 text_console_update_cursor, NULL); 1877 } 1878 return display_state; 1879 } 1880 1881 /* 1882 * Called by main(), after creating QemuConsoles 1883 * and before initializing ui (sdl/vnc/...). 1884 */ 1885 DisplayState *init_displaystate(void) 1886 { 1887 gchar *name; 1888 QemuConsole *con; 1889 1890 get_alloc_displaystate(); 1891 QTAILQ_FOREACH(con, &consoles, next) { 1892 if (con->console_type != GRAPHIC_CONSOLE && 1893 con->ds == NULL) { 1894 text_console_do_init(con->chr, display_state); 1895 } 1896 1897 /* Hook up into the qom tree here (not in new_console()), once 1898 * all QemuConsoles are created and the order / numbering 1899 * doesn't change any more */ 1900 name = g_strdup_printf("console[%d]", con->index); 1901 object_property_add_child(container_get(object_get_root(), "/backend"), 1902 name, OBJECT(con)); 1903 g_free(name); 1904 } 1905 1906 return display_state; 1907 } 1908 1909 void graphic_console_set_hwops(QemuConsole *con, 1910 const GraphicHwOps *hw_ops, 1911 void *opaque) 1912 { 1913 con->hw_ops = hw_ops; 1914 con->hw = opaque; 1915 } 1916 1917 QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head, 1918 const GraphicHwOps *hw_ops, 1919 void *opaque) 1920 { 1921 static const char noinit[] = 1922 "Guest has not initialized the display (yet)."; 1923 int width = 640; 1924 int height = 480; 1925 QemuConsole *s; 1926 DisplayState *ds; 1927 DisplaySurface *surface; 1928 1929 ds = get_alloc_displaystate(); 1930 s = qemu_console_lookup_unused(); 1931 if (s) { 1932 trace_console_gfx_reuse(s->index); 1933 if (s->surface) { 1934 width = surface_width(s->surface); 1935 height = surface_height(s->surface); 1936 } 1937 } else { 1938 trace_console_gfx_new(); 1939 s = new_console(ds, GRAPHIC_CONSOLE, head); 1940 s->ui_timer = timer_new_ms(QEMU_CLOCK_REALTIME, 1941 dpy_set_ui_info_timer, s); 1942 } 1943 graphic_console_set_hwops(s, hw_ops, opaque); 1944 if (dev) { 1945 object_property_set_link(OBJECT(s), "device", OBJECT(dev), 1946 &error_abort); 1947 } 1948 1949 surface = qemu_create_message_surface(width, height, noinit); 1950 dpy_gfx_replace_surface(s, surface); 1951 return s; 1952 } 1953 1954 static const GraphicHwOps unused_ops = { 1955 /* no callbacks */ 1956 }; 1957 1958 void graphic_console_close(QemuConsole *con) 1959 { 1960 static const char unplugged[] = 1961 "Guest display has been unplugged"; 1962 DisplaySurface *surface; 1963 int width = 640; 1964 int height = 480; 1965 1966 if (con->surface) { 1967 width = surface_width(con->surface); 1968 height = surface_height(con->surface); 1969 } 1970 1971 trace_console_gfx_close(con->index); 1972 object_property_set_link(OBJECT(con), "device", NULL, &error_abort); 1973 graphic_console_set_hwops(con, &unused_ops, NULL); 1974 1975 if (con->gl) { 1976 dpy_gl_scanout_disable(con); 1977 } 1978 surface = qemu_create_message_surface(width, height, unplugged); 1979 dpy_gfx_replace_surface(con, surface); 1980 } 1981 1982 QemuConsole *qemu_console_lookup_by_index(unsigned int index) 1983 { 1984 QemuConsole *con; 1985 1986 QTAILQ_FOREACH(con, &consoles, next) { 1987 if (con->index == index) { 1988 return con; 1989 } 1990 } 1991 return NULL; 1992 } 1993 1994 QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head) 1995 { 1996 QemuConsole *con; 1997 Object *obj; 1998 uint32_t h; 1999 2000 QTAILQ_FOREACH(con, &consoles, next) { 2001 obj = object_property_get_link(OBJECT(con), 2002 "device", &error_abort); 2003 if (DEVICE(obj) != dev) { 2004 continue; 2005 } 2006 h = object_property_get_uint(OBJECT(con), 2007 "head", &error_abort); 2008 if (h != head) { 2009 continue; 2010 } 2011 return con; 2012 } 2013 return NULL; 2014 } 2015 2016 QemuConsole *qemu_console_lookup_by_device_name(const char *device_id, 2017 uint32_t head, Error **errp) 2018 { 2019 DeviceState *dev; 2020 QemuConsole *con; 2021 2022 dev = qdev_find_recursive(sysbus_get_default(), device_id); 2023 if (dev == NULL) { 2024 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, 2025 "Device '%s' not found", device_id); 2026 return NULL; 2027 } 2028 2029 con = qemu_console_lookup_by_device(dev, head); 2030 if (con == NULL) { 2031 error_setg(errp, "Device %s (head %d) is not bound to a QemuConsole", 2032 device_id, head); 2033 return NULL; 2034 } 2035 2036 return con; 2037 } 2038 2039 QemuConsole *qemu_console_lookup_unused(void) 2040 { 2041 QemuConsole *con; 2042 Object *obj; 2043 2044 QTAILQ_FOREACH(con, &consoles, next) { 2045 if (con->hw_ops != &unused_ops) { 2046 continue; 2047 } 2048 obj = object_property_get_link(OBJECT(con), 2049 "device", &error_abort); 2050 if (obj != NULL) { 2051 continue; 2052 } 2053 return con; 2054 } 2055 return NULL; 2056 } 2057 2058 bool qemu_console_is_visible(QemuConsole *con) 2059 { 2060 return (con == active_console) || (con->dcls > 0); 2061 } 2062 2063 bool qemu_console_is_graphic(QemuConsole *con) 2064 { 2065 if (con == NULL) { 2066 con = active_console; 2067 } 2068 return con && (con->console_type == GRAPHIC_CONSOLE); 2069 } 2070 2071 bool qemu_console_is_fixedsize(QemuConsole *con) 2072 { 2073 if (con == NULL) { 2074 con = active_console; 2075 } 2076 return con && (con->console_type != TEXT_CONSOLE); 2077 } 2078 2079 bool qemu_console_is_gl_blocked(QemuConsole *con) 2080 { 2081 assert(con != NULL); 2082 return con->gl_block; 2083 } 2084 2085 char *qemu_console_get_label(QemuConsole *con) 2086 { 2087 if (con->console_type == GRAPHIC_CONSOLE) { 2088 if (con->device) { 2089 return g_strdup(object_get_typename(con->device)); 2090 } 2091 return g_strdup("VGA"); 2092 } else { 2093 if (con->chr && con->chr->label) { 2094 return g_strdup(con->chr->label); 2095 } 2096 return g_strdup_printf("vc%d", con->index); 2097 } 2098 } 2099 2100 int qemu_console_get_index(QemuConsole *con) 2101 { 2102 if (con == NULL) { 2103 con = active_console; 2104 } 2105 return con ? con->index : -1; 2106 } 2107 2108 uint32_t qemu_console_get_head(QemuConsole *con) 2109 { 2110 if (con == NULL) { 2111 con = active_console; 2112 } 2113 return con ? con->head : -1; 2114 } 2115 2116 int qemu_console_get_width(QemuConsole *con, int fallback) 2117 { 2118 if (con == NULL) { 2119 con = active_console; 2120 } 2121 return con ? surface_width(con->surface) : fallback; 2122 } 2123 2124 int qemu_console_get_height(QemuConsole *con, int fallback) 2125 { 2126 if (con == NULL) { 2127 con = active_console; 2128 } 2129 return con ? surface_height(con->surface) : fallback; 2130 } 2131 2132 static void vc_chr_set_echo(Chardev *chr, bool echo) 2133 { 2134 VCChardev *drv = VC_CHARDEV(chr); 2135 QemuConsole *s = drv->console; 2136 2137 s->echo = echo; 2138 } 2139 2140 static void text_console_update_cursor_timer(void) 2141 { 2142 timer_mod(cursor_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) 2143 + CONSOLE_CURSOR_PERIOD / 2); 2144 } 2145 2146 static void text_console_update_cursor(void *opaque) 2147 { 2148 QemuConsole *s; 2149 int count = 0; 2150 2151 cursor_visible_phase = !cursor_visible_phase; 2152 2153 QTAILQ_FOREACH(s, &consoles, next) { 2154 if (qemu_console_is_graphic(s) || 2155 !qemu_console_is_visible(s)) { 2156 continue; 2157 } 2158 count++; 2159 graphic_hw_invalidate(s); 2160 } 2161 2162 if (count) { 2163 text_console_update_cursor_timer(); 2164 } 2165 } 2166 2167 static const GraphicHwOps text_console_ops = { 2168 .invalidate = text_console_invalidate, 2169 .text_update = text_console_update, 2170 }; 2171 2172 static void text_console_do_init(Chardev *chr, DisplayState *ds) 2173 { 2174 VCChardev *drv = VC_CHARDEV(chr); 2175 QemuConsole *s = drv->console; 2176 int g_width = 80 * FONT_WIDTH; 2177 int g_height = 24 * FONT_HEIGHT; 2178 2179 s->out_fifo.buf = s->out_fifo_buf; 2180 s->out_fifo.buf_size = sizeof(s->out_fifo_buf); 2181 s->kbd_timer = timer_new_ms(QEMU_CLOCK_REALTIME, kbd_send_chars, s); 2182 s->ds = ds; 2183 2184 s->y_displayed = 0; 2185 s->y_base = 0; 2186 s->total_height = DEFAULT_BACKSCROLL; 2187 s->x = 0; 2188 s->y = 0; 2189 if (!s->surface) { 2190 if (active_console && active_console->surface) { 2191 g_width = surface_width(active_console->surface); 2192 g_height = surface_height(active_console->surface); 2193 } 2194 s->surface = qemu_create_displaysurface(g_width, g_height); 2195 } 2196 2197 s->hw_ops = &text_console_ops; 2198 s->hw = s; 2199 2200 /* Set text attribute defaults */ 2201 s->t_attrib_default.bold = 0; 2202 s->t_attrib_default.uline = 0; 2203 s->t_attrib_default.blink = 0; 2204 s->t_attrib_default.invers = 0; 2205 s->t_attrib_default.unvisible = 0; 2206 s->t_attrib_default.fgcol = QEMU_COLOR_WHITE; 2207 s->t_attrib_default.bgcol = QEMU_COLOR_BLACK; 2208 /* set current text attributes to default */ 2209 s->t_attrib = s->t_attrib_default; 2210 text_console_resize(s); 2211 2212 if (chr->label) { 2213 char *msg; 2214 2215 s->t_attrib.bgcol = QEMU_COLOR_BLUE; 2216 msg = g_strdup_printf("%s console\r\n", chr->label); 2217 vc_chr_write(chr, (uint8_t *)msg, strlen(msg)); 2218 g_free(msg); 2219 s->t_attrib = s->t_attrib_default; 2220 } 2221 2222 qemu_chr_be_event(chr, CHR_EVENT_OPENED); 2223 } 2224 2225 static void vc_chr_open(Chardev *chr, 2226 ChardevBackend *backend, 2227 bool *be_opened, 2228 Error **errp) 2229 { 2230 ChardevVC *vc = backend->u.vc.data; 2231 VCChardev *drv = VC_CHARDEV(chr); 2232 QemuConsole *s; 2233 unsigned width = 0; 2234 unsigned height = 0; 2235 2236 if (vc->has_width) { 2237 width = vc->width; 2238 } else if (vc->has_cols) { 2239 width = vc->cols * FONT_WIDTH; 2240 } 2241 2242 if (vc->has_height) { 2243 height = vc->height; 2244 } else if (vc->has_rows) { 2245 height = vc->rows * FONT_HEIGHT; 2246 } 2247 2248 trace_console_txt_new(width, height); 2249 if (width == 0 || height == 0) { 2250 s = new_console(NULL, TEXT_CONSOLE, 0); 2251 } else { 2252 s = new_console(NULL, TEXT_CONSOLE_FIXED_SIZE, 0); 2253 s->surface = qemu_create_displaysurface(width, height); 2254 } 2255 2256 if (!s) { 2257 error_setg(errp, "cannot create text console"); 2258 return; 2259 } 2260 2261 s->chr = chr; 2262 drv->console = s; 2263 2264 if (display_state) { 2265 text_console_do_init(chr, display_state); 2266 } 2267 2268 /* console/chardev init sometimes completes elsewhere in a 2nd 2269 * stage, so defer OPENED events until they are fully initialized 2270 */ 2271 *be_opened = false; 2272 } 2273 2274 void qemu_console_resize(QemuConsole *s, int width, int height) 2275 { 2276 DisplaySurface *surface; 2277 2278 assert(s->console_type == GRAPHIC_CONSOLE); 2279 2280 if (s->surface && (s->surface->flags & QEMU_ALLOCATED_FLAG) && 2281 pixman_image_get_width(s->surface->image) == width && 2282 pixman_image_get_height(s->surface->image) == height) { 2283 return; 2284 } 2285 2286 surface = qemu_create_displaysurface(width, height); 2287 dpy_gfx_replace_surface(s, surface); 2288 } 2289 2290 DisplaySurface *qemu_console_surface(QemuConsole *console) 2291 { 2292 return console->surface; 2293 } 2294 2295 PixelFormat qemu_default_pixelformat(int bpp) 2296 { 2297 pixman_format_code_t fmt = qemu_default_pixman_format(bpp, true); 2298 PixelFormat pf = qemu_pixelformat_from_pixman(fmt); 2299 return pf; 2300 } 2301 2302 static QemuDisplay *dpys[DISPLAY_TYPE__MAX]; 2303 2304 void qemu_display_register(QemuDisplay *ui) 2305 { 2306 assert(ui->type < DISPLAY_TYPE__MAX); 2307 dpys[ui->type] = ui; 2308 } 2309 2310 bool qemu_display_find_default(DisplayOptions *opts) 2311 { 2312 static DisplayType prio[] = { 2313 DISPLAY_TYPE_GTK, 2314 DISPLAY_TYPE_SDL, 2315 DISPLAY_TYPE_COCOA 2316 }; 2317 int i; 2318 2319 for (i = 0; i < ARRAY_SIZE(prio); i++) { 2320 if (dpys[prio[i]] == NULL) { 2321 ui_module_load_one(DisplayType_str(prio[i])); 2322 } 2323 if (dpys[prio[i]] == NULL) { 2324 continue; 2325 } 2326 opts->type = prio[i]; 2327 return true; 2328 } 2329 return false; 2330 } 2331 2332 void qemu_display_early_init(DisplayOptions *opts) 2333 { 2334 assert(opts->type < DISPLAY_TYPE__MAX); 2335 if (opts->type == DISPLAY_TYPE_NONE) { 2336 return; 2337 } 2338 if (dpys[opts->type] == NULL) { 2339 ui_module_load_one(DisplayType_str(opts->type)); 2340 } 2341 if (dpys[opts->type] == NULL) { 2342 error_report("Display '%s' is not available.", 2343 DisplayType_str(opts->type)); 2344 exit(1); 2345 } 2346 if (dpys[opts->type]->early_init) { 2347 dpys[opts->type]->early_init(opts); 2348 } 2349 } 2350 2351 void qemu_display_init(DisplayState *ds, DisplayOptions *opts) 2352 { 2353 assert(opts->type < DISPLAY_TYPE__MAX); 2354 if (opts->type == DISPLAY_TYPE_NONE) { 2355 return; 2356 } 2357 assert(dpys[opts->type] != NULL); 2358 dpys[opts->type]->init(ds, opts); 2359 } 2360 2361 void qemu_display_help(void) 2362 { 2363 int idx; 2364 2365 printf("Available display backend types:\n"); 2366 printf("none\n"); 2367 for (idx = DISPLAY_TYPE_NONE; idx < DISPLAY_TYPE__MAX; idx++) { 2368 if (!dpys[idx]) { 2369 ui_module_load_one(DisplayType_str(idx)); 2370 } 2371 if (dpys[idx]) { 2372 printf("%s\n", DisplayType_str(dpys[idx]->type)); 2373 } 2374 } 2375 } 2376 2377 void qemu_chr_parse_vc(QemuOpts *opts, ChardevBackend *backend, Error **errp) 2378 { 2379 int val; 2380 ChardevVC *vc; 2381 2382 backend->type = CHARDEV_BACKEND_KIND_VC; 2383 vc = backend->u.vc.data = g_new0(ChardevVC, 1); 2384 qemu_chr_parse_common(opts, qapi_ChardevVC_base(vc)); 2385 2386 val = qemu_opt_get_number(opts, "width", 0); 2387 if (val != 0) { 2388 vc->has_width = true; 2389 vc->width = val; 2390 } 2391 2392 val = qemu_opt_get_number(opts, "height", 0); 2393 if (val != 0) { 2394 vc->has_height = true; 2395 vc->height = val; 2396 } 2397 2398 val = qemu_opt_get_number(opts, "cols", 0); 2399 if (val != 0) { 2400 vc->has_cols = true; 2401 vc->cols = val; 2402 } 2403 2404 val = qemu_opt_get_number(opts, "rows", 0); 2405 if (val != 0) { 2406 vc->has_rows = true; 2407 vc->rows = val; 2408 } 2409 } 2410 2411 static const TypeInfo qemu_console_info = { 2412 .name = TYPE_QEMU_CONSOLE, 2413 .parent = TYPE_OBJECT, 2414 .instance_size = sizeof(QemuConsole), 2415 .class_size = sizeof(QemuConsoleClass), 2416 }; 2417 2418 static void char_vc_class_init(ObjectClass *oc, void *data) 2419 { 2420 ChardevClass *cc = CHARDEV_CLASS(oc); 2421 2422 cc->parse = qemu_chr_parse_vc; 2423 cc->open = vc_chr_open; 2424 cc->chr_write = vc_chr_write; 2425 cc->chr_set_echo = vc_chr_set_echo; 2426 } 2427 2428 static const TypeInfo char_vc_type_info = { 2429 .name = TYPE_CHARDEV_VC, 2430 .parent = TYPE_CHARDEV, 2431 .instance_size = sizeof(VCChardev), 2432 .class_init = char_vc_class_init, 2433 }; 2434 2435 void qemu_console_early_init(void) 2436 { 2437 /* set the default vc driver */ 2438 if (!object_class_by_name(TYPE_CHARDEV_VC)) { 2439 type_register(&char_vc_type_info); 2440 } 2441 } 2442 2443 static void register_types(void) 2444 { 2445 type_register_static(&qemu_console_info); 2446 } 2447 2448 type_init(register_types); 2449