blob: 0599b583d21ee9b7712f860f9272747bf310ce7a [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;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -0400101 int minimum_to_wake;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200102
103 unsigned char *echo_buf;
104 unsigned int echo_pos;
105 unsigned int echo_cnt;
106
107 int canon_data;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400108 size_t canon_head;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200109 unsigned int canon_column;
Jiri Slabybddc7152012-10-18 22:26:42 +0200110
111 struct mutex atomic_read_lock;
112 struct mutex output_lock;
113 struct mutex echo_lock;
Ivo Sieben98001212013-01-28 13:32:01 +0100114 raw_spinlock_t read_lock;
Jiri Slaby70ece7a2012-10-18 22:26:38 +0200115};
116
Peter Hurleyce741172013-06-15 09:14:20 -0400117static inline size_t read_cnt(struct n_tty_data *ldata)
118{
Peter Hurleya2f73be2013-06-15 09:14:22 -0400119 return ldata->read_head - ldata->read_tail;
Peter Hurleyce741172013-06-15 09:14:20 -0400120}
121
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400122static inline unsigned char read_buf(struct n_tty_data *ldata, size_t i)
123{
124 return ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
125}
126
127static inline unsigned char *read_buf_addr(struct n_tty_data *ldata, size_t i)
128{
129 return &ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
130}
131
Miloslav Trmac522ed772007-07-15 23:40:56 -0700132static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
133 unsigned char __user *ptr)
134{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200135 struct n_tty_data *ldata = tty->disc_data;
136
137 tty_audit_add_data(tty, &x, 1, ldata->icanon);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700138 return put_user(x, ptr);
139}
140
Peter Hurley24a89d12013-06-15 09:14:15 -0400141static int receive_room(struct tty_struct *tty)
Linus Torvalds55db4c62011-06-04 06:33:24 +0900142{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200143 struct n_tty_data *ldata = tty->disc_data;
Jaeden Amero090abf72012-07-27 08:43:11 -0500144 int left;
Peter Hurleyb8483052013-06-15 07:28:30 -0400145
Jaeden Amero090abf72012-07-27 08:43:11 -0500146 if (I_PARMRK(tty)) {
147 /* Multiply read_cnt by 3, since each byte might take up to
148 * three times as many spaces when PARMRK is set (depending on
149 * its flags, e.g. parity error). */
Peter Hurleyce741172013-06-15 09:14:20 -0400150 left = N_TTY_BUF_SIZE - read_cnt(ldata) * 3 - 1;
Jaeden Amero090abf72012-07-27 08:43:11 -0500151 } else
Peter Hurleyce741172013-06-15 09:14:20 -0400152 left = N_TTY_BUF_SIZE - read_cnt(ldata) - 1;
Jaeden Amero090abf72012-07-27 08:43:11 -0500153
Linus Torvalds55db4c62011-06-04 06:33:24 +0900154 /*
155 * If we are doing input canonicalization, and there are no
156 * pending newlines, let characters through without limit, so
157 * that erase characters will be handled. Other excess
158 * characters will be beeped.
159 */
160 if (left <= 0)
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200161 left = ldata->icanon && !ldata->canon_data;
Linus Torvalds55db4c62011-06-04 06:33:24 +0900162
Peter Hurley24a89d12013-06-15 09:14:15 -0400163 return left;
Peter Hurley7879a9f2013-06-15 07:28:31 -0400164}
165
Peter Hurley24a89d12013-06-15 09:14:15 -0400166/**
167 * n_tty_set_room - receive space
168 * @tty: terminal
169 *
170 * Re-schedules the flip buffer work if space just became available.
171 *
172 * Locks: Concurrent update is protected with read_lock
173 */
174
Peter Hurley7879a9f2013-06-15 07:28:31 -0400175static void n_tty_set_room(struct tty_struct *tty)
176{
Peter Hurley24a89d12013-06-15 09:14:15 -0400177 struct n_tty_data *ldata = tty->disc_data;
178
Linus Torvalds55db4c62011-06-04 06:33:24 +0900179 /* Did this open up the receive buffer? We may need to flip */
Peter Hurley24a89d12013-06-15 09:14:15 -0400180 if (unlikely(ldata->no_room) && receive_room(tty)) {
181 ldata->no_room = 0;
182
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200183 WARN_RATELIMIT(tty->port->itty == NULL,
Sasha Levincadf7482012-10-25 14:26:35 -0400184 "scheduling with invalid itty\n");
Peter Hurley21622932013-03-11 16:44:21 -0400185 /* see if ldisc has been killed - if so, this means that
186 * even though the ldisc has been halted and ->buf.work
187 * cancelled, ->buf.work is about to be rescheduled
188 */
189 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
190 "scheduling buffer work for halted ldisc\n");
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200191 schedule_work(&tty->port->buf.work);
192 }
Linus Torvalds55db4c62011-06-04 06:33:24 +0900193}
194
Jiri Slaby57c94122012-10-18 22:26:43 +0200195static void put_tty_queue_nolock(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Peter Hurleyce741172013-06-15 09:14:20 -0400197 if (read_cnt(ldata) < N_TTY_BUF_SIZE) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400198 *read_buf_addr(ldata, ldata->read_head) = c;
199 ldata->read_head++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201}
202
Alan Cox17b82062008-10-13 10:45:06 +0100203/**
204 * put_tty_queue - add character to tty
205 * @c: character
Jiri Slaby57c94122012-10-18 22:26:43 +0200206 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100207 *
208 * Add a character to the tty read_buf queue. This is done under the
209 * read_lock to serialize character addition and also to protect us
210 * against parallel reads or flushes
211 */
212
Jiri Slaby57c94122012-10-18 22:26:43 +0200213static void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 unsigned long flags;
216 /*
217 * The problem of stomping on the buffers ends here.
218 * Why didn't anyone see this one coming? --AJK
219 */
Ivo Sieben98001212013-01-28 13:32:01 +0100220 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slaby57c94122012-10-18 22:26:43 +0200221 put_tty_queue_nolock(c, ldata);
Ivo Sieben98001212013-01-28 13:32:01 +0100222 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 * reset_buffer_flags - reset buffer state
227 * @tty: terminal to reset
228 *
Peter Hurley25518c62013-03-11 16:44:31 -0400229 * Reset the read buffer counters and clear the flags.
230 * Called from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100231 *
232 * Locking: tty_read_lock for read fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000234
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400235static void reset_buffer_flags(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 unsigned long flags;
238
Ivo Sieben98001212013-01-28 13:32:01 +0100239 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleya2f73be2013-06-15 09:14:22 -0400240 ldata->read_head = ldata->read_tail = 0;
Ivo Sieben98001212013-01-28 13:32:01 +0100241 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Joe Petersona88a69c2009-01-02 13:40:53 +0000242
Jiri Slabybddc7152012-10-18 22:26:42 +0200243 mutex_lock(&ldata->echo_lock);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200244 ldata->echo_pos = ldata->echo_cnt = ldata->echo_overrun = 0;
Jiri Slabybddc7152012-10-18 22:26:42 +0200245 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000246
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200247 ldata->canon_head = ldata->canon_data = ldata->erasing = 0;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200248 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Peter Hurleya30737a2013-03-11 16:44:22 -0400251static void n_tty_packet_mode_flush(struct tty_struct *tty)
252{
253 unsigned long flags;
254
255 spin_lock_irqsave(&tty->ctrl_lock, flags);
256 if (tty->link->packet) {
257 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
258 wake_up_interruptible(&tty->link->read_wait);
259 }
260 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
261}
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/**
264 * n_tty_flush_buffer - clean input queue
265 * @tty: terminal device
266 *
Peter Hurley25518c62013-03-11 16:44:31 -0400267 * Flush the input buffer. Called when the tty layer wants the
268 * buffer flushed (eg at hangup) or when the N_TTY line discipline
269 * internally has to clean the pending queue (for example some signals).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
Alan Cox17b82062008-10-13 10:45:06 +0100271 * Locking: ctrl_lock, read_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Alan Cox4edf1822008-02-08 04:18:44 -0800273
274static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400276 reset_buffer_flags(tty->disc_data);
277 n_tty_set_room(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800278
Peter Hurleya30737a2013-03-11 16:44:22 -0400279 if (tty->link)
280 n_tty_packet_mode_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283/**
284 * n_tty_chars_in_buffer - report available bytes
285 * @tty: tty device
286 *
287 * Report the number of characters buffered to be delivered to user
Alan Cox4edf1822008-02-08 04:18:44 -0800288 * at this instant in time.
Alan Cox17b82062008-10-13 10:45:06 +0100289 *
290 * Locking: read_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
Alan Cox4edf1822008-02-08 04:18:44 -0800292
Peter Hurleya19d0c62013-06-15 09:14:18 -0400293static ssize_t chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200295 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 unsigned long flags;
297 ssize_t n = 0;
298
Ivo Sieben98001212013-01-28 13:32:01 +0100299 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400300 if (!ldata->icanon)
Peter Hurleyce741172013-06-15 09:14:20 -0400301 n = read_cnt(ldata);
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400302 else
303 n = ldata->canon_head - ldata->read_tail;
Ivo Sieben98001212013-01-28 13:32:01 +0100304 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return n;
306}
307
Peter Hurleya19d0c62013-06-15 09:14:18 -0400308static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
309{
Peter Hurley47534082013-06-15 09:14:19 -0400310 WARN_ONCE(1, "%s is deprecated and scheduled for removal.", __func__);
Peter Hurleya19d0c62013-06-15 09:14:18 -0400311 return chars_in_buffer(tty);
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/**
315 * is_utf8_continuation - utf8 multibyte check
316 * @c: byte to check
317 *
318 * Returns true if the utf8 character 'c' is a multibyte continuation
319 * character. We use this to correctly compute the on screen size
320 * of the character when printing
321 */
Alan Cox4edf1822008-02-08 04:18:44 -0800322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323static inline int is_utf8_continuation(unsigned char c)
324{
325 return (c & 0xc0) == 0x80;
326}
327
328/**
329 * is_continuation - multibyte check
330 * @c: byte to check
331 *
332 * Returns true if the utf8 character 'c' is a multibyte continuation
333 * character and the terminal is in unicode mode.
334 */
Alan Cox4edf1822008-02-08 04:18:44 -0800335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336static inline int is_continuation(unsigned char c, struct tty_struct *tty)
337{
338 return I_IUTF8(tty) && is_utf8_continuation(c);
339}
340
341/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000342 * do_output_char - output one character
343 * @c: character (or partial unicode symbol)
344 * @tty: terminal device
345 * @space: space available in tty driver write buffer
346 *
347 * This is a helper function that handles one output character
348 * (including special characters like TAB, CR, LF, etc.),
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600349 * doing OPOST processing and putting the results in the
350 * tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000351 *
352 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
353 * and NLDLY. They simply aren't relevant in the world today.
354 * If you ever need them, add them here.
355 *
356 * Returns the number of bytes of buffer space used or -1 if
357 * no space left.
358 *
359 * Locking: should be called under the output_lock to protect
360 * the column state and space left in the buffer
361 */
362
363static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
364{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200365 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000366 int spaces;
367
368 if (!space)
369 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000370
Joe Petersona88a69c2009-01-02 13:40:53 +0000371 switch (c) {
372 case '\n':
373 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200374 ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000375 if (O_ONLCR(tty)) {
376 if (space < 2)
377 return -1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200378 ldata->canon_column = ldata->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700379 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000380 return 2;
381 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200382 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000383 break;
384 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200385 if (O_ONOCR(tty) && ldata->column == 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000386 return 0;
387 if (O_OCRNL(tty)) {
388 c = '\n';
389 if (O_ONLRET(tty))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200390 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000391 break;
392 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200393 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000394 break;
395 case '\t':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200396 spaces = 8 - (ldata->column & 7);
Joe Petersona88a69c2009-01-02 13:40:53 +0000397 if (O_TABDLY(tty) == XTABS) {
398 if (space < spaces)
399 return -1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200400 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000401 tty->ops->write(tty, " ", spaces);
402 return spaces;
403 }
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200404 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000405 break;
406 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200407 if (ldata->column > 0)
408 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000409 break;
410 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000411 if (!iscntrl(c)) {
412 if (O_OLCUC(tty))
413 c = toupper(c);
414 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200415 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000416 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000417 break;
418 }
419
420 tty_put_char(tty, c);
421 return 1;
422}
423
424/**
425 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * @c: character (or partial unicode symbol)
427 * @tty: terminal device
428 *
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600429 * Output one character with OPOST processing.
430 * Returns -1 when the output device is full and the character
431 * must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000433 * Locking: output_lock to protect column state and space left
434 * (also, this is called from n_tty_write under the
435 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 */
Alan Cox4edf1822008-02-08 04:18:44 -0800437
Joe Petersona88a69c2009-01-02 13:40:53 +0000438static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Jiri Slabybddc7152012-10-18 22:26:42 +0200440 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000441 int space, retval;
442
Jiri Slabybddc7152012-10-18 22:26:42 +0200443 mutex_lock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Alan Coxf34d7a52008-04-30 00:54:13 -0700445 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000446 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Jiri Slabybddc7152012-10-18 22:26:42 +0200448 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000449 if (retval < 0)
450 return -1;
451 else
452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000456 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * @tty: terminal device
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600458 * @buf: character buffer
459 * @nr: number of bytes to output
460 *
461 * Output a block of characters with OPOST processing.
462 * Returns the number of characters output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 *
464 * This path is used to speed up block console writes, among other
465 * things when processing blocks of output data. It handles only
466 * the simple cases normally found and helps to generate blocks of
467 * symbols for the console driver and thus improve performance.
468 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000469 * Locking: output_lock to protect column state and space left
470 * (also, this is called from n_tty_write under the
471 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 */
Alan Cox4edf1822008-02-08 04:18:44 -0800473
Joe Petersona88a69c2009-01-02 13:40:53 +0000474static ssize_t process_output_block(struct tty_struct *tty,
475 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200477 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100479 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 const unsigned char *cp;
481
Jiri Slabybddc7152012-10-18 22:26:42 +0200482 mutex_lock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000483
Alan Coxf34d7a52008-04-30 00:54:13 -0700484 space = tty_write_room(tty);
Alan Cox300a6202009-01-02 13:41:04 +0000485 if (!space) {
Jiri Slabybddc7152012-10-18 22:26:42 +0200486 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (nr > space)
490 nr = space;
491
492 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000493 unsigned char c = *cp;
494
495 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 case '\n':
497 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200498 ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (O_ONLCR(tty))
500 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200501 ldata->canon_column = ldata->column;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 break;
503 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200504 if (O_ONOCR(tty) && ldata->column == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 goto break_out;
506 if (O_OCRNL(tty))
507 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200508 ldata->canon_column = ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 break;
510 case '\t':
511 goto break_out;
512 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200513 if (ldata->column > 0)
514 ldata->column--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 break;
516 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000517 if (!iscntrl(c)) {
518 if (O_OLCUC(tty))
519 goto break_out;
520 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200521 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 break;
524 }
525 }
526break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700527 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000528
Jiri Slabybddc7152012-10-18 22:26:42 +0200529 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return i;
531}
532
Joe Petersona88a69c2009-01-02 13:40:53 +0000533/**
534 * process_echoes - write pending echo characters
535 * @tty: terminal device
536 *
537 * Write previously buffered echo (and other ldisc-generated)
538 * characters to the tty.
539 *
540 * Characters generated by the ldisc (including echoes) need to
541 * be buffered because the driver's write buffer can fill during
542 * heavy program output. Echoing straight to the driver will
543 * often fail under these conditions, causing lost characters and
544 * resulting mismatches of ldisc state information.
545 *
546 * Since the ldisc state must represent the characters actually sent
547 * to the driver at the time of the write, operations like certain
548 * changes in column state are also saved in the buffer and executed
549 * here.
550 *
551 * A circular fifo buffer is used so that the most recent characters
552 * are prioritized. Also, when control characters are echoed with a
553 * prefixed "^", the pair is treated atomically and thus not separated.
554 *
555 * Locking: output_lock to protect column state and space left,
556 * echo_lock to protect the echo buffer
557 */
558
559static void process_echoes(struct tty_struct *tty)
560{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200561 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000562 int space, nr;
563 unsigned char c;
564 unsigned char *cp, *buf_end;
565
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200566 if (!ldata->echo_cnt)
Joe Petersona88a69c2009-01-02 13:40:53 +0000567 return;
568
Jiri Slabybddc7152012-10-18 22:26:42 +0200569 mutex_lock(&ldata->output_lock);
570 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000571
572 space = tty_write_room(tty);
573
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200574 buf_end = ldata->echo_buf + N_TTY_BUF_SIZE;
575 cp = ldata->echo_buf + ldata->echo_pos;
576 nr = ldata->echo_cnt;
Joe Petersona88a69c2009-01-02 13:40:53 +0000577 while (nr > 0) {
578 c = *cp;
579 if (c == ECHO_OP_START) {
580 unsigned char op;
581 unsigned char *opp;
582 int no_space_left = 0;
583
584 /*
585 * If the buffer byte is the start of a multi-byte
586 * operation, get the next byte, which is either the
587 * op code or a control character value.
588 */
589 opp = cp + 1;
590 if (opp == buf_end)
591 opp -= N_TTY_BUF_SIZE;
592 op = *opp;
Alan Cox300a6202009-01-02 13:41:04 +0000593
Joe Petersona88a69c2009-01-02 13:40:53 +0000594 switch (op) {
595 unsigned int num_chars, num_bs;
596
597 case ECHO_OP_ERASE_TAB:
598 if (++opp == buf_end)
599 opp -= N_TTY_BUF_SIZE;
600 num_chars = *opp;
601
602 /*
603 * Determine how many columns to go back
604 * in order to erase the tab.
605 * This depends on the number of columns
606 * used by other characters within the tab
607 * area. If this (modulo 8) count is from
608 * the start of input rather than from a
609 * previous tab, we offset by canon column.
610 * Otherwise, tab spacing is normal.
611 */
612 if (!(num_chars & 0x80))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200613 num_chars += ldata->canon_column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000614 num_bs = 8 - (num_chars & 7);
615
616 if (num_bs > space) {
617 no_space_left = 1;
618 break;
619 }
620 space -= num_bs;
621 while (num_bs--) {
622 tty_put_char(tty, '\b');
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200623 if (ldata->column > 0)
624 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000625 }
626 cp += 3;
627 nr -= 3;
628 break;
629
630 case ECHO_OP_SET_CANON_COL:
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200631 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000632 cp += 2;
633 nr -= 2;
634 break;
635
636 case ECHO_OP_MOVE_BACK_COL:
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200637 if (ldata->column > 0)
638 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000639 cp += 2;
640 nr -= 2;
641 break;
642
643 case ECHO_OP_START:
644 /* This is an escaped echo op start code */
645 if (!space) {
646 no_space_left = 1;
647 break;
648 }
649 tty_put_char(tty, ECHO_OP_START);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200650 ldata->column++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000651 space--;
652 cp += 2;
653 nr -= 2;
654 break;
655
656 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000657 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600658 * If the op is not a special byte code,
659 * it is a ctrl char tagged to be echoed
660 * as "^X" (where X is the letter
661 * representing the control char).
662 * Note that we must ensure there is
663 * enough space for the whole ctrl pair.
664 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000665 */
Joe Peterson62b26352009-09-09 15:03:47 -0600666 if (space < 2) {
667 no_space_left = 1;
668 break;
669 }
670 tty_put_char(tty, '^');
671 tty_put_char(tty, op ^ 0100);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200672 ldata->column += 2;
Joe Peterson62b26352009-09-09 15:03:47 -0600673 space -= 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000674 cp += 2;
675 nr -= 2;
676 }
677
678 if (no_space_left)
679 break;
680 } else {
Peter Hurley582f5592013-05-17 12:49:48 -0400681 if (O_OPOST(tty)) {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600682 int retval = do_output_char(c, tty, space);
683 if (retval < 0)
684 break;
685 space -= retval;
686 } else {
687 if (!space)
688 break;
689 tty_put_char(tty, c);
690 space -= 1;
691 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000692 cp += 1;
693 nr -= 1;
694 }
695
696 /* When end of circular buffer reached, wrap around */
697 if (cp >= buf_end)
698 cp -= N_TTY_BUF_SIZE;
699 }
700
701 if (nr == 0) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200702 ldata->echo_pos = 0;
703 ldata->echo_cnt = 0;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200704 ldata->echo_overrun = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000705 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200706 int num_processed = ldata->echo_cnt - nr;
707 ldata->echo_pos += num_processed;
708 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
709 ldata->echo_cnt = nr;
Joe Petersona88a69c2009-01-02 13:40:53 +0000710 if (num_processed > 0)
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200711 ldata->echo_overrun = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000712 }
713
Jiri Slabybddc7152012-10-18 22:26:42 +0200714 mutex_unlock(&ldata->echo_lock);
715 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000716
717 if (tty->ops->flush_chars)
718 tty->ops->flush_chars(tty);
719}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000722 * add_echo_byte - add a byte to the echo buffer
723 * @c: unicode byte to echo
Jiri Slaby57c94122012-10-18 22:26:43 +0200724 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000725 *
726 * Add a character or operation byte to the echo buffer.
727 *
728 * Should be called under the echo lock to protect the echo buffer.
729 */
730
Jiri Slaby57c94122012-10-18 22:26:43 +0200731static void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000732{
733 int new_byte_pos;
734
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200735 if (ldata->echo_cnt == N_TTY_BUF_SIZE) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000736 /* Circular buffer is already at capacity */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200737 new_byte_pos = ldata->echo_pos;
Joe Petersona88a69c2009-01-02 13:40:53 +0000738
739 /*
740 * Since the buffer start position needs to be advanced,
741 * be sure to step by a whole operation byte group.
742 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200743 if (ldata->echo_buf[ldata->echo_pos] == ECHO_OP_START) {
744 if (ldata->echo_buf[(ldata->echo_pos + 1) &
Joe Petersona88a69c2009-01-02 13:40:53 +0000745 (N_TTY_BUF_SIZE - 1)] ==
746 ECHO_OP_ERASE_TAB) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200747 ldata->echo_pos += 3;
748 ldata->echo_cnt -= 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000749 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200750 ldata->echo_pos += 2;
751 ldata->echo_cnt -= 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000752 }
753 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200754 ldata->echo_pos++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000755 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200756 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000757
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200758 ldata->echo_overrun = 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000759 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200760 new_byte_pos = ldata->echo_pos + ldata->echo_cnt;
Joe Petersona88a69c2009-01-02 13:40:53 +0000761 new_byte_pos &= N_TTY_BUF_SIZE - 1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200762 ldata->echo_cnt++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000763 }
764
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200765 ldata->echo_buf[new_byte_pos] = c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000766}
767
768/**
769 * echo_move_back_col - add operation to move back a column
Jiri Slaby57c94122012-10-18 22:26:43 +0200770 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000771 *
772 * Add an operation to the echo buffer to move back one column.
773 *
774 * Locking: echo_lock to protect the echo buffer
775 */
776
Jiri Slaby57c94122012-10-18 22:26:43 +0200777static void echo_move_back_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000778{
Jiri Slabybddc7152012-10-18 22:26:42 +0200779 mutex_lock(&ldata->echo_lock);
Jiri Slaby57c94122012-10-18 22:26:43 +0200780 add_echo_byte(ECHO_OP_START, ldata);
781 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
Jiri Slabybddc7152012-10-18 22:26:42 +0200782 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000783}
784
785/**
786 * echo_set_canon_col - add operation to set the canon column
Jiri Slaby57c94122012-10-18 22:26:43 +0200787 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000788 *
789 * Add an operation to the echo buffer to set the canon column
790 * to the current column.
791 *
792 * Locking: echo_lock to protect the echo buffer
793 */
794
Jiri Slaby57c94122012-10-18 22:26:43 +0200795static void echo_set_canon_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000796{
Jiri Slabybddc7152012-10-18 22:26:42 +0200797 mutex_lock(&ldata->echo_lock);
Jiri Slaby57c94122012-10-18 22:26:43 +0200798 add_echo_byte(ECHO_OP_START, ldata);
799 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
Jiri Slabybddc7152012-10-18 22:26:42 +0200800 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000801}
802
803/**
804 * echo_erase_tab - add operation to erase a tab
805 * @num_chars: number of character columns already used
806 * @after_tab: true if num_chars starts after a previous tab
Jiri Slaby57c94122012-10-18 22:26:43 +0200807 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000808 *
809 * Add an operation to the echo buffer to erase a tab.
810 *
811 * Called by the eraser function, which knows how many character
812 * columns have been used since either a previous tab or the start
813 * of input. This information will be used later, along with
814 * canon column (if applicable), to go back the correct number
815 * of columns.
816 *
817 * Locking: echo_lock to protect the echo buffer
818 */
819
820static void echo_erase_tab(unsigned int num_chars, int after_tab,
Jiri Slaby57c94122012-10-18 22:26:43 +0200821 struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000822{
Jiri Slabybddc7152012-10-18 22:26:42 +0200823 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000824
Jiri Slaby57c94122012-10-18 22:26:43 +0200825 add_echo_byte(ECHO_OP_START, ldata);
826 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000827
828 /* We only need to know this modulo 8 (tab spacing) */
829 num_chars &= 7;
830
831 /* Set the high bit as a flag if num_chars is after a previous tab */
832 if (after_tab)
833 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000834
Jiri Slaby57c94122012-10-18 22:26:43 +0200835 add_echo_byte(num_chars, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000836
Jiri Slabybddc7152012-10-18 22:26:42 +0200837 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000838}
839
840/**
841 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 * @c: unicode byte to echo
843 * @tty: terminal device
844 *
Alan Cox4edf1822008-02-08 04:18:44 -0800845 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100847 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000848 * This variant does not treat control characters specially.
849 *
850 * Locking: echo_lock to protect the echo buffer
851 */
852
Jiri Slaby57c94122012-10-18 22:26:43 +0200853static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000854{
Jiri Slabybddc7152012-10-18 22:26:42 +0200855 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000856 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200857 add_echo_byte(ECHO_OP_START, ldata);
858 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000859 } else {
Jiri Slaby57c94122012-10-18 22:26:43 +0200860 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000861 }
Jiri Slabybddc7152012-10-18 22:26:42 +0200862 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000863}
864
865/**
866 * echo_char - echo a character
867 * @c: unicode byte to echo
868 * @tty: terminal device
869 *
870 * Echo user input back onto the screen. This must be called only when
871 * L_ECHO(tty) is true. Called from the driver receive_buf path.
872 *
Joe Peterson62b26352009-09-09 15:03:47 -0600873 * This variant tags control characters to be echoed as "^X"
874 * (where X is the letter representing the control char).
Joe Petersona88a69c2009-01-02 13:40:53 +0000875 *
876 * Locking: echo_lock to protect the echo buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 */
878
879static void echo_char(unsigned char c, struct tty_struct *tty)
880{
Jiri Slabybddc7152012-10-18 22:26:42 +0200881 struct n_tty_data *ldata = tty->disc_data;
882
883 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000884
885 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200886 add_echo_byte(ECHO_OP_START, ldata);
887 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000888 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600889 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Jiri Slaby57c94122012-10-18 22:26:43 +0200890 add_echo_byte(ECHO_OP_START, ldata);
891 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000892 }
893
Jiri Slabybddc7152012-10-18 22:26:42 +0200894 mutex_unlock(&ldata->echo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Alan Cox17b82062008-10-13 10:45:06 +0100897/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000898 * finish_erasing - complete erase
Jiri Slaby57c94122012-10-18 22:26:43 +0200899 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100900 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000901
Jiri Slaby57c94122012-10-18 22:26:43 +0200902static inline void finish_erasing(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200904 if (ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200905 echo_char_raw('/', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200906 ldata->erasing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908}
909
910/**
911 * eraser - handle erase function
912 * @c: character input
913 * @tty: terminal device
914 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200915 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 * present in the stream from the driver layer. Handles the complexities
917 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100918 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000919 * Locking: read_lock for tty buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 */
Alan Cox4edf1822008-02-08 04:18:44 -0800921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922static void eraser(unsigned char c, struct tty_struct *tty)
923{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200924 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 enum { ERASE, WERASE, KILL } kill_type;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400926 size_t head;
927 size_t cnt;
928 int seen_alnums;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 unsigned long flags;
930
Alan Cox17b82062008-10-13 10:45:06 +0100931 /* FIXME: locking needed ? */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200932 if (ldata->read_head == ldata->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000933 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return;
935 }
936 if (c == ERASE_CHAR(tty))
937 kill_type = ERASE;
938 else if (c == WERASE_CHAR(tty))
939 kill_type = WERASE;
940 else {
941 if (!L_ECHO(tty)) {
Ivo Sieben98001212013-01-28 13:32:01 +0100942 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200943 ldata->read_head = ldata->canon_head;
Ivo Sieben98001212013-01-28 13:32:01 +0100944 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return;
946 }
947 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
Ivo Sieben98001212013-01-28 13:32:01 +0100948 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200949 ldata->read_head = ldata->canon_head;
Ivo Sieben98001212013-01-28 13:32:01 +0100950 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Jiri Slaby57c94122012-10-18 22:26:43 +0200951 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 echo_char(KILL_CHAR(tty), tty);
953 /* Add a newline if ECHOK is on and ECHOKE is off. */
954 if (L_ECHOK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +0200955 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return;
957 }
958 kill_type = KILL;
959 }
960
961 seen_alnums = 0;
Alan Cox17b82062008-10-13 10:45:06 +0100962 /* FIXME: Locking ?? */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200963 while (ldata->read_head != ldata->canon_head) {
964 head = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 /* erase a single possibly multibyte character */
967 do {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400968 head--;
969 c = read_buf(ldata, head);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200970 } while (is_continuation(c, tty) && head != ldata->canon_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /* do not partially erase */
973 if (is_continuation(c, tty))
974 break;
975
976 if (kill_type == WERASE) {
977 /* Equivalent to BSD's ALTWERASE. */
978 if (isalnum(c) || c == '_')
979 seen_alnums++;
980 else if (seen_alnums)
981 break;
982 }
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400983 cnt = ldata->read_head - head;
Ivo Sieben98001212013-01-28 13:32:01 +0100984 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200985 ldata->read_head = head;
Ivo Sieben98001212013-01-28 13:32:01 +0100986 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (L_ECHO(tty)) {
988 if (L_ECHOPRT(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200989 if (!ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200990 echo_char_raw('\\', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200991 ldata->erasing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993 /* if cnt > 1, output a multi-byte character */
994 echo_char(c, tty);
995 while (--cnt > 0) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400996 head++;
997 echo_char_raw(read_buf(ldata, head), ldata);
Jiri Slaby57c94122012-10-18 22:26:43 +0200998 echo_move_back_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1001 echo_char(ERASE_CHAR(tty), tty);
1002 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +00001003 unsigned int num_chars = 0;
1004 int after_tab = 0;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001005 size_t tail = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Joe Petersona88a69c2009-01-02 13:40:53 +00001007 /*
1008 * Count the columns used for characters
1009 * since the start of input or after a
1010 * previous tab.
1011 * This info is used to go back the correct
1012 * number of columns.
1013 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001014 while (tail != ldata->canon_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001015 tail--;
1016 c = read_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +00001017 if (c == '\t') {
1018 after_tab = 1;
1019 break;
Alan Cox300a6202009-01-02 13:41:04 +00001020 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +00001022 num_chars += 2;
1023 } else if (!is_continuation(c, tty)) {
1024 num_chars++;
1025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001027 echo_erase_tab(num_chars, after_tab, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 } else {
1029 if (iscntrl(c) && L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001030 echo_char_raw('\b', ldata);
1031 echo_char_raw(' ', ldata);
1032 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001035 echo_char_raw('\b', ldata);
1036 echo_char_raw(' ', ldata);
1037 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039 }
1040 }
1041 if (kill_type == ERASE)
1042 break;
1043 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001044 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001045 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048/**
1049 * isig - handle the ISIG optio
1050 * @sig: signal
1051 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001053 * Called when a signal is being sent due to terminal input.
1054 * Called from the driver receive_buf path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001055 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001056 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 */
Alan Cox4edf1822008-02-08 04:18:44 -08001058
Peter Hurley8c985d12013-03-06 08:38:19 -05001059static inline void isig(int sig, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Peter Hurley8c985d12013-03-06 08:38:19 -05001061 struct pid *tty_pgrp = tty_get_pgrp(tty);
1062 if (tty_pgrp) {
1063 kill_pgrp(tty_pgrp, sig, 1);
1064 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066}
1067
1068/**
1069 * n_tty_receive_break - handle break
1070 * @tty: terminal
1071 *
1072 * An RS232 break event has been hit in the incoming bitstream. This
1073 * can cause a variety of events depending upon the termios settings.
1074 *
1075 * Called from the receive_buf path so single threaded.
1076 */
Alan Cox4edf1822008-02-08 04:18:44 -08001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078static inline void n_tty_receive_break(struct tty_struct *tty)
1079{
Jiri Slaby57c94122012-10-18 22:26:43 +02001080 struct n_tty_data *ldata = tty->disc_data;
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (I_IGNBRK(tty))
1083 return;
1084 if (I_BRKINT(tty)) {
Peter Hurley8c985d12013-03-06 08:38:19 -05001085 isig(SIGINT, tty);
1086 if (!L_NOFLSH(tty)) {
1087 n_tty_flush_buffer(tty);
1088 tty_driver_flush_buffer(tty);
1089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return;
1091 }
1092 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001093 put_tty_queue('\377', ldata);
1094 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001096 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 wake_up_interruptible(&tty->read_wait);
1098}
1099
1100/**
1101 * n_tty_receive_overrun - handle overrun reporting
1102 * @tty: terminal
1103 *
1104 * Data arrived faster than we could process it. While the tty
1105 * driver has flagged this the bits that were missed are gone
1106 * forever.
1107 *
1108 * Called from the receive_buf path so single threaded. Does not
1109 * need locking as num_overrun and overrun_time are function
1110 * private.
1111 */
Alan Cox4edf1822008-02-08 04:18:44 -08001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113static inline void n_tty_receive_overrun(struct tty_struct *tty)
1114{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001115 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 char buf[64];
1117
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001118 ldata->num_overrun++;
1119 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1120 time_after(ldata->overrun_time, jiffies)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 printk(KERN_WARNING "%s: %d input overrun(s)\n",
1122 tty_name(tty, buf),
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001123 ldata->num_overrun);
1124 ldata->overrun_time = jiffies;
1125 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
1127}
1128
1129/**
1130 * n_tty_receive_parity_error - error notifier
1131 * @tty: terminal device
1132 * @c: character
1133 *
1134 * Process a parity error and queue the right data to indicate
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001135 * the error case if necessary. Locking as per n_tty_receive_buf.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 */
1137static inline void n_tty_receive_parity_error(struct tty_struct *tty,
1138 unsigned char c)
1139{
Jiri Slaby57c94122012-10-18 22:26:43 +02001140 struct n_tty_data *ldata = tty->disc_data;
1141
Alan Cox4edf1822008-02-08 04:18:44 -08001142 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001145 put_tty_queue('\377', ldata);
1146 put_tty_queue('\0', ldata);
1147 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 } else if (I_INPCK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001149 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 else
Jiri Slaby57c94122012-10-18 22:26:43 +02001151 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 wake_up_interruptible(&tty->read_wait);
1153}
1154
1155/**
1156 * n_tty_receive_char - perform processing
1157 * @tty: terminal device
1158 * @c: character
1159 *
1160 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001161 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 * driver above.
1163 */
1164
1165static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1166{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001167 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 unsigned long flags;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001169 int parmrk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001171 if (ldata->raw) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001172 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return;
1174 }
Alan Cox4edf1822008-02-08 04:18:44 -08001175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (I_ISTRIP(tty))
1177 c &= 0x7f;
1178 if (I_IUCLC(tty) && L_IEXTEN(tty))
Alan Cox300a6202009-01-02 13:41:04 +00001179 c = tolower(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
hyc@symas.com26df6d12010-06-22 10:14:49 -07001181 if (L_EXTPROC(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001182 put_tty_queue(c, ldata);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001183 return;
1184 }
1185
Joe Peterson54d2a372008-02-06 01:37:59 -08001186 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) &&
Joe Petersona88a69c2009-01-02 13:40:53 +00001187 I_IXANY(tty) && c != START_CHAR(tty) && c != STOP_CHAR(tty) &&
1188 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && c != SUSP_CHAR(tty)) {
Joe Peterson54d2a372008-02-06 01:37:59 -08001189 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001190 process_echoes(tty);
1191 }
Joe Peterson54d2a372008-02-06 01:37:59 -08001192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 if (tty->closing) {
1194 if (I_IXON(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001195 if (c == START_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001197 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00001198 } else if (c == STOP_CHAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 stop_tty(tty);
1200 }
1201 return;
1202 }
1203
1204 /*
1205 * If the previous character was LNEXT, or we know that this
1206 * character is not one of the characters that we'll have to
1207 * handle specially, do shortcut processing to speed things
1208 * up.
1209 */
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001210 if (!test_bit(c, ldata->process_char_map) || ldata->lnext) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001211 ldata->lnext = 0;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001212 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
Peter Hurleyce741172013-06-15 09:14:20 -04001213 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001214 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001215 if (L_ECHO(tty))
1216 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001217 return;
1218 }
1219 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001220 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001222 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001223 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001225 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 }
Joe Petersonacc71bb2009-01-02 13:43:32 +00001227 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001228 put_tty_queue(c, ldata);
1229 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return;
1231 }
Alan Cox4edf1822008-02-08 04:18:44 -08001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (I_IXON(tty)) {
1234 if (c == START_CHAR(tty)) {
1235 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001236 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return;
1238 }
1239 if (c == STOP_CHAR(tty)) {
1240 stop_tty(tty);
1241 return;
1242 }
1243 }
Joe Peterson575537b32008-04-30 00:53:30 -07001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 if (L_ISIG(tty)) {
1246 int signal;
1247 signal = SIGINT;
1248 if (c == INTR_CHAR(tty))
1249 goto send_signal;
1250 signal = SIGQUIT;
1251 if (c == QUIT_CHAR(tty))
1252 goto send_signal;
1253 signal = SIGTSTP;
1254 if (c == SUSP_CHAR(tty)) {
1255send_signal:
Joe Petersonec5b1152008-02-06 01:37:38 -08001256 if (!L_NOFLSH(tty)) {
1257 n_tty_flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001258 tty_driver_flush_buffer(tty);
Joe Petersonec5b1152008-02-06 01:37:38 -08001259 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001260 if (I_IXON(tty))
1261 start_tty(tty);
1262 if (L_ECHO(tty)) {
Joe Petersonec5b1152008-02-06 01:37:38 -08001263 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001264 process_echoes(tty);
1265 }
Peter Hurley8c985d12013-03-06 08:38:19 -05001266 isig(signal, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 return;
1268 }
1269 }
Joe Peterson575537b32008-04-30 00:53:30 -07001270
1271 if (c == '\r') {
1272 if (I_IGNCR(tty))
1273 return;
1274 if (I_ICRNL(tty))
1275 c = '\n';
1276 } else if (c == '\n' && I_INLCR(tty))
1277 c = '\r';
1278
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001279 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1281 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1282 eraser(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001283 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 return;
1285 }
1286 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001287 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001289 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001291 echo_char_raw('^', ldata);
1292 echo_char_raw('\b', ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +00001293 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
1295 }
1296 return;
1297 }
1298 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
1299 L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001300 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Jiri Slaby57c94122012-10-18 22:26:43 +02001302 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001304 echo_char_raw('\n', ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001305 while (tail != ldata->read_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001306 echo_char(read_buf(ldata, tail), tty);
1307 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001309 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return;
1311 }
1312 if (c == '\n') {
Peter Hurleyce741172013-06-15 09:14:20 -04001313 if (read_cnt(ldata) >= N_TTY_BUF_SIZE) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001314 if (L_ECHO(tty))
1315 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001316 return;
1317 }
1318 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001319 echo_char_raw('\n', ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +00001320 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
1322 goto handle_newline;
1323 }
1324 if (c == EOF_CHAR(tty)) {
Peter Hurleyce741172013-06-15 09:14:20 -04001325 if (read_cnt(ldata) >= N_TTY_BUF_SIZE)
Joe Petersonacc71bb2009-01-02 13:43:32 +00001326 return;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001327 if (ldata->canon_head != ldata->read_head)
Alan Cox4edf1822008-02-08 04:18:44 -08001328 set_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 c = __DISABLED_CHAR;
1330 goto handle_newline;
1331 }
1332 if ((c == EOL_CHAR(tty)) ||
1333 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001334 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty))
1335 ? 1 : 0;
Peter Hurleyce741172013-06-15 09:14:20 -04001336 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk)) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001337 if (L_ECHO(tty))
1338 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001339 return;
1340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 /*
1342 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1343 */
1344 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001346 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001347 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001349 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
1351 /*
1352 * XXX does PARMRK doubling happen for
1353 * EOL_CHAR and EOL2_CHAR?
1354 */
Joe Petersonacc71bb2009-01-02 13:43:32 +00001355 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001356 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Alan Cox4edf1822008-02-08 04:18:44 -08001358handle_newline:
Ivo Sieben98001212013-01-28 13:32:01 +01001359 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001360 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Jiri Slaby57c94122012-10-18 22:26:43 +02001361 put_tty_queue_nolock(c, ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001362 ldata->canon_head = ldata->read_head;
1363 ldata->canon_data++;
Ivo Sieben98001212013-01-28 13:32:01 +01001364 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1366 if (waitqueue_active(&tty->read_wait))
1367 wake_up_interruptible(&tty->read_wait);
1368 return;
1369 }
1370 }
Alan Cox4edf1822008-02-08 04:18:44 -08001371
Joe Petersonacc71bb2009-01-02 13:43:32 +00001372 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
Peter Hurleyce741172013-06-15 09:14:20 -04001373 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001374 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001375 if (L_ECHO(tty))
1376 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001377 return;
1378 }
1379 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001380 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001382 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 else {
1384 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001385 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001386 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 echo_char(c, tty);
1388 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001389 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
1391
Joe Petersonacc71bb2009-01-02 13:43:32 +00001392 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001393 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Jiri Slaby57c94122012-10-18 22:26:43 +02001395 put_tty_queue(c, ldata);
Alan Cox4edf1822008-02-08 04:18:44 -08001396}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399/**
1400 * n_tty_write_wakeup - asynchronous I/O notifier
1401 * @tty: tty device
1402 *
1403 * Required for the ptys, serial driver etc. since processes
1404 * that attach themselves to the master and rely on ASYNC
1405 * IO must be woken up
1406 */
1407
1408static void n_tty_write_wakeup(struct tty_struct *tty)
1409{
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00001410 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
1414/**
1415 * n_tty_receive_buf - data receive
1416 * @tty: terminal device
1417 * @cp: buffer
1418 * @fp: flag buffer
1419 * @count: characters
1420 *
1421 * Called by the terminal driver when a block of characters has
1422 * been received. This function must be called from soft contexts
1423 * not from interrupt context. The driver is responsible for making
1424 * calls one at a time and in order (or using flush_to_ldisc)
1425 */
Alan Cox4edf1822008-02-08 04:18:44 -08001426
Peter Hurley24a89d12013-06-15 09:14:15 -04001427static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1428 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001430 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 const unsigned char *p;
1432 char *f, flags = TTY_NORMAL;
1433 int i;
1434 char buf[64];
1435 unsigned long cpuflags;
1436
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001437 if (ldata->real_raw) {
Ivo Sieben98001212013-01-28 13:32:01 +01001438 raw_spin_lock_irqsave(&ldata->read_lock, cpuflags);
Peter Hurleyce741172013-06-15 09:14:20 -04001439 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001440 N_TTY_BUF_SIZE - (ldata->read_head & (N_TTY_BUF_SIZE - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 i = min(count, i);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001442 memcpy(read_buf_addr(ldata, ldata->read_head), cp, i);
1443 ldata->read_head += i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 cp += i;
1445 count -= i;
1446
Peter Hurleyce741172013-06-15 09:14:20 -04001447 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001448 N_TTY_BUF_SIZE - (ldata->read_head & (N_TTY_BUF_SIZE - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 i = min(count, i);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001450 memcpy(read_buf_addr(ldata, ldata->read_head), cp, i);
1451 ldata->read_head += i;
Ivo Sieben98001212013-01-28 13:32:01 +01001452 raw_spin_unlock_irqrestore(&ldata->read_lock, cpuflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 } else {
Alan Cox4edf1822008-02-08 04:18:44 -08001454 for (i = count, p = cp, f = fp; i; i--, p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (f)
1456 flags = *f++;
1457 switch (flags) {
1458 case TTY_NORMAL:
1459 n_tty_receive_char(tty, *p);
1460 break;
1461 case TTY_BREAK:
1462 n_tty_receive_break(tty);
1463 break;
1464 case TTY_PARITY:
1465 case TTY_FRAME:
1466 n_tty_receive_parity_error(tty, *p);
1467 break;
1468 case TTY_OVERRUN:
1469 n_tty_receive_overrun(tty);
1470 break;
1471 default:
Alan Cox4edf1822008-02-08 04:18:44 -08001472 printk(KERN_ERR "%s: unknown flag %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 tty_name(tty, buf), flags);
1474 break;
1475 }
1476 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001477 if (tty->ops->flush_chars)
1478 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
1480
Peter Hurleyce741172013-06-15 09:14:20 -04001481 if ((!ldata->icanon && (read_cnt(ldata) >= ldata->minimum_to_wake)) ||
hyc@symas.com26df6d12010-06-22 10:14:49 -07001482 L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1484 if (waitqueue_active(&tty->read_wait))
1485 wake_up_interruptible(&tty->read_wait);
1486 }
1487
1488 /*
1489 * Check the remaining room for the input canonicalization
1490 * mode. We don't want to throttle the driver if we're in
1491 * canonical mode and don't have a newline yet!
1492 */
Peter Hurleye91e52e2013-03-06 08:20:53 -05001493 while (1) {
Peter Hurley9356b532013-06-15 09:14:24 -04001494 int throttled;
Peter Hurleye91e52e2013-03-06 08:20:53 -05001495 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
Peter Hurley24a89d12013-06-15 09:14:15 -04001496 if (receive_room(tty) >= TTY_THRESHOLD_THROTTLE)
Peter Hurleye91e52e2013-03-06 08:20:53 -05001497 break;
Peter Hurley9356b532013-06-15 09:14:24 -04001498 up_read(&tty->termios_rwsem);
1499 throttled = tty_throttle_safe(tty);
1500 down_read(&tty->termios_rwsem);
1501 if (!throttled)
Peter Hurleye91e52e2013-03-06 08:20:53 -05001502 break;
1503 }
1504 __tty_set_flow_change(tty, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
Peter Hurley24a89d12013-06-15 09:14:15 -04001507static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1508 char *fp, int count)
1509{
Peter Hurley9356b532013-06-15 09:14:24 -04001510 down_read(&tty->termios_rwsem);
Peter Hurley24a89d12013-06-15 09:14:15 -04001511 __receive_buf(tty, cp, fp, count);
Peter Hurley9356b532013-06-15 09:14:24 -04001512 up_read(&tty->termios_rwsem);
Peter Hurley24a89d12013-06-15 09:14:15 -04001513}
1514
1515static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1516 char *fp, int count)
1517{
1518 struct n_tty_data *ldata = tty->disc_data;
1519 int room;
1520
Peter Hurley9356b532013-06-15 09:14:24 -04001521 down_read(&tty->termios_rwsem);
1522
Peter Hurley24a89d12013-06-15 09:14:15 -04001523 tty->receive_room = room = receive_room(tty);
1524 if (!room)
1525 ldata->no_room = 1;
1526 count = min(count, room);
1527 if (count)
1528 __receive_buf(tty, cp, fp, count);
1529
Peter Hurley9356b532013-06-15 09:14:24 -04001530 up_read(&tty->termios_rwsem);
1531
Peter Hurley24a89d12013-06-15 09:14:15 -04001532 return count;
1533}
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535int is_ignored(int sig)
1536{
1537 return (sigismember(&current->blocked, sig) ||
Alan Cox4edf1822008-02-08 04:18:44 -08001538 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
1541/**
1542 * n_tty_set_termios - termios data changed
1543 * @tty: terminal
1544 * @old: previous data
1545 *
1546 * Called by the tty layer when the user changes termios flags so
1547 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001548 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 * guaranteed that this function will not be re-entered or in progress
1550 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001551 *
Peter Hurley6a1c0682013-06-15 09:14:23 -04001552 * Locking: Caller holds tty->termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 */
Alan Cox4edf1822008-02-08 04:18:44 -08001554
1555static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001557 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001558 int canon_change = 1;
Alan Cox47afa7a2008-10-13 10:44:17 +01001559
1560 if (old)
Alan Coxadc8d742012-07-14 15:31:47 +01001561 canon_change = (old->c_lflag ^ tty->termios.c_lflag) & ICANON;
Alan Cox47afa7a2008-10-13 10:44:17 +01001562 if (canon_change) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001563 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001564 ldata->canon_head = ldata->read_tail;
1565 ldata->canon_data = 0;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001566 ldata->erasing = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001567 }
1568
Peter Hurleyce741172013-06-15 09:14:20 -04001569 if (canon_change && !L_ICANON(tty) && read_cnt(ldata))
Alan Cox47afa7a2008-10-13 10:44:17 +01001570 wake_up_interruptible(&tty->read_wait);
Alan Cox4edf1822008-02-08 04:18:44 -08001571
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001572 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1575 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1576 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1577 I_PARMRK(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001578 bitmap_zero(ldata->process_char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 if (I_IGNCR(tty) || I_ICRNL(tty))
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001581 set_bit('\r', ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (I_INLCR(tty))
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001583 set_bit('\n', ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 if (L_ICANON(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001586 set_bit(ERASE_CHAR(tty), ldata->process_char_map);
1587 set_bit(KILL_CHAR(tty), ldata->process_char_map);
1588 set_bit(EOF_CHAR(tty), ldata->process_char_map);
1589 set_bit('\n', ldata->process_char_map);
1590 set_bit(EOL_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (L_IEXTEN(tty)) {
1592 set_bit(WERASE_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001593 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 set_bit(LNEXT_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001595 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 set_bit(EOL2_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001597 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (L_ECHO(tty))
1599 set_bit(REPRINT_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001600 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
1602 }
1603 if (I_IXON(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001604 set_bit(START_CHAR(tty), ldata->process_char_map);
1605 set_bit(STOP_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
1607 if (L_ISIG(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001608 set_bit(INTR_CHAR(tty), ldata->process_char_map);
1609 set_bit(QUIT_CHAR(tty), ldata->process_char_map);
1610 set_bit(SUSP_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001612 clear_bit(__DISABLED_CHAR, ldata->process_char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001613 ldata->raw = 0;
1614 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001616 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1618 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1619 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001620 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001622 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09001624 n_tty_set_room(tty);
Wang YanQingdab73b42013-05-09 14:16:47 +08001625 /*
1626 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1627 * been stopped by STOP_CHAR(tty) before it.
1628 */
1629 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
1630 start_tty(tty);
1631 }
1632
Alan Coxf34d7a52008-04-30 00:54:13 -07001633 /* The termios change make the tty ready for I/O */
1634 wake_up_interruptible(&tty->write_wait);
1635 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
1638/**
1639 * n_tty_close - close the ldisc for this tty
1640 * @tty: device
1641 *
Alan Cox4edf1822008-02-08 04:18:44 -08001642 * Called from the terminal layer when this line discipline is
1643 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 * discipline change. The function will not be called while other
1645 * ldisc methods are in progress.
1646 */
Alan Cox4edf1822008-02-08 04:18:44 -08001647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648static void n_tty_close(struct tty_struct *tty)
1649{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001650 struct n_tty_data *ldata = tty->disc_data;
1651
Peter Hurley79901312013-03-11 16:44:23 -04001652 if (tty->link)
1653 n_tty_packet_mode_flush(tty);
1654
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001655 kfree(ldata->read_buf);
1656 kfree(ldata->echo_buf);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001657 kfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001658 tty->disc_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659}
1660
1661/**
1662 * n_tty_open - open an ldisc
1663 * @tty: terminal to open
1664 *
Alan Cox4edf1822008-02-08 04:18:44 -08001665 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 * terminal device. Can sleep. Called serialized so that no
1667 * other events will occur in parallel. No further open will occur
1668 * until a close.
1669 */
1670
1671static int n_tty_open(struct tty_struct *tty)
1672{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001673 struct n_tty_data *ldata;
1674
1675 ldata = kzalloc(sizeof(*ldata), GFP_KERNEL);
1676 if (!ldata)
1677 goto err;
1678
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001679 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001680 mutex_init(&ldata->atomic_read_lock);
1681 mutex_init(&ldata->output_lock);
1682 mutex_init(&ldata->echo_lock);
Ivo Sieben98001212013-01-28 13:32:01 +01001683 raw_spin_lock_init(&ldata->read_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001684
Joe Petersona88a69c2009-01-02 13:40:53 +00001685 /* These are ugly. Currently a malloc failure here can panic */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001686 ldata->read_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1687 ldata->echo_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1688 if (!ldata->read_buf || !ldata->echo_buf)
Jiri Slabyb91939f2012-10-18 22:26:35 +02001689 goto err_free_bufs;
Alan Cox0b4068a2009-06-11 13:05:49 +01001690
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001691 tty->disc_data = ldata;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001692 reset_buffer_flags(tty->disc_data);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001693 ldata->column = 0;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001694 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001696 /* indicate buffer work may resume */
1697 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1698 n_tty_set_termios(tty, NULL);
1699 tty_unthrottle(tty);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 return 0;
Jiri Slabyb91939f2012-10-18 22:26:35 +02001702err_free_bufs:
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001703 kfree(ldata->read_buf);
1704 kfree(ldata->echo_buf);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001705 kfree(ldata);
1706err:
Jiri Slabyb91939f2012-10-18 22:26:35 +02001707 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
1709
1710static inline int input_available_p(struct tty_struct *tty, int amt)
1711{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001712 struct n_tty_data *ldata = tty->disc_data;
1713
OGAWA Hirofumie043e422009-07-29 12:15:56 -07001714 tty_flush_to_ldisc(tty);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001715 if (ldata->icanon && !L_EXTPROC(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001716 if (ldata->canon_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return 1;
Peter Hurleyce741172013-06-15 09:14:20 -04001718 } else if (read_cnt(ldata) >= (amt ? amt : 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return 1;
1720
1721 return 0;
1722}
1723
1724/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001725 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 * @tty: terminal device
1727 * @b: user data
1728 * @nr: size of data
1729 *
Alan Cox11a96d12008-10-13 10:46:24 +01001730 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 * ICANON is off; it copies characters straight from the tty queue to
1732 * user space directly. It can be profitably called twice; once to
1733 * drain the space from the tail pointer to the (physical) end of the
1734 * buffer, and once to drain the space from the (physical) beginning of
1735 * the buffer to head pointer.
1736 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001737 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 *
1739 */
Alan Cox4edf1822008-02-08 04:18:44 -08001740
Alan Cox33f0f882006-01-09 20:54:13 -08001741static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 unsigned char __user **b,
1743 size_t *nr)
1744
1745{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001746 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 int retval;
1748 size_t n;
1749 unsigned long flags;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001750 bool is_eof;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001751 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 retval = 0;
Ivo Sieben98001212013-01-28 13:32:01 +01001754 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001755 n = min(read_cnt(ldata), N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 n = min(*nr, n);
Ivo Sieben98001212013-01-28 13:32:01 +01001757 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (n) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001759 retval = copy_to_user(*b, read_buf_addr(ldata, tail), n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 n -= retval;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001761 is_eof = n == 1 && read_buf(ldata, tail) == EOF_CHAR(tty);
1762 tty_audit_add_data(tty, read_buf_addr(ldata, tail), n,
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001763 ldata->icanon);
Ivo Sieben98001212013-01-28 13:32:01 +01001764 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001765 ldata->read_tail += 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 if (found) {
1854 __clear_bit(eol, ldata->read_flags);
1855 /* this test should be redundant:
1856 * we shouldn't be reading data if
1857 * canon_data is 0
1858 */
1859 if (--ldata->canon_data < 0)
1860 ldata->canon_data = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001861 }
1862 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1863
Peter Hurley32f13522013-06-15 09:14:17 -04001864 if (found)
1865 tty_audit_push(tty);
Peter Hurley88bb0de2013-06-15 09:14:16 -04001866 return 0;
1867}
1868
Al Virocc4191d2008-03-29 03:08:48 +00001869extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08001870 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872/**
1873 * job_control - check job control
1874 * @tty: tty
1875 * @file: file handle
1876 *
1877 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08001878 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07001880 *
Peter Hurley01a5e442013-03-06 08:38:20 -05001881 * Locking: redirected write test is safe
1882 * current->signal->tty check is safe
1883 * ctrl_lock to safely reference tty->pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 */
Alan Cox4edf1822008-02-08 04:18:44 -08001885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886static int job_control(struct tty_struct *tty, struct file *file)
1887{
1888 /* Job control check -- must be done at start and after
1889 every sleep (POSIX.1 7.1.1.4). */
1890 /* NOTE: not yet done after every sleep pending a thorough
1891 check of the logic of this change. -- jlc */
1892 /* don't stop on /dev/console */
Peter Hurley01a5e442013-03-06 08:38:20 -05001893 if (file->f_op->write == redirected_tty_write ||
1894 current->signal->tty != tty)
1895 return 0;
1896
1897 spin_lock_irq(&tty->ctrl_lock);
1898 if (!tty->pgrp)
1899 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
1900 else if (task_pgrp(current) != tty->pgrp) {
1901 spin_unlock_irq(&tty->ctrl_lock);
1902 if (is_ignored(SIGTTIN) || is_current_pgrp_orphaned())
1903 return -EIO;
1904 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
1905 set_thread_flag(TIF_SIGPENDING);
1906 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 }
Peter Hurley01a5e442013-03-06 08:38:20 -05001908 spin_unlock_irq(&tty->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return 0;
1910}
Alan Cox4edf1822008-02-08 04:18:44 -08001911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913/**
Alan Cox11a96d12008-10-13 10:46:24 +01001914 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 * @tty: tty device
1916 * @file: file object
1917 * @buf: userspace buffer pointer
1918 * @nr: size of I/O
1919 *
1920 * Perform reads for the line discipline. We are guaranteed that the
1921 * line discipline will not be closed under us but we may get multiple
1922 * parallel readers and must handle this ourselves. We may also get
1923 * a hangup. Always called in user context, may sleep.
1924 *
1925 * This code must be sure never to sleep through a hangup.
1926 */
Alan Cox4edf1822008-02-08 04:18:44 -08001927
Alan Cox11a96d12008-10-13 10:46:24 +01001928static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 unsigned char __user *buf, size_t nr)
1930{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001931 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 unsigned char __user *b = buf;
1933 DECLARE_WAITQUEUE(wait, current);
1934 int c;
1935 int minimum, time;
1936 ssize_t retval = 0;
1937 ssize_t size;
1938 long timeout;
1939 unsigned long flags;
Alan Cox04f378b2008-04-30 00:53:29 -07001940 int packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942do_it_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08001944 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08001946
Peter Hurley9356b532013-06-15 09:14:24 -04001947 down_read(&tty->termios_rwsem);
1948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 minimum = time = 0;
1950 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001951 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 minimum = MIN_CHAR(tty);
1953 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04001954 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 if (time)
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001956 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 else if (!waitqueue_active(&tty->read_wait) ||
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001958 (ldata->minimum_to_wake > minimum))
1959 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04001961 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001962 ldata->minimum_to_wake = minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964 }
1965
1966 /*
1967 * Internal serialization of reads.
1968 */
1969 if (file->f_flags & O_NONBLOCK) {
Peter Hurley9356b532013-06-15 09:14:24 -04001970 if (!mutex_trylock(&ldata->atomic_read_lock)) {
1971 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return -EAGAIN;
Peter Hurley9356b532013-06-15 09:14:24 -04001973 }
Alan Cox4edf1822008-02-08 04:18:44 -08001974 } else {
Peter Hurley9356b532013-06-15 09:14:24 -04001975 if (mutex_lock_interruptible(&ldata->atomic_read_lock)) {
1976 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 return -ERESTARTSYS;
Peter Hurley9356b532013-06-15 09:14:24 -04001978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
Alan Cox04f378b2008-04-30 00:53:29 -07001980 packet = tty->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 while (nr) {
1984 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07001985 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 unsigned char cs;
1987 if (b != buf)
1988 break;
Alan Cox04f378b2008-04-30 00:53:29 -07001989 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 cs = tty->link->ctrl_status;
1991 tty->link->ctrl_status = 0;
Alan Cox04f378b2008-04-30 00:53:29 -07001992 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -07001993 if (tty_put_user(tty, cs, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 retval = -EFAULT;
1995 b--;
1996 break;
1997 }
1998 nr--;
1999 break;
2000 }
2001 /* This statement must be first before checking for input
2002 so that any interrupt will set the state back to
2003 TASK_RUNNING. */
2004 set_current_state(TASK_INTERRUPTIBLE);
Alan Cox4edf1822008-02-08 04:18:44 -08002005
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002006 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 ((minimum - (b - buf)) >= 1))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002008 ldata->minimum_to_wake = (minimum - (b - buf));
Alan Cox4edf1822008-02-08 04:18:44 -08002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (!input_available_p(tty, 0)) {
2011 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
2012 retval = -EIO;
2013 break;
2014 }
2015 if (tty_hung_up_p(file))
2016 break;
2017 if (!timeout)
2018 break;
2019 if (file->f_flags & O_NONBLOCK) {
2020 retval = -EAGAIN;
2021 break;
2022 }
2023 if (signal_pending(current)) {
2024 retval = -ERESTARTSYS;
2025 break;
2026 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09002027 n_tty_set_room(tty);
Peter Hurley9356b532013-06-15 09:14:24 -04002028 up_read(&tty->termios_rwsem);
2029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 timeout = schedule_timeout(timeout);
Peter Hurley9356b532013-06-15 09:14:24 -04002031
2032 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 continue;
2034 }
2035 __set_current_state(TASK_RUNNING);
2036
2037 /* Deal with packet mode. */
Alan Cox04f378b2008-04-30 00:53:29 -07002038 if (packet && b == buf) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07002039 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 retval = -EFAULT;
2041 b--;
2042 break;
2043 }
2044 nr--;
2045 }
2046
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002047 if (ldata->icanon && !L_EXTPROC(tty)) {
Peter Hurley32f13522013-06-15 09:14:17 -04002048 retval = canon_copy_from_read_buf(tty, &b, &nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 if (retval)
2050 break;
2051 } else {
2052 int uncopied;
Alan Cox04f378b2008-04-30 00:53:29 -07002053 /* The copy function takes the read lock and handles
2054 locking internally for this case */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 uncopied = copy_from_read_buf(tty, &b, &nr);
2056 uncopied += copy_from_read_buf(tty, &b, &nr);
2057 if (uncopied) {
2058 retval = -EFAULT;
2059 break;
2060 }
2061 }
2062
2063 /* If there is enough space in the read buffer now, let the
Peter Hurleya19d0c62013-06-15 09:14:18 -04002064 * low-level driver know. We use chars_in_buffer() to
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 * check the buffer, as it now knows about canonical mode.
2066 * Otherwise, if the driver is throttled and the line is
2067 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
2068 * we won't get any more characters.
2069 */
Peter Hurleye91e52e2013-03-06 08:20:53 -05002070 while (1) {
Peter Hurley9356b532013-06-15 09:14:24 -04002071 int unthrottled;
Peter Hurleye91e52e2013-03-06 08:20:53 -05002072 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
Peter Hurleya19d0c62013-06-15 09:14:18 -04002073 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
Peter Hurleye91e52e2013-03-06 08:20:53 -05002074 break;
2075 if (!tty->count)
2076 break;
Linus Torvalds55db4c62011-06-04 06:33:24 +09002077 n_tty_set_room(tty);
Peter Hurley9356b532013-06-15 09:14:24 -04002078 up_read(&tty->termios_rwsem);
2079 unthrottled = tty_unthrottle_safe(tty);
2080 down_read(&tty->termios_rwsem);
2081 if (!unthrottled)
Peter Hurleye91e52e2013-03-06 08:20:53 -05002082 break;
Linus Torvalds55db4c62011-06-04 06:33:24 +09002083 }
Peter Hurleye91e52e2013-03-06 08:20:53 -05002084 __tty_set_flow_change(tty, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 if (b - buf >= minimum)
2087 break;
2088 if (time)
2089 timeout = time;
2090 }
Jiri Slabybddc7152012-10-18 22:26:42 +02002091 mutex_unlock(&ldata->atomic_read_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 remove_wait_queue(&tty->read_wait, &wait);
2093
2094 if (!waitqueue_active(&tty->read_wait))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002095 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 __set_current_state(TASK_RUNNING);
2098 size = b - buf;
2099 if (size) {
2100 retval = size;
2101 if (nr)
Alan Cox4edf1822008-02-08 04:18:44 -08002102 clear_bit(TTY_PUSH, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002103 } else if (test_and_clear_bit(TTY_PUSH, &tty->flags)) {
2104 up_read(&tty->termios_rwsem);
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01002105 goto do_it_again;
Peter Hurley9356b532013-06-15 09:14:24 -04002106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Linus Torvalds55db4c62011-06-04 06:33:24 +09002108 n_tty_set_room(tty);
Peter Hurley9356b532013-06-15 09:14:24 -04002109 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 return retval;
2111}
2112
2113/**
Alan Cox11a96d12008-10-13 10:46:24 +01002114 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 * @tty: tty device
2116 * @file: file object
2117 * @buf: userspace buffer pointer
2118 * @nr: size of I/O
2119 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002120 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002122 * and other such events. Since the receive code will echo characters,
2123 * thus calling driver write methods, the output_lock is used in
2124 * the output processing functions called here as well as in the
2125 * echo processing function to protect the column state and space
2126 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 *
2128 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002129 *
2130 * Locking: output_lock to protect column state and space left
2131 * (note that the process_output*() functions take this
2132 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 */
Alan Cox4edf1822008-02-08 04:18:44 -08002134
Alan Cox11a96d12008-10-13 10:46:24 +01002135static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002136 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
2138 const unsigned char *b = buf;
2139 DECLARE_WAITQUEUE(wait, current);
2140 int c;
2141 ssize_t retval = 0;
2142
2143 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2144 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2145 retval = tty_check_change(tty);
2146 if (retval)
2147 return retval;
2148 }
2149
Peter Hurley9356b532013-06-15 09:14:24 -04002150 down_read(&tty->termios_rwsem);
2151
Joe Petersona88a69c2009-01-02 13:40:53 +00002152 /* Write out any echoed characters that are still pending */
2153 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002154
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 add_wait_queue(&tty->write_wait, &wait);
2156 while (1) {
2157 set_current_state(TASK_INTERRUPTIBLE);
2158 if (signal_pending(current)) {
2159 retval = -ERESTARTSYS;
2160 break;
2161 }
2162 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2163 retval = -EIO;
2164 break;
2165 }
Peter Hurley582f5592013-05-17 12:49:48 -04002166 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002168 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 if (num < 0) {
2170 if (num == -EAGAIN)
2171 break;
2172 retval = num;
2173 goto break_out;
2174 }
2175 b += num;
2176 nr -= num;
2177 if (nr == 0)
2178 break;
2179 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002180 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 break;
2182 b++; nr--;
2183 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002184 if (tty->ops->flush_chars)
2185 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 } else {
Roman Zippeld6afe272005-07-07 17:56:55 -07002187 while (nr > 0) {
Alan Coxf34d7a52008-04-30 00:54:13 -07002188 c = tty->ops->write(tty, b, nr);
Roman Zippeld6afe272005-07-07 17:56:55 -07002189 if (c < 0) {
2190 retval = c;
2191 goto break_out;
2192 }
2193 if (!c)
2194 break;
2195 b += c;
2196 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199 if (!nr)
2200 break;
2201 if (file->f_flags & O_NONBLOCK) {
2202 retval = -EAGAIN;
2203 break;
2204 }
Peter Hurley9356b532013-06-15 09:14:24 -04002205 up_read(&tty->termios_rwsem);
2206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 schedule();
Peter Hurley9356b532013-06-15 09:14:24 -04002208
2209 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
2211break_out:
2212 __set_current_state(TASK_RUNNING);
2213 remove_wait_queue(&tty->write_wait, &wait);
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002214 if (b - buf != nr && tty->fasync)
2215 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002216 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return (b - buf) ? b - buf : retval;
2218}
2219
2220/**
Alan Cox11a96d12008-10-13 10:46:24 +01002221 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 * @tty: terminal device
2223 * @file: file accessing it
2224 * @wait: poll table
2225 *
2226 * Called when the line discipline is asked to poll() for data or
2227 * for special events. This code is not serialized with respect to
2228 * other events save open/close.
2229 *
2230 * This code must be sure never to sleep through a hangup.
2231 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 */
Alan Cox4edf1822008-02-08 04:18:44 -08002233
Alan Cox11a96d12008-10-13 10:46:24 +01002234static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002235 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002237 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 unsigned int mask = 0;
2239
2240 poll_wait(file, &tty->read_wait, wait);
2241 poll_wait(file, &tty->write_wait, wait);
2242 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
2243 mask |= POLLIN | POLLRDNORM;
2244 if (tty->packet && tty->link->ctrl_status)
2245 mask |= POLLPRI | POLLIN | POLLRDNORM;
2246 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2247 mask |= POLLHUP;
2248 if (tty_hung_up_p(file))
2249 mask |= POLLHUP;
2250 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2251 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002252 ldata->minimum_to_wake = MIN_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 else
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002254 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002256 if (tty->ops->write && !tty_is_writelocked(tty) &&
2257 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2258 tty_write_room(tty) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 mask |= POLLOUT | POLLWRNORM;
2260 return mask;
2261}
2262
Jiri Slaby57c94122012-10-18 22:26:43 +02002263static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002264{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002265 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002266
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002267 if (!ldata->canon_data)
Alan Cox47afa7a2008-10-13 10:44:17 +01002268 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002269 head = ldata->canon_head;
2270 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002271 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002272 /* Skip EOF-chars.. */
2273 while (head != tail) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002274 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2275 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002276 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002277 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002278 }
2279 return nr;
2280}
2281
2282static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2283 unsigned int cmd, unsigned long arg)
2284{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002285 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002286 int retval;
2287
2288 switch (cmd) {
2289 case TIOCOUTQ:
2290 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2291 case TIOCINQ:
Alan Cox17b82062008-10-13 10:45:06 +01002292 /* FIXME: Locking */
Peter Hurleyce741172013-06-15 09:14:20 -04002293 retval = read_cnt(ldata);
Alan Cox47afa7a2008-10-13 10:44:17 +01002294 if (L_ICANON(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002295 retval = inq_canon(ldata);
Alan Cox47afa7a2008-10-13 10:44:17 +01002296 return put_user(retval, (unsigned int __user *) arg);
2297 default:
2298 return n_tty_ioctl_helper(tty, file, cmd, arg);
2299 }
2300}
2301
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002302static void n_tty_fasync(struct tty_struct *tty, int on)
2303{
2304 struct n_tty_data *ldata = tty->disc_data;
2305
2306 if (!waitqueue_active(&tty->read_wait)) {
2307 if (on)
2308 ldata->minimum_to_wake = 1;
2309 else if (!tty->fasync)
2310 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2311 }
2312}
2313
Alan Coxa352def2008-07-16 21:53:12 +01002314struct tty_ldisc_ops tty_ldisc_N_TTY = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002315 .magic = TTY_LDISC_MAGIC,
2316 .name = "n_tty",
2317 .open = n_tty_open,
2318 .close = n_tty_close,
2319 .flush_buffer = n_tty_flush_buffer,
2320 .chars_in_buffer = n_tty_chars_in_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002321 .read = n_tty_read,
2322 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002323 .ioctl = n_tty_ioctl,
2324 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002325 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002326 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002327 .write_wakeup = n_tty_write_wakeup,
2328 .fasync = n_tty_fasync,
Peter Hurley24a89d12013-06-15 09:14:15 -04002329 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002331
2332/**
2333 * n_tty_inherit_ops - inherit N_TTY methods
2334 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2335 *
George Spelvin593fb1ae42013-02-12 02:00:43 -05002336 * Enables a 'subclass' line discipline to 'inherit' N_TTY
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002337 * methods.
2338 */
2339
2340void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2341{
2342 *ops = tty_ldisc_N_TTY;
2343 ops->owner = NULL;
2344 ops->refcount = ops->flags = 0;
2345}
2346EXPORT_SYMBOL_GPL(n_tty_inherit_ops);