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