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