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