xref: /freebsd/sys/dev/vt/vt_core.c (revision 4aa92fe2f385fa66a86878dd38e29cde6c28ece7)
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_window *vw, term_color_t c)
1154 {
1155 	struct vt_device *vd = vw->vw_device;
1156 	term_rect_t *vda = &vw->vw_draw_area;
1157 	int x, y;
1158 
1159 	/* Top bar. */
1160 	for (y = 0; y < vda->tr_begin.tp_row; y++)
1161 		for (x = 0; x < vd->vd_width; x++)
1162 			vd->vd_driver->vd_setpixel(vd, x, y, c);
1163 
1164 	for (y = vda->tr_begin.tp_row; y <= vda->tr_end.tp_row; y++) {
1165 		/* Left bar. */
1166 		for (x = 0; x < vda->tr_begin.tp_col; x++)
1167 			vd->vd_driver->vd_setpixel(vd, x, y, c);
1168 
1169 		/* Right bar. */
1170 		for (x = vda->tr_end.tp_col + 1; x < vd->vd_width; x++)
1171 			vd->vd_driver->vd_setpixel(vd, x, y, c);
1172 	}
1173 
1174 	/* Bottom bar. */
1175 	for (y = vda->tr_end.tp_row + 1; y < vd->vd_height; y++)
1176 		for (x = 0; x < vd->vd_width; x++)
1177 			vd->vd_driver->vd_setpixel(vd, x, y, c);
1178 }
1179 
1180 static int
1181 vt_flush(struct vt_device *vd)
1182 {
1183 	struct vt_window *vw;
1184 	struct vt_font *vf;
1185 	term_rect_t tarea;
1186 #ifndef SC_NO_CUTPASTE
1187 	int cursor_was_shown, cursor_moved;
1188 #endif
1189 
1190 	vw = vd->vd_curwindow;
1191 	if (vw == NULL)
1192 		return (0);
1193 
1194 	if (vd->vd_flags & VDF_SPLASH || vw->vw_flags & VWF_BUSY)
1195 		return (0);
1196 
1197 	vf = vw->vw_font;
1198 	if (((vd->vd_flags & VDF_TEXTMODE) == 0) && (vf == NULL))
1199 		return (0);
1200 
1201 #ifndef SC_NO_CUTPASTE
1202 	cursor_was_shown = vd->vd_mshown;
1203 	cursor_moved = (vd->vd_mx != vd->vd_mx_drawn ||
1204 	    vd->vd_my != vd->vd_my_drawn);
1205 
1206 	/* Check if the cursor should be displayed or not. */
1207 	if ((vd->vd_flags & VDF_MOUSECURSOR) && /* Mouse support enabled. */
1208 	    !(vw->vw_flags & VWF_MOUSE_HIDE) && /* Cursor displayed.      */
1209 	    !kdb_active && panicstr == NULL) {  /* DDB inactive.          */
1210 		vd->vd_mshown = 1;
1211 	} else {
1212 		vd->vd_mshown = 0;
1213 	}
1214 
1215 	/*
1216 	 * If the cursor changed display state or moved, we must mark
1217 	 * the old position as dirty, so that it's erased.
1218 	 */
1219 	if (cursor_was_shown != vd->vd_mshown ||
1220 	    (vd->vd_mshown && cursor_moved))
1221 		vt_mark_mouse_position_as_dirty(vd);
1222 
1223 	/*
1224          * Save position of the mouse cursor. It's used by backends to
1225          * know where to draw the cursor and during the next refresh to
1226          * erase the previous position.
1227 	 */
1228 	vd->vd_mx_drawn = vd->vd_mx;
1229 	vd->vd_my_drawn = vd->vd_my;
1230 
1231 	/*
1232 	 * If the cursor is displayed and has moved since last refresh,
1233 	 * mark the new position as dirty.
1234 	 */
1235 	if (vd->vd_mshown && cursor_moved)
1236 		vt_mark_mouse_position_as_dirty(vd);
1237 #endif
1238 
1239 	vtbuf_undirty(&vw->vw_buf, &tarea);
1240 
1241 	/* Force a full redraw when the screen contents are invalid. */
1242 	if (vd->vd_flags & VDF_INVALID) {
1243 		vd->vd_flags &= ~VDF_INVALID;
1244 
1245 		vt_set_border(vw, TC_BLACK);
1246 		vt_termrect(vd, vf, &tarea);
1247 		if (vt_draw_logo_cpus)
1248 			vtterm_draw_cpu_logos(vd);
1249 	}
1250 
1251 	if (tarea.tr_begin.tp_col < tarea.tr_end.tp_col) {
1252 		vd->vd_driver->vd_bitblt_text(vd, vw, &tarea);
1253 		return (1);
1254 	}
1255 
1256 	return (0);
1257 }
1258 
1259 static void
1260 vt_timer(void *arg)
1261 {
1262 	struct vt_device *vd;
1263 	int changed;
1264 
1265 	vd = arg;
1266 	/* Update screen if required. */
1267 	changed = vt_flush(vd);
1268 
1269 	/* Schedule for next update. */
1270 	if (changed)
1271 		vt_schedule_flush(vd, 0);
1272 	else
1273 		vd->vd_timer_armed = 0;
1274 }
1275 
1276 static void
1277 vtterm_done(struct terminal *tm)
1278 {
1279 	struct vt_window *vw = tm->tm_softc;
1280 	struct vt_device *vd = vw->vw_device;
1281 
1282 	if (kdb_active || panicstr != NULL) {
1283 		/* Switch to the debugger. */
1284 		if (vd->vd_curwindow != vw) {
1285 			vd->vd_curwindow = vw;
1286 			vd->vd_flags |= VDF_INVALID;
1287 			if (vd->vd_driver->vd_postswitch)
1288 				vd->vd_driver->vd_postswitch(vd);
1289 		}
1290 		vd->vd_flags &= ~VDF_SPLASH;
1291 		vt_flush(vd);
1292 	} else if (!(vd->vd_flags & VDF_ASYNC)) {
1293 		vt_flush(vd);
1294 	}
1295 }
1296 
1297 #ifdef DEV_SPLASH
1298 static void
1299 vtterm_splash(struct vt_device *vd)
1300 {
1301 	vt_axis_t top, left;
1302 
1303 	/* Display a nice boot splash. */
1304 	if (!(vd->vd_flags & VDF_TEXTMODE) && (boothowto & RB_MUTE)) {
1305 
1306 		top = (vd->vd_height - vt_logo_height) / 2;
1307 		left = (vd->vd_width - vt_logo_width) / 2;
1308 		switch (vt_logo_depth) {
1309 		case 1:
1310 			/* XXX: Unhardcode colors! */
1311 			vd->vd_driver->vd_bitblt_bmp(vd, vd->vd_curwindow,
1312 			    vt_logo_image, NULL, vt_logo_width, vt_logo_height,
1313 			    left, top, TC_WHITE, TC_BLACK);
1314 		}
1315 		vd->vd_flags |= VDF_SPLASH;
1316 	}
1317 }
1318 #endif
1319 
1320 
1321 static void
1322 vtterm_cnprobe(struct terminal *tm, struct consdev *cp)
1323 {
1324 	struct vt_driver *vtd, **vtdlist, *vtdbest = NULL;
1325 	struct vt_window *vw = tm->tm_softc;
1326 	struct vt_device *vd = vw->vw_device;
1327 	struct winsize wsz;
1328 	term_attr_t attr;
1329 	term_char_t c;
1330 
1331 	if (!vty_enabled(VTY_VT))
1332 		return;
1333 
1334 	if (vd->vd_flags & VDF_INITIALIZED)
1335 		/* Initialization already done. */
1336 		return;
1337 
1338 	SET_FOREACH(vtdlist, vt_drv_set) {
1339 		vtd = *vtdlist;
1340 		if (vtd->vd_probe == NULL)
1341 			continue;
1342 		if (vtd->vd_probe(vd) == CN_DEAD)
1343 			continue;
1344 		if ((vtdbest == NULL) ||
1345 		    (vtd->vd_priority > vtdbest->vd_priority))
1346 			vtdbest = vtd;
1347 	}
1348 	if (vtdbest == NULL) {
1349 		cp->cn_pri = CN_DEAD;
1350 		vd->vd_flags |= VDF_DEAD;
1351 	} else {
1352 		vd->vd_driver = vtdbest;
1353 		cp->cn_pri = vd->vd_driver->vd_init(vd);
1354 	}
1355 
1356 	/* Check if driver's vt_init return CN_DEAD. */
1357 	if (cp->cn_pri == CN_DEAD) {
1358 		vd->vd_flags |= VDF_DEAD;
1359 	}
1360 
1361 	/* Initialize any early-boot keyboard drivers */
1362 	kbd_configure(KB_CONF_PROBE_ONLY);
1363 
1364 	vd->vd_unit = atomic_fetchadd_int(&vt_unit, 1);
1365 	vd->vd_windows[VT_CONSWINDOW] = vw;
1366 	sprintf(cp->cn_name, "ttyv%r", VT_UNIT(vw));
1367 
1368 	/* Attach default font if not in TEXTMODE. */
1369 	if ((vd->vd_flags & VDF_TEXTMODE) == 0) {
1370 		vw->vw_font = vtfont_ref(&vt_font_default);
1371 		vt_compute_drawable_area(vw);
1372 	}
1373 
1374 	/*
1375 	 * The original screen size was faked (_VTDEFW x _VTDEFH). Now
1376 	 * that we have the real viewable size, fix it in the static
1377 	 * buffer.
1378 	 */
1379 	if (vd->vd_width != 0 && vd->vd_height != 0)
1380 		vt_termsize(vd, vw->vw_font, &vw->vw_buf.vb_scr_size);
1381 
1382 	vtbuf_init_early(&vw->vw_buf);
1383 	vt_winsize(vd, vw->vw_font, &wsz);
1384 	c = (boothowto & RB_MUTE) == 0 ? TERMINAL_KERN_ATTR :
1385 	    TERMINAL_NORM_ATTR;
1386 	attr.ta_format = TCHAR_FORMAT(c);
1387 	attr.ta_fgcolor = TCHAR_FGCOLOR(c);
1388 	attr.ta_bgcolor = TCHAR_BGCOLOR(c);
1389 	terminal_set_winsize_blank(tm, &wsz, 1, &attr);
1390 
1391 	if (vtdbest != NULL) {
1392 #ifdef DEV_SPLASH
1393 		if (!vt_splash_cpu)
1394 			vtterm_splash(vd);
1395 #endif
1396 		vd->vd_flags |= VDF_INITIALIZED;
1397 	}
1398 }
1399 
1400 static int
1401 vtterm_cngetc(struct terminal *tm)
1402 {
1403 	struct vt_window *vw = tm->tm_softc;
1404 	struct vt_device *vd = vw->vw_device;
1405 	keyboard_t *kbd;
1406 	u_int c;
1407 
1408 	if (vw->vw_kbdsq && *vw->vw_kbdsq)
1409 		return (*vw->vw_kbdsq++);
1410 
1411 	/* Make sure the splash screen is not there. */
1412 	if (vd->vd_flags & VDF_SPLASH) {
1413 		/* Remove splash */
1414 		vd->vd_flags &= ~VDF_SPLASH;
1415 		/* Mark screen as invalid to force update */
1416 		vd->vd_flags |= VDF_INVALID;
1417 		vt_flush(vd);
1418 	}
1419 
1420 	/* Stripped down keyboard handler. */
1421 	kbd = kbd_get_keyboard(vd->vd_keyboard);
1422 	if (kbd == NULL)
1423 		return (-1);
1424 
1425 	/* Force keyboard input mode to K_XLATE */
1426 	vw->vw_kbdmode = K_XLATE;
1427 	vt_update_kbd_mode(vw, kbd);
1428 
1429 	/* Switch the keyboard to polling to make it work here. */
1430 	kbdd_poll(kbd, TRUE);
1431 	c = kbdd_read_char(kbd, 0);
1432 	kbdd_poll(kbd, FALSE);
1433 	if (c & RELKEY)
1434 		return (-1);
1435 
1436 	if (vw->vw_flags & VWF_SCROLL) {
1437 		vt_scrollmode_kbdevent(vw, c, 1/* Console mode */);
1438 		vt_flush(vd);
1439 		return (-1);
1440 	}
1441 
1442 	/* Stripped down handling of vt_kbdevent(), without locking, etc. */
1443 	if (c & SPCLKEY) {
1444 		switch (c) {
1445 		case SPCLKEY | SLK:
1446 			vt_save_kbd_state(vw, kbd);
1447 			if (vw->vw_kbdstate & SLKED) {
1448 				/* Turn scrolling on. */
1449 				vw->vw_flags |= VWF_SCROLL;
1450 				VTBUF_SLCK_ENABLE(&vw->vw_buf);
1451 			} else {
1452 				/* Turn scrolling off. */
1453 				vt_scroll(vw, 0, VHS_END);
1454 				vw->vw_flags &= ~VWF_SCROLL;
1455 				VTBUF_SLCK_DISABLE(&vw->vw_buf);
1456 			}
1457 			break;
1458 		/* XXX: KDB can handle history. */
1459 		case SPCLKEY | FKEY | F(50): /* Arrow up. */
1460 			vw->vw_kbdsq = "\x1b[A";
1461 			break;
1462 		case SPCLKEY | FKEY | F(58): /* Arrow down. */
1463 			vw->vw_kbdsq = "\x1b[B";
1464 			break;
1465 		case SPCLKEY | FKEY | F(55): /* Arrow right. */
1466 			vw->vw_kbdsq = "\x1b[C";
1467 			break;
1468 		case SPCLKEY | FKEY | F(53): /* Arrow left. */
1469 			vw->vw_kbdsq = "\x1b[D";
1470 			break;
1471 		}
1472 
1473 		/* Force refresh to make scrollback work. */
1474 		vt_flush(vd);
1475 	} else if (KEYFLAGS(c) == 0) {
1476 		return (KEYCHAR(c));
1477 	}
1478 
1479 	if (vw->vw_kbdsq && *vw->vw_kbdsq)
1480 		return (*vw->vw_kbdsq++);
1481 
1482 	return (-1);
1483 }
1484 
1485 static void
1486 vtterm_cngrab(struct terminal *tm)
1487 {
1488 	struct vt_device *vd;
1489 	struct vt_window *vw;
1490 	keyboard_t *kbd;
1491 
1492 	vw = tm->tm_softc;
1493 	vd = vw->vw_device;
1494 
1495 	if (!cold)
1496 		vt_window_switch(vw);
1497 
1498 	kbd = kbd_get_keyboard(vd->vd_keyboard);
1499 	if (kbd == NULL)
1500 		return;
1501 
1502 	if (vw->vw_grabbed++ > 0)
1503 		return;
1504 
1505 	/*
1506 	 * Make sure the keyboard is accessible even when the kbd device
1507 	 * driver is disabled.
1508 	 */
1509 	kbdd_enable(kbd);
1510 
1511 	/* We shall always use the keyboard in the XLATE mode here. */
1512 	vw->vw_prev_kbdmode = vw->vw_kbdmode;
1513 	vw->vw_kbdmode = K_XLATE;
1514 	vt_update_kbd_mode(vw, kbd);
1515 
1516 	kbdd_poll(kbd, TRUE);
1517 }
1518 
1519 static void
1520 vtterm_cnungrab(struct terminal *tm)
1521 {
1522 	struct vt_device *vd;
1523 	struct vt_window *vw;
1524 	keyboard_t *kbd;
1525 
1526 	vw = tm->tm_softc;
1527 	vd = vw->vw_device;
1528 
1529 	kbd = kbd_get_keyboard(vd->vd_keyboard);
1530 	if (kbd == NULL)
1531 		return;
1532 
1533 	if (--vw->vw_grabbed > 0)
1534 		return;
1535 
1536 	kbdd_poll(kbd, FALSE);
1537 
1538 	vw->vw_kbdmode = vw->vw_prev_kbdmode;
1539 	vt_update_kbd_mode(vw, kbd);
1540 	kbdd_disable(kbd);
1541 }
1542 
1543 static void
1544 vtterm_opened(struct terminal *tm, int opened)
1545 {
1546 	struct vt_window *vw = tm->tm_softc;
1547 	struct vt_device *vd = vw->vw_device;
1548 
1549 	VT_LOCK(vd);
1550 	vd->vd_flags &= ~VDF_SPLASH;
1551 	if (opened)
1552 		vw->vw_flags |= VWF_OPENED;
1553 	else {
1554 		vw->vw_flags &= ~VWF_OPENED;
1555 		/* TODO: finish ACQ/REL */
1556 	}
1557 	VT_UNLOCK(vd);
1558 }
1559 
1560 static int
1561 vt_change_font(struct vt_window *vw, struct vt_font *vf)
1562 {
1563 	struct vt_device *vd = vw->vw_device;
1564 	struct terminal *tm = vw->vw_terminal;
1565 	term_pos_t size;
1566 	struct winsize wsz;
1567 
1568 	/*
1569 	 * Changing fonts.
1570 	 *
1571 	 * Changing fonts is a little tricky.  We must prevent
1572 	 * simultaneous access to the device, so we must stop
1573 	 * the display timer and the terminal from accessing.
1574 	 * We need to switch fonts and grow our screen buffer.
1575 	 *
1576 	 * XXX: Right now the code uses terminal_mute() to
1577 	 * prevent data from reaching the console driver while
1578 	 * resizing the screen buffer.  This isn't elegant...
1579 	 */
1580 
1581 	VT_LOCK(vd);
1582 	if (vw->vw_flags & VWF_BUSY) {
1583 		/* Another process is changing the font. */
1584 		VT_UNLOCK(vd);
1585 		return (EBUSY);
1586 	}
1587 	vw->vw_flags |= VWF_BUSY;
1588 	VT_UNLOCK(vd);
1589 
1590 	vt_termsize(vd, vf, &size);
1591 	vt_winsize(vd, vf, &wsz);
1592 
1593 	/* Grow the screen buffer and terminal. */
1594 	terminal_mute(tm, 1);
1595 	vtbuf_grow(&vw->vw_buf, &size, vw->vw_buf.vb_history_size);
1596 	terminal_set_winsize_blank(tm, &wsz, 0, NULL);
1597 	terminal_set_cursor(tm, &vw->vw_buf.vb_cursor);
1598 	terminal_mute(tm, 0);
1599 
1600 	/* Actually apply the font to the current window. */
1601 	VT_LOCK(vd);
1602 	if (vw->vw_font != vf && vw->vw_font != NULL && vf != NULL) {
1603 		/*
1604 		 * In case vt_change_font called to update size we don't need
1605 		 * to update font link.
1606 		 */
1607 		vtfont_unref(vw->vw_font);
1608 		vw->vw_font = vtfont_ref(vf);
1609 	}
1610 
1611 	/*
1612 	 * Compute the drawable area and move the mouse cursor inside
1613 	 * it, in case the new area is smaller than the previous one.
1614 	 */
1615 	vt_compute_drawable_area(vw);
1616 	vd->vd_mx = min(vd->vd_mx,
1617 	    vw->vw_draw_area.tr_end.tp_col -
1618 	    vw->vw_draw_area.tr_begin.tp_col - 1);
1619 	vd->vd_my = min(vd->vd_my,
1620 	    vw->vw_draw_area.tr_end.tp_row -
1621 	    vw->vw_draw_area.tr_begin.tp_row - 1);
1622 
1623 	/* Force a full redraw the next timer tick. */
1624 	if (vd->vd_curwindow == vw) {
1625 		vd->vd_flags |= VDF_INVALID;
1626 		vt_resume_flush_timer(vw->vw_device, 0);
1627 	}
1628 	vw->vw_flags &= ~VWF_BUSY;
1629 	VT_UNLOCK(vd);
1630 	return (0);
1631 }
1632 
1633 static int
1634 vt_proc_alive(struct vt_window *vw)
1635 {
1636 	struct proc *p;
1637 
1638 	if (vw->vw_smode.mode != VT_PROCESS)
1639 		return (FALSE);
1640 
1641 	if (vw->vw_proc) {
1642 		if ((p = pfind(vw->vw_pid)) != NULL)
1643 			PROC_UNLOCK(p);
1644 		if (vw->vw_proc == p)
1645 			return (TRUE);
1646 		vw->vw_proc = NULL;
1647 		vw->vw_smode.mode = VT_AUTO;
1648 		DPRINTF(1, "vt controlling process %d died\n", vw->vw_pid);
1649 		vw->vw_pid = 0;
1650 	}
1651 	return (FALSE);
1652 }
1653 
1654 static int
1655 signal_vt_rel(struct vt_window *vw)
1656 {
1657 
1658 	if (vw->vw_smode.mode != VT_PROCESS)
1659 		return (FALSE);
1660 	if (vw->vw_proc == NULL || vt_proc_alive(vw) == FALSE) {
1661 		vw->vw_proc = NULL;
1662 		vw->vw_pid = 0;
1663 		return (TRUE);
1664 	}
1665 	vw->vw_flags |= VWF_SWWAIT_REL;
1666 	PROC_LOCK(vw->vw_proc);
1667 	kern_psignal(vw->vw_proc, vw->vw_smode.relsig);
1668 	PROC_UNLOCK(vw->vw_proc);
1669 	DPRINTF(1, "sending relsig to %d\n", vw->vw_pid);
1670 	return (TRUE);
1671 }
1672 
1673 static int
1674 signal_vt_acq(struct vt_window *vw)
1675 {
1676 
1677 	if (vw->vw_smode.mode != VT_PROCESS)
1678 		return (FALSE);
1679 	if (vw == vw->vw_device->vd_windows[VT_CONSWINDOW])
1680 		cnavailable(vw->vw_terminal->consdev, FALSE);
1681 	if (vw->vw_proc == NULL || vt_proc_alive(vw) == FALSE) {
1682 		vw->vw_proc = NULL;
1683 		vw->vw_pid = 0;
1684 		return (TRUE);
1685 	}
1686 	vw->vw_flags |= VWF_SWWAIT_ACQ;
1687 	PROC_LOCK(vw->vw_proc);
1688 	kern_psignal(vw->vw_proc, vw->vw_smode.acqsig);
1689 	PROC_UNLOCK(vw->vw_proc);
1690 	DPRINTF(1, "sending acqsig to %d\n", vw->vw_pid);
1691 	return (TRUE);
1692 }
1693 
1694 static int
1695 finish_vt_rel(struct vt_window *vw, int release, int *s)
1696 {
1697 
1698 	if (vw->vw_flags & VWF_SWWAIT_REL) {
1699 		vw->vw_flags &= ~VWF_SWWAIT_REL;
1700 		if (release) {
1701 			callout_drain(&vw->vw_proc_dead_timer);
1702 			vt_late_window_switch(vw->vw_switch_to);
1703 		}
1704 		return (0);
1705 	}
1706 	return (EINVAL);
1707 }
1708 
1709 static int
1710 finish_vt_acq(struct vt_window *vw)
1711 {
1712 
1713 	if (vw->vw_flags & VWF_SWWAIT_ACQ) {
1714 		vw->vw_flags &= ~VWF_SWWAIT_ACQ;
1715 		return (0);
1716 	}
1717 	return (EINVAL);
1718 }
1719 
1720 #ifndef SC_NO_CUTPASTE
1721 static void
1722 vt_mouse_terminput_button(struct vt_device *vd, int button)
1723 {
1724 	struct vt_window *vw;
1725 	struct vt_font *vf;
1726 	char mouseb[6] = "\x1B[M";
1727 	int i, x, y;
1728 
1729 	vw = vd->vd_curwindow;
1730 	vf = vw->vw_font;
1731 
1732 	/* Translate to char position. */
1733 	x = vd->vd_mx / vf->vf_width;
1734 	y = vd->vd_my / vf->vf_height;
1735 	/* Avoid overflow. */
1736 	x = MIN(x, 255 - '!');
1737 	y = MIN(y, 255 - '!');
1738 
1739 	mouseb[3] = ' ' + button;
1740 	mouseb[4] = '!' + x;
1741 	mouseb[5] = '!' + y;
1742 
1743 	for (i = 0; i < sizeof(mouseb); i++)
1744 		terminal_input_char(vw->vw_terminal, mouseb[i]);
1745 }
1746 
1747 static void
1748 vt_mouse_terminput(struct vt_device *vd, int type, int x, int y, int event,
1749     int cnt)
1750 {
1751 
1752 	switch (type) {
1753 	case MOUSE_BUTTON_EVENT:
1754 		if (cnt > 0) {
1755 			/* Mouse button pressed. */
1756 			if (event & MOUSE_BUTTON1DOWN)
1757 				vt_mouse_terminput_button(vd, 0);
1758 			if (event & MOUSE_BUTTON2DOWN)
1759 				vt_mouse_terminput_button(vd, 1);
1760 			if (event & MOUSE_BUTTON3DOWN)
1761 				vt_mouse_terminput_button(vd, 2);
1762 		} else {
1763 			/* Mouse button released. */
1764 			vt_mouse_terminput_button(vd, 3);
1765 		}
1766 		break;
1767 #ifdef notyet
1768 	case MOUSE_MOTION_EVENT:
1769 		if (mouse->u.data.z < 0) {
1770 			/* Scroll up. */
1771 			sc_mouse_input_button(vd, 64);
1772 		} else if (mouse->u.data.z > 0) {
1773 			/* Scroll down. */
1774 			sc_mouse_input_button(vd, 65);
1775 		}
1776 		break;
1777 #endif
1778 	}
1779 }
1780 
1781 static void
1782 vt_mouse_paste()
1783 {
1784 	term_char_t *buf;
1785 	int i, len;
1786 
1787 	len = VD_PASTEBUFLEN(main_vd);
1788 	buf = VD_PASTEBUF(main_vd);
1789 	len /= sizeof(term_char_t);
1790 	for (i = 0; i < len; i++) {
1791 		if (buf[i] == '\0')
1792 			continue;
1793 		terminal_input_char(main_vd->vd_curwindow->vw_terminal,
1794 		    buf[i]);
1795 	}
1796 }
1797 
1798 void
1799 vt_mouse_event(int type, int x, int y, int event, int cnt, int mlevel)
1800 {
1801 	struct vt_device *vd;
1802 	struct vt_window *vw;
1803 	struct vt_font *vf;
1804 	term_pos_t size;
1805 	int len, mark;
1806 
1807 	vd = main_vd;
1808 	vw = vd->vd_curwindow;
1809 	vf = vw->vw_font;
1810 	mark = 0;
1811 
1812 	if (vw->vw_flags & (VWF_MOUSE_HIDE | VWF_GRAPHICS))
1813 		/*
1814 		 * Either the mouse is disabled, or the window is in
1815 		 * "graphics mode". The graphics mode is usually set by
1816 		 * an X server, using the KDSETMODE ioctl.
1817 		 */
1818 		return;
1819 
1820 	if (vf == NULL)	/* Text mode. */
1821 		return;
1822 
1823 	/*
1824 	 * TODO: add flag about pointer position changed, to not redraw chars
1825 	 * under mouse pointer when nothing changed.
1826 	 */
1827 
1828 	if (vw->vw_mouse_level > 0)
1829 		vt_mouse_terminput(vd, type, x, y, event, cnt);
1830 
1831 	switch (type) {
1832 	case MOUSE_ACTION:
1833 	case MOUSE_MOTION_EVENT:
1834 		/* Movement */
1835 		x += vd->vd_mx;
1836 		y += vd->vd_my;
1837 
1838 		vt_termsize(vd, vf, &size);
1839 
1840 		/* Apply limits. */
1841 		x = MAX(x, 0);
1842 		y = MAX(y, 0);
1843 		x = MIN(x, (size.tp_col * vf->vf_width) - 1);
1844 		y = MIN(y, (size.tp_row * vf->vf_height) - 1);
1845 
1846 		vd->vd_mx = x;
1847 		vd->vd_my = y;
1848 		if (vd->vd_mstate & MOUSE_BUTTON1DOWN)
1849 			vtbuf_set_mark(&vw->vw_buf, VTB_MARK_MOVE,
1850 			    vd->vd_mx / vf->vf_width,
1851 			    vd->vd_my / vf->vf_height);
1852 
1853 		vt_resume_flush_timer(vw->vw_device, 0);
1854 		return; /* Done */
1855 	case MOUSE_BUTTON_EVENT:
1856 		/* Buttons */
1857 		break;
1858 	default:
1859 		return; /* Done */
1860 	}
1861 
1862 	switch (event) {
1863 	case MOUSE_BUTTON1DOWN:
1864 		switch (cnt % 4) {
1865 		case 0:	/* up */
1866 			mark = VTB_MARK_END;
1867 			break;
1868 		case 1: /* single click: start cut operation */
1869 			mark = VTB_MARK_START;
1870 			break;
1871 		case 2:	/* double click: cut a word */
1872 			mark = VTB_MARK_WORD;
1873 			break;
1874 		case 3:	/* triple click: cut a line */
1875 			mark = VTB_MARK_ROW;
1876 			break;
1877 		}
1878 		break;
1879 	case VT_MOUSE_PASTEBUTTON:
1880 		switch (cnt) {
1881 		case 0:	/* up */
1882 			break;
1883 		default:
1884 			vt_mouse_paste();
1885 			break;
1886 		}
1887 		return; /* Done */
1888 	case VT_MOUSE_EXTENDBUTTON:
1889 		switch (cnt) {
1890 		case 0:	/* up */
1891 			if (!(vd->vd_mstate & MOUSE_BUTTON1DOWN))
1892 				mark = VTB_MARK_EXTEND;
1893 			else
1894 				mark = 0;
1895 			break;
1896 		default:
1897 			mark = VTB_MARK_EXTEND;
1898 			break;
1899 		}
1900 		break;
1901 	default:
1902 		return; /* Done */
1903 	}
1904 
1905 	/* Save buttons state. */
1906 	if (cnt > 0)
1907 		vd->vd_mstate |= event;
1908 	else
1909 		vd->vd_mstate &= ~event;
1910 
1911 	if (vtbuf_set_mark(&vw->vw_buf, mark, vd->vd_mx / vf->vf_width,
1912 	    vd->vd_my / vf->vf_height) == 1) {
1913 		/*
1914 		 * We have something marked to copy, so update pointer to
1915 		 * window with selection.
1916 		 */
1917 		vt_resume_flush_timer(vw->vw_device, 0);
1918 
1919 		switch (mark) {
1920 		case VTB_MARK_END:
1921 		case VTB_MARK_WORD:
1922 		case VTB_MARK_ROW:
1923 		case VTB_MARK_EXTEND:
1924 			break;
1925 		default:
1926 			/* Other types of mark do not require to copy data. */
1927 			return;
1928 		}
1929 
1930 		/* Get current selection size in bytes. */
1931 		len = vtbuf_get_marked_len(&vw->vw_buf);
1932 		if (len <= 0)
1933 			return;
1934 
1935 		/* Reallocate buffer only if old one is too small. */
1936 		if (len > VD_PASTEBUFSZ(vd)) {
1937 			VD_PASTEBUF(vd) = realloc(VD_PASTEBUF(vd), len, M_VT,
1938 			    M_WAITOK | M_ZERO);
1939 			/* Update buffer size. */
1940 			VD_PASTEBUFSZ(vd) = len;
1941 		}
1942 		/* Request copy/paste buffer data, no more than `len' */
1943 		vtbuf_extract_marked(&vw->vw_buf, VD_PASTEBUF(vd),
1944 		    VD_PASTEBUFSZ(vd));
1945 
1946 		VD_PASTEBUFLEN(vd) = len;
1947 
1948 		/* XXX VD_PASTEBUF(vd) have to be freed on shutdown/unload. */
1949 	}
1950 }
1951 
1952 void
1953 vt_mouse_state(int show)
1954 {
1955 	struct vt_device *vd;
1956 	struct vt_window *vw;
1957 
1958 	vd = main_vd;
1959 	vw = vd->vd_curwindow;
1960 
1961 	switch (show) {
1962 	case VT_MOUSE_HIDE:
1963 		vw->vw_flags |= VWF_MOUSE_HIDE;
1964 		break;
1965 	case VT_MOUSE_SHOW:
1966 		vw->vw_flags &= ~VWF_MOUSE_HIDE;
1967 		break;
1968 	}
1969 
1970 	/* Mark mouse position as dirty. */
1971 	vt_mark_mouse_position_as_dirty(vd);
1972 	vt_resume_flush_timer(vw->vw_device, 0);
1973 }
1974 #endif
1975 
1976 static int
1977 vtterm_mmap(struct terminal *tm, vm_ooffset_t offset, vm_paddr_t * paddr,
1978     int nprot, vm_memattr_t *memattr)
1979 {
1980 	struct vt_window *vw = tm->tm_softc;
1981 	struct vt_device *vd = vw->vw_device;
1982 
1983 	if (vd->vd_driver->vd_fb_mmap)
1984 		return (vd->vd_driver->vd_fb_mmap(vd, offset, paddr, nprot,
1985 		    memattr));
1986 
1987 	return (ENXIO);
1988 }
1989 
1990 static int
1991 vtterm_ioctl(struct terminal *tm, u_long cmd, caddr_t data,
1992     struct thread *td)
1993 {
1994 	struct vt_window *vw = tm->tm_softc;
1995 	struct vt_device *vd = vw->vw_device;
1996 	keyboard_t *kbd;
1997 	int error, i, s;
1998 #if defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD5) || \
1999     defined(COMPAT_FREEBSD4) || defined(COMPAT_43)
2000 	int ival;
2001 
2002 	switch (cmd) {
2003 	case _IO('v', 4):
2004 		cmd = VT_RELDISP;
2005 		break;
2006 	case _IO('v', 5):
2007 		cmd = VT_ACTIVATE;
2008 		break;
2009 	case _IO('v', 6):
2010 		cmd = VT_WAITACTIVE;
2011 		break;
2012 	case _IO('K', 20):
2013 		cmd = KDSKBSTATE;
2014 		break;
2015 	case _IO('K', 67):
2016 		cmd = KDSETRAD;
2017 		break;
2018 	case _IO('K', 7):
2019 		cmd = KDSKBMODE;
2020 		break;
2021 	case _IO('K', 8):
2022 		cmd = KDMKTONE;
2023 		break;
2024 	case _IO('K', 63):
2025 		cmd = KIOCSOUND;
2026 		break;
2027 	case _IO('K', 66):
2028 		cmd = KDSETLED;
2029 		break;
2030 	case _IO('c', 110):
2031 		cmd = CONS_SETKBD;
2032 		break;
2033 	default:
2034 		goto skip_thunk;
2035 	}
2036 	ival = IOCPARM_IVAL(data);
2037 	data = (caddr_t)&ival;
2038 skip_thunk:
2039 #endif
2040 
2041 	switch (cmd) {
2042 	case KDSETRAD:		/* set keyboard repeat & delay rates (old) */
2043 		if (*(int *)data & ~0x7f)
2044 			return (EINVAL);
2045 		/* FALLTHROUGH */
2046 	case GIO_KEYMAP:
2047 	case PIO_KEYMAP:
2048 	case GIO_DEADKEYMAP:
2049 	case PIO_DEADKEYMAP:
2050 	case GETFKEY:
2051 	case SETFKEY:
2052 	case KDGKBINFO:
2053 	case KDGKBTYPE:
2054 	case KDGETREPEAT:	/* get keyboard repeat & delay rates */
2055 	case KDSETREPEAT:	/* set keyboard repeat & delay rates (new) */
2056 	case KBADDKBD:		/* add/remove keyboard to/from mux */
2057 	case KBRELKBD: {
2058 		error = 0;
2059 
2060 		mtx_lock(&Giant);
2061 		kbd = kbd_get_keyboard(vd->vd_keyboard);
2062 		if (kbd != NULL)
2063 			error = kbdd_ioctl(kbd, cmd, data);
2064 		mtx_unlock(&Giant);
2065 		if (error == ENOIOCTL) {
2066 			if (cmd == KDGKBTYPE) {
2067 				/* always return something? XXX */
2068 				*(int *)data = 0;
2069 			} else {
2070 				return (ENODEV);
2071 			}
2072 		}
2073 		return (error);
2074 	}
2075 	case KDGKBSTATE: {	/* get keyboard state (locks) */
2076 		error = 0;
2077 
2078 		if (vw == vd->vd_curwindow) {
2079 			mtx_lock(&Giant);
2080 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2081 			if (kbd != NULL)
2082 				error = vt_save_kbd_state(vw, kbd);
2083 			mtx_unlock(&Giant);
2084 
2085 			if (error != 0)
2086 				return (error);
2087 		}
2088 
2089 		*(int *)data = vw->vw_kbdstate & LOCK_MASK;
2090 
2091 		return (error);
2092 	}
2093 	case KDSKBSTATE: {	/* set keyboard state (locks) */
2094 		int state;
2095 
2096 		state = *(int *)data;
2097 		if (state & ~LOCK_MASK)
2098 			return (EINVAL);
2099 
2100 		vw->vw_kbdstate &= ~LOCK_MASK;
2101 		vw->vw_kbdstate |= state;
2102 
2103 		error = 0;
2104 		if (vw == vd->vd_curwindow) {
2105 			mtx_lock(&Giant);
2106 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2107 			if (kbd != NULL)
2108 				error = vt_update_kbd_state(vw, kbd);
2109 			mtx_unlock(&Giant);
2110 		}
2111 
2112 		return (error);
2113 	}
2114 	case KDGETLED: {	/* get keyboard LED status */
2115 		error = 0;
2116 
2117 		if (vw == vd->vd_curwindow) {
2118 			mtx_lock(&Giant);
2119 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2120 			if (kbd != NULL)
2121 				error = vt_save_kbd_leds(vw, kbd);
2122 			mtx_unlock(&Giant);
2123 
2124 			if (error != 0)
2125 				return (error);
2126 		}
2127 
2128 		*(int *)data = vw->vw_kbdstate & LED_MASK;
2129 
2130 		return (error);
2131 	}
2132 	case KDSETLED: {	/* set keyboard LED status */
2133 		int leds;
2134 
2135 		leds = *(int *)data;
2136 		if (leds & ~LED_MASK)
2137 			return (EINVAL);
2138 
2139 		vw->vw_kbdstate &= ~LED_MASK;
2140 		vw->vw_kbdstate |= leds;
2141 
2142 		error = 0;
2143 		if (vw == vd->vd_curwindow) {
2144 			mtx_lock(&Giant);
2145 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2146 			if (kbd != NULL)
2147 				error = vt_update_kbd_leds(vw, kbd);
2148 			mtx_unlock(&Giant);
2149 		}
2150 
2151 		return (error);
2152 	}
2153 	case KDGKBMODE: {
2154 		error = 0;
2155 
2156 		if (vw == vd->vd_curwindow) {
2157 			mtx_lock(&Giant);
2158 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2159 			if (kbd != NULL)
2160 				error = vt_save_kbd_mode(vw, kbd);
2161 			mtx_unlock(&Giant);
2162 
2163 			if (error != 0)
2164 				return (error);
2165 		}
2166 
2167 		*(int *)data = vw->vw_kbdmode;
2168 
2169 		return (error);
2170 	}
2171 	case KDSKBMODE: {
2172 		int mode;
2173 
2174 		mode = *(int *)data;
2175 		switch (mode) {
2176 		case K_XLATE:
2177 		case K_RAW:
2178 		case K_CODE:
2179 			vw->vw_kbdmode = mode;
2180 
2181 			error = 0;
2182 			if (vw == vd->vd_curwindow) {
2183 				mtx_lock(&Giant);
2184 				kbd = kbd_get_keyboard(vd->vd_keyboard);
2185 				if (kbd != NULL)
2186 					error = vt_update_kbd_mode(vw, kbd);
2187 				mtx_unlock(&Giant);
2188 			}
2189 
2190 			return (error);
2191 		default:
2192 			return (EINVAL);
2193 		}
2194 	}
2195 	case FBIOGTYPE:
2196 	case FBIO_GETWINORG:	/* get frame buffer window origin */
2197 	case FBIO_GETDISPSTART:	/* get display start address */
2198 	case FBIO_GETLINEWIDTH:	/* get scan line width in bytes */
2199 	case FBIO_BLANK:	/* blank display */
2200 		if (vd->vd_driver->vd_fb_ioctl)
2201 			return (vd->vd_driver->vd_fb_ioctl(vd, cmd, data, td));
2202 		break;
2203 	case CONS_BLANKTIME:
2204 		/* XXX */
2205 		return (0);
2206 	case CONS_GET:
2207 		/* XXX */
2208 		*(int *)data = M_CG640x480;
2209 		return (0);
2210 	case CONS_BELLTYPE: 	/* set bell type sound */
2211 		if ((*(int *)data) & CONS_QUIET_BELL)
2212 			vd->vd_flags |= VDF_QUIET_BELL;
2213 		else
2214 			vd->vd_flags &= ~VDF_QUIET_BELL;
2215 		return (0);
2216 	case CONS_GETINFO: {
2217 		vid_info_t *vi = (vid_info_t *)data;
2218 		if (vi->size != sizeof(struct vid_info))
2219 			return (EINVAL);
2220 
2221 		if (vw == vd->vd_curwindow) {
2222 			mtx_lock(&Giant);
2223 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2224 			if (kbd != NULL)
2225 				vt_save_kbd_state(vw, kbd);
2226 			mtx_unlock(&Giant);
2227 		}
2228 
2229 		vi->m_num = vd->vd_curwindow->vw_number + 1;
2230 		vi->mk_keylock = vw->vw_kbdstate & LOCK_MASK;
2231 		/* XXX: other fields! */
2232 		return (0);
2233 	}
2234 	case CONS_GETVERS:
2235 		*(int *)data = 0x200;
2236 		return (0);
2237 	case CONS_MODEINFO:
2238 		/* XXX */
2239 		return (0);
2240 	case CONS_MOUSECTL: {
2241 		mouse_info_t *mouse = (mouse_info_t*)data;
2242 
2243 		/*
2244 		 * All the commands except MOUSE_SHOW nd MOUSE_HIDE
2245 		 * should not be applied to individual TTYs, but only to
2246 		 * consolectl.
2247 		 */
2248 		switch (mouse->operation) {
2249 		case MOUSE_HIDE:
2250 			if (vd->vd_flags & VDF_MOUSECURSOR) {
2251 				vd->vd_flags &= ~VDF_MOUSECURSOR;
2252 #ifndef SC_NO_CUTPASTE
2253 				vt_mouse_state(VT_MOUSE_HIDE);
2254 #endif
2255 			}
2256 			return (0);
2257 		case MOUSE_SHOW:
2258 			if (!(vd->vd_flags & VDF_MOUSECURSOR)) {
2259 				vd->vd_flags |= VDF_MOUSECURSOR;
2260 				vd->vd_mx = vd->vd_width / 2;
2261 				vd->vd_my = vd->vd_height / 2;
2262 #ifndef SC_NO_CUTPASTE
2263 				vt_mouse_state(VT_MOUSE_SHOW);
2264 #endif
2265 			}
2266 			return (0);
2267 		default:
2268 			return (EINVAL);
2269 		}
2270 	}
2271 	case PIO_VFONT: {
2272 		struct vt_font *vf;
2273 
2274 		if (vd->vd_flags & VDF_TEXTMODE)
2275 			return (ENOTSUP);
2276 
2277 		error = vtfont_load((void *)data, &vf);
2278 		if (error != 0)
2279 			return (error);
2280 
2281 		error = vt_change_font(vw, vf);
2282 		vtfont_unref(vf);
2283 		return (error);
2284 	}
2285 	case PIO_VFONT_DEFAULT: {
2286 		/* Reset to default font. */
2287 		error = vt_change_font(vw, &vt_font_default);
2288 		return (error);
2289 	}
2290 	case GIO_SCRNMAP: {
2291 		scrmap_t *sm = (scrmap_t *)data;
2292 
2293 		/* We don't have screen maps, so return a handcrafted one. */
2294 		for (i = 0; i < 256; i++)
2295 			sm->scrmap[i] = i;
2296 		return (0);
2297 	}
2298 	case KDSETMODE:
2299 		/*
2300 		 * FIXME: This implementation is incomplete compared to
2301 		 * syscons.
2302 		 */
2303 		switch (*(int *)data) {
2304 		case KD_TEXT:
2305 		case KD_TEXT1:
2306 		case KD_PIXEL:
2307 			vw->vw_flags &= ~VWF_GRAPHICS;
2308 			break;
2309 		case KD_GRAPHICS:
2310 			vw->vw_flags |= VWF_GRAPHICS;
2311 			break;
2312 		}
2313 		return (0);
2314 	case KDENABIO:      	/* allow io operations */
2315 		error = priv_check(td, PRIV_IO);
2316 		if (error != 0)
2317 			return (error);
2318 		error = securelevel_gt(td->td_ucred, 0);
2319 		if (error != 0)
2320 			return (error);
2321 #if defined(__i386__)
2322 		td->td_frame->tf_eflags |= PSL_IOPL;
2323 #elif defined(__amd64__)
2324 		td->td_frame->tf_rflags |= PSL_IOPL;
2325 #endif
2326 		return (0);
2327 	case KDDISABIO:     	/* disallow io operations (default) */
2328 #if defined(__i386__)
2329 		td->td_frame->tf_eflags &= ~PSL_IOPL;
2330 #elif defined(__amd64__)
2331 		td->td_frame->tf_rflags &= ~PSL_IOPL;
2332 #endif
2333 		return (0);
2334 	case KDMKTONE:      	/* sound the bell */
2335 		vtterm_beep(tm, *(u_int *)data);
2336 		return (0);
2337 	case KIOCSOUND:     	/* make tone (*data) hz */
2338 		/* TODO */
2339 		return (0);
2340 	case CONS_SETKBD: 		/* set the new keyboard */
2341 		mtx_lock(&Giant);
2342 		error = 0;
2343 		if (vd->vd_keyboard != *(int *)data) {
2344 			kbd = kbd_get_keyboard(*(int *)data);
2345 			if (kbd == NULL) {
2346 				mtx_unlock(&Giant);
2347 				return (EINVAL);
2348 			}
2349 			i = kbd_allocate(kbd->kb_name, kbd->kb_unit,
2350 			    (void *)vd, vt_kbdevent, vd);
2351 			if (i >= 0) {
2352 				if (vd->vd_keyboard != -1) {
2353 					kbd = kbd_get_keyboard(vd->vd_keyboard);
2354 					vt_save_kbd_state(vd->vd_curwindow, kbd);
2355 					kbd_release(kbd, (void *)vd);
2356 				}
2357 				kbd = kbd_get_keyboard(i);
2358 				vd->vd_keyboard = i;
2359 
2360 				vt_update_kbd_mode(vd->vd_curwindow, kbd);
2361 				vt_update_kbd_state(vd->vd_curwindow, kbd);
2362 			} else {
2363 				error = EPERM;	/* XXX */
2364 			}
2365 		}
2366 		mtx_unlock(&Giant);
2367 		return (error);
2368 	case CONS_RELKBD: 		/* release the current keyboard */
2369 		mtx_lock(&Giant);
2370 		error = 0;
2371 		if (vd->vd_keyboard != -1) {
2372 			kbd = kbd_get_keyboard(vd->vd_keyboard);
2373 			if (kbd == NULL) {
2374 				mtx_unlock(&Giant);
2375 				return (EINVAL);
2376 			}
2377 			vt_save_kbd_state(vd->vd_curwindow, kbd);
2378 			error = kbd_release(kbd, (void *)vd);
2379 			if (error == 0) {
2380 				vd->vd_keyboard = -1;
2381 			}
2382 		}
2383 		mtx_unlock(&Giant);
2384 		return (error);
2385 	case VT_ACTIVATE: {
2386 		int win;
2387 		win = *(int *)data - 1;
2388 		DPRINTF(5, "%s%d: VT_ACTIVATE ttyv%d ", SC_DRIVER_NAME,
2389 		    VT_UNIT(vw), win);
2390 		if ((win >= VT_MAXWINDOWS) || (win < 0))
2391 			return (EINVAL);
2392 		return (vt_proc_window_switch(vd->vd_windows[win]));
2393 	}
2394 	case VT_GETACTIVE:
2395 		*(int *)data = vd->vd_curwindow->vw_number + 1;
2396 		return (0);
2397 	case VT_GETINDEX:
2398 		*(int *)data = vw->vw_number + 1;
2399 		return (0);
2400 	case VT_LOCKSWITCH:
2401 		/* TODO: Check current state, switching can be in progress. */
2402 		if ((*(int *)data) == 0x01)
2403 			vw->vw_flags |= VWF_VTYLOCK;
2404 		else if ((*(int *)data) == 0x02)
2405 			vw->vw_flags &= ~VWF_VTYLOCK;
2406 		else
2407 			return (EINVAL);
2408 		return (0);
2409 	case VT_OPENQRY:
2410 		VT_LOCK(vd);
2411 		for (i = 0; i < VT_MAXWINDOWS; i++) {
2412 			vw = vd->vd_windows[i];
2413 			if (vw == NULL)
2414 				continue;
2415 			if (!(vw->vw_flags & VWF_OPENED)) {
2416 				*(int *)data = vw->vw_number + 1;
2417 				VT_UNLOCK(vd);
2418 				return (0);
2419 			}
2420 		}
2421 		VT_UNLOCK(vd);
2422 		return (EINVAL);
2423 	case VT_WAITACTIVE: {
2424 		unsigned int idx;
2425 
2426 		error = 0;
2427 
2428 		idx = *(unsigned int *)data;
2429 		if (idx > VT_MAXWINDOWS)
2430 			return (EINVAL);
2431 		if (idx > 0)
2432 			vw = vd->vd_windows[idx - 1];
2433 
2434 		VT_LOCK(vd);
2435 		while (vd->vd_curwindow != vw && error == 0)
2436 			error = cv_wait_sig(&vd->vd_winswitch, &vd->vd_lock);
2437 		VT_UNLOCK(vd);
2438 		return (error);
2439 	}
2440 	case VT_SETMODE: {    	/* set screen switcher mode */
2441 		struct vt_mode *mode;
2442 		struct proc *p1;
2443 
2444 		mode = (struct vt_mode *)data;
2445 		DPRINTF(5, "%s%d: VT_SETMODE ", SC_DRIVER_NAME, VT_UNIT(vw));
2446 		if (vw->vw_smode.mode == VT_PROCESS) {
2447 			p1 = pfind(vw->vw_pid);
2448 			if (vw->vw_proc == p1 && vw->vw_proc != td->td_proc) {
2449 				if (p1)
2450 					PROC_UNLOCK(p1);
2451 				DPRINTF(5, "error EPERM\n");
2452 				return (EPERM);
2453 			}
2454 			if (p1)
2455 				PROC_UNLOCK(p1);
2456 		}
2457 		if (mode->mode == VT_AUTO) {
2458 			vw->vw_smode.mode = VT_AUTO;
2459 			vw->vw_proc = NULL;
2460 			vw->vw_pid = 0;
2461 			DPRINTF(5, "VT_AUTO, ");
2462 			if (vw == vw->vw_device->vd_windows[VT_CONSWINDOW])
2463 				cnavailable(vw->vw_terminal->consdev, TRUE);
2464 			/* were we in the middle of the vty switching process? */
2465 			if (finish_vt_rel(vw, TRUE, &s) == 0)
2466 				DPRINTF(5, "reset WAIT_REL, ");
2467 			if (finish_vt_acq(vw) == 0)
2468 				DPRINTF(5, "reset WAIT_ACQ, ");
2469 			return (0);
2470 		} else if (mode->mode == VT_PROCESS) {
2471 			if (!ISSIGVALID(mode->relsig) ||
2472 			    !ISSIGVALID(mode->acqsig) ||
2473 			    !ISSIGVALID(mode->frsig)) {
2474 				DPRINTF(5, "error EINVAL\n");
2475 				return (EINVAL);
2476 			}
2477 			DPRINTF(5, "VT_PROCESS %d, ", td->td_proc->p_pid);
2478 			bcopy(data, &vw->vw_smode, sizeof(struct vt_mode));
2479 			vw->vw_proc = td->td_proc;
2480 			vw->vw_pid = vw->vw_proc->p_pid;
2481 			if (vw == vw->vw_device->vd_windows[VT_CONSWINDOW])
2482 				cnavailable(vw->vw_terminal->consdev, FALSE);
2483 		} else {
2484 			DPRINTF(5, "VT_SETMODE failed, unknown mode %d\n",
2485 			    mode->mode);
2486 			return (EINVAL);
2487 		}
2488 		DPRINTF(5, "\n");
2489 		return (0);
2490 	}
2491 	case VT_GETMODE:	/* get screen switcher mode */
2492 		bcopy(&vw->vw_smode, data, sizeof(struct vt_mode));
2493 		return (0);
2494 
2495 	case VT_RELDISP:	/* screen switcher ioctl */
2496 		/*
2497 		 * This must be the current vty which is in the VT_PROCESS
2498 		 * switching mode...
2499 		 */
2500 		if ((vw != vd->vd_curwindow) || (vw->vw_smode.mode !=
2501 		    VT_PROCESS)) {
2502 			return (EINVAL);
2503 		}
2504 		/* ...and this process is controlling it. */
2505 		if (vw->vw_proc != td->td_proc) {
2506 			return (EPERM);
2507 		}
2508 		error = EINVAL;
2509 		switch(*(int *)data) {
2510 		case VT_FALSE:	/* user refuses to release screen, abort */
2511 			if ((error = finish_vt_rel(vw, FALSE, &s)) == 0)
2512 				DPRINTF(5, "%s%d: VT_RELDISP: VT_FALSE\n",
2513 				    SC_DRIVER_NAME, VT_UNIT(vw));
2514 			break;
2515 		case VT_TRUE:	/* user has released screen, go on */
2516 			/* finish_vt_rel(..., TRUE, ...) should not be locked */
2517 			if (vw->vw_flags & VWF_SWWAIT_REL) {
2518 				if ((error = finish_vt_rel(vw, TRUE, &s)) == 0)
2519 					DPRINTF(5, "%s%d: VT_RELDISP: VT_TRUE\n",
2520 					    SC_DRIVER_NAME, VT_UNIT(vw));
2521 			} else {
2522 				error = EINVAL;
2523 			}
2524 			return (error);
2525 		case VT_ACKACQ:	/* acquire acknowledged, switch completed */
2526 			if ((error = finish_vt_acq(vw)) == 0)
2527 				DPRINTF(5, "%s%d: VT_RELDISP: VT_ACKACQ\n",
2528 				    SC_DRIVER_NAME, VT_UNIT(vw));
2529 			break;
2530 		default:
2531 			break;
2532 		}
2533 		return (error);
2534 	}
2535 
2536 	return (ENOIOCTL);
2537 }
2538 
2539 static struct vt_window *
2540 vt_allocate_window(struct vt_device *vd, unsigned int window)
2541 {
2542 	struct vt_window *vw;
2543 	struct terminal *tm;
2544 	term_pos_t size;
2545 	struct winsize wsz;
2546 
2547 	vw = malloc(sizeof *vw, M_VT, M_WAITOK|M_ZERO);
2548 	vw->vw_device = vd;
2549 	vw->vw_number = window;
2550 	vw->vw_kbdmode = K_XLATE;
2551 
2552 	if ((vd->vd_flags & VDF_TEXTMODE) == 0) {
2553 		vw->vw_font = vtfont_ref(&vt_font_default);
2554 		vt_compute_drawable_area(vw);
2555 	}
2556 
2557 	vt_termsize(vd, vw->vw_font, &size);
2558 	vt_winsize(vd, vw->vw_font, &wsz);
2559 	vtbuf_init(&vw->vw_buf, &size);
2560 
2561 	tm = vw->vw_terminal = terminal_alloc(&vt_termclass, vw);
2562 	terminal_set_winsize(tm, &wsz);
2563 	vd->vd_windows[window] = vw;
2564 	callout_init(&vw->vw_proc_dead_timer, 0);
2565 
2566 	return (vw);
2567 }
2568 
2569 void
2570 vt_upgrade(struct vt_device *vd)
2571 {
2572 	struct vt_window *vw;
2573 	unsigned int i;
2574 	int register_handlers;
2575 
2576 	if (!vty_enabled(VTY_VT))
2577 		return;
2578 	if (main_vd->vd_driver == NULL)
2579 		return;
2580 
2581 	for (i = 0; i < VT_MAXWINDOWS; i++) {
2582 		vw = vd->vd_windows[i];
2583 		if (vw == NULL) {
2584 			/* New window. */
2585 			vw = vt_allocate_window(vd, i);
2586 		}
2587 		if (!(vw->vw_flags & VWF_READY)) {
2588 			callout_init(&vw->vw_proc_dead_timer, 0);
2589 			terminal_maketty(vw->vw_terminal, "v%r", VT_UNIT(vw));
2590 			vw->vw_flags |= VWF_READY;
2591 			if (vw->vw_flags & VWF_CONSOLE) {
2592 				/* For existing console window. */
2593 				EVENTHANDLER_REGISTER(shutdown_pre_sync,
2594 				    vt_window_switch, vw, SHUTDOWN_PRI_DEFAULT);
2595 			}
2596 		}
2597 
2598 	}
2599 	VT_LOCK(vd);
2600 	if (vd->vd_curwindow == NULL)
2601 		vd->vd_curwindow = vd->vd_windows[VT_CONSWINDOW];
2602 
2603 	register_handlers = 0;
2604 	if (!(vd->vd_flags & VDF_ASYNC)) {
2605 		/* Attach keyboard. */
2606 		vt_allocate_keyboard(vd);
2607 
2608 		/* Init 25 Hz timer. */
2609 		callout_init_mtx(&vd->vd_timer, &vd->vd_lock, 0);
2610 
2611 		/* Start timer when everything ready. */
2612 		vd->vd_flags |= VDF_ASYNC;
2613 		callout_reset(&vd->vd_timer, hz / VT_TIMERFREQ, vt_timer, vd);
2614 		vd->vd_timer_armed = 1;
2615 		register_handlers = 1;
2616 	}
2617 
2618 	VT_UNLOCK(vd);
2619 
2620 	/* Refill settings with new sizes. */
2621 	vt_resize(vd);
2622 
2623 	if (register_handlers) {
2624 		/* Register suspend/resume handlers. */
2625 		EVENTHANDLER_REGISTER(power_suspend_early, vt_suspend_handler,
2626 		    vd, EVENTHANDLER_PRI_ANY);
2627 		EVENTHANDLER_REGISTER(power_resume, vt_resume_handler, vd,
2628 		    EVENTHANDLER_PRI_ANY);
2629 	}
2630 }
2631 
2632 static void
2633 vt_resize(struct vt_device *vd)
2634 {
2635 	struct vt_window *vw;
2636 	int i;
2637 
2638 	for (i = 0; i < VT_MAXWINDOWS; i++) {
2639 		vw = vd->vd_windows[i];
2640 		VT_LOCK(vd);
2641 		/* Assign default font to window, if not textmode. */
2642 		if (!(vd->vd_flags & VDF_TEXTMODE) && vw->vw_font == NULL)
2643 			vw->vw_font = vtfont_ref(&vt_font_default);
2644 		VT_UNLOCK(vd);
2645 
2646 		/* Resize terminal windows */
2647 		while (vt_change_font(vw, vw->vw_font) == EBUSY) {
2648 			DPRINTF(100, "%s: vt_change_font() is busy, "
2649 			    "window %d\n", __func__, i);
2650 		}
2651 	}
2652 }
2653 
2654 static void
2655 vt_replace_backend(const struct vt_driver *drv, void *softc)
2656 {
2657 	struct vt_device *vd;
2658 
2659 	vd = main_vd;
2660 
2661 	if (vd->vd_flags & VDF_ASYNC) {
2662 		/* Stop vt_flush periodic task. */
2663 		VT_LOCK(vd);
2664 		vt_suspend_flush_timer(vd);
2665 		VT_UNLOCK(vd);
2666 		/*
2667 		 * Mute current terminal until we done. vt_change_font (called
2668 		 * from vt_resize) will unmute it.
2669 		 */
2670 		terminal_mute(vd->vd_curwindow->vw_terminal, 1);
2671 	}
2672 
2673 	/*
2674 	 * Reset VDF_TEXTMODE flag, driver who require that flag (vt_vga) will
2675 	 * set it.
2676 	 */
2677 	VT_LOCK(vd);
2678 	vd->vd_flags &= ~VDF_TEXTMODE;
2679 
2680 	if (drv != NULL) {
2681 		/*
2682 		 * We want to upgrade from the current driver to the
2683 		 * given driver.
2684 		 */
2685 
2686 		vd->vd_prev_driver = vd->vd_driver;
2687 		vd->vd_prev_softc = vd->vd_softc;
2688 		vd->vd_driver = drv;
2689 		vd->vd_softc = softc;
2690 
2691 		vd->vd_driver->vd_init(vd);
2692 	} else if (vd->vd_prev_driver != NULL && vd->vd_prev_softc != NULL) {
2693 		/*
2694 		 * No driver given: we want to downgrade to the previous
2695 		 * driver.
2696 		 */
2697 		const struct vt_driver *old_drv;
2698 		void *old_softc;
2699 
2700 		old_drv = vd->vd_driver;
2701 		old_softc = vd->vd_softc;
2702 
2703 		vd->vd_driver = vd->vd_prev_driver;
2704 		vd->vd_softc = vd->vd_prev_softc;
2705 		vd->vd_prev_driver = NULL;
2706 		vd->vd_prev_softc = NULL;
2707 
2708 		vd->vd_flags |= VDF_DOWNGRADE;
2709 
2710 		vd->vd_driver->vd_init(vd);
2711 
2712 		if (old_drv->vd_fini)
2713 			old_drv->vd_fini(vd, old_softc);
2714 
2715 		vd->vd_flags &= ~VDF_DOWNGRADE;
2716 	}
2717 
2718 	VT_UNLOCK(vd);
2719 
2720 	/* Update windows sizes and initialize last items. */
2721 	vt_upgrade(vd);
2722 
2723 #ifdef DEV_SPLASH
2724 	if (vd->vd_flags & VDF_SPLASH)
2725 		vtterm_splash(vd);
2726 #endif
2727 
2728 	if (vd->vd_flags & VDF_ASYNC) {
2729 		/* Allow to put chars now. */
2730 		terminal_mute(vd->vd_curwindow->vw_terminal, 0);
2731 		/* Rerun timer for screen updates. */
2732 		vt_resume_flush_timer(vd, 0);
2733 	}
2734 
2735 	/*
2736 	 * Register as console. If it already registered, cnadd() will ignore
2737 	 * it.
2738 	 */
2739 	termcn_cnregister(vd->vd_windows[VT_CONSWINDOW]->vw_terminal);
2740 }
2741 
2742 static void
2743 vt_suspend_handler(void *priv)
2744 {
2745 	struct vt_device *vd;
2746 
2747 	vd = priv;
2748 	if (vd->vd_driver != NULL && vd->vd_driver->vd_suspend != NULL)
2749 		vd->vd_driver->vd_suspend(vd);
2750 }
2751 
2752 static void
2753 vt_resume_handler(void *priv)
2754 {
2755 	struct vt_device *vd;
2756 
2757 	vd = priv;
2758 	if (vd->vd_driver != NULL && vd->vd_driver->vd_resume != NULL)
2759 		vd->vd_driver->vd_resume(vd);
2760 }
2761 
2762 void
2763 vt_allocate(const struct vt_driver *drv, void *softc)
2764 {
2765 
2766 	if (!vty_enabled(VTY_VT))
2767 		return;
2768 
2769 	if (main_vd->vd_driver == NULL) {
2770 		main_vd->vd_driver = drv;
2771 		printf("VT: initialize with new VT driver \"%s\".\n",
2772 		    drv->vd_name);
2773 	} else {
2774 		/*
2775 		 * Check if have rights to replace current driver. For example:
2776 		 * it is bad idea to replace KMS driver with generic VGA one.
2777 		 */
2778 		if (drv->vd_priority <= main_vd->vd_driver->vd_priority) {
2779 			printf("VT: Driver priority %d too low. Current %d\n ",
2780 			    drv->vd_priority, main_vd->vd_driver->vd_priority);
2781 			return;
2782 		}
2783 		printf("VT: Replacing driver \"%s\" with new \"%s\".\n",
2784 		    main_vd->vd_driver->vd_name, drv->vd_name);
2785 	}
2786 
2787 	vt_replace_backend(drv, softc);
2788 }
2789 
2790 void
2791 vt_deallocate(const struct vt_driver *drv, void *softc)
2792 {
2793 
2794 	if (!vty_enabled(VTY_VT))
2795 		return;
2796 
2797 	if (main_vd->vd_prev_driver == NULL ||
2798 	    main_vd->vd_driver != drv ||
2799 	    main_vd->vd_softc != softc)
2800 		return;
2801 
2802 	printf("VT: Switching back from \"%s\" to \"%s\".\n",
2803 	    main_vd->vd_driver->vd_name, main_vd->vd_prev_driver->vd_name);
2804 
2805 	vt_replace_backend(NULL, NULL);
2806 }
2807 
2808 void
2809 vt_suspend(struct vt_device *vd)
2810 {
2811 	int error;
2812 
2813 	if (vt_suspendswitch == 0)
2814 		return;
2815 	/* Save current window. */
2816 	vd->vd_savedwindow = vd->vd_curwindow;
2817 	/* Ask holding process to free window and switch to console window */
2818 	vt_proc_window_switch(vd->vd_windows[VT_CONSWINDOW]);
2819 
2820 	/* Wait for the window switch to complete. */
2821 	error = 0;
2822 	VT_LOCK(vd);
2823 	while (vd->vd_curwindow != vd->vd_windows[VT_CONSWINDOW] && error == 0)
2824 		error = cv_wait_sig(&vd->vd_winswitch, &vd->vd_lock);
2825 	VT_UNLOCK(vd);
2826 }
2827 
2828 void
2829 vt_resume(struct vt_device *vd)
2830 {
2831 
2832 	if (vt_suspendswitch == 0)
2833 		return;
2834 	/* Switch back to saved window, if any */
2835 	vt_proc_window_switch(vd->vd_savedwindow);
2836 	vd->vd_savedwindow = NULL;
2837 }
2838