blob: 827206914b02196c0665a89b02a35a7b8ac0c16c [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>
Peter Hurley86e35ae2013-07-24 09:30:05 -040053#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/* number of characters left in xmit buffer before select has we have room */
57#define WAKEUP_CHARS 256
58
59/*
60 * This defines the low- and high-watermarks for throttling and
61 * unthrottling the TTY driver. These watermarks are used for
62 * controlling the space in the read buffer.
63 */
64#define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
Thorsten Wißmannbbd20752011-12-08 17:47:33 +010065#define TTY_THRESHOLD_UNTHROTTLE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Joe Petersona88a69c2009-01-02 13:40:53 +000067/*
68 * Special byte codes used in the echo buffer to represent operations
69 * or special handling of characters. Bytes in the echo buffer that
70 * are not part of such special blocks are treated as normal character
71 * codes.
72 */
73#define ECHO_OP_START 0xff
74#define ECHO_OP_MOVE_BACK_COL 0x80
75#define ECHO_OP_SET_CANON_COL 0x81
76#define ECHO_OP_ERASE_TAB 0x82
77
Peter Hurleycbfd0342013-06-15 10:04:26 -040078#define ECHO_COMMIT_WATERMARK 256
79#define ECHO_BLOCK 256
80#define ECHO_DISCARD_WATERMARK N_TTY_BUF_SIZE - (ECHO_BLOCK + 32)
81
82
Peter Hurley32f13522013-06-15 09:14:17 -040083#undef N_TTY_TRACE
84#ifdef N_TTY_TRACE
85# define n_tty_trace(f, args...) trace_printk(f, ##args)
86#else
87# define n_tty_trace(f, args...)
88#endif
89
Jiri Slaby70ece7a2012-10-18 22:26:38 +020090struct n_tty_data {
Peter Hurleyfb7aa032013-06-15 09:14:30 -040091 /* producer-published */
92 size_t read_head;
Peter Hurley70aca712015-01-16 15:05:37 -050093 size_t commit_head;
Peter Hurleyfb7aa032013-06-15 09:14:30 -040094 size_t canon_head;
Peter Hurley9dfd16d2013-06-15 10:04:29 -040095 size_t echo_head;
96 size_t echo_commit;
Peter Hurley1075a6e2013-12-09 18:06:07 -050097 size_t echo_mark;
Peter Hurley1bb9d562013-06-15 10:21:20 -040098 DECLARE_BITMAP(char_map, 256);
Peter Hurleyfb7aa032013-06-15 09:14:30 -040099
100 /* private to n_tty_receive_overrun (single-threaded) */
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200101 unsigned long overrun_time;
102 int num_overrun;
103
Peter Hurley24a89d12013-06-15 09:14:15 -0400104 /* non-atomic */
105 bool no_room;
106
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400107 /* must hold exclusive termios_rwsem to reset these */
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200108 unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
Peter Hurley4d0ed182013-12-10 17:12:02 -0500109 unsigned char push:1;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200110
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400111 /* shared by producer and consumer */
Peter Hurley20bafb32013-06-15 10:21:19 -0400112 char read_buf[N_TTY_BUF_SIZE];
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200113 DECLARE_BITMAP(read_flags, N_TTY_BUF_SIZE);
Peter Hurley20bafb32013-06-15 10:21:19 -0400114 unsigned char echo_buf[N_TTY_BUF_SIZE];
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200115
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -0400116 int minimum_to_wake;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200117
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400118 /* consumer-published */
119 size_t read_tail;
Peter Hurley40d5e092013-06-15 10:21:17 -0400120 size_t line_start;
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400121
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400122 /* protected by output lock */
123 unsigned int column;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200124 unsigned int canon_column;
Peter Hurley9dfd16d2013-06-15 10:04:29 -0400125 size_t echo_tail;
Jiri Slabybddc7152012-10-18 22:26:42 +0200126
127 struct mutex atomic_read_lock;
128 struct mutex output_lock;
Jiri Slaby70ece7a2012-10-18 22:26:38 +0200129};
130
Peter Hurleyce741172013-06-15 09:14:20 -0400131static inline size_t read_cnt(struct n_tty_data *ldata)
132{
Peter Hurleya2f73be2013-06-15 09:14:22 -0400133 return ldata->read_head - ldata->read_tail;
Peter Hurleyce741172013-06-15 09:14:20 -0400134}
135
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400136static inline unsigned char read_buf(struct n_tty_data *ldata, size_t i)
137{
138 return ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
139}
140
141static inline unsigned char *read_buf_addr(struct n_tty_data *ldata, size_t i)
142{
143 return &ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
144}
145
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400146static inline unsigned char echo_buf(struct n_tty_data *ldata, size_t i)
147{
148 return ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
149}
150
151static inline unsigned char *echo_buf_addr(struct n_tty_data *ldata, size_t i)
152{
153 return &ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
154}
155
Peter Hurley679e7c22015-11-27 14:11:02 -0500156static int tty_copy_to_user(struct tty_struct *tty, void __user *to,
157 size_t tail, size_t n)
Laura Abbott72586c62015-05-14 11:42:17 -0700158{
159 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley679e7c22015-11-27 14:11:02 -0500160 size_t size = N_TTY_BUF_SIZE - tail;
161 const void *from = read_buf_addr(ldata, tail);
162 int uncopied;
163
164 if (n > size) {
Peter Hurley309426a2016-01-09 22:55:27 -0800165 tty_audit_add_data(tty, from, size);
Peter Hurley679e7c22015-11-27 14:11:02 -0500166 uncopied = copy_to_user(to, from, size);
167 if (uncopied)
168 return uncopied;
169 to += size;
170 n -= size;
171 from = ldata->read_buf;
172 }
Laura Abbott72586c62015-05-14 11:42:17 -0700173
Peter Hurley309426a2016-01-09 22:55:27 -0800174 tty_audit_add_data(tty, from, n);
Laura Abbott72586c62015-05-14 11:42:17 -0700175 return copy_to_user(to, from, n);
176}
177
Peter Hurley24a89d12013-06-15 09:14:15 -0400178/**
Peter Hurley2c5dc462015-01-16 15:05:34 -0500179 * n_tty_kick_worker - start input worker (if required)
Peter Hurley24a89d12013-06-15 09:14:15 -0400180 * @tty: terminal
181 *
Peter Hurley2c5dc462015-01-16 15:05:34 -0500182 * Re-schedules the flip buffer work if it may have stopped
Peter Hurley24a89d12013-06-15 09:14:15 -0400183 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400184 * Caller holds exclusive termios_rwsem
185 * or
186 * n_tty_read()/consumer path:
187 * holds non-exclusive termios_rwsem
Peter Hurley24a89d12013-06-15 09:14:15 -0400188 */
189
Peter Hurley2c5dc462015-01-16 15:05:34 -0500190static void n_tty_kick_worker(struct tty_struct *tty)
Peter Hurley7879a9f2013-06-15 07:28:31 -0400191{
Peter Hurley24a89d12013-06-15 09:14:15 -0400192 struct n_tty_data *ldata = tty->disc_data;
193
Peter Hurley2c5dc462015-01-16 15:05:34 -0500194 /* Did the input worker stop? Restart it */
195 if (unlikely(ldata->no_room)) {
Peter Hurley24a89d12013-06-15 09:14:15 -0400196 ldata->no_room = 0;
197
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200198 WARN_RATELIMIT(tty->port->itty == NULL,
Sasha Levincadf7482012-10-25 14:26:35 -0400199 "scheduling with invalid itty\n");
Peter Hurley21622932013-03-11 16:44:21 -0400200 /* see if ldisc has been killed - if so, this means that
201 * even though the ldisc has been halted and ->buf.work
202 * cancelled, ->buf.work is about to be rescheduled
203 */
204 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
205 "scheduling buffer work for halted ldisc\n");
Peter Hurleye1760582015-10-17 16:36:23 -0400206 tty_buffer_restart_work(tty->port);
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200207 }
Linus Torvalds55db4c62011-06-04 06:33:24 +0900208}
209
Peter Hurley9a4aec22013-06-15 09:14:32 -0400210static ssize_t chars_in_buffer(struct tty_struct *tty)
211{
212 struct n_tty_data *ldata = tty->disc_data;
213 ssize_t n = 0;
214
215 if (!ldata->icanon)
Peter Hurley70aca712015-01-16 15:05:37 -0500216 n = ldata->commit_head - ldata->read_tail;
Peter Hurley9a4aec22013-06-15 09:14:32 -0400217 else
218 n = ldata->canon_head - ldata->read_tail;
219 return n;
220}
221
Peter Hurleyee0bab82013-06-15 09:14:34 -0400222/**
223 * n_tty_write_wakeup - asynchronous I/O notifier
224 * @tty: tty device
225 *
226 * Required for the ptys, serial driver etc. since processes
227 * that attach themselves to the master and rely on ASYNC
228 * IO must be woken up
229 */
230
231static void n_tty_write_wakeup(struct tty_struct *tty)
232{
233 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
234 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
235}
236
Peter Hurley4a23a4d2013-06-15 10:21:22 -0400237static void n_tty_check_throttle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400238{
Peter Hurleya3428462015-01-16 15:05:35 -0500239 struct n_tty_data *ldata = tty->disc_data;
240
Peter Hurley6367ca72013-06-15 09:14:33 -0400241 /*
242 * Check the remaining room for the input canonicalization
243 * mode. We don't want to throttle the driver if we're in
244 * canonical mode and don't have a newline yet!
245 */
Peter Hurleya3428462015-01-16 15:05:35 -0500246 if (ldata->icanon && ldata->canon_head == ldata->read_tail)
247 return;
248
Peter Hurley6367ca72013-06-15 09:14:33 -0400249 while (1) {
250 int throttled;
251 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
Peter Hurley5e28cca2015-01-16 15:05:36 -0500252 if (N_TTY_BUF_SIZE - read_cnt(ldata) >= TTY_THRESHOLD_THROTTLE)
Peter Hurley6367ca72013-06-15 09:14:33 -0400253 break;
254 throttled = tty_throttle_safe(tty);
255 if (!throttled)
256 break;
257 }
258 __tty_set_flow_change(tty, 0);
259}
260
Peter Hurley4b293492013-07-24 08:29:55 -0400261static void n_tty_check_unthrottle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400262{
Peter Hurley6d27a632016-01-10 22:40:56 -0800263 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
Peter Hurley3afb1b392013-07-23 08:47:30 -0400264 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
265 return;
266 if (!tty->count)
267 return;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500268 n_tty_kick_worker(tty);
Peter Hurley6d27a632016-01-10 22:40:56 -0800269 tty_wakeup(tty->link);
Peter Hurley3afb1b392013-07-23 08:47:30 -0400270 return;
271 }
272
Peter Hurley6367ca72013-06-15 09:14:33 -0400273 /* If there is enough space in the read buffer now, let the
274 * low-level driver know. We use chars_in_buffer() to
275 * check the buffer, as it now knows about canonical mode.
276 * Otherwise, if the driver is throttled and the line is
277 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
278 * we won't get any more characters.
279 */
280
281 while (1) {
282 int unthrottled;
283 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
284 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
285 break;
286 if (!tty->count)
287 break;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500288 n_tty_kick_worker(tty);
Peter Hurley6367ca72013-06-15 09:14:33 -0400289 unthrottled = tty_unthrottle_safe(tty);
290 if (!unthrottled)
291 break;
292 }
293 __tty_set_flow_change(tty, 0);
294}
295
Alan Cox17b82062008-10-13 10:45:06 +0100296/**
297 * put_tty_queue - add character to tty
298 * @c: character
Jiri Slaby57c94122012-10-18 22:26:43 +0200299 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100300 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400301 * Add a character to the tty read_buf queue.
302 *
303 * n_tty_receive_buf()/producer path:
304 * caller holds non-exclusive termios_rwsem
Alan Cox17b82062008-10-13 10:45:06 +0100305 */
306
Peter Hurley19e2ad62013-07-24 08:29:54 -0400307static inline void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Christian Riesch8bfbe2d2014-11-13 05:53:26 +0100309 *read_buf_addr(ldata, ldata->read_head) = c;
310 ldata->read_head++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 * reset_buffer_flags - reset buffer state
315 * @tty: terminal to reset
316 *
Peter Hurley25518c62013-03-11 16:44:31 -0400317 * Reset the read buffer counters and clear the flags.
318 * Called from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100319 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400320 * Locking: caller holds exclusive termios_rwsem
321 * (or locking is not required)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000323
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400324static void reset_buffer_flags(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Peter Hurleya73d3d62013-06-15 09:14:25 -0400326 ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
Peter Hurley17bd7902013-06-15 10:04:24 -0400327 ldata->echo_head = ldata->echo_tail = ldata->echo_commit = 0;
Peter Hurley70aca712015-01-16 15:05:37 -0500328 ldata->commit_head = 0;
Peter Hurley1075a6e2013-12-09 18:06:07 -0500329 ldata->echo_mark = 0;
Peter Hurley40d5e092013-06-15 10:21:17 -0400330 ldata->line_start = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000331
Peter Hurleya73d3d62013-06-15 09:14:25 -0400332 ldata->erasing = 0;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200333 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -0500334 ldata->push = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Peter Hurleya30737a2013-03-11 16:44:22 -0400337static void n_tty_packet_mode_flush(struct tty_struct *tty)
338{
339 unsigned long flags;
340
Peter Hurleya30737a2013-03-11 16:44:22 -0400341 if (tty->link->packet) {
Peter Hurley54e8e5f2014-10-16 15:33:26 -0400342 spin_lock_irqsave(&tty->ctrl_lock, flags);
Peter Hurleya30737a2013-03-11 16:44:22 -0400343 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
Peter Hurley54e8e5f2014-10-16 15:33:26 -0400344 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +0000345 wake_up_interruptible(&tty->link->read_wait);
Peter Hurleya30737a2013-03-11 16:44:22 -0400346 }
Peter Hurleya30737a2013-03-11 16:44:22 -0400347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349/**
350 * n_tty_flush_buffer - clean input queue
351 * @tty: terminal device
352 *
Peter Hurley25518c62013-03-11 16:44:31 -0400353 * Flush the input buffer. Called when the tty layer wants the
354 * buffer flushed (eg at hangup) or when the N_TTY line discipline
355 * internally has to clean the pending queue (for example some signals).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400357 * Holds termios_rwsem to exclude producer/consumer while
358 * buffer indices are reset.
359 *
360 * Locking: ctrl_lock, exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 */
Alan Cox4edf1822008-02-08 04:18:44 -0800362
363static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Peter Hurley6d76bd22013-06-15 09:14:26 -0400365 down_write(&tty->termios_rwsem);
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400366 reset_buffer_flags(tty->disc_data);
Peter Hurley2c5dc462015-01-16 15:05:34 -0500367 n_tty_kick_worker(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800368
Peter Hurleya30737a2013-03-11 16:44:22 -0400369 if (tty->link)
370 n_tty_packet_mode_flush(tty);
Peter Hurley6d76bd22013-06-15 09:14:26 -0400371 up_write(&tty->termios_rwsem);
372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * is_utf8_continuation - utf8 multibyte check
376 * @c: byte to check
377 *
378 * Returns true if the utf8 character 'c' is a multibyte continuation
379 * character. We use this to correctly compute the on screen size
380 * of the character when printing
381 */
Alan Cox4edf1822008-02-08 04:18:44 -0800382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static inline int is_utf8_continuation(unsigned char c)
384{
385 return (c & 0xc0) == 0x80;
386}
387
388/**
389 * is_continuation - multibyte check
390 * @c: byte to check
391 *
392 * Returns true if the utf8 character 'c' is a multibyte continuation
393 * character and the terminal is in unicode mode.
394 */
Alan Cox4edf1822008-02-08 04:18:44 -0800395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396static inline int is_continuation(unsigned char c, struct tty_struct *tty)
397{
398 return I_IUTF8(tty) && is_utf8_continuation(c);
399}
400
401/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000402 * do_output_char - output one character
403 * @c: character (or partial unicode symbol)
404 * @tty: terminal device
405 * @space: space available in tty driver write buffer
406 *
407 * This is a helper function that handles one output character
408 * (including special characters like TAB, CR, LF, etc.),
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600409 * doing OPOST processing and putting the results in the
410 * tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000411 *
412 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
413 * and NLDLY. They simply aren't relevant in the world today.
414 * If you ever need them, add them here.
415 *
416 * Returns the number of bytes of buffer space used or -1 if
417 * no space left.
418 *
419 * Locking: should be called under the output_lock to protect
420 * the column state and space left in the buffer
421 */
422
423static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
424{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200425 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000426 int spaces;
427
428 if (!space)
429 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000430
Joe Petersona88a69c2009-01-02 13:40:53 +0000431 switch (c) {
432 case '\n':
433 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200434 ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000435 if (O_ONLCR(tty)) {
436 if (space < 2)
437 return -1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200438 ldata->canon_column = ldata->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700439 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000440 return 2;
441 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200442 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000443 break;
444 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200445 if (O_ONOCR(tty) && ldata->column == 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000446 return 0;
447 if (O_OCRNL(tty)) {
448 c = '\n';
449 if (O_ONLRET(tty))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200450 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000451 break;
452 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200453 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000454 break;
455 case '\t':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200456 spaces = 8 - (ldata->column & 7);
Joe Petersona88a69c2009-01-02 13:40:53 +0000457 if (O_TABDLY(tty) == XTABS) {
458 if (space < spaces)
459 return -1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200460 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000461 tty->ops->write(tty, " ", spaces);
462 return spaces;
463 }
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200464 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000465 break;
466 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200467 if (ldata->column > 0)
468 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000469 break;
470 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000471 if (!iscntrl(c)) {
472 if (O_OLCUC(tty))
473 c = toupper(c);
474 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200475 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000476 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000477 break;
478 }
479
480 tty_put_char(tty, c);
481 return 1;
482}
483
484/**
485 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * @c: character (or partial unicode symbol)
487 * @tty: terminal device
488 *
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600489 * Output one character with OPOST processing.
490 * Returns -1 when the output device is full and the character
491 * must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000493 * Locking: output_lock to protect column state and space left
494 * (also, this is called from n_tty_write under the
495 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 */
Alan Cox4edf1822008-02-08 04:18:44 -0800497
Joe Petersona88a69c2009-01-02 13:40:53 +0000498static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Jiri Slabybddc7152012-10-18 22:26:42 +0200500 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000501 int space, retval;
502
Jiri Slabybddc7152012-10-18 22:26:42 +0200503 mutex_lock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Alan Coxf34d7a52008-04-30 00:54:13 -0700505 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000506 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jiri Slabybddc7152012-10-18 22:26:42 +0200508 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000509 if (retval < 0)
510 return -1;
511 else
512 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000516 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 * @tty: terminal device
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600518 * @buf: character buffer
519 * @nr: number of bytes to output
520 *
521 * Output a block of characters with OPOST processing.
522 * Returns the number of characters output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 *
524 * This path is used to speed up block console writes, among other
525 * things when processing blocks of output data. It handles only
526 * the simple cases normally found and helps to generate blocks of
527 * symbols for the console driver and thus improve performance.
528 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000529 * Locking: output_lock to protect column state and space left
530 * (also, this is called from n_tty_write under the
531 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 */
Alan Cox4edf1822008-02-08 04:18:44 -0800533
Joe Petersona88a69c2009-01-02 13:40:53 +0000534static ssize_t process_output_block(struct tty_struct *tty,
535 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200537 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100539 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 const unsigned char *cp;
541
Jiri Slabybddc7152012-10-18 22:26:42 +0200542 mutex_lock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000543
Alan Coxf34d7a52008-04-30 00:54:13 -0700544 space = tty_write_room(tty);
Alan Cox300a6202009-01-02 13:41:04 +0000545 if (!space) {
Jiri Slabybddc7152012-10-18 22:26:42 +0200546 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (nr > space)
550 nr = space;
551
552 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000553 unsigned char c = *cp;
554
555 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 case '\n':
557 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200558 ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (O_ONLCR(tty))
560 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200561 ldata->canon_column = ldata->column;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 break;
563 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200564 if (O_ONOCR(tty) && ldata->column == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 goto break_out;
566 if (O_OCRNL(tty))
567 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200568 ldata->canon_column = ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 break;
570 case '\t':
571 goto break_out;
572 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200573 if (ldata->column > 0)
574 ldata->column--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 break;
576 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000577 if (!iscntrl(c)) {
578 if (O_OLCUC(tty))
579 goto break_out;
580 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200581 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 break;
584 }
585 }
586break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700587 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000588
Jiri Slabybddc7152012-10-18 22:26:42 +0200589 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return i;
591}
592
Joe Petersona88a69c2009-01-02 13:40:53 +0000593/**
594 * process_echoes - write pending echo characters
595 * @tty: terminal device
596 *
597 * Write previously buffered echo (and other ldisc-generated)
598 * characters to the tty.
599 *
600 * Characters generated by the ldisc (including echoes) need to
601 * be buffered because the driver's write buffer can fill during
602 * heavy program output. Echoing straight to the driver will
603 * often fail under these conditions, causing lost characters and
604 * resulting mismatches of ldisc state information.
605 *
606 * Since the ldisc state must represent the characters actually sent
607 * to the driver at the time of the write, operations like certain
608 * changes in column state are also saved in the buffer and executed
609 * here.
610 *
611 * A circular fifo buffer is used so that the most recent characters
612 * are prioritized. Also, when control characters are echoed with a
613 * prefixed "^", the pair is treated atomically and thus not separated.
614 *
Peter Hurley019ebdf2013-06-15 10:04:25 -0400615 * Locking: callers must hold output_lock
Joe Petersona88a69c2009-01-02 13:40:53 +0000616 */
617
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400618static size_t __process_echoes(struct tty_struct *tty)
Joe Petersona88a69c2009-01-02 13:40:53 +0000619{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200620 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400621 int space, old_space;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400622 size_t tail;
Joe Petersona88a69c2009-01-02 13:40:53 +0000623 unsigned char c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000624
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400625 old_space = space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000626
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400627 tail = ldata->echo_tail;
Peter Hurley29c7c5c2013-06-15 10:04:28 -0400628 while (ldata->echo_commit != tail) {
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400629 c = echo_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +0000630 if (c == ECHO_OP_START) {
631 unsigned char op;
Joe Petersona88a69c2009-01-02 13:40:53 +0000632 int no_space_left = 0;
633
634 /*
635 * If the buffer byte is the start of a multi-byte
636 * operation, get the next byte, which is either the
637 * op code or a control character value.
638 */
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400639 op = echo_buf(ldata, tail + 1);
Alan Cox300a6202009-01-02 13:41:04 +0000640
Joe Petersona88a69c2009-01-02 13:40:53 +0000641 switch (op) {
642 unsigned int num_chars, num_bs;
643
644 case ECHO_OP_ERASE_TAB:
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400645 num_chars = echo_buf(ldata, tail + 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000646
647 /*
648 * Determine how many columns to go back
649 * in order to erase the tab.
650 * This depends on the number of columns
651 * used by other characters within the tab
652 * area. If this (modulo 8) count is from
653 * the start of input rather than from a
654 * previous tab, we offset by canon column.
655 * Otherwise, tab spacing is normal.
656 */
657 if (!(num_chars & 0x80))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200658 num_chars += ldata->canon_column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000659 num_bs = 8 - (num_chars & 7);
660
661 if (num_bs > space) {
662 no_space_left = 1;
663 break;
664 }
665 space -= num_bs;
666 while (num_bs--) {
667 tty_put_char(tty, '\b');
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200668 if (ldata->column > 0)
669 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000670 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400671 tail += 3;
Joe Petersona88a69c2009-01-02 13:40:53 +0000672 break;
673
674 case ECHO_OP_SET_CANON_COL:
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200675 ldata->canon_column = ldata->column;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400676 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000677 break;
678
679 case ECHO_OP_MOVE_BACK_COL:
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200680 if (ldata->column > 0)
681 ldata->column--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400682 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000683 break;
684
685 case ECHO_OP_START:
686 /* This is an escaped echo op start code */
687 if (!space) {
688 no_space_left = 1;
689 break;
690 }
691 tty_put_char(tty, ECHO_OP_START);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200692 ldata->column++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000693 space--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400694 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000695 break;
696
697 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000698 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600699 * If the op is not a special byte code,
700 * it is a ctrl char tagged to be echoed
701 * as "^X" (where X is the letter
702 * representing the control char).
703 * Note that we must ensure there is
704 * enough space for the whole ctrl pair.
705 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000706 */
Joe Peterson62b26352009-09-09 15:03:47 -0600707 if (space < 2) {
708 no_space_left = 1;
709 break;
710 }
711 tty_put_char(tty, '^');
712 tty_put_char(tty, op ^ 0100);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200713 ldata->column += 2;
Joe Peterson62b26352009-09-09 15:03:47 -0600714 space -= 2;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400715 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000716 }
717
718 if (no_space_left)
719 break;
720 } else {
Peter Hurley582f5592013-05-17 12:49:48 -0400721 if (O_OPOST(tty)) {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600722 int retval = do_output_char(c, tty, space);
723 if (retval < 0)
724 break;
725 space -= retval;
726 } else {
727 if (!space)
728 break;
729 tty_put_char(tty, c);
730 space -= 1;
731 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400732 tail += 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000733 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000734 }
735
Peter Hurleycbfd0342013-06-15 10:04:26 -0400736 /* If the echo buffer is nearly full (so that the possibility exists
737 * of echo overrun before the next commit), then discard enough
738 * data at the tail to prevent a subsequent overrun */
739 while (ldata->echo_commit - tail >= ECHO_DISCARD_WATERMARK) {
Roel Kluinc476f652013-10-11 22:08:49 +0200740 if (echo_buf(ldata, tail) == ECHO_OP_START) {
Peter Hurley6f222532013-11-08 09:42:18 -0500741 if (echo_buf(ldata, tail + 1) == ECHO_OP_ERASE_TAB)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400742 tail += 3;
743 else
744 tail += 2;
745 } else
746 tail++;
747 }
748
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400749 ldata->echo_tail = tail;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400750 return old_space - space;
Joe Petersona88a69c2009-01-02 13:40:53 +0000751}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Peter Hurley17bd7902013-06-15 10:04:24 -0400753static void commit_echoes(struct tty_struct *tty)
754{
755 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400756 size_t nr, old, echoed;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400757 size_t head;
758
759 head = ldata->echo_head;
Peter Hurley1075a6e2013-12-09 18:06:07 -0500760 ldata->echo_mark = head;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400761 old = ldata->echo_commit - ldata->echo_tail;
762
763 /* Process committed echoes if the accumulated # of bytes
764 * is over the threshold (and try again each time another
765 * block is accumulated) */
766 nr = head - ldata->echo_tail;
767 if (nr < ECHO_COMMIT_WATERMARK || (nr % ECHO_BLOCK > old % ECHO_BLOCK))
768 return;
Peter Hurley17bd7902013-06-15 10:04:24 -0400769
Peter Hurley019ebdf2013-06-15 10:04:25 -0400770 mutex_lock(&ldata->output_lock);
Peter Hurleycbfd0342013-06-15 10:04:26 -0400771 ldata->echo_commit = head;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400772 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400773 mutex_unlock(&ldata->output_lock);
774
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400775 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400776 tty->ops->flush_chars(tty);
777}
778
779static void process_echoes(struct tty_struct *tty)
780{
781 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400782 size_t echoed;
Peter Hurley019ebdf2013-06-15 10:04:25 -0400783
Peter Hurleye2613be2014-02-11 16:34:55 -0500784 if (ldata->echo_mark == ldata->echo_tail)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400785 return;
786
787 mutex_lock(&ldata->output_lock);
Peter Hurley1075a6e2013-12-09 18:06:07 -0500788 ldata->echo_commit = ldata->echo_mark;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400789 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400790 mutex_unlock(&ldata->output_lock);
791
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400792 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400793 tty->ops->flush_chars(tty);
Peter Hurley17bd7902013-06-15 10:04:24 -0400794}
795
Peter Hurley1075a6e2013-12-09 18:06:07 -0500796/* NB: echo_mark and echo_head should be equivalent here */
Peter Hurleycbfd0342013-06-15 10:04:26 -0400797static void flush_echoes(struct tty_struct *tty)
798{
799 struct n_tty_data *ldata = tty->disc_data;
800
Peter Hurley39434ab2013-11-29 12:56:10 -0500801 if ((!L_ECHO(tty) && !L_ECHONL(tty)) ||
802 ldata->echo_commit == ldata->echo_head)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400803 return;
804
805 mutex_lock(&ldata->output_lock);
806 ldata->echo_commit = ldata->echo_head;
807 __process_echoes(tty);
808 mutex_unlock(&ldata->output_lock);
809}
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000812 * add_echo_byte - add a byte to the echo buffer
813 * @c: unicode byte to echo
Jiri Slaby57c94122012-10-18 22:26:43 +0200814 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000815 *
816 * Add a character or operation byte to the echo buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000817 */
818
Peter Hurleycbfd0342013-06-15 10:04:26 -0400819static inline void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000820{
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400821 *echo_buf_addr(ldata, ldata->echo_head++) = c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000822}
823
824/**
825 * echo_move_back_col - add operation to move back a column
Jiri Slaby57c94122012-10-18 22:26:43 +0200826 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000827 *
828 * Add an operation to the echo buffer to move back one column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000829 */
830
Jiri Slaby57c94122012-10-18 22:26:43 +0200831static void echo_move_back_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000832{
Jiri Slaby57c94122012-10-18 22:26:43 +0200833 add_echo_byte(ECHO_OP_START, ldata);
834 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000835}
836
837/**
838 * echo_set_canon_col - add operation to set the canon column
Jiri Slaby57c94122012-10-18 22:26:43 +0200839 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000840 *
841 * Add an operation to the echo buffer to set the canon column
842 * to the current column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000843 */
844
Jiri Slaby57c94122012-10-18 22:26:43 +0200845static void echo_set_canon_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000846{
Jiri Slaby57c94122012-10-18 22:26:43 +0200847 add_echo_byte(ECHO_OP_START, ldata);
848 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000849}
850
851/**
852 * echo_erase_tab - add operation to erase a tab
853 * @num_chars: number of character columns already used
854 * @after_tab: true if num_chars starts after a previous tab
Jiri Slaby57c94122012-10-18 22:26:43 +0200855 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000856 *
857 * Add an operation to the echo buffer to erase a tab.
858 *
859 * Called by the eraser function, which knows how many character
860 * columns have been used since either a previous tab or the start
861 * of input. This information will be used later, along with
862 * canon column (if applicable), to go back the correct number
863 * of columns.
Joe Petersona88a69c2009-01-02 13:40:53 +0000864 */
865
866static void echo_erase_tab(unsigned int num_chars, int after_tab,
Jiri Slaby57c94122012-10-18 22:26:43 +0200867 struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000868{
Jiri Slaby57c94122012-10-18 22:26:43 +0200869 add_echo_byte(ECHO_OP_START, ldata);
870 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000871
872 /* We only need to know this modulo 8 (tab spacing) */
873 num_chars &= 7;
874
875 /* Set the high bit as a flag if num_chars is after a previous tab */
876 if (after_tab)
877 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000878
Jiri Slaby57c94122012-10-18 22:26:43 +0200879 add_echo_byte(num_chars, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000880}
881
882/**
883 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 * @c: unicode byte to echo
885 * @tty: terminal device
886 *
Alan Cox4edf1822008-02-08 04:18:44 -0800887 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100889 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000890 * This variant does not treat control characters specially.
Joe Petersona88a69c2009-01-02 13:40:53 +0000891 */
892
Jiri Slaby57c94122012-10-18 22:26:43 +0200893static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000894{
Joe Petersona88a69c2009-01-02 13:40:53 +0000895 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200896 add_echo_byte(ECHO_OP_START, ldata);
897 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000898 } else {
Jiri Slaby57c94122012-10-18 22:26:43 +0200899 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000900 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000901}
902
903/**
904 * echo_char - echo a character
905 * @c: unicode byte to echo
906 * @tty: terminal device
907 *
908 * Echo user input back onto the screen. This must be called only when
909 * L_ECHO(tty) is true. Called from the driver receive_buf path.
910 *
Joe Peterson62b26352009-09-09 15:03:47 -0600911 * This variant tags control characters to be echoed as "^X"
912 * (where X is the letter representing the control char).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 */
914
915static void echo_char(unsigned char c, struct tty_struct *tty)
916{
Jiri Slabybddc7152012-10-18 22:26:42 +0200917 struct n_tty_data *ldata = tty->disc_data;
918
Joe Petersona88a69c2009-01-02 13:40:53 +0000919 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200920 add_echo_byte(ECHO_OP_START, ldata);
921 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000922 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600923 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Jiri Slaby57c94122012-10-18 22:26:43 +0200924 add_echo_byte(ECHO_OP_START, ldata);
925 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Alan Cox17b82062008-10-13 10:45:06 +0100929/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000930 * finish_erasing - complete erase
Jiri Slaby57c94122012-10-18 22:26:43 +0200931 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100932 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000933
Jiri Slaby57c94122012-10-18 22:26:43 +0200934static inline void finish_erasing(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200936 if (ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200937 echo_char_raw('/', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200938 ldata->erasing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940}
941
942/**
943 * eraser - handle erase function
944 * @c: character input
945 * @tty: terminal device
946 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200947 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 * present in the stream from the driver layer. Handles the complexities
949 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100950 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400951 * n_tty_receive_buf()/producer path:
952 * caller holds non-exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 */
Alan Cox4edf1822008-02-08 04:18:44 -0800954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955static void eraser(unsigned char c, struct tty_struct *tty)
956{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200957 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 enum { ERASE, WERASE, KILL } kill_type;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400959 size_t head;
960 size_t cnt;
961 int seen_alnums;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200963 if (ldata->read_head == ldata->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000964 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return;
966 }
967 if (c == ERASE_CHAR(tty))
968 kill_type = ERASE;
969 else if (c == WERASE_CHAR(tty))
970 kill_type = WERASE;
971 else {
972 if (!L_ECHO(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200973 ldata->read_head = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return;
975 }
976 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200977 ldata->read_head = ldata->canon_head;
Jiri Slaby57c94122012-10-18 22:26:43 +0200978 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 echo_char(KILL_CHAR(tty), tty);
980 /* Add a newline if ECHOK is on and ECHOKE is off. */
981 if (L_ECHOK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +0200982 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return;
984 }
985 kill_type = KILL;
986 }
987
988 seen_alnums = 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200989 while (ldata->read_head != ldata->canon_head) {
990 head = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 /* erase a single possibly multibyte character */
993 do {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400994 head--;
995 c = read_buf(ldata, head);
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200996 } while (is_continuation(c, tty) && head != ldata->canon_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 /* do not partially erase */
999 if (is_continuation(c, tty))
1000 break;
1001
1002 if (kill_type == WERASE) {
1003 /* Equivalent to BSD's ALTWERASE. */
1004 if (isalnum(c) || c == '_')
1005 seen_alnums++;
1006 else if (seen_alnums)
1007 break;
1008 }
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001009 cnt = ldata->read_head - head;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001010 ldata->read_head = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (L_ECHO(tty)) {
1012 if (L_ECHOPRT(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001013 if (!ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001014 echo_char_raw('\\', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001015 ldata->erasing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017 /* if cnt > 1, output a multi-byte character */
1018 echo_char(c, tty);
1019 while (--cnt > 0) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001020 head++;
1021 echo_char_raw(read_buf(ldata, head), ldata);
Jiri Slaby57c94122012-10-18 22:26:43 +02001022 echo_move_back_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1025 echo_char(ERASE_CHAR(tty), tty);
1026 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +00001027 unsigned int num_chars = 0;
1028 int after_tab = 0;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001029 size_t tail = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Joe Petersona88a69c2009-01-02 13:40:53 +00001031 /*
1032 * Count the columns used for characters
1033 * since the start of input or after a
1034 * previous tab.
1035 * This info is used to go back the correct
1036 * number of columns.
1037 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001038 while (tail != ldata->canon_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001039 tail--;
1040 c = read_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +00001041 if (c == '\t') {
1042 after_tab = 1;
1043 break;
Alan Cox300a6202009-01-02 13:41:04 +00001044 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +00001046 num_chars += 2;
1047 } else if (!is_continuation(c, tty)) {
1048 num_chars++;
1049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001051 echo_erase_tab(num_chars, after_tab, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 } else {
1053 if (iscntrl(c) && L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001054 echo_char_raw('\b', ldata);
1055 echo_char_raw(' ', ldata);
1056 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001059 echo_char_raw('\b', ldata);
1060 echo_char_raw(' ', ldata);
1061 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063 }
1064 }
1065 if (kill_type == ERASE)
1066 break;
1067 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001068 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001069 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
1072/**
1073 * isig - handle the ISIG optio
1074 * @sig: signal
1075 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001077 * Called when a signal is being sent due to terminal input.
1078 * Called from the driver receive_buf path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001079 *
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001080 * Performs input and output flush if !NOFLSH. In this context, the echo
1081 * buffer is 'output'. The signal is processed first to alert any current
1082 * readers or writers to discontinue and exit their i/o loops.
1083 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001084 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 */
Alan Cox4edf1822008-02-08 04:18:44 -08001086
Peter Hurley3b19e032015-06-27 09:21:32 -04001087static void __isig(int sig, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Peter Hurley8c985d12013-03-06 08:38:19 -05001089 struct pid *tty_pgrp = tty_get_pgrp(tty);
1090 if (tty_pgrp) {
1091 kill_pgrp(tty_pgrp, sig, 1);
1092 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
Peter Hurley3b19e032015-06-27 09:21:32 -04001094}
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001095
Peter Hurley3b19e032015-06-27 09:21:32 -04001096static void isig(int sig, struct tty_struct *tty)
1097{
1098 struct n_tty_data *ldata = tty->disc_data;
1099
1100 if (L_NOFLSH(tty)) {
1101 /* signal only */
1102 __isig(sig, tty);
1103
1104 } else { /* signal and flush */
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001105 up_read(&tty->termios_rwsem);
1106 down_write(&tty->termios_rwsem);
1107
Peter Hurley3b19e032015-06-27 09:21:32 -04001108 __isig(sig, tty);
1109
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001110 /* clear echo buffer */
1111 mutex_lock(&ldata->output_lock);
1112 ldata->echo_head = ldata->echo_tail = 0;
1113 ldata->echo_mark = ldata->echo_commit = 0;
1114 mutex_unlock(&ldata->output_lock);
1115
1116 /* clear output buffer */
1117 tty_driver_flush_buffer(tty);
1118
1119 /* clear input buffer */
1120 reset_buffer_flags(tty->disc_data);
1121
1122 /* notify pty master of flush */
1123 if (tty->link)
1124 n_tty_packet_mode_flush(tty);
1125
1126 up_write(&tty->termios_rwsem);
1127 down_read(&tty->termios_rwsem);
1128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129}
1130
1131/**
1132 * n_tty_receive_break - handle break
1133 * @tty: terminal
1134 *
1135 * An RS232 break event has been hit in the incoming bitstream. This
1136 * can cause a variety of events depending upon the termios settings.
1137 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001138 * n_tty_receive_buf()/producer path:
1139 * caller holds non-exclusive termios_rwsem
Peter Hurley6d76bd22013-06-15 09:14:26 -04001140 *
1141 * Note: may get exclusive termios_rwsem if flushing input buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 */
Alan Cox4edf1822008-02-08 04:18:44 -08001143
Peter Hurley4b293492013-07-24 08:29:55 -04001144static void n_tty_receive_break(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Jiri Slaby57c94122012-10-18 22:26:43 +02001146 struct n_tty_data *ldata = tty->disc_data;
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (I_IGNBRK(tty))
1149 return;
1150 if (I_BRKINT(tty)) {
Peter Hurley8c985d12013-03-06 08:38:19 -05001151 isig(SIGINT, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return;
1153 }
1154 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001155 put_tty_queue('\377', ldata);
1156 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001158 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
1161/**
1162 * n_tty_receive_overrun - handle overrun reporting
1163 * @tty: terminal
1164 *
1165 * Data arrived faster than we could process it. While the tty
1166 * driver has flagged this the bits that were missed are gone
1167 * forever.
1168 *
1169 * Called from the receive_buf path so single threaded. Does not
1170 * need locking as num_overrun and overrun_time are function
1171 * private.
1172 */
Alan Cox4edf1822008-02-08 04:18:44 -08001173
Peter Hurley4b293492013-07-24 08:29:55 -04001174static void n_tty_receive_overrun(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001176 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001178 ldata->num_overrun++;
1179 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1180 time_after(ldata->overrun_time, jiffies)) {
Peter Hurley339f36b2015-11-08 13:01:13 -05001181 tty_warn(tty, "%d input overrun(s)\n", ldata->num_overrun);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001182 ldata->overrun_time = jiffies;
1183 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
1185}
1186
1187/**
1188 * n_tty_receive_parity_error - error notifier
1189 * @tty: terminal device
1190 * @c: character
1191 *
1192 * Process a parity error and queue the right data to indicate
Peter Hurley6d76bd22013-06-15 09:14:26 -04001193 * the error case if necessary.
1194 *
1195 * n_tty_receive_buf()/producer path:
1196 * caller holds non-exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 */
Peter Hurley4b293492013-07-24 08:29:55 -04001198static void n_tty_receive_parity_error(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Jiri Slaby57c94122012-10-18 22:26:43 +02001200 struct n_tty_data *ldata = tty->disc_data;
1201
Peter Hurley66528f92014-06-16 08:10:42 -04001202 if (I_INPCK(tty)) {
1203 if (I_IGNPAR(tty))
1204 return;
1205 if (I_PARMRK(tty)) {
1206 put_tty_queue('\377', ldata);
1207 put_tty_queue('\0', ldata);
1208 put_tty_queue(c, ldata);
1209 } else
1210 put_tty_queue('\0', ldata);
1211 } else
Jiri Slaby57c94122012-10-18 22:26:43 +02001212 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001215static void
1216n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c)
1217{
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001218 isig(signal, tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001219 if (I_IXON(tty))
1220 start_tty(tty);
1221 if (L_ECHO(tty)) {
1222 echo_char(c, tty);
1223 commit_echoes(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001224 } else
1225 process_echoes(tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001226 return;
1227}
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229/**
1230 * n_tty_receive_char - perform processing
1231 * @tty: terminal device
1232 * @c: character
1233 *
1234 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001235 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 * driver above.
Peter Hurley6d76bd22013-06-15 09:14:26 -04001237 *
1238 * n_tty_receive_buf()/producer path:
1239 * caller holds non-exclusive termios_rwsem
1240 * publishes canon_head if canonical mode is active
Peter Hurleye60d27c2013-07-24 08:29:56 -04001241 *
1242 * Returns 1 if LNEXT was received, else returns 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 */
1244
Peter Hurleye60d27c2013-07-24 08:29:56 -04001245static int
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001246n_tty_receive_char_special(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001248 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (I_IXON(tty)) {
1251 if (c == START_CHAR(tty)) {
1252 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001253 process_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001254 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256 if (c == STOP_CHAR(tty)) {
1257 stop_tty(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001258 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260 }
Joe Peterson575537b32008-04-30 00:53:30 -07001261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (L_ISIG(tty)) {
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001263 if (c == INTR_CHAR(tty)) {
1264 n_tty_receive_signal_char(tty, SIGINT, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001265 return 0;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001266 } else if (c == QUIT_CHAR(tty)) {
1267 n_tty_receive_signal_char(tty, SIGQUIT, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001268 return 0;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001269 } else if (c == SUSP_CHAR(tty)) {
1270 n_tty_receive_signal_char(tty, SIGTSTP, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001271 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273 }
Joe Peterson575537b32008-04-30 00:53:30 -07001274
Peter Hurley855df3c2013-07-24 08:29:50 -04001275 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1276 start_tty(tty);
1277 process_echoes(tty);
1278 }
1279
Joe Peterson575537b32008-04-30 00:53:30 -07001280 if (c == '\r') {
1281 if (I_IGNCR(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001282 return 0;
Joe Peterson575537b32008-04-30 00:53:30 -07001283 if (I_ICRNL(tty))
1284 c = '\n';
1285 } else if (c == '\n' && I_INLCR(tty))
1286 c = '\r';
1287
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001288 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1290 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1291 eraser(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001292 commit_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
1295 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001296 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001298 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001300 echo_char_raw('^', ldata);
1301 echo_char_raw('\b', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001302 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
1304 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001305 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001307 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001308 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Jiri Slaby57c94122012-10-18 22:26:43 +02001310 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001312 echo_char_raw('\n', ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001313 while (tail != ldata->read_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001314 echo_char(read_buf(ldata, tail), tty);
1315 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001317 commit_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320 if (c == '\n') {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001321 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001322 echo_char_raw('\n', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001323 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
1325 goto handle_newline;
1326 }
1327 if (c == EOF_CHAR(tty)) {
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))) {
1333 /*
1334 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1335 */
1336 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001338 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001339 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 echo_char(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001341 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343 /*
1344 * XXX does PARMRK doubling happen for
1345 * EOL_CHAR and EOL2_CHAR?
1346 */
Peter Hurley001ba922013-12-02 14:24:44 -05001347 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001348 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Alan Cox4edf1822008-02-08 04:18:44 -08001350handle_newline:
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001351 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Peter Hurley6d76bd22013-06-15 09:14:26 -04001352 put_tty_queue(c, ldata);
Peter Hurley70aca712015-01-16 15:05:37 -05001353 smp_store_release(&ldata->canon_head, ldata->read_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001355 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001356 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358 }
Alan Cox4edf1822008-02-08 04:18:44 -08001359
Joe Petersonacc71bb2009-01-02 13:43:32 +00001360 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001361 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001363 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 else {
1365 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001366 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001367 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 echo_char(c, tty);
1369 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001370 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
1372
Peter Hurley001ba922013-12-02 14:24:44 -05001373 /* PARMRK doubling check */
1374 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001375 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Jiri Slaby57c94122012-10-18 22:26:43 +02001377 put_tty_queue(c, ldata);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001378 return 0;
Alan Cox4edf1822008-02-08 04:18:44 -08001379}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Peter Hurleye60d27c2013-07-24 08:29:56 -04001381static inline void
1382n_tty_receive_char_inline(struct tty_struct *tty, unsigned char c)
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001383{
1384 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001385
Peter Hurleye60d27c2013-07-24 08:29:56 -04001386 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1387 start_tty(tty);
1388 process_echoes(tty);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001389 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001390 if (L_ECHO(tty)) {
1391 finish_erasing(ldata);
1392 /* Record the column of first canon char. */
1393 if (ldata->canon_head == ldata->read_head)
1394 echo_set_canon_col(ldata);
1395 echo_char(c, tty);
1396 commit_echoes(tty);
1397 }
Peter Hurley001ba922013-12-02 14:24:44 -05001398 /* PARMRK doubling check */
1399 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001400 put_tty_queue(c, ldata);
1401 put_tty_queue(c, ldata);
1402}
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001403
Peter Hurleyeb3e4662013-12-02 14:24:42 -05001404static void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
Peter Hurleye60d27c2013-07-24 08:29:56 -04001405{
1406 n_tty_receive_char_inline(tty, c);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001407}
1408
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001409static inline void
Peter Hurley7de971b2013-07-24 08:29:53 -04001410n_tty_receive_char_fast(struct tty_struct *tty, unsigned char c)
1411{
1412 struct n_tty_data *ldata = tty->disc_data;
1413
Peter Hurleye60d27c2013-07-24 08:29:56 -04001414 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1415 start_tty(tty);
1416 process_echoes(tty);
Peter Hurley7de971b2013-07-24 08:29:53 -04001417 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001418 if (L_ECHO(tty)) {
1419 finish_erasing(ldata);
1420 /* Record the column of first canon char. */
1421 if (ldata->canon_head == ldata->read_head)
1422 echo_set_canon_col(ldata);
1423 echo_char(c, tty);
1424 commit_echoes(tty);
1425 }
1426 put_tty_queue(c, ldata);
Peter Hurley7de971b2013-07-24 08:29:53 -04001427}
1428
Peter Hurley8dc4b252013-12-02 14:24:43 -05001429static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001430{
1431 if (I_ISTRIP(tty))
1432 c &= 0x7f;
1433 if (I_IUCLC(tty) && L_IEXTEN(tty))
1434 c = tolower(c);
1435
1436 if (I_IXON(tty)) {
1437 if (c == STOP_CHAR(tty))
1438 stop_tty(tty);
1439 else if (c == START_CHAR(tty) ||
1440 (tty->stopped && !tty->flow_stopped && I_IXANY(tty) &&
1441 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) &&
1442 c != SUSP_CHAR(tty))) {
1443 start_tty(tty);
1444 process_echoes(tty);
1445 }
1446 }
1447}
1448
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001449static void
1450n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)
1451{
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001452 switch (flag) {
1453 case TTY_BREAK:
1454 n_tty_receive_break(tty);
1455 break;
1456 case TTY_PARITY:
1457 case TTY_FRAME:
1458 n_tty_receive_parity_error(tty, c);
1459 break;
1460 case TTY_OVERRUN:
1461 n_tty_receive_overrun(tty);
1462 break;
1463 default:
Peter Hurley339f36b2015-11-08 13:01:13 -05001464 tty_err(tty, "unknown flag %d\n", flag);
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001465 break;
1466 }
1467}
1468
Peter Hurleye60d27c2013-07-24 08:29:56 -04001469static void
1470n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag)
1471{
1472 struct n_tty_data *ldata = tty->disc_data;
1473
1474 ldata->lnext = 0;
1475 if (likely(flag == TTY_NORMAL)) {
1476 if (I_ISTRIP(tty))
1477 c &= 0x7f;
1478 if (I_IUCLC(tty) && L_IEXTEN(tty))
1479 c = tolower(c);
1480 n_tty_receive_char(tty, c);
1481 } else
1482 n_tty_receive_char_flagged(tty, c, flag);
1483}
1484
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001485static void
1486n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp,
1487 char *fp, int count)
1488{
1489 struct n_tty_data *ldata = tty->disc_data;
1490 size_t n, head;
1491
1492 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001493 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001494 memcpy(read_buf_addr(ldata, head), cp, n);
1495 ldata->read_head += n;
1496 cp += n;
1497 count -= n;
1498
1499 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001500 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001501 memcpy(read_buf_addr(ldata, head), cp, n);
1502 ldata->read_head += n;
1503}
1504
Peter Hurley554117b2013-06-15 10:21:25 -04001505static void
1506n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp,
1507 char *fp, int count)
1508{
1509 struct n_tty_data *ldata = tty->disc_data;
1510 char flag = TTY_NORMAL;
1511
1512 while (count--) {
1513 if (fp)
1514 flag = *fp++;
1515 if (likely(flag == TTY_NORMAL))
1516 put_tty_queue(*cp++, ldata);
1517 else
1518 n_tty_receive_char_flagged(tty, *cp++, flag);
1519 }
1520}
1521
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001522static void
1523n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
1524 char *fp, int count)
1525{
1526 char flag = TTY_NORMAL;
1527
1528 while (count--) {
1529 if (fp)
1530 flag = *fp++;
1531 if (likely(flag == TTY_NORMAL))
1532 n_tty_receive_char_closing(tty, *cp++);
1533 else
1534 n_tty_receive_char_flagged(tty, *cp++, flag);
1535 }
1536}
1537
Peter Hurley7d88d632013-07-24 08:29:49 -04001538static void
1539n_tty_receive_buf_standard(struct tty_struct *tty, const unsigned char *cp,
Peter Hurley6baad002013-07-24 08:29:52 -04001540 char *fp, int count)
1541{
1542 struct n_tty_data *ldata = tty->disc_data;
1543 char flag = TTY_NORMAL;
1544
1545 while (count--) {
1546 if (fp)
1547 flag = *fp++;
1548 if (likely(flag == TTY_NORMAL)) {
1549 unsigned char c = *cp++;
1550
1551 if (I_ISTRIP(tty))
1552 c &= 0x7f;
1553 if (I_IUCLC(tty) && L_IEXTEN(tty))
1554 c = tolower(c);
1555 if (L_EXTPROC(tty)) {
1556 put_tty_queue(c, ldata);
1557 continue;
1558 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001559 if (!test_bit(c, ldata->char_map))
1560 n_tty_receive_char_inline(tty, c);
1561 else if (n_tty_receive_char_special(tty, c) && count) {
1562 if (fp)
1563 flag = *fp++;
1564 n_tty_receive_char_lnext(tty, *cp++, flag);
1565 count--;
1566 }
Peter Hurley6baad002013-07-24 08:29:52 -04001567 } else
1568 n_tty_receive_char_flagged(tty, *cp++, flag);
1569 }
1570}
1571
1572static void
1573n_tty_receive_buf_fast(struct tty_struct *tty, const unsigned char *cp,
1574 char *fp, int count)
Peter Hurley7d88d632013-07-24 08:29:49 -04001575{
Peter Hurleye60d27c2013-07-24 08:29:56 -04001576 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley7d88d632013-07-24 08:29:49 -04001577 char flag = TTY_NORMAL;
1578
1579 while (count--) {
1580 if (fp)
1581 flag = *fp++;
Peter Hurleye60d27c2013-07-24 08:29:56 -04001582 if (likely(flag == TTY_NORMAL)) {
1583 unsigned char c = *cp++;
1584
1585 if (!test_bit(c, ldata->char_map))
1586 n_tty_receive_char_fast(tty, c);
1587 else if (n_tty_receive_char_special(tty, c) && count) {
1588 if (fp)
1589 flag = *fp++;
1590 n_tty_receive_char_lnext(tty, *cp++, flag);
1591 count--;
1592 }
1593 } else
Peter Hurley7d88d632013-07-24 08:29:49 -04001594 n_tty_receive_char_flagged(tty, *cp++, flag);
1595 }
1596}
1597
Peter Hurley24a89d12013-06-15 09:14:15 -04001598static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1599 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001601 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001602 bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001604 if (ldata->real_raw)
1605 n_tty_receive_buf_real_raw(tty, cp, fp, count);
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001606 else if (ldata->raw || (L_EXTPROC(tty) && !preops))
Peter Hurley554117b2013-06-15 10:21:25 -04001607 n_tty_receive_buf_raw(tty, cp, fp, count);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001608 else if (tty->closing && !L_EXTPROC(tty))
1609 n_tty_receive_buf_closing(tty, cp, fp, count);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001610 else {
Peter Hurleye60d27c2013-07-24 08:29:56 -04001611 if (ldata->lnext) {
1612 char flag = TTY_NORMAL;
1613
1614 if (fp)
1615 flag = *fp++;
1616 n_tty_receive_char_lnext(tty, *cp++, flag);
1617 count--;
1618 }
1619
Peter Hurley7de971b2013-07-24 08:29:53 -04001620 if (!preops && !I_PARMRK(tty))
Peter Hurley6baad002013-07-24 08:29:52 -04001621 n_tty_receive_buf_fast(tty, cp, fp, count);
1622 else
1623 n_tty_receive_buf_standard(tty, cp, fp, count);
Peter Hurleycbfd0342013-06-15 10:04:26 -04001624
1625 flush_echoes(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001626 if (tty->ops->flush_chars)
1627 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629
Peter Hurley70aca712015-01-16 15:05:37 -05001630 if (ldata->icanon && !L_EXTPROC(tty))
1631 return;
1632
1633 /* publish read_head to consumer */
1634 smp_store_release(&ldata->commit_head, ldata->read_head);
1635
1636 if ((read_cnt(ldata) >= ldata->minimum_to_wake) || L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001638 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001642/**
1643 * n_tty_receive_buf_common - process input
1644 * @tty: device to receive input
1645 * @cp: input chars
1646 * @fp: flags for each char (if NULL, all chars are TTY_NORMAL)
1647 * @count: number of input chars in @cp
1648 *
1649 * Called by the terminal driver when a block of characters has
1650 * been received. This function must be called from soft contexts
1651 * not from interrupt context. The driver is responsible for making
1652 * calls one at a time and in order (or using flush_to_ldisc)
1653 *
1654 * Returns the # of input chars from @cp which were processed.
1655 *
1656 * In canonical mode, the maximum line length is 4096 chars (including
1657 * the line termination char); lines longer than 4096 chars are
1658 * truncated. After 4095 chars, input data is still processed but
1659 * not stored. Overflow processing ensures the tty can always
1660 * receive more input until at least one line can be read.
1661 *
1662 * In non-canonical mode, the read buffer will only accept 4095 chars;
1663 * this provides the necessary space for a newline char if the input
1664 * mode is switched to canonical.
1665 *
1666 * Note it is possible for the read buffer to _contain_ 4096 chars
1667 * in non-canonical mode: the read buffer could already contain the
1668 * maximum canon line of 4096 chars when the mode is switched to
1669 * non-canonical.
1670 *
1671 * n_tty_receive_buf()/producer path:
1672 * claims non-exclusive termios_rwsem
1673 * publishes commit_head or canon_head
1674 */
Peter Hurley5c32d122013-12-02 14:24:41 -05001675static int
1676n_tty_receive_buf_common(struct tty_struct *tty, const unsigned char *cp,
1677 char *fp, int count, int flow)
Peter Hurley24a89d12013-06-15 09:14:15 -04001678{
1679 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001680 int room, n, rcvd = 0, overflow;
Peter Hurley24a89d12013-06-15 09:14:15 -04001681
Peter Hurley9356b532013-06-15 09:14:24 -04001682 down_read(&tty->termios_rwsem);
1683
Peter Hurley19e2ad62013-07-24 08:29:54 -04001684 while (1) {
Peter Hurley70aca712015-01-16 15:05:37 -05001685 /*
Peter Hurley06c49f92015-01-16 15:05:38 -05001686 * When PARMRK is set, each input char may take up to 3 chars
1687 * in the read buf; reduce the buffer space avail by 3x
Peter Hurley70aca712015-01-16 15:05:37 -05001688 *
1689 * If we are doing input canonicalization, and there are no
1690 * pending newlines, let characters through without limit, so
1691 * that erase characters will be handled. Other excess
1692 * characters will be beeped.
1693 *
1694 * paired with store in *_copy_from_read_buf() -- guarantees
1695 * the consumer has loaded the data in read_buf up to the new
1696 * read_tail (so this producer will not overwrite unread data)
1697 */
1698 size_t tail = smp_load_acquire(&ldata->read_tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001699
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001700 room = N_TTY_BUF_SIZE - (ldata->read_head - tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001701 if (I_PARMRK(tty))
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001702 room = (room + 2) / 3;
1703 room--;
1704 if (room <= 0) {
1705 overflow = ldata->icanon && ldata->canon_head == tail;
1706 if (overflow && room < 0)
1707 ldata->read_head--;
1708 room = overflow;
1709 ldata->no_room = flow && !room;
1710 } else
1711 overflow = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05001712
Peter Hurley19e2ad62013-07-24 08:29:54 -04001713 n = min(count, room);
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001714 if (!n)
Peter Hurley19e2ad62013-07-24 08:29:54 -04001715 break;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001716
1717 /* ignore parity errors if handling overflow */
1718 if (!overflow || !fp || *fp != TTY_PARITY)
1719 __receive_buf(tty, cp, fp, n);
1720
Peter Hurley19e2ad62013-07-24 08:29:54 -04001721 cp += n;
1722 if (fp)
1723 fp += n;
1724 count -= n;
1725 rcvd += n;
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001726 }
Peter Hurley24a89d12013-06-15 09:14:15 -04001727
Peter Hurley19e2ad62013-07-24 08:29:54 -04001728 tty->receive_room = room;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001729
1730 /* Unthrottle if handling overflow on pty */
1731 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
1732 if (overflow) {
1733 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
1734 tty_unthrottle_safe(tty);
1735 __tty_set_flow_change(tty, 0);
1736 }
1737 } else
1738 n_tty_check_throttle(tty);
1739
Peter Hurley9356b532013-06-15 09:14:24 -04001740 up_read(&tty->termios_rwsem);
1741
Peter Hurley19e2ad62013-07-24 08:29:54 -04001742 return rcvd;
Peter Hurley24a89d12013-06-15 09:14:15 -04001743}
1744
Peter Hurley5c32d122013-12-02 14:24:41 -05001745static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1746 char *fp, int count)
1747{
1748 n_tty_receive_buf_common(tty, cp, fp, count, 0);
1749}
1750
1751static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1752 char *fp, int count)
1753{
1754 return n_tty_receive_buf_common(tty, cp, fp, count, 1);
1755}
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757/**
1758 * n_tty_set_termios - termios data changed
1759 * @tty: terminal
1760 * @old: previous data
1761 *
1762 * Called by the tty layer when the user changes termios flags so
1763 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001764 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 * guaranteed that this function will not be re-entered or in progress
1766 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001767 *
Peter Hurley6a1c0682013-06-15 09:14:23 -04001768 * Locking: Caller holds tty->termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 */
Alan Cox4edf1822008-02-08 04:18:44 -08001770
1771static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001773 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001774
Peter Hurleyc786f742013-09-17 12:53:35 -04001775 if (!old || (old->c_lflag ^ tty->termios.c_lflag) & ICANON) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001776 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -05001777 ldata->line_start = ldata->read_tail;
1778 if (!L_ICANON(tty) || !read_cnt(ldata)) {
1779 ldata->canon_head = ldata->read_tail;
1780 ldata->push = 0;
1781 } else {
1782 set_bit((ldata->read_head - 1) & (N_TTY_BUF_SIZE - 1),
1783 ldata->read_flags);
1784 ldata->canon_head = ldata->read_head;
1785 ldata->push = 1;
1786 }
Peter Hurley70aca712015-01-16 15:05:37 -05001787 ldata->commit_head = ldata->read_head;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001788 ldata->erasing = 0;
Peter Hurley6f9b0282013-06-15 09:14:27 -04001789 ldata->lnext = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001790 }
1791
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001792 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1795 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1796 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1797 I_PARMRK(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001798 bitmap_zero(ldata->char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 if (I_IGNCR(tty) || I_ICRNL(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001801 set_bit('\r', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 if (I_INLCR(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001803 set_bit('\n', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 if (L_ICANON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001806 set_bit(ERASE_CHAR(tty), ldata->char_map);
1807 set_bit(KILL_CHAR(tty), ldata->char_map);
1808 set_bit(EOF_CHAR(tty), ldata->char_map);
1809 set_bit('\n', ldata->char_map);
1810 set_bit(EOL_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 if (L_IEXTEN(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001812 set_bit(WERASE_CHAR(tty), ldata->char_map);
1813 set_bit(LNEXT_CHAR(tty), ldata->char_map);
1814 set_bit(EOL2_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 if (L_ECHO(tty))
1816 set_bit(REPRINT_CHAR(tty),
Peter Hurley1bb9d562013-06-15 10:21:20 -04001817 ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
1819 }
1820 if (I_IXON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001821 set_bit(START_CHAR(tty), ldata->char_map);
1822 set_bit(STOP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
1824 if (L_ISIG(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001825 set_bit(INTR_CHAR(tty), ldata->char_map);
1826 set_bit(QUIT_CHAR(tty), ldata->char_map);
1827 set_bit(SUSP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
Peter Hurley1bb9d562013-06-15 10:21:20 -04001829 clear_bit(__DISABLED_CHAR, ldata->char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001830 ldata->raw = 0;
1831 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001833 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1835 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1836 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001837 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001839 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001841 /*
1842 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1843 * been stopped by STOP_CHAR(tty) before it.
1844 */
Peter Hurleye2613be2014-02-11 16:34:55 -05001845 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
Wang YanQingdab73b42013-05-09 14:16:47 +08001846 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001847 process_echoes(tty);
1848 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001849
Alan Coxf34d7a52008-04-30 00:54:13 -07001850 /* The termios change make the tty ready for I/O */
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001851 wake_up_interruptible(&tty->write_wait);
1852 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
1855/**
1856 * n_tty_close - close the ldisc for this tty
1857 * @tty: device
1858 *
Alan Cox4edf1822008-02-08 04:18:44 -08001859 * Called from the terminal layer when this line discipline is
1860 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 * discipline change. The function will not be called while other
1862 * ldisc methods are in progress.
1863 */
Alan Cox4edf1822008-02-08 04:18:44 -08001864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865static void n_tty_close(struct tty_struct *tty)
1866{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001867 struct n_tty_data *ldata = tty->disc_data;
1868
Peter Hurley79901312013-03-11 16:44:23 -04001869 if (tty->link)
1870 n_tty_packet_mode_flush(tty);
1871
Peter Hurley20bafb32013-06-15 10:21:19 -04001872 vfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001873 tty->disc_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
1876/**
1877 * n_tty_open - open an ldisc
1878 * @tty: terminal to open
1879 *
Alan Cox4edf1822008-02-08 04:18:44 -08001880 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 * terminal device. Can sleep. Called serialized so that no
1882 * other events will occur in parallel. No further open will occur
1883 * until a close.
1884 */
1885
1886static int n_tty_open(struct tty_struct *tty)
1887{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001888 struct n_tty_data *ldata;
1889
Peter Hurley20bafb32013-06-15 10:21:19 -04001890 /* Currently a malloc failure here can panic */
1891 ldata = vmalloc(sizeof(*ldata));
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001892 if (!ldata)
1893 goto err;
1894
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001895 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001896 mutex_init(&ldata->atomic_read_lock);
1897 mutex_init(&ldata->output_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001898
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001899 tty->disc_data = ldata;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001900 reset_buffer_flags(tty->disc_data);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001901 ldata->column = 0;
Peter Hurley20bafb32013-06-15 10:21:19 -04001902 ldata->canon_column = 0;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001903 ldata->minimum_to_wake = 1;
Peter Hurley20bafb32013-06-15 10:21:19 -04001904 ldata->num_overrun = 0;
1905 ldata->no_room = 0;
1906 ldata->lnext = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001908 /* indicate buffer work may resume */
1909 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1910 n_tty_set_termios(tty, NULL);
1911 tty_unthrottle(tty);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 return 0;
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001914err:
Jiri Slabyb91939f2012-10-18 22:26:35 +02001915 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916}
1917
Peter Hurleyeafbe672013-12-02 14:24:45 -05001918static inline int input_available_p(struct tty_struct *tty, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001920 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya5934802014-02-11 11:49:58 -05001921 int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001922
Peter Hurley25e8d0e2014-02-11 18:55:30 -05001923 if (ldata->icanon && !L_EXTPROC(tty))
1924 return ldata->canon_head != ldata->read_tail;
1925 else
Peter Hurley70aca712015-01-16 15:05:37 -05001926 return ldata->commit_head - ldata->read_tail >= amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
Peter Hurley1a486322015-04-13 13:24:34 -04001929static inline int check_other_done(struct tty_struct *tty)
1930{
1931 int done = test_bit(TTY_OTHER_DONE, &tty->flags);
1932 if (done) {
1933 /* paired with cmpxchg() in check_other_closed(); ensures
1934 * read buffer head index is not stale
1935 */
1936 smp_mb__after_atomic();
1937 }
1938 return done;
1939}
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001942 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 * @tty: terminal device
1944 * @b: user data
1945 * @nr: size of data
1946 *
Alan Cox11a96d12008-10-13 10:46:24 +01001947 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 * ICANON is off; it copies characters straight from the tty queue to
1949 * user space directly. It can be profitably called twice; once to
1950 * drain the space from the tail pointer to the (physical) end of the
1951 * buffer, and once to drain the space from the (physical) beginning of
1952 * the buffer to head pointer.
1953 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001954 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001956 * n_tty_read()/consumer path:
1957 * caller holds non-exclusive termios_rwsem
1958 * read_tail published
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 */
Alan Cox4edf1822008-02-08 04:18:44 -08001960
Alan Cox33f0f882006-01-09 20:54:13 -08001961static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 unsigned char __user **b,
1963 size_t *nr)
1964
1965{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001966 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 int retval;
1968 size_t n;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001969 bool is_eof;
Peter Hurley70aca712015-01-16 15:05:37 -05001970 size_t head = smp_load_acquire(&ldata->commit_head);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001971 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 retval = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05001974 n = min(head - ldata->read_tail, N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 n = min(*nr, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (n) {
Peter Hurleye661cf72015-11-27 14:11:03 -05001977 const unsigned char *from = read_buf_addr(ldata, tail);
1978 retval = copy_to_user(*b, from, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 n -= retval;
Peter Hurleye661cf72015-11-27 14:11:03 -05001980 is_eof = n == 1 && *from == EOF_CHAR(tty);
Peter Hurley309426a2016-01-09 22:55:27 -08001981 tty_audit_add_data(tty, from, n);
Peter Hurley70aca712015-01-16 15:05:37 -05001982 smp_store_release(&ldata->read_tail, ldata->read_tail + n);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001983 /* Turn single EOF into zero-length read */
Peter Hurley70aca712015-01-16 15:05:37 -05001984 if (L_EXTPROC(tty) && ldata->icanon && is_eof &&
1985 (head == ldata->read_tail))
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001986 n = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 *b += n;
1988 *nr -= n;
1989 }
1990 return retval;
1991}
1992
Peter Hurley88bb0de2013-06-15 09:14:16 -04001993/**
Peter Hurley32f13522013-06-15 09:14:17 -04001994 * canon_copy_from_read_buf - copy read data in canonical mode
Peter Hurley88bb0de2013-06-15 09:14:16 -04001995 * @tty: terminal device
1996 * @b: user data
1997 * @nr: size of data
1998 *
1999 * Helper function for n_tty_read. It is only called when ICANON is on;
Peter Hurley32f13522013-06-15 09:14:17 -04002000 * it copies one line of input up to and including the line-delimiting
2001 * character into the user-space buffer.
Peter Hurley88bb0de2013-06-15 09:14:16 -04002002 *
Peter Hurley4d0ed182013-12-10 17:12:02 -05002003 * NB: When termios is changed from non-canonical to canonical mode and
2004 * the read buffer contains data, n_tty_set_termios() simulates an EOF
2005 * push (as if C-d were input) _without_ the DISABLED_CHAR in the buffer.
2006 * This causes data already processed as input to be immediately available
2007 * as input although a newline has not been received.
2008 *
Peter Hurley88bb0de2013-06-15 09:14:16 -04002009 * Called under the atomic_read_lock mutex
Peter Hurley6d76bd22013-06-15 09:14:26 -04002010 *
2011 * n_tty_read()/consumer path:
2012 * caller holds non-exclusive termios_rwsem
2013 * read_tail published
Peter Hurley88bb0de2013-06-15 09:14:16 -04002014 */
2015
Peter Hurley32f13522013-06-15 09:14:17 -04002016static int canon_copy_from_read_buf(struct tty_struct *tty,
2017 unsigned char __user **b,
2018 size_t *nr)
Peter Hurley88bb0de2013-06-15 09:14:16 -04002019{
2020 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley32f13522013-06-15 09:14:17 -04002021 size_t n, size, more, c;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002022 size_t eol;
2023 size_t tail;
2024 int ret, found = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002025
2026 /* N.B. avoid overrun if nr == 0 */
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002027 if (!*nr)
Peter Hurley32f13522013-06-15 09:14:17 -04002028 return 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002029
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002030 n = min(*nr + 1, smp_load_acquire(&ldata->canon_head) - ldata->read_tail);
2031
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002032 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Peter Hurley32f13522013-06-15 09:14:17 -04002033 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
2034
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002035 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04002036 __func__, *nr, tail, n, size);
2037
2038 eol = find_next_bit(ldata->read_flags, size, tail);
2039 more = n - (size - tail);
2040 if (eol == N_TTY_BUF_SIZE && more) {
2041 /* scan wrapped without finding set bit */
2042 eol = find_next_bit(ldata->read_flags, more, 0);
Peter Hurleyb985e9e2015-11-27 14:11:04 -05002043 found = eol != more;
2044 } else
2045 found = eol != size;
Peter Hurley32f13522013-06-15 09:14:17 -04002046
Peter Hurleyc77569d2013-11-22 07:16:25 -05002047 n = eol - tail;
Mark Tomlinsonda555db2015-05-18 12:01:48 +12002048 if (n > N_TTY_BUF_SIZE)
2049 n += N_TTY_BUF_SIZE;
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002050 c = n + found;
Peter Hurley32f13522013-06-15 09:14:17 -04002051
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002052 if (!found || read_buf(ldata, eol) != __DISABLED_CHAR) {
2053 c = min(*nr, c);
2054 n = c;
Peter Hurley40d5e092013-06-15 10:21:17 -04002055 }
Peter Hurley32f13522013-06-15 09:14:17 -04002056
Peter Hurley679e7c22015-11-27 14:11:02 -05002057 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n",
2058 __func__, eol, found, n, c, tail, more);
Peter Hurley32f13522013-06-15 09:14:17 -04002059
Peter Hurley679e7c22015-11-27 14:11:02 -05002060 ret = tty_copy_to_user(tty, *b, tail, n);
Peter Hurley32f13522013-06-15 09:14:17 -04002061 if (ret)
2062 return -EFAULT;
2063 *b += n;
2064 *nr -= n;
2065
Peter Hurleya73d3d62013-06-15 09:14:25 -04002066 if (found)
Peter Hurley6d76bd22013-06-15 09:14:26 -04002067 clear_bit(eol, ldata->read_flags);
Peter Hurley70aca712015-01-16 15:05:37 -05002068 smp_store_release(&ldata->read_tail, ldata->read_tail + c);
Peter Hurley88bb0de2013-06-15 09:14:16 -04002069
Peter Hurley40d5e092013-06-15 10:21:17 -04002070 if (found) {
Peter Hurley4d0ed182013-12-10 17:12:02 -05002071 if (!ldata->push)
2072 ldata->line_start = ldata->read_tail;
2073 else
2074 ldata->push = 0;
Peter Hurleyb50819f2016-01-09 22:55:30 -08002075 tty_audit_push();
Peter Hurley40d5e092013-06-15 10:21:17 -04002076 }
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002077 return 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002078}
2079
Al Virocc4191d2008-03-29 03:08:48 +00002080extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08002081 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083/**
2084 * job_control - check job control
2085 * @tty: tty
2086 * @file: file handle
2087 *
2088 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08002089 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07002091 *
Peter Hurley01a5e442013-03-06 08:38:20 -05002092 * Locking: redirected write test is safe
2093 * current->signal->tty check is safe
2094 * ctrl_lock to safely reference tty->pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 */
Alan Cox4edf1822008-02-08 04:18:44 -08002096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097static int job_control(struct tty_struct *tty, struct file *file)
2098{
2099 /* Job control check -- must be done at start and after
2100 every sleep (POSIX.1 7.1.1.4). */
2101 /* NOTE: not yet done after every sleep pending a thorough
2102 check of the logic of this change. -- jlc */
2103 /* don't stop on /dev/console */
Peter Hurley2812d9e2015-10-10 20:28:42 -04002104 if (file->f_op->write == redirected_tty_write)
Peter Hurley01a5e442013-03-06 08:38:20 -05002105 return 0;
2106
Peter Hurley2812d9e2015-10-10 20:28:42 -04002107 return __tty_check_change(tty, SIGTTIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
Alan Cox4edf1822008-02-08 04:18:44 -08002109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111/**
Alan Cox11a96d12008-10-13 10:46:24 +01002112 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 * @tty: tty device
2114 * @file: file object
2115 * @buf: userspace buffer pointer
2116 * @nr: size of I/O
2117 *
2118 * Perform reads for the line discipline. We are guaranteed that the
2119 * line discipline will not be closed under us but we may get multiple
2120 * parallel readers and must handle this ourselves. We may also get
2121 * a hangup. Always called in user context, may sleep.
2122 *
2123 * This code must be sure never to sleep through a hangup.
Peter Hurley6d76bd22013-06-15 09:14:26 -04002124 *
2125 * n_tty_read()/consumer path:
2126 * claims non-exclusive termios_rwsem
2127 * publishes read_tail
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 */
Alan Cox4edf1822008-02-08 04:18:44 -08002129
Alan Cox11a96d12008-10-13 10:46:24 +01002130static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 unsigned char __user *buf, size_t nr)
2132{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002133 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 unsigned char __user *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002135 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Peter Hurley1a486322015-04-13 13:24:34 -04002136 int c, done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 int minimum, time;
2138 ssize_t retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 long timeout;
Alan Cox04f378b2008-04-30 00:53:29 -07002140 int packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002141 size_t tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08002144 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08002146
Peter Hurleyaefceaf2013-08-11 08:04:23 -04002147 /*
2148 * Internal serialization of reads.
2149 */
2150 if (file->f_flags & O_NONBLOCK) {
2151 if (!mutex_trylock(&ldata->atomic_read_lock))
2152 return -EAGAIN;
2153 } else {
2154 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
2155 return -ERESTARTSYS;
2156 }
2157
Peter Hurley9356b532013-06-15 09:14:24 -04002158 down_read(&tty->termios_rwsem);
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 minimum = time = 0;
2161 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002162 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 minimum = MIN_CHAR(tty);
2164 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04002165 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (time)
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002167 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 else if (!waitqueue_active(&tty->read_wait) ||
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002169 (ldata->minimum_to_wake > minimum))
2170 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04002172 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002173 ldata->minimum_to_wake = minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
2175 }
2176
Alan Cox04f378b2008-04-30 00:53:29 -07002177 packet = tty->packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002178 tail = ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 while (nr) {
2182 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07002183 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 unsigned char cs;
2185 if (b != buf)
2186 break;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002187 spin_lock_irq(&tty->link->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 cs = tty->link->ctrl_status;
2189 tty->link->ctrl_status = 0;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002190 spin_unlock_irq(&tty->link->ctrl_lock);
Peter Hurleyeab25a52016-01-09 22:55:26 -08002191 if (put_user(cs, b)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 retval = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 break;
2194 }
Peter Hurleyeab25a52016-01-09 22:55:26 -08002195 b++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 nr--;
2197 break;
2198 }
Alan Cox4edf1822008-02-08 04:18:44 -08002199
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002200 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 ((minimum - (b - buf)) >= 1))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002202 ldata->minimum_to_wake = (minimum - (b - buf));
Alan Cox4edf1822008-02-08 04:18:44 -08002203
Peter Hurley1a486322015-04-13 13:24:34 -04002204 done = check_other_done(tty);
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 if (!input_available_p(tty, 0)) {
Peter Hurley1a486322015-04-13 13:24:34 -04002207 if (done) {
Peter Hurley52bce7f2014-11-05 12:13:05 -05002208 retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 break;
2210 }
Peter Hurley52bce7f2014-11-05 12:13:05 -05002211 if (tty_hung_up_p(file))
2212 break;
2213 if (!timeout)
2214 break;
2215 if (file->f_flags & O_NONBLOCK) {
2216 retval = -EAGAIN;
2217 break;
2218 }
2219 if (signal_pending(current)) {
2220 retval = -ERESTARTSYS;
2221 break;
2222 }
Peter Hurley52bce7f2014-11-05 12:13:05 -05002223 up_read(&tty->termios_rwsem);
2224
Linus Torvalds37da7bb2014-12-14 15:23:32 -08002225 timeout = wait_woken(&wait, TASK_INTERRUPTIBLE,
2226 timeout);
Peter Hurley52bce7f2014-11-05 12:13:05 -05002227
2228 down_read(&tty->termios_rwsem);
2229 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 }
2231
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002232 if (ldata->icanon && !L_EXTPROC(tty)) {
Peter Hurley32f13522013-06-15 09:14:17 -04002233 retval = canon_copy_from_read_buf(tty, &b, &nr);
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002234 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 break;
2236 } else {
2237 int uncopied;
Peter Hurley95ea90d2014-10-16 15:33:30 -04002238
2239 /* Deal with packet mode. */
2240 if (packet && b == buf) {
Peter Hurleyeab25a52016-01-09 22:55:26 -08002241 if (put_user(TIOCPKT_DATA, b)) {
Peter Hurley95ea90d2014-10-16 15:33:30 -04002242 retval = -EFAULT;
Peter Hurley95ea90d2014-10-16 15:33:30 -04002243 break;
2244 }
Peter Hurleyeab25a52016-01-09 22:55:26 -08002245 b++;
Peter Hurley95ea90d2014-10-16 15:33:30 -04002246 nr--;
2247 }
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 uncopied = copy_from_read_buf(tty, &b, &nr);
2250 uncopied += copy_from_read_buf(tty, &b, &nr);
2251 if (uncopied) {
2252 retval = -EFAULT;
2253 break;
2254 }
2255 }
2256
Peter Hurley6367ca72013-06-15 09:14:33 -04002257 n_tty_check_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 if (b - buf >= minimum)
2260 break;
2261 if (time)
2262 timeout = time;
2263 }
Peter Hurley2c5dc462015-01-16 15:05:34 -05002264 if (tail != ldata->read_tail)
2265 n_tty_kick_worker(tty);
Peter Hurley42458f42013-11-07 13:59:46 -05002266 up_read(&tty->termios_rwsem);
2267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 remove_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if (!waitqueue_active(&tty->read_wait))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002270 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Peter Hurleyaebf04532013-11-07 14:01:57 -05002272 mutex_unlock(&ldata->atomic_read_lock);
2273
Peter Hurley40d5e092013-06-15 10:21:17 -04002274 if (b - buf)
2275 retval = b - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 return retval;
2278}
2279
2280/**
Alan Cox11a96d12008-10-13 10:46:24 +01002281 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 * @tty: tty device
2283 * @file: file object
2284 * @buf: userspace buffer pointer
2285 * @nr: size of I/O
2286 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002287 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002289 * and other such events. Since the receive code will echo characters,
2290 * thus calling driver write methods, the output_lock is used in
2291 * the output processing functions called here as well as in the
2292 * echo processing function to protect the column state and space
2293 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 *
2295 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002296 *
2297 * Locking: output_lock to protect column state and space left
2298 * (note that the process_output*() functions take this
2299 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 */
Alan Cox4edf1822008-02-08 04:18:44 -08002301
Alan Cox11a96d12008-10-13 10:46:24 +01002302static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002303 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
2305 const unsigned char *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002306 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 int c;
2308 ssize_t retval = 0;
2309
2310 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2311 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2312 retval = tty_check_change(tty);
2313 if (retval)
2314 return retval;
2315 }
2316
Peter Hurley9356b532013-06-15 09:14:24 -04002317 down_read(&tty->termios_rwsem);
2318
Joe Petersona88a69c2009-01-02 13:40:53 +00002319 /* Write out any echoed characters that are still pending */
2320 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 add_wait_queue(&tty->write_wait, &wait);
2323 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 if (signal_pending(current)) {
2325 retval = -ERESTARTSYS;
2326 break;
2327 }
2328 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2329 retval = -EIO;
2330 break;
2331 }
Peter Hurley582f5592013-05-17 12:49:48 -04002332 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002334 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 if (num < 0) {
2336 if (num == -EAGAIN)
2337 break;
2338 retval = num;
2339 goto break_out;
2340 }
2341 b += num;
2342 nr -= num;
2343 if (nr == 0)
2344 break;
2345 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002346 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 break;
2348 b++; nr--;
2349 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002350 if (tty->ops->flush_chars)
2351 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 } else {
Peter Hurley42910862014-05-03 14:04:59 +02002353 struct n_tty_data *ldata = tty->disc_data;
2354
Roman Zippeld6afe272005-07-07 17:56:55 -07002355 while (nr > 0) {
Peter Hurley42910862014-05-03 14:04:59 +02002356 mutex_lock(&ldata->output_lock);
Alan Coxf34d7a52008-04-30 00:54:13 -07002357 c = tty->ops->write(tty, b, nr);
Peter Hurley42910862014-05-03 14:04:59 +02002358 mutex_unlock(&ldata->output_lock);
Roman Zippeld6afe272005-07-07 17:56:55 -07002359 if (c < 0) {
2360 retval = c;
2361 goto break_out;
2362 }
2363 if (!c)
2364 break;
2365 b += c;
2366 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 }
2369 if (!nr)
2370 break;
2371 if (file->f_flags & O_NONBLOCK) {
2372 retval = -EAGAIN;
2373 break;
2374 }
Peter Hurley9356b532013-06-15 09:14:24 -04002375 up_read(&tty->termios_rwsem);
2376
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002377 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Peter Hurley9356b532013-06-15 09:14:24 -04002378
2379 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
2381break_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 remove_wait_queue(&tty->write_wait, &wait);
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002383 if (b - buf != nr && tty->fasync)
2384 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002385 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 return (b - buf) ? b - buf : retval;
2387}
2388
2389/**
Alan Cox11a96d12008-10-13 10:46:24 +01002390 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 * @tty: terminal device
2392 * @file: file accessing it
2393 * @wait: poll table
2394 *
2395 * Called when the line discipline is asked to poll() for data or
2396 * for special events. This code is not serialized with respect to
2397 * other events save open/close.
2398 *
2399 * This code must be sure never to sleep through a hangup.
2400 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 */
Alan Cox4edf1822008-02-08 04:18:44 -08002402
Alan Cox11a96d12008-10-13 10:46:24 +01002403static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002404 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405{
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002406 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 unsigned int mask = 0;
2408
2409 poll_wait(file, &tty->read_wait, wait);
2410 poll_wait(file, &tty->write_wait, wait);
Peter Hurley1a486322015-04-13 13:24:34 -04002411 if (check_other_done(tty))
2412 mask |= POLLHUP;
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002413 if (input_available_p(tty, 1))
2414 mask |= POLLIN | POLLRDNORM;
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002415 if (tty->packet && tty->link->ctrl_status)
2416 mask |= POLLPRI | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 if (tty_hung_up_p(file))
2418 mask |= POLLHUP;
2419 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2420 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002421 ldata->minimum_to_wake = MIN_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 else
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002423 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002425 if (tty->ops->write && !tty_is_writelocked(tty) &&
2426 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2427 tty_write_room(tty) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 mask |= POLLOUT | POLLWRNORM;
2429 return mask;
2430}
2431
Jiri Slaby57c94122012-10-18 22:26:43 +02002432static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002433{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002434 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002435
Peter Hurleya73d3d62013-06-15 09:14:25 -04002436 if (ldata->canon_head == ldata->read_tail)
Alan Cox47afa7a2008-10-13 10:44:17 +01002437 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002438 head = ldata->canon_head;
2439 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002440 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002441 /* Skip EOF-chars.. */
2442 while (head != tail) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002443 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2444 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002445 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002446 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002447 }
2448 return nr;
2449}
2450
2451static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2452 unsigned int cmd, unsigned long arg)
2453{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002454 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002455 int retval;
2456
2457 switch (cmd) {
2458 case TIOCOUTQ:
2459 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2460 case TIOCINQ:
Peter Hurley6d76bd22013-06-15 09:14:26 -04002461 down_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002462 if (L_ICANON(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002463 retval = inq_canon(ldata);
Peter Hurley6d76bd22013-06-15 09:14:26 -04002464 else
2465 retval = read_cnt(ldata);
2466 up_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002467 return put_user(retval, (unsigned int __user *) arg);
2468 default:
2469 return n_tty_ioctl_helper(tty, file, cmd, arg);
2470 }
2471}
2472
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002473static void n_tty_fasync(struct tty_struct *tty, int on)
2474{
2475 struct n_tty_data *ldata = tty->disc_data;
2476
2477 if (!waitqueue_active(&tty->read_wait)) {
2478 if (on)
2479 ldata->minimum_to_wake = 1;
2480 else if (!tty->fasync)
2481 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2482 }
2483}
2484
Peter Hurley27228732016-01-09 21:35:19 -08002485static struct tty_ldisc_ops n_tty_ops = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002486 .magic = TTY_LDISC_MAGIC,
2487 .name = "n_tty",
2488 .open = n_tty_open,
2489 .close = n_tty_close,
2490 .flush_buffer = n_tty_flush_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002491 .read = n_tty_read,
2492 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002493 .ioctl = n_tty_ioctl,
2494 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002495 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002496 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002497 .write_wakeup = n_tty_write_wakeup,
2498 .fasync = n_tty_fasync,
Peter Hurley24a89d12013-06-15 09:14:15 -04002499 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002501
2502/**
2503 * n_tty_inherit_ops - inherit N_TTY methods
2504 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2505 *
Peter Hurley27228732016-01-09 21:35:19 -08002506 * Enables a 'subclass' line discipline to 'inherit' N_TTY methods.
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002507 */
2508
2509void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2510{
Peter Hurley27228732016-01-09 21:35:19 -08002511 *ops = n_tty_ops;
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002512 ops->owner = NULL;
2513 ops->refcount = ops->flags = 0;
2514}
2515EXPORT_SYMBOL_GPL(n_tty_inherit_ops);
Peter Hurley27228732016-01-09 21:35:19 -08002516
2517void __init n_tty_init(void)
2518{
2519 tty_register_ldisc(N_TTY, &n_tty_ops);
2520}