xref: /freebsd/sys/dev/vt/vt_core.c (revision e3514747256465c52c3b2aedc9795f52c0d3efe9)
1 /*-
2  * Copyright (c) 2009, 2013 The FreeBSD Foundation
3  * All rights reserved.
4  *
5  * This software was developed by Ed Schouten under sponsorship from the
6  * FreeBSD Foundation.
7  *
8  * Portions of this software were developed by Oleksandr Rybalko
9  * under sponsorship from the FreeBSD Foundation.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 #include "opt_compat.h"
37 
38 #include <sys/param.h>
39 #include <sys/consio.h>
40 #include <sys/eventhandler.h>
41 #include <sys/fbio.h>
42 #include <sys/kbio.h>
43 #include <sys/kdb.h>
44 #include <sys/kernel.h>
45 #include <sys/lock.h>
46 #include <sys/malloc.h>
47 #include <sys/mutex.h>
48 #include <sys/power.h>
49 #include <sys/priv.h>
50 #include <sys/proc.h>
51 #include <sys/random.h>
52 #include <sys/reboot.h>
53 #include <sys/systm.h>
54 #include <sys/terminal.h>
55 
56 #include <dev/kbd/kbdreg.h>
57 #include <dev/vt/vt.h>
58 
59 #if defined(__i386__) || defined(__amd64__)
60 #include <machine/psl.h>
61 #include <machine/frame.h>
62 #endif
63 
64 static tc_bell_t	vtterm_bell;
65 static tc_cursor_t	vtterm_cursor;
66 static tc_putchar_t	vtterm_putchar;
67 static tc_fill_t	vtterm_fill;
68 static tc_copy_t	vtterm_copy;
69 static tc_param_t	vtterm_param;
70 static tc_done_t	vtterm_done;
71 
72 static tc_cnprobe_t	vtterm_cnprobe;
73 static tc_cngetc_t	vtterm_cngetc;
74 
75 static tc_cngrab_t	vtterm_cngrab;
76 static tc_cnungrab_t	vtterm_cnungrab;
77 
78 static tc_opened_t	vtterm_opened;
79 static tc_ioctl_t	vtterm_ioctl;
80 static tc_mmap_t	vtterm_mmap;
81 
82 const struct terminal_class vt_termclass = {
83 	.tc_bell	= vtterm_bell,
84 	.tc_cursor	= vtterm_cursor,
85 	.tc_putchar	= vtterm_putchar,
86 	.tc_fill	= vtterm_fill,
87 	.tc_copy	= vtterm_copy,
88 	.tc_param	= vtterm_param,
89 	.tc_done	= vtterm_done,
90 
91 	.tc_cnprobe	= vtterm_cnprobe,
92 	.tc_cngetc	= vtterm_cngetc,
93 
94 	.tc_cngrab	= vtterm_cngrab,
95 	.tc_cnungrab	= vtterm_cnungrab,
96 
97 	.tc_opened	= vtterm_opened,
98 	.tc_ioctl	= vtterm_ioctl,
99 	.tc_mmap	= vtterm_mmap,
100 };
101 
102 /*
103  * Use a constant timer of 25 Hz to redraw the screen.
104  *
105  * XXX: In theory we should only fire up the timer when there is really
106  * activity. Unfortunately we cannot always start timers. We really
107  * don't want to process kernel messages synchronously, because it
108  * really slows down the system.
109  */
110 #define	VT_TIMERFREQ	25
111 
112 /* Bell pitch/duration. */
113 #define	VT_BELLDURATION	((5 * hz + 99) / 100)
114 #define	VT_BELLPITCH	800
115 
116 #define	VT_UNIT(vw)	((vw)->vw_device->vd_unit * VT_MAXWINDOWS + \
117 			(vw)->vw_number)
118 
119 static SYSCTL_NODE(_kern, OID_AUTO, vt, CTLFLAG_RD, 0, "vt(9) parameters");
120 static VT_SYSCTL_INT(enable_altgr, 1, "Enable AltGr key (Do not assume R.Alt as Alt)");
121 static VT_SYSCTL_INT(enable_bell, 1, "Enable bell");
122 static VT_SYSCTL_INT(debug, 0, "vt(9) debug level");
123 static VT_SYSCTL_INT(deadtimer, 15, "Time to wait busy process in VT_PROCESS mode");
124 static VT_SYSCTL_INT(suspendswitch, 1, "Switch to VT0 before suspend");
125 
126 /* Allow to disable some keyboard combinations. */
127 static VT_SYSCTL_INT(kbd_halt, 1, "Enable halt keyboard combination.  "
128     "See kbdmap(5) to configure.");
129 static VT_SYSCTL_INT(kbd_poweroff, 1, "Enable Power Off keyboard combination.  "
130     "See kbdmap(5) to configure.");
131 static VT_SYSCTL_INT(kbd_reboot, 1, "Enable reboot keyboard combination.  "
132     "See kbdmap(5) to configure (typically Ctrl-Alt-Delete).");
133 static VT_SYSCTL_INT(kbd_debug, 1, "Enable key combination to enter debugger.  "
134     "See kbdmap(5) to configure (typically Ctrl-Alt-Esc).");
135 static VT_SYSCTL_INT(kbd_panic, 0, "Enable request to panic.  "
136     "See kbdmap(5) to configure.");
137 
138 /* Used internally, not a tunable. */
139 int vt_draw_logo_cpus;
140 VT_SYSCTL_INT(splash_cpu, 0, "Show logo CPUs during boot");
141 VT_SYSCTL_INT(splash_ncpu, 0, "Override number of logos displayed "
142     "(0 = do not override)");
143 VT_SYSCTL_INT(splash_cpu_style, 2, "Draw logo style "
144     "(0 = Alternate beastie, 1 = Beastie, 2 = Orb)");
145 VT_SYSCTL_INT(splash_cpu_duration, 10, "Hide logos after (seconds)");
146 
147 static unsigned int vt_unit = 0;
148 static MALLOC_DEFINE(M_VT, "vt", "vt device");
149 struct vt_device *main_vd = &vt_consdev;
150 
151 /* Boot logo. */
152 extern unsigned int vt_logo_width;
153 extern unsigned int vt_logo_height;
154 extern unsigned int vt_logo_depth;
155 extern unsigned char vt_logo_image[];
156 #ifndef DEV_SPLASH
157 #define	vtterm_draw_cpu_logos(...)	do {} while (0)
158 const unsigned int vt_logo_sprite_height;
159 #endif
160 
161 /* Font. */
162 extern struct vt_font vt_font_default;
163 #ifndef SC_NO_CUTPASTE
164 extern struct vt_mouse_cursor vt_default_mouse_pointer;
165 #endif
166 
167 static int signal_vt_rel(struct vt_window *);
168 static int signal_vt_acq(struct vt_window *);
169 static int finish_vt_rel(struct vt_window *, int, int *);
170 static int finish_vt_acq(struct vt_window *);
171 static int vt_window_switch(struct vt_window *);
172 static int vt_late_window_switch(struct vt_window *);
173 static int vt_proc_alive(struct vt_window *);
174 static void vt_resize(struct vt_device *);
175 static void vt_update_static(void *);
176 #ifndef SC_NO_CUTPASTE
177 static void vt_mouse_paste(void);
178 #endif
179 static void vt_suspend_handler(void *priv);
180 static void vt_resume_handler(void *priv);
181 
182 SET_DECLARE(vt_drv_set, struct vt_driver);
183 
184 #define	_VTDEFH	MAX(100, PIXEL_HEIGHT(VT_FB_MAX_HEIGHT))
185 #define	_VTDEFW	MAX(200, PIXEL_WIDTH(VT_FB_MAX_WIDTH))
186 
187 struct terminal	vt_consterm;
188 static struct vt_window	vt_conswindow;
189 struct vt_device	vt_consdev = {
190 	.vd_driver = NULL,
191 	.vd_softc = NULL,
192 	.vd_prev_driver = NULL,
193 	.vd_prev_softc = NULL,
194 	.vd_flags = VDF_INVALID,
195 	.vd_windows = { [VT_CONSWINDOW] =  &vt_conswindow, },
196 	.vd_curwindow = &vt_conswindow,
197 	.vd_kbstate = 0,
198 
199 #ifndef SC_NO_CUTPASTE
200 	.vd_pastebuf = {
201 		.vpb_buf = NULL,
202 		.vpb_bufsz = 0,
203 		.vpb_len = 0
204 	},
205 	.vd_mcursor = &vt_default_mouse_pointer,
206 	.vd_mcursor_fg = TC_WHITE,
207 	.vd_mcursor_bg = TC_BLACK,
208 #endif
209 };
210 static term_char_t vt_constextbuf[(_VTDEFW) * (VBF_DEFAULT_HISTORY_SIZE)];
211 static term_char_t *vt_constextbufrows[VBF_DEFAULT_HISTORY_SIZE];
212 static struct vt_window	vt_conswindow = {
213 	.vw_number = VT_CONSWINDOW,
214 	.vw_flags = VWF_CONSOLE,
215 	.vw_buf = {
216 		.vb_buffer = &vt_constextbuf[0],
217 		.vb_rows = &vt_constextbufrows[0],
218 		.vb_history_size = VBF_DEFAULT_HISTORY_SIZE,
219 		.vb_curroffset = 0,
220 		.vb_roffset = 0,
221 		.vb_flags = VBF_STATIC,
222 		.vb_mark_start = {.tp_row = 0, .tp_col = 0,},
223 		.vb_mark_end = {.tp_row = 0, .tp_col = 0,},
224 		.vb_scr_size = {
225 			.tp_row = _VTDEFH,
226 			.tp_col = _VTDEFW,
227 		},
228 	},
229 	.vw_device = &vt_consdev,
230 	.vw_terminal = &vt_consterm,
231 	.vw_kbdmode = K_XLATE,
232 	.vw_grabbed = 0,
233 };
234 struct terminal vt_consterm = {
235 	.tm_class = &vt_termclass,
236 	.tm_softc = &vt_conswindow,
237 	.tm_flags = TF_CONS,
238 };
239 static struct consdev vt_consterm_consdev = {
240 	.cn_ops = &termcn_cnops,
241 	.cn_arg = &vt_consterm,
242 	.cn_name = "ttyv0",
243 };
244 
245 /* Add to set of consoles. */
246 DATA_SET(cons_set, vt_consterm_consdev);
247 
248 /*
249  * Right after kmem is done to allow early drivers to use locking and allocate
250  * memory.
251  */
252 SYSINIT(vt_update_static, SI_SUB_KMEM, SI_ORDER_ANY, vt_update_static,
253     &vt_consdev);
254 /* Delay until all devices attached, to not waste time. */
255 SYSINIT(vt_early_cons, SI_SUB_INT_CONFIG_HOOKS, SI_ORDER_ANY, vt_upgrade,
256     &vt_consdev);
257 
258 /* Initialize locks/mem depended members. */
259 static void
260 vt_update_static(void *dummy)
261 {
262 
263 	if (!vty_enabled(VTY_VT))
264 		return;
265 	if (main_vd->vd_driver != NULL)
266 		printf("VT(%s): %s %ux%u\n", main_vd->vd_driver->vd_name,
267 		    (main_vd->vd_flags & VDF_TEXTMODE) ? "text" : "resolution",
268 		    main_vd->vd_width, main_vd->vd_height);
269 	else
270 		printf("VT: init without driver.\n");
271 
272 	mtx_init(&main_vd->vd_lock, "vtdev", NULL, MTX_DEF);
273 	cv_init(&main_vd->vd_winswitch, "vtwswt");
274 }
275 
276 static void
277 vt_schedule_flush(struct vt_device *vd, int ms)
278 {
279 
280 	if (ms <= 0)
281 		/* Default to initial value. */
282 		ms = 1000 / VT_TIMERFREQ;
283 
284 	callout_schedule(&vd->vd_timer, hz / (1000 / ms));
285 }
286 
287 void
288 vt_resume_flush_timer(struct vt_device *vd, int ms)
289 {
290 
291 	if (!(vd->vd_flags & VDF_ASYNC) ||
292 	    !atomic_cmpset_int(&vd->vd_timer_armed, 0, 1))
293 		return;
294 
295 	vt_schedule_flush(vd, ms);
296 }
297 
298 static void
299 vt_suspend_flush_timer(struct vt_device *vd)
300 {
301 	/*
302 	 * As long as this function is called locked, callout_stop()
303 	 * has the same effect like callout_drain() with regard to
304 	 * preventing the callback function from executing.
305 	 */
306 	VT_LOCK_ASSERT(vd, MA_OWNED);
307 
308 	if (!(vd->vd_flags & VDF_ASYNC) ||
309 	    !atomic_cmpset_int(&vd->vd_timer_armed, 1, 0))
310 		return;
311 
312 	callout_stop(&vd->vd_timer);
313 }
314 
315 static void
316 vt_switch_timer(void *arg)
317 {
318 
319 	vt_late_window_switch((struct vt_window *)arg);
320 }
321 
322 static int
323 vt_save_kbd_mode(struct vt_window *vw, keyboard_t *kbd)
324 {
325 	int mode, ret;
326 
327 	mode = 0;
328 	ret = kbdd_ioctl(kbd, KDGKBMODE, (caddr_t)&mode);
329 	if (ret == ENOIOCTL)
330 		ret = ENODEV;
331 	if (ret != 0)
332 		return (ret);
333 
334 	vw->vw_kbdmode = mode;
335 
336 	return (0);
337 }
338 
339 static int
340 vt_update_kbd_mode(struct vt_window *vw, keyboard_t *kbd)
341 {
342 	int ret;
343 
344 	ret = kbdd_ioctl(kbd, KDSKBMODE, (caddr_t)&vw->vw_kbdmode);
345 	if (ret == ENOIOCTL)
346 		ret = ENODEV;
347 
348 	return (ret);
349 }
350 
351 static int
352 vt_save_kbd_state(struct vt_window *vw, keyboard_t *kbd)
353 {
354 	int state, ret;
355 
356 	state = 0;
357 	ret = kbdd_ioctl(kbd, KDGKBSTATE, (caddr_t)&state);
358 	if (ret == ENOIOCTL)
359 		ret = ENODEV;
360 	if (ret != 0)
361 		return (ret);
362 
363 	vw->vw_kbdstate &= ~LOCK_MASK;
364 	vw->vw_kbdstate |= state & LOCK_MASK;
365 
366 	return (0);
367 }
368 
369 static int
370 vt_update_kbd_state(struct vt_window *vw, keyboard_t *kbd)
371 {
372 	int state, ret;
373 
374 	state = vw->vw_kbdstate & LOCK_MASK;
375 	ret = kbdd_ioctl(kbd, KDSKBSTATE, (caddr_t)&state);
376 	if (ret == ENOIOCTL)
377 		ret = ENODEV;
378 
379 	return (ret);
380 }
381 
382 static int
383 vt_save_kbd_leds(struct vt_window *vw, keyboard_t *kbd)
384 {
385 	int leds, ret;
386 
387 	leds = 0;
388 	ret = kbdd_ioctl(kbd, KDGETLED, (caddr_t)&leds);
389 	if (ret == ENOIOCTL)
390 		ret = ENODEV;
391 	if (ret != 0)
392 		return (ret);
393 
394 	vw->vw_kbdstate &= ~LED_MASK;
395 	vw->vw_kbdstate |= leds & LED_MASK;
396 
397 	return (0);
398 }
399 
400 static int
401 vt_update_kbd_leds(struct vt_window *vw, keyboard_t *kbd)
402 {
403 	int leds, ret;
404 
405 	leds = vw->vw_kbdstate & LED_MASK;
406 	ret = kbdd_ioctl(kbd, KDSETLED, (caddr_t)&leds);
407 	if (ret == ENOIOCTL)
408 		ret = ENODEV;
409 
410 	return (ret);
411 }
412 
413 static int
414 vt_window_preswitch(struct vt_window *vw, struct vt_window *curvw)
415 {
416 
417 	DPRINTF(40, "%s\n", __func__);
418 	curvw->vw_switch_to = vw;
419 	/* Set timer to allow switch in case when process hang. */
420 	callout_reset(&vw->vw_proc_dead_timer, hz * vt_deadtimer,
421 	    vt_switch_timer, (void *)vw);
422 	/* Notify process about vt switch attempt. */
423 	DPRINTF(30, "%s: Notify process.\n", __func__);
424 	signal_vt_rel(curvw);
425 
426 	return (0);
427 }
428 
429 static int
430 vt_window_postswitch(struct vt_window *vw)
431 {
432 
433 	signal_vt_acq(vw);
434 	return (0);
435 }
436 
437 /* vt_late_window_switch will done VT switching for regular case. */
438 static int
439 vt_late_window_switch(struct vt_window *vw)
440 {
441 	int ret;
442 
443 	callout_stop(&vw->vw_proc_dead_timer);
444 
445 	ret = vt_window_switch(vw);
446 	if (ret)
447 		return (ret);
448 
449 	/* Notify owner process about terminal availability. */
450 	if (vw->vw_smode.mode == VT_PROCESS) {
451 		ret = vt_window_postswitch(vw);
452 	}
453 	return (ret);
454 }
455 
456 /* Switch window. */
457 static int
458 vt_proc_window_switch(struct vt_window *vw)
459 {
460 	struct vt_window *curvw;
461 	struct vt_device *vd;
462 	int ret;
463 
464 	/* Prevent switching to NULL */
465 	if (vw == NULL) {
466 		DPRINTF(30, "%s: Cannot switch: vw is NULL.", __func__);
467 		return (EINVAL);
468 	}
469 	vd = vw->vw_device;
470 	curvw = vd->vd_curwindow;
471 
472 	/* Check if virtual terminal is locked */
473 	if (curvw->vw_flags & VWF_VTYLOCK)
474 		return (EBUSY);
475 
476 	/* Check if switch already in progress */
477 	if (curvw->vw_flags & VWF_SWWAIT_REL) {
478 		/* Check if switching to same window */
479 		if (curvw->vw_switch_to == vw) {
480 			DPRINTF(30, "%s: Switch in progress to same vw.", __func__);
481 			return (0);	/* success */
482 		}
483 		DPRINTF(30, "%s: Switch in progress to different vw.", __func__);
484 		return (EBUSY);
485 	}
486 
487 	/* Avoid switching to already selected window */
488 	if (vw == curvw) {
489 		DPRINTF(30, "%s: Cannot switch: vw == curvw.", __func__);
490 		return (0);	/* success */
491 	}
492 
493 	/* Ask current process permission to switch away. */
494 	if (curvw->vw_smode.mode == VT_PROCESS) {
495 		DPRINTF(30, "%s: VT_PROCESS ", __func__);
496 		if (vt_proc_alive(curvw) == FALSE) {
497 			DPRINTF(30, "Dead. Cleaning.");
498 			/* Dead */
499 		} else {
500 			DPRINTF(30, "%s: Signaling process.\n", __func__);
501 			/* Alive, try to ask him. */
502 			ret = vt_window_preswitch(vw, curvw);
503 			/* Wait for process answer or timeout. */
504 			return (ret);
505 		}
506 		DPRINTF(30, "\n");
507 	}
508 
509 	ret = vt_late_window_switch(vw);
510 	return (ret);
511 }
512 
513 /* Switch window ignoring process locking. */
514 static int
515 vt_window_switch(struct vt_window *vw)
516 {
517 	struct vt_device *vd = vw->vw_device;
518 	struct vt_window *curvw = vd->vd_curwindow;
519 	keyboard_t *kbd;
520 
521 	VT_LOCK(vd);
522 	if (curvw == vw) {
523 		/* Nothing to do. */
524 		VT_UNLOCK(vd);
525 		return (0);
526 	}
527 	if (!(vw->vw_flags & (VWF_OPENED|VWF_CONSOLE))) {
528 		VT_UNLOCK(vd);
529 		return (EINVAL);
530 	}
531 
532 	vt_suspend_flush_timer(vd);
533 
534 	vd->vd_curwindow = vw;
535 	vd->vd_flags |= VDF_INVALID;
536 	cv_broadcast(&vd->vd_winswitch);
537 	VT_UNLOCK(vd);
538 
539 	if (vd->vd_driver->vd_postswitch)
540 		vd->vd_driver->vd_postswitch(vd);
541 
542 	vt_resume_flush_timer(vd, 0);
543 
544 	/* Restore per-window keyboard mode. */
545 	mtx_lock(&Giant);
546 	kbd = kbd_get_keyboard(vd->vd_keyboard);
547 	if (kbd != NULL) {
548 		if (curvw->vw_kbdmode == K_XLATE)
549 			vt_save_kbd_state(curvw, kbd);
550 
551 		vt_update_kbd_mode(vw, kbd);
552 		vt_update_kbd_state(vw, kbd);
553 	}
554 	mtx_unlock(&Giant);
555 	DPRINTF(10, "%s(ttyv%d) done\n", __func__, vw->vw_number);
556 
557 	return (0);
558 }
559 
560 void
561 vt_termsize(struct vt_device *vd, struct vt_font *vf, term_pos_t *size)
562 {
563 
564 	size->tp_row = vd->vd_height;
565 	if (vt_draw_logo_cpus)
566 		size->tp_row -= vt_logo_sprite_height;
567 	size->tp_col = vd->vd_width;
568 	if (vf != NULL) {
569 		size->tp_row /= vf->vf_height;
570 		size->tp_col /= vf->vf_width;
571 	}
572 }
573 
574 static inline void
575 vt_termrect(struct vt_device *vd, struct vt_font *vf, term_rect_t *rect)
576 {
577 
578 	rect->tr_begin.tp_row = rect->tr_begin.tp_col = 0;
579 	if (vt_draw_logo_cpus)
580 		rect->tr_begin.tp_row = vt_logo_sprite_height;
581 
582 	rect->tr_end.tp_row = vd->vd_height;
583 	rect->tr_end.tp_col = vd->vd_width;
584 
585 	if (vf != NULL) {
586 		rect->tr_begin.tp_row =
587 		    howmany(rect->tr_begin.tp_row, vf->vf_height);
588 
589 		rect->tr_end.tp_row /= vf->vf_height;
590 		rect->tr_end.tp_col /= vf->vf_width;
591 	}
592 }
593 
594 void
595 vt_winsize(struct vt_device *vd, struct vt_font *vf, struct winsize *size)
596 {
597 
598 	size->ws_ypixel = vd->vd_height;
599 	if (vt_draw_logo_cpus)
600 		size->ws_ypixel -= vt_logo_sprite_height;
601 	size->ws_row = size->ws_ypixel;
602 	size->ws_col = size->ws_xpixel = vd->vd_width;
603 	if (vf != NULL) {
604 		size->ws_row /= vf->vf_height;
605 		size->ws_col /= vf->vf_width;
606 	}
607 }
608 
609 void
610 vt_compute_drawable_area(struct vt_window *vw)
611 {
612 	struct vt_device *vd;
613 	struct vt_font *vf;
614 	vt_axis_t height;
615 
616 	vd = vw->vw_device;
617 
618 	if (vw->vw_font == NULL) {
619 		vw->vw_draw_area.tr_begin.tp_col = 0;
620 		vw->vw_draw_area.tr_begin.tp_row = 0;
621 		if (vt_draw_logo_cpus)
622 			vw->vw_draw_area.tr_begin.tp_row = vt_logo_sprite_height;
623 		vw->vw_draw_area.tr_end.tp_col = vd->vd_width;
624 		vw->vw_draw_area.tr_end.tp_row = vd->vd_height;
625 		return;
626 	}
627 
628 	vf = vw->vw_font;
629 
630 	/*
631 	 * Compute the drawable area, so that the text is centered on
632 	 * the screen.
633 	 */
634 
635 	height = vd->vd_height;
636 	if (vt_draw_logo_cpus)
637 		height -= vt_logo_sprite_height;
638 	vw->vw_draw_area.tr_begin.tp_col = (vd->vd_width % vf->vf_width) / 2;
639 	vw->vw_draw_area.tr_begin.tp_row = (height % vf->vf_height) / 2;
640 	if (vt_draw_logo_cpus)
641 		vw->vw_draw_area.tr_begin.tp_row += vt_logo_sprite_height;
642 	vw->vw_draw_area.tr_end.tp_col = vw->vw_draw_area.tr_begin.tp_col +
643 	    rounddown(vd->vd_width, vf->vf_width);
644 	vw->vw_draw_area.tr_end.tp_row = vw->vw_draw_area.tr_begin.tp_row +
645 	    rounddown(height, vf->vf_height);
646 }
647 
648 static void
649 vt_scroll(struct vt_window *vw, int offset, int whence)
650 {
651 	int diff;
652 	term_pos_t size;
653 
654 	if ((vw->vw_flags & VWF_SCROLL) == 0)
655 		return;
656 
657 	vt_termsize(vw->vw_device, vw->vw_font, &size);
658 
659 	diff = vthistory_seek(&vw->vw_buf, offset, whence);
660 	if (diff)
661 		vw->vw_device->vd_flags |= VDF_INVALID;
662 	vt_resume_flush_timer(vw->vw_device, 0);
663 }
664 
665 static int
666 vt_machine_kbdevent(int c)
667 {
668 
669 	switch (c) {
670 	case SPCLKEY | DBG: /* kbdmap(5) keyword `debug`. */
671 		if (vt_kbd_debug)
672 			kdb_enter(KDB_WHY_BREAK, "manual escape to debugger");
673 		return (1);
674 	case SPCLKEY | HALT: /* kbdmap(5) keyword `halt`. */
675 		if (vt_kbd_halt)
676 			shutdown_nice(RB_HALT);
677 		return (1);
678 	case SPCLKEY | PASTE: /* kbdmap(5) keyword `paste`. */
679 #ifndef SC_NO_CUTPASTE
680 		/* Insert text from cut-paste buffer. */
681 		vt_mouse_paste();
682 #endif
683 		break;
684 	case SPCLKEY | PDWN: /* kbdmap(5) keyword `pdwn`. */
685 		if (vt_kbd_poweroff)
686 			shutdown_nice(RB_HALT|RB_POWEROFF);
687 		return (1);
688 	case SPCLKEY | PNC: /* kbdmap(5) keyword `panic`. */
689 		/*
690 		 * Request to immediate panic if sysctl
691 		 * kern.vt.enable_panic_key allow it.
692 		 */
693 		if (vt_kbd_panic)
694 			panic("Forced by the panic key");
695 		return (1);
696 	case SPCLKEY | RBT: /* kbdmap(5) keyword `boot`. */
697 		if (vt_kbd_reboot)
698 			shutdown_nice(RB_AUTOBOOT);
699 		return (1);
700 	case SPCLKEY | SPSC: /* kbdmap(5) keyword `spsc`. */
701 		/* Force activatation/deactivation of the screen saver. */
702 		/* TODO */
703 		return (1);
704 	case SPCLKEY | STBY: /* XXX Not present in kbdcontrol parser. */
705 		/* Put machine into Stand-By mode. */
706 		power_pm_suspend(POWER_SLEEP_STATE_STANDBY);
707 		return (1);
708 	case SPCLKEY | SUSP: /* kbdmap(5) keyword `susp`. */
709 		/* Suspend machine. */
710 		power_pm_suspend(POWER_SLEEP_STATE_SUSPEND);
711 		return (1);
712 	}
713 
714 	return (0);
715 }
716 
717 static void
718 vt_scrollmode_kbdevent(struct vt_window *vw, int c, int console)
719 {
720 	struct vt_device *vd;
721 	term_pos_t size;
722 
723 	vd = vw->vw_device;
724 	/* Only special keys handled in ScrollLock mode */
725 	if ((c & SPCLKEY) == 0)
726 		return;
727 
728 	c &= ~SPCLKEY;
729 
730 	if (console == 0) {
731 		if (c >= F_SCR && c <= MIN(L_SCR, F_SCR + VT_MAXWINDOWS - 1)) {
732 			vw = vd->vd_windows[c - F_SCR];
733 			vt_proc_window_switch(vw);
734 			return;
735 		}
736 		VT_LOCK(vd);
737 	}
738 
739 	switch (c) {
740 	case SLK: {
741 		/* Turn scrolling off. */
742 		vt_scroll(vw, 0, VHS_END);
743 		VTBUF_SLCK_DISABLE(&vw->vw_buf);
744 		vw->vw_flags &= ~VWF_SCROLL;
745 		break;
746 	}
747 	case FKEY | F(49): /* Home key. */
748 		vt_scroll(vw, 0, VHS_SET);
749 		break;
750 	case FKEY | F(50): /* Arrow up. */
751 		vt_scroll(vw, -1, VHS_CUR);
752 		break;
753 	case FKEY | F(51): /* Page up. */
754 		vt_termsize(vd, vw->vw_font, &size);
755 		vt_scroll(vw, -size.tp_row, VHS_CUR);
756 		break;
757 	case FKEY | F(57): /* End key. */
758 		vt_scroll(vw, 0, VHS_END);
759 		break;
760 	case FKEY | F(58): /* Arrow down. */
761 		vt_scroll(vw, 1, VHS_CUR);
762 		break;
763 	case FKEY | F(59): /* Page down. */
764 		vt_termsize(vd, vw->vw_font, &size);
765 		vt_scroll(vw, size.tp_row, VHS_CUR);
766 		break;
767 	}
768 
769 	if (console == 0)
770 		VT_UNLOCK(vd);
771 }
772 
773 static int
774 vt_processkey(keyboard_t *kbd, struct vt_device *vd, int c)
775 {
776 	struct vt_window *vw = vd->vd_curwindow;
777 
778 	random_harvest_queue(&c, sizeof(c), 1, RANDOM_KEYBOARD);
779 #if VT_ALT_TO_ESC_HACK
780 	if (c & RELKEY) {
781 		switch (c & ~RELKEY) {
782 		case (SPCLKEY | RALT):
783 			if (vt_enable_altgr != 0)
784 				break;
785 		case (SPCLKEY | LALT):
786 			vd->vd_kbstate &= ~ALKED;
787 		}
788 		/* Other keys ignored for RELKEY event. */
789 		return (0);
790 	} else {
791 		switch (c & ~RELKEY) {
792 		case (SPCLKEY | RALT):
793 			if (vt_enable_altgr != 0)
794 				break;
795 		case (SPCLKEY | LALT):
796 			vd->vd_kbstate |= ALKED;
797 		}
798 	}
799 #else
800 	if (c & RELKEY)
801 		/* Other keys ignored for RELKEY event. */
802 		return (0);
803 #endif
804 
805 	if (vt_machine_kbdevent(c))
806 		return (0);
807 
808 	if (vw->vw_flags & VWF_SCROLL) {
809 		vt_scrollmode_kbdevent(vw, c, 0/* Not a console */);
810 		/* Scroll mode keys handled, nothing to do more. */
811 		return (0);
812 	}
813 
814 	if (c & SPCLKEY) {
815 		c &= ~SPCLKEY;
816 
817 		if (c >= F_SCR && c <= MIN(L_SCR, F_SCR + VT_MAXWINDOWS - 1)) {
818 			vw = vd->vd_windows[c - F_SCR];
819 			vt_proc_window_switch(vw);
820 			return (0);
821 		}
822 
823 		switch (c) {
824 		case NEXT:
825 			/* Switch to next VT. */
826 			c = (vw->vw_number + 1) % VT_MAXWINDOWS;
827 			vw = vd->vd_windows[c];
828 			vt_proc_window_switch(vw);
829 			return (0);
830 		case PREV:
831 			/* Switch to previous VT. */
832 			c = (vw->vw_number + VT_MAXWINDOWS - 1) % VT_MAXWINDOWS;
833 			vw = vd->vd_windows[c];
834 			vt_proc_window_switch(vw);
835 			return (0);
836 		case SLK: {
837 			vt_save_kbd_state(vw, kbd);
838 			VT_LOCK(vd);
839 			if (vw->vw_kbdstate & SLKED) {
840 				/* Turn scrolling on. */
841 				vw->vw_flags |= VWF_SCROLL;
842 				VTBUF_SLCK_ENABLE(&vw->vw_buf);
843 			} else {
844 				/* Turn scrolling off. */
845 				vw->vw_flags &= ~VWF_SCROLL;
846 				VTBUF_SLCK_DISABLE(&vw->vw_buf);
847 				vt_scroll(vw, 0, VHS_END);
848 			}
849 			VT_UNLOCK(vd);
850 			break;
851 		}
852 		case FKEY | F(1):  case FKEY | F(2):  case FKEY | F(3):
853 		case FKEY | F(4):  case FKEY | F(5):  case FKEY | F(6):
854 		case FKEY | F(7):  case FKEY | F(8):  case FKEY | F(9):
855 		case FKEY | F(10): case FKEY | F(11): case FKEY | F(12):
856 			/* F1 through F12 keys. */
857 			terminal_input_special(vw->vw_terminal,
858 			    TKEY_F1 + c - (FKEY | F(1)));
859 			break;
860 		case FKEY | F(49): /* Home key. */
861 			terminal_input_special(vw->vw_terminal, TKEY_HOME);
862 			break;
863 		case FKEY | F(50): /* Arrow up. */
864 			terminal_input_special(vw->vw_terminal, TKEY_UP);
865 			break;
866 		case FKEY | F(51): /* Page up. */
867 			terminal_input_special(vw->vw_terminal, TKEY_PAGE_UP);
868 			break;
869 		case FKEY | F(53): /* Arrow left. */
870 			terminal_input_special(vw->vw_terminal, TKEY_LEFT);
871 			break;
872 		case FKEY | F(55): /* Arrow right. */
873 			terminal_input_special(vw->vw_terminal, TKEY_RIGHT);
874 			break;
875 		case FKEY | F(57): /* End key. */
876 			terminal_input_special(vw->vw_terminal, TKEY_END);
877 			break;
878 		case FKEY | F(58): /* Arrow down. */
879 			terminal_input_special(vw->vw_terminal, TKEY_DOWN);
880 			break;
881 		case FKEY | F(59): /* Page down. */
882 			terminal_input_special(vw->vw_terminal, TKEY_PAGE_DOWN);
883 			break;
884 		case FKEY | F(60): /* Insert key. */
885 			terminal_input_special(vw->vw_terminal, TKEY_INSERT);
886 			break;
887 		case FKEY | F(61): /* Delete key. */
888 			terminal_input_special(vw->vw_terminal, TKEY_DELETE);
889 			break;
890 		}
891 	} else if (KEYFLAGS(c) == 0) {
892 		/* Don't do UTF-8 conversion when doing raw mode. */
893 		if (vw->vw_kbdmode == K_XLATE) {
894 #if VT_ALT_TO_ESC_HACK
895 			if (vd->vd_kbstate & ALKED) {
896 				/*
897 				 * Prepend ESC sequence if one of ALT keys down.
898 				 */
899 				terminal_input_char(vw->vw_terminal, 0x1b);
900 			}
901 #endif
902 #if defined(KDB)
903 			kdb_alt_break(c, &vd->vd_altbrk);
904 #endif
905 			terminal_input_char(vw->vw_terminal, KEYCHAR(c));
906 		} else
907 			terminal_input_raw(vw->vw_terminal, c);
908 	}
909 	return (0);
910 }
911 
912 static int
913 vt_kbdevent(keyboard_t *kbd, int event, void *arg)
914 {
915 	struct vt_device *vd = arg;
916 	int c;
917 
918 	switch (event) {
919 	case KBDIO_KEYINPUT:
920 		break;
921 	case KBDIO_UNLOADING:
922 		mtx_lock(&Giant);
923 		vd->vd_keyboard = -1;
924 		kbd_release(kbd, (void *)vd);
925 		mtx_unlock(&Giant);
926 		return (0);
927 	default:
928 		return (EINVAL);
929 	}
930 
931 	while ((c = kbdd_read_char(kbd, 0)) != NOKEY)
932 		vt_processkey(kbd, vd, c);
933 
934 	return (0);
935 }
936 
937 static int
938 vt_allocate_keyboard(struct vt_device *vd)
939 {
940 	int		 idx0, idx;
941 	keyboard_t	*k0, *k;
942 	keyboard_info_t	 ki;
943 
944 	idx0 = kbd_allocate("kbdmux", -1, vd, vt_kbdevent, vd);
945 	if (idx0 >= 0) {
946 		DPRINTF(20, "%s: kbdmux allocated, idx = %d\n", __func__, idx0);
947 		k0 = kbd_get_keyboard(idx0);
948 
949 		for (idx = kbd_find_keyboard2("*", -1, 0);
950 		     idx != -1;
951 		     idx = kbd_find_keyboard2("*", -1, idx + 1)) {
952 			k = kbd_get_keyboard(idx);
953 
954 			if (idx == idx0 || KBD_IS_BUSY(k))
955 				continue;
956 
957 			bzero(&ki, sizeof(ki));
958 			strncpy(ki.kb_name, k->kb_name, sizeof(ki.kb_name));
959 			ki.kb_name[sizeof(ki.kb_name) - 1] = '\0';
960 			ki.kb_unit = k->kb_unit;
961 
962 			kbdd_ioctl(k0, KBADDKBD, (caddr_t) &ki);
963 		}
964 	} else {
965 		DPRINTF(20, "%s: no kbdmux allocated\n", __func__);
966 		idx0 = kbd_allocate("*", -1, vd, vt_kbdevent, vd);
967 		if (idx0 < 0) {
968 			DPRINTF(10, "%s: No keyboard found.\n", __func__);
969 			return (-1);
970 		}
971 	}
972 	vd->vd_keyboard = idx0;
973 	DPRINTF(20, "%s: vd_keyboard = %d\n", __func__, vd->vd_keyboard);
974 
975 	return (idx0);
976 }
977 
978 static void
979 vtterm_bell(struct terminal *tm)
980 {
981 	struct vt_window *vw = tm->tm_softc;
982 	struct vt_device *vd = vw->vw_device;
983 
984 	if (!vt_enable_bell)
985 		return;
986 
987 	if (vd->vd_flags & VDF_QUIET_BELL)
988 		return;
989 
990 	sysbeep(1193182 / VT_BELLPITCH, VT_BELLDURATION);
991 }
992 
993 static void
994 vtterm_beep(struct terminal *tm, u_int param)
995 {
996 	u_int freq, period;
997 
998 	if (!vt_enable_bell)
999 		return;
1000 
1001 	if ((param == 0) || ((param & 0xffff) == 0)) {
1002 		vtterm_bell(tm);
1003 		return;
1004 	}
1005 
1006 	period = ((param >> 16) & 0xffff) * hz / 1000;
1007 	freq = 1193182 / (param & 0xffff);
1008 
1009 	sysbeep(freq, period);
1010 }
1011 
1012 static void
1013 vtterm_cursor(struct terminal *tm, const term_pos_t *p)
1014 {
1015 	struct vt_window *vw = tm->tm_softc;
1016 
1017 	vtbuf_cursor_position(&vw->vw_buf, p);
1018 	vt_resume_flush_timer(vw->vw_device, 0);
1019 }
1020 
1021 static void
1022 vtterm_putchar(struct terminal *tm, const term_pos_t *p, term_char_t c)
1023 {
1024 	struct vt_window *vw = tm->tm_softc;
1025 
1026 	vtbuf_putchar(&vw->vw_buf, p, c);
1027 	vt_resume_flush_timer(vw->vw_device, 0);
1028 }
1029 
1030 static void
1031 vtterm_fill(struct terminal *tm, const term_rect_t *r, term_char_t c)
1032 {
1033 	struct vt_window *vw = tm->tm_softc;
1034 
1035 	vtbuf_fill_locked(&vw->vw_buf, r, c);
1036 	vt_resume_flush_timer(vw->vw_device, 0);
1037 }
1038 
1039 static void
1040 vtterm_copy(struct terminal *tm, const term_rect_t *r,
1041     const term_pos_t *p)
1042 {
1043 	struct vt_window *vw = tm->tm_softc;
1044 
1045 	vtbuf_copy(&vw->vw_buf, r, p);
1046 	vt_resume_flush_timer(vw->vw_device, 0);
1047 }
1048 
1049 static void
1050 vtterm_param(struct terminal *tm, int cmd, unsigned int arg)
1051 {
1052 	struct vt_window *vw = tm->tm_softc;
1053 
1054 	switch (cmd) {
1055 	case TP_SHOWCURSOR:
1056 		vtbuf_cursor_visibility(&vw->vw_buf, arg);
1057 		vt_resume_flush_timer(vw->vw_device, 0);
1058 		break;
1059 	case TP_MOUSE:
1060 		vw->vw_mouse_level = arg;
1061 		break;
1062 	}
1063 }
1064 
1065 void
1066 vt_determine_colors(term_char_t c, int cursor,
1067     term_color_t *fg, term_color_t *bg)
1068 {
1069 	term_color_t tmp;
1070 	int invert;
1071 
1072 	invert = 0;
1073 
1074 	*fg = TCHAR_FGCOLOR(c);
1075 	if (TCHAR_FORMAT(c) & TF_BOLD)
1076 		*fg = TCOLOR_LIGHT(*fg);
1077 	*bg = TCHAR_BGCOLOR(c);
1078 	if (TCHAR_FORMAT(c) & TF_BLINK)
1079 		*bg = TCOLOR_LIGHT(*bg);
1080 
1081 	if (TCHAR_FORMAT(c) & TF_REVERSE)
1082 		invert ^= 1;
1083 	if (cursor)
1084 		invert ^= 1;
1085 
1086 	if (invert) {
1087 		tmp = *fg;
1088 		*fg = *bg;
1089 		*bg = tmp;
1090 	}
1091 }
1092 
1093 #ifndef SC_NO_CUTPASTE
1094 int
1095 vt_is_cursor_in_area(const struct vt_device *vd, const term_rect_t *area)
1096 {
1097 	unsigned int mx, my;
1098 
1099 	/*
1100 	 * We use the cursor position saved during the current refresh,
1101 	 * in case the cursor moved since.
1102 	 */
1103 	mx = vd->vd_mx_drawn + vd->vd_curwindow->vw_draw_area.tr_begin.tp_col;
1104 	my = vd->vd_my_drawn + vd->vd_curwindow->vw_draw_area.tr_begin.tp_row;
1105 
1106 	if (mx >= area->tr_end.tp_col ||
1107 	    mx + vd->vd_mcursor->width <= area->tr_begin.tp_col ||
1108 	    my >= area->tr_end.tp_row ||
1109 	    my + vd->vd_mcursor->height <= area->tr_begin.tp_row)
1110 		return (0);
1111 	return (1);
1112 }
1113 
1114 static void
1115 vt_mark_mouse_position_as_dirty(struct vt_device *vd)
1116 {
1117 	term_rect_t area;
1118 	struct vt_window *vw;
1119 	struct vt_font *vf;
1120 	int x, y;
1121 
1122 	vw = vd->vd_curwindow;
1123 	vf = vw->vw_font;
1124 
1125 	x = vd->vd_mx_drawn;
1126 	y = vd->vd_my_drawn;
1127 
1128 	if (vf != NULL) {
1129 		area.tr_begin.tp_col = x / vf->vf_width;
1130 		area.tr_begin.tp_row = y / vf->vf_height;
1131 		area.tr_end.tp_col =
1132 		    ((x + vd->vd_mcursor->width) / vf->vf_width) + 1;
1133 		area.tr_end.tp_row =
1134 		    ((y + vd->vd_mcursor->height) / vf->vf_height) + 1;
1135 	} else {
1136 		/*
1137 		 * No font loaded (ie. vt_vga operating in textmode).
1138 		 *
1139 		 * FIXME: This fake area needs to be revisited once the
1140 		 * mouse cursor is supported in vt_vga's textmode.
1141 		 */
1142 		area.tr_begin.tp_col = x;
1143 		area.tr_begin.tp_row = y;
1144 		area.tr_end.tp_col = x + 2;
1145 		area.tr_end.tp_row = y + 2;
1146 	}
1147 
1148 	vtbuf_dirty(&vw->vw_buf, &area);
1149 }
1150 #endif
1151 
1152 static void
1153 vt_set_border(struct vt_device *vd, term_color_t c)
1154 {
1155 	term_rect_t *tarea = &vd->vd_curwindow->vw_draw_area;
1156 	int x, y;
1157 
1158 	/* Top bar. */
1159 	for (y = 0; y < tarea->tr_begin.tp_row; y++)
1160 		for (x = 0; x < vd->vd_width; x++)
1161 			vd->vd_driver->vd_setpixel(vd, x, y, c);
1162 
1163 	for (y = tarea->tr_begin.tp_row; y < tarea->tr_end.tp_row; y++) {
1164 		/* Left bar. */
1165 		for (x = 0; x < tarea->tr_begin.tp_col; x++)
1166 			vd->vd_driver->vd_setpixel(vd, x, y, c);
1167 
1168 		/* Right bar. */
1169 		for (x = tarea->tr_end.tp_col; x < vd->vd_width; x++)
1170 			vd->vd_driver->vd_setpixel(vd, x, y, c);
1171 	}
1172 
1173 	/* Bottom bar. */
1174 	for (y = tarea->tr_end.tp_row; y < vd->vd_height; y++)
1175 		for (x = 0; x < vd->vd_width; x++)
1176 			vd->vd_driver->vd_setpixel(vd, x, y, c);
1177 }
1178 
1179 static int
1180 vt_flush(struct vt_device *vd)
1181 {
1182 	struct vt_window *vw;
1183 	struct vt_font *vf;
1184 	term_rect_t tarea;
1185 #ifndef SC_NO_CUTPASTE
1186 	int cursor_was_shown, cursor_moved;
1187 #endif
1188 
1189 	vw = vd->vd_curwindow;
1190 	if (vw == NULL)
1191 		return (0);
1192 
1193 	if (vd->vd_flags & VDF_SPLASH || vw->vw_flags & VWF_BUSY)
1194 		return (0);
1195 
1196 	vf = vw->vw_font;
1197 	if (((vd->vd_flags & VDF_TEXTMODE) == 0) && (vf == NULL))
1198 		return (0);
1199 
1200 #ifndef SC_NO_CUTPASTE
1201 	cursor_was_shown = vd->vd_mshown;
1202 	cursor_moved = (vd->vd_mx != vd->vd_mx_drawn ||
1203 	    vd->vd_my != vd->vd_my_drawn);
1204 
1205 	/* Check if the cursor should be displayed or not. */
1206 	if ((vd->vd_flags & VDF_MOUSECURSOR) && /* Mouse support enabled. */
1207 	    !(vw->vw_flags & VWF_MOUSE_HIDE) && /* Cursor displayed.      */
1208 	    !kdb_active && panicstr == NULL) {  /* DDB inactive.          */
1209 		vd->vd_mshown = 1;
1210 	} else {
1211 		vd->vd_mshown = 0;
1212 	}
1213 
1214 	/*
1215 	 * If the cursor changed display state or moved, we must mark
1216 	 * the old position as dirty, so that it's erased.
1217 	 */
1218 	if (cursor_was_shown != vd->vd_mshown ||
1219 	    (vd->vd_mshown && cursor_moved))
1220 		vt_mark_mouse_position_as_dirty(vd);
1221 
1222 	/*
1223          * Save position of the mouse cursor. It's used by backends to
1224          * know where to draw the cursor and during the next refresh to
1225          * erase the previous position.
1226 	 */
1227 	vd->vd_mx_drawn = vd->vd_mx;
1228 	vd->vd_my_drawn = vd->vd_my;
1229 
1230 	/*
1231 	 * If the cursor is displayed and has moved since last refresh,
1232 	 * mark the new position as dirty.
1233 	 */
1234 	if (vd->vd_mshown && cursor_moved)
1235 		vt_mark_mouse_position_as_dirty(vd);
1236 #endif
1237 
1238 	vtbuf_undirty(&vw->vw_buf, &tarea);
1239 
1240 	/* Force a full redraw when the screen contents are invalid. */
1241 	if (vd->vd_flags & VDF_INVALID) {
1242 		vd->vd_flags &= ~VDF_INVALID;
1243 
1244 		vt_set_border(vd, TC_BLACK);
1245 		vt_termrect(vd, vf, &tarea);
1246 		if (vt_draw_logo_cpus)
1247 			vtterm_draw_cpu_logos(vd);
1248 	}
1249 
1250 	if (tarea.tr_begin.tp_col < tarea.tr_end.tp_col) {
1251 		vd->vd_driver->vd_bitblt_text(vd, vw, &tarea);
1252 		return (1);
1253 	}
1254 
1255 	return (0);
1256 }
1257 
1258 static void
1259 vt_timer(void *arg)
1260 {
1261 	struct vt_device *vd;
1262 	int changed;
1263 
1264 	vd = arg;
1265 	/* Update screen if required. */
1266 	changed = vt_flush(vd);
1267 
1268 	/* Schedule for next update. */
1269 	if (changed)
1270 		vt_schedule_flush(vd, 0);
1271 	else
1272 		vd->vd_timer_armed = 0;
1273 }
1274 
1275 static void
1276 vtterm_done(struct terminal *tm)
1277 {
1278 	struct vt_window *vw = tm->tm_softc;
1279 	struct vt_device *vd = vw->vw_device;
1280 
1281 	if (kdb_active || panicstr != NULL) {
1282 		/* Switch to the debugger. */
1283 		if (vd->vd_curwindow != vw) {
1284 			vd->vd_curwindow = vw;
1285 			vd->vd_flags |= VDF_INVALID;
1286 			if (vd->vd_driver->vd_postswitch)
1287 				vd->vd_driver->vd_postswitch(vd);
1288 		}
1289 		vd->vd_flags &= ~VDF_SPLASH;
1290 		vt_flush(vd);
1291 	} else if (!(vd->vd_flags & VDF_ASYNC)) {
1292 		vt_flush(vd);
1293 	}
1294 }
1295 
1296 #ifdef DEV_SPLASH
1297 static void
1298 vtterm_splash(struct vt_device *vd)
1299 {
1300 	vt_axis_t top, left;
1301 
1302 	/* Display a nice boot splash. */
1303 	if (!(vd->vd_flags & VDF_TEXTMODE) && (boothowto & RB_MUTE)) {
1304 
1305 		top = (vd->vd_height - vt_logo_height) / 2;
1306 		left = (vd->vd_width - vt_logo_width) / 2;
1307 		switch (vt_logo_depth) {
1308 		case 1:
1309 			/* XXX: Unhardcode colors! */
1310 			vd->vd_driver->vd_bitblt_bmp(vd, vd->vd_curwindow,
1311 			    vt_logo_image, NULL, vt_logo_width, vt_logo_height,
1312 			    left, top, TC_WHITE, TC_BLACK);
1313 		}
1314 		vd->vd_flags |= VDF_SPLASH;
1315 	}
1316 }
1317 #endif
1318 
1319 
1320 static void
1321 vtterm_cnprobe(struct terminal *tm, struct consdev *cp)
1322 {
1323 	struct vt_driver *vtd, **vtdlist, *vtdbest = NULL;
1324 	struct vt_window *vw = tm->tm_softc;
1325 	struct vt_device *vd = vw->vw_device;
1326 	struct winsize wsz;
1327 	term_attr_t attr;
1328 	term_char_t c;
1329 
1330 	if (!vty_enabled(VTY_VT))
1331 		return;
1332 
1333 	if (vd->vd_flags & VDF_INITIALIZED)
1334 		/* Initialization already done. */
1335 		return;
1336 
1337 	SET_FOREACH(vtdlist, vt_drv_set) {
1338 		vtd = *vtdlist;
1339 		if (vtd->vd_probe == NULL)
1340 			continue;
1341 		if (vtd->vd_probe(vd) == CN_DEAD)
1342 			continue;
1343 		if ((vtdbest == NULL) ||
1344 		    (vtd->vd_priority > vtdbest->vd_priority))
1345 			vtdbest = vtd;
1346 	}
1347 	if (vtdbest == NULL) {
1348 		cp->cn_pri = CN_DEAD;
1349 		vd->vd_flags |= VDF_DEAD;
1350 	} else {
1351 		vd->vd_driver = vtdbest;
1352 		cp->cn_pri = vd->vd_driver->vd_init(vd);
1353 	}
1354 
1355 	/* Check if driver's vt_init return CN_DEAD. */
1356 	if (cp->cn_pri == CN_DEAD) {
1357 		vd->vd_flags |= VDF_DEAD;
1358 	}
1359 
1360 	/* Initialize any early-boot keyboard drivers */
1361 	kbd_configure(KB_CONF_PROBE_ONLY);
1362 
1363 	vd->vd_unit = atomic_fetchadd_int(&vt_unit, 1);
1364 	vd->vd_windows[VT_CONSWINDOW] = vw;
1365 	sprintf(cp->cn_name, "ttyv%r", VT_UNIT(vw));
1366 
1367 	/* Attach default font if not in TEXTMODE. */
1368 	if ((vd->vd_flags & VDF_TEXTMODE) == 0) {
1369 		vw->vw_font = vtfont_ref(&vt_font_default);
1370 		vt_compute_drawable_area(vw);
1371 	}
1372 
1373 	/*
1374 	 * The original screen size was faked (_VTDEFW x _VTDEFH). Now
1375 	 * that we have the real viewable size, fix it in the static
1376 	 * buffer.
1377 	 */
1378 	if (vd->vd_width != 0 && vd->vd_height != 0)
1379 		vt_termsize(vd, vw->vw_font, &vw->vw_buf.vb_scr_size);
1380 
1381 	vtbuf_init_early(&vw->vw_buf);
1382 	vt_winsize(vd, vw->vw_font, &wsz);
1383 	c = (boothowto & RB_MUTE) == 0 ? TERMINAL_KERN_ATTR :
1384 	    TERMINAL_NORM_ATTR;
1385 	attr.ta_format = TCHAR_FORMAT(c);
1386 	attr.ta_fgcolor = TCHAR_FGCOLOR(c);
1387 	attr.ta_bgcolor = TCHAR_BGCOLOR(c);
1388 	terminal_set_winsize_blank(tm, &wsz, 1, &attr);
1389 
1390 	if (vtdbest != NULL) {
1391 #ifdef DEV_SPLASH
1392 		if (!vt_splash_cpu)
1393 			vtterm_splash(vd);
1394 #endif
1395 		vd->vd_flags |= VDF_INITIALIZED;
1396 	}
1397 }
1398 
1399 static int
1400 vtterm_cngetc(struct terminal *tm)
1401 {
1402 	struct vt_window *vw = tm->tm_softc;
1403 	struct vt_device *vd = vw->vw_device;
1404 	keyboard_t *kbd;
1405 	u_int c;
1406 
1407 	if (vw->vw_kbdsq && *vw->vw_kbdsq)
1408 		return (*vw->vw_kbdsq++);
1409 
1410 	/* Make sure the splash screen is not there. */
1411 	if (vd->vd_flags & VDF_SPLASH) {
1412 		/* Remove splash */
1413 		vd->vd_flags &= ~VDF_SPLASH;
1414 		/* Mark screen as invalid to force update */
1415 		vd->vd_flags |= VDF_INVALID;
1416 		vt_flush(vd);
1417 	}
1418 
1419 	/* Stripped down keyboard handler. */
1420 	kbd = kbd_get_keyboard(vd->vd_keyboard);
1421 	if (kbd == NULL)
1422 		return (-1);
1423 
1424 	/* Force keyboard input mode to K_XLATE */
1425 	vw->vw_kbdmode = K_XLATE;
1426 	vt_update_kbd_mode(vw, kbd);
1427 
1428 	/* Switch the keyboard to polling to make it work here. */
1429 	kbdd_poll(kbd, TRUE);
1430 	c = kbdd_read_char(kbd, 0);
1431 	kbdd_poll(kbd, FALSE);
1432 	if (c & RELKEY)
1433 		return (-1);
1434 
1435 	if (vw->vw_flags & VWF_SCROLL) {
1436 		vt_scrollmode_kbdevent(vw, c, 1/* Console mode */);
1437 		vt_flush(vd);
1438 		return (-1);
1439 	}
1440 
1441 	/* Stripped down handling of vt_kbdevent(), without locking, etc. */
1442 	if (c & SPCLKEY) {
1443 		switch (c) {
1444 		case SPCLKEY | SLK:
1445 			vt_save_kbd_state(vw, kbd);
1446 			if (vw->vw_kbdstate & SLKED) {
1447 				/* Turn scrolling on. */
1448 				vw->vw_flags |= VWF_SCROLL;
1449 				VTBUF_SLCK_ENABLE(&vw->vw_buf);
1450 			} else {
1451 				/* Turn scrolling off. */
1452 				vt_scroll(vw, 0, VHS_END);
1453 				vw->vw_flags &= ~VWF_SCROLL;
1454 				VTBUF_SLCK_DISABLE(&vw->vw_buf);
1455 			}
1456 			break;
1457 		/* XXX: KDB can handle history. */
1458 		case SPCLKEY | FKEY | F(50): /* Arrow up. */
1459 			vw->vw_kbdsq = "\x1b[A";
1460 			break;
1461 		case SPCLKEY | FKEY | F(58): /* Arrow down. */
1462 			vw->vw_kbdsq = "\x1b[B";
1463 			break;
1464 		case SPCLKEY | FKEY | F(55): /* Arrow right. */
1465 			vw->vw_kbdsq = "\x1b[C";
1466 			break;
1467 		case SPCLKEY | FKEY | F(53): /* Arrow left. */
1468 			vw->vw_kbdsq = "\x1b[D";
1469 			break;
1470 		}
1471 
1472 		/* Force refresh to make scrollback work. */
1473 		vt_flush(vd);
1474 	} else if (KEYFLAGS(c) == 0) {
1475 		return (KEYCHAR(c));
1476 	}
1477 
1478 	if (vw->vw_kbdsq && *vw->vw_kbdsq)
1479 		return (*vw->vw_kbdsq++);
1480 
1481 	return (-1);
1482 }
1483 
1484 static void
1485 vtterm_cngrab(struct terminal *tm)
1486 {
1487 	struct vt_device *vd;
1488 	struct vt_window *vw;
1489 	keyboard_t *kbd;
1490 
1491 	vw = tm->tm_softc;
1492 	vd = vw->vw_device;
1493 
1494 	if (!cold)
1495 		vt_window_switch(vw);
1496 
1497 	kbd = kbd_get_keyboard(vd->vd_keyboard);
1498 	if (kbd == NULL)
1499 		return;
1500 
1501 	if (vw->vw_grabbed++ > 0)
1502 		return;
1503 
1504 	/*
1505 	 * Make sure the keyboard is accessible even when the kbd device
1506 	 * driver is disabled.
1507 	 */
1508 	kbdd_enable(kbd);
1509 
1510 	/* We shall always use the keyboard in the XLATE mode here. */
1511 	vw->vw_prev_kbdmode = vw->vw_kbdmode;
1512 	vw->vw_kbdmode = K_XLATE;
1513 	vt_update_kbd_mode(vw, kbd);
1514 
1515 	kbdd_poll(kbd, TRUE);
1516 }
1517 
1518 static void
1519 vtterm_cnungrab(struct terminal *tm)
1520 {
1521 	struct vt_device *vd;
1522 	struct vt_window *vw;
1523 	keyboard_t *kbd;
1524 
1525 	vw = tm->tm_softc;
1526 	vd = vw->vw_device;
1527 
1528 	kbd = kbd_get_keyboard(vd->vd_keyboard);
1529 	if (kbd == NULL)
1530 		return;
1531 
1532 	if (--vw->vw_grabbed > 0)
1533 		return;
1534 
1535 	kbdd_poll(kbd, FALSE);
1536 
1537 	vw->vw_kbdmode = vw->vw_prev_kbdmode;
1538 	vt_update_kbd_mode(vw, kbd);
1539 	kbdd_disable(kbd);
1540 }
1541 
1542 static void
1543 vtterm_opened(struct terminal *tm, int opened)
1544 {
1545 	struct vt_window *vw = tm->tm_softc;
1546 	struct vt_device *vd = vw->vw_device;
1547 
1548 	VT_LOCK(vd);
1549 	vd->vd_flags &= ~VDF_SPLASH;
1550 	if (opened)
1551 		vw->vw_flags |= VWF_OPENED;
1552 	else {
1553 		vw->vw_flags &= ~VWF_OPENED;
1554 		/* TODO: finish ACQ/REL */
1555 	}
1556 	VT_UNLOCK(vd);
1557 }
1558 
1559 static int
1560 vt_change_font(struct vt_window *vw, struct vt_font *vf)
1561 {
1562 	struct vt_device *vd = vw->vw_device;
1563 	struct terminal *tm = vw->vw_terminal;
1564 	term_pos_t size;
1565 	struct winsize wsz;
1566 
1567 	/*
1568 	 * Changing fonts.
1569 	 *
1570 	 * Changing fonts is a little tricky.  We must prevent
1571 	 * simultaneous access to the device, so we must stop
1572 	 * the display timer and the terminal from accessing.
1573 	 * We need to switch fonts and grow our screen buffer.
1574 	 *
1575 	 * XXX: Right now the code uses terminal_mute() to
1576 	 * prevent data from reaching the console driver while
1577 	 * resizing the screen buffer.  This isn't elegant...
1578 	 */
1579 
1580 	VT_LOCK(vd);
1581 	if (vw->vw_flags & VWF_BUSY) {
1582 		/* Another process is changing the font. */
1583 		VT_UNLOCK(vd);
1584 		return (EBUSY);
1585 	}
1586 	vw->vw_flags |= VWF_BUSY;
1587 	VT_UNLOCK(vd);
1588 
1589 	vt_termsize(vd, vf, &size);
1590 	vt_winsize(vd, vf, &wsz);
1591 
1592 	/* Grow the screen buffer and terminal. */
1593 	terminal_mute(tm, 1);
1594 	vtbuf_grow(&vw->vw_buf, &size, vw->vw_buf.vb_history_size);
1595 	terminal_set_winsize_blank(tm, &wsz, 0, NULL);
1596 	terminal_set_cursor(tm, &vw->vw_buf.vb_cursor);
1597 	terminal_mute(tm, 0);
1598 
1599 	/* Actually apply the font to the current window. */
1600 	VT_LOCK(vd);
1601 	if (vw->vw_font != vf && vw->vw_font != NULL && vf != NULL) {
1602 		/*
1603 		 * In case vt_change_font called to update size we don't need
1604 		 * to update font link.
1605 		 */
1606 		vtfont_unref(vw->vw_font);
1607 		vw->vw_font = vtfont_ref(vf);
1608 	}
1609 
1610 	/*
1611 	 * Compute the drawable area and move the mouse cursor inside
1612 	 * it, in case the new area is smaller than the previous one.
1613 	 */
1614 	vt_compute_drawable_area(vw);
1615 	vd->vd_mx = min(vd->vd_mx,
1616 	    vw->vw_draw_area.tr_end.tp_col -
1617 	    vw->vw_draw_area.tr_begin.tp_col - 1);
1618 	vd->vd_my = min(vd->vd_my,
1619 	    vw->vw_draw_area.tr_end.tp_row -
1620 	    vw->vw_draw_area.tr_begin.tp_row - 1);
1621 
1622 	/* Force a full redraw the next timer tick. */
1623 	if (vd->vd_curwindow == vw) {
1624 		vd->vd_flags |= VDF_INVALID;
1625 		vt_resume_flush_timer(vw->vw_device, 0);
1626 	}
1627 	vw->vw_flags &= ~VWF_BUSY;
1628 	VT_UNLOCK(vd);
1629 	return (0);
1630 }
1631 
1632 static int
1633 vt_proc_alive(struct vt_window *vw)
1634 {
1635 	struct proc *p;
1636 
1637 	if (vw->vw_smode.mode != VT_PROCESS)
1638 		return (FALSE);
1639 
1640 	if (vw->vw_proc) {
1641 		if ((p = pfind(vw->vw_pid)) != NULL)
1642 			PROC_UNLOCK(p);
1643 		if (vw->vw_proc == p)
1644 			return (TRUE);
1645 		vw->vw_proc = NULL;
1646 		vw->vw_smode.mode = VT_AUTO;
1647 		DPRINTF(1, "vt controlling process %d died\n", vw->vw_pid);
1648 		vw->vw_pid = 0;
1649 	}
1650 	return (FALSE);
1651 }
1652 
1653 static int
1654 signal_vt_rel(struct vt_window *vw)
1655 {
1656 
1657 	if (vw->vw_smode.mode != VT_PROCESS)
1658 		return (FALSE);
1659 	if (vw->vw_proc == NULL || vt_proc_alive(vw) == FALSE) {
1660 		vw->vw_proc = NULL;
1661 		vw->vw_pid = 0;
1662 		return (TRUE);
1663 	}
1664 	vw->vw_flags |= VWF_SWWAIT_REL;
1665 	PROC_LOCK(vw->vw_proc);
1666 	kern_psignal(vw->vw_proc, vw->vw_smode.relsig);
1667 	PROC_UNLOCK(vw->vw_proc);
1668 	DPRINTF(1, "sending relsig to %d\n", vw->vw_pid);
1669 	return (TRUE);
1670 }
1671 
1672 static int
1673 signal_vt_acq(struct vt_window *vw)
1674 {
1675 
1676 	if (vw->vw_smode.mode != VT_PROCESS)
1677 		return (FALSE);
1678 	if (vw == vw->vw_device->vd_windows[VT_CONSWINDOW])
1679 		cnavailable(vw->vw_terminal->consdev, FALSE);
1680 	if (vw->vw_proc == NULL || vt_proc_alive(vw) == FALSE) {
1681 		vw->vw_proc = NULL;
1682 		vw->vw_pid = 0;
1683 		return (TRUE);
1684 	}
1685 	vw->vw_flags |= VWF_SWWAIT_ACQ;
1686 	PROC_LOCK(vw->vw_proc);
1687 	kern_psignal(vw->vw_proc, vw->vw_smode.acqsig);
1688 	PROC_UNLOCK(vw->vw_proc);
1689 	DPRINTF(1, "sending acqsig to %d\n", vw->vw_pid);
1690 	return (TRUE);
1691 }
1692 
1693 static int
1694 finish_vt_rel(struct vt_window *vw, int release, int *s)
1695 {
1696 
1697 	if (vw->vw_flags & VWF_SWWAIT_REL) {
1698 		vw->vw_flags &= ~VWF_SWWAIT_REL;
1699 		if (release) {
1700 			callout_drain(&vw->vw_proc_dead_timer);
1701 			vt_late_window_switch(vw->vw_switch_to);
1702 		}
1703 		return (0);
1704 	}
1705 	return (EINVAL);
1706 }
1707 
1708 static int
1709 finish_vt_acq(struct vt_window *vw)
1710 {
1711 
1712 	if (vw->vw_flags & VWF_SWWAIT_ACQ) {
1713 		vw->vw_flags &= ~VWF_SWWAIT_ACQ;
1714 		return (0);
1715 	}
1716 	return (EINVAL);
1717 }
1718 
1719 #ifndef SC_NO_CUTPASTE
1720 static void
1721 vt_mouse_terminput_button(struct vt_device *vd, int button)
1722 {
1723 	struct vt_window *vw;
1724 	struct vt_font *vf;
1725 	char mouseb[6] = "\x1B[M";
1726 	int i, x, y;
1727 
1728 	vw = vd->vd_curwindow;
1729 	vf = vw->vw_font;
1730 
1731 	/* Translate to char position. */
1732 	x = vd->vd_mx / vf->vf_width;
1733 	y = vd->vd_my / vf->vf_height;
1734 	/* Avoid overflow. */
1735 	x = MIN(x, 255 - '!');
1736 	y = MIN(y, 255 - '!');
1737 
1738 	mouseb[3] = ' ' + button;
1739 	mouseb[4] = '!' + x;
1740 	mouseb[5] = '!' + y;
1741 
1742 	for (i = 0; i < sizeof(mouseb); i++)
1743 		terminal_input_char(vw->vw_terminal, mouseb[i]);
1744 }
1745 
1746 static void
1747 vt_mouse_terminput(struct vt_device *vd, int type, int x, int y, int event,
1748     int cnt)
1749 {
1750 
1751 	switch (type) {
1752 	case MOUSE_BUTTON_EVENT:
1753 		if (cnt > 0) {
1754 			/* Mouse button pressed. */
1755 			if (event & MOUSE_BUTTON1DOWN)
1756 				vt_mouse_terminput_button(vd, 0);
1757 			if (event & MOUSE_BUTTON2DOWN)
1758 				vt_mouse_terminput_button(vd, 1);
1759 			if (event & MOUSE_BUTTON3DOWN)
1760 				vt_mouse_terminput_button(vd, 2);
1761 		} else {
1762 			/* Mouse button released. */
1763 			vt_mouse_terminput_button(vd, 3);
1764 		}
1765 		break;
1766 #ifdef notyet
1767 	case MOUSE_MOTION_EVENT:
1768 		if (mouse->u.data.z < 0) {
1769 			/* Scroll up. */
1770 			sc_mouse_input_button(vd, 64);
1771 		} else if (mouse->u.data.z > 0) {
1772 			/* Scroll down. */
1773 			sc_mouse_input_button(vd, 65);
1774 		}
1775 		break;
1776 #endif
1777 	}
1778 }
1779 
1780 static void
1781 vt_mouse_paste()
1782 {
1783 	term_char_t *buf;
1784 	int i, len;
1785 
1786 	len = VD_PASTEBUFLEN(main_vd);
1787 	buf = VD_PASTEBUF(main_vd);
1788 	len /= sizeof(term_char_t);
1789 	for (i = 0; i < len; i++) {
1790 		if (buf[i] == '\0')
1791 			continue;
1792 		terminal_input_char(main_vd->vd_curwindow->vw_terminal,
1793 		    buf[i]);
1794 	}
1795 }
1796 
1797 void
1798 vt_mouse_event(int type, int x, int y, int event, int cnt, int mlevel)
1799 {
1800 	struct vt_device *vd;
1801 	struct vt_window *vw;
1802 	struct vt_font *vf;
1803 	term_pos_t size;
1804 	int len, mark;
1805 
1806 	vd = main_vd;
1807 	vw = vd->vd_curwindow;
1808 	vf = vw->vw_font;
1809 	mark = 0;
1810 
1811 	if (vw->vw_flags & (VWF_MOUSE_HIDE | VWF_GRAPHICS))
1812 		/*
1813 		 * Either the mouse is disabled, or the window is in
1814 		 * "graphics mode". The graphics mode is usually set by
1815 		 * an X server, using the KDSETMODE ioctl.
1816 		 */
1817 		return;
1818 
1819 	if (vf == NULL)	/* Text mode. */
1820 		return;
1821 
1822 	/*
1823 	 * TODO: add flag about pointer position changed, to not redraw chars
1824 	 * under mouse pointer when nothing changed.
1825 	 */
1826 
1827 	if (vw->vw_mouse_level > 0)
1828 		vt_mouse_terminput(vd, type, x, y, event, cnt);
1829 
1830 	switch (type) {
1831 	case MOUSE_ACTION:
1832 	case MOUSE_MOTION_EVENT:
1833 		/* Movement */
1834 		x += vd->vd_mx;
1835 		y += vd->vd_my;
1836 
1837 		vt_termsize(vd, vf, &size);
1838 
1839 		/* Apply limits. */
1840 		x = MAX(x, 0);
1841 		y = MAX(y, 0);
1842 		x = MIN(x, (size.tp_col * vf->vf_width) - 1);
1843 		y = MIN(y, (size.tp_row * vf->vf_height) - 1);
1844 
1845 		vd->vd_mx = x;
1846 		vd->vd_my = y;
1847 		if (vd->vd_mstate & MOUSE_BUTTON1DOWN)
1848 			vtbuf_set_mark(&vw->vw_buf, VTB_MARK_MOVE,
1849 			    vd->vd_mx / vf->vf_width,
1850 			    vd->vd_my / vf->vf_height);
1851 
1852 		vt_resume_flush_timer(vw->vw_device, 0);
1853 		return; /* Done */
1854 	case MOUSE_BUTTON_EVENT:
1855 		/* Buttons */
1856 		break;
1857 	default:
1858 		return; /* Done */
1859 	}
1860 
1861 	switch (event) {
1862 	case MOUSE_BUTTON1DOWN:
1863 		switch (cnt % 4) {
1864 		case 0:	/* up */
1865 			mark = VTB_MARK_END;
1866 			break;
1867 		case 1: /* single click: start cut operation */
1868 			mark = VTB_MARK_START;
1869 			break;
1870 		case 2:	/* double click: cut a word */
1871 			mark = VTB_MARK_WORD;
1872 			break;
1873 		case 3:	/* triple click: cut a line */
1874 			mark = VTB_MARK_ROW;
1875 			break;
1876 		}
1877 		break;
1878 	case VT_MOUSE_PASTEBUTTON:
1879 		switch (cnt) {
1880 		case 0:	/* up */
1881 			break;
1882 		default:
1883 			vt_mouse_paste();
1884 			break;
1885 		}
1886 		return; /* Done */
1887 	case VT_MOUSE_EXTENDBUTTON:
1888 		switch (cnt) {
1889 		case 0:	/* up */
1890 			if (!(vd->vd_mstate & MOUSE_BUTTON1DOWN))
1891 				mark = VTB_MARK_EXTEND;
1892 			else
1893 				mark = 0;
1894 			break;
1895 		default:
1896 			mark = VTB_MARK_EXTEND;
1897 			break;
1898 		}
1899 		break;
1900 	default:
1901 		return; /* Done */
1902 	}
1903 
1904 	/* Save buttons state. */
1905 	if (cnt > 0)
1906 		vd->vd_mstate |= event;
1907 	else
1908 		vd->vd_mstate &= ~event;
1909 
1910 	if (vtbuf_set_mark(&vw->vw_buf, mark, vd->vd_mx / vf->vf_width,
1911 	    vd->vd_my / vf->vf_height) == 1) {
1912 		/*
1913 		 * We have something marked to copy, so update pointer to
1914 		 * window with selection.
1915 		 */
1916 		vt_resume_flush_timer(vw->vw_device, 0);
1917 
1918 		switch (mark) {
1919 		case VTB_MARK_END:
1920 		case VTB_MARK_WORD:
1921 		case VTB_MARK_ROW:
1922 		case VTB_MARK_EXTEND:
1923 			break;
1924 		default:
1925 			/* Other types of mark do not require to copy data. */
1926 			return;
1927 		}
1928 
1929 		/* Get current selection size in bytes. */
1930 		len = vtbuf_get_marked_len(&vw->vw_buf);
1931 		if (len <= 0)
1932 			return;
1933 
1934 		/* Reallocate buffer only if old one is too small. */
1935 		if (len > VD_PASTEBUFSZ(vd)) {
1936 			VD_PASTEBUF(vd) = realloc(VD_PASTEBUF(vd), len, M_VT,
1937 			    M_WAITOK | M_ZERO);
1938 			/* Update buffer size. */
1939 			VD_PASTEBUFSZ(vd) = len;
1940 		}
1941 		/* Request copy/paste buffer data, no more than `len' */
1942 		vtbuf_extract_marked(&vw->vw_buf, VD_PASTEBUF(vd),
1943 		    VD_PASTEBUFSZ(vd));
1944 
1945 		VD_PASTEBUFLEN(vd) = len;
1946 
1947 		/* XXX VD_PASTEBUF(vd) have to be freed on shutdown/unload. */
1948 	}
1949 }
1950 
1951 void
1952 vt_mouse_state(int show)
1953 {
1954 	struct vt_device *vd;
1955 	struct vt_window *vw;
1956 
1957 	vd = main_vd;
1958 	vw = vd->vd_curwindow;
1959 
1960 	switch (show) {
1961 	case VT_MOUSE_HIDE:
1962 		vw->vw_flags |= VWF_MOUSE_HIDE;
1963 		break;
1964 	case VT_MOUSE_SHOW:
1965 		vw->vw_flags &= ~VWF_MOUSE_HIDE;
1966 		break;
1967 	}
1968 
1969 	/* Mark mouse position as dirty. */
1970 	vt_mark_mouse_position_as_dirty(vd);
1971 	vt_resume_flush_timer(vw->vw_device, 0);
1972 }
1973 #endif
1974 
1975 static int
1976 vtterm_mmap(struct terminal *tm, vm_ooffset_t offset, vm_paddr_t * paddr,
1977     int nprot, vm_memattr_t *memattr)
1978 {
1979 	struct vt_window *vw = tm->tm_softc;
1980 	struct vt_device *vd = vw->vw_device;
1981 
1982 	if (vd->vd_driver->vd_fb_mmap)
1983 		return (vd->vd_driver->vd_fb_mmap(vd, offset, paddr, nprot,
1984 		    memattr));
1985 
1986 	return (ENXIO);
1987 }
1988 
1989 static int
1990 vtterm_ioctl(struct terminal *tm, u_long cmd, caddr_t data,
1991     struct thread *td)
1992 {
1993 	struct vt_window *vw = tm->tm_softc;
1994 	struct vt_device *vd = vw->vw_device;
1995 	keyboard_t *kbd;
1996 	int error, i, s;
1997 #if defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD5) || \
1998     defined(COMPAT_FREEBSD4) || defined(COMPAT_43)
1999 	int ival;
2000 
2001 	switch (cmd) {
2002 	case _IO('v', 4):
2003 		cmd = VT_RELDISP;
2004 		break;
2005 	case _IO('v', 5):
2006 		cmd = VT_ACTIVATE;
2007 		break;
2008 	case _IO('v', 6):
2009 		cmd = VT_WAITACTIVE;
2010 		break;
2011 	case _IO('K', 20):
2012 		cmd = KDSKBSTATE;
2013 		break;
2014 	case _IO('K', 67):
2015 		cmd = KDSETRAD;
2016 		break;
2017 	case _IO('K', 7):
2018 		cmd = KDSKBMODE;
2019 		break;
2020 	case _IO('K', 8):
2021 		cmd = KDMKTONE;
2022 		break;
2023 	case _IO('K', 63):
2024 		cmd = KIOCSOUND;
2025 		break;
2026 	case _IO('K', 66):
2027 		cmd = KDSETLED;
2028 		break;
2029 	case _IO('c', 110):
2030 		cmd = CONS_SETKBD;
2031 		break;
2032 	default:
2033 		goto skip_thunk;
2034 	}
2035 	ival = IOCPARM_IVAL(data);
2036 	data = (caddr_t)&ival;
2037 skip_thunk:
2038 #endif
2039 
2040 	switch (cmd) {
2041 	case KDSETRAD:		/* set keyboard repeat & delay rates (old) */
2042 		if (*(int *)data & ~0x7f)
2043 			return (EINVAL);
2044 		/* FALLTHROUGH */
2045 	case GIO_KEYMAP:
2046 	case PIO_KEYMAP:
2047 	case GIO_DEADKEYMAP:
2048 	case PIO_DEADKEYMAP:
2049 	case GETFKEY:
2050 	case SETFKEY:
2051 	case KDGKBINFO:
2052 	case KDGKBTYPE:
2053 	case KDGETREPEAT:	/* get keyboard repeat & delay rates */
2054 	case KDSETREPEAT:	/* set keyboard repeat & delay rates (new) */
2055 	case KBADDKBD:		/* add/remove keyboard to/from mux */
2056 	case KBRELKBD: {
2057 		error = 0;
2058 
2059 		mtx_lock(&Giant);
2060 		kbd = kbd_get_keyboard(vd->vd_keyboard);
2061 		if (kbd != NULL)
2062 			error = kbdd_ioctl(kbd, cmd, data);
2063 		mtx_unlock(&Giant);
2064 		if (error == ENOIOCTL) {
2065 			if (cmd == KDGKBTYPE) {
2066 				/* always return something? XXX */
2067 				*(int *)data = 0;
2068 			} else {
2069 				return (ENODEV);
2070 			}
2071 		}
2072 		return (error);
2073 	}
2074 	case KDGKBSTATE: {	/* get keyboard state (locks) */
2075 		error = 0;
2076 
2077 		if (vw == vd->vd_curwindow) {
2078 			mtx_lock(&Giant);
2079 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2080 			if (kbd != NULL)
2081 				error = vt_save_kbd_state(vw, kbd);
2082 			mtx_unlock(&Giant);
2083 
2084 			if (error != 0)
2085 				return (error);
2086 		}
2087 
2088 		*(int *)data = vw->vw_kbdstate & LOCK_MASK;
2089 
2090 		return (error);
2091 	}
2092 	case KDSKBSTATE: {	/* set keyboard state (locks) */
2093 		int state;
2094 
2095 		state = *(int *)data;
2096 		if (state & ~LOCK_MASK)
2097 			return (EINVAL);
2098 
2099 		vw->vw_kbdstate &= ~LOCK_MASK;
2100 		vw->vw_kbdstate |= state;
2101 
2102 		error = 0;
2103 		if (vw == vd->vd_curwindow) {
2104 			mtx_lock(&Giant);
2105 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2106 			if (kbd != NULL)
2107 				error = vt_update_kbd_state(vw, kbd);
2108 			mtx_unlock(&Giant);
2109 		}
2110 
2111 		return (error);
2112 	}
2113 	case KDGETLED: {	/* get keyboard LED status */
2114 		error = 0;
2115 
2116 		if (vw == vd->vd_curwindow) {
2117 			mtx_lock(&Giant);
2118 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2119 			if (kbd != NULL)
2120 				error = vt_save_kbd_leds(vw, kbd);
2121 			mtx_unlock(&Giant);
2122 
2123 			if (error != 0)
2124 				return (error);
2125 		}
2126 
2127 		*(int *)data = vw->vw_kbdstate & LED_MASK;
2128 
2129 		return (error);
2130 	}
2131 	case KDSETLED: {	/* set keyboard LED status */
2132 		int leds;
2133 
2134 		leds = *(int *)data;
2135 		if (leds & ~LED_MASK)
2136 			return (EINVAL);
2137 
2138 		vw->vw_kbdstate &= ~LED_MASK;
2139 		vw->vw_kbdstate |= leds;
2140 
2141 		error = 0;
2142 		if (vw == vd->vd_curwindow) {
2143 			mtx_lock(&Giant);
2144 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2145 			if (kbd != NULL)
2146 				error = vt_update_kbd_leds(vw, kbd);
2147 			mtx_unlock(&Giant);
2148 		}
2149 
2150 		return (error);
2151 	}
2152 	case KDGKBMODE: {
2153 		error = 0;
2154 
2155 		if (vw == vd->vd_curwindow) {
2156 			mtx_lock(&Giant);
2157 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2158 			if (kbd != NULL)
2159 				error = vt_save_kbd_mode(vw, kbd);
2160 			mtx_unlock(&Giant);
2161 
2162 			if (error != 0)
2163 				return (error);
2164 		}
2165 
2166 		*(int *)data = vw->vw_kbdmode;
2167 
2168 		return (error);
2169 	}
2170 	case KDSKBMODE: {
2171 		int mode;
2172 
2173 		mode = *(int *)data;
2174 		switch (mode) {
2175 		case K_XLATE:
2176 		case K_RAW:
2177 		case K_CODE:
2178 			vw->vw_kbdmode = mode;
2179 
2180 			error = 0;
2181 			if (vw == vd->vd_curwindow) {
2182 				mtx_lock(&Giant);
2183 				kbd = kbd_get_keyboard(vd->vd_keyboard);
2184 				if (kbd != NULL)
2185 					error = vt_update_kbd_mode(vw, kbd);
2186 				mtx_unlock(&Giant);
2187 			}
2188 
2189 			return (error);
2190 		default:
2191 			return (EINVAL);
2192 		}
2193 	}
2194 	case FBIOGTYPE:
2195 	case FBIO_GETWINORG:	/* get frame buffer window origin */
2196 	case FBIO_GETDISPSTART:	/* get display start address */
2197 	case FBIO_GETLINEWIDTH:	/* get scan line width in bytes */
2198 	case FBIO_BLANK:	/* blank display */
2199 		if (vd->vd_driver->vd_fb_ioctl)
2200 			return (vd->vd_driver->vd_fb_ioctl(vd, cmd, data, td));
2201 		break;
2202 	case CONS_BLANKTIME:
2203 		/* XXX */
2204 		return (0);
2205 	case CONS_GET:
2206 		/* XXX */
2207 		*(int *)data = M_CG640x480;
2208 		return (0);
2209 	case CONS_BELLTYPE: 	/* set bell type sound */
2210 		if ((*(int *)data) & CONS_QUIET_BELL)
2211 			vd->vd_flags |= VDF_QUIET_BELL;
2212 		else
2213 			vd->vd_flags &= ~VDF_QUIET_BELL;
2214 		return (0);
2215 	case CONS_GETINFO: {
2216 		vid_info_t *vi = (vid_info_t *)data;
2217 		if (vi->size != sizeof(struct vid_info))
2218 			return (EINVAL);
2219 
2220 		if (vw == vd->vd_curwindow) {
2221 			mtx_lock(&Giant);
2222 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2223 			if (kbd != NULL)
2224 				vt_save_kbd_state(vw, kbd);
2225 			mtx_unlock(&Giant);
2226 		}
2227 
2228 		vi->m_num = vd->vd_curwindow->vw_number + 1;
2229 		vi->mk_keylock = vw->vw_kbdstate & LOCK_MASK;
2230 		/* XXX: other fields! */
2231 		return (0);
2232 	}
2233 	case CONS_GETVERS:
2234 		*(int *)data = 0x200;
2235 		return (0);
2236 	case CONS_MODEINFO:
2237 		/* XXX */
2238 		return (0);
2239 	case CONS_MOUSECTL: {
2240 		mouse_info_t *mouse = (mouse_info_t*)data;
2241 
2242 		/*
2243 		 * All the commands except MOUSE_SHOW nd MOUSE_HIDE
2244 		 * should not be applied to individual TTYs, but only to
2245 		 * consolectl.
2246 		 */
2247 		switch (mouse->operation) {
2248 		case MOUSE_HIDE:
2249 			if (vd->vd_flags & VDF_MOUSECURSOR) {
2250 				vd->vd_flags &= ~VDF_MOUSECURSOR;
2251 #ifndef SC_NO_CUTPASTE
2252 				vt_mouse_state(VT_MOUSE_HIDE);
2253 #endif
2254 			}
2255 			return (0);
2256 		case MOUSE_SHOW:
2257 			if (!(vd->vd_flags & VDF_MOUSECURSOR)) {
2258 				vd->vd_flags |= VDF_MOUSECURSOR;
2259 				vd->vd_mx = vd->vd_width / 2;
2260 				vd->vd_my = vd->vd_height / 2;
2261 #ifndef SC_NO_CUTPASTE
2262 				vt_mouse_state(VT_MOUSE_SHOW);
2263 #endif
2264 			}
2265 			return (0);
2266 		default:
2267 			return (EINVAL);
2268 		}
2269 	}
2270 	case PIO_VFONT: {
2271 		struct vt_font *vf;
2272 
2273 		if (vd->vd_flags & VDF_TEXTMODE)
2274 			return (ENOTSUP);
2275 
2276 		error = vtfont_load((void *)data, &vf);
2277 		if (error != 0)
2278 			return (error);
2279 
2280 		error = vt_change_font(vw, vf);
2281 		vtfont_unref(vf);
2282 		return (error);
2283 	}
2284 	case PIO_VFONT_DEFAULT: {
2285 		/* Reset to default font. */
2286 		error = vt_change_font(vw, &vt_font_default);
2287 		return (error);
2288 	}
2289 	case GIO_SCRNMAP: {
2290 		scrmap_t *sm = (scrmap_t *)data;
2291 
2292 		/* We don't have screen maps, so return a handcrafted one. */
2293 		for (i = 0; i < 256; i++)
2294 			sm->scrmap[i] = i;
2295 		return (0);
2296 	}
2297 	case KDSETMODE:
2298 		/*
2299 		 * FIXME: This implementation is incomplete compared to
2300 		 * syscons.
2301 		 */
2302 		switch (*(int *)data) {
2303 		case KD_TEXT:
2304 		case KD_TEXT1:
2305 		case KD_PIXEL:
2306 			vw->vw_flags &= ~VWF_GRAPHICS;
2307 			break;
2308 		case KD_GRAPHICS:
2309 			vw->vw_flags |= VWF_GRAPHICS;
2310 			break;
2311 		}
2312 		return (0);
2313 	case KDENABIO:      	/* allow io operations */
2314 		error = priv_check(td, PRIV_IO);
2315 		if (error != 0)
2316 			return (error);
2317 		error = securelevel_gt(td->td_ucred, 0);
2318 		if (error != 0)
2319 			return (error);
2320 #if defined(__i386__)
2321 		td->td_frame->tf_eflags |= PSL_IOPL;
2322 #elif defined(__amd64__)
2323 		td->td_frame->tf_rflags |= PSL_IOPL;
2324 #endif
2325 		return (0);
2326 	case KDDISABIO:     	/* disallow io operations (default) */
2327 #if defined(__i386__)
2328 		td->td_frame->tf_eflags &= ~PSL_IOPL;
2329 #elif defined(__amd64__)
2330 		td->td_frame->tf_rflags &= ~PSL_IOPL;
2331 #endif
2332 		return (0);
2333 	case KDMKTONE:      	/* sound the bell */
2334 		vtterm_beep(tm, *(u_int *)data);
2335 		return (0);
2336 	case KIOCSOUND:     	/* make tone (*data) hz */
2337 		/* TODO */
2338 		return (0);
2339 	case CONS_SETKBD: 		/* set the new keyboard */
2340 		mtx_lock(&Giant);
2341 		error = 0;
2342 		if (vd->vd_keyboard != *(int *)data) {
2343 			kbd = kbd_get_keyboard(*(int *)data);
2344 			if (kbd == NULL) {
2345 				mtx_unlock(&Giant);
2346 				return (EINVAL);
2347 			}
2348 			i = kbd_allocate(kbd->kb_name, kbd->kb_unit,
2349 			    (void *)vd, vt_kbdevent, vd);
2350 			if (i >= 0) {
2351 				if (vd->vd_keyboard != -1) {
2352 					kbd = kbd_get_keyboard(vd->vd_keyboard);
2353 					vt_save_kbd_state(vd->vd_curwindow, kbd);
2354 					kbd_release(kbd, (void *)vd);
2355 				}
2356 				kbd = kbd_get_keyboard(i);
2357 				vd->vd_keyboard = i;
2358 
2359 				vt_update_kbd_mode(vd->vd_curwindow, kbd);
2360 				vt_update_kbd_state(vd->vd_curwindow, kbd);
2361 			} else {
2362 				error = EPERM;	/* XXX */
2363 			}
2364 		}
2365 		mtx_unlock(&Giant);
2366 		return (error);
2367 	case CONS_RELKBD: 		/* release the current keyboard */
2368 		mtx_lock(&Giant);
2369 		error = 0;
2370 		if (vd->vd_keyboard != -1) {
2371 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2372 			if (kbd == NULL) {
2373 				mtx_unlock(&Giant);
2374 				return (EINVAL);
2375 			}
2376 			vt_save_kbd_state(vd->vd_curwindow, kbd);
2377 			error = kbd_release(kbd, (void *)vd);
2378 			if (error == 0) {
2379 				vd->vd_keyboard = -1;
2380 			}
2381 		}
2382 		mtx_unlock(&Giant);
2383 		return (error);
2384 	case VT_ACTIVATE: {
2385 		int win;
2386 		win = *(int *)data - 1;
2387 		DPRINTF(5, "%s%d: VT_ACTIVATE ttyv%d ", SC_DRIVER_NAME,
2388 		    VT_UNIT(vw), win);
2389 		if ((win >= VT_MAXWINDOWS) || (win < 0))
2390 			return (EINVAL);
2391 		return (vt_proc_window_switch(vd->vd_windows[win]));
2392 	}
2393 	case VT_GETACTIVE:
2394 		*(int *)data = vd->vd_curwindow->vw_number + 1;
2395 		return (0);
2396 	case VT_GETINDEX:
2397 		*(int *)data = vw->vw_number + 1;
2398 		return (0);
2399 	case VT_LOCKSWITCH:
2400 		/* TODO: Check current state, switching can be in progress. */
2401 		if ((*(int *)data) == 0x01)
2402 			vw->vw_flags |= VWF_VTYLOCK;
2403 		else if ((*(int *)data) == 0x02)
2404 			vw->vw_flags &= ~VWF_VTYLOCK;
2405 		else
2406 			return (EINVAL);
2407 		return (0);
2408 	case VT_OPENQRY:
2409 		VT_LOCK(vd);
2410 		for (i = 0; i < VT_MAXWINDOWS; i++) {
2411 			vw = vd->vd_windows[i];
2412 			if (vw == NULL)
2413 				continue;
2414 			if (!(vw->vw_flags & VWF_OPENED)) {
2415 				*(int *)data = vw->vw_number + 1;
2416 				VT_UNLOCK(vd);
2417 				return (0);
2418 			}
2419 		}
2420 		VT_UNLOCK(vd);
2421 		return (EINVAL);
2422 	case VT_WAITACTIVE: {
2423 		unsigned int idx;
2424 
2425 		error = 0;
2426 
2427 		idx = *(unsigned int *)data;
2428 		if (idx > VT_MAXWINDOWS)
2429 			return (EINVAL);
2430 		if (idx > 0)
2431 			vw = vd->vd_windows[idx - 1];
2432 
2433 		VT_LOCK(vd);
2434 		while (vd->vd_curwindow != vw && error == 0)
2435 			error = cv_wait_sig(&vd->vd_winswitch, &vd->vd_lock);
2436 		VT_UNLOCK(vd);
2437 		return (error);
2438 	}
2439 	case VT_SETMODE: {    	/* set screen switcher mode */
2440 		struct vt_mode *mode;
2441 		struct proc *p1;
2442 
2443 		mode = (struct vt_mode *)data;
2444 		DPRINTF(5, "%s%d: VT_SETMODE ", SC_DRIVER_NAME, VT_UNIT(vw));
2445 		if (vw->vw_smode.mode == VT_PROCESS) {
2446 			p1 = pfind(vw->vw_pid);
2447 			if (vw->vw_proc == p1 && vw->vw_proc != td->td_proc) {
2448 				if (p1)
2449 					PROC_UNLOCK(p1);
2450 				DPRINTF(5, "error EPERM\n");
2451 				return (EPERM);
2452 			}
2453 			if (p1)
2454 				PROC_UNLOCK(p1);
2455 		}
2456 		if (mode->mode == VT_AUTO) {
2457 			vw->vw_smode.mode = VT_AUTO;
2458 			vw->vw_proc = NULL;
2459 			vw->vw_pid = 0;
2460 			DPRINTF(5, "VT_AUTO, ");
2461 			if (vw == vw->vw_device->vd_windows[VT_CONSWINDOW])
2462 				cnavailable(vw->vw_terminal->consdev, TRUE);
2463 			/* were we in the middle of the vty switching process? */
2464 			if (finish_vt_rel(vw, TRUE, &s) == 0)
2465 				DPRINTF(5, "reset WAIT_REL, ");
2466 			if (finish_vt_acq(vw) == 0)
2467 				DPRINTF(5, "reset WAIT_ACQ, ");
2468 			return (0);
2469 		} else if (mode->mode == VT_PROCESS) {
2470 			if (!ISSIGVALID(mode->relsig) ||
2471 			    !ISSIGVALID(mode->acqsig) ||
2472 			    !ISSIGVALID(mode->frsig)) {
2473 				DPRINTF(5, "error EINVAL\n");
2474 				return (EINVAL);
2475 			}
2476 			DPRINTF(5, "VT_PROCESS %d, ", td->td_proc->p_pid);
2477 			bcopy(data, &vw->vw_smode, sizeof(struct vt_mode));
2478 			vw->vw_proc = td->td_proc;
2479 			vw->vw_pid = vw->vw_proc->p_pid;
2480 			if (vw == vw->vw_device->vd_windows[VT_CONSWINDOW])
2481 				cnavailable(vw->vw_terminal->consdev, FALSE);
2482 		} else {
2483 			DPRINTF(5, "VT_SETMODE failed, unknown mode %d\n",
2484 			    mode->mode);
2485 			return (EINVAL);
2486 		}
2487 		DPRINTF(5, "\n");
2488 		return (0);
2489 	}
2490 	case VT_GETMODE:	/* get screen switcher mode */
2491 		bcopy(&vw->vw_smode, data, sizeof(struct vt_mode));
2492 		return (0);
2493 
2494 	case VT_RELDISP:	/* screen switcher ioctl */
2495 		/*
2496 		 * This must be the current vty which is in the VT_PROCESS
2497 		 * switching mode...
2498 		 */
2499 		if ((vw != vd->vd_curwindow) || (vw->vw_smode.mode !=
2500 		    VT_PROCESS)) {
2501 			return (EINVAL);
2502 		}
2503 		/* ...and this process is controlling it. */
2504 		if (vw->vw_proc != td->td_proc) {
2505 			return (EPERM);
2506 		}
2507 		error = EINVAL;
2508 		switch(*(int *)data) {
2509 		case VT_FALSE:	/* user refuses to release screen, abort */
2510 			if ((error = finish_vt_rel(vw, FALSE, &s)) == 0)
2511 				DPRINTF(5, "%s%d: VT_RELDISP: VT_FALSE\n",
2512 				    SC_DRIVER_NAME, VT_UNIT(vw));
2513 			break;
2514 		case VT_TRUE:	/* user has released screen, go on */
2515 			/* finish_vt_rel(..., TRUE, ...) should not be locked */
2516 			if (vw->vw_flags & VWF_SWWAIT_REL) {
2517 				if ((error = finish_vt_rel(vw, TRUE, &s)) == 0)
2518 					DPRINTF(5, "%s%d: VT_RELDISP: VT_TRUE\n",
2519 					    SC_DRIVER_NAME, VT_UNIT(vw));
2520 			} else {
2521 				error = EINVAL;
2522 			}
2523 			return (error);
2524 		case VT_ACKACQ:	/* acquire acknowledged, switch completed */
2525 			if ((error = finish_vt_acq(vw)) == 0)
2526 				DPRINTF(5, "%s%d: VT_RELDISP: VT_ACKACQ\n",
2527 				    SC_DRIVER_NAME, VT_UNIT(vw));
2528 			break;
2529 		default:
2530 			break;
2531 		}
2532 		return (error);
2533 	}
2534 
2535 	return (ENOIOCTL);
2536 }
2537 
2538 static struct vt_window *
2539 vt_allocate_window(struct vt_device *vd, unsigned int window)
2540 {
2541 	struct vt_window *vw;
2542 	struct terminal *tm;
2543 	term_pos_t size;
2544 	struct winsize wsz;
2545 
2546 	vw = malloc(sizeof *vw, M_VT, M_WAITOK|M_ZERO);
2547 	vw->vw_device = vd;
2548 	vw->vw_number = window;
2549 	vw->vw_kbdmode = K_XLATE;
2550 
2551 	if ((vd->vd_flags & VDF_TEXTMODE) == 0) {
2552 		vw->vw_font = vtfont_ref(&vt_font_default);
2553 		vt_compute_drawable_area(vw);
2554 	}
2555 
2556 	vt_termsize(vd, vw->vw_font, &size);
2557 	vt_winsize(vd, vw->vw_font, &wsz);
2558 	vtbuf_init(&vw->vw_buf, &size);
2559 
2560 	tm = vw->vw_terminal = terminal_alloc(&vt_termclass, vw);
2561 	terminal_set_winsize(tm, &wsz);
2562 	vd->vd_windows[window] = vw;
2563 	callout_init(&vw->vw_proc_dead_timer, 0);
2564 
2565 	return (vw);
2566 }
2567 
2568 void
2569 vt_upgrade(struct vt_device *vd)
2570 {
2571 	struct vt_window *vw;
2572 	unsigned int i;
2573 	int register_handlers;
2574 
2575 	if (!vty_enabled(VTY_VT))
2576 		return;
2577 	if (main_vd->vd_driver == NULL)
2578 		return;
2579 
2580 	for (i = 0; i < VT_MAXWINDOWS; i++) {
2581 		vw = vd->vd_windows[i];
2582 		if (vw == NULL) {
2583 			/* New window. */
2584 			vw = vt_allocate_window(vd, i);
2585 		}
2586 		if (!(vw->vw_flags & VWF_READY)) {
2587 			callout_init(&vw->vw_proc_dead_timer, 0);
2588 			terminal_maketty(vw->vw_terminal, "v%r", VT_UNIT(vw));
2589 			vw->vw_flags |= VWF_READY;
2590 			if (vw->vw_flags & VWF_CONSOLE) {
2591 				/* For existing console window. */
2592 				EVENTHANDLER_REGISTER(shutdown_pre_sync,
2593 				    vt_window_switch, vw, SHUTDOWN_PRI_DEFAULT);
2594 			}
2595 		}
2596 
2597 	}
2598 	VT_LOCK(vd);
2599 	if (vd->vd_curwindow == NULL)
2600 		vd->vd_curwindow = vd->vd_windows[VT_CONSWINDOW];
2601 
2602 	register_handlers = 0;
2603 	if (!(vd->vd_flags & VDF_ASYNC)) {
2604 		/* Attach keyboard. */
2605 		vt_allocate_keyboard(vd);
2606 
2607 		/* Init 25 Hz timer. */
2608 		callout_init_mtx(&vd->vd_timer, &vd->vd_lock, 0);
2609 
2610 		/* Start timer when everything ready. */
2611 		vd->vd_flags |= VDF_ASYNC;
2612 		callout_reset(&vd->vd_timer, hz / VT_TIMERFREQ, vt_timer, vd);
2613 		vd->vd_timer_armed = 1;
2614 		register_handlers = 1;
2615 	}
2616 
2617 	VT_UNLOCK(vd);
2618 
2619 	/* Refill settings with new sizes. */
2620 	vt_resize(vd);
2621 
2622 	if (register_handlers) {
2623 		/* Register suspend/resume handlers. */
2624 		EVENTHANDLER_REGISTER(power_suspend_early, vt_suspend_handler,
2625 		    vd, EVENTHANDLER_PRI_ANY);
2626 		EVENTHANDLER_REGISTER(power_resume, vt_resume_handler, vd,
2627 		    EVENTHANDLER_PRI_ANY);
2628 	}
2629 }
2630 
2631 static void
2632 vt_resize(struct vt_device *vd)
2633 {
2634 	struct vt_window *vw;
2635 	int i;
2636 
2637 	for (i = 0; i < VT_MAXWINDOWS; i++) {
2638 		vw = vd->vd_windows[i];
2639 		VT_LOCK(vd);
2640 		/* Assign default font to window, if not textmode. */
2641 		if (!(vd->vd_flags & VDF_TEXTMODE) && vw->vw_font == NULL)
2642 			vw->vw_font = vtfont_ref(&vt_font_default);
2643 		VT_UNLOCK(vd);
2644 
2645 		/* Resize terminal windows */
2646 		while (vt_change_font(vw, vw->vw_font) == EBUSY) {
2647 			DPRINTF(100, "%s: vt_change_font() is busy, "
2648 			    "window %d\n", __func__, i);
2649 		}
2650 	}
2651 }
2652 
2653 static void
2654 vt_replace_backend(const struct vt_driver *drv, void *softc)
2655 {
2656 	struct vt_device *vd;
2657 
2658 	vd = main_vd;
2659 
2660 	if (vd->vd_flags & VDF_ASYNC) {
2661 		/* Stop vt_flush periodic task. */
2662 		VT_LOCK(vd);
2663 		vt_suspend_flush_timer(vd);
2664 		VT_UNLOCK(vd);
2665 		/*
2666 		 * Mute current terminal until we done. vt_change_font (called
2667 		 * from vt_resize) will unmute it.
2668 		 */
2669 		terminal_mute(vd->vd_curwindow->vw_terminal, 1);
2670 	}
2671 
2672 	/*
2673 	 * Reset VDF_TEXTMODE flag, driver who require that flag (vt_vga) will
2674 	 * set it.
2675 	 */
2676 	VT_LOCK(vd);
2677 	vd->vd_flags &= ~VDF_TEXTMODE;
2678 
2679 	if (drv != NULL) {
2680 		/*
2681 		 * We want to upgrade from the current driver to the
2682 		 * given driver.
2683 		 */
2684 
2685 		vd->vd_prev_driver = vd->vd_driver;
2686 		vd->vd_prev_softc = vd->vd_softc;
2687 		vd->vd_driver = drv;
2688 		vd->vd_softc = softc;
2689 
2690 		vd->vd_driver->vd_init(vd);
2691 	} else if (vd->vd_prev_driver != NULL && vd->vd_prev_softc != NULL) {
2692 		/*
2693 		 * No driver given: we want to downgrade to the previous
2694 		 * driver.
2695 		 */
2696 		const struct vt_driver *old_drv;
2697 		void *old_softc;
2698 
2699 		old_drv = vd->vd_driver;
2700 		old_softc = vd->vd_softc;
2701 
2702 		vd->vd_driver = vd->vd_prev_driver;
2703 		vd->vd_softc = vd->vd_prev_softc;
2704 		vd->vd_prev_driver = NULL;
2705 		vd->vd_prev_softc = NULL;
2706 
2707 		vd->vd_flags |= VDF_DOWNGRADE;
2708 
2709 		vd->vd_driver->vd_init(vd);
2710 
2711 		if (old_drv->vd_fini)
2712 			old_drv->vd_fini(vd, old_softc);
2713 
2714 		vd->vd_flags &= ~VDF_DOWNGRADE;
2715 	}
2716 
2717 	VT_UNLOCK(vd);
2718 
2719 	/* Update windows sizes and initialize last items. */
2720 	vt_upgrade(vd);
2721 
2722 #ifdef DEV_SPLASH
2723 	if (vd->vd_flags & VDF_SPLASH)
2724 		vtterm_splash(vd);
2725 #endif
2726 
2727 	if (vd->vd_flags & VDF_ASYNC) {
2728 		/* Allow to put chars now. */
2729 		terminal_mute(vd->vd_curwindow->vw_terminal, 0);
2730 		/* Rerun timer for screen updates. */
2731 		vt_resume_flush_timer(vd, 0);
2732 	}
2733 
2734 	/*
2735 	 * Register as console. If it already registered, cnadd() will ignore
2736 	 * it.
2737 	 */
2738 	termcn_cnregister(vd->vd_windows[VT_CONSWINDOW]->vw_terminal);
2739 }
2740 
2741 static void
2742 vt_suspend_handler(void *priv)
2743 {
2744 	struct vt_device *vd;
2745 
2746 	vd = priv;
2747 	if (vd->vd_driver != NULL && vd->vd_driver->vd_suspend != NULL)
2748 		vd->vd_driver->vd_suspend(vd);
2749 }
2750 
2751 static void
2752 vt_resume_handler(void *priv)
2753 {
2754 	struct vt_device *vd;
2755 
2756 	vd = priv;
2757 	if (vd->vd_driver != NULL && vd->vd_driver->vd_resume != NULL)
2758 		vd->vd_driver->vd_resume(vd);
2759 }
2760 
2761 void
2762 vt_allocate(const struct vt_driver *drv, void *softc)
2763 {
2764 
2765 	if (!vty_enabled(VTY_VT))
2766 		return;
2767 
2768 	if (main_vd->vd_driver == NULL) {
2769 		main_vd->vd_driver = drv;
2770 		printf("VT: initialize with new VT driver \"%s\".\n",
2771 		    drv->vd_name);
2772 	} else {
2773 		/*
2774 		 * Check if have rights to replace current driver. For example:
2775 		 * it is bad idea to replace KMS driver with generic VGA one.
2776 		 */
2777 		if (drv->vd_priority <= main_vd->vd_driver->vd_priority) {
2778 			printf("VT: Driver priority %d too low. Current %d\n ",
2779 			    drv->vd_priority, main_vd->vd_driver->vd_priority);
2780 			return;
2781 		}
2782 		printf("VT: Replacing driver \"%s\" with new \"%s\".\n",
2783 		    main_vd->vd_driver->vd_name, drv->vd_name);
2784 	}
2785 
2786 	vt_replace_backend(drv, softc);
2787 }
2788 
2789 void
2790 vt_deallocate(const struct vt_driver *drv, void *softc)
2791 {
2792 
2793 	if (!vty_enabled(VTY_VT))
2794 		return;
2795 
2796 	if (main_vd->vd_prev_driver == NULL ||
2797 	    main_vd->vd_driver != drv ||
2798 	    main_vd->vd_softc != softc)
2799 		return;
2800 
2801 	printf("VT: Switching back from \"%s\" to \"%s\".\n",
2802 	    main_vd->vd_driver->vd_name, main_vd->vd_prev_driver->vd_name);
2803 
2804 	vt_replace_backend(NULL, NULL);
2805 }
2806 
2807 void
2808 vt_suspend(struct vt_device *vd)
2809 {
2810 	int error;
2811 
2812 	if (vt_suspendswitch == 0)
2813 		return;
2814 	/* Save current window. */
2815 	vd->vd_savedwindow = vd->vd_curwindow;
2816 	/* Ask holding process to free window and switch to console window */
2817 	vt_proc_window_switch(vd->vd_windows[VT_CONSWINDOW]);
2818 
2819 	/* Wait for the window switch to complete. */
2820 	error = 0;
2821 	VT_LOCK(vd);
2822 	while (vd->vd_curwindow != vd->vd_windows[VT_CONSWINDOW] && error == 0)
2823 		error = cv_wait_sig(&vd->vd_winswitch, &vd->vd_lock);
2824 	VT_UNLOCK(vd);
2825 }
2826 
2827 void
2828 vt_resume(struct vt_device *vd)
2829 {
2830 
2831 	if (vt_suspendswitch == 0)
2832 		return;
2833 	/* Switch back to saved window, if any */
2834 	vt_proc_window_switch(vd->vd_savedwindow);
2835 	vd->vd_savedwindow = NULL;
2836 }
2837