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