aboutsummaryrefslogtreecommitdiff
path: root/share/man/man4/vkbd.4
blob: b6487ee576c9581d5444c52f0915bbac45b686cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
.\" $Id: vkbd.4,v 1.4 2004/11/16 16:49:39 max Exp $
.\"
.Dd August 12, 2004
.Dt VKBD 4
.Os
.Sh NAME
.Nm vkbd
.Nd the virtual AT keyboard interface
.Sh SYNOPSIS
.Cd "device vkbd"
.Sh DESCRIPTION
The
.Nm
interface is a software loopback mechanism that can be loosely
described as the virtual AT keyboard analog of the
.Xr pty 4 ,
that is,
.Nm
does for virtual AT keyboards what the
.Xr pty 4
driver does for terminals.
.Pp
The
.Nm
driver, like the
.Xr pty 4
driver, provides two interfaces: a keyboard interface like the usual
facility it is simulating (a virtual AT keyboard in the case of
.Nm ,
or a terminal for
.Xr pty 4 ) ,
and a character-special device
.Dq control
interface.
.Pp
The virtual AT keyboards are named
.Pa vkbd0 , vkbd1 ,
etc., one for each control device that has been opened.
.Pp
The
.Nm
interface permits opens on the special control device
.Pa /dev/vkbdctl .
When this device is opened,
.Nm
will return a handle for the lowest unused
.Pa vkbdctl
device (use
.Xr devname 3
to determine which).
.Pp
Each virtual AT keyboard supports the usual keyboard interface
.Xr ioctl 2 Ns s ,
and thus can be used with
.Xr kbdcontrol 1
like any other keyboard.
The control device supports exactly the same
.Xr ioctl 2 Ns s
as the virtual AT keyboard device.
Writing AT scan codes to the control device generates an input on
the virtual AT keyboard, as if the
(non-existent)
hardware had just received it.
.Pp
The virtual AT keyboard control device, normally
.Pa /dev/vkbdctl Ns Aq Ar N ,
is exclusive-open
(it cannot be opened if it is already open)
and is restricted to the super-user.
A
.Xr read 2
call will return the virtual AT keyboard status structure
(defined in
.In dev/vkbd/vkbd_var.h )
if one is available;
if not, it will either block until one is or return
.Er EWOULDBLOCK ,
depending on whether non-blocking I/O has been enabled.
.Pp
A
.Xr write 2
call passes AT scan codes to be
.Dq received
from the virtual AT keyboard.
Each AT scan code must be passed as
.Vt "unsigned int" .
Although AT scan codes must be passes as
.Vt "unsigned int" Ns s ,
the size of the buffer passed to
.Xr write 2
still should be in bytes, i.e.,
.Bd -literal -offset indent
static unsigned int     codes[] =
{
/*      Make    Break */
        0x1e,   0x9e
};

int
main(void)
{
        int     fd, len;

        fd = open("/dev/vkbdctl0", O_RDWR);
        if (fd < 0)
                err(1, "open");

        /* Note sizeof(codes) - not 2! */
        len = write(fd, codes, sizeof(codes));
        if (len < 0)
                err(1, "write");

        close(fd);

        return (0);
}
.Ed
.Pp
Write will block if there is not enough space in the input queue.
.Pp
The control device also supports
.Xr select 2
for read and write.
.Pp
On the last close of the control device, the virtual AT keyboard is removed.
All queued scan codes are thrown away.
.Sh SEE ALSO
.Xr kbdcontrol 1 ,
.Xr atkbdc 4 ,
.Xr psm 4 ,
.Xr syscons 4 ,
.Xr vt 4
.Sh HISTORY
The
.Nm
module was implemented in
.Fx 6.0 .
.Sh AUTHORS
.An Maksim Yevmenkin Aq Mt m_evmenkin@yahoo.com
.Sh CAVEATS
The
.Nm
interface is a software loopback mechanism, and, thus
.Xr ddb 4
will not work with it.
Current implementation of the
.Xr syscons 4
driver can accept input from only one keyboard, even if it is virtual.
Thus it is not possible to have both wired and virtual keyboard to be active
at the same time.
It is, however, in principal possible to obtain AT scan
codes from the different sources and write them into the same virtual keyboard.
The virtual keyboard state synchronization is the user's responsibility.