n_tty: Get read_cnt through accessor
[deliverable/linux.git] / drivers / tty / n_tty.c
CommitLineData
1da177e4
LT
1/*
2 * n_tty.c --- implements the N_TTY line discipline.
4edf1827 3 *
1da177e4
LT
4 * 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
4edf1827 11 * to N_TTY if it can not switch to any other line discipline.
1da177e4
LT
12 *
13 * Written by Theodore Ts'o, Copyright 1994.
4edf1827 14 *
1da177e4
LT
15 * This file also contains code originally written by Linus Torvalds,
16 * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
4edf1827 17 *
1da177e4
LT
18 * 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 *
4edf1827 23 * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of
1da177e4
LT
24 * 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>.
11a96d18 29 * Also fixed a bug in BLOCKING mode where n_tty_write returns
1da177e4
LT
30 * 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>
522ed776
MT
48#include <linux/audit.h>
49#include <linux/file.h>
300a6204 50#include <linux/uaccess.h>
572b9adb 51#include <linux/module.h>
593fb1ae 52#include <linux/ratelimit.h>
1da177e4 53
1da177e4
LT
54
55/* number of characters left in xmit buffer before select has we have room */
56#define WAKEUP_CHARS 256
57
58/*
59 * This defines the low- and high-watermarks for throttling and
60 * unthrottling the TTY driver. These watermarks are used for
61 * controlling the space in the read buffer.
62 */
63#define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
bbd20759 64#define TTY_THRESHOLD_UNTHROTTLE 128
1da177e4 65
a88a69c9
JP
66/*
67 * Special byte codes used in the echo buffer to represent operations
68 * or special handling of characters. Bytes in the echo buffer that
69 * are not part of such special blocks are treated as normal character
70 * codes.
71 */
72#define ECHO_OP_START 0xff
73#define ECHO_OP_MOVE_BACK_COL 0x80
74#define ECHO_OP_SET_CANON_COL 0x81
75#define ECHO_OP_ERASE_TAB 0x82
76
32f13521
PH
77#undef N_TTY_TRACE
78#ifdef N_TTY_TRACE
79# define n_tty_trace(f, args...) trace_printk(f, ##args)
80#else
81# define n_tty_trace(f, args...)
82#endif
83
70ece7a7 84struct n_tty_data {
53c5ee2c
JS
85 unsigned int column;
86 unsigned long overrun_time;
87 int num_overrun;
88
24a89d1c
PH
89 /* non-atomic */
90 bool no_room;
91
53c5ee2c
JS
92 unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
93 unsigned char echo_overrun:1;
3fe780b3
JS
94
95 DECLARE_BITMAP(process_char_map, 256);
96 DECLARE_BITMAP(read_flags, N_TTY_BUF_SIZE);
ba2e68ac
JS
97
98 char *read_buf;
99 int read_head;
100 int read_tail;
101 int read_cnt;
f6c8dbe6 102 int minimum_to_wake;
ba2e68ac
JS
103
104 unsigned char *echo_buf;
105 unsigned int echo_pos;
106 unsigned int echo_cnt;
107
108 int canon_data;
109 unsigned long canon_head;
110 unsigned int canon_column;
bddc7152
JS
111
112 struct mutex atomic_read_lock;
113 struct mutex output_lock;
114 struct mutex echo_lock;
98001214 115 raw_spinlock_t read_lock;
70ece7a7
JS
116};
117
ce74117a
PH
118static inline size_t read_cnt(struct n_tty_data *ldata)
119{
120 return ldata->read_cnt;
121}
122
522ed776
MT
123static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
124 unsigned char __user *ptr)
125{
53c5ee2c
JS
126 struct n_tty_data *ldata = tty->disc_data;
127
128 tty_audit_add_data(tty, &x, 1, ldata->icanon);
522ed776
MT
129 return put_user(x, ptr);
130}
131
24a89d1c 132static int receive_room(struct tty_struct *tty)
55db4c64 133{
53c5ee2c 134 struct n_tty_data *ldata = tty->disc_data;
090abf7b 135 int left;
55db4c64 136
090abf7b
JA
137 if (I_PARMRK(tty)) {
138 /* Multiply read_cnt by 3, since each byte might take up to
139 * three times as many spaces when PARMRK is set (depending on
140 * its flags, e.g. parity error). */
ce74117a 141 left = N_TTY_BUF_SIZE - read_cnt(ldata) * 3 - 1;
090abf7b 142 } else
ce74117a 143 left = N_TTY_BUF_SIZE - read_cnt(ldata) - 1;
090abf7b 144
55db4c64
LT
145 /*
146 * If we are doing input canonicalization, and there are no
147 * pending newlines, let characters through without limit, so
148 * that erase characters will be handled. Other excess
149 * characters will be beeped.
150 */
151 if (left <= 0)
ba2e68ac 152 left = ldata->icanon && !ldata->canon_data;
55db4c64 153
24a89d1c 154 return left;
7879a9f9
PH
155}
156
24a89d1c
PH
157/**
158 * n_tty_set_room - receive space
159 * @tty: terminal
160 *
161 * Re-schedules the flip buffer work if space just became available.
162 *
163 * Locks: Concurrent update is protected with read_lock
164 */
165
7879a9f9
PH
166static void n_tty_set_room(struct tty_struct *tty)
167{
24a89d1c
PH
168 struct n_tty_data *ldata = tty->disc_data;
169
55db4c64 170 /* Did this open up the receive buffer? We may need to flip */
24a89d1c
PH
171 if (unlikely(ldata->no_room) && receive_room(tty)) {
172 ldata->no_room = 0;
173
ecbbfd44 174 WARN_RATELIMIT(tty->port->itty == NULL,
cadf7486 175 "scheduling with invalid itty\n");
21622939
PH
176 /* see if ldisc has been killed - if so, this means that
177 * even though the ldisc has been halted and ->buf.work
178 * cancelled, ->buf.work is about to be rescheduled
179 */
180 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
181 "scheduling buffer work for halted ldisc\n");
ecbbfd44
JS
182 schedule_work(&tty->port->buf.work);
183 }
55db4c64
LT
184}
185
57c94121 186static void put_tty_queue_nolock(unsigned char c, struct n_tty_data *ldata)
1da177e4 187{
ce74117a 188 if (read_cnt(ldata) < N_TTY_BUF_SIZE) {
ba2e68ac
JS
189 ldata->read_buf[ldata->read_head] = c;
190 ldata->read_head = (ldata->read_head + 1) & (N_TTY_BUF_SIZE-1);
191 ldata->read_cnt++;
1da177e4
LT
192 }
193}
194
17b82060
AC
195/**
196 * put_tty_queue - add character to tty
197 * @c: character
57c94121 198 * @ldata: n_tty data
17b82060
AC
199 *
200 * Add a character to the tty read_buf queue. This is done under the
201 * read_lock to serialize character addition and also to protect us
202 * against parallel reads or flushes
203 */
204
57c94121 205static void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
1da177e4
LT
206{
207 unsigned long flags;
208 /*
209 * The problem of stomping on the buffers ends here.
210 * Why didn't anyone see this one coming? --AJK
211 */
98001214 212 raw_spin_lock_irqsave(&ldata->read_lock, flags);
57c94121 213 put_tty_queue_nolock(c, ldata);
98001214 214 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1da177e4
LT
215}
216
1da177e4
LT
217/**
218 * reset_buffer_flags - reset buffer state
219 * @tty: terminal to reset
220 *
25518c68
PH
221 * Reset the read buffer counters and clear the flags.
222 * Called from n_tty_open() and n_tty_flush_buffer().
17b82060
AC
223 *
224 * Locking: tty_read_lock for read fields.
1da177e4 225 */
a88a69c9 226
b66f4fa5 227static void reset_buffer_flags(struct n_tty_data *ldata)
1da177e4
LT
228{
229 unsigned long flags;
230
98001214 231 raw_spin_lock_irqsave(&ldata->read_lock, flags);
ba2e68ac 232 ldata->read_head = ldata->read_tail = ldata->read_cnt = 0;
98001214 233 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
a88a69c9 234
bddc7152 235 mutex_lock(&ldata->echo_lock);
ba2e68ac 236 ldata->echo_pos = ldata->echo_cnt = ldata->echo_overrun = 0;
bddc7152 237 mutex_unlock(&ldata->echo_lock);
a88a69c9 238
ba2e68ac 239 ldata->canon_head = ldata->canon_data = ldata->erasing = 0;
3fe780b3 240 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
1da177e4
LT
241}
242
a30737ab
PH
243static void n_tty_packet_mode_flush(struct tty_struct *tty)
244{
245 unsigned long flags;
246
247 spin_lock_irqsave(&tty->ctrl_lock, flags);
248 if (tty->link->packet) {
249 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
250 wake_up_interruptible(&tty->link->read_wait);
251 }
252 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
253}
254
1da177e4
LT
255/**
256 * n_tty_flush_buffer - clean input queue
257 * @tty: terminal device
258 *
25518c68
PH
259 * Flush the input buffer. Called when the tty layer wants the
260 * buffer flushed (eg at hangup) or when the N_TTY line discipline
261 * internally has to clean the pending queue (for example some signals).
1da177e4 262 *
17b82060 263 * Locking: ctrl_lock, read_lock.
1da177e4 264 */
4edf1827
AC
265
266static void n_tty_flush_buffer(struct tty_struct *tty)
1da177e4 267{
b66f4fa5
PH
268 reset_buffer_flags(tty->disc_data);
269 n_tty_set_room(tty);
4edf1827 270
a30737ab
PH
271 if (tty->link)
272 n_tty_packet_mode_flush(tty);
1da177e4
LT
273}
274
275/**
276 * n_tty_chars_in_buffer - report available bytes
277 * @tty: tty device
278 *
279 * Report the number of characters buffered to be delivered to user
4edf1827 280 * at this instant in time.
17b82060
AC
281 *
282 * Locking: read_lock
1da177e4 283 */
4edf1827 284
a19d0c6a 285static ssize_t chars_in_buffer(struct tty_struct *tty)
1da177e4 286{
53c5ee2c 287 struct n_tty_data *ldata = tty->disc_data;
1da177e4
LT
288 unsigned long flags;
289 ssize_t n = 0;
290
98001214 291 raw_spin_lock_irqsave(&ldata->read_lock, flags);
53c5ee2c 292 if (!ldata->icanon) {
ce74117a 293 n = read_cnt(ldata);
ba2e68ac
JS
294 } else if (ldata->canon_data) {
295 n = (ldata->canon_head > ldata->read_tail) ?
296 ldata->canon_head - ldata->read_tail :
297 ldata->canon_head + (N_TTY_BUF_SIZE - ldata->read_tail);
1da177e4 298 }
98001214 299 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1da177e4
LT
300 return n;
301}
302
a19d0c6a
PH
303static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
304{
47534084 305 WARN_ONCE(1, "%s is deprecated and scheduled for removal.", __func__);
a19d0c6a
PH
306 return chars_in_buffer(tty);
307}
308
1da177e4
LT
309/**
310 * is_utf8_continuation - utf8 multibyte check
311 * @c: byte to check
312 *
313 * Returns true if the utf8 character 'c' is a multibyte continuation
314 * character. We use this to correctly compute the on screen size
315 * of the character when printing
316 */
4edf1827 317
1da177e4
LT
318static inline int is_utf8_continuation(unsigned char c)
319{
320 return (c & 0xc0) == 0x80;
321}
322
323/**
324 * is_continuation - multibyte check
325 * @c: byte to check
326 *
327 * Returns true if the utf8 character 'c' is a multibyte continuation
328 * character and the terminal is in unicode mode.
329 */
4edf1827 330
1da177e4
LT
331static inline int is_continuation(unsigned char c, struct tty_struct *tty)
332{
333 return I_IUTF8(tty) && is_utf8_continuation(c);
334}
335
336/**
a88a69c9 337 * do_output_char - output one character
1da177e4
LT
338 * @c: character (or partial unicode symbol)
339 * @tty: terminal device
a88a69c9 340 * @space: space available in tty driver write buffer
1da177e4 341 *
a88a69c9
JP
342 * This is a helper function that handles one output character
343 * (including special characters like TAB, CR, LF, etc.),
ee5aa7b8
JP
344 * doing OPOST processing and putting the results in the
345 * tty driver's write buffer.
a88a69c9
JP
346 *
347 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
348 * and NLDLY. They simply aren't relevant in the world today.
349 * If you ever need them, add them here.
1da177e4 350 *
a88a69c9
JP
351 * Returns the number of bytes of buffer space used or -1 if
352 * no space left.
353 *
354 * Locking: should be called under the output_lock to protect
355 * the column state and space left in the buffer
1da177e4 356 */
4edf1827 357
a88a69c9 358static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
1da177e4 359{
53c5ee2c 360 struct n_tty_data *ldata = tty->disc_data;
a88a69c9 361 int spaces;
1da177e4 362
1da177e4
LT
363 if (!space)
364 return -1;
300a6204 365
a88a69c9
JP
366 switch (c) {
367 case '\n':
368 if (O_ONLRET(tty))
53c5ee2c 369 ldata->column = 0;
a88a69c9
JP
370 if (O_ONLCR(tty)) {
371 if (space < 2)
372 return -1;
ba2e68ac 373 ldata->canon_column = ldata->column = 0;
37f81fa1 374 tty->ops->write(tty, "\r\n", 2);
a88a69c9
JP
375 return 2;
376 }
ba2e68ac 377 ldata->canon_column = ldata->column;
a88a69c9
JP
378 break;
379 case '\r':
53c5ee2c 380 if (O_ONOCR(tty) && ldata->column == 0)
a88a69c9
JP
381 return 0;
382 if (O_OCRNL(tty)) {
383 c = '\n';
384 if (O_ONLRET(tty))
ba2e68ac 385 ldata->canon_column = ldata->column = 0;
1da177e4 386 break;
a88a69c9 387 }
ba2e68ac 388 ldata->canon_column = ldata->column = 0;
a88a69c9
JP
389 break;
390 case '\t':
53c5ee2c 391 spaces = 8 - (ldata->column & 7);
a88a69c9
JP
392 if (O_TABDLY(tty) == XTABS) {
393 if (space < spaces)
394 return -1;
53c5ee2c 395 ldata->column += spaces;
a88a69c9
JP
396 tty->ops->write(tty, " ", spaces);
397 return spaces;
1da177e4 398 }
53c5ee2c 399 ldata->column += spaces;
a88a69c9
JP
400 break;
401 case '\b':
53c5ee2c
JS
402 if (ldata->column > 0)
403 ldata->column--;
a88a69c9
JP
404 break;
405 default:
a59c0d6f
JP
406 if (!iscntrl(c)) {
407 if (O_OLCUC(tty))
408 c = toupper(c);
409 if (!is_continuation(c, tty))
53c5ee2c 410 ldata->column++;
a59c0d6f 411 }
a88a69c9 412 break;
1da177e4 413 }
a88a69c9 414
f34d7a5b 415 tty_put_char(tty, c);
a88a69c9
JP
416 return 1;
417}
418
419/**
420 * process_output - output post processor
421 * @c: character (or partial unicode symbol)
422 * @tty: terminal device
423 *
ee5aa7b8
JP
424 * Output one character with OPOST processing.
425 * Returns -1 when the output device is full and the character
426 * must be retried.
a88a69c9
JP
427 *
428 * Locking: output_lock to protect column state and space left
429 * (also, this is called from n_tty_write under the
430 * tty layer write lock)
431 */
432
433static int process_output(unsigned char c, struct tty_struct *tty)
434{
bddc7152 435 struct n_tty_data *ldata = tty->disc_data;
a88a69c9
JP
436 int space, retval;
437
bddc7152 438 mutex_lock(&ldata->output_lock);
a88a69c9
JP
439
440 space = tty_write_room(tty);
441 retval = do_output_char(c, tty, space);
442
bddc7152 443 mutex_unlock(&ldata->output_lock);
a88a69c9
JP
444 if (retval < 0)
445 return -1;
446 else
447 return 0;
1da177e4
LT
448}
449
450/**
a88a69c9 451 * process_output_block - block post processor
1da177e4 452 * @tty: terminal device
ee5aa7b8
JP
453 * @buf: character buffer
454 * @nr: number of bytes to output
455 *
456 * Output a block of characters with OPOST processing.
457 * Returns the number of characters output.
1da177e4
LT
458 *
459 * This path is used to speed up block console writes, among other
460 * things when processing blocks of output data. It handles only
461 * the simple cases normally found and helps to generate blocks of
462 * symbols for the console driver and thus improve performance.
463 *
a88a69c9
JP
464 * Locking: output_lock to protect column state and space left
465 * (also, this is called from n_tty_write under the
466 * tty layer write lock)
1da177e4 467 */
4edf1827 468
a88a69c9
JP
469static ssize_t process_output_block(struct tty_struct *tty,
470 const unsigned char *buf, unsigned int nr)
1da177e4 471{
53c5ee2c 472 struct n_tty_data *ldata = tty->disc_data;
1da177e4 473 int space;
bbd20759 474 int i;
1da177e4
LT
475 const unsigned char *cp;
476
bddc7152 477 mutex_lock(&ldata->output_lock);
a88a69c9 478
f34d7a5b 479 space = tty_write_room(tty);
300a6204 480 if (!space) {
bddc7152 481 mutex_unlock(&ldata->output_lock);
1da177e4 482 return 0;
a88a69c9 483 }
1da177e4
LT
484 if (nr > space)
485 nr = space;
486
487 for (i = 0, cp = buf; i < nr; i++, cp++) {
a59c0d6f
JP
488 unsigned char c = *cp;
489
490 switch (c) {
1da177e4
LT
491 case '\n':
492 if (O_ONLRET(tty))
53c5ee2c 493 ldata->column = 0;
1da177e4
LT
494 if (O_ONLCR(tty))
495 goto break_out;
ba2e68ac 496 ldata->canon_column = ldata->column;
1da177e4
LT
497 break;
498 case '\r':
53c5ee2c 499 if (O_ONOCR(tty) && ldata->column == 0)
1da177e4
LT
500 goto break_out;
501 if (O_OCRNL(tty))
502 goto break_out;
ba2e68ac 503 ldata->canon_column = ldata->column = 0;
1da177e4
LT
504 break;
505 case '\t':
506 goto break_out;
507 case '\b':
53c5ee2c
JS
508 if (ldata->column > 0)
509 ldata->column--;
1da177e4
LT
510 break;
511 default:
a59c0d6f
JP
512 if (!iscntrl(c)) {
513 if (O_OLCUC(tty))
514 goto break_out;
515 if (!is_continuation(c, tty))
53c5ee2c 516 ldata->column++;
a59c0d6f 517 }
1da177e4
LT
518 break;
519 }
520 }
521break_out:
f34d7a5b 522 i = tty->ops->write(tty, buf, i);
a88a69c9 523
bddc7152 524 mutex_unlock(&ldata->output_lock);
1da177e4
LT
525 return i;
526}
527
a88a69c9
JP
528/**
529 * process_echoes - write pending echo characters
530 * @tty: terminal device
531 *
532 * Write previously buffered echo (and other ldisc-generated)
533 * characters to the tty.
534 *
535 * Characters generated by the ldisc (including echoes) need to
536 * be buffered because the driver's write buffer can fill during
537 * heavy program output. Echoing straight to the driver will
538 * often fail under these conditions, causing lost characters and
539 * resulting mismatches of ldisc state information.
540 *
541 * Since the ldisc state must represent the characters actually sent
542 * to the driver at the time of the write, operations like certain
543 * changes in column state are also saved in the buffer and executed
544 * here.
545 *
546 * A circular fifo buffer is used so that the most recent characters
547 * are prioritized. Also, when control characters are echoed with a
548 * prefixed "^", the pair is treated atomically and thus not separated.
549 *
550 * Locking: output_lock to protect column state and space left,
551 * echo_lock to protect the echo buffer
552 */
553
554static void process_echoes(struct tty_struct *tty)
555{
53c5ee2c 556 struct n_tty_data *ldata = tty->disc_data;
a88a69c9
JP
557 int space, nr;
558 unsigned char c;
559 unsigned char *cp, *buf_end;
560
ba2e68ac 561 if (!ldata->echo_cnt)
a88a69c9
JP
562 return;
563
bddc7152
JS
564 mutex_lock(&ldata->output_lock);
565 mutex_lock(&ldata->echo_lock);
a88a69c9
JP
566
567 space = tty_write_room(tty);
568
ba2e68ac
JS
569 buf_end = ldata->echo_buf + N_TTY_BUF_SIZE;
570 cp = ldata->echo_buf + ldata->echo_pos;
571 nr = ldata->echo_cnt;
a88a69c9
JP
572 while (nr > 0) {
573 c = *cp;
574 if (c == ECHO_OP_START) {
575 unsigned char op;
576 unsigned char *opp;
577 int no_space_left = 0;
578
579 /*
580 * If the buffer byte is the start of a multi-byte
581 * operation, get the next byte, which is either the
582 * op code or a control character value.
583 */
584 opp = cp + 1;
585 if (opp == buf_end)
586 opp -= N_TTY_BUF_SIZE;
587 op = *opp;
300a6204 588
a88a69c9
JP
589 switch (op) {
590 unsigned int num_chars, num_bs;
591
592 case ECHO_OP_ERASE_TAB:
593 if (++opp == buf_end)
594 opp -= N_TTY_BUF_SIZE;
595 num_chars = *opp;
596
597 /*
598 * Determine how many columns to go back
599 * in order to erase the tab.
600 * This depends on the number of columns
601 * used by other characters within the tab
602 * area. If this (modulo 8) count is from
603 * the start of input rather than from a
604 * previous tab, we offset by canon column.
605 * Otherwise, tab spacing is normal.
606 */
607 if (!(num_chars & 0x80))
ba2e68ac 608 num_chars += ldata->canon_column;
a88a69c9
JP
609 num_bs = 8 - (num_chars & 7);
610
611 if (num_bs > space) {
612 no_space_left = 1;
613 break;
614 }
615 space -= num_bs;
616 while (num_bs--) {
617 tty_put_char(tty, '\b');
53c5ee2c
JS
618 if (ldata->column > 0)
619 ldata->column--;
a88a69c9
JP
620 }
621 cp += 3;
622 nr -= 3;
623 break;
624
625 case ECHO_OP_SET_CANON_COL:
ba2e68ac 626 ldata->canon_column = ldata->column;
a88a69c9
JP
627 cp += 2;
628 nr -= 2;
629 break;
630
631 case ECHO_OP_MOVE_BACK_COL:
53c5ee2c
JS
632 if (ldata->column > 0)
633 ldata->column--;
a88a69c9
JP
634 cp += 2;
635 nr -= 2;
636 break;
637
638 case ECHO_OP_START:
639 /* This is an escaped echo op start code */
640 if (!space) {
641 no_space_left = 1;
642 break;
643 }
644 tty_put_char(tty, ECHO_OP_START);
53c5ee2c 645 ldata->column++;
a88a69c9
JP
646 space--;
647 cp += 2;
648 nr -= 2;
649 break;
650
651 default:
a88a69c9 652 /*
62b26358
JP
653 * If the op is not a special byte code,
654 * it is a ctrl char tagged to be echoed
655 * as "^X" (where X is the letter
656 * representing the control char).
657 * Note that we must ensure there is
658 * enough space for the whole ctrl pair.
659 *
a88a69c9 660 */
62b26358
JP
661 if (space < 2) {
662 no_space_left = 1;
663 break;
664 }
665 tty_put_char(tty, '^');
666 tty_put_char(tty, op ^ 0100);
53c5ee2c 667 ldata->column += 2;
62b26358 668 space -= 2;
a88a69c9
JP
669 cp += 2;
670 nr -= 2;
671 }
672
673 if (no_space_left)
674 break;
675 } else {
582f5590 676 if (O_OPOST(tty)) {
ee5aa7b8
JP
677 int retval = do_output_char(c, tty, space);
678 if (retval < 0)
679 break;
680 space -= retval;
681 } else {
682 if (!space)
683 break;
684 tty_put_char(tty, c);
685 space -= 1;
686 }
a88a69c9
JP
687 cp += 1;
688 nr -= 1;
689 }
690
691 /* When end of circular buffer reached, wrap around */
692 if (cp >= buf_end)
693 cp -= N_TTY_BUF_SIZE;
694 }
695
696 if (nr == 0) {
ba2e68ac
JS
697 ldata->echo_pos = 0;
698 ldata->echo_cnt = 0;
53c5ee2c 699 ldata->echo_overrun = 0;
a88a69c9 700 } else {
ba2e68ac
JS
701 int num_processed = ldata->echo_cnt - nr;
702 ldata->echo_pos += num_processed;
703 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
704 ldata->echo_cnt = nr;
a88a69c9 705 if (num_processed > 0)
53c5ee2c 706 ldata->echo_overrun = 0;
a88a69c9
JP
707 }
708
bddc7152
JS
709 mutex_unlock(&ldata->echo_lock);
710 mutex_unlock(&ldata->output_lock);
a88a69c9
JP
711
712 if (tty->ops->flush_chars)
713 tty->ops->flush_chars(tty);
714}
715
716/**
717 * add_echo_byte - add a byte to the echo buffer
718 * @c: unicode byte to echo
57c94121 719 * @ldata: n_tty data
a88a69c9
JP
720 *
721 * Add a character or operation byte to the echo buffer.
722 *
723 * Should be called under the echo lock to protect the echo buffer.
724 */
725
57c94121 726static void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
a88a69c9
JP
727{
728 int new_byte_pos;
729
ba2e68ac 730 if (ldata->echo_cnt == N_TTY_BUF_SIZE) {
a88a69c9 731 /* Circular buffer is already at capacity */
ba2e68ac 732 new_byte_pos = ldata->echo_pos;
a88a69c9
JP
733
734 /*
735 * Since the buffer start position needs to be advanced,
736 * be sure to step by a whole operation byte group.
737 */
ba2e68ac
JS
738 if (ldata->echo_buf[ldata->echo_pos] == ECHO_OP_START) {
739 if (ldata->echo_buf[(ldata->echo_pos + 1) &
a88a69c9
JP
740 (N_TTY_BUF_SIZE - 1)] ==
741 ECHO_OP_ERASE_TAB) {
ba2e68ac
JS
742 ldata->echo_pos += 3;
743 ldata->echo_cnt -= 2;
a88a69c9 744 } else {
ba2e68ac
JS
745 ldata->echo_pos += 2;
746 ldata->echo_cnt -= 1;
a88a69c9
JP
747 }
748 } else {
ba2e68ac 749 ldata->echo_pos++;
a88a69c9 750 }
ba2e68ac 751 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
a88a69c9 752
53c5ee2c 753 ldata->echo_overrun = 1;
a88a69c9 754 } else {
ba2e68ac 755 new_byte_pos = ldata->echo_pos + ldata->echo_cnt;
a88a69c9 756 new_byte_pos &= N_TTY_BUF_SIZE - 1;
ba2e68ac 757 ldata->echo_cnt++;
a88a69c9
JP
758 }
759
ba2e68ac 760 ldata->echo_buf[new_byte_pos] = c;
a88a69c9
JP
761}
762
763/**
764 * echo_move_back_col - add operation to move back a column
57c94121 765 * @ldata: n_tty data
a88a69c9
JP
766 *
767 * Add an operation to the echo buffer to move back one column.
768 *
769 * Locking: echo_lock to protect the echo buffer
770 */
771
57c94121 772static void echo_move_back_col(struct n_tty_data *ldata)
a88a69c9 773{
bddc7152 774 mutex_lock(&ldata->echo_lock);
57c94121
JS
775 add_echo_byte(ECHO_OP_START, ldata);
776 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
bddc7152 777 mutex_unlock(&ldata->echo_lock);
a88a69c9
JP
778}
779
780/**
781 * echo_set_canon_col - add operation to set the canon column
57c94121 782 * @ldata: n_tty data
a88a69c9
JP
783 *
784 * Add an operation to the echo buffer to set the canon column
785 * to the current column.
786 *
787 * Locking: echo_lock to protect the echo buffer
788 */
789
57c94121 790static void echo_set_canon_col(struct n_tty_data *ldata)
a88a69c9 791{
bddc7152 792 mutex_lock(&ldata->echo_lock);
57c94121
JS
793 add_echo_byte(ECHO_OP_START, ldata);
794 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
bddc7152 795 mutex_unlock(&ldata->echo_lock);
a88a69c9
JP
796}
797
798/**
799 * echo_erase_tab - add operation to erase a tab
800 * @num_chars: number of character columns already used
801 * @after_tab: true if num_chars starts after a previous tab
57c94121 802 * @ldata: n_tty data
a88a69c9
JP
803 *
804 * Add an operation to the echo buffer to erase a tab.
805 *
806 * Called by the eraser function, which knows how many character
807 * columns have been used since either a previous tab or the start
808 * of input. This information will be used later, along with
809 * canon column (if applicable), to go back the correct number
810 * of columns.
811 *
812 * Locking: echo_lock to protect the echo buffer
813 */
814
815static void echo_erase_tab(unsigned int num_chars, int after_tab,
57c94121 816 struct n_tty_data *ldata)
a88a69c9 817{
bddc7152 818 mutex_lock(&ldata->echo_lock);
a88a69c9 819
57c94121
JS
820 add_echo_byte(ECHO_OP_START, ldata);
821 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
a88a69c9
JP
822
823 /* We only need to know this modulo 8 (tab spacing) */
824 num_chars &= 7;
825
826 /* Set the high bit as a flag if num_chars is after a previous tab */
827 if (after_tab)
828 num_chars |= 0x80;
300a6204 829
57c94121 830 add_echo_byte(num_chars, ldata);
a88a69c9 831
bddc7152 832 mutex_unlock(&ldata->echo_lock);
a88a69c9
JP
833}
834
835/**
836 * echo_char_raw - echo a character raw
837 * @c: unicode byte to echo
838 * @tty: terminal device
839 *
840 * Echo user input back onto the screen. This must be called only when
841 * L_ECHO(tty) is true. Called from the driver receive_buf path.
842 *
843 * This variant does not treat control characters specially.
844 *
845 * Locking: echo_lock to protect the echo buffer
846 */
847
57c94121 848static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
a88a69c9 849{
bddc7152 850 mutex_lock(&ldata->echo_lock);
a88a69c9 851 if (c == ECHO_OP_START) {
57c94121
JS
852 add_echo_byte(ECHO_OP_START, ldata);
853 add_echo_byte(ECHO_OP_START, ldata);
a88a69c9 854 } else {
57c94121 855 add_echo_byte(c, ldata);
a88a69c9 856 }
bddc7152 857 mutex_unlock(&ldata->echo_lock);
a88a69c9 858}
1da177e4 859
1da177e4 860/**
a88a69c9 861 * echo_char - echo a character
1da177e4
LT
862 * @c: unicode byte to echo
863 * @tty: terminal device
864 *
4edf1827 865 * Echo user input back onto the screen. This must be called only when
1da177e4 866 * L_ECHO(tty) is true. Called from the driver receive_buf path.
17b82060 867 *
62b26358
JP
868 * This variant tags control characters to be echoed as "^X"
869 * (where X is the letter representing the control char).
a88a69c9
JP
870 *
871 * Locking: echo_lock to protect the echo buffer
1da177e4
LT
872 */
873
874static void echo_char(unsigned char c, struct tty_struct *tty)
875{
bddc7152
JS
876 struct n_tty_data *ldata = tty->disc_data;
877
878 mutex_lock(&ldata->echo_lock);
a88a69c9
JP
879
880 if (c == ECHO_OP_START) {
57c94121
JS
881 add_echo_byte(ECHO_OP_START, ldata);
882 add_echo_byte(ECHO_OP_START, ldata);
a88a69c9 883 } else {
62b26358 884 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
57c94121
JS
885 add_echo_byte(ECHO_OP_START, ldata);
886 add_echo_byte(c, ldata);
a88a69c9
JP
887 }
888
bddc7152 889 mutex_unlock(&ldata->echo_lock);
1da177e4
LT
890}
891
17b82060 892/**
a88a69c9 893 * finish_erasing - complete erase
57c94121 894 * @ldata: n_tty data
17b82060 895 */
a88a69c9 896
57c94121 897static inline void finish_erasing(struct n_tty_data *ldata)
1da177e4 898{
53c5ee2c 899 if (ldata->erasing) {
57c94121 900 echo_char_raw('/', ldata);
53c5ee2c 901 ldata->erasing = 0;
1da177e4
LT
902 }
903}
904
905/**
906 * eraser - handle erase function
907 * @c: character input
908 * @tty: terminal device
909 *
3a4fa0a2 910 * Perform erase and necessary output when an erase character is
1da177e4
LT
911 * present in the stream from the driver layer. Handles the complexities
912 * of UTF-8 multibyte symbols.
17b82060 913 *
a88a69c9 914 * Locking: read_lock for tty buffers
1da177e4 915 */
4edf1827 916
1da177e4
LT
917static void eraser(unsigned char c, struct tty_struct *tty)
918{
53c5ee2c 919 struct n_tty_data *ldata = tty->disc_data;
1da177e4
LT
920 enum { ERASE, WERASE, KILL } kill_type;
921 int head, seen_alnums, cnt;
922 unsigned long flags;
923
17b82060 924 /* FIXME: locking needed ? */
ba2e68ac 925 if (ldata->read_head == ldata->canon_head) {
7e94b1d9 926 /* process_output('\a', tty); */ /* what do you think? */
1da177e4
LT
927 return;
928 }
929 if (c == ERASE_CHAR(tty))
930 kill_type = ERASE;
931 else if (c == WERASE_CHAR(tty))
932 kill_type = WERASE;
933 else {
934 if (!L_ECHO(tty)) {
98001214 935 raw_spin_lock_irqsave(&ldata->read_lock, flags);
ba2e68ac 936 ldata->read_cnt -= ((ldata->read_head - ldata->canon_head) &
1da177e4 937 (N_TTY_BUF_SIZE - 1));
ba2e68ac 938 ldata->read_head = ldata->canon_head;
98001214 939 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1da177e4
LT
940 return;
941 }
942 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
98001214 943 raw_spin_lock_irqsave(&ldata->read_lock, flags);
ba2e68ac 944 ldata->read_cnt -= ((ldata->read_head - ldata->canon_head) &
1da177e4 945 (N_TTY_BUF_SIZE - 1));
ba2e68ac 946 ldata->read_head = ldata->canon_head;
98001214 947 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
57c94121 948 finish_erasing(ldata);
1da177e4
LT
949 echo_char(KILL_CHAR(tty), tty);
950 /* Add a newline if ECHOK is on and ECHOKE is off. */
951 if (L_ECHOK(tty))
57c94121 952 echo_char_raw('\n', ldata);
1da177e4
LT
953 return;
954 }
955 kill_type = KILL;
956 }
957
958 seen_alnums = 0;
17b82060 959 /* FIXME: Locking ?? */
ba2e68ac
JS
960 while (ldata->read_head != ldata->canon_head) {
961 head = ldata->read_head;
1da177e4
LT
962
963 /* erase a single possibly multibyte character */
964 do {
965 head = (head - 1) & (N_TTY_BUF_SIZE-1);
ba2e68ac
JS
966 c = ldata->read_buf[head];
967 } while (is_continuation(c, tty) && head != ldata->canon_head);
1da177e4
LT
968
969 /* do not partially erase */
970 if (is_continuation(c, tty))
971 break;
972
973 if (kill_type == WERASE) {
974 /* Equivalent to BSD's ALTWERASE. */
975 if (isalnum(c) || c == '_')
976 seen_alnums++;
977 else if (seen_alnums)
978 break;
979 }
ba2e68ac 980 cnt = (ldata->read_head - head) & (N_TTY_BUF_SIZE-1);
98001214 981 raw_spin_lock_irqsave(&ldata->read_lock, flags);
ba2e68ac
JS
982 ldata->read_head = head;
983 ldata->read_cnt -= cnt;
98001214 984 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1da177e4
LT
985 if (L_ECHO(tty)) {
986 if (L_ECHOPRT(tty)) {
53c5ee2c 987 if (!ldata->erasing) {
57c94121 988 echo_char_raw('\\', ldata);
53c5ee2c 989 ldata->erasing = 1;
1da177e4
LT
990 }
991 /* if cnt > 1, output a multi-byte character */
992 echo_char(c, tty);
993 while (--cnt > 0) {
994 head = (head+1) & (N_TTY_BUF_SIZE-1);
57c94121
JS
995 echo_char_raw(ldata->read_buf[head],
996 ldata);
997 echo_move_back_col(ldata);
1da177e4
LT
998 }
999 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1000 echo_char(ERASE_CHAR(tty), tty);
1001 } else if (c == '\t') {
a88a69c9
JP
1002 unsigned int num_chars = 0;
1003 int after_tab = 0;
ba2e68ac 1004 unsigned long tail = ldata->read_head;
a88a69c9
JP
1005
1006 /*
1007 * Count the columns used for characters
1008 * since the start of input or after a
1009 * previous tab.
1010 * This info is used to go back the correct
1011 * number of columns.
1012 */
ba2e68ac 1013 while (tail != ldata->canon_head) {
a88a69c9 1014 tail = (tail-1) & (N_TTY_BUF_SIZE-1);
ba2e68ac 1015 c = ldata->read_buf[tail];
a88a69c9
JP
1016 if (c == '\t') {
1017 after_tab = 1;
1018 break;
300a6204 1019 } else if (iscntrl(c)) {
1da177e4 1020 if (L_ECHOCTL(tty))
a88a69c9
JP
1021 num_chars += 2;
1022 } else if (!is_continuation(c, tty)) {
1023 num_chars++;
1024 }
1da177e4 1025 }
57c94121 1026 echo_erase_tab(num_chars, after_tab, ldata);
1da177e4
LT
1027 } else {
1028 if (iscntrl(c) && L_ECHOCTL(tty)) {
57c94121
JS
1029 echo_char_raw('\b', ldata);
1030 echo_char_raw(' ', ldata);
1031 echo_char_raw('\b', ldata);
1da177e4
LT
1032 }
1033 if (!iscntrl(c) || L_ECHOCTL(tty)) {
57c94121
JS
1034 echo_char_raw('\b', ldata);
1035 echo_char_raw(' ', ldata);
1036 echo_char_raw('\b', ldata);
1da177e4
LT
1037 }
1038 }
1039 }
1040 if (kill_type == ERASE)
1041 break;
1042 }
ba2e68ac 1043 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
57c94121 1044 finish_erasing(ldata);
1da177e4
LT
1045}
1046
1047/**
1048 * isig - handle the ISIG optio
1049 * @sig: signal
1050 * @tty: terminal
1da177e4 1051 *
8c985d18
PH
1052 * Called when a signal is being sent due to terminal input.
1053 * Called from the driver receive_buf path so serialized.
17b82060 1054 *
8c985d18 1055 * Locking: ctrl_lock
1da177e4 1056 */
4edf1827 1057
8c985d18 1058static inline void isig(int sig, struct tty_struct *tty)
1da177e4 1059{
8c985d18
PH
1060 struct pid *tty_pgrp = tty_get_pgrp(tty);
1061 if (tty_pgrp) {
1062 kill_pgrp(tty_pgrp, sig, 1);
1063 put_pid(tty_pgrp);
1da177e4
LT
1064 }
1065}
1066
1067/**
1068 * n_tty_receive_break - handle break
1069 * @tty: terminal
1070 *
1071 * An RS232 break event has been hit in the incoming bitstream. This
1072 * can cause a variety of events depending upon the termios settings.
1073 *
1074 * Called from the receive_buf path so single threaded.
1075 */
4edf1827 1076
1da177e4
LT
1077static inline void n_tty_receive_break(struct tty_struct *tty)
1078{
57c94121
JS
1079 struct n_tty_data *ldata = tty->disc_data;
1080
1da177e4
LT
1081 if (I_IGNBRK(tty))
1082 return;
1083 if (I_BRKINT(tty)) {
8c985d18
PH
1084 isig(SIGINT, tty);
1085 if (!L_NOFLSH(tty)) {
1086 n_tty_flush_buffer(tty);
1087 tty_driver_flush_buffer(tty);
1088 }
1da177e4
LT
1089 return;
1090 }
1091 if (I_PARMRK(tty)) {
57c94121
JS
1092 put_tty_queue('\377', ldata);
1093 put_tty_queue('\0', ldata);
1da177e4 1094 }
57c94121 1095 put_tty_queue('\0', ldata);
1da177e4
LT
1096 wake_up_interruptible(&tty->read_wait);
1097}
1098
1099/**
1100 * n_tty_receive_overrun - handle overrun reporting
1101 * @tty: terminal
1102 *
1103 * Data arrived faster than we could process it. While the tty
1104 * driver has flagged this the bits that were missed are gone
1105 * forever.
1106 *
1107 * Called from the receive_buf path so single threaded. Does not
1108 * need locking as num_overrun and overrun_time are function
1109 * private.
1110 */
4edf1827 1111
1da177e4
LT
1112static inline void n_tty_receive_overrun(struct tty_struct *tty)
1113{
53c5ee2c 1114 struct n_tty_data *ldata = tty->disc_data;
1da177e4
LT
1115 char buf[64];
1116
53c5ee2c
JS
1117 ldata->num_overrun++;
1118 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1119 time_after(ldata->overrun_time, jiffies)) {
1da177e4
LT
1120 printk(KERN_WARNING "%s: %d input overrun(s)\n",
1121 tty_name(tty, buf),
53c5ee2c
JS
1122 ldata->num_overrun);
1123 ldata->overrun_time = jiffies;
1124 ldata->num_overrun = 0;
1da177e4
LT
1125 }
1126}
1127
1128/**
1129 * n_tty_receive_parity_error - error notifier
1130 * @tty: terminal device
1131 * @c: character
1132 *
1133 * Process a parity error and queue the right data to indicate
3a4fa0a2 1134 * the error case if necessary. Locking as per n_tty_receive_buf.
1da177e4
LT
1135 */
1136static inline void n_tty_receive_parity_error(struct tty_struct *tty,
1137 unsigned char c)
1138{
57c94121
JS
1139 struct n_tty_data *ldata = tty->disc_data;
1140
4edf1827 1141 if (I_IGNPAR(tty))
1da177e4 1142 return;
1da177e4 1143 if (I_PARMRK(tty)) {
57c94121
JS
1144 put_tty_queue('\377', ldata);
1145 put_tty_queue('\0', ldata);
1146 put_tty_queue(c, ldata);
1da177e4 1147 } else if (I_INPCK(tty))
57c94121 1148 put_tty_queue('\0', ldata);
1da177e4 1149 else
57c94121 1150 put_tty_queue(c, ldata);
1da177e4
LT
1151 wake_up_interruptible(&tty->read_wait);
1152}
1153
1154/**
1155 * n_tty_receive_char - perform processing
1156 * @tty: terminal device
1157 * @c: character
1158 *
1159 * Process an individual character of input received from the driver.
4edf1827 1160 * This is serialized with respect to itself by the rules for the
1da177e4
LT
1161 * driver above.
1162 */
1163
1164static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1165{
53c5ee2c 1166 struct n_tty_data *ldata = tty->disc_data;
1da177e4 1167 unsigned long flags;
acc71bba 1168 int parmrk;
1da177e4 1169
53c5ee2c 1170 if (ldata->raw) {
57c94121 1171 put_tty_queue(c, ldata);
1da177e4
LT
1172 return;
1173 }
4edf1827 1174
1da177e4
LT
1175 if (I_ISTRIP(tty))
1176 c &= 0x7f;
1177 if (I_IUCLC(tty) && L_IEXTEN(tty))
300a6204 1178 c = tolower(c);
1da177e4 1179
26df6d13 1180 if (L_EXTPROC(tty)) {
57c94121 1181 put_tty_queue(c, ldata);
26df6d13 1182 return;
1183 }
1184
54d2a37e 1185 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) &&
a88a69c9
JP
1186 I_IXANY(tty) && c != START_CHAR(tty) && c != STOP_CHAR(tty) &&
1187 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && c != SUSP_CHAR(tty)) {
54d2a37e 1188 start_tty(tty);
a88a69c9
JP
1189 process_echoes(tty);
1190 }
54d2a37e 1191
1da177e4
LT
1192 if (tty->closing) {
1193 if (I_IXON(tty)) {
a88a69c9 1194 if (c == START_CHAR(tty)) {
1da177e4 1195 start_tty(tty);
a88a69c9 1196 process_echoes(tty);
300a6204 1197 } else if (c == STOP_CHAR(tty))
1da177e4
LT
1198 stop_tty(tty);
1199 }
1200 return;
1201 }
1202
1203 /*
1204 * If the previous character was LNEXT, or we know that this
1205 * character is not one of the characters that we'll have to
1206 * handle specially, do shortcut processing to speed things
1207 * up.
1208 */
3fe780b3 1209 if (!test_bit(c, ldata->process_char_map) || ldata->lnext) {
53c5ee2c 1210 ldata->lnext = 0;
acc71bba 1211 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
ce74117a 1212 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
acc71bba 1213 /* beep if no space */
7e94b1d9
JP
1214 if (L_ECHO(tty))
1215 process_output('\a', tty);
acc71bba
JP
1216 return;
1217 }
1218 if (L_ECHO(tty)) {
57c94121 1219 finish_erasing(ldata);
1da177e4 1220 /* Record the column of first canon char. */
ba2e68ac 1221 if (ldata->canon_head == ldata->read_head)
57c94121 1222 echo_set_canon_col(ldata);
1da177e4 1223 echo_char(c, tty);
a88a69c9 1224 process_echoes(tty);
1da177e4 1225 }
acc71bba 1226 if (parmrk)
57c94121
JS
1227 put_tty_queue(c, ldata);
1228 put_tty_queue(c, ldata);
1da177e4
LT
1229 return;
1230 }
4edf1827 1231
1da177e4
LT
1232 if (I_IXON(tty)) {
1233 if (c == START_CHAR(tty)) {
1234 start_tty(tty);
a88a69c9 1235 process_echoes(tty);
1da177e4
LT
1236 return;
1237 }
1238 if (c == STOP_CHAR(tty)) {
1239 stop_tty(tty);
1240 return;
1241 }
1242 }
575537b3 1243
1da177e4
LT
1244 if (L_ISIG(tty)) {
1245 int signal;
1246 signal = SIGINT;
1247 if (c == INTR_CHAR(tty))
1248 goto send_signal;
1249 signal = SIGQUIT;
1250 if (c == QUIT_CHAR(tty))
1251 goto send_signal;
1252 signal = SIGTSTP;
1253 if (c == SUSP_CHAR(tty)) {
1254send_signal:
ec5b1157
JP
1255 if (!L_NOFLSH(tty)) {
1256 n_tty_flush_buffer(tty);
f34d7a5b 1257 tty_driver_flush_buffer(tty);
ec5b1157 1258 }
a88a69c9
JP
1259 if (I_IXON(tty))
1260 start_tty(tty);
1261 if (L_ECHO(tty)) {
ec5b1157 1262 echo_char(c, tty);
a88a69c9
JP
1263 process_echoes(tty);
1264 }
8c985d18 1265 isig(signal, tty);
1da177e4
LT
1266 return;
1267 }
1268 }
575537b3
JP
1269
1270 if (c == '\r') {
1271 if (I_IGNCR(tty))
1272 return;
1273 if (I_ICRNL(tty))
1274 c = '\n';
1275 } else if (c == '\n' && I_INLCR(tty))
1276 c = '\r';
1277
53c5ee2c 1278 if (ldata->icanon) {
1da177e4
LT
1279 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1280 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1281 eraser(c, tty);
a88a69c9 1282 process_echoes(tty);
1da177e4
LT
1283 return;
1284 }
1285 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
53c5ee2c 1286 ldata->lnext = 1;
1da177e4 1287 if (L_ECHO(tty)) {
57c94121 1288 finish_erasing(ldata);
1da177e4 1289 if (L_ECHOCTL(tty)) {
57c94121
JS
1290 echo_char_raw('^', ldata);
1291 echo_char_raw('\b', ldata);
a88a69c9 1292 process_echoes(tty);
1da177e4
LT
1293 }
1294 }
1295 return;
1296 }
1297 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
1298 L_IEXTEN(tty)) {
ba2e68ac 1299 unsigned long tail = ldata->canon_head;
1da177e4 1300
57c94121 1301 finish_erasing(ldata);
1da177e4 1302 echo_char(c, tty);
57c94121 1303 echo_char_raw('\n', ldata);
ba2e68ac
JS
1304 while (tail != ldata->read_head) {
1305 echo_char(ldata->read_buf[tail], tty);
1da177e4
LT
1306 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
1307 }
a88a69c9 1308 process_echoes(tty);
1da177e4
LT
1309 return;
1310 }
1311 if (c == '\n') {
ce74117a 1312 if (read_cnt(ldata) >= N_TTY_BUF_SIZE) {
7e94b1d9
JP
1313 if (L_ECHO(tty))
1314 process_output('\a', tty);
acc71bba
JP
1315 return;
1316 }
1317 if (L_ECHO(tty) || L_ECHONL(tty)) {
57c94121 1318 echo_char_raw('\n', ldata);
a88a69c9 1319 process_echoes(tty);
1da177e4
LT
1320 }
1321 goto handle_newline;
1322 }
1323 if (c == EOF_CHAR(tty)) {
ce74117a 1324 if (read_cnt(ldata) >= N_TTY_BUF_SIZE)
acc71bba 1325 return;
ba2e68ac 1326 if (ldata->canon_head != ldata->read_head)
4edf1827 1327 set_bit(TTY_PUSH, &tty->flags);
1da177e4
LT
1328 c = __DISABLED_CHAR;
1329 goto handle_newline;
1330 }
1331 if ((c == EOL_CHAR(tty)) ||
1332 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
acc71bba
JP
1333 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty))
1334 ? 1 : 0;
ce74117a 1335 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk)) {
7e94b1d9
JP
1336 if (L_ECHO(tty))
1337 process_output('\a', tty);
acc71bba
JP
1338 return;
1339 }
1da177e4
LT
1340 /*
1341 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1342 */
1343 if (L_ECHO(tty)) {
1da177e4 1344 /* Record the column of first canon char. */
ba2e68ac 1345 if (ldata->canon_head == ldata->read_head)
57c94121 1346 echo_set_canon_col(ldata);
1da177e4 1347 echo_char(c, tty);
a88a69c9 1348 process_echoes(tty);
1da177e4
LT
1349 }
1350 /*
1351 * XXX does PARMRK doubling happen for
1352 * EOL_CHAR and EOL2_CHAR?
1353 */
acc71bba 1354 if (parmrk)
57c94121 1355 put_tty_queue(c, ldata);
1da177e4 1356
4edf1827 1357handle_newline:
98001214 1358 raw_spin_lock_irqsave(&ldata->read_lock, flags);
ba2e68ac 1359 set_bit(ldata->read_head, ldata->read_flags);
57c94121 1360 put_tty_queue_nolock(c, ldata);
ba2e68ac
JS
1361 ldata->canon_head = ldata->read_head;
1362 ldata->canon_data++;
98001214 1363 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1da177e4
LT
1364 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1365 if (waitqueue_active(&tty->read_wait))
1366 wake_up_interruptible(&tty->read_wait);
1367 return;
1368 }
1369 }
4edf1827 1370
acc71bba 1371 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
ce74117a 1372 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
acc71bba 1373 /* beep if no space */
7e94b1d9
JP
1374 if (L_ECHO(tty))
1375 process_output('\a', tty);
acc71bba
JP
1376 return;
1377 }
1378 if (L_ECHO(tty)) {
57c94121 1379 finish_erasing(ldata);
1da177e4 1380 if (c == '\n')
57c94121 1381 echo_char_raw('\n', ldata);
1da177e4
LT
1382 else {
1383 /* Record the column of first canon char. */
ba2e68ac 1384 if (ldata->canon_head == ldata->read_head)
57c94121 1385 echo_set_canon_col(ldata);
1da177e4
LT
1386 echo_char(c, tty);
1387 }
a88a69c9 1388 process_echoes(tty);
1da177e4
LT
1389 }
1390
acc71bba 1391 if (parmrk)
57c94121 1392 put_tty_queue(c, ldata);
1da177e4 1393
57c94121 1394 put_tty_queue(c, ldata);
4edf1827 1395}
1da177e4 1396
1da177e4
LT
1397
1398/**
1399 * n_tty_write_wakeup - asynchronous I/O notifier
1400 * @tty: tty device
1401 *
1402 * Required for the ptys, serial driver etc. since processes
1403 * that attach themselves to the master and rely on ASYNC
1404 * IO must be woken up
1405 */
1406
1407static void n_tty_write_wakeup(struct tty_struct *tty)
1408{
ff8cb0fd 1409 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
1da177e4 1410 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
1da177e4
LT
1411}
1412
1413/**
1414 * n_tty_receive_buf - data receive
1415 * @tty: terminal device
1416 * @cp: buffer
1417 * @fp: flag buffer
1418 * @count: characters
1419 *
1420 * Called by the terminal driver when a block of characters has
1421 * been received. This function must be called from soft contexts
1422 * not from interrupt context. The driver is responsible for making
1423 * calls one at a time and in order (or using flush_to_ldisc)
1424 */
4edf1827 1425
24a89d1c
PH
1426static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1427 char *fp, int count)
1da177e4 1428{
53c5ee2c 1429 struct n_tty_data *ldata = tty->disc_data;
1da177e4
LT
1430 const unsigned char *p;
1431 char *f, flags = TTY_NORMAL;
1432 int i;
1433 char buf[64];
1434 unsigned long cpuflags;
1435
53c5ee2c 1436 if (ldata->real_raw) {
98001214 1437 raw_spin_lock_irqsave(&ldata->read_lock, cpuflags);
ce74117a 1438 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
ba2e68ac 1439 N_TTY_BUF_SIZE - ldata->read_head);
1da177e4 1440 i = min(count, i);
ba2e68ac
JS
1441 memcpy(ldata->read_buf + ldata->read_head, cp, i);
1442 ldata->read_head = (ldata->read_head + i) & (N_TTY_BUF_SIZE-1);
1443 ldata->read_cnt += i;
1da177e4
LT
1444 cp += i;
1445 count -= i;
1446
ce74117a 1447 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
ba2e68ac 1448 N_TTY_BUF_SIZE - ldata->read_head);
1da177e4 1449 i = min(count, i);
ba2e68ac
JS
1450 memcpy(ldata->read_buf + ldata->read_head, cp, i);
1451 ldata->read_head = (ldata->read_head + i) & (N_TTY_BUF_SIZE-1);
1452 ldata->read_cnt += i;
98001214 1453 raw_spin_unlock_irqrestore(&ldata->read_lock, cpuflags);
1da177e4 1454 } else {
4edf1827 1455 for (i = count, p = cp, f = fp; i; i--, p++) {
1da177e4
LT
1456 if (f)
1457 flags = *f++;
1458 switch (flags) {
1459 case TTY_NORMAL:
1460 n_tty_receive_char(tty, *p);
1461 break;
1462 case TTY_BREAK:
1463 n_tty_receive_break(tty);
1464 break;
1465 case TTY_PARITY:
1466 case TTY_FRAME:
1467 n_tty_receive_parity_error(tty, *p);
1468 break;
1469 case TTY_OVERRUN:
1470 n_tty_receive_overrun(tty);
1471 break;
1472 default:
4edf1827 1473 printk(KERN_ERR "%s: unknown flag %d\n",
1da177e4
LT
1474 tty_name(tty, buf), flags);
1475 break;
1476 }
1477 }
f34d7a5b
AC
1478 if (tty->ops->flush_chars)
1479 tty->ops->flush_chars(tty);
1da177e4
LT
1480 }
1481
ce74117a 1482 if ((!ldata->icanon && (read_cnt(ldata) >= ldata->minimum_to_wake)) ||
26df6d13 1483 L_EXTPROC(tty)) {
1da177e4
LT
1484 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1485 if (waitqueue_active(&tty->read_wait))
1486 wake_up_interruptible(&tty->read_wait);
1487 }
1488
1489 /*
1490 * Check the remaining room for the input canonicalization
1491 * mode. We don't want to throttle the driver if we're in
1492 * canonical mode and don't have a newline yet!
1493 */
e91e52e4
PH
1494 while (1) {
1495 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
24a89d1c 1496 if (receive_room(tty) >= TTY_THRESHOLD_THROTTLE)
e91e52e4
PH
1497 break;
1498 if (!tty_throttle_safe(tty))
1499 break;
1500 }
1501 __tty_set_flow_change(tty, 0);
1da177e4
LT
1502}
1503
24a89d1c
PH
1504static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1505 char *fp, int count)
1506{
1507 __receive_buf(tty, cp, fp, count);
1508}
1509
1510static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1511 char *fp, int count)
1512{
1513 struct n_tty_data *ldata = tty->disc_data;
1514 int room;
1515
1516 tty->receive_room = room = receive_room(tty);
1517 if (!room)
1518 ldata->no_room = 1;
1519 count = min(count, room);
1520 if (count)
1521 __receive_buf(tty, cp, fp, count);
1522
1523 return count;
1524}
1525
1da177e4
LT
1526int is_ignored(int sig)
1527{
1528 return (sigismember(&current->blocked, sig) ||
4edf1827 1529 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
1da177e4
LT
1530}
1531
1532/**
1533 * n_tty_set_termios - termios data changed
1534 * @tty: terminal
1535 * @old: previous data
1536 *
1537 * Called by the tty layer when the user changes termios flags so
1538 * that the line discipline can plan ahead. This function cannot sleep
4edf1827 1539 * and is protected from re-entry by the tty layer. The user is
1da177e4
LT
1540 * guaranteed that this function will not be re-entered or in progress
1541 * when the ldisc is closed.
17b82060
AC
1542 *
1543 * Locking: Caller holds tty->termios_mutex
1da177e4 1544 */
4edf1827
AC
1545
1546static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
1da177e4 1547{
53c5ee2c 1548 struct n_tty_data *ldata = tty->disc_data;
47afa7a5 1549 int canon_change = 1;
47afa7a5
AC
1550
1551 if (old)
adc8d746 1552 canon_change = (old->c_lflag ^ tty->termios.c_lflag) & ICANON;
47afa7a5 1553 if (canon_change) {
3fe780b3 1554 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
ba2e68ac
JS
1555 ldata->canon_head = ldata->read_tail;
1556 ldata->canon_data = 0;
53c5ee2c 1557 ldata->erasing = 0;
47afa7a5
AC
1558 }
1559
ce74117a 1560 if (canon_change && !L_ICANON(tty) && read_cnt(ldata))
47afa7a5 1561 wake_up_interruptible(&tty->read_wait);
4edf1827 1562
53c5ee2c 1563 ldata->icanon = (L_ICANON(tty) != 0);
582f5590 1564
1da177e4
LT
1565 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1566 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1567 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1568 I_PARMRK(tty)) {
3fe780b3 1569 bitmap_zero(ldata->process_char_map, 256);
1da177e4
LT
1570
1571 if (I_IGNCR(tty) || I_ICRNL(tty))
3fe780b3 1572 set_bit('\r', ldata->process_char_map);
1da177e4 1573 if (I_INLCR(tty))
3fe780b3 1574 set_bit('\n', ldata->process_char_map);
1da177e4
LT
1575
1576 if (L_ICANON(tty)) {
3fe780b3
JS
1577 set_bit(ERASE_CHAR(tty), ldata->process_char_map);
1578 set_bit(KILL_CHAR(tty), ldata->process_char_map);
1579 set_bit(EOF_CHAR(tty), ldata->process_char_map);
1580 set_bit('\n', ldata->process_char_map);
1581 set_bit(EOL_CHAR(tty), ldata->process_char_map);
1da177e4
LT
1582 if (L_IEXTEN(tty)) {
1583 set_bit(WERASE_CHAR(tty),
3fe780b3 1584 ldata->process_char_map);
1da177e4 1585 set_bit(LNEXT_CHAR(tty),
3fe780b3 1586 ldata->process_char_map);
1da177e4 1587 set_bit(EOL2_CHAR(tty),
3fe780b3 1588 ldata->process_char_map);
1da177e4
LT
1589 if (L_ECHO(tty))
1590 set_bit(REPRINT_CHAR(tty),
3fe780b3 1591 ldata->process_char_map);
1da177e4
LT
1592 }
1593 }
1594 if (I_IXON(tty)) {
3fe780b3
JS
1595 set_bit(START_CHAR(tty), ldata->process_char_map);
1596 set_bit(STOP_CHAR(tty), ldata->process_char_map);
1da177e4
LT
1597 }
1598 if (L_ISIG(tty)) {
3fe780b3
JS
1599 set_bit(INTR_CHAR(tty), ldata->process_char_map);
1600 set_bit(QUIT_CHAR(tty), ldata->process_char_map);
1601 set_bit(SUSP_CHAR(tty), ldata->process_char_map);
1da177e4 1602 }
3fe780b3 1603 clear_bit(__DISABLED_CHAR, ldata->process_char_map);
53c5ee2c
JS
1604 ldata->raw = 0;
1605 ldata->real_raw = 0;
1da177e4 1606 } else {
53c5ee2c 1607 ldata->raw = 1;
1da177e4
LT
1608 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1609 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1610 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
53c5ee2c 1611 ldata->real_raw = 1;
1da177e4 1612 else
53c5ee2c 1613 ldata->real_raw = 0;
1da177e4 1614 }
55db4c64 1615 n_tty_set_room(tty);
dab73b4e
WY
1616 /*
1617 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1618 * been stopped by STOP_CHAR(tty) before it.
1619 */
1620 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
1621 start_tty(tty);
1622 }
1623
f34d7a5b
AC
1624 /* The termios change make the tty ready for I/O */
1625 wake_up_interruptible(&tty->write_wait);
1626 wake_up_interruptible(&tty->read_wait);
1da177e4
LT
1627}
1628
1629/**
1630 * n_tty_close - close the ldisc for this tty
1631 * @tty: device
1632 *
4edf1827
AC
1633 * Called from the terminal layer when this line discipline is
1634 * being shut down, either because of a close or becsuse of a
1da177e4
LT
1635 * discipline change. The function will not be called while other
1636 * ldisc methods are in progress.
1637 */
4edf1827 1638
1da177e4
LT
1639static void n_tty_close(struct tty_struct *tty)
1640{
70ece7a7
JS
1641 struct n_tty_data *ldata = tty->disc_data;
1642
79901317
PH
1643 if (tty->link)
1644 n_tty_packet_mode_flush(tty);
1645
ba2e68ac
JS
1646 kfree(ldata->read_buf);
1647 kfree(ldata->echo_buf);
70ece7a7 1648 kfree(ldata);
70ece7a7 1649 tty->disc_data = NULL;
1da177e4
LT
1650}
1651
1652/**
1653 * n_tty_open - open an ldisc
1654 * @tty: terminal to open
1655 *
4edf1827 1656 * Called when this line discipline is being attached to the
1da177e4
LT
1657 * terminal device. Can sleep. Called serialized so that no
1658 * other events will occur in parallel. No further open will occur
1659 * until a close.
1660 */
1661
1662static int n_tty_open(struct tty_struct *tty)
1663{
70ece7a7
JS
1664 struct n_tty_data *ldata;
1665
1666 ldata = kzalloc(sizeof(*ldata), GFP_KERNEL);
1667 if (!ldata)
1668 goto err;
1669
53c5ee2c 1670 ldata->overrun_time = jiffies;
bddc7152
JS
1671 mutex_init(&ldata->atomic_read_lock);
1672 mutex_init(&ldata->output_lock);
1673 mutex_init(&ldata->echo_lock);
98001214 1674 raw_spin_lock_init(&ldata->read_lock);
53c5ee2c 1675
a88a69c9 1676 /* These are ugly. Currently a malloc failure here can panic */
ba2e68ac
JS
1677 ldata->read_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1678 ldata->echo_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1679 if (!ldata->read_buf || !ldata->echo_buf)
b91939f5 1680 goto err_free_bufs;
0b4068a1 1681
70ece7a7 1682 tty->disc_data = ldata;
b66f4fa5 1683 reset_buffer_flags(tty->disc_data);
53c5ee2c 1684 ldata->column = 0;
f6c8dbe6 1685 ldata->minimum_to_wake = 1;
1da177e4 1686 tty->closing = 0;
b66f4fa5
PH
1687 /* indicate buffer work may resume */
1688 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1689 n_tty_set_termios(tty, NULL);
1690 tty_unthrottle(tty);
70ece7a7 1691
1da177e4 1692 return 0;
b91939f5 1693err_free_bufs:
ba2e68ac
JS
1694 kfree(ldata->read_buf);
1695 kfree(ldata->echo_buf);
70ece7a7
JS
1696 kfree(ldata);
1697err:
b91939f5 1698 return -ENOMEM;
1da177e4
LT
1699}
1700
1701static inline int input_available_p(struct tty_struct *tty, int amt)
1702{
53c5ee2c
JS
1703 struct n_tty_data *ldata = tty->disc_data;
1704
e043e42b 1705 tty_flush_to_ldisc(tty);
53c5ee2c 1706 if (ldata->icanon && !L_EXTPROC(tty)) {
ba2e68ac 1707 if (ldata->canon_data)
1da177e4 1708 return 1;
ce74117a 1709 } else if (read_cnt(ldata) >= (amt ? amt : 1))
1da177e4
LT
1710 return 1;
1711
1712 return 0;
1713}
1714
1715/**
bbd20759 1716 * copy_from_read_buf - copy read data directly
1da177e4
LT
1717 * @tty: terminal device
1718 * @b: user data
1719 * @nr: size of data
1720 *
11a96d18 1721 * Helper function to speed up n_tty_read. It is only called when
1da177e4
LT
1722 * ICANON is off; it copies characters straight from the tty queue to
1723 * user space directly. It can be profitably called twice; once to
1724 * drain the space from the tail pointer to the (physical) end of the
1725 * buffer, and once to drain the space from the (physical) beginning of
1726 * the buffer to head pointer.
1727 *
bddc7152 1728 * Called under the ldata->atomic_read_lock sem
1da177e4
LT
1729 *
1730 */
4edf1827 1731
33f0f88f 1732static int copy_from_read_buf(struct tty_struct *tty,
1da177e4
LT
1733 unsigned char __user **b,
1734 size_t *nr)
1735
1736{
53c5ee2c 1737 struct n_tty_data *ldata = tty->disc_data;
1da177e4
LT
1738 int retval;
1739 size_t n;
1740 unsigned long flags;
3fa10cc8 1741 bool is_eof;
1da177e4
LT
1742
1743 retval = 0;
98001214 1744 raw_spin_lock_irqsave(&ldata->read_lock, flags);
ce74117a 1745 n = min(read_cnt(ldata), N_TTY_BUF_SIZE - ldata->read_tail);
1da177e4 1746 n = min(*nr, n);
98001214 1747 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1da177e4 1748 if (n) {
ba2e68ac 1749 retval = copy_to_user(*b, &ldata->read_buf[ldata->read_tail], n);
1da177e4 1750 n -= retval;
3fa10cc8 1751 is_eof = n == 1 &&
ba2e68ac
JS
1752 ldata->read_buf[ldata->read_tail] == EOF_CHAR(tty);
1753 tty_audit_add_data(tty, &ldata->read_buf[ldata->read_tail], n,
53c5ee2c 1754 ldata->icanon);
98001214 1755 raw_spin_lock_irqsave(&ldata->read_lock, flags);
ba2e68ac
JS
1756 ldata->read_tail = (ldata->read_tail + n) & (N_TTY_BUF_SIZE-1);
1757 ldata->read_cnt -= n;
26df6d13 1758 /* Turn single EOF into zero-length read */
ce74117a 1759 if (L_EXTPROC(tty) && ldata->icanon && is_eof && !read_cnt(ldata))
3fa10cc8 1760 n = 0;
98001214 1761 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1da177e4
LT
1762 *b += n;
1763 *nr -= n;
1764 }
1765 return retval;
1766}
1767
88bb0de3 1768/**
32f13521 1769 * canon_copy_from_read_buf - copy read data in canonical mode
88bb0de3
PH
1770 * @tty: terminal device
1771 * @b: user data
1772 * @nr: size of data
1773 *
1774 * Helper function for n_tty_read. It is only called when ICANON is on;
32f13521
PH
1775 * it copies one line of input up to and including the line-delimiting
1776 * character into the user-space buffer.
88bb0de3
PH
1777 *
1778 * Called under the atomic_read_lock mutex
1779 */
1780
32f13521
PH
1781static int canon_copy_from_read_buf(struct tty_struct *tty,
1782 unsigned char __user **b,
1783 size_t *nr)
88bb0de3
PH
1784{
1785 struct n_tty_data *ldata = tty->disc_data;
1786 unsigned long flags;
32f13521
PH
1787 size_t n, size, more, c;
1788 unsigned long eol;
1789 int ret, tail, found = 0;
88bb0de3
PH
1790
1791 /* N.B. avoid overrun if nr == 0 */
32f13521 1792
88bb0de3 1793 raw_spin_lock_irqsave(&ldata->read_lock, flags);
32f13521 1794
ce74117a 1795 n = min(*nr, read_cnt(ldata));
32f13521 1796 if (!n) {
88bb0de3 1797 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
32f13521
PH
1798 return 0;
1799 }
88bb0de3 1800
32f13521
PH
1801 tail = ldata->read_tail;
1802 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
1803
1804 n_tty_trace("%s: nr:%zu tail:%d n:%zu size:%zu\n",
1805 __func__, *nr, tail, n, size);
1806
1807 eol = find_next_bit(ldata->read_flags, size, tail);
1808 more = n - (size - tail);
1809 if (eol == N_TTY_BUF_SIZE && more) {
1810 /* scan wrapped without finding set bit */
1811 eol = find_next_bit(ldata->read_flags, more, 0);
1812 if (eol != more)
1813 found = 1;
1814 } else if (eol != size)
1815 found = 1;
1816
1817 size = N_TTY_BUF_SIZE - tail;
1818 n = (found + eol + size) & (N_TTY_BUF_SIZE - 1);
1819 c = n;
1820
1821 if (found && ldata->read_buf[eol] == __DISABLED_CHAR)
1822 n--;
1823
1824 n_tty_trace("%s: eol:%lu found:%d n:%zu c:%zu size:%zu more:%zu\n",
1825 __func__, eol, found, n, c, size, more);
1826
1827 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1828
1829 if (n > size) {
1830 ret = copy_to_user(*b, &ldata->read_buf[tail], size);
1831 if (ret)
1832 return -EFAULT;
1833 ret = copy_to_user(*b + size, ldata->read_buf, n - size);
1834 } else
1835 ret = copy_to_user(*b, &ldata->read_buf[tail], n);
1836
1837 if (ret)
1838 return -EFAULT;
1839 *b += n;
1840 *nr -= n;
1841
1842 raw_spin_lock_irqsave(&ldata->read_lock, flags);
1843 ldata->read_tail = (ldata->read_tail + c) & (N_TTY_BUF_SIZE - 1);
1844 ldata->read_cnt -= c;
1845 if (found) {
1846 __clear_bit(eol, ldata->read_flags);
1847 /* this test should be redundant:
1848 * we shouldn't be reading data if
1849 * canon_data is 0
1850 */
1851 if (--ldata->canon_data < 0)
1852 ldata->canon_data = 0;
88bb0de3
PH
1853 }
1854 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1855
32f13521
PH
1856 if (found)
1857 tty_audit_push(tty);
88bb0de3
PH
1858 return 0;
1859}
1860
cc4191dc 1861extern ssize_t redirected_tty_write(struct file *, const char __user *,
4edf1827 1862 size_t, loff_t *);
1da177e4
LT
1863
1864/**
1865 * job_control - check job control
1866 * @tty: tty
1867 * @file: file handle
1868 *
1869 * Perform job control management checks on this file/tty descriptor
4edf1827 1870 * and if appropriate send any needed signals and return a negative
1da177e4 1871 * error code if action should be taken.
04f378b1 1872 *
01a5e440
PH
1873 * Locking: redirected write test is safe
1874 * current->signal->tty check is safe
1875 * ctrl_lock to safely reference tty->pgrp
1da177e4 1876 */
4edf1827 1877
1da177e4
LT
1878static int job_control(struct tty_struct *tty, struct file *file)
1879{
1880 /* Job control check -- must be done at start and after
1881 every sleep (POSIX.1 7.1.1.4). */
1882 /* NOTE: not yet done after every sleep pending a thorough
1883 check of the logic of this change. -- jlc */
1884 /* don't stop on /dev/console */
01a5e440
PH
1885 if (file->f_op->write == redirected_tty_write ||
1886 current->signal->tty != tty)
1887 return 0;
1888
1889 spin_lock_irq(&tty->ctrl_lock);
1890 if (!tty->pgrp)
1891 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
1892 else if (task_pgrp(current) != tty->pgrp) {
1893 spin_unlock_irq(&tty->ctrl_lock);
1894 if (is_ignored(SIGTTIN) || is_current_pgrp_orphaned())
1895 return -EIO;
1896 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
1897 set_thread_flag(TIF_SIGPENDING);
1898 return -ERESTARTSYS;
1da177e4 1899 }
01a5e440 1900 spin_unlock_irq(&tty->ctrl_lock);
1da177e4
LT
1901 return 0;
1902}
4edf1827 1903
1da177e4
LT
1904
1905/**
11a96d18 1906 * n_tty_read - read function for tty
1da177e4
LT
1907 * @tty: tty device
1908 * @file: file object
1909 * @buf: userspace buffer pointer
1910 * @nr: size of I/O
1911 *
1912 * Perform reads for the line discipline. We are guaranteed that the
1913 * line discipline will not be closed under us but we may get multiple
1914 * parallel readers and must handle this ourselves. We may also get
1915 * a hangup. Always called in user context, may sleep.
1916 *
1917 * This code must be sure never to sleep through a hangup.
1918 */
4edf1827 1919
11a96d18 1920static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
1da177e4
LT
1921 unsigned char __user *buf, size_t nr)
1922{
53c5ee2c 1923 struct n_tty_data *ldata = tty->disc_data;
1da177e4
LT
1924 unsigned char __user *b = buf;
1925 DECLARE_WAITQUEUE(wait, current);
1926 int c;
1927 int minimum, time;
1928 ssize_t retval = 0;
1929 ssize_t size;
1930 long timeout;
1931 unsigned long flags;
04f378b1 1932 int packet;
1da177e4
LT
1933
1934do_it_again:
1da177e4 1935 c = job_control(tty, file);
4edf1827 1936 if (c < 0)
1da177e4 1937 return c;
4edf1827 1938
1da177e4
LT
1939 minimum = time = 0;
1940 timeout = MAX_SCHEDULE_TIMEOUT;
53c5ee2c 1941 if (!ldata->icanon) {
1da177e4
LT
1942 minimum = MIN_CHAR(tty);
1943 if (minimum) {
a6e54319 1944 time = (HZ / 10) * TIME_CHAR(tty);
1da177e4 1945 if (time)
f6c8dbe6 1946 ldata->minimum_to_wake = 1;
1da177e4 1947 else if (!waitqueue_active(&tty->read_wait) ||
f6c8dbe6
PH
1948 (ldata->minimum_to_wake > minimum))
1949 ldata->minimum_to_wake = minimum;
1da177e4 1950 } else {
a6e54319 1951 timeout = (HZ / 10) * TIME_CHAR(tty);
f6c8dbe6 1952 ldata->minimum_to_wake = minimum = 1;
1da177e4
LT
1953 }
1954 }
1955
1956 /*
1957 * Internal serialization of reads.
1958 */
1959 if (file->f_flags & O_NONBLOCK) {
bddc7152 1960 if (!mutex_trylock(&ldata->atomic_read_lock))
1da177e4 1961 return -EAGAIN;
4edf1827 1962 } else {
bddc7152 1963 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
1da177e4
LT
1964 return -ERESTARTSYS;
1965 }
04f378b1 1966 packet = tty->packet;
1da177e4
LT
1967
1968 add_wait_queue(&tty->read_wait, &wait);
1da177e4
LT
1969 while (nr) {
1970 /* First test for status change. */
04f378b1 1971 if (packet && tty->link->ctrl_status) {
1da177e4
LT
1972 unsigned char cs;
1973 if (b != buf)
1974 break;
04f378b1 1975 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
1da177e4
LT
1976 cs = tty->link->ctrl_status;
1977 tty->link->ctrl_status = 0;
04f378b1 1978 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
522ed776 1979 if (tty_put_user(tty, cs, b++)) {
1da177e4
LT
1980 retval = -EFAULT;
1981 b--;
1982 break;
1983 }
1984 nr--;
1985 break;
1986 }
1987 /* This statement must be first before checking for input
1988 so that any interrupt will set the state back to
1989 TASK_RUNNING. */
1990 set_current_state(TASK_INTERRUPTIBLE);
4edf1827 1991
f6c8dbe6 1992 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
1da177e4 1993 ((minimum - (b - buf)) >= 1))
f6c8dbe6 1994 ldata->minimum_to_wake = (minimum - (b - buf));
4edf1827 1995
1da177e4
LT
1996 if (!input_available_p(tty, 0)) {
1997 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
1998 retval = -EIO;
1999 break;
2000 }
2001 if (tty_hung_up_p(file))
2002 break;
2003 if (!timeout)
2004 break;
2005 if (file->f_flags & O_NONBLOCK) {
2006 retval = -EAGAIN;
2007 break;
2008 }
2009 if (signal_pending(current)) {
2010 retval = -ERESTARTSYS;
2011 break;
2012 }
55db4c64 2013 n_tty_set_room(tty);
1da177e4 2014 timeout = schedule_timeout(timeout);
1da177e4
LT
2015 continue;
2016 }
2017 __set_current_state(TASK_RUNNING);
2018
2019 /* Deal with packet mode. */
04f378b1 2020 if (packet && b == buf) {
522ed776 2021 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
1da177e4
LT
2022 retval = -EFAULT;
2023 b--;
2024 break;
2025 }
2026 nr--;
2027 }
2028
53c5ee2c 2029 if (ldata->icanon && !L_EXTPROC(tty)) {
32f13521 2030 retval = canon_copy_from_read_buf(tty, &b, &nr);
1da177e4
LT
2031 if (retval)
2032 break;
2033 } else {
2034 int uncopied;
04f378b1
AC
2035 /* The copy function takes the read lock and handles
2036 locking internally for this case */
1da177e4
LT
2037 uncopied = copy_from_read_buf(tty, &b, &nr);
2038 uncopied += copy_from_read_buf(tty, &b, &nr);
2039 if (uncopied) {
2040 retval = -EFAULT;
2041 break;
2042 }
2043 }
2044
2045 /* If there is enough space in the read buffer now, let the
a19d0c6a 2046 * low-level driver know. We use chars_in_buffer() to
1da177e4
LT
2047 * check the buffer, as it now knows about canonical mode.
2048 * Otherwise, if the driver is throttled and the line is
2049 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
2050 * we won't get any more characters.
2051 */
e91e52e4
PH
2052 while (1) {
2053 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
a19d0c6a 2054 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
e91e52e4
PH
2055 break;
2056 if (!tty->count)
2057 break;
55db4c64 2058 n_tty_set_room(tty);
e91e52e4
PH
2059 if (!tty_unthrottle_safe(tty))
2060 break;
55db4c64 2061 }
e91e52e4 2062 __tty_set_flow_change(tty, 0);
1da177e4
LT
2063
2064 if (b - buf >= minimum)
2065 break;
2066 if (time)
2067 timeout = time;
2068 }
bddc7152 2069 mutex_unlock(&ldata->atomic_read_lock);
1da177e4
LT
2070 remove_wait_queue(&tty->read_wait, &wait);
2071
2072 if (!waitqueue_active(&tty->read_wait))
f6c8dbe6 2073 ldata->minimum_to_wake = minimum;
1da177e4
LT
2074
2075 __set_current_state(TASK_RUNNING);
2076 size = b - buf;
2077 if (size) {
2078 retval = size;
2079 if (nr)
4edf1827 2080 clear_bit(TTY_PUSH, &tty->flags);
1da177e4 2081 } else if (test_and_clear_bit(TTY_PUSH, &tty->flags))
bbd20759 2082 goto do_it_again;
1da177e4 2083
55db4c64 2084 n_tty_set_room(tty);
1da177e4
LT
2085 return retval;
2086}
2087
2088/**
11a96d18 2089 * n_tty_write - write function for tty
1da177e4
LT
2090 * @tty: tty device
2091 * @file: file object
2092 * @buf: userspace buffer pointer
2093 * @nr: size of I/O
2094 *
a88a69c9 2095 * Write function of the terminal device. This is serialized with
1da177e4 2096 * respect to other write callers but not to termios changes, reads
a88a69c9
JP
2097 * and other such events. Since the receive code will echo characters,
2098 * thus calling driver write methods, the output_lock is used in
2099 * the output processing functions called here as well as in the
2100 * echo processing function to protect the column state and space
2101 * left in the buffer.
1da177e4
LT
2102 *
2103 * This code must be sure never to sleep through a hangup.
a88a69c9
JP
2104 *
2105 * Locking: output_lock to protect column state and space left
2106 * (note that the process_output*() functions take this
2107 * lock themselves)
1da177e4 2108 */
4edf1827 2109
11a96d18 2110static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
a88a69c9 2111 const unsigned char *buf, size_t nr)
1da177e4
LT
2112{
2113 const unsigned char *b = buf;
2114 DECLARE_WAITQUEUE(wait, current);
2115 int c;
2116 ssize_t retval = 0;
2117
2118 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2119 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2120 retval = tty_check_change(tty);
2121 if (retval)
2122 return retval;
2123 }
2124
a88a69c9
JP
2125 /* Write out any echoed characters that are still pending */
2126 process_echoes(tty);
300a6204 2127
1da177e4
LT
2128 add_wait_queue(&tty->write_wait, &wait);
2129 while (1) {
2130 set_current_state(TASK_INTERRUPTIBLE);
2131 if (signal_pending(current)) {
2132 retval = -ERESTARTSYS;
2133 break;
2134 }
2135 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2136 retval = -EIO;
2137 break;
2138 }
582f5590 2139 if (O_OPOST(tty)) {
1da177e4 2140 while (nr > 0) {
a88a69c9 2141 ssize_t num = process_output_block(tty, b, nr);
1da177e4
LT
2142 if (num < 0) {
2143 if (num == -EAGAIN)
2144 break;
2145 retval = num;
2146 goto break_out;
2147 }
2148 b += num;
2149 nr -= num;
2150 if (nr == 0)
2151 break;
2152 c = *b;
a88a69c9 2153 if (process_output(c, tty) < 0)
1da177e4
LT
2154 break;
2155 b++; nr--;
2156 }
f34d7a5b
AC
2157 if (tty->ops->flush_chars)
2158 tty->ops->flush_chars(tty);
1da177e4 2159 } else {
d6afe27b 2160 while (nr > 0) {
f34d7a5b 2161 c = tty->ops->write(tty, b, nr);
d6afe27b
RZ
2162 if (c < 0) {
2163 retval = c;
2164 goto break_out;
2165 }
2166 if (!c)
2167 break;
2168 b += c;
2169 nr -= c;
1da177e4 2170 }
1da177e4
LT
2171 }
2172 if (!nr)
2173 break;
2174 if (file->f_flags & O_NONBLOCK) {
2175 retval = -EAGAIN;
2176 break;
2177 }
2178 schedule();
2179 }
2180break_out:
2181 __set_current_state(TASK_RUNNING);
2182 remove_wait_queue(&tty->write_wait, &wait);
ff8cb0fd
TP
2183 if (b - buf != nr && tty->fasync)
2184 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
1da177e4
LT
2185 return (b - buf) ? b - buf : retval;
2186}
2187
2188/**
11a96d18 2189 * n_tty_poll - poll method for N_TTY
1da177e4
LT
2190 * @tty: terminal device
2191 * @file: file accessing it
2192 * @wait: poll table
2193 *
2194 * Called when the line discipline is asked to poll() for data or
2195 * for special events. This code is not serialized with respect to
2196 * other events save open/close.
2197 *
2198 * This code must be sure never to sleep through a hangup.
2199 * Called without the kernel lock held - fine
1da177e4 2200 */
4edf1827 2201
11a96d18 2202static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
4edf1827 2203 poll_table *wait)
1da177e4 2204{
f6c8dbe6 2205 struct n_tty_data *ldata = tty->disc_data;
1da177e4
LT
2206 unsigned int mask = 0;
2207
2208 poll_wait(file, &tty->read_wait, wait);
2209 poll_wait(file, &tty->write_wait, wait);
2210 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
2211 mask |= POLLIN | POLLRDNORM;
2212 if (tty->packet && tty->link->ctrl_status)
2213 mask |= POLLPRI | POLLIN | POLLRDNORM;
2214 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2215 mask |= POLLHUP;
2216 if (tty_hung_up_p(file))
2217 mask |= POLLHUP;
2218 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2219 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
f6c8dbe6 2220 ldata->minimum_to_wake = MIN_CHAR(tty);
1da177e4 2221 else
f6c8dbe6 2222 ldata->minimum_to_wake = 1;
1da177e4 2223 }
f34d7a5b
AC
2224 if (tty->ops->write && !tty_is_writelocked(tty) &&
2225 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2226 tty_write_room(tty) > 0)
1da177e4
LT
2227 mask |= POLLOUT | POLLWRNORM;
2228 return mask;
2229}
2230
57c94121 2231static unsigned long inq_canon(struct n_tty_data *ldata)
47afa7a5
AC
2232{
2233 int nr, head, tail;
2234
ba2e68ac 2235 if (!ldata->canon_data)
47afa7a5 2236 return 0;
ba2e68ac
JS
2237 head = ldata->canon_head;
2238 tail = ldata->read_tail;
47afa7a5
AC
2239 nr = (head - tail) & (N_TTY_BUF_SIZE-1);
2240 /* Skip EOF-chars.. */
2241 while (head != tail) {
3fe780b3 2242 if (test_bit(tail, ldata->read_flags) &&
ba2e68ac 2243 ldata->read_buf[tail] == __DISABLED_CHAR)
47afa7a5
AC
2244 nr--;
2245 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
2246 }
2247 return nr;
2248}
2249
2250static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2251 unsigned int cmd, unsigned long arg)
2252{
ba2e68ac 2253 struct n_tty_data *ldata = tty->disc_data;
47afa7a5
AC
2254 int retval;
2255
2256 switch (cmd) {
2257 case TIOCOUTQ:
2258 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2259 case TIOCINQ:
17b82060 2260 /* FIXME: Locking */
ce74117a 2261 retval = read_cnt(ldata);
47afa7a5 2262 if (L_ICANON(tty))
57c94121 2263 retval = inq_canon(ldata);
47afa7a5
AC
2264 return put_user(retval, (unsigned int __user *) arg);
2265 default:
2266 return n_tty_ioctl_helper(tty, file, cmd, arg);
2267 }
2268}
2269
f6c8dbe6
PH
2270static void n_tty_fasync(struct tty_struct *tty, int on)
2271{
2272 struct n_tty_data *ldata = tty->disc_data;
2273
2274 if (!waitqueue_active(&tty->read_wait)) {
2275 if (on)
2276 ldata->minimum_to_wake = 1;
2277 else if (!tty->fasync)
2278 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2279 }
2280}
2281
a352def2 2282struct tty_ldisc_ops tty_ldisc_N_TTY = {
e10cc1df
PF
2283 .magic = TTY_LDISC_MAGIC,
2284 .name = "n_tty",
2285 .open = n_tty_open,
2286 .close = n_tty_close,
2287 .flush_buffer = n_tty_flush_buffer,
2288 .chars_in_buffer = n_tty_chars_in_buffer,
11a96d18
AC
2289 .read = n_tty_read,
2290 .write = n_tty_write,
e10cc1df
PF
2291 .ioctl = n_tty_ioctl,
2292 .set_termios = n_tty_set_termios,
11a96d18 2293 .poll = n_tty_poll,
e10cc1df 2294 .receive_buf = n_tty_receive_buf,
f6c8dbe6
PH
2295 .write_wakeup = n_tty_write_wakeup,
2296 .fasync = n_tty_fasync,
24a89d1c 2297 .receive_buf2 = n_tty_receive_buf2,
1da177e4 2298};
572b9adb
RG
2299
2300/**
2301 * n_tty_inherit_ops - inherit N_TTY methods
2302 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2303 *
593fb1ae 2304 * Enables a 'subclass' line discipline to 'inherit' N_TTY
572b9adb
RG
2305 * methods.
2306 */
2307
2308void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2309{
2310 *ops = tty_ldisc_N_TTY;
2311 ops->owner = NULL;
2312 ops->refcount = ops->flags = 0;
2313}
2314EXPORT_SYMBOL_GPL(n_tty_inherit_ops);
This page took 0.883987 seconds and 5 git commands to generate.