Greg Kroah-Hartman | e3b3d0f | 2017-11-06 18:11:51 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-1.0+ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * n_tty.c --- implements the N_TTY line discipline. |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 4 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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, |
| 8 | * anyway...) |
| 9 | * |
| 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 |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 12 | * to N_TTY if it can not switch to any other line discipline. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
| 14 | * Written by Theodore Ts'o, Copyright 1994. |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 15 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * This file also contains code originally written by Linus Torvalds, |
| 17 | * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994. |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 18 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * Reduced memory usage for older ARM systems - Russell King. |
| 20 | * |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 21 | * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | * the patch by Andrew J. Kroll <ag784@freenet.buffalo.edu> |
| 23 | * who actually finally proved there really was a race. |
| 24 | * |
| 25 | * 2002/03/18 Implemented n_tty_wakeup to send SIGIO POLL_OUTs to |
| 26 | * waiting writing processes-Sapan Bhatia <sapan@corewars.org>. |
Alan Cox | 11a96d1 | 2008-10-13 10:46:24 +0100 | [diff] [blame] | 27 | * Also fixed a bug in BLOCKING mode where n_tty_write returns |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | * EAGAIN |
| 29 | */ |
| 30 | |
| 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> |
| 41 | #include <linux/mm.h> |
| 42 | #include <linux/string.h> |
| 43 | #include <linux/slab.h> |
| 44 | #include <linux/poll.h> |
| 45 | #include <linux/bitops.h> |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 46 | #include <linux/audit.h> |
| 47 | #include <linux/file.h> |
Alan Cox | 300a620 | 2009-01-02 13:41:04 +0000 | [diff] [blame] | 48 | #include <linux/uaccess.h> |
Rodolfo Giometti | 572b9ad | 2010-03-10 15:23:46 -0800 | [diff] [blame] | 49 | #include <linux/module.h> |
George Spelvin | 593fb1ae4 | 2013-02-12 02:00:43 -0500 | [diff] [blame] | 50 | #include <linux/ratelimit.h> |
Peter Hurley | 86e35ae | 2013-07-24 09:30:05 -0400 | [diff] [blame] | 51 | #include <linux/vmalloc.h> |
Greg Kroah-Hartman | 98602c0 | 2021-04-08 14:51:22 +0200 | [diff] [blame] | 52 | #include "tty.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Valentin Vidic | a5db482 | 2018-12-29 13:48:29 +0100 | [diff] [blame] | 54 | /* |
| 55 | * Until this number of characters is queued in the xmit buffer, select will |
| 56 | * return "we have room for writes". |
| 57 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #define WAKEUP_CHARS 256 |
| 59 | |
| 60 | /* |
| 61 | * This defines the low- and high-watermarks for throttling and |
| 62 | * unthrottling the TTY driver. These watermarks are used for |
| 63 | * controlling the space in the read buffer. |
| 64 | */ |
| 65 | #define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */ |
Thorsten Wißmann | bbd2075 | 2011-12-08 17:47:33 +0100 | [diff] [blame] | 66 | #define TTY_THRESHOLD_UNTHROTTLE 128 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 68 | /* |
| 69 | * Special byte codes used in the echo buffer to represent operations |
| 70 | * or special handling of characters. Bytes in the echo buffer that |
| 71 | * are not part of such special blocks are treated as normal character |
| 72 | * codes. |
| 73 | */ |
| 74 | #define ECHO_OP_START 0xff |
| 75 | #define ECHO_OP_MOVE_BACK_COL 0x80 |
| 76 | #define ECHO_OP_SET_CANON_COL 0x81 |
| 77 | #define ECHO_OP_ERASE_TAB 0x82 |
| 78 | |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 79 | #define ECHO_COMMIT_WATERMARK 256 |
| 80 | #define ECHO_BLOCK 256 |
| 81 | #define ECHO_DISCARD_WATERMARK N_TTY_BUF_SIZE - (ECHO_BLOCK + 32) |
| 82 | |
| 83 | |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 84 | #undef N_TTY_TRACE |
| 85 | #ifdef N_TTY_TRACE |
| 86 | # define n_tty_trace(f, args...) trace_printk(f, ##args) |
| 87 | #else |
Jiri Slaby | a287885 | 2020-01-30 12:58:43 +0100 | [diff] [blame] | 88 | # define n_tty_trace(f, args...) no_printk(f, ##args) |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 89 | #endif |
| 90 | |
Jiri Slaby | 70ece7a | 2012-10-18 22:26:38 +0200 | [diff] [blame] | 91 | struct n_tty_data { |
Peter Hurley | fb7aa03 | 2013-06-15 09:14:30 -0400 | [diff] [blame] | 92 | /* producer-published */ |
| 93 | size_t read_head; |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 94 | size_t commit_head; |
Peter Hurley | fb7aa03 | 2013-06-15 09:14:30 -0400 | [diff] [blame] | 95 | size_t canon_head; |
Peter Hurley | 9dfd16d | 2013-06-15 10:04:29 -0400 | [diff] [blame] | 96 | size_t echo_head; |
| 97 | size_t echo_commit; |
Peter Hurley | 1075a6e | 2013-12-09 18:06:07 -0500 | [diff] [blame] | 98 | size_t echo_mark; |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 99 | DECLARE_BITMAP(char_map, 256); |
Peter Hurley | fb7aa03 | 2013-06-15 09:14:30 -0400 | [diff] [blame] | 100 | |
| 101 | /* private to n_tty_receive_overrun (single-threaded) */ |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 102 | unsigned long overrun_time; |
| 103 | int num_overrun; |
| 104 | |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 105 | /* non-atomic */ |
| 106 | bool no_room; |
| 107 | |
Peter Hurley | fb7aa03 | 2013-06-15 09:14:30 -0400 | [diff] [blame] | 108 | /* must hold exclusive termios_rwsem to reset these */ |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 109 | unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1; |
Peter Hurley | 4d0ed18 | 2013-12-10 17:12:02 -0500 | [diff] [blame] | 110 | unsigned char push:1; |
Jiri Slaby | 3fe780b | 2012-10-18 22:26:40 +0200 | [diff] [blame] | 111 | |
Peter Hurley | fb7aa03 | 2013-06-15 09:14:30 -0400 | [diff] [blame] | 112 | /* shared by producer and consumer */ |
Peter Hurley | 20bafb3 | 2013-06-15 10:21:19 -0400 | [diff] [blame] | 113 | char read_buf[N_TTY_BUF_SIZE]; |
Jiri Slaby | 3fe780b | 2012-10-18 22:26:40 +0200 | [diff] [blame] | 114 | DECLARE_BITMAP(read_flags, N_TTY_BUF_SIZE); |
Peter Hurley | 20bafb3 | 2013-06-15 10:21:19 -0400 | [diff] [blame] | 115 | unsigned char echo_buf[N_TTY_BUF_SIZE]; |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 116 | |
Peter Hurley | fb7aa03 | 2013-06-15 09:14:30 -0400 | [diff] [blame] | 117 | /* consumer-published */ |
| 118 | size_t read_tail; |
Peter Hurley | 40d5e09 | 2013-06-15 10:21:17 -0400 | [diff] [blame] | 119 | size_t line_start; |
Peter Hurley | fb7aa03 | 2013-06-15 09:14:30 -0400 | [diff] [blame] | 120 | |
Peter Hurley | fb7aa03 | 2013-06-15 09:14:30 -0400 | [diff] [blame] | 121 | /* protected by output lock */ |
| 122 | unsigned int column; |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 123 | unsigned int canon_column; |
Peter Hurley | 9dfd16d | 2013-06-15 10:04:29 -0400 | [diff] [blame] | 124 | size_t echo_tail; |
Jiri Slaby | bddc715 | 2012-10-18 22:26:42 +0200 | [diff] [blame] | 125 | |
| 126 | struct mutex atomic_read_lock; |
| 127 | struct mutex output_lock; |
Jiri Slaby | 70ece7a | 2012-10-18 22:26:38 +0200 | [diff] [blame] | 128 | }; |
| 129 | |
Tetsuo Handa | 3d63b7e | 2018-05-26 09:53:13 +0900 | [diff] [blame] | 130 | #define MASK(x) ((x) & (N_TTY_BUF_SIZE - 1)) |
| 131 | |
Peter Hurley | ce74117 | 2013-06-15 09:14:20 -0400 | [diff] [blame] | 132 | static inline size_t read_cnt(struct n_tty_data *ldata) |
| 133 | { |
Peter Hurley | a2f73be | 2013-06-15 09:14:22 -0400 | [diff] [blame] | 134 | return ldata->read_head - ldata->read_tail; |
Peter Hurley | ce74117 | 2013-06-15 09:14:20 -0400 | [diff] [blame] | 135 | } |
| 136 | |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 137 | static inline unsigned char read_buf(struct n_tty_data *ldata, size_t i) |
| 138 | { |
| 139 | return ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)]; |
| 140 | } |
| 141 | |
| 142 | static inline unsigned char *read_buf_addr(struct n_tty_data *ldata, size_t i) |
| 143 | { |
| 144 | return &ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)]; |
| 145 | } |
| 146 | |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 147 | static inline unsigned char echo_buf(struct n_tty_data *ldata, size_t i) |
| 148 | { |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 149 | smp_rmb(); /* Matches smp_wmb() in add_echo_byte(). */ |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 150 | return ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)]; |
| 151 | } |
| 152 | |
| 153 | static inline unsigned char *echo_buf_addr(struct n_tty_data *ldata, size_t i) |
| 154 | { |
| 155 | return &ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)]; |
| 156 | } |
| 157 | |
Greg KH | b97b3d9 | 2018-10-04 11:06:14 -0700 | [diff] [blame] | 158 | /* If we are not echoing the data, perhaps this is a secret so erase it */ |
| 159 | static void zero_buffer(struct tty_struct *tty, u8 *buffer, int size) |
| 160 | { |
| 161 | bool icanon = !!L_ICANON(tty); |
| 162 | bool no_echo = !L_ECHO(tty); |
| 163 | |
| 164 | if (icanon && no_echo) |
| 165 | memset(buffer, 0x00, size); |
| 166 | } |
| 167 | |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 168 | static void tty_copy(struct tty_struct *tty, void *to, size_t tail, size_t n) |
Laura Abbott | 72586c6 | 2015-05-14 11:42:17 -0700 | [diff] [blame] | 169 | { |
| 170 | struct n_tty_data *ldata = tty->disc_data; |
Peter Hurley | 679e7c2 | 2015-11-27 14:11:02 -0500 | [diff] [blame] | 171 | size_t size = N_TTY_BUF_SIZE - tail; |
Greg KH | b97b3d9 | 2018-10-04 11:06:14 -0700 | [diff] [blame] | 172 | void *from = read_buf_addr(ldata, tail); |
Peter Hurley | 679e7c2 | 2015-11-27 14:11:02 -0500 | [diff] [blame] | 173 | |
| 174 | if (n > size) { |
Peter Hurley | 309426a | 2016-01-09 22:55:27 -0800 | [diff] [blame] | 175 | tty_audit_add_data(tty, from, size); |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 176 | memcpy(to, from, size); |
| 177 | zero_buffer(tty, from, size); |
Peter Hurley | 679e7c2 | 2015-11-27 14:11:02 -0500 | [diff] [blame] | 178 | to += size; |
| 179 | n -= size; |
| 180 | from = ldata->read_buf; |
| 181 | } |
Laura Abbott | 72586c6 | 2015-05-14 11:42:17 -0700 | [diff] [blame] | 182 | |
Peter Hurley | 309426a | 2016-01-09 22:55:27 -0800 | [diff] [blame] | 183 | tty_audit_add_data(tty, from, n); |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 184 | memcpy(to, from, n); |
| 185 | zero_buffer(tty, from, n); |
Laura Abbott | 72586c6 | 2015-05-14 11:42:17 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 188 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 189 | * n_tty_kick_worker - start input worker (if required) |
| 190 | * @tty: terminal |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 191 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 192 | * Re-schedules the flip buffer work if it may have stopped. |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 193 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 194 | * Locking: |
| 195 | * * Caller holds exclusive %termios_rwsem, or |
| 196 | * * n_tty_read()/consumer path: |
| 197 | * holds non-exclusive %termios_rwsem |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 198 | */ |
Peter Hurley | 2c5dc46 | 2015-01-16 15:05:34 -0500 | [diff] [blame] | 199 | static void n_tty_kick_worker(struct tty_struct *tty) |
Peter Hurley | 7879a9f | 2013-06-15 07:28:31 -0400 | [diff] [blame] | 200 | { |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 201 | struct n_tty_data *ldata = tty->disc_data; |
| 202 | |
Peter Hurley | 2c5dc46 | 2015-01-16 15:05:34 -0500 | [diff] [blame] | 203 | /* Did the input worker stop? Restart it */ |
| 204 | if (unlikely(ldata->no_room)) { |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 205 | ldata->no_room = 0; |
| 206 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 207 | WARN_RATELIMIT(tty->port->itty == NULL, |
Sasha Levin | cadf748 | 2012-10-25 14:26:35 -0400 | [diff] [blame] | 208 | "scheduling with invalid itty\n"); |
Peter Hurley | 2162293 | 2013-03-11 16:44:21 -0400 | [diff] [blame] | 209 | /* see if ldisc has been killed - if so, this means that |
| 210 | * even though the ldisc has been halted and ->buf.work |
| 211 | * cancelled, ->buf.work is about to be rescheduled |
| 212 | */ |
| 213 | WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags), |
| 214 | "scheduling buffer work for halted ldisc\n"); |
Peter Hurley | e176058 | 2015-10-17 16:36:23 -0400 | [diff] [blame] | 215 | tty_buffer_restart_work(tty->port); |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 216 | } |
Linus Torvalds | 55db4c6 | 2011-06-04 06:33:24 +0900 | [diff] [blame] | 217 | } |
| 218 | |
Peter Hurley | 9a4aec2 | 2013-06-15 09:14:32 -0400 | [diff] [blame] | 219 | static ssize_t chars_in_buffer(struct tty_struct *tty) |
| 220 | { |
| 221 | struct n_tty_data *ldata = tty->disc_data; |
| 222 | ssize_t n = 0; |
| 223 | |
| 224 | if (!ldata->icanon) |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 225 | n = ldata->commit_head - ldata->read_tail; |
Peter Hurley | 9a4aec2 | 2013-06-15 09:14:32 -0400 | [diff] [blame] | 226 | else |
| 227 | n = ldata->canon_head - ldata->read_tail; |
| 228 | return n; |
| 229 | } |
| 230 | |
Peter Hurley | ee0bab8 | 2013-06-15 09:14:34 -0400 | [diff] [blame] | 231 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 232 | * n_tty_write_wakeup - asynchronous I/O notifier |
| 233 | * @tty: tty device |
Peter Hurley | ee0bab8 | 2013-06-15 09:14:34 -0400 | [diff] [blame] | 234 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 235 | * Required for the ptys, serial driver etc. since processes that attach |
| 236 | * themselves to the master and rely on ASYNC IO must be woken up. |
Peter Hurley | ee0bab8 | 2013-06-15 09:14:34 -0400 | [diff] [blame] | 237 | */ |
Peter Hurley | ee0bab8 | 2013-06-15 09:14:34 -0400 | [diff] [blame] | 238 | static void n_tty_write_wakeup(struct tty_struct *tty) |
| 239 | { |
Peter Hurley | 7bccc36 | 2016-01-09 21:45:12 -0800 | [diff] [blame] | 240 | clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); |
| 241 | kill_fasync(&tty->fasync, SIGIO, POLL_OUT); |
Peter Hurley | ee0bab8 | 2013-06-15 09:14:34 -0400 | [diff] [blame] | 242 | } |
| 243 | |
Peter Hurley | 4a23a4d | 2013-06-15 10:21:22 -0400 | [diff] [blame] | 244 | static void n_tty_check_throttle(struct tty_struct *tty) |
Peter Hurley | 6367ca7 | 2013-06-15 09:14:33 -0400 | [diff] [blame] | 245 | { |
Peter Hurley | a342846 | 2015-01-16 15:05:35 -0500 | [diff] [blame] | 246 | struct n_tty_data *ldata = tty->disc_data; |
| 247 | |
Peter Hurley | 6367ca7 | 2013-06-15 09:14:33 -0400 | [diff] [blame] | 248 | /* |
| 249 | * Check the remaining room for the input canonicalization |
| 250 | * mode. We don't want to throttle the driver if we're in |
| 251 | * canonical mode and don't have a newline yet! |
| 252 | */ |
Peter Hurley | a342846 | 2015-01-16 15:05:35 -0500 | [diff] [blame] | 253 | if (ldata->icanon && ldata->canon_head == ldata->read_tail) |
| 254 | return; |
| 255 | |
Peter Hurley | 6367ca7 | 2013-06-15 09:14:33 -0400 | [diff] [blame] | 256 | while (1) { |
| 257 | int throttled; |
| 258 | tty_set_flow_change(tty, TTY_THROTTLE_SAFE); |
Peter Hurley | 5e28cca | 2015-01-16 15:05:36 -0500 | [diff] [blame] | 259 | if (N_TTY_BUF_SIZE - read_cnt(ldata) >= TTY_THRESHOLD_THROTTLE) |
Peter Hurley | 6367ca7 | 2013-06-15 09:14:33 -0400 | [diff] [blame] | 260 | break; |
| 261 | throttled = tty_throttle_safe(tty); |
| 262 | if (!throttled) |
| 263 | break; |
| 264 | } |
| 265 | __tty_set_flow_change(tty, 0); |
| 266 | } |
| 267 | |
Peter Hurley | 4b29349 | 2013-07-24 08:29:55 -0400 | [diff] [blame] | 268 | static void n_tty_check_unthrottle(struct tty_struct *tty) |
Peter Hurley | 6367ca7 | 2013-06-15 09:14:33 -0400 | [diff] [blame] | 269 | { |
Peter Hurley | 6d27a63 | 2016-01-10 22:40:56 -0800 | [diff] [blame] | 270 | if (tty->driver->type == TTY_DRIVER_TYPE_PTY) { |
Peter Hurley | 3afb1b39 | 2013-07-23 08:47:30 -0400 | [diff] [blame] | 271 | if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE) |
| 272 | return; |
Peter Hurley | 2c5dc46 | 2015-01-16 15:05:34 -0500 | [diff] [blame] | 273 | n_tty_kick_worker(tty); |
Peter Hurley | 6d27a63 | 2016-01-10 22:40:56 -0800 | [diff] [blame] | 274 | tty_wakeup(tty->link); |
Peter Hurley | 3afb1b39 | 2013-07-23 08:47:30 -0400 | [diff] [blame] | 275 | return; |
| 276 | } |
| 277 | |
Peter Hurley | 6367ca7 | 2013-06-15 09:14:33 -0400 | [diff] [blame] | 278 | /* If there is enough space in the read buffer now, let the |
| 279 | * low-level driver know. We use chars_in_buffer() to |
| 280 | * check the buffer, as it now knows about canonical mode. |
| 281 | * Otherwise, if the driver is throttled and the line is |
| 282 | * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode, |
| 283 | * we won't get any more characters. |
| 284 | */ |
| 285 | |
| 286 | while (1) { |
| 287 | int unthrottled; |
| 288 | tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE); |
| 289 | if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE) |
| 290 | break; |
Peter Hurley | 2c5dc46 | 2015-01-16 15:05:34 -0500 | [diff] [blame] | 291 | n_tty_kick_worker(tty); |
Peter Hurley | 6367ca7 | 2013-06-15 09:14:33 -0400 | [diff] [blame] | 292 | unthrottled = tty_unthrottle_safe(tty); |
| 293 | if (!unthrottled) |
| 294 | break; |
| 295 | } |
| 296 | __tty_set_flow_change(tty, 0); |
| 297 | } |
| 298 | |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 299 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 300 | * put_tty_queue - add character to tty |
| 301 | * @c: character |
| 302 | * @ldata: n_tty data |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 303 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 304 | * Add a character to the tty read_buf queue. |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 305 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 306 | * Locking: |
| 307 | * * n_tty_receive_buf()/producer path: |
| 308 | * caller holds non-exclusive %termios_rwsem |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 309 | */ |
Peter Hurley | 19e2ad6 | 2013-07-24 08:29:54 -0400 | [diff] [blame] | 310 | static inline void put_tty_queue(unsigned char c, struct n_tty_data *ldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | { |
Christian Riesch | 8bfbe2d | 2014-11-13 05:53:26 +0100 | [diff] [blame] | 312 | *read_buf_addr(ldata, ldata->read_head) = c; |
| 313 | ldata->read_head++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 317 | * reset_buffer_flags - reset buffer state |
| 318 | * @ldata: line disc data to reset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 320 | * Reset the read buffer counters and clear the flags. Called from |
| 321 | * n_tty_open() and n_tty_flush_buffer(). |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 322 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 323 | * Locking: |
| 324 | * * caller holds exclusive %termios_rwsem, or |
| 325 | * * (locking is not required) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | */ |
Peter Hurley | b66f4fa | 2013-03-11 16:44:32 -0400 | [diff] [blame] | 327 | static void reset_buffer_flags(struct n_tty_data *ldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { |
Peter Hurley | a73d3d6 | 2013-06-15 09:14:25 -0400 | [diff] [blame] | 329 | ldata->read_head = ldata->canon_head = ldata->read_tail = 0; |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 330 | ldata->commit_head = 0; |
Peter Hurley | 40d5e09 | 2013-06-15 10:21:17 -0400 | [diff] [blame] | 331 | ldata->line_start = 0; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 332 | |
Peter Hurley | a73d3d6 | 2013-06-15 09:14:25 -0400 | [diff] [blame] | 333 | ldata->erasing = 0; |
Jiri Slaby | 3fe780b | 2012-10-18 22:26:40 +0200 | [diff] [blame] | 334 | bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE); |
Peter Hurley | 4d0ed18 | 2013-12-10 17:12:02 -0500 | [diff] [blame] | 335 | ldata->push = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Peter Hurley | a30737a | 2013-03-11 16:44:22 -0400 | [diff] [blame] | 338 | static void n_tty_packet_mode_flush(struct tty_struct *tty) |
| 339 | { |
| 340 | unsigned long flags; |
| 341 | |
Jiri Slaby | 64d608d | 2021-05-05 11:19:06 +0200 | [diff] [blame] | 342 | if (tty->link->ctrl.packet) { |
| 343 | spin_lock_irqsave(&tty->ctrl.lock, flags); |
| 344 | tty->ctrl.pktstatus |= TIOCPKT_FLUSHREAD; |
| 345 | spin_unlock_irqrestore(&tty->ctrl.lock, flags); |
Kosuke Tatsukawa | e81107d | 2015-10-02 08:27:05 +0000 | [diff] [blame] | 346 | wake_up_interruptible(&tty->link->read_wait); |
Peter Hurley | a30737a | 2013-03-11 16:44:22 -0400 | [diff] [blame] | 347 | } |
Peter Hurley | a30737a | 2013-03-11 16:44:22 -0400 | [diff] [blame] | 348 | } |
| 349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 351 | * n_tty_flush_buffer - clean input queue |
| 352 | * @tty: terminal device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 354 | * Flush the input buffer. Called when the tty layer wants the buffer flushed |
| 355 | * (eg at hangup) or when the %N_TTY line discipline internally has to clean |
| 356 | * the pending queue (for example some signals). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 358 | * Holds %termios_rwsem to exclude producer/consumer while buffer indices are |
| 359 | * reset. |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 360 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 361 | * Locking: %ctrl.lock, exclusive %termios_rwsem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | */ |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 363 | static void n_tty_flush_buffer(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | { |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 365 | down_write(&tty->termios_rwsem); |
Peter Hurley | b66f4fa | 2013-03-11 16:44:32 -0400 | [diff] [blame] | 366 | reset_buffer_flags(tty->disc_data); |
Peter Hurley | 2c5dc46 | 2015-01-16 15:05:34 -0500 | [diff] [blame] | 367 | n_tty_kick_worker(tty); |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 368 | |
Peter Hurley | a30737a | 2013-03-11 16:44:22 -0400 | [diff] [blame] | 369 | if (tty->link) |
| 370 | n_tty_packet_mode_flush(tty); |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 371 | up_write(&tty->termios_rwsem); |
| 372 | } |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 375 | * is_utf8_continuation - utf8 multibyte check |
| 376 | * @c: byte to check |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 378 | * Returns: true if the utf8 character @c is a multibyte continuation |
| 379 | * character. We use this to correctly compute the on-screen size of the |
| 380 | * character when printing. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | static inline int is_utf8_continuation(unsigned char c) |
| 383 | { |
| 384 | return (c & 0xc0) == 0x80; |
| 385 | } |
| 386 | |
| 387 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 388 | * is_continuation - multibyte check |
| 389 | * @c: byte to check |
| 390 | * @tty: terminal device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 392 | * Returns: true if the utf8 character @c is a multibyte continuation character |
| 393 | * and the terminal is in unicode mode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | static inline int is_continuation(unsigned char c, struct tty_struct *tty) |
| 396 | { |
| 397 | return I_IUTF8(tty) && is_utf8_continuation(c); |
| 398 | } |
| 399 | |
| 400 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 401 | * do_output_char - output one character |
| 402 | * @c: character (or partial unicode symbol) |
| 403 | * @tty: terminal device |
| 404 | * @space: space available in tty driver write buffer |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 405 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 406 | * This is a helper function that handles one output character (including |
| 407 | * special characters like TAB, CR, LF, etc.), doing OPOST processing and |
| 408 | * putting the results in the tty driver's write buffer. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 409 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 410 | * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY and NLDLY. |
| 411 | * They simply aren't relevant in the world today. If you ever need them, add |
| 412 | * them here. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 413 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 414 | * Returns: the number of bytes of buffer space used or -1 if no space left. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 415 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 416 | * Locking: should be called under the %output_lock to protect the column state |
| 417 | * and space left in the buffer. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 418 | */ |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 419 | static int do_output_char(unsigned char c, struct tty_struct *tty, int space) |
| 420 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 421 | struct n_tty_data *ldata = tty->disc_data; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 422 | int spaces; |
| 423 | |
| 424 | if (!space) |
| 425 | return -1; |
Alan Cox | 300a620 | 2009-01-02 13:41:04 +0000 | [diff] [blame] | 426 | |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 427 | switch (c) { |
| 428 | case '\n': |
| 429 | if (O_ONLRET(tty)) |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 430 | ldata->column = 0; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 431 | if (O_ONLCR(tty)) { |
| 432 | if (space < 2) |
| 433 | return -1; |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 434 | ldata->canon_column = ldata->column = 0; |
Linus Torvalds | 37f81fa | 2009-09-05 12:46:07 -0700 | [diff] [blame] | 435 | tty->ops->write(tty, "\r\n", 2); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 436 | return 2; |
| 437 | } |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 438 | ldata->canon_column = ldata->column; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 439 | break; |
| 440 | case '\r': |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 441 | if (O_ONOCR(tty) && ldata->column == 0) |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 442 | return 0; |
| 443 | if (O_OCRNL(tty)) { |
| 444 | c = '\n'; |
| 445 | if (O_ONLRET(tty)) |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 446 | ldata->canon_column = ldata->column = 0; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 447 | break; |
| 448 | } |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 449 | ldata->canon_column = ldata->column = 0; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 450 | break; |
| 451 | case '\t': |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 452 | spaces = 8 - (ldata->column & 7); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 453 | if (O_TABDLY(tty) == XTABS) { |
| 454 | if (space < spaces) |
| 455 | return -1; |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 456 | ldata->column += spaces; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 457 | tty->ops->write(tty, " ", spaces); |
| 458 | return spaces; |
| 459 | } |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 460 | ldata->column += spaces; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 461 | break; |
| 462 | case '\b': |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 463 | if (ldata->column > 0) |
| 464 | ldata->column--; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 465 | break; |
| 466 | default: |
Joe Peterson | a59c0d6 | 2009-01-02 13:43:25 +0000 | [diff] [blame] | 467 | if (!iscntrl(c)) { |
| 468 | if (O_OLCUC(tty)) |
| 469 | c = toupper(c); |
| 470 | if (!is_continuation(c, tty)) |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 471 | ldata->column++; |
Joe Peterson | a59c0d6 | 2009-01-02 13:43:25 +0000 | [diff] [blame] | 472 | } |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 473 | break; |
| 474 | } |
| 475 | |
| 476 | tty_put_char(tty, c); |
| 477 | return 1; |
| 478 | } |
| 479 | |
| 480 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 481 | * process_output - output post processor |
| 482 | * @c: character (or partial unicode symbol) |
| 483 | * @tty: terminal device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 485 | * Output one character with OPOST processing. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 487 | * Returns: -1 when the output device is full and the character must be |
| 488 | * retried. |
| 489 | * |
| 490 | * Locking: %output_lock to protect column state and space left (also, this is |
| 491 | *called from n_tty_write() under the tty layer write lock). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | */ |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 493 | static int process_output(unsigned char c, struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | { |
Jiri Slaby | bddc715 | 2012-10-18 22:26:42 +0200 | [diff] [blame] | 495 | struct n_tty_data *ldata = tty->disc_data; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 496 | int space, retval; |
| 497 | |
Jiri Slaby | bddc715 | 2012-10-18 22:26:42 +0200 | [diff] [blame] | 498 | mutex_lock(&ldata->output_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 500 | space = tty_write_room(tty); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 501 | retval = do_output_char(c, tty, space); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
Jiri Slaby | bddc715 | 2012-10-18 22:26:42 +0200 | [diff] [blame] | 503 | mutex_unlock(&ldata->output_lock); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 504 | if (retval < 0) |
| 505 | return -1; |
| 506 | else |
| 507 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 511 | * process_output_block - block post processor |
| 512 | * @tty: terminal device |
| 513 | * @buf: character buffer |
| 514 | * @nr: number of bytes to output |
Joe Peterson | ee5aa7b | 2009-09-09 15:03:13 -0600 | [diff] [blame] | 515 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 516 | * Output a block of characters with OPOST processing. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 518 | * This path is used to speed up block console writes, among other things when |
| 519 | * processing blocks of output data. It handles only the simple cases normally |
| 520 | * found and helps to generate blocks of symbols for the console driver and |
| 521 | * thus improve performance. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 523 | * Returns: the number of characters output. |
| 524 | * |
| 525 | * Locking: %output_lock to protect column state and space left (also, this is |
| 526 | * called from n_tty_write() under the tty layer write lock). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | */ |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 528 | static ssize_t process_output_block(struct tty_struct *tty, |
| 529 | const unsigned char *buf, unsigned int nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 531 | struct n_tty_data *ldata = tty->disc_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | int space; |
Thorsten Wißmann | bbd2075 | 2011-12-08 17:47:33 +0100 | [diff] [blame] | 533 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | const unsigned char *cp; |
| 535 | |
Jiri Slaby | bddc715 | 2012-10-18 22:26:42 +0200 | [diff] [blame] | 536 | mutex_lock(&ldata->output_lock); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 537 | |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 538 | space = tty_write_room(tty); |
Colin Ian King | 9ef8927 | 2019-03-30 00:46:28 +0000 | [diff] [blame] | 539 | if (space <= 0) { |
Jiri Slaby | bddc715 | 2012-10-18 22:26:42 +0200 | [diff] [blame] | 540 | mutex_unlock(&ldata->output_lock); |
Colin Ian King | 9ef8927 | 2019-03-30 00:46:28 +0000 | [diff] [blame] | 541 | return space; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 542 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | if (nr > space) |
| 544 | nr = space; |
| 545 | |
| 546 | for (i = 0, cp = buf; i < nr; i++, cp++) { |
Joe Peterson | a59c0d6 | 2009-01-02 13:43:25 +0000 | [diff] [blame] | 547 | unsigned char c = *cp; |
| 548 | |
| 549 | switch (c) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | case '\n': |
| 551 | if (O_ONLRET(tty)) |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 552 | ldata->column = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | if (O_ONLCR(tty)) |
| 554 | goto break_out; |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 555 | ldata->canon_column = ldata->column; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | break; |
| 557 | case '\r': |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 558 | if (O_ONOCR(tty) && ldata->column == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | goto break_out; |
| 560 | if (O_OCRNL(tty)) |
| 561 | goto break_out; |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 562 | ldata->canon_column = ldata->column = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | break; |
| 564 | case '\t': |
| 565 | goto break_out; |
| 566 | case '\b': |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 567 | if (ldata->column > 0) |
| 568 | ldata->column--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | break; |
| 570 | default: |
Joe Peterson | a59c0d6 | 2009-01-02 13:43:25 +0000 | [diff] [blame] | 571 | if (!iscntrl(c)) { |
| 572 | if (O_OLCUC(tty)) |
| 573 | goto break_out; |
| 574 | if (!is_continuation(c, tty)) |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 575 | ldata->column++; |
Joe Peterson | a59c0d6 | 2009-01-02 13:43:25 +0000 | [diff] [blame] | 576 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | break; |
| 578 | } |
| 579 | } |
| 580 | break_out: |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 581 | i = tty->ops->write(tty, buf, i); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 582 | |
Jiri Slaby | bddc715 | 2012-10-18 22:26:42 +0200 | [diff] [blame] | 583 | mutex_unlock(&ldata->output_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | return i; |
| 585 | } |
| 586 | |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 587 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 588 | * __process_echoes - write pending echo characters |
| 589 | * @tty: terminal device |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 590 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 591 | * Write previously buffered echo (and other ldisc-generated) characters to the |
| 592 | * tty. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 593 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 594 | * Characters generated by the ldisc (including echoes) need to be buffered |
| 595 | * because the driver's write buffer can fill during heavy program output. |
| 596 | * Echoing straight to the driver will often fail under these conditions, |
| 597 | * causing lost characters and resulting mismatches of ldisc state information. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 598 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 599 | * Since the ldisc state must represent the characters actually sent to the |
| 600 | * driver at the time of the write, operations like certain changes in column |
| 601 | * state are also saved in the buffer and executed here. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 602 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 603 | * A circular fifo buffer is used so that the most recent characters are |
| 604 | * prioritized. Also, when control characters are echoed with a prefixed "^", |
| 605 | * the pair is treated atomically and thus not separated. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 606 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 607 | * Locking: callers must hold %output_lock. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 608 | */ |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 609 | static size_t __process_echoes(struct tty_struct *tty) |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 610 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 611 | struct n_tty_data *ldata = tty->disc_data; |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 612 | int space, old_space; |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 613 | size_t tail; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 614 | unsigned char c; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 615 | |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 616 | old_space = space = tty_write_room(tty); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 617 | |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 618 | tail = ldata->echo_tail; |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 619 | while (MASK(ldata->echo_commit) != MASK(tail)) { |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 620 | c = echo_buf(ldata, tail); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 621 | if (c == ECHO_OP_START) { |
| 622 | unsigned char op; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 623 | int no_space_left = 0; |
| 624 | |
| 625 | /* |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 626 | * Since add_echo_byte() is called without holding |
| 627 | * output_lock, we might see only portion of multi-byte |
| 628 | * operation. |
| 629 | */ |
| 630 | if (MASK(ldata->echo_commit) == MASK(tail + 1)) |
| 631 | goto not_yet_stored; |
| 632 | /* |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 633 | * If the buffer byte is the start of a multi-byte |
| 634 | * operation, get the next byte, which is either the |
| 635 | * op code or a control character value. |
| 636 | */ |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 637 | op = echo_buf(ldata, tail + 1); |
Alan Cox | 300a620 | 2009-01-02 13:41:04 +0000 | [diff] [blame] | 638 | |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 639 | switch (op) { |
Kees Cook | e24cd4e | 2020-02-19 22:23:13 -0800 | [diff] [blame] | 640 | case ECHO_OP_ERASE_TAB: { |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 641 | unsigned int num_chars, num_bs; |
| 642 | |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 643 | if (MASK(ldata->echo_commit) == MASK(tail + 2)) |
| 644 | goto not_yet_stored; |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 645 | num_chars = echo_buf(ldata, tail + 2); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 646 | |
| 647 | /* |
| 648 | * Determine how many columns to go back |
| 649 | * in order to erase the tab. |
| 650 | * This depends on the number of columns |
| 651 | * used by other characters within the tab |
| 652 | * area. If this (modulo 8) count is from |
| 653 | * the start of input rather than from a |
| 654 | * previous tab, we offset by canon column. |
| 655 | * Otherwise, tab spacing is normal. |
| 656 | */ |
| 657 | if (!(num_chars & 0x80)) |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 658 | num_chars += ldata->canon_column; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 659 | num_bs = 8 - (num_chars & 7); |
| 660 | |
| 661 | if (num_bs > space) { |
| 662 | no_space_left = 1; |
| 663 | break; |
| 664 | } |
| 665 | space -= num_bs; |
| 666 | while (num_bs--) { |
| 667 | tty_put_char(tty, '\b'); |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 668 | if (ldata->column > 0) |
| 669 | ldata->column--; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 670 | } |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 671 | tail += 3; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 672 | break; |
Kees Cook | e24cd4e | 2020-02-19 22:23:13 -0800 | [diff] [blame] | 673 | } |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 674 | case ECHO_OP_SET_CANON_COL: |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 675 | ldata->canon_column = ldata->column; |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 676 | tail += 2; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 677 | break; |
| 678 | |
| 679 | case ECHO_OP_MOVE_BACK_COL: |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 680 | if (ldata->column > 0) |
| 681 | ldata->column--; |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 682 | tail += 2; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 683 | break; |
| 684 | |
| 685 | case ECHO_OP_START: |
| 686 | /* This is an escaped echo op start code */ |
| 687 | if (!space) { |
| 688 | no_space_left = 1; |
| 689 | break; |
| 690 | } |
| 691 | tty_put_char(tty, ECHO_OP_START); |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 692 | ldata->column++; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 693 | space--; |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 694 | tail += 2; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 695 | break; |
| 696 | |
| 697 | default: |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 698 | /* |
Joe Peterson | 62b2635 | 2009-09-09 15:03:47 -0600 | [diff] [blame] | 699 | * If the op is not a special byte code, |
| 700 | * it is a ctrl char tagged to be echoed |
| 701 | * as "^X" (where X is the letter |
| 702 | * representing the control char). |
| 703 | * Note that we must ensure there is |
| 704 | * enough space for the whole ctrl pair. |
| 705 | * |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 706 | */ |
Joe Peterson | 62b2635 | 2009-09-09 15:03:47 -0600 | [diff] [blame] | 707 | if (space < 2) { |
| 708 | no_space_left = 1; |
| 709 | break; |
| 710 | } |
| 711 | tty_put_char(tty, '^'); |
| 712 | tty_put_char(tty, op ^ 0100); |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 713 | ldata->column += 2; |
Joe Peterson | 62b2635 | 2009-09-09 15:03:47 -0600 | [diff] [blame] | 714 | space -= 2; |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 715 | tail += 2; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 716 | } |
| 717 | |
| 718 | if (no_space_left) |
| 719 | break; |
| 720 | } else { |
Peter Hurley | 582f559 | 2013-05-17 12:49:48 -0400 | [diff] [blame] | 721 | if (O_OPOST(tty)) { |
Joe Peterson | ee5aa7b | 2009-09-09 15:03:13 -0600 | [diff] [blame] | 722 | int retval = do_output_char(c, tty, space); |
| 723 | if (retval < 0) |
| 724 | break; |
| 725 | space -= retval; |
| 726 | } else { |
| 727 | if (!space) |
| 728 | break; |
| 729 | tty_put_char(tty, c); |
| 730 | space -= 1; |
| 731 | } |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 732 | tail += 1; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 733 | } |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 734 | } |
| 735 | |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 736 | /* If the echo buffer is nearly full (so that the possibility exists |
| 737 | * of echo overrun before the next commit), then discard enough |
| 738 | * data at the tail to prevent a subsequent overrun */ |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 739 | while (ldata->echo_commit > tail && |
| 740 | ldata->echo_commit - tail >= ECHO_DISCARD_WATERMARK) { |
Roel Kluin | c476f65 | 2013-10-11 22:08:49 +0200 | [diff] [blame] | 741 | if (echo_buf(ldata, tail) == ECHO_OP_START) { |
Peter Hurley | 6f22253 | 2013-11-08 09:42:18 -0500 | [diff] [blame] | 742 | if (echo_buf(ldata, tail + 1) == ECHO_OP_ERASE_TAB) |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 743 | tail += 3; |
| 744 | else |
| 745 | tail += 2; |
| 746 | } else |
| 747 | tail++; |
| 748 | } |
| 749 | |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 750 | not_yet_stored: |
Peter Hurley | addaebc | 2013-06-15 10:04:22 -0400 | [diff] [blame] | 751 | ldata->echo_tail = tail; |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 752 | return old_space - space; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 753 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | |
Peter Hurley | 17bd790 | 2013-06-15 10:04:24 -0400 | [diff] [blame] | 755 | static void commit_echoes(struct tty_struct *tty) |
| 756 | { |
| 757 | struct n_tty_data *ldata = tty->disc_data; |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 758 | size_t nr, old, echoed; |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 759 | size_t head; |
| 760 | |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 761 | mutex_lock(&ldata->output_lock); |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 762 | head = ldata->echo_head; |
Peter Hurley | 1075a6e | 2013-12-09 18:06:07 -0500 | [diff] [blame] | 763 | ldata->echo_mark = head; |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 764 | old = ldata->echo_commit - ldata->echo_tail; |
| 765 | |
| 766 | /* Process committed echoes if the accumulated # of bytes |
| 767 | * is over the threshold (and try again each time another |
| 768 | * block is accumulated) */ |
| 769 | nr = head - ldata->echo_tail; |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 770 | if (nr < ECHO_COMMIT_WATERMARK || |
| 771 | (nr % ECHO_BLOCK > old % ECHO_BLOCK)) { |
| 772 | mutex_unlock(&ldata->output_lock); |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 773 | return; |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 774 | } |
Peter Hurley | 17bd790 | 2013-06-15 10:04:24 -0400 | [diff] [blame] | 775 | |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 776 | ldata->echo_commit = head; |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 777 | echoed = __process_echoes(tty); |
Peter Hurley | 019ebdf | 2013-06-15 10:04:25 -0400 | [diff] [blame] | 778 | mutex_unlock(&ldata->output_lock); |
| 779 | |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 780 | if (echoed && tty->ops->flush_chars) |
Peter Hurley | 019ebdf | 2013-06-15 10:04:25 -0400 | [diff] [blame] | 781 | tty->ops->flush_chars(tty); |
| 782 | } |
| 783 | |
| 784 | static void process_echoes(struct tty_struct *tty) |
| 785 | { |
| 786 | struct n_tty_data *ldata = tty->disc_data; |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 787 | size_t echoed; |
Peter Hurley | 019ebdf | 2013-06-15 10:04:25 -0400 | [diff] [blame] | 788 | |
Peter Hurley | e2613be | 2014-02-11 16:34:55 -0500 | [diff] [blame] | 789 | if (ldata->echo_mark == ldata->echo_tail) |
Peter Hurley | 019ebdf | 2013-06-15 10:04:25 -0400 | [diff] [blame] | 790 | return; |
| 791 | |
| 792 | mutex_lock(&ldata->output_lock); |
Peter Hurley | 1075a6e | 2013-12-09 18:06:07 -0500 | [diff] [blame] | 793 | ldata->echo_commit = ldata->echo_mark; |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 794 | echoed = __process_echoes(tty); |
Peter Hurley | 019ebdf | 2013-06-15 10:04:25 -0400 | [diff] [blame] | 795 | mutex_unlock(&ldata->output_lock); |
| 796 | |
Peter Hurley | bc5b1ec | 2013-06-15 10:04:27 -0400 | [diff] [blame] | 797 | if (echoed && tty->ops->flush_chars) |
Peter Hurley | 019ebdf | 2013-06-15 10:04:25 -0400 | [diff] [blame] | 798 | tty->ops->flush_chars(tty); |
Peter Hurley | 17bd790 | 2013-06-15 10:04:24 -0400 | [diff] [blame] | 799 | } |
| 800 | |
Peter Hurley | 1075a6e | 2013-12-09 18:06:07 -0500 | [diff] [blame] | 801 | /* NB: echo_mark and echo_head should be equivalent here */ |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 802 | static void flush_echoes(struct tty_struct *tty) |
| 803 | { |
| 804 | struct n_tty_data *ldata = tty->disc_data; |
| 805 | |
Peter Hurley | 39434ab | 2013-11-29 12:56:10 -0500 | [diff] [blame] | 806 | if ((!L_ECHO(tty) && !L_ECHONL(tty)) || |
| 807 | ldata->echo_commit == ldata->echo_head) |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 808 | return; |
| 809 | |
| 810 | mutex_lock(&ldata->output_lock); |
| 811 | ldata->echo_commit = ldata->echo_head; |
| 812 | __process_echoes(tty); |
| 813 | mutex_unlock(&ldata->output_lock); |
| 814 | } |
| 815 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 817 | * add_echo_byte - add a byte to the echo buffer |
| 818 | * @c: unicode byte to echo |
| 819 | * @ldata: n_tty data |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 820 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 821 | * Add a character or operation byte to the echo buffer. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 822 | */ |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 823 | static inline void add_echo_byte(unsigned char c, struct n_tty_data *ldata) |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 824 | { |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 825 | *echo_buf_addr(ldata, ldata->echo_head) = c; |
| 826 | smp_wmb(); /* Matches smp_rmb() in echo_buf(). */ |
| 827 | ldata->echo_head++; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 828 | } |
| 829 | |
| 830 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 831 | * echo_move_back_col - add operation to move back a column |
| 832 | * @ldata: n_tty data |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 833 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 834 | * Add an operation to the echo buffer to move back one column. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 835 | */ |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 836 | static void echo_move_back_col(struct n_tty_data *ldata) |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 837 | { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 838 | add_echo_byte(ECHO_OP_START, ldata); |
| 839 | add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 843 | * echo_set_canon_col - add operation to set the canon column |
| 844 | * @ldata: n_tty data |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 845 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 846 | * Add an operation to the echo buffer to set the canon column to the current |
| 847 | * column. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 848 | */ |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 849 | static void echo_set_canon_col(struct n_tty_data *ldata) |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 850 | { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 851 | add_echo_byte(ECHO_OP_START, ldata); |
| 852 | add_echo_byte(ECHO_OP_SET_CANON_COL, ldata); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 853 | } |
| 854 | |
| 855 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 856 | * echo_erase_tab - add operation to erase a tab |
| 857 | * @num_chars: number of character columns already used |
| 858 | * @after_tab: true if num_chars starts after a previous tab |
| 859 | * @ldata: n_tty data |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 860 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 861 | * Add an operation to the echo buffer to erase a tab. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 862 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 863 | * Called by the eraser function, which knows how many character columns have |
| 864 | * been used since either a previous tab or the start of input. This |
| 865 | * information will be used later, along with canon column (if applicable), to |
| 866 | * go back the correct number of columns. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 867 | */ |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 868 | static void echo_erase_tab(unsigned int num_chars, int after_tab, |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 869 | struct n_tty_data *ldata) |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 870 | { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 871 | add_echo_byte(ECHO_OP_START, ldata); |
| 872 | add_echo_byte(ECHO_OP_ERASE_TAB, ldata); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 873 | |
| 874 | /* We only need to know this modulo 8 (tab spacing) */ |
| 875 | num_chars &= 7; |
| 876 | |
| 877 | /* Set the high bit as a flag if num_chars is after a previous tab */ |
| 878 | if (after_tab) |
| 879 | num_chars |= 0x80; |
Alan Cox | 300a620 | 2009-01-02 13:41:04 +0000 | [diff] [blame] | 880 | |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 881 | add_echo_byte(num_chars, ldata); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 885 | * echo_char_raw - echo a character raw |
| 886 | * @c: unicode byte to echo |
| 887 | * @ldata: line disc data |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 889 | * Echo user input back onto the screen. This must be called only when |
| 890 | * L_ECHO(tty) is true. Called from the &tty_driver.receive_buf() path. |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 891 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 892 | * This variant does not treat control characters specially. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 893 | */ |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 894 | static void echo_char_raw(unsigned char c, struct n_tty_data *ldata) |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 895 | { |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 896 | if (c == ECHO_OP_START) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 897 | add_echo_byte(ECHO_OP_START, ldata); |
| 898 | add_echo_byte(ECHO_OP_START, ldata); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 899 | } else { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 900 | add_echo_byte(c, ldata); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 901 | } |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 902 | } |
| 903 | |
| 904 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 905 | * echo_char - echo a character |
| 906 | * @c: unicode byte to echo |
| 907 | * @tty: terminal device |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 908 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 909 | * Echo user input back onto the screen. This must be called only when |
| 910 | * L_ECHO(tty) is true. Called from the &tty_driver.receive_buf() path. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 911 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 912 | * This variant tags control characters to be echoed as "^X" (where X is the |
| 913 | * letter representing the control char). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | static void echo_char(unsigned char c, struct tty_struct *tty) |
| 916 | { |
Jiri Slaby | bddc715 | 2012-10-18 22:26:42 +0200 | [diff] [blame] | 917 | struct n_tty_data *ldata = tty->disc_data; |
| 918 | |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 919 | if (c == ECHO_OP_START) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 920 | add_echo_byte(ECHO_OP_START, ldata); |
| 921 | add_echo_byte(ECHO_OP_START, ldata); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 922 | } else { |
Joe Peterson | 62b2635 | 2009-09-09 15:03:47 -0600 | [diff] [blame] | 923 | if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t') |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 924 | add_echo_byte(ECHO_OP_START, ldata); |
| 925 | add_echo_byte(c, ldata); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 926 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | } |
| 928 | |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 929 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 930 | * finish_erasing - complete erase |
| 931 | * @ldata: n_tty data |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 932 | */ |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 933 | static inline void finish_erasing(struct n_tty_data *ldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 935 | if (ldata->erasing) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 936 | echo_char_raw('/', ldata); |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 937 | ldata->erasing = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | } |
| 939 | } |
| 940 | |
| 941 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 942 | * eraser - handle erase function |
| 943 | * @c: character input |
| 944 | * @tty: terminal device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 946 | * Perform erase and necessary output when an erase character is present in the |
| 947 | * stream from the driver layer. Handles the complexities of UTF-8 multibyte |
| 948 | * symbols. |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 949 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 950 | * Locking: n_tty_receive_buf()/producer path: |
| 951 | * caller holds non-exclusive %termios_rwsem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | static void eraser(unsigned char c, struct tty_struct *tty) |
| 954 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 955 | struct n_tty_data *ldata = tty->disc_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | enum { ERASE, WERASE, KILL } kill_type; |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 957 | size_t head; |
| 958 | size_t cnt; |
| 959 | int seen_alnums; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 961 | if (ldata->read_head == ldata->canon_head) { |
Joe Peterson | 7e94b1d | 2009-01-02 13:43:40 +0000 | [diff] [blame] | 962 | /* process_output('\a', tty); */ /* what do you think? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | return; |
| 964 | } |
| 965 | if (c == ERASE_CHAR(tty)) |
| 966 | kill_type = ERASE; |
| 967 | else if (c == WERASE_CHAR(tty)) |
| 968 | kill_type = WERASE; |
| 969 | else { |
| 970 | if (!L_ECHO(tty)) { |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 971 | ldata->read_head = ldata->canon_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | return; |
| 973 | } |
| 974 | if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) { |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 975 | ldata->read_head = ldata->canon_head; |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 976 | finish_erasing(ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | echo_char(KILL_CHAR(tty), tty); |
| 978 | /* Add a newline if ECHOK is on and ECHOKE is off. */ |
| 979 | if (L_ECHOK(tty)) |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 980 | echo_char_raw('\n', ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | return; |
| 982 | } |
| 983 | kill_type = KILL; |
| 984 | } |
| 985 | |
| 986 | seen_alnums = 0; |
Tetsuo Handa | 3d63b7e | 2018-05-26 09:53:13 +0900 | [diff] [blame] | 987 | while (MASK(ldata->read_head) != MASK(ldata->canon_head)) { |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 988 | head = ldata->read_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | |
| 990 | /* erase a single possibly multibyte character */ |
| 991 | do { |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 992 | head--; |
| 993 | c = read_buf(ldata, head); |
Tetsuo Handa | 3d63b7e | 2018-05-26 09:53:13 +0900 | [diff] [blame] | 994 | } while (is_continuation(c, tty) && |
| 995 | MASK(head) != MASK(ldata->canon_head)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | |
| 997 | /* do not partially erase */ |
| 998 | if (is_continuation(c, tty)) |
| 999 | break; |
| 1000 | |
| 1001 | if (kill_type == WERASE) { |
| 1002 | /* Equivalent to BSD's ALTWERASE. */ |
| 1003 | if (isalnum(c) || c == '_') |
| 1004 | seen_alnums++; |
| 1005 | else if (seen_alnums) |
| 1006 | break; |
| 1007 | } |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1008 | cnt = ldata->read_head - head; |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 1009 | ldata->read_head = head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | if (L_ECHO(tty)) { |
| 1011 | if (L_ECHOPRT(tty)) { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1012 | if (!ldata->erasing) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1013 | echo_char_raw('\\', ldata); |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1014 | ldata->erasing = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | } |
| 1016 | /* if cnt > 1, output a multi-byte character */ |
| 1017 | echo_char(c, tty); |
| 1018 | while (--cnt > 0) { |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1019 | head++; |
| 1020 | echo_char_raw(read_buf(ldata, head), ldata); |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1021 | echo_move_back_col(ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | } |
| 1023 | } else if (kill_type == ERASE && !L_ECHOE(tty)) { |
| 1024 | echo_char(ERASE_CHAR(tty), tty); |
| 1025 | } else if (c == '\t') { |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 1026 | unsigned int num_chars = 0; |
| 1027 | int after_tab = 0; |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1028 | size_t tail = ldata->read_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 1030 | /* |
| 1031 | * Count the columns used for characters |
| 1032 | * since the start of input or after a |
| 1033 | * previous tab. |
| 1034 | * This info is used to go back the correct |
| 1035 | * number of columns. |
| 1036 | */ |
Tetsuo Handa | 3d63b7e | 2018-05-26 09:53:13 +0900 | [diff] [blame] | 1037 | while (MASK(tail) != MASK(ldata->canon_head)) { |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1038 | tail--; |
| 1039 | c = read_buf(ldata, tail); |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 1040 | if (c == '\t') { |
| 1041 | after_tab = 1; |
| 1042 | break; |
Alan Cox | 300a620 | 2009-01-02 13:41:04 +0000 | [diff] [blame] | 1043 | } else if (iscntrl(c)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | if (L_ECHOCTL(tty)) |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 1045 | num_chars += 2; |
| 1046 | } else if (!is_continuation(c, tty)) { |
| 1047 | num_chars++; |
| 1048 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | } |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1050 | echo_erase_tab(num_chars, after_tab, ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | } else { |
| 1052 | if (iscntrl(c) && L_ECHOCTL(tty)) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1053 | echo_char_raw('\b', ldata); |
| 1054 | echo_char_raw(' ', ldata); |
| 1055 | echo_char_raw('\b', ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | } |
| 1057 | if (!iscntrl(c) || L_ECHOCTL(tty)) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1058 | echo_char_raw('\b', ldata); |
| 1059 | echo_char_raw(' ', ldata); |
| 1060 | echo_char_raw('\b', ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | } |
| 1062 | } |
| 1063 | } |
| 1064 | if (kill_type == ERASE) |
| 1065 | break; |
| 1066 | } |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 1067 | if (ldata->read_head == ldata->canon_head && L_ECHO(tty)) |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1068 | finish_erasing(ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | } |
| 1070 | |
Jiri Slaby | c66453c | 2021-11-26 09:16:03 +0100 | [diff] [blame] | 1071 | |
| 1072 | static void __isig(int sig, struct tty_struct *tty) |
| 1073 | { |
| 1074 | struct pid *tty_pgrp = tty_get_pgrp(tty); |
| 1075 | if (tty_pgrp) { |
| 1076 | kill_pgrp(tty_pgrp, sig, 1); |
| 1077 | put_pid(tty_pgrp); |
| 1078 | } |
| 1079 | } |
| 1080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1082 | * isig - handle the ISIG optio |
| 1083 | * @sig: signal |
| 1084 | * @tty: terminal |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1086 | * Called when a signal is being sent due to terminal input. Called from the |
| 1087 | * &tty_driver.receive_buf() path, so serialized. |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 1088 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1089 | * Performs input and output flush if !NOFLSH. In this context, the echo |
| 1090 | * buffer is 'output'. The signal is processed first to alert any current |
| 1091 | * readers or writers to discontinue and exit their i/o loops. |
Peter Hurley | d2b6f44 | 2015-01-17 15:42:06 -0500 | [diff] [blame] | 1092 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1093 | * Locking: %ctrl.lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | */ |
Peter Hurley | 3b19e03 | 2015-06-27 09:21:32 -0400 | [diff] [blame] | 1095 | static void isig(int sig, struct tty_struct *tty) |
| 1096 | { |
| 1097 | struct n_tty_data *ldata = tty->disc_data; |
| 1098 | |
| 1099 | if (L_NOFLSH(tty)) { |
| 1100 | /* signal only */ |
| 1101 | __isig(sig, tty); |
| 1102 | |
| 1103 | } else { /* signal and flush */ |
Peter Hurley | d2b6f44 | 2015-01-17 15:42:06 -0500 | [diff] [blame] | 1104 | up_read(&tty->termios_rwsem); |
| 1105 | down_write(&tty->termios_rwsem); |
| 1106 | |
Peter Hurley | 3b19e03 | 2015-06-27 09:21:32 -0400 | [diff] [blame] | 1107 | __isig(sig, tty); |
| 1108 | |
Peter Hurley | d2b6f44 | 2015-01-17 15:42:06 -0500 | [diff] [blame] | 1109 | /* clear echo buffer */ |
| 1110 | mutex_lock(&ldata->output_lock); |
| 1111 | ldata->echo_head = ldata->echo_tail = 0; |
| 1112 | ldata->echo_mark = ldata->echo_commit = 0; |
| 1113 | mutex_unlock(&ldata->output_lock); |
| 1114 | |
| 1115 | /* clear output buffer */ |
| 1116 | tty_driver_flush_buffer(tty); |
| 1117 | |
| 1118 | /* clear input buffer */ |
| 1119 | reset_buffer_flags(tty->disc_data); |
| 1120 | |
| 1121 | /* notify pty master of flush */ |
| 1122 | if (tty->link) |
| 1123 | n_tty_packet_mode_flush(tty); |
| 1124 | |
| 1125 | up_write(&tty->termios_rwsem); |
| 1126 | down_read(&tty->termios_rwsem); |
| 1127 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | } |
| 1129 | |
| 1130 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1131 | * n_tty_receive_break - handle break |
| 1132 | * @tty: terminal |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1134 | * An RS232 break event has been hit in the incoming bitstream. This can cause |
| 1135 | * a variety of events depending upon the termios settings. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1137 | * Locking: n_tty_receive_buf()/producer path: |
| 1138 | * caller holds non-exclusive termios_rwsem |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 1139 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1140 | * Note: may get exclusive %termios_rwsem if flushing input buffer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | */ |
Peter Hurley | 4b29349 | 2013-07-24 08:29:55 -0400 | [diff] [blame] | 1142 | static void n_tty_receive_break(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1144 | struct n_tty_data *ldata = tty->disc_data; |
| 1145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | if (I_IGNBRK(tty)) |
| 1147 | return; |
| 1148 | if (I_BRKINT(tty)) { |
Peter Hurley | 8c985d1 | 2013-03-06 08:38:19 -0500 | [diff] [blame] | 1149 | isig(SIGINT, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | return; |
| 1151 | } |
| 1152 | if (I_PARMRK(tty)) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1153 | put_tty_queue('\377', ldata); |
| 1154 | put_tty_queue('\0', ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | } |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1156 | put_tty_queue('\0', ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | } |
| 1158 | |
| 1159 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1160 | * n_tty_receive_overrun - handle overrun reporting |
| 1161 | * @tty: terminal |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1163 | * Data arrived faster than we could process it. While the tty driver has |
| 1164 | * flagged this the bits that were missed are gone forever. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1166 | * Called from the receive_buf path so single threaded. Does not need locking |
| 1167 | * as num_overrun and overrun_time are function private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | */ |
Peter Hurley | 4b29349 | 2013-07-24 08:29:55 -0400 | [diff] [blame] | 1169 | static void n_tty_receive_overrun(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1171 | struct n_tty_data *ldata = tty->disc_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1173 | ldata->num_overrun++; |
| 1174 | if (time_after(jiffies, ldata->overrun_time + HZ) || |
| 1175 | time_after(ldata->overrun_time, jiffies)) { |
Peter Hurley | 339f36b | 2015-11-08 13:01:13 -0500 | [diff] [blame] | 1176 | tty_warn(tty, "%d input overrun(s)\n", ldata->num_overrun); |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1177 | ldata->overrun_time = jiffies; |
| 1178 | ldata->num_overrun = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | } |
| 1180 | } |
| 1181 | |
| 1182 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1183 | * n_tty_receive_parity_error - error notifier |
| 1184 | * @tty: terminal device |
| 1185 | * @c: character |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1187 | * Process a parity error and queue the right data to indicate the error case |
| 1188 | * if necessary. |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 1189 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1190 | * Locking: n_tty_receive_buf()/producer path: |
| 1191 | * caller holds non-exclusive %termios_rwsem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | */ |
Peter Hurley | 4b29349 | 2013-07-24 08:29:55 -0400 | [diff] [blame] | 1193 | static void n_tty_receive_parity_error(struct tty_struct *tty, unsigned char c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1195 | struct n_tty_data *ldata = tty->disc_data; |
| 1196 | |
Peter Hurley | 66528f9 | 2014-06-16 08:10:42 -0400 | [diff] [blame] | 1197 | if (I_INPCK(tty)) { |
| 1198 | if (I_IGNPAR(tty)) |
| 1199 | return; |
| 1200 | if (I_PARMRK(tty)) { |
| 1201 | put_tty_queue('\377', ldata); |
| 1202 | put_tty_queue('\0', ldata); |
| 1203 | put_tty_queue(c, ldata); |
| 1204 | } else |
| 1205 | put_tty_queue('\0', ldata); |
| 1206 | } else |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1207 | put_tty_queue(c, ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | } |
| 1209 | |
Peter Hurley | b0ac50b | 2013-06-15 10:21:23 -0400 | [diff] [blame] | 1210 | static void |
| 1211 | n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c) |
| 1212 | { |
Peter Hurley | d2b6f44 | 2015-01-17 15:42:06 -0500 | [diff] [blame] | 1213 | isig(signal, tty); |
Peter Hurley | b0ac50b | 2013-06-15 10:21:23 -0400 | [diff] [blame] | 1214 | if (I_IXON(tty)) |
| 1215 | start_tty(tty); |
| 1216 | if (L_ECHO(tty)) { |
| 1217 | echo_char(c, tty); |
| 1218 | commit_echoes(tty); |
Peter Hurley | e2613be | 2014-02-11 16:34:55 -0500 | [diff] [blame] | 1219 | } else |
| 1220 | process_echoes(tty); |
Peter Hurley | b0ac50b | 2013-06-15 10:21:23 -0400 | [diff] [blame] | 1221 | } |
| 1222 | |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1223 | static void n_tty_receive_char_special(struct tty_struct *tty, unsigned char c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1225 | struct n_tty_data *ldata = tty->disc_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | if (I_IXON(tty)) { |
| 1228 | if (c == START_CHAR(tty)) { |
| 1229 | start_tty(tty); |
Peter Hurley | e2613be | 2014-02-11 16:34:55 -0500 | [diff] [blame] | 1230 | process_echoes(tty); |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1231 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | } |
| 1233 | if (c == STOP_CHAR(tty)) { |
| 1234 | stop_tty(tty); |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1235 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | } |
| 1237 | } |
Joe Peterson | 575537b3 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 1238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | if (L_ISIG(tty)) { |
Peter Hurley | b0ac50b | 2013-06-15 10:21:23 -0400 | [diff] [blame] | 1240 | if (c == INTR_CHAR(tty)) { |
| 1241 | n_tty_receive_signal_char(tty, SIGINT, c); |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1242 | return; |
Peter Hurley | b0ac50b | 2013-06-15 10:21:23 -0400 | [diff] [blame] | 1243 | } else if (c == QUIT_CHAR(tty)) { |
| 1244 | n_tty_receive_signal_char(tty, SIGQUIT, c); |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1245 | return; |
Peter Hurley | b0ac50b | 2013-06-15 10:21:23 -0400 | [diff] [blame] | 1246 | } else if (c == SUSP_CHAR(tty)) { |
| 1247 | n_tty_receive_signal_char(tty, SIGTSTP, c); |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1248 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | } |
| 1250 | } |
Joe Peterson | 575537b3 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 1251 | |
Jiri Slaby | 6e94dbc | 2021-05-05 11:19:05 +0200 | [diff] [blame] | 1252 | if (tty->flow.stopped && !tty->flow.tco_stopped && I_IXON(tty) && I_IXANY(tty)) { |
Peter Hurley | 855df3c | 2013-07-24 08:29:50 -0400 | [diff] [blame] | 1253 | start_tty(tty); |
| 1254 | process_echoes(tty); |
| 1255 | } |
| 1256 | |
Joe Peterson | 575537b3 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 1257 | if (c == '\r') { |
| 1258 | if (I_IGNCR(tty)) |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1259 | return; |
Joe Peterson | 575537b3 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 1260 | if (I_ICRNL(tty)) |
| 1261 | c = '\n'; |
| 1262 | } else if (c == '\n' && I_INLCR(tty)) |
| 1263 | c = '\r'; |
| 1264 | |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1265 | if (ldata->icanon) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) || |
| 1267 | (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) { |
| 1268 | eraser(c, tty); |
Peter Hurley | 17bd790 | 2013-06-15 10:04:24 -0400 | [diff] [blame] | 1269 | commit_echoes(tty); |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1270 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | } |
| 1272 | if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1273 | ldata->lnext = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | if (L_ECHO(tty)) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1275 | finish_erasing(ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | if (L_ECHOCTL(tty)) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1277 | echo_char_raw('^', ldata); |
| 1278 | echo_char_raw('\b', ldata); |
Peter Hurley | 17bd790 | 2013-06-15 10:04:24 -0400 | [diff] [blame] | 1279 | commit_echoes(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | } |
| 1281 | } |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1282 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | } |
Peter Hurley | e60d27c | 2013-07-24 08:29:56 -0400 | [diff] [blame] | 1284 | if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) { |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1285 | size_t tail = ldata->canon_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1287 | finish_erasing(ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | echo_char(c, tty); |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1289 | echo_char_raw('\n', ldata); |
Tetsuo Handa | 3d63b7e | 2018-05-26 09:53:13 +0900 | [diff] [blame] | 1290 | while (MASK(tail) != MASK(ldata->read_head)) { |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1291 | echo_char(read_buf(ldata, tail), tty); |
| 1292 | tail++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | } |
Peter Hurley | 17bd790 | 2013-06-15 10:04:24 -0400 | [diff] [blame] | 1294 | commit_echoes(tty); |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1295 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | } |
| 1297 | if (c == '\n') { |
Joe Peterson | acc71bb | 2009-01-02 13:43:32 +0000 | [diff] [blame] | 1298 | if (L_ECHO(tty) || L_ECHONL(tty)) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1299 | echo_char_raw('\n', ldata); |
Peter Hurley | 17bd790 | 2013-06-15 10:04:24 -0400 | [diff] [blame] | 1300 | commit_echoes(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | } |
| 1302 | goto handle_newline; |
| 1303 | } |
| 1304 | if (c == EOF_CHAR(tty)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | c = __DISABLED_CHAR; |
| 1306 | goto handle_newline; |
| 1307 | } |
| 1308 | if ((c == EOL_CHAR(tty)) || |
| 1309 | (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) { |
| 1310 | /* |
| 1311 | * XXX are EOL_CHAR and EOL2_CHAR echoed?!? |
| 1312 | */ |
| 1313 | if (L_ECHO(tty)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | /* Record the column of first canon char. */ |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 1315 | if (ldata->canon_head == ldata->read_head) |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1316 | echo_set_canon_col(ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | echo_char(c, tty); |
Peter Hurley | 17bd790 | 2013-06-15 10:04:24 -0400 | [diff] [blame] | 1318 | commit_echoes(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | } |
| 1320 | /* |
| 1321 | * XXX does PARMRK doubling happen for |
| 1322 | * EOL_CHAR and EOL2_CHAR? |
| 1323 | */ |
Peter Hurley | 001ba92 | 2013-12-02 14:24:44 -0500 | [diff] [blame] | 1324 | if (c == (unsigned char) '\377' && I_PARMRK(tty)) |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1325 | put_tty_queue(c, ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 1327 | handle_newline: |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1328 | set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags); |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 1329 | put_tty_queue(c, ldata); |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1330 | smp_store_release(&ldata->canon_head, ldata->read_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | kill_fasync(&tty->fasync, SIGIO, POLL_IN); |
TATSUKAWA KOSUKE (立川 江介) | c816b2e | 2022-01-26 23:35:02 +0000 | [diff] [blame] | 1332 | wake_up_interruptible_poll(&tty->read_wait, EPOLLIN | EPOLLRDNORM); |
Jiri Slaby | 1676536 | 2021-05-05 11:19:00 +0200 | [diff] [blame] | 1333 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | } |
| 1335 | } |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 1336 | |
Joe Peterson | acc71bb | 2009-01-02 13:43:32 +0000 | [diff] [blame] | 1337 | if (L_ECHO(tty)) { |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1338 | finish_erasing(ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | if (c == '\n') |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1340 | echo_char_raw('\n', ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | else { |
| 1342 | /* Record the column of first canon char. */ |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 1343 | if (ldata->canon_head == ldata->read_head) |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1344 | echo_set_canon_col(ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | echo_char(c, tty); |
| 1346 | } |
Peter Hurley | 17bd790 | 2013-06-15 10:04:24 -0400 | [diff] [blame] | 1347 | commit_echoes(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | } |
| 1349 | |
Peter Hurley | 001ba92 | 2013-12-02 14:24:44 -0500 | [diff] [blame] | 1350 | /* PARMRK doubling check */ |
| 1351 | if (c == (unsigned char) '\377' && I_PARMRK(tty)) |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1352 | put_tty_queue(c, ldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 1354 | put_tty_queue(c, ldata); |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 1355 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | |
Jiri Slaby | c66453c | 2021-11-26 09:16:03 +0100 | [diff] [blame] | 1357 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1358 | * n_tty_receive_char - perform processing |
| 1359 | * @tty: terminal device |
| 1360 | * @c: character |
Jiri Slaby | c66453c | 2021-11-26 09:16:03 +0100 | [diff] [blame] | 1361 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1362 | * Process an individual character of input received from the driver. This is |
| 1363 | * serialized with respect to itself by the rules for the driver above. |
Jiri Slaby | c66453c | 2021-11-26 09:16:03 +0100 | [diff] [blame] | 1364 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1365 | * Locking: n_tty_receive_buf()/producer path: |
| 1366 | * caller holds non-exclusive %termios_rwsem |
| 1367 | * publishes canon_head if canonical mode is active |
Jiri Slaby | c66453c | 2021-11-26 09:16:03 +0100 | [diff] [blame] | 1368 | */ |
Jiri Slaby | 95aafe3 | 2021-05-05 11:18:58 +0200 | [diff] [blame] | 1369 | static void n_tty_receive_char(struct tty_struct *tty, unsigned char c) |
Peter Hurley | 4b1f79c | 2013-07-24 08:29:51 -0400 | [diff] [blame] | 1370 | { |
| 1371 | struct n_tty_data *ldata = tty->disc_data; |
Peter Hurley | 4b1f79c | 2013-07-24 08:29:51 -0400 | [diff] [blame] | 1372 | |
Jiri Slaby | 6e94dbc | 2021-05-05 11:19:05 +0200 | [diff] [blame] | 1373 | if (tty->flow.stopped && !tty->flow.tco_stopped && I_IXON(tty) && I_IXANY(tty)) { |
Peter Hurley | e60d27c | 2013-07-24 08:29:56 -0400 | [diff] [blame] | 1374 | start_tty(tty); |
| 1375 | process_echoes(tty); |
Peter Hurley | 4b1f79c | 2013-07-24 08:29:51 -0400 | [diff] [blame] | 1376 | } |
Peter Hurley | e60d27c | 2013-07-24 08:29:56 -0400 | [diff] [blame] | 1377 | if (L_ECHO(tty)) { |
| 1378 | finish_erasing(ldata); |
| 1379 | /* Record the column of first canon char. */ |
| 1380 | if (ldata->canon_head == ldata->read_head) |
| 1381 | echo_set_canon_col(ldata); |
| 1382 | echo_char(c, tty); |
| 1383 | commit_echoes(tty); |
| 1384 | } |
Peter Hurley | 001ba92 | 2013-12-02 14:24:44 -0500 | [diff] [blame] | 1385 | /* PARMRK doubling check */ |
Jiri Slaby | 95aafe3 | 2021-05-05 11:18:58 +0200 | [diff] [blame] | 1386 | if (c == (unsigned char) '\377' && I_PARMRK(tty)) |
Peter Hurley | e60d27c | 2013-07-24 08:29:56 -0400 | [diff] [blame] | 1387 | put_tty_queue(c, ldata); |
| 1388 | put_tty_queue(c, ldata); |
| 1389 | } |
Peter Hurley | 4b1f79c | 2013-07-24 08:29:51 -0400 | [diff] [blame] | 1390 | |
Peter Hurley | 8dc4b25 | 2013-12-02 14:24:43 -0500 | [diff] [blame] | 1391 | static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c) |
Peter Hurley | ad0cc7b | 2013-06-15 10:21:27 -0400 | [diff] [blame] | 1392 | { |
| 1393 | if (I_ISTRIP(tty)) |
| 1394 | c &= 0x7f; |
| 1395 | if (I_IUCLC(tty) && L_IEXTEN(tty)) |
| 1396 | c = tolower(c); |
| 1397 | |
| 1398 | if (I_IXON(tty)) { |
| 1399 | if (c == STOP_CHAR(tty)) |
| 1400 | stop_tty(tty); |
| 1401 | else if (c == START_CHAR(tty) || |
Jiri Slaby | 6e94dbc | 2021-05-05 11:19:05 +0200 | [diff] [blame] | 1402 | (tty->flow.stopped && !tty->flow.tco_stopped && I_IXANY(tty) && |
Peter Hurley | ad0cc7b | 2013-06-15 10:21:27 -0400 | [diff] [blame] | 1403 | c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && |
| 1404 | c != SUSP_CHAR(tty))) { |
| 1405 | start_tty(tty); |
| 1406 | process_echoes(tty); |
| 1407 | } |
| 1408 | } |
| 1409 | } |
| 1410 | |
Peter Hurley | d2f8d7a | 2013-06-15 10:21:24 -0400 | [diff] [blame] | 1411 | static void |
| 1412 | n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag) |
| 1413 | { |
Peter Hurley | d2f8d7a | 2013-06-15 10:21:24 -0400 | [diff] [blame] | 1414 | switch (flag) { |
| 1415 | case TTY_BREAK: |
| 1416 | n_tty_receive_break(tty); |
| 1417 | break; |
| 1418 | case TTY_PARITY: |
| 1419 | case TTY_FRAME: |
| 1420 | n_tty_receive_parity_error(tty, c); |
| 1421 | break; |
| 1422 | case TTY_OVERRUN: |
| 1423 | n_tty_receive_overrun(tty); |
| 1424 | break; |
| 1425 | default: |
Peter Hurley | 339f36b | 2015-11-08 13:01:13 -0500 | [diff] [blame] | 1426 | tty_err(tty, "unknown flag %d\n", flag); |
Peter Hurley | d2f8d7a | 2013-06-15 10:21:24 -0400 | [diff] [blame] | 1427 | break; |
| 1428 | } |
| 1429 | } |
| 1430 | |
Peter Hurley | e60d27c | 2013-07-24 08:29:56 -0400 | [diff] [blame] | 1431 | static void |
| 1432 | n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag) |
| 1433 | { |
| 1434 | struct n_tty_data *ldata = tty->disc_data; |
| 1435 | |
| 1436 | ldata->lnext = 0; |
| 1437 | if (likely(flag == TTY_NORMAL)) { |
| 1438 | if (I_ISTRIP(tty)) |
| 1439 | c &= 0x7f; |
| 1440 | if (I_IUCLC(tty) && L_IEXTEN(tty)) |
| 1441 | c = tolower(c); |
Jiri Slaby | 95aafe3 | 2021-05-05 11:18:58 +0200 | [diff] [blame] | 1442 | n_tty_receive_char(tty, c); |
Peter Hurley | e60d27c | 2013-07-24 08:29:56 -0400 | [diff] [blame] | 1443 | } else |
| 1444 | n_tty_receive_char_flagged(tty, c, flag); |
| 1445 | } |
| 1446 | |
Peter Hurley | 4a23a4d | 2013-06-15 10:21:22 -0400 | [diff] [blame] | 1447 | static void |
| 1448 | n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp, |
Jiri Slaby | 0f3dcf3 | 2021-05-05 11:19:04 +0200 | [diff] [blame] | 1449 | const char *fp, int count) |
Peter Hurley | 4a23a4d | 2013-06-15 10:21:22 -0400 | [diff] [blame] | 1450 | { |
| 1451 | struct n_tty_data *ldata = tty->disc_data; |
| 1452 | size_t n, head; |
| 1453 | |
| 1454 | head = ldata->read_head & (N_TTY_BUF_SIZE - 1); |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1455 | n = min_t(size_t, count, N_TTY_BUF_SIZE - head); |
Peter Hurley | 4a23a4d | 2013-06-15 10:21:22 -0400 | [diff] [blame] | 1456 | memcpy(read_buf_addr(ldata, head), cp, n); |
| 1457 | ldata->read_head += n; |
| 1458 | cp += n; |
| 1459 | count -= n; |
| 1460 | |
| 1461 | head = ldata->read_head & (N_TTY_BUF_SIZE - 1); |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1462 | n = min_t(size_t, count, N_TTY_BUF_SIZE - head); |
Peter Hurley | 4a23a4d | 2013-06-15 10:21:22 -0400 | [diff] [blame] | 1463 | memcpy(read_buf_addr(ldata, head), cp, n); |
| 1464 | ldata->read_head += n; |
| 1465 | } |
| 1466 | |
Peter Hurley | 554117bd | 2013-06-15 10:21:25 -0400 | [diff] [blame] | 1467 | static void |
| 1468 | n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp, |
Jiri Slaby | 0f3dcf3 | 2021-05-05 11:19:04 +0200 | [diff] [blame] | 1469 | const char *fp, int count) |
Peter Hurley | 554117bd | 2013-06-15 10:21:25 -0400 | [diff] [blame] | 1470 | { |
| 1471 | struct n_tty_data *ldata = tty->disc_data; |
| 1472 | char flag = TTY_NORMAL; |
| 1473 | |
| 1474 | while (count--) { |
| 1475 | if (fp) |
| 1476 | flag = *fp++; |
| 1477 | if (likely(flag == TTY_NORMAL)) |
| 1478 | put_tty_queue(*cp++, ldata); |
| 1479 | else |
| 1480 | n_tty_receive_char_flagged(tty, *cp++, flag); |
| 1481 | } |
| 1482 | } |
| 1483 | |
Peter Hurley | ad0cc7b | 2013-06-15 10:21:27 -0400 | [diff] [blame] | 1484 | static void |
| 1485 | n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp, |
Jiri Slaby | 0f3dcf3 | 2021-05-05 11:19:04 +0200 | [diff] [blame] | 1486 | const char *fp, int count) |
Peter Hurley | ad0cc7b | 2013-06-15 10:21:27 -0400 | [diff] [blame] | 1487 | { |
| 1488 | char flag = TTY_NORMAL; |
| 1489 | |
| 1490 | while (count--) { |
| 1491 | if (fp) |
| 1492 | flag = *fp++; |
| 1493 | if (likely(flag == TTY_NORMAL)) |
| 1494 | n_tty_receive_char_closing(tty, *cp++); |
Peter Hurley | ad0cc7b | 2013-06-15 10:21:27 -0400 | [diff] [blame] | 1495 | } |
| 1496 | } |
| 1497 | |
Jiri Slaby | 1ed2dfe | 2021-05-05 11:18:57 +0200 | [diff] [blame] | 1498 | static void n_tty_receive_buf_standard(struct tty_struct *tty, |
Jiri Slaby | 0f3dcf3 | 2021-05-05 11:19:04 +0200 | [diff] [blame] | 1499 | const unsigned char *cp, const char *fp, int count) |
Peter Hurley | 6baad00 | 2013-07-24 08:29:52 -0400 | [diff] [blame] | 1500 | { |
| 1501 | struct n_tty_data *ldata = tty->disc_data; |
| 1502 | char flag = TTY_NORMAL; |
| 1503 | |
| 1504 | while (count--) { |
Jiri Slaby | 3a7d530 | 2021-05-05 11:19:01 +0200 | [diff] [blame] | 1505 | unsigned char c = *cp++; |
| 1506 | |
Peter Hurley | 6baad00 | 2013-07-24 08:29:52 -0400 | [diff] [blame] | 1507 | if (fp) |
| 1508 | flag = *fp++; |
Jiri Slaby | 67a620d | 2021-05-05 11:18:59 +0200 | [diff] [blame] | 1509 | |
| 1510 | if (ldata->lnext) { |
Jiri Slaby | 3a7d530 | 2021-05-05 11:19:01 +0200 | [diff] [blame] | 1511 | n_tty_receive_char_lnext(tty, c, flag); |
Jiri Slaby | 67a620d | 2021-05-05 11:18:59 +0200 | [diff] [blame] | 1512 | continue; |
| 1513 | } |
| 1514 | |
Jiri Slaby | e8f2a13 | 2021-05-05 11:19:02 +0200 | [diff] [blame] | 1515 | if (unlikely(flag != TTY_NORMAL)) { |
Jiri Slaby | 3a7d530 | 2021-05-05 11:19:01 +0200 | [diff] [blame] | 1516 | n_tty_receive_char_flagged(tty, c, flag); |
Jiri Slaby | e8f2a13 | 2021-05-05 11:19:02 +0200 | [diff] [blame] | 1517 | continue; |
| 1518 | } |
| 1519 | |
| 1520 | if (I_ISTRIP(tty)) |
| 1521 | c &= 0x7f; |
| 1522 | if (I_IUCLC(tty) && L_IEXTEN(tty)) |
| 1523 | c = tolower(c); |
| 1524 | if (L_EXTPROC(tty)) { |
| 1525 | put_tty_queue(c, ldata); |
| 1526 | continue; |
| 1527 | } |
| 1528 | |
| 1529 | if (test_bit(c, ldata->char_map)) |
| 1530 | n_tty_receive_char_special(tty, c); |
| 1531 | else |
| 1532 | n_tty_receive_char(tty, c); |
Peter Hurley | 6baad00 | 2013-07-24 08:29:52 -0400 | [diff] [blame] | 1533 | } |
| 1534 | } |
| 1535 | |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 1536 | static void __receive_buf(struct tty_struct *tty, const unsigned char *cp, |
Jiri Slaby | 0f3dcf3 | 2021-05-05 11:19:04 +0200 | [diff] [blame] | 1537 | const char *fp, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1539 | struct n_tty_data *ldata = tty->disc_data; |
Peter Hurley | a1dd30e | 2013-06-15 10:21:26 -0400 | [diff] [blame] | 1540 | bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | |
Peter Hurley | 4a23a4d | 2013-06-15 10:21:22 -0400 | [diff] [blame] | 1542 | if (ldata->real_raw) |
| 1543 | n_tty_receive_buf_real_raw(tty, cp, fp, count); |
Peter Hurley | a1dd30e | 2013-06-15 10:21:26 -0400 | [diff] [blame] | 1544 | else if (ldata->raw || (L_EXTPROC(tty) && !preops)) |
Peter Hurley | 554117bd | 2013-06-15 10:21:25 -0400 | [diff] [blame] | 1545 | n_tty_receive_buf_raw(tty, cp, fp, count); |
Peter Hurley | ad0cc7b | 2013-06-15 10:21:27 -0400 | [diff] [blame] | 1546 | else if (tty->closing && !L_EXTPROC(tty)) |
| 1547 | n_tty_receive_buf_closing(tty, cp, fp, count); |
Peter Hurley | 4a23a4d | 2013-06-15 10:21:22 -0400 | [diff] [blame] | 1548 | else { |
Jiri Slaby | 1ed2dfe | 2021-05-05 11:18:57 +0200 | [diff] [blame] | 1549 | n_tty_receive_buf_standard(tty, cp, fp, count); |
Peter Hurley | cbfd034 | 2013-06-15 10:04:26 -0400 | [diff] [blame] | 1550 | |
| 1551 | flush_echoes(tty); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1552 | if (tty->ops->flush_chars) |
| 1553 | tty->ops->flush_chars(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | } |
| 1555 | |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1556 | if (ldata->icanon && !L_EXTPROC(tty)) |
| 1557 | return; |
| 1558 | |
| 1559 | /* publish read_head to consumer */ |
| 1560 | smp_store_release(&ldata->commit_head, ldata->read_head); |
| 1561 | |
Peter Hurley | 33d7136 | 2016-01-09 21:45:08 -0800 | [diff] [blame] | 1562 | if (read_cnt(ldata)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | kill_fasync(&tty->fasync, SIGIO, POLL_IN); |
TATSUKAWA KOSUKE (立川 江介) | c816b2e | 2022-01-26 23:35:02 +0000 | [diff] [blame] | 1564 | wake_up_interruptible_poll(&tty->read_wait, EPOLLIN | EPOLLRDNORM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | } |
| 1567 | |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1568 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1569 | * n_tty_receive_buf_common - process input |
| 1570 | * @tty: device to receive input |
| 1571 | * @cp: input chars |
| 1572 | * @fp: flags for each char (if %NULL, all chars are %TTY_NORMAL) |
| 1573 | * @count: number of input chars in @cp |
| 1574 | * @flow: enable flow control |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1575 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1576 | * Called by the terminal driver when a block of characters has been received. |
| 1577 | * This function must be called from soft contexts not from interrupt context. |
| 1578 | * The driver is responsible for making calls one at a time and in order (or |
| 1579 | * using flush_to_ldisc()). |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1580 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1581 | * Returns: the # of input chars from @cp which were processed. |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1582 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1583 | * In canonical mode, the maximum line length is 4096 chars (including the line |
| 1584 | * termination char); lines longer than 4096 chars are truncated. After 4095 |
| 1585 | * chars, input data is still processed but not stored. Overflow processing |
| 1586 | * ensures the tty can always receive more input until at least one line can be |
| 1587 | * read. |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1588 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1589 | * In non-canonical mode, the read buffer will only accept 4095 chars; this |
| 1590 | * provides the necessary space for a newline char if the input mode is |
| 1591 | * switched to canonical. |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1592 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1593 | * Note it is possible for the read buffer to _contain_ 4096 chars in |
| 1594 | * non-canonical mode: the read buffer could already contain the maximum canon |
| 1595 | * line of 4096 chars when the mode is switched to non-canonical. |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1596 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1597 | * Locking: n_tty_receive_buf()/producer path: |
| 1598 | * claims non-exclusive %termios_rwsem |
| 1599 | * publishes commit_head or canon_head |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1600 | */ |
Peter Hurley | 5c32d12 | 2013-12-02 14:24:41 -0500 | [diff] [blame] | 1601 | static int |
| 1602 | n_tty_receive_buf_common(struct tty_struct *tty, const unsigned char *cp, |
Jiri Slaby | 0f3dcf3 | 2021-05-05 11:19:04 +0200 | [diff] [blame] | 1603 | const char *fp, int count, int flow) |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 1604 | { |
| 1605 | struct n_tty_data *ldata = tty->disc_data; |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1606 | int room, n, rcvd = 0, overflow; |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 1607 | |
Peter Hurley | 9356b53 | 2013-06-15 09:14:24 -0400 | [diff] [blame] | 1608 | down_read(&tty->termios_rwsem); |
| 1609 | |
Dmitry Safonov | c96cf92 | 2018-11-01 00:24:48 +0000 | [diff] [blame] | 1610 | do { |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1611 | /* |
Peter Hurley | 06c49f9 | 2015-01-16 15:05:38 -0500 | [diff] [blame] | 1612 | * When PARMRK is set, each input char may take up to 3 chars |
| 1613 | * in the read buf; reduce the buffer space avail by 3x |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1614 | * |
| 1615 | * If we are doing input canonicalization, and there are no |
| 1616 | * pending newlines, let characters through without limit, so |
| 1617 | * that erase characters will be handled. Other excess |
| 1618 | * characters will be beeped. |
| 1619 | * |
| 1620 | * paired with store in *_copy_from_read_buf() -- guarantees |
| 1621 | * the consumer has loaded the data in read_buf up to the new |
| 1622 | * read_tail (so this producer will not overwrite unread data) |
| 1623 | */ |
| 1624 | size_t tail = smp_load_acquire(&ldata->read_tail); |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1625 | |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1626 | room = N_TTY_BUF_SIZE - (ldata->read_head - tail); |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1627 | if (I_PARMRK(tty)) |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1628 | room = (room + 2) / 3; |
| 1629 | room--; |
| 1630 | if (room <= 0) { |
| 1631 | overflow = ldata->icanon && ldata->canon_head == tail; |
| 1632 | if (overflow && room < 0) |
| 1633 | ldata->read_head--; |
| 1634 | room = overflow; |
| 1635 | ldata->no_room = flow && !room; |
| 1636 | } else |
| 1637 | overflow = 0; |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1638 | |
Peter Hurley | 19e2ad6 | 2013-07-24 08:29:54 -0400 | [diff] [blame] | 1639 | n = min(count, room); |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1640 | if (!n) |
Peter Hurley | 19e2ad6 | 2013-07-24 08:29:54 -0400 | [diff] [blame] | 1641 | break; |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1642 | |
| 1643 | /* ignore parity errors if handling overflow */ |
| 1644 | if (!overflow || !fp || *fp != TTY_PARITY) |
| 1645 | __receive_buf(tty, cp, fp, n); |
| 1646 | |
Peter Hurley | 19e2ad6 | 2013-07-24 08:29:54 -0400 | [diff] [blame] | 1647 | cp += n; |
| 1648 | if (fp) |
| 1649 | fp += n; |
| 1650 | count -= n; |
| 1651 | rcvd += n; |
Dmitry Safonov | c96cf92 | 2018-11-01 00:24:48 +0000 | [diff] [blame] | 1652 | } while (!test_bit(TTY_LDISC_CHANGING, &tty->flags)); |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 1653 | |
Peter Hurley | 19e2ad6 | 2013-07-24 08:29:54 -0400 | [diff] [blame] | 1654 | tty->receive_room = room; |
Peter Hurley | fb5ef9e | 2015-01-16 15:05:39 -0500 | [diff] [blame] | 1655 | |
| 1656 | /* Unthrottle if handling overflow on pty */ |
| 1657 | if (tty->driver->type == TTY_DRIVER_TYPE_PTY) { |
| 1658 | if (overflow) { |
| 1659 | tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE); |
| 1660 | tty_unthrottle_safe(tty); |
| 1661 | __tty_set_flow_change(tty, 0); |
| 1662 | } |
| 1663 | } else |
| 1664 | n_tty_check_throttle(tty); |
| 1665 | |
Peter Hurley | 9356b53 | 2013-06-15 09:14:24 -0400 | [diff] [blame] | 1666 | up_read(&tty->termios_rwsem); |
| 1667 | |
Peter Hurley | 19e2ad6 | 2013-07-24 08:29:54 -0400 | [diff] [blame] | 1668 | return rcvd; |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 1669 | } |
| 1670 | |
Peter Hurley | 5c32d12 | 2013-12-02 14:24:41 -0500 | [diff] [blame] | 1671 | static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp, |
Jiri Slaby | 0f3dcf3 | 2021-05-05 11:19:04 +0200 | [diff] [blame] | 1672 | const char *fp, int count) |
Peter Hurley | 5c32d12 | 2013-12-02 14:24:41 -0500 | [diff] [blame] | 1673 | { |
| 1674 | n_tty_receive_buf_common(tty, cp, fp, count, 0); |
| 1675 | } |
| 1676 | |
| 1677 | static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp, |
Jiri Slaby | 0f3dcf3 | 2021-05-05 11:19:04 +0200 | [diff] [blame] | 1678 | const char *fp, int count) |
Peter Hurley | 5c32d12 | 2013-12-02 14:24:41 -0500 | [diff] [blame] | 1679 | { |
| 1680 | return n_tty_receive_buf_common(tty, cp, fp, count, 1); |
| 1681 | } |
| 1682 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1684 | * n_tty_set_termios - termios data changed |
| 1685 | * @tty: terminal |
| 1686 | * @old: previous data |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1688 | * Called by the tty layer when the user changes termios flags so that the line |
| 1689 | * discipline can plan ahead. This function cannot sleep and is protected from |
| 1690 | * re-entry by the tty layer. The user is guaranteed that this function will |
| 1691 | * not be re-entered or in progress when the ldisc is closed. |
Alan Cox | 17b8206 | 2008-10-13 10:45:06 +0100 | [diff] [blame] | 1692 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1693 | * Locking: Caller holds @tty->termios_rwsem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | */ |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 1695 | static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1697 | struct n_tty_data *ldata = tty->disc_data; |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 1698 | |
Linus Torvalds | 966031f | 2017-12-20 17:57:06 -0800 | [diff] [blame] | 1699 | if (!old || (old->c_lflag ^ tty->termios.c_lflag) & (ICANON | EXTPROC)) { |
Jiri Slaby | 3fe780b | 2012-10-18 22:26:40 +0200 | [diff] [blame] | 1700 | bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE); |
Peter Hurley | 4d0ed18 | 2013-12-10 17:12:02 -0500 | [diff] [blame] | 1701 | ldata->line_start = ldata->read_tail; |
| 1702 | if (!L_ICANON(tty) || !read_cnt(ldata)) { |
| 1703 | ldata->canon_head = ldata->read_tail; |
| 1704 | ldata->push = 0; |
| 1705 | } else { |
| 1706 | set_bit((ldata->read_head - 1) & (N_TTY_BUF_SIZE - 1), |
| 1707 | ldata->read_flags); |
| 1708 | ldata->canon_head = ldata->read_head; |
| 1709 | ldata->push = 1; |
| 1710 | } |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1711 | ldata->commit_head = ldata->read_head; |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1712 | ldata->erasing = 0; |
Peter Hurley | 6f9b028 | 2013-06-15 09:14:27 -0400 | [diff] [blame] | 1713 | ldata->lnext = 0; |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 1714 | } |
| 1715 | |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1716 | ldata->icanon = (L_ICANON(tty) != 0); |
Peter Hurley | 582f559 | 2013-05-17 12:49:48 -0400 | [diff] [blame] | 1717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) || |
| 1719 | I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) || |
| 1720 | I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) || |
| 1721 | I_PARMRK(tty)) { |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 1722 | bitmap_zero(ldata->char_map, 256); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | |
| 1724 | if (I_IGNCR(tty) || I_ICRNL(tty)) |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 1725 | set_bit('\r', ldata->char_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | if (I_INLCR(tty)) |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 1727 | set_bit('\n', ldata->char_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | |
| 1729 | if (L_ICANON(tty)) { |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 1730 | set_bit(ERASE_CHAR(tty), ldata->char_map); |
| 1731 | set_bit(KILL_CHAR(tty), ldata->char_map); |
| 1732 | set_bit(EOF_CHAR(tty), ldata->char_map); |
| 1733 | set_bit('\n', ldata->char_map); |
| 1734 | set_bit(EOL_CHAR(tty), ldata->char_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | if (L_IEXTEN(tty)) { |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 1736 | set_bit(WERASE_CHAR(tty), ldata->char_map); |
| 1737 | set_bit(LNEXT_CHAR(tty), ldata->char_map); |
| 1738 | set_bit(EOL2_CHAR(tty), ldata->char_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | if (L_ECHO(tty)) |
| 1740 | set_bit(REPRINT_CHAR(tty), |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 1741 | ldata->char_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | } |
| 1743 | } |
| 1744 | if (I_IXON(tty)) { |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 1745 | set_bit(START_CHAR(tty), ldata->char_map); |
| 1746 | set_bit(STOP_CHAR(tty), ldata->char_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | } |
| 1748 | if (L_ISIG(tty)) { |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 1749 | set_bit(INTR_CHAR(tty), ldata->char_map); |
| 1750 | set_bit(QUIT_CHAR(tty), ldata->char_map); |
| 1751 | set_bit(SUSP_CHAR(tty), ldata->char_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | } |
Peter Hurley | 1bb9d56 | 2013-06-15 10:21:20 -0400 | [diff] [blame] | 1753 | clear_bit(__DISABLED_CHAR, ldata->char_map); |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1754 | ldata->raw = 0; |
| 1755 | ldata->real_raw = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | } else { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1757 | ldata->raw = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) && |
| 1759 | (I_IGNPAR(tty) || !I_INPCK(tty)) && |
| 1760 | (tty->driver->flags & TTY_DRIVER_REAL_RAW)) |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1761 | ldata->real_raw = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | else |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1763 | ldata->real_raw = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | } |
Wang YanQing | dab73b4 | 2013-05-09 14:16:47 +0800 | [diff] [blame] | 1765 | /* |
| 1766 | * Fix tty hang when I_IXON(tty) is cleared, but the tty |
| 1767 | * been stopped by STOP_CHAR(tty) before it. |
| 1768 | */ |
Jiri Slaby | 6e94dbc | 2021-05-05 11:19:05 +0200 | [diff] [blame] | 1769 | if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow.tco_stopped) { |
Wang YanQing | dab73b4 | 2013-05-09 14:16:47 +0800 | [diff] [blame] | 1770 | start_tty(tty); |
Peter Hurley | e2613be | 2014-02-11 16:34:55 -0500 | [diff] [blame] | 1771 | process_echoes(tty); |
| 1772 | } |
Wang YanQing | dab73b4 | 2013-05-09 14:16:47 +0800 | [diff] [blame] | 1773 | |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1774 | /* The termios change make the tty ready for I/O */ |
Kosuke Tatsukawa | e81107d | 2015-10-02 08:27:05 +0000 | [diff] [blame] | 1775 | wake_up_interruptible(&tty->write_wait); |
| 1776 | wake_up_interruptible(&tty->read_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | } |
| 1778 | |
| 1779 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1780 | * n_tty_close - close the ldisc for this tty |
| 1781 | * @tty: device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1783 | * Called from the terminal layer when this line discipline is being shut down, |
| 1784 | * either because of a close or becsuse of a discipline change. The function |
| 1785 | * will not be called while other ldisc methods are in progress. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | static void n_tty_close(struct tty_struct *tty) |
| 1788 | { |
Jiri Slaby | 70ece7a | 2012-10-18 22:26:38 +0200 | [diff] [blame] | 1789 | struct n_tty_data *ldata = tty->disc_data; |
| 1790 | |
Peter Hurley | 7990131 | 2013-03-11 16:44:23 -0400 | [diff] [blame] | 1791 | if (tty->link) |
| 1792 | n_tty_packet_mode_flush(tty); |
| 1793 | |
Yan.Gao | c9cd57b | 2020-12-10 10:25:07 +0800 | [diff] [blame] | 1794 | down_write(&tty->termios_rwsem); |
Peter Hurley | 20bafb3 | 2013-06-15 10:21:19 -0400 | [diff] [blame] | 1795 | vfree(ldata); |
Jiri Slaby | 70ece7a | 2012-10-18 22:26:38 +0200 | [diff] [blame] | 1796 | tty->disc_data = NULL; |
Yan.Gao | c9cd57b | 2020-12-10 10:25:07 +0800 | [diff] [blame] | 1797 | up_write(&tty->termios_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | } |
| 1799 | |
| 1800 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1801 | * n_tty_open - open an ldisc |
| 1802 | * @tty: terminal to open |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1804 | * Called when this line discipline is being attached to the terminal device. |
| 1805 | * Can sleep. Called serialized so that no other events will occur in parallel. |
| 1806 | * No further open will occur until a close. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | static int n_tty_open(struct tty_struct *tty) |
| 1809 | { |
Jiri Slaby | 70ece7a | 2012-10-18 22:26:38 +0200 | [diff] [blame] | 1810 | struct n_tty_data *ldata; |
| 1811 | |
Peter Hurley | 20bafb3 | 2013-06-15 10:21:19 -0400 | [diff] [blame] | 1812 | /* Currently a malloc failure here can panic */ |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 1813 | ldata = vzalloc(sizeof(*ldata)); |
Jiri Slaby | 70ece7a | 2012-10-18 22:26:38 +0200 | [diff] [blame] | 1814 | if (!ldata) |
Tetsuo Handa | ebec3f8 | 2018-05-26 09:53:14 +0900 | [diff] [blame] | 1815 | return -ENOMEM; |
Jiri Slaby | 70ece7a | 2012-10-18 22:26:38 +0200 | [diff] [blame] | 1816 | |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1817 | ldata->overrun_time = jiffies; |
Jiri Slaby | bddc715 | 2012-10-18 22:26:42 +0200 | [diff] [blame] | 1818 | mutex_init(&ldata->atomic_read_lock); |
| 1819 | mutex_init(&ldata->output_lock); |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1820 | |
Jiri Slaby | 70ece7a | 2012-10-18 22:26:38 +0200 | [diff] [blame] | 1821 | tty->disc_data = ldata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | tty->closing = 0; |
Peter Hurley | b66f4fa | 2013-03-11 16:44:32 -0400 | [diff] [blame] | 1823 | /* indicate buffer work may resume */ |
| 1824 | clear_bit(TTY_LDISC_HALTED, &tty->flags); |
| 1825 | n_tty_set_termios(tty, NULL); |
| 1826 | tty_unthrottle(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | return 0; |
| 1828 | } |
| 1829 | |
Peter Hurley | eafbe67 | 2013-12-02 14:24:45 -0500 | [diff] [blame] | 1830 | static inline int input_available_p(struct tty_struct *tty, int poll) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1832 | struct n_tty_data *ldata = tty->disc_data; |
Peter Hurley | a593480 | 2014-02-11 11:49:58 -0500 | [diff] [blame] | 1833 | int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1; |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1834 | |
Peter Hurley | 25e8d0e | 2014-02-11 18:55:30 -0500 | [diff] [blame] | 1835 | if (ldata->icanon && !L_EXTPROC(tty)) |
| 1836 | return ldata->canon_head != ldata->read_tail; |
| 1837 | else |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1838 | return ldata->commit_head - ldata->read_tail >= amt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | } |
| 1840 | |
| 1841 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1842 | * copy_from_read_buf - copy read data directly |
| 1843 | * @tty: terminal device |
| 1844 | * @kbp: data |
| 1845 | * @nr: size of data |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1847 | * Helper function to speed up n_tty_read(). It is only called when %ICANON is |
| 1848 | * off; it copies characters straight from the tty queue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1850 | * Returns: true if it successfully copied data, but there is still more data |
| 1851 | * to be had. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1853 | * Locking: |
| 1854 | * * called under the @ldata->atomic_read_lock sem |
| 1855 | * * n_tty_read()/consumer path: |
| 1856 | * caller holds non-exclusive %termios_rwsem; |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 1857 | * read_tail published |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | */ |
Linus Torvalds | 15ea8ae | 2021-01-19 18:14:20 -0800 | [diff] [blame] | 1859 | static bool copy_from_read_buf(struct tty_struct *tty, |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 1860 | unsigned char **kbp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | size_t *nr) |
| 1862 | |
| 1863 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 1864 | struct n_tty_data *ldata = tty->disc_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | size_t n; |
Jiri Slaby | 3fa10cc | 2012-04-26 20:13:00 +0200 | [diff] [blame] | 1866 | bool is_eof; |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1867 | size_t head = smp_load_acquire(&ldata->commit_head); |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1868 | size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1870 | n = min(head - ldata->read_tail, N_TTY_BUF_SIZE - tail); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | n = min(*nr, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | if (n) { |
Greg KH | b97b3d9 | 2018-10-04 11:06:14 -0700 | [diff] [blame] | 1873 | unsigned char *from = read_buf_addr(ldata, tail); |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 1874 | memcpy(*kbp, from, n); |
Peter Hurley | e661cf7 | 2015-11-27 14:11:03 -0500 | [diff] [blame] | 1875 | is_eof = n == 1 && *from == EOF_CHAR(tty); |
Peter Hurley | 309426a | 2016-01-09 22:55:27 -0800 | [diff] [blame] | 1876 | tty_audit_add_data(tty, from, n); |
Greg KH | b97b3d9 | 2018-10-04 11:06:14 -0700 | [diff] [blame] | 1877 | zero_buffer(tty, from, n); |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1878 | smp_store_release(&ldata->read_tail, ldata->read_tail + n); |
hyc@symas.com | 26df6d1 | 2010-06-22 10:14:49 -0700 | [diff] [blame] | 1879 | /* Turn single EOF into zero-length read */ |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1880 | if (L_EXTPROC(tty) && ldata->icanon && is_eof && |
| 1881 | (head == ldata->read_tail)) |
Linus Torvalds | 15ea8ae | 2021-01-19 18:14:20 -0800 | [diff] [blame] | 1882 | return false; |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 1883 | *kbp += n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | *nr -= n; |
Linus Torvalds | 15ea8ae | 2021-01-19 18:14:20 -0800 | [diff] [blame] | 1885 | |
| 1886 | /* If we have more to copy, let the caller know */ |
| 1887 | return head != ldata->read_tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | } |
Linus Torvalds | 15ea8ae | 2021-01-19 18:14:20 -0800 | [diff] [blame] | 1889 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | } |
| 1891 | |
Peter Hurley | 88bb0de | 2013-06-15 09:14:16 -0400 | [diff] [blame] | 1892 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1893 | * canon_copy_from_read_buf - copy read data in canonical mode |
| 1894 | * @tty: terminal device |
| 1895 | * @kbp: data |
| 1896 | * @nr: size of data |
Peter Hurley | 88bb0de | 2013-06-15 09:14:16 -0400 | [diff] [blame] | 1897 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1898 | * Helper function for n_tty_read(). It is only called when %ICANON is on; it |
| 1899 | * copies one line of input up to and including the line-delimiting character |
| 1900 | * into the result buffer. |
Peter Hurley | 88bb0de | 2013-06-15 09:14:16 -0400 | [diff] [blame] | 1901 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1902 | * Note: When termios is changed from non-canonical to canonical mode and the |
| 1903 | * read buffer contains data, n_tty_set_termios() simulates an EOF push (as if |
| 1904 | * C-d were input) _without_ the %DISABLED_CHAR in the buffer. This causes data |
| 1905 | * already processed as input to be immediately available as input although a |
| 1906 | * newline has not been received. |
Peter Hurley | 4d0ed18 | 2013-12-10 17:12:02 -0500 | [diff] [blame] | 1907 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1908 | * Locking: |
| 1909 | * * called under the %atomic_read_lock mutex |
| 1910 | * * n_tty_read()/consumer path: |
| 1911 | * caller holds non-exclusive %termios_rwsem; |
| 1912 | * read_tail published |
Peter Hurley | 88bb0de | 2013-06-15 09:14:16 -0400 | [diff] [blame] | 1913 | */ |
Linus Torvalds | d7fe75c | 2021-01-20 15:43:38 -0800 | [diff] [blame] | 1914 | static bool canon_copy_from_read_buf(struct tty_struct *tty, |
Linus Torvalds | 64a69892 | 2021-01-19 13:46:28 -0800 | [diff] [blame] | 1915 | unsigned char **kbp, |
| 1916 | size_t *nr) |
Peter Hurley | 88bb0de | 2013-06-15 09:14:16 -0400 | [diff] [blame] | 1917 | { |
| 1918 | struct n_tty_data *ldata = tty->disc_data; |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 1919 | size_t n, size, more, c; |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1920 | size_t eol; |
Linus Torvalds | d7fe75c | 2021-01-20 15:43:38 -0800 | [diff] [blame] | 1921 | size_t tail, canon_head; |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 1922 | int found = 0; |
Peter Hurley | 88bb0de | 2013-06-15 09:14:16 -0400 | [diff] [blame] | 1923 | |
| 1924 | /* N.B. avoid overrun if nr == 0 */ |
Peter Hurley | ac8f3bf | 2015-11-27 13:59:20 -0500 | [diff] [blame] | 1925 | if (!*nr) |
Linus Torvalds | d7fe75c | 2021-01-20 15:43:38 -0800 | [diff] [blame] | 1926 | return false; |
Peter Hurley | 88bb0de | 2013-06-15 09:14:16 -0400 | [diff] [blame] | 1927 | |
Linus Torvalds | d7fe75c | 2021-01-20 15:43:38 -0800 | [diff] [blame] | 1928 | canon_head = smp_load_acquire(&ldata->canon_head); |
Linus Torvalds | 3593030 | 2022-02-15 15:28:00 -0800 | [diff] [blame^] | 1929 | n = min(*nr, canon_head - ldata->read_tail); |
Peter Hurley | ac8f3bf | 2015-11-27 13:59:20 -0500 | [diff] [blame] | 1930 | |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1931 | tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1); |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 1932 | size = min_t(size_t, tail + n, N_TTY_BUF_SIZE); |
| 1933 | |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 1934 | n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n", |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 1935 | __func__, *nr, tail, n, size); |
| 1936 | |
| 1937 | eol = find_next_bit(ldata->read_flags, size, tail); |
| 1938 | more = n - (size - tail); |
| 1939 | if (eol == N_TTY_BUF_SIZE && more) { |
| 1940 | /* scan wrapped without finding set bit */ |
Yury Norov | b5c7e7e | 2021-08-14 14:17:03 -0700 | [diff] [blame] | 1941 | eol = find_first_bit(ldata->read_flags, more); |
Peter Hurley | b985e9e | 2015-11-27 14:11:04 -0500 | [diff] [blame] | 1942 | found = eol != more; |
| 1943 | } else |
| 1944 | found = eol != size; |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 1945 | |
Peter Hurley | c77569d | 2013-11-22 07:16:25 -0500 | [diff] [blame] | 1946 | n = eol - tail; |
Mark Tomlinson | da555db | 2015-05-18 12:01:48 +1200 | [diff] [blame] | 1947 | if (n > N_TTY_BUF_SIZE) |
| 1948 | n += N_TTY_BUF_SIZE; |
Peter Hurley | ac8f3bf | 2015-11-27 13:59:20 -0500 | [diff] [blame] | 1949 | c = n + found; |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 1950 | |
Linus Torvalds | 3593030 | 2022-02-15 15:28:00 -0800 | [diff] [blame^] | 1951 | if (!found || read_buf(ldata, eol) != __DISABLED_CHAR) |
Peter Hurley | ac8f3bf | 2015-11-27 13:59:20 -0500 | [diff] [blame] | 1952 | n = c; |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 1953 | |
Peter Hurley | 679e7c2 | 2015-11-27 14:11:02 -0500 | [diff] [blame] | 1954 | n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n", |
| 1955 | __func__, eol, found, n, c, tail, more); |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 1956 | |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 1957 | tty_copy(tty, *kbp, tail, n); |
| 1958 | *kbp += n; |
Peter Hurley | 32f1352 | 2013-06-15 09:14:17 -0400 | [diff] [blame] | 1959 | *nr -= n; |
| 1960 | |
Peter Hurley | a73d3d6 | 2013-06-15 09:14:25 -0400 | [diff] [blame] | 1961 | if (found) |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 1962 | clear_bit(eol, ldata->read_flags); |
Peter Hurley | 70aca71 | 2015-01-16 15:05:37 -0500 | [diff] [blame] | 1963 | smp_store_release(&ldata->read_tail, ldata->read_tail + c); |
Peter Hurley | 88bb0de | 2013-06-15 09:14:16 -0400 | [diff] [blame] | 1964 | |
Peter Hurley | 40d5e09 | 2013-06-15 10:21:17 -0400 | [diff] [blame] | 1965 | if (found) { |
Peter Hurley | 4d0ed18 | 2013-12-10 17:12:02 -0500 | [diff] [blame] | 1966 | if (!ldata->push) |
| 1967 | ldata->line_start = ldata->read_tail; |
| 1968 | else |
| 1969 | ldata->push = 0; |
Peter Hurley | b50819f | 2016-01-09 22:55:30 -0800 | [diff] [blame] | 1970 | tty_audit_push(); |
Linus Torvalds | d7fe75c | 2021-01-20 15:43:38 -0800 | [diff] [blame] | 1971 | return false; |
Peter Hurley | 40d5e09 | 2013-06-15 10:21:17 -0400 | [diff] [blame] | 1972 | } |
Linus Torvalds | d7fe75c | 2021-01-20 15:43:38 -0800 | [diff] [blame] | 1973 | |
| 1974 | /* No EOL found - do a continuation retry if there is more data */ |
| 1975 | return ldata->read_tail != canon_head; |
Peter Hurley | 88bb0de | 2013-06-15 09:14:16 -0400 | [diff] [blame] | 1976 | } |
| 1977 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1979 | * job_control - check job control |
| 1980 | * @tty: tty |
| 1981 | * @file: file handle |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1983 | * Perform job control management checks on this @file/@tty descriptor and if |
| 1984 | * appropriate send any needed signals and return a negative error code if |
| 1985 | * action should be taken. |
Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 1986 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 1987 | * Locking: |
| 1988 | * * redirected write test is safe |
| 1989 | * * current->signal->tty check is safe |
| 1990 | * * ctrl.lock to safely reference @tty->ctrl.pgrp |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | static int job_control(struct tty_struct *tty, struct file *file) |
| 1993 | { |
| 1994 | /* Job control check -- must be done at start and after |
| 1995 | every sleep (POSIX.1 7.1.1.4). */ |
| 1996 | /* NOTE: not yet done after every sleep pending a thorough |
| 1997 | check of the logic of this change. -- jlc */ |
| 1998 | /* don't stop on /dev/console */ |
Sami Tolvanen | 9f12e37 | 2021-01-25 11:09:25 -0800 | [diff] [blame] | 1999 | if (file->f_op->write_iter == redirected_tty_write) |
Peter Hurley | 01a5e44 | 2013-03-06 08:38:20 -0500 | [diff] [blame] | 2000 | return 0; |
| 2001 | |
Peter Hurley | 2812d9e | 2015-10-10 20:28:42 -0400 | [diff] [blame] | 2002 | return __tty_check_change(tty, SIGTTIN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | } |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 2004 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | |
| 2006 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2007 | * n_tty_read - read function for tty |
| 2008 | * @tty: tty device |
| 2009 | * @file: file object |
| 2010 | * @kbuf: kernelspace buffer pointer |
| 2011 | * @nr: size of I/O |
| 2012 | * @cookie: if non-%NULL, this is a continuation read |
| 2013 | * @offset: where to continue reading from (unused in n_tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2014 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2015 | * Perform reads for the line discipline. We are guaranteed that the line |
| 2016 | * discipline will not be closed under us but we may get multiple parallel |
| 2017 | * readers and must handle this ourselves. We may also get a hangup. Always |
| 2018 | * called in user context, may sleep. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2020 | * This code must be sure never to sleep through a hangup. |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 2021 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2022 | * Locking: n_tty_read()/consumer path: |
| 2023 | * claims non-exclusive termios_rwsem; |
| 2024 | * publishes read_tail |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | */ |
Alan Cox | 11a96d1 | 2008-10-13 10:46:24 +0100 | [diff] [blame] | 2026 | static ssize_t n_tty_read(struct tty_struct *tty, struct file *file, |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 2027 | unsigned char *kbuf, size_t nr, |
| 2028 | void **cookie, unsigned long offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | { |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 2030 | struct n_tty_data *ldata = tty->disc_data; |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 2031 | unsigned char *kb = kbuf; |
Peter Zijlstra | 97d9e28 | 2014-09-24 10:18:51 +0200 | [diff] [blame] | 2032 | DEFINE_WAIT_FUNC(wait, woken_wake_function); |
Brian Bloniarz | 0f40fbb | 2016-03-06 13:16:30 -0800 | [diff] [blame] | 2033 | int c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | int minimum, time; |
| 2035 | ssize_t retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | long timeout; |
Jiri Slaby | 64d608d | 2021-05-05 11:19:06 +0200 | [diff] [blame] | 2037 | bool packet; |
Peter Hurley | 2c5dc46 | 2015-01-16 15:05:34 -0500 | [diff] [blame] | 2038 | size_t tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | |
Linus Torvalds | 15ea8ae | 2021-01-19 18:14:20 -0800 | [diff] [blame] | 2040 | /* |
| 2041 | * Is this a continuation of a read started earler? |
| 2042 | * |
| 2043 | * If so, we still hold the atomic_read_lock and the |
| 2044 | * termios_rwsem, and can just continue to copy data. |
| 2045 | */ |
| 2046 | if (*cookie) { |
Linus Torvalds | d7fe75c | 2021-01-20 15:43:38 -0800 | [diff] [blame] | 2047 | if (ldata->icanon && !L_EXTPROC(tty)) { |
| 2048 | if (canon_copy_from_read_buf(tty, &kb, &nr)) |
| 2049 | return kb - kbuf; |
| 2050 | } else { |
| 2051 | if (copy_from_read_buf(tty, &kb, &nr)) |
| 2052 | return kb - kbuf; |
| 2053 | } |
Linus Torvalds | 15ea8ae | 2021-01-19 18:14:20 -0800 | [diff] [blame] | 2054 | |
| 2055 | /* No more data - release locks and stop retries */ |
| 2056 | n_tty_kick_worker(tty); |
| 2057 | n_tty_check_unthrottle(tty); |
| 2058 | up_read(&tty->termios_rwsem); |
| 2059 | mutex_unlock(&ldata->atomic_read_lock); |
| 2060 | *cookie = NULL; |
| 2061 | return kb - kbuf; |
| 2062 | } |
| 2063 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | c = job_control(tty, file); |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 2065 | if (c < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | return c; |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 2067 | |
Peter Hurley | aefceaf | 2013-08-11 08:04:23 -0400 | [diff] [blame] | 2068 | /* |
| 2069 | * Internal serialization of reads. |
| 2070 | */ |
| 2071 | if (file->f_flags & O_NONBLOCK) { |
| 2072 | if (!mutex_trylock(&ldata->atomic_read_lock)) |
| 2073 | return -EAGAIN; |
| 2074 | } else { |
| 2075 | if (mutex_lock_interruptible(&ldata->atomic_read_lock)) |
| 2076 | return -ERESTARTSYS; |
| 2077 | } |
| 2078 | |
Peter Hurley | 9356b53 | 2013-06-15 09:14:24 -0400 | [diff] [blame] | 2079 | down_read(&tty->termios_rwsem); |
| 2080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | minimum = time = 0; |
| 2082 | timeout = MAX_SCHEDULE_TIMEOUT; |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 2083 | if (!ldata->icanon) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | minimum = MIN_CHAR(tty); |
| 2085 | if (minimum) { |
Peter Hurley | a6e5431 | 2013-06-15 07:28:29 -0400 | [diff] [blame] | 2086 | time = (HZ / 10) * TIME_CHAR(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | } else { |
Peter Hurley | a6e5431 | 2013-06-15 07:28:29 -0400 | [diff] [blame] | 2088 | timeout = (HZ / 10) * TIME_CHAR(tty); |
Peter Hurley | 33d7136 | 2016-01-09 21:45:08 -0800 | [diff] [blame] | 2089 | minimum = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | } |
| 2091 | } |
| 2092 | |
Jiri Slaby | 64d608d | 2021-05-05 11:19:06 +0200 | [diff] [blame] | 2093 | packet = tty->ctrl.packet; |
Peter Hurley | 2c5dc46 | 2015-01-16 15:05:34 -0500 | [diff] [blame] | 2094 | tail = ldata->read_tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | |
| 2096 | add_wait_queue(&tty->read_wait, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | while (nr) { |
| 2098 | /* First test for status change. */ |
Jiri Slaby | 64d608d | 2021-05-05 11:19:06 +0200 | [diff] [blame] | 2099 | if (packet && tty->link->ctrl.pktstatus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | unsigned char cs; |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 2101 | if (kb != kbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | break; |
Jiri Slaby | 64d608d | 2021-05-05 11:19:06 +0200 | [diff] [blame] | 2103 | spin_lock_irq(&tty->link->ctrl.lock); |
| 2104 | cs = tty->link->ctrl.pktstatus; |
| 2105 | tty->link->ctrl.pktstatus = 0; |
| 2106 | spin_unlock_irq(&tty->link->ctrl.lock); |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 2107 | *kb++ = cs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | nr--; |
| 2109 | break; |
| 2110 | } |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 2111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | if (!input_available_p(tty, 0)) { |
Peter Hurley | 52bce7f | 2014-11-05 12:13:05 -0500 | [diff] [blame] | 2113 | up_read(&tty->termios_rwsem); |
Brian Bloniarz | 0f40fbb | 2016-03-06 13:16:30 -0800 | [diff] [blame] | 2114 | tty_buffer_flush_work(tty->port); |
Peter Hurley | 52bce7f | 2014-11-05 12:13:05 -0500 | [diff] [blame] | 2115 | down_read(&tty->termios_rwsem); |
Brian Bloniarz | 0f40fbb | 2016-03-06 13:16:30 -0800 | [diff] [blame] | 2116 | if (!input_available_p(tty, 0)) { |
| 2117 | if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) { |
| 2118 | retval = -EIO; |
| 2119 | break; |
| 2120 | } |
| 2121 | if (tty_hung_up_p(file)) |
| 2122 | break; |
Tejun Heo | 28b0f8a | 2018-02-13 07:38:08 -0800 | [diff] [blame] | 2123 | /* |
| 2124 | * Abort readers for ttys which never actually |
| 2125 | * get hung up. See __tty_hangup(). |
| 2126 | */ |
| 2127 | if (test_bit(TTY_HUPPING, &tty->flags)) |
| 2128 | break; |
Brian Bloniarz | 0f40fbb | 2016-03-06 13:16:30 -0800 | [diff] [blame] | 2129 | if (!timeout) |
| 2130 | break; |
Dmitry Safonov | c96cf92 | 2018-11-01 00:24:48 +0000 | [diff] [blame] | 2131 | if (tty_io_nonblock(tty, file)) { |
Brian Bloniarz | 0f40fbb | 2016-03-06 13:16:30 -0800 | [diff] [blame] | 2132 | retval = -EAGAIN; |
| 2133 | break; |
| 2134 | } |
| 2135 | if (signal_pending(current)) { |
| 2136 | retval = -ERESTARTSYS; |
| 2137 | break; |
| 2138 | } |
| 2139 | up_read(&tty->termios_rwsem); |
| 2140 | |
| 2141 | timeout = wait_woken(&wait, TASK_INTERRUPTIBLE, |
| 2142 | timeout); |
| 2143 | |
| 2144 | down_read(&tty->termios_rwsem); |
| 2145 | continue; |
| 2146 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2147 | } |
| 2148 | |
Jiri Slaby | 53c5ee2 | 2012-10-18 22:26:39 +0200 | [diff] [blame] | 2149 | if (ldata->icanon && !L_EXTPROC(tty)) { |
Linus Torvalds | d7fe75c | 2021-01-20 15:43:38 -0800 | [diff] [blame] | 2150 | if (canon_copy_from_read_buf(tty, &kb, &nr)) |
| 2151 | goto more_to_be_read; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | } else { |
Peter Hurley | 95ea90d | 2014-10-16 15:33:30 -0400 | [diff] [blame] | 2153 | /* Deal with packet mode. */ |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 2154 | if (packet && kb == kbuf) { |
| 2155 | *kb++ = TIOCPKT_DATA; |
Peter Hurley | 95ea90d | 2014-10-16 15:33:30 -0400 | [diff] [blame] | 2156 | nr--; |
| 2157 | } |
| 2158 | |
Linus Torvalds | 15ea8ae | 2021-01-19 18:14:20 -0800 | [diff] [blame] | 2159 | /* |
| 2160 | * Copy data, and if there is more to be had |
| 2161 | * and we have nothing more to wait for, then |
| 2162 | * let's mark us for retries. |
| 2163 | * |
| 2164 | * NOTE! We return here with both the termios_sem |
| 2165 | * and atomic_read_lock still held, the retries |
| 2166 | * will release them when done. |
| 2167 | */ |
| 2168 | if (copy_from_read_buf(tty, &kb, &nr) && kb - kbuf >= minimum) { |
Linus Torvalds | d7fe75c | 2021-01-20 15:43:38 -0800 | [diff] [blame] | 2169 | more_to_be_read: |
Linus Torvalds | 15ea8ae | 2021-01-19 18:14:20 -0800 | [diff] [blame] | 2170 | remove_wait_queue(&tty->read_wait, &wait); |
| 2171 | *cookie = cookie; |
| 2172 | return kb - kbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | } |
| 2174 | } |
| 2175 | |
Peter Hurley | 6367ca7 | 2013-06-15 09:14:33 -0400 | [diff] [blame] | 2176 | n_tty_check_unthrottle(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 2178 | if (kb - kbuf >= minimum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2179 | break; |
| 2180 | if (time) |
| 2181 | timeout = time; |
| 2182 | } |
Peter Hurley | 2c5dc46 | 2015-01-16 15:05:34 -0500 | [diff] [blame] | 2183 | if (tail != ldata->read_tail) |
| 2184 | n_tty_kick_worker(tty); |
Peter Hurley | 42458f4 | 2013-11-07 13:59:46 -0500 | [diff] [blame] | 2185 | up_read(&tty->termios_rwsem); |
| 2186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2187 | remove_wait_queue(&tty->read_wait, &wait); |
Peter Hurley | aebf0453 | 2013-11-07 14:01:57 -0500 | [diff] [blame] | 2188 | mutex_unlock(&ldata->atomic_read_lock); |
| 2189 | |
Linus Torvalds | 3b830a9 | 2021-01-18 13:31:30 -0800 | [diff] [blame] | 2190 | if (kb - kbuf) |
| 2191 | retval = kb - kbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | |
| 2193 | return retval; |
| 2194 | } |
| 2195 | |
| 2196 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2197 | * n_tty_write - write function for tty |
| 2198 | * @tty: tty device |
| 2199 | * @file: file object |
| 2200 | * @buf: userspace buffer pointer |
| 2201 | * @nr: size of I/O |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2203 | * Write function of the terminal device. This is serialized with respect to |
| 2204 | * other write callers but not to termios changes, reads and other such events. |
| 2205 | * Since the receive code will echo characters, thus calling driver write |
| 2206 | * methods, the %output_lock is used in the output processing functions called |
| 2207 | * here as well as in the echo processing function to protect the column state |
| 2208 | * and space left in the buffer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2210 | * This code must be sure never to sleep through a hangup. |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 2211 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2212 | * Locking: output_lock to protect column state and space left |
| 2213 | * (note that the process_output*() functions take this lock themselves) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | */ |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 2215 | |
Alan Cox | 11a96d1 | 2008-10-13 10:46:24 +0100 | [diff] [blame] | 2216 | static ssize_t n_tty_write(struct tty_struct *tty, struct file *file, |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 2217 | const unsigned char *buf, size_t nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | { |
| 2219 | const unsigned char *b = buf; |
Peter Zijlstra | 97d9e28 | 2014-09-24 10:18:51 +0200 | [diff] [blame] | 2220 | DEFINE_WAIT_FUNC(wait, woken_wake_function); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | int c; |
| 2222 | ssize_t retval = 0; |
| 2223 | |
| 2224 | /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */ |
Sami Tolvanen | 9f12e37 | 2021-01-25 11:09:25 -0800 | [diff] [blame] | 2225 | if (L_TOSTOP(tty) && file->f_op->write_iter != redirected_tty_write) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | retval = tty_check_change(tty); |
| 2227 | if (retval) |
| 2228 | return retval; |
| 2229 | } |
| 2230 | |
Peter Hurley | 9356b53 | 2013-06-15 09:14:24 -0400 | [diff] [blame] | 2231 | down_read(&tty->termios_rwsem); |
| 2232 | |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 2233 | /* Write out any echoed characters that are still pending */ |
| 2234 | process_echoes(tty); |
Alan Cox | 300a620 | 2009-01-02 13:41:04 +0000 | [diff] [blame] | 2235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | add_wait_queue(&tty->write_wait, &wait); |
| 2237 | while (1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | if (signal_pending(current)) { |
| 2239 | retval = -ERESTARTSYS; |
| 2240 | break; |
| 2241 | } |
| 2242 | if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) { |
| 2243 | retval = -EIO; |
| 2244 | break; |
| 2245 | } |
Peter Hurley | 582f559 | 2013-05-17 12:49:48 -0400 | [diff] [blame] | 2246 | if (O_OPOST(tty)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | while (nr > 0) { |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 2248 | ssize_t num = process_output_block(tty, b, nr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | if (num < 0) { |
| 2250 | if (num == -EAGAIN) |
| 2251 | break; |
| 2252 | retval = num; |
| 2253 | goto break_out; |
| 2254 | } |
| 2255 | b += num; |
| 2256 | nr -= num; |
| 2257 | if (nr == 0) |
| 2258 | break; |
| 2259 | c = *b; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 2260 | if (process_output(c, tty) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | break; |
| 2262 | b++; nr--; |
| 2263 | } |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2264 | if (tty->ops->flush_chars) |
| 2265 | tty->ops->flush_chars(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | } else { |
Peter Hurley | 4291086 | 2014-05-03 14:04:59 +0200 | [diff] [blame] | 2267 | struct n_tty_data *ldata = tty->disc_data; |
| 2268 | |
Roman Zippel | d6afe27 | 2005-07-07 17:56:55 -0700 | [diff] [blame] | 2269 | while (nr > 0) { |
Peter Hurley | 4291086 | 2014-05-03 14:04:59 +0200 | [diff] [blame] | 2270 | mutex_lock(&ldata->output_lock); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2271 | c = tty->ops->write(tty, b, nr); |
Peter Hurley | 4291086 | 2014-05-03 14:04:59 +0200 | [diff] [blame] | 2272 | mutex_unlock(&ldata->output_lock); |
Roman Zippel | d6afe27 | 2005-07-07 17:56:55 -0700 | [diff] [blame] | 2273 | if (c < 0) { |
| 2274 | retval = c; |
| 2275 | goto break_out; |
| 2276 | } |
| 2277 | if (!c) |
| 2278 | break; |
| 2279 | b += c; |
| 2280 | nr -= c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2281 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | } |
| 2283 | if (!nr) |
| 2284 | break; |
Dmitry Safonov | c96cf92 | 2018-11-01 00:24:48 +0000 | [diff] [blame] | 2285 | if (tty_io_nonblock(tty, file)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | retval = -EAGAIN; |
| 2287 | break; |
| 2288 | } |
Peter Hurley | 9356b53 | 2013-06-15 09:14:24 -0400 | [diff] [blame] | 2289 | up_read(&tty->termios_rwsem); |
| 2290 | |
Peter Zijlstra | 97d9e28 | 2014-09-24 10:18:51 +0200 | [diff] [blame] | 2291 | wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Peter Hurley | 9356b53 | 2013-06-15 09:14:24 -0400 | [diff] [blame] | 2292 | |
| 2293 | down_read(&tty->termios_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2294 | } |
| 2295 | break_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | remove_wait_queue(&tty->write_wait, &wait); |
Peter Hurley | 87108bc | 2016-01-09 21:45:14 -0800 | [diff] [blame] | 2297 | if (nr && tty->fasync) |
Thomas Pfaff | ff8cb0f | 2009-01-02 13:47:13 +0000 | [diff] [blame] | 2298 | set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); |
Peter Hurley | 9356b53 | 2013-06-15 09:14:24 -0400 | [diff] [blame] | 2299 | up_read(&tty->termios_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2300 | return (b - buf) ? b - buf : retval; |
| 2301 | } |
| 2302 | |
| 2303 | /** |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2304 | * n_tty_poll - poll method for N_TTY |
| 2305 | * @tty: terminal device |
| 2306 | * @file: file accessing it |
| 2307 | * @wait: poll table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2309 | * Called when the line discipline is asked to poll() for data or for special |
| 2310 | * events. This code is not serialized with respect to other events save |
| 2311 | * open/close. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | * |
Jiri Slaby | 9862966 | 2021-11-26 09:16:04 +0100 | [diff] [blame] | 2313 | * This code must be sure never to sleep through a hangup. |
| 2314 | * |
| 2315 | * Locking: called without the kernel lock held -- fine. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | */ |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 2317 | static __poll_t n_tty_poll(struct tty_struct *tty, struct file *file, |
Alan Cox | 4edf182 | 2008-02-08 04:18:44 -0800 | [diff] [blame] | 2318 | poll_table *wait) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | { |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 2320 | __poll_t mask = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | |
| 2322 | poll_wait(file, &tty->read_wait, wait); |
| 2323 | poll_wait(file, &tty->write_wait, wait); |
Francesco Ruggeri | c4dc304 | 2014-10-10 13:09:53 -0700 | [diff] [blame] | 2324 | if (input_available_p(tty, 1)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2325 | mask |= EPOLLIN | EPOLLRDNORM; |
Brian Bloniarz | 0f40fbb | 2016-03-06 13:16:30 -0800 | [diff] [blame] | 2326 | else { |
| 2327 | tty_buffer_flush_work(tty->port); |
| 2328 | if (input_available_p(tty, 1)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2329 | mask |= EPOLLIN | EPOLLRDNORM; |
Brian Bloniarz | 0f40fbb | 2016-03-06 13:16:30 -0800 | [diff] [blame] | 2330 | } |
Jiri Slaby | 64d608d | 2021-05-05 11:19:06 +0200 | [diff] [blame] | 2331 | if (tty->ctrl.packet && tty->link->ctrl.pktstatus) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2332 | mask |= EPOLLPRI | EPOLLIN | EPOLLRDNORM; |
Brian Bloniarz | 0f40fbb | 2016-03-06 13:16:30 -0800 | [diff] [blame] | 2333 | if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2334 | mask |= EPOLLHUP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | if (tty_hung_up_p(file)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2336 | mask |= EPOLLHUP; |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2337 | if (tty->ops->write && !tty_is_writelocked(tty) && |
| 2338 | tty_chars_in_buffer(tty) < WAKEUP_CHARS && |
| 2339 | tty_write_room(tty) > 0) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2340 | mask |= EPOLLOUT | EPOLLWRNORM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | return mask; |
| 2342 | } |
| 2343 | |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 2344 | static unsigned long inq_canon(struct n_tty_data *ldata) |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2345 | { |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 2346 | size_t nr, head, tail; |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2347 | |
Peter Hurley | a73d3d6 | 2013-06-15 09:14:25 -0400 | [diff] [blame] | 2348 | if (ldata->canon_head == ldata->read_tail) |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2349 | return 0; |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 2350 | head = ldata->canon_head; |
| 2351 | tail = ldata->read_tail; |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 2352 | nr = head - tail; |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2353 | /* Skip EOF-chars.. */ |
Tetsuo Handa | 3d63b7e | 2018-05-26 09:53:13 +0900 | [diff] [blame] | 2354 | while (MASK(head) != MASK(tail)) { |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 2355 | if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) && |
| 2356 | read_buf(ldata, tail) == __DISABLED_CHAR) |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2357 | nr--; |
Peter Hurley | bc5a5e3 | 2013-06-15 09:14:21 -0400 | [diff] [blame] | 2358 | tail++; |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2359 | } |
| 2360 | return nr; |
| 2361 | } |
| 2362 | |
Jiri Slaby | d78328b | 2021-11-22 10:45:29 +0100 | [diff] [blame] | 2363 | static int n_tty_ioctl(struct tty_struct *tty, unsigned int cmd, |
| 2364 | unsigned long arg) |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2365 | { |
Jiri Slaby | ba2e68a | 2012-10-18 22:26:41 +0200 | [diff] [blame] | 2366 | struct n_tty_data *ldata = tty->disc_data; |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2367 | int retval; |
| 2368 | |
| 2369 | switch (cmd) { |
| 2370 | case TIOCOUTQ: |
| 2371 | return put_user(tty_chars_in_buffer(tty), (int __user *) arg); |
| 2372 | case TIOCINQ: |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 2373 | down_write(&tty->termios_rwsem); |
Linus Torvalds | 966031f | 2017-12-20 17:57:06 -0800 | [diff] [blame] | 2374 | if (L_ICANON(tty) && !L_EXTPROC(tty)) |
Jiri Slaby | 57c9412 | 2012-10-18 22:26:43 +0200 | [diff] [blame] | 2375 | retval = inq_canon(ldata); |
Peter Hurley | 6d76bd2 | 2013-06-15 09:14:26 -0400 | [diff] [blame] | 2376 | else |
| 2377 | retval = read_cnt(ldata); |
| 2378 | up_write(&tty->termios_rwsem); |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2379 | return put_user(retval, (unsigned int __user *) arg); |
| 2380 | default: |
Jiri Slaby | 7c78360 | 2021-09-14 11:11:24 +0200 | [diff] [blame] | 2381 | return n_tty_ioctl_helper(tty, cmd, arg); |
Alan Cox | 47afa7a | 2008-10-13 10:44:17 +0100 | [diff] [blame] | 2382 | } |
| 2383 | } |
| 2384 | |
Peter Hurley | 2722873 | 2016-01-09 21:35:19 -0800 | [diff] [blame] | 2385 | static struct tty_ldisc_ops n_tty_ops = { |
Jiri Slaby | 5e30d3b | 2021-03-02 07:21:39 +0100 | [diff] [blame] | 2386 | .owner = THIS_MODULE, |
Jiri Slaby | fbadf70a | 2021-05-05 11:19:07 +0200 | [diff] [blame] | 2387 | .num = N_TTY, |
Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 2388 | .name = "n_tty", |
| 2389 | .open = n_tty_open, |
| 2390 | .close = n_tty_close, |
| 2391 | .flush_buffer = n_tty_flush_buffer, |
Alan Cox | 11a96d1 | 2008-10-13 10:46:24 +0100 | [diff] [blame] | 2392 | .read = n_tty_read, |
| 2393 | .write = n_tty_write, |
Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 2394 | .ioctl = n_tty_ioctl, |
| 2395 | .set_termios = n_tty_set_termios, |
Alan Cox | 11a96d1 | 2008-10-13 10:46:24 +0100 | [diff] [blame] | 2396 | .poll = n_tty_poll, |
Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 2397 | .receive_buf = n_tty_receive_buf, |
Peter Hurley | f6c8dbe | 2013-06-15 07:28:28 -0400 | [diff] [blame] | 2398 | .write_wakeup = n_tty_write_wakeup, |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 2399 | .receive_buf2 = n_tty_receive_buf2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | }; |
Rodolfo Giometti | 572b9ad | 2010-03-10 15:23:46 -0800 | [diff] [blame] | 2401 | |
| 2402 | /** |
| 2403 | * n_tty_inherit_ops - inherit N_TTY methods |
| 2404 | * @ops: struct tty_ldisc_ops where to save N_TTY methods |
| 2405 | * |
Peter Hurley | 2722873 | 2016-01-09 21:35:19 -0800 | [diff] [blame] | 2406 | * Enables a 'subclass' line discipline to 'inherit' N_TTY methods. |
Rodolfo Giometti | 572b9ad | 2010-03-10 15:23:46 -0800 | [diff] [blame] | 2407 | */ |
| 2408 | |
| 2409 | void n_tty_inherit_ops(struct tty_ldisc_ops *ops) |
| 2410 | { |
Peter Hurley | 2722873 | 2016-01-09 21:35:19 -0800 | [diff] [blame] | 2411 | *ops = n_tty_ops; |
Rodolfo Giometti | 572b9ad | 2010-03-10 15:23:46 -0800 | [diff] [blame] | 2412 | ops->owner = NULL; |
Rodolfo Giometti | 572b9ad | 2010-03-10 15:23:46 -0800 | [diff] [blame] | 2413 | } |
| 2414 | EXPORT_SYMBOL_GPL(n_tty_inherit_ops); |
Peter Hurley | 2722873 | 2016-01-09 21:35:19 -0800 | [diff] [blame] | 2415 | |
| 2416 | void __init n_tty_init(void) |
| 2417 | { |
Jiri Slaby | fbadf70a | 2021-05-05 11:19:07 +0200 | [diff] [blame] | 2418 | tty_register_ldisc(&n_tty_ops); |
Peter Hurley | 2722873 | 2016-01-09 21:35:19 -0800 | [diff] [blame] | 2419 | } |