blob: 1098dd73a4f7f9b51ed4070ef9669d42acdc6c23 [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
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400107 size_t canon_head;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200108 unsigned int canon_column;
Jiri Slabybddc7152012-10-18 22:26:42 +0200109
110 struct mutex atomic_read_lock;
111 struct mutex output_lock;
112 struct mutex echo_lock;
Ivo Sieben98001212013-01-28 13:32:01 +0100113 raw_spinlock_t read_lock;
Jiri Slaby70ece7a2012-10-18 22:26:38 +0200114};
115
Peter Hurleyce741172013-06-15 09:14:20 -0400116static inline size_t read_cnt(struct n_tty_data *ldata)
117{
Peter Hurleya2f73be2013-06-15 09:14:22 -0400118 return ldata->read_head - ldata->read_tail;
Peter Hurleyce741172013-06-15 09:14:20 -0400119}
120
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400121static inline unsigned char read_buf(struct n_tty_data *ldata, size_t i)
122{
123 return ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
124}
125
126static inline unsigned char *read_buf_addr(struct n_tty_data *ldata, size_t i)
127{
128 return &ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
129}
130
Miloslav Trmac522ed772007-07-15 23:40:56 -0700131static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
132 unsigned char __user *ptr)
133{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200134 struct n_tty_data *ldata = tty->disc_data;
135
136 tty_audit_add_data(tty, &x, 1, ldata->icanon);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700137 return put_user(x, ptr);
138}
139
Peter Hurley24a89d12013-06-15 09:14:15 -0400140static int receive_room(struct tty_struct *tty)
Linus Torvalds55db4c62011-06-04 06:33:24 +0900141{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200142 struct n_tty_data *ldata = tty->disc_data;
Jaeden Amero090abf72012-07-27 08:43:11 -0500143 int left;
Peter Hurleyb8483052013-06-15 07:28:30 -0400144
Jaeden Amero090abf72012-07-27 08:43:11 -0500145 if (I_PARMRK(tty)) {
146 /* Multiply read_cnt by 3, since each byte might take up to
147 * three times as many spaces when PARMRK is set (depending on
148 * its flags, e.g. parity error). */
Peter Hurleyce741172013-06-15 09:14:20 -0400149 left = N_TTY_BUF_SIZE - read_cnt(ldata) * 3 - 1;
Jaeden Amero090abf72012-07-27 08:43:11 -0500150 } else
Peter Hurleyce741172013-06-15 09:14:20 -0400151 left = N_TTY_BUF_SIZE - read_cnt(ldata) - 1;
Jaeden Amero090abf72012-07-27 08:43:11 -0500152
Linus Torvalds55db4c62011-06-04 06:33:24 +0900153 /*
154 * If we are doing input canonicalization, and there are no
155 * pending newlines, let characters through without limit, so
156 * that erase characters will be handled. Other excess
157 * characters will be beeped.
158 */
159 if (left <= 0)
Peter Hurleya73d3d62013-06-15 09:14:25 -0400160 left = ldata->icanon && ldata->canon_head == ldata->read_tail;
Linus Torvalds55db4c62011-06-04 06:33:24 +0900161
Peter Hurley24a89d12013-06-15 09:14:15 -0400162 return left;
Peter Hurley7879a9f2013-06-15 07:28:31 -0400163}
164
Peter Hurley24a89d12013-06-15 09:14:15 -0400165/**
166 * n_tty_set_room - receive space
167 * @tty: terminal
168 *
169 * Re-schedules the flip buffer work if space just became available.
170 *
171 * Locks: Concurrent update is protected with read_lock
172 */
173
Peter Hurley7879a9f2013-06-15 07:28:31 -0400174static void n_tty_set_room(struct tty_struct *tty)
175{
Peter Hurley24a89d12013-06-15 09:14:15 -0400176 struct n_tty_data *ldata = tty->disc_data;
177
Linus Torvalds55db4c62011-06-04 06:33:24 +0900178 /* Did this open up the receive buffer? We may need to flip */
Peter Hurley24a89d12013-06-15 09:14:15 -0400179 if (unlikely(ldata->no_room) && receive_room(tty)) {
180 ldata->no_room = 0;
181
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200182 WARN_RATELIMIT(tty->port->itty == NULL,
Sasha Levincadf7482012-10-25 14:26:35 -0400183 "scheduling with invalid itty\n");
Peter Hurley21622932013-03-11 16:44:21 -0400184 /* see if ldisc has been killed - if so, this means that
185 * even though the ldisc has been halted and ->buf.work
186 * cancelled, ->buf.work is about to be rescheduled
187 */
188 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
189 "scheduling buffer work for halted ldisc\n");
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200190 schedule_work(&tty->port->buf.work);
191 }
Linus Torvalds55db4c62011-06-04 06:33:24 +0900192}
193
Jiri Slaby57c94122012-10-18 22:26:43 +0200194static void put_tty_queue_nolock(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Peter Hurleyce741172013-06-15 09:14:20 -0400196 if (read_cnt(ldata) < N_TTY_BUF_SIZE) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400197 *read_buf_addr(ldata, ldata->read_head) = c;
198 ldata->read_head++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200}
201
Alan Cox17b82062008-10-13 10:45:06 +0100202/**
203 * put_tty_queue - add character to tty
204 * @c: character
Jiri Slaby57c94122012-10-18 22:26:43 +0200205 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100206 *
207 * Add a character to the tty read_buf queue. This is done under the
208 * read_lock to serialize character addition and also to protect us
209 * against parallel reads or flushes
210 */
211
Jiri Slaby57c94122012-10-18 22:26:43 +0200212static void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 unsigned long flags;
215 /*
216 * The problem of stomping on the buffers ends here.
217 * Why didn't anyone see this one coming? --AJK
218 */
Ivo Sieben98001212013-01-28 13:32:01 +0100219 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slaby57c94122012-10-18 22:26:43 +0200220 put_tty_queue_nolock(c, ldata);
Ivo Sieben98001212013-01-28 13:32:01 +0100221 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 * reset_buffer_flags - reset buffer state
226 * @tty: terminal to reset
227 *
Peter Hurley25518c62013-03-11 16:44:31 -0400228 * Reset the read buffer counters and clear the flags.
229 * Called from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100230 *
231 * Locking: tty_read_lock for read fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000233
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400234static void reset_buffer_flags(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 unsigned long flags;
237
Ivo Sieben98001212013-01-28 13:32:01 +0100238 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleya73d3d62013-06-15 09:14:25 -0400239 ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
Ivo Sieben98001212013-01-28 13:32:01 +0100240 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Joe Petersona88a69c2009-01-02 13:40:53 +0000241
Jiri Slabybddc7152012-10-18 22:26:42 +0200242 mutex_lock(&ldata->echo_lock);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200243 ldata->echo_pos = ldata->echo_cnt = ldata->echo_overrun = 0;
Jiri Slabybddc7152012-10-18 22:26:42 +0200244 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000245
Peter Hurleya73d3d62013-06-15 09:14:25 -0400246 ldata->erasing = 0;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200247 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
Peter Hurleya30737a2013-03-11 16:44:22 -0400250static void n_tty_packet_mode_flush(struct tty_struct *tty)
251{
252 unsigned long flags;
253
254 spin_lock_irqsave(&tty->ctrl_lock, flags);
255 if (tty->link->packet) {
256 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
257 wake_up_interruptible(&tty->link->read_wait);
258 }
259 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
260}
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/**
263 * n_tty_flush_buffer - clean input queue
264 * @tty: terminal device
265 *
Peter Hurley25518c62013-03-11 16:44:31 -0400266 * Flush the input buffer. Called when the tty layer wants the
267 * buffer flushed (eg at hangup) or when the N_TTY line discipline
268 * internally has to clean the pending queue (for example some signals).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 *
Alan Cox17b82062008-10-13 10:45:06 +0100270 * Locking: ctrl_lock, read_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 */
Alan Cox4edf1822008-02-08 04:18:44 -0800272
273static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400275 reset_buffer_flags(tty->disc_data);
276 n_tty_set_room(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800277
Peter Hurleya30737a2013-03-11 16:44:22 -0400278 if (tty->link)
279 n_tty_packet_mode_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282/**
283 * n_tty_chars_in_buffer - report available bytes
284 * @tty: tty device
285 *
286 * Report the number of characters buffered to be delivered to user
Alan Cox4edf1822008-02-08 04:18:44 -0800287 * at this instant in time.
Alan Cox17b82062008-10-13 10:45:06 +0100288 *
289 * Locking: read_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Alan Cox4edf1822008-02-08 04:18:44 -0800291
Peter Hurleya19d0c62013-06-15 09:14:18 -0400292static ssize_t chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200294 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 unsigned long flags;
296 ssize_t n = 0;
297
Ivo Sieben98001212013-01-28 13:32:01 +0100298 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400299 if (!ldata->icanon)
Peter Hurleyce741172013-06-15 09:14:20 -0400300 n = read_cnt(ldata);
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400301 else
302 n = ldata->canon_head - ldata->read_tail;
Ivo Sieben98001212013-01-28 13:32:01 +0100303 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return n;
305}
306
Peter Hurleya19d0c62013-06-15 09:14:18 -0400307static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
308{
Peter Hurley47534082013-06-15 09:14:19 -0400309 WARN_ONCE(1, "%s is deprecated and scheduled for removal.", __func__);
Peter Hurleya19d0c62013-06-15 09:14:18 -0400310 return chars_in_buffer(tty);
311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313/**
314 * is_utf8_continuation - utf8 multibyte check
315 * @c: byte to check
316 *
317 * Returns true if the utf8 character 'c' is a multibyte continuation
318 * character. We use this to correctly compute the on screen size
319 * of the character when printing
320 */
Alan Cox4edf1822008-02-08 04:18:44 -0800321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322static inline int is_utf8_continuation(unsigned char c)
323{
324 return (c & 0xc0) == 0x80;
325}
326
327/**
328 * is_continuation - multibyte check
329 * @c: byte to check
330 *
331 * Returns true if the utf8 character 'c' is a multibyte continuation
332 * character and the terminal is in unicode mode.
333 */
Alan Cox4edf1822008-02-08 04:18:44 -0800334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335static inline int is_continuation(unsigned char c, struct tty_struct *tty)
336{
337 return I_IUTF8(tty) && is_utf8_continuation(c);
338}
339
340/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000341 * do_output_char - output one character
342 * @c: character (or partial unicode symbol)
343 * @tty: terminal device
344 * @space: space available in tty driver write buffer
345 *
346 * This is a helper function that handles one output character
347 * (including special characters like TAB, CR, LF, etc.),
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600348 * doing OPOST processing and putting the results in the
349 * tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000350 *
351 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
352 * and NLDLY. They simply aren't relevant in the world today.
353 * If you ever need them, add them here.
354 *
355 * Returns the number of bytes of buffer space used or -1 if
356 * no space left.
357 *
358 * Locking: should be called under the output_lock to protect
359 * the column state and space left in the buffer
360 */
361
362static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
363{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200364 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000365 int spaces;
366
367 if (!space)
368 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000369
Joe Petersona88a69c2009-01-02 13:40:53 +0000370 switch (c) {
371 case '\n':
372 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200373 ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000374 if (O_ONLCR(tty)) {
375 if (space < 2)
376 return -1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200377 ldata->canon_column = ldata->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700378 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000379 return 2;
380 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200381 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000382 break;
383 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200384 if (O_ONOCR(tty) && ldata->column == 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000385 return 0;
386 if (O_OCRNL(tty)) {
387 c = '\n';
388 if (O_ONLRET(tty))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200389 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000390 break;
391 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200392 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000393 break;
394 case '\t':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200395 spaces = 8 - (ldata->column & 7);
Joe Petersona88a69c2009-01-02 13:40:53 +0000396 if (O_TABDLY(tty) == XTABS) {
397 if (space < spaces)
398 return -1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200399 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000400 tty->ops->write(tty, " ", spaces);
401 return spaces;
402 }
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200403 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000404 break;
405 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200406 if (ldata->column > 0)
407 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000408 break;
409 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000410 if (!iscntrl(c)) {
411 if (O_OLCUC(tty))
412 c = toupper(c);
413 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200414 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000415 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000416 break;
417 }
418
419 tty_put_char(tty, c);
420 return 1;
421}
422
423/**
424 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 * @c: character (or partial unicode symbol)
426 * @tty: terminal device
427 *
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600428 * Output one character with OPOST processing.
429 * Returns -1 when the output device is full and the character
430 * must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000432 * Locking: output_lock to protect column state and space left
433 * (also, this is called from n_tty_write under the
434 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 */
Alan Cox4edf1822008-02-08 04:18:44 -0800436
Joe Petersona88a69c2009-01-02 13:40:53 +0000437static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Jiri Slabybddc7152012-10-18 22:26:42 +0200439 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000440 int space, retval;
441
Jiri Slabybddc7152012-10-18 22:26:42 +0200442 mutex_lock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Alan Coxf34d7a52008-04-30 00:54:13 -0700444 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000445 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Jiri Slabybddc7152012-10-18 22:26:42 +0200447 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000448 if (retval < 0)
449 return -1;
450 else
451 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000455 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * @tty: terminal device
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600457 * @buf: character buffer
458 * @nr: number of bytes to output
459 *
460 * Output a block of characters with OPOST processing.
461 * Returns the number of characters output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 *
463 * This path is used to speed up block console writes, among other
464 * things when processing blocks of output data. It handles only
465 * the simple cases normally found and helps to generate blocks of
466 * symbols for the console driver and thus improve performance.
467 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000468 * Locking: output_lock to protect column state and space left
469 * (also, this is called from n_tty_write under the
470 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 */
Alan Cox4edf1822008-02-08 04:18:44 -0800472
Joe Petersona88a69c2009-01-02 13:40:53 +0000473static ssize_t process_output_block(struct tty_struct *tty,
474 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200476 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100478 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 const unsigned char *cp;
480
Jiri Slabybddc7152012-10-18 22:26:42 +0200481 mutex_lock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000482
Alan Coxf34d7a52008-04-30 00:54:13 -0700483 space = tty_write_room(tty);
Alan Cox300a6202009-01-02 13:41:04 +0000484 if (!space) {
Jiri Slabybddc7152012-10-18 22:26:42 +0200485 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (nr > space)
489 nr = space;
490
491 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000492 unsigned char c = *cp;
493
494 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 case '\n':
496 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200497 ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (O_ONLCR(tty))
499 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200500 ldata->canon_column = ldata->column;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 break;
502 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200503 if (O_ONOCR(tty) && ldata->column == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 goto break_out;
505 if (O_OCRNL(tty))
506 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200507 ldata->canon_column = ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 break;
509 case '\t':
510 goto break_out;
511 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200512 if (ldata->column > 0)
513 ldata->column--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000516 if (!iscntrl(c)) {
517 if (O_OLCUC(tty))
518 goto break_out;
519 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200520 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
523 }
524 }
525break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700526 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000527
Jiri Slabybddc7152012-10-18 22:26:42 +0200528 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return i;
530}
531
Joe Petersona88a69c2009-01-02 13:40:53 +0000532/**
533 * process_echoes - write pending echo characters
534 * @tty: terminal device
535 *
536 * Write previously buffered echo (and other ldisc-generated)
537 * characters to the tty.
538 *
539 * Characters generated by the ldisc (including echoes) need to
540 * be buffered because the driver's write buffer can fill during
541 * heavy program output. Echoing straight to the driver will
542 * often fail under these conditions, causing lost characters and
543 * resulting mismatches of ldisc state information.
544 *
545 * Since the ldisc state must represent the characters actually sent
546 * to the driver at the time of the write, operations like certain
547 * changes in column state are also saved in the buffer and executed
548 * here.
549 *
550 * A circular fifo buffer is used so that the most recent characters
551 * are prioritized. Also, when control characters are echoed with a
552 * prefixed "^", the pair is treated atomically and thus not separated.
553 *
554 * Locking: output_lock to protect column state and space left,
555 * echo_lock to protect the echo buffer
556 */
557
558static void process_echoes(struct tty_struct *tty)
559{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200560 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000561 int space, nr;
562 unsigned char c;
563 unsigned char *cp, *buf_end;
564
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200565 if (!ldata->echo_cnt)
Joe Petersona88a69c2009-01-02 13:40:53 +0000566 return;
567
Jiri Slabybddc7152012-10-18 22:26:42 +0200568 mutex_lock(&ldata->output_lock);
569 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000570
571 space = tty_write_room(tty);
572
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200573 buf_end = ldata->echo_buf + N_TTY_BUF_SIZE;
574 cp = ldata->echo_buf + ldata->echo_pos;
575 nr = ldata->echo_cnt;
Joe Petersona88a69c2009-01-02 13:40:53 +0000576 while (nr > 0) {
577 c = *cp;
578 if (c == ECHO_OP_START) {
579 unsigned char op;
580 unsigned char *opp;
581 int no_space_left = 0;
582
583 /*
584 * If the buffer byte is the start of a multi-byte
585 * operation, get the next byte, which is either the
586 * op code or a control character value.
587 */
588 opp = cp + 1;
589 if (opp == buf_end)
590 opp -= N_TTY_BUF_SIZE;
591 op = *opp;
Alan Cox300a6202009-01-02 13:41:04 +0000592
Joe Petersona88a69c2009-01-02 13:40:53 +0000593 switch (op) {
594 unsigned int num_chars, num_bs;
595
596 case ECHO_OP_ERASE_TAB:
597 if (++opp == buf_end)
598 opp -= N_TTY_BUF_SIZE;
599 num_chars = *opp;
600
601 /*
602 * Determine how many columns to go back
603 * in order to erase the tab.
604 * This depends on the number of columns
605 * used by other characters within the tab
606 * area. If this (modulo 8) count is from
607 * the start of input rather than from a
608 * previous tab, we offset by canon column.
609 * Otherwise, tab spacing is normal.
610 */
611 if (!(num_chars & 0x80))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200612 num_chars += ldata->canon_column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000613 num_bs = 8 - (num_chars & 7);
614
615 if (num_bs > space) {
616 no_space_left = 1;
617 break;
618 }
619 space -= num_bs;
620 while (num_bs--) {
621 tty_put_char(tty, '\b');
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200622 if (ldata->column > 0)
623 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000624 }
625 cp += 3;
626 nr -= 3;
627 break;
628
629 case ECHO_OP_SET_CANON_COL:
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200630 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000631 cp += 2;
632 nr -= 2;
633 break;
634
635 case ECHO_OP_MOVE_BACK_COL:
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200636 if (ldata->column > 0)
637 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000638 cp += 2;
639 nr -= 2;
640 break;
641
642 case ECHO_OP_START:
643 /* This is an escaped echo op start code */
644 if (!space) {
645 no_space_left = 1;
646 break;
647 }
648 tty_put_char(tty, ECHO_OP_START);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200649 ldata->column++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000650 space--;
651 cp += 2;
652 nr -= 2;
653 break;
654
655 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000656 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600657 * If the op is not a special byte code,
658 * it is a ctrl char tagged to be echoed
659 * as "^X" (where X is the letter
660 * representing the control char).
661 * Note that we must ensure there is
662 * enough space for the whole ctrl pair.
663 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000664 */
Joe Peterson62b26352009-09-09 15:03:47 -0600665 if (space < 2) {
666 no_space_left = 1;
667 break;
668 }
669 tty_put_char(tty, '^');
670 tty_put_char(tty, op ^ 0100);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200671 ldata->column += 2;
Joe Peterson62b26352009-09-09 15:03:47 -0600672 space -= 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000673 cp += 2;
674 nr -= 2;
675 }
676
677 if (no_space_left)
678 break;
679 } else {
Peter Hurley582f5592013-05-17 12:49:48 -0400680 if (O_OPOST(tty)) {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600681 int retval = do_output_char(c, tty, space);
682 if (retval < 0)
683 break;
684 space -= retval;
685 } else {
686 if (!space)
687 break;
688 tty_put_char(tty, c);
689 space -= 1;
690 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000691 cp += 1;
692 nr -= 1;
693 }
694
695 /* When end of circular buffer reached, wrap around */
696 if (cp >= buf_end)
697 cp -= N_TTY_BUF_SIZE;
698 }
699
700 if (nr == 0) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200701 ldata->echo_pos = 0;
702 ldata->echo_cnt = 0;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200703 ldata->echo_overrun = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000704 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200705 int num_processed = ldata->echo_cnt - nr;
706 ldata->echo_pos += num_processed;
707 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
708 ldata->echo_cnt = nr;
Joe Petersona88a69c2009-01-02 13:40:53 +0000709 if (num_processed > 0)
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200710 ldata->echo_overrun = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000711 }
712
Jiri Slabybddc7152012-10-18 22:26:42 +0200713 mutex_unlock(&ldata->echo_lock);
714 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000715
716 if (tty->ops->flush_chars)
717 tty->ops->flush_chars(tty);
718}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000721 * add_echo_byte - add a byte to the echo buffer
722 * @c: unicode byte to echo
Jiri Slaby57c94122012-10-18 22:26:43 +0200723 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000724 *
725 * Add a character or operation byte to the echo buffer.
726 *
727 * Should be called under the echo lock to protect the echo buffer.
728 */
729
Jiri Slaby57c94122012-10-18 22:26:43 +0200730static void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000731{
732 int new_byte_pos;
733
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200734 if (ldata->echo_cnt == N_TTY_BUF_SIZE) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000735 /* Circular buffer is already at capacity */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200736 new_byte_pos = ldata->echo_pos;
Joe Petersona88a69c2009-01-02 13:40:53 +0000737
738 /*
739 * Since the buffer start position needs to be advanced,
740 * be sure to step by a whole operation byte group.
741 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200742 if (ldata->echo_buf[ldata->echo_pos] == ECHO_OP_START) {
743 if (ldata->echo_buf[(ldata->echo_pos + 1) &
Joe Petersona88a69c2009-01-02 13:40:53 +0000744 (N_TTY_BUF_SIZE - 1)] ==
745 ECHO_OP_ERASE_TAB) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200746 ldata->echo_pos += 3;
747 ldata->echo_cnt -= 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000748 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200749 ldata->echo_pos += 2;
750 ldata->echo_cnt -= 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000751 }
752 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200753 ldata->echo_pos++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000754 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200755 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000756
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200757 ldata->echo_overrun = 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000758 } else {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200759 new_byte_pos = ldata->echo_pos + ldata->echo_cnt;
Joe Petersona88a69c2009-01-02 13:40:53 +0000760 new_byte_pos &= N_TTY_BUF_SIZE - 1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200761 ldata->echo_cnt++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000762 }
763
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200764 ldata->echo_buf[new_byte_pos] = c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000765}
766
767/**
768 * echo_move_back_col - add operation to move back a column
Jiri Slaby57c94122012-10-18 22:26:43 +0200769 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000770 *
771 * Add an operation to the echo buffer to move back one column.
772 *
773 * Locking: echo_lock to protect the echo buffer
774 */
775
Jiri Slaby57c94122012-10-18 22:26:43 +0200776static void echo_move_back_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000777{
Jiri Slabybddc7152012-10-18 22:26:42 +0200778 mutex_lock(&ldata->echo_lock);
Jiri Slaby57c94122012-10-18 22:26:43 +0200779 add_echo_byte(ECHO_OP_START, ldata);
780 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
Jiri Slabybddc7152012-10-18 22:26:42 +0200781 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000782}
783
784/**
785 * echo_set_canon_col - add operation to set the canon column
Jiri Slaby57c94122012-10-18 22:26:43 +0200786 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000787 *
788 * Add an operation to the echo buffer to set the canon column
789 * to the current column.
790 *
791 * Locking: echo_lock to protect the echo buffer
792 */
793
Jiri Slaby57c94122012-10-18 22:26:43 +0200794static void echo_set_canon_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000795{
Jiri Slabybddc7152012-10-18 22:26:42 +0200796 mutex_lock(&ldata->echo_lock);
Jiri Slaby57c94122012-10-18 22:26:43 +0200797 add_echo_byte(ECHO_OP_START, ldata);
798 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
Jiri Slabybddc7152012-10-18 22:26:42 +0200799 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000800}
801
802/**
803 * echo_erase_tab - add operation to erase a tab
804 * @num_chars: number of character columns already used
805 * @after_tab: true if num_chars starts after a previous tab
Jiri Slaby57c94122012-10-18 22:26:43 +0200806 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000807 *
808 * Add an operation to the echo buffer to erase a tab.
809 *
810 * Called by the eraser function, which knows how many character
811 * columns have been used since either a previous tab or the start
812 * of input. This information will be used later, along with
813 * canon column (if applicable), to go back the correct number
814 * of columns.
815 *
816 * Locking: echo_lock to protect the echo buffer
817 */
818
819static void echo_erase_tab(unsigned int num_chars, int after_tab,
Jiri Slaby57c94122012-10-18 22:26:43 +0200820 struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000821{
Jiri Slabybddc7152012-10-18 22:26:42 +0200822 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000823
Jiri Slaby57c94122012-10-18 22:26:43 +0200824 add_echo_byte(ECHO_OP_START, ldata);
825 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000826
827 /* We only need to know this modulo 8 (tab spacing) */
828 num_chars &= 7;
829
830 /* Set the high bit as a flag if num_chars is after a previous tab */
831 if (after_tab)
832 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000833
Jiri Slaby57c94122012-10-18 22:26:43 +0200834 add_echo_byte(num_chars, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000835
Jiri Slabybddc7152012-10-18 22:26:42 +0200836 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000837}
838
839/**
840 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 * @c: unicode byte to echo
842 * @tty: terminal device
843 *
Alan Cox4edf1822008-02-08 04:18:44 -0800844 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100846 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000847 * This variant does not treat control characters specially.
848 *
849 * Locking: echo_lock to protect the echo buffer
850 */
851
Jiri Slaby57c94122012-10-18 22:26:43 +0200852static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000853{
Jiri Slabybddc7152012-10-18 22:26:42 +0200854 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000855 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200856 add_echo_byte(ECHO_OP_START, ldata);
857 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000858 } else {
Jiri Slaby57c94122012-10-18 22:26:43 +0200859 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000860 }
Jiri Slabybddc7152012-10-18 22:26:42 +0200861 mutex_unlock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000862}
863
864/**
865 * echo_char - echo a character
866 * @c: unicode byte to echo
867 * @tty: terminal device
868 *
869 * Echo user input back onto the screen. This must be called only when
870 * L_ECHO(tty) is true. Called from the driver receive_buf path.
871 *
Joe Peterson62b26352009-09-09 15:03:47 -0600872 * This variant tags control characters to be echoed as "^X"
873 * (where X is the letter representing the control char).
Joe Petersona88a69c2009-01-02 13:40:53 +0000874 *
875 * Locking: echo_lock to protect the echo buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 */
877
878static void echo_char(unsigned char c, struct tty_struct *tty)
879{
Jiri Slabybddc7152012-10-18 22:26:42 +0200880 struct n_tty_data *ldata = tty->disc_data;
881
882 mutex_lock(&ldata->echo_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000883
884 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200885 add_echo_byte(ECHO_OP_START, ldata);
886 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000887 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600888 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Jiri Slaby57c94122012-10-18 22:26:43 +0200889 add_echo_byte(ECHO_OP_START, ldata);
890 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000891 }
892
Jiri Slabybddc7152012-10-18 22:26:42 +0200893 mutex_unlock(&ldata->echo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
Alan Cox17b82062008-10-13 10:45:06 +0100896/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000897 * finish_erasing - complete erase
Jiri Slaby57c94122012-10-18 22:26:43 +0200898 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100899 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000900
Jiri Slaby57c94122012-10-18 22:26:43 +0200901static inline void finish_erasing(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200903 if (ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200904 echo_char_raw('/', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200905 ldata->erasing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
907}
908
909/**
910 * eraser - handle erase function
911 * @c: character input
912 * @tty: terminal device
913 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200914 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 * present in the stream from the driver layer. Handles the complexities
916 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100917 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000918 * Locking: read_lock for tty buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 */
Alan Cox4edf1822008-02-08 04:18:44 -0800920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921static void eraser(unsigned char c, struct tty_struct *tty)
922{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200923 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 enum { ERASE, WERASE, KILL } kill_type;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400925 size_t head;
926 size_t cnt;
927 int seen_alnums;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 unsigned long flags;
929
Alan Cox17b82062008-10-13 10:45:06 +0100930 /* FIXME: locking needed ? */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200931 if (ldata->read_head == ldata->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000932 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return;
934 }
935 if (c == ERASE_CHAR(tty))
936 kill_type = ERASE;
937 else if (c == WERASE_CHAR(tty))
938 kill_type = WERASE;
939 else {
940 if (!L_ECHO(tty)) {
Ivo Sieben98001212013-01-28 13:32:01 +0100941 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200942 ldata->read_head = ldata->canon_head;
Ivo Sieben98001212013-01-28 13:32:01 +0100943 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 return;
945 }
946 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
Ivo Sieben98001212013-01-28 13:32:01 +0100947 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200948 ldata->read_head = ldata->canon_head;
Ivo Sieben98001212013-01-28 13:32:01 +0100949 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Jiri Slaby57c94122012-10-18 22:26:43 +0200950 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 echo_char(KILL_CHAR(tty), tty);
952 /* Add a newline if ECHOK is on and ECHOKE is off. */
953 if (L_ECHOK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +0200954 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return;
956 }
957 kill_type = KILL;
958 }
959
960 seen_alnums = 0;
Alan Cox17b82062008-10-13 10:45:06 +0100961 /* FIXME: Locking ?? */
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200962 while (ldata->read_head != ldata->canon_head) {
963 head = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 /* erase a single possibly multibyte character */
966 do {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400967 head--;
968 c = read_buf(ldata, head);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200969 } while (is_continuation(c, tty) && head != ldata->canon_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 /* do not partially erase */
972 if (is_continuation(c, tty))
973 break;
974
975 if (kill_type == WERASE) {
976 /* Equivalent to BSD's ALTWERASE. */
977 if (isalnum(c) || c == '_')
978 seen_alnums++;
979 else if (seen_alnums)
980 break;
981 }
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400982 cnt = ldata->read_head - head;
Ivo Sieben98001212013-01-28 13:32:01 +0100983 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200984 ldata->read_head = head;
Ivo Sieben98001212013-01-28 13:32:01 +0100985 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (L_ECHO(tty)) {
987 if (L_ECHOPRT(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200988 if (!ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200989 echo_char_raw('\\', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200990 ldata->erasing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
992 /* if cnt > 1, output a multi-byte character */
993 echo_char(c, tty);
994 while (--cnt > 0) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400995 head++;
996 echo_char_raw(read_buf(ldata, head), ldata);
Jiri Slaby57c94122012-10-18 22:26:43 +0200997 echo_move_back_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1000 echo_char(ERASE_CHAR(tty), tty);
1001 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +00001002 unsigned int num_chars = 0;
1003 int after_tab = 0;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001004 size_t tail = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Joe Petersona88a69c2009-01-02 13:40:53 +00001006 /*
1007 * Count the columns used for characters
1008 * since the start of input or after a
1009 * previous tab.
1010 * This info is used to go back the correct
1011 * number of columns.
1012 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001013 while (tail != ldata->canon_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001014 tail--;
1015 c = read_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +00001016 if (c == '\t') {
1017 after_tab = 1;
1018 break;
Alan Cox300a6202009-01-02 13:41:04 +00001019 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +00001021 num_chars += 2;
1022 } else if (!is_continuation(c, tty)) {
1023 num_chars++;
1024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001026 echo_erase_tab(num_chars, after_tab, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 } else {
1028 if (iscntrl(c) && L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001029 echo_char_raw('\b', ldata);
1030 echo_char_raw(' ', ldata);
1031 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001034 echo_char_raw('\b', ldata);
1035 echo_char_raw(' ', ldata);
1036 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038 }
1039 }
1040 if (kill_type == ERASE)
1041 break;
1042 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001043 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001044 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047/**
1048 * isig - handle the ISIG optio
1049 * @sig: signal
1050 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001052 * Called when a signal is being sent due to terminal input.
1053 * Called from the driver receive_buf path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001054 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001055 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
Alan Cox4edf1822008-02-08 04:18:44 -08001057
Peter Hurley8c985d12013-03-06 08:38:19 -05001058static inline void isig(int sig, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Peter Hurley8c985d12013-03-06 08:38:19 -05001060 struct pid *tty_pgrp = tty_get_pgrp(tty);
1061 if (tty_pgrp) {
1062 kill_pgrp(tty_pgrp, sig, 1);
1063 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065}
1066
1067/**
1068 * n_tty_receive_break - handle break
1069 * @tty: terminal
1070 *
1071 * An RS232 break event has been hit in the incoming bitstream. This
1072 * can cause a variety of events depending upon the termios settings.
1073 *
1074 * Called from the receive_buf path so single threaded.
1075 */
Alan Cox4edf1822008-02-08 04:18:44 -08001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077static inline void n_tty_receive_break(struct tty_struct *tty)
1078{
Jiri Slaby57c94122012-10-18 22:26:43 +02001079 struct n_tty_data *ldata = tty->disc_data;
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (I_IGNBRK(tty))
1082 return;
1083 if (I_BRKINT(tty)) {
Peter Hurley8c985d12013-03-06 08:38:19 -05001084 isig(SIGINT, tty);
1085 if (!L_NOFLSH(tty)) {
1086 n_tty_flush_buffer(tty);
1087 tty_driver_flush_buffer(tty);
1088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 return;
1090 }
1091 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001092 put_tty_queue('\377', ldata);
1093 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001095 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 wake_up_interruptible(&tty->read_wait);
1097}
1098
1099/**
1100 * n_tty_receive_overrun - handle overrun reporting
1101 * @tty: terminal
1102 *
1103 * Data arrived faster than we could process it. While the tty
1104 * driver has flagged this the bits that were missed are gone
1105 * forever.
1106 *
1107 * Called from the receive_buf path so single threaded. Does not
1108 * need locking as num_overrun and overrun_time are function
1109 * private.
1110 */
Alan Cox4edf1822008-02-08 04:18:44 -08001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112static inline void n_tty_receive_overrun(struct tty_struct *tty)
1113{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001114 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 char buf[64];
1116
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001117 ldata->num_overrun++;
1118 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1119 time_after(ldata->overrun_time, jiffies)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 printk(KERN_WARNING "%s: %d input overrun(s)\n",
1121 tty_name(tty, buf),
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001122 ldata->num_overrun);
1123 ldata->overrun_time = jiffies;
1124 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126}
1127
1128/**
1129 * n_tty_receive_parity_error - error notifier
1130 * @tty: terminal device
1131 * @c: character
1132 *
1133 * Process a parity error and queue the right data to indicate
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001134 * the error case if necessary. Locking as per n_tty_receive_buf.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 */
1136static inline void n_tty_receive_parity_error(struct tty_struct *tty,
1137 unsigned char c)
1138{
Jiri Slaby57c94122012-10-18 22:26:43 +02001139 struct n_tty_data *ldata = tty->disc_data;
1140
Alan Cox4edf1822008-02-08 04:18:44 -08001141 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001144 put_tty_queue('\377', ldata);
1145 put_tty_queue('\0', ldata);
1146 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 } else if (I_INPCK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001148 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 else
Jiri Slaby57c94122012-10-18 22:26:43 +02001150 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 wake_up_interruptible(&tty->read_wait);
1152}
1153
1154/**
1155 * n_tty_receive_char - perform processing
1156 * @tty: terminal device
1157 * @c: character
1158 *
1159 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001160 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 * driver above.
1162 */
1163
1164static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1165{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001166 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 unsigned long flags;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001168 int parmrk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001170 if (ldata->raw) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001171 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return;
1173 }
Alan Cox4edf1822008-02-08 04:18:44 -08001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (I_ISTRIP(tty))
1176 c &= 0x7f;
1177 if (I_IUCLC(tty) && L_IEXTEN(tty))
Alan Cox300a6202009-01-02 13:41:04 +00001178 c = tolower(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
hyc@symas.com26df6d12010-06-22 10:14:49 -07001180 if (L_EXTPROC(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001181 put_tty_queue(c, ldata);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001182 return;
1183 }
1184
Joe Peterson54d2a372008-02-06 01:37:59 -08001185 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) &&
Joe Petersona88a69c2009-01-02 13:40:53 +00001186 I_IXANY(tty) && c != START_CHAR(tty) && c != STOP_CHAR(tty) &&
1187 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && c != SUSP_CHAR(tty)) {
Joe Peterson54d2a372008-02-06 01:37:59 -08001188 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001189 process_echoes(tty);
1190 }
Joe Peterson54d2a372008-02-06 01:37:59 -08001191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (tty->closing) {
1193 if (I_IXON(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001194 if (c == START_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001196 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00001197 } else if (c == STOP_CHAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 stop_tty(tty);
1199 }
1200 return;
1201 }
1202
1203 /*
1204 * If the previous character was LNEXT, or we know that this
1205 * character is not one of the characters that we'll have to
1206 * handle specially, do shortcut processing to speed things
1207 * up.
1208 */
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001209 if (!test_bit(c, ldata->process_char_map) || ldata->lnext) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001210 ldata->lnext = 0;
Joe Petersonacc71bb2009-01-02 13:43:32 +00001211 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
Peter Hurleyce741172013-06-15 09:14:20 -04001212 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001213 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001214 if (L_ECHO(tty))
1215 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001216 return;
1217 }
1218 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001219 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001221 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001222 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001224 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
Joe Petersonacc71bb2009-01-02 13:43:32 +00001226 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001227 put_tty_queue(c, ldata);
1228 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return;
1230 }
Alan Cox4edf1822008-02-08 04:18:44 -08001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (I_IXON(tty)) {
1233 if (c == START_CHAR(tty)) {
1234 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001235 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return;
1237 }
1238 if (c == STOP_CHAR(tty)) {
1239 stop_tty(tty);
1240 return;
1241 }
1242 }
Joe Peterson575537b32008-04-30 00:53:30 -07001243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (L_ISIG(tty)) {
1245 int signal;
1246 signal = SIGINT;
1247 if (c == INTR_CHAR(tty))
1248 goto send_signal;
1249 signal = SIGQUIT;
1250 if (c == QUIT_CHAR(tty))
1251 goto send_signal;
1252 signal = SIGTSTP;
1253 if (c == SUSP_CHAR(tty)) {
1254send_signal:
Joe Petersonec5b1152008-02-06 01:37:38 -08001255 if (!L_NOFLSH(tty)) {
1256 n_tty_flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001257 tty_driver_flush_buffer(tty);
Joe Petersonec5b1152008-02-06 01:37:38 -08001258 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001259 if (I_IXON(tty))
1260 start_tty(tty);
1261 if (L_ECHO(tty)) {
Joe Petersonec5b1152008-02-06 01:37:38 -08001262 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001263 process_echoes(tty);
1264 }
Peter Hurley8c985d12013-03-06 08:38:19 -05001265 isig(signal, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return;
1267 }
1268 }
Joe Peterson575537b32008-04-30 00:53:30 -07001269
1270 if (c == '\r') {
1271 if (I_IGNCR(tty))
1272 return;
1273 if (I_ICRNL(tty))
1274 c = '\n';
1275 } else if (c == '\n' && I_INLCR(tty))
1276 c = '\r';
1277
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001278 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1280 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1281 eraser(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001282 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return;
1284 }
1285 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001286 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001288 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001290 echo_char_raw('^', ldata);
1291 echo_char_raw('\b', ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +00001292 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
1294 }
1295 return;
1296 }
1297 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
1298 L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001299 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Jiri Slaby57c94122012-10-18 22:26:43 +02001301 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001303 echo_char_raw('\n', ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001304 while (tail != ldata->read_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001305 echo_char(read_buf(ldata, tail), tty);
1306 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001308 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return;
1310 }
1311 if (c == '\n') {
Peter Hurleyce741172013-06-15 09:14:20 -04001312 if (read_cnt(ldata) >= N_TTY_BUF_SIZE) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001313 if (L_ECHO(tty))
1314 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001315 return;
1316 }
1317 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001318 echo_char_raw('\n', ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +00001319 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321 goto handle_newline;
1322 }
1323 if (c == EOF_CHAR(tty)) {
Peter Hurleyce741172013-06-15 09:14:20 -04001324 if (read_cnt(ldata) >= N_TTY_BUF_SIZE)
Joe Petersonacc71bb2009-01-02 13:43:32 +00001325 return;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001326 if (ldata->canon_head != ldata->read_head)
Alan Cox4edf1822008-02-08 04:18:44 -08001327 set_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 c = __DISABLED_CHAR;
1329 goto handle_newline;
1330 }
1331 if ((c == EOL_CHAR(tty)) ||
1332 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001333 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty))
1334 ? 1 : 0;
Peter Hurleyce741172013-06-15 09:14:20 -04001335 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk)) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001336 if (L_ECHO(tty))
1337 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001338 return;
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 /*
1341 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1342 */
1343 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001345 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001346 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001348 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 }
1350 /*
1351 * XXX does PARMRK doubling happen for
1352 * EOL_CHAR and EOL2_CHAR?
1353 */
Joe Petersonacc71bb2009-01-02 13:43:32 +00001354 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001355 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Alan Cox4edf1822008-02-08 04:18:44 -08001357handle_newline:
Ivo Sieben98001212013-01-28 13:32:01 +01001358 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001359 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Jiri Slaby57c94122012-10-18 22:26:43 +02001360 put_tty_queue_nolock(c, ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001361 ldata->canon_head = ldata->read_head;
Ivo Sieben98001212013-01-28 13:32:01 +01001362 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1364 if (waitqueue_active(&tty->read_wait))
1365 wake_up_interruptible(&tty->read_wait);
1366 return;
1367 }
1368 }
Alan Cox4edf1822008-02-08 04:18:44 -08001369
Joe Petersonacc71bb2009-01-02 13:43:32 +00001370 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
Peter Hurleyce741172013-06-15 09:14:20 -04001371 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001372 /* beep if no space */
Joe Peterson7e94b1d2009-01-02 13:43:40 +00001373 if (L_ECHO(tty))
1374 process_output('\a', tty);
Joe Petersonacc71bb2009-01-02 13:43:32 +00001375 return;
1376 }
1377 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001378 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001380 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 else {
1382 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001383 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001384 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 echo_char(c, tty);
1386 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001387 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389
Joe Petersonacc71bb2009-01-02 13:43:32 +00001390 if (parmrk)
Jiri Slaby57c94122012-10-18 22:26:43 +02001391 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Jiri Slaby57c94122012-10-18 22:26:43 +02001393 put_tty_queue(c, ldata);
Alan Cox4edf1822008-02-08 04:18:44 -08001394}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397/**
1398 * n_tty_write_wakeup - asynchronous I/O notifier
1399 * @tty: tty device
1400 *
1401 * Required for the ptys, serial driver etc. since processes
1402 * that attach themselves to the master and rely on ASYNC
1403 * IO must be woken up
1404 */
1405
1406static void n_tty_write_wakeup(struct tty_struct *tty)
1407{
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00001408 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410}
1411
1412/**
1413 * n_tty_receive_buf - data receive
1414 * @tty: terminal device
1415 * @cp: buffer
1416 * @fp: flag buffer
1417 * @count: characters
1418 *
1419 * Called by the terminal driver when a block of characters has
1420 * been received. This function must be called from soft contexts
1421 * not from interrupt context. The driver is responsible for making
1422 * calls one at a time and in order (or using flush_to_ldisc)
1423 */
Alan Cox4edf1822008-02-08 04:18:44 -08001424
Peter Hurley24a89d12013-06-15 09:14:15 -04001425static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1426 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001428 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 const unsigned char *p;
1430 char *f, flags = TTY_NORMAL;
1431 int i;
1432 char buf[64];
1433 unsigned long cpuflags;
1434
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001435 if (ldata->real_raw) {
Ivo Sieben98001212013-01-28 13:32:01 +01001436 raw_spin_lock_irqsave(&ldata->read_lock, cpuflags);
Peter Hurleyce741172013-06-15 09:14:20 -04001437 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001438 N_TTY_BUF_SIZE - (ldata->read_head & (N_TTY_BUF_SIZE - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 i = min(count, i);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001440 memcpy(read_buf_addr(ldata, ldata->read_head), cp, i);
1441 ldata->read_head += i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 cp += i;
1443 count -= i;
1444
Peter Hurleyce741172013-06-15 09:14:20 -04001445 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001446 N_TTY_BUF_SIZE - (ldata->read_head & (N_TTY_BUF_SIZE - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 i = min(count, i);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001448 memcpy(read_buf_addr(ldata, ldata->read_head), cp, i);
1449 ldata->read_head += i;
Ivo Sieben98001212013-01-28 13:32:01 +01001450 raw_spin_unlock_irqrestore(&ldata->read_lock, cpuflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 } else {
Alan Cox4edf1822008-02-08 04:18:44 -08001452 for (i = count, p = cp, f = fp; i; i--, p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (f)
1454 flags = *f++;
1455 switch (flags) {
1456 case TTY_NORMAL:
1457 n_tty_receive_char(tty, *p);
1458 break;
1459 case TTY_BREAK:
1460 n_tty_receive_break(tty);
1461 break;
1462 case TTY_PARITY:
1463 case TTY_FRAME:
1464 n_tty_receive_parity_error(tty, *p);
1465 break;
1466 case TTY_OVERRUN:
1467 n_tty_receive_overrun(tty);
1468 break;
1469 default:
Alan Cox4edf1822008-02-08 04:18:44 -08001470 printk(KERN_ERR "%s: unknown flag %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 tty_name(tty, buf), flags);
1472 break;
1473 }
1474 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001475 if (tty->ops->flush_chars)
1476 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478
Peter Hurleyce741172013-06-15 09:14:20 -04001479 if ((!ldata->icanon && (read_cnt(ldata) >= ldata->minimum_to_wake)) ||
hyc@symas.com26df6d12010-06-22 10:14:49 -07001480 L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1482 if (waitqueue_active(&tty->read_wait))
1483 wake_up_interruptible(&tty->read_wait);
1484 }
1485
1486 /*
1487 * Check the remaining room for the input canonicalization
1488 * mode. We don't want to throttle the driver if we're in
1489 * canonical mode and don't have a newline yet!
1490 */
Peter Hurleye91e52e2013-03-06 08:20:53 -05001491 while (1) {
Peter Hurley9356b532013-06-15 09:14:24 -04001492 int throttled;
Peter Hurleye91e52e2013-03-06 08:20:53 -05001493 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
Peter Hurley24a89d12013-06-15 09:14:15 -04001494 if (receive_room(tty) >= TTY_THRESHOLD_THROTTLE)
Peter Hurleye91e52e2013-03-06 08:20:53 -05001495 break;
Peter Hurley9356b532013-06-15 09:14:24 -04001496 up_read(&tty->termios_rwsem);
1497 throttled = tty_throttle_safe(tty);
1498 down_read(&tty->termios_rwsem);
1499 if (!throttled)
Peter Hurleye91e52e2013-03-06 08:20:53 -05001500 break;
1501 }
1502 __tty_set_flow_change(tty, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
Peter Hurley24a89d12013-06-15 09:14:15 -04001505static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1506 char *fp, int count)
1507{
Peter Hurley9356b532013-06-15 09:14:24 -04001508 down_read(&tty->termios_rwsem);
Peter Hurley24a89d12013-06-15 09:14:15 -04001509 __receive_buf(tty, cp, fp, count);
Peter Hurley9356b532013-06-15 09:14:24 -04001510 up_read(&tty->termios_rwsem);
Peter Hurley24a89d12013-06-15 09:14:15 -04001511}
1512
1513static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1514 char *fp, int count)
1515{
1516 struct n_tty_data *ldata = tty->disc_data;
1517 int room;
1518
Peter Hurley9356b532013-06-15 09:14:24 -04001519 down_read(&tty->termios_rwsem);
1520
Peter Hurley24a89d12013-06-15 09:14:15 -04001521 tty->receive_room = room = receive_room(tty);
1522 if (!room)
1523 ldata->no_room = 1;
1524 count = min(count, room);
1525 if (count)
1526 __receive_buf(tty, cp, fp, count);
1527
Peter Hurley9356b532013-06-15 09:14:24 -04001528 up_read(&tty->termios_rwsem);
1529
Peter Hurley24a89d12013-06-15 09:14:15 -04001530 return count;
1531}
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533int is_ignored(int sig)
1534{
1535 return (sigismember(&current->blocked, sig) ||
Alan Cox4edf1822008-02-08 04:18:44 -08001536 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539/**
1540 * n_tty_set_termios - termios data changed
1541 * @tty: terminal
1542 * @old: previous data
1543 *
1544 * Called by the tty layer when the user changes termios flags so
1545 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001546 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 * guaranteed that this function will not be re-entered or in progress
1548 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001549 *
Peter Hurley6a1c0682013-06-15 09:14:23 -04001550 * Locking: Caller holds tty->termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 */
Alan Cox4edf1822008-02-08 04:18:44 -08001552
1553static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001555 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001556 int canon_change = 1;
Alan Cox47afa7a2008-10-13 10:44:17 +01001557
1558 if (old)
Alan Coxadc8d742012-07-14 15:31:47 +01001559 canon_change = (old->c_lflag ^ tty->termios.c_lflag) & ICANON;
Alan Cox47afa7a2008-10-13 10:44:17 +01001560 if (canon_change) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001561 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001562 ldata->canon_head = ldata->read_tail;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001563 ldata->erasing = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001564 }
1565
Peter Hurleyce741172013-06-15 09:14:20 -04001566 if (canon_change && !L_ICANON(tty) && read_cnt(ldata))
Alan Cox47afa7a2008-10-13 10:44:17 +01001567 wake_up_interruptible(&tty->read_wait);
Alan Cox4edf1822008-02-08 04:18:44 -08001568
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001569 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1572 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1573 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1574 I_PARMRK(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001575 bitmap_zero(ldata->process_char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 if (I_IGNCR(tty) || I_ICRNL(tty))
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001578 set_bit('\r', ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (I_INLCR(tty))
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001580 set_bit('\n', ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 if (L_ICANON(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001583 set_bit(ERASE_CHAR(tty), ldata->process_char_map);
1584 set_bit(KILL_CHAR(tty), ldata->process_char_map);
1585 set_bit(EOF_CHAR(tty), ldata->process_char_map);
1586 set_bit('\n', ldata->process_char_map);
1587 set_bit(EOL_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (L_IEXTEN(tty)) {
1589 set_bit(WERASE_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001590 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 set_bit(LNEXT_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001592 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 set_bit(EOL2_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001594 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (L_ECHO(tty))
1596 set_bit(REPRINT_CHAR(tty),
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001597 ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599 }
1600 if (I_IXON(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001601 set_bit(START_CHAR(tty), ldata->process_char_map);
1602 set_bit(STOP_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 }
1604 if (L_ISIG(tty)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001605 set_bit(INTR_CHAR(tty), ldata->process_char_map);
1606 set_bit(QUIT_CHAR(tty), ldata->process_char_map);
1607 set_bit(SUSP_CHAR(tty), ldata->process_char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 }
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001609 clear_bit(__DISABLED_CHAR, ldata->process_char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001610 ldata->raw = 0;
1611 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001613 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1615 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1616 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001617 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001619 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09001621 n_tty_set_room(tty);
Wang YanQingdab73b42013-05-09 14:16:47 +08001622 /*
1623 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1624 * been stopped by STOP_CHAR(tty) before it.
1625 */
1626 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
1627 start_tty(tty);
1628 }
1629
Alan Coxf34d7a52008-04-30 00:54:13 -07001630 /* The termios change make the tty ready for I/O */
1631 wake_up_interruptible(&tty->write_wait);
1632 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
1635/**
1636 * n_tty_close - close the ldisc for this tty
1637 * @tty: device
1638 *
Alan Cox4edf1822008-02-08 04:18:44 -08001639 * Called from the terminal layer when this line discipline is
1640 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 * discipline change. The function will not be called while other
1642 * ldisc methods are in progress.
1643 */
Alan Cox4edf1822008-02-08 04:18:44 -08001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645static void n_tty_close(struct tty_struct *tty)
1646{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001647 struct n_tty_data *ldata = tty->disc_data;
1648
Peter Hurley79901312013-03-11 16:44:23 -04001649 if (tty->link)
1650 n_tty_packet_mode_flush(tty);
1651
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001652 kfree(ldata->read_buf);
1653 kfree(ldata->echo_buf);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001654 kfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001655 tty->disc_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656}
1657
1658/**
1659 * n_tty_open - open an ldisc
1660 * @tty: terminal to open
1661 *
Alan Cox4edf1822008-02-08 04:18:44 -08001662 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 * terminal device. Can sleep. Called serialized so that no
1664 * other events will occur in parallel. No further open will occur
1665 * until a close.
1666 */
1667
1668static int n_tty_open(struct tty_struct *tty)
1669{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001670 struct n_tty_data *ldata;
1671
1672 ldata = kzalloc(sizeof(*ldata), GFP_KERNEL);
1673 if (!ldata)
1674 goto err;
1675
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001676 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001677 mutex_init(&ldata->atomic_read_lock);
1678 mutex_init(&ldata->output_lock);
1679 mutex_init(&ldata->echo_lock);
Ivo Sieben98001212013-01-28 13:32:01 +01001680 raw_spin_lock_init(&ldata->read_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001681
Joe Petersona88a69c2009-01-02 13:40:53 +00001682 /* These are ugly. Currently a malloc failure here can panic */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001683 ldata->read_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1684 ldata->echo_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1685 if (!ldata->read_buf || !ldata->echo_buf)
Jiri Slabyb91939f2012-10-18 22:26:35 +02001686 goto err_free_bufs;
Alan Cox0b4068a2009-06-11 13:05:49 +01001687
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001688 tty->disc_data = ldata;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001689 reset_buffer_flags(tty->disc_data);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001690 ldata->column = 0;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001691 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001693 /* indicate buffer work may resume */
1694 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1695 n_tty_set_termios(tty, NULL);
1696 tty_unthrottle(tty);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 return 0;
Jiri Slabyb91939f2012-10-18 22:26:35 +02001699err_free_bufs:
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001700 kfree(ldata->read_buf);
1701 kfree(ldata->echo_buf);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001702 kfree(ldata);
1703err:
Jiri Slabyb91939f2012-10-18 22:26:35 +02001704 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
1707static inline int input_available_p(struct tty_struct *tty, int amt)
1708{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001709 struct n_tty_data *ldata = tty->disc_data;
1710
OGAWA Hirofumie043e422009-07-29 12:15:56 -07001711 tty_flush_to_ldisc(tty);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001712 if (ldata->icanon && !L_EXTPROC(tty)) {
Peter Hurleya73d3d62013-06-15 09:14:25 -04001713 if (ldata->canon_head != ldata->read_tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return 1;
Peter Hurleyce741172013-06-15 09:14:20 -04001715 } else if (read_cnt(ldata) >= (amt ? amt : 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return 1;
1717
1718 return 0;
1719}
1720
1721/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001722 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 * @tty: terminal device
1724 * @b: user data
1725 * @nr: size of data
1726 *
Alan Cox11a96d12008-10-13 10:46:24 +01001727 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 * ICANON is off; it copies characters straight from the tty queue to
1729 * user space directly. It can be profitably called twice; once to
1730 * drain the space from the tail pointer to the (physical) end of the
1731 * buffer, and once to drain the space from the (physical) beginning of
1732 * the buffer to head pointer.
1733 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001734 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 *
1736 */
Alan Cox4edf1822008-02-08 04:18:44 -08001737
Alan Cox33f0f882006-01-09 20:54:13 -08001738static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 unsigned char __user **b,
1740 size_t *nr)
1741
1742{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001743 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 int retval;
1745 size_t n;
1746 unsigned long flags;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001747 bool is_eof;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001748 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 retval = 0;
Ivo Sieben98001212013-01-28 13:32:01 +01001751 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001752 n = min(read_cnt(ldata), N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 n = min(*nr, n);
Ivo Sieben98001212013-01-28 13:32:01 +01001754 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (n) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001756 retval = copy_to_user(*b, read_buf_addr(ldata, tail), n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 n -= retval;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001758 is_eof = n == 1 && read_buf(ldata, tail) == EOF_CHAR(tty);
1759 tty_audit_add_data(tty, read_buf_addr(ldata, tail), n,
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001760 ldata->icanon);
Ivo Sieben98001212013-01-28 13:32:01 +01001761 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001762 ldata->read_tail += n;
hyc@symas.com26df6d12010-06-22 10:14:49 -07001763 /* Turn single EOF into zero-length read */
Peter Hurleyce741172013-06-15 09:14:20 -04001764 if (L_EXTPROC(tty) && ldata->icanon && is_eof && !read_cnt(ldata))
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001765 n = 0;
Ivo Sieben98001212013-01-28 13:32:01 +01001766 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 *b += n;
1768 *nr -= n;
1769 }
1770 return retval;
1771}
1772
Peter Hurley88bb0de2013-06-15 09:14:16 -04001773/**
Peter Hurley32f13522013-06-15 09:14:17 -04001774 * canon_copy_from_read_buf - copy read data in canonical mode
Peter Hurley88bb0de2013-06-15 09:14:16 -04001775 * @tty: terminal device
1776 * @b: user data
1777 * @nr: size of data
1778 *
1779 * Helper function for n_tty_read. It is only called when ICANON is on;
Peter Hurley32f13522013-06-15 09:14:17 -04001780 * it copies one line of input up to and including the line-delimiting
1781 * character into the user-space buffer.
Peter Hurley88bb0de2013-06-15 09:14:16 -04001782 *
1783 * Called under the atomic_read_lock mutex
1784 */
1785
Peter Hurley32f13522013-06-15 09:14:17 -04001786static int canon_copy_from_read_buf(struct tty_struct *tty,
1787 unsigned char __user **b,
1788 size_t *nr)
Peter Hurley88bb0de2013-06-15 09:14:16 -04001789{
1790 struct n_tty_data *ldata = tty->disc_data;
1791 unsigned long flags;
Peter Hurley32f13522013-06-15 09:14:17 -04001792 size_t n, size, more, c;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001793 size_t eol;
1794 size_t tail;
1795 int ret, found = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001796
1797 /* N.B. avoid overrun if nr == 0 */
Peter Hurley32f13522013-06-15 09:14:17 -04001798
Peter Hurley88bb0de2013-06-15 09:14:16 -04001799 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurley88bb0de2013-06-15 09:14:16 -04001800
Peter Hurleyce741172013-06-15 09:14:20 -04001801 n = min(*nr, read_cnt(ldata));
Peter Hurley32f13522013-06-15 09:14:17 -04001802 if (!n) {
Peter Hurley88bb0de2013-06-15 09:14:16 -04001803 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
Peter Hurley32f13522013-06-15 09:14:17 -04001804 return 0;
1805 }
Peter Hurley88bb0de2013-06-15 09:14:16 -04001806
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001807 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Peter Hurley32f13522013-06-15 09:14:17 -04001808 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
1809
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001810 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04001811 __func__, *nr, tail, n, size);
1812
1813 eol = find_next_bit(ldata->read_flags, size, tail);
1814 more = n - (size - tail);
1815 if (eol == N_TTY_BUF_SIZE && more) {
1816 /* scan wrapped without finding set bit */
1817 eol = find_next_bit(ldata->read_flags, more, 0);
1818 if (eol != more)
1819 found = 1;
1820 } else if (eol != size)
1821 found = 1;
1822
1823 size = N_TTY_BUF_SIZE - tail;
1824 n = (found + eol + size) & (N_TTY_BUF_SIZE - 1);
1825 c = n;
1826
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001827 if (found && read_buf(ldata, eol) == __DISABLED_CHAR)
Peter Hurley32f13522013-06-15 09:14:17 -04001828 n--;
1829
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001830 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu size:%zu more:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04001831 __func__, eol, found, n, c, size, more);
1832
1833 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1834
1835 if (n > size) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001836 ret = copy_to_user(*b, read_buf_addr(ldata, tail), size);
Peter Hurley32f13522013-06-15 09:14:17 -04001837 if (ret)
1838 return -EFAULT;
1839 ret = copy_to_user(*b + size, ldata->read_buf, n - size);
1840 } else
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001841 ret = copy_to_user(*b, read_buf_addr(ldata, tail), n);
Peter Hurley32f13522013-06-15 09:14:17 -04001842
1843 if (ret)
1844 return -EFAULT;
1845 *b += n;
1846 *nr -= n;
1847
1848 raw_spin_lock_irqsave(&ldata->read_lock, flags);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001849 ldata->read_tail += c;
Peter Hurleya73d3d62013-06-15 09:14:25 -04001850 if (found)
Peter Hurley32f13522013-06-15 09:14:17 -04001851 __clear_bit(eol, ldata->read_flags);
Peter Hurley88bb0de2013-06-15 09:14:16 -04001852 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1853
Peter Hurley32f13522013-06-15 09:14:17 -04001854 if (found)
1855 tty_audit_push(tty);
Peter Hurley88bb0de2013-06-15 09:14:16 -04001856 return 0;
1857}
1858
Al Virocc4191d2008-03-29 03:08:48 +00001859extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08001860 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862/**
1863 * job_control - check job control
1864 * @tty: tty
1865 * @file: file handle
1866 *
1867 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08001868 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07001870 *
Peter Hurley01a5e442013-03-06 08:38:20 -05001871 * Locking: redirected write test is safe
1872 * current->signal->tty check is safe
1873 * ctrl_lock to safely reference tty->pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 */
Alan Cox4edf1822008-02-08 04:18:44 -08001875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876static int job_control(struct tty_struct *tty, struct file *file)
1877{
1878 /* Job control check -- must be done at start and after
1879 every sleep (POSIX.1 7.1.1.4). */
1880 /* NOTE: not yet done after every sleep pending a thorough
1881 check of the logic of this change. -- jlc */
1882 /* don't stop on /dev/console */
Peter Hurley01a5e442013-03-06 08:38:20 -05001883 if (file->f_op->write == redirected_tty_write ||
1884 current->signal->tty != tty)
1885 return 0;
1886
1887 spin_lock_irq(&tty->ctrl_lock);
1888 if (!tty->pgrp)
1889 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
1890 else if (task_pgrp(current) != tty->pgrp) {
1891 spin_unlock_irq(&tty->ctrl_lock);
1892 if (is_ignored(SIGTTIN) || is_current_pgrp_orphaned())
1893 return -EIO;
1894 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
1895 set_thread_flag(TIF_SIGPENDING);
1896 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
Peter Hurley01a5e442013-03-06 08:38:20 -05001898 spin_unlock_irq(&tty->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return 0;
1900}
Alan Cox4edf1822008-02-08 04:18:44 -08001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903/**
Alan Cox11a96d12008-10-13 10:46:24 +01001904 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 * @tty: tty device
1906 * @file: file object
1907 * @buf: userspace buffer pointer
1908 * @nr: size of I/O
1909 *
1910 * Perform reads for the line discipline. We are guaranteed that the
1911 * line discipline will not be closed under us but we may get multiple
1912 * parallel readers and must handle this ourselves. We may also get
1913 * a hangup. Always called in user context, may sleep.
1914 *
1915 * This code must be sure never to sleep through a hangup.
1916 */
Alan Cox4edf1822008-02-08 04:18:44 -08001917
Alan Cox11a96d12008-10-13 10:46:24 +01001918static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 unsigned char __user *buf, size_t nr)
1920{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001921 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 unsigned char __user *b = buf;
1923 DECLARE_WAITQUEUE(wait, current);
1924 int c;
1925 int minimum, time;
1926 ssize_t retval = 0;
1927 ssize_t size;
1928 long timeout;
1929 unsigned long flags;
Alan Cox04f378b2008-04-30 00:53:29 -07001930 int packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932do_it_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08001934 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08001936
Peter Hurley9356b532013-06-15 09:14:24 -04001937 down_read(&tty->termios_rwsem);
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 minimum = time = 0;
1940 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001941 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 minimum = MIN_CHAR(tty);
1943 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04001944 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (time)
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001946 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 else if (!waitqueue_active(&tty->read_wait) ||
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001948 (ldata->minimum_to_wake > minimum))
1949 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04001951 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001952 ldata->minimum_to_wake = minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
1954 }
1955
1956 /*
1957 * Internal serialization of reads.
1958 */
1959 if (file->f_flags & O_NONBLOCK) {
Peter Hurley9356b532013-06-15 09:14:24 -04001960 if (!mutex_trylock(&ldata->atomic_read_lock)) {
1961 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 return -EAGAIN;
Peter Hurley9356b532013-06-15 09:14:24 -04001963 }
Alan Cox4edf1822008-02-08 04:18:44 -08001964 } else {
Peter Hurley9356b532013-06-15 09:14:24 -04001965 if (mutex_lock_interruptible(&ldata->atomic_read_lock)) {
1966 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return -ERESTARTSYS;
Peter Hurley9356b532013-06-15 09:14:24 -04001968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
Alan Cox04f378b2008-04-30 00:53:29 -07001970 packet = tty->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 while (nr) {
1974 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07001975 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 unsigned char cs;
1977 if (b != buf)
1978 break;
Alan Cox04f378b2008-04-30 00:53:29 -07001979 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 cs = tty->link->ctrl_status;
1981 tty->link->ctrl_status = 0;
Alan Cox04f378b2008-04-30 00:53:29 -07001982 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -07001983 if (tty_put_user(tty, cs, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 retval = -EFAULT;
1985 b--;
1986 break;
1987 }
1988 nr--;
1989 break;
1990 }
1991 /* This statement must be first before checking for input
1992 so that any interrupt will set the state back to
1993 TASK_RUNNING. */
1994 set_current_state(TASK_INTERRUPTIBLE);
Alan Cox4edf1822008-02-08 04:18:44 -08001995
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001996 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 ((minimum - (b - buf)) >= 1))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001998 ldata->minimum_to_wake = (minimum - (b - buf));
Alan Cox4edf1822008-02-08 04:18:44 -08001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (!input_available_p(tty, 0)) {
2001 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
2002 retval = -EIO;
2003 break;
2004 }
2005 if (tty_hung_up_p(file))
2006 break;
2007 if (!timeout)
2008 break;
2009 if (file->f_flags & O_NONBLOCK) {
2010 retval = -EAGAIN;
2011 break;
2012 }
2013 if (signal_pending(current)) {
2014 retval = -ERESTARTSYS;
2015 break;
2016 }
Linus Torvalds55db4c62011-06-04 06:33:24 +09002017 n_tty_set_room(tty);
Peter Hurley9356b532013-06-15 09:14:24 -04002018 up_read(&tty->termios_rwsem);
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 timeout = schedule_timeout(timeout);
Peter Hurley9356b532013-06-15 09:14:24 -04002021
2022 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 continue;
2024 }
2025 __set_current_state(TASK_RUNNING);
2026
2027 /* Deal with packet mode. */
Alan Cox04f378b2008-04-30 00:53:29 -07002028 if (packet && b == buf) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07002029 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 retval = -EFAULT;
2031 b--;
2032 break;
2033 }
2034 nr--;
2035 }
2036
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002037 if (ldata->icanon && !L_EXTPROC(tty)) {
Peter Hurley32f13522013-06-15 09:14:17 -04002038 retval = canon_copy_from_read_buf(tty, &b, &nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (retval)
2040 break;
2041 } else {
2042 int uncopied;
Alan Cox04f378b2008-04-30 00:53:29 -07002043 /* The copy function takes the read lock and handles
2044 locking internally for this case */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 uncopied = copy_from_read_buf(tty, &b, &nr);
2046 uncopied += copy_from_read_buf(tty, &b, &nr);
2047 if (uncopied) {
2048 retval = -EFAULT;
2049 break;
2050 }
2051 }
2052
2053 /* If there is enough space in the read buffer now, let the
Peter Hurleya19d0c62013-06-15 09:14:18 -04002054 * low-level driver know. We use chars_in_buffer() to
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 * check the buffer, as it now knows about canonical mode.
2056 * Otherwise, if the driver is throttled and the line is
2057 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
2058 * we won't get any more characters.
2059 */
Peter Hurleye91e52e2013-03-06 08:20:53 -05002060 while (1) {
Peter Hurley9356b532013-06-15 09:14:24 -04002061 int unthrottled;
Peter Hurleye91e52e2013-03-06 08:20:53 -05002062 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
Peter Hurleya19d0c62013-06-15 09:14:18 -04002063 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
Peter Hurleye91e52e2013-03-06 08:20:53 -05002064 break;
2065 if (!tty->count)
2066 break;
Linus Torvalds55db4c62011-06-04 06:33:24 +09002067 n_tty_set_room(tty);
Peter Hurley9356b532013-06-15 09:14:24 -04002068 up_read(&tty->termios_rwsem);
2069 unthrottled = tty_unthrottle_safe(tty);
2070 down_read(&tty->termios_rwsem);
2071 if (!unthrottled)
Peter Hurleye91e52e2013-03-06 08:20:53 -05002072 break;
Linus Torvalds55db4c62011-06-04 06:33:24 +09002073 }
Peter Hurleye91e52e2013-03-06 08:20:53 -05002074 __tty_set_flow_change(tty, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 if (b - buf >= minimum)
2077 break;
2078 if (time)
2079 timeout = time;
2080 }
Jiri Slabybddc7152012-10-18 22:26:42 +02002081 mutex_unlock(&ldata->atomic_read_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 remove_wait_queue(&tty->read_wait, &wait);
2083
2084 if (!waitqueue_active(&tty->read_wait))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002085 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
2087 __set_current_state(TASK_RUNNING);
2088 size = b - buf;
2089 if (size) {
2090 retval = size;
2091 if (nr)
Alan Cox4edf1822008-02-08 04:18:44 -08002092 clear_bit(TTY_PUSH, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002093 } else if (test_and_clear_bit(TTY_PUSH, &tty->flags)) {
2094 up_read(&tty->termios_rwsem);
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01002095 goto do_it_again;
Peter Hurley9356b532013-06-15 09:14:24 -04002096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Linus Torvalds55db4c62011-06-04 06:33:24 +09002098 n_tty_set_room(tty);
Peter Hurley9356b532013-06-15 09:14:24 -04002099 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 return retval;
2101}
2102
2103/**
Alan Cox11a96d12008-10-13 10:46:24 +01002104 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 * @tty: tty device
2106 * @file: file object
2107 * @buf: userspace buffer pointer
2108 * @nr: size of I/O
2109 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002110 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002112 * and other such events. Since the receive code will echo characters,
2113 * thus calling driver write methods, the output_lock is used in
2114 * the output processing functions called here as well as in the
2115 * echo processing function to protect the column state and space
2116 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 *
2118 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002119 *
2120 * Locking: output_lock to protect column state and space left
2121 * (note that the process_output*() functions take this
2122 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 */
Alan Cox4edf1822008-02-08 04:18:44 -08002124
Alan Cox11a96d12008-10-13 10:46:24 +01002125static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002126 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127{
2128 const unsigned char *b = buf;
2129 DECLARE_WAITQUEUE(wait, current);
2130 int c;
2131 ssize_t retval = 0;
2132
2133 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2134 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2135 retval = tty_check_change(tty);
2136 if (retval)
2137 return retval;
2138 }
2139
Peter Hurley9356b532013-06-15 09:14:24 -04002140 down_read(&tty->termios_rwsem);
2141
Joe Petersona88a69c2009-01-02 13:40:53 +00002142 /* Write out any echoed characters that are still pending */
2143 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 add_wait_queue(&tty->write_wait, &wait);
2146 while (1) {
2147 set_current_state(TASK_INTERRUPTIBLE);
2148 if (signal_pending(current)) {
2149 retval = -ERESTARTSYS;
2150 break;
2151 }
2152 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2153 retval = -EIO;
2154 break;
2155 }
Peter Hurley582f5592013-05-17 12:49:48 -04002156 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002158 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (num < 0) {
2160 if (num == -EAGAIN)
2161 break;
2162 retval = num;
2163 goto break_out;
2164 }
2165 b += num;
2166 nr -= num;
2167 if (nr == 0)
2168 break;
2169 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002170 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 break;
2172 b++; nr--;
2173 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002174 if (tty->ops->flush_chars)
2175 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 } else {
Roman Zippeld6afe272005-07-07 17:56:55 -07002177 while (nr > 0) {
Alan Coxf34d7a52008-04-30 00:54:13 -07002178 c = tty->ops->write(tty, b, nr);
Roman Zippeld6afe272005-07-07 17:56:55 -07002179 if (c < 0) {
2180 retval = c;
2181 goto break_out;
2182 }
2183 if (!c)
2184 break;
2185 b += c;
2186 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
2189 if (!nr)
2190 break;
2191 if (file->f_flags & O_NONBLOCK) {
2192 retval = -EAGAIN;
2193 break;
2194 }
Peter Hurley9356b532013-06-15 09:14:24 -04002195 up_read(&tty->termios_rwsem);
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 schedule();
Peter Hurley9356b532013-06-15 09:14:24 -04002198
2199 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
2201break_out:
2202 __set_current_state(TASK_RUNNING);
2203 remove_wait_queue(&tty->write_wait, &wait);
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002204 if (b - buf != nr && tty->fasync)
2205 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002206 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return (b - buf) ? b - buf : retval;
2208}
2209
2210/**
Alan Cox11a96d12008-10-13 10:46:24 +01002211 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 * @tty: terminal device
2213 * @file: file accessing it
2214 * @wait: poll table
2215 *
2216 * Called when the line discipline is asked to poll() for data or
2217 * for special events. This code is not serialized with respect to
2218 * other events save open/close.
2219 *
2220 * This code must be sure never to sleep through a hangup.
2221 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 */
Alan Cox4edf1822008-02-08 04:18:44 -08002223
Alan Cox11a96d12008-10-13 10:46:24 +01002224static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002225 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002227 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 unsigned int mask = 0;
2229
2230 poll_wait(file, &tty->read_wait, wait);
2231 poll_wait(file, &tty->write_wait, wait);
2232 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
2233 mask |= POLLIN | POLLRDNORM;
2234 if (tty->packet && tty->link->ctrl_status)
2235 mask |= POLLPRI | POLLIN | POLLRDNORM;
2236 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2237 mask |= POLLHUP;
2238 if (tty_hung_up_p(file))
2239 mask |= POLLHUP;
2240 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2241 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002242 ldata->minimum_to_wake = MIN_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 else
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002244 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002246 if (tty->ops->write && !tty_is_writelocked(tty) &&
2247 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2248 tty_write_room(tty) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 mask |= POLLOUT | POLLWRNORM;
2250 return mask;
2251}
2252
Jiri Slaby57c94122012-10-18 22:26:43 +02002253static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002254{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002255 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002256
Peter Hurleya73d3d62013-06-15 09:14:25 -04002257 if (ldata->canon_head == ldata->read_tail)
Alan Cox47afa7a2008-10-13 10:44:17 +01002258 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002259 head = ldata->canon_head;
2260 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002261 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002262 /* Skip EOF-chars.. */
2263 while (head != tail) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002264 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2265 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002266 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002267 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002268 }
2269 return nr;
2270}
2271
2272static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2273 unsigned int cmd, unsigned long arg)
2274{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002275 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002276 int retval;
2277
2278 switch (cmd) {
2279 case TIOCOUTQ:
2280 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2281 case TIOCINQ:
Alan Cox17b82062008-10-13 10:45:06 +01002282 /* FIXME: Locking */
Peter Hurleyce741172013-06-15 09:14:20 -04002283 retval = read_cnt(ldata);
Alan Cox47afa7a2008-10-13 10:44:17 +01002284 if (L_ICANON(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002285 retval = inq_canon(ldata);
Alan Cox47afa7a2008-10-13 10:44:17 +01002286 return put_user(retval, (unsigned int __user *) arg);
2287 default:
2288 return n_tty_ioctl_helper(tty, file, cmd, arg);
2289 }
2290}
2291
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002292static void n_tty_fasync(struct tty_struct *tty, int on)
2293{
2294 struct n_tty_data *ldata = tty->disc_data;
2295
2296 if (!waitqueue_active(&tty->read_wait)) {
2297 if (on)
2298 ldata->minimum_to_wake = 1;
2299 else if (!tty->fasync)
2300 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2301 }
2302}
2303
Alan Coxa352def2008-07-16 21:53:12 +01002304struct tty_ldisc_ops tty_ldisc_N_TTY = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002305 .magic = TTY_LDISC_MAGIC,
2306 .name = "n_tty",
2307 .open = n_tty_open,
2308 .close = n_tty_close,
2309 .flush_buffer = n_tty_flush_buffer,
2310 .chars_in_buffer = n_tty_chars_in_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002311 .read = n_tty_read,
2312 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002313 .ioctl = n_tty_ioctl,
2314 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002315 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002316 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002317 .write_wakeup = n_tty_write_wakeup,
2318 .fasync = n_tty_fasync,
Peter Hurley24a89d12013-06-15 09:14:15 -04002319 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002321
2322/**
2323 * n_tty_inherit_ops - inherit N_TTY methods
2324 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2325 *
George Spelvin593fb1ae42013-02-12 02:00:43 -05002326 * Enables a 'subclass' line discipline to 'inherit' N_TTY
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002327 * methods.
2328 */
2329
2330void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2331{
2332 *ops = tty_ldisc_N_TTY;
2333 ops->owner = NULL;
2334 ops->refcount = ops->flags = 0;
2335}
2336EXPORT_SYMBOL_GPL(n_tty_inherit_ops);