blob: c37c15d2f782e314c5a53fa388b8b94eec4af129 [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
Miloslav Trmac522ed772007-07-15 23:40:56 -0700156static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
157 unsigned char __user *ptr)
158{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200159 struct n_tty_data *ldata = tty->disc_data;
160
161 tty_audit_add_data(tty, &x, 1, ldata->icanon);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700162 return put_user(x, ptr);
163}
164
Laura Abbott72586c62015-05-14 11:42:17 -0700165static inline int tty_copy_to_user(struct tty_struct *tty,
166 void __user *to,
167 const void *from,
168 unsigned long n)
169{
170 struct n_tty_data *ldata = tty->disc_data;
171
Peter Hurley6b2a3d62015-11-08 08:52:31 -0500172 tty_audit_add_data(tty, from, n, ldata->icanon);
Laura Abbott72586c62015-05-14 11:42:17 -0700173 return copy_to_user(to, from, n);
174}
175
Peter Hurley24a89d12013-06-15 09:14:15 -0400176/**
Peter Hurley2c5dc462015-01-16 15:05:34 -0500177 * n_tty_kick_worker - start input worker (if required)
Peter Hurley24a89d12013-06-15 09:14:15 -0400178 * @tty: terminal
179 *
Peter Hurley2c5dc462015-01-16 15:05:34 -0500180 * Re-schedules the flip buffer work if it may have stopped
Peter Hurley24a89d12013-06-15 09:14:15 -0400181 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400182 * Caller holds exclusive termios_rwsem
183 * or
184 * n_tty_read()/consumer path:
185 * holds non-exclusive termios_rwsem
Peter Hurley24a89d12013-06-15 09:14:15 -0400186 */
187
Peter Hurley2c5dc462015-01-16 15:05:34 -0500188static void n_tty_kick_worker(struct tty_struct *tty)
Peter Hurley7879a9f2013-06-15 07:28:31 -0400189{
Peter Hurley24a89d12013-06-15 09:14:15 -0400190 struct n_tty_data *ldata = tty->disc_data;
191
Peter Hurley2c5dc462015-01-16 15:05:34 -0500192 /* Did the input worker stop? Restart it */
193 if (unlikely(ldata->no_room)) {
Peter Hurley24a89d12013-06-15 09:14:15 -0400194 ldata->no_room = 0;
195
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200196 WARN_RATELIMIT(tty->port->itty == NULL,
Sasha Levincadf7482012-10-25 14:26:35 -0400197 "scheduling with invalid itty\n");
Peter Hurley21622932013-03-11 16:44:21 -0400198 /* see if ldisc has been killed - if so, this means that
199 * even though the ldisc has been halted and ->buf.work
200 * cancelled, ->buf.work is about to be rescheduled
201 */
202 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
203 "scheduling buffer work for halted ldisc\n");
Peter Hurleye1760582015-10-17 16:36:23 -0400204 tty_buffer_restart_work(tty->port);
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200205 }
Linus Torvalds55db4c62011-06-04 06:33:24 +0900206}
207
Peter Hurley9a4aec22013-06-15 09:14:32 -0400208static ssize_t chars_in_buffer(struct tty_struct *tty)
209{
210 struct n_tty_data *ldata = tty->disc_data;
211 ssize_t n = 0;
212
213 if (!ldata->icanon)
Peter Hurley70aca712015-01-16 15:05:37 -0500214 n = ldata->commit_head - ldata->read_tail;
Peter Hurley9a4aec22013-06-15 09:14:32 -0400215 else
216 n = ldata->canon_head - ldata->read_tail;
217 return n;
218}
219
Peter Hurleyee0bab82013-06-15 09:14:34 -0400220/**
221 * n_tty_write_wakeup - asynchronous I/O notifier
222 * @tty: tty device
223 *
224 * Required for the ptys, serial driver etc. since processes
225 * that attach themselves to the master and rely on ASYNC
226 * IO must be woken up
227 */
228
229static void n_tty_write_wakeup(struct tty_struct *tty)
230{
231 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
232 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
233}
234
Peter Hurley4a23a4d2013-06-15 10:21:22 -0400235static void n_tty_check_throttle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400236{
Peter Hurleya3428462015-01-16 15:05:35 -0500237 struct n_tty_data *ldata = tty->disc_data;
238
Peter Hurley6367ca72013-06-15 09:14:33 -0400239 /*
240 * Check the remaining room for the input canonicalization
241 * mode. We don't want to throttle the driver if we're in
242 * canonical mode and don't have a newline yet!
243 */
Peter Hurleya3428462015-01-16 15:05:35 -0500244 if (ldata->icanon && ldata->canon_head == ldata->read_tail)
245 return;
246
Peter Hurley6367ca72013-06-15 09:14:33 -0400247 while (1) {
248 int throttled;
249 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
Peter Hurley5e28cca2015-01-16 15:05:36 -0500250 if (N_TTY_BUF_SIZE - read_cnt(ldata) >= TTY_THRESHOLD_THROTTLE)
Peter Hurley6367ca72013-06-15 09:14:33 -0400251 break;
252 throttled = tty_throttle_safe(tty);
253 if (!throttled)
254 break;
255 }
256 __tty_set_flow_change(tty, 0);
257}
258
Peter Hurley4b293492013-07-24 08:29:55 -0400259static void n_tty_check_unthrottle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400260{
Peter Hurley3afb1b392013-07-23 08:47:30 -0400261 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
262 tty->link->ldisc->ops->write_wakeup == n_tty_write_wakeup) {
263 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
264 return;
265 if (!tty->count)
266 return;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500267 n_tty_kick_worker(tty);
Peter Hurley3afb1b392013-07-23 08:47:30 -0400268 n_tty_write_wakeup(tty->link);
Peter Hurley6c677162013-12-02 14:24:46 -0500269 if (waitqueue_active(&tty->link->write_wait))
270 wake_up_interruptible_poll(&tty->link->write_wait, POLLOUT);
Peter Hurley3afb1b392013-07-23 08:47:30 -0400271 return;
272 }
273
Peter Hurley6367ca72013-06-15 09:14:33 -0400274 /* If there is enough space in the read buffer now, let the
275 * low-level driver know. We use chars_in_buffer() to
276 * check the buffer, as it now knows about canonical mode.
277 * Otherwise, if the driver is throttled and the line is
278 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
279 * we won't get any more characters.
280 */
281
282 while (1) {
283 int unthrottled;
284 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
285 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
286 break;
287 if (!tty->count)
288 break;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500289 n_tty_kick_worker(tty);
Peter Hurley6367ca72013-06-15 09:14:33 -0400290 unthrottled = tty_unthrottle_safe(tty);
291 if (!unthrottled)
292 break;
293 }
294 __tty_set_flow_change(tty, 0);
295}
296
Alan Cox17b82062008-10-13 10:45:06 +0100297/**
298 * put_tty_queue - add character to tty
299 * @c: character
Jiri Slaby57c94122012-10-18 22:26:43 +0200300 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100301 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400302 * Add a character to the tty read_buf queue.
303 *
304 * n_tty_receive_buf()/producer path:
305 * caller holds non-exclusive termios_rwsem
Alan Cox17b82062008-10-13 10:45:06 +0100306 */
307
Peter Hurley19e2ad62013-07-24 08:29:54 -0400308static inline void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Christian Riesch8bfbe2d2014-11-13 05:53:26 +0100310 *read_buf_addr(ldata, ldata->read_head) = c;
311 ldata->read_head++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * reset_buffer_flags - reset buffer state
316 * @tty: terminal to reset
317 *
Peter Hurley25518c62013-03-11 16:44:31 -0400318 * Reset the read buffer counters and clear the flags.
319 * Called from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100320 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400321 * Locking: caller holds exclusive termios_rwsem
322 * (or locking is not required)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000324
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400325static void reset_buffer_flags(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Peter Hurleya73d3d62013-06-15 09:14:25 -0400327 ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
Peter Hurley17bd7902013-06-15 10:04:24 -0400328 ldata->echo_head = ldata->echo_tail = ldata->echo_commit = 0;
Peter Hurley70aca712015-01-16 15:05:37 -0500329 ldata->commit_head = 0;
Peter Hurley1075a6e2013-12-09 18:06:07 -0500330 ldata->echo_mark = 0;
Peter Hurley40d5e092013-06-15 10:21:17 -0400331 ldata->line_start = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000332
Peter Hurleya73d3d62013-06-15 09:14:25 -0400333 ldata->erasing = 0;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200334 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -0500335 ldata->push = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Peter Hurleya30737a2013-03-11 16:44:22 -0400338static void n_tty_packet_mode_flush(struct tty_struct *tty)
339{
340 unsigned long flags;
341
Peter Hurleya30737a2013-03-11 16:44:22 -0400342 if (tty->link->packet) {
Peter Hurley54e8e5f2014-10-16 15:33:26 -0400343 spin_lock_irqsave(&tty->ctrl_lock, flags);
Peter Hurleya30737a2013-03-11 16:44:22 -0400344 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
Peter Hurley54e8e5f2014-10-16 15:33:26 -0400345 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +0000346 wake_up_interruptible(&tty->link->read_wait);
Peter Hurleya30737a2013-03-11 16:44:22 -0400347 }
Peter Hurleya30737a2013-03-11 16:44:22 -0400348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/**
351 * n_tty_flush_buffer - clean input queue
352 * @tty: terminal device
353 *
Peter Hurley25518c62013-03-11 16:44:31 -0400354 * Flush the input buffer. Called when the tty layer wants the
355 * buffer flushed (eg at hangup) or when the N_TTY line discipline
356 * internally has to clean the pending queue (for example some signals).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400358 * Holds termios_rwsem to exclude producer/consumer while
359 * buffer indices are reset.
360 *
361 * Locking: ctrl_lock, exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 */
Alan Cox4edf1822008-02-08 04:18:44 -0800363
364static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Peter Hurley6d76bd22013-06-15 09:14:26 -0400366 down_write(&tty->termios_rwsem);
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400367 reset_buffer_flags(tty->disc_data);
Peter Hurley2c5dc462015-01-16 15:05:34 -0500368 n_tty_kick_worker(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800369
Peter Hurleya30737a2013-03-11 16:44:22 -0400370 if (tty->link)
371 n_tty_packet_mode_flush(tty);
Peter Hurley6d76bd22013-06-15 09:14:26 -0400372 up_write(&tty->termios_rwsem);
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/**
376 * n_tty_chars_in_buffer - report available bytes
377 * @tty: tty device
378 *
379 * Report the number of characters buffered to be delivered to user
Alan Cox4edf1822008-02-08 04:18:44 -0800380 * at this instant in time.
Alan Cox17b82062008-10-13 10:45:06 +0100381 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400382 * Locking: exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 */
Alan Cox4edf1822008-02-08 04:18:44 -0800384
Peter Hurleya19d0c62013-06-15 09:14:18 -0400385static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
386{
Peter Hurley6d76bd22013-06-15 09:14:26 -0400387 ssize_t n;
388
Peter Hurley47534082013-06-15 09:14:19 -0400389 WARN_ONCE(1, "%s is deprecated and scheduled for removal.", __func__);
Peter Hurley6d76bd22013-06-15 09:14:26 -0400390
391 down_write(&tty->termios_rwsem);
392 n = chars_in_buffer(tty);
393 up_write(&tty->termios_rwsem);
394 return n;
Peter Hurleya19d0c62013-06-15 09:14:18 -0400395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/**
398 * is_utf8_continuation - utf8 multibyte check
399 * @c: byte to check
400 *
401 * Returns true if the utf8 character 'c' is a multibyte continuation
402 * character. We use this to correctly compute the on screen size
403 * of the character when printing
404 */
Alan Cox4edf1822008-02-08 04:18:44 -0800405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406static inline int is_utf8_continuation(unsigned char c)
407{
408 return (c & 0xc0) == 0x80;
409}
410
411/**
412 * is_continuation - multibyte check
413 * @c: byte to check
414 *
415 * Returns true if the utf8 character 'c' is a multibyte continuation
416 * character and the terminal is in unicode mode.
417 */
Alan Cox4edf1822008-02-08 04:18:44 -0800418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static inline int is_continuation(unsigned char c, struct tty_struct *tty)
420{
421 return I_IUTF8(tty) && is_utf8_continuation(c);
422}
423
424/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000425 * do_output_char - output one character
426 * @c: character (or partial unicode symbol)
427 * @tty: terminal device
428 * @space: space available in tty driver write buffer
429 *
430 * This is a helper function that handles one output character
431 * (including special characters like TAB, CR, LF, etc.),
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600432 * doing OPOST processing and putting the results in the
433 * tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000434 *
435 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
436 * and NLDLY. They simply aren't relevant in the world today.
437 * If you ever need them, add them here.
438 *
439 * Returns the number of bytes of buffer space used or -1 if
440 * no space left.
441 *
442 * Locking: should be called under the output_lock to protect
443 * the column state and space left in the buffer
444 */
445
446static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
447{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200448 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000449 int spaces;
450
451 if (!space)
452 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000453
Joe Petersona88a69c2009-01-02 13:40:53 +0000454 switch (c) {
455 case '\n':
456 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200457 ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000458 if (O_ONLCR(tty)) {
459 if (space < 2)
460 return -1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200461 ldata->canon_column = ldata->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700462 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000463 return 2;
464 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200465 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000466 break;
467 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200468 if (O_ONOCR(tty) && ldata->column == 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000469 return 0;
470 if (O_OCRNL(tty)) {
471 c = '\n';
472 if (O_ONLRET(tty))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200473 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000474 break;
475 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200476 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000477 break;
478 case '\t':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200479 spaces = 8 - (ldata->column & 7);
Joe Petersona88a69c2009-01-02 13:40:53 +0000480 if (O_TABDLY(tty) == XTABS) {
481 if (space < spaces)
482 return -1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200483 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000484 tty->ops->write(tty, " ", spaces);
485 return spaces;
486 }
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200487 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000488 break;
489 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200490 if (ldata->column > 0)
491 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000492 break;
493 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000494 if (!iscntrl(c)) {
495 if (O_OLCUC(tty))
496 c = toupper(c);
497 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200498 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000499 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000500 break;
501 }
502
503 tty_put_char(tty, c);
504 return 1;
505}
506
507/**
508 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * @c: character (or partial unicode symbol)
510 * @tty: terminal device
511 *
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600512 * Output one character with OPOST processing.
513 * Returns -1 when the output device is full and the character
514 * must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000516 * Locking: output_lock to protect column state and space left
517 * (also, this is called from n_tty_write under the
518 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 */
Alan Cox4edf1822008-02-08 04:18:44 -0800520
Joe Petersona88a69c2009-01-02 13:40:53 +0000521static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Jiri Slabybddc7152012-10-18 22:26:42 +0200523 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000524 int space, retval;
525
Jiri Slabybddc7152012-10-18 22:26:42 +0200526 mutex_lock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Alan Coxf34d7a52008-04-30 00:54:13 -0700528 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000529 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Jiri Slabybddc7152012-10-18 22:26:42 +0200531 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000532 if (retval < 0)
533 return -1;
534 else
535 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
538/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000539 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 * @tty: terminal device
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600541 * @buf: character buffer
542 * @nr: number of bytes to output
543 *
544 * Output a block of characters with OPOST processing.
545 * Returns the number of characters output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 *
547 * This path is used to speed up block console writes, among other
548 * things when processing blocks of output data. It handles only
549 * the simple cases normally found and helps to generate blocks of
550 * symbols for the console driver and thus improve performance.
551 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000552 * Locking: output_lock to protect column state and space left
553 * (also, this is called from n_tty_write under the
554 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 */
Alan Cox4edf1822008-02-08 04:18:44 -0800556
Joe Petersona88a69c2009-01-02 13:40:53 +0000557static ssize_t process_output_block(struct tty_struct *tty,
558 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200560 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100562 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 const unsigned char *cp;
564
Jiri Slabybddc7152012-10-18 22:26:42 +0200565 mutex_lock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000566
Alan Coxf34d7a52008-04-30 00:54:13 -0700567 space = tty_write_room(tty);
Alan Cox300a6202009-01-02 13:41:04 +0000568 if (!space) {
Jiri Slabybddc7152012-10-18 22:26:42 +0200569 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (nr > space)
573 nr = space;
574
575 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000576 unsigned char c = *cp;
577
578 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 case '\n':
580 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200581 ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (O_ONLCR(tty))
583 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200584 ldata->canon_column = ldata->column;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 break;
586 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200587 if (O_ONOCR(tty) && ldata->column == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 goto break_out;
589 if (O_OCRNL(tty))
590 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200591 ldata->canon_column = ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
593 case '\t':
594 goto break_out;
595 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200596 if (ldata->column > 0)
597 ldata->column--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 break;
599 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000600 if (!iscntrl(c)) {
601 if (O_OLCUC(tty))
602 goto break_out;
603 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200604 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 break;
607 }
608 }
609break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700610 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000611
Jiri Slabybddc7152012-10-18 22:26:42 +0200612 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return i;
614}
615
Joe Petersona88a69c2009-01-02 13:40:53 +0000616/**
617 * process_echoes - write pending echo characters
618 * @tty: terminal device
619 *
620 * Write previously buffered echo (and other ldisc-generated)
621 * characters to the tty.
622 *
623 * Characters generated by the ldisc (including echoes) need to
624 * be buffered because the driver's write buffer can fill during
625 * heavy program output. Echoing straight to the driver will
626 * often fail under these conditions, causing lost characters and
627 * resulting mismatches of ldisc state information.
628 *
629 * Since the ldisc state must represent the characters actually sent
630 * to the driver at the time of the write, operations like certain
631 * changes in column state are also saved in the buffer and executed
632 * here.
633 *
634 * A circular fifo buffer is used so that the most recent characters
635 * are prioritized. Also, when control characters are echoed with a
636 * prefixed "^", the pair is treated atomically and thus not separated.
637 *
Peter Hurley019ebdf2013-06-15 10:04:25 -0400638 * Locking: callers must hold output_lock
Joe Petersona88a69c2009-01-02 13:40:53 +0000639 */
640
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400641static size_t __process_echoes(struct tty_struct *tty)
Joe Petersona88a69c2009-01-02 13:40:53 +0000642{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200643 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400644 int space, old_space;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400645 size_t tail;
Joe Petersona88a69c2009-01-02 13:40:53 +0000646 unsigned char c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000647
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400648 old_space = space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000649
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400650 tail = ldata->echo_tail;
Peter Hurley29c7c5c2013-06-15 10:04:28 -0400651 while (ldata->echo_commit != tail) {
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400652 c = echo_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +0000653 if (c == ECHO_OP_START) {
654 unsigned char op;
Joe Petersona88a69c2009-01-02 13:40:53 +0000655 int no_space_left = 0;
656
657 /*
658 * If the buffer byte is the start of a multi-byte
659 * operation, get the next byte, which is either the
660 * op code or a control character value.
661 */
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400662 op = echo_buf(ldata, tail + 1);
Alan Cox300a6202009-01-02 13:41:04 +0000663
Joe Petersona88a69c2009-01-02 13:40:53 +0000664 switch (op) {
665 unsigned int num_chars, num_bs;
666
667 case ECHO_OP_ERASE_TAB:
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400668 num_chars = echo_buf(ldata, tail + 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000669
670 /*
671 * Determine how many columns to go back
672 * in order to erase the tab.
673 * This depends on the number of columns
674 * used by other characters within the tab
675 * area. If this (modulo 8) count is from
676 * the start of input rather than from a
677 * previous tab, we offset by canon column.
678 * Otherwise, tab spacing is normal.
679 */
680 if (!(num_chars & 0x80))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200681 num_chars += ldata->canon_column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000682 num_bs = 8 - (num_chars & 7);
683
684 if (num_bs > space) {
685 no_space_left = 1;
686 break;
687 }
688 space -= num_bs;
689 while (num_bs--) {
690 tty_put_char(tty, '\b');
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200691 if (ldata->column > 0)
692 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000693 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400694 tail += 3;
Joe Petersona88a69c2009-01-02 13:40:53 +0000695 break;
696
697 case ECHO_OP_SET_CANON_COL:
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200698 ldata->canon_column = ldata->column;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400699 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000700 break;
701
702 case ECHO_OP_MOVE_BACK_COL:
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200703 if (ldata->column > 0)
704 ldata->column--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400705 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000706 break;
707
708 case ECHO_OP_START:
709 /* This is an escaped echo op start code */
710 if (!space) {
711 no_space_left = 1;
712 break;
713 }
714 tty_put_char(tty, ECHO_OP_START);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200715 ldata->column++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000716 space--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400717 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000718 break;
719
720 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000721 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600722 * If the op is not a special byte code,
723 * it is a ctrl char tagged to be echoed
724 * as "^X" (where X is the letter
725 * representing the control char).
726 * Note that we must ensure there is
727 * enough space for the whole ctrl pair.
728 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000729 */
Joe Peterson62b26352009-09-09 15:03:47 -0600730 if (space < 2) {
731 no_space_left = 1;
732 break;
733 }
734 tty_put_char(tty, '^');
735 tty_put_char(tty, op ^ 0100);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200736 ldata->column += 2;
Joe Peterson62b26352009-09-09 15:03:47 -0600737 space -= 2;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400738 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000739 }
740
741 if (no_space_left)
742 break;
743 } else {
Peter Hurley582f5592013-05-17 12:49:48 -0400744 if (O_OPOST(tty)) {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600745 int retval = do_output_char(c, tty, space);
746 if (retval < 0)
747 break;
748 space -= retval;
749 } else {
750 if (!space)
751 break;
752 tty_put_char(tty, c);
753 space -= 1;
754 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400755 tail += 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000756 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000757 }
758
Peter Hurleycbfd0342013-06-15 10:04:26 -0400759 /* If the echo buffer is nearly full (so that the possibility exists
760 * of echo overrun before the next commit), then discard enough
761 * data at the tail to prevent a subsequent overrun */
762 while (ldata->echo_commit - tail >= ECHO_DISCARD_WATERMARK) {
Roel Kluinc476f652013-10-11 22:08:49 +0200763 if (echo_buf(ldata, tail) == ECHO_OP_START) {
Peter Hurley6f222532013-11-08 09:42:18 -0500764 if (echo_buf(ldata, tail + 1) == ECHO_OP_ERASE_TAB)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400765 tail += 3;
766 else
767 tail += 2;
768 } else
769 tail++;
770 }
771
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400772 ldata->echo_tail = tail;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400773 return old_space - space;
Joe Petersona88a69c2009-01-02 13:40:53 +0000774}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Peter Hurley17bd7902013-06-15 10:04:24 -0400776static void commit_echoes(struct tty_struct *tty)
777{
778 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400779 size_t nr, old, echoed;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400780 size_t head;
781
782 head = ldata->echo_head;
Peter Hurley1075a6e2013-12-09 18:06:07 -0500783 ldata->echo_mark = head;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400784 old = ldata->echo_commit - ldata->echo_tail;
785
786 /* Process committed echoes if the accumulated # of bytes
787 * is over the threshold (and try again each time another
788 * block is accumulated) */
789 nr = head - ldata->echo_tail;
790 if (nr < ECHO_COMMIT_WATERMARK || (nr % ECHO_BLOCK > old % ECHO_BLOCK))
791 return;
Peter Hurley17bd7902013-06-15 10:04:24 -0400792
Peter Hurley019ebdf2013-06-15 10:04:25 -0400793 mutex_lock(&ldata->output_lock);
Peter Hurleycbfd0342013-06-15 10:04:26 -0400794 ldata->echo_commit = head;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400795 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400796 mutex_unlock(&ldata->output_lock);
797
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400798 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400799 tty->ops->flush_chars(tty);
800}
801
802static void process_echoes(struct tty_struct *tty)
803{
804 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400805 size_t echoed;
Peter Hurley019ebdf2013-06-15 10:04:25 -0400806
Peter Hurleye2613be2014-02-11 16:34:55 -0500807 if (ldata->echo_mark == ldata->echo_tail)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400808 return;
809
810 mutex_lock(&ldata->output_lock);
Peter Hurley1075a6e2013-12-09 18:06:07 -0500811 ldata->echo_commit = ldata->echo_mark;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400812 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400813 mutex_unlock(&ldata->output_lock);
814
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400815 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400816 tty->ops->flush_chars(tty);
Peter Hurley17bd7902013-06-15 10:04:24 -0400817}
818
Peter Hurley1075a6e2013-12-09 18:06:07 -0500819/* NB: echo_mark and echo_head should be equivalent here */
Peter Hurleycbfd0342013-06-15 10:04:26 -0400820static void flush_echoes(struct tty_struct *tty)
821{
822 struct n_tty_data *ldata = tty->disc_data;
823
Peter Hurley39434ab2013-11-29 12:56:10 -0500824 if ((!L_ECHO(tty) && !L_ECHONL(tty)) ||
825 ldata->echo_commit == ldata->echo_head)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400826 return;
827
828 mutex_lock(&ldata->output_lock);
829 ldata->echo_commit = ldata->echo_head;
830 __process_echoes(tty);
831 mutex_unlock(&ldata->output_lock);
832}
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000835 * add_echo_byte - add a byte to the echo buffer
836 * @c: unicode byte to echo
Jiri Slaby57c94122012-10-18 22:26:43 +0200837 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000838 *
839 * Add a character or operation byte to the echo buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000840 */
841
Peter Hurleycbfd0342013-06-15 10:04:26 -0400842static inline void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000843{
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400844 *echo_buf_addr(ldata, ldata->echo_head++) = c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000845}
846
847/**
848 * echo_move_back_col - add operation to move back a column
Jiri Slaby57c94122012-10-18 22:26:43 +0200849 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000850 *
851 * Add an operation to the echo buffer to move back one column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000852 */
853
Jiri Slaby57c94122012-10-18 22:26:43 +0200854static void echo_move_back_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000855{
Jiri Slaby57c94122012-10-18 22:26:43 +0200856 add_echo_byte(ECHO_OP_START, ldata);
857 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000858}
859
860/**
861 * echo_set_canon_col - add operation to set the canon column
Jiri Slaby57c94122012-10-18 22:26:43 +0200862 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000863 *
864 * Add an operation to the echo buffer to set the canon column
865 * to the current column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000866 */
867
Jiri Slaby57c94122012-10-18 22:26:43 +0200868static void echo_set_canon_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000869{
Jiri Slaby57c94122012-10-18 22:26:43 +0200870 add_echo_byte(ECHO_OP_START, ldata);
871 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000872}
873
874/**
875 * echo_erase_tab - add operation to erase a tab
876 * @num_chars: number of character columns already used
877 * @after_tab: true if num_chars starts after a previous tab
Jiri Slaby57c94122012-10-18 22:26:43 +0200878 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000879 *
880 * Add an operation to the echo buffer to erase a tab.
881 *
882 * Called by the eraser function, which knows how many character
883 * columns have been used since either a previous tab or the start
884 * of input. This information will be used later, along with
885 * canon column (if applicable), to go back the correct number
886 * of columns.
Joe Petersona88a69c2009-01-02 13:40:53 +0000887 */
888
889static void echo_erase_tab(unsigned int num_chars, int after_tab,
Jiri Slaby57c94122012-10-18 22:26:43 +0200890 struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000891{
Jiri Slaby57c94122012-10-18 22:26:43 +0200892 add_echo_byte(ECHO_OP_START, ldata);
893 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000894
895 /* We only need to know this modulo 8 (tab spacing) */
896 num_chars &= 7;
897
898 /* Set the high bit as a flag if num_chars is after a previous tab */
899 if (after_tab)
900 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000901
Jiri Slaby57c94122012-10-18 22:26:43 +0200902 add_echo_byte(num_chars, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000903}
904
905/**
906 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 * @c: unicode byte to echo
908 * @tty: terminal device
909 *
Alan Cox4edf1822008-02-08 04:18:44 -0800910 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100912 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000913 * This variant does not treat control characters specially.
Joe Petersona88a69c2009-01-02 13:40:53 +0000914 */
915
Jiri Slaby57c94122012-10-18 22:26:43 +0200916static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000917{
Joe Petersona88a69c2009-01-02 13:40:53 +0000918 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200919 add_echo_byte(ECHO_OP_START, ldata);
920 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000921 } else {
Jiri Slaby57c94122012-10-18 22:26:43 +0200922 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000923 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000924}
925
926/**
927 * echo_char - echo a character
928 * @c: unicode byte to echo
929 * @tty: terminal device
930 *
931 * Echo user input back onto the screen. This must be called only when
932 * L_ECHO(tty) is true. Called from the driver receive_buf path.
933 *
Joe Peterson62b26352009-09-09 15:03:47 -0600934 * This variant tags control characters to be echoed as "^X"
935 * (where X is the letter representing the control char).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 */
937
938static void echo_char(unsigned char c, struct tty_struct *tty)
939{
Jiri Slabybddc7152012-10-18 22:26:42 +0200940 struct n_tty_data *ldata = tty->disc_data;
941
Joe Petersona88a69c2009-01-02 13:40:53 +0000942 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200943 add_echo_byte(ECHO_OP_START, ldata);
944 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000945 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600946 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Jiri Slaby57c94122012-10-18 22:26:43 +0200947 add_echo_byte(ECHO_OP_START, ldata);
948 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Alan Cox17b82062008-10-13 10:45:06 +0100952/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000953 * finish_erasing - complete erase
Jiri Slaby57c94122012-10-18 22:26:43 +0200954 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100955 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000956
Jiri Slaby57c94122012-10-18 22:26:43 +0200957static inline void finish_erasing(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200959 if (ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200960 echo_char_raw('/', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200961 ldata->erasing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963}
964
965/**
966 * eraser - handle erase function
967 * @c: character input
968 * @tty: terminal device
969 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200970 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 * present in the stream from the driver layer. Handles the complexities
972 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100973 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400974 * n_tty_receive_buf()/producer path:
975 * caller holds non-exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 */
Alan Cox4edf1822008-02-08 04:18:44 -0800977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978static void eraser(unsigned char c, struct tty_struct *tty)
979{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200980 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 enum { ERASE, WERASE, KILL } kill_type;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400982 size_t head;
983 size_t cnt;
984 int seen_alnums;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200986 if (ldata->read_head == ldata->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000987 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return;
989 }
990 if (c == ERASE_CHAR(tty))
991 kill_type = ERASE;
992 else if (c == WERASE_CHAR(tty))
993 kill_type = WERASE;
994 else {
995 if (!L_ECHO(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200996 ldata->read_head = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return;
998 }
999 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001000 ldata->read_head = ldata->canon_head;
Jiri Slaby57c94122012-10-18 22:26:43 +02001001 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 echo_char(KILL_CHAR(tty), tty);
1003 /* Add a newline if ECHOK is on and ECHOKE is off. */
1004 if (L_ECHOK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001005 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return;
1007 }
1008 kill_type = KILL;
1009 }
1010
1011 seen_alnums = 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001012 while (ldata->read_head != ldata->canon_head) {
1013 head = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 /* erase a single possibly multibyte character */
1016 do {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001017 head--;
1018 c = read_buf(ldata, head);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001019 } while (is_continuation(c, tty) && head != ldata->canon_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /* do not partially erase */
1022 if (is_continuation(c, tty))
1023 break;
1024
1025 if (kill_type == WERASE) {
1026 /* Equivalent to BSD's ALTWERASE. */
1027 if (isalnum(c) || c == '_')
1028 seen_alnums++;
1029 else if (seen_alnums)
1030 break;
1031 }
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001032 cnt = ldata->read_head - head;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001033 ldata->read_head = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (L_ECHO(tty)) {
1035 if (L_ECHOPRT(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001036 if (!ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001037 echo_char_raw('\\', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001038 ldata->erasing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040 /* if cnt > 1, output a multi-byte character */
1041 echo_char(c, tty);
1042 while (--cnt > 0) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001043 head++;
1044 echo_char_raw(read_buf(ldata, head), ldata);
Jiri Slaby57c94122012-10-18 22:26:43 +02001045 echo_move_back_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
1047 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1048 echo_char(ERASE_CHAR(tty), tty);
1049 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +00001050 unsigned int num_chars = 0;
1051 int after_tab = 0;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001052 size_t tail = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Joe Petersona88a69c2009-01-02 13:40:53 +00001054 /*
1055 * Count the columns used for characters
1056 * since the start of input or after a
1057 * previous tab.
1058 * This info is used to go back the correct
1059 * number of columns.
1060 */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001061 while (tail != ldata->canon_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001062 tail--;
1063 c = read_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +00001064 if (c == '\t') {
1065 after_tab = 1;
1066 break;
Alan Cox300a6202009-01-02 13:41:04 +00001067 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +00001069 num_chars += 2;
1070 } else if (!is_continuation(c, tty)) {
1071 num_chars++;
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001074 echo_erase_tab(num_chars, after_tab, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 } else {
1076 if (iscntrl(c) && L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001077 echo_char_raw('\b', ldata);
1078 echo_char_raw(' ', ldata);
1079 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001082 echo_char_raw('\b', ldata);
1083 echo_char_raw(' ', ldata);
1084 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086 }
1087 }
1088 if (kill_type == ERASE)
1089 break;
1090 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001091 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001092 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
1095/**
1096 * isig - handle the ISIG optio
1097 * @sig: signal
1098 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001100 * Called when a signal is being sent due to terminal input.
1101 * Called from the driver receive_buf path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001102 *
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001103 * Performs input and output flush if !NOFLSH. In this context, the echo
1104 * buffer is 'output'. The signal is processed first to alert any current
1105 * readers or writers to discontinue and exit their i/o loops.
1106 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001107 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 */
Alan Cox4edf1822008-02-08 04:18:44 -08001109
Peter Hurley3b19e032015-06-27 09:21:32 -04001110static void __isig(int sig, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Peter Hurley8c985d12013-03-06 08:38:19 -05001112 struct pid *tty_pgrp = tty_get_pgrp(tty);
1113 if (tty_pgrp) {
1114 kill_pgrp(tty_pgrp, sig, 1);
1115 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
Peter Hurley3b19e032015-06-27 09:21:32 -04001117}
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001118
Peter Hurley3b19e032015-06-27 09:21:32 -04001119static void isig(int sig, struct tty_struct *tty)
1120{
1121 struct n_tty_data *ldata = tty->disc_data;
1122
1123 if (L_NOFLSH(tty)) {
1124 /* signal only */
1125 __isig(sig, tty);
1126
1127 } else { /* signal and flush */
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001128 up_read(&tty->termios_rwsem);
1129 down_write(&tty->termios_rwsem);
1130
Peter Hurley3b19e032015-06-27 09:21:32 -04001131 __isig(sig, tty);
1132
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001133 /* clear echo buffer */
1134 mutex_lock(&ldata->output_lock);
1135 ldata->echo_head = ldata->echo_tail = 0;
1136 ldata->echo_mark = ldata->echo_commit = 0;
1137 mutex_unlock(&ldata->output_lock);
1138
1139 /* clear output buffer */
1140 tty_driver_flush_buffer(tty);
1141
1142 /* clear input buffer */
1143 reset_buffer_flags(tty->disc_data);
1144
1145 /* notify pty master of flush */
1146 if (tty->link)
1147 n_tty_packet_mode_flush(tty);
1148
1149 up_write(&tty->termios_rwsem);
1150 down_read(&tty->termios_rwsem);
1151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
1154/**
1155 * n_tty_receive_break - handle break
1156 * @tty: terminal
1157 *
1158 * An RS232 break event has been hit in the incoming bitstream. This
1159 * can cause a variety of events depending upon the termios settings.
1160 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001161 * n_tty_receive_buf()/producer path:
1162 * caller holds non-exclusive termios_rwsem
Peter Hurley6d76bd22013-06-15 09:14:26 -04001163 *
1164 * Note: may get exclusive termios_rwsem if flushing input buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 */
Alan Cox4edf1822008-02-08 04:18:44 -08001166
Peter Hurley4b293492013-07-24 08:29:55 -04001167static void n_tty_receive_break(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Jiri Slaby57c94122012-10-18 22:26:43 +02001169 struct n_tty_data *ldata = tty->disc_data;
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (I_IGNBRK(tty))
1172 return;
1173 if (I_BRKINT(tty)) {
Peter Hurley8c985d12013-03-06 08:38:19 -05001174 isig(SIGINT, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 return;
1176 }
1177 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001178 put_tty_queue('\377', ldata);
1179 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001181 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
1184/**
1185 * n_tty_receive_overrun - handle overrun reporting
1186 * @tty: terminal
1187 *
1188 * Data arrived faster than we could process it. While the tty
1189 * driver has flagged this the bits that were missed are gone
1190 * forever.
1191 *
1192 * Called from the receive_buf path so single threaded. Does not
1193 * need locking as num_overrun and overrun_time are function
1194 * private.
1195 */
Alan Cox4edf1822008-02-08 04:18:44 -08001196
Peter Hurley4b293492013-07-24 08:29:55 -04001197static void n_tty_receive_overrun(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001199 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001201 ldata->num_overrun++;
1202 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1203 time_after(ldata->overrun_time, jiffies)) {
Peter Hurley339f36b2015-11-08 13:01:13 -05001204 tty_warn(tty, "%d input overrun(s)\n", ldata->num_overrun);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001205 ldata->overrun_time = jiffies;
1206 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208}
1209
1210/**
1211 * n_tty_receive_parity_error - error notifier
1212 * @tty: terminal device
1213 * @c: character
1214 *
1215 * Process a parity error and queue the right data to indicate
Peter Hurley6d76bd22013-06-15 09:14:26 -04001216 * the error case if necessary.
1217 *
1218 * n_tty_receive_buf()/producer path:
1219 * caller holds non-exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 */
Peter Hurley4b293492013-07-24 08:29:55 -04001221static void n_tty_receive_parity_error(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Jiri Slaby57c94122012-10-18 22:26:43 +02001223 struct n_tty_data *ldata = tty->disc_data;
1224
Peter Hurley66528f92014-06-16 08:10:42 -04001225 if (I_INPCK(tty)) {
1226 if (I_IGNPAR(tty))
1227 return;
1228 if (I_PARMRK(tty)) {
1229 put_tty_queue('\377', ldata);
1230 put_tty_queue('\0', ldata);
1231 put_tty_queue(c, ldata);
1232 } else
1233 put_tty_queue('\0', ldata);
1234 } else
Jiri Slaby57c94122012-10-18 22:26:43 +02001235 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001238static void
1239n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c)
1240{
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001241 isig(signal, tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001242 if (I_IXON(tty))
1243 start_tty(tty);
1244 if (L_ECHO(tty)) {
1245 echo_char(c, tty);
1246 commit_echoes(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001247 } else
1248 process_echoes(tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001249 return;
1250}
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252/**
1253 * n_tty_receive_char - perform processing
1254 * @tty: terminal device
1255 * @c: character
1256 *
1257 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001258 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 * driver above.
Peter Hurley6d76bd22013-06-15 09:14:26 -04001260 *
1261 * n_tty_receive_buf()/producer path:
1262 * caller holds non-exclusive termios_rwsem
1263 * publishes canon_head if canonical mode is active
Peter Hurleye60d27c2013-07-24 08:29:56 -04001264 *
1265 * Returns 1 if LNEXT was received, else returns 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 */
1267
Peter Hurleye60d27c2013-07-24 08:29:56 -04001268static int
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001269n_tty_receive_char_special(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001271 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (I_IXON(tty)) {
1274 if (c == START_CHAR(tty)) {
1275 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001276 process_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
1279 if (c == STOP_CHAR(tty)) {
1280 stop_tty(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283 }
Joe Peterson575537b32008-04-30 00:53:30 -07001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (L_ISIG(tty)) {
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001286 if (c == INTR_CHAR(tty)) {
1287 n_tty_receive_signal_char(tty, SIGINT, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001288 return 0;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001289 } else if (c == QUIT_CHAR(tty)) {
1290 n_tty_receive_signal_char(tty, SIGQUIT, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001291 return 0;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001292 } else if (c == SUSP_CHAR(tty)) {
1293 n_tty_receive_signal_char(tty, SIGTSTP, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
1296 }
Joe Peterson575537b32008-04-30 00:53:30 -07001297
Peter Hurley855df3c2013-07-24 08:29:50 -04001298 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1299 start_tty(tty);
1300 process_echoes(tty);
1301 }
1302
Joe Peterson575537b32008-04-30 00:53:30 -07001303 if (c == '\r') {
1304 if (I_IGNCR(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001305 return 0;
Joe Peterson575537b32008-04-30 00:53:30 -07001306 if (I_ICRNL(tty))
1307 c = '\n';
1308 } else if (c == '\n' && I_INLCR(tty))
1309 c = '\r';
1310
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001311 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1313 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1314 eraser(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001315 commit_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 }
1318 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001319 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001321 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001323 echo_char_raw('^', ldata);
1324 echo_char_raw('\b', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001325 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
1327 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001328 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001330 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001331 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Jiri Slaby57c94122012-10-18 22:26:43 +02001333 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001335 echo_char_raw('\n', ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001336 while (tail != ldata->read_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001337 echo_char(read_buf(ldata, tail), tty);
1338 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001340 commit_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001341 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343 if (c == '\n') {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001344 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001345 echo_char_raw('\n', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001346 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
1348 goto handle_newline;
1349 }
1350 if (c == EOF_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 c = __DISABLED_CHAR;
1352 goto handle_newline;
1353 }
1354 if ((c == EOL_CHAR(tty)) ||
1355 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1356 /*
1357 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1358 */
1359 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001361 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001362 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 echo_char(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001364 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366 /*
1367 * XXX does PARMRK doubling happen for
1368 * EOL_CHAR and EOL2_CHAR?
1369 */
Peter Hurley001ba922013-12-02 14:24:44 -05001370 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001371 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Alan Cox4edf1822008-02-08 04:18:44 -08001373handle_newline:
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001374 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Peter Hurley6d76bd22013-06-15 09:14:26 -04001375 put_tty_queue(c, ldata);
Peter Hurley70aca712015-01-16 15:05:37 -05001376 smp_store_release(&ldata->canon_head, ldata->read_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001378 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381 }
Alan Cox4edf1822008-02-08 04:18:44 -08001382
Joe Petersonacc71bb2009-01-02 13:43:32 +00001383 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001384 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001386 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 else {
1388 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001389 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001390 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 echo_char(c, tty);
1392 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001393 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395
Peter Hurley001ba922013-12-02 14:24:44 -05001396 /* PARMRK doubling check */
1397 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001398 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Jiri Slaby57c94122012-10-18 22:26:43 +02001400 put_tty_queue(c, ldata);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001401 return 0;
Alan Cox4edf1822008-02-08 04:18:44 -08001402}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Peter Hurleye60d27c2013-07-24 08:29:56 -04001404static inline void
1405n_tty_receive_char_inline(struct tty_struct *tty, unsigned char c)
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001406{
1407 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001408
Peter Hurleye60d27c2013-07-24 08:29:56 -04001409 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1410 start_tty(tty);
1411 process_echoes(tty);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001412 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001413 if (L_ECHO(tty)) {
1414 finish_erasing(ldata);
1415 /* Record the column of first canon char. */
1416 if (ldata->canon_head == ldata->read_head)
1417 echo_set_canon_col(ldata);
1418 echo_char(c, tty);
1419 commit_echoes(tty);
1420 }
Peter Hurley001ba922013-12-02 14:24:44 -05001421 /* PARMRK doubling check */
1422 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001423 put_tty_queue(c, ldata);
1424 put_tty_queue(c, ldata);
1425}
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001426
Peter Hurleyeb3e4662013-12-02 14:24:42 -05001427static void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
Peter Hurleye60d27c2013-07-24 08:29:56 -04001428{
1429 n_tty_receive_char_inline(tty, c);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001430}
1431
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001432static inline void
Peter Hurley7de971b2013-07-24 08:29:53 -04001433n_tty_receive_char_fast(struct tty_struct *tty, unsigned char c)
1434{
1435 struct n_tty_data *ldata = tty->disc_data;
1436
Peter Hurleye60d27c2013-07-24 08:29:56 -04001437 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1438 start_tty(tty);
1439 process_echoes(tty);
Peter Hurley7de971b2013-07-24 08:29:53 -04001440 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001441 if (L_ECHO(tty)) {
1442 finish_erasing(ldata);
1443 /* Record the column of first canon char. */
1444 if (ldata->canon_head == ldata->read_head)
1445 echo_set_canon_col(ldata);
1446 echo_char(c, tty);
1447 commit_echoes(tty);
1448 }
1449 put_tty_queue(c, ldata);
Peter Hurley7de971b2013-07-24 08:29:53 -04001450}
1451
Peter Hurley8dc4b252013-12-02 14:24:43 -05001452static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001453{
1454 if (I_ISTRIP(tty))
1455 c &= 0x7f;
1456 if (I_IUCLC(tty) && L_IEXTEN(tty))
1457 c = tolower(c);
1458
1459 if (I_IXON(tty)) {
1460 if (c == STOP_CHAR(tty))
1461 stop_tty(tty);
1462 else if (c == START_CHAR(tty) ||
1463 (tty->stopped && !tty->flow_stopped && I_IXANY(tty) &&
1464 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) &&
1465 c != SUSP_CHAR(tty))) {
1466 start_tty(tty);
1467 process_echoes(tty);
1468 }
1469 }
1470}
1471
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001472static void
1473n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)
1474{
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001475 switch (flag) {
1476 case TTY_BREAK:
1477 n_tty_receive_break(tty);
1478 break;
1479 case TTY_PARITY:
1480 case TTY_FRAME:
1481 n_tty_receive_parity_error(tty, c);
1482 break;
1483 case TTY_OVERRUN:
1484 n_tty_receive_overrun(tty);
1485 break;
1486 default:
Peter Hurley339f36b2015-11-08 13:01:13 -05001487 tty_err(tty, "unknown flag %d\n", flag);
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001488 break;
1489 }
1490}
1491
Peter Hurleye60d27c2013-07-24 08:29:56 -04001492static void
1493n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag)
1494{
1495 struct n_tty_data *ldata = tty->disc_data;
1496
1497 ldata->lnext = 0;
1498 if (likely(flag == TTY_NORMAL)) {
1499 if (I_ISTRIP(tty))
1500 c &= 0x7f;
1501 if (I_IUCLC(tty) && L_IEXTEN(tty))
1502 c = tolower(c);
1503 n_tty_receive_char(tty, c);
1504 } else
1505 n_tty_receive_char_flagged(tty, c, flag);
1506}
1507
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001508static void
1509n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp,
1510 char *fp, int count)
1511{
1512 struct n_tty_data *ldata = tty->disc_data;
1513 size_t n, head;
1514
1515 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001516 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001517 memcpy(read_buf_addr(ldata, head), cp, n);
1518 ldata->read_head += n;
1519 cp += n;
1520 count -= n;
1521
1522 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001523 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001524 memcpy(read_buf_addr(ldata, head), cp, n);
1525 ldata->read_head += n;
1526}
1527
Peter Hurley554117b2013-06-15 10:21:25 -04001528static void
1529n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp,
1530 char *fp, int count)
1531{
1532 struct n_tty_data *ldata = tty->disc_data;
1533 char flag = TTY_NORMAL;
1534
1535 while (count--) {
1536 if (fp)
1537 flag = *fp++;
1538 if (likely(flag == TTY_NORMAL))
1539 put_tty_queue(*cp++, ldata);
1540 else
1541 n_tty_receive_char_flagged(tty, *cp++, flag);
1542 }
1543}
1544
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001545static void
1546n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
1547 char *fp, int count)
1548{
1549 char flag = TTY_NORMAL;
1550
1551 while (count--) {
1552 if (fp)
1553 flag = *fp++;
1554 if (likely(flag == TTY_NORMAL))
1555 n_tty_receive_char_closing(tty, *cp++);
1556 else
1557 n_tty_receive_char_flagged(tty, *cp++, flag);
1558 }
1559}
1560
Peter Hurley7d88d632013-07-24 08:29:49 -04001561static void
1562n_tty_receive_buf_standard(struct tty_struct *tty, const unsigned char *cp,
Peter Hurley6baad002013-07-24 08:29:52 -04001563 char *fp, int count)
1564{
1565 struct n_tty_data *ldata = tty->disc_data;
1566 char flag = TTY_NORMAL;
1567
1568 while (count--) {
1569 if (fp)
1570 flag = *fp++;
1571 if (likely(flag == TTY_NORMAL)) {
1572 unsigned char c = *cp++;
1573
1574 if (I_ISTRIP(tty))
1575 c &= 0x7f;
1576 if (I_IUCLC(tty) && L_IEXTEN(tty))
1577 c = tolower(c);
1578 if (L_EXTPROC(tty)) {
1579 put_tty_queue(c, ldata);
1580 continue;
1581 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001582 if (!test_bit(c, ldata->char_map))
1583 n_tty_receive_char_inline(tty, c);
1584 else if (n_tty_receive_char_special(tty, c) && count) {
1585 if (fp)
1586 flag = *fp++;
1587 n_tty_receive_char_lnext(tty, *cp++, flag);
1588 count--;
1589 }
Peter Hurley6baad002013-07-24 08:29:52 -04001590 } else
1591 n_tty_receive_char_flagged(tty, *cp++, flag);
1592 }
1593}
1594
1595static void
1596n_tty_receive_buf_fast(struct tty_struct *tty, const unsigned char *cp,
1597 char *fp, int count)
Peter Hurley7d88d632013-07-24 08:29:49 -04001598{
Peter Hurleye60d27c2013-07-24 08:29:56 -04001599 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley7d88d632013-07-24 08:29:49 -04001600 char flag = TTY_NORMAL;
1601
1602 while (count--) {
1603 if (fp)
1604 flag = *fp++;
Peter Hurleye60d27c2013-07-24 08:29:56 -04001605 if (likely(flag == TTY_NORMAL)) {
1606 unsigned char c = *cp++;
1607
1608 if (!test_bit(c, ldata->char_map))
1609 n_tty_receive_char_fast(tty, c);
1610 else if (n_tty_receive_char_special(tty, c) && count) {
1611 if (fp)
1612 flag = *fp++;
1613 n_tty_receive_char_lnext(tty, *cp++, flag);
1614 count--;
1615 }
1616 } else
Peter Hurley7d88d632013-07-24 08:29:49 -04001617 n_tty_receive_char_flagged(tty, *cp++, flag);
1618 }
1619}
1620
Peter Hurley24a89d12013-06-15 09:14:15 -04001621static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1622 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001624 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001625 bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001627 if (ldata->real_raw)
1628 n_tty_receive_buf_real_raw(tty, cp, fp, count);
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001629 else if (ldata->raw || (L_EXTPROC(tty) && !preops))
Peter Hurley554117b2013-06-15 10:21:25 -04001630 n_tty_receive_buf_raw(tty, cp, fp, count);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001631 else if (tty->closing && !L_EXTPROC(tty))
1632 n_tty_receive_buf_closing(tty, cp, fp, count);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001633 else {
Peter Hurleye60d27c2013-07-24 08:29:56 -04001634 if (ldata->lnext) {
1635 char flag = TTY_NORMAL;
1636
1637 if (fp)
1638 flag = *fp++;
1639 n_tty_receive_char_lnext(tty, *cp++, flag);
1640 count--;
1641 }
1642
Peter Hurley7de971b2013-07-24 08:29:53 -04001643 if (!preops && !I_PARMRK(tty))
Peter Hurley6baad002013-07-24 08:29:52 -04001644 n_tty_receive_buf_fast(tty, cp, fp, count);
1645 else
1646 n_tty_receive_buf_standard(tty, cp, fp, count);
Peter Hurleycbfd0342013-06-15 10:04:26 -04001647
1648 flush_echoes(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001649 if (tty->ops->flush_chars)
1650 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
1652
Peter Hurley70aca712015-01-16 15:05:37 -05001653 if (ldata->icanon && !L_EXTPROC(tty))
1654 return;
1655
1656 /* publish read_head to consumer */
1657 smp_store_release(&ldata->commit_head, ldata->read_head);
1658
1659 if ((read_cnt(ldata) >= ldata->minimum_to_wake) || L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001661 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001665/**
1666 * n_tty_receive_buf_common - process input
1667 * @tty: device to receive input
1668 * @cp: input chars
1669 * @fp: flags for each char (if NULL, all chars are TTY_NORMAL)
1670 * @count: number of input chars in @cp
1671 *
1672 * Called by the terminal driver when a block of characters has
1673 * been received. This function must be called from soft contexts
1674 * not from interrupt context. The driver is responsible for making
1675 * calls one at a time and in order (or using flush_to_ldisc)
1676 *
1677 * Returns the # of input chars from @cp which were processed.
1678 *
1679 * In canonical mode, the maximum line length is 4096 chars (including
1680 * the line termination char); lines longer than 4096 chars are
1681 * truncated. After 4095 chars, input data is still processed but
1682 * not stored. Overflow processing ensures the tty can always
1683 * receive more input until at least one line can be read.
1684 *
1685 * In non-canonical mode, the read buffer will only accept 4095 chars;
1686 * this provides the necessary space for a newline char if the input
1687 * mode is switched to canonical.
1688 *
1689 * Note it is possible for the read buffer to _contain_ 4096 chars
1690 * in non-canonical mode: the read buffer could already contain the
1691 * maximum canon line of 4096 chars when the mode is switched to
1692 * non-canonical.
1693 *
1694 * n_tty_receive_buf()/producer path:
1695 * claims non-exclusive termios_rwsem
1696 * publishes commit_head or canon_head
1697 */
Peter Hurley5c32d122013-12-02 14:24:41 -05001698static int
1699n_tty_receive_buf_common(struct tty_struct *tty, const unsigned char *cp,
1700 char *fp, int count, int flow)
Peter Hurley24a89d12013-06-15 09:14:15 -04001701{
1702 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001703 int room, n, rcvd = 0, overflow;
Peter Hurley24a89d12013-06-15 09:14:15 -04001704
Peter Hurley9356b532013-06-15 09:14:24 -04001705 down_read(&tty->termios_rwsem);
1706
Peter Hurley19e2ad62013-07-24 08:29:54 -04001707 while (1) {
Peter Hurley70aca712015-01-16 15:05:37 -05001708 /*
Peter Hurley06c49f92015-01-16 15:05:38 -05001709 * When PARMRK is set, each input char may take up to 3 chars
1710 * in the read buf; reduce the buffer space avail by 3x
Peter Hurley70aca712015-01-16 15:05:37 -05001711 *
1712 * If we are doing input canonicalization, and there are no
1713 * pending newlines, let characters through without limit, so
1714 * that erase characters will be handled. Other excess
1715 * characters will be beeped.
1716 *
1717 * paired with store in *_copy_from_read_buf() -- guarantees
1718 * the consumer has loaded the data in read_buf up to the new
1719 * read_tail (so this producer will not overwrite unread data)
1720 */
1721 size_t tail = smp_load_acquire(&ldata->read_tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001722
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001723 room = N_TTY_BUF_SIZE - (ldata->read_head - tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001724 if (I_PARMRK(tty))
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001725 room = (room + 2) / 3;
1726 room--;
1727 if (room <= 0) {
1728 overflow = ldata->icanon && ldata->canon_head == tail;
1729 if (overflow && room < 0)
1730 ldata->read_head--;
1731 room = overflow;
1732 ldata->no_room = flow && !room;
1733 } else
1734 overflow = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05001735
Peter Hurley19e2ad62013-07-24 08:29:54 -04001736 n = min(count, room);
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001737 if (!n)
Peter Hurley19e2ad62013-07-24 08:29:54 -04001738 break;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001739
1740 /* ignore parity errors if handling overflow */
1741 if (!overflow || !fp || *fp != TTY_PARITY)
1742 __receive_buf(tty, cp, fp, n);
1743
Peter Hurley19e2ad62013-07-24 08:29:54 -04001744 cp += n;
1745 if (fp)
1746 fp += n;
1747 count -= n;
1748 rcvd += n;
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001749 }
Peter Hurley24a89d12013-06-15 09:14:15 -04001750
Peter Hurley19e2ad62013-07-24 08:29:54 -04001751 tty->receive_room = room;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001752
1753 /* Unthrottle if handling overflow on pty */
1754 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
1755 if (overflow) {
1756 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
1757 tty_unthrottle_safe(tty);
1758 __tty_set_flow_change(tty, 0);
1759 }
1760 } else
1761 n_tty_check_throttle(tty);
1762
Peter Hurley9356b532013-06-15 09:14:24 -04001763 up_read(&tty->termios_rwsem);
1764
Peter Hurley19e2ad62013-07-24 08:29:54 -04001765 return rcvd;
Peter Hurley24a89d12013-06-15 09:14:15 -04001766}
1767
Peter Hurley5c32d122013-12-02 14:24:41 -05001768static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1769 char *fp, int count)
1770{
1771 n_tty_receive_buf_common(tty, cp, fp, count, 0);
1772}
1773
1774static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1775 char *fp, int count)
1776{
1777 return n_tty_receive_buf_common(tty, cp, fp, count, 1);
1778}
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780int is_ignored(int sig)
1781{
1782 return (sigismember(&current->blocked, sig) ||
Alan Cox4edf1822008-02-08 04:18:44 -08001783 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784}
1785
1786/**
1787 * n_tty_set_termios - termios data changed
1788 * @tty: terminal
1789 * @old: previous data
1790 *
1791 * Called by the tty layer when the user changes termios flags so
1792 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001793 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 * guaranteed that this function will not be re-entered or in progress
1795 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001796 *
Peter Hurley6a1c0682013-06-15 09:14:23 -04001797 * Locking: Caller holds tty->termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 */
Alan Cox4edf1822008-02-08 04:18:44 -08001799
1800static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001802 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001803
Peter Hurleyc786f742013-09-17 12:53:35 -04001804 if (!old || (old->c_lflag ^ tty->termios.c_lflag) & ICANON) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001805 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -05001806 ldata->line_start = ldata->read_tail;
1807 if (!L_ICANON(tty) || !read_cnt(ldata)) {
1808 ldata->canon_head = ldata->read_tail;
1809 ldata->push = 0;
1810 } else {
1811 set_bit((ldata->read_head - 1) & (N_TTY_BUF_SIZE - 1),
1812 ldata->read_flags);
1813 ldata->canon_head = ldata->read_head;
1814 ldata->push = 1;
1815 }
Peter Hurley70aca712015-01-16 15:05:37 -05001816 ldata->commit_head = ldata->read_head;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001817 ldata->erasing = 0;
Peter Hurley6f9b0282013-06-15 09:14:27 -04001818 ldata->lnext = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001819 }
1820
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001821 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1824 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1825 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1826 I_PARMRK(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001827 bitmap_zero(ldata->char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 if (I_IGNCR(tty) || I_ICRNL(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001830 set_bit('\r', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (I_INLCR(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001832 set_bit('\n', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 if (L_ICANON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001835 set_bit(ERASE_CHAR(tty), ldata->char_map);
1836 set_bit(KILL_CHAR(tty), ldata->char_map);
1837 set_bit(EOF_CHAR(tty), ldata->char_map);
1838 set_bit('\n', ldata->char_map);
1839 set_bit(EOL_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 if (L_IEXTEN(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001841 set_bit(WERASE_CHAR(tty), ldata->char_map);
1842 set_bit(LNEXT_CHAR(tty), ldata->char_map);
1843 set_bit(EOL2_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (L_ECHO(tty))
1845 set_bit(REPRINT_CHAR(tty),
Peter Hurley1bb9d562013-06-15 10:21:20 -04001846 ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848 }
1849 if (I_IXON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001850 set_bit(START_CHAR(tty), ldata->char_map);
1851 set_bit(STOP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853 if (L_ISIG(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001854 set_bit(INTR_CHAR(tty), ldata->char_map);
1855 set_bit(QUIT_CHAR(tty), ldata->char_map);
1856 set_bit(SUSP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
Peter Hurley1bb9d562013-06-15 10:21:20 -04001858 clear_bit(__DISABLED_CHAR, ldata->char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001859 ldata->raw = 0;
1860 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001862 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1864 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1865 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001866 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001868 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001870 /*
1871 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1872 * been stopped by STOP_CHAR(tty) before it.
1873 */
Peter Hurleye2613be2014-02-11 16:34:55 -05001874 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
Wang YanQingdab73b42013-05-09 14:16:47 +08001875 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001876 process_echoes(tty);
1877 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001878
Alan Coxf34d7a52008-04-30 00:54:13 -07001879 /* The termios change make the tty ready for I/O */
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001880 wake_up_interruptible(&tty->write_wait);
1881 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
1884/**
1885 * n_tty_close - close the ldisc for this tty
1886 * @tty: device
1887 *
Alan Cox4edf1822008-02-08 04:18:44 -08001888 * Called from the terminal layer when this line discipline is
1889 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 * discipline change. The function will not be called while other
1891 * ldisc methods are in progress.
1892 */
Alan Cox4edf1822008-02-08 04:18:44 -08001893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894static void n_tty_close(struct tty_struct *tty)
1895{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001896 struct n_tty_data *ldata = tty->disc_data;
1897
Peter Hurley79901312013-03-11 16:44:23 -04001898 if (tty->link)
1899 n_tty_packet_mode_flush(tty);
1900
Peter Hurley20bafb32013-06-15 10:21:19 -04001901 vfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001902 tty->disc_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903}
1904
1905/**
1906 * n_tty_open - open an ldisc
1907 * @tty: terminal to open
1908 *
Alan Cox4edf1822008-02-08 04:18:44 -08001909 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 * terminal device. Can sleep. Called serialized so that no
1911 * other events will occur in parallel. No further open will occur
1912 * until a close.
1913 */
1914
1915static int n_tty_open(struct tty_struct *tty)
1916{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001917 struct n_tty_data *ldata;
1918
Peter Hurley20bafb32013-06-15 10:21:19 -04001919 /* Currently a malloc failure here can panic */
1920 ldata = vmalloc(sizeof(*ldata));
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001921 if (!ldata)
1922 goto err;
1923
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001924 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001925 mutex_init(&ldata->atomic_read_lock);
1926 mutex_init(&ldata->output_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001927
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001928 tty->disc_data = ldata;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001929 reset_buffer_flags(tty->disc_data);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001930 ldata->column = 0;
Peter Hurley20bafb32013-06-15 10:21:19 -04001931 ldata->canon_column = 0;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001932 ldata->minimum_to_wake = 1;
Peter Hurley20bafb32013-06-15 10:21:19 -04001933 ldata->num_overrun = 0;
1934 ldata->no_room = 0;
1935 ldata->lnext = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001937 /* indicate buffer work may resume */
1938 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1939 n_tty_set_termios(tty, NULL);
1940 tty_unthrottle(tty);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 return 0;
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001943err:
Jiri Slabyb91939f2012-10-18 22:26:35 +02001944 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945}
1946
Peter Hurleyeafbe672013-12-02 14:24:45 -05001947static inline int input_available_p(struct tty_struct *tty, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001949 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya5934802014-02-11 11:49:58 -05001950 int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001951
Peter Hurley25e8d0e2014-02-11 18:55:30 -05001952 if (ldata->icanon && !L_EXTPROC(tty))
1953 return ldata->canon_head != ldata->read_tail;
1954 else
Peter Hurley70aca712015-01-16 15:05:37 -05001955 return ldata->commit_head - ldata->read_tail >= amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
1957
Peter Hurley1a486322015-04-13 13:24:34 -04001958static inline int check_other_done(struct tty_struct *tty)
1959{
1960 int done = test_bit(TTY_OTHER_DONE, &tty->flags);
1961 if (done) {
1962 /* paired with cmpxchg() in check_other_closed(); ensures
1963 * read buffer head index is not stale
1964 */
1965 smp_mb__after_atomic();
1966 }
1967 return done;
1968}
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001971 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 * @tty: terminal device
1973 * @b: user data
1974 * @nr: size of data
1975 *
Alan Cox11a96d12008-10-13 10:46:24 +01001976 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 * ICANON is off; it copies characters straight from the tty queue to
1978 * user space directly. It can be profitably called twice; once to
1979 * drain the space from the tail pointer to the (physical) end of the
1980 * buffer, and once to drain the space from the (physical) beginning of
1981 * the buffer to head pointer.
1982 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001983 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001985 * n_tty_read()/consumer path:
1986 * caller holds non-exclusive termios_rwsem
1987 * read_tail published
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 */
Alan Cox4edf1822008-02-08 04:18:44 -08001989
Alan Cox33f0f882006-01-09 20:54:13 -08001990static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 unsigned char __user **b,
1992 size_t *nr)
1993
1994{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001995 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 int retval;
1997 size_t n;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001998 bool is_eof;
Peter Hurley70aca712015-01-16 15:05:37 -05001999 size_t head = smp_load_acquire(&ldata->commit_head);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002000 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002 retval = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05002003 n = min(head - ldata->read_tail, N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 n = min(*nr, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 if (n) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002006 retval = copy_to_user(*b, read_buf_addr(ldata, tail), n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 n -= retval;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002008 is_eof = n == 1 && read_buf(ldata, tail) == EOF_CHAR(tty);
2009 tty_audit_add_data(tty, read_buf_addr(ldata, tail), n,
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002010 ldata->icanon);
Peter Hurley70aca712015-01-16 15:05:37 -05002011 smp_store_release(&ldata->read_tail, ldata->read_tail + n);
hyc@symas.com26df6d12010-06-22 10:14:49 -07002012 /* Turn single EOF into zero-length read */
Peter Hurley70aca712015-01-16 15:05:37 -05002013 if (L_EXTPROC(tty) && ldata->icanon && is_eof &&
2014 (head == ldata->read_tail))
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02002015 n = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 *b += n;
2017 *nr -= n;
2018 }
2019 return retval;
2020}
2021
Peter Hurley88bb0de2013-06-15 09:14:16 -04002022/**
Peter Hurley32f13522013-06-15 09:14:17 -04002023 * canon_copy_from_read_buf - copy read data in canonical mode
Peter Hurley88bb0de2013-06-15 09:14:16 -04002024 * @tty: terminal device
2025 * @b: user data
2026 * @nr: size of data
2027 *
2028 * Helper function for n_tty_read. It is only called when ICANON is on;
Peter Hurley32f13522013-06-15 09:14:17 -04002029 * it copies one line of input up to and including the line-delimiting
2030 * character into the user-space buffer.
Peter Hurley88bb0de2013-06-15 09:14:16 -04002031 *
Peter Hurley4d0ed182013-12-10 17:12:02 -05002032 * NB: When termios is changed from non-canonical to canonical mode and
2033 * the read buffer contains data, n_tty_set_termios() simulates an EOF
2034 * push (as if C-d were input) _without_ the DISABLED_CHAR in the buffer.
2035 * This causes data already processed as input to be immediately available
2036 * as input although a newline has not been received.
2037 *
Peter Hurley88bb0de2013-06-15 09:14:16 -04002038 * Called under the atomic_read_lock mutex
Peter Hurley6d76bd22013-06-15 09:14:26 -04002039 *
2040 * n_tty_read()/consumer path:
2041 * caller holds non-exclusive termios_rwsem
2042 * read_tail published
Peter Hurley88bb0de2013-06-15 09:14:16 -04002043 */
2044
Peter Hurley32f13522013-06-15 09:14:17 -04002045static int canon_copy_from_read_buf(struct tty_struct *tty,
2046 unsigned char __user **b,
2047 size_t *nr)
Peter Hurley88bb0de2013-06-15 09:14:16 -04002048{
2049 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley32f13522013-06-15 09:14:17 -04002050 size_t n, size, more, c;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002051 size_t eol;
2052 size_t tail;
2053 int ret, found = 0;
Peter Hurley40d5e092013-06-15 10:21:17 -04002054 bool eof_push = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002055
2056 /* N.B. avoid overrun if nr == 0 */
Peter Hurley70aca712015-01-16 15:05:37 -05002057 n = min(*nr, smp_load_acquire(&ldata->canon_head) - ldata->read_tail);
Peter Hurley6d76bd22013-06-15 09:14:26 -04002058 if (!n)
Peter Hurley32f13522013-06-15 09:14:17 -04002059 return 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002060
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002061 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Peter Hurley32f13522013-06-15 09:14:17 -04002062 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
2063
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002064 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04002065 __func__, *nr, tail, n, size);
2066
2067 eol = find_next_bit(ldata->read_flags, size, tail);
2068 more = n - (size - tail);
2069 if (eol == N_TTY_BUF_SIZE && more) {
2070 /* scan wrapped without finding set bit */
2071 eol = find_next_bit(ldata->read_flags, more, 0);
2072 if (eol != more)
2073 found = 1;
2074 } else if (eol != size)
2075 found = 1;
2076
2077 size = N_TTY_BUF_SIZE - tail;
Peter Hurleyc77569d2013-11-22 07:16:25 -05002078 n = eol - tail;
Mark Tomlinsonda555db2015-05-18 12:01:48 +12002079 if (n > N_TTY_BUF_SIZE)
2080 n += N_TTY_BUF_SIZE;
Peter Hurleyc77569d2013-11-22 07:16:25 -05002081 n += found;
Peter Hurley32f13522013-06-15 09:14:17 -04002082 c = n;
2083
Peter Hurley4d0ed182013-12-10 17:12:02 -05002084 if (found && !ldata->push && read_buf(ldata, eol) == __DISABLED_CHAR) {
Peter Hurley32f13522013-06-15 09:14:17 -04002085 n--;
Peter Hurley40d5e092013-06-15 10:21:17 -04002086 eof_push = !n && ldata->read_tail != ldata->line_start;
2087 }
Peter Hurley32f13522013-06-15 09:14:17 -04002088
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002089 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu size:%zu more:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04002090 __func__, eol, found, n, c, size, more);
2091
Peter Hurley32f13522013-06-15 09:14:17 -04002092 if (n > size) {
Laura Abbott72586c62015-05-14 11:42:17 -07002093 ret = tty_copy_to_user(tty, *b, read_buf_addr(ldata, tail), size);
Peter Hurley32f13522013-06-15 09:14:17 -04002094 if (ret)
2095 return -EFAULT;
Laura Abbott72586c62015-05-14 11:42:17 -07002096 ret = tty_copy_to_user(tty, *b + size, ldata->read_buf, n - size);
Peter Hurley32f13522013-06-15 09:14:17 -04002097 } else
Laura Abbott72586c62015-05-14 11:42:17 -07002098 ret = tty_copy_to_user(tty, *b, read_buf_addr(ldata, tail), n);
Peter Hurley32f13522013-06-15 09:14:17 -04002099
2100 if (ret)
2101 return -EFAULT;
2102 *b += n;
2103 *nr -= n;
2104
Peter Hurleya73d3d62013-06-15 09:14:25 -04002105 if (found)
Peter Hurley6d76bd22013-06-15 09:14:26 -04002106 clear_bit(eol, ldata->read_flags);
Peter Hurley70aca712015-01-16 15:05:37 -05002107 smp_store_release(&ldata->read_tail, ldata->read_tail + c);
Peter Hurley88bb0de2013-06-15 09:14:16 -04002108
Peter Hurley40d5e092013-06-15 10:21:17 -04002109 if (found) {
Peter Hurley4d0ed182013-12-10 17:12:02 -05002110 if (!ldata->push)
2111 ldata->line_start = ldata->read_tail;
2112 else
2113 ldata->push = 0;
Peter Hurley32f13522013-06-15 09:14:17 -04002114 tty_audit_push(tty);
Peter Hurley40d5e092013-06-15 10:21:17 -04002115 }
2116 return eof_push ? -EAGAIN : 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002117}
2118
Al Virocc4191d2008-03-29 03:08:48 +00002119extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08002120 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122/**
2123 * job_control - check job control
2124 * @tty: tty
2125 * @file: file handle
2126 *
2127 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08002128 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07002130 *
Peter Hurley01a5e442013-03-06 08:38:20 -05002131 * Locking: redirected write test is safe
2132 * current->signal->tty check is safe
2133 * ctrl_lock to safely reference tty->pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 */
Alan Cox4edf1822008-02-08 04:18:44 -08002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136static int job_control(struct tty_struct *tty, struct file *file)
2137{
2138 /* Job control check -- must be done at start and after
2139 every sleep (POSIX.1 7.1.1.4). */
2140 /* NOTE: not yet done after every sleep pending a thorough
2141 check of the logic of this change. -- jlc */
2142 /* don't stop on /dev/console */
Peter Hurley2812d9e2015-10-10 20:28:42 -04002143 if (file->f_op->write == redirected_tty_write)
Peter Hurley01a5e442013-03-06 08:38:20 -05002144 return 0;
2145
Peter Hurley2812d9e2015-10-10 20:28:42 -04002146 return __tty_check_change(tty, SIGTTIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
Alan Cox4edf1822008-02-08 04:18:44 -08002148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150/**
Alan Cox11a96d12008-10-13 10:46:24 +01002151 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 * @tty: tty device
2153 * @file: file object
2154 * @buf: userspace buffer pointer
2155 * @nr: size of I/O
2156 *
2157 * Perform reads for the line discipline. We are guaranteed that the
2158 * line discipline will not be closed under us but we may get multiple
2159 * parallel readers and must handle this ourselves. We may also get
2160 * a hangup. Always called in user context, may sleep.
2161 *
2162 * This code must be sure never to sleep through a hangup.
Peter Hurley6d76bd22013-06-15 09:14:26 -04002163 *
2164 * n_tty_read()/consumer path:
2165 * claims non-exclusive termios_rwsem
2166 * publishes read_tail
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 */
Alan Cox4edf1822008-02-08 04:18:44 -08002168
Alan Cox11a96d12008-10-13 10:46:24 +01002169static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 unsigned char __user *buf, size_t nr)
2171{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002172 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 unsigned char __user *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002174 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Peter Hurley1a486322015-04-13 13:24:34 -04002175 int c, done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 int minimum, time;
2177 ssize_t retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 long timeout;
Alan Cox04f378b2008-04-30 00:53:29 -07002179 int packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002180 size_t tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08002183 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08002185
Peter Hurleyaefceaf2013-08-11 08:04:23 -04002186 /*
2187 * Internal serialization of reads.
2188 */
2189 if (file->f_flags & O_NONBLOCK) {
2190 if (!mutex_trylock(&ldata->atomic_read_lock))
2191 return -EAGAIN;
2192 } else {
2193 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
2194 return -ERESTARTSYS;
2195 }
2196
Peter Hurley9356b532013-06-15 09:14:24 -04002197 down_read(&tty->termios_rwsem);
2198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 minimum = time = 0;
2200 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002201 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 minimum = MIN_CHAR(tty);
2203 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04002204 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if (time)
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002206 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 else if (!waitqueue_active(&tty->read_wait) ||
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002208 (ldata->minimum_to_wake > minimum))
2209 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04002211 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002212 ldata->minimum_to_wake = minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 }
2214 }
2215
Alan Cox04f378b2008-04-30 00:53:29 -07002216 packet = tty->packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002217 tail = ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
2219 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 while (nr) {
2221 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07002222 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 unsigned char cs;
2224 if (b != buf)
2225 break;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002226 spin_lock_irq(&tty->link->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 cs = tty->link->ctrl_status;
2228 tty->link->ctrl_status = 0;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002229 spin_unlock_irq(&tty->link->ctrl_lock);
Miloslav Trmac522ed772007-07-15 23:40:56 -07002230 if (tty_put_user(tty, cs, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 retval = -EFAULT;
2232 b--;
2233 break;
2234 }
2235 nr--;
2236 break;
2237 }
Alan Cox4edf1822008-02-08 04:18:44 -08002238
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002239 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 ((minimum - (b - buf)) >= 1))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002241 ldata->minimum_to_wake = (minimum - (b - buf));
Alan Cox4edf1822008-02-08 04:18:44 -08002242
Peter Hurley1a486322015-04-13 13:24:34 -04002243 done = check_other_done(tty);
2244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if (!input_available_p(tty, 0)) {
Peter Hurley1a486322015-04-13 13:24:34 -04002246 if (done) {
Peter Hurley52bce7f2014-11-05 12:13:05 -05002247 retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 break;
2249 }
Peter Hurley52bce7f2014-11-05 12:13:05 -05002250 if (tty_hung_up_p(file))
2251 break;
2252 if (!timeout)
2253 break;
2254 if (file->f_flags & O_NONBLOCK) {
2255 retval = -EAGAIN;
2256 break;
2257 }
2258 if (signal_pending(current)) {
2259 retval = -ERESTARTSYS;
2260 break;
2261 }
Peter Hurley52bce7f2014-11-05 12:13:05 -05002262 up_read(&tty->termios_rwsem);
2263
Linus Torvalds37da7bb2014-12-14 15:23:32 -08002264 timeout = wait_woken(&wait, TASK_INTERRUPTIBLE,
2265 timeout);
Peter Hurley52bce7f2014-11-05 12:13:05 -05002266
2267 down_read(&tty->termios_rwsem);
2268 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 }
2270
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002271 if (ldata->icanon && !L_EXTPROC(tty)) {
Peter Hurley32f13522013-06-15 09:14:17 -04002272 retval = canon_copy_from_read_buf(tty, &b, &nr);
Peter Hurley40d5e092013-06-15 10:21:17 -04002273 if (retval == -EAGAIN) {
2274 retval = 0;
2275 continue;
2276 } else if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 break;
2278 } else {
2279 int uncopied;
Peter Hurley95ea90d2014-10-16 15:33:30 -04002280
2281 /* Deal with packet mode. */
2282 if (packet && b == buf) {
2283 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
2284 retval = -EFAULT;
2285 b--;
2286 break;
2287 }
2288 nr--;
2289 }
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 uncopied = copy_from_read_buf(tty, &b, &nr);
2292 uncopied += copy_from_read_buf(tty, &b, &nr);
2293 if (uncopied) {
2294 retval = -EFAULT;
2295 break;
2296 }
2297 }
2298
Peter Hurley6367ca72013-06-15 09:14:33 -04002299 n_tty_check_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
2301 if (b - buf >= minimum)
2302 break;
2303 if (time)
2304 timeout = time;
2305 }
Peter Hurley2c5dc462015-01-16 15:05:34 -05002306 if (tail != ldata->read_tail)
2307 n_tty_kick_worker(tty);
Peter Hurley42458f42013-11-07 13:59:46 -05002308 up_read(&tty->termios_rwsem);
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 remove_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (!waitqueue_active(&tty->read_wait))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002312 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Peter Hurleyaebf04532013-11-07 14:01:57 -05002314 mutex_unlock(&ldata->atomic_read_lock);
2315
Peter Hurley40d5e092013-06-15 10:21:17 -04002316 if (b - buf)
2317 retval = b - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 return retval;
2320}
2321
2322/**
Alan Cox11a96d12008-10-13 10:46:24 +01002323 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 * @tty: tty device
2325 * @file: file object
2326 * @buf: userspace buffer pointer
2327 * @nr: size of I/O
2328 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002329 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002331 * and other such events. Since the receive code will echo characters,
2332 * thus calling driver write methods, the output_lock is used in
2333 * the output processing functions called here as well as in the
2334 * echo processing function to protect the column state and space
2335 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 *
2337 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002338 *
2339 * Locking: output_lock to protect column state and space left
2340 * (note that the process_output*() functions take this
2341 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 */
Alan Cox4edf1822008-02-08 04:18:44 -08002343
Alan Cox11a96d12008-10-13 10:46:24 +01002344static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002345 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
2347 const unsigned char *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002348 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 int c;
2350 ssize_t retval = 0;
2351
2352 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2353 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2354 retval = tty_check_change(tty);
2355 if (retval)
2356 return retval;
2357 }
2358
Peter Hurley9356b532013-06-15 09:14:24 -04002359 down_read(&tty->termios_rwsem);
2360
Joe Petersona88a69c2009-01-02 13:40:53 +00002361 /* Write out any echoed characters that are still pending */
2362 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 add_wait_queue(&tty->write_wait, &wait);
2365 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 if (signal_pending(current)) {
2367 retval = -ERESTARTSYS;
2368 break;
2369 }
2370 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2371 retval = -EIO;
2372 break;
2373 }
Peter Hurley582f5592013-05-17 12:49:48 -04002374 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002376 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 if (num < 0) {
2378 if (num == -EAGAIN)
2379 break;
2380 retval = num;
2381 goto break_out;
2382 }
2383 b += num;
2384 nr -= num;
2385 if (nr == 0)
2386 break;
2387 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002388 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 break;
2390 b++; nr--;
2391 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002392 if (tty->ops->flush_chars)
2393 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 } else {
Peter Hurley42910862014-05-03 14:04:59 +02002395 struct n_tty_data *ldata = tty->disc_data;
2396
Roman Zippeld6afe272005-07-07 17:56:55 -07002397 while (nr > 0) {
Peter Hurley42910862014-05-03 14:04:59 +02002398 mutex_lock(&ldata->output_lock);
Alan Coxf34d7a52008-04-30 00:54:13 -07002399 c = tty->ops->write(tty, b, nr);
Peter Hurley42910862014-05-03 14:04:59 +02002400 mutex_unlock(&ldata->output_lock);
Roman Zippeld6afe272005-07-07 17:56:55 -07002401 if (c < 0) {
2402 retval = c;
2403 goto break_out;
2404 }
2405 if (!c)
2406 break;
2407 b += c;
2408 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
2411 if (!nr)
2412 break;
2413 if (file->f_flags & O_NONBLOCK) {
2414 retval = -EAGAIN;
2415 break;
2416 }
Peter Hurley9356b532013-06-15 09:14:24 -04002417 up_read(&tty->termios_rwsem);
2418
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002419 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Peter Hurley9356b532013-06-15 09:14:24 -04002420
2421 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 }
2423break_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 remove_wait_queue(&tty->write_wait, &wait);
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002425 if (b - buf != nr && tty->fasync)
2426 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002427 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 return (b - buf) ? b - buf : retval;
2429}
2430
2431/**
Alan Cox11a96d12008-10-13 10:46:24 +01002432 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 * @tty: terminal device
2434 * @file: file accessing it
2435 * @wait: poll table
2436 *
2437 * Called when the line discipline is asked to poll() for data or
2438 * for special events. This code is not serialized with respect to
2439 * other events save open/close.
2440 *
2441 * This code must be sure never to sleep through a hangup.
2442 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 */
Alan Cox4edf1822008-02-08 04:18:44 -08002444
Alan Cox11a96d12008-10-13 10:46:24 +01002445static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002446 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002448 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 unsigned int mask = 0;
2450
2451 poll_wait(file, &tty->read_wait, wait);
2452 poll_wait(file, &tty->write_wait, wait);
Peter Hurley1a486322015-04-13 13:24:34 -04002453 if (check_other_done(tty))
2454 mask |= POLLHUP;
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002455 if (input_available_p(tty, 1))
2456 mask |= POLLIN | POLLRDNORM;
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002457 if (tty->packet && tty->link->ctrl_status)
2458 mask |= POLLPRI | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 if (tty_hung_up_p(file))
2460 mask |= POLLHUP;
2461 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2462 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002463 ldata->minimum_to_wake = MIN_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 else
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002465 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002467 if (tty->ops->write && !tty_is_writelocked(tty) &&
2468 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2469 tty_write_room(tty) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 mask |= POLLOUT | POLLWRNORM;
2471 return mask;
2472}
2473
Jiri Slaby57c94122012-10-18 22:26:43 +02002474static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002475{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002476 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002477
Peter Hurleya73d3d62013-06-15 09:14:25 -04002478 if (ldata->canon_head == ldata->read_tail)
Alan Cox47afa7a2008-10-13 10:44:17 +01002479 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002480 head = ldata->canon_head;
2481 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002482 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002483 /* Skip EOF-chars.. */
2484 while (head != tail) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002485 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2486 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002487 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002488 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002489 }
2490 return nr;
2491}
2492
2493static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2494 unsigned int cmd, unsigned long arg)
2495{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002496 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002497 int retval;
2498
2499 switch (cmd) {
2500 case TIOCOUTQ:
2501 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2502 case TIOCINQ:
Peter Hurley6d76bd22013-06-15 09:14:26 -04002503 down_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002504 if (L_ICANON(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002505 retval = inq_canon(ldata);
Peter Hurley6d76bd22013-06-15 09:14:26 -04002506 else
2507 retval = read_cnt(ldata);
2508 up_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002509 return put_user(retval, (unsigned int __user *) arg);
2510 default:
2511 return n_tty_ioctl_helper(tty, file, cmd, arg);
2512 }
2513}
2514
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002515static void n_tty_fasync(struct tty_struct *tty, int on)
2516{
2517 struct n_tty_data *ldata = tty->disc_data;
2518
2519 if (!waitqueue_active(&tty->read_wait)) {
2520 if (on)
2521 ldata->minimum_to_wake = 1;
2522 else if (!tty->fasync)
2523 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2524 }
2525}
2526
Alan Coxa352def2008-07-16 21:53:12 +01002527struct tty_ldisc_ops tty_ldisc_N_TTY = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002528 .magic = TTY_LDISC_MAGIC,
2529 .name = "n_tty",
2530 .open = n_tty_open,
2531 .close = n_tty_close,
2532 .flush_buffer = n_tty_flush_buffer,
2533 .chars_in_buffer = n_tty_chars_in_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002534 .read = n_tty_read,
2535 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002536 .ioctl = n_tty_ioctl,
2537 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002538 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002539 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002540 .write_wakeup = n_tty_write_wakeup,
2541 .fasync = n_tty_fasync,
Peter Hurley24a89d12013-06-15 09:14:15 -04002542 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002544
2545/**
2546 * n_tty_inherit_ops - inherit N_TTY methods
2547 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2548 *
George Spelvin593fb1ae42013-02-12 02:00:43 -05002549 * Enables a 'subclass' line discipline to 'inherit' N_TTY
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002550 * methods.
2551 */
2552
2553void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2554{
2555 *ops = tty_ldisc_N_TTY;
2556 ops->owner = NULL;
2557 ops->refcount = ops->flags = 0;
2558}
2559EXPORT_SYMBOL_GPL(n_tty_inherit_ops);