2 * Provide access to virtual console memory.
3 * /dev/vcs0: the screen as it is being viewed right now (possibly scrolled)
4 * /dev/vcsN: the screen of /dev/ttyN (1 <= N <= 63)
7 * /dev/vcsaN: idem, but including attributes, and prefixed with
8 * the 4 bytes lines,columns,x,y (as screendump used to give).
9 * Attribute/character pair is in native endianity.
12 * This replaces screendump and part of selection, so that the system
13 * administrator can control access using file system permissions.
15 * aeb@cwi.nl - efter Friedas begravelse - 950211
17 * machek@k332.feld.cvut.cz - modified not to send characters to wrong console
18 * - fixed some fatal off-by-one bugs (0-- no longer == -1 -> looping and looping and looping...)
19 * - making it shorter - scr_readw are macros which expand in PRETTY long code
22 #include <linux/kernel.h>
23 #include <linux/major.h>
24 #include <linux/errno.h>
25 #include <linux/tty.h>
26 #include <linux/interrupt.h>
28 #include <linux/init.h>
29 #include <linux/vt_kern.h>
30 #include <linux/selection.h>
31 #include <linux/kbd_kern.h>
32 #include <linux/console.h>
33 #include <linux/device.h>
34 #include <linux/sched.h>
36 #include <linux/poll.h>
37 #include <linux/signal.h>
38 #include <linux/slab.h>
39 #include <linux/notifier.h>
41 #include <asm/uaccess.h>
42 #include <asm/byteorder.h>
43 #include <asm/unaligned.h>
50 #define CON_BUF_SIZE (CONFIG_BASE_SMALL ? 256 : PAGE_SIZE)
52 struct vcs_poll_data
{
53 struct notifier_block notifier
;
54 unsigned int cons_num
;
55 bool seen_last_update
;
56 wait_queue_head_t waitq
;
57 struct fasync_struct
*fasync
;
61 vcs_notifier(struct notifier_block
*nb
, unsigned long code
, void *_param
)
63 struct vt_notifier_param
*param
= _param
;
64 struct vc_data
*vc
= param
->vc
;
65 struct vcs_poll_data
*poll
=
66 container_of(nb
, struct vcs_poll_data
, notifier
);
67 int currcons
= poll
->cons_num
;
69 if (code
!= VT_UPDATE
)
73 currcons
= fg_console
;
76 if (currcons
!= vc
->vc_num
)
79 poll
->seen_last_update
= false;
80 wake_up_interruptible(&poll
->waitq
);
81 kill_fasync(&poll
->fasync
, SIGIO
, POLL_IN
);
86 vcs_poll_data_free(struct vcs_poll_data
*poll
)
88 unregister_vt_notifier(&poll
->notifier
);
92 static struct vcs_poll_data
*
93 vcs_poll_data_get(struct file
*file
)
95 struct vcs_poll_data
*poll
= file
->private_data
;
100 poll
= kzalloc(sizeof(*poll
), GFP_KERNEL
);
103 poll
->cons_num
= iminor(file
->f_path
.dentry
->d_inode
) & 127;
104 init_waitqueue_head(&poll
->waitq
);
105 poll
->notifier
.notifier_call
= vcs_notifier
;
106 if (register_vt_notifier(&poll
->notifier
) != 0) {
112 * This code may be called either through ->poll() or ->fasync().
113 * If we have two threads using the same file descriptor, they could
114 * both enter this function, both notice that the structure hasn't
115 * been allocated yet and go ahead allocating it in parallel, but
116 * only one of them must survive and be shared otherwise we'd leak
117 * memory with a dangling notifier callback.
119 spin_lock(&file
->f_lock
);
120 if (!file
->private_data
) {
121 file
->private_data
= poll
;
123 /* someone else raced ahead of us */
124 vcs_poll_data_free(poll
);
125 poll
= file
->private_data
;
127 spin_unlock(&file
->f_lock
);
133 * Returns VC for inode.
134 * Must be called with console_lock.
136 static struct vc_data
*
137 vcs_vc(struct inode
*inode
, int *viewed
)
139 unsigned int currcons
= iminor(inode
) & 127;
141 WARN_CONSOLE_UNLOCKED();
144 currcons
= fg_console
;
152 return vc_cons
[currcons
].d
;
156 * Returns size for VC carried by inode.
157 * Must be called with console_lock.
160 vcs_size(struct inode
*inode
)
163 int minor
= iminor(inode
);
166 WARN_CONSOLE_UNLOCKED();
168 vc
= vcs_vc(inode
, NULL
);
172 size
= vc
->vc_rows
* vc
->vc_cols
;
175 size
= 2*size
+ HEADER_SIZE
;
179 static loff_t
vcs_lseek(struct file
*file
, loff_t offset
, int orig
)
184 size
= vcs_size(file
->f_path
.dentry
->d_inode
);
195 offset
+= file
->f_pos
;
199 if (offset
< 0 || offset
> size
) {
202 file
->f_pos
= offset
;
208 vcs_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
210 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
211 unsigned int currcons
= iminor(inode
);
213 struct vcs_poll_data
*poll
;
216 int col
, maxcol
, viewed
;
217 unsigned short *org
= NULL
;
221 con_buf
= (char *) __get_free_page(GFP_KERNEL
);
227 /* Select the proper current console and verify
228 * sanity of the situation under the console lock.
232 attr
= (currcons
& 128);
234 vc
= vcs_vc(inode
, &viewed
);
241 poll
= file
->private_data
;
243 poll
->seen_last_update
= true;
247 char *con_buf0
, *con_buf_start
;
248 long this_round
, size
;
252 /* Check whether we are above size each round,
253 * as copy_to_user at the end of this loop
256 size
= vcs_size(inode
);
265 if (count
> size
- pos
)
269 if (this_round
> CON_BUF_SIZE
)
270 this_round
= CON_BUF_SIZE
;
272 /* Perform the whole read into the local con_buf.
273 * Then we can drop the console spinlock and safely
274 * attempt to move it to userspace.
277 con_buf_start
= con_buf0
= con_buf
;
278 orig_count
= this_round
;
279 maxcol
= vc
->vc_cols
;
281 org
= screen_pos(vc
, p
, viewed
);
284 while (this_round
-- > 0) {
285 *con_buf0
++ = (vcs_scr_readw(vc
, org
++) & 0xff);
286 if (++col
== maxcol
) {
287 org
= screen_pos(vc
, p
, viewed
);
293 if (p
< HEADER_SIZE
) {
296 con_buf0
[0] = (char)vc
->vc_rows
;
297 con_buf0
[1] = (char)vc
->vc_cols
;
298 getconsxy(vc
, con_buf0
+ 2);
302 if (this_round
> CON_BUF_SIZE
) {
303 this_round
= CON_BUF_SIZE
;
304 orig_count
= this_round
- p
;
307 tmp_count
= HEADER_SIZE
;
308 if (tmp_count
> this_round
)
309 tmp_count
= this_round
;
311 /* Advance state pointers and move on. */
312 this_round
-= tmp_count
;
314 con_buf0
= con_buf
+ HEADER_SIZE
;
315 /* If this_round >= 0, then p is even... */
317 /* Skip first byte for output if start address is odd
318 * Update region sizes up/down depending on free
322 if (this_round
< CON_BUF_SIZE
)
327 if (this_round
> 0) {
328 unsigned short *tmp_buf
= (unsigned short *)con_buf0
;
334 org
= screen_pos(vc
, p
, viewed
);
337 /* Buffer has even length, so we can always copy
338 * character + attribute. We do not copy last byte
339 * to userspace if this_round is odd.
341 this_round
= (this_round
+ 1) >> 1;
344 *tmp_buf
++ = vcs_scr_readw(vc
, org
++);
346 if (++col
== maxcol
) {
347 org
= screen_pos(vc
, p
, viewed
);
355 /* Finally, release the console semaphore while we push
356 * all the data to userspace from our temporary buffer.
358 * AKPM: Even though it's a semaphore, we should drop it because
359 * the pagefault handling code may want to call printk().
363 ret
= copy_to_user(buf
, con_buf_start
, orig_count
);
367 read
+= (orig_count
- ret
);
381 free_page((unsigned long) con_buf
);
386 vcs_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
388 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
389 unsigned int currcons
= iminor(inode
);
392 long attr
, size
, written
;
394 int col
, maxcol
, viewed
;
395 u16
*org0
= NULL
, *org
= NULL
;
399 con_buf
= (char *) __get_free_page(GFP_KERNEL
);
405 /* Select the proper current console and verify
406 * sanity of the situation under the console lock.
410 attr
= (currcons
& 128);
412 vc
= vcs_vc(inode
, &viewed
);
416 size
= vcs_size(inode
);
418 if (pos
< 0 || pos
> size
)
420 if (count
> size
- pos
)
424 long this_round
= count
;
428 if (this_round
> CON_BUF_SIZE
)
429 this_round
= CON_BUF_SIZE
;
431 /* Temporarily drop the console lock so that we can read
432 * in the write data from userspace safely.
435 ret
= copy_from_user(con_buf
, buf
, this_round
);
441 /* Abort loop if no data were copied. Otherwise
451 /* The vcs_size might have changed while we slept to grab
452 * the user buffer, so recheck.
453 * Return data written up to now on failure.
455 size
= vcs_size(inode
);
464 if (this_round
> size
- pos
)
465 this_round
= size
- pos
;
467 /* OK, now actually push the write to the console
468 * under the lock using the local kernel buffer.
472 orig_count
= this_round
;
473 maxcol
= vc
->vc_cols
;
476 org0
= org
= screen_pos(vc
, p
, viewed
);
480 while (this_round
> 0) {
481 unsigned char c
= *con_buf0
++;
485 (vcs_scr_readw(vc
, org
) & 0xff00) | c
, org
);
487 if (++col
== maxcol
) {
488 org
= screen_pos(vc
, p
, viewed
);
494 if (p
< HEADER_SIZE
) {
495 char header
[HEADER_SIZE
];
497 getconsxy(vc
, header
+ 2);
498 while (p
< HEADER_SIZE
&& this_round
> 0) {
500 header
[p
++] = *con_buf0
++;
503 putconsxy(vc
, header
+ 2);
506 col
= (p
/2) % maxcol
;
507 if (this_round
> 0) {
508 org0
= org
= screen_pos(vc
, p
/2, viewed
);
509 if ((p
& 1) && this_round
> 0) {
515 vcs_scr_writew(vc
, c
|
516 (vcs_scr_readw(vc
, org
) & 0xff00), org
);
518 vcs_scr_writew(vc
, (c
<< 8) |
519 (vcs_scr_readw(vc
, org
) & 0xff), org
);
523 if (++col
== maxcol
) {
524 org
= screen_pos(vc
, p
/2, viewed
);
531 while (this_round
> 1) {
534 w
= get_unaligned(((unsigned short *)con_buf0
));
535 vcs_scr_writew(vc
, w
, org
++);
538 if (++col
== maxcol
) {
539 org
= screen_pos(vc
, p
, viewed
);
544 if (this_round
> 0) {
549 vcs_scr_writew(vc
, (vcs_scr_readw(vc
, org
) & 0xff) | (c
<< 8), org
);
551 vcs_scr_writew(vc
, (vcs_scr_readw(vc
, org
) & 0xff00) | c
, org
);
556 written
+= orig_count
;
560 update_region(vc
, (unsigned long)(org0
), org
- org0
);
569 free_page((unsigned long) con_buf
);
574 vcs_poll(struct file
*file
, poll_table
*wait
)
576 struct vcs_poll_data
*poll
= vcs_poll_data_get(file
);
577 int ret
= DEFAULT_POLLMASK
|POLLERR
|POLLPRI
;
580 poll_wait(file
, &poll
->waitq
, wait
);
581 if (poll
->seen_last_update
)
582 ret
= DEFAULT_POLLMASK
;
588 vcs_fasync(int fd
, struct file
*file
, int on
)
590 struct vcs_poll_data
*poll
= file
->private_data
;
593 /* don't allocate anything if all we want is disable fasync */
596 poll
= vcs_poll_data_get(file
);
601 return fasync_helper(fd
, file
, on
, &poll
->fasync
);
605 vcs_open(struct inode
*inode
, struct file
*filp
)
607 unsigned int currcons
= iminor(inode
) & 127;
611 if(currcons
&& !vc_cons_allocated(currcons
-1))
617 static int vcs_release(struct inode
*inode
, struct file
*file
)
619 struct vcs_poll_data
*poll
= file
->private_data
;
622 vcs_poll_data_free(poll
);
626 static const struct file_operations vcs_fops
= {
631 .fasync
= vcs_fasync
,
633 .release
= vcs_release
,
636 static struct class *vc_class
;
638 void vcs_make_sysfs(int index
)
640 device_create(vc_class
, NULL
, MKDEV(VCS_MAJOR
, index
+ 1), NULL
,
642 device_create(vc_class
, NULL
, MKDEV(VCS_MAJOR
, index
+ 129), NULL
,
643 "vcsa%u", index
+ 1);
646 void vcs_remove_sysfs(int index
)
648 device_destroy(vc_class
, MKDEV(VCS_MAJOR
, index
+ 1));
649 device_destroy(vc_class
, MKDEV(VCS_MAJOR
, index
+ 129));
652 int __init
vcs_init(void)
656 if (register_chrdev(VCS_MAJOR
, "vcs", &vcs_fops
))
657 panic("unable to get major %d for vcs device", VCS_MAJOR
);
658 vc_class
= class_create(THIS_MODULE
, "vc");
660 device_create(vc_class
, NULL
, MKDEV(VCS_MAJOR
, 0), NULL
, "vcs");
661 device_create(vc_class
, NULL
, MKDEV(VCS_MAJOR
, 128), NULL
, "vcsa");
662 for (i
= 0; i
< MIN_NR_CONSOLES
; i
++)