blob: 54c46c8eb272aae2ed04b8d6a0f767101c27a6a3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * n_tty.c --- implements the N_TTY line discipline.
Alan Cox4edf1822008-02-08 04:18:44 -08003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This code used to be in tty_io.c, but things are getting hairy
5 * enough that it made sense to split things off. (The N_TTY
6 * processing has changed so much that it's hardly recognizable,
7 * anyway...)
8 *
9 * Note that the open routine for N_TTY is guaranteed never to return
10 * an error. This is because Linux will fall back to setting a line
Alan Cox4edf1822008-02-08 04:18:44 -080011 * to N_TTY if it can not switch to any other line discipline.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * Written by Theodore Ts'o, Copyright 1994.
Alan Cox4edf1822008-02-08 04:18:44 -080014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * This file also contains code originally written by Linus Torvalds,
16 * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
Alan Cox4edf1822008-02-08 04:18:44 -080017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * This file may be redistributed under the terms of the GNU General Public
19 * License.
20 *
21 * Reduced memory usage for older ARM systems - Russell King.
22 *
Alan Cox4edf1822008-02-08 04:18:44 -080023 * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * the patch by Andrew J. Kroll <ag784@freenet.buffalo.edu>
25 * who actually finally proved there really was a race.
26 *
27 * 2002/03/18 Implemented n_tty_wakeup to send SIGIO POLL_OUTs to
28 * waiting writing processes-Sapan Bhatia <sapan@corewars.org>.
Alan Cox11a96d12008-10-13 10:46:24 +010029 * Also fixed a bug in BLOCKING mode where n_tty_write returns
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * EAGAIN
31 */
32
33#include <linux/types.h>
34#include <linux/major.h>
35#include <linux/errno.h>
36#include <linux/signal.h>
37#include <linux/fcntl.h>
38#include <linux/sched.h>
39#include <linux/interrupt.h>
40#include <linux/tty.h>
41#include <linux/timer.h>
42#include <linux/ctype.h>
43#include <linux/mm.h>
44#include <linux/string.h>
45#include <linux/slab.h>
46#include <linux/poll.h>
47#include <linux/bitops.h>
Miloslav Trmac522ed772007-07-15 23:40:56 -070048#include <linux/audit.h>
49#include <linux/file.h>
Alan Cox300a6202009-01-02 13:41:04 +000050#include <linux/uaccess.h>
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -080051#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/* number of characters left in xmit buffer before select has we have room */
55#define WAKEUP_CHARS 256
56
57/*
58 * This defines the low- and high-watermarks for throttling and
59 * unthrottling the TTY driver. These watermarks are used for
60 * controlling the space in the read buffer.
61 */
62#define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
Thorsten Wißmannbbd20752011-12-08 17:47:33 +010063#define TTY_THRESHOLD_UNTHROTTLE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Joe Petersona88a69c2009-01-02 13:40:53 +000065/*
66 * Special byte codes used in the echo buffer to represent operations
67 * or special handling of characters. Bytes in the echo buffer that
68 * are not part of such special blocks are treated as normal character
69 * codes.
70 */
71#define ECHO_OP_START 0xff
72#define ECHO_OP_MOVE_BACK_COL 0x80
73#define ECHO_OP_SET_CANON_COL 0x81
74#define ECHO_OP_ERASE_TAB 0x82
75
Miloslav Trmac522ed772007-07-15 23:40:56 -070076static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
77 unsigned char __user *ptr)
78{
79 tty_audit_add_data(tty, &x, 1);
80 return put_user(x, ptr);
81}
82
Linus Torvalds55db4c62011-06-04 06:33:24 +090083/**
Peter Hurleyc2d097d2013-06-15 07:28:30 -040084 * n_tty_set_room - receive space
Linus Torvalds55db4c62011-06-04 06:33:24 +090085 * @tty: terminal
86 *
Peter Hurleyc2d097d2013-06-15 07:28:30 -040087 * Sets tty->receive_room to reflect the currently available space
88 * in the input buffer, and re-schedules the flip buffer work if space
89 * just became available.
90 *
91 * Locks: Concurrent update is protected with read_lock
Linus Torvalds55db4c62011-06-04 06:33:24 +090092 */
93
94static void n_tty_set_room(struct tty_struct *tty)
95{
Jaeden Amero3b8c55f2012-07-27 08:43:11 -050096 int left;
Linus Torvalds55db4c62011-06-04 06:33:24 +090097 int old_left;
Peter Hurleyc2d097d2013-06-15 07:28:30 -040098 unsigned long flags;
Linus Torvalds55db4c62011-06-04 06:33:24 +090099
Peter Hurleyc2d097d2013-06-15 07:28:30 -0400100 spin_lock_irqsave(&tty->read_lock, flags);
101
Jaeden Amero3b8c55f2012-07-27 08:43:11 -0500102 if (I_PARMRK(tty)) {
103 /* Multiply read_cnt by 3, since each byte might take up to
104 * three times as many spaces when PARMRK is set (depending on
105 * its flags, e.g. parity error). */
106 left = N_TTY_BUF_SIZE - tty->read_cnt * 3 - 1;
107 } else
108 left = N_TTY_BUF_SIZE - tty->read_cnt - 1;
109
Linus Torvalds55db4c62011-06-04 06:33:24 +0900110 /*
111 * If we are doing input canonicalization, and there are no
112 * pending newlines, let characters through without limit, so
113 * that erase characters will be handled. Other excess
114 * characters will be beeped.
115 */
116 if (left <= 0)
117 left = tty->icanon && !tty->canon_data;
118 old_left = tty->receive_room;
119 tty->receive_room = left;
120
Peter Hurleyc2d097d2013-06-15 07:28:30 -0400121 spin_unlock_irqrestore(&tty->read_lock, flags);
122
Linus Torvalds55db4c62011-06-04 06:33:24 +0900123 /* Did this open up the receive buffer? We may need to flip */
124 if (left && !old_left)
125 schedule_work(&tty->buf.work);
126}
127
Alan Cox33f0f882006-01-09 20:54:13 -0800128static void put_tty_queue_nolock(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 if (tty->read_cnt < N_TTY_BUF_SIZE) {
131 tty->read_buf[tty->read_head] = c;
132 tty->read_head = (tty->read_head + 1) & (N_TTY_BUF_SIZE-1);
133 tty->read_cnt++;
134 }
135}
136
Alan Cox17b82062008-10-13 10:45:06 +0100137/**
138 * put_tty_queue - add character to tty
139 * @c: character
140 * @tty: tty device
141 *
142 * Add a character to the tty read_buf queue. This is done under the
143 * read_lock to serialize character addition and also to protect us
144 * against parallel reads or flushes
145 */
146
Alan Cox33f0f882006-01-09 20:54:13 -0800147static void put_tty_queue(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 unsigned long flags;
150 /*
151 * The problem of stomping on the buffers ends here.
152 * Why didn't anyone see this one coming? --AJK
153 */
154 spin_lock_irqsave(&tty->read_lock, flags);
155 put_tty_queue_nolock(c, tty);
156 spin_unlock_irqrestore(&tty->read_lock, flags);
157}
158
159/**
160 * check_unthrottle - allow new receive data
161 * @tty; tty device
162 *
Alan Cox17b82062008-10-13 10:45:06 +0100163 * Check whether to call the driver unthrottle functions
164 *
Ingo Molnar70522e12006-03-23 03:00:31 -0800165 * Can sleep, may be called under the atomic_read_lock mutex but
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * this is not guaranteed.
167 */
Alan Cox4edf1822008-02-08 04:18:44 -0800168static void check_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Alan Cox39c2e602008-04-30 00:54:18 -0700170 if (tty->count)
171 tty_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174/**
175 * reset_buffer_flags - reset buffer state
176 * @tty: terminal to reset
177 *
Alan Cox4edf1822008-02-08 04:18:44 -0800178 * Reset the read buffer counters, clear the flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * and make sure the driver is unthrottled. Called
180 * from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100181 *
182 * Locking: tty_read_lock for read fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static void reset_buffer_flags(struct tty_struct *tty)
186{
187 unsigned long flags;
188
189 spin_lock_irqsave(&tty->read_lock, flags);
190 tty->read_head = tty->read_tail = tty->read_cnt = 0;
191 spin_unlock_irqrestore(&tty->read_lock, flags);
Joe Petersona88a69c2009-01-02 13:40:53 +0000192
193 mutex_lock(&tty->echo_lock);
194 tty->echo_pos = tty->echo_cnt = tty->echo_overrun = 0;
195 mutex_unlock(&tty->echo_lock);
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 tty->canon_head = tty->canon_data = tty->erasing = 0;
198 memset(&tty->read_flags, 0, sizeof tty->read_flags);
Linus Torvalds55db4c62011-06-04 06:33:24 +0900199 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202/**
203 * n_tty_flush_buffer - clean input queue
204 * @tty: terminal device
205 *
206 * Flush the input buffer. Called when the line discipline is
207 * being closed, when the tty layer wants the buffer flushed (eg
208 * at hangup) or when the N_TTY line discipline internally has to
209 * clean the pending queue (for example some signals).
210 *
Alan Cox17b82062008-10-13 10:45:06 +0100211 * Locking: ctrl_lock, read_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 */
Alan Cox4edf1822008-02-08 04:18:44 -0800213
214static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Alan Cox04f378b2008-04-30 00:53:29 -0700216 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /* clear everything and unthrottle the driver */
218 reset_buffer_flags(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (!tty->link)
221 return;
222
Alan Cox04f378b2008-04-30 00:53:29 -0700223 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (tty->link->packet) {
225 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
226 wake_up_interruptible(&tty->link->read_wait);
227 }
Alan Cox04f378b2008-04-30 00:53:29 -0700228 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231/**
232 * n_tty_chars_in_buffer - report available bytes
233 * @tty: tty device
234 *
235 * Report the number of characters buffered to be delivered to user
Alan Cox4edf1822008-02-08 04:18:44 -0800236 * at this instant in time.
Alan Cox17b82062008-10-13 10:45:06 +0100237 *
238 * Locking: read_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 */
Alan Cox4edf1822008-02-08 04:18:44 -0800240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
242{
243 unsigned long flags;
244 ssize_t n = 0;
245
246 spin_lock_irqsave(&tty->read_lock, flags);
247 if (!tty->icanon) {
248 n = tty->read_cnt;
249 } else if (tty->canon_data) {
250 n = (tty->canon_head > tty->read_tail) ?
251 tty->canon_head - tty->read_tail :
252 tty->canon_head + (N_TTY_BUF_SIZE - tty->read_tail);
253 }
254 spin_unlock_irqrestore(&tty->read_lock, flags);
255 return n;
256}
257
258/**
259 * is_utf8_continuation - utf8 multibyte check
260 * @c: byte to check
261 *
262 * Returns true if the utf8 character 'c' is a multibyte continuation
263 * character. We use this to correctly compute the on screen size
264 * of the character when printing
265 */
Alan Cox4edf1822008-02-08 04:18:44 -0800266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267static inline int is_utf8_continuation(unsigned char c)
268{
269 return (c & 0xc0) == 0x80;
270}
271
272/**
273 * is_continuation - multibyte check
274 * @c: byte to check
275 *
276 * Returns true if the utf8 character 'c' is a multibyte continuation
277 * character and the terminal is in unicode mode.
278 */
Alan Cox4edf1822008-02-08 04:18:44 -0800279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static inline int is_continuation(unsigned char c, struct tty_struct *tty)
281{
282 return I_IUTF8(tty) && is_utf8_continuation(c);
283}
284
285/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000286 * do_output_char - output one character
287 * @c: character (or partial unicode symbol)
288 * @tty: terminal device
289 * @space: space available in tty driver write buffer
290 *
291 * This is a helper function that handles one output character
292 * (including special characters like TAB, CR, LF, etc.),
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600293 * doing OPOST processing and putting the results in the
294 * tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000295 *
296 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
297 * and NLDLY. They simply aren't relevant in the world today.
298 * If you ever need them, add them here.
299 *
300 * Returns the number of bytes of buffer space used or -1 if
301 * no space left.
302 *
303 * Locking: should be called under the output_lock to protect
304 * the column state and space left in the buffer
305 */
306
307static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
308{
309 int spaces;
310
311 if (!space)
312 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000313
Joe Petersona88a69c2009-01-02 13:40:53 +0000314 switch (c) {
315 case '\n':
316 if (O_ONLRET(tty))
317 tty->column = 0;
318 if (O_ONLCR(tty)) {
319 if (space < 2)
320 return -1;
321 tty->canon_column = tty->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700322 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000323 return 2;
324 }
325 tty->canon_column = tty->column;
326 break;
327 case '\r':
328 if (O_ONOCR(tty) && tty->column == 0)
329 return 0;
330 if (O_OCRNL(tty)) {
331 c = '\n';
332 if (O_ONLRET(tty))
333 tty->canon_column = tty->column = 0;
334 break;
335 }
336 tty->canon_column = tty->column = 0;
337 break;
338 case '\t':
339 spaces = 8 - (tty->column & 7);
340 if (O_TABDLY(tty) == XTABS) {
341 if (space < spaces)
342 return -1;
343 tty->column += spaces;
344 tty->ops->write(tty, " ", spaces);
345 return spaces;
346 }
347 tty->column += spaces;
348 break;
349 case '\b':
350 if (tty->column > 0)
351 tty->column--;
352 break;
353 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000354 if (!iscntrl(c)) {
355 if (O_OLCUC(tty))
356 c = toupper(c);
357 if (!is_continuation(c, tty))
358 tty->column++;
359 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000360 break;
361 }
362
363 tty_put_char(tty, c);
364 return 1;
365}
366
367/**
368 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * @c: character (or partial unicode symbol)
370 * @tty: terminal device
371 *
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600372 * Output one character with OPOST processing.
373 * Returns -1 when the output device is full and the character
374 * must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000376 * Locking: output_lock to protect column state and space left
377 * (also, this is called from n_tty_write under the
378 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
Alan Cox4edf1822008-02-08 04:18:44 -0800380
Joe Petersona88a69c2009-01-02 13:40:53 +0000381static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Joe Petersona88a69c2009-01-02 13:40:53 +0000383 int space, retval;
384
385 mutex_lock(&tty->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Alan Coxf34d7a52008-04-30 00:54:13 -0700387 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000388 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Joe Petersona88a69c2009-01-02 13:40:53 +0000390 mutex_unlock(&tty->output_lock);
391 if (retval < 0)
392 return -1;
393 else
394 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000398 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * @tty: terminal device
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600400 * @buf: character buffer
401 * @nr: number of bytes to output
402 *
403 * Output a block of characters with OPOST processing.
404 * Returns the number of characters output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 *
406 * This path is used to speed up block console writes, among other
407 * things when processing blocks of output data. It handles only
408 * the simple cases normally found and helps to generate blocks of
409 * symbols for the console driver and thus improve performance.
410 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000411 * Locking: output_lock to protect column state and space left
412 * (also, this is called from n_tty_write under the
413 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 */
Alan Cox4edf1822008-02-08 04:18:44 -0800415
Joe Petersona88a69c2009-01-02 13:40:53 +0000416static ssize_t process_output_block(struct tty_struct *tty,
417 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100420 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 const unsigned char *cp;
422
Joe Petersona88a69c2009-01-02 13:40:53 +0000423 mutex_lock(&tty->output_lock);
424
Alan Coxf34d7a52008-04-30 00:54:13 -0700425 space = tty_write_room(tty);
Alan Cox300a6202009-01-02 13:41:04 +0000426 if (!space) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000427 mutex_unlock(&tty->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (nr > space)
431 nr = space;
432
433 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000434 unsigned char c = *cp;
435
436 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 case '\n':
438 if (O_ONLRET(tty))
439 tty->column = 0;
440 if (O_ONLCR(tty))
441 goto break_out;
442 tty->canon_column = tty->column;
443 break;
444 case '\r':
445 if (O_ONOCR(tty) && tty->column == 0)
446 goto break_out;
447 if (O_OCRNL(tty))
448 goto break_out;
449 tty->canon_column = tty->column = 0;
450 break;
451 case '\t':
452 goto break_out;
453 case '\b':
454 if (tty->column > 0)
455 tty->column--;
456 break;
457 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000458 if (!iscntrl(c)) {
459 if (O_OLCUC(tty))
460 goto break_out;
461 if (!is_continuation(c, tty))
462 tty->column++;
463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 break;
465 }
466 }
467break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700468 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000469
470 mutex_unlock(&tty->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return i;
472}
473
Joe Petersona88a69c2009-01-02 13:40:53 +0000474/**
475 * process_echoes - write pending echo characters
476 * @tty: terminal device
477 *
478 * Write previously buffered echo (and other ldisc-generated)
479 * characters to the tty.
480 *
481 * Characters generated by the ldisc (including echoes) need to
482 * be buffered because the driver's write buffer can fill during
483 * heavy program output. Echoing straight to the driver will
484 * often fail under these conditions, causing lost characters and
485 * resulting mismatches of ldisc state information.
486 *
487 * Since the ldisc state must represent the characters actually sent
488 * to the driver at the time of the write, operations like certain
489 * changes in column state are also saved in the buffer and executed
490 * here.
491 *
492 * A circular fifo buffer is used so that the most recent characters
493 * are prioritized. Also, when control characters are echoed with a
494 * prefixed "^", the pair is treated atomically and thus not separated.
495 *
496 * Locking: output_lock to protect column state and space left,
497 * echo_lock to protect the echo buffer
498 */
499
500static void process_echoes(struct tty_struct *tty)
501{
502 int space, nr;
503 unsigned char c;
504 unsigned char *cp, *buf_end;
505
506 if (!tty->echo_cnt)
507 return;
508
509 mutex_lock(&tty->output_lock);
510 mutex_lock(&tty->echo_lock);
511
512 space = tty_write_room(tty);
513
514 buf_end = tty->echo_buf + N_TTY_BUF_SIZE;
515 cp = tty->echo_buf + tty->echo_pos;
516 nr = tty->echo_cnt;
517 while (nr > 0) {
518 c = *cp;
519 if (c == ECHO_OP_START) {
520 unsigned char op;
521 unsigned char *opp;
522 int no_space_left = 0;
523
524 /*
525 * If the buffer byte is the start of a multi-byte
526 * operation, get the next byte, which is either the
527 * op code or a control character value.
528 */
529 opp = cp + 1;
530 if (opp == buf_end)
531 opp -= N_TTY_BUF_SIZE;
532 op = *opp;
Alan Cox300a6202009-01-02 13:41:04 +0000533
Joe Petersona88a69c2009-01-02 13:40:53 +0000534 switch (op) {
535 unsigned int num_chars, num_bs;
536
537 case ECHO_OP_ERASE_TAB:
538 if (++opp == buf_end)
539 opp -= N_TTY_BUF_SIZE;
540 num_chars = *opp;
541
542 /*
543 * Determine how many columns to go back
544 * in order to erase the tab.
545 * This depends on the number of columns
546 * used by other characters within the tab
547 * area. If this (modulo 8) count is from
548 * the start of input rather than from a
549 * previous tab, we offset by canon column.
550 * Otherwise, tab spacing is normal.
551 */
552 if (!(num_chars & 0x80))
553 num_chars += tty->canon_column;
554 num_bs = 8 - (num_chars & 7);
555
556 if (num_bs > space) {
557 no_space_left = 1;
558 break;
559 }
560 space -= num_bs;
561 while (num_bs--) {
562 tty_put_char(tty, '\b');
563 if (tty->column > 0)
564 tty->column--;
565 }
566 cp += 3;
567 nr -= 3;
568 break;
569
570 case ECHO_OP_SET_CANON_COL:
571 tty->canon_column = tty->column;
572 cp += 2;
573 nr -= 2;
574 break;
575
576 case ECHO_OP_MOVE_BACK_COL:
577 if (tty->column > 0)
578 tty->column--;
579 cp += 2;
580 nr -= 2;
581 break;
582
583 case ECHO_OP_START:
584 /* This is an escaped echo op start code */
585 if (!space) {
586 no_space_left = 1;
587 break;
588 }
589 tty_put_char(tty, ECHO_OP_START);
590 tty->column++;
591 space--;
592 cp += 2;
593 nr -= 2;
594 break;
595
596 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000597 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600598 * If the op is not a special byte code,
599 * it is a ctrl char tagged to be echoed
600 * as "^X" (where X is the letter
601 * representing the control char).
602 * Note that we must ensure there is
603 * enough space for the whole ctrl pair.
604 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000605 */
Joe Peterson62b26352009-09-09 15:03:47 -0600606 if (space < 2) {
607 no_space_left = 1;
608 break;
609 }
610 tty_put_char(tty, '^');
611 tty_put_char(tty, op ^ 0100);
612 tty->column += 2;
613 space -= 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000614 cp += 2;
615 nr -= 2;
616 }
617
618 if (no_space_left)
619 break;
620 } else {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600621 if (O_OPOST(tty) &&
622 !(test_bit(TTY_HW_COOK_OUT, &tty->flags))) {
623 int retval = do_output_char(c, tty, space);
624 if (retval < 0)
625 break;
626 space -= retval;
627 } else {
628 if (!space)
629 break;
630 tty_put_char(tty, c);
631 space -= 1;
632 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000633 cp += 1;
634 nr -= 1;
635 }
636
637 /* When end of circular buffer reached, wrap around */
638 if (cp >= buf_end)
639 cp -= N_TTY_BUF_SIZE;
640 }
641
642 if (nr == 0) {
643 tty->echo_pos = 0;
644 tty->echo_cnt = 0;
645 tty->echo_overrun = 0;
646 } else {
647 int num_processed = tty->echo_cnt - nr;
648 tty->echo_pos += num_processed;
649 tty->echo_pos &= N_TTY_BUF_SIZE - 1;
650 tty->echo_cnt = nr;
651 if (num_processed > 0)
652 tty->echo_overrun = 0;
653 }
654
655 mutex_unlock(&tty->echo_lock);
656 mutex_unlock(&tty->output_lock);
657
658 if (tty->ops->flush_chars)
659 tty->ops->flush_chars(tty);
660}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000663 * add_echo_byte - add a byte to the echo buffer
664 * @c: unicode byte to echo
665 * @tty: terminal device
666 *
667 * Add a character or operation byte to the echo buffer.
668 *
669 * Should be called under the echo lock to protect the echo buffer.
670 */
671
672static void add_echo_byte(unsigned char c, struct tty_struct *tty)
673{
674 int new_byte_pos;
675
676 if (tty->echo_cnt == N_TTY_BUF_SIZE) {
677 /* Circular buffer is already at capacity */
678 new_byte_pos = tty->echo_pos;
679
680 /*
681 * Since the buffer start position needs to be advanced,
682 * be sure to step by a whole operation byte group.
683 */
Alan Cox300a6202009-01-02 13:41:04 +0000684 if (tty->echo_buf[tty->echo_pos] == ECHO_OP_START) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000685 if (tty->echo_buf[(tty->echo_pos + 1) &
686 (N_TTY_BUF_SIZE - 1)] ==
687 ECHO_OP_ERASE_TAB) {
688 tty->echo_pos += 3;
689 tty->echo_cnt -= 2;
690 } else {
691 tty->echo_pos += 2;
692 tty->echo_cnt -= 1;
693 }
694 } else {
695 tty->echo_pos++;
696 }
697 tty->echo_pos &= N_TTY_BUF_SIZE - 1;
698
699 tty->echo_overrun = 1;
700 } else {
701 new_byte_pos = tty->echo_pos + tty->echo_cnt;
702 new_byte_pos &= N_TTY_BUF_SIZE - 1;
703 tty->echo_cnt++;
704 }
705
706 tty->echo_buf[new_byte_pos] = c;
707}
708
709/**
710 * echo_move_back_col - add operation to move back a column
711 * @tty: terminal device
712 *
713 * Add an operation to the echo buffer to move back one column.
714 *
715 * Locking: echo_lock to protect the echo buffer
716 */
717
718static void echo_move_back_col(struct tty_struct *tty)
719{
720 mutex_lock(&tty->echo_lock);
721
722 add_echo_byte(ECHO_OP_START, tty);
723 add_echo_byte(ECHO_OP_MOVE_BACK_COL, tty);
724
725 mutex_unlock(&tty->echo_lock);
726}
727
728/**
729 * echo_set_canon_col - add operation to set the canon column
730 * @tty: terminal device
731 *
732 * Add an operation to the echo buffer to set the canon column
733 * to the current column.
734 *
735 * Locking: echo_lock to protect the echo buffer
736 */
737
738static void echo_set_canon_col(struct tty_struct *tty)
739{
740 mutex_lock(&tty->echo_lock);
741
742 add_echo_byte(ECHO_OP_START, tty);
743 add_echo_byte(ECHO_OP_SET_CANON_COL, tty);
744
745 mutex_unlock(&tty->echo_lock);
746}
747
748/**
749 * echo_erase_tab - add operation to erase a tab
750 * @num_chars: number of character columns already used
751 * @after_tab: true if num_chars starts after a previous tab
752 * @tty: terminal device
753 *
754 * Add an operation to the echo buffer to erase a tab.
755 *
756 * Called by the eraser function, which knows how many character
757 * columns have been used since either a previous tab or the start
758 * of input. This information will be used later, along with
759 * canon column (if applicable), to go back the correct number
760 * of columns.
761 *
762 * Locking: echo_lock to protect the echo buffer
763 */
764
765static void echo_erase_tab(unsigned int num_chars, int after_tab,
766 struct tty_struct *tty)
767{
768 mutex_lock(&tty->echo_lock);
769
770 add_echo_byte(ECHO_OP_START, tty);
771 add_echo_byte(ECHO_OP_ERASE_TAB, tty);
772
773 /* We only need to know this modulo 8 (tab spacing) */
774 num_chars &= 7;
775
776 /* Set the high bit as a flag if num_chars is after a previous tab */
777 if (after_tab)
778 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000779
Joe Petersona88a69c2009-01-02 13:40:53 +0000780 add_echo_byte(num_chars, tty);
781
782 mutex_unlock(&tty->echo_lock);
783}
784
785/**
786 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 * @c: unicode byte to echo
788 * @tty: terminal device
789 *
Alan Cox4edf1822008-02-08 04:18:44 -0800790 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100792 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000793 * This variant does not treat control characters specially.
794 *
795 * Locking: echo_lock to protect the echo buffer
796 */
797
798static void echo_char_raw(unsigned char c, struct tty_struct *tty)
799{
800 mutex_lock(&tty->echo_lock);
801
802 if (c == ECHO_OP_START) {
803 add_echo_byte(ECHO_OP_START, tty);
804 add_echo_byte(ECHO_OP_START, tty);
805 } else {
806 add_echo_byte(c, tty);
807 }
808
809 mutex_unlock(&tty->echo_lock);
810}
811
812/**
813 * echo_char - echo a character
814 * @c: unicode byte to echo
815 * @tty: terminal device
816 *
817 * Echo user input back onto the screen. This must be called only when
818 * L_ECHO(tty) is true. Called from the driver receive_buf path.
819 *
Joe Peterson62b26352009-09-09 15:03:47 -0600820 * This variant tags control characters to be echoed as "^X"
821 * (where X is the letter representing the control char).
Joe Petersona88a69c2009-01-02 13:40:53 +0000822 *
823 * Locking: echo_lock to protect the echo buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 */
825
826static void echo_char(unsigned char c, struct tty_struct *tty)
827{
Joe Petersona88a69c2009-01-02 13:40:53 +0000828 mutex_lock(&tty->echo_lock);
829
830 if (c == ECHO_OP_START) {
831 add_echo_byte(ECHO_OP_START, tty);
832 add_echo_byte(ECHO_OP_START, tty);
833 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600834 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Joe Petersona88a69c2009-01-02 13:40:53 +0000835 add_echo_byte(ECHO_OP_START, tty);
836 add_echo_byte(c, tty);
837 }
838
839 mutex_unlock(&tty->echo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Alan Cox17b82062008-10-13 10:45:06 +0100842/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000843 * finish_erasing - complete erase
Alan Cox17b82062008-10-13 10:45:06 +0100844 * @tty: tty doing the erase
Alan Cox17b82062008-10-13 10:45:06 +0100845 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847static inline void finish_erasing(struct tty_struct *tty)
848{
849 if (tty->erasing) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000850 echo_char_raw('/', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 tty->erasing = 0;
852 }
853}
854
855/**
856 * eraser - handle erase function
857 * @c: character input
858 * @tty: terminal device
859 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200860 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 * present in the stream from the driver layer. Handles the complexities
862 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100863 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000864 * Locking: read_lock for tty buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 */
Alan Cox4edf1822008-02-08 04:18:44 -0800866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867static void eraser(unsigned char c, struct tty_struct *tty)
868{
869 enum { ERASE, WERASE, KILL } kill_type;
870 int head, seen_alnums, cnt;
871 unsigned long flags;
872
Alan Cox17b82062008-10-13 10:45:06 +0100873 /* FIXME: locking needed ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (tty->read_head == tty->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000875 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return;
877 }
878 if (c == ERASE_CHAR(tty))
879 kill_type = ERASE;
880 else if (c == WERASE_CHAR(tty))
881 kill_type = WERASE;
882 else {
883 if (!L_ECHO(tty)) {
884 spin_lock_irqsave(&tty->read_lock, flags);
885 tty->read_cnt -= ((tty->read_head - tty->canon_head) &
886 (N_TTY_BUF_SIZE - 1));
887 tty->read_head = tty->canon_head;
888 spin_unlock_irqrestore(&tty->read_lock, flags);
889 return;
890 }
891 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
892 spin_lock_irqsave(&tty->read_lock, flags);
893 tty->read_cnt -= ((tty->read_head - tty->canon_head) &
894 (N_TTY_BUF_SIZE - 1));
895 tty->read_head = tty->canon_head;
896 spin_unlock_irqrestore(&tty->read_lock, flags);
897 finish_erasing(tty);
898 echo_char(KILL_CHAR(tty), tty);
899 /* Add a newline if ECHOK is on and ECHOKE is off. */
900 if (L_ECHOK(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +0000901 echo_char_raw('\n', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return;
903 }
904 kill_type = KILL;
905 }
906
907 seen_alnums = 0;
Alan Cox17b82062008-10-13 10:45:06 +0100908 /* FIXME: Locking ?? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 while (tty->read_head != tty->canon_head) {
910 head = tty->read_head;
911
912 /* erase a single possibly multibyte character */
913 do {
914 head = (head - 1) & (N_TTY_BUF_SIZE-1);
915 c = tty->read_buf[head];
916 } while (is_continuation(c, tty) && head != tty->canon_head);
917
918 /* do not partially erase */
919 if (is_continuation(c, tty))
920 break;
921
922 if (kill_type == WERASE) {
923 /* Equivalent to BSD's ALTWERASE. */
924 if (isalnum(c) || c == '_')
925 seen_alnums++;
926 else if (seen_alnums)
927 break;
928 }
929 cnt = (tty->read_head - head) & (N_TTY_BUF_SIZE-1);
930 spin_lock_irqsave(&tty->read_lock, flags);
931 tty->read_head = head;
932 tty->read_cnt -= cnt;
933 spin_unlock_irqrestore(&tty->read_lock, flags);
934 if (L_ECHO(tty)) {
935 if (L_ECHOPRT(tty)) {
936 if (!tty->erasing) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000937 echo_char_raw('\\', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 tty->erasing = 1;
939 }
940 /* if cnt > 1, output a multi-byte character */
941 echo_char(c, tty);
942 while (--cnt > 0) {
943 head = (head+1) & (N_TTY_BUF_SIZE-1);
Joe Petersona88a69c2009-01-02 13:40:53 +0000944 echo_char_raw(tty->read_buf[head], tty);
945 echo_move_back_col(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
948 echo_char(ERASE_CHAR(tty), tty);
949 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +0000950 unsigned int num_chars = 0;
951 int after_tab = 0;
952 unsigned long tail = tty->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Joe Petersona88a69c2009-01-02 13:40:53 +0000954 /*
955 * Count the columns used for characters
956 * since the start of input or after a
957 * previous tab.
958 * This info is used to go back the correct
959 * number of columns.
960 */
961 while (tail != tty->canon_head) {
962 tail = (tail-1) & (N_TTY_BUF_SIZE-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 c = tty->read_buf[tail];
Joe Petersona88a69c2009-01-02 13:40:53 +0000964 if (c == '\t') {
965 after_tab = 1;
966 break;
Alan Cox300a6202009-01-02 13:41:04 +0000967 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +0000969 num_chars += 2;
970 } else if (!is_continuation(c, tty)) {
971 num_chars++;
972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000974 echo_erase_tab(num_chars, after_tab, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 } else {
976 if (iscntrl(c) && L_ECHOCTL(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000977 echo_char_raw('\b', tty);
978 echo_char_raw(' ', tty);
979 echo_char_raw('\b', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000982 echo_char_raw('\b', tty);
983 echo_char_raw(' ', tty);
984 echo_char_raw('\b', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986 }
987 }
988 if (kill_type == ERASE)
989 break;
990 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000991 if (tty->read_head == tty->canon_head && L_ECHO(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 finish_erasing(tty);
993}
994
995/**
996 * isig - handle the ISIG optio
997 * @sig: signal
998 * @tty: terminal
999 * @flush: force flush
1000 *
1001 * Called when a signal is being sent due to terminal input. This
1002 * may caus terminal flushing to take place according to the termios
1003 * settings and character used. Called from the driver receive_buf
1004 * path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001005 *
1006 * Locking: ctrl_lock, read_lock (both via flush buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 */
Alan Cox4edf1822008-02-08 04:18:44 -08001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009static inline void isig(int sig, struct tty_struct *tty, int flush)
1010{
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001011 if (tty->pgrp)
1012 kill_pgrp(tty->pgrp, sig, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if (flush || !L_NOFLSH(tty)) {
1014 n_tty_flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001015 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017}
1018
1019/**
1020 * n_tty_receive_break - handle break
1021 * @tty: terminal
1022 *
1023 * An RS232 break event has been hit in the incoming bitstream. This
1024 * can cause a variety of events depending upon the termios settings.
1025 *
1026 * Called from the receive_buf path so single threaded.
1027 */
Alan Cox4edf1822008-02-08 04:18:44 -08001028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029static inline void n_tty_receive_break(struct tty_struct *tty)
1030{
1031 if (I_IGNBRK(tty))
1032 return;
1033 if (I_BRKINT(tty)) {
1034 isig(SIGINT, tty, 1);
1035 return;
1036 }
1037 if (I_PARMRK(tty)) {
1038 put_tty_queue('\377', tty);
1039 put_tty_queue('\0', tty);
1040 }
1041 put_tty_queue('\0', tty);
1042 wake_up_interruptible(&tty->read_wait);
1043}
1044
1045/**
1046 * n_tty_receive_overrun - handle overrun reporting
1047 * @tty: terminal
1048 *
1049 * Data arrived faster than we could process it. While the tty
1050 * driver has flagged this the bits that were missed are gone
1051 * forever.
1052 *
1053 * Called from the receive_buf path so single threaded. Does not
1054 * need locking as num_overrun and overrun_time are function
1055 * private.
1056 */
Alan Cox4edf1822008-02-08 04:18:44 -08001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058static inline void n_tty_receive_overrun(struct tty_struct *tty)
1059{
1060 char buf[64];
1061
1062 tty->num_overrun++;
1063 if (time_before(tty->overrun_time, jiffies - HZ) ||
1064 time_after(tty->overrun_time, jiffies)) {
1065 printk(KERN_WARNING "%s: %d input overrun(s)\n",
1066 tty_name(tty, buf),
1067 tty->num_overrun);
1068 tty->overrun_time = jiffies;
1069 tty->num_overrun = 0;
1070 }
1071}
1072
1073/**
1074 * n_tty_receive_parity_error - error notifier
1075 * @tty: terminal device
1076 * @c: character
1077 *
1078 * Process a parity error and queue the right data to indicate
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001079 * the error case if necessary. Locking as per n_tty_receive_buf.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 */
1081static inline void n_tty_receive_parity_error(struct tty_struct *tty,
1082 unsigned char c)
1083{
Alan Cox4edf1822008-02-08 04:18:44 -08001084 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (I_PARMRK(tty)) {
1087 put_tty_queue('\377', tty);
1088 put_tty_queue('\0', tty);
1089 put_tty_queue(c, tty);
1090 } else if (I_INPCK(tty))
1091 put_tty_queue('\0', tty);
1092 else
1093 put_tty_queue(c, tty);
1094 wake_up_interruptible(&tty->read_wait);
1095}
1096
1097/**
1098 * n_tty_receive_char - perform processing
1099 * @tty: terminal device
1100 * @c: character
1101 *
1102 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001103 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 * driver above.
1105 */
1106
1107static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1108{
1109 unsigned long flags;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001110 int parmrk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 if (tty->raw) {
1113 put_tty_queue(c, tty);
1114 return;
1115 }
Alan Cox4edf1822008-02-08 04:18:44 -08001116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (I_ISTRIP(tty))
1118 c &= 0x7f;
1119 if (I_IUCLC(tty) && L_IEXTEN(tty))
Alan Cox300a6202009-01-02 13:41:04 +00001120 c = tolower(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
hyc@symas.com26df6d12010-06-22 10:14:49 -07001122 if (L_EXTPROC(tty)) {
1123 put_tty_queue(c, tty);
1124 return;
1125 }
1126
Joe Peterson54d2a372008-02-06 01:37:59 -08001127 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) &&
Joe Petersona88a69c2009-01-02 13:40:53 +00001128 I_IXANY(tty) && c != START_CHAR(tty) && c != STOP_CHAR(tty) &&
1129 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && c != SUSP_CHAR(tty)) {
Joe Peterson54d2a372008-02-06 01:37:59 -08001130 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001131 process_echoes(tty);
1132 }
Joe Peterson54d2a372008-02-06 01:37:59 -08001133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (tty->closing) {
1135 if (I_IXON(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001136 if (c == START_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001138 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00001139 } else if (c == STOP_CHAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 stop_tty(tty);
1141 }
1142 return;
1143 }
1144
1145 /*
1146 * If the previous character was LNEXT, or we know that this
1147 * character is not one of the characters that we'll have to
1148 * handle specially, do shortcut processing to speed things
1149 * up.
1150 */
1151 if (!test_bit(c, tty->process_char_map) || tty->lnext) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 tty->lnext = 0;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001153 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
1154 if (tty->read_cnt >= (N_TTY_BUF_SIZE - parmrk - 1)) {
1155 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001156 if (L_ECHO(tty))
1157 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001158 return;
1159 }
1160 if (L_ECHO(tty)) {
1161 finish_erasing(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 /* Record the column of first canon char. */
1163 if (tty->canon_head == tty->read_head)
Joe Petersona88a69c2009-01-02 13:40:53 +00001164 echo_set_canon_col(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001166 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
Joe Petersonacc71bb2009-01-02 13:43:32 +00001168 if (parmrk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 put_tty_queue(c, tty);
1170 put_tty_queue(c, tty);
1171 return;
1172 }
Alan Cox4edf1822008-02-08 04:18:44 -08001173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (I_IXON(tty)) {
1175 if (c == START_CHAR(tty)) {
1176 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001177 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return;
1179 }
1180 if (c == STOP_CHAR(tty)) {
1181 stop_tty(tty);
1182 return;
1183 }
1184 }
Joe Peterson575537b2008-04-30 00:53:30 -07001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if (L_ISIG(tty)) {
1187 int signal;
1188 signal = SIGINT;
1189 if (c == INTR_CHAR(tty))
1190 goto send_signal;
1191 signal = SIGQUIT;
1192 if (c == QUIT_CHAR(tty))
1193 goto send_signal;
1194 signal = SIGTSTP;
1195 if (c == SUSP_CHAR(tty)) {
1196send_signal:
Joe Petersonec5b1152008-02-06 01:37:38 -08001197 /*
Joe Petersonec5b1152008-02-06 01:37:38 -08001198 * Note that we do not use isig() here because we want
1199 * the order to be:
1200 * 1) flush, 2) echo, 3) signal
1201 */
1202 if (!L_NOFLSH(tty)) {
1203 n_tty_flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001204 tty_driver_flush_buffer(tty);
Joe Petersonec5b1152008-02-06 01:37:38 -08001205 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001206 if (I_IXON(tty))
1207 start_tty(tty);
1208 if (L_ECHO(tty)) {
Joe Petersonec5b1152008-02-06 01:37:38 -08001209 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001210 process_echoes(tty);
1211 }
Joe Petersonec5b1152008-02-06 01:37:38 -08001212 if (tty->pgrp)
1213 kill_pgrp(tty->pgrp, signal, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return;
1215 }
1216 }
Joe Peterson575537b2008-04-30 00:53:30 -07001217
1218 if (c == '\r') {
1219 if (I_IGNCR(tty))
1220 return;
1221 if (I_ICRNL(tty))
1222 c = '\n';
1223 } else if (c == '\n' && I_INLCR(tty))
1224 c = '\r';
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (tty->icanon) {
1227 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1228 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1229 eraser(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001230 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return;
1232 }
1233 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
1234 tty->lnext = 1;
1235 if (L_ECHO(tty)) {
1236 finish_erasing(tty);
1237 if (L_ECHOCTL(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001238 echo_char_raw('^', tty);
1239 echo_char_raw('\b', tty);
1240 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242 }
1243 return;
1244 }
1245 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
1246 L_IEXTEN(tty)) {
1247 unsigned long tail = tty->canon_head;
1248
1249 finish_erasing(tty);
1250 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001251 echo_char_raw('\n', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 while (tail != tty->read_head) {
1253 echo_char(tty->read_buf[tail], tty);
1254 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
1255 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001256 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return;
1258 }
1259 if (c == '\n') {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001260 if (tty->read_cnt >= N_TTY_BUF_SIZE) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001261 if (L_ECHO(tty))
1262 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001263 return;
1264 }
1265 if (L_ECHO(tty) || L_ECHONL(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001266 echo_char_raw('\n', tty);
1267 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269 goto handle_newline;
1270 }
1271 if (c == EOF_CHAR(tty)) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001272 if (tty->read_cnt >= N_TTY_BUF_SIZE)
1273 return;
Alan Cox4edf1822008-02-08 04:18:44 -08001274 if (tty->canon_head != tty->read_head)
1275 set_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 c = __DISABLED_CHAR;
1277 goto handle_newline;
1278 }
1279 if ((c == EOL_CHAR(tty)) ||
1280 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001281 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty))
1282 ? 1 : 0;
1283 if (tty->read_cnt >= (N_TTY_BUF_SIZE - parmrk)) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001284 if (L_ECHO(tty))
1285 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001286 return;
1287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 /*
1289 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1290 */
1291 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /* Record the column of first canon char. */
1293 if (tty->canon_head == tty->read_head)
Joe Petersona88a69c2009-01-02 13:40:53 +00001294 echo_set_canon_col(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001296 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298 /*
1299 * XXX does PARMRK doubling happen for
1300 * EOL_CHAR and EOL2_CHAR?
1301 */
Joe Petersonacc71bb2009-01-02 13:43:32 +00001302 if (parmrk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 put_tty_queue(c, tty);
1304
Alan Cox4edf1822008-02-08 04:18:44 -08001305handle_newline:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 spin_lock_irqsave(&tty->read_lock, flags);
1307 set_bit(tty->read_head, tty->read_flags);
1308 put_tty_queue_nolock(c, tty);
1309 tty->canon_head = tty->read_head;
1310 tty->canon_data++;
1311 spin_unlock_irqrestore(&tty->read_lock, flags);
1312 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1313 if (waitqueue_active(&tty->read_wait))
1314 wake_up_interruptible(&tty->read_wait);
1315 return;
1316 }
1317 }
Alan Cox4edf1822008-02-08 04:18:44 -08001318
Joe Petersonacc71bb2009-01-02 13:43:32 +00001319 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
1320 if (tty->read_cnt >= (N_TTY_BUF_SIZE - parmrk - 1)) {
1321 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001322 if (L_ECHO(tty))
1323 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001324 return;
1325 }
1326 if (L_ECHO(tty)) {
1327 finish_erasing(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (c == '\n')
Joe Petersona88a69c2009-01-02 13:40:53 +00001329 echo_char_raw('\n', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 else {
1331 /* Record the column of first canon char. */
1332 if (tty->canon_head == tty->read_head)
Joe Petersona88a69c2009-01-02 13:40:53 +00001333 echo_set_canon_col(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 echo_char(c, tty);
1335 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001336 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338
Joe Petersonacc71bb2009-01-02 13:43:32 +00001339 if (parmrk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 put_tty_queue(c, tty);
1341
1342 put_tty_queue(c, tty);
Alan Cox4edf1822008-02-08 04:18:44 -08001343}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346/**
1347 * n_tty_write_wakeup - asynchronous I/O notifier
1348 * @tty: tty device
1349 *
1350 * Required for the ptys, serial driver etc. since processes
1351 * that attach themselves to the master and rely on ASYNC
1352 * IO must be woken up
1353 */
1354
1355static void n_tty_write_wakeup(struct tty_struct *tty)
1356{
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00001357 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
1361/**
1362 * n_tty_receive_buf - data receive
1363 * @tty: terminal device
1364 * @cp: buffer
1365 * @fp: flag buffer
1366 * @count: characters
1367 *
1368 * Called by the terminal driver when a block of characters has
1369 * been received. This function must be called from soft contexts
1370 * not from interrupt context. The driver is responsible for making
1371 * calls one at a time and in order (or using flush_to_ldisc)
1372 */
Alan Cox4edf1822008-02-08 04:18:44 -08001373
Linus Torvalds55db4c62011-06-04 06:33:24 +09001374static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1375 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 const unsigned char *p;
1378 char *f, flags = TTY_NORMAL;
1379 int i;
1380 char buf[64];
1381 unsigned long cpuflags;
1382
1383 if (!tty->read_buf)
Linus Torvalds55db4c62011-06-04 06:33:24 +09001384 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 if (tty->real_raw) {
1387 spin_lock_irqsave(&tty->read_lock, cpuflags);
1388 i = min(N_TTY_BUF_SIZE - tty->read_cnt,
1389 N_TTY_BUF_SIZE - tty->read_head);
1390 i = min(count, i);
1391 memcpy(tty->read_buf + tty->read_head, cp, i);
1392 tty->read_head = (tty->read_head + i) & (N_TTY_BUF_SIZE-1);
1393 tty->read_cnt += i;
1394 cp += i;
1395 count -= i;
1396
1397 i = min(N_TTY_BUF_SIZE - tty->read_cnt,
1398 N_TTY_BUF_SIZE - tty->read_head);
1399 i = min(count, i);
1400 memcpy(tty->read_buf + tty->read_head, cp, i);
1401 tty->read_head = (tty->read_head + i) & (N_TTY_BUF_SIZE-1);
1402 tty->read_cnt += i;
1403 spin_unlock_irqrestore(&tty->read_lock, cpuflags);
1404 } else {
Alan Cox4edf1822008-02-08 04:18:44 -08001405 for (i = count, p = cp, f = fp; i; i--, p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (f)
1407 flags = *f++;
1408 switch (flags) {
1409 case TTY_NORMAL:
1410 n_tty_receive_char(tty, *p);
1411 break;
1412 case TTY_BREAK:
1413 n_tty_receive_break(tty);
1414 break;
1415 case TTY_PARITY:
1416 case TTY_FRAME:
1417 n_tty_receive_parity_error(tty, *p);
1418 break;
1419 case TTY_OVERRUN:
1420 n_tty_receive_overrun(tty);
1421 break;
1422 default:
Alan Cox4edf1822008-02-08 04:18:44 -08001423 printk(KERN_ERR "%s: unknown flag %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 tty_name(tty, buf), flags);
1425 break;
1426 }
1427 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001428 if (tty->ops->flush_chars)
1429 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431
Linus Torvalds55db4c62011-06-04 06:33:24 +09001432 n_tty_set_room(tty);
1433
hyc@symas.com26df6d12010-06-22 10:14:49 -07001434 if ((!tty->icanon && (tty->read_cnt >= tty->minimum_to_wake)) ||
1435 L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1437 if (waitqueue_active(&tty->read_wait))
1438 wake_up_interruptible(&tty->read_wait);
1439 }
1440
1441 /*
1442 * Check the remaining room for the input canonicalization
1443 * mode. We don't want to throttle the driver if we're in
1444 * canonical mode and don't have a newline yet!
1445 */
Linus Torvalds55db4c62011-06-04 06:33:24 +09001446 if (tty->receive_room < TTY_THRESHOLD_THROTTLE)
Alan Cox39c2e602008-04-30 00:54:18 -07001447 tty_throttle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450int is_ignored(int sig)
1451{
1452 return (sigismember(&current->blocked, sig) ||
Alan Cox4edf1822008-02-08 04:18:44 -08001453 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454}
1455
1456/**
1457 * n_tty_set_termios - termios data changed
1458 * @tty: terminal
1459 * @old: previous data
1460 *
1461 * Called by the tty layer when the user changes termios flags so
1462 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001463 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 * guaranteed that this function will not be re-entered or in progress
1465 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001466 *
1467 * Locking: Caller holds tty->termios_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 */
Alan Cox4edf1822008-02-08 04:18:44 -08001469
1470static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Alan Cox47afa7a2008-10-13 10:44:17 +01001472 int canon_change = 1;
1473 BUG_ON(!tty);
1474
1475 if (old)
1476 canon_change = (old->c_lflag ^ tty->termios->c_lflag) & ICANON;
1477 if (canon_change) {
1478 memset(&tty->read_flags, 0, sizeof tty->read_flags);
1479 tty->canon_head = tty->read_tail;
1480 tty->canon_data = 0;
1481 tty->erasing = 0;
1482 }
1483
1484 if (canon_change && !L_ICANON(tty) && tty->read_cnt)
1485 wake_up_interruptible(&tty->read_wait);
Alan Cox4edf1822008-02-08 04:18:44 -08001486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 tty->icanon = (L_ICANON(tty) != 0);
1488 if (test_bit(TTY_HW_COOK_IN, &tty->flags)) {
1489 tty->raw = 1;
1490 tty->real_raw = 1;
Linus Torvalds55db4c62011-06-04 06:33:24 +09001491 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return;
1493 }
1494 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1495 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1496 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1497 I_PARMRK(tty)) {
1498 memset(tty->process_char_map, 0, 256/8);
1499
1500 if (I_IGNCR(tty) || I_ICRNL(tty))
1501 set_bit('\r', tty->process_char_map);
1502 if (I_INLCR(tty))
1503 set_bit('\n', tty->process_char_map);
1504
1505 if (L_ICANON(tty)) {
1506 set_bit(ERASE_CHAR(tty), tty->process_char_map);
1507 set_bit(KILL_CHAR(tty), tty->process_char_map);
1508 set_bit(EOF_CHAR(tty), tty->process_char_map);
1509 set_bit('\n', tty->process_char_map);
1510 set_bit(EOL_CHAR(tty), tty->process_char_map);
1511 if (L_IEXTEN(tty)) {
1512 set_bit(WERASE_CHAR(tty),
1513 tty->process_char_map);
1514 set_bit(LNEXT_CHAR(tty),
1515 tty->process_char_map);
1516 set_bit(EOL2_CHAR(tty),
1517 tty->process_char_map);
1518 if (L_ECHO(tty))
1519 set_bit(REPRINT_CHAR(tty),
1520 tty->process_char_map);
1521 }
1522 }
1523 if (I_IXON(tty)) {
1524 set_bit(START_CHAR(tty), tty->process_char_map);
1525 set_bit(STOP_CHAR(tty), tty->process_char_map);
1526 }
1527 if (L_ISIG(tty)) {
1528 set_bit(INTR_CHAR(tty), tty->process_char_map);
1529 set_bit(QUIT_CHAR(tty), tty->process_char_map);
1530 set_bit(SUSP_CHAR(tty), tty->process_char_map);
1531 }
1532 clear_bit(__DISABLED_CHAR, tty->process_char_map);
1533 tty->raw = 0;
1534 tty->real_raw = 0;
1535 } else {
1536 tty->raw = 1;
1537 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1538 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1539 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
1540 tty->real_raw = 1;
1541 else
1542 tty->real_raw = 0;
1543 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09001544 n_tty_set_room(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001545 /* The termios change make the tty ready for I/O */
1546 wake_up_interruptible(&tty->write_wait);
1547 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
1550/**
1551 * n_tty_close - close the ldisc for this tty
1552 * @tty: device
1553 *
Alan Cox4edf1822008-02-08 04:18:44 -08001554 * Called from the terminal layer when this line discipline is
1555 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 * discipline change. The function will not be called while other
1557 * ldisc methods are in progress.
1558 */
Alan Cox4edf1822008-02-08 04:18:44 -08001559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560static void n_tty_close(struct tty_struct *tty)
1561{
1562 n_tty_flush_buffer(tty);
1563 if (tty->read_buf) {
Alan Cox0b4068a2009-06-11 13:05:49 +01001564 kfree(tty->read_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 tty->read_buf = NULL;
1566 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001567 if (tty->echo_buf) {
Alan Cox0b4068a2009-06-11 13:05:49 +01001568 kfree(tty->echo_buf);
Joe Petersona88a69c2009-01-02 13:40:53 +00001569 tty->echo_buf = NULL;
1570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571}
1572
1573/**
1574 * n_tty_open - open an ldisc
1575 * @tty: terminal to open
1576 *
Alan Cox4edf1822008-02-08 04:18:44 -08001577 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 * terminal device. Can sleep. Called serialized so that no
1579 * other events will occur in parallel. No further open will occur
1580 * until a close.
1581 */
1582
1583static int n_tty_open(struct tty_struct *tty)
1584{
1585 if (!tty)
1586 return -EINVAL;
1587
Joe Petersona88a69c2009-01-02 13:40:53 +00001588 /* These are ugly. Currently a malloc failure here can panic */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (!tty->read_buf) {
Alan Cox0b4068a2009-06-11 13:05:49 +01001590 tty->read_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (!tty->read_buf)
1592 return -ENOMEM;
1593 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001594 if (!tty->echo_buf) {
Alan Cox0b4068a2009-06-11 13:05:49 +01001595 tty->echo_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1596
Joe Petersona88a69c2009-01-02 13:40:53 +00001597 if (!tty->echo_buf)
1598 return -ENOMEM;
1599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 reset_buffer_flags(tty);
Andrew McGregor7b292b42011-06-13 11:31:31 +12001601 tty_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 tty->column = 0;
1603 n_tty_set_termios(tty, NULL);
1604 tty->minimum_to_wake = 1;
1605 tty->closing = 0;
1606 return 0;
1607}
1608
1609static inline int input_available_p(struct tty_struct *tty, int amt)
1610{
OGAWA Hirofumie043e422009-07-29 12:15:56 -07001611 tty_flush_to_ldisc(tty);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001612 if (tty->icanon && !L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (tty->canon_data)
1614 return 1;
1615 } else if (tty->read_cnt >= (amt ? amt : 1))
1616 return 1;
1617
1618 return 0;
1619}
1620
1621/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001622 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 * @tty: terminal device
1624 * @b: user data
1625 * @nr: size of data
1626 *
Alan Cox11a96d12008-10-13 10:46:24 +01001627 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 * ICANON is off; it copies characters straight from the tty queue to
1629 * user space directly. It can be profitably called twice; once to
1630 * drain the space from the tail pointer to the (physical) end of the
1631 * buffer, and once to drain the space from the (physical) beginning of
1632 * the buffer to head pointer.
1633 *
Paul Fulghum817d6d32006-06-28 04:26:47 -07001634 * Called under the tty->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 *
1636 */
Alan Cox4edf1822008-02-08 04:18:44 -08001637
Alan Cox33f0f882006-01-09 20:54:13 -08001638static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 unsigned char __user **b,
1640 size_t *nr)
1641
1642{
1643 int retval;
1644 size_t n;
1645 unsigned long flags;
1646
1647 retval = 0;
1648 spin_lock_irqsave(&tty->read_lock, flags);
1649 n = min(tty->read_cnt, N_TTY_BUF_SIZE - tty->read_tail);
1650 n = min(*nr, n);
1651 spin_unlock_irqrestore(&tty->read_lock, flags);
1652 if (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 retval = copy_to_user(*b, &tty->read_buf[tty->read_tail], n);
1654 n -= retval;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001655 tty_audit_add_data(tty, &tty->read_buf[tty->read_tail], n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 spin_lock_irqsave(&tty->read_lock, flags);
1657 tty->read_tail = (tty->read_tail + n) & (N_TTY_BUF_SIZE-1);
1658 tty->read_cnt -= n;
hyc@symas.com26df6d12010-06-22 10:14:49 -07001659 /* Turn single EOF into zero-length read */
1660 if (L_EXTPROC(tty) && tty->icanon && n == 1) {
1661 if (!tty->read_cnt && (*b)[n-1] == EOF_CHAR(tty))
1662 n--;
1663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 spin_unlock_irqrestore(&tty->read_lock, flags);
1665 *b += n;
1666 *nr -= n;
1667 }
1668 return retval;
1669}
1670
Al Virocc4191d2008-03-29 03:08:48 +00001671extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08001672 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674/**
1675 * job_control - check job control
1676 * @tty: tty
1677 * @file: file handle
1678 *
1679 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08001680 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07001682 *
1683 * FIXME:
1684 * Locking: None - redirected write test is safe, testing
1685 * current->signal should possibly lock current->sighand
1686 * pgrp locking ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 */
Alan Cox4edf1822008-02-08 04:18:44 -08001688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689static int job_control(struct tty_struct *tty, struct file *file)
1690{
1691 /* Job control check -- must be done at start and after
1692 every sleep (POSIX.1 7.1.1.4). */
1693 /* NOTE: not yet done after every sleep pending a thorough
1694 check of the logic of this change. -- jlc */
1695 /* don't stop on /dev/console */
1696 if (file->f_op->write != redirected_tty_write &&
1697 current->signal->tty == tty) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001698 if (!tty->pgrp)
Alan Cox11a96d12008-10-13 10:46:24 +01001699 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001700 else if (task_pgrp(current) != tty->pgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (is_ignored(SIGTTIN) ||
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08001702 is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return -EIO;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001704 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
Oleg Nesterov040b6362007-06-01 00:46:53 -07001705 set_thread_flag(TIF_SIGPENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 return -ERESTARTSYS;
1707 }
1708 }
1709 return 0;
1710}
Alan Cox4edf1822008-02-08 04:18:44 -08001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713/**
Alan Cox11a96d12008-10-13 10:46:24 +01001714 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 * @tty: tty device
1716 * @file: file object
1717 * @buf: userspace buffer pointer
1718 * @nr: size of I/O
1719 *
1720 * Perform reads for the line discipline. We are guaranteed that the
1721 * line discipline will not be closed under us but we may get multiple
1722 * parallel readers and must handle this ourselves. We may also get
1723 * a hangup. Always called in user context, may sleep.
1724 *
1725 * This code must be sure never to sleep through a hangup.
1726 */
Alan Cox4edf1822008-02-08 04:18:44 -08001727
Alan Cox11a96d12008-10-13 10:46:24 +01001728static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 unsigned char __user *buf, size_t nr)
1730{
1731 unsigned char __user *b = buf;
1732 DECLARE_WAITQUEUE(wait, current);
1733 int c;
1734 int minimum, time;
1735 ssize_t retval = 0;
1736 ssize_t size;
1737 long timeout;
1738 unsigned long flags;
Alan Cox04f378b2008-04-30 00:53:29 -07001739 int packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741do_it_again:
1742
Alan Cox17b82062008-10-13 10:45:06 +01001743 BUG_ON(!tty->read_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08001746 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 minimum = time = 0;
1750 timeout = MAX_SCHEDULE_TIMEOUT;
1751 if (!tty->icanon) {
1752 time = (HZ / 10) * TIME_CHAR(tty);
1753 minimum = MIN_CHAR(tty);
1754 if (minimum) {
1755 if (time)
1756 tty->minimum_to_wake = 1;
1757 else if (!waitqueue_active(&tty->read_wait) ||
1758 (tty->minimum_to_wake > minimum))
1759 tty->minimum_to_wake = minimum;
1760 } else {
1761 timeout = 0;
1762 if (time) {
1763 timeout = time;
1764 time = 0;
1765 }
1766 tty->minimum_to_wake = minimum = 1;
1767 }
1768 }
1769
1770 /*
1771 * Internal serialization of reads.
1772 */
1773 if (file->f_flags & O_NONBLOCK) {
Ingo Molnar70522e12006-03-23 03:00:31 -08001774 if (!mutex_trylock(&tty->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return -EAGAIN;
Alan Cox4edf1822008-02-08 04:18:44 -08001776 } else {
Ingo Molnar70522e12006-03-23 03:00:31 -08001777 if (mutex_lock_interruptible(&tty->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 return -ERESTARTSYS;
1779 }
Alan Cox04f378b2008-04-30 00:53:29 -07001780 packet = tty->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 while (nr) {
1784 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07001785 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 unsigned char cs;
1787 if (b != buf)
1788 break;
Alan Cox04f378b2008-04-30 00:53:29 -07001789 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 cs = tty->link->ctrl_status;
1791 tty->link->ctrl_status = 0;
Alan Cox04f378b2008-04-30 00:53:29 -07001792 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -07001793 if (tty_put_user(tty, cs, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 retval = -EFAULT;
1795 b--;
1796 break;
1797 }
1798 nr--;
1799 break;
1800 }
1801 /* This statement must be first before checking for input
1802 so that any interrupt will set the state back to
1803 TASK_RUNNING. */
1804 set_current_state(TASK_INTERRUPTIBLE);
Alan Cox4edf1822008-02-08 04:18:44 -08001805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if (((minimum - (b - buf)) < tty->minimum_to_wake) &&
1807 ((minimum - (b - buf)) >= 1))
1808 tty->minimum_to_wake = (minimum - (b - buf));
Alan Cox4edf1822008-02-08 04:18:44 -08001809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (!input_available_p(tty, 0)) {
1811 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
1812 retval = -EIO;
1813 break;
1814 }
1815 if (tty_hung_up_p(file))
1816 break;
1817 if (!timeout)
1818 break;
1819 if (file->f_flags & O_NONBLOCK) {
1820 retval = -EAGAIN;
1821 break;
1822 }
1823 if (signal_pending(current)) {
1824 retval = -ERESTARTSYS;
1825 break;
1826 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09001827 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 timeout = schedule_timeout(timeout);
Jiri Slaby28726282011-06-05 14:16:17 +02001829 BUG_ON(!tty->read_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 continue;
1831 }
1832 __set_current_state(TASK_RUNNING);
1833
1834 /* Deal with packet mode. */
Alan Cox04f378b2008-04-30 00:53:29 -07001835 if (packet && b == buf) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07001836 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 retval = -EFAULT;
1838 b--;
1839 break;
1840 }
1841 nr--;
1842 }
1843
hyc@symas.com26df6d12010-06-22 10:14:49 -07001844 if (tty->icanon && !L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 /* N.B. avoid overrun if nr == 0 */
1846 while (nr && tty->read_cnt) {
Alan Cox4edf1822008-02-08 04:18:44 -08001847 int eol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 eol = test_and_clear_bit(tty->read_tail,
1850 tty->read_flags);
1851 c = tty->read_buf[tty->read_tail];
1852 spin_lock_irqsave(&tty->read_lock, flags);
1853 tty->read_tail = ((tty->read_tail+1) &
1854 (N_TTY_BUF_SIZE-1));
1855 tty->read_cnt--;
1856 if (eol) {
1857 /* this test should be redundant:
1858 * we shouldn't be reading data if
1859 * canon_data is 0
1860 */
1861 if (--tty->canon_data < 0)
1862 tty->canon_data = 0;
1863 }
1864 spin_unlock_irqrestore(&tty->read_lock, flags);
1865
1866 if (!eol || (c != __DISABLED_CHAR)) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07001867 if (tty_put_user(tty, c, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 retval = -EFAULT;
1869 b--;
1870 break;
1871 }
1872 nr--;
1873 }
Miloslav Trmac522ed772007-07-15 23:40:56 -07001874 if (eol) {
1875 tty_audit_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 break;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
1879 if (retval)
1880 break;
1881 } else {
1882 int uncopied;
Alan Cox04f378b2008-04-30 00:53:29 -07001883 /* The copy function takes the read lock and handles
1884 locking internally for this case */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 uncopied = copy_from_read_buf(tty, &b, &nr);
1886 uncopied += copy_from_read_buf(tty, &b, &nr);
1887 if (uncopied) {
1888 retval = -EFAULT;
1889 break;
1890 }
1891 }
1892
1893 /* If there is enough space in the read buffer now, let the
1894 * low-level driver know. We use n_tty_chars_in_buffer() to
1895 * check the buffer, as it now knows about canonical mode.
1896 * Otherwise, if the driver is throttled and the line is
1897 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
1898 * we won't get any more characters.
1899 */
Linus Torvalds55db4c62011-06-04 06:33:24 +09001900 if (n_tty_chars_in_buffer(tty) <= TTY_THRESHOLD_UNTHROTTLE) {
1901 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 check_unthrottle(tty);
Linus Torvalds55db4c62011-06-04 06:33:24 +09001903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 if (b - buf >= minimum)
1906 break;
1907 if (time)
1908 timeout = time;
1909 }
Ingo Molnar70522e12006-03-23 03:00:31 -08001910 mutex_unlock(&tty->atomic_read_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 remove_wait_queue(&tty->read_wait, &wait);
1912
1913 if (!waitqueue_active(&tty->read_wait))
1914 tty->minimum_to_wake = minimum;
1915
1916 __set_current_state(TASK_RUNNING);
1917 size = b - buf;
1918 if (size) {
1919 retval = size;
1920 if (nr)
Alan Cox4edf1822008-02-08 04:18:44 -08001921 clear_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 } else if (test_and_clear_bit(TTY_PUSH, &tty->flags))
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001923 goto do_it_again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Linus Torvalds55db4c62011-06-04 06:33:24 +09001925 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return retval;
1927}
1928
1929/**
Alan Cox11a96d12008-10-13 10:46:24 +01001930 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 * @tty: tty device
1932 * @file: file object
1933 * @buf: userspace buffer pointer
1934 * @nr: size of I/O
1935 *
Joe Petersona88a69c2009-01-02 13:40:53 +00001936 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00001938 * and other such events. Since the receive code will echo characters,
1939 * thus calling driver write methods, the output_lock is used in
1940 * the output processing functions called here as well as in the
1941 * echo processing function to protect the column state and space
1942 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 *
1944 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00001945 *
1946 * Locking: output_lock to protect column state and space left
1947 * (note that the process_output*() functions take this
1948 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 */
Alan Cox4edf1822008-02-08 04:18:44 -08001950
Alan Cox11a96d12008-10-13 10:46:24 +01001951static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00001952 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
1954 const unsigned char *b = buf;
1955 DECLARE_WAITQUEUE(wait, current);
1956 int c;
1957 ssize_t retval = 0;
1958
1959 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
1960 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
1961 retval = tty_check_change(tty);
1962 if (retval)
1963 return retval;
1964 }
1965
Joe Petersona88a69c2009-01-02 13:40:53 +00001966 /* Write out any echoed characters that are still pending */
1967 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00001968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 add_wait_queue(&tty->write_wait, &wait);
1970 while (1) {
1971 set_current_state(TASK_INTERRUPTIBLE);
1972 if (signal_pending(current)) {
1973 retval = -ERESTARTSYS;
1974 break;
1975 }
1976 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
1977 retval = -EIO;
1978 break;
1979 }
1980 if (O_OPOST(tty) && !(test_bit(TTY_HW_COOK_OUT, &tty->flags))) {
1981 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001982 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 if (num < 0) {
1984 if (num == -EAGAIN)
1985 break;
1986 retval = num;
1987 goto break_out;
1988 }
1989 b += num;
1990 nr -= num;
1991 if (nr == 0)
1992 break;
1993 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00001994 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 break;
1996 b++; nr--;
1997 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001998 if (tty->ops->flush_chars)
1999 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 } else {
Peter Hurley9aabfc92014-05-13 14:36:46 -07002001
Roman Zippeld6afe272005-07-07 17:56:55 -07002002 while (nr > 0) {
Peter Hurley9aabfc92014-05-13 14:36:46 -07002003 mutex_lock(&tty->output_lock);
Alan Coxf34d7a52008-04-30 00:54:13 -07002004 c = tty->ops->write(tty, b, nr);
Peter Hurley9aabfc92014-05-13 14:36:46 -07002005 mutex_unlock(&tty->output_lock);
Roman Zippeld6afe272005-07-07 17:56:55 -07002006 if (c < 0) {
2007 retval = c;
2008 goto break_out;
2009 }
2010 if (!c)
2011 break;
2012 b += c;
2013 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 }
2016 if (!nr)
2017 break;
2018 if (file->f_flags & O_NONBLOCK) {
2019 retval = -EAGAIN;
2020 break;
2021 }
2022 schedule();
2023 }
2024break_out:
2025 __set_current_state(TASK_RUNNING);
2026 remove_wait_queue(&tty->write_wait, &wait);
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002027 if (b - buf != nr && tty->fasync)
2028 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return (b - buf) ? b - buf : retval;
2030}
2031
2032/**
Alan Cox11a96d12008-10-13 10:46:24 +01002033 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 * @tty: terminal device
2035 * @file: file accessing it
2036 * @wait: poll table
2037 *
2038 * Called when the line discipline is asked to poll() for data or
2039 * for special events. This code is not serialized with respect to
2040 * other events save open/close.
2041 *
2042 * This code must be sure never to sleep through a hangup.
2043 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 */
Alan Cox4edf1822008-02-08 04:18:44 -08002045
Alan Cox11a96d12008-10-13 10:46:24 +01002046static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002047 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
2049 unsigned int mask = 0;
2050
2051 poll_wait(file, &tty->read_wait, wait);
2052 poll_wait(file, &tty->write_wait, wait);
2053 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
2054 mask |= POLLIN | POLLRDNORM;
2055 if (tty->packet && tty->link->ctrl_status)
2056 mask |= POLLPRI | POLLIN | POLLRDNORM;
2057 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2058 mask |= POLLHUP;
2059 if (tty_hung_up_p(file))
2060 mask |= POLLHUP;
2061 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2062 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
2063 tty->minimum_to_wake = MIN_CHAR(tty);
2064 else
2065 tty->minimum_to_wake = 1;
2066 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002067 if (tty->ops->write && !tty_is_writelocked(tty) &&
2068 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2069 tty_write_room(tty) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 mask |= POLLOUT | POLLWRNORM;
2071 return mask;
2072}
2073
Alan Cox47afa7a2008-10-13 10:44:17 +01002074static unsigned long inq_canon(struct tty_struct *tty)
2075{
2076 int nr, head, tail;
2077
Alan Cox17b82062008-10-13 10:45:06 +01002078 if (!tty->canon_data)
Alan Cox47afa7a2008-10-13 10:44:17 +01002079 return 0;
2080 head = tty->canon_head;
2081 tail = tty->read_tail;
2082 nr = (head - tail) & (N_TTY_BUF_SIZE-1);
2083 /* Skip EOF-chars.. */
2084 while (head != tail) {
2085 if (test_bit(tail, tty->read_flags) &&
2086 tty->read_buf[tail] == __DISABLED_CHAR)
2087 nr--;
2088 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
2089 }
2090 return nr;
2091}
2092
2093static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2094 unsigned int cmd, unsigned long arg)
2095{
2096 int retval;
2097
2098 switch (cmd) {
2099 case TIOCOUTQ:
2100 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2101 case TIOCINQ:
Alan Cox17b82062008-10-13 10:45:06 +01002102 /* FIXME: Locking */
Alan Cox47afa7a2008-10-13 10:44:17 +01002103 retval = tty->read_cnt;
2104 if (L_ICANON(tty))
2105 retval = inq_canon(tty);
2106 return put_user(retval, (unsigned int __user *) arg);
2107 default:
2108 return n_tty_ioctl_helper(tty, file, cmd, arg);
2109 }
2110}
2111
Alan Coxa352def2008-07-16 21:53:12 +01002112struct tty_ldisc_ops tty_ldisc_N_TTY = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002113 .magic = TTY_LDISC_MAGIC,
2114 .name = "n_tty",
2115 .open = n_tty_open,
2116 .close = n_tty_close,
2117 .flush_buffer = n_tty_flush_buffer,
2118 .chars_in_buffer = n_tty_chars_in_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002119 .read = n_tty_read,
2120 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002121 .ioctl = n_tty_ioctl,
2122 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002123 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002124 .receive_buf = n_tty_receive_buf,
2125 .write_wakeup = n_tty_write_wakeup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002127
2128/**
2129 * n_tty_inherit_ops - inherit N_TTY methods
2130 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2131 *
2132 * Used by a generic struct tty_ldisc_ops to easily inherit N_TTY
2133 * methods.
2134 */
2135
2136void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2137{
2138 *ops = tty_ldisc_N_TTY;
2139 ops->owner = NULL;
2140 ops->refcount = ops->flags = 0;
2141}
2142EXPORT_SYMBOL_GPL(n_tty_inherit_ops);