blob: 4bf0fc0843d73bc61cd99d0cc5898177fe0dc39c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * n_tty.c --- implements the N_TTY line discipline.
Alan Cox4edf1822008-02-08 04:18:44 -08003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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 Cox4edf1822008-02-08 04:18:44 -080011 * to N_TTY if it can not switch to any other line discipline.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * Written by Theodore Ts'o, Copyright 1994.
Alan Cox4edf1822008-02-08 04:18:44 -080014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * This file also contains code originally written by Linus Torvalds,
16 * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
Alan Cox4edf1822008-02-08 04:18:44 -080017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * 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 Cox4edf1822008-02-08 04:18:44 -080023 * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * 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 Cox11a96d12008-10-13 10:46:24 +010029 * Also fixed a bug in BLOCKING mode where n_tty_write returns
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * 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 Trmac522ed772007-07-15 23:40:56 -070048#include <linux/audit.h>
49#include <linux/file.h>
Alan Cox300a6202009-01-02 13:41:04 +000050#include <linux/uaccess.h>
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -080051#include <linux/module.h>
George Spelvin593fb1ae42013-02-12 02:00:43 -050052#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/* number of characters left in xmit buffer before select has we have room */
56#define WAKEUP_CHARS 256
57
58/*
59 * This defines the low- and high-watermarks for throttling and
60 * unthrottling the TTY driver. These watermarks are used for
61 * controlling the space in the read buffer.
62 */
63#define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
Thorsten Wißmannbbd20752011-12-08 17:47:33 +010064#define TTY_THRESHOLD_UNTHROTTLE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Joe Petersona88a69c2009-01-02 13:40:53 +000066/*
67 * Special byte codes used in the echo buffer to represent operations
68 * or special handling of characters. Bytes in the echo buffer that
69 * are not part of such special blocks are treated as normal character
70 * codes.
71 */
72#define ECHO_OP_START 0xff
73#define ECHO_OP_MOVE_BACK_COL 0x80
74#define ECHO_OP_SET_CANON_COL 0x81
75#define ECHO_OP_ERASE_TAB 0x82
76
Jiri Slaby70ece7a2012-10-18 22:26:38 +020077struct n_tty_data {
Jiri Slaby53c5ee22012-10-18 22:26:39 +020078 unsigned int column;
79 unsigned long overrun_time;
80 int num_overrun;
81
82 unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
83 unsigned char echo_overrun:1;
Jiri Slaby3fe780b2012-10-18 22:26:40 +020084
85 DECLARE_BITMAP(process_char_map, 256);
86 DECLARE_BITMAP(read_flags, N_TTY_BUF_SIZE);
Jiri Slabyba2e68a2012-10-18 22:26:41 +020087
88 char *read_buf;
89 int read_head;
90 int read_tail;
91 int read_cnt;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -040092 int minimum_to_wake;
Jiri Slabyba2e68a2012-10-18 22:26:41 +020093
94 unsigned char *echo_buf;
95 unsigned int echo_pos;
96 unsigned int echo_cnt;
97
98 int canon_data;
99 unsigned long canon_head;
100 unsigned int canon_column;
Jiri Slabybddc7152012-10-18 22:26:42 +0200101
102 struct mutex atomic_read_lock;
103 struct mutex output_lock;
104 struct mutex echo_lock;
Ivo Sieben98001212013-01-28 13:32:01 +0100105 raw_spinlock_t read_lock;
Jiri Slaby70ece7a2012-10-18 22:26:38 +0200106};
107
Miloslav Trmac522ed772007-07-15 23:40:56 -0700108static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
109 unsigned char __user *ptr)
110{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200111 struct n_tty_data *ldata = tty->disc_data;
112
113 tty_audit_add_data(tty, &x, 1, ldata->icanon);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700114 return put_user(x, ptr);
115}
116
Linus Torvalds55db4c62011-06-04 06:33:24 +0900117/**
Peter Hurleyb8483052013-06-15 07:28:30 -0400118 * n_tty_set_room - receive space
Linus Torvalds55db4c62011-06-04 06:33:24 +0900119 * @tty: terminal
120 *
Peter Hurley7879a9f2013-06-15 07:28:31 -0400121 * Updates tty->receive_room to reflect the currently available space
Peter Hurleyb8483052013-06-15 07:28:30 -0400122 * in the input buffer, and re-schedules the flip buffer work if space
123 * just became available.
124 *
125 * Locks: Concurrent update is protected with read_lock
Linus Torvalds55db4c62011-06-04 06:33:24 +0900126 */
127
Peter Hurley7879a9f2013-06-15 07:28:31 -0400128static int set_room(struct tty_struct *tty)
Linus Torvalds55db4c62011-06-04 06:33:24 +0900129{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200130 struct n_tty_data *ldata = tty->disc_data;
Jaeden Amero090abf72012-07-27 08:43:11 -0500131 int left;
Linus Torvalds55db4c62011-06-04 06:33:24 +0900132 int old_left;
Peter Hurleyb8483052013-06-15 07:28:30 -0400133 unsigned long flags;
Linus Torvalds55db4c62011-06-04 06:33:24 +0900134
Peter Hurleyb8483052013-06-15 07:28:30 -0400135 raw_spin_lock_irqsave(&ldata->read_lock, flags);
136
Jaeden Amero090abf72012-07-27 08:43:11 -0500137 if (I_PARMRK(tty)) {
138 /* Multiply read_cnt by 3, since each byte might take up to
139 * three times as many spaces when PARMRK is set (depending on
140 * its flags, e.g. parity error). */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200141 left = N_TTY_BUF_SIZE - ldata->read_cnt * 3 - 1;
Jaeden Amero090abf72012-07-27 08:43:11 -0500142 } else
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200143 left = N_TTY_BUF_SIZE - ldata->read_cnt - 1;
Jaeden Amero090abf72012-07-27 08:43:11 -0500144
Linus Torvalds55db4c62011-06-04 06:33:24 +0900145 /*
146 * If we are doing input canonicalization, and there are no
147 * pending newlines, let characters through without limit, so
148 * that erase characters will be handled. Other excess
149 * characters will be beeped.
150 */
151 if (left <= 0)
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200152 left = ldata->icanon && !ldata->canon_data;
Linus Torvalds55db4c62011-06-04 06:33:24 +0900153 old_left = tty->receive_room;
154 tty->receive_room = left;
155
Peter Hurleyb8483052013-06-15 07:28:30 -0400156 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
157
Peter Hurley7879a9f2013-06-15 07:28:31 -0400158 return left && !old_left;
159}
160
161static void n_tty_set_room(struct tty_struct *tty)
162{
Linus Torvalds55db4c62011-06-04 06:33:24 +0900163 /* Did this open up the receive buffer? We may need to flip */
Peter Hurley7879a9f2013-06-15 07:28:31 -0400164 if (set_room(tty)) {
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200165 WARN_RATELIMIT(tty->port->itty == NULL,
Sasha Levincadf7482012-10-25 14:26:35 -0400166 "scheduling with invalid itty\n");
Peter Hurley21622932013-03-11 16:44:21 -0400167 /* see if ldisc has been killed - if so, this means that
168 * even though the ldisc has been halted and ->buf.work
169 * cancelled, ->buf.work is about to be rescheduled
170 */
171 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
172 "scheduling buffer work for halted ldisc\n");
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200173 schedule_work(&tty->port->buf.work);
174 }
Linus Torvalds55db4c62011-06-04 06:33:24 +0900175}
176
Jiri Slaby57c94122012-10-18 22:26:43 +0200177static void put_tty_queue_nolock(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200179 if (ldata->read_cnt < N_TTY_BUF_SIZE) {
180 ldata->read_buf[ldata->read_head] = c;
181 ldata->read_head = (ldata->read_head + 1) & (N_TTY_BUF_SIZE-1);
182 ldata->read_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184}
185
Alan Cox17b82062008-10-13 10:45:06 +0100186/**
187 * put_tty_queue - add character to tty
188 * @c: character
Jiri Slaby57c94122012-10-18 22:26:43 +0200189 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100190 *
191 * Add a character to the tty read_buf queue. This is done under the
192 * read_lock to serialize character addition and also to protect us
193 * against parallel reads or flushes
194 */
195
Jiri Slaby57c94122012-10-18 22:26:43 +0200196static void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 unsigned long flags;
199 /*
200 * The problem of stomping on the buffers ends here.
201 * Why didn't anyone see this one coming? --AJK
202 */
Ivo Sieben98001212013-01-28 13:32:01 +0100203 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slaby57c94122012-10-18 22:26:43 +0200204 put_tty_queue_nolock(c, ldata);
Ivo Sieben98001212013-01-28 13:32:01 +0100205 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
208/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * reset_buffer_flags - reset buffer state
210 * @tty: terminal to reset
211 *
Peter Hurley25518c62013-03-11 16:44:31 -0400212 * Reset the read buffer counters and clear the flags.
213 * Called from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100214 *
215 * Locking: tty_read_lock for read fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000217
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400218static void reset_buffer_flags(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 unsigned long flags;
221
Ivo Sieben98001212013-01-28 13:32:01 +0100222 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200223 ldata->read_head = ldata->read_tail = ldata->read_cnt = 0;
Ivo Sieben98001212013-01-28 13:32:01 +0100224 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Joe Petersona88a69c2009-01-02 13:40:53 +0000225
Jiri Slabybddc7152012-10-18 22:26:42 +0200226 mutex_lock(&ldata->echo_lock);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200227 ldata->echo_pos = ldata->echo_cnt = ldata->echo_overrun = 0;
Jiri Slabybddc7152012-10-18 22:26:42 +0200228 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000229
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200230 ldata->canon_head = ldata->canon_data = ldata->erasing = 0;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200231 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Peter Hurleya30737a2013-03-11 16:44:22 -0400234static void n_tty_packet_mode_flush(struct tty_struct *tty)
235{
236 unsigned long flags;
237
238 spin_lock_irqsave(&tty->ctrl_lock, flags);
239 if (tty->link->packet) {
240 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
241 wake_up_interruptible(&tty->link->read_wait);
242 }
243 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
244}
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246/**
247 * n_tty_flush_buffer - clean input queue
248 * @tty: terminal device
249 *
Peter Hurley25518c62013-03-11 16:44:31 -0400250 * Flush the input buffer. Called when the tty layer wants the
251 * buffer flushed (eg at hangup) or when the N_TTY line discipline
252 * internally has to clean the pending queue (for example some signals).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 *
Alan Cox17b82062008-10-13 10:45:06 +0100254 * Locking: ctrl_lock, read_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 */
Alan Cox4edf1822008-02-08 04:18:44 -0800256
257static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400259 reset_buffer_flags(tty->disc_data);
260 n_tty_set_room(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800261
Peter Hurleya30737a2013-03-11 16:44:22 -0400262 if (tty->link)
263 n_tty_packet_mode_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266/**
267 * n_tty_chars_in_buffer - report available bytes
268 * @tty: tty device
269 *
270 * Report the number of characters buffered to be delivered to user
Alan Cox4edf1822008-02-08 04:18:44 -0800271 * at this instant in time.
Alan Cox17b82062008-10-13 10:45:06 +0100272 *
273 * Locking: read_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
Alan Cox4edf1822008-02-08 04:18:44 -0800275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
277{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200278 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 unsigned long flags;
280 ssize_t n = 0;
281
Ivo Sieben98001212013-01-28 13:32:01 +0100282 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200283 if (!ldata->icanon) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200284 n = ldata->read_cnt;
285 } else if (ldata->canon_data) {
286 n = (ldata->canon_head > ldata->read_tail) ?
287 ldata->canon_head - ldata->read_tail :
288 ldata->canon_head + (N_TTY_BUF_SIZE - ldata->read_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
Ivo Sieben98001212013-01-28 13:32:01 +0100290 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return n;
292}
293
294/**
295 * is_utf8_continuation - utf8 multibyte check
296 * @c: byte to check
297 *
298 * Returns true if the utf8 character 'c' is a multibyte continuation
299 * character. We use this to correctly compute the on screen size
300 * of the character when printing
301 */
Alan Cox4edf1822008-02-08 04:18:44 -0800302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static inline int is_utf8_continuation(unsigned char c)
304{
305 return (c & 0xc0) == 0x80;
306}
307
308/**
309 * is_continuation - multibyte check
310 * @c: byte to check
311 *
312 * Returns true if the utf8 character 'c' is a multibyte continuation
313 * character and the terminal is in unicode mode.
314 */
Alan Cox4edf1822008-02-08 04:18:44 -0800315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316static inline int is_continuation(unsigned char c, struct tty_struct *tty)
317{
318 return I_IUTF8(tty) && is_utf8_continuation(c);
319}
320
321/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000322 * do_output_char - output one character
323 * @c: character (or partial unicode symbol)
324 * @tty: terminal device
325 * @space: space available in tty driver write buffer
326 *
327 * This is a helper function that handles one output character
328 * (including special characters like TAB, CR, LF, etc.),
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600329 * doing OPOST processing and putting the results in the
330 * tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000331 *
332 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
333 * and NLDLY. They simply aren't relevant in the world today.
334 * If you ever need them, add them here.
335 *
336 * Returns the number of bytes of buffer space used or -1 if
337 * no space left.
338 *
339 * Locking: should be called under the output_lock to protect
340 * the column state and space left in the buffer
341 */
342
343static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
344{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200345 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000346 int spaces;
347
348 if (!space)
349 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000350
Joe Petersona88a69c2009-01-02 13:40:53 +0000351 switch (c) {
352 case '\n':
353 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200354 ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000355 if (O_ONLCR(tty)) {
356 if (space < 2)
357 return -1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200358 ldata->canon_column = ldata->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700359 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000360 return 2;
361 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200362 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000363 break;
364 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200365 if (O_ONOCR(tty) && ldata->column == 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000366 return 0;
367 if (O_OCRNL(tty)) {
368 c = '\n';
369 if (O_ONLRET(tty))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200370 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000371 break;
372 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200373 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000374 break;
375 case '\t':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200376 spaces = 8 - (ldata->column & 7);
Joe Petersona88a69c2009-01-02 13:40:53 +0000377 if (O_TABDLY(tty) == XTABS) {
378 if (space < spaces)
379 return -1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200380 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000381 tty->ops->write(tty, " ", spaces);
382 return spaces;
383 }
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200384 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000385 break;
386 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200387 if (ldata->column > 0)
388 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000389 break;
390 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000391 if (!iscntrl(c)) {
392 if (O_OLCUC(tty))
393 c = toupper(c);
394 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200395 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000396 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000397 break;
398 }
399
400 tty_put_char(tty, c);
401 return 1;
402}
403
404/**
405 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 * @c: character (or partial unicode symbol)
407 * @tty: terminal device
408 *
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600409 * Output one character with OPOST processing.
410 * Returns -1 when the output device is full and the character
411 * must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000413 * Locking: output_lock to protect column state and space left
414 * (also, this is called from n_tty_write under the
415 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 */
Alan Cox4edf1822008-02-08 04:18:44 -0800417
Joe Petersona88a69c2009-01-02 13:40:53 +0000418static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Jiri Slabybddc7152012-10-18 22:26:42 +0200420 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000421 int space, retval;
422
Jiri Slabybddc7152012-10-18 22:26:42 +0200423 mutex_lock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Alan Coxf34d7a52008-04-30 00:54:13 -0700425 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000426 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Jiri Slabybddc7152012-10-18 22:26:42 +0200428 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000429 if (retval < 0)
430 return -1;
431 else
432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000436 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 * @tty: terminal device
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600438 * @buf: character buffer
439 * @nr: number of bytes to output
440 *
441 * Output a block of characters with OPOST processing.
442 * Returns the number of characters output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 *
444 * This path is used to speed up block console writes, among other
445 * things when processing blocks of output data. It handles only
446 * the simple cases normally found and helps to generate blocks of
447 * symbols for the console driver and thus improve performance.
448 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000449 * Locking: output_lock to protect column state and space left
450 * (also, this is called from n_tty_write under the
451 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
Alan Cox4edf1822008-02-08 04:18:44 -0800453
Joe Petersona88a69c2009-01-02 13:40:53 +0000454static ssize_t process_output_block(struct tty_struct *tty,
455 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200457 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100459 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 const unsigned char *cp;
461
Jiri Slabybddc7152012-10-18 22:26:42 +0200462 mutex_lock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000463
Alan Coxf34d7a52008-04-30 00:54:13 -0700464 space = tty_write_room(tty);
Alan Cox300a6202009-01-02 13:41:04 +0000465 if (!space) {
Jiri Slabybddc7152012-10-18 22:26:42 +0200466 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (nr > space)
470 nr = space;
471
472 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000473 unsigned char c = *cp;
474
475 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 case '\n':
477 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200478 ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (O_ONLCR(tty))
480 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200481 ldata->canon_column = ldata->column;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 break;
483 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200484 if (O_ONOCR(tty) && ldata->column == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 goto break_out;
486 if (O_OCRNL(tty))
487 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200488 ldata->canon_column = ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 break;
490 case '\t':
491 goto break_out;
492 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200493 if (ldata->column > 0)
494 ldata->column--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 break;
496 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000497 if (!iscntrl(c)) {
498 if (O_OLCUC(tty))
499 goto break_out;
500 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200501 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 break;
504 }
505 }
506break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700507 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000508
Jiri Slabybddc7152012-10-18 22:26:42 +0200509 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return i;
511}
512
Joe Petersona88a69c2009-01-02 13:40:53 +0000513/**
514 * process_echoes - write pending echo characters
515 * @tty: terminal device
516 *
517 * Write previously buffered echo (and other ldisc-generated)
518 * characters to the tty.
519 *
520 * Characters generated by the ldisc (including echoes) need to
521 * be buffered because the driver's write buffer can fill during
522 * heavy program output. Echoing straight to the driver will
523 * often fail under these conditions, causing lost characters and
524 * resulting mismatches of ldisc state information.
525 *
526 * Since the ldisc state must represent the characters actually sent
527 * to the driver at the time of the write, operations like certain
528 * changes in column state are also saved in the buffer and executed
529 * here.
530 *
531 * A circular fifo buffer is used so that the most recent characters
532 * are prioritized. Also, when control characters are echoed with a
533 * prefixed "^", the pair is treated atomically and thus not separated.
534 *
535 * Locking: output_lock to protect column state and space left,
536 * echo_lock to protect the echo buffer
537 */
538
539static void process_echoes(struct tty_struct *tty)
540{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200541 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000542 int space, nr;
543 unsigned char c;
544 unsigned char *cp, *buf_end;
545
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200546 if (!ldata->echo_cnt)
Joe Petersona88a69c2009-01-02 13:40:53 +0000547 return;
548
Jiri Slabybddc7152012-10-18 22:26:42 +0200549 mutex_lock(&ldata->output_lock);
550 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000551
552 space = tty_write_room(tty);
553
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200554 buf_end = ldata->echo_buf + N_TTY_BUF_SIZE;
555 cp = ldata->echo_buf + ldata->echo_pos;
556 nr = ldata->echo_cnt;
Joe Petersona88a69c2009-01-02 13:40:53 +0000557 while (nr > 0) {
558 c = *cp;
559 if (c == ECHO_OP_START) {
560 unsigned char op;
561 unsigned char *opp;
562 int no_space_left = 0;
563
564 /*
565 * If the buffer byte is the start of a multi-byte
566 * operation, get the next byte, which is either the
567 * op code or a control character value.
568 */
569 opp = cp + 1;
570 if (opp == buf_end)
571 opp -= N_TTY_BUF_SIZE;
572 op = *opp;
Alan Cox300a6202009-01-02 13:41:04 +0000573
Joe Petersona88a69c2009-01-02 13:40:53 +0000574 switch (op) {
575 unsigned int num_chars, num_bs;
576
577 case ECHO_OP_ERASE_TAB:
578 if (++opp == buf_end)
579 opp -= N_TTY_BUF_SIZE;
580 num_chars = *opp;
581
582 /*
583 * Determine how many columns to go back
584 * in order to erase the tab.
585 * This depends on the number of columns
586 * used by other characters within the tab
587 * area. If this (modulo 8) count is from
588 * the start of input rather than from a
589 * previous tab, we offset by canon column.
590 * Otherwise, tab spacing is normal.
591 */
592 if (!(num_chars & 0x80))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200593 num_chars += ldata->canon_column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000594 num_bs = 8 - (num_chars & 7);
595
596 if (num_bs > space) {
597 no_space_left = 1;
598 break;
599 }
600 space -= num_bs;
601 while (num_bs--) {
602 tty_put_char(tty, '\b');
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200603 if (ldata->column > 0)
604 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000605 }
606 cp += 3;
607 nr -= 3;
608 break;
609
610 case ECHO_OP_SET_CANON_COL:
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200611 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000612 cp += 2;
613 nr -= 2;
614 break;
615
616 case ECHO_OP_MOVE_BACK_COL:
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200617 if (ldata->column > 0)
618 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000619 cp += 2;
620 nr -= 2;
621 break;
622
623 case ECHO_OP_START:
624 /* This is an escaped echo op start code */
625 if (!space) {
626 no_space_left = 1;
627 break;
628 }
629 tty_put_char(tty, ECHO_OP_START);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200630 ldata->column++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000631 space--;
632 cp += 2;
633 nr -= 2;
634 break;
635
636 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000637 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600638 * If the op is not a special byte code,
639 * it is a ctrl char tagged to be echoed
640 * as "^X" (where X is the letter
641 * representing the control char).
642 * Note that we must ensure there is
643 * enough space for the whole ctrl pair.
644 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000645 */
Joe Peterson62b26352009-09-09 15:03:47 -0600646 if (space < 2) {
647 no_space_left = 1;
648 break;
649 }
650 tty_put_char(tty, '^');
651 tty_put_char(tty, op ^ 0100);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200652 ldata->column += 2;
Joe Peterson62b26352009-09-09 15:03:47 -0600653 space -= 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000654 cp += 2;
655 nr -= 2;
656 }
657
658 if (no_space_left)
659 break;
660 } else {
Peter Hurley582f5592013-05-17 12:49:48 -0400661 if (O_OPOST(tty)) {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600662 int retval = do_output_char(c, tty, space);
663 if (retval < 0)
664 break;
665 space -= retval;
666 } else {
667 if (!space)
668 break;
669 tty_put_char(tty, c);
670 space -= 1;
671 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000672 cp += 1;
673 nr -= 1;
674 }
675
676 /* When end of circular buffer reached, wrap around */
677 if (cp >= buf_end)
678 cp -= N_TTY_BUF_SIZE;
679 }
680
681 if (nr == 0) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200682 ldata->echo_pos = 0;
683 ldata->echo_cnt = 0;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200684 ldata->echo_overrun = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000685 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200686 int num_processed = ldata->echo_cnt - nr;
687 ldata->echo_pos += num_processed;
688 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
689 ldata->echo_cnt = nr;
Joe Petersona88a69c2009-01-02 13:40:53 +0000690 if (num_processed > 0)
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200691 ldata->echo_overrun = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000692 }
693
Jiri Slabybddc7152012-10-18 22:26:42 +0200694 mutex_unlock(&ldata->echo_lock);
695 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000696
697 if (tty->ops->flush_chars)
698 tty->ops->flush_chars(tty);
699}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000702 * add_echo_byte - add a byte to the echo buffer
703 * @c: unicode byte to echo
Jiri Slaby57c94122012-10-18 22:26:43 +0200704 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000705 *
706 * Add a character or operation byte to the echo buffer.
707 *
708 * Should be called under the echo lock to protect the echo buffer.
709 */
710
Jiri Slaby57c94122012-10-18 22:26:43 +0200711static void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000712{
713 int new_byte_pos;
714
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200715 if (ldata->echo_cnt == N_TTY_BUF_SIZE) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000716 /* Circular buffer is already at capacity */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200717 new_byte_pos = ldata->echo_pos;
Joe Petersona88a69c2009-01-02 13:40:53 +0000718
719 /*
720 * Since the buffer start position needs to be advanced,
721 * be sure to step by a whole operation byte group.
722 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200723 if (ldata->echo_buf[ldata->echo_pos] == ECHO_OP_START) {
724 if (ldata->echo_buf[(ldata->echo_pos + 1) &
Joe Petersona88a69c2009-01-02 13:40:53 +0000725 (N_TTY_BUF_SIZE - 1)] ==
726 ECHO_OP_ERASE_TAB) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200727 ldata->echo_pos += 3;
728 ldata->echo_cnt -= 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000729 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200730 ldata->echo_pos += 2;
731 ldata->echo_cnt -= 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000732 }
733 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200734 ldata->echo_pos++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000735 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200736 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000737
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200738 ldata->echo_overrun = 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000739 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200740 new_byte_pos = ldata->echo_pos + ldata->echo_cnt;
Joe Petersona88a69c2009-01-02 13:40:53 +0000741 new_byte_pos &= N_TTY_BUF_SIZE - 1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200742 ldata->echo_cnt++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000743 }
744
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200745 ldata->echo_buf[new_byte_pos] = c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000746}
747
748/**
749 * echo_move_back_col - add operation to move back a column
Jiri Slaby57c94122012-10-18 22:26:43 +0200750 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000751 *
752 * Add an operation to the echo buffer to move back one column.
753 *
754 * Locking: echo_lock to protect the echo buffer
755 */
756
Jiri Slaby57c94122012-10-18 22:26:43 +0200757static void echo_move_back_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000758{
Jiri Slabybddc7152012-10-18 22:26:42 +0200759 mutex_lock(&ldata->echo_lock);
Jiri Slaby57c94122012-10-18 22:26:43 +0200760 add_echo_byte(ECHO_OP_START, ldata);
761 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
Jiri Slabybddc7152012-10-18 22:26:42 +0200762 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000763}
764
765/**
766 * echo_set_canon_col - add operation to set the canon column
Jiri Slaby57c94122012-10-18 22:26:43 +0200767 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000768 *
769 * Add an operation to the echo buffer to set the canon column
770 * to the current column.
771 *
772 * Locking: echo_lock to protect the echo buffer
773 */
774
Jiri Slaby57c94122012-10-18 22:26:43 +0200775static void echo_set_canon_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000776{
Jiri Slabybddc7152012-10-18 22:26:42 +0200777 mutex_lock(&ldata->echo_lock);
Jiri Slaby57c94122012-10-18 22:26:43 +0200778 add_echo_byte(ECHO_OP_START, ldata);
779 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
Jiri Slabybddc7152012-10-18 22:26:42 +0200780 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000781}
782
783/**
784 * echo_erase_tab - add operation to erase a tab
785 * @num_chars: number of character columns already used
786 * @after_tab: true if num_chars starts after a previous tab
Jiri Slaby57c94122012-10-18 22:26:43 +0200787 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000788 *
789 * Add an operation to the echo buffer to erase a tab.
790 *
791 * Called by the eraser function, which knows how many character
792 * columns have been used since either a previous tab or the start
793 * of input. This information will be used later, along with
794 * canon column (if applicable), to go back the correct number
795 * of columns.
796 *
797 * Locking: echo_lock to protect the echo buffer
798 */
799
800static void echo_erase_tab(unsigned int num_chars, int after_tab,
Jiri Slaby57c94122012-10-18 22:26:43 +0200801 struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000802{
Jiri Slabybddc7152012-10-18 22:26:42 +0200803 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000804
Jiri Slaby57c94122012-10-18 22:26:43 +0200805 add_echo_byte(ECHO_OP_START, ldata);
806 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000807
808 /* We only need to know this modulo 8 (tab spacing) */
809 num_chars &= 7;
810
811 /* Set the high bit as a flag if num_chars is after a previous tab */
812 if (after_tab)
813 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000814
Jiri Slaby57c94122012-10-18 22:26:43 +0200815 add_echo_byte(num_chars, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000816
Jiri Slabybddc7152012-10-18 22:26:42 +0200817 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000818}
819
820/**
821 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 * @c: unicode byte to echo
823 * @tty: terminal device
824 *
Alan Cox4edf1822008-02-08 04:18:44 -0800825 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100827 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000828 * This variant does not treat control characters specially.
829 *
830 * Locking: echo_lock to protect the echo buffer
831 */
832
Jiri Slaby57c94122012-10-18 22:26:43 +0200833static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000834{
Jiri Slabybddc7152012-10-18 22:26:42 +0200835 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000836 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200837 add_echo_byte(ECHO_OP_START, ldata);
838 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000839 } else {
Jiri Slaby57c94122012-10-18 22:26:43 +0200840 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000841 }
Jiri Slabybddc7152012-10-18 22:26:42 +0200842 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000843}
844
845/**
846 * echo_char - echo a character
847 * @c: unicode byte to echo
848 * @tty: terminal device
849 *
850 * Echo user input back onto the screen. This must be called only when
851 * L_ECHO(tty) is true. Called from the driver receive_buf path.
852 *
Joe Peterson62b26352009-09-09 15:03:47 -0600853 * This variant tags control characters to be echoed as "^X"
854 * (where X is the letter representing the control char).
Joe Petersona88a69c2009-01-02 13:40:53 +0000855 *
856 * Locking: echo_lock to protect the echo buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 */
858
859static void echo_char(unsigned char c, struct tty_struct *tty)
860{
Jiri Slabybddc7152012-10-18 22:26:42 +0200861 struct n_tty_data *ldata = tty->disc_data;
862
863 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000864
865 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200866 add_echo_byte(ECHO_OP_START, ldata);
867 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000868 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600869 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Jiri Slaby57c94122012-10-18 22:26:43 +0200870 add_echo_byte(ECHO_OP_START, ldata);
871 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000872 }
873
Jiri Slabybddc7152012-10-18 22:26:42 +0200874 mutex_unlock(&ldata->echo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Alan Cox17b82062008-10-13 10:45:06 +0100877/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000878 * finish_erasing - complete erase
Jiri Slaby57c94122012-10-18 22:26:43 +0200879 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100880 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000881
Jiri Slaby57c94122012-10-18 22:26:43 +0200882static inline void finish_erasing(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200884 if (ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200885 echo_char_raw('/', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200886 ldata->erasing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888}
889
890/**
891 * eraser - handle erase function
892 * @c: character input
893 * @tty: terminal device
894 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200895 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 * present in the stream from the driver layer. Handles the complexities
897 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100898 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000899 * Locking: read_lock for tty buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 */
Alan Cox4edf1822008-02-08 04:18:44 -0800901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902static void eraser(unsigned char c, struct tty_struct *tty)
903{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200904 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 enum { ERASE, WERASE, KILL } kill_type;
906 int head, seen_alnums, cnt;
907 unsigned long flags;
908
Alan Cox17b82062008-10-13 10:45:06 +0100909 /* FIXME: locking needed ? */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200910 if (ldata->read_head == ldata->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000911 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return;
913 }
914 if (c == ERASE_CHAR(tty))
915 kill_type = ERASE;
916 else if (c == WERASE_CHAR(tty))
917 kill_type = WERASE;
918 else {
919 if (!L_ECHO(tty)) {
Ivo Sieben98001212013-01-28 13:32:01 +0100920 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200921 ldata->read_cnt -= ((ldata->read_head - ldata->canon_head) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 (N_TTY_BUF_SIZE - 1));
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200923 ldata->read_head = ldata->canon_head;
Ivo Sieben98001212013-01-28 13:32:01 +0100924 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return;
926 }
927 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
Ivo Sieben98001212013-01-28 13:32:01 +0100928 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200929 ldata->read_cnt -= ((ldata->read_head - ldata->canon_head) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 (N_TTY_BUF_SIZE - 1));
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200931 ldata->read_head = ldata->canon_head;
Ivo Sieben98001212013-01-28 13:32:01 +0100932 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Jiri Slaby57c94122012-10-18 22:26:43 +0200933 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 echo_char(KILL_CHAR(tty), tty);
935 /* Add a newline if ECHOK is on and ECHOKE is off. */
936 if (L_ECHOK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +0200937 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return;
939 }
940 kill_type = KILL;
941 }
942
943 seen_alnums = 0;
Alan Cox17b82062008-10-13 10:45:06 +0100944 /* FIXME: Locking ?? */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200945 while (ldata->read_head != ldata->canon_head) {
946 head = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 /* erase a single possibly multibyte character */
949 do {
950 head = (head - 1) & (N_TTY_BUF_SIZE-1);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200951 c = ldata->read_buf[head];
952 } while (is_continuation(c, tty) && head != ldata->canon_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 /* do not partially erase */
955 if (is_continuation(c, tty))
956 break;
957
958 if (kill_type == WERASE) {
959 /* Equivalent to BSD's ALTWERASE. */
960 if (isalnum(c) || c == '_')
961 seen_alnums++;
962 else if (seen_alnums)
963 break;
964 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200965 cnt = (ldata->read_head - head) & (N_TTY_BUF_SIZE-1);
Ivo Sieben98001212013-01-28 13:32:01 +0100966 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200967 ldata->read_head = head;
968 ldata->read_cnt -= cnt;
Ivo Sieben98001212013-01-28 13:32:01 +0100969 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (L_ECHO(tty)) {
971 if (L_ECHOPRT(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200972 if (!ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200973 echo_char_raw('\\', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200974 ldata->erasing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976 /* if cnt > 1, output a multi-byte character */
977 echo_char(c, tty);
978 while (--cnt > 0) {
979 head = (head+1) & (N_TTY_BUF_SIZE-1);
Jiri Slaby57c94122012-10-18 22:26:43 +0200980 echo_char_raw(ldata->read_buf[head],
981 ldata);
982 echo_move_back_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
985 echo_char(ERASE_CHAR(tty), tty);
986 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +0000987 unsigned int num_chars = 0;
988 int after_tab = 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200989 unsigned long tail = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Joe Petersona88a69c2009-01-02 13:40:53 +0000991 /*
992 * Count the columns used for characters
993 * since the start of input or after a
994 * previous tab.
995 * This info is used to go back the correct
996 * number of columns.
997 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200998 while (tail != ldata->canon_head) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000999 tail = (tail-1) & (N_TTY_BUF_SIZE-1);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001000 c = ldata->read_buf[tail];
Joe Petersona88a69c2009-01-02 13:40:53 +00001001 if (c == '\t') {
1002 after_tab = 1;
1003 break;
Alan Cox300a6202009-01-02 13:41:04 +00001004 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +00001006 num_chars += 2;
1007 } else if (!is_continuation(c, tty)) {
1008 num_chars++;
1009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001011 echo_erase_tab(num_chars, after_tab, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 } else {
1013 if (iscntrl(c) && L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001014 echo_char_raw('\b', ldata);
1015 echo_char_raw(' ', ldata);
1016 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001019 echo_char_raw('\b', ldata);
1020 echo_char_raw(' ', ldata);
1021 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023 }
1024 }
1025 if (kill_type == ERASE)
1026 break;
1027 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001028 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001029 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
1032/**
1033 * isig - handle the ISIG optio
1034 * @sig: signal
1035 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001037 * Called when a signal is being sent due to terminal input.
1038 * Called from the driver receive_buf path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001039 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001040 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 */
Alan Cox4edf1822008-02-08 04:18:44 -08001042
Peter Hurley8c985d12013-03-06 08:38:19 -05001043static inline void isig(int sig, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Peter Hurley8c985d12013-03-06 08:38:19 -05001045 struct pid *tty_pgrp = tty_get_pgrp(tty);
1046 if (tty_pgrp) {
1047 kill_pgrp(tty_pgrp, sig, 1);
1048 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050}
1051
1052/**
1053 * n_tty_receive_break - handle break
1054 * @tty: terminal
1055 *
1056 * An RS232 break event has been hit in the incoming bitstream. This
1057 * can cause a variety of events depending upon the termios settings.
1058 *
1059 * Called from the receive_buf path so single threaded.
1060 */
Alan Cox4edf1822008-02-08 04:18:44 -08001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062static inline void n_tty_receive_break(struct tty_struct *tty)
1063{
Jiri Slaby57c94122012-10-18 22:26:43 +02001064 struct n_tty_data *ldata = tty->disc_data;
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (I_IGNBRK(tty))
1067 return;
1068 if (I_BRKINT(tty)) {
Peter Hurley8c985d12013-03-06 08:38:19 -05001069 isig(SIGINT, tty);
1070 if (!L_NOFLSH(tty)) {
1071 n_tty_flush_buffer(tty);
1072 tty_driver_flush_buffer(tty);
1073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return;
1075 }
1076 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001077 put_tty_queue('\377', ldata);
1078 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001080 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 wake_up_interruptible(&tty->read_wait);
1082}
1083
1084/**
1085 * n_tty_receive_overrun - handle overrun reporting
1086 * @tty: terminal
1087 *
1088 * Data arrived faster than we could process it. While the tty
1089 * driver has flagged this the bits that were missed are gone
1090 * forever.
1091 *
1092 * Called from the receive_buf path so single threaded. Does not
1093 * need locking as num_overrun and overrun_time are function
1094 * private.
1095 */
Alan Cox4edf1822008-02-08 04:18:44 -08001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097static inline void n_tty_receive_overrun(struct tty_struct *tty)
1098{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001099 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 char buf[64];
1101
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001102 ldata->num_overrun++;
1103 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1104 time_after(ldata->overrun_time, jiffies)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 printk(KERN_WARNING "%s: %d input overrun(s)\n",
1106 tty_name(tty, buf),
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001107 ldata->num_overrun);
1108 ldata->overrun_time = jiffies;
1109 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111}
1112
1113/**
1114 * n_tty_receive_parity_error - error notifier
1115 * @tty: terminal device
1116 * @c: character
1117 *
1118 * Process a parity error and queue the right data to indicate
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001119 * the error case if necessary. Locking as per n_tty_receive_buf.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 */
1121static inline void n_tty_receive_parity_error(struct tty_struct *tty,
1122 unsigned char c)
1123{
Jiri Slaby57c94122012-10-18 22:26:43 +02001124 struct n_tty_data *ldata = tty->disc_data;
1125
Alan Cox4edf1822008-02-08 04:18:44 -08001126 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001129 put_tty_queue('\377', ldata);
1130 put_tty_queue('\0', ldata);
1131 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 } else if (I_INPCK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001133 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 else
Jiri Slaby57c94122012-10-18 22:26:43 +02001135 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 wake_up_interruptible(&tty->read_wait);
1137}
1138
1139/**
1140 * n_tty_receive_char - perform processing
1141 * @tty: terminal device
1142 * @c: character
1143 *
1144 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001145 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 * driver above.
1147 */
1148
1149static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1150{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001151 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 unsigned long flags;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001153 int parmrk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001155 if (ldata->raw) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001156 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return;
1158 }
Alan Cox4edf1822008-02-08 04:18:44 -08001159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (I_ISTRIP(tty))
1161 c &= 0x7f;
1162 if (I_IUCLC(tty) && L_IEXTEN(tty))
Alan Cox300a6202009-01-02 13:41:04 +00001163 c = tolower(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
hyc@symas.com26df6d12010-06-22 10:14:49 -07001165 if (L_EXTPROC(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001166 put_tty_queue(c, ldata);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001167 return;
1168 }
1169
Joe Peterson54d2a372008-02-06 01:37:59 -08001170 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) &&
Joe Petersona88a69c2009-01-02 13:40:53 +00001171 I_IXANY(tty) && c != START_CHAR(tty) && c != STOP_CHAR(tty) &&
1172 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && c != SUSP_CHAR(tty)) {
Joe Peterson54d2a372008-02-06 01:37:59 -08001173 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001174 process_echoes(tty);
1175 }
Joe Peterson54d2a372008-02-06 01:37:59 -08001176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (tty->closing) {
1178 if (I_IXON(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001179 if (c == START_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001181 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00001182 } else if (c == STOP_CHAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 stop_tty(tty);
1184 }
1185 return;
1186 }
1187
1188 /*
1189 * If the previous character was LNEXT, or we know that this
1190 * character is not one of the characters that we'll have to
1191 * handle specially, do shortcut processing to speed things
1192 * up.
1193 */
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001194 if (!test_bit(c, ldata->process_char_map) || ldata->lnext) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001195 ldata->lnext = 0;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001196 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001197 if (ldata->read_cnt >= (N_TTY_BUF_SIZE - parmrk - 1)) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001198 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001199 if (L_ECHO(tty))
1200 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001201 return;
1202 }
1203 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001204 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001206 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001207 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001209 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
Joe Petersonacc71bb2009-01-02 13:43:32 +00001211 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001212 put_tty_queue(c, ldata);
1213 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return;
1215 }
Alan Cox4edf1822008-02-08 04:18:44 -08001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (I_IXON(tty)) {
1218 if (c == START_CHAR(tty)) {
1219 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001220 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return;
1222 }
1223 if (c == STOP_CHAR(tty)) {
1224 stop_tty(tty);
1225 return;
1226 }
1227 }
Joe Peterson575537b32008-04-30 00:53:30 -07001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (L_ISIG(tty)) {
1230 int signal;
1231 signal = SIGINT;
1232 if (c == INTR_CHAR(tty))
1233 goto send_signal;
1234 signal = SIGQUIT;
1235 if (c == QUIT_CHAR(tty))
1236 goto send_signal;
1237 signal = SIGTSTP;
1238 if (c == SUSP_CHAR(tty)) {
1239send_signal:
Joe Petersonec5b1152008-02-06 01:37:38 -08001240 if (!L_NOFLSH(tty)) {
1241 n_tty_flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001242 tty_driver_flush_buffer(tty);
Joe Petersonec5b1152008-02-06 01:37:38 -08001243 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001244 if (I_IXON(tty))
1245 start_tty(tty);
1246 if (L_ECHO(tty)) {
Joe Petersonec5b1152008-02-06 01:37:38 -08001247 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001248 process_echoes(tty);
1249 }
Peter Hurley8c985d12013-03-06 08:38:19 -05001250 isig(signal, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return;
1252 }
1253 }
Joe Peterson575537b32008-04-30 00:53:30 -07001254
1255 if (c == '\r') {
1256 if (I_IGNCR(tty))
1257 return;
1258 if (I_ICRNL(tty))
1259 c = '\n';
1260 } else if (c == '\n' && I_INLCR(tty))
1261 c = '\r';
1262
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001263 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1265 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1266 eraser(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001267 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 return;
1269 }
1270 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001271 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001273 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001275 echo_char_raw('^', ldata);
1276 echo_char_raw('\b', ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +00001277 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
1279 }
1280 return;
1281 }
1282 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
1283 L_IEXTEN(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001284 unsigned long tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Jiri Slaby57c94122012-10-18 22:26:43 +02001286 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001288 echo_char_raw('\n', ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001289 while (tail != ldata->read_head) {
1290 echo_char(ldata->read_buf[tail], tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
1292 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001293 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 return;
1295 }
1296 if (c == '\n') {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001297 if (ldata->read_cnt >= N_TTY_BUF_SIZE) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001298 if (L_ECHO(tty))
1299 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001300 return;
1301 }
1302 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001303 echo_char_raw('\n', ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +00001304 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
1306 goto handle_newline;
1307 }
1308 if (c == EOF_CHAR(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001309 if (ldata->read_cnt >= N_TTY_BUF_SIZE)
Joe Petersonacc71bb2009-01-02 13:43:32 +00001310 return;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001311 if (ldata->canon_head != ldata->read_head)
Alan Cox4edf1822008-02-08 04:18:44 -08001312 set_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 c = __DISABLED_CHAR;
1314 goto handle_newline;
1315 }
1316 if ((c == EOL_CHAR(tty)) ||
1317 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001318 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty))
1319 ? 1 : 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001320 if (ldata->read_cnt >= (N_TTY_BUF_SIZE - parmrk)) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001321 if (L_ECHO(tty))
1322 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001323 return;
1324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 /*
1326 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1327 */
1328 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001330 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001331 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001333 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335 /*
1336 * XXX does PARMRK doubling happen for
1337 * EOL_CHAR and EOL2_CHAR?
1338 */
Joe Petersonacc71bb2009-01-02 13:43:32 +00001339 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001340 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Alan Cox4edf1822008-02-08 04:18:44 -08001342handle_newline:
Ivo Sieben98001212013-01-28 13:32:01 +01001343 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001344 set_bit(ldata->read_head, ldata->read_flags);
Jiri Slaby57c94122012-10-18 22:26:43 +02001345 put_tty_queue_nolock(c, ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001346 ldata->canon_head = ldata->read_head;
1347 ldata->canon_data++;
Ivo Sieben98001212013-01-28 13:32:01 +01001348 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1350 if (waitqueue_active(&tty->read_wait))
1351 wake_up_interruptible(&tty->read_wait);
1352 return;
1353 }
1354 }
Alan Cox4edf1822008-02-08 04:18:44 -08001355
Joe Petersonacc71bb2009-01-02 13:43:32 +00001356 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001357 if (ldata->read_cnt >= (N_TTY_BUF_SIZE - parmrk - 1)) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001358 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001359 if (L_ECHO(tty))
1360 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001361 return;
1362 }
1363 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001364 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001366 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 else {
1368 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001369 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001370 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 echo_char(c, tty);
1372 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001373 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
1375
Joe Petersonacc71bb2009-01-02 13:43:32 +00001376 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001377 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Jiri Slaby57c94122012-10-18 22:26:43 +02001379 put_tty_queue(c, ldata);
Alan Cox4edf1822008-02-08 04:18:44 -08001380}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383/**
1384 * n_tty_write_wakeup - asynchronous I/O notifier
1385 * @tty: tty device
1386 *
1387 * Required for the ptys, serial driver etc. since processes
1388 * that attach themselves to the master and rely on ASYNC
1389 * IO must be woken up
1390 */
1391
1392static void n_tty_write_wakeup(struct tty_struct *tty)
1393{
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00001394 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396}
1397
1398/**
1399 * n_tty_receive_buf - data receive
1400 * @tty: terminal device
1401 * @cp: buffer
1402 * @fp: flag buffer
1403 * @count: characters
1404 *
1405 * Called by the terminal driver when a block of characters has
1406 * been received. This function must be called from soft contexts
1407 * not from interrupt context. The driver is responsible for making
1408 * calls one at a time and in order (or using flush_to_ldisc)
1409 */
Alan Cox4edf1822008-02-08 04:18:44 -08001410
Linus Torvalds55db4c62011-06-04 06:33:24 +09001411static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1412 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001414 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 const unsigned char *p;
1416 char *f, flags = TTY_NORMAL;
1417 int i;
1418 char buf[64];
1419 unsigned long cpuflags;
1420
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001421 if (ldata->real_raw) {
Ivo Sieben98001212013-01-28 13:32:01 +01001422 raw_spin_lock_irqsave(&ldata->read_lock, cpuflags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001423 i = min(N_TTY_BUF_SIZE - ldata->read_cnt,
1424 N_TTY_BUF_SIZE - ldata->read_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 i = min(count, i);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001426 memcpy(ldata->read_buf + ldata->read_head, cp, i);
1427 ldata->read_head = (ldata->read_head + i) & (N_TTY_BUF_SIZE-1);
1428 ldata->read_cnt += i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 cp += i;
1430 count -= i;
1431
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001432 i = min(N_TTY_BUF_SIZE - ldata->read_cnt,
1433 N_TTY_BUF_SIZE - ldata->read_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 i = min(count, i);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001435 memcpy(ldata->read_buf + ldata->read_head, cp, i);
1436 ldata->read_head = (ldata->read_head + i) & (N_TTY_BUF_SIZE-1);
1437 ldata->read_cnt += i;
Ivo Sieben98001212013-01-28 13:32:01 +01001438 raw_spin_unlock_irqrestore(&ldata->read_lock, cpuflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 } else {
Alan Cox4edf1822008-02-08 04:18:44 -08001440 for (i = count, p = cp, f = fp; i; i--, p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (f)
1442 flags = *f++;
1443 switch (flags) {
1444 case TTY_NORMAL:
1445 n_tty_receive_char(tty, *p);
1446 break;
1447 case TTY_BREAK:
1448 n_tty_receive_break(tty);
1449 break;
1450 case TTY_PARITY:
1451 case TTY_FRAME:
1452 n_tty_receive_parity_error(tty, *p);
1453 break;
1454 case TTY_OVERRUN:
1455 n_tty_receive_overrun(tty);
1456 break;
1457 default:
Alan Cox4edf1822008-02-08 04:18:44 -08001458 printk(KERN_ERR "%s: unknown flag %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 tty_name(tty, buf), flags);
1460 break;
1461 }
1462 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001463 if (tty->ops->flush_chars)
1464 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 }
1466
Peter Hurley7879a9f2013-06-15 07:28:31 -04001467 set_room(tty);
Linus Torvalds55db4c62011-06-04 06:33:24 +09001468
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001469 if ((!ldata->icanon && (ldata->read_cnt >= ldata->minimum_to_wake)) ||
hyc@symas.com26df6d12010-06-22 10:14:49 -07001470 L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1472 if (waitqueue_active(&tty->read_wait))
1473 wake_up_interruptible(&tty->read_wait);
1474 }
1475
1476 /*
1477 * Check the remaining room for the input canonicalization
1478 * mode. We don't want to throttle the driver if we're in
1479 * canonical mode and don't have a newline yet!
1480 */
Peter Hurleye91e52e2013-03-06 08:20:53 -05001481 while (1) {
1482 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
1483 if (tty->receive_room >= TTY_THRESHOLD_THROTTLE)
1484 break;
1485 if (!tty_throttle_safe(tty))
1486 break;
1487 }
1488 __tty_set_flow_change(tty, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
1491int is_ignored(int sig)
1492{
1493 return (sigismember(&current->blocked, sig) ||
Alan Cox4edf1822008-02-08 04:18:44 -08001494 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
1497/**
1498 * n_tty_set_termios - termios data changed
1499 * @tty: terminal
1500 * @old: previous data
1501 *
1502 * Called by the tty layer when the user changes termios flags so
1503 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001504 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 * guaranteed that this function will not be re-entered or in progress
1506 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001507 *
1508 * Locking: Caller holds tty->termios_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 */
Alan Cox4edf1822008-02-08 04:18:44 -08001510
1511static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001513 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001514 int canon_change = 1;
Alan Cox47afa7a2008-10-13 10:44:17 +01001515
1516 if (old)
Alan Coxadc8d742012-07-14 15:31:47 +01001517 canon_change = (old->c_lflag ^ tty->termios.c_lflag) & ICANON;
Alan Cox47afa7a2008-10-13 10:44:17 +01001518 if (canon_change) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001519 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001520 ldata->canon_head = ldata->read_tail;
1521 ldata->canon_data = 0;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001522 ldata->erasing = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001523 }
1524
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001525 if (canon_change && !L_ICANON(tty) && ldata->read_cnt)
Alan Cox47afa7a2008-10-13 10:44:17 +01001526 wake_up_interruptible(&tty->read_wait);
Alan Cox4edf1822008-02-08 04:18:44 -08001527
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001528 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1531 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1532 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1533 I_PARMRK(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001534 bitmap_zero(ldata->process_char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 if (I_IGNCR(tty) || I_ICRNL(tty))
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001537 set_bit('\r', ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (I_INLCR(tty))
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001539 set_bit('\n', ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 if (L_ICANON(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001542 set_bit(ERASE_CHAR(tty), ldata->process_char_map);
1543 set_bit(KILL_CHAR(tty), ldata->process_char_map);
1544 set_bit(EOF_CHAR(tty), ldata->process_char_map);
1545 set_bit('\n', ldata->process_char_map);
1546 set_bit(EOL_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 if (L_IEXTEN(tty)) {
1548 set_bit(WERASE_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001549 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 set_bit(LNEXT_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001551 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 set_bit(EOL2_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001553 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (L_ECHO(tty))
1555 set_bit(REPRINT_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001556 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558 }
1559 if (I_IXON(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001560 set_bit(START_CHAR(tty), ldata->process_char_map);
1561 set_bit(STOP_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
1563 if (L_ISIG(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001564 set_bit(INTR_CHAR(tty), ldata->process_char_map);
1565 set_bit(QUIT_CHAR(tty), ldata->process_char_map);
1566 set_bit(SUSP_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001568 clear_bit(__DISABLED_CHAR, ldata->process_char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001569 ldata->raw = 0;
1570 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001572 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1574 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1575 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001576 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001578 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09001580 n_tty_set_room(tty);
Wang YanQingdab73b42013-05-09 14:16:47 +08001581 /*
1582 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1583 * been stopped by STOP_CHAR(tty) before it.
1584 */
1585 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
1586 start_tty(tty);
1587 }
1588
Alan Coxf34d7a52008-04-30 00:54:13 -07001589 /* The termios change make the tty ready for I/O */
1590 wake_up_interruptible(&tty->write_wait);
1591 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
1594/**
1595 * n_tty_close - close the ldisc for this tty
1596 * @tty: device
1597 *
Alan Cox4edf1822008-02-08 04:18:44 -08001598 * Called from the terminal layer when this line discipline is
1599 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 * discipline change. The function will not be called while other
1601 * ldisc methods are in progress.
1602 */
Alan Cox4edf1822008-02-08 04:18:44 -08001603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604static void n_tty_close(struct tty_struct *tty)
1605{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001606 struct n_tty_data *ldata = tty->disc_data;
1607
Peter Hurley79901312013-03-11 16:44:23 -04001608 if (tty->link)
1609 n_tty_packet_mode_flush(tty);
1610
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001611 kfree(ldata->read_buf);
1612 kfree(ldata->echo_buf);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001613 kfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001614 tty->disc_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615}
1616
1617/**
1618 * n_tty_open - open an ldisc
1619 * @tty: terminal to open
1620 *
Alan Cox4edf1822008-02-08 04:18:44 -08001621 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 * terminal device. Can sleep. Called serialized so that no
1623 * other events will occur in parallel. No further open will occur
1624 * until a close.
1625 */
1626
1627static int n_tty_open(struct tty_struct *tty)
1628{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001629 struct n_tty_data *ldata;
1630
1631 ldata = kzalloc(sizeof(*ldata), GFP_KERNEL);
1632 if (!ldata)
1633 goto err;
1634
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001635 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001636 mutex_init(&ldata->atomic_read_lock);
1637 mutex_init(&ldata->output_lock);
1638 mutex_init(&ldata->echo_lock);
Ivo Sieben98001212013-01-28 13:32:01 +01001639 raw_spin_lock_init(&ldata->read_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001640
Joe Petersona88a69c2009-01-02 13:40:53 +00001641 /* These are ugly. Currently a malloc failure here can panic */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001642 ldata->read_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1643 ldata->echo_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1644 if (!ldata->read_buf || !ldata->echo_buf)
Jiri Slabyb91939f2012-10-18 22:26:35 +02001645 goto err_free_bufs;
Alan Cox0b4068a2009-06-11 13:05:49 +01001646
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001647 tty->disc_data = ldata;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001648 reset_buffer_flags(tty->disc_data);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001649 ldata->column = 0;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001650 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001652 /* indicate buffer work may resume */
1653 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1654 n_tty_set_termios(tty, NULL);
1655 tty_unthrottle(tty);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 return 0;
Jiri Slabyb91939f2012-10-18 22:26:35 +02001658err_free_bufs:
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001659 kfree(ldata->read_buf);
1660 kfree(ldata->echo_buf);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001661 kfree(ldata);
1662err:
Jiri Slabyb91939f2012-10-18 22:26:35 +02001663 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664}
1665
1666static inline int input_available_p(struct tty_struct *tty, int amt)
1667{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001668 struct n_tty_data *ldata = tty->disc_data;
1669
OGAWA Hirofumie043e422009-07-29 12:15:56 -07001670 tty_flush_to_ldisc(tty);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001671 if (ldata->icanon && !L_EXTPROC(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001672 if (ldata->canon_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return 1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001674 } else if (ldata->read_cnt >= (amt ? amt : 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return 1;
1676
1677 return 0;
1678}
1679
1680/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001681 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 * @tty: terminal device
1683 * @b: user data
1684 * @nr: size of data
1685 *
Alan Cox11a96d12008-10-13 10:46:24 +01001686 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 * ICANON is off; it copies characters straight from the tty queue to
1688 * user space directly. It can be profitably called twice; once to
1689 * drain the space from the tail pointer to the (physical) end of the
1690 * buffer, and once to drain the space from the (physical) beginning of
1691 * the buffer to head pointer.
1692 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001693 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 *
1695 */
Alan Cox4edf1822008-02-08 04:18:44 -08001696
Alan Cox33f0f882006-01-09 20:54:13 -08001697static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 unsigned char __user **b,
1699 size_t *nr)
1700
1701{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001702 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 int retval;
1704 size_t n;
1705 unsigned long flags;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001706 bool is_eof;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 retval = 0;
Ivo Sieben98001212013-01-28 13:32:01 +01001709 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001710 n = min(ldata->read_cnt, N_TTY_BUF_SIZE - ldata->read_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 n = min(*nr, n);
Ivo Sieben98001212013-01-28 13:32:01 +01001712 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (n) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001714 retval = copy_to_user(*b, &ldata->read_buf[ldata->read_tail], n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 n -= retval;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001716 is_eof = n == 1 &&
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001717 ldata->read_buf[ldata->read_tail] == EOF_CHAR(tty);
1718 tty_audit_add_data(tty, &ldata->read_buf[ldata->read_tail], n,
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001719 ldata->icanon);
Ivo Sieben98001212013-01-28 13:32:01 +01001720 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001721 ldata->read_tail = (ldata->read_tail + n) & (N_TTY_BUF_SIZE-1);
1722 ldata->read_cnt -= n;
hyc@symas.com26df6d12010-06-22 10:14:49 -07001723 /* Turn single EOF into zero-length read */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001724 if (L_EXTPROC(tty) && ldata->icanon && is_eof && !ldata->read_cnt)
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001725 n = 0;
Ivo Sieben98001212013-01-28 13:32:01 +01001726 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 *b += n;
1728 *nr -= n;
1729 }
1730 return retval;
1731}
1732
Al Virocc4191d2008-03-29 03:08:48 +00001733extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08001734 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736/**
1737 * job_control - check job control
1738 * @tty: tty
1739 * @file: file handle
1740 *
1741 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08001742 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07001744 *
Peter Hurley01a5e442013-03-06 08:38:20 -05001745 * Locking: redirected write test is safe
1746 * current->signal->tty check is safe
1747 * ctrl_lock to safely reference tty->pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 */
Alan Cox4edf1822008-02-08 04:18:44 -08001749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750static int job_control(struct tty_struct *tty, struct file *file)
1751{
1752 /* Job control check -- must be done at start and after
1753 every sleep (POSIX.1 7.1.1.4). */
1754 /* NOTE: not yet done after every sleep pending a thorough
1755 check of the logic of this change. -- jlc */
1756 /* don't stop on /dev/console */
Peter Hurley01a5e442013-03-06 08:38:20 -05001757 if (file->f_op->write == redirected_tty_write ||
1758 current->signal->tty != tty)
1759 return 0;
1760
1761 spin_lock_irq(&tty->ctrl_lock);
1762 if (!tty->pgrp)
1763 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
1764 else if (task_pgrp(current) != tty->pgrp) {
1765 spin_unlock_irq(&tty->ctrl_lock);
1766 if (is_ignored(SIGTTIN) || is_current_pgrp_orphaned())
1767 return -EIO;
1768 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
1769 set_thread_flag(TIF_SIGPENDING);
1770 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
Peter Hurley01a5e442013-03-06 08:38:20 -05001772 spin_unlock_irq(&tty->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 return 0;
1774}
Alan Cox4edf1822008-02-08 04:18:44 -08001775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777/**
Alan Cox11a96d12008-10-13 10:46:24 +01001778 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 * @tty: tty device
1780 * @file: file object
1781 * @buf: userspace buffer pointer
1782 * @nr: size of I/O
1783 *
1784 * Perform reads for the line discipline. We are guaranteed that the
1785 * line discipline will not be closed under us but we may get multiple
1786 * parallel readers and must handle this ourselves. We may also get
1787 * a hangup. Always called in user context, may sleep.
1788 *
1789 * This code must be sure never to sleep through a hangup.
1790 */
Alan Cox4edf1822008-02-08 04:18:44 -08001791
Alan Cox11a96d12008-10-13 10:46:24 +01001792static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 unsigned char __user *buf, size_t nr)
1794{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001795 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 unsigned char __user *b = buf;
1797 DECLARE_WAITQUEUE(wait, current);
1798 int c;
1799 int minimum, time;
1800 ssize_t retval = 0;
1801 ssize_t size;
1802 long timeout;
1803 unsigned long flags;
Alan Cox04f378b2008-04-30 00:53:29 -07001804 int packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806do_it_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08001808 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08001810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 minimum = time = 0;
1812 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001813 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 minimum = MIN_CHAR(tty);
1815 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04001816 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (time)
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001818 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 else if (!waitqueue_active(&tty->read_wait) ||
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001820 (ldata->minimum_to_wake > minimum))
1821 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04001823 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001824 ldata->minimum_to_wake = minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 }
1826 }
1827
1828 /*
1829 * Internal serialization of reads.
1830 */
1831 if (file->f_flags & O_NONBLOCK) {
Jiri Slabybddc7152012-10-18 22:26:42 +02001832 if (!mutex_trylock(&ldata->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return -EAGAIN;
Alan Cox4edf1822008-02-08 04:18:44 -08001834 } else {
Jiri Slabybddc7152012-10-18 22:26:42 +02001835 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return -ERESTARTSYS;
1837 }
Alan Cox04f378b2008-04-30 00:53:29 -07001838 packet = tty->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 while (nr) {
1842 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07001843 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 unsigned char cs;
1845 if (b != buf)
1846 break;
Alan Cox04f378b2008-04-30 00:53:29 -07001847 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 cs = tty->link->ctrl_status;
1849 tty->link->ctrl_status = 0;
Alan Cox04f378b2008-04-30 00:53:29 -07001850 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -07001851 if (tty_put_user(tty, cs, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 retval = -EFAULT;
1853 b--;
1854 break;
1855 }
1856 nr--;
1857 break;
1858 }
1859 /* This statement must be first before checking for input
1860 so that any interrupt will set the state back to
1861 TASK_RUNNING. */
1862 set_current_state(TASK_INTERRUPTIBLE);
Alan Cox4edf1822008-02-08 04:18:44 -08001863
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001864 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 ((minimum - (b - buf)) >= 1))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001866 ldata->minimum_to_wake = (minimum - (b - buf));
Alan Cox4edf1822008-02-08 04:18:44 -08001867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (!input_available_p(tty, 0)) {
1869 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
1870 retval = -EIO;
1871 break;
1872 }
1873 if (tty_hung_up_p(file))
1874 break;
1875 if (!timeout)
1876 break;
1877 if (file->f_flags & O_NONBLOCK) {
1878 retval = -EAGAIN;
1879 break;
1880 }
1881 if (signal_pending(current)) {
1882 retval = -ERESTARTSYS;
1883 break;
1884 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09001885 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 continue;
1888 }
1889 __set_current_state(TASK_RUNNING);
1890
1891 /* Deal with packet mode. */
Alan Cox04f378b2008-04-30 00:53:29 -07001892 if (packet && b == buf) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07001893 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 retval = -EFAULT;
1895 b--;
1896 break;
1897 }
1898 nr--;
1899 }
1900
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001901 if (ldata->icanon && !L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 /* N.B. avoid overrun if nr == 0 */
Ivo Sieben98001212013-01-28 13:32:01 +01001903 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001904 while (nr && ldata->read_cnt) {
Alan Cox4edf1822008-02-08 04:18:44 -08001905 int eol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001907 eol = test_and_clear_bit(ldata->read_tail,
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001908 ldata->read_flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001909 c = ldata->read_buf[ldata->read_tail];
1910 ldata->read_tail = ((ldata->read_tail+1) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 (N_TTY_BUF_SIZE-1));
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001912 ldata->read_cnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 if (eol) {
1914 /* this test should be redundant:
1915 * we shouldn't be reading data if
1916 * canon_data is 0
1917 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001918 if (--ldata->canon_data < 0)
1919 ldata->canon_data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
Ivo Sieben98001212013-01-28 13:32:01 +01001921 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 if (!eol || (c != __DISABLED_CHAR)) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07001924 if (tty_put_user(tty, c, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 retval = -EFAULT;
1926 b--;
Ivo Sieben98001212013-01-28 13:32:01 +01001927 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 break;
1929 }
1930 nr--;
1931 }
Miloslav Trmac522ed772007-07-15 23:40:56 -07001932 if (eol) {
1933 tty_audit_push(tty);
Ivo Sieben98001212013-01-28 13:32:01 +01001934 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 break;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001936 }
Ivo Sieben98001212013-01-28 13:32:01 +01001937 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
Ivo Sieben98001212013-01-28 13:32:01 +01001939 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 if (retval)
1941 break;
1942 } else {
1943 int uncopied;
Alan Cox04f378b2008-04-30 00:53:29 -07001944 /* The copy function takes the read lock and handles
1945 locking internally for this case */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 uncopied = copy_from_read_buf(tty, &b, &nr);
1947 uncopied += copy_from_read_buf(tty, &b, &nr);
1948 if (uncopied) {
1949 retval = -EFAULT;
1950 break;
1951 }
1952 }
1953
1954 /* If there is enough space in the read buffer now, let the
1955 * low-level driver know. We use n_tty_chars_in_buffer() to
1956 * check the buffer, as it now knows about canonical mode.
1957 * Otherwise, if the driver is throttled and the line is
1958 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
1959 * we won't get any more characters.
1960 */
Peter Hurleye91e52e2013-03-06 08:20:53 -05001961 while (1) {
1962 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
1963 if (n_tty_chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
1964 break;
1965 if (!tty->count)
1966 break;
Linus Torvalds55db4c62011-06-04 06:33:24 +09001967 n_tty_set_room(tty);
Peter Hurleye91e52e2013-03-06 08:20:53 -05001968 if (!tty_unthrottle_safe(tty))
1969 break;
Linus Torvalds55db4c62011-06-04 06:33:24 +09001970 }
Peter Hurleye91e52e2013-03-06 08:20:53 -05001971 __tty_set_flow_change(tty, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 if (b - buf >= minimum)
1974 break;
1975 if (time)
1976 timeout = time;
1977 }
Jiri Slabybddc7152012-10-18 22:26:42 +02001978 mutex_unlock(&ldata->atomic_read_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 remove_wait_queue(&tty->read_wait, &wait);
1980
1981 if (!waitqueue_active(&tty->read_wait))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001982 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 __set_current_state(TASK_RUNNING);
1985 size = b - buf;
1986 if (size) {
1987 retval = size;
1988 if (nr)
Alan Cox4edf1822008-02-08 04:18:44 -08001989 clear_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 } else if (test_and_clear_bit(TTY_PUSH, &tty->flags))
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001991 goto do_it_again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Linus Torvalds55db4c62011-06-04 06:33:24 +09001993 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return retval;
1995}
1996
1997/**
Alan Cox11a96d12008-10-13 10:46:24 +01001998 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 * @tty: tty device
2000 * @file: file object
2001 * @buf: userspace buffer pointer
2002 * @nr: size of I/O
2003 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002004 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002006 * and other such events. Since the receive code will echo characters,
2007 * thus calling driver write methods, the output_lock is used in
2008 * the output processing functions called here as well as in the
2009 * echo processing function to protect the column state and space
2010 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 *
2012 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002013 *
2014 * Locking: output_lock to protect column state and space left
2015 * (note that the process_output*() functions take this
2016 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 */
Alan Cox4edf1822008-02-08 04:18:44 -08002018
Alan Cox11a96d12008-10-13 10:46:24 +01002019static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002020 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
2022 const unsigned char *b = buf;
2023 DECLARE_WAITQUEUE(wait, current);
2024 int c;
2025 ssize_t retval = 0;
2026
2027 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2028 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2029 retval = tty_check_change(tty);
2030 if (retval)
2031 return retval;
2032 }
2033
Joe Petersona88a69c2009-01-02 13:40:53 +00002034 /* Write out any echoed characters that are still pending */
2035 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 add_wait_queue(&tty->write_wait, &wait);
2038 while (1) {
2039 set_current_state(TASK_INTERRUPTIBLE);
2040 if (signal_pending(current)) {
2041 retval = -ERESTARTSYS;
2042 break;
2043 }
2044 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2045 retval = -EIO;
2046 break;
2047 }
Peter Hurley582f5592013-05-17 12:49:48 -04002048 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002050 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (num < 0) {
2052 if (num == -EAGAIN)
2053 break;
2054 retval = num;
2055 goto break_out;
2056 }
2057 b += num;
2058 nr -= num;
2059 if (nr == 0)
2060 break;
2061 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002062 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 break;
2064 b++; nr--;
2065 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002066 if (tty->ops->flush_chars)
2067 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 } else {
Roman Zippeld6afe272005-07-07 17:56:55 -07002069 while (nr > 0) {
Alan Coxf34d7a52008-04-30 00:54:13 -07002070 c = tty->ops->write(tty, b, nr);
Roman Zippeld6afe272005-07-07 17:56:55 -07002071 if (c < 0) {
2072 retval = c;
2073 goto break_out;
2074 }
2075 if (!c)
2076 break;
2077 b += c;
2078 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
2081 if (!nr)
2082 break;
2083 if (file->f_flags & O_NONBLOCK) {
2084 retval = -EAGAIN;
2085 break;
2086 }
2087 schedule();
2088 }
2089break_out:
2090 __set_current_state(TASK_RUNNING);
2091 remove_wait_queue(&tty->write_wait, &wait);
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002092 if (b - buf != nr && tty->fasync)
2093 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 return (b - buf) ? b - buf : retval;
2095}
2096
2097/**
Alan Cox11a96d12008-10-13 10:46:24 +01002098 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 * @tty: terminal device
2100 * @file: file accessing it
2101 * @wait: poll table
2102 *
2103 * Called when the line discipline is asked to poll() for data or
2104 * for special events. This code is not serialized with respect to
2105 * other events save open/close.
2106 *
2107 * This code must be sure never to sleep through a hangup.
2108 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 */
Alan Cox4edf1822008-02-08 04:18:44 -08002110
Alan Cox11a96d12008-10-13 10:46:24 +01002111static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002112 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002114 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 unsigned int mask = 0;
2116
2117 poll_wait(file, &tty->read_wait, wait);
2118 poll_wait(file, &tty->write_wait, wait);
2119 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
2120 mask |= POLLIN | POLLRDNORM;
2121 if (tty->packet && tty->link->ctrl_status)
2122 mask |= POLLPRI | POLLIN | POLLRDNORM;
2123 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2124 mask |= POLLHUP;
2125 if (tty_hung_up_p(file))
2126 mask |= POLLHUP;
2127 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2128 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002129 ldata->minimum_to_wake = MIN_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 else
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002131 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002133 if (tty->ops->write && !tty_is_writelocked(tty) &&
2134 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2135 tty_write_room(tty) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 mask |= POLLOUT | POLLWRNORM;
2137 return mask;
2138}
2139
Jiri Slaby57c94122012-10-18 22:26:43 +02002140static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002141{
2142 int nr, head, tail;
2143
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002144 if (!ldata->canon_data)
Alan Cox47afa7a2008-10-13 10:44:17 +01002145 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002146 head = ldata->canon_head;
2147 tail = ldata->read_tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002148 nr = (head - tail) & (N_TTY_BUF_SIZE-1);
2149 /* Skip EOF-chars.. */
2150 while (head != tail) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02002151 if (test_bit(tail, ldata->read_flags) &&
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002152 ldata->read_buf[tail] == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002153 nr--;
2154 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
2155 }
2156 return nr;
2157}
2158
2159static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2160 unsigned int cmd, unsigned long arg)
2161{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002162 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002163 int retval;
2164
2165 switch (cmd) {
2166 case TIOCOUTQ:
2167 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2168 case TIOCINQ:
Alan Cox17b82062008-10-13 10:45:06 +01002169 /* FIXME: Locking */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002170 retval = ldata->read_cnt;
Alan Cox47afa7a2008-10-13 10:44:17 +01002171 if (L_ICANON(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002172 retval = inq_canon(ldata);
Alan Cox47afa7a2008-10-13 10:44:17 +01002173 return put_user(retval, (unsigned int __user *) arg);
2174 default:
2175 return n_tty_ioctl_helper(tty, file, cmd, arg);
2176 }
2177}
2178
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002179static void n_tty_fasync(struct tty_struct *tty, int on)
2180{
2181 struct n_tty_data *ldata = tty->disc_data;
2182
2183 if (!waitqueue_active(&tty->read_wait)) {
2184 if (on)
2185 ldata->minimum_to_wake = 1;
2186 else if (!tty->fasync)
2187 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2188 }
2189}
2190
Alan Coxa352def2008-07-16 21:53:12 +01002191struct tty_ldisc_ops tty_ldisc_N_TTY = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002192 .magic = TTY_LDISC_MAGIC,
2193 .name = "n_tty",
2194 .open = n_tty_open,
2195 .close = n_tty_close,
2196 .flush_buffer = n_tty_flush_buffer,
2197 .chars_in_buffer = n_tty_chars_in_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002198 .read = n_tty_read,
2199 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002200 .ioctl = n_tty_ioctl,
2201 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002202 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002203 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002204 .write_wakeup = n_tty_write_wakeup,
2205 .fasync = n_tty_fasync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002207
2208/**
2209 * n_tty_inherit_ops - inherit N_TTY methods
2210 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2211 *
George Spelvin593fb1ae42013-02-12 02:00:43 -05002212 * Enables a 'subclass' line discipline to 'inherit' N_TTY
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002213 * methods.
2214 */
2215
2216void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2217{
2218 *ops = tty_ldisc_N_TTY;
2219 ops->owner = NULL;
2220 ops->refcount = ops->flags = 0;
2221}
2222EXPORT_SYMBOL_GPL(n_tty_inherit_ops);