blob: 98ff1735eafc0841428a2e2fa2257909073c775e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1992 obz under the linux copyright
3 *
4 * Dynamic diacritical handling - aeb@cwi.nl - Dec 1993
5 * Dynamic keymap and string allocation - aeb@cwi.nl - May 1994
6 * Restrict VT switching via ioctl() - grif@cs.ucr.edu - Dec 1995
7 * Some code moved for less code duplication - Andi Kleen - Mar 1997
8 * Check put/get_user, cleanups - acme@conectiva.com.br - Jun 2001
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/types.h>
12#include <linux/errno.h>
13#include <linux/sched.h>
14#include <linux/tty.h>
15#include <linux/timer.h>
16#include <linux/kernel.h>
Arnd Bergmanne9216652009-08-06 15:09:28 +020017#include <linux/compat.h>
Alan Cox8d233552009-09-19 13:13:25 -070018#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kd.h>
20#include <linux/vt.h>
21#include <linux/string.h>
22#include <linux/slab.h>
23#include <linux/major.h>
24#include <linux/fs.h>
25#include <linux/console.h>
Samuel Thibault04c71972007-10-16 23:27:04 -070026#include <linux/consolemap.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070027#include <linux/signal.h>
Josh Tripletta5e04b72012-11-18 21:27:41 -080028#include <linux/suspend.h>
Emmanuel Colbusbcc8ca02005-06-28 20:44:49 -070029#include <linux/timex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/io.h>
32#include <asm/uaccess.h>
33
34#include <linux/kbd_kern.h>
35#include <linux/vt_kern.h>
36#include <linux/kbd_diacr.h>
37#include <linux/selection.h>
38
Andrew Johnsonb257bc02007-03-16 13:38:24 -080039char vt_dont_switch;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040extern struct tty_driver *console_driver;
41
42#define VT_IS_IN_USE(i) (console_driver->ttys[i] && console_driver->ttys[i]->count)
43#define VT_BUSY(i) (VT_IS_IN_USE(i) || i == fg_console || vc_cons[i].d == sel_cons)
44
45/*
46 * Console (vt and kd) routines, as defined by USL SVR4 manual, and by
47 * experimentation and study of X386 SYSV handling.
48 *
49 * One point of difference: SYSV vt's are /dev/vtX, which X >= 0, and
50 * /dev/console is a separate ttyp. Under Linux, /dev/tty0 is /dev/console,
51 * and the vc start at /dev/ttyX, X >= 1. We maintain that here, so we will
52 * always treat our set of vt as numbered 1..MAX_NR_CONSOLES (corresponding to
53 * ttys 0..MAX_NR_CONSOLES-1). Explicitly naming VT 0 is illegal, but using
54 * /dev/tty0 (fg_console) as a target is legal, since an implicit aliasing
55 * to the current console is done by the main ioctl code.
56 */
57
58#ifdef CONFIG_X86
59#include <linux/syscalls.h>
60#endif
61
62static void complete_change_console(struct vc_data *vc);
63
64/*
Alan Cox8b92e872009-09-19 13:13:24 -070065 * User space VT_EVENT handlers
66 */
67
68struct vt_event_wait {
69 struct list_head list;
70 struct vt_event event;
71 int done;
72};
73
74static LIST_HEAD(vt_events);
75static DEFINE_SPINLOCK(vt_event_lock);
76static DECLARE_WAIT_QUEUE_HEAD(vt_event_waitqueue);
77
78/**
79 * vt_event_post
80 * @event: the event that occurred
81 * @old: old console
82 * @new: new console
83 *
84 * Post an VT event to interested VT handlers
85 */
86
87void vt_event_post(unsigned int event, unsigned int old, unsigned int new)
88{
89 struct list_head *pos, *head;
90 unsigned long flags;
91 int wake = 0;
92
93 spin_lock_irqsave(&vt_event_lock, flags);
94 head = &vt_events;
95
96 list_for_each(pos, head) {
97 struct vt_event_wait *ve = list_entry(pos,
98 struct vt_event_wait, list);
99 if (!(ve->event.event & event))
100 continue;
101 ve->event.event = event;
102 /* kernel view is consoles 0..n-1, user space view is
103 console 1..n with 0 meaning current, so we must bias */
Alan Cox308efab2009-11-19 13:30:36 +0000104 ve->event.oldev = old + 1;
105 ve->event.newev = new + 1;
Alan Cox8b92e872009-09-19 13:13:24 -0700106 wake = 1;
107 ve->done = 1;
108 }
109 spin_unlock_irqrestore(&vt_event_lock, flags);
110 if (wake)
111 wake_up_interruptible(&vt_event_waitqueue);
112}
113
Rabin Vincenta7b12922012-05-21 13:38:42 +0530114static void __vt_event_queue(struct vt_event_wait *vw)
115{
116 unsigned long flags;
117 /* Prepare the event */
118 INIT_LIST_HEAD(&vw->list);
119 vw->done = 0;
120 /* Queue our event */
121 spin_lock_irqsave(&vt_event_lock, flags);
122 list_add(&vw->list, &vt_events);
123 spin_unlock_irqrestore(&vt_event_lock, flags);
124}
125
126static void __vt_event_wait(struct vt_event_wait *vw)
127{
128 /* Wait for it to pass */
129 wait_event_interruptible(vt_event_waitqueue, vw->done);
130}
131
132static void __vt_event_dequeue(struct vt_event_wait *vw)
133{
134 unsigned long flags;
135
136 /* Dequeue it */
137 spin_lock_irqsave(&vt_event_lock, flags);
138 list_del(&vw->list);
139 spin_unlock_irqrestore(&vt_event_lock, flags);
140}
141
Alan Cox8b92e872009-09-19 13:13:24 -0700142/**
143 * vt_event_wait - wait for an event
144 * @vw: our event
145 *
146 * Waits for an event to occur which completes our vt_event_wait
147 * structure. On return the structure has wv->done set to 1 for success
148 * or 0 if some event such as a signal ended the wait.
149 */
150
151static void vt_event_wait(struct vt_event_wait *vw)
152{
Rabin Vincenta7b12922012-05-21 13:38:42 +0530153 __vt_event_queue(vw);
154 __vt_event_wait(vw);
155 __vt_event_dequeue(vw);
Alan Cox8b92e872009-09-19 13:13:24 -0700156}
157
158/**
159 * vt_event_wait_ioctl - event ioctl handler
160 * @arg: argument to ioctl
161 *
162 * Implement the VT_WAITEVENT ioctl using the VT event interface
163 */
164
165static int vt_event_wait_ioctl(struct vt_event __user *event)
166{
167 struct vt_event_wait vw;
168
169 if (copy_from_user(&vw.event, event, sizeof(struct vt_event)))
170 return -EFAULT;
171 /* Highest supported event for now */
172 if (vw.event.event & ~VT_MAX_EVENT)
173 return -EINVAL;
174
175 vt_event_wait(&vw);
176 /* If it occurred report it */
177 if (vw.done) {
178 if (copy_to_user(event, &vw.event, sizeof(struct vt_event)))
179 return -EFAULT;
180 return 0;
181 }
182 return -EINTR;
183}
184
185/**
186 * vt_waitactive - active console wait
187 * @event: event code
188 * @n: new console
189 *
190 * Helper for event waits. Used to implement the legacy
191 * event waiting ioctls in terms of events
192 */
193
194int vt_waitactive(int n)
195{
196 struct vt_event_wait vw;
197 do {
Alan Cox8b92e872009-09-19 13:13:24 -0700198 vw.event.event = VT_EVENT_SWITCH;
Rabin Vincenta7b12922012-05-21 13:38:42 +0530199 __vt_event_queue(&vw);
200 if (n == fg_console + 1) {
201 __vt_event_dequeue(&vw);
202 break;
203 }
204 __vt_event_wait(&vw);
205 __vt_event_dequeue(&vw);
Alan Cox8b92e872009-09-19 13:13:24 -0700206 if (vw.done == 0)
207 return -EINTR;
Alan Cox308efab2009-11-19 13:30:36 +0000208 } while (vw.event.newev != n);
Alan Cox8b92e872009-09-19 13:13:24 -0700209 return 0;
210}
211
212/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * these are the valid i/o ports we're allowed to change. they map all the
214 * video ports
215 */
216#define GPFIRST 0x3b4
217#define GPLAST 0x3df
218#define GPNUM (GPLAST - GPFIRST + 1)
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222static inline int
223do_fontx_ioctl(int cmd, struct consolefontdesc __user *user_cfd, int perm, struct console_font_op *op)
224{
225 struct consolefontdesc cfdarg;
226 int i;
227
228 if (copy_from_user(&cfdarg, user_cfd, sizeof(struct consolefontdesc)))
229 return -EFAULT;
230
231 switch (cmd) {
232 case PIO_FONTX:
233 if (!perm)
234 return -EPERM;
235 op->op = KD_FONT_OP_SET;
236 op->flags = KD_FONT_FLAG_OLD;
237 op->width = 8;
238 op->height = cfdarg.charheight;
239 op->charcount = cfdarg.charcount;
240 op->data = cfdarg.chardata;
241 return con_font_op(vc_cons[fg_console].d, op);
242 case GIO_FONTX: {
243 op->op = KD_FONT_OP_GET;
244 op->flags = KD_FONT_FLAG_OLD;
245 op->width = 8;
246 op->height = cfdarg.charheight;
247 op->charcount = cfdarg.charcount;
248 op->data = cfdarg.chardata;
249 i = con_font_op(vc_cons[fg_console].d, op);
250 if (i)
251 return i;
252 cfdarg.charheight = op->height;
253 cfdarg.charcount = op->charcount;
254 if (copy_to_user(user_cfd, &cfdarg, sizeof(struct consolefontdesc)))
255 return -EFAULT;
256 return 0;
257 }
258 }
259 return -EINVAL;
260}
261
262static inline int
263do_unimap_ioctl(int cmd, struct unimapdesc __user *user_ud, int perm, struct vc_data *vc)
264{
265 struct unimapdesc tmp;
266
267 if (copy_from_user(&tmp, user_ud, sizeof tmp))
268 return -EFAULT;
269 if (tmp.entries)
270 if (!access_ok(VERIFY_WRITE, tmp.entries,
271 tmp.entry_ct*sizeof(struct unipair)))
272 return -EFAULT;
273 switch (cmd) {
274 case PIO_UNIMAP:
275 if (!perm)
276 return -EPERM;
277 return con_set_unimap(vc, tmp.entry_ct, tmp.entries);
278 case GIO_UNIMAP:
279 if (!perm && fg_console != vc->vc_num)
280 return -EPERM;
281 return con_get_unimap(vc, tmp.entry_ct, &(user_ud->entry_ct), tmp.entries);
282 }
283 return 0;
284}
285
Alan Cox8b92e872009-09-19 13:13:24 -0700286
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*
289 * We handle the console-specific ioctl's here. We allow the
290 * capability to modify any console, not just the fg_console.
291 */
Alan Cox6caa76b2011-02-14 16:27:22 +0000292int vt_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 unsigned int cmd, unsigned long arg)
294{
Alan Coxc9f19e92009-01-02 13:47:26 +0000295 struct vc_data *vc = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 struct console_font_op op; /* used in multiple places here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 unsigned int console;
298 unsigned char ucval;
Graham Gower1e0ad282010-10-27 15:33:00 -0700299 unsigned int uival;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 void __user *up = (void __user *)arg;
301 int i, perm;
Alan Cox9cc3c222008-04-30 00:53:26 -0700302 int ret = 0;
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 console = vc->vc_num;
305
Alan Cox9cc3c222008-04-30 00:53:26 -0700306
307 if (!vc_cons_allocated(console)) { /* impossible? */
308 ret = -ENOIOCTLCMD;
309 goto out;
310 }
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 /*
314 * To have permissions to do most of the vt ioctls, we either have
315 * to be the owner of the tty, or have CAP_SYS_TTY_CONFIG.
316 */
317 perm = 0;
318 if (current->signal->tty == tty || capable(CAP_SYS_TTY_CONFIG))
319 perm = 1;
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 switch (cmd) {
Alan Coxe6885102008-10-13 10:36:40 +0100322 case TIOCLINUX:
Jiri Slabya1159022009-06-22 18:42:18 +0100323 ret = tioclinux(tty, arg);
324 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 case KIOCSOUND:
326 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000327 return -EPERM;
Arnd Bergmann2c4e9672010-08-28 20:35:17 -0700328 /*
329 * The use of PIT_TICK_RATE is historic, it used to be
330 * the platform-dependent CLOCK_TICK_RATE between 2.6.12
331 * and 2.6.36, which was a minor but unfortunate ABI
Alan Cox4001d7b2012-03-02 14:59:20 +0000332 * change. kd_mksound is locked by the input layer.
Arnd Bergmann2c4e9672010-08-28 20:35:17 -0700333 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (arg)
Arnd Bergmann2c4e9672010-08-28 20:35:17 -0700335 arg = PIT_TICK_RATE / arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 kd_mksound(arg, 0);
Alan Cox9cc3c222008-04-30 00:53:26 -0700337 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 case KDMKTONE:
340 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000341 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 {
343 unsigned int ticks, count;
344
345 /*
346 * Generate the tone for the appropriate number of ticks.
347 * If the time is zero, turn off sound ourselves.
348 */
349 ticks = HZ * ((arg >> 16) & 0xffff) / 1000;
350 count = ticks ? (arg & 0xffff) : 0;
351 if (count)
Arnd Bergmann2c4e9672010-08-28 20:35:17 -0700352 count = PIT_TICK_RATE / count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 kd_mksound(count, ticks);
Alan Cox9cc3c222008-04-30 00:53:26 -0700354 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
357 case KDGKBTYPE:
358 /*
Alan Cox4001d7b2012-03-02 14:59:20 +0000359 * this is naïve.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 */
361 ucval = KB_101;
Alan Cox079c9532012-02-28 14:49:23 +0000362 ret = put_user(ucval, (char __user *)arg);
363 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /*
366 * These cannot be implemented on any machine that implements
367 * ioperm() in user level (such as Alpha PCs) or not at all.
368 *
369 * XXX: you should never use these, just call ioperm directly..
370 */
371#ifdef CONFIG_X86
372 case KDADDIO:
373 case KDDELIO:
374 /*
375 * KDADDIO and KDDELIO may be able to add ports beyond what
376 * we reject here, but to be safe...
Alan Cox4001d7b2012-03-02 14:59:20 +0000377 *
378 * These are locked internally via sys_ioperm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
Alan Cox9cc3c222008-04-30 00:53:26 -0700380 if (arg < GPFIRST || arg > GPLAST) {
381 ret = -EINVAL;
382 break;
383 }
384 ret = sys_ioperm(arg, 1, (cmd == KDADDIO)) ? -ENXIO : 0;
385 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 case KDENABIO:
388 case KDDISABIO:
Alan Cox9cc3c222008-04-30 00:53:26 -0700389 ret = sys_ioperm(GPFIRST, GPNUM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 (cmd == KDENABIO)) ? -ENXIO : 0;
Alan Cox9cc3c222008-04-30 00:53:26 -0700391 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392#endif
393
394 /* Linux m68k/i386 interface for setting the keyboard delay/repeat rate */
395
396 case KDKBDREP:
397 {
398 struct kbd_repeat kbrep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 if (!capable(CAP_SYS_TTY_CONFIG))
Alan Cox4001d7b2012-03-02 14:59:20 +0000401 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Alan Cox9cc3c222008-04-30 00:53:26 -0700403 if (copy_from_user(&kbrep, up, sizeof(struct kbd_repeat))) {
404 ret = -EFAULT;
405 break;
406 }
407 ret = kbd_rate(&kbrep);
408 if (ret)
409 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (copy_to_user(up, &kbrep, sizeof(struct kbd_repeat)))
Alan Cox9cc3c222008-04-30 00:53:26 -0700411 ret = -EFAULT;
412 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
415 case KDSETMODE:
416 /*
417 * currently, setting the mode from KD_TEXT to KD_GRAPHICS
418 * doesn't do a whole lot. i'm not sure if it should do any
419 * restoration of modes or what...
420 *
421 * XXX It should at least call into the driver, fbdev's definitely
422 * need to restore their engine state. --BenH
423 */
424 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000425 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 switch (arg) {
427 case KD_GRAPHICS:
428 break;
429 case KD_TEXT0:
430 case KD_TEXT1:
431 arg = KD_TEXT;
432 case KD_TEXT:
433 break;
434 default:
Alan Cox9cc3c222008-04-30 00:53:26 -0700435 ret = -EINVAL;
436 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Alan Cox4001d7b2012-03-02 14:59:20 +0000438 /* FIXME: this needs the console lock extending */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (vc->vc_mode == (unsigned char) arg)
Alan Cox9cc3c222008-04-30 00:53:26 -0700440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 vc->vc_mode = (unsigned char) arg;
442 if (console != fg_console)
Alan Cox9cc3c222008-04-30 00:53:26 -0700443 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 /*
445 * explicitly blank/unblank the screen if switching modes
446 */
Torben Hohnac751ef2011-01-25 15:07:35 -0800447 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (arg == KD_TEXT)
449 do_unblank_screen(1);
450 else
451 do_blank_screen(1);
Torben Hohnac751ef2011-01-25 15:07:35 -0800452 console_unlock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700453 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 case KDGETMODE:
Graham Gower1e0ad282010-10-27 15:33:00 -0700456 uival = vc->vc_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 goto setint;
458
459 case KDMAPDISP:
460 case KDUNMAPDISP:
461 /*
462 * these work like a combination of mmap and KDENABIO.
463 * this could be easily finished.
464 */
Alan Cox9cc3c222008-04-30 00:53:26 -0700465 ret = -EINVAL;
466 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 case KDSKBMODE:
469 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000470 return -EPERM;
Alan Cox079c9532012-02-28 14:49:23 +0000471 ret = vt_do_kdskbmode(console, arg);
472 if (ret == 0)
473 tty_ldisc_flush(tty);
Alan Cox9cc3c222008-04-30 00:53:26 -0700474 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 case KDGKBMODE:
Alan Cox079c9532012-02-28 14:49:23 +0000477 uival = vt_do_kdgkbmode(console);
478 ret = put_user(uival, (int __user *)arg);
479 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 /* this could be folded into KDSKBMODE, but for compatibility
482 reasons it is not so easy to fold KDGKBMETA into KDGKBMODE */
483 case KDSKBMETA:
Alan Cox079c9532012-02-28 14:49:23 +0000484 ret = vt_do_kdskbmeta(console, arg);
Alan Cox9cc3c222008-04-30 00:53:26 -0700485 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 case KDGKBMETA:
Alan Cox079c9532012-02-28 14:49:23 +0000488 /* FIXME: should review whether this is worth locking */
489 uival = vt_do_kdgkbmeta(console);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 setint:
Graham Gower1e0ad282010-10-27 15:33:00 -0700491 ret = put_user(uival, (int __user *)arg);
Alan Cox9cc3c222008-04-30 00:53:26 -0700492 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 case KDGETKEYCODE:
495 case KDSETKEYCODE:
496 if(!capable(CAP_SYS_TTY_CONFIG))
Alan Cox9cc3c222008-04-30 00:53:26 -0700497 perm = 0;
Alan Cox079c9532012-02-28 14:49:23 +0000498 ret = vt_do_kbkeycode_ioctl(cmd, up, perm);
Alan Cox9cc3c222008-04-30 00:53:26 -0700499 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 case KDGKBENT:
502 case KDSKBENT:
Alan Cox079c9532012-02-28 14:49:23 +0000503 ret = vt_do_kdsk_ioctl(cmd, up, perm, console);
Alan Cox9cc3c222008-04-30 00:53:26 -0700504 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 case KDGKBSENT:
507 case KDSKBSENT:
Alan Cox079c9532012-02-28 14:49:23 +0000508 ret = vt_do_kdgkb_ioctl(cmd, up, perm);
Alan Cox9cc3c222008-04-30 00:53:26 -0700509 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Alan Cox247ff8e2012-02-24 12:47:11 +0000511 /* Diacritical processing. Handled in keyboard.c as it has
512 to operate on the keyboard locks and structures */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 case KDGKBDIACR:
Samuel Thibault04c71972007-10-16 23:27:04 -0700514 case KDGKBDIACRUC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 case KDSKBDIACR:
Samuel Thibault04c71972007-10-16 23:27:04 -0700516 case KDSKBDIACRUC:
Alan Cox247ff8e2012-02-24 12:47:11 +0000517 ret = vt_do_diacrit(cmd, up, perm);
Alan Cox9cc3c222008-04-30 00:53:26 -0700518 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 /* the ioctls below read/set the flags usually shown in the leds */
521 /* don't use them - they will go away without warning */
522 case KDGKBLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 case KDSKBLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 case KDGETLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 case KDSETLED:
Alan Cox079c9532012-02-28 14:49:23 +0000526 ret = vt_do_kdskled(console, cmd, arg, perm);
Alan Cox9cc3c222008-04-30 00:53:26 -0700527 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /*
530 * A process can indicate its willingness to accept signals
531 * generated by pressing an appropriate key combination.
532 * Thus, one can have a daemon that e.g. spawns a new console
533 * upon a keypress and then changes to it.
534 * See also the kbrequest field of inittab(5).
535 */
536 case KDSIGACCEPT:
537 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!perm || !capable(CAP_KILL))
Alan Cox4001d7b2012-03-02 14:59:20 +0000539 return -EPERM;
Jesper Juhl7ed20e12005-05-01 08:59:14 -0700540 if (!valid_signal(arg) || arg < 1 || arg == SIGKILL)
Alan Cox9cc3c222008-04-30 00:53:26 -0700541 ret = -EINVAL;
542 else {
543 spin_lock_irq(&vt_spawn_con.lock);
544 put_pid(vt_spawn_con.pid);
545 vt_spawn_con.pid = get_pid(task_pid(current));
546 vt_spawn_con.sig = arg;
547 spin_unlock_irq(&vt_spawn_con.lock);
548 }
549 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
552 case VT_SETMODE:
553 {
554 struct vt_mode tmp;
555
556 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000557 return -EPERM;
Alan Cox9cc3c222008-04-30 00:53:26 -0700558 if (copy_from_user(&tmp, up, sizeof(struct vt_mode))) {
559 ret = -EFAULT;
560 goto out;
561 }
Greg Kroah-Hartman87a6aca2010-03-15 17:14:15 -0700562 if (tmp.mode != VT_AUTO && tmp.mode != VT_PROCESS) {
Alan Cox9cc3c222008-04-30 00:53:26 -0700563 ret = -EINVAL;
564 goto out;
565 }
Torben Hohnac751ef2011-01-25 15:07:35 -0800566 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 vc->vt_mode = tmp;
568 /* the frsig is ignored, so we set it to 0 */
569 vc->vt_mode.frsig = 0;
Eric W. Biederman8b6312f2007-02-10 01:44:34 -0800570 put_pid(vc->vt_pid);
571 vc->vt_pid = get_pid(task_pid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /* no switch is required -- saw@shade.msu.ru */
573 vc->vt_newvt = -1;
Torben Hohnac751ef2011-01-25 15:07:35 -0800574 console_unlock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700575 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
578 case VT_GETMODE:
579 {
580 struct vt_mode tmp;
581 int rc;
582
Torben Hohnac751ef2011-01-25 15:07:35 -0800583 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 memcpy(&tmp, &vc->vt_mode, sizeof(struct vt_mode));
Torben Hohnac751ef2011-01-25 15:07:35 -0800585 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 rc = copy_to_user(up, &tmp, sizeof(struct vt_mode));
Alan Cox9cc3c222008-04-30 00:53:26 -0700588 if (rc)
589 ret = -EFAULT;
590 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592
593 /*
594 * Returns global vt state. Note that VT 0 is always open, since
595 * it's an alias for the current VT, and people can't use it here.
596 * We cannot return state for more than 16 VTs, since v_state is short.
597 */
598 case VT_GETSTATE:
599 {
600 struct vt_stat __user *vtstat = up;
601 unsigned short state, mask;
602
Alan Cox4001d7b2012-03-02 14:59:20 +0000603 /* Review: FIXME: Console lock ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (put_user(fg_console + 1, &vtstat->v_active))
Alan Cox9cc3c222008-04-30 00:53:26 -0700605 ret = -EFAULT;
606 else {
607 state = 1; /* /dev/tty0 is always open */
608 for (i = 0, mask = 2; i < MAX_NR_CONSOLES && mask;
609 ++i, mask <<= 1)
610 if (VT_IS_IN_USE(i))
611 state |= mask;
612 ret = put_user(state, &vtstat->v_state);
613 }
614 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616
617 /*
618 * Returns the first available (non-opened) console.
619 */
620 case VT_OPENQRY:
Alan Cox4001d7b2012-03-02 14:59:20 +0000621 /* FIXME: locking ? - but then this is a stupid API */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 for (i = 0; i < MAX_NR_CONSOLES; ++i)
623 if (! VT_IS_IN_USE(i))
624 break;
Graham Gower1e0ad282010-10-27 15:33:00 -0700625 uival = i < MAX_NR_CONSOLES ? (i+1) : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 goto setint;
627
628 /*
629 * ioctl(fd, VT_ACTIVATE, num) will cause us to switch to vt # num,
630 * with num >= 1 (switches to vt 0, our console, are not allowed, just
631 * to preserve sanity).
632 */
633 case VT_ACTIVATE:
634 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000635 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (arg == 0 || arg > MAX_NR_CONSOLES)
Alan Cox9cc3c222008-04-30 00:53:26 -0700637 ret = -ENXIO;
638 else {
639 arg--;
Torben Hohnac751ef2011-01-25 15:07:35 -0800640 console_lock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700641 ret = vc_allocate(arg);
Torben Hohnac751ef2011-01-25 15:07:35 -0800642 console_unlock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700643 if (ret)
644 break;
645 set_console(arg);
646 }
647 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Alan Coxd3b5cff2009-09-19 13:13:26 -0700649 case VT_SETACTIVATE:
650 {
651 struct vt_setactivate vsa;
652
653 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000654 return -EPERM;
Alan Coxd3b5cff2009-09-19 13:13:26 -0700655
656 if (copy_from_user(&vsa, (struct vt_setactivate __user *)arg,
Jiri Slabya09efb02009-10-01 15:43:59 -0700657 sizeof(struct vt_setactivate))) {
658 ret = -EFAULT;
659 goto out;
660 }
Alan Coxd3b5cff2009-09-19 13:13:26 -0700661 if (vsa.console == 0 || vsa.console > MAX_NR_CONSOLES)
662 ret = -ENXIO;
663 else {
664 vsa.console--;
Torben Hohnac751ef2011-01-25 15:07:35 -0800665 console_lock();
Alan Coxd3b5cff2009-09-19 13:13:26 -0700666 ret = vc_allocate(vsa.console);
667 if (ret == 0) {
668 struct vc_data *nvc;
669 /* This is safe providing we don't drop the
670 console sem between vc_allocate and
671 finishing referencing nvc */
672 nvc = vc_cons[vsa.console].d;
673 nvc->vt_mode = vsa.mode;
674 nvc->vt_mode.frsig = 0;
675 put_pid(nvc->vt_pid);
676 nvc->vt_pid = get_pid(task_pid(current));
677 }
Torben Hohnac751ef2011-01-25 15:07:35 -0800678 console_unlock();
Alan Coxd3b5cff2009-09-19 13:13:26 -0700679 if (ret)
680 break;
681 /* Commence switch and lock */
Alan Cox4001d7b2012-03-02 14:59:20 +0000682 /* Review set_console locks */
Jiri Olsad6378372011-02-11 15:39:28 +0100683 set_console(vsa.console);
Alan Coxd3b5cff2009-09-19 13:13:26 -0700684 }
Jiri Olsad6378372011-02-11 15:39:28 +0100685 break;
Alan Coxd3b5cff2009-09-19 13:13:26 -0700686 }
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 /*
689 * wait until the specified VT has been activated
690 */
691 case VT_WAITACTIVE:
692 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000693 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (arg == 0 || arg > MAX_NR_CONSOLES)
Alan Cox9cc3c222008-04-30 00:53:26 -0700695 ret = -ENXIO;
Alan Cox99cceb4e2012-03-02 14:59:49 +0000696 else
Alan Cox8b92e872009-09-19 13:13:24 -0700697 ret = vt_waitactive(arg);
Alan Cox9cc3c222008-04-30 00:53:26 -0700698 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /*
701 * If a vt is under process control, the kernel will not switch to it
702 * immediately, but postpone the operation until the process calls this
703 * ioctl, allowing the switch to complete.
704 *
705 * According to the X sources this is the behavior:
706 * 0: pending switch-from not OK
707 * 1: pending switch-from OK
708 * 2: completed switch-to OK
709 */
710 case VT_RELDISP:
711 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000712 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Alan Cox4001d7b2012-03-02 14:59:20 +0000714 console_lock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700715 if (vc->vt_mode.mode != VT_PROCESS) {
Alan Cox4001d7b2012-03-02 14:59:20 +0000716 console_unlock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700717 ret = -EINVAL;
718 break;
719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /*
721 * Switching-from response
722 */
723 if (vc->vt_newvt >= 0) {
724 if (arg == 0)
725 /*
726 * Switch disallowed, so forget we were trying
727 * to do it.
728 */
729 vc->vt_newvt = -1;
730
731 else {
732 /*
733 * The current vt has been released, so
734 * complete the switch.
735 */
736 int newvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 newvt = vc->vt_newvt;
738 vc->vt_newvt = -1;
Alan Cox9cc3c222008-04-30 00:53:26 -0700739 ret = vc_allocate(newvt);
740 if (ret) {
Torben Hohnac751ef2011-01-25 15:07:35 -0800741 console_unlock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700742 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744 /*
745 * When we actually do the console switch,
746 * make sure we are atomic with respect to
747 * other console switches..
748 */
749 complete_change_console(vc_cons[newvt].d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Alan Cox9cc3c222008-04-30 00:53:26 -0700751 } else {
752 /*
753 * Switched-to response
754 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 /*
756 * If it's just an ACK, ignore it
757 */
Alan Cox9cc3c222008-04-30 00:53:26 -0700758 if (arg != VT_ACKACQ)
759 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
Torben Hohnac751ef2011-01-25 15:07:35 -0800761 console_unlock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700762 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /*
765 * Disallocate memory associated to VT (but leave VT1)
766 */
767 case VT_DISALLOCATE:
Alan Cox9cc3c222008-04-30 00:53:26 -0700768 if (arg > MAX_NR_CONSOLES) {
769 ret = -ENXIO;
770 break;
771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (arg == 0) {
Alan Coxca9bda02006-09-29 02:00:03 -0700773 /* deallocate all unused consoles, but leave 0 */
Torben Hohnac751ef2011-01-25 15:07:35 -0800774 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 for (i=1; i<MAX_NR_CONSOLES; i++)
776 if (! VT_BUSY(i))
Alan Coxca9bda02006-09-29 02:00:03 -0700777 vc_deallocate(i);
Torben Hohnac751ef2011-01-25 15:07:35 -0800778 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 } else {
Alan Coxca9bda02006-09-29 02:00:03 -0700780 /* deallocate a single console, if possible */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 arg--;
782 if (VT_BUSY(arg))
Alan Cox9cc3c222008-04-30 00:53:26 -0700783 ret = -EBUSY;
784 else if (arg) { /* leave 0 */
Torben Hohnac751ef2011-01-25 15:07:35 -0800785 console_lock();
Alan Coxca9bda02006-09-29 02:00:03 -0700786 vc_deallocate(arg);
Torben Hohnac751ef2011-01-25 15:07:35 -0800787 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789 }
Alan Cox9cc3c222008-04-30 00:53:26 -0700790 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 case VT_RESIZE:
793 {
794 struct vt_sizes __user *vtsizes = up;
Antonino A. Daplase400b6e2007-10-16 01:29:35 -0700795 struct vc_data *vc;
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 ushort ll,cc;
798 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000799 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (get_user(ll, &vtsizes->v_rows) ||
801 get_user(cc, &vtsizes->v_cols))
Alan Cox9cc3c222008-04-30 00:53:26 -0700802 ret = -EFAULT;
803 else {
Torben Hohnac751ef2011-01-25 15:07:35 -0800804 console_lock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700805 for (i = 0; i < MAX_NR_CONSOLES; i++) {
806 vc = vc_cons[i].d;
Antonino A. Daplase400b6e2007-10-16 01:29:35 -0700807
Alan Cox9cc3c222008-04-30 00:53:26 -0700808 if (vc) {
809 vc->vc_resize_user = 1;
Alan Cox4001d7b2012-03-02 14:59:20 +0000810 /* FIXME: review v tty lock */
Alan Cox8c9a9dd2008-08-15 10:39:38 +0100811 vc_resize(vc_cons[i].d, cc, ll);
Alan Cox9cc3c222008-04-30 00:53:26 -0700812 }
Antonino A. Daplase400b6e2007-10-16 01:29:35 -0700813 }
Torben Hohnac751ef2011-01-25 15:07:35 -0800814 console_unlock();
Antonino A. Daplase400b6e2007-10-16 01:29:35 -0700815 }
Alan Cox9cc3c222008-04-30 00:53:26 -0700816 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818
819 case VT_RESIZEX:
820 {
821 struct vt_consize __user *vtconsize = up;
822 ushort ll,cc,vlin,clin,vcol,ccol;
823 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000824 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (!access_ok(VERIFY_READ, vtconsize,
Alan Cox9cc3c222008-04-30 00:53:26 -0700826 sizeof(struct vt_consize))) {
827 ret = -EFAULT;
828 break;
829 }
830 /* FIXME: Should check the copies properly */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 __get_user(ll, &vtconsize->v_rows);
832 __get_user(cc, &vtconsize->v_cols);
833 __get_user(vlin, &vtconsize->v_vlin);
834 __get_user(clin, &vtconsize->v_clin);
835 __get_user(vcol, &vtconsize->v_vcol);
836 __get_user(ccol, &vtconsize->v_ccol);
837 vlin = vlin ? vlin : vc->vc_scan_lines;
838 if (clin) {
839 if (ll) {
Alan Cox9cc3c222008-04-30 00:53:26 -0700840 if (ll != vlin/clin) {
841 /* Parameters don't add up */
842 ret = -EINVAL;
843 break;
844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 } else
846 ll = vlin/clin;
847 }
848 if (vcol && ccol) {
849 if (cc) {
Alan Cox9cc3c222008-04-30 00:53:26 -0700850 if (cc != vcol/ccol) {
851 ret = -EINVAL;
852 break;
853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 } else
855 cc = vcol/ccol;
856 }
857
Alan Cox9cc3c222008-04-30 00:53:26 -0700858 if (clin > 32) {
859 ret = -EINVAL;
860 break;
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 for (i = 0; i < MAX_NR_CONSOLES; i++) {
864 if (!vc_cons[i].d)
865 continue;
Torben Hohnac751ef2011-01-25 15:07:35 -0800866 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (vlin)
868 vc_cons[i].d->vc_scan_lines = vlin;
869 if (clin)
870 vc_cons[i].d->vc_font.height = clin;
Antonino A. Daplase400b6e2007-10-16 01:29:35 -0700871 vc_cons[i].d->vc_resize_user = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 vc_resize(vc_cons[i].d, cc, ll);
Torben Hohnac751ef2011-01-25 15:07:35 -0800873 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
Alan Cox9cc3c222008-04-30 00:53:26 -0700875 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
878 case PIO_FONT: {
879 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000880 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 op.op = KD_FONT_OP_SET;
882 op.flags = KD_FONT_FLAG_OLD | KD_FONT_FLAG_DONT_RECALC; /* Compatibility */
883 op.width = 8;
884 op.height = 0;
885 op.charcount = 256;
886 op.data = up;
Alan Cox9cc3c222008-04-30 00:53:26 -0700887 ret = con_font_op(vc_cons[fg_console].d, &op);
888 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890
891 case GIO_FONT: {
892 op.op = KD_FONT_OP_GET;
893 op.flags = KD_FONT_FLAG_OLD;
894 op.width = 8;
895 op.height = 32;
896 op.charcount = 256;
897 op.data = up;
Alan Cox9cc3c222008-04-30 00:53:26 -0700898 ret = con_font_op(vc_cons[fg_console].d, &op);
899 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901
902 case PIO_CMAP:
903 if (!perm)
Alan Cox9cc3c222008-04-30 00:53:26 -0700904 ret = -EPERM;
905 else
906 ret = con_set_cmap(up);
907 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 case GIO_CMAP:
Alan Cox9cc3c222008-04-30 00:53:26 -0700910 ret = con_get_cmap(up);
911 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 case PIO_FONTX:
914 case GIO_FONTX:
Alan Cox9cc3c222008-04-30 00:53:26 -0700915 ret = do_fontx_ioctl(cmd, up, perm, &op);
916 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 case PIO_FONTRESET:
919 {
920 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000921 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923#ifdef BROKEN_GRAPHICS_PROGRAMS
924 /* With BROKEN_GRAPHICS_PROGRAMS defined, the default
925 font is not saved. */
Alan Cox9cc3c222008-04-30 00:53:26 -0700926 ret = -ENOSYS;
927 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928#else
929 {
930 op.op = KD_FONT_OP_SET_DEFAULT;
931 op.data = NULL;
Alan Cox9cc3c222008-04-30 00:53:26 -0700932 ret = con_font_op(vc_cons[fg_console].d, &op);
933 if (ret)
934 break;
Alan Cox5d1a33f2012-04-24 11:06:06 +0100935 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 con_set_default_unimap(vc_cons[fg_console].d);
Alan Cox5d1a33f2012-04-24 11:06:06 +0100937 console_unlock();
Alan Cox9cc3c222008-04-30 00:53:26 -0700938 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940#endif
941 }
942
943 case KDFONTOP: {
Alan Cox9cc3c222008-04-30 00:53:26 -0700944 if (copy_from_user(&op, up, sizeof(op))) {
945 ret = -EFAULT;
946 break;
947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (!perm && op.op != KD_FONT_OP_GET)
Alan Cox4001d7b2012-03-02 14:59:20 +0000949 return -EPERM;
Alan Cox9cc3c222008-04-30 00:53:26 -0700950 ret = con_font_op(vc, &op);
951 if (ret)
952 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (copy_to_user(up, &op, sizeof(op)))
Alan Cox9cc3c222008-04-30 00:53:26 -0700954 ret = -EFAULT;
955 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957
958 case PIO_SCRNMAP:
959 if (!perm)
Alan Cox9cc3c222008-04-30 00:53:26 -0700960 ret = -EPERM;
Alan Cox5d1a33f2012-04-24 11:06:06 +0100961 else
Alan Cox9cc3c222008-04-30 00:53:26 -0700962 ret = con_set_trans_old(up);
963 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 case GIO_SCRNMAP:
Alan Cox9cc3c222008-04-30 00:53:26 -0700966 ret = con_get_trans_old(up);
967 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 case PIO_UNISCRNMAP:
970 if (!perm)
Alan Cox9cc3c222008-04-30 00:53:26 -0700971 ret = -EPERM;
Alan Cox5d1a33f2012-04-24 11:06:06 +0100972 else
Alan Cox9cc3c222008-04-30 00:53:26 -0700973 ret = con_set_trans_new(up);
974 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 case GIO_UNISCRNMAP:
Alan Cox9cc3c222008-04-30 00:53:26 -0700977 ret = con_get_trans_new(up);
978 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 case PIO_UNIMAPCLR:
981 { struct unimapinit ui;
982 if (!perm)
Alan Cox4001d7b2012-03-02 14:59:20 +0000983 return -EPERM;
Alan Cox9cc3c222008-04-30 00:53:26 -0700984 ret = copy_from_user(&ui, up, sizeof(struct unimapinit));
Dan Carpenter3fde85d2010-06-04 12:20:46 +0200985 if (ret)
986 ret = -EFAULT;
Alan Cox5d1a33f2012-04-24 11:06:06 +0100987 else
Alan Cox9cc3c222008-04-30 00:53:26 -0700988 con_clear_unimap(vc, &ui);
989 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991
992 case PIO_UNIMAP:
993 case GIO_UNIMAP:
Alan Cox9cc3c222008-04-30 00:53:26 -0700994 ret = do_unimap_ioctl(cmd, up, perm, vc);
995 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 case VT_LOCKSWITCH:
998 if (!capable(CAP_SYS_TTY_CONFIG))
Alan Cox4001d7b2012-03-02 14:59:20 +0000999 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 vt_dont_switch = 1;
Alan Cox9cc3c222008-04-30 00:53:26 -07001001 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 case VT_UNLOCKSWITCH:
1003 if (!capable(CAP_SYS_TTY_CONFIG))
Alan Cox4001d7b2012-03-02 14:59:20 +00001004 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 vt_dont_switch = 0;
Alan Cox9cc3c222008-04-30 00:53:26 -07001006 break;
Samuel Thibault533475d2006-08-27 01:23:39 -07001007 case VT_GETHIFONTMASK:
Alan Cox9cc3c222008-04-30 00:53:26 -07001008 ret = put_user(vc->vc_hi_font_mask,
1009 (unsigned short __user *)arg);
1010 break;
Alan Cox8b92e872009-09-19 13:13:24 -07001011 case VT_WAITEVENT:
1012 ret = vt_event_wait_ioctl((struct vt_event __user *)arg);
1013 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 default:
Alan Cox9cc3c222008-04-30 00:53:26 -07001015 ret = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
Alan Cox9cc3c222008-04-30 00:53:26 -07001017out:
Alan Cox9cc3c222008-04-30 00:53:26 -07001018 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021void reset_vc(struct vc_data *vc)
1022{
1023 vc->vc_mode = KD_TEXT;
Alan Cox079c9532012-02-28 14:49:23 +00001024 vt_reset_unicode(vc->vc_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 vc->vt_mode.mode = VT_AUTO;
1026 vc->vt_mode.waitv = 0;
1027 vc->vt_mode.relsig = 0;
1028 vc->vt_mode.acqsig = 0;
1029 vc->vt_mode.frsig = 0;
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08001030 put_pid(vc->vt_pid);
1031 vc->vt_pid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 vc->vt_newvt = -1;
1033 if (!in_interrupt()) /* Via keyboard.c:SAK() - akpm */
1034 reset_palette(vc);
1035}
1036
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08001037void vc_SAK(struct work_struct *work)
1038{
1039 struct vc *vc_con =
1040 container_of(work, struct vc, SAK_work);
1041 struct vc_data *vc;
1042 struct tty_struct *tty;
1043
Torben Hohnac751ef2011-01-25 15:07:35 -08001044 console_lock();
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08001045 vc = vc_con->d;
1046 if (vc) {
Alan Cox079c9532012-02-28 14:49:23 +00001047 /* FIXME: review tty ref counting */
Alan Cox8ce73262010-06-01 22:52:56 +02001048 tty = vc->port.tty;
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08001049 /*
1050 * SAK should also work in all raw modes and reset
1051 * them properly.
1052 */
1053 if (tty)
1054 __do_SAK(tty);
1055 reset_vc(vc);
1056 }
Torben Hohnac751ef2011-01-25 15:07:35 -08001057 console_unlock();
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08001058}
1059
Arnd Bergmanne9216652009-08-06 15:09:28 +02001060#ifdef CONFIG_COMPAT
1061
1062struct compat_consolefontdesc {
1063 unsigned short charcount; /* characters in font (256 or 512) */
1064 unsigned short charheight; /* scan lines per character (1-32) */
1065 compat_caddr_t chardata; /* font data in expanded form */
1066};
1067
1068static inline int
1069compat_fontx_ioctl(int cmd, struct compat_consolefontdesc __user *user_cfd,
1070 int perm, struct console_font_op *op)
1071{
1072 struct compat_consolefontdesc cfdarg;
1073 int i;
1074
1075 if (copy_from_user(&cfdarg, user_cfd, sizeof(struct compat_consolefontdesc)))
1076 return -EFAULT;
1077
1078 switch (cmd) {
1079 case PIO_FONTX:
1080 if (!perm)
1081 return -EPERM;
1082 op->op = KD_FONT_OP_SET;
1083 op->flags = KD_FONT_FLAG_OLD;
1084 op->width = 8;
1085 op->height = cfdarg.charheight;
1086 op->charcount = cfdarg.charcount;
1087 op->data = compat_ptr(cfdarg.chardata);
1088 return con_font_op(vc_cons[fg_console].d, op);
1089 case GIO_FONTX:
1090 op->op = KD_FONT_OP_GET;
1091 op->flags = KD_FONT_FLAG_OLD;
1092 op->width = 8;
1093 op->height = cfdarg.charheight;
1094 op->charcount = cfdarg.charcount;
1095 op->data = compat_ptr(cfdarg.chardata);
1096 i = con_font_op(vc_cons[fg_console].d, op);
1097 if (i)
1098 return i;
1099 cfdarg.charheight = op->height;
1100 cfdarg.charcount = op->charcount;
1101 if (copy_to_user(user_cfd, &cfdarg, sizeof(struct compat_consolefontdesc)))
1102 return -EFAULT;
1103 return 0;
1104 }
1105 return -EINVAL;
1106}
1107
1108struct compat_console_font_op {
1109 compat_uint_t op; /* operation code KD_FONT_OP_* */
1110 compat_uint_t flags; /* KD_FONT_FLAG_* */
1111 compat_uint_t width, height; /* font size */
1112 compat_uint_t charcount;
1113 compat_caddr_t data; /* font data with height fixed to 32 */
1114};
1115
1116static inline int
1117compat_kdfontop_ioctl(struct compat_console_font_op __user *fontop,
1118 int perm, struct console_font_op *op, struct vc_data *vc)
1119{
1120 int i;
1121
1122 if (copy_from_user(op, fontop, sizeof(struct compat_console_font_op)))
1123 return -EFAULT;
1124 if (!perm && op->op != KD_FONT_OP_GET)
1125 return -EPERM;
1126 op->data = compat_ptr(((struct compat_console_font_op *)op)->data);
Arnd Bergmanne9216652009-08-06 15:09:28 +02001127 i = con_font_op(vc, op);
1128 if (i)
1129 return i;
1130 ((struct compat_console_font_op *)op)->data = (unsigned long)op->data;
1131 if (copy_to_user(fontop, op, sizeof(struct compat_console_font_op)))
1132 return -EFAULT;
1133 return 0;
1134}
1135
1136struct compat_unimapdesc {
1137 unsigned short entry_ct;
1138 compat_caddr_t entries;
1139};
1140
1141static inline int
1142compat_unimap_ioctl(unsigned int cmd, struct compat_unimapdesc __user *user_ud,
1143 int perm, struct vc_data *vc)
1144{
1145 struct compat_unimapdesc tmp;
1146 struct unipair __user *tmp_entries;
1147
1148 if (copy_from_user(&tmp, user_ud, sizeof tmp))
1149 return -EFAULT;
1150 tmp_entries = compat_ptr(tmp.entries);
1151 if (tmp_entries)
1152 if (!access_ok(VERIFY_WRITE, tmp_entries,
1153 tmp.entry_ct*sizeof(struct unipair)))
1154 return -EFAULT;
1155 switch (cmd) {
1156 case PIO_UNIMAP:
1157 if (!perm)
1158 return -EPERM;
1159 return con_set_unimap(vc, tmp.entry_ct, tmp_entries);
1160 case GIO_UNIMAP:
1161 if (!perm && fg_console != vc->vc_num)
1162 return -EPERM;
1163 return con_get_unimap(vc, tmp.entry_ct, &(user_ud->entry_ct), tmp_entries);
1164 }
1165 return 0;
1166}
1167
Alan Cox6caa76b2011-02-14 16:27:22 +00001168long vt_compat_ioctl(struct tty_struct *tty,
Arnd Bergmanne9216652009-08-06 15:09:28 +02001169 unsigned int cmd, unsigned long arg)
1170{
1171 struct vc_data *vc = tty->driver_data;
1172 struct console_font_op op; /* used in multiple places here */
Arnd Bergmanne9216652009-08-06 15:09:28 +02001173 unsigned int console;
1174 void __user *up = (void __user *)arg;
1175 int perm;
1176 int ret = 0;
1177
1178 console = vc->vc_num;
1179
Arnd Bergmanne9216652009-08-06 15:09:28 +02001180 if (!vc_cons_allocated(console)) { /* impossible? */
1181 ret = -ENOIOCTLCMD;
1182 goto out;
1183 }
1184
1185 /*
1186 * To have permissions to do most of the vt ioctls, we either have
1187 * to be the owner of the tty, or have CAP_SYS_TTY_CONFIG.
1188 */
1189 perm = 0;
1190 if (current->signal->tty == tty || capable(CAP_SYS_TTY_CONFIG))
1191 perm = 1;
1192
Arnd Bergmanne9216652009-08-06 15:09:28 +02001193 switch (cmd) {
1194 /*
1195 * these need special handlers for incompatible data structures
1196 */
1197 case PIO_FONTX:
1198 case GIO_FONTX:
1199 ret = compat_fontx_ioctl(cmd, up, perm, &op);
1200 break;
1201
1202 case KDFONTOP:
1203 ret = compat_kdfontop_ioctl(up, perm, &op, vc);
1204 break;
1205
1206 case PIO_UNIMAP:
1207 case GIO_UNIMAP:
Andreas Schwab4b1fe772009-09-28 20:10:02 +02001208 ret = compat_unimap_ioctl(cmd, up, perm, vc);
Arnd Bergmanne9216652009-08-06 15:09:28 +02001209 break;
1210
1211 /*
1212 * all these treat 'arg' as an integer
1213 */
1214 case KIOCSOUND:
1215 case KDMKTONE:
1216#ifdef CONFIG_X86
1217 case KDADDIO:
1218 case KDDELIO:
1219#endif
1220 case KDSETMODE:
1221 case KDMAPDISP:
1222 case KDUNMAPDISP:
1223 case KDSKBMODE:
1224 case KDSKBMETA:
1225 case KDSKBLED:
1226 case KDSETLED:
1227 case KDSIGACCEPT:
1228 case VT_ACTIVATE:
1229 case VT_WAITACTIVE:
1230 case VT_RELDISP:
1231 case VT_DISALLOCATE:
1232 case VT_RESIZE:
1233 case VT_RESIZEX:
1234 goto fallback;
1235
1236 /*
1237 * the rest has a compatible data structure behind arg,
1238 * but we have to convert it to a proper 64 bit pointer.
1239 */
1240 default:
1241 arg = (unsigned long)compat_ptr(arg);
1242 goto fallback;
1243 }
1244out:
Arnd Bergmanne9216652009-08-06 15:09:28 +02001245 return ret;
1246
1247fallback:
Alan Cox6caa76b2011-02-14 16:27:22 +00001248 return vt_ioctl(tty, cmd, arg);
Arnd Bergmanne9216652009-08-06 15:09:28 +02001249}
1250
1251
1252#endif /* CONFIG_COMPAT */
1253
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255/*
Alan Coxd3b5cff2009-09-19 13:13:26 -07001256 * Performs the back end of a vt switch. Called under the console
1257 * semaphore.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 */
1259static void complete_change_console(struct vc_data *vc)
1260{
1261 unsigned char old_vc_mode;
Alan Cox8b92e872009-09-19 13:13:24 -07001262 int old = fg_console;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 last_console = fg_console;
1265
1266 /*
1267 * If we're switching, we could be going from KD_GRAPHICS to
1268 * KD_TEXT mode or vice versa, which means we need to blank or
1269 * unblank the screen later.
1270 */
1271 old_vc_mode = vc_cons[fg_console].d->vc_mode;
1272 switch_screen(vc);
1273
1274 /*
Eric W. Biederman3dfcaf162006-12-13 00:34:05 -08001275 * This can't appear below a successful kill_pid(). If it did,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 * then the *blank_screen operation could occur while X, having
1277 * received acqsig, is waking up on another processor. This
1278 * condition can lead to overlapping accesses to the VGA range
1279 * and the framebuffer (causing system lockups).
1280 *
1281 * To account for this we duplicate this code below only if the
1282 * controlling process is gone and we've called reset_vc.
1283 */
1284 if (old_vc_mode != vc->vc_mode) {
1285 if (vc->vc_mode == KD_TEXT)
1286 do_unblank_screen(1);
1287 else
1288 do_blank_screen(1);
1289 }
1290
1291 /*
1292 * If this new console is under process control, send it a signal
1293 * telling it that it has acquired. Also check if it has died and
1294 * clean up (similar to logic employed in change_console())
1295 */
Greg Kroah-Hartman87a6aca2010-03-15 17:14:15 -07001296 if (vc->vt_mode.mode == VT_PROCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /*
Eric W. Biederman3dfcaf162006-12-13 00:34:05 -08001298 * Send the signal as privileged - kill_pid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 * tell us if the process has gone or something else
1300 * is awry
1301 */
Eric W. Biedermanbde0d2c92006-10-02 02:17:14 -07001302 if (kill_pid(vc->vt_pid, vc->vt_mode.acqsig, 1) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 /*
1304 * The controlling process has died, so we revert back to
1305 * normal operation. In this case, we'll also change back
1306 * to KD_TEXT mode. I'm not sure if this is strictly correct
1307 * but it saves the agony when the X server dies and the screen
1308 * remains blanked due to KD_GRAPHICS! It would be nice to do
1309 * this outside of VT_PROCESS but there is no single process
1310 * to account for and tracking tty count may be undesirable.
1311 */
1312 reset_vc(vc);
1313
1314 if (old_vc_mode != vc->vc_mode) {
1315 if (vc->vc_mode == KD_TEXT)
1316 do_unblank_screen(1);
1317 else
1318 do_blank_screen(1);
1319 }
1320 }
1321 }
1322
1323 /*
1324 * Wake anyone waiting for their VT to activate
1325 */
Alan Cox8b92e872009-09-19 13:13:24 -07001326 vt_event_post(VT_EVENT_SWITCH, old, vc->vc_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return;
1328}
1329
1330/*
1331 * Performs the front-end of a vt switch
1332 */
1333void change_console(struct vc_data *new_vc)
1334{
1335 struct vc_data *vc;
1336
1337 if (!new_vc || new_vc->vc_num == fg_console || vt_dont_switch)
1338 return;
1339
1340 /*
1341 * If this vt is in process mode, then we need to handshake with
1342 * that process before switching. Essentially, we store where that
1343 * vt wants to switch to and wait for it to tell us when it's done
1344 * (via VT_RELDISP ioctl).
1345 *
1346 * We also check to see if the controlling process still exists.
1347 * If it doesn't, we reset this vt to auto mode and continue.
1348 * This is a cheap way to track process control. The worst thing
1349 * that can happen is: we send a signal to a process, it dies, and
1350 * the switch gets "lost" waiting for a response; hopefully, the
1351 * user will try again, we'll detect the process is gone (unless
1352 * the user waits just the right amount of time :-) and revert the
1353 * vt to auto control.
1354 */
1355 vc = vc_cons[fg_console].d;
Greg Kroah-Hartman87a6aca2010-03-15 17:14:15 -07001356 if (vc->vt_mode.mode == VT_PROCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 /*
Eric W. Biederman3dfcaf162006-12-13 00:34:05 -08001358 * Send the signal as privileged - kill_pid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 * tell us if the process has gone or something else
Jan Lübbea64314e2007-09-29 18:47:51 +02001360 * is awry.
1361 *
1362 * We need to set vt_newvt *before* sending the signal or we
1363 * have a race.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 */
Jan Lübbea64314e2007-09-29 18:47:51 +02001365 vc->vt_newvt = new_vc->vc_num;
Eric W. Biedermanbde0d2c92006-10-02 02:17:14 -07001366 if (kill_pid(vc->vt_pid, vc->vt_mode.relsig, 1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 /*
Greg Kroah-Hartman87a6aca2010-03-15 17:14:15 -07001368 * It worked. Mark the vt to switch to and
1369 * return. The process needs to send us a
1370 * VT_RELDISP ioctl to complete the switch.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 */
Greg Kroah-Hartman87a6aca2010-03-15 17:14:15 -07001372 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374
1375 /*
Greg Kroah-Hartman87a6aca2010-03-15 17:14:15 -07001376 * The controlling process has died, so we revert back to
1377 * normal operation. In this case, we'll also change back
1378 * to KD_TEXT mode. I'm not sure if this is strictly correct
1379 * but it saves the agony when the X server dies and the screen
1380 * remains blanked due to KD_GRAPHICS! It would be nice to do
1381 * this outside of VT_PROCESS but there is no single process
1382 * to account for and tracking tty count may be undesirable.
1383 */
1384 reset_vc(vc);
1385
1386 /*
1387 * Fall through to normal (VT_AUTO) handling of the switch...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 */
1389 }
1390
1391 /*
1392 * Ignore all switches in KD_GRAPHICS+VT_AUTO mode
1393 */
1394 if (vc->vc_mode == KD_GRAPHICS)
1395 return;
1396
1397 complete_change_console(new_vc);
1398}
Alan Cox8d233552009-09-19 13:13:25 -07001399
1400/* Perform a kernel triggered VT switch for suspend/resume */
1401
1402static int disable_vt_switch;
1403
1404int vt_move_to_console(unsigned int vt, int alloc)
1405{
1406 int prev;
1407
Torben Hohnac751ef2011-01-25 15:07:35 -08001408 console_lock();
Alan Cox8d233552009-09-19 13:13:25 -07001409 /* Graphics mode - up to X */
1410 if (disable_vt_switch) {
Torben Hohnac751ef2011-01-25 15:07:35 -08001411 console_unlock();
Alan Cox8d233552009-09-19 13:13:25 -07001412 return 0;
1413 }
1414 prev = fg_console;
1415
1416 if (alloc && vc_allocate(vt)) {
1417 /* we can't have a free VC for now. Too bad,
1418 * we don't want to mess the screen for now. */
Torben Hohnac751ef2011-01-25 15:07:35 -08001419 console_unlock();
Alan Cox8d233552009-09-19 13:13:25 -07001420 return -ENOSPC;
1421 }
1422
1423 if (set_console(vt)) {
1424 /*
1425 * We're unable to switch to the SUSPEND_CONSOLE.
1426 * Let the calling function know so it can decide
1427 * what to do.
1428 */
Torben Hohnac751ef2011-01-25 15:07:35 -08001429 console_unlock();
Alan Cox8d233552009-09-19 13:13:25 -07001430 return -EIO;
1431 }
Torben Hohnac751ef2011-01-25 15:07:35 -08001432 console_unlock();
Jiri Slaby797938b2009-08-11 23:20:41 +02001433 if (vt_waitactive(vt + 1)) {
Alan Cox8d233552009-09-19 13:13:25 -07001434 pr_debug("Suspend: Can't switch VCs.");
1435 return -EINTR;
1436 }
1437 return prev;
1438}
1439
1440/*
1441 * Normally during a suspend, we allocate a new console and switch to it.
1442 * When we resume, we switch back to the original console. This switch
1443 * can be slow, so on systems where the framebuffer can handle restoration
1444 * of video registers anyways, there's little point in doing the console
1445 * switch. This function allows you to disable it by passing it '0'.
1446 */
1447void pm_set_vt_switch(int do_switch)
1448{
Torben Hohnac751ef2011-01-25 15:07:35 -08001449 console_lock();
Alan Cox8d233552009-09-19 13:13:25 -07001450 disable_vt_switch = !do_switch;
Torben Hohnac751ef2011-01-25 15:07:35 -08001451 console_unlock();
Alan Cox8d233552009-09-19 13:13:25 -07001452}
1453EXPORT_SYMBOL(pm_set_vt_switch);