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
23 * who actually finally proved there really was a race.
25 * 2002/03/18 Implemented n_tty_wakeup to send SIGIO POLL_OUTs to
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 static int tty_copy_to_user(struct tty_struct *tty, void __user *to,
156 size_t tail, size_t n)
158 struct n_tty_data *ldata = tty->disc_data;
159 size_t size = N_TTY_BUF_SIZE - tail;
160 const void *from = read_buf_addr(ldata, tail);
164 tty_audit_add_data(tty, from, size);
165 uncopied = copy_to_user(to, from, size);
170 from = ldata->read_buf;
173 tty_audit_add_data(tty, from, n);
174 return copy_to_user(to, from, n);
178 * n_tty_kick_worker - start input worker (if required)
181 * Re-schedules the flip buffer work if it may have stopped
183 * Caller holds exclusive termios_rwsem
185 * n_tty_read()/consumer path:
186 * holds non-exclusive termios_rwsem
189 static void n_tty_kick_worker(struct tty_struct *tty)
191 struct n_tty_data *ldata = tty->disc_data;
193 /* Did the input worker stop? Restart it */
194 if (unlikely(ldata->no_room)) {
197 WARN_RATELIMIT(tty->port->itty == NULL,
198 "scheduling with invalid itty\n");
199 /* see if ldisc has been killed - if so, this means that
200 * even though the ldisc has been halted and ->buf.work
201 * cancelled, ->buf.work is about to be rescheduled
203 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
204 "scheduling buffer work for halted ldisc\n");
205 tty_buffer_restart_work(tty->port);
209 static ssize_t chars_in_buffer(struct tty_struct *tty)
211 struct n_tty_data *ldata = tty->disc_data;
215 n = ldata->commit_head - ldata->read_tail;
217 n = ldata->canon_head - ldata->read_tail;
222 * n_tty_write_wakeup - asynchronous I/O notifier
225 * Required for the ptys, serial driver etc. since processes
226 * that attach themselves to the master and rely on ASYNC
227 * IO must be woken up
230 static void n_tty_write_wakeup(struct tty_struct *tty)
232 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
233 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
236 static void n_tty_check_throttle(struct tty_struct *tty)
238 struct n_tty_data *ldata = tty->disc_data;
241 * Check the remaining room for the input canonicalization
242 * mode. We don't want to throttle the driver if we're in
243 * canonical mode and don't have a newline yet!
245 if (ldata->icanon && ldata->canon_head == ldata->read_tail)
250 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
251 if (N_TTY_BUF_SIZE - read_cnt(ldata) >= TTY_THRESHOLD_THROTTLE)
253 throttled = tty_throttle_safe(tty);
257 __tty_set_flow_change(tty, 0);
260 static void n_tty_check_unthrottle(struct tty_struct *tty)
262 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
263 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
265 n_tty_kick_worker(tty);
266 tty_wakeup(tty->link);
270 /* If there is enough space in the read buffer now, let the
271 * low-level driver know. We use chars_in_buffer() to
272 * check the buffer, as it now knows about canonical mode.
273 * Otherwise, if the driver is throttled and the line is
274 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
275 * we won't get any more characters.
280 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
281 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
283 n_tty_kick_worker(tty);
284 unthrottled = tty_unthrottle_safe(tty);
288 __tty_set_flow_change(tty, 0);
292 * put_tty_queue - add character to tty
296 * Add a character to the tty read_buf queue.
298 * n_tty_receive_buf()/producer path:
299 * caller holds non-exclusive termios_rwsem
302 static inline void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
304 *read_buf_addr(ldata, ldata->read_head) = c;
309 * reset_buffer_flags - reset buffer state
310 * @tty: terminal to reset
312 * Reset the read buffer counters and clear the flags.
313 * Called from n_tty_open() and n_tty_flush_buffer().
315 * Locking: caller holds exclusive termios_rwsem
316 * (or locking is not required)
319 static void reset_buffer_flags(struct n_tty_data *ldata)
321 ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
322 ldata->commit_head = 0;
323 ldata->line_start = 0;
326 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
330 static void n_tty_packet_mode_flush(struct tty_struct *tty)
334 if (tty->link->packet) {
335 spin_lock_irqsave(&tty->ctrl_lock, flags);
336 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
337 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
338 wake_up_interruptible(&tty->link->read_wait);
343 * n_tty_flush_buffer - clean input queue
344 * @tty: terminal device
346 * Flush the input buffer. Called when the tty layer wants the
347 * buffer flushed (eg at hangup) or when the N_TTY line discipline
348 * internally has to clean the pending queue (for example some signals).
350 * Holds termios_rwsem to exclude producer/consumer while
351 * buffer indices are reset.
353 * Locking: ctrl_lock, exclusive termios_rwsem
356 static void n_tty_flush_buffer(struct tty_struct *tty)
358 down_write(&tty->termios_rwsem);
359 reset_buffer_flags(tty->disc_data);
360 n_tty_kick_worker(tty);
363 n_tty_packet_mode_flush(tty);
364 up_write(&tty->termios_rwsem);
368 * is_utf8_continuation - utf8 multibyte check
371 * Returns true if the utf8 character 'c' is a multibyte continuation
372 * character. We use this to correctly compute the on screen size
373 * of the character when printing
376 static inline int is_utf8_continuation(unsigned char c)
378 return (c & 0xc0) == 0x80;
382 * is_continuation - multibyte check
385 * Returns true if the utf8 character 'c' is a multibyte continuation
386 * character and the terminal is in unicode mode.
389 static inline int is_continuation(unsigned char c, struct tty_struct *tty)
391 return I_IUTF8(tty) && is_utf8_continuation(c);
395 * do_output_char - output one character
396 * @c: character (or partial unicode symbol)
397 * @tty: terminal device
398 * @space: space available in tty driver write buffer
400 * This is a helper function that handles one output character
401 * (including special characters like TAB, CR, LF, etc.),
402 * doing OPOST processing and putting the results in the
403 * tty driver's write buffer.
405 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
406 * and NLDLY. They simply aren't relevant in the world today.
407 * If you ever need them, add them here.
409 * Returns the number of bytes of buffer space used or -1 if
412 * Locking: should be called under the output_lock to protect
413 * the column state and space left in the buffer
416 static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
418 struct n_tty_data *ldata = tty->disc_data;
431 ldata->canon_column = ldata->column = 0;
432 tty->ops->write(tty, "\r\n", 2);
435 ldata->canon_column = ldata->column;
438 if (O_ONOCR(tty) && ldata->column == 0)
443 ldata->canon_column = ldata->column = 0;
446 ldata->canon_column = ldata->column = 0;
449 spaces = 8 - (ldata->column & 7);
450 if (O_TABDLY(tty) == XTABS) {
453 ldata->column += spaces;
454 tty->ops->write(tty, " ", spaces);
457 ldata->column += spaces;
460 if (ldata->column > 0)
467 if (!is_continuation(c, tty))
473 tty_put_char(tty, c);
478 * process_output - output post processor
479 * @c: character (or partial unicode symbol)
480 * @tty: terminal device
482 * Output one character with OPOST processing.
483 * Returns -1 when the output device is full and the character
486 * Locking: output_lock to protect column state and space left
487 * (also, this is called from n_tty_write under the
488 * tty layer write lock)
491 static int process_output(unsigned char c, struct tty_struct *tty)
493 struct n_tty_data *ldata = tty->disc_data;
496 mutex_lock(&ldata->output_lock);
498 space = tty_write_room(tty);
499 retval = do_output_char(c, tty, space);
501 mutex_unlock(&ldata->output_lock);
509 * process_output_block - block post processor
510 * @tty: terminal device
511 * @buf: character buffer
512 * @nr: number of bytes to output
514 * Output a block of characters with OPOST processing.
515 * Returns the number of characters output.
517 * This path is used to speed up block console writes, among other
518 * things when processing blocks of output data. It handles only
519 * the simple cases normally found and helps to generate blocks of
520 * symbols for the console driver and thus improve performance.
522 * Locking: output_lock to protect column state and space left
523 * (also, this is called from n_tty_write under the
524 * tty layer write lock)
527 static ssize_t process_output_block(struct tty_struct *tty,
528 const unsigned char *buf, unsigned int nr)
530 struct n_tty_data *ldata = tty->disc_data;
533 const unsigned char *cp;
535 mutex_lock(&ldata->output_lock);
537 space = tty_write_room(tty);
539 mutex_unlock(&ldata->output_lock);
545 for (i = 0, cp = buf; i < nr; i++, cp++) {
546 unsigned char c = *cp;
554 ldata->canon_column = ldata->column;
557 if (O_ONOCR(tty) && ldata->column == 0)
561 ldata->canon_column = ldata->column = 0;
566 if (ldata->column > 0)
573 if (!is_continuation(c, tty))
580 i = tty->ops->write(tty, buf, i);
582 mutex_unlock(&ldata->output_lock);
587 * process_echoes - write pending echo characters
588 * @tty: terminal device
590 * Write previously buffered echo (and other ldisc-generated)
591 * characters to the tty.
593 * Characters generated by the ldisc (including echoes) need to
594 * be buffered because the driver's write buffer can fill during
595 * heavy program output. Echoing straight to the driver will
596 * often fail under these conditions, causing lost characters and
597 * resulting mismatches of ldisc state information.
599 * Since the ldisc state must represent the characters actually sent
600 * to the driver at the time of the write, operations like certain
601 * changes in column state are also saved in the buffer and executed
604 * A circular fifo buffer is used so that the most recent characters
605 * are prioritized. Also, when control characters are echoed with a
606 * prefixed "^", the pair is treated atomically and thus not separated.
608 * Locking: callers must hold output_lock
611 static size_t __process_echoes(struct tty_struct *tty)
613 struct n_tty_data *ldata = tty->disc_data;
614 int space, old_space;
618 old_space = space = tty_write_room(tty);
620 tail = ldata->echo_tail;
621 while (MASK(ldata->echo_commit) != MASK(tail)) {
622 c = echo_buf(ldata, tail);
623 if (c == ECHO_OP_START) {
625 int no_space_left = 0;
628 * Since add_echo_byte() is called without holding
629 * output_lock, we might see only portion of multi-byte
632 if (MASK(ldata->echo_commit) == MASK(tail + 1))
635 * If the buffer byte is the start of a multi-byte
636 * operation, get the next byte, which is either the
637 * op code or a control character value.
639 op = echo_buf(ldata, tail + 1);
642 unsigned int num_chars, num_bs;
644 case ECHO_OP_ERASE_TAB:
645 if (MASK(ldata->echo_commit) == MASK(tail + 2))
647 num_chars = echo_buf(ldata, tail + 2);
650 * Determine how many columns to go back
651 * in order to erase the tab.
652 * This depends on the number of columns
653 * used by other characters within the tab
654 * area. If this (modulo 8) count is from
655 * the start of input rather than from a
656 * previous tab, we offset by canon column.
657 * Otherwise, tab spacing is normal.
659 if (!(num_chars & 0x80))
660 num_chars += ldata->canon_column;
661 num_bs = 8 - (num_chars & 7);
663 if (num_bs > space) {
669 tty_put_char(tty, '\b');
670 if (ldata->column > 0)
676 case ECHO_OP_SET_CANON_COL:
677 ldata->canon_column = ldata->column;
681 case ECHO_OP_MOVE_BACK_COL:
682 if (ldata->column > 0)
688 /* This is an escaped echo op start code */
693 tty_put_char(tty, ECHO_OP_START);
701 * If the op is not a special byte code,
702 * it is a ctrl char tagged to be echoed
703 * as "^X" (where X is the letter
704 * representing the control char).
705 * Note that we must ensure there is
706 * enough space for the whole ctrl pair.
713 tty_put_char(tty, '^');
714 tty_put_char(tty, op ^ 0100);
724 int retval = do_output_char(c, tty, space);
731 tty_put_char(tty, c);
738 /* If the echo buffer is nearly full (so that the possibility exists
739 * of echo overrun before the next commit), then discard enough
740 * data at the tail to prevent a subsequent overrun */
741 while (ldata->echo_commit > tail &&
742 ldata->echo_commit - tail >= ECHO_DISCARD_WATERMARK) {
743 if (echo_buf(ldata, tail) == ECHO_OP_START) {
744 if (echo_buf(ldata, tail + 1) == ECHO_OP_ERASE_TAB)
753 ldata->echo_tail = tail;
754 return old_space - space;
757 static void commit_echoes(struct tty_struct *tty)
759 struct n_tty_data *ldata = tty->disc_data;
760 size_t nr, old, echoed;
763 mutex_lock(&ldata->output_lock);
764 head = ldata->echo_head;
765 ldata->echo_mark = head;
766 old = ldata->echo_commit - ldata->echo_tail;
768 /* Process committed echoes if the accumulated # of bytes
769 * is over the threshold (and try again each time another
770 * block is accumulated) */
771 nr = head - ldata->echo_tail;
772 if (nr < ECHO_COMMIT_WATERMARK ||
773 (nr % ECHO_BLOCK > old % ECHO_BLOCK)) {
774 mutex_unlock(&ldata->output_lock);
778 ldata->echo_commit = head;
779 echoed = __process_echoes(tty);
780 mutex_unlock(&ldata->output_lock);
782 if (echoed && tty->ops->flush_chars)
783 tty->ops->flush_chars(tty);
786 static void process_echoes(struct tty_struct *tty)
788 struct n_tty_data *ldata = tty->disc_data;
791 if (ldata->echo_mark == ldata->echo_tail)
794 mutex_lock(&ldata->output_lock);
795 ldata->echo_commit = ldata->echo_mark;
796 echoed = __process_echoes(tty);
797 mutex_unlock(&ldata->output_lock);
799 if (echoed && tty->ops->flush_chars)
800 tty->ops->flush_chars(tty);
803 /* NB: echo_mark and echo_head should be equivalent here */
804 static void flush_echoes(struct tty_struct *tty)
806 struct n_tty_data *ldata = tty->disc_data;
808 if ((!L_ECHO(tty) && !L_ECHONL(tty)) ||
809 ldata->echo_commit == ldata->echo_head)
812 mutex_lock(&ldata->output_lock);
813 ldata->echo_commit = ldata->echo_head;
814 __process_echoes(tty);
815 mutex_unlock(&ldata->output_lock);
819 * add_echo_byte - add a byte to the echo buffer
820 * @c: unicode byte to echo
823 * Add a character or operation byte to the echo buffer.
826 static inline void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
828 *echo_buf_addr(ldata, ldata->echo_head) = c;
829 smp_wmb(); /* Matches smp_rmb() in echo_buf(). */
834 * echo_move_back_col - add operation to move back a column
837 * Add an operation to the echo buffer to move back one column.
840 static void echo_move_back_col(struct n_tty_data *ldata)
842 add_echo_byte(ECHO_OP_START, ldata);
843 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
847 * echo_set_canon_col - add operation to set the canon column
850 * Add an operation to the echo buffer to set the canon column
851 * to the current column.
854 static void echo_set_canon_col(struct n_tty_data *ldata)
856 add_echo_byte(ECHO_OP_START, ldata);
857 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
861 * echo_erase_tab - add operation to erase a tab
862 * @num_chars: number of character columns already used
863 * @after_tab: true if num_chars starts after a previous tab
866 * Add an operation to the echo buffer to erase a tab.
868 * Called by the eraser function, which knows how many character
869 * columns have been used since either a previous tab or the start
870 * of input. This information will be used later, along with
871 * canon column (if applicable), to go back the correct number
875 static void echo_erase_tab(unsigned int num_chars, int after_tab,
876 struct n_tty_data *ldata)
878 add_echo_byte(ECHO_OP_START, ldata);
879 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
881 /* We only need to know this modulo 8 (tab spacing) */
884 /* Set the high bit as a flag if num_chars is after a previous tab */
888 add_echo_byte(num_chars, ldata);
892 * echo_char_raw - echo a character raw
893 * @c: unicode byte to echo
894 * @tty: terminal device
896 * Echo user input back onto the screen. This must be called only when
897 * L_ECHO(tty) is true. Called from the driver receive_buf path.
899 * This variant does not treat control characters specially.
902 static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
904 if (c == ECHO_OP_START) {
905 add_echo_byte(ECHO_OP_START, ldata);
906 add_echo_byte(ECHO_OP_START, ldata);
908 add_echo_byte(c, ldata);
913 * echo_char - echo a character
914 * @c: unicode byte to echo
915 * @tty: terminal device
917 * Echo user input back onto the screen. This must be called only when
918 * L_ECHO(tty) is true. Called from the driver receive_buf path.
920 * This variant tags control characters to be echoed as "^X"
921 * (where X is the letter representing the control char).
924 static void echo_char(unsigned char c, struct tty_struct *tty)
926 struct n_tty_data *ldata = tty->disc_data;
928 if (c == ECHO_OP_START) {
929 add_echo_byte(ECHO_OP_START, ldata);
930 add_echo_byte(ECHO_OP_START, ldata);
932 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
933 add_echo_byte(ECHO_OP_START, ldata);
934 add_echo_byte(c, ldata);
939 * finish_erasing - complete erase
943 static inline void finish_erasing(struct n_tty_data *ldata)
945 if (ldata->erasing) {
946 echo_char_raw('/', ldata);
952 * eraser - handle erase function
953 * @c: character input
954 * @tty: terminal device
956 * Perform erase and necessary output when an erase character is
957 * present in the stream from the driver layer. Handles the complexities
958 * of UTF-8 multibyte symbols.
960 * n_tty_receive_buf()/producer path:
961 * caller holds non-exclusive termios_rwsem
964 static void eraser(unsigned char c, struct tty_struct *tty)
966 struct n_tty_data *ldata = tty->disc_data;
967 enum { ERASE, WERASE, KILL } kill_type;
972 if (ldata->read_head == ldata->canon_head) {
973 /* process_output('\a', tty); */ /* what do you think? */
976 if (c == ERASE_CHAR(tty))
978 else if (c == WERASE_CHAR(tty))
982 ldata->read_head = ldata->canon_head;
985 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
986 ldata->read_head = ldata->canon_head;
987 finish_erasing(ldata);
988 echo_char(KILL_CHAR(tty), tty);
989 /* Add a newline if ECHOK is on and ECHOKE is off. */
991 echo_char_raw('\n', ldata);
998 while (MASK(ldata->read_head) != MASK(ldata->canon_head)) {
999 head = ldata->read_head;
1001 /* erase a single possibly multibyte character */
1004 c = read_buf(ldata, head);
1005 } while (is_continuation(c, tty) &&
1006 MASK(head) != MASK(ldata->canon_head));
1008 /* do not partially erase */
1009 if (is_continuation(c, tty))
1012 if (kill_type == WERASE) {
1013 /* Equivalent to BSD's ALTWERASE. */
1014 if (isalnum(c) || c == '_')
1016 else if (seen_alnums)
1019 cnt = ldata->read_head - head;
1020 ldata->read_head = head;
1022 if (L_ECHOPRT(tty)) {
1023 if (!ldata->erasing) {
1024 echo_char_raw('\\', ldata);
1027 /* if cnt > 1, output a multi-byte character */
1031 echo_char_raw(read_buf(ldata, head), ldata);
1032 echo_move_back_col(ldata);
1034 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1035 echo_char(ERASE_CHAR(tty), tty);
1036 } else if (c == '\t') {
1037 unsigned int num_chars = 0;
1039 size_t tail = ldata->read_head;
1042 * Count the columns used for characters
1043 * since the start of input or after a
1045 * This info is used to go back the correct
1046 * number of columns.
1048 while (MASK(tail) != MASK(ldata->canon_head)) {
1050 c = read_buf(ldata, tail);
1054 } else if (iscntrl(c)) {
1057 } else if (!is_continuation(c, tty)) {
1061 echo_erase_tab(num_chars, after_tab, ldata);
1063 if (iscntrl(c) && L_ECHOCTL(tty)) {
1064 echo_char_raw('\b', ldata);
1065 echo_char_raw(' ', ldata);
1066 echo_char_raw('\b', ldata);
1068 if (!iscntrl(c) || L_ECHOCTL(tty)) {
1069 echo_char_raw('\b', ldata);
1070 echo_char_raw(' ', ldata);
1071 echo_char_raw('\b', ldata);
1075 if (kill_type == ERASE)
1078 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
1079 finish_erasing(ldata);
1083 * isig - handle the ISIG optio
1087 * Called when a signal is being sent due to terminal input.
1088 * Called from the driver receive_buf path so serialized.
1090 * Performs input and output flush if !NOFLSH. In this context, the echo
1091 * buffer is 'output'. The signal is processed first to alert any current
1092 * readers or writers to discontinue and exit their i/o loops.
1094 * Locking: ctrl_lock
1097 static void __isig(int sig, struct tty_struct *tty)
1099 struct pid *tty_pgrp = tty_get_pgrp(tty);
1101 kill_pgrp(tty_pgrp, sig, 1);
1106 static void isig(int sig, struct tty_struct *tty)
1108 struct n_tty_data *ldata = tty->disc_data;
1110 if (L_NOFLSH(tty)) {
1114 } else { /* signal and flush */
1115 up_read(&tty->termios_rwsem);
1116 down_write(&tty->termios_rwsem);
1120 /* clear echo buffer */
1121 mutex_lock(&ldata->output_lock);
1122 ldata->echo_head = ldata->echo_tail = 0;
1123 ldata->echo_mark = ldata->echo_commit = 0;
1124 mutex_unlock(&ldata->output_lock);
1126 /* clear output buffer */
1127 tty_driver_flush_buffer(tty);
1129 /* clear input buffer */
1130 reset_buffer_flags(tty->disc_data);
1132 /* notify pty master of flush */
1134 n_tty_packet_mode_flush(tty);
1136 up_write(&tty->termios_rwsem);
1137 down_read(&tty->termios_rwsem);
1142 * n_tty_receive_break - handle break
1145 * An RS232 break event has been hit in the incoming bitstream. This
1146 * can cause a variety of events depending upon the termios settings.
1148 * n_tty_receive_buf()/producer path:
1149 * caller holds non-exclusive termios_rwsem
1151 * Note: may get exclusive termios_rwsem if flushing input buffer
1154 static void n_tty_receive_break(struct tty_struct *tty)
1156 struct n_tty_data *ldata = tty->disc_data;
1160 if (I_BRKINT(tty)) {
1164 if (I_PARMRK(tty)) {
1165 put_tty_queue('\377', ldata);
1166 put_tty_queue('\0', ldata);
1168 put_tty_queue('\0', ldata);
1172 * n_tty_receive_overrun - handle overrun reporting
1175 * Data arrived faster than we could process it. While the tty
1176 * driver has flagged this the bits that were missed are gone
1179 * Called from the receive_buf path so single threaded. Does not
1180 * need locking as num_overrun and overrun_time are function
1184 static void n_tty_receive_overrun(struct tty_struct *tty)
1186 struct n_tty_data *ldata = tty->disc_data;
1188 ldata->num_overrun++;
1189 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1190 time_after(ldata->overrun_time, jiffies)) {
1191 tty_warn(tty, "%d input overrun(s)\n", ldata->num_overrun);
1192 ldata->overrun_time = jiffies;
1193 ldata->num_overrun = 0;
1198 * n_tty_receive_parity_error - error notifier
1199 * @tty: terminal device
1202 * Process a parity error and queue the right data to indicate
1203 * the error case if necessary.
1205 * n_tty_receive_buf()/producer path:
1206 * caller holds non-exclusive termios_rwsem
1208 static void n_tty_receive_parity_error(struct tty_struct *tty, unsigned char c)
1210 struct n_tty_data *ldata = tty->disc_data;
1215 if (I_PARMRK(tty)) {
1216 put_tty_queue('\377', ldata);
1217 put_tty_queue('\0', ldata);
1218 put_tty_queue(c, ldata);
1220 put_tty_queue('\0', ldata);
1222 put_tty_queue(c, ldata);
1226 n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c)
1235 process_echoes(tty);
1240 * n_tty_receive_char - perform processing
1241 * @tty: terminal device
1244 * Process an individual character of input received from the driver.
1245 * This is serialized with respect to itself by the rules for the
1248 * n_tty_receive_buf()/producer path:
1249 * caller holds non-exclusive termios_rwsem
1250 * publishes canon_head if canonical mode is active
1252 * Returns 1 if LNEXT was received, else returns 0
1256 n_tty_receive_char_special(struct tty_struct *tty, unsigned char c)
1258 struct n_tty_data *ldata = tty->disc_data;
1261 if (c == START_CHAR(tty)) {
1263 process_echoes(tty);
1266 if (c == STOP_CHAR(tty)) {
1273 if (c == INTR_CHAR(tty)) {
1274 n_tty_receive_signal_char(tty, SIGINT, c);
1276 } else if (c == QUIT_CHAR(tty)) {
1277 n_tty_receive_signal_char(tty, SIGQUIT, c);
1279 } else if (c == SUSP_CHAR(tty)) {
1280 n_tty_receive_signal_char(tty, SIGTSTP, c);
1285 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1287 process_echoes(tty);
1295 } else if (c == '\n' && I_INLCR(tty))
1298 if (ldata->icanon) {
1299 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1300 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1305 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
1308 finish_erasing(ldata);
1309 if (L_ECHOCTL(tty)) {
1310 echo_char_raw('^', ldata);
1311 echo_char_raw('\b', ldata);
1317 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) {
1318 size_t tail = ldata->canon_head;
1320 finish_erasing(ldata);
1322 echo_char_raw('\n', ldata);
1323 while (MASK(tail) != MASK(ldata->read_head)) {
1324 echo_char(read_buf(ldata, tail), tty);
1331 if (L_ECHO(tty) || L_ECHONL(tty)) {
1332 echo_char_raw('\n', ldata);
1335 goto handle_newline;
1337 if (c == EOF_CHAR(tty)) {
1338 c = __DISABLED_CHAR;
1339 goto handle_newline;
1341 if ((c == EOL_CHAR(tty)) ||
1342 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1344 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1347 /* Record the column of first canon char. */
1348 if (ldata->canon_head == ldata->read_head)
1349 echo_set_canon_col(ldata);
1354 * XXX does PARMRK doubling happen for
1355 * EOL_CHAR and EOL2_CHAR?
1357 if (c == (unsigned char) '\377' && I_PARMRK(tty))
1358 put_tty_queue(c, ldata);
1361 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
1362 put_tty_queue(c, ldata);
1363 smp_store_release(&ldata->canon_head, ldata->read_head);
1364 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1365 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
1371 finish_erasing(ldata);
1373 echo_char_raw('\n', ldata);
1375 /* Record the column of first canon char. */
1376 if (ldata->canon_head == ldata->read_head)
1377 echo_set_canon_col(ldata);
1383 /* PARMRK doubling check */
1384 if (c == (unsigned char) '\377' && I_PARMRK(tty))
1385 put_tty_queue(c, ldata);
1387 put_tty_queue(c, ldata);
1392 n_tty_receive_char_inline(struct tty_struct *tty, unsigned char c)
1394 struct n_tty_data *ldata = tty->disc_data;
1396 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1398 process_echoes(tty);
1401 finish_erasing(ldata);
1402 /* Record the column of first canon char. */
1403 if (ldata->canon_head == ldata->read_head)
1404 echo_set_canon_col(ldata);
1408 /* PARMRK doubling check */
1409 if (c == (unsigned char) '\377' && I_PARMRK(tty))
1410 put_tty_queue(c, ldata);
1411 put_tty_queue(c, ldata);
1414 static void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1416 n_tty_receive_char_inline(tty, c);
1420 n_tty_receive_char_fast(struct tty_struct *tty, unsigned char c)
1422 struct n_tty_data *ldata = tty->disc_data;
1424 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1426 process_echoes(tty);
1429 finish_erasing(ldata);
1430 /* Record the column of first canon char. */
1431 if (ldata->canon_head == ldata->read_head)
1432 echo_set_canon_col(ldata);
1436 put_tty_queue(c, ldata);
1439 static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
1443 if (I_IUCLC(tty) && L_IEXTEN(tty))
1447 if (c == STOP_CHAR(tty))
1449 else if (c == START_CHAR(tty) ||
1450 (tty->stopped && !tty->flow_stopped && I_IXANY(tty) &&
1451 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) &&
1452 c != SUSP_CHAR(tty))) {
1454 process_echoes(tty);
1460 n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)
1464 n_tty_receive_break(tty);
1468 n_tty_receive_parity_error(tty, c);
1471 n_tty_receive_overrun(tty);
1474 tty_err(tty, "unknown flag %d\n", flag);
1480 n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag)
1482 struct n_tty_data *ldata = tty->disc_data;
1485 if (likely(flag == TTY_NORMAL)) {
1488 if (I_IUCLC(tty) && L_IEXTEN(tty))
1490 n_tty_receive_char(tty, c);
1492 n_tty_receive_char_flagged(tty, c, flag);
1496 n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp,
1497 char *fp, int count)
1499 struct n_tty_data *ldata = tty->disc_data;
1502 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
1503 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
1504 memcpy(read_buf_addr(ldata, head), cp, n);
1505 ldata->read_head += n;
1509 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
1510 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
1511 memcpy(read_buf_addr(ldata, head), cp, n);
1512 ldata->read_head += n;
1516 n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp,
1517 char *fp, int count)
1519 struct n_tty_data *ldata = tty->disc_data;
1520 char flag = TTY_NORMAL;
1525 if (likely(flag == TTY_NORMAL))
1526 put_tty_queue(*cp++, ldata);
1528 n_tty_receive_char_flagged(tty, *cp++, flag);
1533 n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
1534 char *fp, int count)
1536 char flag = TTY_NORMAL;
1541 if (likely(flag == TTY_NORMAL))
1542 n_tty_receive_char_closing(tty, *cp++);
1547 n_tty_receive_buf_standard(struct tty_struct *tty, const unsigned char *cp,
1548 char *fp, int count)
1550 struct n_tty_data *ldata = tty->disc_data;
1551 char flag = TTY_NORMAL;
1556 if (likely(flag == TTY_NORMAL)) {
1557 unsigned char c = *cp++;
1561 if (I_IUCLC(tty) && L_IEXTEN(tty))
1563 if (L_EXTPROC(tty)) {
1564 put_tty_queue(c, ldata);
1567 if (!test_bit(c, ldata->char_map))
1568 n_tty_receive_char_inline(tty, c);
1569 else if (n_tty_receive_char_special(tty, c) && count) {
1572 n_tty_receive_char_lnext(tty, *cp++, flag);
1576 n_tty_receive_char_flagged(tty, *cp++, flag);
1581 n_tty_receive_buf_fast(struct tty_struct *tty, const unsigned char *cp,
1582 char *fp, int count)
1584 struct n_tty_data *ldata = tty->disc_data;
1585 char flag = TTY_NORMAL;
1590 if (likely(flag == TTY_NORMAL)) {
1591 unsigned char c = *cp++;
1593 if (!test_bit(c, ldata->char_map))
1594 n_tty_receive_char_fast(tty, c);
1595 else if (n_tty_receive_char_special(tty, c) && count) {
1598 n_tty_receive_char_lnext(tty, *cp++, flag);
1602 n_tty_receive_char_flagged(tty, *cp++, flag);
1606 static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1607 char *fp, int count)
1609 struct n_tty_data *ldata = tty->disc_data;
1610 bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty));
1612 if (ldata->real_raw)
1613 n_tty_receive_buf_real_raw(tty, cp, fp, count);
1614 else if (ldata->raw || (L_EXTPROC(tty) && !preops))
1615 n_tty_receive_buf_raw(tty, cp, fp, count);
1616 else if (tty->closing && !L_EXTPROC(tty))
1617 n_tty_receive_buf_closing(tty, cp, fp, count);
1620 char flag = TTY_NORMAL;
1624 n_tty_receive_char_lnext(tty, *cp++, flag);
1628 if (!preops && !I_PARMRK(tty))
1629 n_tty_receive_buf_fast(tty, cp, fp, count);
1631 n_tty_receive_buf_standard(tty, cp, fp, count);
1634 if (tty->ops->flush_chars)
1635 tty->ops->flush_chars(tty);
1638 if (ldata->icanon && !L_EXTPROC(tty))
1641 /* publish read_head to consumer */
1642 smp_store_release(&ldata->commit_head, ldata->read_head);
1644 if (read_cnt(ldata)) {
1645 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1646 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
1651 * n_tty_receive_buf_common - process input
1652 * @tty: device to receive input
1654 * @fp: flags for each char (if NULL, all chars are TTY_NORMAL)
1655 * @count: number of input chars in @cp
1657 * Called by the terminal driver when a block of characters has
1658 * been received. This function must be called from soft contexts
1659 * not from interrupt context. The driver is responsible for making
1660 * calls one at a time and in order (or using flush_to_ldisc)
1662 * Returns the # of input chars from @cp which were processed.
1664 * In canonical mode, the maximum line length is 4096 chars (including
1665 * the line termination char); lines longer than 4096 chars are
1666 * truncated. After 4095 chars, input data is still processed but
1667 * not stored. Overflow processing ensures the tty can always
1668 * receive more input until at least one line can be read.
1670 * In non-canonical mode, the read buffer will only accept 4095 chars;
1671 * this provides the necessary space for a newline char if the input
1672 * mode is switched to canonical.
1674 * Note it is possible for the read buffer to _contain_ 4096 chars
1675 * in non-canonical mode: the read buffer could already contain the
1676 * maximum canon line of 4096 chars when the mode is switched to
1679 * n_tty_receive_buf()/producer path:
1680 * claims non-exclusive termios_rwsem
1681 * publishes commit_head or canon_head
1684 n_tty_receive_buf_common(struct tty_struct *tty, const unsigned char *cp,
1685 char *fp, int count, int flow)
1687 struct n_tty_data *ldata = tty->disc_data;
1688 int room, n, rcvd = 0, overflow;
1690 down_read(&tty->termios_rwsem);
1694 * When PARMRK is set, each input char may take up to 3 chars
1695 * in the read buf; reduce the buffer space avail by 3x
1697 * If we are doing input canonicalization, and there are no
1698 * pending newlines, let characters through without limit, so
1699 * that erase characters will be handled. Other excess
1700 * characters will be beeped.
1702 * paired with store in *_copy_from_read_buf() -- guarantees
1703 * the consumer has loaded the data in read_buf up to the new
1704 * read_tail (so this producer will not overwrite unread data)
1706 size_t tail = smp_load_acquire(&ldata->read_tail);
1708 room = N_TTY_BUF_SIZE - (ldata->read_head - tail);
1710 room = (room + 2) / 3;
1713 overflow = ldata->icanon && ldata->canon_head == tail;
1714 if (overflow && room < 0)
1717 ldata->no_room = flow && !room;
1721 n = min(count, room);
1725 /* ignore parity errors if handling overflow */
1726 if (!overflow || !fp || *fp != TTY_PARITY)
1727 __receive_buf(tty, cp, fp, n);
1736 tty->receive_room = room;
1738 /* Unthrottle if handling overflow on pty */
1739 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
1741 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
1742 tty_unthrottle_safe(tty);
1743 __tty_set_flow_change(tty, 0);
1746 n_tty_check_throttle(tty);
1748 up_read(&tty->termios_rwsem);
1753 static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1754 char *fp, int count)
1756 n_tty_receive_buf_common(tty, cp, fp, count, 0);
1759 static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1760 char *fp, int count)
1762 return n_tty_receive_buf_common(tty, cp, fp, count, 1);
1766 * n_tty_set_termios - termios data changed
1768 * @old: previous data
1770 * Called by the tty layer when the user changes termios flags so
1771 * that the line discipline can plan ahead. This function cannot sleep
1772 * and is protected from re-entry by the tty layer. The user is
1773 * guaranteed that this function will not be re-entered or in progress
1774 * when the ldisc is closed.
1776 * Locking: Caller holds tty->termios_rwsem
1779 static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
1781 struct n_tty_data *ldata = tty->disc_data;
1783 if (!old || (old->c_lflag ^ tty->termios.c_lflag) & (ICANON | EXTPROC)) {
1784 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
1785 ldata->line_start = ldata->read_tail;
1786 if (!L_ICANON(tty) || !read_cnt(ldata)) {
1787 ldata->canon_head = ldata->read_tail;
1790 set_bit((ldata->read_head - 1) & (N_TTY_BUF_SIZE - 1),
1792 ldata->canon_head = ldata->read_head;
1795 ldata->commit_head = ldata->read_head;
1800 ldata->icanon = (L_ICANON(tty) != 0);
1802 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1803 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1804 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1806 bitmap_zero(ldata->char_map, 256);
1808 if (I_IGNCR(tty) || I_ICRNL(tty))
1809 set_bit('\r', ldata->char_map);
1811 set_bit('\n', ldata->char_map);
1813 if (L_ICANON(tty)) {
1814 set_bit(ERASE_CHAR(tty), ldata->char_map);
1815 set_bit(KILL_CHAR(tty), ldata->char_map);
1816 set_bit(EOF_CHAR(tty), ldata->char_map);
1817 set_bit('\n', ldata->char_map);
1818 set_bit(EOL_CHAR(tty), ldata->char_map);
1819 if (L_IEXTEN(tty)) {
1820 set_bit(WERASE_CHAR(tty), ldata->char_map);
1821 set_bit(LNEXT_CHAR(tty), ldata->char_map);
1822 set_bit(EOL2_CHAR(tty), ldata->char_map);
1824 set_bit(REPRINT_CHAR(tty),
1829 set_bit(START_CHAR(tty), ldata->char_map);
1830 set_bit(STOP_CHAR(tty), ldata->char_map);
1833 set_bit(INTR_CHAR(tty), ldata->char_map);
1834 set_bit(QUIT_CHAR(tty), ldata->char_map);
1835 set_bit(SUSP_CHAR(tty), ldata->char_map);
1837 clear_bit(__DISABLED_CHAR, ldata->char_map);
1839 ldata->real_raw = 0;
1842 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1843 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1844 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
1845 ldata->real_raw = 1;
1847 ldata->real_raw = 0;
1850 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1851 * been stopped by STOP_CHAR(tty) before it.
1853 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
1855 process_echoes(tty);
1858 /* The termios change make the tty ready for I/O */
1859 wake_up_interruptible(&tty->write_wait);
1860 wake_up_interruptible(&tty->read_wait);
1864 * n_tty_close - close the ldisc for this tty
1867 * Called from the terminal layer when this line discipline is
1868 * being shut down, either because of a close or becsuse of a
1869 * discipline change. The function will not be called while other
1870 * ldisc methods are in progress.
1873 static void n_tty_close(struct tty_struct *tty)
1875 struct n_tty_data *ldata = tty->disc_data;
1878 n_tty_packet_mode_flush(tty);
1881 tty->disc_data = NULL;
1885 * n_tty_open - open an ldisc
1886 * @tty: terminal to open
1888 * Called when this line discipline is being attached to the
1889 * terminal device. Can sleep. Called serialized so that no
1890 * other events will occur in parallel. No further open will occur
1894 static int n_tty_open(struct tty_struct *tty)
1896 struct n_tty_data *ldata;
1898 /* Currently a malloc failure here can panic */
1899 ldata = vzalloc(sizeof(*ldata));
1903 ldata->overrun_time = jiffies;
1904 mutex_init(&ldata->atomic_read_lock);
1905 mutex_init(&ldata->output_lock);
1907 tty->disc_data = ldata;
1909 /* indicate buffer work may resume */
1910 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1911 n_tty_set_termios(tty, NULL);
1912 tty_unthrottle(tty);
1916 static inline int input_available_p(struct tty_struct *tty, int poll)
1918 struct n_tty_data *ldata = tty->disc_data;
1919 int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1;
1921 if (ldata->icanon && !L_EXTPROC(tty))
1922 return ldata->canon_head != ldata->read_tail;
1924 return ldata->commit_head - ldata->read_tail >= amt;
1928 * copy_from_read_buf - copy read data directly
1929 * @tty: terminal device
1933 * Helper function to speed up n_tty_read. It is only called when
1934 * ICANON is off; it copies characters straight from the tty queue to
1935 * user space directly. It can be profitably called twice; once to
1936 * drain the space from the tail pointer to the (physical) end of the
1937 * buffer, and once to drain the space from the (physical) beginning of
1938 * the buffer to head pointer.
1940 * Called under the ldata->atomic_read_lock sem
1942 * n_tty_read()/consumer path:
1943 * caller holds non-exclusive termios_rwsem
1944 * read_tail published
1947 static int copy_from_read_buf(struct tty_struct *tty,
1948 unsigned char __user **b,
1952 struct n_tty_data *ldata = tty->disc_data;
1956 size_t head = smp_load_acquire(&ldata->commit_head);
1957 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
1960 n = min(head - ldata->read_tail, N_TTY_BUF_SIZE - tail);
1963 const unsigned char *from = read_buf_addr(ldata, tail);
1964 retval = copy_to_user(*b, from, n);
1966 is_eof = n == 1 && *from == EOF_CHAR(tty);
1967 tty_audit_add_data(tty, from, n);
1968 smp_store_release(&ldata->read_tail, ldata->read_tail + n);
1969 /* Turn single EOF into zero-length read */
1970 if (L_EXTPROC(tty) && ldata->icanon && is_eof &&
1971 (head == ldata->read_tail))
1980 * canon_copy_from_read_buf - copy read data in canonical mode
1981 * @tty: terminal device
1985 * Helper function for n_tty_read. It is only called when ICANON is on;
1986 * it copies one line of input up to and including the line-delimiting
1987 * character into the user-space buffer.
1989 * NB: When termios is changed from non-canonical to canonical mode and
1990 * the read buffer contains data, n_tty_set_termios() simulates an EOF
1991 * push (as if C-d were input) _without_ the DISABLED_CHAR in the buffer.
1992 * This causes data already processed as input to be immediately available
1993 * as input although a newline has not been received.
1995 * Called under the atomic_read_lock mutex
1997 * n_tty_read()/consumer path:
1998 * caller holds non-exclusive termios_rwsem
1999 * read_tail published
2002 static int canon_copy_from_read_buf(struct tty_struct *tty,
2003 unsigned char __user **b,
2006 struct n_tty_data *ldata = tty->disc_data;
2007 size_t n, size, more, c;
2012 /* N.B. avoid overrun if nr == 0 */
2016 n = min(*nr + 1, smp_load_acquire(&ldata->canon_head) - ldata->read_tail);
2018 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
2019 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
2021 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
2022 __func__, *nr, tail, n, size);
2024 eol = find_next_bit(ldata->read_flags, size, tail);
2025 more = n - (size - tail);
2026 if (eol == N_TTY_BUF_SIZE && more) {
2027 /* scan wrapped without finding set bit */
2028 eol = find_next_bit(ldata->read_flags, more, 0);
2029 found = eol != more;
2031 found = eol != size;
2034 if (n > N_TTY_BUF_SIZE)
2035 n += N_TTY_BUF_SIZE;
2038 if (!found || read_buf(ldata, eol) != __DISABLED_CHAR) {
2043 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n",
2044 __func__, eol, found, n, c, tail, more);
2046 ret = tty_copy_to_user(tty, *b, tail, n);
2053 clear_bit(eol, ldata->read_flags);
2054 smp_store_release(&ldata->read_tail, ldata->read_tail + c);
2058 ldata->line_start = ldata->read_tail;
2066 extern ssize_t redirected_tty_write(struct file *, const char __user *,
2070 * job_control - check job control
2072 * @file: file handle
2074 * Perform job control management checks on this file/tty descriptor
2075 * and if appropriate send any needed signals and return a negative
2076 * error code if action should be taken.
2078 * Locking: redirected write test is safe
2079 * current->signal->tty check is safe
2080 * ctrl_lock to safely reference tty->pgrp
2083 static int job_control(struct tty_struct *tty, struct file *file)
2085 /* Job control check -- must be done at start and after
2086 every sleep (POSIX.1 7.1.1.4). */
2087 /* NOTE: not yet done after every sleep pending a thorough
2088 check of the logic of this change. -- jlc */
2089 /* don't stop on /dev/console */
2090 if (file->f_op->write == redirected_tty_write)
2093 return __tty_check_change(tty, SIGTTIN);
2098 * n_tty_read - read function for tty
2100 * @file: file object
2101 * @buf: userspace buffer pointer
2104 * Perform reads for the line discipline. We are guaranteed that the
2105 * line discipline will not be closed under us but we may get multiple
2106 * parallel readers and must handle this ourselves. We may also get
2107 * a hangup. Always called in user context, may sleep.
2109 * This code must be sure never to sleep through a hangup.
2111 * n_tty_read()/consumer path:
2112 * claims non-exclusive termios_rwsem
2113 * publishes read_tail
2116 static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
2117 unsigned char __user *buf, size_t nr)
2119 struct n_tty_data *ldata = tty->disc_data;
2120 unsigned char __user *b = buf;
2121 DEFINE_WAIT_FUNC(wait, woken_wake_function);
2129 c = job_control(tty, file);
2134 * Internal serialization of reads.
2136 if (file->f_flags & O_NONBLOCK) {
2137 if (!mutex_trylock(&ldata->atomic_read_lock))
2140 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
2141 return -ERESTARTSYS;
2144 down_read(&tty->termios_rwsem);
2147 timeout = MAX_SCHEDULE_TIMEOUT;
2148 if (!ldata->icanon) {
2149 minimum = MIN_CHAR(tty);
2151 time = (HZ / 10) * TIME_CHAR(tty);
2153 timeout = (HZ / 10) * TIME_CHAR(tty);
2158 packet = tty->packet;
2159 tail = ldata->read_tail;
2161 add_wait_queue(&tty->read_wait, &wait);
2163 /* First test for status change. */
2164 if (packet && tty->link->ctrl_status) {
2168 spin_lock_irq(&tty->link->ctrl_lock);
2169 cs = tty->link->ctrl_status;
2170 tty->link->ctrl_status = 0;
2171 spin_unlock_irq(&tty->link->ctrl_lock);
2172 if (put_user(cs, b)) {
2181 if (!input_available_p(tty, 0)) {
2182 up_read(&tty->termios_rwsem);
2183 tty_buffer_flush_work(tty->port);
2184 down_read(&tty->termios_rwsem);
2185 if (!input_available_p(tty, 0)) {
2186 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
2190 if (tty_hung_up_p(file))
2193 * Abort readers for ttys which never actually
2194 * get hung up. See __tty_hangup().
2196 if (test_bit(TTY_HUPPING, &tty->flags))
2200 if (file->f_flags & O_NONBLOCK) {
2204 if (signal_pending(current)) {
2205 retval = -ERESTARTSYS;
2208 up_read(&tty->termios_rwsem);
2210 timeout = wait_woken(&wait, TASK_INTERRUPTIBLE,
2213 down_read(&tty->termios_rwsem);
2218 if (ldata->icanon && !L_EXTPROC(tty)) {
2219 retval = canon_copy_from_read_buf(tty, &b, &nr);
2225 /* Deal with packet mode. */
2226 if (packet && b == buf) {
2227 if (put_user(TIOCPKT_DATA, b)) {
2235 uncopied = copy_from_read_buf(tty, &b, &nr);
2236 uncopied += copy_from_read_buf(tty, &b, &nr);
2243 n_tty_check_unthrottle(tty);
2245 if (b - buf >= minimum)
2250 if (tail != ldata->read_tail)
2251 n_tty_kick_worker(tty);
2252 up_read(&tty->termios_rwsem);
2254 remove_wait_queue(&tty->read_wait, &wait);
2255 mutex_unlock(&ldata->atomic_read_lock);
2264 * n_tty_write - write function for tty
2266 * @file: file object
2267 * @buf: userspace buffer pointer
2270 * Write function of the terminal device. This is serialized with
2271 * respect to other write callers but not to termios changes, reads
2272 * and other such events. Since the receive code will echo characters,
2273 * thus calling driver write methods, the output_lock is used in
2274 * the output processing functions called here as well as in the
2275 * echo processing function to protect the column state and space
2276 * left in the buffer.
2278 * This code must be sure never to sleep through a hangup.
2280 * Locking: output_lock to protect column state and space left
2281 * (note that the process_output*() functions take this
2285 static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
2286 const unsigned char *buf, size_t nr)
2288 const unsigned char *b = buf;
2289 DEFINE_WAIT_FUNC(wait, woken_wake_function);
2293 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2294 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2295 retval = tty_check_change(tty);
2300 down_read(&tty->termios_rwsem);
2302 /* Write out any echoed characters that are still pending */
2303 process_echoes(tty);
2305 add_wait_queue(&tty->write_wait, &wait);
2307 if (signal_pending(current)) {
2308 retval = -ERESTARTSYS;
2311 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2317 ssize_t num = process_output_block(tty, b, nr);
2329 if (process_output(c, tty) < 0)
2333 if (tty->ops->flush_chars)
2334 tty->ops->flush_chars(tty);
2336 struct n_tty_data *ldata = tty->disc_data;
2339 mutex_lock(&ldata->output_lock);
2340 c = tty->ops->write(tty, b, nr);
2341 mutex_unlock(&ldata->output_lock);
2354 if (file->f_flags & O_NONBLOCK) {
2358 up_read(&tty->termios_rwsem);
2360 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
2362 down_read(&tty->termios_rwsem);
2365 remove_wait_queue(&tty->write_wait, &wait);
2366 if (nr && tty->fasync)
2367 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
2368 up_read(&tty->termios_rwsem);
2369 return (b - buf) ? b - buf : retval;
2373 * n_tty_poll - poll method for N_TTY
2374 * @tty: terminal device
2375 * @file: file accessing it
2378 * Called when the line discipline is asked to poll() for data or
2379 * for special events. This code is not serialized with respect to
2380 * other events save open/close.
2382 * This code must be sure never to sleep through a hangup.
2383 * Called without the kernel lock held - fine
2386 static __poll_t n_tty_poll(struct tty_struct *tty, struct file *file,
2391 poll_wait(file, &tty->read_wait, wait);
2392 poll_wait(file, &tty->write_wait, wait);
2393 if (input_available_p(tty, 1))
2394 mask |= EPOLLIN | EPOLLRDNORM;
2396 tty_buffer_flush_work(tty->port);
2397 if (input_available_p(tty, 1))
2398 mask |= EPOLLIN | EPOLLRDNORM;
2400 if (tty->packet && tty->link->ctrl_status)
2401 mask |= EPOLLPRI | EPOLLIN | EPOLLRDNORM;
2402 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2404 if (tty_hung_up_p(file))
2406 if (tty->ops->write && !tty_is_writelocked(tty) &&
2407 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2408 tty_write_room(tty) > 0)
2409 mask |= EPOLLOUT | EPOLLWRNORM;
2413 static unsigned long inq_canon(struct n_tty_data *ldata)
2415 size_t nr, head, tail;
2417 if (ldata->canon_head == ldata->read_tail)
2419 head = ldata->canon_head;
2420 tail = ldata->read_tail;
2422 /* Skip EOF-chars.. */
2423 while (MASK(head) != MASK(tail)) {
2424 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2425 read_buf(ldata, tail) == __DISABLED_CHAR)
2432 static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2433 unsigned int cmd, unsigned long arg)
2435 struct n_tty_data *ldata = tty->disc_data;
2440 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2442 down_write(&tty->termios_rwsem);
2443 if (L_ICANON(tty) && !L_EXTPROC(tty))
2444 retval = inq_canon(ldata);
2446 retval = read_cnt(ldata);
2447 up_write(&tty->termios_rwsem);
2448 return put_user(retval, (unsigned int __user *) arg);
2450 return n_tty_ioctl_helper(tty, file, cmd, arg);
2454 static struct tty_ldisc_ops n_tty_ops = {
2455 .magic = TTY_LDISC_MAGIC,
2458 .close = n_tty_close,
2459 .flush_buffer = n_tty_flush_buffer,
2461 .write = n_tty_write,
2462 .ioctl = n_tty_ioctl,
2463 .set_termios = n_tty_set_termios,
2465 .receive_buf = n_tty_receive_buf,
2466 .write_wakeup = n_tty_write_wakeup,
2467 .receive_buf2 = n_tty_receive_buf2,
2471 * n_tty_inherit_ops - inherit N_TTY methods
2472 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2474 * Enables a 'subclass' line discipline to 'inherit' N_TTY methods.
2477 void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2481 ops->refcount = ops->flags = 0;
2483 EXPORT_SYMBOL_GPL(n_tty_inherit_ops);
2485 void __init n_tty_init(void)
2487 tty_register_ldisc(N_TTY, &n_tty_ops);