blob: 8c3bf3d613c061615bbcf15a607f371e9208c67b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 */
4
5/*
6 * Hopefully this will be a rather complete VT102 implementation.
7 *
8 * Beeping thanks to John T Kohl.
9 *
10 * Virtual Consoles, Screen Blanking, Screen Dumping, Color, Graphics
11 * Chars, and VT100 enhancements by Peter MacDonald.
12 *
13 * Copy and paste function by Andrew Haylett,
14 * some enhancements by Alessandro Rubini.
15 *
16 * Code to check for different video-cards mostly by Galen Hunt,
17 * <g-hunt@ee.utah.edu>
18 *
19 * Rudimentary ISO 10646/Unicode/UTF-8 character set support by
20 * Markus Kuhn, <mskuhn@immd4.informatik.uni-erlangen.de>.
21 *
22 * Dynamic allocation of consoles, aeb@cwi.nl, May 1994
23 * Resizing of consoles, aeb, 940926
24 *
25 * Code for xterm like mouse click reporting by Peter Orbaek 20-Jul-94
26 * <poe@daimi.aau.dk>
27 *
28 * User-defined bell sound, new setterm control sequences and printk
29 * redirection by Martin Mares <mj@k332.feld.cvut.cz> 19-Nov-95
30 *
31 * APM screenblank bug fixed Takashi Manabe <manabe@roy.dsl.tutics.tut.jp>
32 *
33 * Merge with the abstract console driver by Geert Uytterhoeven
34 * <geert@linux-m68k.org>, Jan 1997.
35 *
36 * Original m68k console driver modifications by
37 *
38 * - Arno Griffioen <arno@usn.nl>
39 * - David Carter <carter@cs.bris.ac.uk>
40 *
41 * The abstract console driver provides a generic interface for a text
42 * console. It supports VGA text mode, frame buffer based graphical consoles
43 * and special graphics processors that are only accessible through some
44 * registers (e.g. a TMS340x0 GSP).
45 *
46 * The interface to the hardware is specified using a special structure
47 * (struct consw) which contains function pointers to console operations
48 * (see <linux/console.h> for more information).
49 *
50 * Support for changeable cursor shape
51 * by Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>, August 1997
52 *
53 * Ported to i386 and con_scrolldelta fixed
54 * by Emmanuel Marty <core@ggi-project.org>, April 1998
55 *
56 * Resurrected character buffers in videoram plus lots of other trickery
57 * by Martin Mares <mj@atrey.karlin.mff.cuni.cz>, July 1998
58 *
59 * Removed old-style timers, introduced console_timer, made timer
Francois Camie1f8e872008-10-15 22:01:59 -070060 * deletion SMP-safe. 17Jun00, Andrew Morton
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 *
62 * Removed console_lock, enabled interrupts across all console operations
63 * 13 March 2001, Andrew Morton
Adam Tlalkad4328b42006-09-29 01:59:53 -070064 *
65 * Fixed UTF-8 mode so alternate charset modes always work according
66 * to control sequences interpreted in do_con_trol function
67 * preserving backward VT100 semigraphics compatibility,
68 * malformed UTF sequences represented as sequences of replacement glyphs,
69 * original codes or '?' as a last resort if replacement glyph is undefined
70 * by Adam Tla/lka <atlka@pg.gda.pl>, Aug 2006
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 */
72
73#include <linux/module.h>
74#include <linux/types.h>
75#include <linux/sched.h>
76#include <linux/tty.h>
77#include <linux/tty_flip.h>
78#include <linux/kernel.h>
79#include <linux/string.h>
80#include <linux/errno.h>
81#include <linux/kd.h>
82#include <linux/slab.h>
83#include <linux/major.h>
84#include <linux/mm.h>
85#include <linux/console.h>
86#include <linux/init.h>
Matthias Kaehlckec831c332007-05-08 00:39:49 -070087#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#include <linux/vt_kern.h>
89#include <linux/selection.h>
90#include <linux/tiocl.h>
91#include <linux/kbd_kern.h>
92#include <linux/consolemap.h>
93#include <linux/timer.h>
94#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <linux/pm.h>
97#include <linux/font.h>
98#include <linux/bitops.h>
Samuel Thibaultb293d752007-10-18 23:39:17 -070099#include <linux/notifier.h>
Alan Coxd81ed102008-10-13 10:41:42 +0100100#include <linux/device.h>
101#include <linux/io.h>
Alan Coxd81ed102008-10-13 10:41:42 +0100102#include <linux/uaccess.h>
Jason Wessel81d44502010-08-05 09:22:30 -0500103#include <linux/kdb.h>
Andy Shevchenko74c807c2010-06-15 17:24:16 +0300104#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Antonino A. Daplas3e795de2006-06-26 00:27:08 -0700106#define MAX_NR_CON_DRIVER 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Antonino A. Daplas6db40632006-06-26 00:27:12 -0700108#define CON_DRIVER_FLAG_MODULE 1
Antonino A. Daplas928e9642006-10-03 01:14:49 -0700109#define CON_DRIVER_FLAG_INIT 2
110#define CON_DRIVER_FLAG_ATTR 4
Imre Deakd364b5c2015-04-01 21:06:16 +0300111#define CON_DRIVER_FLAG_ZOMBIE 8
Antonino A. Daplas3e795de2006-06-26 00:27:08 -0700112
113struct con_driver {
114 const struct consw *con;
115 const char *desc;
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -0700116 struct device *dev;
Antonino A. Daplas6db40632006-06-26 00:27:12 -0700117 int node;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -0700118 int first;
119 int last;
120 int flag;
121};
122
123static struct con_driver registered_con_driver[MAX_NR_CON_DRIVER];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124const struct consw *conswitchp;
125
126/* A bitmap for codes <32. A bit of 1 indicates that the code
127 * corresponding to that bit number invokes some special action
128 * (such as cursor movement) and should not be displayed as a
129 * glyph unless the disp_ctrl mode is explicitly enabled.
130 */
131#define CTRL_ACTION 0x0d00ff81
132#define CTRL_ALWAYS 0x0800f501 /* Cannot be overridden by disp_ctrl */
133
134/*
135 * Here is the default bell parameters: 750HZ, 1/8th of a second
136 */
137#define DEFAULT_BELL_PITCH 750
138#define DEFAULT_BELL_DURATION (HZ/8)
Scot Doylebd633642015-03-26 13:54:39 +0000139#define DEFAULT_CURSOR_BLINK_MS 200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141struct vc vc_cons [MAX_NR_CONSOLES];
142
143#ifndef VT_SINGLE_DRIVER
144static const struct consw *con_driver_map[MAX_NR_CONSOLES];
145#endif
146
147static int con_open(struct tty_struct *, struct file *);
148static void vc_init(struct vc_data *vc, unsigned int rows,
149 unsigned int cols, int do_clear);
150static void gotoxy(struct vc_data *vc, int new_x, int new_y);
151static void save_cur(struct vc_data *vc);
152static void reset_terminal(struct vc_data *vc, int do_clear);
153static void con_flush_chars(struct tty_struct *tty);
Yoichi Yuasa403aac92006-12-06 20:38:38 -0800154static int set_vesa_blanking(char __user *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static void set_cursor(struct vc_data *vc);
156static void hide_cursor(struct vc_data *vc);
David Howells65f27f32006-11-22 14:55:48 +0000157static void console_callback(struct work_struct *ignored);
Imre Deakd364b5c2015-04-01 21:06:16 +0300158static void con_driver_unregister_callback(struct work_struct *ignored);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static void blank_screen_t(unsigned long dummy);
160static void set_palette(struct vc_data *vc);
161
Peter Hurley52c40fc2014-11-11 11:20:56 -0500162#define vt_get_kmsg_redirect() vt_kmsg_redirect(-1)
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static int printable; /* Is console ready for printing? */
Jan Engelhardt77bf2ba2007-10-18 03:04:34 -0700165int default_utf8 = true;
Antonino A. Daplas042f10e2007-05-08 00:38:09 -0700166module_param(default_utf8, int, S_IRUGO | S_IWUSR);
Matthew Garrettf6c06b62009-11-13 15:14:11 -0500167int global_cursor_default = -1;
168module_param(global_cursor_default, int, S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Clemens Ladisch9ea9a882009-12-15 16:45:39 -0800170static int cur_default = CUR_DEFAULT;
171module_param(cur_default, int, S_IRUGO | S_IWUSR);
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*
174 * ignore_poke: don't unblank the screen when things are typed. This is
175 * mainly for the privacy of braille terminal users.
176 */
177static int ignore_poke;
178
179int do_poke_blanked_console;
180int console_blanked;
181
182static int vesa_blank_mode; /* 0:none 1:suspendV 2:suspendH 3:powerdown */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183static int vesa_off_interval;
Daniel Mackf324edc2009-06-16 15:33:52 -0700184static int blankinterval = 10*60;
185core_param(consoleblank, blankinterval, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
David Howells65f27f32006-11-22 14:55:48 +0000187static DECLARE_WORK(console_work, console_callback);
Imre Deakd364b5c2015-04-01 21:06:16 +0300188static DECLARE_WORK(con_driver_unregister_work, con_driver_unregister_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190/*
191 * fg_console is the current virtual console,
192 * last_console is the last used one,
193 * want_console is the console we want to switch to,
Jesse Barnesb45cfba2010-08-05 09:22:30 -0500194 * saved_* variants are for save/restore around kernel debugger enter/leave
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 */
196int fg_console;
197int last_console;
198int want_console = -1;
Jason Wesselfed891c2010-08-16 15:58:30 -0500199static int saved_fg_console;
200static int saved_last_console;
201static int saved_want_console;
202static int saved_vc_mode;
Jason Wesselbeed5332010-08-16 15:58:31 -0500203static int saved_console_blanked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205/*
206 * For each existing display, we have a pointer to console currently visible
207 * on that display, allowing consoles other than fg_console to be refreshed
208 * appropriately. Unless the low-level driver supplies its own display_fg
209 * variable, we use this one for the "master display".
210 */
211static struct vc_data *master_display_fg;
212
213/*
214 * Unfortunately, we need to delay tty echo when we're currently writing to the
215 * console since the code is (and always was) not re-entrant, so we schedule
216 * all flip requests to process context with schedule-task() and run it from
217 * console_callback().
218 */
219
220/*
221 * For the same reason, we defer scrollback to the console callback.
222 */
223static int scrollback_delta;
224
225/*
226 * Hook so that the power management routines can (un)blank
227 * the console on our behalf.
228 */
229int (*console_blank_hook)(int);
230
Jiri Slaby40565f12007-02-12 00:52:31 -0800231static DEFINE_TIMER(console_timer, blank_screen_t, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232static int blank_state;
233static int blank_timer_expired;
234enum {
235 blank_off = 0,
236 blank_normal_wait,
237 blank_vesa_wait,
238};
239
240/*
Kay Sieversfbc92a32010-12-01 18:51:05 +0100241 * /sys/class/tty/tty0/
242 *
243 * the attribute 'active' contains the name of the current vc
244 * console and it supports poll() to detect vc switches
245 */
246static struct device *tty0dev;
247
248/*
Samuel Thibaultb293d752007-10-18 23:39:17 -0700249 * Notifier list for console events.
250 */
251static ATOMIC_NOTIFIER_HEAD(vt_notifier_list);
252
253int register_vt_notifier(struct notifier_block *nb)
254{
255 return atomic_notifier_chain_register(&vt_notifier_list, nb);
256}
257EXPORT_SYMBOL_GPL(register_vt_notifier);
258
259int unregister_vt_notifier(struct notifier_block *nb)
260{
261 return atomic_notifier_chain_unregister(&vt_notifier_list, nb);
262}
263EXPORT_SYMBOL_GPL(unregister_vt_notifier);
264
265static void notify_write(struct vc_data *vc, unsigned int unicode)
266{
Mathias Krause502fcb72011-07-30 14:01:59 +0200267 struct vt_notifier_param param = { .vc = vc, .c = unicode };
Samuel Thibaultb293d752007-10-18 23:39:17 -0700268 atomic_notifier_call_chain(&vt_notifier_list, VT_WRITE, &param);
269}
270
271static void notify_update(struct vc_data *vc)
272{
273 struct vt_notifier_param param = { .vc = vc };
274 atomic_notifier_call_chain(&vt_notifier_list, VT_UPDATE, &param);
275}
Samuel Thibaultb293d752007-10-18 23:39:17 -0700276/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * Low-Level Functions
278 */
279
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200280static inline bool con_is_fg(const struct vc_data *vc)
281{
282 return vc->vc_num == fg_console;
283}
284
285static inline bool con_should_update(const struct vc_data *vc)
286{
287 return con_is_visible(vc) && !console_blanked;
288}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290static inline unsigned short *screenpos(struct vc_data *vc, int offset, int viewed)
291{
292 unsigned short *p;
293
294 if (!viewed)
295 p = (unsigned short *)(vc->vc_origin + offset);
296 else if (!vc->vc_sw->con_screen_pos)
297 p = (unsigned short *)(vc->vc_visible_origin + offset);
298 else
299 p = vc->vc_sw->con_screen_pos(vc, offset);
300 return p;
301}
302
Alan Coxe33ac1c2010-06-01 22:52:54 +0200303/* Called from the keyboard irq path.. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static inline void scrolldelta(int lines)
305{
Alan Coxe33ac1c2010-06-01 22:52:54 +0200306 /* FIXME */
307 /* scrolldelta needs some kind of consistency lock, but the BKL was
308 and still is not protecting versus the scheduled back end */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 scrollback_delta += lines;
310 schedule_console_callback();
311}
312
313void schedule_console_callback(void)
314{
315 schedule_work(&console_work);
316}
317
318static void scrup(struct vc_data *vc, unsigned int t, unsigned int b, int nr)
319{
320 unsigned short *d, *s;
321
322 if (t+nr >= b)
323 nr = b - t - 1;
324 if (b > vc->vc_rows || t >= b || nr < 1)
325 return;
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200326 if (con_is_visible(vc) && vc->vc_sw->con_scroll(vc, t, b, SM_UP, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return;
328 d = (unsigned short *)(vc->vc_origin + vc->vc_size_row * t);
329 s = (unsigned short *)(vc->vc_origin + vc->vc_size_row * (t + nr));
330 scr_memmovew(d, s, (b - t - nr) * vc->vc_size_row);
Linus Torvalds386f40c2010-06-06 20:44:04 -0700331 scr_memsetw(d + (b - t - nr) * vc->vc_cols, vc->vc_video_erase_char,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 vc->vc_size_row * nr);
333}
334
335static void scrdown(struct vc_data *vc, unsigned int t, unsigned int b, int nr)
336{
337 unsigned short *s;
338 unsigned int step;
339
340 if (t+nr >= b)
341 nr = b - t - 1;
342 if (b > vc->vc_rows || t >= b || nr < 1)
343 return;
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200344 if (con_is_visible(vc) && vc->vc_sw->con_scroll(vc, t, b, SM_DOWN, nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return;
346 s = (unsigned short *)(vc->vc_origin + vc->vc_size_row * t);
347 step = vc->vc_cols * nr;
348 scr_memmovew(s + step, s, (b - t - nr) * vc->vc_size_row);
Linus Torvalds93f78da2008-10-14 12:12:02 -0700349 scr_memsetw(s, vc->vc_video_erase_char, 2 * step);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352static void do_update_region(struct vc_data *vc, unsigned long start, int count)
353{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 unsigned int xx, yy, offset;
355 u16 *p;
356
357 p = (u16 *) start;
358 if (!vc->vc_sw->con_getxy) {
359 offset = (start - vc->vc_origin) / 2;
360 xx = offset % vc->vc_cols;
361 yy = offset / vc->vc_cols;
362 } else {
363 int nxx, nyy;
364 start = vc->vc_sw->con_getxy(vc, start, &nxx, &nyy);
365 xx = nxx; yy = nyy;
366 }
367 for(;;) {
368 u16 attrib = scr_readw(p) & 0xff00;
369 int startx = xx;
370 u16 *q = p;
371 while (xx < vc->vc_cols && count) {
372 if (attrib != (scr_readw(p) & 0xff00)) {
373 if (p > q)
374 vc->vc_sw->con_putcs(vc, q, p-q, yy, startx);
375 startx = xx;
376 q = p;
377 attrib = scr_readw(p) & 0xff00;
378 }
379 p++;
380 xx++;
381 count--;
382 }
383 if (p > q)
384 vc->vc_sw->con_putcs(vc, q, p-q, yy, startx);
385 if (!count)
386 break;
387 xx = 0;
388 yy++;
389 if (vc->vc_sw->con_getxy) {
390 p = (u16 *)start;
391 start = vc->vc_sw->con_getxy(vc, start, NULL, NULL);
392 }
393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396void update_region(struct vc_data *vc, unsigned long start, int count)
397{
398 WARN_CONSOLE_UNLOCKED();
399
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200400 if (con_should_update(vc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 hide_cursor(vc);
402 do_update_region(vc, start, count);
403 set_cursor(vc);
404 }
405}
406
407/* Structure of attributes is hardware-dependent */
408
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -0700409static u8 build_attr(struct vc_data *vc, u8 _color, u8 _intensity, u8 _blink,
410 u8 _underline, u8 _reverse, u8 _italic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 if (vc->vc_sw->con_build_attr)
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -0700413 return vc->vc_sw->con_build_attr(vc, _color, _intensity,
414 _blink, _underline, _reverse, _italic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*
417 * ++roman: I completely changed the attribute format for monochrome
418 * mode (!can_do_color). The formerly used MDA (monochrome display
419 * adapter) format didn't allow the combination of certain effects.
420 * Now the attribute is just a bit vector:
421 * Bit 0..1: intensity (0..2)
422 * Bit 2 : underline
423 * Bit 3 : reverse
424 * Bit 7 : blink
425 */
426 {
Jan Engelhardtc9e587ab2008-04-29 00:59:46 -0700427 u8 a = _color;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!vc->vc_can_do_color)
429 return _intensity |
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -0700430 (_italic ? 2 : 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 (_underline ? 4 : 0) |
432 (_reverse ? 8 : 0) |
433 (_blink ? 0x80 : 0);
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -0700434 if (_italic)
435 a = (a & 0xF0) | vc->vc_itcolor;
436 else if (_underline)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 a = (a & 0xf0) | vc->vc_ulcolor;
438 else if (_intensity == 0)
439 a = (a & 0xf0) | vc->vc_ulcolor;
440 if (_reverse)
441 a = ((a) & 0x88) | ((((a) >> 4) | ((a) << 4)) & 0x77);
442 if (_blink)
443 a ^= 0x80;
444 if (_intensity == 2)
445 a ^= 0x08;
446 if (vc->vc_hi_font_mask == 0x100)
447 a <<= 1;
448 return a;
449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452static void update_attr(struct vc_data *vc)
453{
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -0700454 vc->vc_attr = build_attr(vc, vc->vc_color, vc->vc_intensity,
455 vc->vc_blink, vc->vc_underline,
456 vc->vc_reverse ^ vc->vc_decscnm, vc->vc_italic);
457 vc->vc_video_erase_char = (build_attr(vc, vc->vc_color, 1, vc->vc_blink, 0, vc->vc_decscnm, 0) << 8) | ' ';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460/* Note: inverting the screen twice should revert to the original state */
461void invert_screen(struct vc_data *vc, int offset, int count, int viewed)
462{
463 unsigned short *p;
464
465 WARN_CONSOLE_UNLOCKED();
466
467 count /= 2;
468 p = screenpos(vc, offset, viewed);
Jiri Slaby6af39ed2016-06-23 13:34:29 +0200469 if (vc->vc_sw->con_invert_region) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 vc->vc_sw->con_invert_region(vc, p, count);
Jiri Slaby6af39ed2016-06-23 13:34:29 +0200471 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 u16 *q = p;
473 int cnt = count;
474 u16 a;
475
476 if (!vc->vc_can_do_color) {
477 while (cnt--) {
478 a = scr_readw(q);
479 a ^= 0x0800;
480 scr_writew(a, q);
481 q++;
482 }
483 } else if (vc->vc_hi_font_mask == 0x100) {
484 while (cnt--) {
485 a = scr_readw(q);
486 a = ((a) & 0x11ff) | (((a) & 0xe000) >> 4) | (((a) & 0x0e00) << 4);
487 scr_writew(a, q);
488 q++;
489 }
490 } else {
491 while (cnt--) {
492 a = scr_readw(q);
493 a = ((a) & 0x88ff) | (((a) & 0x7000) >> 4) | (((a) & 0x0700) << 4);
494 scr_writew(a, q);
495 q++;
496 }
497 }
498 }
Jiri Slaby6af39ed2016-06-23 13:34:29 +0200499
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200500 if (con_should_update(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 do_update_region(vc, (unsigned long) p, count);
Nicolas Pitre19e3ae62015-01-23 17:07:21 -0500502 notify_update(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
505/* used by selection: complement pointer position */
506void complement_pos(struct vc_data *vc, int offset)
507{
Antonino A. Daplas414edcd2005-09-06 15:17:52 -0700508 static int old_offset = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 static unsigned short old;
510 static unsigned short oldx, oldy;
511
512 WARN_CONSOLE_UNLOCKED();
513
Antonino A. Daplas414edcd2005-09-06 15:17:52 -0700514 if (old_offset != -1 && old_offset >= 0 &&
515 old_offset < vc->vc_screenbuf_size) {
516 scr_writew(old, screenpos(vc, old_offset, 1));
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200517 if (con_should_update(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 vc->vc_sw->con_putc(vc, old, oldy, oldx);
Nicolas Pitre19e3ae62015-01-23 17:07:21 -0500519 notify_update(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
Antonino A. Daplas414edcd2005-09-06 15:17:52 -0700521
522 old_offset = offset;
523
524 if (offset != -1 && offset >= 0 &&
525 offset < vc->vc_screenbuf_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 unsigned short new;
Antonino A. Daplas414edcd2005-09-06 15:17:52 -0700527 unsigned short *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 p = screenpos(vc, offset, 1);
529 old = scr_readw(p);
530 new = old ^ vc->vc_complement_mask;
531 scr_writew(new, p);
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200532 if (con_should_update(vc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 oldx = (offset >> 1) % vc->vc_cols;
534 oldy = (offset >> 1) / vc->vc_cols;
535 vc->vc_sw->con_putc(vc, new, oldy, oldx);
536 }
Nicolas Pitre19e3ae62015-01-23 17:07:21 -0500537 notify_update(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539}
540
541static void insert_char(struct vc_data *vc, unsigned int nr)
542{
Jean-François Moine81732c32012-09-06 19:24:13 +0200543 unsigned short *p = (unsigned short *) vc->vc_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Nicolas Pitrea883b702013-02-24 20:06:09 -0500545 scr_memmovew(p + nr, p, (vc->vc_cols - vc->vc_x - nr) * 2);
Jean-François Moine81732c32012-09-06 19:24:13 +0200546 scr_memsetw(p, vc->vc_video_erase_char, nr * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 vc->vc_need_wrap = 0;
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200548 if (con_should_update(vc))
Jean-François Moine81732c32012-09-06 19:24:13 +0200549 do_update_region(vc, (unsigned long) p,
Jean-François Moineb1a925f2012-11-20 17:35:41 +0100550 vc->vc_cols - vc->vc_x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
553static void delete_char(struct vc_data *vc, unsigned int nr)
554{
Jean-François Moine81732c32012-09-06 19:24:13 +0200555 unsigned short *p = (unsigned short *) vc->vc_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Jean-François Moineb1a925f2012-11-20 17:35:41 +0100557 scr_memcpyw(p, p + nr, (vc->vc_cols - vc->vc_x - nr) * 2);
Jean-François Moine81732c32012-09-06 19:24:13 +0200558 scr_memsetw(p + vc->vc_cols - vc->vc_x - nr, vc->vc_video_erase_char,
559 nr * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 vc->vc_need_wrap = 0;
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200561 if (con_should_update(vc))
Jean-François Moine81732c32012-09-06 19:24:13 +0200562 do_update_region(vc, (unsigned long) p,
Jean-François Moineb1a925f2012-11-20 17:35:41 +0100563 vc->vc_cols - vc->vc_x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Melchior FRANZe882f712015-11-01 19:48:18 +0100566static int softcursor_original = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568static void add_softcursor(struct vc_data *vc)
569{
570 int i = scr_readw((u16 *) vc->vc_pos);
571 u32 type = vc->vc_cursor_type;
572
573 if (! (type & 0x10)) return;
574 if (softcursor_original != -1) return;
575 softcursor_original = i;
576 i |= ((type >> 8) & 0xff00 );
577 i ^= ((type) & 0xff00 );
578 if ((type & 0x20) && ((softcursor_original & 0x7000) == (i & 0x7000))) i ^= 0x7000;
579 if ((type & 0x40) && ((i & 0x700) == ((i & 0x7000) >> 4))) i ^= 0x0700;
580 scr_writew(i, (u16 *) vc->vc_pos);
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200581 if (con_should_update(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 vc->vc_sw->con_putc(vc, i, vc->vc_y, vc->vc_x);
583}
584
585static void hide_softcursor(struct vc_data *vc)
586{
587 if (softcursor_original != -1) {
588 scr_writew(softcursor_original, (u16 *)vc->vc_pos);
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200589 if (con_should_update(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 vc->vc_sw->con_putc(vc, softcursor_original,
591 vc->vc_y, vc->vc_x);
592 softcursor_original = -1;
593 }
594}
595
596static void hide_cursor(struct vc_data *vc)
597{
598 if (vc == sel_cons)
599 clear_selection();
600 vc->vc_sw->con_cursor(vc, CM_ERASE);
601 hide_softcursor(vc);
602}
603
604static void set_cursor(struct vc_data *vc)
605{
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200606 if (!con_is_fg(vc) || console_blanked || vc->vc_mode == KD_GRAPHICS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return;
608 if (vc->vc_deccm) {
609 if (vc == sel_cons)
610 clear_selection();
611 add_softcursor(vc);
612 if ((vc->vc_cursor_type & 0x0f) != 1)
613 vc->vc_sw->con_cursor(vc, CM_DRAW);
614 } else
615 hide_cursor(vc);
616}
617
618static void set_origin(struct vc_data *vc)
619{
620 WARN_CONSOLE_UNLOCKED();
621
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200622 if (!con_is_visible(vc) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 !vc->vc_sw->con_set_origin ||
624 !vc->vc_sw->con_set_origin(vc))
625 vc->vc_origin = (unsigned long)vc->vc_screenbuf;
626 vc->vc_visible_origin = vc->vc_origin;
627 vc->vc_scr_end = vc->vc_origin + vc->vc_screenbuf_size;
628 vc->vc_pos = vc->vc_origin + vc->vc_size_row * vc->vc_y + 2 * vc->vc_x;
629}
630
Denys Vlasenkoc0f160a2015-10-27 18:46:47 +0100631static void save_screen(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 WARN_CONSOLE_UNLOCKED();
634
635 if (vc->vc_sw->con_save_screen)
636 vc->vc_sw->con_save_screen(vc);
637}
638
639/*
640 * Redrawing of screen
641 */
642
Dave Airlie2a248302013-01-24 14:14:19 +1000643void clear_buffer_attributes(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 unsigned short *p = (unsigned short *)vc->vc_origin;
646 int count = vc->vc_screenbuf_size / 2;
647 int mask = vc->vc_hi_font_mask | 0xff;
648
649 for (; count > 0; count--, p++) {
650 scr_writew((scr_readw(p)&mask) | (vc->vc_video_erase_char & ~mask), p);
651 }
652}
653
654void redraw_screen(struct vc_data *vc, int is_switch)
655{
656 int redraw = 0;
657
658 WARN_CONSOLE_UNLOCKED();
659
660 if (!vc) {
661 /* strange ... */
662 /* printk("redraw_screen: tty %d not allocated ??\n", new_console+1); */
663 return;
664 }
665
666 if (is_switch) {
667 struct vc_data *old_vc = vc_cons[fg_console].d;
668 if (old_vc == vc)
669 return;
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200670 if (!con_is_visible(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 redraw = 1;
672 *vc->vc_display_fg = vc;
673 fg_console = vc->vc_num;
674 hide_cursor(old_vc);
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200675 if (!con_is_visible(old_vc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 save_screen(old_vc);
677 set_origin(old_vc);
678 }
Kay Sieversfbc92a32010-12-01 18:51:05 +0100679 if (tty0dev)
680 sysfs_notify(&tty0dev->kobj, NULL, "active");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 } else {
682 hide_cursor(vc);
683 redraw = 1;
684 }
685
686 if (redraw) {
687 int update;
688 int old_was_color = vc->vc_can_do_color;
689
690 set_origin(vc);
691 update = vc->vc_sw->con_switch(vc);
692 set_palette(vc);
693 /*
694 * If console changed from mono<->color, the best we can do
695 * is to clear the buffer attributes. As it currently stands,
696 * rebuilding new attributes from the old buffer is not doable
697 * without overly complex code.
698 */
699 if (old_was_color != vc->vc_can_do_color) {
700 update_attr(vc);
701 clear_buffer_attributes(vc);
702 }
Jesse Barnes8fd4bd22010-06-23 12:56:12 -0700703
704 /* Forcibly update if we're panicing */
705 if ((update && vc->vc_mode != KD_GRAPHICS) ||
706 vt_force_oops_output(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 do_update_region(vc, vc->vc_origin, vc->vc_screenbuf_size / 2);
708 }
709 set_cursor(vc);
710 if (is_switch) {
711 set_leds();
712 compute_shiftstate();
Samuel Thibault8182ec42008-03-04 14:28:36 -0800713 notify_update(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715}
716
717/*
718 * Allocation, freeing and resizing of VTs.
719 */
720
721int vc_cons_allocated(unsigned int i)
722{
723 return (i < MAX_NR_CONSOLES && vc_cons[i].d);
724}
725
726static void visual_init(struct vc_data *vc, int num, int init)
727{
728 /* ++Geert: vc->vc_sw->con_init determines console size */
729 if (vc->vc_sw)
730 module_put(vc->vc_sw->owner);
731 vc->vc_sw = conswitchp;
732#ifndef VT_SINGLE_DRIVER
733 if (con_driver_map[num])
734 vc->vc_sw = con_driver_map[num];
735#endif
736 __module_get(vc->vc_sw->owner);
737 vc->vc_num = num;
738 vc->vc_display_fg = &master_display_fg;
Dongxing Zhang08b33242015-06-10 15:21:10 +0800739 if (vc->vc_uni_pagedir_loc)
740 con_free_unimap(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 vc->vc_uni_pagedir_loc = &vc->vc_uni_pagedir;
Takashi Iwaie4bdab72014-05-13 12:09:28 +0200742 vc->vc_uni_pagedir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 vc->vc_hi_font_mask = 0;
744 vc->vc_complement_mask = 0;
745 vc->vc_can_do_color = 0;
Jesse Barnes8fd4bd22010-06-23 12:56:12 -0700746 vc->vc_panic_force_write = false;
David Daney1b459962016-05-17 11:41:04 -0700747 vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 vc->vc_sw->con_init(vc, init);
749 if (!vc->vc_complement_mask)
750 vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
751 vc->vc_s_complement_mask = vc->vc_complement_mask;
752 vc->vc_size_row = vc->vc_cols << 1;
753 vc->vc_screenbuf_size = vc->vc_rows * vc->vc_size_row;
754}
755
756int vc_allocate(unsigned int currcons) /* return 0 on success */
757{
Jiri Slaby34902b72016-03-31 10:08:15 +0200758 struct vt_notifier_param param;
759 struct vc_data *vc;
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 WARN_CONSOLE_UNLOCKED();
762
763 if (currcons >= MAX_NR_CONSOLES)
764 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Jiri Slaby34902b72016-03-31 10:08:15 +0200766 if (vc_cons[currcons].d)
767 return 0;
768
769 /* due to the granularity of kmalloc, we waste some memory here */
770 /* the alloc is done in two steps, to optimize the common situation
771 of a 25x80 console (structsize=216, screenbuf_size=4000) */
772 /* although the numbers above are not valid since long ago, the
773 point is still up-to-date and the comment still has its value
774 even if only as a historical artifact. --mj, July 1998 */
775 param.vc = vc = kzalloc(sizeof(struct vc_data), GFP_KERNEL);
776 if (!vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return -ENOMEM;
Jiri Slaby34902b72016-03-31 10:08:15 +0200778
779 vc_cons[currcons].d = vc;
780 tty_port_init(&vc->port);
781 INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK);
782
783 visual_init(vc, currcons, 1);
784
785 if (!*vc->vc_uni_pagedir_loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 con_set_default_unimap(vc);
Matthew Garrettf6c06b62009-11-13 15:14:11 -0500787
Jiri Slaby34902b72016-03-31 10:08:15 +0200788 vc->vc_screenbuf = kmalloc(vc->vc_screenbuf_size, GFP_KERNEL);
789 if (!vc->vc_screenbuf)
790 goto err_free;
Matthew Garrettf6c06b62009-11-13 15:14:11 -0500791
Jiri Slaby34902b72016-03-31 10:08:15 +0200792 /* If no drivers have overridden us and the user didn't pass a
793 boot option, default to displaying the cursor */
794 if (global_cursor_default == -1)
795 global_cursor_default = 1;
796
797 vc_init(vc, vc->vc_rows, vc->vc_cols, 1);
798 vcs_make_sysfs(currcons);
799 atomic_notifier_call_chain(&vt_notifier_list, VT_ALLOCATE, &param);
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return 0;
Jiri Slaby34902b72016-03-31 10:08:15 +0200802err_free:
803 kfree(vc);
804 vc_cons[currcons].d = NULL;
805 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Antonino A. Daplase400b6e2007-10-16 01:29:35 -0700808static inline int resize_screen(struct vc_data *vc, int width, int height,
809 int user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 /* Resizes the resolution of the display adapater */
812 int err = 0;
813
814 if (vc->vc_mode != KD_GRAPHICS && vc->vc_sw->con_resize)
Antonino A. Daplase400b6e2007-10-16 01:29:35 -0700815 err = vc->vc_sw->con_resize(vc, width, height, user);
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return err;
818}
819
820/*
821 * Change # of rows and columns (0 means unchanged/the size of fg_console)
822 * [this is to be used together with some user program
823 * like resize that changes the hardware videomode]
824 */
825#define VC_RESIZE_MAXCOL (32767)
826#define VC_RESIZE_MAXROW (32767)
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100827
828/**
829 * vc_do_resize - resizing method for the tty
830 * @tty: tty being resized
831 * @real_tty: real tty (different to tty if a pty/tty pair)
832 * @vc: virtual console private data
833 * @cols: columns
834 * @lines: lines
835 *
836 * Resize a virtual console, clipping according to the actual constraints.
837 * If the caller passes a tty structure then update the termios winsize
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800838 * information and perform any necessary signal handling.
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100839 *
Peter Hurley6a1c0682013-06-15 09:14:23 -0400840 * Caller must hold the console semaphore. Takes the termios rwsem and
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100841 * ctrl_lock of the tty IFF a tty is passed.
842 */
843
Alan Coxfc6f6232009-01-02 13:43:17 +0000844static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc,
845 unsigned int cols, unsigned int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
847 unsigned long old_origin, new_origin, new_scr_end, rlth, rrem, err = 0;
qiaochong9e0ba742010-08-09 17:21:27 -0700848 unsigned long end;
Jiri Slabyf2ee4ae2011-03-23 09:49:57 +0100849 unsigned int old_rows, old_row_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 unsigned int new_cols, new_rows, new_row_size, new_screen_size;
qiaochong9e0ba742010-08-09 17:21:27 -0700851 unsigned int user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 unsigned short *newscreen;
853
854 WARN_CONSOLE_UNLOCKED();
855
856 if (!vc)
857 return -ENXIO;
858
Antonino A. Daplase400b6e2007-10-16 01:29:35 -0700859 user = vc->vc_resize_user;
860 vc->vc_resize_user = 0;
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (cols > VC_RESIZE_MAXCOL || lines > VC_RESIZE_MAXROW)
863 return -EINVAL;
864
865 new_cols = (cols ? cols : vc->vc_cols);
866 new_rows = (lines ? lines : vc->vc_rows);
867 new_row_size = new_cols << 1;
868 new_screen_size = new_row_size * new_rows;
869
870 if (new_cols == vc->vc_cols && new_rows == vc->vc_rows)
871 return 0;
872
Dmitry Vyukov32b29212016-10-14 15:18:28 +0200873 if (new_screen_size > (4 << 20))
874 return -EINVAL;
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800875 newscreen = kmalloc(new_screen_size, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (!newscreen)
877 return -ENOMEM;
878
Scot Doyle009e39a2016-10-13 12:12:43 -0500879 if (vc == sel_cons)
880 clear_selection();
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 old_rows = vc->vc_rows;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 old_row_size = vc->vc_size_row;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Antonino A. Daplase400b6e2007-10-16 01:29:35 -0700885 err = resize_screen(vc, new_cols, new_rows, user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (err) {
887 kfree(newscreen);
888 return err;
889 }
890
891 vc->vc_rows = new_rows;
892 vc->vc_cols = new_cols;
893 vc->vc_size_row = new_row_size;
894 vc->vc_screenbuf_size = new_screen_size;
895
896 rlth = min(old_row_size, new_row_size);
897 rrem = new_row_size - rlth;
898 old_origin = vc->vc_origin;
899 new_origin = (long) newscreen;
900 new_scr_end = new_origin + new_screen_size;
Antonino A. Daplas3b41dc12005-09-09 13:04:39 -0700901
902 if (vc->vc_y > new_rows) {
903 if (old_rows - vc->vc_y < new_rows) {
904 /*
905 * Cursor near the bottom, copy contents from the
906 * bottom of buffer
907 */
908 old_origin += (old_rows - new_rows) * old_row_size;
Antonino A. Daplas3b41dc12005-09-09 13:04:39 -0700909 } else {
910 /*
911 * Cursor is in no man's land, copy 1/2 screenful
912 * from the top and bottom of cursor position
913 */
914 old_origin += (vc->vc_y - new_rows/2) * old_row_size;
Antonino A. Daplas3b41dc12005-09-09 13:04:39 -0700915 }
Francisco Jerez9fc2b2d2010-08-22 17:37:24 +0200916 }
917
918 end = old_origin + old_row_size * min(old_rows, new_rows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 update_attr(vc);
921
Antonino A. Daplas3b41dc12005-09-09 13:04:39 -0700922 while (old_origin < end) {
923 scr_memcpyw((unsigned short *) new_origin,
924 (unsigned short *) old_origin, rlth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (rrem)
Antonino A. Daplas3b41dc12005-09-09 13:04:39 -0700926 scr_memsetw((void *)(new_origin + rlth),
927 vc->vc_video_erase_char, rrem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 old_origin += old_row_size;
929 new_origin += new_row_size;
930 }
931 if (new_scr_end > new_origin)
Antonino A. Daplas3b41dc12005-09-09 13:04:39 -0700932 scr_memsetw((void *)new_origin, vc->vc_video_erase_char,
933 new_scr_end - new_origin);
Johannes Weiner5c9228f2009-07-16 16:06:09 +0100934 kfree(vc->vc_screenbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 vc->vc_screenbuf = newscreen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 vc->vc_screenbuf_size = new_screen_size;
937 set_origin(vc);
938
939 /* do part of a reset_terminal() */
940 vc->vc_top = 0;
941 vc->vc_bottom = vc->vc_rows;
942 gotoxy(vc, vc->vc_x, vc->vc_y);
943 save_cur(vc);
944
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100945 if (tty) {
946 /* Rewrite the requested winsize data with the actual
947 resulting sizes */
948 struct winsize ws;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 memset(&ws, 0, sizeof(ws));
950 ws.ws_row = vc->vc_rows;
951 ws.ws_col = vc->vc_cols;
952 ws.ws_ypixel = vc->vc_scan_lines;
Alan Coxfc6f6232009-01-02 13:43:17 +0000953 tty_do_resize(tty, &ws);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +0200956 if (con_is_visible(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 update_screen(vc);
Alan Cox8b92e872009-09-19 13:13:24 -0700958 vt_event_post(VT_EVENT_RESIZE, vc->vc_num, vc->vc_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return err;
960}
961
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100962/**
963 * vc_resize - resize a VT
964 * @vc: virtual console
965 * @cols: columns
966 * @rows: rows
967 *
968 * Resize a virtual console as seen from the console end of things. We
969 * use the common vc_do_resize methods to update the structures. The
970 * caller must hold the console sem to protect console internals and
Alan Cox8ce73262010-06-01 22:52:56 +0200971 * vc->port.tty
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100972 */
973
974int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int rows)
Alan Coxca9bda02006-09-29 02:00:03 -0700975{
Alan Cox8ce73262010-06-01 22:52:56 +0200976 return vc_do_resize(vc->port.tty, vc, cols, rows);
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100977}
978
979/**
980 * vt_resize - resize a VT
981 * @tty: tty to resize
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100982 * @ws: winsize attributes
983 *
984 * Resize a virtual terminal. This is called by the tty layer as we
985 * register our own handler for resizing. The mutual helper does all
986 * the actual work.
987 *
988 * Takes the console sem and the called methods then take the tty
Peter Hurley6a1c0682013-06-15 09:14:23 -0400989 * termios_rwsem and the tty ctrl_lock in that order.
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100990 */
Roel Kluinda2bdf92009-01-07 18:09:15 -0800991static int vt_resize(struct tty_struct *tty, struct winsize *ws)
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100992{
993 struct vc_data *vc = tty->driver_data;
994 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Torben Hohnac751ef2011-01-25 15:07:35 -0800996 console_lock();
Alan Coxfc6f6232009-01-02 13:43:17 +0000997 ret = vc_do_resize(tty, vc, ws->ws_col, ws->ws_row);
Torben Hohnac751ef2011-01-25 15:07:35 -0800998 console_unlock();
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100999 return ret;
Alan Coxca9bda02006-09-29 02:00:03 -07001000}
1001
Peter Hurley421b40a2013-05-17 12:41:03 -04001002struct vc_data *vc_deallocate(unsigned int currcons)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Peter Hurley421b40a2013-05-17 12:41:03 -04001004 struct vc_data *vc = NULL;
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 WARN_CONSOLE_UNLOCKED();
1007
1008 if (vc_cons_allocated(currcons)) {
Peter Hurley421b40a2013-05-17 12:41:03 -04001009 struct vt_notifier_param param;
Kay Sievers4995f8e2009-03-09 14:18:52 +01001010
Peter Hurley421b40a2013-05-17 12:41:03 -04001011 param.vc = vc = vc_cons[currcons].d;
Samuel Thibaultb293d752007-10-18 23:39:17 -07001012 atomic_notifier_call_chain(&vt_notifier_list, VT_DEALLOCATE, &param);
Kay Sievers4995f8e2009-03-09 14:18:52 +01001013 vcs_remove_sysfs(currcons);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 vc->vc_sw->con_deinit(vc);
Eric W. Biedermanbde0d2c92006-10-02 02:17:14 -07001015 put_pid(vc->vt_pid);
Antonino A. Daplasd459ec02006-07-03 00:24:20 -07001016 module_put(vc->vc_sw->owner);
Johannes Weiner5c9228f2009-07-16 16:06:09 +01001017 kfree(vc->vc_screenbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 vc_cons[currcons].d = NULL;
1019 }
Peter Hurley421b40a2013-05-17 12:41:03 -04001020 return vc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
1023/*
1024 * VT102 emulator
1025 */
1026
Alan Cox079c9532012-02-28 14:49:23 +00001027#define set_kbd(vc, x) vt_set_kbd_mode_bit((vc)->vc_num, (x))
1028#define clr_kbd(vc, x) vt_clr_kbd_mode_bit((vc)->vc_num, (x))
1029#define is_kbd(vc, x) vt_get_kbd_mode_bit((vc)->vc_num, (x))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031#define decarm VC_REPEAT
1032#define decckm VC_CKMODE
1033#define kbdapplic VC_APPLIC
1034#define lnm VC_CRLF
1035
1036/*
1037 * this is what the terminal answers to a ESC-Z or csi0c query.
1038 */
1039#define VT100ID "\033[?1;2c"
1040#define VT102ID "\033[?6c"
1041
Jiri Slaby8ede5cc2016-03-31 10:08:16 +02001042const unsigned char color_table[] = { 0, 4, 2, 6, 1, 5, 3, 7,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 8,12,10,14, 9,13,11,15 };
1044
1045/* the default colour table, for VGA+ colour systems */
Jiri Slaby91e74ca2016-03-31 10:08:17 +02001046unsigned char default_red[] = {
1047 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa,
1048 0x55, 0xff, 0x55, 0xff, 0x55, 0xff, 0x55, 0xff
1049};
1050module_param_array(default_red, byte, NULL, S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Jiri Slaby91e74ca2016-03-31 10:08:17 +02001052unsigned char default_grn[] = {
1053 0x00, 0x00, 0xaa, 0x55, 0x00, 0x00, 0xaa, 0xaa,
1054 0x55, 0x55, 0xff, 0xff, 0x55, 0x55, 0xff, 0xff
1055};
1056module_param_array(default_grn, byte, NULL, S_IRUGO | S_IWUSR);
1057
1058unsigned char default_blu[] = {
1059 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0xaa, 0xaa,
1060 0x55, 0x55, 0x55, 0x55, 0xff, 0xff, 0xff, 0xff
1061};
1062module_param_array(default_blu, byte, NULL, S_IRUGO | S_IWUSR);
Jan Engelhardt1c2bbe62007-05-08 00:38:03 -07001063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064/*
1065 * gotoxy() must verify all boundaries, because the arguments
1066 * might also be negative. If the given position is out of
1067 * bounds, the cursor is placed at the nearest margin.
1068 */
1069static void gotoxy(struct vc_data *vc, int new_x, int new_y)
1070{
1071 int min_y, max_y;
1072
1073 if (new_x < 0)
1074 vc->vc_x = 0;
1075 else {
1076 if (new_x >= vc->vc_cols)
1077 vc->vc_x = vc->vc_cols - 1;
1078 else
1079 vc->vc_x = new_x;
1080 }
1081
1082 if (vc->vc_decom) {
1083 min_y = vc->vc_top;
1084 max_y = vc->vc_bottom;
1085 } else {
1086 min_y = 0;
1087 max_y = vc->vc_rows;
1088 }
1089 if (new_y < min_y)
1090 vc->vc_y = min_y;
1091 else if (new_y >= max_y)
1092 vc->vc_y = max_y - 1;
1093 else
1094 vc->vc_y = new_y;
1095 vc->vc_pos = vc->vc_origin + vc->vc_y * vc->vc_size_row + (vc->vc_x<<1);
1096 vc->vc_need_wrap = 0;
1097}
1098
1099/* for absolute user moves, when decom is set */
1100static void gotoxay(struct vc_data *vc, int new_x, int new_y)
1101{
1102 gotoxy(vc, new_x, vc->vc_decom ? (vc->vc_top + new_y) : new_y);
1103}
1104
Jiri Slaby1b0ec882016-06-23 13:34:23 +02001105void scrollback(struct vc_data *vc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Jiri Slaby1b0ec882016-06-23 13:34:23 +02001107 scrolldelta(-(vc->vc_rows / 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
1110void scrollfront(struct vc_data *vc, int lines)
1111{
1112 if (!lines)
1113 lines = vc->vc_rows / 2;
1114 scrolldelta(lines);
1115}
1116
1117static void lf(struct vc_data *vc)
1118{
1119 /* don't scroll if above bottom of scrolling region, or
1120 * if below scrolling region
1121 */
1122 if (vc->vc_y + 1 == vc->vc_bottom)
1123 scrup(vc, vc->vc_top, vc->vc_bottom, 1);
1124 else if (vc->vc_y < vc->vc_rows - 1) {
1125 vc->vc_y++;
1126 vc->vc_pos += vc->vc_size_row;
1127 }
1128 vc->vc_need_wrap = 0;
Samuel Thibaultb293d752007-10-18 23:39:17 -07001129 notify_write(vc, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132static void ri(struct vc_data *vc)
1133{
1134 /* don't scroll if below top of scrolling region, or
1135 * if above scrolling region
1136 */
1137 if (vc->vc_y == vc->vc_top)
1138 scrdown(vc, vc->vc_top, vc->vc_bottom, 1);
1139 else if (vc->vc_y > 0) {
1140 vc->vc_y--;
1141 vc->vc_pos -= vc->vc_size_row;
1142 }
1143 vc->vc_need_wrap = 0;
1144}
1145
1146static inline void cr(struct vc_data *vc)
1147{
1148 vc->vc_pos -= vc->vc_x << 1;
1149 vc->vc_need_wrap = vc->vc_x = 0;
Samuel Thibaultb293d752007-10-18 23:39:17 -07001150 notify_write(vc, '\r');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
1153static inline void bs(struct vc_data *vc)
1154{
1155 if (vc->vc_x) {
1156 vc->vc_pos -= 2;
1157 vc->vc_x--;
1158 vc->vc_need_wrap = 0;
Samuel Thibaultb293d752007-10-18 23:39:17 -07001159 notify_write(vc, '\b');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161}
1162
1163static inline void del(struct vc_data *vc)
1164{
1165 /* ignored */
1166}
1167
1168static void csi_J(struct vc_data *vc, int vpar)
1169{
1170 unsigned int count;
1171 unsigned short * start;
1172
1173 switch (vpar) {
1174 case 0: /* erase from cursor to end of display */
1175 count = (vc->vc_scr_end - vc->vc_pos) >> 1;
1176 start = (unsigned short *)vc->vc_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 break;
1178 case 1: /* erase from start to cursor */
1179 count = ((vc->vc_pos - vc->vc_origin) >> 1) + 1;
1180 start = (unsigned short *)vc->vc_origin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 break;
Petr Písařf8df13e2011-04-15 10:08:08 +02001182 case 3: /* erase scroll-back buffer (and whole display) */
1183 scr_memsetw(vc->vc_screenbuf, vc->vc_video_erase_char,
Jiri Slaby42acfc62016-10-03 11:00:17 +02001184 vc->vc_screenbuf_size);
Petr Písařf8df13e2011-04-15 10:08:08 +02001185 set_origin(vc);
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02001186 if (con_is_visible(vc))
Petr Písař0930b092014-02-06 21:01:23 +01001187 update_screen(vc);
Petr Písařf8df13e2011-04-15 10:08:08 +02001188 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 case 2: /* erase whole display */
1190 count = vc->vc_cols * vc->vc_rows;
1191 start = (unsigned short *)vc->vc_origin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 break;
1193 default:
1194 return;
1195 }
1196 scr_memsetw(start, vc->vc_video_erase_char, 2 * count);
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02001197 if (con_should_update(vc))
Jean-François Moine81732c32012-09-06 19:24:13 +02001198 do_update_region(vc, (unsigned long) start, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 vc->vc_need_wrap = 0;
1200}
1201
1202static void csi_K(struct vc_data *vc, int vpar)
1203{
1204 unsigned int count;
1205 unsigned short * start;
1206
1207 switch (vpar) {
1208 case 0: /* erase from cursor to end of line */
1209 count = vc->vc_cols - vc->vc_x;
1210 start = (unsigned short *)vc->vc_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 break;
1212 case 1: /* erase from start of line to cursor */
1213 start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1));
1214 count = vc->vc_x + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 break;
1216 case 2: /* erase whole line */
1217 start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1));
1218 count = vc->vc_cols;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 break;
1220 default:
1221 return;
1222 }
1223 scr_memsetw(start, vc->vc_video_erase_char, 2 * count);
1224 vc->vc_need_wrap = 0;
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02001225 if (con_should_update(vc))
Jean-François Moine81732c32012-09-06 19:24:13 +02001226 do_update_region(vc, (unsigned long) start, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
1229static void csi_X(struct vc_data *vc, int vpar) /* erase the following vpar positions */
1230{ /* not vt100? */
1231 int count;
1232
1233 if (!vpar)
1234 vpar++;
1235 count = (vpar > vc->vc_cols - vc->vc_x) ? (vc->vc_cols - vc->vc_x) : vpar;
1236
1237 scr_memsetw((unsigned short *)vc->vc_pos, vc->vc_video_erase_char, 2 * count);
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02001238 if (con_should_update(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1, count);
1240 vc->vc_need_wrap = 0;
1241}
1242
1243static void default_attr(struct vc_data *vc)
1244{
1245 vc->vc_intensity = 1;
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -07001246 vc->vc_italic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 vc->vc_underline = 0;
1248 vc->vc_reverse = 0;
1249 vc->vc_blink = 0;
1250 vc->vc_color = vc->vc_def_color;
1251}
1252
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001253struct rgb { u8 r; u8 g; u8 b; };
1254
Jiri Slaby0f91e142016-06-23 13:34:32 +02001255static void rgb_from_256(int i, struct rgb *c)
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001256{
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001257 if (i < 8) { /* Standard colours. */
Jiri Slaby0f91e142016-06-23 13:34:32 +02001258 c->r = i&1 ? 0xaa : 0x00;
1259 c->g = i&2 ? 0xaa : 0x00;
1260 c->b = i&4 ? 0xaa : 0x00;
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001261 } else if (i < 16) {
Jiri Slaby0f91e142016-06-23 13:34:32 +02001262 c->r = i&1 ? 0xff : 0x55;
1263 c->g = i&2 ? 0xff : 0x55;
1264 c->b = i&4 ? 0xff : 0x55;
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001265 } else if (i < 232) { /* 6x6x6 colour cube. */
Jiri Slaby0f91e142016-06-23 13:34:32 +02001266 c->r = (i - 16) / 36 * 85 / 2;
1267 c->g = (i - 16) / 6 % 6 * 85 / 2;
1268 c->b = (i - 16) % 6 * 85 / 2;
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001269 } else /* Grayscale ramp. */
Jiri Slaby0f91e142016-06-23 13:34:32 +02001270 c->r = c->g = c->b = i * 10 - 2312;
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001271}
1272
Jiri Slaby0f91e142016-06-23 13:34:32 +02001273static void rgb_foreground(struct vc_data *vc, const struct rgb *c)
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001274{
Jiri Slaby193df022016-06-23 13:34:33 +02001275 u8 hue = 0, max = max3(c->r, c->g, c->b);
1276
1277 if (c->r > max / 2)
1278 hue |= 4;
1279 if (c->g > max / 2)
1280 hue |= 2;
1281 if (c->b > max / 2)
1282 hue |= 1;
1283
1284 if (hue == 7 && max <= 0x55) {
1285 hue = 0;
1286 vc->vc_intensity = 2;
1287 } else if (max > 0xaa)
1288 vc->vc_intensity = 2;
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001289 else
Jiri Slaby193df022016-06-23 13:34:33 +02001290 vc->vc_intensity = 1;
1291
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001292 vc->vc_color = (vc->vc_color & 0xf0) | hue;
1293}
1294
Jiri Slaby0f91e142016-06-23 13:34:32 +02001295static void rgb_background(struct vc_data *vc, const struct rgb *c)
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001296{
1297 /* For backgrounds, err on the dark side. */
1298 vc->vc_color = (vc->vc_color & 0x0f)
Jiri Slaby0f91e142016-06-23 13:34:32 +02001299 | (c->r&0x80) >> 1 | (c->g&0x80) >> 2 | (c->b&0x80) >> 3;
Adam Borowskicec5b2a92014-05-23 01:33:08 +02001300}
1301
Jiri Slabye05ab232016-06-23 13:34:31 +02001302/*
1303 * ITU T.416 Higher colour modes. They break the usual properties of SGR codes
1304 * and thus need to be detected and ignored by hand. Strictly speaking, that
1305 * standard also wants : rather than ; as separators, contrary to ECMA-48, but
1306 * no one produces such codes and almost no one accepts them.
1307 *
1308 * Subcommands 3 (CMY) and 4 (CMYK) are so insane there's no point in
1309 * supporting them.
1310 */
1311static int vc_t416_color(struct vc_data *vc, int i,
Jiri Slaby0f91e142016-06-23 13:34:32 +02001312 void(*set_color)(struct vc_data *vc, const struct rgb *c))
Jiri Slabye05ab232016-06-23 13:34:31 +02001313{
Jiri Slaby0f91e142016-06-23 13:34:32 +02001314 struct rgb c;
1315
Jiri Slabye05ab232016-06-23 13:34:31 +02001316 i++;
1317 if (i > vc->vc_npar)
1318 return i;
1319
Adam Borowski0bf1f4a2016-09-15 16:47:10 +02001320 if (vc->vc_par[i] == 5 && i + 1 <= vc->vc_npar) {
Adam Borowski3e7ec4a2016-09-15 16:47:11 +02001321 /* 256 colours */
Jiri Slabye05ab232016-06-23 13:34:31 +02001322 i++;
Jiri Slaby0f91e142016-06-23 13:34:32 +02001323 rgb_from_256(vc->vc_par[i], &c);
Adam Borowski669e0a52016-09-15 16:47:09 +02001324 } else if (vc->vc_par[i] == 2 && i + 3 <= vc->vc_npar) {
Adam Borowski3e7ec4a2016-09-15 16:47:11 +02001325 /* 24 bit */
Jiri Slaby0f91e142016-06-23 13:34:32 +02001326 c.r = vc->vc_par[i + 1];
1327 c.g = vc->vc_par[i + 2];
1328 c.b = vc->vc_par[i + 3];
Jiri Slabye05ab232016-06-23 13:34:31 +02001329 i += 3;
Jiri Slaby0f91e142016-06-23 13:34:32 +02001330 } else
1331 return i;
1332
1333 set_color(vc, &c);
Jiri Slabye05ab232016-06-23 13:34:31 +02001334
1335 return i;
1336}
1337
Torben Hohnac751ef2011-01-25 15:07:35 -08001338/* console_lock is held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339static void csi_m(struct vc_data *vc)
1340{
1341 int i;
1342
1343 for (i = 0; i <= vc->vc_npar; i++)
1344 switch (vc->vc_par[i]) {
Jiri Slabyaada0a32016-06-23 13:34:34 +02001345 case 0: /* all attributes off */
1346 default_attr(vc);
1347 break;
1348 case 1:
1349 vc->vc_intensity = 2;
1350 break;
1351 case 2:
1352 vc->vc_intensity = 0;
1353 break;
1354 case 3:
1355 vc->vc_italic = 1;
1356 break;
1357 case 4:
1358 vc->vc_underline = 1;
1359 break;
1360 case 5:
1361 vc->vc_blink = 1;
1362 break;
1363 case 7:
1364 vc->vc_reverse = 1;
1365 break;
1366 case 10: /* ANSI X3.64-1979 (SCO-ish?)
1367 * Select primary font, don't display control chars if
1368 * defined, don't set bit 8 on output.
1369 */
1370 vc->vc_translate = set_translate(vc->vc_charset == 0
1371 ? vc->vc_G0_charset
1372 : vc->vc_G1_charset, vc);
1373 vc->vc_disp_ctrl = 0;
1374 vc->vc_toggle_meta = 0;
1375 break;
1376 case 11: /* ANSI X3.64-1979 (SCO-ish?)
1377 * Select first alternate font, lets chars < 32 be
1378 * displayed as ROM chars.
1379 */
1380 vc->vc_translate = set_translate(IBMPC_MAP, vc);
1381 vc->vc_disp_ctrl = 1;
1382 vc->vc_toggle_meta = 0;
1383 break;
1384 case 12: /* ANSI X3.64-1979 (SCO-ish?)
1385 * Select second alternate font, toggle high bit
1386 * before displaying as ROM char.
1387 */
1388 vc->vc_translate = set_translate(IBMPC_MAP, vc);
1389 vc->vc_disp_ctrl = 1;
1390 vc->vc_toggle_meta = 1;
1391 break;
1392 case 21:
1393 case 22:
1394 vc->vc_intensity = 1;
1395 break;
1396 case 23:
1397 vc->vc_italic = 0;
1398 break;
1399 case 24:
1400 vc->vc_underline = 0;
1401 break;
1402 case 25:
1403 vc->vc_blink = 0;
1404 break;
1405 case 27:
1406 vc->vc_reverse = 0;
1407 break;
1408 case 38:
1409 i = vc_t416_color(vc, i, rgb_foreground);
1410 break;
1411 case 48:
1412 i = vc_t416_color(vc, i, rgb_background);
1413 break;
1414 case 39:
1415 vc->vc_color = (vc->vc_def_color & 0x0f) |
1416 (vc->vc_color & 0xf0);
1417 break;
1418 case 49:
1419 vc->vc_color = (vc->vc_def_color & 0xf0) |
1420 (vc->vc_color & 0x0f);
1421 break;
1422 default:
Adam Borowskifadb4242016-09-15 16:47:13 +02001423 if (vc->vc_par[i] >= 90 && vc->vc_par[i] <= 107) {
1424 if (vc->vc_par[i] < 100)
1425 vc->vc_intensity = 2;
Adam Borowskicc67dc22016-09-15 16:47:12 +02001426 vc->vc_par[i] -= 60;
1427 }
Jiri Slabyaada0a32016-06-23 13:34:34 +02001428 if (vc->vc_par[i] >= 30 && vc->vc_par[i] <= 37)
1429 vc->vc_color = color_table[vc->vc_par[i] - 30]
1430 | (vc->vc_color & 0xf0);
1431 else if (vc->vc_par[i] >= 40 && vc->vc_par[i] <= 47)
1432 vc->vc_color = (color_table[vc->vc_par[i] - 40] << 4)
1433 | (vc->vc_color & 0x0f);
1434 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436 update_attr(vc);
1437}
1438
Jiri Slaby6732c8b2013-01-03 15:53:07 +01001439static void respond_string(const char *p, struct tty_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
1441 while (*p) {
Jiri Slaby6732c8b2013-01-03 15:53:07 +01001442 tty_insert_flip_char(port, *p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 p++;
1444 }
Jiri Slaby6732c8b2013-01-03 15:53:07 +01001445 tty_schedule_flip(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
1448static void cursor_report(struct vc_data *vc, struct tty_struct *tty)
1449{
1450 char buf[40];
1451
1452 sprintf(buf, "\033[%d;%dR", vc->vc_y + (vc->vc_decom ? vc->vc_top + 1 : 1), vc->vc_x + 1);
Jiri Slaby6732c8b2013-01-03 15:53:07 +01001453 respond_string(buf, tty->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454}
1455
1456static inline void status_report(struct tty_struct *tty)
1457{
Jiri Slaby6732c8b2013-01-03 15:53:07 +01001458 respond_string("\033[0n", tty->port); /* Terminal ok */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
Jiri Slaby6732c8b2013-01-03 15:53:07 +01001461static inline void respond_ID(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Jiri Slaby6732c8b2013-01-03 15:53:07 +01001463 respond_string(VT102ID, tty->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
1466void mouse_report(struct tty_struct *tty, int butt, int mrx, int mry)
1467{
1468 char buf[8];
1469
1470 sprintf(buf, "\033[M%c%c%c", (char)(' ' + butt), (char)('!' + mrx),
1471 (char)('!' + mry));
Jiri Slaby6732c8b2013-01-03 15:53:07 +01001472 respond_string(buf, tty->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473}
1474
1475/* invoked via ioctl(TIOCLINUX) and through set_selection */
1476int mouse_reporting(void)
1477{
1478 return vc_cons[fg_console].d->vc_report_mouse;
1479}
1480
Torben Hohnac751ef2011-01-25 15:07:35 -08001481/* console_lock is held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482static void set_mode(struct vc_data *vc, int on_off)
1483{
1484 int i;
1485
1486 for (i = 0; i <= vc->vc_npar; i++)
1487 if (vc->vc_ques) {
1488 switch(vc->vc_par[i]) { /* DEC private modes set/reset */
1489 case 1: /* Cursor keys send ^[Ox/^[[x */
1490 if (on_off)
1491 set_kbd(vc, decckm);
1492 else
1493 clr_kbd(vc, decckm);
1494 break;
1495 case 3: /* 80/132 mode switch unimplemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496#if 0
1497 vc_resize(deccolm ? 132 : 80, vc->vc_rows);
1498 /* this alone does not suffice; some user mode
1499 utility has to change the hardware regs */
1500#endif
1501 break;
1502 case 5: /* Inverted screen on/off */
1503 if (vc->vc_decscnm != on_off) {
1504 vc->vc_decscnm = on_off;
1505 invert_screen(vc, 0, vc->vc_screenbuf_size, 0);
1506 update_attr(vc);
1507 }
1508 break;
1509 case 6: /* Origin relative/absolute */
1510 vc->vc_decom = on_off;
1511 gotoxay(vc, 0, 0);
1512 break;
1513 case 7: /* Autowrap on/off */
1514 vc->vc_decawm = on_off;
1515 break;
1516 case 8: /* Autorepeat on/off */
1517 if (on_off)
1518 set_kbd(vc, decarm);
1519 else
1520 clr_kbd(vc, decarm);
1521 break;
1522 case 9:
1523 vc->vc_report_mouse = on_off ? 1 : 0;
1524 break;
1525 case 25: /* Cursor on/off */
1526 vc->vc_deccm = on_off;
1527 break;
1528 case 1000:
1529 vc->vc_report_mouse = on_off ? 2 : 0;
1530 break;
1531 }
1532 } else {
1533 switch(vc->vc_par[i]) { /* ANSI modes set/reset */
1534 case 3: /* Monitor (display ctrls) */
1535 vc->vc_disp_ctrl = on_off;
1536 break;
1537 case 4: /* Insert Mode on/off */
1538 vc->vc_decim = on_off;
1539 break;
1540 case 20: /* Lf, Enter == CrLf/Lf */
1541 if (on_off)
1542 set_kbd(vc, lnm);
1543 else
1544 clr_kbd(vc, lnm);
1545 break;
1546 }
1547 }
1548}
1549
Torben Hohnac751ef2011-01-25 15:07:35 -08001550/* console_lock is held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551static void setterm_command(struct vc_data *vc)
1552{
1553 switch(vc->vc_par[0]) {
1554 case 1: /* set color for underline mode */
1555 if (vc->vc_can_do_color &&
1556 vc->vc_par[1] < 16) {
1557 vc->vc_ulcolor = color_table[vc->vc_par[1]];
1558 if (vc->vc_underline)
1559 update_attr(vc);
1560 }
1561 break;
1562 case 2: /* set color for half intensity mode */
1563 if (vc->vc_can_do_color &&
1564 vc->vc_par[1] < 16) {
1565 vc->vc_halfcolor = color_table[vc->vc_par[1]];
1566 if (vc->vc_intensity == 0)
1567 update_attr(vc);
1568 }
1569 break;
1570 case 8: /* store colors as defaults */
1571 vc->vc_def_color = vc->vc_attr;
1572 if (vc->vc_hi_font_mask == 0x100)
1573 vc->vc_def_color >>= 1;
1574 default_attr(vc);
1575 update_attr(vc);
1576 break;
1577 case 9: /* set blanking interval */
Daniel Mackf324edc2009-06-16 15:33:52 -07001578 blankinterval = ((vc->vc_par[1] < 60) ? vc->vc_par[1] : 60) * 60;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 poke_blanked_console();
1580 break;
1581 case 10: /* set bell frequency in Hz */
1582 if (vc->vc_npar >= 1)
1583 vc->vc_bell_pitch = vc->vc_par[1];
1584 else
1585 vc->vc_bell_pitch = DEFAULT_BELL_PITCH;
1586 break;
1587 case 11: /* set bell duration in msec */
1588 if (vc->vc_npar >= 1)
1589 vc->vc_bell_duration = (vc->vc_par[1] < 2000) ?
Nicholas Mc Guire3372ec22015-02-09 10:54:10 -05001590 msecs_to_jiffies(vc->vc_par[1]) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 else
1592 vc->vc_bell_duration = DEFAULT_BELL_DURATION;
1593 break;
1594 case 12: /* bring specified console to the front */
1595 if (vc->vc_par[1] >= 1 && vc_cons_allocated(vc->vc_par[1] - 1))
1596 set_console(vc->vc_par[1] - 1);
1597 break;
1598 case 13: /* unblank the screen */
1599 poke_blanked_console();
1600 break;
1601 case 14: /* set vesa powerdown interval */
1602 vesa_off_interval = ((vc->vc_par[1] < 60) ? vc->vc_par[1] : 60) * 60 * HZ;
1603 break;
1604 case 15: /* activate the previous console */
1605 set_console(last_console);
1606 break;
Scot Doylebd633642015-03-26 13:54:39 +00001607 case 16: /* set cursor blink duration in msec */
1608 if (vc->vc_npar >= 1 && vc->vc_par[1] >= 50 &&
1609 vc->vc_par[1] <= USHRT_MAX)
1610 vc->vc_cur_blink_ms = vc->vc_par[1];
1611 else
1612 vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
1613 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
1615}
1616
Torben Hohnac751ef2011-01-25 15:07:35 -08001617/* console_lock is held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618static void csi_at(struct vc_data *vc, unsigned int nr)
1619{
1620 if (nr > vc->vc_cols - vc->vc_x)
1621 nr = vc->vc_cols - vc->vc_x;
1622 else if (!nr)
1623 nr = 1;
1624 insert_char(vc, nr);
1625}
1626
Torben Hohnac751ef2011-01-25 15:07:35 -08001627/* console_lock is held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628static void csi_L(struct vc_data *vc, unsigned int nr)
1629{
1630 if (nr > vc->vc_rows - vc->vc_y)
1631 nr = vc->vc_rows - vc->vc_y;
1632 else if (!nr)
1633 nr = 1;
1634 scrdown(vc, vc->vc_y, vc->vc_bottom, nr);
1635 vc->vc_need_wrap = 0;
1636}
1637
Torben Hohnac751ef2011-01-25 15:07:35 -08001638/* console_lock is held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639static void csi_P(struct vc_data *vc, unsigned int nr)
1640{
1641 if (nr > vc->vc_cols - vc->vc_x)
1642 nr = vc->vc_cols - vc->vc_x;
1643 else if (!nr)
1644 nr = 1;
1645 delete_char(vc, nr);
1646}
1647
Torben Hohnac751ef2011-01-25 15:07:35 -08001648/* console_lock is held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649static void csi_M(struct vc_data *vc, unsigned int nr)
1650{
1651 if (nr > vc->vc_rows - vc->vc_y)
1652 nr = vc->vc_rows - vc->vc_y;
1653 else if (!nr)
1654 nr=1;
1655 scrup(vc, vc->vc_y, vc->vc_bottom, nr);
1656 vc->vc_need_wrap = 0;
1657}
1658
Torben Hohnac751ef2011-01-25 15:07:35 -08001659/* console_lock is held (except via vc_init->reset_terminal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660static void save_cur(struct vc_data *vc)
1661{
1662 vc->vc_saved_x = vc->vc_x;
1663 vc->vc_saved_y = vc->vc_y;
1664 vc->vc_s_intensity = vc->vc_intensity;
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -07001665 vc->vc_s_italic = vc->vc_italic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 vc->vc_s_underline = vc->vc_underline;
1667 vc->vc_s_blink = vc->vc_blink;
1668 vc->vc_s_reverse = vc->vc_reverse;
1669 vc->vc_s_charset = vc->vc_charset;
1670 vc->vc_s_color = vc->vc_color;
1671 vc->vc_saved_G0 = vc->vc_G0_charset;
1672 vc->vc_saved_G1 = vc->vc_G1_charset;
1673}
1674
Torben Hohnac751ef2011-01-25 15:07:35 -08001675/* console_lock is held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676static void restore_cur(struct vc_data *vc)
1677{
1678 gotoxy(vc, vc->vc_saved_x, vc->vc_saved_y);
1679 vc->vc_intensity = vc->vc_s_intensity;
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -07001680 vc->vc_italic = vc->vc_s_italic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 vc->vc_underline = vc->vc_s_underline;
1682 vc->vc_blink = vc->vc_s_blink;
1683 vc->vc_reverse = vc->vc_s_reverse;
1684 vc->vc_charset = vc->vc_s_charset;
1685 vc->vc_color = vc->vc_s_color;
1686 vc->vc_G0_charset = vc->vc_saved_G0;
1687 vc->vc_G1_charset = vc->vc_saved_G1;
1688 vc->vc_translate = set_translate(vc->vc_charset ? vc->vc_G1_charset : vc->vc_G0_charset, vc);
1689 update_attr(vc);
1690 vc->vc_need_wrap = 0;
1691}
1692
Adam Borowskib290af62014-02-19 01:40:16 +01001693enum { ESnormal, ESesc, ESsquare, ESgetpars, ESfunckey,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 EShash, ESsetG0, ESsetG1, ESpercent, ESignore, ESnonstd,
Adam Borowski63f3a162014-02-19 01:38:04 +01001695 ESpalette, ESosc };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Torben Hohnac751ef2011-01-25 15:07:35 -08001697/* console_lock is held (except via vc_init()) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698static void reset_terminal(struct vc_data *vc, int do_clear)
1699{
1700 vc->vc_top = 0;
1701 vc->vc_bottom = vc->vc_rows;
1702 vc->vc_state = ESnormal;
1703 vc->vc_ques = 0;
1704 vc->vc_translate = set_translate(LAT1_MAP, vc);
1705 vc->vc_G0_charset = LAT1_MAP;
1706 vc->vc_G1_charset = GRAF_MAP;
1707 vc->vc_charset = 0;
1708 vc->vc_need_wrap = 0;
1709 vc->vc_report_mouse = 0;
Antonino A. Daplas042f10e2007-05-08 00:38:09 -07001710 vc->vc_utf = default_utf8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 vc->vc_utf_count = 0;
1712
1713 vc->vc_disp_ctrl = 0;
1714 vc->vc_toggle_meta = 0;
1715
1716 vc->vc_decscnm = 0;
1717 vc->vc_decom = 0;
1718 vc->vc_decawm = 1;
Matthew Garrettf6c06b62009-11-13 15:14:11 -05001719 vc->vc_deccm = global_cursor_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 vc->vc_decim = 0;
1721
Alan Cox079c9532012-02-28 14:49:23 +00001722 vt_reset_keyboard(vc->vc_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Clemens Ladisch9ea9a882009-12-15 16:45:39 -08001724 vc->vc_cursor_type = cur_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 vc->vc_complement_mask = vc->vc_s_complement_mask;
1726
1727 default_attr(vc);
1728 update_attr(vc);
1729
1730 vc->vc_tab_stop[0] = 0x01010100;
1731 vc->vc_tab_stop[1] =
1732 vc->vc_tab_stop[2] =
1733 vc->vc_tab_stop[3] =
Wolfgang Kroworscha5647382008-11-06 12:53:16 -08001734 vc->vc_tab_stop[4] =
1735 vc->vc_tab_stop[5] =
1736 vc->vc_tab_stop[6] =
1737 vc->vc_tab_stop[7] = 0x01010101;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 vc->vc_bell_pitch = DEFAULT_BELL_PITCH;
1740 vc->vc_bell_duration = DEFAULT_BELL_DURATION;
Scot Doylebd633642015-03-26 13:54:39 +00001741 vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 gotoxy(vc, 0, 0);
1744 save_cur(vc);
1745 if (do_clear)
1746 csi_J(vc, 2);
1747}
1748
Torben Hohnac751ef2011-01-25 15:07:35 -08001749/* console_lock is held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750static void do_con_trol(struct tty_struct *tty, struct vc_data *vc, int c)
1751{
1752 /*
1753 * Control characters can be used in the _middle_
1754 * of an escape sequence.
1755 */
Adam Borowski63f3a162014-02-19 01:38:04 +01001756 if (vc->vc_state == ESosc && c>=8 && c<=13) /* ... except for OSC */
1757 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 switch (c) {
1759 case 0:
1760 return;
1761 case 7:
Adam Borowski63f3a162014-02-19 01:38:04 +01001762 if (vc->vc_state == ESosc)
1763 vc->vc_state = ESnormal;
1764 else if (vc->vc_bell_duration)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 kd_mksound(vc->vc_bell_pitch, vc->vc_bell_duration);
1766 return;
1767 case 8:
1768 bs(vc);
1769 return;
1770 case 9:
1771 vc->vc_pos -= (vc->vc_x << 1);
1772 while (vc->vc_x < vc->vc_cols - 1) {
1773 vc->vc_x++;
1774 if (vc->vc_tab_stop[vc->vc_x >> 5] & (1 << (vc->vc_x & 31)))
1775 break;
1776 }
1777 vc->vc_pos += (vc->vc_x << 1);
Samuel Thibaultb293d752007-10-18 23:39:17 -07001778 notify_write(vc, '\t');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return;
1780 case 10: case 11: case 12:
1781 lf(vc);
1782 if (!is_kbd(vc, lnm))
1783 return;
1784 case 13:
1785 cr(vc);
1786 return;
1787 case 14:
1788 vc->vc_charset = 1;
1789 vc->vc_translate = set_translate(vc->vc_G1_charset, vc);
1790 vc->vc_disp_ctrl = 1;
1791 return;
1792 case 15:
1793 vc->vc_charset = 0;
1794 vc->vc_translate = set_translate(vc->vc_G0_charset, vc);
1795 vc->vc_disp_ctrl = 0;
1796 return;
1797 case 24: case 26:
1798 vc->vc_state = ESnormal;
1799 return;
1800 case 27:
1801 vc->vc_state = ESesc;
1802 return;
1803 case 127:
1804 del(vc);
1805 return;
1806 case 128+27:
1807 vc->vc_state = ESsquare;
1808 return;
1809 }
1810 switch(vc->vc_state) {
1811 case ESesc:
1812 vc->vc_state = ESnormal;
1813 switch (c) {
1814 case '[':
1815 vc->vc_state = ESsquare;
1816 return;
1817 case ']':
1818 vc->vc_state = ESnonstd;
1819 return;
1820 case '%':
1821 vc->vc_state = ESpercent;
1822 return;
1823 case 'E':
1824 cr(vc);
1825 lf(vc);
1826 return;
1827 case 'M':
1828 ri(vc);
1829 return;
1830 case 'D':
1831 lf(vc);
1832 return;
1833 case 'H':
1834 vc->vc_tab_stop[vc->vc_x >> 5] |= (1 << (vc->vc_x & 31));
1835 return;
1836 case 'Z':
1837 respond_ID(tty);
1838 return;
1839 case '7':
1840 save_cur(vc);
1841 return;
1842 case '8':
1843 restore_cur(vc);
1844 return;
1845 case '(':
1846 vc->vc_state = ESsetG0;
1847 return;
1848 case ')':
1849 vc->vc_state = ESsetG1;
1850 return;
1851 case '#':
1852 vc->vc_state = EShash;
1853 return;
1854 case 'c':
1855 reset_terminal(vc, 1);
1856 return;
1857 case '>': /* Numeric keypad */
1858 clr_kbd(vc, kbdapplic);
1859 return;
1860 case '=': /* Appl. keypad */
1861 set_kbd(vc, kbdapplic);
1862 return;
1863 }
1864 return;
1865 case ESnonstd:
1866 if (c=='P') { /* palette escape sequence */
1867 for (vc->vc_npar = 0; vc->vc_npar < NPAR; vc->vc_npar++)
1868 vc->vc_par[vc->vc_npar] = 0;
1869 vc->vc_npar = 0;
1870 vc->vc_state = ESpalette;
1871 return;
1872 } else if (c=='R') { /* reset palette */
1873 reset_palette(vc);
1874 vc->vc_state = ESnormal;
Adam Borowski63f3a162014-02-19 01:38:04 +01001875 } else if (c>='0' && c<='9')
1876 vc->vc_state = ESosc;
1877 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 vc->vc_state = ESnormal;
1879 return;
1880 case ESpalette:
Andy Shevchenko74c807c2010-06-15 17:24:16 +03001881 if (isxdigit(c)) {
1882 vc->vc_par[vc->vc_npar++] = hex_to_bin(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 if (vc->vc_npar == 7) {
1884 int i = vc->vc_par[0] * 3, j = 1;
1885 vc->vc_palette[i] = 16 * vc->vc_par[j++];
1886 vc->vc_palette[i++] += vc->vc_par[j++];
1887 vc->vc_palette[i] = 16 * vc->vc_par[j++];
1888 vc->vc_palette[i++] += vc->vc_par[j++];
1889 vc->vc_palette[i] = 16 * vc->vc_par[j++];
1890 vc->vc_palette[i] += vc->vc_par[j];
1891 set_palette(vc);
1892 vc->vc_state = ESnormal;
1893 }
1894 } else
1895 vc->vc_state = ESnormal;
1896 return;
1897 case ESsquare:
1898 for (vc->vc_npar = 0; vc->vc_npar < NPAR; vc->vc_npar++)
1899 vc->vc_par[vc->vc_npar] = 0;
1900 vc->vc_npar = 0;
1901 vc->vc_state = ESgetpars;
1902 if (c == '[') { /* Function key */
1903 vc->vc_state=ESfunckey;
1904 return;
1905 }
1906 vc->vc_ques = (c == '?');
1907 if (vc->vc_ques)
1908 return;
1909 case ESgetpars:
1910 if (c == ';' && vc->vc_npar < NPAR - 1) {
1911 vc->vc_npar++;
1912 return;
1913 } else if (c>='0' && c<='9') {
1914 vc->vc_par[vc->vc_npar] *= 10;
1915 vc->vc_par[vc->vc_npar] += c - '0';
1916 return;
Adam Borowskib290af62014-02-19 01:40:16 +01001917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 vc->vc_state = ESnormal;
1919 switch(c) {
1920 case 'h':
1921 set_mode(vc, 1);
1922 return;
1923 case 'l':
1924 set_mode(vc, 0);
1925 return;
1926 case 'c':
1927 if (vc->vc_ques) {
1928 if (vc->vc_par[0])
1929 vc->vc_cursor_type = vc->vc_par[0] | (vc->vc_par[1] << 8) | (vc->vc_par[2] << 16);
1930 else
Clemens Ladisch9ea9a882009-12-15 16:45:39 -08001931 vc->vc_cursor_type = cur_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return;
1933 }
1934 break;
1935 case 'm':
1936 if (vc->vc_ques) {
1937 clear_selection();
1938 if (vc->vc_par[0])
1939 vc->vc_complement_mask = vc->vc_par[0] << 8 | vc->vc_par[1];
1940 else
1941 vc->vc_complement_mask = vc->vc_s_complement_mask;
1942 return;
1943 }
1944 break;
1945 case 'n':
1946 if (!vc->vc_ques) {
1947 if (vc->vc_par[0] == 5)
1948 status_report(tty);
1949 else if (vc->vc_par[0] == 6)
1950 cursor_report(vc, tty);
1951 }
1952 return;
1953 }
1954 if (vc->vc_ques) {
1955 vc->vc_ques = 0;
1956 return;
1957 }
1958 switch(c) {
1959 case 'G': case '`':
1960 if (vc->vc_par[0])
1961 vc->vc_par[0]--;
1962 gotoxy(vc, vc->vc_par[0], vc->vc_y);
1963 return;
1964 case 'A':
1965 if (!vc->vc_par[0])
1966 vc->vc_par[0]++;
1967 gotoxy(vc, vc->vc_x, vc->vc_y - vc->vc_par[0]);
1968 return;
1969 case 'B': case 'e':
1970 if (!vc->vc_par[0])
1971 vc->vc_par[0]++;
1972 gotoxy(vc, vc->vc_x, vc->vc_y + vc->vc_par[0]);
1973 return;
1974 case 'C': case 'a':
1975 if (!vc->vc_par[0])
1976 vc->vc_par[0]++;
1977 gotoxy(vc, vc->vc_x + vc->vc_par[0], vc->vc_y);
1978 return;
1979 case 'D':
1980 if (!vc->vc_par[0])
1981 vc->vc_par[0]++;
1982 gotoxy(vc, vc->vc_x - vc->vc_par[0], vc->vc_y);
1983 return;
1984 case 'E':
1985 if (!vc->vc_par[0])
1986 vc->vc_par[0]++;
1987 gotoxy(vc, 0, vc->vc_y + vc->vc_par[0]);
1988 return;
1989 case 'F':
1990 if (!vc->vc_par[0])
1991 vc->vc_par[0]++;
1992 gotoxy(vc, 0, vc->vc_y - vc->vc_par[0]);
1993 return;
1994 case 'd':
1995 if (vc->vc_par[0])
1996 vc->vc_par[0]--;
1997 gotoxay(vc, vc->vc_x ,vc->vc_par[0]);
1998 return;
1999 case 'H': case 'f':
2000 if (vc->vc_par[0])
2001 vc->vc_par[0]--;
2002 if (vc->vc_par[1])
2003 vc->vc_par[1]--;
2004 gotoxay(vc, vc->vc_par[1], vc->vc_par[0]);
2005 return;
2006 case 'J':
2007 csi_J(vc, vc->vc_par[0]);
2008 return;
2009 case 'K':
2010 csi_K(vc, vc->vc_par[0]);
2011 return;
2012 case 'L':
2013 csi_L(vc, vc->vc_par[0]);
2014 return;
2015 case 'M':
2016 csi_M(vc, vc->vc_par[0]);
2017 return;
2018 case 'P':
2019 csi_P(vc, vc->vc_par[0]);
2020 return;
2021 case 'c':
2022 if (!vc->vc_par[0])
2023 respond_ID(tty);
2024 return;
2025 case 'g':
2026 if (!vc->vc_par[0])
2027 vc->vc_tab_stop[vc->vc_x >> 5] &= ~(1 << (vc->vc_x & 31));
2028 else if (vc->vc_par[0] == 3) {
2029 vc->vc_tab_stop[0] =
2030 vc->vc_tab_stop[1] =
2031 vc->vc_tab_stop[2] =
2032 vc->vc_tab_stop[3] =
Wolfgang Kroworscha5647382008-11-06 12:53:16 -08002033 vc->vc_tab_stop[4] =
2034 vc->vc_tab_stop[5] =
2035 vc->vc_tab_stop[6] =
2036 vc->vc_tab_stop[7] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
2038 return;
2039 case 'm':
2040 csi_m(vc);
2041 return;
2042 case 'q': /* DECLL - but only 3 leds */
2043 /* map 0,1,2,3 to 0,1,2,4 */
2044 if (vc->vc_par[0] < 4)
Alan Cox079c9532012-02-28 14:49:23 +00002045 vt_set_led_state(vc->vc_num,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 (vc->vc_par[0] < 3) ? vc->vc_par[0] : 4);
2047 return;
2048 case 'r':
2049 if (!vc->vc_par[0])
2050 vc->vc_par[0]++;
2051 if (!vc->vc_par[1])
2052 vc->vc_par[1] = vc->vc_rows;
2053 /* Minimum allowed region is 2 lines */
2054 if (vc->vc_par[0] < vc->vc_par[1] &&
2055 vc->vc_par[1] <= vc->vc_rows) {
2056 vc->vc_top = vc->vc_par[0] - 1;
2057 vc->vc_bottom = vc->vc_par[1];
2058 gotoxay(vc, 0, 0);
2059 }
2060 return;
2061 case 's':
2062 save_cur(vc);
2063 return;
2064 case 'u':
2065 restore_cur(vc);
2066 return;
2067 case 'X':
2068 csi_X(vc, vc->vc_par[0]);
2069 return;
2070 case '@':
2071 csi_at(vc, vc->vc_par[0]);
2072 return;
2073 case ']': /* setterm functions */
2074 setterm_command(vc);
2075 return;
2076 }
2077 return;
2078 case ESpercent:
2079 vc->vc_state = ESnormal;
2080 switch (c) {
2081 case '@': /* defined in ISO 2022 */
2082 vc->vc_utf = 0;
2083 return;
2084 case 'G': /* prelim official escape code */
2085 case '8': /* retained for compatibility */
2086 vc->vc_utf = 1;
2087 return;
2088 }
2089 return;
2090 case ESfunckey:
2091 vc->vc_state = ESnormal;
2092 return;
2093 case EShash:
2094 vc->vc_state = ESnormal;
2095 if (c == '8') {
2096 /* DEC screen alignment test. kludge :-) */
2097 vc->vc_video_erase_char =
2098 (vc->vc_video_erase_char & 0xff00) | 'E';
2099 csi_J(vc, 2);
2100 vc->vc_video_erase_char =
2101 (vc->vc_video_erase_char & 0xff00) | ' ';
2102 do_update_region(vc, vc->vc_origin, vc->vc_screenbuf_size / 2);
2103 }
2104 return;
2105 case ESsetG0:
2106 if (c == '0')
2107 vc->vc_G0_charset = GRAF_MAP;
2108 else if (c == 'B')
2109 vc->vc_G0_charset = LAT1_MAP;
2110 else if (c == 'U')
2111 vc->vc_G0_charset = IBMPC_MAP;
2112 else if (c == 'K')
2113 vc->vc_G0_charset = USER_MAP;
2114 if (vc->vc_charset == 0)
2115 vc->vc_translate = set_translate(vc->vc_G0_charset, vc);
2116 vc->vc_state = ESnormal;
2117 return;
2118 case ESsetG1:
2119 if (c == '0')
2120 vc->vc_G1_charset = GRAF_MAP;
2121 else if (c == 'B')
2122 vc->vc_G1_charset = LAT1_MAP;
2123 else if (c == 'U')
2124 vc->vc_G1_charset = IBMPC_MAP;
2125 else if (c == 'K')
2126 vc->vc_G1_charset = USER_MAP;
2127 if (vc->vc_charset == 1)
2128 vc->vc_translate = set_translate(vc->vc_G1_charset, vc);
2129 vc->vc_state = ESnormal;
2130 return;
Adam Borowski63f3a162014-02-19 01:38:04 +01002131 case ESosc:
2132 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 default:
2134 vc->vc_state = ESnormal;
2135 }
2136}
2137
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002138/* is_double_width() is based on the wcwidth() implementation by
Egmont Koblinger1ed8a2b2007-06-23 17:16:27 -07002139 * Markus Kuhn -- 2007-05-26 (Unicode 5.0)
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002140 * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
2141 */
2142struct interval {
2143 uint32_t first;
2144 uint32_t last;
2145};
2146
2147static int bisearch(uint32_t ucs, const struct interval *table, int max)
2148{
2149 int min = 0;
2150 int mid;
2151
2152 if (ucs < table[0].first || ucs > table[max].last)
2153 return 0;
2154 while (max >= min) {
2155 mid = (min + max) / 2;
2156 if (ucs > table[mid].last)
2157 min = mid + 1;
2158 else if (ucs < table[mid].first)
2159 max = mid - 1;
2160 else
2161 return 1;
2162 }
2163 return 0;
2164}
2165
2166static int is_double_width(uint32_t ucs)
2167{
2168 static const struct interval double_width[] = {
2169 { 0x1100, 0x115F }, { 0x2329, 0x232A }, { 0x2E80, 0x303E },
2170 { 0x3040, 0xA4CF }, { 0xAC00, 0xD7A3 }, { 0xF900, 0xFAFF },
Egmont Koblinger1ed8a2b2007-06-23 17:16:27 -07002171 { 0xFE10, 0xFE19 }, { 0xFE30, 0xFE6F }, { 0xFF00, 0xFF60 },
2172 { 0xFFE0, 0xFFE6 }, { 0x20000, 0x2FFFD }, { 0x30000, 0x3FFFD }
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002173 };
Jiri Slaby0f115412007-07-17 04:05:21 -07002174 return bisearch(ucs, double_width, ARRAY_SIZE(double_width) - 1);
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002175}
2176
Jiri Slabyd711ea82016-06-23 13:34:30 +02002177static void con_flush(struct vc_data *vc, unsigned long draw_from,
2178 unsigned long draw_to, int *draw_x)
2179{
2180 if (*draw_x < 0)
2181 return;
2182
2183 vc->vc_sw->con_putcs(vc, (u16 *)draw_from,
2184 (u16 *)draw_to - (u16 *)draw_from, vc->vc_y, *draw_x);
2185 *draw_x = -1;
2186}
2187
Torben Hohnac751ef2011-01-25 15:07:35 -08002188/* acquires console_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189static int do_con_write(struct tty_struct *tty, const unsigned char *buf, int count)
2190{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 int c, tc, ok, n = 0, draw_x = -1;
2192 unsigned int currcons;
2193 unsigned long draw_from = 0, draw_to = 0;
2194 struct vc_data *vc;
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002195 unsigned char vc_attr;
Karl Dahlke0341a4d2008-04-28 02:14:25 -07002196 struct vt_notifier_param param;
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002197 uint8_t rescan;
2198 uint8_t inverse;
2199 uint8_t width;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 u16 himask, charmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 if (in_interrupt())
2203 return count;
2204
2205 might_sleep();
2206
Torben Hohnac751ef2011-01-25 15:07:35 -08002207 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 vc = tty->driver_data;
2209 if (vc == NULL) {
2210 printk(KERN_ERR "vt: argh, driver_data is NULL !\n");
Torben Hohnac751ef2011-01-25 15:07:35 -08002211 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 return 0;
2213 }
2214
2215 currcons = vc->vc_num;
2216 if (!vc_cons_allocated(currcons)) {
Mandeep Singh Baines1ffdda92011-02-06 09:31:53 -08002217 /* could this happen? */
2218 pr_warn_once("con_write: tty %d not allocated\n", currcons+1);
2219 console_unlock();
2220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 himask = vc->vc_hi_font_mask;
2224 charmask = himask ? 0x1ff : 0xff;
2225
2226 /* undraw cursor first */
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02002227 if (con_is_fg(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 hide_cursor(vc);
2229
Karl Dahlke0341a4d2008-04-28 02:14:25 -07002230 param.vc = vc;
2231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 while (!tty->stopped && count) {
2233 int orig = *buf;
2234 c = orig;
2235 buf++;
2236 n++;
2237 count--;
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002238 rescan = 0;
2239 inverse = 0;
2240 width = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 /* Do no translation at all in control states */
2243 if (vc->vc_state != ESnormal) {
2244 tc = c;
Adam Tlalkad4328b42006-09-29 01:59:53 -07002245 } else if (vc->vc_utf && !vc->vc_disp_ctrl) {
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002246 /* Combine UTF-8 into Unicode in vc_utf_char.
2247 * vc_utf_count is the number of continuation bytes still
2248 * expected to arrive.
2249 * vc_npar is the number of continuation bytes arrived so
2250 * far
2251 */
Adam Tlalkad4328b42006-09-29 01:59:53 -07002252rescan_last_byte:
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002253 if ((c & 0xc0) == 0x80) {
2254 /* Continuation byte received */
2255 static const uint32_t utf8_length_changes[] = { 0x0000007f, 0x000007ff, 0x0000ffff, 0x001fffff, 0x03ffffff, 0x7fffffff };
Adam Tlalkad4328b42006-09-29 01:59:53 -07002256 if (vc->vc_utf_count) {
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002257 vc->vc_utf_char = (vc->vc_utf_char << 6) | (c & 0x3f);
2258 vc->vc_npar++;
2259 if (--vc->vc_utf_count) {
2260 /* Still need some bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 continue;
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002262 }
2263 /* Got a whole character */
2264 c = vc->vc_utf_char;
2265 /* Reject overlong sequences */
2266 if (c <= utf8_length_changes[vc->vc_npar - 1] ||
2267 c > utf8_length_changes[vc->vc_npar])
2268 c = 0xfffd;
2269 } else {
2270 /* Unexpected continuation byte */
2271 vc->vc_utf_count = 0;
2272 c = 0xfffd;
2273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 } else {
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002275 /* Single ASCII byte or first byte of a sequence received */
2276 if (vc->vc_utf_count) {
2277 /* Continuation byte expected */
2278 rescan = 1;
2279 vc->vc_utf_count = 0;
2280 c = 0xfffd;
2281 } else if (c > 0x7f) {
2282 /* First byte of a multibyte sequence received */
2283 vc->vc_npar = 0;
2284 if ((c & 0xe0) == 0xc0) {
2285 vc->vc_utf_count = 1;
2286 vc->vc_utf_char = (c & 0x1f);
2287 } else if ((c & 0xf0) == 0xe0) {
2288 vc->vc_utf_count = 2;
2289 vc->vc_utf_char = (c & 0x0f);
2290 } else if ((c & 0xf8) == 0xf0) {
2291 vc->vc_utf_count = 3;
2292 vc->vc_utf_char = (c & 0x07);
2293 } else if ((c & 0xfc) == 0xf8) {
2294 vc->vc_utf_count = 4;
2295 vc->vc_utf_char = (c & 0x03);
2296 } else if ((c & 0xfe) == 0xfc) {
2297 vc->vc_utf_count = 5;
2298 vc->vc_utf_char = (c & 0x01);
2299 } else {
2300 /* 254 and 255 are invalid */
2301 c = 0xfffd;
2302 }
2303 if (vc->vc_utf_count) {
2304 /* Still need some bytes */
2305 continue;
2306 }
2307 }
2308 /* Nothing to do if an ASCII byte was received */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002310 /* End of UTF-8 decoding. */
2311 /* c is the received character, or U+FFFD for invalid sequences. */
2312 /* Replace invalid Unicode code points with U+FFFD too */
2313 if ((c >= 0xd800 && c <= 0xdfff) || c == 0xfffe || c == 0xffff)
2314 c = 0xfffd;
2315 tc = c;
Adam Tlalkad4328b42006-09-29 01:59:53 -07002316 } else { /* no utf or alternate charset mode */
David Woodhousea29ccf6f82008-06-03 14:59:40 +01002317 tc = vc_translate(vc, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 }
2319
Karl Dahlke0341a4d2008-04-28 02:14:25 -07002320 param.c = tc;
2321 if (atomic_notifier_call_chain(&vt_notifier_list, VT_PREWRITE,
2322 &param) == NOTIFY_STOP)
2323 continue;
2324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 /* If the original code was a control character we
2326 * only allow a glyph to be displayed if the code is
2327 * not normally used (such as for cursor movement) or
2328 * if the disp_ctrl mode has been explicitly enabled.
2329 * Certain characters (as given by the CTRL_ALWAYS
2330 * bitmap) are always displayed as control characters,
2331 * as the console would be pretty useless without
2332 * them; to display an arbitrary font position use the
2333 * direct-to-font zone in UTF-8 mode.
2334 */
2335 ok = tc && (c >= 32 ||
Adam Tlalkad4328b42006-09-29 01:59:53 -07002336 !(vc->vc_disp_ctrl ? (CTRL_ALWAYS >> c) & 1 :
2337 vc->vc_utf || ((CTRL_ACTION >> c) & 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 && (c != 127 || vc->vc_disp_ctrl)
2339 && (c != 128+27);
2340
2341 if (vc->vc_state == ESnormal && ok) {
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002342 if (vc->vc_utf && !vc->vc_disp_ctrl) {
2343 if (is_double_width(c))
2344 width = 2;
2345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 /* Now try to find out how to display it */
2347 tc = conv_uni_to_pc(vc, tc);
Adam Tlalkad4328b42006-09-29 01:59:53 -07002348 if (tc & ~charmask) {
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002349 if (tc == -1 || tc == -2) {
2350 continue; /* nothing to display */
2351 }
2352 /* Glyph not found */
Samuel Thibaultc0b79882009-04-18 22:17:17 +02002353 if ((!(vc->vc_utf && !vc->vc_disp_ctrl) || c < 128) && !(c & ~charmask)) {
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002354 /* In legacy mode use the glyph we get by a 1:1 mapping.
Egmont Koblinger1ed8a2b2007-06-23 17:16:27 -07002355 This would make absolutely no sense with Unicode in mind,
2356 but do this for ASCII characters since a font may lack
2357 Unicode mapping info and we don't want to end up with
2358 having question marks only. */
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002359 tc = c;
2360 } else {
2361 /* Display U+FFFD. If it's not found, display an inverse question mark. */
2362 tc = conv_uni_to_pc(vc, 0xfffd);
2363 if (tc < 0) {
2364 inverse = 1;
2365 tc = conv_uni_to_pc(vc, '?');
2366 if (tc < 0) tc = '?';
2367 }
2368 }
Adam Tlalkad4328b42006-09-29 01:59:53 -07002369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002371 if (!inverse) {
2372 vc_attr = vc->vc_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 } else {
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002374 /* invert vc_attr */
2375 if (!vc->vc_can_do_color) {
2376 vc_attr = (vc->vc_attr) ^ 0x08;
2377 } else if (vc->vc_hi_font_mask == 0x100) {
2378 vc_attr = ((vc->vc_attr) & 0x11) | (((vc->vc_attr) & 0xe0) >> 4) | (((vc->vc_attr) & 0x0e) << 4);
2379 } else {
2380 vc_attr = ((vc->vc_attr) & 0x88) | (((vc->vc_attr) & 0x70) >> 4) | (((vc->vc_attr) & 0x07) << 4);
Adam Tlalkad4328b42006-09-29 01:59:53 -07002381 }
Jiri Slabyd711ea82016-06-23 13:34:30 +02002382 con_flush(vc, draw_from, draw_to, &draw_x);
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002383 }
2384
2385 while (1) {
2386 if (vc->vc_need_wrap || vc->vc_decim)
Jiri Slabyd711ea82016-06-23 13:34:30 +02002387 con_flush(vc, draw_from, draw_to,
2388 &draw_x);
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002389 if (vc->vc_need_wrap) {
2390 cr(vc);
2391 lf(vc);
2392 }
2393 if (vc->vc_decim)
2394 insert_char(vc, 1);
2395 scr_writew(himask ?
2396 ((vc_attr << 8) & ~himask) + ((tc & 0x100) ? himask : 0) + (tc & 0xff) :
2397 (vc_attr << 8) + tc,
2398 (u16 *) vc->vc_pos);
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02002399 if (con_should_update(vc) && draw_x < 0) {
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002400 draw_x = vc->vc_x;
2401 draw_from = vc->vc_pos;
2402 }
2403 if (vc->vc_x == vc->vc_cols - 1) {
2404 vc->vc_need_wrap = vc->vc_decawm;
2405 draw_to = vc->vc_pos + 2;
2406 } else {
2407 vc->vc_x++;
2408 draw_to = (vc->vc_pos += 2);
2409 }
2410
2411 if (!--width) break;
2412
2413 tc = conv_uni_to_pc(vc, ' '); /* A space is printed in the second column */
2414 if (tc < 0) tc = ' ';
2415 }
Samuel Thibaultb293d752007-10-18 23:39:17 -07002416 notify_write(vc, c);
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002417
Jiri Slabyd711ea82016-06-23 13:34:30 +02002418 if (inverse)
2419 con_flush(vc, draw_from, draw_to, &draw_x);
Egmont Koblinger1ed8a2b2007-06-23 17:16:27 -07002420
Egmont Koblinger2f1a2cc2007-05-08 00:30:37 -07002421 if (rescan) {
2422 rescan = 0;
2423 inverse = 0;
2424 width = 1;
Adam Tlalkad4328b42006-09-29 01:59:53 -07002425 c = orig;
2426 goto rescan_last_byte;
2427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 continue;
2429 }
Jiri Slabyd711ea82016-06-23 13:34:30 +02002430 con_flush(vc, draw_from, draw_to, &draw_x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 do_con_trol(tty, vc, orig);
2432 }
Jiri Slabyd711ea82016-06-23 13:34:30 +02002433 con_flush(vc, draw_from, draw_to, &draw_x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 console_conditional_schedule();
Torben Hohnac751ef2011-01-25 15:07:35 -08002435 console_unlock();
Samuel Thibaultb293d752007-10-18 23:39:17 -07002436 notify_update(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438}
2439
2440/*
2441 * This is the console switching callback.
2442 *
2443 * Doing console switching in a process context allows
2444 * us to do the switches asynchronously (needed when we want
2445 * to switch due to a keyboard interrupt). Synchronization
2446 * with other console code and prevention of re-entrancy is
Torben Hohnac751ef2011-01-25 15:07:35 -08002447 * ensured with console_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 */
David Howells65f27f32006-11-22 14:55:48 +00002449static void console_callback(struct work_struct *ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Torben Hohnac751ef2011-01-25 15:07:35 -08002451 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 if (want_console >= 0) {
2454 if (want_console != fg_console &&
2455 vc_cons_allocated(want_console)) {
2456 hide_cursor(vc_cons[fg_console].d);
2457 change_console(vc_cons[want_console].d);
2458 /* we only changed when the console had already
2459 been allocated - a new console is not created
2460 in an interrupt routine */
2461 }
2462 want_console = -1;
2463 }
2464 if (do_poke_blanked_console) { /* do not unblank for a LED change */
2465 do_poke_blanked_console = 0;
2466 poke_blanked_console();
2467 }
2468 if (scrollback_delta) {
2469 struct vc_data *vc = vc_cons[fg_console].d;
2470 clear_selection();
Jiri Slaby97293de2016-06-23 13:34:26 +02002471 if (vc->vc_mode == KD_TEXT && vc->vc_sw->con_scrolldelta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 vc->vc_sw->con_scrolldelta(vc, scrollback_delta);
2473 scrollback_delta = 0;
2474 }
2475 if (blank_timer_expired) {
2476 do_blank_screen(0);
2477 blank_timer_expired = 0;
2478 }
Samuel Thibaultb293d752007-10-18 23:39:17 -07002479 notify_update(vc_cons[fg_console].d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Torben Hohnac751ef2011-01-25 15:07:35 -08002481 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482}
2483
Andrew Johnsonb257bc02007-03-16 13:38:24 -08002484int set_console(int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485{
Andrew Johnsonb257bc02007-03-16 13:38:24 -08002486 struct vc_data *vc = vc_cons[fg_console].d;
2487
2488 if (!vc_cons_allocated(nr) || vt_dont_switch ||
2489 (vc->vt_mode.mode == VT_AUTO && vc->vc_mode == KD_GRAPHICS)) {
2490
2491 /*
2492 * Console switch will fail in console_callback() or
2493 * change_console() so there is no point scheduling
2494 * the callback
2495 *
2496 * Existing set_console() users don't check the return
2497 * value so this shouldn't break anything
2498 */
2499 return -EINVAL;
2500 }
2501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 want_console = nr;
2503 schedule_console_callback();
Andrew Johnsonb257bc02007-03-16 13:38:24 -08002504
2505 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
2507
2508struct tty_driver *console_driver;
2509
2510#ifdef CONFIG_VT_CONSOLE
2511
Bernhard Walle5ada9182009-12-14 18:00:43 -08002512/**
2513 * vt_kmsg_redirect() - Sets/gets the kernel message console
2514 * @new: The new virtual terminal number or -1 if the console should stay
2515 * unchanged
2516 *
2517 * By default, the kernel messages are always printed on the current virtual
2518 * console. However, the user may modify that default with the
2519 * TIOCL_SETKMSGREDIRECT ioctl call.
2520 *
2521 * This function sets the kernel message console to be @new. It returns the old
2522 * virtual console number. The virtual terminal number 0 (both as parameter and
2523 * return value) means no redirection (i.e. always printed on the currently
2524 * active console).
2525 *
2526 * The parameter -1 means that only the current console is returned, but the
2527 * value is not modified. You may use the macro vt_get_kmsg_redirect() in that
2528 * case to make the code more understandable.
2529 *
2530 * When the kernel is compiled without CONFIG_VT_CONSOLE, this function ignores
2531 * the parameter and always returns 0.
2532 */
2533int vt_kmsg_redirect(int new)
2534{
2535 static int kmsg_con;
2536
2537 if (new != -1)
2538 return xchg(&kmsg_con, new);
2539 else
2540 return kmsg_con;
2541}
2542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543/*
2544 * Console on virtual terminal
2545 *
2546 * The console must be locked when we get here.
2547 */
2548
2549static void vt_console_print(struct console *co, const char *b, unsigned count)
2550{
2551 struct vc_data *vc = vc_cons[fg_console].d;
2552 unsigned char c;
Nick Pigginb0940002008-02-06 01:37:04 -08002553 static DEFINE_SPINLOCK(printing_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 const ushort *start;
2555 ushort cnt = 0;
2556 ushort myx;
Bernhard Walle5ada9182009-12-14 18:00:43 -08002557 int kmsg_console;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559 /* console busy or not yet initialized */
Nick Pigginb0940002008-02-06 01:37:04 -08002560 if (!printable)
2561 return;
2562 if (!spin_trylock(&printing_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 return;
2564
Bernhard Walle5ada9182009-12-14 18:00:43 -08002565 kmsg_console = vt_get_kmsg_redirect();
2566 if (kmsg_console && vc_cons_allocated(kmsg_console - 1))
2567 vc = vc_cons[kmsg_console - 1].d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
2569 /* read `x' only after setting currcons properly (otherwise
2570 the `x' macro will read the x of the foreground console). */
2571 myx = vc->vc_x;
2572
2573 if (!vc_cons_allocated(fg_console)) {
2574 /* impossible */
2575 /* printk("vt_console_print: tty %d not allocated ??\n", currcons+1); */
2576 goto quit;
2577 }
2578
Jesse Barnes8fd4bd22010-06-23 12:56:12 -07002579 if (vc->vc_mode != KD_TEXT && !vt_force_oops_output(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 goto quit;
2581
2582 /* undraw cursor first */
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02002583 if (con_is_fg(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 hide_cursor(vc);
2585
2586 start = (ushort *)vc->vc_pos;
2587
2588 /* Contrived structure to try to emulate original need_wrap behaviour
2589 * Problems caused when we have need_wrap set on '\n' character */
2590 while (count--) {
2591 c = *b++;
2592 if (c == 10 || c == 13 || c == 8 || vc->vc_need_wrap) {
2593 if (cnt > 0) {
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02002594 if (con_is_visible(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x);
2596 vc->vc_x += cnt;
2597 if (vc->vc_need_wrap)
2598 vc->vc_x--;
2599 cnt = 0;
2600 }
2601 if (c == 8) { /* backspace */
2602 bs(vc);
2603 start = (ushort *)vc->vc_pos;
2604 myx = vc->vc_x;
2605 continue;
2606 }
2607 if (c != 13)
2608 lf(vc);
2609 cr(vc);
2610 start = (ushort *)vc->vc_pos;
2611 myx = vc->vc_x;
2612 if (c == 10 || c == 13)
2613 continue;
2614 }
2615 scr_writew((vc->vc_attr << 8) + c, (unsigned short *)vc->vc_pos);
Samuel Thibaultb293d752007-10-18 23:39:17 -07002616 notify_write(vc, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 cnt++;
2618 if (myx == vc->vc_cols - 1) {
2619 vc->vc_need_wrap = 1;
2620 continue;
2621 }
2622 vc->vc_pos += 2;
2623 myx++;
2624 }
2625 if (cnt > 0) {
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02002626 if (con_is_visible(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x);
2628 vc->vc_x += cnt;
2629 if (vc->vc_x == vc->vc_cols) {
2630 vc->vc_x--;
2631 vc->vc_need_wrap = 1;
2632 }
2633 }
2634 set_cursor(vc);
Samuel Thibaultb293d752007-10-18 23:39:17 -07002635 notify_update(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637quit:
Nick Pigginb0940002008-02-06 01:37:04 -08002638 spin_unlock(&printing_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639}
2640
2641static struct tty_driver *vt_console_device(struct console *c, int *index)
2642{
2643 *index = c->index ? c->index-1 : fg_console;
2644 return console_driver;
2645}
2646
2647static struct console vt_console_driver = {
2648 .name = "tty",
2649 .write = vt_console_print,
2650 .device = vt_console_device,
2651 .unblank = unblank_screen,
2652 .flags = CON_PRINTBUFFER,
2653 .index = -1,
2654};
2655#endif
2656
2657/*
2658 * Handling of Linux-specific VC ioctls
2659 */
2660
2661/*
Torben Hohnac751ef2011-01-25 15:07:35 -08002662 * Generally a bit racy with respect to console_lock();.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 *
2664 * There are some functions which don't need it.
2665 *
2666 * There are some functions which can sleep for arbitrary periods
2667 * (paste_selection) but we don't need the lock there anyway.
2668 *
2669 * set_selection has locking, and definitely needs it
2670 */
2671
2672int tioclinux(struct tty_struct *tty, unsigned long arg)
2673{
2674 char type, data;
2675 char __user *p = (char __user *)arg;
2676 int lines;
2677 int ret;
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 if (current->signal->tty != tty && !capable(CAP_SYS_ADMIN))
2680 return -EPERM;
2681 if (get_user(type, p))
2682 return -EFAULT;
2683 ret = 0;
Alan Cox04f378b2008-04-30 00:53:29 -07002684
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 switch (type)
2686 {
2687 case TIOCL_SETSEL:
Torben Hohnac751ef2011-01-25 15:07:35 -08002688 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 ret = set_selection((struct tiocl_selection __user *)(p+1), tty);
Torben Hohnac751ef2011-01-25 15:07:35 -08002690 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 break;
2692 case TIOCL_PASTESEL:
2693 ret = paste_selection(tty);
2694 break;
2695 case TIOCL_UNBLANKSCREEN:
Torben Hohnac751ef2011-01-25 15:07:35 -08002696 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 unblank_screen();
Torben Hohnac751ef2011-01-25 15:07:35 -08002698 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 break;
2700 case TIOCL_SELLOADLUT:
Alan Cox52894752012-03-02 15:00:02 +00002701 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 ret = sel_loadlut(p);
Alan Cox52894752012-03-02 15:00:02 +00002703 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 break;
2705 case TIOCL_GETSHIFTSTATE:
Alan Cox04f378b2008-04-30 00:53:29 -07002706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /*
2708 * Make it possible to react to Shift+Mousebutton.
2709 * Note that 'shift_state' is an undocumented
2710 * kernel-internal variable; programs not closely
2711 * related to the kernel should not use this.
2712 */
Alan Cox079c9532012-02-28 14:49:23 +00002713 data = vt_get_shift_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 ret = __put_user(data, p);
2715 break;
2716 case TIOCL_GETMOUSEREPORTING:
Alan Cox20f62572012-03-02 14:59:37 +00002717 console_lock(); /* May be overkill */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 data = mouse_reporting();
Alan Cox20f62572012-03-02 14:59:37 +00002719 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 ret = __put_user(data, p);
2721 break;
2722 case TIOCL_SETVESABLANK:
Alan Cox20f62572012-03-02 14:59:37 +00002723 console_lock();
Yoichi Yuasa403aac92006-12-06 20:38:38 -08002724 ret = set_vesa_blanking(p);
Alan Cox20f62572012-03-02 14:59:37 +00002725 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 break;
Rafael J. Wysocki0ca07732006-03-31 02:30:58 -08002727 case TIOCL_GETKMSGREDIRECT:
Bernhard Walle5ada9182009-12-14 18:00:43 -08002728 data = vt_get_kmsg_redirect();
Rafael J. Wysocki0ca07732006-03-31 02:30:58 -08002729 ret = __put_user(data, p);
2730 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 case TIOCL_SETKMSGREDIRECT:
2732 if (!capable(CAP_SYS_ADMIN)) {
2733 ret = -EPERM;
2734 } else {
2735 if (get_user(data, p+1))
2736 ret = -EFAULT;
2737 else
Bernhard Walle5ada9182009-12-14 18:00:43 -08002738 vt_kmsg_redirect(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 }
2740 break;
2741 case TIOCL_GETFGCONSOLE:
Alan Cox20f62572012-03-02 14:59:37 +00002742 /* No locking needed as this is a transiently
2743 correct return anyway if the caller hasn't
2744 disabled switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 ret = fg_console;
2746 break;
2747 case TIOCL_SCROLLCONSOLE:
2748 if (get_user(lines, (s32 __user *)(p+4))) {
2749 ret = -EFAULT;
2750 } else {
Alan Cox20f62572012-03-02 14:59:37 +00002751 /* Need the console lock here. Note that lots
2752 of other calls need fixing before the lock
2753 is actually useful ! */
2754 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 scrollfront(vc_cons[fg_console].d, lines);
Alan Cox20f62572012-03-02 14:59:37 +00002756 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 ret = 0;
2758 }
2759 break;
2760 case TIOCL_BLANKSCREEN: /* until explicitly unblanked, not only poked */
Torben Hohnac751ef2011-01-25 15:07:35 -08002761 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 ignore_poke = 1;
2763 do_blank_screen(0);
Torben Hohnac751ef2011-01-25 15:07:35 -08002764 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 break;
2766 case TIOCL_BLANKEDSCREEN:
2767 ret = console_blanked;
2768 break;
2769 default:
2770 ret = -EINVAL;
2771 break;
2772 }
2773 return ret;
2774}
2775
2776/*
2777 * /dev/ttyN handling
2778 */
2779
2780static int con_write(struct tty_struct *tty, const unsigned char *buf, int count)
2781{
2782 int retval;
2783
2784 retval = do_con_write(tty, buf, count);
2785 con_flush_chars(tty);
2786
2787 return retval;
2788}
2789
Alan Cox5d19f542008-04-30 00:54:08 -07002790static int con_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791{
2792 if (in_interrupt())
Alan Cox5d19f542008-04-30 00:54:08 -07002793 return 0; /* n_r3964 calls put_char() from interrupt context */
2794 return do_con_write(tty, &ch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}
2796
2797static int con_write_room(struct tty_struct *tty)
2798{
2799 if (tty->stopped)
2800 return 0;
Joe Petersona88a69c2009-01-02 13:40:53 +00002801 return 32768; /* No limit, really; we're not buffering */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
2803
2804static int con_chars_in_buffer(struct tty_struct *tty)
2805{
2806 return 0; /* we're not buffering */
2807}
2808
2809/*
2810 * con_throttle and con_unthrottle are only used for
2811 * paste_selection(), which has to stuff in a large number of
2812 * characters...
2813 */
2814static void con_throttle(struct tty_struct *tty)
2815{
2816}
2817
2818static void con_unthrottle(struct tty_struct *tty)
2819{
2820 struct vc_data *vc = tty->driver_data;
2821
2822 wake_up_interruptible(&vc->paste_wait);
2823}
2824
2825/*
2826 * Turn the Scroll-Lock LED on when the tty is stopped
2827 */
2828static void con_stop(struct tty_struct *tty)
2829{
2830 int console_num;
2831 if (!tty)
2832 return;
2833 console_num = tty->index;
2834 if (!vc_cons_allocated(console_num))
2835 return;
Alan Cox079c9532012-02-28 14:49:23 +00002836 vt_kbd_con_stop(console_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838
2839/*
2840 * Turn the Scroll-Lock LED off when the console is started
2841 */
2842static void con_start(struct tty_struct *tty)
2843{
2844 int console_num;
2845 if (!tty)
2846 return;
2847 console_num = tty->index;
2848 if (!vc_cons_allocated(console_num))
2849 return;
Alan Cox079c9532012-02-28 14:49:23 +00002850 vt_kbd_con_start(console_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851}
2852
2853static void con_flush_chars(struct tty_struct *tty)
2854{
2855 struct vc_data *vc;
2856
2857 if (in_interrupt()) /* from flush_to_ldisc */
2858 return;
2859
2860 /* if we race with con_close(), vt may be null */
Torben Hohnac751ef2011-01-25 15:07:35 -08002861 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 vc = tty->driver_data;
2863 if (vc)
2864 set_cursor(vc);
Torben Hohnac751ef2011-01-25 15:07:35 -08002865 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866}
2867
2868/*
2869 * Allocate the console screen memory.
2870 */
Jiri Slabybc1e99d2012-06-04 13:35:33 +02002871static int con_install(struct tty_driver *driver, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
2873 unsigned int currcons = tty->index;
Jiri Slabybc1e99d2012-06-04 13:35:33 +02002874 struct vc_data *vc;
2875 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Torben Hohnac751ef2011-01-25 15:07:35 -08002877 console_lock();
Jiri Slabybc1e99d2012-06-04 13:35:33 +02002878 ret = vc_allocate(currcons);
2879 if (ret)
2880 goto unlock;
Alan Coxfeebed62008-10-13 10:41:30 +01002881
Jiri Slabybc1e99d2012-06-04 13:35:33 +02002882 vc = vc_cons[currcons].d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Jiri Slabybc1e99d2012-06-04 13:35:33 +02002884 /* Still being freed */
2885 if (vc->port.tty) {
2886 ret = -ERESTARTSYS;
2887 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 }
Jiri Slabybc1e99d2012-06-04 13:35:33 +02002889
2890 ret = tty_port_install(&vc->port, driver, tty);
2891 if (ret)
2892 goto unlock;
2893
2894 tty->driver_data = vc;
2895 vc->port.tty = tty;
2896
2897 if (!tty->winsize.ws_row && !tty->winsize.ws_col) {
2898 tty->winsize.ws_row = vc_cons[currcons].d->vc_rows;
2899 tty->winsize.ws_col = vc_cons[currcons].d->vc_cols;
2900 }
2901 if (vc->vc_utf)
Alan Coxadc8d742012-07-14 15:31:47 +01002902 tty->termios.c_iflag |= IUTF8;
Jiri Slabybc1e99d2012-06-04 13:35:33 +02002903 else
Alan Coxadc8d742012-07-14 15:31:47 +01002904 tty->termios.c_iflag &= ~IUTF8;
Jiri Slabybc1e99d2012-06-04 13:35:33 +02002905unlock:
Torben Hohnac751ef2011-01-25 15:07:35 -08002906 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return ret;
2908}
2909
Jiri Slabybc1e99d2012-06-04 13:35:33 +02002910static int con_open(struct tty_struct *tty, struct file *filp)
2911{
2912 /* everything done in install */
2913 return 0;
2914}
2915
2916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917static void con_close(struct tty_struct *tty, struct file *filp)
2918{
Alan Coxfeebed62008-10-13 10:41:30 +01002919 /* Nothing to do - we defer to shutdown */
2920}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Alan Coxfeebed62008-10-13 10:41:30 +01002922static void con_shutdown(struct tty_struct *tty)
2923{
2924 struct vc_data *vc = tty->driver_data;
2925 BUG_ON(vc == NULL);
Torben Hohnac751ef2011-01-25 15:07:35 -08002926 console_lock();
Alan Cox8ce73262010-06-01 22:52:56 +02002927 vc->port.tty = NULL;
Torben Hohnac751ef2011-01-25 15:07:35 -08002928 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929}
2930
Clemens Ladisch3855ae12013-08-04 13:09:50 +02002931static int default_color = 7; /* white */
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -07002932static int default_italic_color = 2; // green (ASCII)
2933static int default_underline_color = 3; // cyan (ASCII)
Clemens Ladisch3855ae12013-08-04 13:09:50 +02002934module_param_named(color, default_color, int, S_IRUGO | S_IWUSR);
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -07002935module_param_named(italic, default_italic_color, int, S_IRUGO | S_IWUSR);
2936module_param_named(underline, default_underline_color, int, S_IRUGO | S_IWUSR);
2937
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938static void vc_init(struct vc_data *vc, unsigned int rows,
2939 unsigned int cols, int do_clear)
2940{
2941 int j, k ;
2942
2943 vc->vc_cols = cols;
2944 vc->vc_rows = rows;
2945 vc->vc_size_row = cols << 1;
2946 vc->vc_screenbuf_size = vc->vc_rows * vc->vc_size_row;
2947
2948 set_origin(vc);
2949 vc->vc_pos = vc->vc_origin;
2950 reset_vc(vc);
2951 for (j=k=0; j<16; j++) {
2952 vc->vc_palette[k++] = default_red[j] ;
2953 vc->vc_palette[k++] = default_grn[j] ;
2954 vc->vc_palette[k++] = default_blu[j] ;
2955 }
Clemens Ladisch3855ae12013-08-04 13:09:50 +02002956 vc->vc_def_color = default_color;
Jan Engelhardtfa6ce9a2007-05-08 00:38:04 -07002957 vc->vc_ulcolor = default_underline_color;
2958 vc->vc_itcolor = default_italic_color;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 vc->vc_halfcolor = 0x08; /* grey */
2960 init_waitqueue_head(&vc->paste_wait);
2961 reset_terminal(vc, do_clear);
2962}
2963
2964/*
2965 * This routine initializes console interrupts, and does nothing
2966 * else. If you want the screen to clear, call tty_write with
2967 * the appropriate escape-sequence.
2968 */
2969
2970static int __init con_init(void)
2971{
2972 const char *display_desc = NULL;
2973 struct vc_data *vc;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07002974 unsigned int currcons = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Torben Hohnac751ef2011-01-25 15:07:35 -08002976 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978 if (conswitchp)
2979 display_desc = conswitchp->con_startup();
2980 if (!display_desc) {
2981 fg_console = 0;
Torben Hohnac751ef2011-01-25 15:07:35 -08002982 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 return 0;
2984 }
2985
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07002986 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
2987 struct con_driver *con_driver = &registered_con_driver[i];
2988
2989 if (con_driver->con == NULL) {
2990 con_driver->con = conswitchp;
2991 con_driver->desc = display_desc;
2992 con_driver->flag = CON_DRIVER_FLAG_INIT;
2993 con_driver->first = 0;
2994 con_driver->last = MAX_NR_CONSOLES - 1;
2995 break;
2996 }
2997 }
2998
2999 for (i = 0; i < MAX_NR_CONSOLES; i++)
3000 con_driver_map[i] = conswitchp;
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (blankinterval) {
3003 blank_state = blank_normal_wait;
Daniel Mackf324edc2009-06-16 15:33:52 -07003004 mod_timer(&console_timer, jiffies + (blankinterval * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 }
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 for (currcons = 0; currcons < MIN_NR_CONSOLES; currcons++) {
Pekka Enberga5f4f522009-06-10 23:53:37 +03003008 vc_cons[currcons].d = vc = kzalloc(sizeof(struct vc_data), GFP_NOWAIT);
Eric W. Biederman7f1f86a2007-02-13 14:38:58 -07003009 INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK);
Alan Coxff917ba2010-06-01 22:52:55 +02003010 tty_port_init(&vc->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 visual_init(vc, currcons, 1);
Pekka Enberga5f4f522009-06-10 23:53:37 +03003012 vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 vc_init(vc, vc->vc_rows, vc->vc_cols,
3014 currcons || !vc->vc_sw->con_save_screen);
3015 }
3016 currcons = fg_console = 0;
3017 master_display_fg = vc = vc_cons[currcons].d;
3018 set_origin(vc);
3019 save_screen(vc);
3020 gotoxy(vc, vc->vc_x, vc->vc_y);
3021 csi_J(vc, 0);
3022 update_screen(vc);
Kay Sievers5da527a2012-04-03 03:18:23 +02003023 pr_info("Console: %s %s %dx%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 vc->vc_can_do_color ? "colour" : "mono",
3025 display_desc, vc->vc_cols, vc->vc_rows);
3026 printable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Torben Hohnac751ef2011-01-25 15:07:35 -08003028 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
3030#ifdef CONFIG_VT_CONSOLE
3031 register_console(&vt_console_driver);
3032#endif
3033 return 0;
3034}
3035console_initcall(con_init);
3036
Jeff Dikeb68e31d2006-10-02 02:17:18 -07003037static const struct tty_operations con_ops = {
Jiri Slabybc1e99d2012-06-04 13:35:33 +02003038 .install = con_install,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 .open = con_open,
3040 .close = con_close,
3041 .write = con_write,
3042 .write_room = con_write_room,
3043 .put_char = con_put_char,
3044 .flush_chars = con_flush_chars,
3045 .chars_in_buffer = con_chars_in_buffer,
3046 .ioctl = vt_ioctl,
Arnd Bergmanne9216652009-08-06 15:09:28 +02003047#ifdef CONFIG_COMPAT
3048 .compat_ioctl = vt_compat_ioctl,
3049#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 .stop = con_stop,
3051 .start = con_start,
3052 .throttle = con_throttle,
3053 .unthrottle = con_unthrottle,
Alan Cox8c9a9dd2008-08-15 10:39:38 +01003054 .resize = vt_resize,
Alan Coxfeebed62008-10-13 10:41:30 +01003055 .shutdown = con_shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056};
3057
Alan Coxd81ed102008-10-13 10:41:42 +01003058static struct cdev vc0_cdev;
3059
Kay Sieversfbc92a32010-12-01 18:51:05 +01003060static ssize_t show_tty_active(struct device *dev,
3061 struct device_attribute *attr, char *buf)
3062{
3063 return sprintf(buf, "tty%d\n", fg_console + 1);
3064}
3065static DEVICE_ATTR(active, S_IRUGO, show_tty_active, NULL);
3066
Takashi Iwai1083a7b2015-02-05 11:07:42 +01003067static struct attribute *vt_dev_attrs[] = {
3068 &dev_attr_active.attr,
3069 NULL
3070};
3071
3072ATTRIBUTE_GROUPS(vt_dev);
3073
Alan Coxd81ed102008-10-13 10:41:42 +01003074int __init vty_init(const struct file_operations *console_fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075{
Alan Coxd81ed102008-10-13 10:41:42 +01003076 cdev_init(&vc0_cdev, console_fops);
3077 if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) ||
3078 register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0)
3079 panic("Couldn't register /dev/tty0 driver\n");
Takashi Iwai1083a7b2015-02-05 11:07:42 +01003080 tty0dev = device_create_with_groups(tty_class, NULL,
3081 MKDEV(TTY_MAJOR, 0), NULL,
3082 vt_dev_groups, "tty0");
Kay Sieversfbc92a32010-12-01 18:51:05 +01003083 if (IS_ERR(tty0dev))
3084 tty0dev = NULL;
Alan Coxd81ed102008-10-13 10:41:42 +01003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 vcs_init();
3087
3088 console_driver = alloc_tty_driver(MAX_NR_CONSOLES);
3089 if (!console_driver)
3090 panic("Couldn't allocate console driver\n");
Jiri Slaby2f166692012-03-05 14:51:52 +01003091
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 console_driver->name = "tty";
3093 console_driver->name_base = 1;
3094 console_driver->major = TTY_MAJOR;
3095 console_driver->minor_start = 1;
3096 console_driver->type = TTY_DRIVER_TYPE_CONSOLE;
3097 console_driver->init_termios = tty_std_termios;
Samuel Thibaultc1236d32008-05-06 20:42:37 -07003098 if (default_utf8)
3099 console_driver->init_termios.c_iflag |= IUTF8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 console_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS;
3101 tty_set_operations(console_driver, &con_ops);
3102 if (tty_register_driver(console_driver))
3103 panic("Couldn't register console driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 kbd_init();
3105 console_map_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106#ifdef CONFIG_MDA_CONSOLE
3107 mda_console_init();
3108#endif
3109 return 0;
3110}
3111
3112#ifndef VT_SINGLE_DRIVER
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003113
3114static struct class *vtconsole_class;
3115
Alan Cox50e244c2013-01-25 10:28:15 +10003116static int do_bind_con_driver(const struct consw *csw, int first, int last,
Jesse Barnesb7269dd2007-07-17 04:05:34 -07003117 int deflt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118{
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003119 struct module *owner = csw->owner;
3120 const char *desc = NULL;
3121 struct con_driver *con_driver;
3122 int i, j = -1, k = -1, retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 if (!try_module_get(owner))
3125 return -ENODEV;
3126
Alan Cox50e244c2013-01-25 10:28:15 +10003127 WARN_CONSOLE_UNLOCKED();
Antonino A. Daplas1c8ce272006-06-26 00:27:03 -07003128
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003129 /* check if driver is registered */
3130 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
3131 con_driver = &registered_con_driver[i];
3132
3133 if (con_driver->con == csw) {
3134 desc = con_driver->desc;
3135 retval = 0;
3136 break;
3137 }
3138 }
3139
3140 if (retval)
3141 goto err;
3142
3143 if (!(con_driver->flag & CON_DRIVER_FLAG_INIT)) {
3144 csw->con_startup();
3145 con_driver->flag |= CON_DRIVER_FLAG_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 }
Antonino A. Daplas1c8ce272006-06-26 00:27:03 -07003147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 if (deflt) {
3149 if (conswitchp)
3150 module_put(conswitchp->owner);
Antonino A. Daplas1c8ce272006-06-26 00:27:03 -07003151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 __module_get(owner);
3153 conswitchp = csw;
3154 }
3155
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003156 first = max(first, con_driver->first);
3157 last = min(last, con_driver->last);
3158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 for (i = first; i <= last; i++) {
3160 int old_was_color;
3161 struct vc_data *vc = vc_cons[i].d;
3162
3163 if (con_driver_map[i])
3164 module_put(con_driver_map[i]->owner);
3165 __module_get(owner);
3166 con_driver_map[i] = csw;
3167
3168 if (!vc || !vc->vc_sw)
3169 continue;
3170
3171 j = i;
Antonino A. Daplas1c8ce272006-06-26 00:27:03 -07003172
Jiri Slaby6ca8dfd2016-06-23 13:34:35 +02003173 if (con_is_visible(vc)) {
David Hollister4ee1acc2006-06-26 00:26:41 -07003174 k = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 save_screen(vc);
David Hollister4ee1acc2006-06-26 00:26:41 -07003176 }
3177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 old_was_color = vc->vc_can_do_color;
3179 vc->vc_sw->con_deinit(vc);
Francisco Jerez9fc2b2d2010-08-22 17:37:24 +02003180 vc->vc_origin = (unsigned long)vc->vc_screenbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 visual_init(vc, i, 0);
Antonino A. Daplas1c8ce272006-06-26 00:27:03 -07003182 set_origin(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 update_attr(vc);
3184
3185 /* If the console changed between mono <-> color, then
3186 * the attributes in the screenbuf will be wrong. The
3187 * following resets all attributes to something sane.
3188 */
3189 if (old_was_color != vc->vc_can_do_color)
3190 clear_buffer_attributes(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 }
David Hollister4ee1acc2006-06-26 00:26:41 -07003192
Mandeep Singh Baines1ffdda92011-02-06 09:31:53 -08003193 pr_info("Console: switching ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 if (!deflt)
Linus Torvalds4bcc5952016-10-08 20:32:40 -07003195 printk(KERN_CONT "consoles %d-%d ", first+1, last+1);
David Hollister4ee1acc2006-06-26 00:26:41 -07003196 if (j >= 0) {
3197 struct vc_data *vc = vc_cons[j].d;
3198
Linus Torvalds4bcc5952016-10-08 20:32:40 -07003199 printk(KERN_CONT "to %s %s %dx%d\n",
David Hollister4ee1acc2006-06-26 00:26:41 -07003200 vc->vc_can_do_color ? "colour" : "mono",
3201 desc, vc->vc_cols, vc->vc_rows);
3202
3203 if (k >= 0) {
3204 vc = vc_cons[k].d;
3205 update_screen(vc);
3206 }
3207 } else
Linus Torvalds4bcc5952016-10-08 20:32:40 -07003208 printk(KERN_CONT "to %s\n", desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003210 retval = 0;
3211err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 module_put(owner);
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003213 return retval;
3214};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
Alan Cox50e244c2013-01-25 10:28:15 +10003216
Antonino A. Daplas13ae6642006-06-26 00:27:12 -07003217#ifdef CONFIG_VT_HW_CONSOLE_BINDING
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003218/* unlocked version of unbind_con_driver() */
3219int do_unbind_con_driver(const struct consw *csw, int first, int last, int deflt)
3220{
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003221 struct module *owner = csw->owner;
3222 const struct consw *defcsw = NULL;
3223 struct con_driver *con_driver = NULL, *con_back = NULL;
3224 int i, retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003226 if (!try_module_get(owner))
3227 return -ENODEV;
3228
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003229 WARN_CONSOLE_UNLOCKED();
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003230
3231 /* check if driver is registered and if it is unbindable */
3232 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
3233 con_driver = &registered_con_driver[i];
3234
3235 if (con_driver->con == csw &&
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003236 con_driver->flag & CON_DRIVER_FLAG_MODULE) {
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003237 retval = 0;
3238 break;
3239 }
3240 }
3241
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003242 if (retval)
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003243 goto err;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003244
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003245 retval = -ENODEV;
3246
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003247 /* check if backup driver exists */
3248 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
3249 con_back = &registered_con_driver[i];
3250
Daniel Vetter249f7b32014-06-05 16:24:47 +02003251 if (con_back->con && con_back->con != csw) {
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003252 defcsw = con_back->con;
3253 retval = 0;
3254 break;
3255 }
3256 }
3257
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003258 if (retval)
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003259 goto err;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003260
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003261 if (!con_is_bound(csw))
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003262 goto err;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003263
3264 first = max(first, con_driver->first);
3265 last = min(last, con_driver->last);
3266
3267 for (i = first; i <= last; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 if (con_driver_map[i] == csw) {
3269 module_put(csw->owner);
3270 con_driver_map[i] = NULL;
3271 }
Antonino A. Daplas1c8ce272006-06-26 00:27:03 -07003272 }
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003273
3274 if (!con_is_bound(defcsw)) {
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003275 const struct consw *defconsw = conswitchp;
3276
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003277 defcsw->con_startup();
3278 con_back->flag |= CON_DRIVER_FLAG_INIT;
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003279 /*
3280 * vgacon may change the default driver to point
3281 * to dummycon, we restore it here...
3282 */
3283 conswitchp = defconsw;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003284 }
3285
3286 if (!con_is_bound(csw))
3287 con_driver->flag &= ~CON_DRIVER_FLAG_INIT;
3288
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003289 /* ignore return value, binding should not fail */
Alan Cox50e244c2013-01-25 10:28:15 +10003290 do_bind_con_driver(defcsw, first, last, deflt);
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003291err:
3292 module_put(owner);
3293 return retval;
3294
3295}
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003296EXPORT_SYMBOL_GPL(do_unbind_con_driver);
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003297
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003298static int vt_bind(struct con_driver *con)
3299{
3300 const struct consw *defcsw = NULL, *csw = NULL;
3301 int i, more = 1, first = -1, last = -1, deflt = 0;
3302
Daniel Vetter77232f72015-04-13 11:16:21 +02003303 if (!con->con || !(con->flag & CON_DRIVER_FLAG_MODULE))
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003304 goto err;
3305
3306 csw = con->con;
3307
3308 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
3309 struct con_driver *con = &registered_con_driver[i];
3310
3311 if (con->con && !(con->flag & CON_DRIVER_FLAG_MODULE)) {
3312 defcsw = con->con;
3313 break;
3314 }
3315 }
3316
3317 if (!defcsw)
3318 goto err;
3319
3320 while (more) {
3321 more = 0;
3322
3323 for (i = con->first; i <= con->last; i++) {
3324 if (con_driver_map[i] == defcsw) {
3325 if (first == -1)
3326 first = i;
3327 last = i;
3328 more = 1;
3329 } else if (first != -1)
3330 break;
3331 }
3332
3333 if (first == 0 && last == MAX_NR_CONSOLES -1)
3334 deflt = 1;
3335
Imre Deak4c215fe2014-12-16 00:16:00 +02003336 if (first != -1)
Wang YanQingc62a1e52013-05-09 02:14:21 +08003337 do_bind_con_driver(csw, first, last, deflt);
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003338
3339 first = -1;
3340 last = -1;
3341 deflt = 0;
3342 }
3343
3344err:
3345 return 0;
3346}
3347
3348static int vt_unbind(struct con_driver *con)
3349{
3350 const struct consw *csw = NULL;
3351 int i, more = 1, first = -1, last = -1, deflt = 0;
Daniel Vetterf418f2e2014-06-05 16:33:24 +02003352 int ret;
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003353
Daniel Vetter77232f72015-04-13 11:16:21 +02003354 if (!con->con || !(con->flag & CON_DRIVER_FLAG_MODULE))
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003355 goto err;
3356
3357 csw = con->con;
3358
3359 while (more) {
3360 more = 0;
3361
3362 for (i = con->first; i <= con->last; i++) {
3363 if (con_driver_map[i] == csw) {
3364 if (first == -1)
3365 first = i;
3366 last = i;
3367 more = 1;
3368 } else if (first != -1)
3369 break;
3370 }
3371
3372 if (first == 0 && last == MAX_NR_CONSOLES -1)
3373 deflt = 1;
3374
Wang YanQing618f2b92013-05-09 02:14:07 +08003375 if (first != -1) {
Daniel Vetterf418f2e2014-06-05 16:33:24 +02003376 ret = do_unbind_con_driver(csw, first, last, deflt);
Daniel Vetterf418f2e2014-06-05 16:33:24 +02003377 if (ret != 0)
3378 return ret;
Wang YanQing618f2b92013-05-09 02:14:07 +08003379 }
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003380
3381 first = -1;
3382 last = -1;
3383 deflt = 0;
3384 }
3385
3386err:
3387 return 0;
3388}
Antonino A. Daplas13ae6642006-06-26 00:27:12 -07003389#else
3390static inline int vt_bind(struct con_driver *con)
3391{
3392 return 0;
3393}
3394static inline int vt_unbind(struct con_driver *con)
3395{
3396 return 0;
3397}
3398#endif /* CONFIG_VT_HW_CONSOLE_BINDING */
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003399
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003400static ssize_t store_bind(struct device *dev, struct device_attribute *attr,
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003401 const char *buf, size_t count)
3402{
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003403 struct con_driver *con = dev_get_drvdata(dev);
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003404 int bind = simple_strtoul(buf, NULL, 0);
3405
Imre Deak4c215fe2014-12-16 00:16:00 +02003406 console_lock();
3407
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003408 if (bind)
3409 vt_bind(con);
3410 else
3411 vt_unbind(con);
3412
Imre Deak4c215fe2014-12-16 00:16:00 +02003413 console_unlock();
3414
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003415 return count;
3416}
3417
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003418static ssize_t show_bind(struct device *dev, struct device_attribute *attr,
3419 char *buf)
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003420{
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003421 struct con_driver *con = dev_get_drvdata(dev);
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003422 int bind = con_is_bound(con->con);
3423
3424 return snprintf(buf, PAGE_SIZE, "%i\n", bind);
3425}
3426
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003427static ssize_t show_name(struct device *dev, struct device_attribute *attr,
3428 char *buf)
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003429{
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003430 struct con_driver *con = dev_get_drvdata(dev);
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003431
3432 return snprintf(buf, PAGE_SIZE, "%s %s\n",
3433 (con->flag & CON_DRIVER_FLAG_MODULE) ? "(M)" : "(S)",
3434 con->desc);
3435
3436}
3437
Takashi Iwai1083a7b2015-02-05 11:07:42 +01003438static DEVICE_ATTR(bind, S_IRUGO|S_IWUSR, show_bind, store_bind);
3439static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
3440
3441static struct attribute *con_dev_attrs[] = {
3442 &dev_attr_bind.attr,
3443 &dev_attr_name.attr,
3444 NULL
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003445};
3446
Takashi Iwai1083a7b2015-02-05 11:07:42 +01003447ATTRIBUTE_GROUPS(con_dev);
3448
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003449static int vtconsole_init_device(struct con_driver *con)
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003450{
Antonino A. Daplas928e9642006-10-03 01:14:49 -07003451 con->flag |= CON_DRIVER_FLAG_ATTR;
Takashi Iwai1083a7b2015-02-05 11:07:42 +01003452 return 0;
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003453}
3454
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003455static void vtconsole_deinit_device(struct con_driver *con)
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003456{
Takashi Iwai1083a7b2015-02-05 11:07:42 +01003457 con->flag &= ~CON_DRIVER_FLAG_ATTR;
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003458}
3459
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003460/**
3461 * con_is_bound - checks if driver is bound to the console
3462 * @csw: console driver
3463 *
3464 * RETURNS: zero if unbound, nonzero if bound
3465 *
3466 * Drivers can call this and if zero, they should release
3467 * all resources allocated on con_startup()
3468 */
3469int con_is_bound(const struct consw *csw)
3470{
3471 int i, bound = 0;
3472
3473 for (i = 0; i < MAX_NR_CONSOLES; i++) {
3474 if (con_driver_map[i] == csw) {
3475 bound = 1;
3476 break;
3477 }
3478 }
3479
3480 return bound;
3481}
3482EXPORT_SYMBOL(con_is_bound);
3483
3484/**
Jesse Barnesb45cfba2010-08-05 09:22:30 -05003485 * con_debug_enter - prepare the console for the kernel debugger
3486 * @sw: console driver
3487 *
3488 * Called when the console is taken over by the kernel debugger, this
3489 * function needs to save the current console state, then put the console
3490 * into a state suitable for the kernel debugger.
3491 *
3492 * RETURNS:
3493 * Zero on success, nonzero if a failure occurred when trying to prepare
3494 * the console for the debugger.
3495 */
3496int con_debug_enter(struct vc_data *vc)
3497{
3498 int ret = 0;
3499
3500 saved_fg_console = fg_console;
3501 saved_last_console = last_console;
3502 saved_want_console = want_console;
3503 saved_vc_mode = vc->vc_mode;
Jason Wesselbeed5332010-08-16 15:58:31 -05003504 saved_console_blanked = console_blanked;
Jesse Barnesb45cfba2010-08-05 09:22:30 -05003505 vc->vc_mode = KD_TEXT;
3506 console_blanked = 0;
3507 if (vc->vc_sw->con_debug_enter)
3508 ret = vc->vc_sw->con_debug_enter(vc);
Jason Wessel81d44502010-08-05 09:22:30 -05003509#ifdef CONFIG_KGDB_KDB
3510 /* Set the initial LINES variable if it is not already set */
3511 if (vc->vc_rows < 999) {
3512 int linecount;
3513 char lns[4];
3514 const char *setargs[3] = {
3515 "set",
3516 "LINES",
3517 lns,
3518 };
3519 if (kdbgetintenv(setargs[0], &linecount)) {
3520 snprintf(lns, 4, "%i", vc->vc_rows);
3521 kdb_set(2, setargs);
3522 }
3523 }
Jason Wessel17b572e82012-08-26 22:37:03 -05003524 if (vc->vc_cols < 999) {
3525 int colcount;
3526 char cols[4];
3527 const char *setargs[3] = {
3528 "set",
3529 "COLUMNS",
3530 cols,
3531 };
3532 if (kdbgetintenv(setargs[0], &colcount)) {
3533 snprintf(cols, 4, "%i", vc->vc_cols);
3534 kdb_set(2, setargs);
3535 }
3536 }
Jason Wessel81d44502010-08-05 09:22:30 -05003537#endif /* CONFIG_KGDB_KDB */
Jesse Barnesb45cfba2010-08-05 09:22:30 -05003538 return ret;
3539}
3540EXPORT_SYMBOL_GPL(con_debug_enter);
3541
3542/**
3543 * con_debug_leave - restore console state
3544 * @sw: console driver
3545 *
3546 * Restore the console state to what it was before the kernel debugger
3547 * was invoked.
3548 *
3549 * RETURNS:
3550 * Zero on success, nonzero if a failure occurred when trying to restore
3551 * the console.
3552 */
3553int con_debug_leave(void)
3554{
3555 struct vc_data *vc;
3556 int ret = 0;
3557
3558 fg_console = saved_fg_console;
3559 last_console = saved_last_console;
3560 want_console = saved_want_console;
Jason Wesselbeed5332010-08-16 15:58:31 -05003561 console_blanked = saved_console_blanked;
Jesse Barnesb45cfba2010-08-05 09:22:30 -05003562 vc_cons[fg_console].d->vc_mode = saved_vc_mode;
3563
3564 vc = vc_cons[fg_console].d;
3565 if (vc->vc_sw->con_debug_leave)
3566 ret = vc->vc_sw->con_debug_leave(vc);
3567 return ret;
3568}
3569EXPORT_SYMBOL_GPL(con_debug_leave);
3570
Alan Cox50e244c2013-01-25 10:28:15 +10003571static int do_register_con_driver(const struct consw *csw, int first, int last)
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003572{
3573 struct module *owner = csw->owner;
3574 struct con_driver *con_driver;
3575 const char *desc;
Jiri Slaby96317e92016-05-03 17:05:55 +02003576 int i, retval;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003577
Alan Cox50e244c2013-01-25 10:28:15 +10003578 WARN_CONSOLE_UNLOCKED();
3579
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003580 if (!try_module_get(owner))
3581 return -ENODEV;
3582
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003583 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
3584 con_driver = &registered_con_driver[i];
3585
3586 /* already registered */
Jiri Slaby96317e92016-05-03 17:05:55 +02003587 if (con_driver->con == csw) {
Dave Airliec55c63c2011-01-07 09:57:41 +10003588 retval = -EBUSY;
Jiri Slaby96317e92016-05-03 17:05:55 +02003589 goto err;
3590 }
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003591 }
3592
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003593 desc = csw->con_startup();
Jiri Slaby6798df42016-05-03 17:05:54 +02003594 if (!desc) {
3595 retval = -ENODEV;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003596 goto err;
Jiri Slaby6798df42016-05-03 17:05:54 +02003597 }
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003598
3599 retval = -EINVAL;
3600
3601 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
3602 con_driver = &registered_con_driver[i];
3603
Imre Deakd364b5c2015-04-01 21:06:16 +03003604 if (con_driver->con == NULL &&
3605 !(con_driver->flag & CON_DRIVER_FLAG_ZOMBIE)) {
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003606 con_driver->con = csw;
3607 con_driver->desc = desc;
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003608 con_driver->node = i;
3609 con_driver->flag = CON_DRIVER_FLAG_MODULE |
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003610 CON_DRIVER_FLAG_INIT;
3611 con_driver->first = first;
3612 con_driver->last = last;
3613 retval = 0;
3614 break;
3615 }
3616 }
3617
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003618 if (retval)
3619 goto err;
3620
Takashi Iwai1083a7b2015-02-05 11:07:42 +01003621 con_driver->dev =
3622 device_create_with_groups(vtconsole_class, NULL,
3623 MKDEV(0, con_driver->node),
3624 con_driver, con_dev_groups,
3625 "vtcon%i", con_driver->node);
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003626 if (IS_ERR(con_driver->dev)) {
3627 printk(KERN_WARNING "Unable to create device for %s; "
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003628 "errno = %ld\n", con_driver->desc,
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003629 PTR_ERR(con_driver->dev));
3630 con_driver->dev = NULL;
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003631 } else {
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003632 vtconsole_init_device(con_driver);
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003633 }
Antonino A. Daplas928e9642006-10-03 01:14:49 -07003634
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003635err:
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003636 module_put(owner);
3637 return retval;
3638}
Alan Cox50e244c2013-01-25 10:28:15 +10003639
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003640
3641/**
Wang YanQing50539dd2013-05-09 02:14:44 +08003642 * do_unregister_con_driver - unregister console driver from console layer
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003643 * @csw: console driver
3644 *
3645 * DESCRIPTION: All drivers that registers to the console layer must
3646 * call this function upon exit, or if the console driver is in a state
3647 * where it won't be able to handle console services, such as the
3648 * framebuffer console without loaded framebuffer drivers.
3649 *
3650 * The driver must unbind first prior to unregistration.
3651 */
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003652int do_unregister_con_driver(const struct consw *csw)
3653{
Daniel Vetterd9c660e2014-06-05 16:29:56 +02003654 int i;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003655
3656 /* cannot unregister a bound driver */
3657 if (con_is_bound(csw))
Daniel Vetterd9c660e2014-06-05 16:29:56 +02003658 return -EBUSY;
3659
3660 if (csw == conswitchp)
3661 return -EINVAL;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003662
3663 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
3664 struct con_driver *con_driver = &registered_con_driver[i];
3665
Imre Deak2cf30f72014-12-16 00:15:59 +02003666 if (con_driver->con == csw) {
Imre Deakd364b5c2015-04-01 21:06:16 +03003667 /*
3668 * Defer the removal of the sysfs entries since that
3669 * will acquire the kernfs s_active lock and we can't
3670 * acquire this lock while holding the console lock:
3671 * the unbind sysfs entry imposes already the opposite
3672 * order. Reset con already here to prevent any later
3673 * lookup to succeed and mark this slot as zombie, so
3674 * it won't get reused until we complete the removal
3675 * in the deferred work.
3676 */
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003677 con_driver->con = NULL;
Imre Deakd364b5c2015-04-01 21:06:16 +03003678 con_driver->flag = CON_DRIVER_FLAG_ZOMBIE;
3679 schedule_work(&con_driver_unregister_work);
3680
Daniel Vetterd9c660e2014-06-05 16:29:56 +02003681 return 0;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003682 }
3683 }
Daniel Vetterd9c660e2014-06-05 16:29:56 +02003684
3685 return -ENODEV;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003686}
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003687EXPORT_SYMBOL_GPL(do_unregister_con_driver);
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003688
Imre Deakd364b5c2015-04-01 21:06:16 +03003689static void con_driver_unregister_callback(struct work_struct *ignored)
3690{
3691 int i;
3692
3693 console_lock();
3694
3695 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
3696 struct con_driver *con_driver = &registered_con_driver[i];
3697
3698 if (!(con_driver->flag & CON_DRIVER_FLAG_ZOMBIE))
3699 continue;
3700
3701 console_unlock();
3702
3703 vtconsole_deinit_device(con_driver);
3704 device_destroy(vtconsole_class, MKDEV(0, con_driver->node));
3705
3706 console_lock();
3707
3708 if (WARN_ON_ONCE(con_driver->con))
3709 con_driver->con = NULL;
3710 con_driver->desc = NULL;
3711 con_driver->dev = NULL;
3712 con_driver->node = 0;
3713 WARN_ON_ONCE(con_driver->flag != CON_DRIVER_FLAG_ZOMBIE);
3714 con_driver->flag = 0;
3715 con_driver->first = 0;
3716 con_driver->last = 0;
3717 }
3718
3719 console_unlock();
3720}
3721
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003722/*
3723 * If we support more console drivers, this function is used
3724 * when a driver wants to take over some existing consoles
3725 * and become default driver for newly opened ones.
3726 *
Wang YanQing155957f2013-05-21 13:15:12 +08003727 * do_take_over_console is basically a register followed by unbind
Alan Cox50e244c2013-01-25 10:28:15 +10003728 */
3729int do_take_over_console(const struct consw *csw, int first, int last, int deflt)
3730{
3731 int err;
3732
3733 err = do_register_con_driver(csw, first, last);
3734 /*
3735 * If we get an busy error we still want to bind the console driver
3736 * and return success, as we may have unbound the console driver
3737 * but not unregistered it.
3738 */
3739 if (err == -EBUSY)
3740 err = 0;
3741 if (!err)
3742 do_bind_con_driver(csw, first, last, deflt);
3743
3744 return err;
3745}
3746EXPORT_SYMBOL_GPL(do_take_over_console);
3747
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003748
3749/*
3750 * give_up_console is a wrapper to unregister_con_driver. It will only
3751 * work if driver is fully unbound.
3752 */
3753void give_up_console(const struct consw *csw)
3754{
Wang YanQing70125e72013-05-09 02:14:39 +08003755 console_lock();
3756 do_unregister_con_driver(csw);
3757 console_unlock();
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003758}
3759
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003760static int __init vtconsole_class_init(void)
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003761{
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003762 int i;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003763
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003764 vtconsole_class = class_create(THIS_MODULE, "vtconsole");
3765 if (IS_ERR(vtconsole_class)) {
3766 printk(KERN_WARNING "Unable to create vt console class; "
3767 "errno = %ld\n", PTR_ERR(vtconsole_class));
3768 vtconsole_class = NULL;
3769 }
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003770
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003771 /* Add system drivers to sysfs */
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003772 for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
3773 struct con_driver *con = &registered_con_driver[i];
3774
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003775 if (con->con && !con->dev) {
Takashi Iwai1083a7b2015-02-05 11:07:42 +01003776 con->dev =
3777 device_create_with_groups(vtconsole_class, NULL,
3778 MKDEV(0, con->node),
3779 con, con_dev_groups,
3780 "vtcon%i", con->node);
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003781
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003782 if (IS_ERR(con->dev)) {
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003783 printk(KERN_WARNING "Unable to create "
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003784 "device for %s; errno = %ld\n",
3785 con->desc, PTR_ERR(con->dev));
3786 con->dev = NULL;
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003787 } else {
Greg Kroah-Hartman805952a2006-08-07 22:19:37 -07003788 vtconsole_init_device(con);
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003789 }
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003790 }
3791 }
3792
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003793 return 0;
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003794}
Antonino A. Daplas6db40632006-06-26 00:27:12 -07003795postcore_initcall(vtconsole_class_init);
3796
3797#endif
Antonino A. Daplas3e795de2006-06-26 00:27:08 -07003798
3799/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 * Screen blanking
3801 */
3802
Yoichi Yuasa403aac92006-12-06 20:38:38 -08003803static int set_vesa_blanking(char __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804{
Yoichi Yuasa403aac92006-12-06 20:38:38 -08003805 unsigned int mode;
3806
3807 if (get_user(mode, p + 1))
3808 return -EFAULT;
3809
3810 vesa_blank_mode = (mode < 4) ? mode : 0;
3811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812}
3813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814void do_blank_screen(int entering_gfx)
3815{
3816 struct vc_data *vc = vc_cons[fg_console].d;
3817 int i;
3818
3819 WARN_CONSOLE_UNLOCKED();
3820
3821 if (console_blanked) {
3822 if (blank_state == blank_vesa_wait) {
3823 blank_state = blank_off;
Ville Syrjalad060a322006-01-09 20:53:49 -08003824 vc->vc_sw->con_blank(vc, vesa_blank_mode + 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 }
3826 return;
3827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
3829 /* entering graphics mode? */
3830 if (entering_gfx) {
3831 hide_cursor(vc);
3832 save_screen(vc);
3833 vc->vc_sw->con_blank(vc, -1, 1);
3834 console_blanked = fg_console + 1;
izumib6e8f002007-07-17 04:05:49 -07003835 blank_state = blank_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 set_origin(vc);
3837 return;
3838 }
3839
izumib6e8f002007-07-17 04:05:49 -07003840 if (blank_state != blank_normal_wait)
3841 return;
3842 blank_state = blank_off;
3843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 /* don't blank graphics */
3845 if (vc->vc_mode != KD_TEXT) {
3846 console_blanked = fg_console + 1;
3847 return;
3848 }
3849
3850 hide_cursor(vc);
3851 del_timer_sync(&console_timer);
3852 blank_timer_expired = 0;
3853
3854 save_screen(vc);
3855 /* In case we need to reset origin, blanking hook returns 1 */
Ville Syrjalad060a322006-01-09 20:53:49 -08003856 i = vc->vc_sw->con_blank(vc, vesa_off_interval ? 1 : (vesa_blank_mode + 1), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 console_blanked = fg_console + 1;
3858 if (i)
3859 set_origin(vc);
3860
3861 if (console_blank_hook && console_blank_hook(1))
3862 return;
3863
Ville Syrjalad060a322006-01-09 20:53:49 -08003864 if (vesa_off_interval && vesa_blank_mode) {
Nishanth Aravamudan030baba2005-07-15 03:56:25 -07003865 blank_state = blank_vesa_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 mod_timer(&console_timer, jiffies + vesa_off_interval);
3867 }
Alan Cox8b92e872009-09-19 13:13:24 -07003868 vt_event_post(VT_EVENT_BLANK, vc->vc_num, vc->vc_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869}
3870EXPORT_SYMBOL(do_blank_screen);
3871
3872/*
3873 * Called by timer as well as from vt_console_driver
3874 */
3875void do_unblank_screen(int leaving_gfx)
3876{
3877 struct vc_data *vc;
3878
3879 /* This should now always be called from a "sane" (read: can schedule)
3880 * context for the sake of the low level drivers, except in the special
3881 * case of oops_in_progress
3882 */
3883 if (!oops_in_progress)
3884 might_sleep();
3885
3886 WARN_CONSOLE_UNLOCKED();
3887
3888 ignore_poke = 0;
3889 if (!console_blanked)
3890 return;
3891 if (!vc_cons_allocated(fg_console)) {
3892 /* impossible */
Joe Perchese620e542014-11-09 22:46:35 -08003893 pr_warn("unblank_screen: tty %d not allocated ??\n",
3894 fg_console + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 return;
3896 }
3897 vc = vc_cons[fg_console].d;
Jesse Barnes8fd4bd22010-06-23 12:56:12 -07003898 /* Try to unblank in oops case too */
3899 if (vc->vc_mode != KD_TEXT && !vt_force_oops_output(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 return; /* but leave console_blanked != 0 */
3901
3902 if (blankinterval) {
Daniel Mackf324edc2009-06-16 15:33:52 -07003903 mod_timer(&console_timer, jiffies + (blankinterval * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 blank_state = blank_normal_wait;
3905 }
3906
3907 console_blanked = 0;
Jesse Barnes8fd4bd22010-06-23 12:56:12 -07003908 if (vc->vc_sw->con_blank(vc, 0, leaving_gfx) || vt_force_oops_output(vc))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 /* Low-level driver cannot restore -> do it ourselves */
3910 update_screen(vc);
3911 if (console_blank_hook)
3912 console_blank_hook(0);
3913 set_palette(vc);
3914 set_cursor(vc);
Alan Cox8b92e872009-09-19 13:13:24 -07003915 vt_event_post(VT_EVENT_UNBLANK, vc->vc_num, vc->vc_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916}
3917EXPORT_SYMBOL(do_unblank_screen);
3918
3919/*
3920 * This is called by the outside world to cause a forced unblank, mostly for
3921 * oopses. Currently, I just call do_unblank_screen(0), but we could eventually
3922 * call it with 1 as an argument and so force a mode restore... that may kill
3923 * X or at least garbage the screen but would also make the Oops visible...
3924 */
3925void unblank_screen(void)
3926{
3927 do_unblank_screen(0);
3928}
3929
3930/*
Ingo Molnar70522e12006-03-23 03:00:31 -08003931 * We defer the timer blanking to work queue so it can take the console mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 * (console operations can still happen at irq time, but only from printk which
Ingo Molnar70522e12006-03-23 03:00:31 -08003933 * has the console mutex. Not perfect yet, but better than no locking
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 */
3935static void blank_screen_t(unsigned long dummy)
3936{
Jan Beulichcc63b1e2005-06-17 13:20:58 -07003937 if (unlikely(!keventd_up())) {
Daniel Mackf324edc2009-06-16 15:33:52 -07003938 mod_timer(&console_timer, jiffies + (blankinterval * HZ));
Jan Beulichcc63b1e2005-06-17 13:20:58 -07003939 return;
3940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 blank_timer_expired = 1;
3942 schedule_work(&console_work);
3943}
3944
3945void poke_blanked_console(void)
3946{
3947 WARN_CONSOLE_UNLOCKED();
3948
3949 /* Add this so we quickly catch whoever might call us in a non
3950 * safe context. Nowadays, unblank_screen() isn't to be called in
3951 * atomic contexts and is allowed to schedule (with the special case
3952 * of oops_in_progress, but that isn't of any concern for this
3953 * function. --BenH.
3954 */
3955 might_sleep();
3956
3957 /* This isn't perfectly race free, but a race here would be mostly harmless,
3958 * at worse, we'll do a spurrious blank and it's unlikely
3959 */
3960 del_timer(&console_timer);
3961 blank_timer_expired = 0;
3962
3963 if (ignore_poke || !vc_cons[fg_console].d || vc_cons[fg_console].d->vc_mode == KD_GRAPHICS)
3964 return;
3965 if (console_blanked)
3966 unblank_screen();
3967 else if (blankinterval) {
Daniel Mackf324edc2009-06-16 15:33:52 -07003968 mod_timer(&console_timer, jiffies + (blankinterval * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 blank_state = blank_normal_wait;
3970 }
3971}
3972
3973/*
3974 * Palettes
3975 */
3976
3977static void set_palette(struct vc_data *vc)
3978{
3979 WARN_CONSOLE_UNLOCKED();
3980
Jiri Slaby709280d2016-06-23 13:34:27 +02003981 if (vc->vc_mode != KD_GRAPHICS && vc->vc_sw->con_set_palette)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 vc->vc_sw->con_set_palette(vc, color_table);
3983}
3984
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985/*
3986 * Load palette into the DAC registers. arg points to a colour
3987 * map, 3 bytes per colour, 16 colours, range from 0 to 255.
3988 */
3989
3990int con_set_cmap(unsigned char __user *arg)
3991{
Michael Gehring871bdea2012-03-21 01:26:45 +01003992 int i, j, k;
3993 unsigned char colormap[3*16];
3994
3995 if (copy_from_user(colormap, arg, sizeof(colormap)))
3996 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Torben Hohnac751ef2011-01-25 15:07:35 -08003998 console_lock();
Michael Gehring871bdea2012-03-21 01:26:45 +01003999 for (i = k = 0; i < 16; i++) {
4000 default_red[i] = colormap[k++];
4001 default_grn[i] = colormap[k++];
4002 default_blu[i] = colormap[k++];
4003 }
4004 for (i = 0; i < MAX_NR_CONSOLES; i++) {
4005 if (!vc_cons_allocated(i))
4006 continue;
4007 for (j = k = 0; j < 16; j++) {
4008 vc_cons[i].d->vc_palette[k++] = default_red[j];
4009 vc_cons[i].d->vc_palette[k++] = default_grn[j];
4010 vc_cons[i].d->vc_palette[k++] = default_blu[j];
4011 }
4012 set_palette(vc_cons[i].d);
4013 }
Torben Hohnac751ef2011-01-25 15:07:35 -08004014 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015
Michael Gehring871bdea2012-03-21 01:26:45 +01004016 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017}
4018
4019int con_get_cmap(unsigned char __user *arg)
4020{
Michael Gehring871bdea2012-03-21 01:26:45 +01004021 int i, k;
4022 unsigned char colormap[3*16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023
Torben Hohnac751ef2011-01-25 15:07:35 -08004024 console_lock();
Michael Gehring871bdea2012-03-21 01:26:45 +01004025 for (i = k = 0; i < 16; i++) {
4026 colormap[k++] = default_red[i];
4027 colormap[k++] = default_grn[i];
4028 colormap[k++] = default_blu[i];
4029 }
Torben Hohnac751ef2011-01-25 15:07:35 -08004030 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Michael Gehring871bdea2012-03-21 01:26:45 +01004032 if (copy_to_user(arg, colormap, sizeof(colormap)))
4033 return -EFAULT;
4034
4035 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036}
4037
4038void reset_palette(struct vc_data *vc)
4039{
4040 int j, k;
4041 for (j=k=0; j<16; j++) {
4042 vc->vc_palette[k++] = default_red[j];
4043 vc->vc_palette[k++] = default_grn[j];
4044 vc->vc_palette[k++] = default_blu[j];
4045 }
4046 set_palette(vc);
4047}
4048
4049/*
4050 * Font switching
4051 *
4052 * Currently we only support fonts up to 32 pixels wide, at a maximum height
4053 * of 32 pixels. Userspace fontdata is stored with 32 bytes (shorts/ints,
4054 * depending on width) reserved for each character which is kinda wasty, but
4055 * this is done in order to maintain compatibility with the EGA/VGA fonts. It
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004056 * is up to the actual low-level console-driver convert data into its favorite
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 * format (maybe we should add a `fontoffset' field to the `display'
4058 * structure so we won't have to convert the fontdata all the time.
4059 * /Jes
4060 */
4061
4062#define max_font_size 65536
4063
4064static int con_font_get(struct vc_data *vc, struct console_font_op *op)
4065{
4066 struct console_font font;
4067 int rc = -EINVAL;
4068 int c;
4069
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 if (op->data) {
4071 font.data = kmalloc(max_font_size, GFP_KERNEL);
4072 if (!font.data)
4073 return -ENOMEM;
4074 } else
4075 font.data = NULL;
4076
Torben Hohnac751ef2011-01-25 15:07:35 -08004077 console_lock();
Alan Coxedab5582012-03-02 14:59:08 +00004078 if (vc->vc_mode != KD_TEXT)
4079 rc = -EINVAL;
4080 else if (vc->vc_sw->con_font_get)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 rc = vc->vc_sw->con_font_get(vc, &font);
4082 else
4083 rc = -ENOSYS;
Torben Hohnac751ef2011-01-25 15:07:35 -08004084 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
4086 if (rc)
4087 goto out;
4088
4089 c = (font.width+7)/8 * 32 * font.charcount;
Alan Cox04f378b2008-04-30 00:53:29 -07004090
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 if (op->data && font.charcount > op->charcount)
4092 rc = -ENOSPC;
4093 if (!(op->flags & KD_FONT_FLAG_OLD)) {
4094 if (font.width > op->width || font.height > op->height)
4095 rc = -ENOSPC;
4096 } else {
4097 if (font.width != 8)
4098 rc = -EIO;
4099 else if ((op->height && font.height > op->height) ||
4100 font.height > 32)
4101 rc = -ENOSPC;
4102 }
4103 if (rc)
4104 goto out;
4105
4106 op->height = font.height;
4107 op->width = font.width;
4108 op->charcount = font.charcount;
4109
4110 if (op->data && copy_to_user(op->data, font.data, c))
4111 rc = -EFAULT;
4112
4113out:
4114 kfree(font.data);
4115 return rc;
4116}
4117
4118static int con_font_set(struct vc_data *vc, struct console_font_op *op)
4119{
4120 struct console_font font;
4121 int rc = -EINVAL;
4122 int size;
4123
4124 if (vc->vc_mode != KD_TEXT)
4125 return -EINVAL;
4126 if (!op->data)
4127 return -EINVAL;
4128 if (op->charcount > 512)
4129 return -EINVAL;
4130 if (!op->height) { /* Need to guess font height [compat] */
4131 int h, i;
4132 u8 __user *charmap = op->data;
4133 u8 tmp;
4134
4135 /* If from KDFONTOP ioctl, don't allow things which can be done in userland,
4136 so that we can get rid of this soon */
4137 if (!(op->flags & KD_FONT_FLAG_OLD))
4138 return -EINVAL;
4139 for (h = 32; h > 0; h--)
4140 for (i = 0; i < op->charcount; i++) {
4141 if (get_user(tmp, &charmap[32*i+h-1]))
4142 return -EFAULT;
4143 if (tmp)
4144 goto nonzero;
4145 }
4146 return -EINVAL;
4147 nonzero:
4148 op->height = h;
4149 }
4150 if (op->width <= 0 || op->width > 32 || op->height > 32)
4151 return -EINVAL;
4152 size = (op->width+7)/8 * 32 * op->charcount;
4153 if (size > max_font_size)
4154 return -ENOSPC;
4155 font.charcount = op->charcount;
4156 font.height = op->height;
4157 font.width = op->width;
Julia Lawall9b71ca22010-05-26 14:42:11 -07004158 font.data = memdup_user(op->data, size);
4159 if (IS_ERR(font.data))
4160 return PTR_ERR(font.data);
Torben Hohnac751ef2011-01-25 15:07:35 -08004161 console_lock();
Alan Coxedab5582012-03-02 14:59:08 +00004162 if (vc->vc_mode != KD_TEXT)
4163 rc = -EINVAL;
4164 else if (vc->vc_sw->con_font_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 rc = vc->vc_sw->con_font_set(vc, &font, op->flags);
4166 else
4167 rc = -ENOSYS;
Torben Hohnac751ef2011-01-25 15:07:35 -08004168 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 kfree(font.data);
4170 return rc;
4171}
4172
4173static int con_font_default(struct vc_data *vc, struct console_font_op *op)
4174{
4175 struct console_font font = {.width = op->width, .height = op->height};
4176 char name[MAX_FONT_NAME];
4177 char *s = name;
4178 int rc;
4179
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
4181 if (!op->data)
4182 s = NULL;
4183 else if (strncpy_from_user(name, op->data, MAX_FONT_NAME - 1) < 0)
4184 return -EFAULT;
4185 else
4186 name[MAX_FONT_NAME - 1] = 0;
4187
Torben Hohnac751ef2011-01-25 15:07:35 -08004188 console_lock();
Alan Coxedab5582012-03-02 14:59:08 +00004189 if (vc->vc_mode != KD_TEXT) {
4190 console_unlock();
4191 return -EINVAL;
4192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 if (vc->vc_sw->con_font_default)
4194 rc = vc->vc_sw->con_font_default(vc, &font, s);
4195 else
4196 rc = -ENOSYS;
Torben Hohnac751ef2011-01-25 15:07:35 -08004197 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 if (!rc) {
4199 op->width = font.width;
4200 op->height = font.height;
4201 }
4202 return rc;
4203}
4204
4205static int con_font_copy(struct vc_data *vc, struct console_font_op *op)
4206{
4207 int con = op->height;
4208 int rc;
4209
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Torben Hohnac751ef2011-01-25 15:07:35 -08004211 console_lock();
Alan Coxedab5582012-03-02 14:59:08 +00004212 if (vc->vc_mode != KD_TEXT)
4213 rc = -EINVAL;
4214 else if (!vc->vc_sw->con_font_copy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 rc = -ENOSYS;
4216 else if (con < 0 || !vc_cons_allocated(con))
4217 rc = -ENOTTY;
4218 else if (con == vc->vc_num) /* nothing to do */
4219 rc = 0;
4220 else
4221 rc = vc->vc_sw->con_font_copy(vc, con);
Torben Hohnac751ef2011-01-25 15:07:35 -08004222 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 return rc;
4224}
4225
4226int con_font_op(struct vc_data *vc, struct console_font_op *op)
4227{
4228 switch (op->op) {
4229 case KD_FONT_OP_SET:
4230 return con_font_set(vc, op);
4231 case KD_FONT_OP_GET:
4232 return con_font_get(vc, op);
4233 case KD_FONT_OP_SET_DEFAULT:
4234 return con_font_default(vc, op);
4235 case KD_FONT_OP_COPY:
4236 return con_font_copy(vc, op);
4237 }
4238 return -ENOSYS;
4239}
4240
4241/*
4242 * Interface exported to selection and vcs.
4243 */
4244
4245/* used by selection */
4246u16 screen_glyph(struct vc_data *vc, int offset)
4247{
4248 u16 w = scr_readw(screenpos(vc, offset, 1));
4249 u16 c = w & 0xff;
4250
4251 if (w & vc->vc_hi_font_mask)
4252 c |= 0x100;
4253 return c;
4254}
Samuel Thibaultf7511d52008-04-30 00:54:51 -07004255EXPORT_SYMBOL_GPL(screen_glyph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
4257/* used by vcs - note the word offset */
4258unsigned short *screen_pos(struct vc_data *vc, int w_offset, int viewed)
4259{
4260 return screenpos(vc, 2 * w_offset, viewed);
4261}
Samuel Thibault88867e32016-01-25 01:32:08 +01004262EXPORT_SYMBOL_GPL(screen_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263
4264void getconsxy(struct vc_data *vc, unsigned char *p)
4265{
4266 p[0] = vc->vc_x;
4267 p[1] = vc->vc_y;
4268}
4269
4270void putconsxy(struct vc_data *vc, unsigned char *p)
4271{
Antonino A. Daplas9477e262006-02-01 03:06:52 -08004272 hide_cursor(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 gotoxy(vc, p[0], p[1]);
4274 set_cursor(vc);
4275}
4276
4277u16 vcs_scr_readw(struct vc_data *vc, const u16 *org)
4278{
4279 if ((unsigned long)org == vc->vc_pos && softcursor_original != -1)
4280 return softcursor_original;
4281 return scr_readw(org);
4282}
4283
4284void vcs_scr_writew(struct vc_data *vc, u16 val, u16 *org)
4285{
4286 scr_writew(val, org);
4287 if ((unsigned long)org == vc->vc_pos) {
4288 softcursor_original = -1;
4289 add_softcursor(vc);
4290 }
4291}
4292
Nicolas Pitre432c9ed2010-10-01 00:10:44 -04004293void vcs_scr_updated(struct vc_data *vc)
4294{
4295 notify_update(vc);
4296}
4297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298/*
4299 * Visible symbols for modules
4300 */
4301
4302EXPORT_SYMBOL(color_table);
4303EXPORT_SYMBOL(default_red);
4304EXPORT_SYMBOL(default_grn);
4305EXPORT_SYMBOL(default_blu);
4306EXPORT_SYMBOL(update_region);
4307EXPORT_SYMBOL(redraw_screen);
4308EXPORT_SYMBOL(vc_resize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309EXPORT_SYMBOL(fg_console);
4310EXPORT_SYMBOL(console_blank_hook);
4311EXPORT_SYMBOL(console_blanked);
4312EXPORT_SYMBOL(vc_cons);
Matthew Garrettf6c06b62009-11-13 15:14:11 -05004313EXPORT_SYMBOL(global_cursor_default);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314#ifndef VT_SINGLE_DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315EXPORT_SYMBOL(give_up_console);
4316#endif