vt.h revision 259129
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 * $FreeBSD: head/sys/dev/vt/vt.h 259129 2013-12-09 15:01:34Z ray $
33 */
34
35#ifndef _DEV_VT_VT_H_
36#define	_DEV_VT_VT_H_
37
38#include <sys/param.h>
39#include <sys/_lock.h>
40#include <sys/_mutex.h>
41#include <sys/callout.h>
42#include <sys/condvar.h>
43#include <sys/consio.h>
44#include <sys/kbio.h>
45#include <sys/mouse.h>
46#include <sys/terminal.h>
47#include <sys/sysctl.h>
48
49#include "opt_compat.h"
50#include "opt_syscons.h"
51#include "opt_splash.h"
52
53#ifndef	VT_MAXWINDOWS
54#ifdef	MAXCONS
55#define	VT_MAXWINDOWS	MAXCONS
56#else
57#define	VT_MAXWINDOWS	12
58#endif
59#endif
60
61#ifndef VT_ALT_TO_ESC_HACK
62#define	VT_ALT_TO_ESC_HACK	1
63#endif
64
65#define	VT_CONSWINDOW	0
66
67#if defined(SC_TWOBUTTON_MOUSE) || defined(VT_TWOBUTTON_MOUSE)
68#define VT_MOUSE_PASTEBUTTON	MOUSE_BUTTON3DOWN	/* right button */
69#define VT_MOUSE_EXTENDBUTTON	MOUSE_BUTTON2DOWN	/* not really used */
70#else
71#define VT_MOUSE_PASTEBUTTON	MOUSE_BUTTON2DOWN	/* middle button */
72#define VT_MOUSE_EXTENDBUTTON	MOUSE_BUTTON3DOWN	/* right button */
73#endif /* defined(SC_TWOBUTTON_MOUSE) || defined(VT_TWOBUTTON_MOUSE) */
74
75#define	SC_DRIVER_NAME	"vt"
76#define	DPRINTF(_l, ...)	if (vt_debug > (_l)) printf( __VA_ARGS__ )
77#define	ISSIGVALID(sig)	((sig) > 0 && (sig) < NSIG)
78
79#define	VT_SYSCTL_INT(_name, _default, _descr)				\
80static int vt_##_name = _default;					\
81SYSCTL_INT(_kern_vt, OID_AUTO, _name, CTLFLAG_RW, &vt_##_name, _default,\
82		_descr);						\
83TUNABLE_INT("kern.vt." #_name, &vt_##_name);
84
85struct vt_driver;
86
87void vt_allocate(struct vt_driver *, void *);
88void vt_resume(void);
89void vt_suspend(void);
90
91typedef unsigned int 	vt_axis_t;
92
93/*
94 * List of locks
95 * (d)	locked by vd_lock
96 * (b)	locked by vb_lock
97 * (G)	locked by Giant
98 * (u)	unlocked, locked by higher levels
99 * (c)	const until freeing
100 * (?)	yet to be determined
101 */
102
103/*
104 * Per-device datastructure.
105 */
106
107struct vt_device {
108	struct vt_window	*vd_windows[VT_MAXWINDOWS]; /* (c) Windows. */
109	struct vt_window	*vd_curwindow;	/* (d) Current window. */
110	struct vt_window	*vd_savedwindow;/* (?) Saved for suspend. */
111	struct vt_window	*vd_markedwin;	/* (?) Copy/paste buf owner. */
112	const struct vt_driver	*vd_driver;	/* (c) Graphics driver. */
113	void			*vd_softc;	/* (u) Driver data. */
114	uint16_t		 vd_mx;		/* (?) Mouse X. */
115	uint16_t		 vd_my;		/* (?) Mouse Y. */
116	vt_axis_t		 vd_mdirtyx;	/* (?) Screen width. */
117	vt_axis_t		 vd_mdirtyy;	/* (?) Screen height. */
118	uint32_t		 vd_mstate;	/* (?) Mouse state. */
119	term_pos_t		 vd_offset;	/* (?) Pixel offset. */
120	vt_axis_t		 vd_width;	/* (?) Screen width. */
121	vt_axis_t		 vd_height;	/* (?) Screen height. */
122	struct mtx		 vd_lock;	/* Per-device lock. */
123	struct cv		 vd_winswitch;	/* (d) Window switch notify. */
124	struct callout		 vd_timer;	/* (d) Display timer. */
125	int			 vd_flags;	/* (d) Device flags. */
126#define	VDF_TEXTMODE	0x01	/* Do text mode rendering. */
127#define	VDF_SPLASH	0x02	/* Splash screen active. */
128#define	VDF_ASYNC	0x04	/* vt_timer() running. */
129#define	VDF_INVALID	0x08	/* Entire screen should be re-rendered. */
130#define	VDF_DEAD	0x10	/* Early probing found nothing. */
131#define	VDF_INITIALIZED	0x20	/* vtterm_cnprobe already done. */
132#define	VDF_MOUSECURSOR	0x40	/* Mouse cursor visible. */
133	int			 vd_keyboard;	/* (G) Keyboard index. */
134	unsigned int		 vd_kbstate;	/* (?) Device unit. */
135	unsigned int		 vd_unit;	/* (c) Device unit. */
136};
137
138/*
139 * Per-window terminal screen buffer.
140 *
141 * Because redrawing is performed asynchronously, the buffer keeps track
142 * of a rectangle that needs to be redrawn (vb_dirtyrect).  Because this
143 * approach seemed to cause suboptimal performance (when the top left
144 * and the bottom right of the screen are modified), it also uses a set
145 * of bitmasks to keep track of the rows and columns (mod 64) that have
146 * been modified.
147 */
148
149struct vt_bufmask {
150	uint64_t		 vbm_row, vbm_col;
151#define	VBM_DIRTY		UINT64_MAX
152};
153
154struct vt_buf {
155	struct mtx		 vb_lock;	/* Buffer lock. */
156	term_pos_t		 vb_scr_size;	/* (b) Screen dimensions. */
157	int			 vb_flags;	/* (b) Flags. */
158#define	VBF_CURSOR	0x1	/* Cursor visible. */
159#define	VBF_STATIC	0x2	/* Buffer is statically allocated. */
160#define	VBF_MTX_INIT	0x4	/* Mutex initialized. */
161#define	VBF_SCROLL	0x8	/* scroll locked mode. */
162#define	VBF_HISTORY_FULL 0x10	/* All rows filled. */
163	int			 vb_history_size;
164#define	VBF_DEFAULT_HISTORY_SIZE	500
165	int			 vb_roffset;	/* (b) History rows offset. */
166	int			 vb_curroffset;	/* (b) Saved rows offset. */
167	term_pos_t		 vb_cursor;	/* (u) Cursor position. */
168	term_pos_t		 vb_mark_start;	/* (b) Copy region start. */
169	term_pos_t		 vb_mark_end;	/* (b) Copy region end. */
170	int			 vb_mark_last;	/* Last mouse event. */
171	term_rect_t		 vb_dirtyrect;	/* (b) Dirty rectangle. */
172	struct vt_bufmask	 vb_dirtymask;	/* (b) Dirty bitmasks. */
173	term_char_t		*vb_buffer;	/* (u) Data buffer. */
174	term_char_t		**vb_rows;	/* (u) Array of rows */
175};
176
177void vtbuf_copy(struct vt_buf *, const term_rect_t *, const term_pos_t *);
178void vtbuf_fill_locked(struct vt_buf *, const term_rect_t *, term_char_t);
179void vtbuf_init_early(struct vt_buf *);
180void vtbuf_init(struct vt_buf *, const term_pos_t *);
181void vtbuf_grow(struct vt_buf *, const term_pos_t *, int);
182void vtbuf_putchar(struct vt_buf *, const term_pos_t *, term_char_t);
183void vtbuf_cursor_position(struct vt_buf *, const term_pos_t *);
184void vtbuf_scroll_mode(struct vt_buf *vb, int yes);
185void vtbuf_undirty(struct vt_buf *, term_rect_t *, struct vt_bufmask *);
186void vtbuf_sethistory_size(struct vt_buf *, int);
187int vtbuf_iscursor(struct vt_buf *vb, int row, int col);
188void vtbuf_cursor_visibility(struct vt_buf *, int);
189#ifndef SC_NO_CUTPASTE
190void vtbuf_mouse_cursor_position(struct vt_buf *vb, int col, int row);
191int vtbuf_set_mark(struct vt_buf *vb, int type, int col, int row);
192int vtbuf_get_marked_len(struct vt_buf *vb);
193void vtbuf_extract_marked(struct vt_buf *vb, term_char_t *buf, int sz);
194#endif
195
196#define	VTB_MARK_NONE		0
197#define	VTB_MARK_END		1
198#define	VTB_MARK_START		2
199#define	VTB_MARK_WORD		3
200#define	VTB_MARK_ROW		4
201#define	VTB_MARK_EXTEND		5
202#define	VTB_MARK_MOVE		6
203
204#define	VTBUF_SLCK_ENABLE(vb)	vtbuf_scroll_mode((vb), 1)
205#define	VTBUF_SLCK_DISABLE(vb)	vtbuf_scroll_mode((vb), 0)
206
207#define	VTBUF_MAX_HEIGHT(vb) \
208	((vb)->vb_history_size)
209#define	VTBUF_GET_ROW(vb, r) \
210	((vb)->vb_rows[((vb)->vb_roffset + (r)) % VTBUF_MAX_HEIGHT(vb)])
211#define	VTBUF_GET_FIELD(vb, r, c) \
212	((vb)->vb_rows[((vb)->vb_roffset + (r)) % VTBUF_MAX_HEIGHT(vb)][(c)])
213#define	VTBUF_FIELD(vb, r, c) \
214	((vb)->vb_rows[((vb)->vb_curroffset + (r)) % VTBUF_MAX_HEIGHT(vb)][(c)])
215#define	VTBUF_ISCURSOR(vb, r, c) \
216	vtbuf_iscursor((vb), (r), (c))
217#define	VTBUF_DIRTYROW(mask, row) \
218	((mask)->vbm_row & ((uint64_t)1 << ((row) % 64)))
219#define	VTBUF_DIRTYCOL(mask, col) \
220	((mask)->vbm_col & ((uint64_t)1 << ((col) % 64)))
221#define	VTBUF_SPACE_CHAR	(' ' | TC_WHITE << 26 | TC_BLACK << 29)
222
223#define	VHS_SET	0
224#define	VHS_CUR	1
225#define	VHS_END	2
226int vthistory_seek(struct vt_buf *, int offset, int whence);
227void vthistory_addlines(struct vt_buf *vb, int offset);
228void vthistory_getpos(const struct vt_buf *, unsigned int *offset);
229
230/*
231 * Per-window datastructure.
232 */
233
234struct vt_window {
235	struct vt_device	*vw_device;	/* (c) Device. */
236	struct terminal		*vw_terminal;	/* (c) Terminal. */
237	struct vt_buf		 vw_buf;	/* (u) Screen buffer. */
238	struct vt_font		*vw_font;	/* (d) Graphical font. */
239	unsigned int		 vw_number;	/* (c) Window number. */
240	int			 vw_kbdmode;	/* (?) Keyboard mode. */
241	char			*vw_kbdsq;	/* Escape sequence queue*/
242	unsigned int		 vw_flags;	/* (d) Per-window flags. */
243#define	VWF_BUSY	0x1	/* Busy reconfiguring device. */
244#define	VWF_OPENED	0x2	/* TTY in use. */
245#define	VWF_SCROLL	0x4	/* Keys influence scrollback. */
246#define	VWF_CONSOLE	0x8	/* Kernel message console window. */
247#define	VWF_VTYLOCK	0x10	/* Prevent window switch. */
248#define	VWF_MOUSE_HIDE	0x20	/* Disable mouse events processing. */
249#define	VWF_SWWAIT_REL	0x10000	/* Program wait for VT acquire is done. */
250#define	VWF_SWWAIT_ACQ	0x20000	/* Program wait for VT release is done. */
251	pid_t			 vw_pid;	/* Terminal holding process */
252	struct proc		*vw_proc;
253	struct vt_mode		 vw_smode;	/* switch mode */
254	struct callout		 vw_proc_dead_timer;
255	struct vt_window	*vw_switch_to;
256};
257
258#define	VT_AUTO		0		/* switching is automatic */
259#define	VT_PROCESS	1		/* switching controlled by prog */
260#define	VT_KERNEL	255		/* switching controlled in kernel */
261
262#define	IS_VT_PROC_MODE(vw)	((vw)->vw_smode.mode == VT_PROCESS)
263
264/*
265 * Per-device driver routines.
266 *
267 * vd_bitbltchr is used when the driver operates in graphics mode, while
268 * vd_putchar is used when the driver operates in text mode
269 * (VDF_TEXTMODE).
270 */
271
272typedef int vd_init_t(struct vt_device *vd);
273typedef void vd_postswitch_t(struct vt_device *vd);
274typedef void vd_blank_t(struct vt_device *vd, term_color_t color);
275typedef void vd_bitbltchr_t(struct vt_device *vd, const uint8_t *src,
276    const uint8_t *mask, int bpl, vt_axis_t top, vt_axis_t left,
277    unsigned int width, unsigned int height, term_color_t fg, term_color_t bg);
278typedef void vd_putchar_t(struct vt_device *vd, term_char_t,
279    vt_axis_t top, vt_axis_t left, term_color_t fg, term_color_t bg);
280
281struct vt_driver {
282	/* Console attachment. */
283	vd_init_t	*vd_init;
284
285	/* Drawing. */
286	vd_blank_t	*vd_blank;
287	vd_bitbltchr_t	*vd_bitbltchr;
288
289	/* Text mode operation. */
290	vd_putchar_t	*vd_putchar;
291
292	/* Update display setting on vt switch. */
293	vd_postswitch_t	*vd_postswitch;
294
295	/* Priority to know which one can override */
296	int		vd_priority;
297#define	VD_PRIORITY_DUMB	10
298#define	VD_PRIORITY_GENERIC	100
299#define	VD_PRIORITY_SPECIFIC	1000
300};
301
302/*
303 * Console device madness.
304 *
305 * Utility macro to make early vt(4) instances work.
306 */
307
308extern const struct terminal_class vt_termclass;
309void vt_upgrade(struct vt_device *vd);
310
311#define	PIXEL_WIDTH(w)	((w) / 8)
312#define	PIXEL_HEIGHT(h)	((h) / 16)
313
314#ifndef VT_FB_DEFAULT_WIDTH
315#define	VT_FB_DEFAULT_WIDTH	640
316#endif
317#ifndef VT_FB_DEFAULT_HEIGHT
318#define	VT_FB_DEFAULT_HEIGHT	480
319#endif
320
321#define	VT_CONSDEV_DECLARE(driver, width, height, softc)		\
322static struct terminal	driver ## _consterm;				\
323static struct vt_window	driver ## _conswindow;				\
324static struct vt_device	driver ## _consdev = {				\
325	.vd_driver = &driver,						\
326	.vd_softc = (softc),						\
327	.vd_flags = VDF_INVALID,					\
328	.vd_windows = { [VT_CONSWINDOW] =  &driver ## _conswindow, },	\
329	.vd_curwindow = &driver ## _conswindow,				\
330	.vd_markedwin = NULL,						\
331	.vd_kbstate = 0,						\
332};									\
333static term_char_t	driver ## _constextbuf[(width) * 		\
334	    (VBF_DEFAULT_HISTORY_SIZE)];				\
335static term_char_t	*driver ## _constextbufrows[			\
336	    VBF_DEFAULT_HISTORY_SIZE];					\
337static struct vt_window	driver ## _conswindow = {			\
338	.vw_number = VT_CONSWINDOW,					\
339	.vw_flags = VWF_CONSOLE,					\
340	.vw_buf = {							\
341		.vb_buffer = driver ## _constextbuf,			\
342		.vb_rows = driver ## _constextbufrows,			\
343		.vb_history_size = VBF_DEFAULT_HISTORY_SIZE,		\
344		.vb_curroffset = 0,					\
345		.vb_roffset = 0,					\
346		.vb_flags = VBF_STATIC,					\
347		.vb_mark_start = {					\
348			.tp_row = 0,					\
349			.tp_col = 0,					\
350		},							\
351		.vb_mark_end = {					\
352			.tp_row = 0,					\
353			.tp_col = 0,					\
354		},							\
355		.vb_scr_size = {					\
356			.tp_row = height,				\
357			.tp_col = width,				\
358		},							\
359	},								\
360	.vw_device = &driver ## _consdev,				\
361	.vw_terminal = &driver ## _consterm,				\
362	.vw_kbdmode = K_XLATE,						\
363};									\
364TERMINAL_DECLARE_EARLY(driver ## _consterm, vt_termclass,		\
365    &driver ## _conswindow);						\
366SYSINIT(vt_early_cons, SI_SUB_INT_CONFIG_HOOKS, SI_ORDER_ANY,		\
367    vt_upgrade, &driver ## _consdev)
368
369/*
370 * Fonts.
371 *
372 * Remapping tables are used to map Unicode points to glyphs.  They need
373 * to be sorted, because vtfont_lookup() performs a binary search.  Each
374 * font has two remapping tables, for normal and bold.  When a character
375 * is not present in bold, it uses a normal glyph.  When no glyph is
376 * available, it uses glyph 0, which is normally equal to U+FFFD.
377 */
378
379struct vt_font_map {
380	uint32_t		 vfm_src;
381	uint16_t		 vfm_dst;
382	uint16_t		 vfm_len;
383};
384
385struct vt_font {
386	struct vt_font_map	*vf_bold;
387	struct vt_font_map	*vf_normal;
388	uint8_t			*vf_bytes;
389	unsigned int		 vf_height, vf_width,
390				 vf_normal_length, vf_bold_length;
391	unsigned int		 vf_refcount;
392};
393
394#ifndef SC_NO_CUTPASTE
395struct mouse_cursor {
396	uint8_t map[64 * 64 / 8];
397	uint8_t mask[64 * 64 / 8];
398	uint8_t w;
399	uint8_t h;
400};
401#endif
402
403const uint8_t	*vtfont_lookup(const struct vt_font *vf, term_char_t c);
404struct vt_font	*vtfont_ref(struct vt_font *vf);
405void		 vtfont_unref(struct vt_font *vf);
406int		 vtfont_load(vfnt_t *f, struct vt_font **ret);
407
408/* Sysmouse. */
409void sysmouse_process_event(mouse_info_t *mi);
410#ifndef SC_NO_CUTPASTE
411void vt_mouse_event(int type, int x, int y, int event, int cnt);
412void vt_mouse_state(int show);
413#endif
414#define	VT_MOUSE_SHOW 1
415#define	VT_MOUSE_HIDE 0
416
417#endif /* !_DEV_VT_VT_H_ */
418
419