blob: b2fef10a0c628c27dc104ecd5834973d3f6af809 [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
Peter Hurley32f13522013-06-15 09:14:17 -040077#undef N_TTY_TRACE
78#ifdef N_TTY_TRACE
79# define n_tty_trace(f, args...) trace_printk(f, ##args)
80#else
81# define n_tty_trace(f, args...)
82#endif
83
Jiri Slaby70ece7a2012-10-18 22:26:38 +020084struct n_tty_data {
Jiri Slaby53c5ee22012-10-18 22:26:39 +020085 unsigned int column;
86 unsigned long overrun_time;
87 int num_overrun;
88
Peter Hurley24a89d12013-06-15 09:14:15 -040089 /* non-atomic */
90 bool no_room;
91
Jiri Slaby53c5ee22012-10-18 22:26:39 +020092 unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
93 unsigned char echo_overrun:1;
Jiri Slaby3fe780b2012-10-18 22:26:40 +020094
95 DECLARE_BITMAP(process_char_map, 256);
96 DECLARE_BITMAP(read_flags, N_TTY_BUF_SIZE);
Jiri Slabyba2e68a2012-10-18 22:26:41 +020097
98 char *read_buf;
Peter Hurleybc5a5e32013-06-15 09:14:21 -040099 size_t read_head;
100 size_t read_tail;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200101 int read_cnt;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -0400102 int minimum_to_wake;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200103
104 unsigned char *echo_buf;
105 unsigned int echo_pos;
106 unsigned int echo_cnt;
107
108 int canon_data;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400109 size_t canon_head;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200110 unsigned int canon_column;
Jiri Slabybddc7152012-10-18 22:26:42 +0200111
112 struct mutex atomic_read_lock;
113 struct mutex output_lock;
114 struct mutex echo_lock;
Ivo Sieben98001212013-01-28 13:32:01 +0100115 raw_spinlock_t read_lock;
Jiri Slaby70ece7a2012-10-18 22:26:38 +0200116};
117
Peter Hurleyce741172013-06-15 09:14:20 -0400118static inline size_t read_cnt(struct n_tty_data *ldata)
119{
120 return ldata->read_cnt;
121}
122
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400123static inline unsigned char read_buf(struct n_tty_data *ldata, size_t i)
124{
125 return ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
126}
127
128static inline unsigned char *read_buf_addr(struct n_tty_data *ldata, size_t i)
129{
130 return &ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
131}
132
Miloslav Trmac522ed772007-07-15 23:40:56 -0700133static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
134 unsigned char __user *ptr)
135{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200136 struct n_tty_data *ldata = tty->disc_data;
137
138 tty_audit_add_data(tty, &x, 1, ldata->icanon);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700139 return put_user(x, ptr);
140}
141
Peter Hurley24a89d12013-06-15 09:14:15 -0400142static int receive_room(struct tty_struct *tty)
Linus Torvalds55db4c62011-06-04 06:33:24 +0900143{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200144 struct n_tty_data *ldata = tty->disc_data;
Jaeden Amero090abf72012-07-27 08:43:11 -0500145 int left;
Peter Hurleyb8483052013-06-15 07:28:30 -0400146
Jaeden Amero090abf72012-07-27 08:43:11 -0500147 if (I_PARMRK(tty)) {
148 /* Multiply read_cnt by 3, since each byte might take up to
149 * three times as many spaces when PARMRK is set (depending on
150 * its flags, e.g. parity error). */
Peter Hurleyce741172013-06-15 09:14:20 -0400151 left = N_TTY_BUF_SIZE - read_cnt(ldata) * 3 - 1;
Jaeden Amero090abf72012-07-27 08:43:11 -0500152 } else
Peter Hurleyce741172013-06-15 09:14:20 -0400153 left = N_TTY_BUF_SIZE - read_cnt(ldata) - 1;
Jaeden Amero090abf72012-07-27 08:43:11 -0500154
Linus Torvalds55db4c62011-06-04 06:33:24 +0900155 /*
156 * If we are doing input canonicalization, and there are no
157 * pending newlines, let characters through without limit, so
158 * that erase characters will be handled. Other excess
159 * characters will be beeped.
160 */
161 if (left <= 0)
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200162 left = ldata->icanon && !ldata->canon_data;
Linus Torvalds55db4c62011-06-04 06:33:24 +0900163
Peter Hurley24a89d12013-06-15 09:14:15 -0400164 return left;
Peter Hurley7879a9f2013-06-15 07:28:31 -0400165}
166
Peter Hurley24a89d12013-06-15 09:14:15 -0400167/**
168 * n_tty_set_room - receive space
169 * @tty: terminal
170 *
171 * Re-schedules the flip buffer work if space just became available.
172 *
173 * Locks: Concurrent update is protected with read_lock
174 */
175
Peter Hurley7879a9f2013-06-15 07:28:31 -0400176static void n_tty_set_room(struct tty_struct *tty)
177{
Peter Hurley24a89d12013-06-15 09:14:15 -0400178 struct n_tty_data *ldata = tty->disc_data;
179
Linus Torvalds55db4c62011-06-04 06:33:24 +0900180 /* Did this open up the receive buffer? We may need to flip */
Peter Hurley24a89d12013-06-15 09:14:15 -0400181 if (unlikely(ldata->no_room) && receive_room(tty)) {
182 ldata->no_room = 0;
183
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200184 WARN_RATELIMIT(tty->port->itty == NULL,
Sasha Levincadf7482012-10-25 14:26:35 -0400185 "scheduling with invalid itty\n");
Peter Hurley21622932013-03-11 16:44:21 -0400186 /* see if ldisc has been killed - if so, this means that
187 * even though the ldisc has been halted and ->buf.work
188 * cancelled, ->buf.work is about to be rescheduled
189 */
190 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
191 "scheduling buffer work for halted ldisc\n");
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200192 schedule_work(&tty->port->buf.work);
193 }
Linus Torvalds55db4c62011-06-04 06:33:24 +0900194}
195
Jiri Slaby57c94122012-10-18 22:26:43 +0200196static void put_tty_queue_nolock(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Peter Hurleyce741172013-06-15 09:14:20 -0400198 if (read_cnt(ldata) < N_TTY_BUF_SIZE) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400199 *read_buf_addr(ldata, ldata->read_head) = c;
200 ldata->read_head++;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200201 ldata->read_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203}
204
Alan Cox17b82062008-10-13 10:45:06 +0100205/**
206 * put_tty_queue - add character to tty
207 * @c: character
Jiri Slaby57c94122012-10-18 22:26:43 +0200208 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100209 *
210 * Add a character to the tty read_buf queue. This is done under the
211 * read_lock to serialize character addition and also to protect us
212 * against parallel reads or flushes
213 */
214
Jiri Slaby57c94122012-10-18 22:26:43 +0200215static void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 unsigned long flags;
218 /*
219 * The problem of stomping on the buffers ends here.
220 * Why didn't anyone see this one coming? --AJK
221 */
Ivo Sieben98001212013-01-28 13:32:01 +0100222 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slaby57c94122012-10-18 22:26:43 +0200223 put_tty_queue_nolock(c, ldata);
Ivo Sieben98001212013-01-28 13:32:01 +0100224 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
227/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 * reset_buffer_flags - reset buffer state
229 * @tty: terminal to reset
230 *
Peter Hurley25518c62013-03-11 16:44:31 -0400231 * Reset the read buffer counters and clear the flags.
232 * Called from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100233 *
234 * Locking: tty_read_lock for read fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000236
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400237static void reset_buffer_flags(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 unsigned long flags;
240
Ivo Sieben98001212013-01-28 13:32:01 +0100241 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200242 ldata->read_head = ldata->read_tail = ldata->read_cnt = 0;
Ivo Sieben98001212013-01-28 13:32:01 +0100243 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Joe Petersona88a69c2009-01-02 13:40:53 +0000244
Jiri Slabybddc7152012-10-18 22:26:42 +0200245 mutex_lock(&ldata->echo_lock);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200246 ldata->echo_pos = ldata->echo_cnt = ldata->echo_overrun = 0;
Jiri Slabybddc7152012-10-18 22:26:42 +0200247 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000248
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200249 ldata->canon_head = ldata->canon_data = ldata->erasing = 0;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200250 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Peter Hurleya30737a2013-03-11 16:44:22 -0400253static void n_tty_packet_mode_flush(struct tty_struct *tty)
254{
255 unsigned long flags;
256
257 spin_lock_irqsave(&tty->ctrl_lock, flags);
258 if (tty->link->packet) {
259 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
260 wake_up_interruptible(&tty->link->read_wait);
261 }
262 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
263}
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265/**
266 * n_tty_flush_buffer - clean input queue
267 * @tty: terminal device
268 *
Peter Hurley25518c62013-03-11 16:44:31 -0400269 * Flush the input buffer. Called when the tty layer wants the
270 * buffer flushed (eg at hangup) or when the N_TTY line discipline
271 * internally has to clean the pending queue (for example some signals).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 *
Alan Cox17b82062008-10-13 10:45:06 +0100273 * Locking: ctrl_lock, read_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
Alan Cox4edf1822008-02-08 04:18:44 -0800275
276static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400278 reset_buffer_flags(tty->disc_data);
279 n_tty_set_room(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800280
Peter Hurleya30737a2013-03-11 16:44:22 -0400281 if (tty->link)
282 n_tty_packet_mode_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285/**
286 * n_tty_chars_in_buffer - report available bytes
287 * @tty: tty device
288 *
289 * Report the number of characters buffered to be delivered to user
Alan Cox4edf1822008-02-08 04:18:44 -0800290 * at this instant in time.
Alan Cox17b82062008-10-13 10:45:06 +0100291 *
292 * Locking: read_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 */
Alan Cox4edf1822008-02-08 04:18:44 -0800294
Peter Hurleya19d0c62013-06-15 09:14:18 -0400295static ssize_t chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200297 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 unsigned long flags;
299 ssize_t n = 0;
300
Ivo Sieben98001212013-01-28 13:32:01 +0100301 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400302 if (!ldata->icanon)
Peter Hurleyce741172013-06-15 09:14:20 -0400303 n = read_cnt(ldata);
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400304 else
305 n = ldata->canon_head - ldata->read_tail;
Ivo Sieben98001212013-01-28 13:32:01 +0100306 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return n;
308}
309
Peter Hurleya19d0c62013-06-15 09:14:18 -0400310static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
311{
Peter Hurley47534082013-06-15 09:14:19 -0400312 WARN_ONCE(1, "%s is deprecated and scheduled for removal.", __func__);
Peter Hurleya19d0c62013-06-15 09:14:18 -0400313 return chars_in_buffer(tty);
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/**
317 * is_utf8_continuation - utf8 multibyte check
318 * @c: byte to check
319 *
320 * Returns true if the utf8 character 'c' is a multibyte continuation
321 * character. We use this to correctly compute the on screen size
322 * of the character when printing
323 */
Alan Cox4edf1822008-02-08 04:18:44 -0800324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static inline int is_utf8_continuation(unsigned char c)
326{
327 return (c & 0xc0) == 0x80;
328}
329
330/**
331 * is_continuation - multibyte check
332 * @c: byte to check
333 *
334 * Returns true if the utf8 character 'c' is a multibyte continuation
335 * character and the terminal is in unicode mode.
336 */
Alan Cox4edf1822008-02-08 04:18:44 -0800337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static inline int is_continuation(unsigned char c, struct tty_struct *tty)
339{
340 return I_IUTF8(tty) && is_utf8_continuation(c);
341}
342
343/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000344 * do_output_char - output one character
345 * @c: character (or partial unicode symbol)
346 * @tty: terminal device
347 * @space: space available in tty driver write buffer
348 *
349 * This is a helper function that handles one output character
350 * (including special characters like TAB, CR, LF, etc.),
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600351 * doing OPOST processing and putting the results in the
352 * tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000353 *
354 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
355 * and NLDLY. They simply aren't relevant in the world today.
356 * If you ever need them, add them here.
357 *
358 * Returns the number of bytes of buffer space used or -1 if
359 * no space left.
360 *
361 * Locking: should be called under the output_lock to protect
362 * the column state and space left in the buffer
363 */
364
365static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
366{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200367 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000368 int spaces;
369
370 if (!space)
371 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000372
Joe Petersona88a69c2009-01-02 13:40:53 +0000373 switch (c) {
374 case '\n':
375 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200376 ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000377 if (O_ONLCR(tty)) {
378 if (space < 2)
379 return -1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200380 ldata->canon_column = ldata->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700381 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000382 return 2;
383 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200384 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000385 break;
386 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200387 if (O_ONOCR(tty) && ldata->column == 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000388 return 0;
389 if (O_OCRNL(tty)) {
390 c = '\n';
391 if (O_ONLRET(tty))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200392 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000393 break;
394 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200395 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000396 break;
397 case '\t':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200398 spaces = 8 - (ldata->column & 7);
Joe Petersona88a69c2009-01-02 13:40:53 +0000399 if (O_TABDLY(tty) == XTABS) {
400 if (space < spaces)
401 return -1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200402 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000403 tty->ops->write(tty, " ", spaces);
404 return spaces;
405 }
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200406 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000407 break;
408 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200409 if (ldata->column > 0)
410 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000411 break;
412 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000413 if (!iscntrl(c)) {
414 if (O_OLCUC(tty))
415 c = toupper(c);
416 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200417 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000418 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000419 break;
420 }
421
422 tty_put_char(tty, c);
423 return 1;
424}
425
426/**
427 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * @c: character (or partial unicode symbol)
429 * @tty: terminal device
430 *
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600431 * Output one character with OPOST processing.
432 * Returns -1 when the output device is full and the character
433 * must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000435 * Locking: output_lock to protect column state and space left
436 * (also, this is called from n_tty_write under the
437 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 */
Alan Cox4edf1822008-02-08 04:18:44 -0800439
Joe Petersona88a69c2009-01-02 13:40:53 +0000440static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Jiri Slabybddc7152012-10-18 22:26:42 +0200442 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000443 int space, retval;
444
Jiri Slabybddc7152012-10-18 22:26:42 +0200445 mutex_lock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Alan Coxf34d7a52008-04-30 00:54:13 -0700447 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000448 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Jiri Slabybddc7152012-10-18 22:26:42 +0200450 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000451 if (retval < 0)
452 return -1;
453 else
454 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000458 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 * @tty: terminal device
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600460 * @buf: character buffer
461 * @nr: number of bytes to output
462 *
463 * Output a block of characters with OPOST processing.
464 * Returns the number of characters output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 *
466 * This path is used to speed up block console writes, among other
467 * things when processing blocks of output data. It handles only
468 * the simple cases normally found and helps to generate blocks of
469 * symbols for the console driver and thus improve performance.
470 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000471 * Locking: output_lock to protect column state and space left
472 * (also, this is called from n_tty_write under the
473 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 */
Alan Cox4edf1822008-02-08 04:18:44 -0800475
Joe Petersona88a69c2009-01-02 13:40:53 +0000476static ssize_t process_output_block(struct tty_struct *tty,
477 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200479 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100481 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 const unsigned char *cp;
483
Jiri Slabybddc7152012-10-18 22:26:42 +0200484 mutex_lock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000485
Alan Coxf34d7a52008-04-30 00:54:13 -0700486 space = tty_write_room(tty);
Alan Cox300a6202009-01-02 13:41:04 +0000487 if (!space) {
Jiri Slabybddc7152012-10-18 22:26:42 +0200488 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (nr > space)
492 nr = space;
493
494 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000495 unsigned char c = *cp;
496
497 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 case '\n':
499 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200500 ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (O_ONLCR(tty))
502 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200503 ldata->canon_column = ldata->column;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200506 if (O_ONOCR(tty) && ldata->column == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 goto break_out;
508 if (O_OCRNL(tty))
509 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200510 ldata->canon_column = ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 break;
512 case '\t':
513 goto break_out;
514 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200515 if (ldata->column > 0)
516 ldata->column--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 break;
518 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000519 if (!iscntrl(c)) {
520 if (O_OLCUC(tty))
521 goto break_out;
522 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200523 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526 }
527 }
528break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700529 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000530
Jiri Slabybddc7152012-10-18 22:26:42 +0200531 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return i;
533}
534
Joe Petersona88a69c2009-01-02 13:40:53 +0000535/**
536 * process_echoes - write pending echo characters
537 * @tty: terminal device
538 *
539 * Write previously buffered echo (and other ldisc-generated)
540 * characters to the tty.
541 *
542 * Characters generated by the ldisc (including echoes) need to
543 * be buffered because the driver's write buffer can fill during
544 * heavy program output. Echoing straight to the driver will
545 * often fail under these conditions, causing lost characters and
546 * resulting mismatches of ldisc state information.
547 *
548 * Since the ldisc state must represent the characters actually sent
549 * to the driver at the time of the write, operations like certain
550 * changes in column state are also saved in the buffer and executed
551 * here.
552 *
553 * A circular fifo buffer is used so that the most recent characters
554 * are prioritized. Also, when control characters are echoed with a
555 * prefixed "^", the pair is treated atomically and thus not separated.
556 *
557 * Locking: output_lock to protect column state and space left,
558 * echo_lock to protect the echo buffer
559 */
560
561static void process_echoes(struct tty_struct *tty)
562{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200563 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000564 int space, nr;
565 unsigned char c;
566 unsigned char *cp, *buf_end;
567
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200568 if (!ldata->echo_cnt)
Joe Petersona88a69c2009-01-02 13:40:53 +0000569 return;
570
Jiri Slabybddc7152012-10-18 22:26:42 +0200571 mutex_lock(&ldata->output_lock);
572 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000573
574 space = tty_write_room(tty);
575
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200576 buf_end = ldata->echo_buf + N_TTY_BUF_SIZE;
577 cp = ldata->echo_buf + ldata->echo_pos;
578 nr = ldata->echo_cnt;
Joe Petersona88a69c2009-01-02 13:40:53 +0000579 while (nr > 0) {
580 c = *cp;
581 if (c == ECHO_OP_START) {
582 unsigned char op;
583 unsigned char *opp;
584 int no_space_left = 0;
585
586 /*
587 * If the buffer byte is the start of a multi-byte
588 * operation, get the next byte, which is either the
589 * op code or a control character value.
590 */
591 opp = cp + 1;
592 if (opp == buf_end)
593 opp -= N_TTY_BUF_SIZE;
594 op = *opp;
Alan Cox300a6202009-01-02 13:41:04 +0000595
Joe Petersona88a69c2009-01-02 13:40:53 +0000596 switch (op) {
597 unsigned int num_chars, num_bs;
598
599 case ECHO_OP_ERASE_TAB:
600 if (++opp == buf_end)
601 opp -= N_TTY_BUF_SIZE;
602 num_chars = *opp;
603
604 /*
605 * Determine how many columns to go back
606 * in order to erase the tab.
607 * This depends on the number of columns
608 * used by other characters within the tab
609 * area. If this (modulo 8) count is from
610 * the start of input rather than from a
611 * previous tab, we offset by canon column.
612 * Otherwise, tab spacing is normal.
613 */
614 if (!(num_chars & 0x80))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200615 num_chars += ldata->canon_column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000616 num_bs = 8 - (num_chars & 7);
617
618 if (num_bs > space) {
619 no_space_left = 1;
620 break;
621 }
622 space -= num_bs;
623 while (num_bs--) {
624 tty_put_char(tty, '\b');
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200625 if (ldata->column > 0)
626 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000627 }
628 cp += 3;
629 nr -= 3;
630 break;
631
632 case ECHO_OP_SET_CANON_COL:
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200633 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000634 cp += 2;
635 nr -= 2;
636 break;
637
638 case ECHO_OP_MOVE_BACK_COL:
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200639 if (ldata->column > 0)
640 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000641 cp += 2;
642 nr -= 2;
643 break;
644
645 case ECHO_OP_START:
646 /* This is an escaped echo op start code */
647 if (!space) {
648 no_space_left = 1;
649 break;
650 }
651 tty_put_char(tty, ECHO_OP_START);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200652 ldata->column++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000653 space--;
654 cp += 2;
655 nr -= 2;
656 break;
657
658 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000659 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600660 * If the op is not a special byte code,
661 * it is a ctrl char tagged to be echoed
662 * as "^X" (where X is the letter
663 * representing the control char).
664 * Note that we must ensure there is
665 * enough space for the whole ctrl pair.
666 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000667 */
Joe Peterson62b26352009-09-09 15:03:47 -0600668 if (space < 2) {
669 no_space_left = 1;
670 break;
671 }
672 tty_put_char(tty, '^');
673 tty_put_char(tty, op ^ 0100);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200674 ldata->column += 2;
Joe Peterson62b26352009-09-09 15:03:47 -0600675 space -= 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000676 cp += 2;
677 nr -= 2;
678 }
679
680 if (no_space_left)
681 break;
682 } else {
Peter Hurley582f5592013-05-17 12:49:48 -0400683 if (O_OPOST(tty)) {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600684 int retval = do_output_char(c, tty, space);
685 if (retval < 0)
686 break;
687 space -= retval;
688 } else {
689 if (!space)
690 break;
691 tty_put_char(tty, c);
692 space -= 1;
693 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000694 cp += 1;
695 nr -= 1;
696 }
697
698 /* When end of circular buffer reached, wrap around */
699 if (cp >= buf_end)
700 cp -= N_TTY_BUF_SIZE;
701 }
702
703 if (nr == 0) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200704 ldata->echo_pos = 0;
705 ldata->echo_cnt = 0;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200706 ldata->echo_overrun = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000707 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200708 int num_processed = ldata->echo_cnt - nr;
709 ldata->echo_pos += num_processed;
710 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
711 ldata->echo_cnt = nr;
Joe Petersona88a69c2009-01-02 13:40:53 +0000712 if (num_processed > 0)
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200713 ldata->echo_overrun = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000714 }
715
Jiri Slabybddc7152012-10-18 22:26:42 +0200716 mutex_unlock(&ldata->echo_lock);
717 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000718
719 if (tty->ops->flush_chars)
720 tty->ops->flush_chars(tty);
721}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000724 * add_echo_byte - add a byte to the echo buffer
725 * @c: unicode byte to echo
Jiri Slaby57c94122012-10-18 22:26:43 +0200726 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000727 *
728 * Add a character or operation byte to the echo buffer.
729 *
730 * Should be called under the echo lock to protect the echo buffer.
731 */
732
Jiri Slaby57c94122012-10-18 22:26:43 +0200733static void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000734{
735 int new_byte_pos;
736
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200737 if (ldata->echo_cnt == N_TTY_BUF_SIZE) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000738 /* Circular buffer is already at capacity */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200739 new_byte_pos = ldata->echo_pos;
Joe Petersona88a69c2009-01-02 13:40:53 +0000740
741 /*
742 * Since the buffer start position needs to be advanced,
743 * be sure to step by a whole operation byte group.
744 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200745 if (ldata->echo_buf[ldata->echo_pos] == ECHO_OP_START) {
746 if (ldata->echo_buf[(ldata->echo_pos + 1) &
Joe Petersona88a69c2009-01-02 13:40:53 +0000747 (N_TTY_BUF_SIZE - 1)] ==
748 ECHO_OP_ERASE_TAB) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200749 ldata->echo_pos += 3;
750 ldata->echo_cnt -= 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000751 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200752 ldata->echo_pos += 2;
753 ldata->echo_cnt -= 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000754 }
755 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200756 ldata->echo_pos++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000757 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200758 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000759
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200760 ldata->echo_overrun = 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000761 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200762 new_byte_pos = ldata->echo_pos + ldata->echo_cnt;
Joe Petersona88a69c2009-01-02 13:40:53 +0000763 new_byte_pos &= N_TTY_BUF_SIZE - 1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200764 ldata->echo_cnt++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000765 }
766
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200767 ldata->echo_buf[new_byte_pos] = c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000768}
769
770/**
771 * echo_move_back_col - add operation to move back a column
Jiri Slaby57c94122012-10-18 22:26:43 +0200772 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000773 *
774 * Add an operation to the echo buffer to move back one column.
775 *
776 * Locking: echo_lock to protect the echo buffer
777 */
778
Jiri Slaby57c94122012-10-18 22:26:43 +0200779static void echo_move_back_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000780{
Jiri Slabybddc7152012-10-18 22:26:42 +0200781 mutex_lock(&ldata->echo_lock);
Jiri Slaby57c94122012-10-18 22:26:43 +0200782 add_echo_byte(ECHO_OP_START, ldata);
783 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
Jiri Slabybddc7152012-10-18 22:26:42 +0200784 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000785}
786
787/**
788 * echo_set_canon_col - add operation to set the canon column
Jiri Slaby57c94122012-10-18 22:26:43 +0200789 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000790 *
791 * Add an operation to the echo buffer to set the canon column
792 * to the current column.
793 *
794 * Locking: echo_lock to protect the echo buffer
795 */
796
Jiri Slaby57c94122012-10-18 22:26:43 +0200797static void echo_set_canon_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000798{
Jiri Slabybddc7152012-10-18 22:26:42 +0200799 mutex_lock(&ldata->echo_lock);
Jiri Slaby57c94122012-10-18 22:26:43 +0200800 add_echo_byte(ECHO_OP_START, ldata);
801 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
Jiri Slabybddc7152012-10-18 22:26:42 +0200802 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000803}
804
805/**
806 * echo_erase_tab - add operation to erase a tab
807 * @num_chars: number of character columns already used
808 * @after_tab: true if num_chars starts after a previous tab
Jiri Slaby57c94122012-10-18 22:26:43 +0200809 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000810 *
811 * Add an operation to the echo buffer to erase a tab.
812 *
813 * Called by the eraser function, which knows how many character
814 * columns have been used since either a previous tab or the start
815 * of input. This information will be used later, along with
816 * canon column (if applicable), to go back the correct number
817 * of columns.
818 *
819 * Locking: echo_lock to protect the echo buffer
820 */
821
822static void echo_erase_tab(unsigned int num_chars, int after_tab,
Jiri Slaby57c94122012-10-18 22:26:43 +0200823 struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000824{
Jiri Slabybddc7152012-10-18 22:26:42 +0200825 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000826
Jiri Slaby57c94122012-10-18 22:26:43 +0200827 add_echo_byte(ECHO_OP_START, ldata);
828 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000829
830 /* We only need to know this modulo 8 (tab spacing) */
831 num_chars &= 7;
832
833 /* Set the high bit as a flag if num_chars is after a previous tab */
834 if (after_tab)
835 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000836
Jiri Slaby57c94122012-10-18 22:26:43 +0200837 add_echo_byte(num_chars, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000838
Jiri Slabybddc7152012-10-18 22:26:42 +0200839 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000840}
841
842/**
843 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 * @c: unicode byte to echo
845 * @tty: terminal device
846 *
Alan Cox4edf1822008-02-08 04:18:44 -0800847 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100849 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000850 * This variant does not treat control characters specially.
851 *
852 * Locking: echo_lock to protect the echo buffer
853 */
854
Jiri Slaby57c94122012-10-18 22:26:43 +0200855static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000856{
Jiri Slabybddc7152012-10-18 22:26:42 +0200857 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000858 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200859 add_echo_byte(ECHO_OP_START, ldata);
860 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000861 } else {
Jiri Slaby57c94122012-10-18 22:26:43 +0200862 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000863 }
Jiri Slabybddc7152012-10-18 22:26:42 +0200864 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000865}
866
867/**
868 * echo_char - echo a character
869 * @c: unicode byte to echo
870 * @tty: terminal device
871 *
872 * Echo user input back onto the screen. This must be called only when
873 * L_ECHO(tty) is true. Called from the driver receive_buf path.
874 *
Joe Peterson62b26352009-09-09 15:03:47 -0600875 * This variant tags control characters to be echoed as "^X"
876 * (where X is the letter representing the control char).
Joe Petersona88a69c2009-01-02 13:40:53 +0000877 *
878 * Locking: echo_lock to protect the echo buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
880
881static void echo_char(unsigned char c, struct tty_struct *tty)
882{
Jiri Slabybddc7152012-10-18 22:26:42 +0200883 struct n_tty_data *ldata = tty->disc_data;
884
885 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000886
887 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200888 add_echo_byte(ECHO_OP_START, ldata);
889 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000890 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600891 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Jiri Slaby57c94122012-10-18 22:26:43 +0200892 add_echo_byte(ECHO_OP_START, ldata);
893 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000894 }
895
Jiri Slabybddc7152012-10-18 22:26:42 +0200896 mutex_unlock(&ldata->echo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Alan Cox17b82062008-10-13 10:45:06 +0100899/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000900 * finish_erasing - complete erase
Jiri Slaby57c94122012-10-18 22:26:43 +0200901 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100902 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000903
Jiri Slaby57c94122012-10-18 22:26:43 +0200904static inline void finish_erasing(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200906 if (ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200907 echo_char_raw('/', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200908 ldata->erasing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910}
911
912/**
913 * eraser - handle erase function
914 * @c: character input
915 * @tty: terminal device
916 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200917 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 * present in the stream from the driver layer. Handles the complexities
919 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100920 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000921 * Locking: read_lock for tty buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 */
Alan Cox4edf1822008-02-08 04:18:44 -0800923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924static void eraser(unsigned char c, struct tty_struct *tty)
925{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200926 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 enum { ERASE, WERASE, KILL } kill_type;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400928 size_t head;
929 size_t cnt;
930 int seen_alnums;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 unsigned long flags;
932
Alan Cox17b82062008-10-13 10:45:06 +0100933 /* FIXME: locking needed ? */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200934 if (ldata->read_head == ldata->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000935 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return;
937 }
938 if (c == ERASE_CHAR(tty))
939 kill_type = ERASE;
940 else if (c == WERASE_CHAR(tty))
941 kill_type = WERASE;
942 else {
943 if (!L_ECHO(tty)) {
Ivo Sieben98001212013-01-28 13:32:01 +0100944 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200945 ldata->read_cnt -= ((ldata->read_head - ldata->canon_head) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 (N_TTY_BUF_SIZE - 1));
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200947 ldata->read_head = ldata->canon_head;
Ivo Sieben98001212013-01-28 13:32:01 +0100948 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return;
950 }
951 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
Ivo Sieben98001212013-01-28 13:32:01 +0100952 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200953 ldata->read_cnt -= ((ldata->read_head - ldata->canon_head) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 (N_TTY_BUF_SIZE - 1));
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200955 ldata->read_head = ldata->canon_head;
Ivo Sieben98001212013-01-28 13:32:01 +0100956 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Jiri Slaby57c94122012-10-18 22:26:43 +0200957 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 echo_char(KILL_CHAR(tty), tty);
959 /* Add a newline if ECHOK is on and ECHOKE is off. */
960 if (L_ECHOK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +0200961 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return;
963 }
964 kill_type = KILL;
965 }
966
967 seen_alnums = 0;
Alan Cox17b82062008-10-13 10:45:06 +0100968 /* FIXME: Locking ?? */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200969 while (ldata->read_head != ldata->canon_head) {
970 head = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /* erase a single possibly multibyte character */
973 do {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400974 head--;
975 c = read_buf(ldata, head);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200976 } while (is_continuation(c, tty) && head != ldata->canon_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 /* do not partially erase */
979 if (is_continuation(c, tty))
980 break;
981
982 if (kill_type == WERASE) {
983 /* Equivalent to BSD's ALTWERASE. */
984 if (isalnum(c) || c == '_')
985 seen_alnums++;
986 else if (seen_alnums)
987 break;
988 }
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400989 cnt = ldata->read_head - head;
Ivo Sieben98001212013-01-28 13:32:01 +0100990 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200991 ldata->read_head = head;
992 ldata->read_cnt -= cnt;
Ivo Sieben98001212013-01-28 13:32:01 +0100993 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (L_ECHO(tty)) {
995 if (L_ECHOPRT(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200996 if (!ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200997 echo_char_raw('\\', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200998 ldata->erasing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000 /* if cnt > 1, output a multi-byte character */
1001 echo_char(c, tty);
1002 while (--cnt > 0) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001003 head++;
1004 echo_char_raw(read_buf(ldata, head), ldata);
Jiri Slaby57c94122012-10-18 22:26:43 +02001005 echo_move_back_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
1007 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1008 echo_char(ERASE_CHAR(tty), tty);
1009 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +00001010 unsigned int num_chars = 0;
1011 int after_tab = 0;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001012 size_t tail = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Joe Petersona88a69c2009-01-02 13:40:53 +00001014 /*
1015 * Count the columns used for characters
1016 * since the start of input or after a
1017 * previous tab.
1018 * This info is used to go back the correct
1019 * number of columns.
1020 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001021 while (tail != ldata->canon_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001022 tail--;
1023 c = read_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +00001024 if (c == '\t') {
1025 after_tab = 1;
1026 break;
Alan Cox300a6202009-01-02 13:41:04 +00001027 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +00001029 num_chars += 2;
1030 } else if (!is_continuation(c, tty)) {
1031 num_chars++;
1032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001034 echo_erase_tab(num_chars, after_tab, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 } else {
1036 if (iscntrl(c) && L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001037 echo_char_raw('\b', ldata);
1038 echo_char_raw(' ', ldata);
1039 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001042 echo_char_raw('\b', ldata);
1043 echo_char_raw(' ', ldata);
1044 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046 }
1047 }
1048 if (kill_type == ERASE)
1049 break;
1050 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001051 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001052 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
1055/**
1056 * isig - handle the ISIG optio
1057 * @sig: signal
1058 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001060 * Called when a signal is being sent due to terminal input.
1061 * Called from the driver receive_buf path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001062 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001063 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 */
Alan Cox4edf1822008-02-08 04:18:44 -08001065
Peter Hurley8c985d12013-03-06 08:38:19 -05001066static inline void isig(int sig, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Peter Hurley8c985d12013-03-06 08:38:19 -05001068 struct pid *tty_pgrp = tty_get_pgrp(tty);
1069 if (tty_pgrp) {
1070 kill_pgrp(tty_pgrp, sig, 1);
1071 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073}
1074
1075/**
1076 * n_tty_receive_break - handle break
1077 * @tty: terminal
1078 *
1079 * An RS232 break event has been hit in the incoming bitstream. This
1080 * can cause a variety of events depending upon the termios settings.
1081 *
1082 * Called from the receive_buf path so single threaded.
1083 */
Alan Cox4edf1822008-02-08 04:18:44 -08001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085static inline void n_tty_receive_break(struct tty_struct *tty)
1086{
Jiri Slaby57c94122012-10-18 22:26:43 +02001087 struct n_tty_data *ldata = tty->disc_data;
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 if (I_IGNBRK(tty))
1090 return;
1091 if (I_BRKINT(tty)) {
Peter Hurley8c985d12013-03-06 08:38:19 -05001092 isig(SIGINT, tty);
1093 if (!L_NOFLSH(tty)) {
1094 n_tty_flush_buffer(tty);
1095 tty_driver_flush_buffer(tty);
1096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return;
1098 }
1099 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001100 put_tty_queue('\377', ldata);
1101 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001103 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 wake_up_interruptible(&tty->read_wait);
1105}
1106
1107/**
1108 * n_tty_receive_overrun - handle overrun reporting
1109 * @tty: terminal
1110 *
1111 * Data arrived faster than we could process it. While the tty
1112 * driver has flagged this the bits that were missed are gone
1113 * forever.
1114 *
1115 * Called from the receive_buf path so single threaded. Does not
1116 * need locking as num_overrun and overrun_time are function
1117 * private.
1118 */
Alan Cox4edf1822008-02-08 04:18:44 -08001119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120static inline void n_tty_receive_overrun(struct tty_struct *tty)
1121{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001122 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 char buf[64];
1124
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001125 ldata->num_overrun++;
1126 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1127 time_after(ldata->overrun_time, jiffies)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 printk(KERN_WARNING "%s: %d input overrun(s)\n",
1129 tty_name(tty, buf),
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001130 ldata->num_overrun);
1131 ldata->overrun_time = jiffies;
1132 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134}
1135
1136/**
1137 * n_tty_receive_parity_error - error notifier
1138 * @tty: terminal device
1139 * @c: character
1140 *
1141 * Process a parity error and queue the right data to indicate
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001142 * the error case if necessary. Locking as per n_tty_receive_buf.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 */
1144static inline void n_tty_receive_parity_error(struct tty_struct *tty,
1145 unsigned char c)
1146{
Jiri Slaby57c94122012-10-18 22:26:43 +02001147 struct n_tty_data *ldata = tty->disc_data;
1148
Alan Cox4edf1822008-02-08 04:18:44 -08001149 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001152 put_tty_queue('\377', ldata);
1153 put_tty_queue('\0', ldata);
1154 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 } else if (I_INPCK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001156 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 else
Jiri Slaby57c94122012-10-18 22:26:43 +02001158 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 wake_up_interruptible(&tty->read_wait);
1160}
1161
1162/**
1163 * n_tty_receive_char - perform processing
1164 * @tty: terminal device
1165 * @c: character
1166 *
1167 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001168 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 * driver above.
1170 */
1171
1172static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1173{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001174 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 unsigned long flags;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001176 int parmrk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001178 if (ldata->raw) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001179 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 return;
1181 }
Alan Cox4edf1822008-02-08 04:18:44 -08001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (I_ISTRIP(tty))
1184 c &= 0x7f;
1185 if (I_IUCLC(tty) && L_IEXTEN(tty))
Alan Cox300a6202009-01-02 13:41:04 +00001186 c = tolower(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
hyc@symas.com26df6d12010-06-22 10:14:49 -07001188 if (L_EXTPROC(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001189 put_tty_queue(c, ldata);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001190 return;
1191 }
1192
Joe Peterson54d2a372008-02-06 01:37:59 -08001193 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) &&
Joe Petersona88a69c2009-01-02 13:40:53 +00001194 I_IXANY(tty) && c != START_CHAR(tty) && c != STOP_CHAR(tty) &&
1195 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && c != SUSP_CHAR(tty)) {
Joe Peterson54d2a372008-02-06 01:37:59 -08001196 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001197 process_echoes(tty);
1198 }
Joe Peterson54d2a372008-02-06 01:37:59 -08001199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 if (tty->closing) {
1201 if (I_IXON(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001202 if (c == START_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001204 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00001205 } else if (c == STOP_CHAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 stop_tty(tty);
1207 }
1208 return;
1209 }
1210
1211 /*
1212 * If the previous character was LNEXT, or we know that this
1213 * character is not one of the characters that we'll have to
1214 * handle specially, do shortcut processing to speed things
1215 * up.
1216 */
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001217 if (!test_bit(c, ldata->process_char_map) || ldata->lnext) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001218 ldata->lnext = 0;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001219 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
Peter Hurleyce741172013-06-15 09:14:20 -04001220 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001221 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001222 if (L_ECHO(tty))
1223 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001224 return;
1225 }
1226 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001227 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001229 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001230 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001232 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Joe Petersonacc71bb2009-01-02 13:43:32 +00001234 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001235 put_tty_queue(c, ldata);
1236 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return;
1238 }
Alan Cox4edf1822008-02-08 04:18:44 -08001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (I_IXON(tty)) {
1241 if (c == START_CHAR(tty)) {
1242 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001243 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 return;
1245 }
1246 if (c == STOP_CHAR(tty)) {
1247 stop_tty(tty);
1248 return;
1249 }
1250 }
Joe Peterson575537b32008-04-30 00:53:30 -07001251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (L_ISIG(tty)) {
1253 int signal;
1254 signal = SIGINT;
1255 if (c == INTR_CHAR(tty))
1256 goto send_signal;
1257 signal = SIGQUIT;
1258 if (c == QUIT_CHAR(tty))
1259 goto send_signal;
1260 signal = SIGTSTP;
1261 if (c == SUSP_CHAR(tty)) {
1262send_signal:
Joe Petersonec5b1152008-02-06 01:37:38 -08001263 if (!L_NOFLSH(tty)) {
1264 n_tty_flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001265 tty_driver_flush_buffer(tty);
Joe Petersonec5b1152008-02-06 01:37:38 -08001266 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001267 if (I_IXON(tty))
1268 start_tty(tty);
1269 if (L_ECHO(tty)) {
Joe Petersonec5b1152008-02-06 01:37:38 -08001270 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001271 process_echoes(tty);
1272 }
Peter Hurley8c985d12013-03-06 08:38:19 -05001273 isig(signal, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return;
1275 }
1276 }
Joe Peterson575537b32008-04-30 00:53:30 -07001277
1278 if (c == '\r') {
1279 if (I_IGNCR(tty))
1280 return;
1281 if (I_ICRNL(tty))
1282 c = '\n';
1283 } else if (c == '\n' && I_INLCR(tty))
1284 c = '\r';
1285
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001286 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1288 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1289 eraser(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001290 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return;
1292 }
1293 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001294 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001296 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001298 echo_char_raw('^', ldata);
1299 echo_char_raw('\b', ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +00001300 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302 }
1303 return;
1304 }
1305 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
1306 L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001307 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Jiri Slaby57c94122012-10-18 22:26:43 +02001309 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001311 echo_char_raw('\n', ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001312 while (tail != ldata->read_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001313 echo_char(read_buf(ldata, tail), tty);
1314 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001316 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return;
1318 }
1319 if (c == '\n') {
Peter Hurleyce741172013-06-15 09:14:20 -04001320 if (read_cnt(ldata) >= N_TTY_BUF_SIZE) {
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 }
1325 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001326 echo_char_raw('\n', ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +00001327 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
1329 goto handle_newline;
1330 }
1331 if (c == EOF_CHAR(tty)) {
Peter Hurleyce741172013-06-15 09:14:20 -04001332 if (read_cnt(ldata) >= N_TTY_BUF_SIZE)
Joe Petersonacc71bb2009-01-02 13:43:32 +00001333 return;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001334 if (ldata->canon_head != ldata->read_head)
Alan Cox4edf1822008-02-08 04:18:44 -08001335 set_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 c = __DISABLED_CHAR;
1337 goto handle_newline;
1338 }
1339 if ((c == EOL_CHAR(tty)) ||
1340 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001341 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty))
1342 ? 1 : 0;
Peter Hurleyce741172013-06-15 09:14:20 -04001343 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk)) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001344 if (L_ECHO(tty))
1345 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001346 return;
1347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 /*
1349 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1350 */
1351 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001353 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001354 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001356 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358 /*
1359 * XXX does PARMRK doubling happen for
1360 * EOL_CHAR and EOL2_CHAR?
1361 */
Joe Petersonacc71bb2009-01-02 13:43:32 +00001362 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001363 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Alan Cox4edf1822008-02-08 04:18:44 -08001365handle_newline:
Ivo Sieben98001212013-01-28 13:32:01 +01001366 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001367 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Jiri Slaby57c94122012-10-18 22:26:43 +02001368 put_tty_queue_nolock(c, ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001369 ldata->canon_head = ldata->read_head;
1370 ldata->canon_data++;
Ivo Sieben98001212013-01-28 13:32:01 +01001371 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1373 if (waitqueue_active(&tty->read_wait))
1374 wake_up_interruptible(&tty->read_wait);
1375 return;
1376 }
1377 }
Alan Cox4edf1822008-02-08 04:18:44 -08001378
Joe Petersonacc71bb2009-01-02 13:43:32 +00001379 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
Peter Hurleyce741172013-06-15 09:14:20 -04001380 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001381 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001382 if (L_ECHO(tty))
1383 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001384 return;
1385 }
1386 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001387 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001389 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 else {
1391 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001392 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001393 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 echo_char(c, tty);
1395 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001396 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
1398
Joe Petersonacc71bb2009-01-02 13:43:32 +00001399 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001400 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Jiri Slaby57c94122012-10-18 22:26:43 +02001402 put_tty_queue(c, ldata);
Alan Cox4edf1822008-02-08 04:18:44 -08001403}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406/**
1407 * n_tty_write_wakeup - asynchronous I/O notifier
1408 * @tty: tty device
1409 *
1410 * Required for the ptys, serial driver etc. since processes
1411 * that attach themselves to the master and rely on ASYNC
1412 * IO must be woken up
1413 */
1414
1415static void n_tty_write_wakeup(struct tty_struct *tty)
1416{
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00001417 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
1421/**
1422 * n_tty_receive_buf - data receive
1423 * @tty: terminal device
1424 * @cp: buffer
1425 * @fp: flag buffer
1426 * @count: characters
1427 *
1428 * Called by the terminal driver when a block of characters has
1429 * been received. This function must be called from soft contexts
1430 * not from interrupt context. The driver is responsible for making
1431 * calls one at a time and in order (or using flush_to_ldisc)
1432 */
Alan Cox4edf1822008-02-08 04:18:44 -08001433
Peter Hurley24a89d12013-06-15 09:14:15 -04001434static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1435 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001437 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 const unsigned char *p;
1439 char *f, flags = TTY_NORMAL;
1440 int i;
1441 char buf[64];
1442 unsigned long cpuflags;
1443
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001444 if (ldata->real_raw) {
Ivo Sieben98001212013-01-28 13:32:01 +01001445 raw_spin_lock_irqsave(&ldata->read_lock, cpuflags);
Peter Hurleyce741172013-06-15 09:14:20 -04001446 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001447 N_TTY_BUF_SIZE - (ldata->read_head & (N_TTY_BUF_SIZE - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 i = min(count, i);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001449 memcpy(read_buf_addr(ldata, ldata->read_head), cp, i);
1450 ldata->read_head += i;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001451 ldata->read_cnt += i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 cp += i;
1453 count -= i;
1454
Peter Hurleyce741172013-06-15 09:14:20 -04001455 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001456 N_TTY_BUF_SIZE - (ldata->read_head & (N_TTY_BUF_SIZE - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 i = min(count, i);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001458 memcpy(read_buf_addr(ldata, ldata->read_head), cp, i);
1459 ldata->read_head += i;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001460 ldata->read_cnt += i;
Ivo Sieben98001212013-01-28 13:32:01 +01001461 raw_spin_unlock_irqrestore(&ldata->read_lock, cpuflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 } else {
Alan Cox4edf1822008-02-08 04:18:44 -08001463 for (i = count, p = cp, f = fp; i; i--, p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (f)
1465 flags = *f++;
1466 switch (flags) {
1467 case TTY_NORMAL:
1468 n_tty_receive_char(tty, *p);
1469 break;
1470 case TTY_BREAK:
1471 n_tty_receive_break(tty);
1472 break;
1473 case TTY_PARITY:
1474 case TTY_FRAME:
1475 n_tty_receive_parity_error(tty, *p);
1476 break;
1477 case TTY_OVERRUN:
1478 n_tty_receive_overrun(tty);
1479 break;
1480 default:
Alan Cox4edf1822008-02-08 04:18:44 -08001481 printk(KERN_ERR "%s: unknown flag %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 tty_name(tty, buf), flags);
1483 break;
1484 }
1485 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001486 if (tty->ops->flush_chars)
1487 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489
Peter Hurleyce741172013-06-15 09:14:20 -04001490 if ((!ldata->icanon && (read_cnt(ldata) >= ldata->minimum_to_wake)) ||
hyc@symas.com26df6d12010-06-22 10:14:49 -07001491 L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1493 if (waitqueue_active(&tty->read_wait))
1494 wake_up_interruptible(&tty->read_wait);
1495 }
1496
1497 /*
1498 * Check the remaining room for the input canonicalization
1499 * mode. We don't want to throttle the driver if we're in
1500 * canonical mode and don't have a newline yet!
1501 */
Peter Hurleye91e52e2013-03-06 08:20:53 -05001502 while (1) {
1503 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
Peter Hurley24a89d12013-06-15 09:14:15 -04001504 if (receive_room(tty) >= TTY_THRESHOLD_THROTTLE)
Peter Hurleye91e52e2013-03-06 08:20:53 -05001505 break;
1506 if (!tty_throttle_safe(tty))
1507 break;
1508 }
1509 __tty_set_flow_change(tty, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
Peter Hurley24a89d12013-06-15 09:14:15 -04001512static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1513 char *fp, int count)
1514{
1515 __receive_buf(tty, cp, fp, count);
1516}
1517
1518static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1519 char *fp, int count)
1520{
1521 struct n_tty_data *ldata = tty->disc_data;
1522 int room;
1523
1524 tty->receive_room = room = receive_room(tty);
1525 if (!room)
1526 ldata->no_room = 1;
1527 count = min(count, room);
1528 if (count)
1529 __receive_buf(tty, cp, fp, count);
1530
1531 return count;
1532}
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534int is_ignored(int sig)
1535{
1536 return (sigismember(&current->blocked, sig) ||
Alan Cox4edf1822008-02-08 04:18:44 -08001537 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
1540/**
1541 * n_tty_set_termios - termios data changed
1542 * @tty: terminal
1543 * @old: previous data
1544 *
1545 * Called by the tty layer when the user changes termios flags so
1546 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001547 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 * guaranteed that this function will not be re-entered or in progress
1549 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001550 *
1551 * Locking: Caller holds tty->termios_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 */
Alan Cox4edf1822008-02-08 04:18:44 -08001553
1554static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001556 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001557 int canon_change = 1;
Alan Cox47afa7a2008-10-13 10:44:17 +01001558
1559 if (old)
Alan Coxadc8d742012-07-14 15:31:47 +01001560 canon_change = (old->c_lflag ^ tty->termios.c_lflag) & ICANON;
Alan Cox47afa7a2008-10-13 10:44:17 +01001561 if (canon_change) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001562 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001563 ldata->canon_head = ldata->read_tail;
1564 ldata->canon_data = 0;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001565 ldata->erasing = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001566 }
1567
Peter Hurleyce741172013-06-15 09:14:20 -04001568 if (canon_change && !L_ICANON(tty) && read_cnt(ldata))
Alan Cox47afa7a2008-10-13 10:44:17 +01001569 wake_up_interruptible(&tty->read_wait);
Alan Cox4edf1822008-02-08 04:18:44 -08001570
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001571 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1574 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1575 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1576 I_PARMRK(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001577 bitmap_zero(ldata->process_char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 if (I_IGNCR(tty) || I_ICRNL(tty))
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001580 set_bit('\r', ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (I_INLCR(tty))
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001582 set_bit('\n', ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 if (L_ICANON(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001585 set_bit(ERASE_CHAR(tty), ldata->process_char_map);
1586 set_bit(KILL_CHAR(tty), ldata->process_char_map);
1587 set_bit(EOF_CHAR(tty), ldata->process_char_map);
1588 set_bit('\n', ldata->process_char_map);
1589 set_bit(EOL_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 if (L_IEXTEN(tty)) {
1591 set_bit(WERASE_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001592 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 set_bit(LNEXT_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001594 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 set_bit(EOL2_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001596 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (L_ECHO(tty))
1598 set_bit(REPRINT_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001599 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 }
1601 }
1602 if (I_IXON(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001603 set_bit(START_CHAR(tty), ldata->process_char_map);
1604 set_bit(STOP_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
1606 if (L_ISIG(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001607 set_bit(INTR_CHAR(tty), ldata->process_char_map);
1608 set_bit(QUIT_CHAR(tty), ldata->process_char_map);
1609 set_bit(SUSP_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 }
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001611 clear_bit(__DISABLED_CHAR, ldata->process_char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001612 ldata->raw = 0;
1613 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001615 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1617 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1618 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001619 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001621 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09001623 n_tty_set_room(tty);
Wang YanQingdab73b42013-05-09 14:16:47 +08001624 /*
1625 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1626 * been stopped by STOP_CHAR(tty) before it.
1627 */
1628 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
1629 start_tty(tty);
1630 }
1631
Alan Coxf34d7a52008-04-30 00:54:13 -07001632 /* The termios change make the tty ready for I/O */
1633 wake_up_interruptible(&tty->write_wait);
1634 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635}
1636
1637/**
1638 * n_tty_close - close the ldisc for this tty
1639 * @tty: device
1640 *
Alan Cox4edf1822008-02-08 04:18:44 -08001641 * Called from the terminal layer when this line discipline is
1642 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 * discipline change. The function will not be called while other
1644 * ldisc methods are in progress.
1645 */
Alan Cox4edf1822008-02-08 04:18:44 -08001646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647static void n_tty_close(struct tty_struct *tty)
1648{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001649 struct n_tty_data *ldata = tty->disc_data;
1650
Peter Hurley79901312013-03-11 16:44:23 -04001651 if (tty->link)
1652 n_tty_packet_mode_flush(tty);
1653
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001654 kfree(ldata->read_buf);
1655 kfree(ldata->echo_buf);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001656 kfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001657 tty->disc_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
1660/**
1661 * n_tty_open - open an ldisc
1662 * @tty: terminal to open
1663 *
Alan Cox4edf1822008-02-08 04:18:44 -08001664 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 * terminal device. Can sleep. Called serialized so that no
1666 * other events will occur in parallel. No further open will occur
1667 * until a close.
1668 */
1669
1670static int n_tty_open(struct tty_struct *tty)
1671{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001672 struct n_tty_data *ldata;
1673
1674 ldata = kzalloc(sizeof(*ldata), GFP_KERNEL);
1675 if (!ldata)
1676 goto err;
1677
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001678 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001679 mutex_init(&ldata->atomic_read_lock);
1680 mutex_init(&ldata->output_lock);
1681 mutex_init(&ldata->echo_lock);
Ivo Sieben98001212013-01-28 13:32:01 +01001682 raw_spin_lock_init(&ldata->read_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001683
Joe Petersona88a69c2009-01-02 13:40:53 +00001684 /* These are ugly. Currently a malloc failure here can panic */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001685 ldata->read_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1686 ldata->echo_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1687 if (!ldata->read_buf || !ldata->echo_buf)
Jiri Slabyb91939f2012-10-18 22:26:35 +02001688 goto err_free_bufs;
Alan Cox0b4068a2009-06-11 13:05:49 +01001689
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001690 tty->disc_data = ldata;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001691 reset_buffer_flags(tty->disc_data);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001692 ldata->column = 0;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001693 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001695 /* indicate buffer work may resume */
1696 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1697 n_tty_set_termios(tty, NULL);
1698 tty_unthrottle(tty);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 return 0;
Jiri Slabyb91939f2012-10-18 22:26:35 +02001701err_free_bufs:
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001702 kfree(ldata->read_buf);
1703 kfree(ldata->echo_buf);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001704 kfree(ldata);
1705err:
Jiri Slabyb91939f2012-10-18 22:26:35 +02001706 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
1709static inline int input_available_p(struct tty_struct *tty, int amt)
1710{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001711 struct n_tty_data *ldata = tty->disc_data;
1712
OGAWA Hirofumie043e422009-07-29 12:15:56 -07001713 tty_flush_to_ldisc(tty);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001714 if (ldata->icanon && !L_EXTPROC(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001715 if (ldata->canon_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return 1;
Peter Hurleyce741172013-06-15 09:14:20 -04001717 } else if (read_cnt(ldata) >= (amt ? amt : 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return 1;
1719
1720 return 0;
1721}
1722
1723/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001724 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 * @tty: terminal device
1726 * @b: user data
1727 * @nr: size of data
1728 *
Alan Cox11a96d12008-10-13 10:46:24 +01001729 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 * ICANON is off; it copies characters straight from the tty queue to
1731 * user space directly. It can be profitably called twice; once to
1732 * drain the space from the tail pointer to the (physical) end of the
1733 * buffer, and once to drain the space from the (physical) beginning of
1734 * the buffer to head pointer.
1735 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001736 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 *
1738 */
Alan Cox4edf1822008-02-08 04:18:44 -08001739
Alan Cox33f0f882006-01-09 20:54:13 -08001740static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 unsigned char __user **b,
1742 size_t *nr)
1743
1744{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001745 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 int retval;
1747 size_t n;
1748 unsigned long flags;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001749 bool is_eof;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001750 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 retval = 0;
Ivo Sieben98001212013-01-28 13:32:01 +01001753 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001754 n = min(read_cnt(ldata), N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 n = min(*nr, n);
Ivo Sieben98001212013-01-28 13:32:01 +01001756 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 if (n) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001758 retval = copy_to_user(*b, read_buf_addr(ldata, tail), n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 n -= retval;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001760 is_eof = n == 1 && read_buf(ldata, tail) == EOF_CHAR(tty);
1761 tty_audit_add_data(tty, read_buf_addr(ldata, tail), n,
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001762 ldata->icanon);
Ivo Sieben98001212013-01-28 13:32:01 +01001763 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001764 ldata->read_tail += n;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001765 ldata->read_cnt -= n;
hyc@symas.com26df6d12010-06-22 10:14:49 -07001766 /* Turn single EOF into zero-length read */
Peter Hurleyce741172013-06-15 09:14:20 -04001767 if (L_EXTPROC(tty) && ldata->icanon && is_eof && !read_cnt(ldata))
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001768 n = 0;
Ivo Sieben98001212013-01-28 13:32:01 +01001769 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 *b += n;
1771 *nr -= n;
1772 }
1773 return retval;
1774}
1775
Peter Hurley88bb0de2013-06-15 09:14:16 -04001776/**
Peter Hurley32f13522013-06-15 09:14:17 -04001777 * canon_copy_from_read_buf - copy read data in canonical mode
Peter Hurley88bb0de2013-06-15 09:14:16 -04001778 * @tty: terminal device
1779 * @b: user data
1780 * @nr: size of data
1781 *
1782 * Helper function for n_tty_read. It is only called when ICANON is on;
Peter Hurley32f13522013-06-15 09:14:17 -04001783 * it copies one line of input up to and including the line-delimiting
1784 * character into the user-space buffer.
Peter Hurley88bb0de2013-06-15 09:14:16 -04001785 *
1786 * Called under the atomic_read_lock mutex
1787 */
1788
Peter Hurley32f13522013-06-15 09:14:17 -04001789static int canon_copy_from_read_buf(struct tty_struct *tty,
1790 unsigned char __user **b,
1791 size_t *nr)
Peter Hurley88bb0de2013-06-15 09:14:16 -04001792{
1793 struct n_tty_data *ldata = tty->disc_data;
1794 unsigned long flags;
Peter Hurley32f13522013-06-15 09:14:17 -04001795 size_t n, size, more, c;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001796 size_t eol;
1797 size_t tail;
1798 int ret, found = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001799
1800 /* N.B. avoid overrun if nr == 0 */
Peter Hurley32f13522013-06-15 09:14:17 -04001801
Peter Hurley88bb0de2013-06-15 09:14:16 -04001802 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurley88bb0de2013-06-15 09:14:16 -04001803
Peter Hurleyce741172013-06-15 09:14:20 -04001804 n = min(*nr, read_cnt(ldata));
Peter Hurley32f13522013-06-15 09:14:17 -04001805 if (!n) {
Peter Hurley88bb0de2013-06-15 09:14:16 -04001806 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Peter Hurley32f13522013-06-15 09:14:17 -04001807 return 0;
1808 }
Peter Hurley88bb0de2013-06-15 09:14:16 -04001809
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001810 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Peter Hurley32f13522013-06-15 09:14:17 -04001811 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
1812
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001813 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04001814 __func__, *nr, tail, n, size);
1815
1816 eol = find_next_bit(ldata->read_flags, size, tail);
1817 more = n - (size - tail);
1818 if (eol == N_TTY_BUF_SIZE && more) {
1819 /* scan wrapped without finding set bit */
1820 eol = find_next_bit(ldata->read_flags, more, 0);
1821 if (eol != more)
1822 found = 1;
1823 } else if (eol != size)
1824 found = 1;
1825
1826 size = N_TTY_BUF_SIZE - tail;
1827 n = (found + eol + size) & (N_TTY_BUF_SIZE - 1);
1828 c = n;
1829
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001830 if (found && read_buf(ldata, eol) == __DISABLED_CHAR)
Peter Hurley32f13522013-06-15 09:14:17 -04001831 n--;
1832
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001833 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu size:%zu more:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04001834 __func__, eol, found, n, c, size, more);
1835
1836 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1837
1838 if (n > size) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001839 ret = copy_to_user(*b, read_buf_addr(ldata, tail), size);
Peter Hurley32f13522013-06-15 09:14:17 -04001840 if (ret)
1841 return -EFAULT;
1842 ret = copy_to_user(*b + size, ldata->read_buf, n - size);
1843 } else
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001844 ret = copy_to_user(*b, read_buf_addr(ldata, tail), n);
Peter Hurley32f13522013-06-15 09:14:17 -04001845
1846 if (ret)
1847 return -EFAULT;
1848 *b += n;
1849 *nr -= n;
1850
1851 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001852 ldata->read_tail += c;
Peter Hurley32f13522013-06-15 09:14:17 -04001853 ldata->read_cnt -= c;
1854 if (found) {
1855 __clear_bit(eol, ldata->read_flags);
1856 /* this test should be redundant:
1857 * we shouldn't be reading data if
1858 * canon_data is 0
1859 */
1860 if (--ldata->canon_data < 0)
1861 ldata->canon_data = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001862 }
1863 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1864
Peter Hurley32f13522013-06-15 09:14:17 -04001865 if (found)
1866 tty_audit_push(tty);
Peter Hurley88bb0de2013-06-15 09:14:16 -04001867 return 0;
1868}
1869
Al Virocc4191d2008-03-29 03:08:48 +00001870extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08001871 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873/**
1874 * job_control - check job control
1875 * @tty: tty
1876 * @file: file handle
1877 *
1878 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08001879 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07001881 *
Peter Hurley01a5e442013-03-06 08:38:20 -05001882 * Locking: redirected write test is safe
1883 * current->signal->tty check is safe
1884 * ctrl_lock to safely reference tty->pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 */
Alan Cox4edf1822008-02-08 04:18:44 -08001886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887static int job_control(struct tty_struct *tty, struct file *file)
1888{
1889 /* Job control check -- must be done at start and after
1890 every sleep (POSIX.1 7.1.1.4). */
1891 /* NOTE: not yet done after every sleep pending a thorough
1892 check of the logic of this change. -- jlc */
1893 /* don't stop on /dev/console */
Peter Hurley01a5e442013-03-06 08:38:20 -05001894 if (file->f_op->write == redirected_tty_write ||
1895 current->signal->tty != tty)
1896 return 0;
1897
1898 spin_lock_irq(&tty->ctrl_lock);
1899 if (!tty->pgrp)
1900 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
1901 else if (task_pgrp(current) != tty->pgrp) {
1902 spin_unlock_irq(&tty->ctrl_lock);
1903 if (is_ignored(SIGTTIN) || is_current_pgrp_orphaned())
1904 return -EIO;
1905 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
1906 set_thread_flag(TIF_SIGPENDING);
1907 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Peter Hurley01a5e442013-03-06 08:38:20 -05001909 spin_unlock_irq(&tty->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 return 0;
1911}
Alan Cox4edf1822008-02-08 04:18:44 -08001912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914/**
Alan Cox11a96d12008-10-13 10:46:24 +01001915 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 * @tty: tty device
1917 * @file: file object
1918 * @buf: userspace buffer pointer
1919 * @nr: size of I/O
1920 *
1921 * Perform reads for the line discipline. We are guaranteed that the
1922 * line discipline will not be closed under us but we may get multiple
1923 * parallel readers and must handle this ourselves. We may also get
1924 * a hangup. Always called in user context, may sleep.
1925 *
1926 * This code must be sure never to sleep through a hangup.
1927 */
Alan Cox4edf1822008-02-08 04:18:44 -08001928
Alan Cox11a96d12008-10-13 10:46:24 +01001929static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 unsigned char __user *buf, size_t nr)
1931{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001932 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 unsigned char __user *b = buf;
1934 DECLARE_WAITQUEUE(wait, current);
1935 int c;
1936 int minimum, time;
1937 ssize_t retval = 0;
1938 ssize_t size;
1939 long timeout;
1940 unsigned long flags;
Alan Cox04f378b2008-04-30 00:53:29 -07001941 int packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943do_it_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08001945 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08001947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 minimum = time = 0;
1949 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001950 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 minimum = MIN_CHAR(tty);
1952 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04001953 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if (time)
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001955 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 else if (!waitqueue_active(&tty->read_wait) ||
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001957 (ldata->minimum_to_wake > minimum))
1958 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04001960 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001961 ldata->minimum_to_wake = minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963 }
1964
1965 /*
1966 * Internal serialization of reads.
1967 */
1968 if (file->f_flags & O_NONBLOCK) {
Jiri Slabybddc7152012-10-18 22:26:42 +02001969 if (!mutex_trylock(&ldata->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 return -EAGAIN;
Alan Cox4edf1822008-02-08 04:18:44 -08001971 } else {
Jiri Slabybddc7152012-10-18 22:26:42 +02001972 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return -ERESTARTSYS;
1974 }
Alan Cox04f378b2008-04-30 00:53:29 -07001975 packet = tty->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 while (nr) {
1979 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07001980 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 unsigned char cs;
1982 if (b != buf)
1983 break;
Alan Cox04f378b2008-04-30 00:53:29 -07001984 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 cs = tty->link->ctrl_status;
1986 tty->link->ctrl_status = 0;
Alan Cox04f378b2008-04-30 00:53:29 -07001987 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -07001988 if (tty_put_user(tty, cs, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 retval = -EFAULT;
1990 b--;
1991 break;
1992 }
1993 nr--;
1994 break;
1995 }
1996 /* This statement must be first before checking for input
1997 so that any interrupt will set the state back to
1998 TASK_RUNNING. */
1999 set_current_state(TASK_INTERRUPTIBLE);
Alan Cox4edf1822008-02-08 04:18:44 -08002000
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002001 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 ((minimum - (b - buf)) >= 1))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002003 ldata->minimum_to_wake = (minimum - (b - buf));
Alan Cox4edf1822008-02-08 04:18:44 -08002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 if (!input_available_p(tty, 0)) {
2006 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
2007 retval = -EIO;
2008 break;
2009 }
2010 if (tty_hung_up_p(file))
2011 break;
2012 if (!timeout)
2013 break;
2014 if (file->f_flags & O_NONBLOCK) {
2015 retval = -EAGAIN;
2016 break;
2017 }
2018 if (signal_pending(current)) {
2019 retval = -ERESTARTSYS;
2020 break;
2021 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09002022 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 continue;
2025 }
2026 __set_current_state(TASK_RUNNING);
2027
2028 /* Deal with packet mode. */
Alan Cox04f378b2008-04-30 00:53:29 -07002029 if (packet && b == buf) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07002030 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 retval = -EFAULT;
2032 b--;
2033 break;
2034 }
2035 nr--;
2036 }
2037
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002038 if (ldata->icanon && !L_EXTPROC(tty)) {
Peter Hurley32f13522013-06-15 09:14:17 -04002039 retval = canon_copy_from_read_buf(tty, &b, &nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 if (retval)
2041 break;
2042 } else {
2043 int uncopied;
Alan Cox04f378b2008-04-30 00:53:29 -07002044 /* The copy function takes the read lock and handles
2045 locking internally for this case */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 uncopied = copy_from_read_buf(tty, &b, &nr);
2047 uncopied += copy_from_read_buf(tty, &b, &nr);
2048 if (uncopied) {
2049 retval = -EFAULT;
2050 break;
2051 }
2052 }
2053
2054 /* If there is enough space in the read buffer now, let the
Peter Hurleya19d0c62013-06-15 09:14:18 -04002055 * low-level driver know. We use chars_in_buffer() to
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 * check the buffer, as it now knows about canonical mode.
2057 * Otherwise, if the driver is throttled and the line is
2058 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
2059 * we won't get any more characters.
2060 */
Peter Hurleye91e52e2013-03-06 08:20:53 -05002061 while (1) {
2062 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
Peter Hurleya19d0c62013-06-15 09:14:18 -04002063 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
Peter Hurleye91e52e2013-03-06 08:20:53 -05002064 break;
2065 if (!tty->count)
2066 break;
Linus Torvalds55db4c62011-06-04 06:33:24 +09002067 n_tty_set_room(tty);
Peter Hurleye91e52e2013-03-06 08:20:53 -05002068 if (!tty_unthrottle_safe(tty))
2069 break;
Linus Torvalds55db4c62011-06-04 06:33:24 +09002070 }
Peter Hurleye91e52e2013-03-06 08:20:53 -05002071 __tty_set_flow_change(tty, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 if (b - buf >= minimum)
2074 break;
2075 if (time)
2076 timeout = time;
2077 }
Jiri Slabybddc7152012-10-18 22:26:42 +02002078 mutex_unlock(&ldata->atomic_read_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 remove_wait_queue(&tty->read_wait, &wait);
2080
2081 if (!waitqueue_active(&tty->read_wait))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002082 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084 __set_current_state(TASK_RUNNING);
2085 size = b - buf;
2086 if (size) {
2087 retval = size;
2088 if (nr)
Alan Cox4edf1822008-02-08 04:18:44 -08002089 clear_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 } else if (test_and_clear_bit(TTY_PUSH, &tty->flags))
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01002091 goto do_it_again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Linus Torvalds55db4c62011-06-04 06:33:24 +09002093 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 return retval;
2095}
2096
2097/**
Alan Cox11a96d12008-10-13 10:46:24 +01002098 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 * @tty: tty device
2100 * @file: file object
2101 * @buf: userspace buffer pointer
2102 * @nr: size of I/O
2103 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002104 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002106 * and other such events. Since the receive code will echo characters,
2107 * thus calling driver write methods, the output_lock is used in
2108 * the output processing functions called here as well as in the
2109 * echo processing function to protect the column state and space
2110 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 *
2112 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002113 *
2114 * Locking: output_lock to protect column state and space left
2115 * (note that the process_output*() functions take this
2116 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 */
Alan Cox4edf1822008-02-08 04:18:44 -08002118
Alan Cox11a96d12008-10-13 10:46:24 +01002119static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002120 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
2122 const unsigned char *b = buf;
2123 DECLARE_WAITQUEUE(wait, current);
2124 int c;
2125 ssize_t retval = 0;
2126
2127 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2128 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2129 retval = tty_check_change(tty);
2130 if (retval)
2131 return retval;
2132 }
2133
Joe Petersona88a69c2009-01-02 13:40:53 +00002134 /* Write out any echoed characters that are still pending */
2135 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 add_wait_queue(&tty->write_wait, &wait);
2138 while (1) {
2139 set_current_state(TASK_INTERRUPTIBLE);
2140 if (signal_pending(current)) {
2141 retval = -ERESTARTSYS;
2142 break;
2143 }
2144 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2145 retval = -EIO;
2146 break;
2147 }
Peter Hurley582f5592013-05-17 12:49:48 -04002148 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002150 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 if (num < 0) {
2152 if (num == -EAGAIN)
2153 break;
2154 retval = num;
2155 goto break_out;
2156 }
2157 b += num;
2158 nr -= num;
2159 if (nr == 0)
2160 break;
2161 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002162 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 break;
2164 b++; nr--;
2165 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002166 if (tty->ops->flush_chars)
2167 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 } else {
Roman Zippeld6afe272005-07-07 17:56:55 -07002169 while (nr > 0) {
Alan Coxf34d7a52008-04-30 00:54:13 -07002170 c = tty->ops->write(tty, b, nr);
Roman Zippeld6afe272005-07-07 17:56:55 -07002171 if (c < 0) {
2172 retval = c;
2173 goto break_out;
2174 }
2175 if (!c)
2176 break;
2177 b += c;
2178 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 }
2181 if (!nr)
2182 break;
2183 if (file->f_flags & O_NONBLOCK) {
2184 retval = -EAGAIN;
2185 break;
2186 }
2187 schedule();
2188 }
2189break_out:
2190 __set_current_state(TASK_RUNNING);
2191 remove_wait_queue(&tty->write_wait, &wait);
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002192 if (b - buf != nr && tty->fasync)
2193 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 return (b - buf) ? b - buf : retval;
2195}
2196
2197/**
Alan Cox11a96d12008-10-13 10:46:24 +01002198 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 * @tty: terminal device
2200 * @file: file accessing it
2201 * @wait: poll table
2202 *
2203 * Called when the line discipline is asked to poll() for data or
2204 * for special events. This code is not serialized with respect to
2205 * other events save open/close.
2206 *
2207 * This code must be sure never to sleep through a hangup.
2208 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 */
Alan Cox4edf1822008-02-08 04:18:44 -08002210
Alan Cox11a96d12008-10-13 10:46:24 +01002211static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002212 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002214 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 unsigned int mask = 0;
2216
2217 poll_wait(file, &tty->read_wait, wait);
2218 poll_wait(file, &tty->write_wait, wait);
2219 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
2220 mask |= POLLIN | POLLRDNORM;
2221 if (tty->packet && tty->link->ctrl_status)
2222 mask |= POLLPRI | POLLIN | POLLRDNORM;
2223 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2224 mask |= POLLHUP;
2225 if (tty_hung_up_p(file))
2226 mask |= POLLHUP;
2227 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2228 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002229 ldata->minimum_to_wake = MIN_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 else
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002231 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002233 if (tty->ops->write && !tty_is_writelocked(tty) &&
2234 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2235 tty_write_room(tty) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 mask |= POLLOUT | POLLWRNORM;
2237 return mask;
2238}
2239
Jiri Slaby57c94122012-10-18 22:26:43 +02002240static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002241{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002242 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002243
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002244 if (!ldata->canon_data)
Alan Cox47afa7a2008-10-13 10:44:17 +01002245 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002246 head = ldata->canon_head;
2247 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002248 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002249 /* Skip EOF-chars.. */
2250 while (head != tail) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002251 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2252 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002253 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002254 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002255 }
2256 return nr;
2257}
2258
2259static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2260 unsigned int cmd, unsigned long arg)
2261{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002262 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002263 int retval;
2264
2265 switch (cmd) {
2266 case TIOCOUTQ:
2267 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2268 case TIOCINQ:
Alan Cox17b82062008-10-13 10:45:06 +01002269 /* FIXME: Locking */
Peter Hurleyce741172013-06-15 09:14:20 -04002270 retval = read_cnt(ldata);
Alan Cox47afa7a2008-10-13 10:44:17 +01002271 if (L_ICANON(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002272 retval = inq_canon(ldata);
Alan Cox47afa7a2008-10-13 10:44:17 +01002273 return put_user(retval, (unsigned int __user *) arg);
2274 default:
2275 return n_tty_ioctl_helper(tty, file, cmd, arg);
2276 }
2277}
2278
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002279static void n_tty_fasync(struct tty_struct *tty, int on)
2280{
2281 struct n_tty_data *ldata = tty->disc_data;
2282
2283 if (!waitqueue_active(&tty->read_wait)) {
2284 if (on)
2285 ldata->minimum_to_wake = 1;
2286 else if (!tty->fasync)
2287 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2288 }
2289}
2290
Alan Coxa352def2008-07-16 21:53:12 +01002291struct tty_ldisc_ops tty_ldisc_N_TTY = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002292 .magic = TTY_LDISC_MAGIC,
2293 .name = "n_tty",
2294 .open = n_tty_open,
2295 .close = n_tty_close,
2296 .flush_buffer = n_tty_flush_buffer,
2297 .chars_in_buffer = n_tty_chars_in_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002298 .read = n_tty_read,
2299 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002300 .ioctl = n_tty_ioctl,
2301 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002302 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002303 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002304 .write_wakeup = n_tty_write_wakeup,
2305 .fasync = n_tty_fasync,
Peter Hurley24a89d12013-06-15 09:14:15 -04002306 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002308
2309/**
2310 * n_tty_inherit_ops - inherit N_TTY methods
2311 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2312 *
George Spelvin593fb1ae42013-02-12 02:00:43 -05002313 * Enables a 'subclass' line discipline to 'inherit' N_TTY
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002314 * methods.
2315 */
2316
2317void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2318{
2319 *ops = tty_ldisc_N_TTY;
2320 ops->owner = NULL;
2321 ops->refcount = ops->flags = 0;
2322}
2323EXPORT_SYMBOL_GPL(n_tty_inherit_ops);