1 // SPDX-License-Identifier: GPL-1.0+
3 * n_tty.c --- implements the N_TTY line discipline.
5 * This code used to be in tty_io.c, but things are getting hairy
6 * enough that it made sense to split things off. (The N_TTY
7 * processing has changed so much that it's hardly recognizable,
10 * Note that the open routine for N_TTY is guaranteed never to return
11 * an error. This is because Linux will fall back to setting a line
12 * to N_TTY if it can not switch to any other line discipline.
14 * Written by Theodore Ts'o, Copyright 1994.
16 * This file also contains code originally written by Linus Torvalds,
17 * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
19 * Reduced memory usage for older ARM systems - Russell King.
21 * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of
22 * the patch by Andrew J. Kroll <ag784@freenet.buffalo.edu>
23 * who actually finally proved there really was a race.
25 * 2002/03/18 Implemented n_tty_wakeup to send SIGIO POLL_OUTs to
26 * waiting writing processes-Sapan Bhatia <sapan@corewars.org>.
27 * Also fixed a bug in BLOCKING mode where n_tty_write returns
31 #include <linux/types.h>
32 #include <linux/major.h>
33 #include <linux/errno.h>
34 #include <linux/signal.h>
35 #include <linux/fcntl.h>
36 #include <linux/sched.h>
37 #include <linux/interrupt.h>
38 #include <linux/tty.h>
39 #include <linux/timer.h>
40 #include <linux/ctype.h>
42 #include <linux/string.h>
43 #include <linux/slab.h>
44 #include <linux/poll.h>
45 #include <linux/bitops.h>
46 #include <linux/audit.h>
47 #include <linux/file.h>
48 #include <linux/uaccess.h>
49 #include <linux/module.h>
50 #include <linux/ratelimit.h>
51 #include <linux/vmalloc.h>
54 * Until this number of characters is queued in the xmit buffer, select will
55 * return "we have room for writes".
57 #define WAKEUP_CHARS 256
60 * This defines the low- and high-watermarks for throttling and
61 * unthrottling the TTY driver. These watermarks are used for
62 * controlling the space in the read buffer.
64 #define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
65 #define TTY_THRESHOLD_UNTHROTTLE 128
68 * Special byte codes used in the echo buffer to represent operations
69 * or special handling of characters. Bytes in the echo buffer that
70 * are not part of such special blocks are treated as normal character
73 #define ECHO_OP_START 0xff
74 #define ECHO_OP_MOVE_BACK_COL 0x80
75 #define ECHO_OP_SET_CANON_COL 0x81
76 #define ECHO_OP_ERASE_TAB 0x82
78 #define ECHO_COMMIT_WATERMARK 256
79 #define ECHO_BLOCK 256
80 #define ECHO_DISCARD_WATERMARK N_TTY_BUF_SIZE - (ECHO_BLOCK + 32)
85 # define n_tty_trace(f, args...) trace_printk(f, ##args)
87 # define n_tty_trace(f, args...) no_printk(f, ##args)
91 /* producer-published */
98 DECLARE_BITMAP(char_map
, 256);
100 /* private to n_tty_receive_overrun (single-threaded) */
101 unsigned long overrun_time
;
107 /* must hold exclusive termios_rwsem to reset these */
108 unsigned char lnext
:1, erasing
:1, raw
:1, real_raw
:1, icanon
:1;
109 unsigned char push
:1;
111 /* shared by producer and consumer */
112 char read_buf
[N_TTY_BUF_SIZE
];
113 DECLARE_BITMAP(read_flags
, N_TTY_BUF_SIZE
);
114 unsigned char echo_buf
[N_TTY_BUF_SIZE
];
116 /* consumer-published */
120 /* protected by output lock */
122 unsigned int canon_column
;
125 struct mutex atomic_read_lock
;
126 struct mutex output_lock
;
129 #define MASK(x) ((x) & (N_TTY_BUF_SIZE - 1))
131 static inline size_t read_cnt(struct n_tty_data
*ldata
)
133 return ldata
->read_head
- ldata
->read_tail
;
136 static inline unsigned char read_buf(struct n_tty_data
*ldata
, size_t i
)
138 return ldata
->read_buf
[i
& (N_TTY_BUF_SIZE
- 1)];
141 static inline unsigned char *read_buf_addr(struct n_tty_data
*ldata
, size_t i
)
143 return &ldata
->read_buf
[i
& (N_TTY_BUF_SIZE
- 1)];
146 static inline unsigned char echo_buf(struct n_tty_data
*ldata
, size_t i
)
148 smp_rmb(); /* Matches smp_wmb() in add_echo_byte(). */
149 return ldata
->echo_buf
[i
& (N_TTY_BUF_SIZE
- 1)];
152 static inline unsigned char *echo_buf_addr(struct n_tty_data
*ldata
, size_t i
)
154 return &ldata
->echo_buf
[i
& (N_TTY_BUF_SIZE
- 1)];
157 /* If we are not echoing the data, perhaps this is a secret so erase it */
158 static void zero_buffer(struct tty_struct
*tty
, u8
*buffer
, int size
)
160 bool icanon
= !!L_ICANON(tty
);
161 bool no_echo
= !L_ECHO(tty
);
163 if (icanon
&& no_echo
)
164 memset(buffer
, 0x00, size
);
167 static int tty_copy_to_user(struct tty_struct
*tty
, void __user
*to
,
168 size_t tail
, size_t n
)
170 struct n_tty_data
*ldata
= tty
->disc_data
;
171 size_t size
= N_TTY_BUF_SIZE
- tail
;
172 void *from
= read_buf_addr(ldata
, tail
);
176 tty_audit_add_data(tty
, from
, size
);
177 uncopied
= copy_to_user(to
, from
, size
);
178 zero_buffer(tty
, from
, size
- uncopied
);
183 from
= ldata
->read_buf
;
186 tty_audit_add_data(tty
, from
, n
);
187 uncopied
= copy_to_user(to
, from
, n
);
188 zero_buffer(tty
, from
, n
- uncopied
);
193 * n_tty_kick_worker - start input worker (if required)
196 * Re-schedules the flip buffer work if it may have stopped
198 * Caller holds exclusive termios_rwsem
200 * n_tty_read()/consumer path:
201 * holds non-exclusive termios_rwsem
204 static void n_tty_kick_worker(struct tty_struct
*tty
)
206 struct n_tty_data
*ldata
= tty
->disc_data
;
208 /* Did the input worker stop? Restart it */
209 if (unlikely(ldata
->no_room
)) {
212 WARN_RATELIMIT(tty
->port
->itty
== NULL
,
213 "scheduling with invalid itty\n");
214 /* see if ldisc has been killed - if so, this means that
215 * even though the ldisc has been halted and ->buf.work
216 * cancelled, ->buf.work is about to be rescheduled
218 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED
, &tty
->flags
),
219 "scheduling buffer work for halted ldisc\n");
220 tty_buffer_restart_work(tty
->port
);
224 static ssize_t
chars_in_buffer(struct tty_struct
*tty
)
226 struct n_tty_data
*ldata
= tty
->disc_data
;
230 n
= ldata
->commit_head
- ldata
->read_tail
;
232 n
= ldata
->canon_head
- ldata
->read_tail
;
237 * n_tty_write_wakeup - asynchronous I/O notifier
240 * Required for the ptys, serial driver etc. since processes
241 * that attach themselves to the master and rely on ASYNC
242 * IO must be woken up
245 static void n_tty_write_wakeup(struct tty_struct
*tty
)
247 clear_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
);
248 kill_fasync(&tty
->fasync
, SIGIO
, POLL_OUT
);
251 static void n_tty_check_throttle(struct tty_struct
*tty
)
253 struct n_tty_data
*ldata
= tty
->disc_data
;
256 * Check the remaining room for the input canonicalization
257 * mode. We don't want to throttle the driver if we're in
258 * canonical mode and don't have a newline yet!
260 if (ldata
->icanon
&& ldata
->canon_head
== ldata
->read_tail
)
265 tty_set_flow_change(tty
, TTY_THROTTLE_SAFE
);
266 if (N_TTY_BUF_SIZE
- read_cnt(ldata
) >= TTY_THRESHOLD_THROTTLE
)
268 throttled
= tty_throttle_safe(tty
);
272 __tty_set_flow_change(tty
, 0);
275 static void n_tty_check_unthrottle(struct tty_struct
*tty
)
277 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
) {
278 if (chars_in_buffer(tty
) > TTY_THRESHOLD_UNTHROTTLE
)
280 n_tty_kick_worker(tty
);
281 tty_wakeup(tty
->link
);
285 /* If there is enough space in the read buffer now, let the
286 * low-level driver know. We use chars_in_buffer() to
287 * check the buffer, as it now knows about canonical mode.
288 * Otherwise, if the driver is throttled and the line is
289 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
290 * we won't get any more characters.
295 tty_set_flow_change(tty
, TTY_UNTHROTTLE_SAFE
);
296 if (chars_in_buffer(tty
) > TTY_THRESHOLD_UNTHROTTLE
)
298 n_tty_kick_worker(tty
);
299 unthrottled
= tty_unthrottle_safe(tty
);
303 __tty_set_flow_change(tty
, 0);
307 * put_tty_queue - add character to tty
311 * Add a character to the tty read_buf queue.
313 * n_tty_receive_buf()/producer path:
314 * caller holds non-exclusive termios_rwsem
317 static inline void put_tty_queue(unsigned char c
, struct n_tty_data
*ldata
)
319 *read_buf_addr(ldata
, ldata
->read_head
) = c
;
324 * reset_buffer_flags - reset buffer state
325 * @ldata: line disc data to reset
327 * Reset the read buffer counters and clear the flags.
328 * Called from n_tty_open() and n_tty_flush_buffer().
330 * Locking: caller holds exclusive termios_rwsem
331 * (or locking is not required)
334 static void reset_buffer_flags(struct n_tty_data
*ldata
)
336 ldata
->read_head
= ldata
->canon_head
= ldata
->read_tail
= 0;
337 ldata
->commit_head
= 0;
338 ldata
->line_start
= 0;
341 bitmap_zero(ldata
->read_flags
, N_TTY_BUF_SIZE
);
345 static void n_tty_packet_mode_flush(struct tty_struct
*tty
)
349 if (tty
->link
->packet
) {
350 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
351 tty
->ctrl_status
|= TIOCPKT_FLUSHREAD
;
352 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
353 wake_up_interruptible(&tty
->link
->read_wait
);
358 * n_tty_flush_buffer - clean input queue
359 * @tty: terminal device
361 * Flush the input buffer. Called when the tty layer wants the
362 * buffer flushed (eg at hangup) or when the N_TTY line discipline
363 * internally has to clean the pending queue (for example some signals).
365 * Holds termios_rwsem to exclude producer/consumer while
366 * buffer indices are reset.
368 * Locking: ctrl_lock, exclusive termios_rwsem
371 static void n_tty_flush_buffer(struct tty_struct
*tty
)
373 down_write(&tty
->termios_rwsem
);
374 reset_buffer_flags(tty
->disc_data
);
375 n_tty_kick_worker(tty
);
378 n_tty_packet_mode_flush(tty
);
379 up_write(&tty
->termios_rwsem
);
383 * is_utf8_continuation - utf8 multibyte check
386 * Returns true if the utf8 character 'c' is a multibyte continuation
387 * character. We use this to correctly compute the on screen size
388 * of the character when printing
391 static inline int is_utf8_continuation(unsigned char c
)
393 return (c
& 0xc0) == 0x80;
397 * is_continuation - multibyte check
399 * @tty: terminal device
401 * Returns true if the utf8 character 'c' is a multibyte continuation
402 * character and the terminal is in unicode mode.
405 static inline int is_continuation(unsigned char c
, struct tty_struct
*tty
)
407 return I_IUTF8(tty
) && is_utf8_continuation(c
);
411 * do_output_char - output one character
412 * @c: character (or partial unicode symbol)
413 * @tty: terminal device
414 * @space: space available in tty driver write buffer
416 * This is a helper function that handles one output character
417 * (including special characters like TAB, CR, LF, etc.),
418 * doing OPOST processing and putting the results in the
419 * tty driver's write buffer.
421 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
422 * and NLDLY. They simply aren't relevant in the world today.
423 * If you ever need them, add them here.
425 * Returns the number of bytes of buffer space used or -1 if
428 * Locking: should be called under the output_lock to protect
429 * the column state and space left in the buffer
432 static int do_output_char(unsigned char c
, struct tty_struct
*tty
, int space
)
434 struct n_tty_data
*ldata
= tty
->disc_data
;
447 ldata
->canon_column
= ldata
->column
= 0;
448 tty
->ops
->write(tty
, "\r\n", 2);
451 ldata
->canon_column
= ldata
->column
;
454 if (O_ONOCR(tty
) && ldata
->column
== 0)
459 ldata
->canon_column
= ldata
->column
= 0;
462 ldata
->canon_column
= ldata
->column
= 0;
465 spaces
= 8 - (ldata
->column
& 7);
466 if (O_TABDLY(tty
) == XTABS
) {
469 ldata
->column
+= spaces
;
470 tty
->ops
->write(tty
, " ", spaces
);
473 ldata
->column
+= spaces
;
476 if (ldata
->column
> 0)
483 if (!is_continuation(c
, tty
))
489 tty_put_char(tty
, c
);
494 * process_output - output post processor
495 * @c: character (or partial unicode symbol)
496 * @tty: terminal device
498 * Output one character with OPOST processing.
499 * Returns -1 when the output device is full and the character
502 * Locking: output_lock to protect column state and space left
503 * (also, this is called from n_tty_write under the
504 * tty layer write lock)
507 static int process_output(unsigned char c
, struct tty_struct
*tty
)
509 struct n_tty_data
*ldata
= tty
->disc_data
;
512 mutex_lock(&ldata
->output_lock
);
514 space
= tty_write_room(tty
);
515 retval
= do_output_char(c
, tty
, space
);
517 mutex_unlock(&ldata
->output_lock
);
525 * process_output_block - block post processor
526 * @tty: terminal device
527 * @buf: character buffer
528 * @nr: number of bytes to output
530 * Output a block of characters with OPOST processing.
531 * Returns the number of characters output.
533 * This path is used to speed up block console writes, among other
534 * things when processing blocks of output data. It handles only
535 * the simple cases normally found and helps to generate blocks of
536 * symbols for the console driver and thus improve performance.
538 * Locking: output_lock to protect column state and space left
539 * (also, this is called from n_tty_write under the
540 * tty layer write lock)
543 static ssize_t
process_output_block(struct tty_struct
*tty
,
544 const unsigned char *buf
, unsigned int nr
)
546 struct n_tty_data
*ldata
= tty
->disc_data
;
549 const unsigned char *cp
;
551 mutex_lock(&ldata
->output_lock
);
553 space
= tty_write_room(tty
);
555 mutex_unlock(&ldata
->output_lock
);
561 for (i
= 0, cp
= buf
; i
< nr
; i
++, cp
++) {
562 unsigned char c
= *cp
;
570 ldata
->canon_column
= ldata
->column
;
573 if (O_ONOCR(tty
) && ldata
->column
== 0)
577 ldata
->canon_column
= ldata
->column
= 0;
582 if (ldata
->column
> 0)
589 if (!is_continuation(c
, tty
))
596 i
= tty
->ops
->write(tty
, buf
, i
);
598 mutex_unlock(&ldata
->output_lock
);
603 * process_echoes - write pending echo characters
604 * @tty: terminal device
606 * Write previously buffered echo (and other ldisc-generated)
607 * characters to the tty.
609 * Characters generated by the ldisc (including echoes) need to
610 * be buffered because the driver's write buffer can fill during
611 * heavy program output. Echoing straight to the driver will
612 * often fail under these conditions, causing lost characters and
613 * resulting mismatches of ldisc state information.
615 * Since the ldisc state must represent the characters actually sent
616 * to the driver at the time of the write, operations like certain
617 * changes in column state are also saved in the buffer and executed
620 * A circular fifo buffer is used so that the most recent characters
621 * are prioritized. Also, when control characters are echoed with a
622 * prefixed "^", the pair is treated atomically and thus not separated.
624 * Locking: callers must hold output_lock
627 static size_t __process_echoes(struct tty_struct
*tty
)
629 struct n_tty_data
*ldata
= tty
->disc_data
;
630 int space
, old_space
;
634 old_space
= space
= tty_write_room(tty
);
636 tail
= ldata
->echo_tail
;
637 while (MASK(ldata
->echo_commit
) != MASK(tail
)) {
638 c
= echo_buf(ldata
, tail
);
639 if (c
== ECHO_OP_START
) {
641 int no_space_left
= 0;
644 * Since add_echo_byte() is called without holding
645 * output_lock, we might see only portion of multi-byte
648 if (MASK(ldata
->echo_commit
) == MASK(tail
+ 1))
651 * If the buffer byte is the start of a multi-byte
652 * operation, get the next byte, which is either the
653 * op code or a control character value.
655 op
= echo_buf(ldata
, tail
+ 1);
658 case ECHO_OP_ERASE_TAB
: {
659 unsigned int num_chars
, num_bs
;
661 if (MASK(ldata
->echo_commit
) == MASK(tail
+ 2))
663 num_chars
= echo_buf(ldata
, tail
+ 2);
666 * Determine how many columns to go back
667 * in order to erase the tab.
668 * This depends on the number of columns
669 * used by other characters within the tab
670 * area. If this (modulo 8) count is from
671 * the start of input rather than from a
672 * previous tab, we offset by canon column.
673 * Otherwise, tab spacing is normal.
675 if (!(num_chars
& 0x80))
676 num_chars
+= ldata
->canon_column
;
677 num_bs
= 8 - (num_chars
& 7);
679 if (num_bs
> space
) {
685 tty_put_char(tty
, '\b');
686 if (ldata
->column
> 0)
692 case ECHO_OP_SET_CANON_COL
:
693 ldata
->canon_column
= ldata
->column
;
697 case ECHO_OP_MOVE_BACK_COL
:
698 if (ldata
->column
> 0)
704 /* This is an escaped echo op start code */
709 tty_put_char(tty
, ECHO_OP_START
);
717 * If the op is not a special byte code,
718 * it is a ctrl char tagged to be echoed
719 * as "^X" (where X is the letter
720 * representing the control char).
721 * Note that we must ensure there is
722 * enough space for the whole ctrl pair.
729 tty_put_char(tty
, '^');
730 tty_put_char(tty
, op
^ 0100);
740 int retval
= do_output_char(c
, tty
, space
);
747 tty_put_char(tty
, c
);
754 /* If the echo buffer is nearly full (so that the possibility exists
755 * of echo overrun before the next commit), then discard enough
756 * data at the tail to prevent a subsequent overrun */
757 while (ldata
->echo_commit
> tail
&&
758 ldata
->echo_commit
- tail
>= ECHO_DISCARD_WATERMARK
) {
759 if (echo_buf(ldata
, tail
) == ECHO_OP_START
) {
760 if (echo_buf(ldata
, tail
+ 1) == ECHO_OP_ERASE_TAB
)
769 ldata
->echo_tail
= tail
;
770 return old_space
- space
;
773 static void commit_echoes(struct tty_struct
*tty
)
775 struct n_tty_data
*ldata
= tty
->disc_data
;
776 size_t nr
, old
, echoed
;
779 mutex_lock(&ldata
->output_lock
);
780 head
= ldata
->echo_head
;
781 ldata
->echo_mark
= head
;
782 old
= ldata
->echo_commit
- ldata
->echo_tail
;
784 /* Process committed echoes if the accumulated # of bytes
785 * is over the threshold (and try again each time another
786 * block is accumulated) */
787 nr
= head
- ldata
->echo_tail
;
788 if (nr
< ECHO_COMMIT_WATERMARK
||
789 (nr
% ECHO_BLOCK
> old
% ECHO_BLOCK
)) {
790 mutex_unlock(&ldata
->output_lock
);
794 ldata
->echo_commit
= head
;
795 echoed
= __process_echoes(tty
);
796 mutex_unlock(&ldata
->output_lock
);
798 if (echoed
&& tty
->ops
->flush_chars
)
799 tty
->ops
->flush_chars(tty
);
802 static void process_echoes(struct tty_struct
*tty
)
804 struct n_tty_data
*ldata
= tty
->disc_data
;
807 if (ldata
->echo_mark
== ldata
->echo_tail
)
810 mutex_lock(&ldata
->output_lock
);
811 ldata
->echo_commit
= ldata
->echo_mark
;
812 echoed
= __process_echoes(tty
);
813 mutex_unlock(&ldata
->output_lock
);
815 if (echoed
&& tty
->ops
->flush_chars
)
816 tty
->ops
->flush_chars(tty
);
819 /* NB: echo_mark and echo_head should be equivalent here */
820 static void flush_echoes(struct tty_struct
*tty
)
822 struct n_tty_data
*ldata
= tty
->disc_data
;
824 if ((!L_ECHO(tty
) && !L_ECHONL(tty
)) ||
825 ldata
->echo_commit
== ldata
->echo_head
)
828 mutex_lock(&ldata
->output_lock
);
829 ldata
->echo_commit
= ldata
->echo_head
;
830 __process_echoes(tty
);
831 mutex_unlock(&ldata
->output_lock
);
835 * add_echo_byte - add a byte to the echo buffer
836 * @c: unicode byte to echo
839 * Add a character or operation byte to the echo buffer.
842 static inline void add_echo_byte(unsigned char c
, struct n_tty_data
*ldata
)
844 *echo_buf_addr(ldata
, ldata
->echo_head
) = c
;
845 smp_wmb(); /* Matches smp_rmb() in echo_buf(). */
850 * echo_move_back_col - add operation to move back a column
853 * Add an operation to the echo buffer to move back one column.
856 static void echo_move_back_col(struct n_tty_data
*ldata
)
858 add_echo_byte(ECHO_OP_START
, ldata
);
859 add_echo_byte(ECHO_OP_MOVE_BACK_COL
, ldata
);
863 * echo_set_canon_col - add operation to set the canon column
866 * Add an operation to the echo buffer to set the canon column
867 * to the current column.
870 static void echo_set_canon_col(struct n_tty_data
*ldata
)
872 add_echo_byte(ECHO_OP_START
, ldata
);
873 add_echo_byte(ECHO_OP_SET_CANON_COL
, ldata
);
877 * echo_erase_tab - add operation to erase a tab
878 * @num_chars: number of character columns already used
879 * @after_tab: true if num_chars starts after a previous tab
882 * Add an operation to the echo buffer to erase a tab.
884 * Called by the eraser function, which knows how many character
885 * columns have been used since either a previous tab or the start
886 * of input. This information will be used later, along with
887 * canon column (if applicable), to go back the correct number
891 static void echo_erase_tab(unsigned int num_chars
, int after_tab
,
892 struct n_tty_data
*ldata
)
894 add_echo_byte(ECHO_OP_START
, ldata
);
895 add_echo_byte(ECHO_OP_ERASE_TAB
, ldata
);
897 /* We only need to know this modulo 8 (tab spacing) */
900 /* Set the high bit as a flag if num_chars is after a previous tab */
904 add_echo_byte(num_chars
, ldata
);
908 * echo_char_raw - echo a character raw
909 * @c: unicode byte to echo
910 * @ldata: line disc data
912 * Echo user input back onto the screen. This must be called only when
913 * L_ECHO(tty) is true. Called from the driver receive_buf path.
915 * This variant does not treat control characters specially.
918 static void echo_char_raw(unsigned char c
, struct n_tty_data
*ldata
)
920 if (c
== ECHO_OP_START
) {
921 add_echo_byte(ECHO_OP_START
, ldata
);
922 add_echo_byte(ECHO_OP_START
, ldata
);
924 add_echo_byte(c
, ldata
);
929 * echo_char - echo a character
930 * @c: unicode byte to echo
931 * @tty: terminal device
933 * Echo user input back onto the screen. This must be called only when
934 * L_ECHO(tty) is true. Called from the driver receive_buf path.
936 * This variant tags control characters to be echoed as "^X"
937 * (where X is the letter representing the control char).
940 static void echo_char(unsigned char c
, struct tty_struct
*tty
)
942 struct n_tty_data
*ldata
= tty
->disc_data
;
944 if (c
== ECHO_OP_START
) {
945 add_echo_byte(ECHO_OP_START
, ldata
);
946 add_echo_byte(ECHO_OP_START
, ldata
);
948 if (L_ECHOCTL(tty
) && iscntrl(c
) && c
!= '\t')
949 add_echo_byte(ECHO_OP_START
, ldata
);
950 add_echo_byte(c
, ldata
);
955 * finish_erasing - complete erase
959 static inline void finish_erasing(struct n_tty_data
*ldata
)
961 if (ldata
->erasing
) {
962 echo_char_raw('/', ldata
);
968 * eraser - handle erase function
969 * @c: character input
970 * @tty: terminal device
972 * Perform erase and necessary output when an erase character is
973 * present in the stream from the driver layer. Handles the complexities
974 * of UTF-8 multibyte symbols.
976 * n_tty_receive_buf()/producer path:
977 * caller holds non-exclusive termios_rwsem
980 static void eraser(unsigned char c
, struct tty_struct
*tty
)
982 struct n_tty_data
*ldata
= tty
->disc_data
;
983 enum { ERASE
, WERASE
, KILL
} kill_type
;
988 if (ldata
->read_head
== ldata
->canon_head
) {
989 /* process_output('\a', tty); */ /* what do you think? */
992 if (c
== ERASE_CHAR(tty
))
994 else if (c
== WERASE_CHAR(tty
))
998 ldata
->read_head
= ldata
->canon_head
;
1001 if (!L_ECHOK(tty
) || !L_ECHOKE(tty
) || !L_ECHOE(tty
)) {
1002 ldata
->read_head
= ldata
->canon_head
;
1003 finish_erasing(ldata
);
1004 echo_char(KILL_CHAR(tty
), tty
);
1005 /* Add a newline if ECHOK is on and ECHOKE is off. */
1007 echo_char_raw('\n', ldata
);
1014 while (MASK(ldata
->read_head
) != MASK(ldata
->canon_head
)) {
1015 head
= ldata
->read_head
;
1017 /* erase a single possibly multibyte character */
1020 c
= read_buf(ldata
, head
);
1021 } while (is_continuation(c
, tty
) &&
1022 MASK(head
) != MASK(ldata
->canon_head
));
1024 /* do not partially erase */
1025 if (is_continuation(c
, tty
))
1028 if (kill_type
== WERASE
) {
1029 /* Equivalent to BSD's ALTWERASE. */
1030 if (isalnum(c
) || c
== '_')
1032 else if (seen_alnums
)
1035 cnt
= ldata
->read_head
- head
;
1036 ldata
->read_head
= head
;
1038 if (L_ECHOPRT(tty
)) {
1039 if (!ldata
->erasing
) {
1040 echo_char_raw('\\', ldata
);
1043 /* if cnt > 1, output a multi-byte character */
1047 echo_char_raw(read_buf(ldata
, head
), ldata
);
1048 echo_move_back_col(ldata
);
1050 } else if (kill_type
== ERASE
&& !L_ECHOE(tty
)) {
1051 echo_char(ERASE_CHAR(tty
), tty
);
1052 } else if (c
== '\t') {
1053 unsigned int num_chars
= 0;
1055 size_t tail
= ldata
->read_head
;
1058 * Count the columns used for characters
1059 * since the start of input or after a
1061 * This info is used to go back the correct
1062 * number of columns.
1064 while (MASK(tail
) != MASK(ldata
->canon_head
)) {
1066 c
= read_buf(ldata
, tail
);
1070 } else if (iscntrl(c
)) {
1073 } else if (!is_continuation(c
, tty
)) {
1077 echo_erase_tab(num_chars
, after_tab
, ldata
);
1079 if (iscntrl(c
) && L_ECHOCTL(tty
)) {
1080 echo_char_raw('\b', ldata
);
1081 echo_char_raw(' ', ldata
);
1082 echo_char_raw('\b', ldata
);
1084 if (!iscntrl(c
) || L_ECHOCTL(tty
)) {
1085 echo_char_raw('\b', ldata
);
1086 echo_char_raw(' ', ldata
);
1087 echo_char_raw('\b', ldata
);
1091 if (kill_type
== ERASE
)
1094 if (ldata
->read_head
== ldata
->canon_head
&& L_ECHO(tty
))
1095 finish_erasing(ldata
);
1099 * isig - handle the ISIG optio
1103 * Called when a signal is being sent due to terminal input.
1104 * Called from the driver receive_buf path so serialized.
1106 * Performs input and output flush if !NOFLSH. In this context, the echo
1107 * buffer is 'output'. The signal is processed first to alert any current
1108 * readers or writers to discontinue and exit their i/o loops.
1110 * Locking: ctrl_lock
1113 static void __isig(int sig
, struct tty_struct
*tty
)
1115 struct pid
*tty_pgrp
= tty_get_pgrp(tty
);
1117 kill_pgrp(tty_pgrp
, sig
, 1);
1122 static void isig(int sig
, struct tty_struct
*tty
)
1124 struct n_tty_data
*ldata
= tty
->disc_data
;
1126 if (L_NOFLSH(tty
)) {
1130 } else { /* signal and flush */
1131 up_read(&tty
->termios_rwsem
);
1132 down_write(&tty
->termios_rwsem
);
1136 /* clear echo buffer */
1137 mutex_lock(&ldata
->output_lock
);
1138 ldata
->echo_head
= ldata
->echo_tail
= 0;
1139 ldata
->echo_mark
= ldata
->echo_commit
= 0;
1140 mutex_unlock(&ldata
->output_lock
);
1142 /* clear output buffer */
1143 tty_driver_flush_buffer(tty
);
1145 /* clear input buffer */
1146 reset_buffer_flags(tty
->disc_data
);
1148 /* notify pty master of flush */
1150 n_tty_packet_mode_flush(tty
);
1152 up_write(&tty
->termios_rwsem
);
1153 down_read(&tty
->termios_rwsem
);
1158 * n_tty_receive_break - handle break
1161 * An RS232 break event has been hit in the incoming bitstream. This
1162 * can cause a variety of events depending upon the termios settings.
1164 * n_tty_receive_buf()/producer path:
1165 * caller holds non-exclusive termios_rwsem
1167 * Note: may get exclusive termios_rwsem if flushing input buffer
1170 static void n_tty_receive_break(struct tty_struct
*tty
)
1172 struct n_tty_data
*ldata
= tty
->disc_data
;
1176 if (I_BRKINT(tty
)) {
1180 if (I_PARMRK(tty
)) {
1181 put_tty_queue('\377', ldata
);
1182 put_tty_queue('\0', ldata
);
1184 put_tty_queue('\0', ldata
);
1188 * n_tty_receive_overrun - handle overrun reporting
1191 * Data arrived faster than we could process it. While the tty
1192 * driver has flagged this the bits that were missed are gone
1195 * Called from the receive_buf path so single threaded. Does not
1196 * need locking as num_overrun and overrun_time are function
1200 static void n_tty_receive_overrun(struct tty_struct
*tty
)
1202 struct n_tty_data
*ldata
= tty
->disc_data
;
1204 ldata
->num_overrun
++;
1205 if (time_after(jiffies
, ldata
->overrun_time
+ HZ
) ||
1206 time_after(ldata
->overrun_time
, jiffies
)) {
1207 tty_warn(tty
, "%d input overrun(s)\n", ldata
->num_overrun
);
1208 ldata
->overrun_time
= jiffies
;
1209 ldata
->num_overrun
= 0;
1214 * n_tty_receive_parity_error - error notifier
1215 * @tty: terminal device
1218 * Process a parity error and queue the right data to indicate
1219 * the error case if necessary.
1221 * n_tty_receive_buf()/producer path:
1222 * caller holds non-exclusive termios_rwsem
1224 static void n_tty_receive_parity_error(struct tty_struct
*tty
, unsigned char c
)
1226 struct n_tty_data
*ldata
= tty
->disc_data
;
1231 if (I_PARMRK(tty
)) {
1232 put_tty_queue('\377', ldata
);
1233 put_tty_queue('\0', ldata
);
1234 put_tty_queue(c
, ldata
);
1236 put_tty_queue('\0', ldata
);
1238 put_tty_queue(c
, ldata
);
1242 n_tty_receive_signal_char(struct tty_struct
*tty
, int signal
, unsigned char c
)
1251 process_echoes(tty
);
1256 * n_tty_receive_char - perform processing
1257 * @tty: terminal device
1260 * Process an individual character of input received from the driver.
1261 * This is serialized with respect to itself by the rules for the
1264 * n_tty_receive_buf()/producer path:
1265 * caller holds non-exclusive termios_rwsem
1266 * publishes canon_head if canonical mode is active
1268 * Returns 1 if LNEXT was received, else returns 0
1272 n_tty_receive_char_special(struct tty_struct
*tty
, unsigned char c
)
1274 struct n_tty_data
*ldata
= tty
->disc_data
;
1277 if (c
== START_CHAR(tty
)) {
1279 process_echoes(tty
);
1282 if (c
== STOP_CHAR(tty
)) {
1289 if (c
== INTR_CHAR(tty
)) {
1290 n_tty_receive_signal_char(tty
, SIGINT
, c
);
1292 } else if (c
== QUIT_CHAR(tty
)) {
1293 n_tty_receive_signal_char(tty
, SIGQUIT
, c
);
1295 } else if (c
== SUSP_CHAR(tty
)) {
1296 n_tty_receive_signal_char(tty
, SIGTSTP
, c
);
1301 if (tty
->stopped
&& !tty
->flow_stopped
&& I_IXON(tty
) && I_IXANY(tty
)) {
1303 process_echoes(tty
);
1311 } else if (c
== '\n' && I_INLCR(tty
))
1314 if (ldata
->icanon
) {
1315 if (c
== ERASE_CHAR(tty
) || c
== KILL_CHAR(tty
) ||
1316 (c
== WERASE_CHAR(tty
) && L_IEXTEN(tty
))) {
1321 if (c
== LNEXT_CHAR(tty
) && L_IEXTEN(tty
)) {
1324 finish_erasing(ldata
);
1325 if (L_ECHOCTL(tty
)) {
1326 echo_char_raw('^', ldata
);
1327 echo_char_raw('\b', ldata
);
1333 if (c
== REPRINT_CHAR(tty
) && L_ECHO(tty
) && L_IEXTEN(tty
)) {
1334 size_t tail
= ldata
->canon_head
;
1336 finish_erasing(ldata
);
1338 echo_char_raw('\n', ldata
);
1339 while (MASK(tail
) != MASK(ldata
->read_head
)) {
1340 echo_char(read_buf(ldata
, tail
), tty
);
1347 if (L_ECHO(tty
) || L_ECHONL(tty
)) {
1348 echo_char_raw('\n', ldata
);
1351 goto handle_newline
;
1353 if (c
== EOF_CHAR(tty
)) {
1354 c
= __DISABLED_CHAR
;
1355 goto handle_newline
;
1357 if ((c
== EOL_CHAR(tty
)) ||
1358 (c
== EOL2_CHAR(tty
) && L_IEXTEN(tty
))) {
1360 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1363 /* Record the column of first canon char. */
1364 if (ldata
->canon_head
== ldata
->read_head
)
1365 echo_set_canon_col(ldata
);
1370 * XXX does PARMRK doubling happen for
1371 * EOL_CHAR and EOL2_CHAR?
1373 if (c
== (unsigned char) '\377' && I_PARMRK(tty
))
1374 put_tty_queue(c
, ldata
);
1377 set_bit(ldata
->read_head
& (N_TTY_BUF_SIZE
- 1), ldata
->read_flags
);
1378 put_tty_queue(c
, ldata
);
1379 smp_store_release(&ldata
->canon_head
, ldata
->read_head
);
1380 kill_fasync(&tty
->fasync
, SIGIO
, POLL_IN
);
1381 wake_up_interruptible_poll(&tty
->read_wait
, EPOLLIN
);
1387 finish_erasing(ldata
);
1389 echo_char_raw('\n', ldata
);
1391 /* Record the column of first canon char. */
1392 if (ldata
->canon_head
== ldata
->read_head
)
1393 echo_set_canon_col(ldata
);
1399 /* PARMRK doubling check */
1400 if (c
== (unsigned char) '\377' && I_PARMRK(tty
))
1401 put_tty_queue(c
, ldata
);
1403 put_tty_queue(c
, ldata
);
1408 n_tty_receive_char_inline(struct tty_struct
*tty
, unsigned char c
)
1410 struct n_tty_data
*ldata
= tty
->disc_data
;
1412 if (tty
->stopped
&& !tty
->flow_stopped
&& I_IXON(tty
) && I_IXANY(tty
)) {
1414 process_echoes(tty
);
1417 finish_erasing(ldata
);
1418 /* Record the column of first canon char. */
1419 if (ldata
->canon_head
== ldata
->read_head
)
1420 echo_set_canon_col(ldata
);
1424 /* PARMRK doubling check */
1425 if (c
== (unsigned char) '\377' && I_PARMRK(tty
))
1426 put_tty_queue(c
, ldata
);
1427 put_tty_queue(c
, ldata
);
1430 static void n_tty_receive_char(struct tty_struct
*tty
, unsigned char c
)
1432 n_tty_receive_char_inline(tty
, c
);
1436 n_tty_receive_char_fast(struct tty_struct
*tty
, unsigned char c
)
1438 struct n_tty_data
*ldata
= tty
->disc_data
;
1440 if (tty
->stopped
&& !tty
->flow_stopped
&& I_IXON(tty
) && I_IXANY(tty
)) {
1442 process_echoes(tty
);
1445 finish_erasing(ldata
);
1446 /* Record the column of first canon char. */
1447 if (ldata
->canon_head
== ldata
->read_head
)
1448 echo_set_canon_col(ldata
);
1452 put_tty_queue(c
, ldata
);
1455 static void n_tty_receive_char_closing(struct tty_struct
*tty
, unsigned char c
)
1459 if (I_IUCLC(tty
) && L_IEXTEN(tty
))
1463 if (c
== STOP_CHAR(tty
))
1465 else if (c
== START_CHAR(tty
) ||
1466 (tty
->stopped
&& !tty
->flow_stopped
&& I_IXANY(tty
) &&
1467 c
!= INTR_CHAR(tty
) && c
!= QUIT_CHAR(tty
) &&
1468 c
!= SUSP_CHAR(tty
))) {
1470 process_echoes(tty
);
1476 n_tty_receive_char_flagged(struct tty_struct
*tty
, unsigned char c
, char flag
)
1480 n_tty_receive_break(tty
);
1484 n_tty_receive_parity_error(tty
, c
);
1487 n_tty_receive_overrun(tty
);
1490 tty_err(tty
, "unknown flag %d\n", flag
);
1496 n_tty_receive_char_lnext(struct tty_struct
*tty
, unsigned char c
, char flag
)
1498 struct n_tty_data
*ldata
= tty
->disc_data
;
1501 if (likely(flag
== TTY_NORMAL
)) {
1504 if (I_IUCLC(tty
) && L_IEXTEN(tty
))
1506 n_tty_receive_char(tty
, c
);
1508 n_tty_receive_char_flagged(tty
, c
, flag
);
1512 n_tty_receive_buf_real_raw(struct tty_struct
*tty
, const unsigned char *cp
,
1513 char *fp
, int count
)
1515 struct n_tty_data
*ldata
= tty
->disc_data
;
1518 head
= ldata
->read_head
& (N_TTY_BUF_SIZE
- 1);
1519 n
= min_t(size_t, count
, N_TTY_BUF_SIZE
- head
);
1520 memcpy(read_buf_addr(ldata
, head
), cp
, n
);
1521 ldata
->read_head
+= n
;
1525 head
= ldata
->read_head
& (N_TTY_BUF_SIZE
- 1);
1526 n
= min_t(size_t, count
, N_TTY_BUF_SIZE
- head
);
1527 memcpy(read_buf_addr(ldata
, head
), cp
, n
);
1528 ldata
->read_head
+= n
;
1532 n_tty_receive_buf_raw(struct tty_struct
*tty
, const unsigned char *cp
,
1533 char *fp
, int count
)
1535 struct n_tty_data
*ldata
= tty
->disc_data
;
1536 char flag
= TTY_NORMAL
;
1541 if (likely(flag
== TTY_NORMAL
))
1542 put_tty_queue(*cp
++, ldata
);
1544 n_tty_receive_char_flagged(tty
, *cp
++, flag
);
1549 n_tty_receive_buf_closing(struct tty_struct
*tty
, const unsigned char *cp
,
1550 char *fp
, int count
)
1552 char flag
= TTY_NORMAL
;
1557 if (likely(flag
== TTY_NORMAL
))
1558 n_tty_receive_char_closing(tty
, *cp
++);
1563 n_tty_receive_buf_standard(struct tty_struct
*tty
, const unsigned char *cp
,
1564 char *fp
, int count
)
1566 struct n_tty_data
*ldata
= tty
->disc_data
;
1567 char flag
= TTY_NORMAL
;
1572 if (likely(flag
== TTY_NORMAL
)) {
1573 unsigned char c
= *cp
++;
1577 if (I_IUCLC(tty
) && L_IEXTEN(tty
))
1579 if (L_EXTPROC(tty
)) {
1580 put_tty_queue(c
, ldata
);
1583 if (!test_bit(c
, ldata
->char_map
))
1584 n_tty_receive_char_inline(tty
, c
);
1585 else if (n_tty_receive_char_special(tty
, c
) && count
) {
1588 n_tty_receive_char_lnext(tty
, *cp
++, flag
);
1592 n_tty_receive_char_flagged(tty
, *cp
++, flag
);
1597 n_tty_receive_buf_fast(struct tty_struct
*tty
, const unsigned char *cp
,
1598 char *fp
, int count
)
1600 struct n_tty_data
*ldata
= tty
->disc_data
;
1601 char flag
= TTY_NORMAL
;
1606 if (likely(flag
== TTY_NORMAL
)) {
1607 unsigned char c
= *cp
++;
1609 if (!test_bit(c
, ldata
->char_map
))
1610 n_tty_receive_char_fast(tty
, c
);
1611 else if (n_tty_receive_char_special(tty
, c
) && count
) {
1614 n_tty_receive_char_lnext(tty
, *cp
++, flag
);
1618 n_tty_receive_char_flagged(tty
, *cp
++, flag
);
1622 static void __receive_buf(struct tty_struct
*tty
, const unsigned char *cp
,
1623 char *fp
, int count
)
1625 struct n_tty_data
*ldata
= tty
->disc_data
;
1626 bool preops
= I_ISTRIP(tty
) || (I_IUCLC(tty
) && L_IEXTEN(tty
));
1628 if (ldata
->real_raw
)
1629 n_tty_receive_buf_real_raw(tty
, cp
, fp
, count
);
1630 else if (ldata
->raw
|| (L_EXTPROC(tty
) && !preops
))
1631 n_tty_receive_buf_raw(tty
, cp
, fp
, count
);
1632 else if (tty
->closing
&& !L_EXTPROC(tty
))
1633 n_tty_receive_buf_closing(tty
, cp
, fp
, count
);
1636 char flag
= TTY_NORMAL
;
1640 n_tty_receive_char_lnext(tty
, *cp
++, flag
);
1644 if (!preops
&& !I_PARMRK(tty
))
1645 n_tty_receive_buf_fast(tty
, cp
, fp
, count
);
1647 n_tty_receive_buf_standard(tty
, cp
, fp
, count
);
1650 if (tty
->ops
->flush_chars
)
1651 tty
->ops
->flush_chars(tty
);
1654 if (ldata
->icanon
&& !L_EXTPROC(tty
))
1657 /* publish read_head to consumer */
1658 smp_store_release(&ldata
->commit_head
, ldata
->read_head
);
1660 if (read_cnt(ldata
)) {
1661 kill_fasync(&tty
->fasync
, SIGIO
, POLL_IN
);
1662 wake_up_interruptible_poll(&tty
->read_wait
, EPOLLIN
);
1667 * n_tty_receive_buf_common - process input
1668 * @tty: device to receive input
1670 * @fp: flags for each char (if NULL, all chars are TTY_NORMAL)
1671 * @count: number of input chars in @cp
1672 * @flow: enable flow control
1674 * Called by the terminal driver when a block of characters has
1675 * been received. This function must be called from soft contexts
1676 * not from interrupt context. The driver is responsible for making
1677 * calls one at a time and in order (or using flush_to_ldisc)
1679 * Returns the # of input chars from @cp which were processed.
1681 * In canonical mode, the maximum line length is 4096 chars (including
1682 * the line termination char); lines longer than 4096 chars are
1683 * truncated. After 4095 chars, input data is still processed but
1684 * not stored. Overflow processing ensures the tty can always
1685 * receive more input until at least one line can be read.
1687 * In non-canonical mode, the read buffer will only accept 4095 chars;
1688 * this provides the necessary space for a newline char if the input
1689 * mode is switched to canonical.
1691 * Note it is possible for the read buffer to _contain_ 4096 chars
1692 * in non-canonical mode: the read buffer could already contain the
1693 * maximum canon line of 4096 chars when the mode is switched to
1696 * n_tty_receive_buf()/producer path:
1697 * claims non-exclusive termios_rwsem
1698 * publishes commit_head or canon_head
1701 n_tty_receive_buf_common(struct tty_struct
*tty
, const unsigned char *cp
,
1702 char *fp
, int count
, int flow
)
1704 struct n_tty_data
*ldata
= tty
->disc_data
;
1705 int room
, n
, rcvd
= 0, overflow
;
1707 down_read(&tty
->termios_rwsem
);
1711 * When PARMRK is set, each input char may take up to 3 chars
1712 * in the read buf; reduce the buffer space avail by 3x
1714 * If we are doing input canonicalization, and there are no
1715 * pending newlines, let characters through without limit, so
1716 * that erase characters will be handled. Other excess
1717 * characters will be beeped.
1719 * paired with store in *_copy_from_read_buf() -- guarantees
1720 * the consumer has loaded the data in read_buf up to the new
1721 * read_tail (so this producer will not overwrite unread data)
1723 size_t tail
= smp_load_acquire(&ldata
->read_tail
);
1725 room
= N_TTY_BUF_SIZE
- (ldata
->read_head
- tail
);
1727 room
= (room
+ 2) / 3;
1730 overflow
= ldata
->icanon
&& ldata
->canon_head
== tail
;
1731 if (overflow
&& room
< 0)
1734 ldata
->no_room
= flow
&& !room
;
1738 n
= min(count
, room
);
1742 /* ignore parity errors if handling overflow */
1743 if (!overflow
|| !fp
|| *fp
!= TTY_PARITY
)
1744 __receive_buf(tty
, cp
, fp
, n
);
1751 } while (!test_bit(TTY_LDISC_CHANGING
, &tty
->flags
));
1753 tty
->receive_room
= room
;
1755 /* Unthrottle if handling overflow on pty */
1756 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
) {
1758 tty_set_flow_change(tty
, TTY_UNTHROTTLE_SAFE
);
1759 tty_unthrottle_safe(tty
);
1760 __tty_set_flow_change(tty
, 0);
1763 n_tty_check_throttle(tty
);
1765 up_read(&tty
->termios_rwsem
);
1770 static void n_tty_receive_buf(struct tty_struct
*tty
, const unsigned char *cp
,
1771 char *fp
, int count
)
1773 n_tty_receive_buf_common(tty
, cp
, fp
, count
, 0);
1776 static int n_tty_receive_buf2(struct tty_struct
*tty
, const unsigned char *cp
,
1777 char *fp
, int count
)
1779 return n_tty_receive_buf_common(tty
, cp
, fp
, count
, 1);
1783 * n_tty_set_termios - termios data changed
1785 * @old: previous data
1787 * Called by the tty layer when the user changes termios flags so
1788 * that the line discipline can plan ahead. This function cannot sleep
1789 * and is protected from re-entry by the tty layer. The user is
1790 * guaranteed that this function will not be re-entered or in progress
1791 * when the ldisc is closed.
1793 * Locking: Caller holds tty->termios_rwsem
1796 static void n_tty_set_termios(struct tty_struct
*tty
, struct ktermios
*old
)
1798 struct n_tty_data
*ldata
= tty
->disc_data
;
1800 if (!old
|| (old
->c_lflag
^ tty
->termios
.c_lflag
) & (ICANON
| EXTPROC
)) {
1801 bitmap_zero(ldata
->read_flags
, N_TTY_BUF_SIZE
);
1802 ldata
->line_start
= ldata
->read_tail
;
1803 if (!L_ICANON(tty
) || !read_cnt(ldata
)) {
1804 ldata
->canon_head
= ldata
->read_tail
;
1807 set_bit((ldata
->read_head
- 1) & (N_TTY_BUF_SIZE
- 1),
1809 ldata
->canon_head
= ldata
->read_head
;
1812 ldata
->commit_head
= ldata
->read_head
;
1817 ldata
->icanon
= (L_ICANON(tty
) != 0);
1819 if (I_ISTRIP(tty
) || I_IUCLC(tty
) || I_IGNCR(tty
) ||
1820 I_ICRNL(tty
) || I_INLCR(tty
) || L_ICANON(tty
) ||
1821 I_IXON(tty
) || L_ISIG(tty
) || L_ECHO(tty
) ||
1823 bitmap_zero(ldata
->char_map
, 256);
1825 if (I_IGNCR(tty
) || I_ICRNL(tty
))
1826 set_bit('\r', ldata
->char_map
);
1828 set_bit('\n', ldata
->char_map
);
1830 if (L_ICANON(tty
)) {
1831 set_bit(ERASE_CHAR(tty
), ldata
->char_map
);
1832 set_bit(KILL_CHAR(tty
), ldata
->char_map
);
1833 set_bit(EOF_CHAR(tty
), ldata
->char_map
);
1834 set_bit('\n', ldata
->char_map
);
1835 set_bit(EOL_CHAR(tty
), ldata
->char_map
);
1836 if (L_IEXTEN(tty
)) {
1837 set_bit(WERASE_CHAR(tty
), ldata
->char_map
);
1838 set_bit(LNEXT_CHAR(tty
), ldata
->char_map
);
1839 set_bit(EOL2_CHAR(tty
), ldata
->char_map
);
1841 set_bit(REPRINT_CHAR(tty
),
1846 set_bit(START_CHAR(tty
), ldata
->char_map
);
1847 set_bit(STOP_CHAR(tty
), ldata
->char_map
);
1850 set_bit(INTR_CHAR(tty
), ldata
->char_map
);
1851 set_bit(QUIT_CHAR(tty
), ldata
->char_map
);
1852 set_bit(SUSP_CHAR(tty
), ldata
->char_map
);
1854 clear_bit(__DISABLED_CHAR
, ldata
->char_map
);
1856 ldata
->real_raw
= 0;
1859 if ((I_IGNBRK(tty
) || (!I_BRKINT(tty
) && !I_PARMRK(tty
))) &&
1860 (I_IGNPAR(tty
) || !I_INPCK(tty
)) &&
1861 (tty
->driver
->flags
& TTY_DRIVER_REAL_RAW
))
1862 ldata
->real_raw
= 1;
1864 ldata
->real_raw
= 0;
1867 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1868 * been stopped by STOP_CHAR(tty) before it.
1870 if (!I_IXON(tty
) && old
&& (old
->c_iflag
& IXON
) && !tty
->flow_stopped
) {
1872 process_echoes(tty
);
1875 /* The termios change make the tty ready for I/O */
1876 wake_up_interruptible(&tty
->write_wait
);
1877 wake_up_interruptible(&tty
->read_wait
);
1881 * n_tty_close - close the ldisc for this tty
1884 * Called from the terminal layer when this line discipline is
1885 * being shut down, either because of a close or becsuse of a
1886 * discipline change. The function will not be called while other
1887 * ldisc methods are in progress.
1890 static void n_tty_close(struct tty_struct
*tty
)
1892 struct n_tty_data
*ldata
= tty
->disc_data
;
1895 n_tty_packet_mode_flush(tty
);
1898 tty
->disc_data
= NULL
;
1902 * n_tty_open - open an ldisc
1903 * @tty: terminal to open
1905 * Called when this line discipline is being attached to the
1906 * terminal device. Can sleep. Called serialized so that no
1907 * other events will occur in parallel. No further open will occur
1911 static int n_tty_open(struct tty_struct
*tty
)
1913 struct n_tty_data
*ldata
;
1915 /* Currently a malloc failure here can panic */
1916 ldata
= vzalloc(sizeof(*ldata
));
1920 ldata
->overrun_time
= jiffies
;
1921 mutex_init(&ldata
->atomic_read_lock
);
1922 mutex_init(&ldata
->output_lock
);
1924 tty
->disc_data
= ldata
;
1926 /* indicate buffer work may resume */
1927 clear_bit(TTY_LDISC_HALTED
, &tty
->flags
);
1928 n_tty_set_termios(tty
, NULL
);
1929 tty_unthrottle(tty
);
1933 static inline int input_available_p(struct tty_struct
*tty
, int poll
)
1935 struct n_tty_data
*ldata
= tty
->disc_data
;
1936 int amt
= poll
&& !TIME_CHAR(tty
) && MIN_CHAR(tty
) ? MIN_CHAR(tty
) : 1;
1938 if (ldata
->icanon
&& !L_EXTPROC(tty
))
1939 return ldata
->canon_head
!= ldata
->read_tail
;
1941 return ldata
->commit_head
- ldata
->read_tail
>= amt
;
1945 * copy_from_read_buf - copy read data directly
1946 * @tty: terminal device
1950 * Helper function to speed up n_tty_read. It is only called when
1951 * ICANON is off; it copies characters straight from the tty queue to
1952 * user space directly. It can be profitably called twice; once to
1953 * drain the space from the tail pointer to the (physical) end of the
1954 * buffer, and once to drain the space from the (physical) beginning of
1955 * the buffer to head pointer.
1957 * Called under the ldata->atomic_read_lock sem
1959 * n_tty_read()/consumer path:
1960 * caller holds non-exclusive termios_rwsem
1961 * read_tail published
1964 static int copy_from_read_buf(struct tty_struct
*tty
,
1965 unsigned char __user
**b
,
1969 struct n_tty_data
*ldata
= tty
->disc_data
;
1973 size_t head
= smp_load_acquire(&ldata
->commit_head
);
1974 size_t tail
= ldata
->read_tail
& (N_TTY_BUF_SIZE
- 1);
1977 n
= min(head
- ldata
->read_tail
, N_TTY_BUF_SIZE
- tail
);
1980 unsigned char *from
= read_buf_addr(ldata
, tail
);
1981 retval
= copy_to_user(*b
, from
, n
);
1983 is_eof
= n
== 1 && *from
== EOF_CHAR(tty
);
1984 tty_audit_add_data(tty
, from
, n
);
1985 zero_buffer(tty
, from
, n
);
1986 smp_store_release(&ldata
->read_tail
, ldata
->read_tail
+ n
);
1987 /* Turn single EOF into zero-length read */
1988 if (L_EXTPROC(tty
) && ldata
->icanon
&& is_eof
&&
1989 (head
== ldata
->read_tail
))
1998 * canon_copy_from_read_buf - copy read data in canonical mode
1999 * @tty: terminal device
2003 * Helper function for n_tty_read. It is only called when ICANON is on;
2004 * it copies one line of input up to and including the line-delimiting
2005 * character into the user-space buffer.
2007 * NB: When termios is changed from non-canonical to canonical mode and
2008 * the read buffer contains data, n_tty_set_termios() simulates an EOF
2009 * push (as if C-d were input) _without_ the DISABLED_CHAR in the buffer.
2010 * This causes data already processed as input to be immediately available
2011 * as input although a newline has not been received.
2013 * Called under the atomic_read_lock mutex
2015 * n_tty_read()/consumer path:
2016 * caller holds non-exclusive termios_rwsem
2017 * read_tail published
2020 static int canon_copy_from_read_buf(struct tty_struct
*tty
,
2021 unsigned char __user
**b
,
2024 struct n_tty_data
*ldata
= tty
->disc_data
;
2025 size_t n
, size
, more
, c
;
2030 /* N.B. avoid overrun if nr == 0 */
2034 n
= min(*nr
+ 1, smp_load_acquire(&ldata
->canon_head
) - ldata
->read_tail
);
2036 tail
= ldata
->read_tail
& (N_TTY_BUF_SIZE
- 1);
2037 size
= min_t(size_t, tail
+ n
, N_TTY_BUF_SIZE
);
2039 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
2040 __func__
, *nr
, tail
, n
, size
);
2042 eol
= find_next_bit(ldata
->read_flags
, size
, tail
);
2043 more
= n
- (size
- tail
);
2044 if (eol
== N_TTY_BUF_SIZE
&& more
) {
2045 /* scan wrapped without finding set bit */
2046 eol
= find_next_bit(ldata
->read_flags
, more
, 0);
2047 found
= eol
!= more
;
2049 found
= eol
!= size
;
2052 if (n
> N_TTY_BUF_SIZE
)
2053 n
+= N_TTY_BUF_SIZE
;
2056 if (!found
|| read_buf(ldata
, eol
) != __DISABLED_CHAR
) {
2061 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n",
2062 __func__
, eol
, found
, n
, c
, tail
, more
);
2064 ret
= tty_copy_to_user(tty
, *b
, tail
, n
);
2071 clear_bit(eol
, ldata
->read_flags
);
2072 smp_store_release(&ldata
->read_tail
, ldata
->read_tail
+ c
);
2076 ldata
->line_start
= ldata
->read_tail
;
2084 extern ssize_t
redirected_tty_write(struct file
*, const char __user
*,
2088 * job_control - check job control
2090 * @file: file handle
2092 * Perform job control management checks on this file/tty descriptor
2093 * and if appropriate send any needed signals and return a negative
2094 * error code if action should be taken.
2096 * Locking: redirected write test is safe
2097 * current->signal->tty check is safe
2098 * ctrl_lock to safely reference tty->pgrp
2101 static int job_control(struct tty_struct
*tty
, struct file
*file
)
2103 /* Job control check -- must be done at start and after
2104 every sleep (POSIX.1 7.1.1.4). */
2105 /* NOTE: not yet done after every sleep pending a thorough
2106 check of the logic of this change. -- jlc */
2107 /* don't stop on /dev/console */
2108 if (file
->f_op
->write
== redirected_tty_write
)
2111 return __tty_check_change(tty
, SIGTTIN
);
2116 * n_tty_read - read function for tty
2118 * @file: file object
2119 * @buf: userspace buffer pointer
2122 * Perform reads for the line discipline. We are guaranteed that the
2123 * line discipline will not be closed under us but we may get multiple
2124 * parallel readers and must handle this ourselves. We may also get
2125 * a hangup. Always called in user context, may sleep.
2127 * This code must be sure never to sleep through a hangup.
2129 * n_tty_read()/consumer path:
2130 * claims non-exclusive termios_rwsem
2131 * publishes read_tail
2134 static ssize_t
n_tty_read(struct tty_struct
*tty
, struct file
*file
,
2135 unsigned char __user
*buf
, size_t nr
)
2137 struct n_tty_data
*ldata
= tty
->disc_data
;
2138 unsigned char __user
*b
= buf
;
2139 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
2147 c
= job_control(tty
, file
);
2152 * Internal serialization of reads.
2154 if (file
->f_flags
& O_NONBLOCK
) {
2155 if (!mutex_trylock(&ldata
->atomic_read_lock
))
2158 if (mutex_lock_interruptible(&ldata
->atomic_read_lock
))
2159 return -ERESTARTSYS
;
2162 down_read(&tty
->termios_rwsem
);
2165 timeout
= MAX_SCHEDULE_TIMEOUT
;
2166 if (!ldata
->icanon
) {
2167 minimum
= MIN_CHAR(tty
);
2169 time
= (HZ
/ 10) * TIME_CHAR(tty
);
2171 timeout
= (HZ
/ 10) * TIME_CHAR(tty
);
2176 packet
= tty
->packet
;
2177 tail
= ldata
->read_tail
;
2179 add_wait_queue(&tty
->read_wait
, &wait
);
2181 /* First test for status change. */
2182 if (packet
&& tty
->link
->ctrl_status
) {
2186 spin_lock_irq(&tty
->link
->ctrl_lock
);
2187 cs
= tty
->link
->ctrl_status
;
2188 tty
->link
->ctrl_status
= 0;
2189 spin_unlock_irq(&tty
->link
->ctrl_lock
);
2190 if (put_user(cs
, b
)) {
2199 if (!input_available_p(tty
, 0)) {
2200 up_read(&tty
->termios_rwsem
);
2201 tty_buffer_flush_work(tty
->port
);
2202 down_read(&tty
->termios_rwsem
);
2203 if (!input_available_p(tty
, 0)) {
2204 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
)) {
2208 if (tty_hung_up_p(file
))
2211 * Abort readers for ttys which never actually
2212 * get hung up. See __tty_hangup().
2214 if (test_bit(TTY_HUPPING
, &tty
->flags
))
2218 if (tty_io_nonblock(tty
, file
)) {
2222 if (signal_pending(current
)) {
2223 retval
= -ERESTARTSYS
;
2226 up_read(&tty
->termios_rwsem
);
2228 timeout
= wait_woken(&wait
, TASK_INTERRUPTIBLE
,
2231 down_read(&tty
->termios_rwsem
);
2236 if (ldata
->icanon
&& !L_EXTPROC(tty
)) {
2237 retval
= canon_copy_from_read_buf(tty
, &b
, &nr
);
2243 /* Deal with packet mode. */
2244 if (packet
&& b
== buf
) {
2245 if (put_user(TIOCPKT_DATA
, b
)) {
2253 uncopied
= copy_from_read_buf(tty
, &b
, &nr
);
2254 uncopied
+= copy_from_read_buf(tty
, &b
, &nr
);
2261 n_tty_check_unthrottle(tty
);
2263 if (b
- buf
>= minimum
)
2268 if (tail
!= ldata
->read_tail
)
2269 n_tty_kick_worker(tty
);
2270 up_read(&tty
->termios_rwsem
);
2272 remove_wait_queue(&tty
->read_wait
, &wait
);
2273 mutex_unlock(&ldata
->atomic_read_lock
);
2282 * n_tty_write - write function for tty
2284 * @file: file object
2285 * @buf: userspace buffer pointer
2288 * Write function of the terminal device. This is serialized with
2289 * respect to other write callers but not to termios changes, reads
2290 * and other such events. Since the receive code will echo characters,
2291 * thus calling driver write methods, the output_lock is used in
2292 * the output processing functions called here as well as in the
2293 * echo processing function to protect the column state and space
2294 * left in the buffer.
2296 * This code must be sure never to sleep through a hangup.
2298 * Locking: output_lock to protect column state and space left
2299 * (note that the process_output*() functions take this
2303 static ssize_t
n_tty_write(struct tty_struct
*tty
, struct file
*file
,
2304 const unsigned char *buf
, size_t nr
)
2306 const unsigned char *b
= buf
;
2307 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
2311 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2312 if (L_TOSTOP(tty
) && file
->f_op
->write
!= redirected_tty_write
) {
2313 retval
= tty_check_change(tty
);
2318 down_read(&tty
->termios_rwsem
);
2320 /* Write out any echoed characters that are still pending */
2321 process_echoes(tty
);
2323 add_wait_queue(&tty
->write_wait
, &wait
);
2325 if (signal_pending(current
)) {
2326 retval
= -ERESTARTSYS
;
2329 if (tty_hung_up_p(file
) || (tty
->link
&& !tty
->link
->count
)) {
2335 ssize_t num
= process_output_block(tty
, b
, nr
);
2347 if (process_output(c
, tty
) < 0)
2351 if (tty
->ops
->flush_chars
)
2352 tty
->ops
->flush_chars(tty
);
2354 struct n_tty_data
*ldata
= tty
->disc_data
;
2357 mutex_lock(&ldata
->output_lock
);
2358 c
= tty
->ops
->write(tty
, b
, nr
);
2359 mutex_unlock(&ldata
->output_lock
);
2372 if (tty_io_nonblock(tty
, file
)) {
2376 up_read(&tty
->termios_rwsem
);
2378 wait_woken(&wait
, TASK_INTERRUPTIBLE
, MAX_SCHEDULE_TIMEOUT
);
2380 down_read(&tty
->termios_rwsem
);
2383 remove_wait_queue(&tty
->write_wait
, &wait
);
2384 if (nr
&& tty
->fasync
)
2385 set_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
);
2386 up_read(&tty
->termios_rwsem
);
2387 return (b
- buf
) ? b
- buf
: retval
;
2391 * n_tty_poll - poll method for N_TTY
2392 * @tty: terminal device
2393 * @file: file accessing it
2396 * Called when the line discipline is asked to poll() for data or
2397 * for special events. This code is not serialized with respect to
2398 * other events save open/close.
2400 * This code must be sure never to sleep through a hangup.
2401 * Called without the kernel lock held - fine
2404 static __poll_t
n_tty_poll(struct tty_struct
*tty
, struct file
*file
,
2409 poll_wait(file
, &tty
->read_wait
, wait
);
2410 poll_wait(file
, &tty
->write_wait
, wait
);
2411 if (input_available_p(tty
, 1))
2412 mask
|= EPOLLIN
| EPOLLRDNORM
;
2414 tty_buffer_flush_work(tty
->port
);
2415 if (input_available_p(tty
, 1))
2416 mask
|= EPOLLIN
| EPOLLRDNORM
;
2418 if (tty
->packet
&& tty
->link
->ctrl_status
)
2419 mask
|= EPOLLPRI
| EPOLLIN
| EPOLLRDNORM
;
2420 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
))
2422 if (tty_hung_up_p(file
))
2424 if (tty
->ops
->write
&& !tty_is_writelocked(tty
) &&
2425 tty_chars_in_buffer(tty
) < WAKEUP_CHARS
&&
2426 tty_write_room(tty
) > 0)
2427 mask
|= EPOLLOUT
| EPOLLWRNORM
;
2431 static unsigned long inq_canon(struct n_tty_data
*ldata
)
2433 size_t nr
, head
, tail
;
2435 if (ldata
->canon_head
== ldata
->read_tail
)
2437 head
= ldata
->canon_head
;
2438 tail
= ldata
->read_tail
;
2440 /* Skip EOF-chars.. */
2441 while (MASK(head
) != MASK(tail
)) {
2442 if (test_bit(tail
& (N_TTY_BUF_SIZE
- 1), ldata
->read_flags
) &&
2443 read_buf(ldata
, tail
) == __DISABLED_CHAR
)
2450 static int n_tty_ioctl(struct tty_struct
*tty
, struct file
*file
,
2451 unsigned int cmd
, unsigned long arg
)
2453 struct n_tty_data
*ldata
= tty
->disc_data
;
2458 return put_user(tty_chars_in_buffer(tty
), (int __user
*) arg
);
2460 down_write(&tty
->termios_rwsem
);
2461 if (L_ICANON(tty
) && !L_EXTPROC(tty
))
2462 retval
= inq_canon(ldata
);
2464 retval
= read_cnt(ldata
);
2465 up_write(&tty
->termios_rwsem
);
2466 return put_user(retval
, (unsigned int __user
*) arg
);
2468 return n_tty_ioctl_helper(tty
, file
, cmd
, arg
);
2472 static struct tty_ldisc_ops n_tty_ops
= {
2473 .magic
= TTY_LDISC_MAGIC
,
2476 .close
= n_tty_close
,
2477 .flush_buffer
= n_tty_flush_buffer
,
2479 .write
= n_tty_write
,
2480 .ioctl
= n_tty_ioctl
,
2481 .set_termios
= n_tty_set_termios
,
2483 .receive_buf
= n_tty_receive_buf
,
2484 .write_wakeup
= n_tty_write_wakeup
,
2485 .receive_buf2
= n_tty_receive_buf2
,
2489 * n_tty_inherit_ops - inherit N_TTY methods
2490 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2492 * Enables a 'subclass' line discipline to 'inherit' N_TTY methods.
2495 void n_tty_inherit_ops(struct tty_ldisc_ops
*ops
)
2499 ops
->refcount
= ops
->flags
= 0;
2501 EXPORT_SYMBOL_GPL(n_tty_inherit_ops
);
2503 void __init
n_tty_init(void)
2505 tty_register_ldisc(N_TTY
, &n_tty_ops
);