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