vserver 1.9.5.x5
[linux-2.6.git] / Documentation / tty.txt
1
2                         The Lockronomicon
3
4 Your guide to the ancient and twisted locking policies of the tty layer and
5 the warped logic behind them. Beware all ye who read on.
6
7 FIXME: still need to work out the full set of BKL assumptions and document
8 them so they can eventually be killed off.
9
10
11 Line Discipline
12 ---------------
13
14 Line disciplines are registered with tty_register_ldisc() passing the
15 discipline number and the ldisc structure. At the point of registration the 
16 discipline must be ready to use and it is possible it will get used before
17 the call returns success. If the call returns an error then it won't get
18 called. Do not re-use ldisc numbers as they are part of the userspace ABI
19 and writing over an existing ldisc will cause demons to eat your computer.
20 After the return the ldisc data has been copied so you may free your own 
21 copy of the structure. You must not re-register over the top of the line
22 discipline even with the same data or your computer again will be eaten by
23 demons.
24
25 In order to remove a line discipline call tty_register_ldisc passing NULL.
26 In ancient times this always worked. In modern times the function will
27 return -EBUSY if the ldisc is currently in use. Since the ldisc referencing
28 code manages the module counts this should not usually be a concern.
29
30 Heed this warning: the reference count field of the registered copies of the
31 tty_ldisc structure in the ldisc table counts the number of lines using this
32 discipline. The reference count of the tty_ldisc structure within a tty 
33 counts the number of active users of the ldisc at this instant. In effect it
34 counts the number of threads of execution within an ldisc method (plus those
35 about to enter and exit although this detail matters not).
36
37 Line Discipline Methods
38 -----------------------
39
40 TTY side interfaces:
41
42 close()         -       This is called on a terminal when the line
43                         discipline is being unplugged. At the point of
44                         execution no further users will enter the
45                         ldisc code for this tty. Can sleep.
46
47 open()          -       Called when the line discipline is attached to
48                         the terminal. No other call into the line
49                         discipline for this tty will occur until it
50                         completes successfully. Can sleep.
51
52 write()         -       A process is writing data through the line
53                         discipline.  Multiple write calls are serialized
54                         by the tty layer for the ldisc.  May sleep. 
55
56 flush_buffer()  -       May be called at any point between open and close.
57
58 chars_in_buffer() -     Report the number of bytes in the buffer.
59
60 set_termios()   -       Called on termios structure changes. The caller
61                         passes the old termios data and the current data
62                         is in the tty. Called under the termios semaphore so
63                         allowed to sleep. Serialized against itself only.
64
65 read()          -       Move data from the line discipline to the user.
66                         Multiple read calls may occur in parallel and the
67                         ldisc must deal with serialization issues. May 
68                         sleep.
69
70 poll()          -       Check the status for the poll/select calls. Multiple
71                         poll calls may occur in parallel. May sleep.
72
73 ioctl()         -       Called when an ioctl is handed to the tty layer
74                         that might be for the ldisc. Multiple ioctl calls
75                         may occur in parallel. May sleep. 
76
77 Driver Side Interfaces:
78
79 receive_buf()   -       Hand buffers of bytes from the driver to the ldisc
80                         for processing. Semantics currently rather
81                         mysterious 8(
82
83 receive_room()  -       Can be called by the driver layer at any time when
84                         the ldisc is opened. The ldisc must be able to
85                         handle the reported amount of data at that instant.
86                         Synchronization between active receive_buf and
87                         receive_room calls is down to the driver not the
88                         ldisc. Must not sleep.
89
90 write_wakeup()  -       May be called at any point between open and close.
91                         The TTY_DO_WRITE_WAKEUP flag indicates if a call
92                         is needed but always races versus calls. Thus the
93                         ldisc must be careful about setting order and to
94                         handle unexpected calls. Must not sleep.
95
96
97 Locking
98
99 Callers to the line discipline functions from the tty layer are required to
100 take line discipline locks. The same is true of calls from the driver side
101 but not yet enforced.
102
103 Three calls are now provided
104
105         ldisc = tty_ldisc_ref(tty);
106
107 takes a handle to the line discipline in the tty and returns it. If no ldisc
108 is currently attached or the ldisc is being closed and re-opened at this
109 point then NULL is returned. While this handle is held the ldisc will not
110 change or go away.
111
112         tty_ldisc_deref(ldisc)
113
114 Returns the ldisc reference and allows the ldisc to be closed. Returning the
115 reference takes away your right to call the ldisc functions until you take
116 a new reference.
117
118         ldisc = tty_ldisc_ref_wait(tty);
119
120 Performs the same function as tty_ldisc_ref except that it will wait for an
121 ldisc change to complete and then return a reference to the new ldisc. 
122
123 While these functions are slightly slower than the old code they should have
124 minimal impact as most receive logic uses the flip buffers and they only
125 need to take a reference when they push bits up through the driver.
126
127 A caution: The ldisc->open(), ldisc->close() and driver->set_ldisc 
128 functions are called with the ldisc unavailable. Thus tty_ldisc_ref will
129 fail in this situation if used within these functions. Ldisc and driver
130 code calling its own functions must be careful in this case. 
131
132
133 Driver Interface
134 ----------------
135
136 open()          -       Called when a device is opened. May sleep
137
138 close()         -       Called when a device is closed. At the point of
139                         return from this call the driver must make no 
140                         further ldisc calls of any kind. May sleep
141
142 write()         -       Called to write bytes to the device. May not
143                         sleep. May occur in parallel in special cases. 
144                         Because this includes panic paths drivers generally
145                         shouldn't try and do clever locking here.
146
147 put_char()      -       Stuff a single character onto the queue. The
148                         driver is guaranteed following up calls to
149                         flush_chars.
150
151 flush_chars()   -       Ask the kernel to write put_char queue
152
153 write_room()    -       Return the number of characters tht can be stuffed
154                         into the port buffers without overflow (or less).
155                         The ldisc is responsible for being intelligent
156                         about multi-threading of write_room/write calls
157
158 ioctl()         -       Called when an ioctl may be for the driver
159
160 set_termios()   -       Called on termios change, serialized against
161                         itself by a semaphore. May sleep.
162
163 set_ldisc()     -       Notifier for discipline change. At the point this 
164                         is done the discipline is not yet usable. Can now
165                         sleep (I think)
166
167 throttle()      -       Called by the ldisc to ask the driver to do flow
168                         control.  Serialization including with unthrottle
169                         is the job of the ldisc layer.
170
171 unthrottle()    -       Called by the ldisc to ask the driver to stop flow
172                         control.
173
174 stop()          -       Ldisc notifier to the driver to stop output. As with
175                         throttle the serializations with start() are down
176                         to the ldisc layer.
177
178 start()         -       Ldisc notifier to the driver to start output.
179
180 hangup()        -       Ask the tty driver to cause a hangup initiated
181                         from the host side. [Can sleep ??]
182
183 break_ctl()     -       Send RS232 break. Can sleep. Can get called in
184                         parallel, driver must serialize (for now), and
185                         with write calls.
186
187 wait_until_sent() -     Wait for characters to exit the hardware queue
188                         of the driver. Can sleep
189
190 send_xchar()      -     Send XON/XOFF and if possible jump the queue with
191                         it in order to get fast flow control responses.
192                         Cannot sleep ??
193