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 /* number of characters left in xmit buffer before select has we have room */
55 #define WAKEUP_CHARS 256
58 * This defines the low- and high-watermarks for throttling and
59 * unthrottling the TTY driver. These watermarks are used for
60 * controlling the space in the read buffer.
62 #define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
63 #define TTY_THRESHOLD_UNTHROTTLE 128
66 * Special byte codes used in the echo buffer to represent operations
67 * or special handling of characters. Bytes in the echo buffer that
68 * are not part of such special blocks are treated as normal character
71 #define ECHO_OP_START 0xff
72 #define ECHO_OP_MOVE_BACK_COL 0x80
73 #define ECHO_OP_SET_CANON_COL 0x81
74 #define ECHO_OP_ERASE_TAB 0x82
76 #define ECHO_COMMIT_WATERMARK 256
77 #define ECHO_BLOCK 256
78 #define ECHO_DISCARD_WATERMARK N_TTY_BUF_SIZE - (ECHO_BLOCK + 32)
83 # define n_tty_trace(f, args...) trace_printk(f, ##args)
85 # define n_tty_trace(f, args...)
89 /* producer-published */
96 DECLARE_BITMAP(char_map
, 256);
98 /* private to n_tty_receive_overrun (single-threaded) */
99 unsigned long overrun_time
;
105 /* must hold exclusive termios_rwsem to reset these */
106 unsigned char lnext
:1, erasing
:1, raw
:1, real_raw
:1, icanon
:1;
107 unsigned char push
:1;
109 /* shared by producer and consumer */
110 char read_buf
[N_TTY_BUF_SIZE
];
111 DECLARE_BITMAP(read_flags
, N_TTY_BUF_SIZE
);
112 unsigned char echo_buf
[N_TTY_BUF_SIZE
];
114 /* consumer-published */
118 /* protected by output lock */
120 unsigned int canon_column
;
123 struct mutex atomic_read_lock
;
124 struct mutex output_lock
;
127 #define MASK(x) ((x) & (N_TTY_BUF_SIZE - 1))
129 static inline size_t read_cnt(struct n_tty_data
*ldata
)
131 return ldata
->read_head
- ldata
->read_tail
;
134 static inline unsigned char read_buf(struct n_tty_data
*ldata
, size_t i
)
136 return ldata
->read_buf
[i
& (N_TTY_BUF_SIZE
- 1)];
139 static inline unsigned char *read_buf_addr(struct n_tty_data
*ldata
, size_t i
)
141 return &ldata
->read_buf
[i
& (N_TTY_BUF_SIZE
- 1)];
144 static inline unsigned char echo_buf(struct n_tty_data
*ldata
, size_t i
)
146 smp_rmb(); /* Matches smp_wmb() in add_echo_byte(). */
147 return ldata
->echo_buf
[i
& (N_TTY_BUF_SIZE
- 1)];
150 static inline unsigned char *echo_buf_addr(struct n_tty_data
*ldata
, size_t i
)
152 return &ldata
->echo_buf
[i
& (N_TTY_BUF_SIZE
- 1)];
155 /* If we are not echoing the data, perhaps this is a secret so erase it */
156 static void zero_buffer(struct tty_struct
*tty
, u8
*buffer
, int size
)
158 bool icanon
= !!L_ICANON(tty
);
159 bool no_echo
= !L_ECHO(tty
);
161 if (icanon
&& no_echo
)
162 memset(buffer
, 0x00, size
);
165 static int tty_copy_to_user(struct tty_struct
*tty
, void __user
*to
,
166 size_t tail
, size_t n
)
168 struct n_tty_data
*ldata
= tty
->disc_data
;
169 size_t size
= N_TTY_BUF_SIZE
- tail
;
170 void *from
= read_buf_addr(ldata
, tail
);
174 tty_audit_add_data(tty
, from
, size
);
175 uncopied
= copy_to_user(to
, from
, size
);
176 zero_buffer(tty
, from
, size
- uncopied
);
181 from
= ldata
->read_buf
;
184 tty_audit_add_data(tty
, from
, n
);
185 uncopied
= copy_to_user(to
, from
, n
);
186 zero_buffer(tty
, from
, n
- uncopied
);
191 * n_tty_kick_worker - start input worker (if required)
194 * Re-schedules the flip buffer work if it may have stopped
196 * Caller holds exclusive termios_rwsem
198 * n_tty_read()/consumer path:
199 * holds non-exclusive termios_rwsem
202 static void n_tty_kick_worker(struct tty_struct
*tty
)
204 struct n_tty_data
*ldata
= tty
->disc_data
;
206 /* Did the input worker stop? Restart it */
207 if (unlikely(ldata
->no_room
)) {
210 WARN_RATELIMIT(tty
->port
->itty
== NULL
,
211 "scheduling with invalid itty\n");
212 /* see if ldisc has been killed - if so, this means that
213 * even though the ldisc has been halted and ->buf.work
214 * cancelled, ->buf.work is about to be rescheduled
216 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED
, &tty
->flags
),
217 "scheduling buffer work for halted ldisc\n");
218 tty_buffer_restart_work(tty
->port
);
222 static ssize_t
chars_in_buffer(struct tty_struct
*tty
)
224 struct n_tty_data
*ldata
= tty
->disc_data
;
228 n
= ldata
->commit_head
- ldata
->read_tail
;
230 n
= ldata
->canon_head
- ldata
->read_tail
;
235 * n_tty_write_wakeup - asynchronous I/O notifier
238 * Required for the ptys, serial driver etc. since processes
239 * that attach themselves to the master and rely on ASYNC
240 * IO must be woken up
243 static void n_tty_write_wakeup(struct tty_struct
*tty
)
245 clear_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
);
246 kill_fasync(&tty
->fasync
, SIGIO
, POLL_OUT
);
249 static void n_tty_check_throttle(struct tty_struct
*tty
)
251 struct n_tty_data
*ldata
= tty
->disc_data
;
254 * Check the remaining room for the input canonicalization
255 * mode. We don't want to throttle the driver if we're in
256 * canonical mode and don't have a newline yet!
258 if (ldata
->icanon
&& ldata
->canon_head
== ldata
->read_tail
)
263 tty_set_flow_change(tty
, TTY_THROTTLE_SAFE
);
264 if (N_TTY_BUF_SIZE
- read_cnt(ldata
) >= TTY_THRESHOLD_THROTTLE
)
266 throttled
= tty_throttle_safe(tty
);
270 __tty_set_flow_change(tty
, 0);
273 static void n_tty_check_unthrottle(struct tty_struct
*tty
)
275 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
) {
276 if (chars_in_buffer(tty
) > TTY_THRESHOLD_UNTHROTTLE
)
278 n_tty_kick_worker(tty
);
279 tty_wakeup(tty
->link
);
283 /* If there is enough space in the read buffer now, let the
284 * low-level driver know. We use chars_in_buffer() to
285 * check the buffer, as it now knows about canonical mode.
286 * Otherwise, if the driver is throttled and the line is
287 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
288 * we won't get any more characters.
293 tty_set_flow_change(tty
, TTY_UNTHROTTLE_SAFE
);
294 if (chars_in_buffer(tty
) > TTY_THRESHOLD_UNTHROTTLE
)
296 n_tty_kick_worker(tty
);
297 unthrottled
= tty_unthrottle_safe(tty
);
301 __tty_set_flow_change(tty
, 0);
305 * put_tty_queue - add character to tty
309 * Add a character to the tty read_buf queue.
311 * n_tty_receive_buf()/producer path:
312 * caller holds non-exclusive termios_rwsem
315 static inline void put_tty_queue(unsigned char c
, struct n_tty_data
*ldata
)
317 *read_buf_addr(ldata
, ldata
->read_head
) = c
;
322 * reset_buffer_flags - reset buffer state
323 * @tty: terminal to reset
325 * Reset the read buffer counters and clear the flags.
326 * Called from n_tty_open() and n_tty_flush_buffer().
328 * Locking: caller holds exclusive termios_rwsem
329 * (or locking is not required)
332 static void reset_buffer_flags(struct n_tty_data
*ldata
)
334 ldata
->read_head
= ldata
->canon_head
= ldata
->read_tail
= 0;
335 ldata
->commit_head
= 0;
336 ldata
->line_start
= 0;
339 bitmap_zero(ldata
->read_flags
, N_TTY_BUF_SIZE
);
343 static void n_tty_packet_mode_flush(struct tty_struct
*tty
)
347 if (tty
->link
->packet
) {
348 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
349 tty
->ctrl_status
|= TIOCPKT_FLUSHREAD
;
350 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
351 wake_up_interruptible(&tty
->link
->read_wait
);
356 * n_tty_flush_buffer - clean input queue
357 * @tty: terminal device
359 * Flush the input buffer. Called when the tty layer wants the
360 * buffer flushed (eg at hangup) or when the N_TTY line discipline
361 * internally has to clean the pending queue (for example some signals).
363 * Holds termios_rwsem to exclude producer/consumer while
364 * buffer indices are reset.
366 * Locking: ctrl_lock, exclusive termios_rwsem
369 static void n_tty_flush_buffer(struct tty_struct
*tty
)
371 down_write(&tty
->termios_rwsem
);
372 reset_buffer_flags(tty
->disc_data
);
373 n_tty_kick_worker(tty
);
376 n_tty_packet_mode_flush(tty
);
377 up_write(&tty
->termios_rwsem
);
381 * is_utf8_continuation - utf8 multibyte check
384 * Returns true if the utf8 character 'c' is a multibyte continuation
385 * character. We use this to correctly compute the on screen size
386 * of the character when printing
389 static inline int is_utf8_continuation(unsigned char c
)
391 return (c
& 0xc0) == 0x80;
395 * is_continuation - multibyte check
398 * Returns true if the utf8 character 'c' is a multibyte continuation
399 * character and the terminal is in unicode mode.
402 static inline int is_continuation(unsigned char c
, struct tty_struct
*tty
)
404 return I_IUTF8(tty
) && is_utf8_continuation(c
);
408 * do_output_char - output one character
409 * @c: character (or partial unicode symbol)
410 * @tty: terminal device
411 * @space: space available in tty driver write buffer
413 * This is a helper function that handles one output character
414 * (including special characters like TAB, CR, LF, etc.),
415 * doing OPOST processing and putting the results in the
416 * tty driver's write buffer.
418 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
419 * and NLDLY. They simply aren't relevant in the world today.
420 * If you ever need them, add them here.
422 * Returns the number of bytes of buffer space used or -1 if
425 * Locking: should be called under the output_lock to protect
426 * the column state and space left in the buffer
429 static int do_output_char(unsigned char c
, struct tty_struct
*tty
, int space
)
431 struct n_tty_data
*ldata
= tty
->disc_data
;
444 ldata
->canon_column
= ldata
->column
= 0;
445 tty
->ops
->write(tty
, "\r\n", 2);
448 ldata
->canon_column
= ldata
->column
;
451 if (O_ONOCR(tty
) && ldata
->column
== 0)
456 ldata
->canon_column
= ldata
->column
= 0;
459 ldata
->canon_column
= ldata
->column
= 0;
462 spaces
= 8 - (ldata
->column
& 7);
463 if (O_TABDLY(tty
) == XTABS
) {
466 ldata
->column
+= spaces
;
467 tty
->ops
->write(tty
, " ", spaces
);
470 ldata
->column
+= spaces
;
473 if (ldata
->column
> 0)
480 if (!is_continuation(c
, tty
))
486 tty_put_char(tty
, c
);
491 * process_output - output post processor
492 * @c: character (or partial unicode symbol)
493 * @tty: terminal device
495 * Output one character with OPOST processing.
496 * Returns -1 when the output device is full and the character
499 * Locking: output_lock to protect column state and space left
500 * (also, this is called from n_tty_write under the
501 * tty layer write lock)
504 static int process_output(unsigned char c
, struct tty_struct
*tty
)
506 struct n_tty_data
*ldata
= tty
->disc_data
;
509 mutex_lock(&ldata
->output_lock
);
511 space
= tty_write_room(tty
);
512 retval
= do_output_char(c
, tty
, space
);
514 mutex_unlock(&ldata
->output_lock
);
522 * process_output_block - block post processor
523 * @tty: terminal device
524 * @buf: character buffer
525 * @nr: number of bytes to output
527 * Output a block of characters with OPOST processing.
528 * Returns the number of characters output.
530 * This path is used to speed up block console writes, among other
531 * things when processing blocks of output data. It handles only
532 * the simple cases normally found and helps to generate blocks of
533 * symbols for the console driver and thus improve performance.
535 * Locking: output_lock to protect column state and space left
536 * (also, this is called from n_tty_write under the
537 * tty layer write lock)
540 static ssize_t
process_output_block(struct tty_struct
*tty
,
541 const unsigned char *buf
, unsigned int nr
)
543 struct n_tty_data
*ldata
= tty
->disc_data
;
546 const unsigned char *cp
;
548 mutex_lock(&ldata
->output_lock
);
550 space
= tty_write_room(tty
);
552 mutex_unlock(&ldata
->output_lock
);
558 for (i
= 0, cp
= buf
; i
< nr
; i
++, cp
++) {
559 unsigned char c
= *cp
;
567 ldata
->canon_column
= ldata
->column
;
570 if (O_ONOCR(tty
) && ldata
->column
== 0)
574 ldata
->canon_column
= ldata
->column
= 0;
579 if (ldata
->column
> 0)
586 if (!is_continuation(c
, tty
))
593 i
= tty
->ops
->write(tty
, buf
, i
);
595 mutex_unlock(&ldata
->output_lock
);
600 * process_echoes - write pending echo characters
601 * @tty: terminal device
603 * Write previously buffered echo (and other ldisc-generated)
604 * characters to the tty.
606 * Characters generated by the ldisc (including echoes) need to
607 * be buffered because the driver's write buffer can fill during
608 * heavy program output. Echoing straight to the driver will
609 * often fail under these conditions, causing lost characters and
610 * resulting mismatches of ldisc state information.
612 * Since the ldisc state must represent the characters actually sent
613 * to the driver at the time of the write, operations like certain
614 * changes in column state are also saved in the buffer and executed
617 * A circular fifo buffer is used so that the most recent characters
618 * are prioritized. Also, when control characters are echoed with a
619 * prefixed "^", the pair is treated atomically and thus not separated.
621 * Locking: callers must hold output_lock
624 static size_t __process_echoes(struct tty_struct
*tty
)
626 struct n_tty_data
*ldata
= tty
->disc_data
;
627 int space
, old_space
;
631 old_space
= space
= tty_write_room(tty
);
633 tail
= ldata
->echo_tail
;
634 while (MASK(ldata
->echo_commit
) != MASK(tail
)) {
635 c
= echo_buf(ldata
, tail
);
636 if (c
== ECHO_OP_START
) {
638 int no_space_left
= 0;
641 * Since add_echo_byte() is called without holding
642 * output_lock, we might see only portion of multi-byte
645 if (MASK(ldata
->echo_commit
) == MASK(tail
+ 1))
648 * If the buffer byte is the start of a multi-byte
649 * operation, get the next byte, which is either the
650 * op code or a control character value.
652 op
= echo_buf(ldata
, tail
+ 1);
655 unsigned int num_chars
, num_bs
;
657 case ECHO_OP_ERASE_TAB
:
658 if (MASK(ldata
->echo_commit
) == MASK(tail
+ 2))
660 num_chars
= echo_buf(ldata
, tail
+ 2);
663 * Determine how many columns to go back
664 * in order to erase the tab.
665 * This depends on the number of columns
666 * used by other characters within the tab
667 * area. If this (modulo 8) count is from
668 * the start of input rather than from a
669 * previous tab, we offset by canon column.
670 * Otherwise, tab spacing is normal.
672 if (!(num_chars
& 0x80))
673 num_chars
+= ldata
->canon_column
;
674 num_bs
= 8 - (num_chars
& 7);
676 if (num_bs
> space
) {
682 tty_put_char(tty
, '\b');
683 if (ldata
->column
> 0)
689 case ECHO_OP_SET_CANON_COL
:
690 ldata
->canon_column
= ldata
->column
;
694 case ECHO_OP_MOVE_BACK_COL
:
695 if (ldata
->column
> 0)
701 /* This is an escaped echo op start code */
706 tty_put_char(tty
, ECHO_OP_START
);
714 * If the op is not a special byte code,
715 * it is a ctrl char tagged to be echoed
716 * as "^X" (where X is the letter
717 * representing the control char).
718 * Note that we must ensure there is
719 * enough space for the whole ctrl pair.
726 tty_put_char(tty
, '^');
727 tty_put_char(tty
, op
^ 0100);
737 int retval
= do_output_char(c
, tty
, space
);
744 tty_put_char(tty
, c
);
751 /* If the echo buffer is nearly full (so that the possibility exists
752 * of echo overrun before the next commit), then discard enough
753 * data at the tail to prevent a subsequent overrun */
754 while (ldata
->echo_commit
> tail
&&
755 ldata
->echo_commit
- tail
>= ECHO_DISCARD_WATERMARK
) {
756 if (echo_buf(ldata
, tail
) == ECHO_OP_START
) {
757 if (echo_buf(ldata
, tail
+ 1) == ECHO_OP_ERASE_TAB
)
766 ldata
->echo_tail
= tail
;
767 return old_space
- space
;
770 static void commit_echoes(struct tty_struct
*tty
)
772 struct n_tty_data
*ldata
= tty
->disc_data
;
773 size_t nr
, old
, echoed
;
776 mutex_lock(&ldata
->output_lock
);
777 head
= ldata
->echo_head
;
778 ldata
->echo_mark
= head
;
779 old
= ldata
->echo_commit
- ldata
->echo_tail
;
781 /* Process committed echoes if the accumulated # of bytes
782 * is over the threshold (and try again each time another
783 * block is accumulated) */
784 nr
= head
- ldata
->echo_tail
;
785 if (nr
< ECHO_COMMIT_WATERMARK
||
786 (nr
% ECHO_BLOCK
> old
% ECHO_BLOCK
)) {
787 mutex_unlock(&ldata
->output_lock
);
791 ldata
->echo_commit
= head
;
792 echoed
= __process_echoes(tty
);
793 mutex_unlock(&ldata
->output_lock
);
795 if (echoed
&& tty
->ops
->flush_chars
)
796 tty
->ops
->flush_chars(tty
);
799 static void process_echoes(struct tty_struct
*tty
)
801 struct n_tty_data
*ldata
= tty
->disc_data
;
804 if (ldata
->echo_mark
== ldata
->echo_tail
)
807 mutex_lock(&ldata
->output_lock
);
808 ldata
->echo_commit
= ldata
->echo_mark
;
809 echoed
= __process_echoes(tty
);
810 mutex_unlock(&ldata
->output_lock
);
812 if (echoed
&& tty
->ops
->flush_chars
)
813 tty
->ops
->flush_chars(tty
);
816 /* NB: echo_mark and echo_head should be equivalent here */
817 static void flush_echoes(struct tty_struct
*tty
)
819 struct n_tty_data
*ldata
= tty
->disc_data
;
821 if ((!L_ECHO(tty
) && !L_ECHONL(tty
)) ||
822 ldata
->echo_commit
== ldata
->echo_head
)
825 mutex_lock(&ldata
->output_lock
);
826 ldata
->echo_commit
= ldata
->echo_head
;
827 __process_echoes(tty
);
828 mutex_unlock(&ldata
->output_lock
);
832 * add_echo_byte - add a byte to the echo buffer
833 * @c: unicode byte to echo
836 * Add a character or operation byte to the echo buffer.
839 static inline void add_echo_byte(unsigned char c
, struct n_tty_data
*ldata
)
841 *echo_buf_addr(ldata
, ldata
->echo_head
) = c
;
842 smp_wmb(); /* Matches smp_rmb() in echo_buf(). */
847 * echo_move_back_col - add operation to move back a column
850 * Add an operation to the echo buffer to move back one column.
853 static void echo_move_back_col(struct n_tty_data
*ldata
)
855 add_echo_byte(ECHO_OP_START
, ldata
);
856 add_echo_byte(ECHO_OP_MOVE_BACK_COL
, ldata
);
860 * echo_set_canon_col - add operation to set the canon column
863 * Add an operation to the echo buffer to set the canon column
864 * to the current column.
867 static void echo_set_canon_col(struct n_tty_data
*ldata
)
869 add_echo_byte(ECHO_OP_START
, ldata
);
870 add_echo_byte(ECHO_OP_SET_CANON_COL
, ldata
);
874 * echo_erase_tab - add operation to erase a tab
875 * @num_chars: number of character columns already used
876 * @after_tab: true if num_chars starts after a previous tab
879 * Add an operation to the echo buffer to erase a tab.
881 * Called by the eraser function, which knows how many character
882 * columns have been used since either a previous tab or the start
883 * of input. This information will be used later, along with
884 * canon column (if applicable), to go back the correct number
888 static void echo_erase_tab(unsigned int num_chars
, int after_tab
,
889 struct n_tty_data
*ldata
)
891 add_echo_byte(ECHO_OP_START
, ldata
);
892 add_echo_byte(ECHO_OP_ERASE_TAB
, ldata
);
894 /* We only need to know this modulo 8 (tab spacing) */
897 /* Set the high bit as a flag if num_chars is after a previous tab */
901 add_echo_byte(num_chars
, ldata
);
905 * echo_char_raw - echo a character raw
906 * @c: unicode byte to echo
907 * @tty: terminal device
909 * Echo user input back onto the screen. This must be called only when
910 * L_ECHO(tty) is true. Called from the driver receive_buf path.
912 * This variant does not treat control characters specially.
915 static void echo_char_raw(unsigned char c
, struct n_tty_data
*ldata
)
917 if (c
== ECHO_OP_START
) {
918 add_echo_byte(ECHO_OP_START
, ldata
);
919 add_echo_byte(ECHO_OP_START
, ldata
);
921 add_echo_byte(c
, ldata
);
926 * echo_char - echo a character
927 * @c: unicode byte to echo
928 * @tty: terminal device
930 * Echo user input back onto the screen. This must be called only when
931 * L_ECHO(tty) is true. Called from the driver receive_buf path.
933 * This variant tags control characters to be echoed as "^X"
934 * (where X is the letter representing the control char).
937 static void echo_char(unsigned char c
, struct tty_struct
*tty
)
939 struct n_tty_data
*ldata
= tty
->disc_data
;
941 if (c
== ECHO_OP_START
) {
942 add_echo_byte(ECHO_OP_START
, ldata
);
943 add_echo_byte(ECHO_OP_START
, ldata
);
945 if (L_ECHOCTL(tty
) && iscntrl(c
) && c
!= '\t')
946 add_echo_byte(ECHO_OP_START
, ldata
);
947 add_echo_byte(c
, ldata
);
952 * finish_erasing - complete erase
956 static inline void finish_erasing(struct n_tty_data
*ldata
)
958 if (ldata
->erasing
) {
959 echo_char_raw('/', ldata
);
965 * eraser - handle erase function
966 * @c: character input
967 * @tty: terminal device
969 * Perform erase and necessary output when an erase character is
970 * present in the stream from the driver layer. Handles the complexities
971 * of UTF-8 multibyte symbols.
973 * n_tty_receive_buf()/producer path:
974 * caller holds non-exclusive termios_rwsem
977 static void eraser(unsigned char c
, struct tty_struct
*tty
)
979 struct n_tty_data
*ldata
= tty
->disc_data
;
980 enum { ERASE
, WERASE
, KILL
} kill_type
;
985 if (ldata
->read_head
== ldata
->canon_head
) {
986 /* process_output('\a', tty); */ /* what do you think? */
989 if (c
== ERASE_CHAR(tty
))
991 else if (c
== WERASE_CHAR(tty
))
995 ldata
->read_head
= ldata
->canon_head
;
998 if (!L_ECHOK(tty
) || !L_ECHOKE(tty
) || !L_ECHOE(tty
)) {
999 ldata
->read_head
= ldata
->canon_head
;
1000 finish_erasing(ldata
);
1001 echo_char(KILL_CHAR(tty
), tty
);
1002 /* Add a newline if ECHOK is on and ECHOKE is off. */
1004 echo_char_raw('\n', ldata
);
1011 while (MASK(ldata
->read_head
) != MASK(ldata
->canon_head
)) {
1012 head
= ldata
->read_head
;
1014 /* erase a single possibly multibyte character */
1017 c
= read_buf(ldata
, head
);
1018 } while (is_continuation(c
, tty
) &&
1019 MASK(head
) != MASK(ldata
->canon_head
));
1021 /* do not partially erase */
1022 if (is_continuation(c
, tty
))
1025 if (kill_type
== WERASE
) {
1026 /* Equivalent to BSD's ALTWERASE. */
1027 if (isalnum(c
) || c
== '_')
1029 else if (seen_alnums
)
1032 cnt
= ldata
->read_head
- head
;
1033 ldata
->read_head
= head
;
1035 if (L_ECHOPRT(tty
)) {
1036 if (!ldata
->erasing
) {
1037 echo_char_raw('\\', ldata
);
1040 /* if cnt > 1, output a multi-byte character */
1044 echo_char_raw(read_buf(ldata
, head
), ldata
);
1045 echo_move_back_col(ldata
);
1047 } else if (kill_type
== ERASE
&& !L_ECHOE(tty
)) {
1048 echo_char(ERASE_CHAR(tty
), tty
);
1049 } else if (c
== '\t') {
1050 unsigned int num_chars
= 0;
1052 size_t tail
= ldata
->read_head
;
1055 * Count the columns used for characters
1056 * since the start of input or after a
1058 * This info is used to go back the correct
1059 * number of columns.
1061 while (MASK(tail
) != MASK(ldata
->canon_head
)) {
1063 c
= read_buf(ldata
, tail
);
1067 } else if (iscntrl(c
)) {
1070 } else if (!is_continuation(c
, tty
)) {
1074 echo_erase_tab(num_chars
, after_tab
, ldata
);
1076 if (iscntrl(c
) && L_ECHOCTL(tty
)) {
1077 echo_char_raw('\b', ldata
);
1078 echo_char_raw(' ', ldata
);
1079 echo_char_raw('\b', ldata
);
1081 if (!iscntrl(c
) || L_ECHOCTL(tty
)) {
1082 echo_char_raw('\b', ldata
);
1083 echo_char_raw(' ', ldata
);
1084 echo_char_raw('\b', ldata
);
1088 if (kill_type
== ERASE
)
1091 if (ldata
->read_head
== ldata
->canon_head
&& L_ECHO(tty
))
1092 finish_erasing(ldata
);
1096 * isig - handle the ISIG optio
1100 * Called when a signal is being sent due to terminal input.
1101 * Called from the driver receive_buf path so serialized.
1103 * Performs input and output flush if !NOFLSH. In this context, the echo
1104 * buffer is 'output'. The signal is processed first to alert any current
1105 * readers or writers to discontinue and exit their i/o loops.
1107 * Locking: ctrl_lock
1110 static void __isig(int sig
, struct tty_struct
*tty
)
1112 struct pid
*tty_pgrp
= tty_get_pgrp(tty
);
1114 kill_pgrp(tty_pgrp
, sig
, 1);
1119 static void isig(int sig
, struct tty_struct
*tty
)
1121 struct n_tty_data
*ldata
= tty
->disc_data
;
1123 if (L_NOFLSH(tty
)) {
1127 } else { /* signal and flush */
1128 up_read(&tty
->termios_rwsem
);
1129 down_write(&tty
->termios_rwsem
);
1133 /* clear echo buffer */
1134 mutex_lock(&ldata
->output_lock
);
1135 ldata
->echo_head
= ldata
->echo_tail
= 0;
1136 ldata
->echo_mark
= ldata
->echo_commit
= 0;
1137 mutex_unlock(&ldata
->output_lock
);
1139 /* clear output buffer */
1140 tty_driver_flush_buffer(tty
);
1142 /* clear input buffer */
1143 reset_buffer_flags(tty
->disc_data
);
1145 /* notify pty master of flush */
1147 n_tty_packet_mode_flush(tty
);
1149 up_write(&tty
->termios_rwsem
);
1150 down_read(&tty
->termios_rwsem
);
1155 * n_tty_receive_break - handle break
1158 * An RS232 break event has been hit in the incoming bitstream. This
1159 * can cause a variety of events depending upon the termios settings.
1161 * n_tty_receive_buf()/producer path:
1162 * caller holds non-exclusive termios_rwsem
1164 * Note: may get exclusive termios_rwsem if flushing input buffer
1167 static void n_tty_receive_break(struct tty_struct
*tty
)
1169 struct n_tty_data
*ldata
= tty
->disc_data
;
1173 if (I_BRKINT(tty
)) {
1177 if (I_PARMRK(tty
)) {
1178 put_tty_queue('\377', ldata
);
1179 put_tty_queue('\0', ldata
);
1181 put_tty_queue('\0', ldata
);
1185 * n_tty_receive_overrun - handle overrun reporting
1188 * Data arrived faster than we could process it. While the tty
1189 * driver has flagged this the bits that were missed are gone
1192 * Called from the receive_buf path so single threaded. Does not
1193 * need locking as num_overrun and overrun_time are function
1197 static void n_tty_receive_overrun(struct tty_struct
*tty
)
1199 struct n_tty_data
*ldata
= tty
->disc_data
;
1201 ldata
->num_overrun
++;
1202 if (time_after(jiffies
, ldata
->overrun_time
+ HZ
) ||
1203 time_after(ldata
->overrun_time
, jiffies
)) {
1204 tty_warn(tty
, "%d input overrun(s)\n", ldata
->num_overrun
);
1205 ldata
->overrun_time
= jiffies
;
1206 ldata
->num_overrun
= 0;
1211 * n_tty_receive_parity_error - error notifier
1212 * @tty: terminal device
1215 * Process a parity error and queue the right data to indicate
1216 * the error case if necessary.
1218 * n_tty_receive_buf()/producer path:
1219 * caller holds non-exclusive termios_rwsem
1221 static void n_tty_receive_parity_error(struct tty_struct
*tty
, unsigned char c
)
1223 struct n_tty_data
*ldata
= tty
->disc_data
;
1228 if (I_PARMRK(tty
)) {
1229 put_tty_queue('\377', ldata
);
1230 put_tty_queue('\0', ldata
);
1231 put_tty_queue(c
, ldata
);
1233 put_tty_queue('\0', ldata
);
1235 put_tty_queue(c
, ldata
);
1239 n_tty_receive_signal_char(struct tty_struct
*tty
, int signal
, unsigned char c
)
1248 process_echoes(tty
);
1253 * n_tty_receive_char - perform processing
1254 * @tty: terminal device
1257 * Process an individual character of input received from the driver.
1258 * This is serialized with respect to itself by the rules for the
1261 * n_tty_receive_buf()/producer path:
1262 * caller holds non-exclusive termios_rwsem
1263 * publishes canon_head if canonical mode is active
1265 * Returns 1 if LNEXT was received, else returns 0
1269 n_tty_receive_char_special(struct tty_struct
*tty
, unsigned char c
)
1271 struct n_tty_data
*ldata
= tty
->disc_data
;
1274 if (c
== START_CHAR(tty
)) {
1276 process_echoes(tty
);
1279 if (c
== STOP_CHAR(tty
)) {
1286 if (c
== INTR_CHAR(tty
)) {
1287 n_tty_receive_signal_char(tty
, SIGINT
, c
);
1289 } else if (c
== QUIT_CHAR(tty
)) {
1290 n_tty_receive_signal_char(tty
, SIGQUIT
, c
);
1292 } else if (c
== SUSP_CHAR(tty
)) {
1293 n_tty_receive_signal_char(tty
, SIGTSTP
, c
);
1298 if (tty
->stopped
&& !tty
->flow_stopped
&& I_IXON(tty
) && I_IXANY(tty
)) {
1300 process_echoes(tty
);
1308 } else if (c
== '\n' && I_INLCR(tty
))
1311 if (ldata
->icanon
) {
1312 if (c
== ERASE_CHAR(tty
) || c
== KILL_CHAR(tty
) ||
1313 (c
== WERASE_CHAR(tty
) && L_IEXTEN(tty
))) {
1318 if (c
== LNEXT_CHAR(tty
) && L_IEXTEN(tty
)) {
1321 finish_erasing(ldata
);
1322 if (L_ECHOCTL(tty
)) {
1323 echo_char_raw('^', ldata
);
1324 echo_char_raw('\b', ldata
);
1330 if (c
== REPRINT_CHAR(tty
) && L_ECHO(tty
) && L_IEXTEN(tty
)) {
1331 size_t tail
= ldata
->canon_head
;
1333 finish_erasing(ldata
);
1335 echo_char_raw('\n', ldata
);
1336 while (MASK(tail
) != MASK(ldata
->read_head
)) {
1337 echo_char(read_buf(ldata
, tail
), tty
);
1344 if (L_ECHO(tty
) || L_ECHONL(tty
)) {
1345 echo_char_raw('\n', ldata
);
1348 goto handle_newline
;
1350 if (c
== EOF_CHAR(tty
)) {
1351 c
= __DISABLED_CHAR
;
1352 goto handle_newline
;
1354 if ((c
== EOL_CHAR(tty
)) ||
1355 (c
== EOL2_CHAR(tty
) && L_IEXTEN(tty
))) {
1357 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1360 /* Record the column of first canon char. */
1361 if (ldata
->canon_head
== ldata
->read_head
)
1362 echo_set_canon_col(ldata
);
1367 * XXX does PARMRK doubling happen for
1368 * EOL_CHAR and EOL2_CHAR?
1370 if (c
== (unsigned char) '\377' && I_PARMRK(tty
))
1371 put_tty_queue(c
, ldata
);
1374 set_bit(ldata
->read_head
& (N_TTY_BUF_SIZE
- 1), ldata
->read_flags
);
1375 put_tty_queue(c
, ldata
);
1376 smp_store_release(&ldata
->canon_head
, ldata
->read_head
);
1377 kill_fasync(&tty
->fasync
, SIGIO
, POLL_IN
);
1378 wake_up_interruptible_poll(&tty
->read_wait
, EPOLLIN
);
1384 finish_erasing(ldata
);
1386 echo_char_raw('\n', ldata
);
1388 /* Record the column of first canon char. */
1389 if (ldata
->canon_head
== ldata
->read_head
)
1390 echo_set_canon_col(ldata
);
1396 /* PARMRK doubling check */
1397 if (c
== (unsigned char) '\377' && I_PARMRK(tty
))
1398 put_tty_queue(c
, ldata
);
1400 put_tty_queue(c
, ldata
);
1405 n_tty_receive_char_inline(struct tty_struct
*tty
, unsigned char c
)
1407 struct n_tty_data
*ldata
= tty
->disc_data
;
1409 if (tty
->stopped
&& !tty
->flow_stopped
&& I_IXON(tty
) && I_IXANY(tty
)) {
1411 process_echoes(tty
);
1414 finish_erasing(ldata
);
1415 /* Record the column of first canon char. */
1416 if (ldata
->canon_head
== ldata
->read_head
)
1417 echo_set_canon_col(ldata
);
1421 /* PARMRK doubling check */
1422 if (c
== (unsigned char) '\377' && I_PARMRK(tty
))
1423 put_tty_queue(c
, ldata
);
1424 put_tty_queue(c
, ldata
);
1427 static void n_tty_receive_char(struct tty_struct
*tty
, unsigned char c
)
1429 n_tty_receive_char_inline(tty
, c
);
1433 n_tty_receive_char_fast(struct tty_struct
*tty
, unsigned char c
)
1435 struct n_tty_data
*ldata
= tty
->disc_data
;
1437 if (tty
->stopped
&& !tty
->flow_stopped
&& I_IXON(tty
) && I_IXANY(tty
)) {
1439 process_echoes(tty
);
1442 finish_erasing(ldata
);
1443 /* Record the column of first canon char. */
1444 if (ldata
->canon_head
== ldata
->read_head
)
1445 echo_set_canon_col(ldata
);
1449 put_tty_queue(c
, ldata
);
1452 static void n_tty_receive_char_closing(struct tty_struct
*tty
, unsigned char c
)
1456 if (I_IUCLC(tty
) && L_IEXTEN(tty
))
1460 if (c
== STOP_CHAR(tty
))
1462 else if (c
== START_CHAR(tty
) ||
1463 (tty
->stopped
&& !tty
->flow_stopped
&& I_IXANY(tty
) &&
1464 c
!= INTR_CHAR(tty
) && c
!= QUIT_CHAR(tty
) &&
1465 c
!= SUSP_CHAR(tty
))) {
1467 process_echoes(tty
);
1473 n_tty_receive_char_flagged(struct tty_struct
*tty
, unsigned char c
, char flag
)
1477 n_tty_receive_break(tty
);
1481 n_tty_receive_parity_error(tty
, c
);
1484 n_tty_receive_overrun(tty
);
1487 tty_err(tty
, "unknown flag %d\n", flag
);
1493 n_tty_receive_char_lnext(struct tty_struct
*tty
, unsigned char c
, char flag
)
1495 struct n_tty_data
*ldata
= tty
->disc_data
;
1498 if (likely(flag
== TTY_NORMAL
)) {
1501 if (I_IUCLC(tty
) && L_IEXTEN(tty
))
1503 n_tty_receive_char(tty
, c
);
1505 n_tty_receive_char_flagged(tty
, c
, flag
);
1509 n_tty_receive_buf_real_raw(struct tty_struct
*tty
, const unsigned char *cp
,
1510 char *fp
, int count
)
1512 struct n_tty_data
*ldata
= tty
->disc_data
;
1515 head
= ldata
->read_head
& (N_TTY_BUF_SIZE
- 1);
1516 n
= min_t(size_t, count
, N_TTY_BUF_SIZE
- head
);
1517 memcpy(read_buf_addr(ldata
, head
), cp
, n
);
1518 ldata
->read_head
+= n
;
1522 head
= ldata
->read_head
& (N_TTY_BUF_SIZE
- 1);
1523 n
= min_t(size_t, count
, N_TTY_BUF_SIZE
- head
);
1524 memcpy(read_buf_addr(ldata
, head
), cp
, n
);
1525 ldata
->read_head
+= n
;
1529 n_tty_receive_buf_raw(struct tty_struct
*tty
, const unsigned char *cp
,
1530 char *fp
, int count
)
1532 struct n_tty_data
*ldata
= tty
->disc_data
;
1533 char flag
= TTY_NORMAL
;
1538 if (likely(flag
== TTY_NORMAL
))
1539 put_tty_queue(*cp
++, ldata
);
1541 n_tty_receive_char_flagged(tty
, *cp
++, flag
);
1546 n_tty_receive_buf_closing(struct tty_struct
*tty
, const unsigned char *cp
,
1547 char *fp
, int count
)
1549 char flag
= TTY_NORMAL
;
1554 if (likely(flag
== TTY_NORMAL
))
1555 n_tty_receive_char_closing(tty
, *cp
++);
1560 n_tty_receive_buf_standard(struct tty_struct
*tty
, const unsigned char *cp
,
1561 char *fp
, int count
)
1563 struct n_tty_data
*ldata
= tty
->disc_data
;
1564 char flag
= TTY_NORMAL
;
1569 if (likely(flag
== TTY_NORMAL
)) {
1570 unsigned char c
= *cp
++;
1574 if (I_IUCLC(tty
) && L_IEXTEN(tty
))
1576 if (L_EXTPROC(tty
)) {
1577 put_tty_queue(c
, ldata
);
1580 if (!test_bit(c
, ldata
->char_map
))
1581 n_tty_receive_char_inline(tty
, c
);
1582 else if (n_tty_receive_char_special(tty
, c
) && count
) {
1585 n_tty_receive_char_lnext(tty
, *cp
++, flag
);
1589 n_tty_receive_char_flagged(tty
, *cp
++, flag
);
1594 n_tty_receive_buf_fast(struct tty_struct
*tty
, const unsigned char *cp
,
1595 char *fp
, int count
)
1597 struct n_tty_data
*ldata
= tty
->disc_data
;
1598 char flag
= TTY_NORMAL
;
1603 if (likely(flag
== TTY_NORMAL
)) {
1604 unsigned char c
= *cp
++;
1606 if (!test_bit(c
, ldata
->char_map
))
1607 n_tty_receive_char_fast(tty
, c
);
1608 else if (n_tty_receive_char_special(tty
, c
) && count
) {
1611 n_tty_receive_char_lnext(tty
, *cp
++, flag
);
1615 n_tty_receive_char_flagged(tty
, *cp
++, flag
);
1619 static void __receive_buf(struct tty_struct
*tty
, const unsigned char *cp
,
1620 char *fp
, int count
)
1622 struct n_tty_data
*ldata
= tty
->disc_data
;
1623 bool preops
= I_ISTRIP(tty
) || (I_IUCLC(tty
) && L_IEXTEN(tty
));
1625 if (ldata
->real_raw
)
1626 n_tty_receive_buf_real_raw(tty
, cp
, fp
, count
);
1627 else if (ldata
->raw
|| (L_EXTPROC(tty
) && !preops
))
1628 n_tty_receive_buf_raw(tty
, cp
, fp
, count
);
1629 else if (tty
->closing
&& !L_EXTPROC(tty
))
1630 n_tty_receive_buf_closing(tty
, cp
, fp
, count
);
1633 char flag
= TTY_NORMAL
;
1637 n_tty_receive_char_lnext(tty
, *cp
++, flag
);
1641 if (!preops
&& !I_PARMRK(tty
))
1642 n_tty_receive_buf_fast(tty
, cp
, fp
, count
);
1644 n_tty_receive_buf_standard(tty
, cp
, fp
, count
);
1647 if (tty
->ops
->flush_chars
)
1648 tty
->ops
->flush_chars(tty
);
1651 if (ldata
->icanon
&& !L_EXTPROC(tty
))
1654 /* publish read_head to consumer */
1655 smp_store_release(&ldata
->commit_head
, ldata
->read_head
);
1657 if (read_cnt(ldata
)) {
1658 kill_fasync(&tty
->fasync
, SIGIO
, POLL_IN
);
1659 wake_up_interruptible_poll(&tty
->read_wait
, EPOLLIN
);
1664 * n_tty_receive_buf_common - process input
1665 * @tty: device to receive input
1667 * @fp: flags for each char (if NULL, all chars are TTY_NORMAL)
1668 * @count: number of input chars in @cp
1670 * Called by the terminal driver when a block of characters has
1671 * been received. This function must be called from soft contexts
1672 * not from interrupt context. The driver is responsible for making
1673 * calls one at a time and in order (or using flush_to_ldisc)
1675 * Returns the # of input chars from @cp which were processed.
1677 * In canonical mode, the maximum line length is 4096 chars (including
1678 * the line termination char); lines longer than 4096 chars are
1679 * truncated. After 4095 chars, input data is still processed but
1680 * not stored. Overflow processing ensures the tty can always
1681 * receive more input until at least one line can be read.
1683 * In non-canonical mode, the read buffer will only accept 4095 chars;
1684 * this provides the necessary space for a newline char if the input
1685 * mode is switched to canonical.
1687 * Note it is possible for the read buffer to _contain_ 4096 chars
1688 * in non-canonical mode: the read buffer could already contain the
1689 * maximum canon line of 4096 chars when the mode is switched to
1692 * n_tty_receive_buf()/producer path:
1693 * claims non-exclusive termios_rwsem
1694 * publishes commit_head or canon_head
1697 n_tty_receive_buf_common(struct tty_struct
*tty
, const unsigned char *cp
,
1698 char *fp
, int count
, int flow
)
1700 struct n_tty_data
*ldata
= tty
->disc_data
;
1701 int room
, n
, rcvd
= 0, overflow
;
1703 down_read(&tty
->termios_rwsem
);
1707 * When PARMRK is set, each input char may take up to 3 chars
1708 * in the read buf; reduce the buffer space avail by 3x
1710 * If we are doing input canonicalization, and there are no
1711 * pending newlines, let characters through without limit, so
1712 * that erase characters will be handled. Other excess
1713 * characters will be beeped.
1715 * paired with store in *_copy_from_read_buf() -- guarantees
1716 * the consumer has loaded the data in read_buf up to the new
1717 * read_tail (so this producer will not overwrite unread data)
1719 size_t tail
= smp_load_acquire(&ldata
->read_tail
);
1721 room
= N_TTY_BUF_SIZE
- (ldata
->read_head
- tail
);
1723 room
= (room
+ 2) / 3;
1726 overflow
= ldata
->icanon
&& ldata
->canon_head
== tail
;
1727 if (overflow
&& room
< 0)
1730 ldata
->no_room
= flow
&& !room
;
1734 n
= min(count
, room
);
1738 /* ignore parity errors if handling overflow */
1739 if (!overflow
|| !fp
|| *fp
!= TTY_PARITY
)
1740 __receive_buf(tty
, cp
, fp
, n
);
1747 } while (!test_bit(TTY_LDISC_CHANGING
, &tty
->flags
));
1749 tty
->receive_room
= room
;
1751 /* Unthrottle if handling overflow on pty */
1752 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
) {
1754 tty_set_flow_change(tty
, TTY_UNTHROTTLE_SAFE
);
1755 tty_unthrottle_safe(tty
);
1756 __tty_set_flow_change(tty
, 0);
1759 n_tty_check_throttle(tty
);
1761 up_read(&tty
->termios_rwsem
);
1766 static void n_tty_receive_buf(struct tty_struct
*tty
, const unsigned char *cp
,
1767 char *fp
, int count
)
1769 n_tty_receive_buf_common(tty
, cp
, fp
, count
, 0);
1772 static int n_tty_receive_buf2(struct tty_struct
*tty
, const unsigned char *cp
,
1773 char *fp
, int count
)
1775 return n_tty_receive_buf_common(tty
, cp
, fp
, count
, 1);
1779 * n_tty_set_termios - termios data changed
1781 * @old: previous data
1783 * Called by the tty layer when the user changes termios flags so
1784 * that the line discipline can plan ahead. This function cannot sleep
1785 * and is protected from re-entry by the tty layer. The user is
1786 * guaranteed that this function will not be re-entered or in progress
1787 * when the ldisc is closed.
1789 * Locking: Caller holds tty->termios_rwsem
1792 static void n_tty_set_termios(struct tty_struct
*tty
, struct ktermios
*old
)
1794 struct n_tty_data
*ldata
= tty
->disc_data
;
1796 if (!old
|| (old
->c_lflag
^ tty
->termios
.c_lflag
) & (ICANON
| EXTPROC
)) {
1797 bitmap_zero(ldata
->read_flags
, N_TTY_BUF_SIZE
);
1798 ldata
->line_start
= ldata
->read_tail
;
1799 if (!L_ICANON(tty
) || !read_cnt(ldata
)) {
1800 ldata
->canon_head
= ldata
->read_tail
;
1803 set_bit((ldata
->read_head
- 1) & (N_TTY_BUF_SIZE
- 1),
1805 ldata
->canon_head
= ldata
->read_head
;
1808 ldata
->commit_head
= ldata
->read_head
;
1813 ldata
->icanon
= (L_ICANON(tty
) != 0);
1815 if (I_ISTRIP(tty
) || I_IUCLC(tty
) || I_IGNCR(tty
) ||
1816 I_ICRNL(tty
) || I_INLCR(tty
) || L_ICANON(tty
) ||
1817 I_IXON(tty
) || L_ISIG(tty
) || L_ECHO(tty
) ||
1819 bitmap_zero(ldata
->char_map
, 256);
1821 if (I_IGNCR(tty
) || I_ICRNL(tty
))
1822 set_bit('\r', ldata
->char_map
);
1824 set_bit('\n', ldata
->char_map
);
1826 if (L_ICANON(tty
)) {
1827 set_bit(ERASE_CHAR(tty
), ldata
->char_map
);
1828 set_bit(KILL_CHAR(tty
), ldata
->char_map
);
1829 set_bit(EOF_CHAR(tty
), ldata
->char_map
);
1830 set_bit('\n', ldata
->char_map
);
1831 set_bit(EOL_CHAR(tty
), ldata
->char_map
);
1832 if (L_IEXTEN(tty
)) {
1833 set_bit(WERASE_CHAR(tty
), ldata
->char_map
);
1834 set_bit(LNEXT_CHAR(tty
), ldata
->char_map
);
1835 set_bit(EOL2_CHAR(tty
), ldata
->char_map
);
1837 set_bit(REPRINT_CHAR(tty
),
1842 set_bit(START_CHAR(tty
), ldata
->char_map
);
1843 set_bit(STOP_CHAR(tty
), ldata
->char_map
);
1846 set_bit(INTR_CHAR(tty
), ldata
->char_map
);
1847 set_bit(QUIT_CHAR(tty
), ldata
->char_map
);
1848 set_bit(SUSP_CHAR(tty
), ldata
->char_map
);
1850 clear_bit(__DISABLED_CHAR
, ldata
->char_map
);
1852 ldata
->real_raw
= 0;
1855 if ((I_IGNBRK(tty
) || (!I_BRKINT(tty
) && !I_PARMRK(tty
))) &&
1856 (I_IGNPAR(tty
) || !I_INPCK(tty
)) &&
1857 (tty
->driver
->flags
& TTY_DRIVER_REAL_RAW
))
1858 ldata
->real_raw
= 1;
1860 ldata
->real_raw
= 0;
1863 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1864 * been stopped by STOP_CHAR(tty) before it.
1866 if (!I_IXON(tty
) && old
&& (old
->c_iflag
& IXON
) && !tty
->flow_stopped
) {
1868 process_echoes(tty
);
1871 /* The termios change make the tty ready for I/O */
1872 wake_up_interruptible(&tty
->write_wait
);
1873 wake_up_interruptible(&tty
->read_wait
);
1877 * n_tty_close - close the ldisc for this tty
1880 * Called from the terminal layer when this line discipline is
1881 * being shut down, either because of a close or becsuse of a
1882 * discipline change. The function will not be called while other
1883 * ldisc methods are in progress.
1886 static void n_tty_close(struct tty_struct
*tty
)
1888 struct n_tty_data
*ldata
= tty
->disc_data
;
1891 n_tty_packet_mode_flush(tty
);
1894 tty
->disc_data
= NULL
;
1898 * n_tty_open - open an ldisc
1899 * @tty: terminal to open
1901 * Called when this line discipline is being attached to the
1902 * terminal device. Can sleep. Called serialized so that no
1903 * other events will occur in parallel. No further open will occur
1907 static int n_tty_open(struct tty_struct
*tty
)
1909 struct n_tty_data
*ldata
;
1911 /* Currently a malloc failure here can panic */
1912 ldata
= vzalloc(sizeof(*ldata
));
1916 ldata
->overrun_time
= jiffies
;
1917 mutex_init(&ldata
->atomic_read_lock
);
1918 mutex_init(&ldata
->output_lock
);
1920 tty
->disc_data
= ldata
;
1922 /* indicate buffer work may resume */
1923 clear_bit(TTY_LDISC_HALTED
, &tty
->flags
);
1924 n_tty_set_termios(tty
, NULL
);
1925 tty_unthrottle(tty
);
1929 static inline int input_available_p(struct tty_struct
*tty
, int poll
)
1931 struct n_tty_data
*ldata
= tty
->disc_data
;
1932 int amt
= poll
&& !TIME_CHAR(tty
) && MIN_CHAR(tty
) ? MIN_CHAR(tty
) : 1;
1934 if (ldata
->icanon
&& !L_EXTPROC(tty
))
1935 return ldata
->canon_head
!= ldata
->read_tail
;
1937 return ldata
->commit_head
- ldata
->read_tail
>= amt
;
1941 * copy_from_read_buf - copy read data directly
1942 * @tty: terminal device
1946 * Helper function to speed up n_tty_read. It is only called when
1947 * ICANON is off; it copies characters straight from the tty queue to
1948 * user space directly. It can be profitably called twice; once to
1949 * drain the space from the tail pointer to the (physical) end of the
1950 * buffer, and once to drain the space from the (physical) beginning of
1951 * the buffer to head pointer.
1953 * Called under the ldata->atomic_read_lock sem
1955 * n_tty_read()/consumer path:
1956 * caller holds non-exclusive termios_rwsem
1957 * read_tail published
1960 static int copy_from_read_buf(struct tty_struct
*tty
,
1961 unsigned char __user
**b
,
1965 struct n_tty_data
*ldata
= tty
->disc_data
;
1969 size_t head
= smp_load_acquire(&ldata
->commit_head
);
1970 size_t tail
= ldata
->read_tail
& (N_TTY_BUF_SIZE
- 1);
1973 n
= min(head
- ldata
->read_tail
, N_TTY_BUF_SIZE
- tail
);
1976 unsigned char *from
= read_buf_addr(ldata
, tail
);
1977 retval
= copy_to_user(*b
, from
, n
);
1979 is_eof
= n
== 1 && *from
== EOF_CHAR(tty
);
1980 tty_audit_add_data(tty
, from
, n
);
1981 zero_buffer(tty
, from
, n
);
1982 smp_store_release(&ldata
->read_tail
, ldata
->read_tail
+ n
);
1983 /* Turn single EOF into zero-length read */
1984 if (L_EXTPROC(tty
) && ldata
->icanon
&& is_eof
&&
1985 (head
== ldata
->read_tail
))
1994 * canon_copy_from_read_buf - copy read data in canonical mode
1995 * @tty: terminal device
1999 * Helper function for n_tty_read. It is only called when ICANON is on;
2000 * it copies one line of input up to and including the line-delimiting
2001 * character into the user-space buffer.
2003 * NB: When termios is changed from non-canonical to canonical mode and
2004 * the read buffer contains data, n_tty_set_termios() simulates an EOF
2005 * push (as if C-d were input) _without_ the DISABLED_CHAR in the buffer.
2006 * This causes data already processed as input to be immediately available
2007 * as input although a newline has not been received.
2009 * Called under the atomic_read_lock mutex
2011 * n_tty_read()/consumer path:
2012 * caller holds non-exclusive termios_rwsem
2013 * read_tail published
2016 static int canon_copy_from_read_buf(struct tty_struct
*tty
,
2017 unsigned char __user
**b
,
2020 struct n_tty_data
*ldata
= tty
->disc_data
;
2021 size_t n
, size
, more
, c
;
2026 /* N.B. avoid overrun if nr == 0 */
2030 n
= min(*nr
+ 1, smp_load_acquire(&ldata
->canon_head
) - ldata
->read_tail
);
2032 tail
= ldata
->read_tail
& (N_TTY_BUF_SIZE
- 1);
2033 size
= min_t(size_t, tail
+ n
, N_TTY_BUF_SIZE
);
2035 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
2036 __func__
, *nr
, tail
, n
, size
);
2038 eol
= find_next_bit(ldata
->read_flags
, size
, tail
);
2039 more
= n
- (size
- tail
);
2040 if (eol
== N_TTY_BUF_SIZE
&& more
) {
2041 /* scan wrapped without finding set bit */
2042 eol
= find_next_bit(ldata
->read_flags
, more
, 0);
2043 found
= eol
!= more
;
2045 found
= eol
!= size
;
2048 if (n
> N_TTY_BUF_SIZE
)
2049 n
+= N_TTY_BUF_SIZE
;
2052 if (!found
|| read_buf(ldata
, eol
) != __DISABLED_CHAR
) {
2057 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n",
2058 __func__
, eol
, found
, n
, c
, tail
, more
);
2060 ret
= tty_copy_to_user(tty
, *b
, tail
, n
);
2067 clear_bit(eol
, ldata
->read_flags
);
2068 smp_store_release(&ldata
->read_tail
, ldata
->read_tail
+ c
);
2072 ldata
->line_start
= ldata
->read_tail
;
2080 extern ssize_t
redirected_tty_write(struct file
*, const char __user
*,
2084 * job_control - check job control
2086 * @file: file handle
2088 * Perform job control management checks on this file/tty descriptor
2089 * and if appropriate send any needed signals and return a negative
2090 * error code if action should be taken.
2092 * Locking: redirected write test is safe
2093 * current->signal->tty check is safe
2094 * ctrl_lock to safely reference tty->pgrp
2097 static int job_control(struct tty_struct
*tty
, struct file
*file
)
2099 /* Job control check -- must be done at start and after
2100 every sleep (POSIX.1 7.1.1.4). */
2101 /* NOTE: not yet done after every sleep pending a thorough
2102 check of the logic of this change. -- jlc */
2103 /* don't stop on /dev/console */
2104 if (file
->f_op
->write
== redirected_tty_write
)
2107 return __tty_check_change(tty
, SIGTTIN
);
2112 * n_tty_read - read function for tty
2114 * @file: file object
2115 * @buf: userspace buffer pointer
2118 * Perform reads for the line discipline. We are guaranteed that the
2119 * line discipline will not be closed under us but we may get multiple
2120 * parallel readers and must handle this ourselves. We may also get
2121 * a hangup. Always called in user context, may sleep.
2123 * This code must be sure never to sleep through a hangup.
2125 * n_tty_read()/consumer path:
2126 * claims non-exclusive termios_rwsem
2127 * publishes read_tail
2130 static ssize_t
n_tty_read(struct tty_struct
*tty
, struct file
*file
,
2131 unsigned char __user
*buf
, size_t nr
)
2133 struct n_tty_data
*ldata
= tty
->disc_data
;
2134 unsigned char __user
*b
= buf
;
2135 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
2143 c
= job_control(tty
, file
);
2148 * Internal serialization of reads.
2150 if (file
->f_flags
& O_NONBLOCK
) {
2151 if (!mutex_trylock(&ldata
->atomic_read_lock
))
2154 if (mutex_lock_interruptible(&ldata
->atomic_read_lock
))
2155 return -ERESTARTSYS
;
2158 down_read(&tty
->termios_rwsem
);
2161 timeout
= MAX_SCHEDULE_TIMEOUT
;
2162 if (!ldata
->icanon
) {
2163 minimum
= MIN_CHAR(tty
);
2165 time
= (HZ
/ 10) * TIME_CHAR(tty
);
2167 timeout
= (HZ
/ 10) * TIME_CHAR(tty
);
2172 packet
= tty
->packet
;
2173 tail
= ldata
->read_tail
;
2175 add_wait_queue(&tty
->read_wait
, &wait
);
2177 /* First test for status change. */
2178 if (packet
&& tty
->link
->ctrl_status
) {
2182 spin_lock_irq(&tty
->link
->ctrl_lock
);
2183 cs
= tty
->link
->ctrl_status
;
2184 tty
->link
->ctrl_status
= 0;
2185 spin_unlock_irq(&tty
->link
->ctrl_lock
);
2186 if (put_user(cs
, b
)) {
2195 if (!input_available_p(tty
, 0)) {
2196 up_read(&tty
->termios_rwsem
);
2197 tty_buffer_flush_work(tty
->port
);
2198 down_read(&tty
->termios_rwsem
);
2199 if (!input_available_p(tty
, 0)) {
2200 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
)) {
2204 if (tty_hung_up_p(file
))
2207 * Abort readers for ttys which never actually
2208 * get hung up. See __tty_hangup().
2210 if (test_bit(TTY_HUPPING
, &tty
->flags
))
2214 if (tty_io_nonblock(tty
, file
)) {
2218 if (signal_pending(current
)) {
2219 retval
= -ERESTARTSYS
;
2222 up_read(&tty
->termios_rwsem
);
2224 timeout
= wait_woken(&wait
, TASK_INTERRUPTIBLE
,
2227 down_read(&tty
->termios_rwsem
);
2232 if (ldata
->icanon
&& !L_EXTPROC(tty
)) {
2233 retval
= canon_copy_from_read_buf(tty
, &b
, &nr
);
2239 /* Deal with packet mode. */
2240 if (packet
&& b
== buf
) {
2241 if (put_user(TIOCPKT_DATA
, b
)) {
2249 uncopied
= copy_from_read_buf(tty
, &b
, &nr
);
2250 uncopied
+= copy_from_read_buf(tty
, &b
, &nr
);
2257 n_tty_check_unthrottle(tty
);
2259 if (b
- buf
>= minimum
)
2264 if (tail
!= ldata
->read_tail
)
2265 n_tty_kick_worker(tty
);
2266 up_read(&tty
->termios_rwsem
);
2268 remove_wait_queue(&tty
->read_wait
, &wait
);
2269 mutex_unlock(&ldata
->atomic_read_lock
);
2278 * n_tty_write - write function for tty
2280 * @file: file object
2281 * @buf: userspace buffer pointer
2284 * Write function of the terminal device. This is serialized with
2285 * respect to other write callers but not to termios changes, reads
2286 * and other such events. Since the receive code will echo characters,
2287 * thus calling driver write methods, the output_lock is used in
2288 * the output processing functions called here as well as in the
2289 * echo processing function to protect the column state and space
2290 * left in the buffer.
2292 * This code must be sure never to sleep through a hangup.
2294 * Locking: output_lock to protect column state and space left
2295 * (note that the process_output*() functions take this
2299 static ssize_t
n_tty_write(struct tty_struct
*tty
, struct file
*file
,
2300 const unsigned char *buf
, size_t nr
)
2302 const unsigned char *b
= buf
;
2303 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
2307 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2308 if (L_TOSTOP(tty
) && file
->f_op
->write
!= redirected_tty_write
) {
2309 retval
= tty_check_change(tty
);
2314 down_read(&tty
->termios_rwsem
);
2316 /* Write out any echoed characters that are still pending */
2317 process_echoes(tty
);
2319 add_wait_queue(&tty
->write_wait
, &wait
);
2321 if (signal_pending(current
)) {
2322 retval
= -ERESTARTSYS
;
2325 if (tty_hung_up_p(file
) || (tty
->link
&& !tty
->link
->count
)) {
2331 ssize_t num
= process_output_block(tty
, b
, nr
);
2343 if (process_output(c
, tty
) < 0)
2347 if (tty
->ops
->flush_chars
)
2348 tty
->ops
->flush_chars(tty
);
2350 struct n_tty_data
*ldata
= tty
->disc_data
;
2353 mutex_lock(&ldata
->output_lock
);
2354 c
= tty
->ops
->write(tty
, b
, nr
);
2355 mutex_unlock(&ldata
->output_lock
);
2368 if (tty_io_nonblock(tty
, file
)) {
2372 up_read(&tty
->termios_rwsem
);
2374 wait_woken(&wait
, TASK_INTERRUPTIBLE
, MAX_SCHEDULE_TIMEOUT
);
2376 down_read(&tty
->termios_rwsem
);
2379 remove_wait_queue(&tty
->write_wait
, &wait
);
2380 if (nr
&& tty
->fasync
)
2381 set_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
);
2382 up_read(&tty
->termios_rwsem
);
2383 return (b
- buf
) ? b
- buf
: retval
;
2387 * n_tty_poll - poll method for N_TTY
2388 * @tty: terminal device
2389 * @file: file accessing it
2392 * Called when the line discipline is asked to poll() for data or
2393 * for special events. This code is not serialized with respect to
2394 * other events save open/close.
2396 * This code must be sure never to sleep through a hangup.
2397 * Called without the kernel lock held - fine
2400 static __poll_t
n_tty_poll(struct tty_struct
*tty
, struct file
*file
,
2405 poll_wait(file
, &tty
->read_wait
, wait
);
2406 poll_wait(file
, &tty
->write_wait
, wait
);
2407 if (input_available_p(tty
, 1))
2408 mask
|= EPOLLIN
| EPOLLRDNORM
;
2410 tty_buffer_flush_work(tty
->port
);
2411 if (input_available_p(tty
, 1))
2412 mask
|= EPOLLIN
| EPOLLRDNORM
;
2414 if (tty
->packet
&& tty
->link
->ctrl_status
)
2415 mask
|= EPOLLPRI
| EPOLLIN
| EPOLLRDNORM
;
2416 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
))
2418 if (tty_hung_up_p(file
))
2420 if (tty
->ops
->write
&& !tty_is_writelocked(tty
) &&
2421 tty_chars_in_buffer(tty
) < WAKEUP_CHARS
&&
2422 tty_write_room(tty
) > 0)
2423 mask
|= EPOLLOUT
| EPOLLWRNORM
;
2427 static unsigned long inq_canon(struct n_tty_data
*ldata
)
2429 size_t nr
, head
, tail
;
2431 if (ldata
->canon_head
== ldata
->read_tail
)
2433 head
= ldata
->canon_head
;
2434 tail
= ldata
->read_tail
;
2436 /* Skip EOF-chars.. */
2437 while (MASK(head
) != MASK(tail
)) {
2438 if (test_bit(tail
& (N_TTY_BUF_SIZE
- 1), ldata
->read_flags
) &&
2439 read_buf(ldata
, tail
) == __DISABLED_CHAR
)
2446 static int n_tty_ioctl(struct tty_struct
*tty
, struct file
*file
,
2447 unsigned int cmd
, unsigned long arg
)
2449 struct n_tty_data
*ldata
= tty
->disc_data
;
2454 return put_user(tty_chars_in_buffer(tty
), (int __user
*) arg
);
2456 down_write(&tty
->termios_rwsem
);
2457 if (L_ICANON(tty
) && !L_EXTPROC(tty
))
2458 retval
= inq_canon(ldata
);
2460 retval
= read_cnt(ldata
);
2461 up_write(&tty
->termios_rwsem
);
2462 return put_user(retval
, (unsigned int __user
*) arg
);
2464 return n_tty_ioctl_helper(tty
, file
, cmd
, arg
);
2468 static struct tty_ldisc_ops n_tty_ops
= {
2469 .magic
= TTY_LDISC_MAGIC
,
2472 .close
= n_tty_close
,
2473 .flush_buffer
= n_tty_flush_buffer
,
2475 .write
= n_tty_write
,
2476 .ioctl
= n_tty_ioctl
,
2477 .set_termios
= n_tty_set_termios
,
2479 .receive_buf
= n_tty_receive_buf
,
2480 .write_wakeup
= n_tty_write_wakeup
,
2481 .receive_buf2
= n_tty_receive_buf2
,
2485 * n_tty_inherit_ops - inherit N_TTY methods
2486 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2488 * Enables a 'subclass' line discipline to 'inherit' N_TTY methods.
2491 void n_tty_inherit_ops(struct tty_ldisc_ops
*ops
)
2495 ops
->refcount
= ops
->flags
= 0;
2497 EXPORT_SYMBOL_GPL(n_tty_inherit_ops
);
2499 void __init
n_tty_init(void)
2501 tty_register_ldisc(N_TTY
, &n_tty_ops
);