vt_ioctl.c 33 KB

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