GNU Linux-libre 4.19.245-gnu1
[releases.git] / drivers / tty / vt / vt_ioctl.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *  Copyright (C) 1992 obz under the linux copyright
4  *
5  *  Dynamic diacritical handling - aeb@cwi.nl - Dec 1993
6  *  Dynamic keymap and string allocation - aeb@cwi.nl - May 1994
7  *  Restrict VT switching via ioctl() - grif@cs.ucr.edu - Dec 1995
8  *  Some code moved for less code duplication - Andi Kleen - Mar 1997
9  *  Check put/get_user, cleanups - acme@conectiva.com.br - Jun 2001
10  */
11
12 #include <linux/types.h>
13 #include <linux/errno.h>
14 #include <linux/sched/signal.h>
15 #include <linux/tty.h>
16 #include <linux/timer.h>
17 #include <linux/kernel.h>
18 #include <linux/compat.h>
19 #include <linux/module.h>
20 #include <linux/kd.h>
21 #include <linux/vt.h>
22 #include <linux/string.h>
23 #include <linux/slab.h>
24 #include <linux/major.h>
25 #include <linux/fs.h>
26 #include <linux/console.h>
27 #include <linux/consolemap.h>
28 #include <linux/signal.h>
29 #include <linux/suspend.h>
30 #include <linux/timex.h>
31
32 #include <asm/io.h>
33 #include <linux/uaccess.h>
34
35 #include <linux/nospec.h>
36
37 #include <linux/kbd_kern.h>
38 #include <linux/vt_kern.h>
39 #include <linux/kbd_diacr.h>
40 #include <linux/selection.h>
41
42 bool vt_dont_switch;
43
44 static inline bool vt_in_use(unsigned int i)
45 {
46         const struct vc_data *vc = vc_cons[i].d;
47
48         /*
49          * console_lock must be held to prevent the vc from being deallocated
50          * while we're checking whether it's in-use.
51          */
52         WARN_CONSOLE_UNLOCKED();
53
54         return vc && kref_read(&vc->port.kref) > 1;
55 }
56
57 static inline bool vt_busy(int i)
58 {
59         if (vt_in_use(i))
60                 return true;
61         if (i == fg_console)
62                 return true;
63         if (vc_is_sel(vc_cons[i].d))
64                 return true;
65
66         return false;
67 }
68
69 /*
70  * Console (vt and kd) routines, as defined by USL SVR4 manual, and by
71  * experimentation and study of X386 SYSV handling.
72  *
73  * One point of difference: SYSV vt's are /dev/vtX, which X >= 0, and
74  * /dev/console is a separate ttyp. Under Linux, /dev/tty0 is /dev/console,
75  * and the vc start at /dev/ttyX, X >= 1. We maintain that here, so we will
76  * always treat our set of vt as numbered 1..MAX_NR_CONSOLES (corresponding to
77  * ttys 0..MAX_NR_CONSOLES-1). Explicitly naming VT 0 is illegal, but using
78  * /dev/tty0 (fg_console) as a target is legal, since an implicit aliasing
79  * to the current console is done by the main ioctl code.
80  */
81
82 #ifdef CONFIG_X86
83 #include <asm/syscalls.h>
84 #endif
85
86 static void complete_change_console(struct vc_data *vc);
87
88 /*
89  *      User space VT_EVENT handlers
90  */
91
92 struct vt_event_wait {
93         struct list_head list;
94         struct vt_event event;
95         int done;
96 };
97
98 static LIST_HEAD(vt_events);
99 static DEFINE_SPINLOCK(vt_event_lock);
100 static DECLARE_WAIT_QUEUE_HEAD(vt_event_waitqueue);
101
102 /**
103  *      vt_event_post
104  *      @event: the event that occurred
105  *      @old: old console
106  *      @new: new console
107  *
108  *      Post an VT event to interested VT handlers
109  */
110
111 void vt_event_post(unsigned int event, unsigned int old, unsigned int new)
112 {
113         struct list_head *pos, *head;
114         unsigned long flags;
115         int wake = 0;
116
117         spin_lock_irqsave(&vt_event_lock, flags);
118         head = &vt_events;
119
120         list_for_each(pos, head) {
121                 struct vt_event_wait *ve = list_entry(pos,
122                                                 struct vt_event_wait, list);
123                 if (!(ve->event.event & event))
124                         continue;
125                 ve->event.event = event;
126                 /* kernel view is consoles 0..n-1, user space view is
127                    console 1..n with 0 meaning current, so we must bias */
128                 ve->event.oldev = old + 1;
129                 ve->event.newev = new + 1;
130                 wake = 1;
131                 ve->done = 1;
132         }
133         spin_unlock_irqrestore(&vt_event_lock, flags);
134         if (wake)
135                 wake_up_interruptible(&vt_event_waitqueue);
136 }
137
138 static void __vt_event_queue(struct vt_event_wait *vw)
139 {
140         unsigned long flags;
141         /* Prepare the event */
142         INIT_LIST_HEAD(&vw->list);
143         vw->done = 0;
144         /* Queue our event */
145         spin_lock_irqsave(&vt_event_lock, flags);
146         list_add(&vw->list, &vt_events);
147         spin_unlock_irqrestore(&vt_event_lock, flags);
148 }
149
150 static void __vt_event_wait(struct vt_event_wait *vw)
151 {
152         /* Wait for it to pass */
153         wait_event_interruptible(vt_event_waitqueue, vw->done);
154 }
155
156 static void __vt_event_dequeue(struct vt_event_wait *vw)
157 {
158         unsigned long flags;
159
160         /* Dequeue it */
161         spin_lock_irqsave(&vt_event_lock, flags);
162         list_del(&vw->list);
163         spin_unlock_irqrestore(&vt_event_lock, flags);
164 }
165
166 /**
167  *      vt_event_wait           -       wait for an event
168  *      @vw: our event
169  *
170  *      Waits for an event to occur which completes our vt_event_wait
171  *      structure. On return the structure has wv->done set to 1 for success
172  *      or 0 if some event such as a signal ended the wait.
173  */
174
175 static void vt_event_wait(struct vt_event_wait *vw)
176 {
177         __vt_event_queue(vw);
178         __vt_event_wait(vw);
179         __vt_event_dequeue(vw);
180 }
181
182 /**
183  *      vt_event_wait_ioctl     -       event ioctl handler
184  *      @arg: argument to ioctl
185  *
186  *      Implement the VT_WAITEVENT ioctl using the VT event interface
187  */
188
189 static int vt_event_wait_ioctl(struct vt_event __user *event)
190 {
191         struct vt_event_wait vw;
192
193         if (copy_from_user(&vw.event, event, sizeof(struct vt_event)))
194                 return -EFAULT;
195         /* Highest supported event for now */
196         if (vw.event.event & ~VT_MAX_EVENT)
197                 return -EINVAL;
198
199         vt_event_wait(&vw);
200         /* If it occurred report it */
201         if (vw.done) {
202                 if (copy_to_user(event, &vw.event, sizeof(struct vt_event)))
203                         return -EFAULT;
204                 return 0;
205         }
206         return -EINTR;
207 }
208
209 /**
210  *      vt_waitactive   -       active console wait
211  *      @event: event code
212  *      @n: new console
213  *
214  *      Helper for event waits. Used to implement the legacy
215  *      event waiting ioctls in terms of events
216  */
217
218 int vt_waitactive(int n)
219 {
220         struct vt_event_wait vw;
221         do {
222                 vw.event.event = VT_EVENT_SWITCH;
223                 __vt_event_queue(&vw);
224                 if (n == fg_console + 1) {
225                         __vt_event_dequeue(&vw);
226                         break;
227                 }
228                 __vt_event_wait(&vw);
229                 __vt_event_dequeue(&vw);
230                 if (vw.done == 0)
231                         return -EINTR;
232         } while (vw.event.newev != n);
233         return 0;
234 }
235
236 /*
237  * these are the valid i/o ports we're allowed to change. they map all the
238  * video ports
239  */
240 #define GPFIRST 0x3b4
241 #define GPLAST 0x3df
242 #define GPNUM (GPLAST - GPFIRST + 1)
243
244
245
246 static inline int 
247 do_fontx_ioctl(struct vc_data *vc, int cmd, struct consolefontdesc __user *user_cfd, int perm, struct console_font_op *op)
248 {
249         struct consolefontdesc cfdarg;
250         int i;
251
252         if (copy_from_user(&cfdarg, user_cfd, sizeof(struct consolefontdesc))) 
253                 return -EFAULT;
254         
255         switch (cmd) {
256         case PIO_FONTX:
257                 if (!perm)
258                         return -EPERM;
259                 op->op = KD_FONT_OP_SET;
260                 op->flags = KD_FONT_FLAG_OLD;
261                 op->width = 8;
262                 op->height = cfdarg.charheight;
263                 op->charcount = cfdarg.charcount;
264                 op->data = cfdarg.chardata;
265                 return con_font_op(vc, op);
266
267         case GIO_FONTX:
268                 op->op = KD_FONT_OP_GET;
269                 op->flags = KD_FONT_FLAG_OLD;
270                 op->width = 8;
271                 op->height = cfdarg.charheight;
272                 op->charcount = cfdarg.charcount;
273                 op->data = cfdarg.chardata;
274                 i = con_font_op(vc, op);
275                 if (i)
276                         return i;
277                 cfdarg.charheight = op->height;
278                 cfdarg.charcount = op->charcount;
279                 if (copy_to_user(user_cfd, &cfdarg, sizeof(struct consolefontdesc)))
280                         return -EFAULT;
281                 return 0;
282         }
283         return -EINVAL;
284 }
285
286 static inline int 
287 do_unimap_ioctl(int cmd, struct unimapdesc __user *user_ud, int perm, struct vc_data *vc)
288 {
289         struct unimapdesc tmp;
290
291         if (copy_from_user(&tmp, user_ud, sizeof tmp))
292                 return -EFAULT;
293         switch (cmd) {
294         case PIO_UNIMAP:
295                 if (!perm)
296                         return -EPERM;
297                 return con_set_unimap(vc, tmp.entry_ct, tmp.entries);
298         case GIO_UNIMAP:
299                 if (!perm && fg_console != vc->vc_num)
300                         return -EPERM;
301                 return con_get_unimap(vc, tmp.entry_ct, &(user_ud->entry_ct), tmp.entries);
302         }
303         return 0;
304 }
305
306 /* deallocate a single console, if possible (leave 0) */
307 static int vt_disallocate(unsigned int vc_num)
308 {
309         struct vc_data *vc = NULL;
310         int ret = 0;
311
312         console_lock();
313         if (vt_busy(vc_num))
314                 ret = -EBUSY;
315         else if (vc_num)
316                 vc = vc_deallocate(vc_num);
317         console_unlock();
318
319         if (vc && vc_num >= MIN_NR_CONSOLES)
320                 tty_port_put(&vc->port);
321
322         return ret;
323 }
324
325 /* deallocate all unused consoles, but leave 0 */
326 static void vt_disallocate_all(void)
327 {
328         struct vc_data *vc[MAX_NR_CONSOLES];
329         int i;
330
331         console_lock();
332         for (i = 1; i < MAX_NR_CONSOLES; i++)
333                 if (!vt_busy(i))
334                         vc[i] = vc_deallocate(i);
335                 else
336                         vc[i] = NULL;
337         console_unlock();
338
339         for (i = 1; i < MAX_NR_CONSOLES; i++) {
340                 if (vc[i] && i >= MIN_NR_CONSOLES)
341                         tty_port_put(&vc[i]->port);
342         }
343 }
344
345
346 /*
347  * We handle the console-specific ioctl's here.  We allow the
348  * capability to modify any console, not just the fg_console. 
349  */
350 int vt_ioctl(struct tty_struct *tty,
351              unsigned int cmd, unsigned long arg)
352 {
353         struct vc_data *vc = tty->driver_data;
354         struct console_font_op op;      /* used in multiple places here */
355         unsigned int console = vc->vc_num;
356         unsigned char ucval;
357         unsigned int uival;
358         void __user *up = (void __user *)arg;
359         int i, perm;
360         int ret = 0;
361
362         /*
363          * To have permissions to do most of the vt ioctls, we either have
364          * to be the owner of the tty, or have CAP_SYS_TTY_CONFIG.
365          */
366         perm = 0;
367         if (current->signal->tty == tty || capable(CAP_SYS_TTY_CONFIG))
368                 perm = 1;
369  
370         switch (cmd) {
371         case TIOCLINUX:
372                 ret = tioclinux(tty, arg);
373                 break;
374         case KIOCSOUND:
375                 if (!perm)
376                         return -EPERM;
377                 /*
378                  * The use of PIT_TICK_RATE is historic, it used to be
379                  * the platform-dependent CLOCK_TICK_RATE between 2.6.12
380                  * and 2.6.36, which was a minor but unfortunate ABI
381                  * change. kd_mksound is locked by the input layer.
382                  */
383                 if (arg)
384                         arg = PIT_TICK_RATE / arg;
385                 kd_mksound(arg, 0);
386                 break;
387
388         case KDMKTONE:
389                 if (!perm)
390                         return -EPERM;
391         {
392                 unsigned int ticks, count;
393                 
394                 /*
395                  * Generate the tone for the appropriate number of ticks.
396                  * If the time is zero, turn off sound ourselves.
397                  */
398                 ticks = msecs_to_jiffies((arg >> 16) & 0xffff);
399                 count = ticks ? (arg & 0xffff) : 0;
400                 if (count)
401                         count = PIT_TICK_RATE / count;
402                 kd_mksound(count, ticks);
403                 break;
404         }
405
406         case KDGKBTYPE:
407                 /*
408                  * this is naïve.
409                  */
410                 ucval = KB_101;
411                 ret = put_user(ucval, (char __user *)arg);
412                 break;
413
414                 /*
415                  * These cannot be implemented on any machine that implements
416                  * ioperm() in user level (such as Alpha PCs) or not at all.
417                  *
418                  * XXX: you should never use these, just call ioperm directly..
419                  */
420 #ifdef CONFIG_X86
421         case KDADDIO:
422         case KDDELIO:
423                 /*
424                  * KDADDIO and KDDELIO may be able to add ports beyond what
425                  * we reject here, but to be safe...
426                  *
427                  * These are locked internally via sys_ioperm
428                  */
429                 if (arg < GPFIRST || arg > GPLAST) {
430                         ret = -EINVAL;
431                         break;
432                 }
433                 ret = ksys_ioperm(arg, 1, (cmd == KDADDIO)) ? -ENXIO : 0;
434                 break;
435
436         case KDENABIO:
437         case KDDISABIO:
438                 ret = ksys_ioperm(GPFIRST, GPNUM,
439                                   (cmd == KDENABIO)) ? -ENXIO : 0;
440                 break;
441 #endif
442
443         /* Linux m68k/i386 interface for setting the keyboard delay/repeat rate */
444                 
445         case KDKBDREP:
446         {
447                 struct kbd_repeat kbrep;
448                 
449                 if (!capable(CAP_SYS_TTY_CONFIG))
450                         return -EPERM;
451
452                 if (copy_from_user(&kbrep, up, sizeof(struct kbd_repeat))) {
453                         ret =  -EFAULT;
454                         break;
455                 }
456                 ret = kbd_rate(&kbrep);
457                 if (ret)
458                         break;
459                 if (copy_to_user(up, &kbrep, sizeof(struct kbd_repeat)))
460                         ret = -EFAULT;
461                 break;
462         }
463
464         case KDSETMODE:
465                 /*
466                  * currently, setting the mode from KD_TEXT to KD_GRAPHICS
467                  * doesn't do a whole lot. i'm not sure if it should do any
468                  * restoration of modes or what...
469                  *
470                  * XXX It should at least call into the driver, fbdev's definitely
471                  * need to restore their engine state. --BenH
472                  */
473                 if (!perm)
474                         return -EPERM;
475                 switch (arg) {
476                 case KD_GRAPHICS:
477                         break;
478                 case KD_TEXT0:
479                 case KD_TEXT1:
480                         arg = KD_TEXT;
481                 case KD_TEXT:
482                         break;
483                 default:
484                         ret = -EINVAL;
485                         goto out;
486                 }
487                 console_lock();
488                 if (vc->vc_mode == (unsigned char) arg) {
489                         console_unlock();
490                         break;
491                 }
492                 vc->vc_mode = (unsigned char) arg;
493                 if (console != fg_console) {
494                         console_unlock();
495                         break;
496                 }
497                 /*
498                  * explicitly blank/unblank the screen if switching modes
499                  */
500                 if (arg == KD_TEXT)
501                         do_unblank_screen(1);
502                 else
503                         do_blank_screen(1);
504                 console_unlock();
505                 break;
506
507         case KDGETMODE:
508                 uival = vc->vc_mode;
509                 goto setint;
510
511         case KDMAPDISP:
512         case KDUNMAPDISP:
513                 /*
514                  * these work like a combination of mmap and KDENABIO.
515                  * this could be easily finished.
516                  */
517                 ret = -EINVAL;
518                 break;
519
520         case KDSKBMODE:
521                 if (!perm)
522                         return -EPERM;
523                 ret = vt_do_kdskbmode(console, arg);
524                 if (ret == 0)
525                         tty_ldisc_flush(tty);
526                 break;
527
528         case KDGKBMODE:
529                 uival = vt_do_kdgkbmode(console);
530                 ret = put_user(uival, (int __user *)arg);
531                 break;
532
533         /* this could be folded into KDSKBMODE, but for compatibility
534            reasons it is not so easy to fold KDGKBMETA into KDGKBMODE */
535         case KDSKBMETA:
536                 ret = vt_do_kdskbmeta(console, arg);
537                 break;
538
539         case KDGKBMETA:
540                 /* FIXME: should review whether this is worth locking */
541                 uival = vt_do_kdgkbmeta(console);
542         setint:
543                 ret = put_user(uival, (int __user *)arg);
544                 break;
545
546         case KDGETKEYCODE:
547         case KDSETKEYCODE:
548                 if(!capable(CAP_SYS_TTY_CONFIG))
549                         perm = 0;
550                 ret = vt_do_kbkeycode_ioctl(cmd, up, perm);
551                 break;
552
553         case KDGKBENT:
554         case KDSKBENT:
555                 ret = vt_do_kdsk_ioctl(cmd, up, perm, console);
556                 break;
557
558         case KDGKBSENT:
559         case KDSKBSENT:
560                 ret = vt_do_kdgkb_ioctl(cmd, up, perm);
561                 break;
562
563         /* Diacritical processing. Handled in keyboard.c as it has
564            to operate on the keyboard locks and structures */
565         case KDGKBDIACR:
566         case KDGKBDIACRUC:
567         case KDSKBDIACR:
568         case KDSKBDIACRUC:
569                 ret = vt_do_diacrit(cmd, up, perm);
570                 break;
571
572         /* the ioctls below read/set the flags usually shown in the leds */
573         /* don't use them - they will go away without warning */
574         case KDGKBLED:
575         case KDSKBLED:
576         case KDGETLED:
577         case KDSETLED:
578                 ret = vt_do_kdskled(console, cmd, arg, perm);
579                 break;
580
581         /*
582          * A process can indicate its willingness to accept signals
583          * generated by pressing an appropriate key combination.
584          * Thus, one can have a daemon that e.g. spawns a new console
585          * upon a keypress and then changes to it.
586          * See also the kbrequest field of inittab(5).
587          */
588         case KDSIGACCEPT:
589         {
590                 if (!perm || !capable(CAP_KILL))
591                         return -EPERM;
592                 if (!valid_signal(arg) || arg < 1 || arg == SIGKILL)
593                         ret = -EINVAL;
594                 else {
595                         spin_lock_irq(&vt_spawn_con.lock);
596                         put_pid(vt_spawn_con.pid);
597                         vt_spawn_con.pid = get_pid(task_pid(current));
598                         vt_spawn_con.sig = arg;
599                         spin_unlock_irq(&vt_spawn_con.lock);
600                 }
601                 break;
602         }
603
604         case VT_SETMODE:
605         {
606                 struct vt_mode tmp;
607
608                 if (!perm)
609                         return -EPERM;
610                 if (copy_from_user(&tmp, up, sizeof(struct vt_mode))) {
611                         ret = -EFAULT;
612                         goto out;
613                 }
614                 if (tmp.mode != VT_AUTO && tmp.mode != VT_PROCESS) {
615                         ret = -EINVAL;
616                         goto out;
617                 }
618                 console_lock();
619                 vc->vt_mode = tmp;
620                 /* the frsig is ignored, so we set it to 0 */
621                 vc->vt_mode.frsig = 0;
622                 put_pid(vc->vt_pid);
623                 vc->vt_pid = get_pid(task_pid(current));
624                 /* no switch is required -- saw@shade.msu.ru */
625                 vc->vt_newvt = -1;
626                 console_unlock();
627                 break;
628         }
629
630         case VT_GETMODE:
631         {
632                 struct vt_mode tmp;
633                 int rc;
634
635                 console_lock();
636                 memcpy(&tmp, &vc->vt_mode, sizeof(struct vt_mode));
637                 console_unlock();
638
639                 rc = copy_to_user(up, &tmp, sizeof(struct vt_mode));
640                 if (rc)
641                         ret = -EFAULT;
642                 break;
643         }
644
645         /*
646          * Returns global vt state. Note that VT 0 is always open, since
647          * it's an alias for the current VT, and people can't use it here.
648          * We cannot return state for more than 16 VTs, since v_state is short.
649          */
650         case VT_GETSTATE:
651         {
652                 struct vt_stat __user *vtstat = up;
653                 unsigned short state, mask;
654
655                 if (put_user(fg_console + 1, &vtstat->v_active))
656                         ret = -EFAULT;
657                 else {
658                         state = 1;      /* /dev/tty0 is always open */
659                         console_lock(); /* required by vt_in_use() */
660                         for (i = 0, mask = 2; i < MAX_NR_CONSOLES && mask;
661                                                         ++i, mask <<= 1)
662                                 if (vt_in_use(i))
663                                         state |= mask;
664                         console_unlock();
665                         ret = put_user(state, &vtstat->v_state);
666                 }
667                 break;
668         }
669
670         /*
671          * Returns the first available (non-opened) console.
672          */
673         case VT_OPENQRY:
674                 console_lock(); /* required by vt_in_use() */
675                 for (i = 0; i < MAX_NR_CONSOLES; ++i)
676                         if (!vt_in_use(i))
677                                 break;
678                 console_unlock();
679                 uival = i < MAX_NR_CONSOLES ? (i+1) : -1;
680                 goto setint;             
681
682         /*
683          * ioctl(fd, VT_ACTIVATE, num) will cause us to switch to vt # num,
684          * with num >= 1 (switches to vt 0, our console, are not allowed, just
685          * to preserve sanity).
686          */
687         case VT_ACTIVATE:
688                 if (!perm)
689                         return -EPERM;
690                 if (arg == 0 || arg > MAX_NR_CONSOLES)
691                         ret =  -ENXIO;
692                 else {
693                         arg--;
694                         arg = array_index_nospec(arg, MAX_NR_CONSOLES);
695                         console_lock();
696                         ret = vc_allocate(arg);
697                         console_unlock();
698                         if (ret)
699                                 break;
700                         set_console(arg);
701                 }
702                 break;
703
704         case VT_SETACTIVATE:
705         {
706                 struct vt_setactivate vsa;
707
708                 if (!perm)
709                         return -EPERM;
710
711                 if (copy_from_user(&vsa, (struct vt_setactivate __user *)arg,
712                                         sizeof(struct vt_setactivate))) {
713                         ret = -EFAULT;
714                         goto out;
715                 }
716                 if (vsa.console == 0 || vsa.console > MAX_NR_CONSOLES)
717                         ret = -ENXIO;
718                 else {
719                         vsa.console--;
720                         vsa.console = array_index_nospec(vsa.console,
721                                                          MAX_NR_CONSOLES);
722                         console_lock();
723                         ret = vc_allocate(vsa.console);
724                         if (ret == 0) {
725                                 struct vc_data *nvc;
726                                 /* This is safe providing we don't drop the
727                                    console sem between vc_allocate and
728                                    finishing referencing nvc */
729                                 nvc = vc_cons[vsa.console].d;
730                                 nvc->vt_mode = vsa.mode;
731                                 nvc->vt_mode.frsig = 0;
732                                 put_pid(nvc->vt_pid);
733                                 nvc->vt_pid = get_pid(task_pid(current));
734                         }
735                         console_unlock();
736                         if (ret)
737                                 break;
738                         /* Commence switch and lock */
739                         /* Review set_console locks */
740                         set_console(vsa.console);
741                 }
742                 break;
743         }
744
745         /*
746          * wait until the specified VT has been activated
747          */
748         case VT_WAITACTIVE:
749                 if (!perm)
750                         return -EPERM;
751                 if (arg == 0 || arg > MAX_NR_CONSOLES)
752                         ret = -ENXIO;
753                 else
754                         ret = vt_waitactive(arg);
755                 break;
756
757         /*
758          * If a vt is under process control, the kernel will not switch to it
759          * immediately, but postpone the operation until the process calls this
760          * ioctl, allowing the switch to complete.
761          *
762          * According to the X sources this is the behavior:
763          *      0:      pending switch-from not OK
764          *      1:      pending switch-from OK
765          *      2:      completed switch-to OK
766          */
767         case VT_RELDISP:
768                 if (!perm)
769                         return -EPERM;
770
771                 console_lock();
772                 if (vc->vt_mode.mode != VT_PROCESS) {
773                         console_unlock();
774                         ret = -EINVAL;
775                         break;
776                 }
777                 /*
778                  * Switching-from response
779                  */
780                 if (vc->vt_newvt >= 0) {
781                         if (arg == 0)
782                                 /*
783                                  * Switch disallowed, so forget we were trying
784                                  * to do it.
785                                  */
786                                 vc->vt_newvt = -1;
787
788                         else {
789                                 /*
790                                  * The current vt has been released, so
791                                  * complete the switch.
792                                  */
793                                 int newvt;
794                                 newvt = vc->vt_newvt;
795                                 vc->vt_newvt = -1;
796                                 ret = vc_allocate(newvt);
797                                 if (ret) {
798                                         console_unlock();
799                                         break;
800                                 }
801                                 /*
802                                  * When we actually do the console switch,
803                                  * make sure we are atomic with respect to
804                                  * other console switches..
805                                  */
806                                 complete_change_console(vc_cons[newvt].d);
807                         }
808                 } else {
809                         /*
810                          * Switched-to response
811                          */
812                         /*
813                          * If it's just an ACK, ignore it
814                          */
815                         if (arg != VT_ACKACQ)
816                                 ret = -EINVAL;
817                 }
818                 console_unlock();
819                 break;
820
821          /*
822           * Disallocate memory associated to VT (but leave VT1)
823           */
824          case VT_DISALLOCATE:
825                 if (arg > MAX_NR_CONSOLES) {
826                         ret = -ENXIO;
827                         break;
828                 }
829                 if (arg == 0)
830                         vt_disallocate_all();
831                 else
832                         ret = vt_disallocate(--arg);
833                 break;
834
835         case VT_RESIZE:
836         {
837                 struct vt_sizes __user *vtsizes = up;
838                 struct vc_data *vc;
839
840                 ushort ll,cc;
841                 if (!perm)
842                         return -EPERM;
843                 if (get_user(ll, &vtsizes->v_rows) ||
844                     get_user(cc, &vtsizes->v_cols))
845                         ret = -EFAULT;
846                 else {
847                         console_lock();
848                         for (i = 0; i < MAX_NR_CONSOLES; i++) {
849                                 vc = vc_cons[i].d;
850
851                                 if (vc) {
852                                         vc->vc_resize_user = 1;
853                                         /* FIXME: review v tty lock */
854                                         vc_resize(vc_cons[i].d, cc, ll);
855                                 }
856                         }
857                         console_unlock();
858                 }
859                 break;
860         }
861
862         case VT_RESIZEX:
863         {
864                 struct vt_consize v;
865                 if (!perm)
866                         return -EPERM;
867                 if (copy_from_user(&v, up, sizeof(struct vt_consize)))
868                         return -EFAULT;
869                 /* FIXME: Should check the copies properly */
870                 if (!v.v_vlin)
871                         v.v_vlin = vc->vc_scan_lines;
872                 if (v.v_clin) {
873                         int rows = v.v_vlin/v.v_clin;
874                         if (v.v_rows != rows) {
875                                 if (v.v_rows) /* Parameters don't add up */
876                                         return -EINVAL;
877                                 v.v_rows = rows;
878                         }
879                 }
880                 if (v.v_vcol && v.v_ccol) {
881                         int cols = v.v_vcol/v.v_ccol;
882                         if (v.v_cols != cols) {
883                                 if (v.v_cols)
884                                         return -EINVAL;
885                                 v.v_cols = cols;
886                         }
887                 }
888
889                 if (v.v_clin > 32)
890                         return -EINVAL;
891
892                 for (i = 0; i < MAX_NR_CONSOLES; i++) {
893                         struct vc_data *vcp;
894
895                         if (!vc_cons[i].d)
896                                 continue;
897                         console_lock();
898                         vcp = vc_cons[i].d;
899                         if (vcp) {
900                                 int ret;
901                                 int save_scan_lines = vcp->vc_scan_lines;
902                                 int save_cell_height = vcp->vc_cell_height;
903
904                                 if (v.v_vlin)
905                                         vcp->vc_scan_lines = v.v_vlin;
906                                 if (v.v_clin)
907                                         vcp->vc_cell_height = v.v_clin;
908                                 vcp->vc_resize_user = 1;
909                                 ret = vc_resize(vcp, v.v_cols, v.v_rows);
910                                 if (ret) {
911                                         vcp->vc_scan_lines = save_scan_lines;
912                                         vcp->vc_cell_height = save_cell_height;
913                                         console_unlock();
914                                         return ret;
915                                 }
916                         }
917                         console_unlock();
918                 }
919                 break;
920         }
921
922         case PIO_FONT: {
923                 if (!perm)
924                         return -EPERM;
925                 op.op = KD_FONT_OP_SET;
926                 op.flags = KD_FONT_FLAG_OLD | KD_FONT_FLAG_DONT_RECALC; /* Compatibility */
927                 op.width = 8;
928                 op.height = 0;
929                 op.charcount = 256;
930                 op.data = up;
931                 ret = con_font_op(vc, &op);
932                 break;
933         }
934
935         case GIO_FONT: {
936                 op.op = KD_FONT_OP_GET;
937                 op.flags = KD_FONT_FLAG_OLD;
938                 op.width = 8;
939                 op.height = 32;
940                 op.charcount = 256;
941                 op.data = up;
942                 ret = con_font_op(vc, &op);
943                 break;
944         }
945
946         case PIO_CMAP:
947                 if (!perm)
948                         ret = -EPERM;
949                 else
950                         ret = con_set_cmap(up);
951                 break;
952
953         case GIO_CMAP:
954                 ret = con_get_cmap(up);
955                 break;
956
957         case PIO_FONTX:
958         case GIO_FONTX:
959                 ret = do_fontx_ioctl(vc, cmd, up, perm, &op);
960                 break;
961
962         case PIO_FONTRESET:
963         {
964                 if (!perm)
965                         return -EPERM;
966
967 #ifdef BROKEN_GRAPHICS_PROGRAMS
968                 /* With BROKEN_GRAPHICS_PROGRAMS defined, the default
969                    font is not saved. */
970                 ret = -ENOSYS;
971                 break;
972 #else
973                 {
974                 op.op = KD_FONT_OP_SET_DEFAULT;
975                 op.data = NULL;
976                 ret = con_font_op(vc, &op);
977                 if (ret)
978                         break;
979                 console_lock();
980                 con_set_default_unimap(vc);
981                 console_unlock();
982                 break;
983                 }
984 #endif
985         }
986
987         case KDFONTOP: {
988                 if (copy_from_user(&op, up, sizeof(op))) {
989                         ret = -EFAULT;
990                         break;
991                 }
992                 if (!perm && op.op != KD_FONT_OP_GET)
993                         return -EPERM;
994                 ret = con_font_op(vc, &op);
995                 if (ret)
996                         break;
997                 if (copy_to_user(up, &op, sizeof(op)))
998                         ret = -EFAULT;
999                 break;
1000         }
1001
1002         case PIO_SCRNMAP:
1003                 if (!perm)
1004                         ret = -EPERM;
1005                 else
1006                         ret = con_set_trans_old(up);
1007                 break;
1008
1009         case GIO_SCRNMAP:
1010                 ret = con_get_trans_old(up);
1011                 break;
1012
1013         case PIO_UNISCRNMAP:
1014                 if (!perm)
1015                         ret = -EPERM;
1016                 else
1017                         ret = con_set_trans_new(up);
1018                 break;
1019
1020         case GIO_UNISCRNMAP:
1021                 ret = con_get_trans_new(up);
1022                 break;
1023
1024         case PIO_UNIMAPCLR:
1025                 if (!perm)
1026                         return -EPERM;
1027                 con_clear_unimap(vc);
1028                 break;
1029
1030         case PIO_UNIMAP:
1031         case GIO_UNIMAP:
1032                 ret = do_unimap_ioctl(cmd, up, perm, vc);
1033                 break;
1034
1035         case VT_LOCKSWITCH:
1036                 if (!capable(CAP_SYS_TTY_CONFIG))
1037                         return -EPERM;
1038                 vt_dont_switch = true;
1039                 break;
1040         case VT_UNLOCKSWITCH:
1041                 if (!capable(CAP_SYS_TTY_CONFIG))
1042                         return -EPERM;
1043                 vt_dont_switch = false;
1044                 break;
1045         case VT_GETHIFONTMASK:
1046                 ret = put_user(vc->vc_hi_font_mask,
1047                                         (unsigned short __user *)arg);
1048                 break;
1049         case VT_WAITEVENT:
1050                 ret = vt_event_wait_ioctl((struct vt_event __user *)arg);
1051                 break;
1052         default:
1053                 ret = -ENOIOCTLCMD;
1054         }
1055 out:
1056         return ret;
1057 }
1058
1059 void reset_vc(struct vc_data *vc)
1060 {
1061         vc->vc_mode = KD_TEXT;
1062         vt_reset_unicode(vc->vc_num);
1063         vc->vt_mode.mode = VT_AUTO;
1064         vc->vt_mode.waitv = 0;
1065         vc->vt_mode.relsig = 0;
1066         vc->vt_mode.acqsig = 0;
1067         vc->vt_mode.frsig = 0;
1068         put_pid(vc->vt_pid);
1069         vc->vt_pid = NULL;
1070         vc->vt_newvt = -1;
1071         if (!in_interrupt())    /* Via keyboard.c:SAK() - akpm */
1072                 reset_palette(vc);
1073 }
1074
1075 void vc_SAK(struct work_struct *work)
1076 {
1077         struct vc *vc_con =
1078                 container_of(work, struct vc, SAK_work);
1079         struct vc_data *vc;
1080         struct tty_struct *tty;
1081
1082         console_lock();
1083         vc = vc_con->d;
1084         if (vc) {
1085                 /* FIXME: review tty ref counting */
1086                 tty = vc->port.tty;
1087                 /*
1088                  * SAK should also work in all raw modes and reset
1089                  * them properly.
1090                  */
1091                 if (tty)
1092                         __do_SAK(tty);
1093                 reset_vc(vc);
1094         }
1095         console_unlock();
1096 }
1097
1098 #ifdef CONFIG_COMPAT
1099
1100 struct compat_consolefontdesc {
1101         unsigned short charcount;       /* characters in font (256 or 512) */
1102         unsigned short charheight;      /* scan lines per character (1-32) */
1103         compat_caddr_t chardata;        /* font data in expanded form */
1104 };
1105
1106 static inline int
1107 compat_fontx_ioctl(struct vc_data *vc, int cmd,
1108                    struct compat_consolefontdesc __user *user_cfd,
1109                    int perm, struct console_font_op *op)
1110 {
1111         struct compat_consolefontdesc cfdarg;
1112         int i;
1113
1114         if (copy_from_user(&cfdarg, user_cfd, sizeof(struct compat_consolefontdesc)))
1115                 return -EFAULT;
1116
1117         switch (cmd) {
1118         case PIO_FONTX:
1119                 if (!perm)
1120                         return -EPERM;
1121                 op->op = KD_FONT_OP_SET;
1122                 op->flags = KD_FONT_FLAG_OLD;
1123                 op->width = 8;
1124                 op->height = cfdarg.charheight;
1125                 op->charcount = cfdarg.charcount;
1126                 op->data = compat_ptr(cfdarg.chardata);
1127                 return con_font_op(vc, op);
1128
1129         case GIO_FONTX:
1130                 op->op = KD_FONT_OP_GET;
1131                 op->flags = KD_FONT_FLAG_OLD;
1132                 op->width = 8;
1133                 op->height = cfdarg.charheight;
1134                 op->charcount = cfdarg.charcount;
1135                 op->data = compat_ptr(cfdarg.chardata);
1136                 i = con_font_op(vc, op);
1137                 if (i)
1138                         return i;
1139                 cfdarg.charheight = op->height;
1140                 cfdarg.charcount = op->charcount;
1141                 if (copy_to_user(user_cfd, &cfdarg, sizeof(struct compat_consolefontdesc)))
1142                         return -EFAULT;
1143                 return 0;
1144         }
1145         return -EINVAL;
1146 }
1147
1148 struct compat_console_font_op {
1149         compat_uint_t op;        /* operation code KD_FONT_OP_* */
1150         compat_uint_t flags;     /* KD_FONT_FLAG_* */
1151         compat_uint_t width, height;     /* font size */
1152         compat_uint_t charcount;
1153         compat_caddr_t data;    /* font data with height fixed to 32 */
1154 };
1155
1156 static inline int
1157 compat_kdfontop_ioctl(struct compat_console_font_op __user *fontop,
1158                          int perm, struct console_font_op *op, struct vc_data *vc)
1159 {
1160         int i;
1161
1162         if (copy_from_user(op, fontop, sizeof(struct compat_console_font_op)))
1163                 return -EFAULT;
1164         if (!perm && op->op != KD_FONT_OP_GET)
1165                 return -EPERM;
1166         op->data = compat_ptr(((struct compat_console_font_op *)op)->data);
1167         i = con_font_op(vc, op);
1168         if (i)
1169                 return i;
1170         ((struct compat_console_font_op *)op)->data = (unsigned long)op->data;
1171         if (copy_to_user(fontop, op, sizeof(struct compat_console_font_op)))
1172                 return -EFAULT;
1173         return 0;
1174 }
1175
1176 struct compat_unimapdesc {
1177         unsigned short entry_ct;
1178         compat_caddr_t entries;
1179 };
1180
1181 static inline int
1182 compat_unimap_ioctl(unsigned int cmd, struct compat_unimapdesc __user *user_ud,
1183                          int perm, struct vc_data *vc)
1184 {
1185         struct compat_unimapdesc tmp;
1186         struct unipair __user *tmp_entries;
1187
1188         if (copy_from_user(&tmp, user_ud, sizeof tmp))
1189                 return -EFAULT;
1190         tmp_entries = compat_ptr(tmp.entries);
1191         switch (cmd) {
1192         case PIO_UNIMAP:
1193                 if (!perm)
1194                         return -EPERM;
1195                 return con_set_unimap(vc, tmp.entry_ct, tmp_entries);
1196         case GIO_UNIMAP:
1197                 if (!perm && fg_console != vc->vc_num)
1198                         return -EPERM;
1199                 return con_get_unimap(vc, tmp.entry_ct, &(user_ud->entry_ct), tmp_entries);
1200         }
1201         return 0;
1202 }
1203
1204 long vt_compat_ioctl(struct tty_struct *tty,
1205              unsigned int cmd, unsigned long arg)
1206 {
1207         struct vc_data *vc = tty->driver_data;
1208         struct console_font_op op;      /* used in multiple places here */
1209         void __user *up = (void __user *)arg;
1210         int perm;
1211         int ret = 0;
1212
1213         /*
1214          * To have permissions to do most of the vt ioctls, we either have
1215          * to be the owner of the tty, or have CAP_SYS_TTY_CONFIG.
1216          */
1217         perm = 0;
1218         if (current->signal->tty == tty || capable(CAP_SYS_TTY_CONFIG))
1219                 perm = 1;
1220
1221         switch (cmd) {
1222         /*
1223          * these need special handlers for incompatible data structures
1224          */
1225         case PIO_FONTX:
1226         case GIO_FONTX:
1227                 ret = compat_fontx_ioctl(vc, cmd, up, perm, &op);
1228                 break;
1229
1230         case KDFONTOP:
1231                 ret = compat_kdfontop_ioctl(up, perm, &op, vc);
1232                 break;
1233
1234         case PIO_UNIMAP:
1235         case GIO_UNIMAP:
1236                 ret = compat_unimap_ioctl(cmd, up, perm, vc);
1237                 break;
1238
1239         /*
1240          * all these treat 'arg' as an integer
1241          */
1242         case KIOCSOUND:
1243         case KDMKTONE:
1244 #ifdef CONFIG_X86
1245         case KDADDIO:
1246         case KDDELIO:
1247 #endif
1248         case KDSETMODE:
1249         case KDMAPDISP:
1250         case KDUNMAPDISP:
1251         case KDSKBMODE:
1252         case KDSKBMETA:
1253         case KDSKBLED:
1254         case KDSETLED:
1255         case KDSIGACCEPT:
1256         case VT_ACTIVATE:
1257         case VT_WAITACTIVE:
1258         case VT_RELDISP:
1259         case VT_DISALLOCATE:
1260         case VT_RESIZE:
1261         case VT_RESIZEX:
1262                 goto fallback;
1263
1264         /*
1265          * the rest has a compatible data structure behind arg,
1266          * but we have to convert it to a proper 64 bit pointer.
1267          */
1268         default:
1269                 arg = (unsigned long)compat_ptr(arg);
1270                 goto fallback;
1271         }
1272
1273         return ret;
1274
1275 fallback:
1276         return vt_ioctl(tty, cmd, arg);
1277 }
1278
1279
1280 #endif /* CONFIG_COMPAT */
1281
1282
1283 /*
1284  * Performs the back end of a vt switch. Called under the console
1285  * semaphore.
1286  */
1287 static void complete_change_console(struct vc_data *vc)
1288 {
1289         unsigned char old_vc_mode;
1290         int old = fg_console;
1291
1292         last_console = fg_console;
1293
1294         /*
1295          * If we're switching, we could be going from KD_GRAPHICS to
1296          * KD_TEXT mode or vice versa, which means we need to blank or
1297          * unblank the screen later.
1298          */
1299         old_vc_mode = vc_cons[fg_console].d->vc_mode;
1300         switch_screen(vc);
1301
1302         /*
1303          * This can't appear below a successful kill_pid().  If it did,
1304          * then the *blank_screen operation could occur while X, having
1305          * received acqsig, is waking up on another processor.  This
1306          * condition can lead to overlapping accesses to the VGA range
1307          * and the framebuffer (causing system lockups).
1308          *
1309          * To account for this we duplicate this code below only if the
1310          * controlling process is gone and we've called reset_vc.
1311          */
1312         if (old_vc_mode != vc->vc_mode) {
1313                 if (vc->vc_mode == KD_TEXT)
1314                         do_unblank_screen(1);
1315                 else
1316                         do_blank_screen(1);
1317         }
1318
1319         /*
1320          * If this new console is under process control, send it a signal
1321          * telling it that it has acquired. Also check if it has died and
1322          * clean up (similar to logic employed in change_console())
1323          */
1324         if (vc->vt_mode.mode == VT_PROCESS) {
1325                 /*
1326                  * Send the signal as privileged - kill_pid() will
1327                  * tell us if the process has gone or something else
1328                  * is awry
1329                  */
1330                 if (kill_pid(vc->vt_pid, vc->vt_mode.acqsig, 1) != 0) {
1331                 /*
1332                  * The controlling process has died, so we revert back to
1333                  * normal operation. In this case, we'll also change back
1334                  * to KD_TEXT mode. I'm not sure if this is strictly correct
1335                  * but it saves the agony when the X server dies and the screen
1336                  * remains blanked due to KD_GRAPHICS! It would be nice to do
1337                  * this outside of VT_PROCESS but there is no single process
1338                  * to account for and tracking tty count may be undesirable.
1339                  */
1340                         reset_vc(vc);
1341
1342                         if (old_vc_mode != vc->vc_mode) {
1343                                 if (vc->vc_mode == KD_TEXT)
1344                                         do_unblank_screen(1);
1345                                 else
1346                                         do_blank_screen(1);
1347                         }
1348                 }
1349         }
1350
1351         /*
1352          * Wake anyone waiting for their VT to activate
1353          */
1354         vt_event_post(VT_EVENT_SWITCH, old, vc->vc_num);
1355         return;
1356 }
1357
1358 /*
1359  * Performs the front-end of a vt switch
1360  */
1361 void change_console(struct vc_data *new_vc)
1362 {
1363         struct vc_data *vc;
1364
1365         if (!new_vc || new_vc->vc_num == fg_console || vt_dont_switch)
1366                 return;
1367
1368         /*
1369          * If this vt is in process mode, then we need to handshake with
1370          * that process before switching. Essentially, we store where that
1371          * vt wants to switch to and wait for it to tell us when it's done
1372          * (via VT_RELDISP ioctl).
1373          *
1374          * We also check to see if the controlling process still exists.
1375          * If it doesn't, we reset this vt to auto mode and continue.
1376          * This is a cheap way to track process control. The worst thing
1377          * that can happen is: we send a signal to a process, it dies, and
1378          * the switch gets "lost" waiting for a response; hopefully, the
1379          * user will try again, we'll detect the process is gone (unless
1380          * the user waits just the right amount of time :-) and revert the
1381          * vt to auto control.
1382          */
1383         vc = vc_cons[fg_console].d;
1384         if (vc->vt_mode.mode == VT_PROCESS) {
1385                 /*
1386                  * Send the signal as privileged - kill_pid() will
1387                  * tell us if the process has gone or something else
1388                  * is awry.
1389                  *
1390                  * We need to set vt_newvt *before* sending the signal or we
1391                  * have a race.
1392                  */
1393                 vc->vt_newvt = new_vc->vc_num;
1394                 if (kill_pid(vc->vt_pid, vc->vt_mode.relsig, 1) == 0) {
1395                         /*
1396                          * It worked. Mark the vt to switch to and
1397                          * return. The process needs to send us a
1398                          * VT_RELDISP ioctl to complete the switch.
1399                          */
1400                         return;
1401                 }
1402
1403                 /*
1404                  * The controlling process has died, so we revert back to
1405                  * normal operation. In this case, we'll also change back
1406                  * to KD_TEXT mode. I'm not sure if this is strictly correct
1407                  * but it saves the agony when the X server dies and the screen
1408                  * remains blanked due to KD_GRAPHICS! It would be nice to do
1409                  * this outside of VT_PROCESS but there is no single process
1410                  * to account for and tracking tty count may be undesirable.
1411                  */
1412                 reset_vc(vc);
1413
1414                 /*
1415                  * Fall through to normal (VT_AUTO) handling of the switch...
1416                  */
1417         }
1418
1419         /*
1420          * Ignore all switches in KD_GRAPHICS+VT_AUTO mode
1421          */
1422         if (vc->vc_mode == KD_GRAPHICS)
1423                 return;
1424
1425         complete_change_console(new_vc);
1426 }
1427
1428 /* Perform a kernel triggered VT switch for suspend/resume */
1429
1430 static int disable_vt_switch;
1431
1432 int vt_move_to_console(unsigned int vt, int alloc)
1433 {
1434         int prev;
1435
1436         console_lock();
1437         /* Graphics mode - up to X */
1438         if (disable_vt_switch) {
1439                 console_unlock();
1440                 return 0;
1441         }
1442         prev = fg_console;
1443
1444         if (alloc && vc_allocate(vt)) {
1445                 /* we can't have a free VC for now. Too bad,
1446                  * we don't want to mess the screen for now. */
1447                 console_unlock();
1448                 return -ENOSPC;
1449         }
1450
1451         if (set_console(vt)) {
1452                 /*
1453                  * We're unable to switch to the SUSPEND_CONSOLE.
1454                  * Let the calling function know so it can decide
1455                  * what to do.
1456                  */
1457                 console_unlock();
1458                 return -EIO;
1459         }
1460         console_unlock();
1461         if (vt_waitactive(vt + 1)) {
1462                 pr_debug("Suspend: Can't switch VCs.");
1463                 return -EINTR;
1464         }
1465         return prev;
1466 }
1467
1468 /*
1469  * Normally during a suspend, we allocate a new console and switch to it.
1470  * When we resume, we switch back to the original console.  This switch
1471  * can be slow, so on systems where the framebuffer can handle restoration
1472  * of video registers anyways, there's little point in doing the console
1473  * switch.  This function allows you to disable it by passing it '0'.
1474  */
1475 void pm_set_vt_switch(int do_switch)
1476 {
1477         console_lock();
1478         disable_vt_switch = !do_switch;
1479         console_unlock();
1480 }
1481 EXPORT_SYMBOL(pm_set_vt_switch);