2 * linux/drivers/char/vc_screen.c
4 * Provide access to virtual console memory.
5 * /dev/vcs0: the screen as it is being viewed right now (possibly scrolled)
6 * /dev/vcsN: the screen of /dev/ttyN (1 <= N <= 63)
9 * /dev/vcsaN: idem, but including attributes, and prefixed with
10 * the 4 bytes lines,columns,x,y (as screendump used to give).
11 * Attribute/character pair is in native endianity.
14 * This replaces screendump and part of selection, so that the system
15 * administrator can control access using file system permissions.
17 * aeb@cwi.nl - efter Friedas begravelse - 950211
19 * machek@k332.feld.cvut.cz - modified not to send characters to wrong console
20 * - fixed some fatal off-by-one bugs (0-- no longer == -1 -> looping and looping and looping...)
21 * - making it shorter - scr_readw are macros which expand in PRETTY long code
24 #include <linux/kernel.h>
25 #include <linux/major.h>
26 #include <linux/errno.h>
27 #include <linux/tty.h>
28 #include <linux/interrupt.h>
30 #include <linux/init.h>
31 #include <linux/vt_kern.h>
32 #include <linux/selection.h>
33 #include <linux/kbd_kern.h>
34 #include <linux/console.h>
35 #include <linux/device.h>
36 #include <linux/sched.h>
38 #include <linux/poll.h>
39 #include <linux/signal.h>
40 #include <linux/slab.h>
41 #include <linux/notifier.h>
43 #include <asm/uaccess.h>
44 #include <asm/byteorder.h>
45 #include <asm/unaligned.h>
52 #define CON_BUF_SIZE (CONFIG_BASE_SMALL ? 256 : PAGE_SIZE)
54 struct vcs_poll_data
{
55 struct notifier_block notifier
;
56 unsigned int cons_num
;
57 bool seen_last_update
;
58 wait_queue_head_t waitq
;
59 struct fasync_struct
*fasync
;
63 vcs_notifier(struct notifier_block
*nb
, unsigned long code
, void *_param
)
65 struct vt_notifier_param
*param
= _param
;
66 struct vc_data
*vc
= param
->vc
;
67 struct vcs_poll_data
*poll
=
68 container_of(nb
, struct vcs_poll_data
, notifier
);
69 int currcons
= poll
->cons_num
;
71 if (code
!= VT_UPDATE
)
75 currcons
= fg_console
;
78 if (currcons
!= vc
->vc_num
)
81 poll
->seen_last_update
= false;
82 wake_up_interruptible(&poll
->waitq
);
83 kill_fasync(&poll
->fasync
, SIGIO
, POLL_IN
);
88 vcs_poll_data_free(struct vcs_poll_data
*poll
)
90 unregister_vt_notifier(&poll
->notifier
);
94 static struct vcs_poll_data
*
95 vcs_poll_data_get(struct file
*file
)
97 struct vcs_poll_data
*poll
= file
->private_data
;
102 poll
= kzalloc(sizeof(*poll
), GFP_KERNEL
);
105 poll
->cons_num
= iminor(file
->f_path
.dentry
->d_inode
) & 127;
106 init_waitqueue_head(&poll
->waitq
);
107 poll
->notifier
.notifier_call
= vcs_notifier
;
108 if (register_vt_notifier(&poll
->notifier
) != 0) {
114 * This code may be called either through ->poll() or ->fasync().
115 * If we have two threads using the same file descriptor, they could
116 * both enter this function, both notice that the structure hasn't
117 * been allocated yet and go ahead allocating it in parallel, but
118 * only one of them must survive and be shared otherwise we'd leak
119 * memory with a dangling notifier callback.
121 spin_lock(&file
->f_lock
);
122 if (!file
->private_data
) {
123 file
->private_data
= poll
;
125 /* someone else raced ahead of us */
126 vcs_poll_data_free(poll
);
127 poll
= file
->private_data
;
129 spin_unlock(&file
->f_lock
);
135 * Returns VC for inode.
136 * Must be called with console_lock.
138 static struct vc_data
*
139 vcs_vc(struct inode
*inode
, int *viewed
)
141 unsigned int currcons
= iminor(inode
) & 127;
143 WARN_CONSOLE_UNLOCKED();
146 currcons
= fg_console
;
154 return vc_cons
[currcons
].d
;
158 * Returns size for VC carried by inode.
159 * Must be called with console_lock.
162 vcs_size(struct inode
*inode
)
165 int minor
= iminor(inode
);
168 WARN_CONSOLE_UNLOCKED();
170 vc
= vcs_vc(inode
, NULL
);
174 size
= vc
->vc_rows
* vc
->vc_cols
;
177 size
= 2*size
+ HEADER_SIZE
;
181 static loff_t
vcs_lseek(struct file
*file
, loff_t offset
, int orig
)
186 size
= vcs_size(file
->f_path
.dentry
->d_inode
);
197 offset
+= file
->f_pos
;
201 if (offset
< 0 || offset
> size
) {
204 file
->f_pos
= offset
;
210 vcs_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
212 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
213 unsigned int currcons
= iminor(inode
);
215 struct vcs_poll_data
*poll
;
218 int col
, maxcol
, viewed
;
219 unsigned short *org
= NULL
;
223 con_buf
= (char *) __get_free_page(GFP_KERNEL
);
229 /* Select the proper current console and verify
230 * sanity of the situation under the console lock.
234 attr
= (currcons
& 128);
236 vc
= vcs_vc(inode
, &viewed
);
243 poll
= file
->private_data
;
245 poll
->seen_last_update
= true;
249 char *con_buf0
, *con_buf_start
;
250 long this_round
, size
;
254 /* Check whether we are above size each round,
255 * as copy_to_user at the end of this loop
258 size
= vcs_size(inode
);
267 if (count
> size
- pos
)
271 if (this_round
> CON_BUF_SIZE
)
272 this_round
= CON_BUF_SIZE
;
274 /* Perform the whole read into the local con_buf.
275 * Then we can drop the console spinlock and safely
276 * attempt to move it to userspace.
279 con_buf_start
= con_buf0
= con_buf
;
280 orig_count
= this_round
;
281 maxcol
= vc
->vc_cols
;
283 org
= screen_pos(vc
, p
, viewed
);
286 while (this_round
-- > 0) {
287 *con_buf0
++ = (vcs_scr_readw(vc
, org
++) & 0xff);
288 if (++col
== maxcol
) {
289 org
= screen_pos(vc
, p
, viewed
);
295 if (p
< HEADER_SIZE
) {
298 con_buf0
[0] = (char)vc
->vc_rows
;
299 con_buf0
[1] = (char)vc
->vc_cols
;
300 getconsxy(vc
, con_buf0
+ 2);
304 if (this_round
> CON_BUF_SIZE
) {
305 this_round
= CON_BUF_SIZE
;
306 orig_count
= this_round
- p
;
309 tmp_count
= HEADER_SIZE
;
310 if (tmp_count
> this_round
)
311 tmp_count
= this_round
;
313 /* Advance state pointers and move on. */
314 this_round
-= tmp_count
;
316 con_buf0
= con_buf
+ HEADER_SIZE
;
317 /* If this_round >= 0, then p is even... */
319 /* Skip first byte for output if start address is odd
320 * Update region sizes up/down depending on free
324 if (this_round
< CON_BUF_SIZE
)
329 if (this_round
> 0) {
330 unsigned short *tmp_buf
= (unsigned short *)con_buf0
;
336 org
= screen_pos(vc
, p
, viewed
);
339 /* Buffer has even length, so we can always copy
340 * character + attribute. We do not copy last byte
341 * to userspace if this_round is odd.
343 this_round
= (this_round
+ 1) >> 1;
346 *tmp_buf
++ = vcs_scr_readw(vc
, org
++);
348 if (++col
== maxcol
) {
349 org
= screen_pos(vc
, p
, viewed
);
357 /* Finally, release the console semaphore while we push
358 * all the data to userspace from our temporary buffer.
360 * AKPM: Even though it's a semaphore, we should drop it because
361 * the pagefault handling code may want to call printk().
365 ret
= copy_to_user(buf
, con_buf_start
, orig_count
);
369 read
+= (orig_count
- ret
);
383 free_page((unsigned long) con_buf
);
388 vcs_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
390 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
391 unsigned int currcons
= iminor(inode
);
394 long attr
, size
, written
;
396 int col
, maxcol
, viewed
;
397 u16
*org0
= NULL
, *org
= NULL
;
401 con_buf
= (char *) __get_free_page(GFP_KERNEL
);
407 /* Select the proper current console and verify
408 * sanity of the situation under the console lock.
412 attr
= (currcons
& 128);
414 vc
= vcs_vc(inode
, &viewed
);
418 size
= vcs_size(inode
);
420 if (pos
< 0 || pos
> size
)
422 if (count
> size
- pos
)
426 long this_round
= count
;
430 if (this_round
> CON_BUF_SIZE
)
431 this_round
= CON_BUF_SIZE
;
433 /* Temporarily drop the console lock so that we can read
434 * in the write data from userspace safely.
437 ret
= copy_from_user(con_buf
, buf
, this_round
);
443 /* Abort loop if no data were copied. Otherwise
453 /* The vcs_size might have changed while we slept to grab
454 * the user buffer, so recheck.
455 * Return data written up to now on failure.
457 size
= vcs_size(inode
);
466 if (this_round
> size
- pos
)
467 this_round
= size
- pos
;
469 /* OK, now actually push the write to the console
470 * under the lock using the local kernel buffer.
474 orig_count
= this_round
;
475 maxcol
= vc
->vc_cols
;
478 org0
= org
= screen_pos(vc
, p
, viewed
);
482 while (this_round
> 0) {
483 unsigned char c
= *con_buf0
++;
487 (vcs_scr_readw(vc
, org
) & 0xff00) | c
, org
);
489 if (++col
== maxcol
) {
490 org
= screen_pos(vc
, p
, viewed
);
496 if (p
< HEADER_SIZE
) {
497 char header
[HEADER_SIZE
];
499 getconsxy(vc
, header
+ 2);
500 while (p
< HEADER_SIZE
&& this_round
> 0) {
502 header
[p
++] = *con_buf0
++;
505 putconsxy(vc
, header
+ 2);
508 col
= (p
/2) % maxcol
;
509 if (this_round
> 0) {
510 org0
= org
= screen_pos(vc
, p
/2, viewed
);
511 if ((p
& 1) && this_round
> 0) {
517 vcs_scr_writew(vc
, c
|
518 (vcs_scr_readw(vc
, org
) & 0xff00), org
);
520 vcs_scr_writew(vc
, (c
<< 8) |
521 (vcs_scr_readw(vc
, org
) & 0xff), org
);
525 if (++col
== maxcol
) {
526 org
= screen_pos(vc
, p
/2, viewed
);
533 while (this_round
> 1) {
536 w
= get_unaligned(((unsigned short *)con_buf0
));
537 vcs_scr_writew(vc
, w
, org
++);
540 if (++col
== maxcol
) {
541 org
= screen_pos(vc
, p
, viewed
);
546 if (this_round
> 0) {
551 vcs_scr_writew(vc
, (vcs_scr_readw(vc
, org
) & 0xff) | (c
<< 8), org
);
553 vcs_scr_writew(vc
, (vcs_scr_readw(vc
, org
) & 0xff00) | c
, org
);
558 written
+= orig_count
;
562 update_region(vc
, (unsigned long)(org0
), org
- org0
);
571 free_page((unsigned long) con_buf
);
576 vcs_poll(struct file
*file
, poll_table
*wait
)
578 struct vcs_poll_data
*poll
= vcs_poll_data_get(file
);
579 int ret
= DEFAULT_POLLMASK
|POLLERR
|POLLPRI
;
582 poll_wait(file
, &poll
->waitq
, wait
);
583 if (poll
->seen_last_update
)
584 ret
= DEFAULT_POLLMASK
;
590 vcs_fasync(int fd
, struct file
*file
, int on
)
592 struct vcs_poll_data
*poll
= file
->private_data
;
595 /* don't allocate anything if all we want is disable fasync */
598 poll
= vcs_poll_data_get(file
);
603 return fasync_helper(fd
, file
, on
, &poll
->fasync
);
607 vcs_open(struct inode
*inode
, struct file
*filp
)
609 unsigned int currcons
= iminor(inode
) & 127;
613 if(currcons
&& !vc_cons_allocated(currcons
-1))
619 static int vcs_release(struct inode
*inode
, struct file
*file
)
621 struct vcs_poll_data
*poll
= file
->private_data
;
624 vcs_poll_data_free(poll
);
628 static const struct file_operations vcs_fops
= {
633 .fasync
= vcs_fasync
,
635 .release
= vcs_release
,
638 static struct class *vc_class
;
640 void vcs_make_sysfs(int index
)
642 device_create(vc_class
, NULL
, MKDEV(VCS_MAJOR
, index
+ 1), NULL
,
644 device_create(vc_class
, NULL
, MKDEV(VCS_MAJOR
, index
+ 129), NULL
,
645 "vcsa%u", index
+ 1);
648 void vcs_remove_sysfs(int index
)
650 device_destroy(vc_class
, MKDEV(VCS_MAJOR
, index
+ 1));
651 device_destroy(vc_class
, MKDEV(VCS_MAJOR
, index
+ 129));
654 int __init
vcs_init(void)
658 if (register_chrdev(VCS_MAJOR
, "vcs", &vcs_fops
))
659 panic("unable to get major %d for vcs device", VCS_MAJOR
);
660 vc_class
= class_create(THIS_MODULE
, "vc");
662 device_create(vc_class
, NULL
, MKDEV(VCS_MAJOR
, 0), NULL
, "vcs");
663 device_create(vc_class
, NULL
, MKDEV(VCS_MAJOR
, 128), NULL
, "vcsa");
664 for (i
= 0; i
< MIN_NR_CONSOLES
; i
++)