blob: b09023b071696c2a5d25e003dcff798b42235602 [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
172 tty_audit_add_data(tty, to, n, ldata->icanon);
173 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 Hurleyf0f947c2013-06-15 09:14:36 -0400204 queue_work(system_unbound_wq, &tty->port->buf.work);
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);
Peter Hurley6c677162013-12-02 14:24:46 -05001182 if (waitqueue_active(&tty->read_wait))
Peter Hurley57087d52014-08-07 07:14:10 -04001183 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
1186/**
1187 * n_tty_receive_overrun - handle overrun reporting
1188 * @tty: terminal
1189 *
1190 * Data arrived faster than we could process it. While the tty
1191 * driver has flagged this the bits that were missed are gone
1192 * forever.
1193 *
1194 * Called from the receive_buf path so single threaded. Does not
1195 * need locking as num_overrun and overrun_time are function
1196 * private.
1197 */
Alan Cox4edf1822008-02-08 04:18:44 -08001198
Peter Hurley4b293492013-07-24 08:29:55 -04001199static void n_tty_receive_overrun(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001201 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001203 ldata->num_overrun++;
1204 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1205 time_after(ldata->overrun_time, jiffies)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 printk(KERN_WARNING "%s: %d input overrun(s)\n",
Rasmus Villemoes429b4742015-03-31 15:55:59 +02001207 tty_name(tty),
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001208 ldata->num_overrun);
1209 ldata->overrun_time = jiffies;
1210 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
1212}
1213
1214/**
1215 * n_tty_receive_parity_error - error notifier
1216 * @tty: terminal device
1217 * @c: character
1218 *
1219 * Process a parity error and queue the right data to indicate
Peter Hurley6d76bd22013-06-15 09:14:26 -04001220 * the error case if necessary.
1221 *
1222 * n_tty_receive_buf()/producer path:
1223 * caller holds non-exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 */
Peter Hurley4b293492013-07-24 08:29:55 -04001225static void n_tty_receive_parity_error(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Jiri Slaby57c94122012-10-18 22:26:43 +02001227 struct n_tty_data *ldata = tty->disc_data;
1228
Peter Hurley66528f92014-06-16 08:10:42 -04001229 if (I_INPCK(tty)) {
1230 if (I_IGNPAR(tty))
1231 return;
1232 if (I_PARMRK(tty)) {
1233 put_tty_queue('\377', ldata);
1234 put_tty_queue('\0', ldata);
1235 put_tty_queue(c, ldata);
1236 } else
1237 put_tty_queue('\0', ldata);
1238 } else
Jiri Slaby57c94122012-10-18 22:26:43 +02001239 put_tty_queue(c, ldata);
Peter Hurley6c677162013-12-02 14:24:46 -05001240 if (waitqueue_active(&tty->read_wait))
Peter Hurley57087d52014-08-07 07:14:10 -04001241 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001244static void
1245n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c)
1246{
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001247 isig(signal, tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001248 if (I_IXON(tty))
1249 start_tty(tty);
1250 if (L_ECHO(tty)) {
1251 echo_char(c, tty);
1252 commit_echoes(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001253 } else
1254 process_echoes(tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001255 return;
1256}
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258/**
1259 * n_tty_receive_char - perform processing
1260 * @tty: terminal device
1261 * @c: character
1262 *
1263 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001264 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 * driver above.
Peter Hurley6d76bd22013-06-15 09:14:26 -04001266 *
1267 * n_tty_receive_buf()/producer path:
1268 * caller holds non-exclusive termios_rwsem
1269 * publishes canon_head if canonical mode is active
Peter Hurleye60d27c2013-07-24 08:29:56 -04001270 *
1271 * Returns 1 if LNEXT was received, else returns 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 */
1273
Peter Hurleye60d27c2013-07-24 08:29:56 -04001274static int
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001275n_tty_receive_char_special(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001277 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (I_IXON(tty)) {
1280 if (c == START_CHAR(tty)) {
1281 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001282 process_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285 if (c == STOP_CHAR(tty)) {
1286 stop_tty(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
1289 }
Joe Peterson575537b32008-04-30 00:53:30 -07001290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (L_ISIG(tty)) {
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001292 if (c == INTR_CHAR(tty)) {
1293 n_tty_receive_signal_char(tty, SIGINT, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001294 return 0;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001295 } else if (c == QUIT_CHAR(tty)) {
1296 n_tty_receive_signal_char(tty, SIGQUIT, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001297 return 0;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001298 } else if (c == SUSP_CHAR(tty)) {
1299 n_tty_receive_signal_char(tty, SIGTSTP, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001300 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302 }
Joe Peterson575537b32008-04-30 00:53:30 -07001303
Peter Hurley855df3c2013-07-24 08:29:50 -04001304 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1305 start_tty(tty);
1306 process_echoes(tty);
1307 }
1308
Joe Peterson575537b32008-04-30 00:53:30 -07001309 if (c == '\r') {
1310 if (I_IGNCR(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001311 return 0;
Joe Peterson575537b32008-04-30 00:53:30 -07001312 if (I_ICRNL(tty))
1313 c = '\n';
1314 } else if (c == '\n' && I_INLCR(tty))
1315 c = '\r';
1316
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001317 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1319 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1320 eraser(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001321 commit_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
1324 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001325 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001327 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001329 echo_char_raw('^', ldata);
1330 echo_char_raw('\b', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001331 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 }
1333 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001334 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001336 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001337 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Jiri Slaby57c94122012-10-18 22:26:43 +02001339 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001341 echo_char_raw('\n', ldata);
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001342 while (tail != ldata->read_head) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001343 echo_char(read_buf(ldata, tail), tty);
1344 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001346 commit_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
1349 if (c == '\n') {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001350 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001351 echo_char_raw('\n', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001352 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
1354 goto handle_newline;
1355 }
1356 if (c == EOF_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 c = __DISABLED_CHAR;
1358 goto handle_newline;
1359 }
1360 if ((c == EOL_CHAR(tty)) ||
1361 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1362 /*
1363 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1364 */
1365 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001367 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001368 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 echo_char(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001370 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
1372 /*
1373 * XXX does PARMRK doubling happen for
1374 * EOL_CHAR and EOL2_CHAR?
1375 */
Peter Hurley001ba922013-12-02 14:24:44 -05001376 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001377 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Alan Cox4edf1822008-02-08 04:18:44 -08001379handle_newline:
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001380 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Peter Hurley6d76bd22013-06-15 09:14:26 -04001381 put_tty_queue(c, ldata);
Peter Hurley70aca712015-01-16 15:05:37 -05001382 smp_store_release(&ldata->canon_head, ldata->read_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001384 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387 }
Alan Cox4edf1822008-02-08 04:18:44 -08001388
Joe Petersonacc71bb2009-01-02 13:43:32 +00001389 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001390 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001392 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 else {
1394 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001395 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001396 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 echo_char(c, tty);
1398 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001399 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401
Peter Hurley001ba922013-12-02 14:24:44 -05001402 /* PARMRK doubling check */
1403 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001404 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Jiri Slaby57c94122012-10-18 22:26:43 +02001406 put_tty_queue(c, ldata);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001407 return 0;
Alan Cox4edf1822008-02-08 04:18:44 -08001408}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Peter Hurleye60d27c2013-07-24 08:29:56 -04001410static inline void
1411n_tty_receive_char_inline(struct tty_struct *tty, unsigned char c)
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001412{
1413 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001414
Peter Hurleye60d27c2013-07-24 08:29:56 -04001415 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1416 start_tty(tty);
1417 process_echoes(tty);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001418 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001419 if (L_ECHO(tty)) {
1420 finish_erasing(ldata);
1421 /* Record the column of first canon char. */
1422 if (ldata->canon_head == ldata->read_head)
1423 echo_set_canon_col(ldata);
1424 echo_char(c, tty);
1425 commit_echoes(tty);
1426 }
Peter Hurley001ba922013-12-02 14:24:44 -05001427 /* PARMRK doubling check */
1428 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001429 put_tty_queue(c, ldata);
1430 put_tty_queue(c, ldata);
1431}
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001432
Peter Hurleyeb3e4662013-12-02 14:24:42 -05001433static void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
Peter Hurleye60d27c2013-07-24 08:29:56 -04001434{
1435 n_tty_receive_char_inline(tty, c);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001436}
1437
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001438static inline void
Peter Hurley7de971b2013-07-24 08:29:53 -04001439n_tty_receive_char_fast(struct tty_struct *tty, unsigned char c)
1440{
1441 struct n_tty_data *ldata = tty->disc_data;
1442
Peter Hurleye60d27c2013-07-24 08:29:56 -04001443 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1444 start_tty(tty);
1445 process_echoes(tty);
Peter Hurley7de971b2013-07-24 08:29:53 -04001446 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001447 if (L_ECHO(tty)) {
1448 finish_erasing(ldata);
1449 /* Record the column of first canon char. */
1450 if (ldata->canon_head == ldata->read_head)
1451 echo_set_canon_col(ldata);
1452 echo_char(c, tty);
1453 commit_echoes(tty);
1454 }
1455 put_tty_queue(c, ldata);
Peter Hurley7de971b2013-07-24 08:29:53 -04001456}
1457
Peter Hurley8dc4b252013-12-02 14:24:43 -05001458static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001459{
1460 if (I_ISTRIP(tty))
1461 c &= 0x7f;
1462 if (I_IUCLC(tty) && L_IEXTEN(tty))
1463 c = tolower(c);
1464
1465 if (I_IXON(tty)) {
1466 if (c == STOP_CHAR(tty))
1467 stop_tty(tty);
1468 else if (c == START_CHAR(tty) ||
1469 (tty->stopped && !tty->flow_stopped && I_IXANY(tty) &&
1470 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) &&
1471 c != SUSP_CHAR(tty))) {
1472 start_tty(tty);
1473 process_echoes(tty);
1474 }
1475 }
1476}
1477
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001478static void
1479n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)
1480{
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001481 switch (flag) {
1482 case TTY_BREAK:
1483 n_tty_receive_break(tty);
1484 break;
1485 case TTY_PARITY:
1486 case TTY_FRAME:
1487 n_tty_receive_parity_error(tty, c);
1488 break;
1489 case TTY_OVERRUN:
1490 n_tty_receive_overrun(tty);
1491 break;
1492 default:
1493 printk(KERN_ERR "%s: unknown flag %d\n",
Rasmus Villemoes429b4742015-03-31 15:55:59 +02001494 tty_name(tty), flag);
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001495 break;
1496 }
1497}
1498
Peter Hurleye60d27c2013-07-24 08:29:56 -04001499static void
1500n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag)
1501{
1502 struct n_tty_data *ldata = tty->disc_data;
1503
1504 ldata->lnext = 0;
1505 if (likely(flag == TTY_NORMAL)) {
1506 if (I_ISTRIP(tty))
1507 c &= 0x7f;
1508 if (I_IUCLC(tty) && L_IEXTEN(tty))
1509 c = tolower(c);
1510 n_tty_receive_char(tty, c);
1511 } else
1512 n_tty_receive_char_flagged(tty, c, flag);
1513}
1514
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001515static void
1516n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp,
1517 char *fp, int count)
1518{
1519 struct n_tty_data *ldata = tty->disc_data;
1520 size_t n, head;
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 cp += n;
1527 count -= n;
1528
1529 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001530 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001531 memcpy(read_buf_addr(ldata, head), cp, n);
1532 ldata->read_head += n;
1533}
1534
Peter Hurley554117b2013-06-15 10:21:25 -04001535static void
1536n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp,
1537 char *fp, int count)
1538{
1539 struct n_tty_data *ldata = tty->disc_data;
1540 char flag = TTY_NORMAL;
1541
1542 while (count--) {
1543 if (fp)
1544 flag = *fp++;
1545 if (likely(flag == TTY_NORMAL))
1546 put_tty_queue(*cp++, ldata);
1547 else
1548 n_tty_receive_char_flagged(tty, *cp++, flag);
1549 }
1550}
1551
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001552static void
1553n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
1554 char *fp, int count)
1555{
1556 char flag = TTY_NORMAL;
1557
1558 while (count--) {
1559 if (fp)
1560 flag = *fp++;
1561 if (likely(flag == TTY_NORMAL))
1562 n_tty_receive_char_closing(tty, *cp++);
1563 else
1564 n_tty_receive_char_flagged(tty, *cp++, flag);
1565 }
1566}
1567
Peter Hurley7d88d632013-07-24 08:29:49 -04001568static void
1569n_tty_receive_buf_standard(struct tty_struct *tty, const unsigned char *cp,
Peter Hurley6baad002013-07-24 08:29:52 -04001570 char *fp, int count)
1571{
1572 struct n_tty_data *ldata = tty->disc_data;
1573 char flag = TTY_NORMAL;
1574
1575 while (count--) {
1576 if (fp)
1577 flag = *fp++;
1578 if (likely(flag == TTY_NORMAL)) {
1579 unsigned char c = *cp++;
1580
1581 if (I_ISTRIP(tty))
1582 c &= 0x7f;
1583 if (I_IUCLC(tty) && L_IEXTEN(tty))
1584 c = tolower(c);
1585 if (L_EXTPROC(tty)) {
1586 put_tty_queue(c, ldata);
1587 continue;
1588 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001589 if (!test_bit(c, ldata->char_map))
1590 n_tty_receive_char_inline(tty, c);
1591 else if (n_tty_receive_char_special(tty, c) && count) {
1592 if (fp)
1593 flag = *fp++;
1594 n_tty_receive_char_lnext(tty, *cp++, flag);
1595 count--;
1596 }
Peter Hurley6baad002013-07-24 08:29:52 -04001597 } else
1598 n_tty_receive_char_flagged(tty, *cp++, flag);
1599 }
1600}
1601
1602static void
1603n_tty_receive_buf_fast(struct tty_struct *tty, const unsigned char *cp,
1604 char *fp, int count)
Peter Hurley7d88d632013-07-24 08:29:49 -04001605{
Peter Hurleye60d27c2013-07-24 08:29:56 -04001606 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley7d88d632013-07-24 08:29:49 -04001607 char flag = TTY_NORMAL;
1608
1609 while (count--) {
1610 if (fp)
1611 flag = *fp++;
Peter Hurleye60d27c2013-07-24 08:29:56 -04001612 if (likely(flag == TTY_NORMAL)) {
1613 unsigned char c = *cp++;
1614
1615 if (!test_bit(c, ldata->char_map))
1616 n_tty_receive_char_fast(tty, c);
1617 else if (n_tty_receive_char_special(tty, c) && count) {
1618 if (fp)
1619 flag = *fp++;
1620 n_tty_receive_char_lnext(tty, *cp++, flag);
1621 count--;
1622 }
1623 } else
Peter Hurley7d88d632013-07-24 08:29:49 -04001624 n_tty_receive_char_flagged(tty, *cp++, flag);
1625 }
1626}
1627
Peter Hurley24a89d12013-06-15 09:14:15 -04001628static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1629 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001631 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001632 bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001634 if (ldata->real_raw)
1635 n_tty_receive_buf_real_raw(tty, cp, fp, count);
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001636 else if (ldata->raw || (L_EXTPROC(tty) && !preops))
Peter Hurley554117b2013-06-15 10:21:25 -04001637 n_tty_receive_buf_raw(tty, cp, fp, count);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001638 else if (tty->closing && !L_EXTPROC(tty))
1639 n_tty_receive_buf_closing(tty, cp, fp, count);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001640 else {
Peter Hurleye60d27c2013-07-24 08:29:56 -04001641 if (ldata->lnext) {
1642 char flag = TTY_NORMAL;
1643
1644 if (fp)
1645 flag = *fp++;
1646 n_tty_receive_char_lnext(tty, *cp++, flag);
1647 count--;
1648 }
1649
Peter Hurley7de971b2013-07-24 08:29:53 -04001650 if (!preops && !I_PARMRK(tty))
Peter Hurley6baad002013-07-24 08:29:52 -04001651 n_tty_receive_buf_fast(tty, cp, fp, count);
1652 else
1653 n_tty_receive_buf_standard(tty, cp, fp, count);
Peter Hurleycbfd0342013-06-15 10:04:26 -04001654
1655 flush_echoes(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001656 if (tty->ops->flush_chars)
1657 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
Peter Hurley70aca712015-01-16 15:05:37 -05001660 if (ldata->icanon && !L_EXTPROC(tty))
1661 return;
1662
1663 /* publish read_head to consumer */
1664 smp_store_release(&ldata->commit_head, ldata->read_head);
1665
1666 if ((read_cnt(ldata) >= ldata->minimum_to_wake) || L_EXTPROC(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001668 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670}
1671
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001672/**
1673 * n_tty_receive_buf_common - process input
1674 * @tty: device to receive input
1675 * @cp: input chars
1676 * @fp: flags for each char (if NULL, all chars are TTY_NORMAL)
1677 * @count: number of input chars in @cp
1678 *
1679 * Called by the terminal driver when a block of characters has
1680 * been received. This function must be called from soft contexts
1681 * not from interrupt context. The driver is responsible for making
1682 * calls one at a time and in order (or using flush_to_ldisc)
1683 *
1684 * Returns the # of input chars from @cp which were processed.
1685 *
1686 * In canonical mode, the maximum line length is 4096 chars (including
1687 * the line termination char); lines longer than 4096 chars are
1688 * truncated. After 4095 chars, input data is still processed but
1689 * not stored. Overflow processing ensures the tty can always
1690 * receive more input until at least one line can be read.
1691 *
1692 * In non-canonical mode, the read buffer will only accept 4095 chars;
1693 * this provides the necessary space for a newline char if the input
1694 * mode is switched to canonical.
1695 *
1696 * Note it is possible for the read buffer to _contain_ 4096 chars
1697 * in non-canonical mode: the read buffer could already contain the
1698 * maximum canon line of 4096 chars when the mode is switched to
1699 * non-canonical.
1700 *
1701 * n_tty_receive_buf()/producer path:
1702 * claims non-exclusive termios_rwsem
1703 * publishes commit_head or canon_head
1704 */
Peter Hurley5c32d122013-12-02 14:24:41 -05001705static int
1706n_tty_receive_buf_common(struct tty_struct *tty, const unsigned char *cp,
1707 char *fp, int count, int flow)
Peter Hurley24a89d12013-06-15 09:14:15 -04001708{
1709 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001710 int room, n, rcvd = 0, overflow;
Peter Hurley24a89d12013-06-15 09:14:15 -04001711
Peter Hurley9356b532013-06-15 09:14:24 -04001712 down_read(&tty->termios_rwsem);
1713
Peter Hurley19e2ad62013-07-24 08:29:54 -04001714 while (1) {
Peter Hurley70aca712015-01-16 15:05:37 -05001715 /*
Peter Hurley06c49f92015-01-16 15:05:38 -05001716 * When PARMRK is set, each input char may take up to 3 chars
1717 * in the read buf; reduce the buffer space avail by 3x
Peter Hurley70aca712015-01-16 15:05:37 -05001718 *
1719 * If we are doing input canonicalization, and there are no
1720 * pending newlines, let characters through without limit, so
1721 * that erase characters will be handled. Other excess
1722 * characters will be beeped.
1723 *
1724 * paired with store in *_copy_from_read_buf() -- guarantees
1725 * the consumer has loaded the data in read_buf up to the new
1726 * read_tail (so this producer will not overwrite unread data)
1727 */
1728 size_t tail = smp_load_acquire(&ldata->read_tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001729
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001730 room = N_TTY_BUF_SIZE - (ldata->read_head - tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001731 if (I_PARMRK(tty))
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001732 room = (room + 2) / 3;
1733 room--;
1734 if (room <= 0) {
1735 overflow = ldata->icanon && ldata->canon_head == tail;
1736 if (overflow && room < 0)
1737 ldata->read_head--;
1738 room = overflow;
1739 ldata->no_room = flow && !room;
1740 } else
1741 overflow = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05001742
Peter Hurley19e2ad62013-07-24 08:29:54 -04001743 n = min(count, room);
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001744 if (!n)
Peter Hurley19e2ad62013-07-24 08:29:54 -04001745 break;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001746
1747 /* ignore parity errors if handling overflow */
1748 if (!overflow || !fp || *fp != TTY_PARITY)
1749 __receive_buf(tty, cp, fp, n);
1750
Peter Hurley19e2ad62013-07-24 08:29:54 -04001751 cp += n;
1752 if (fp)
1753 fp += n;
1754 count -= n;
1755 rcvd += n;
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001756 }
Peter Hurley24a89d12013-06-15 09:14:15 -04001757
Peter Hurley19e2ad62013-07-24 08:29:54 -04001758 tty->receive_room = room;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001759
1760 /* Unthrottle if handling overflow on pty */
1761 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
1762 if (overflow) {
1763 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
1764 tty_unthrottle_safe(tty);
1765 __tty_set_flow_change(tty, 0);
1766 }
1767 } else
1768 n_tty_check_throttle(tty);
1769
Peter Hurley9356b532013-06-15 09:14:24 -04001770 up_read(&tty->termios_rwsem);
1771
Peter Hurley19e2ad62013-07-24 08:29:54 -04001772 return rcvd;
Peter Hurley24a89d12013-06-15 09:14:15 -04001773}
1774
Peter Hurley5c32d122013-12-02 14:24:41 -05001775static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1776 char *fp, int count)
1777{
1778 n_tty_receive_buf_common(tty, cp, fp, count, 0);
1779}
1780
1781static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1782 char *fp, int count)
1783{
1784 return n_tty_receive_buf_common(tty, cp, fp, count, 1);
1785}
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787int is_ignored(int sig)
1788{
1789 return (sigismember(&current->blocked, sig) ||
Alan Cox4edf1822008-02-08 04:18:44 -08001790 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792
1793/**
1794 * n_tty_set_termios - termios data changed
1795 * @tty: terminal
1796 * @old: previous data
1797 *
1798 * Called by the tty layer when the user changes termios flags so
1799 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001800 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 * guaranteed that this function will not be re-entered or in progress
1802 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001803 *
Peter Hurley6a1c0682013-06-15 09:14:23 -04001804 * Locking: Caller holds tty->termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 */
Alan Cox4edf1822008-02-08 04:18:44 -08001806
1807static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001809 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001810
Peter Hurleyc786f742013-09-17 12:53:35 -04001811 if (!old || (old->c_lflag ^ tty->termios.c_lflag) & ICANON) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001812 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -05001813 ldata->line_start = ldata->read_tail;
1814 if (!L_ICANON(tty) || !read_cnt(ldata)) {
1815 ldata->canon_head = ldata->read_tail;
1816 ldata->push = 0;
1817 } else {
1818 set_bit((ldata->read_head - 1) & (N_TTY_BUF_SIZE - 1),
1819 ldata->read_flags);
1820 ldata->canon_head = ldata->read_head;
1821 ldata->push = 1;
1822 }
Peter Hurley70aca712015-01-16 15:05:37 -05001823 ldata->commit_head = ldata->read_head;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001824 ldata->erasing = 0;
Peter Hurley6f9b0282013-06-15 09:14:27 -04001825 ldata->lnext = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001826 }
1827
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001828 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1831 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1832 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1833 I_PARMRK(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001834 bitmap_zero(ldata->char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 if (I_IGNCR(tty) || I_ICRNL(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001837 set_bit('\r', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 if (I_INLCR(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001839 set_bit('\n', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841 if (L_ICANON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001842 set_bit(ERASE_CHAR(tty), ldata->char_map);
1843 set_bit(KILL_CHAR(tty), ldata->char_map);
1844 set_bit(EOF_CHAR(tty), ldata->char_map);
1845 set_bit('\n', ldata->char_map);
1846 set_bit(EOL_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 if (L_IEXTEN(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001848 set_bit(WERASE_CHAR(tty), ldata->char_map);
1849 set_bit(LNEXT_CHAR(tty), ldata->char_map);
1850 set_bit(EOL2_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 if (L_ECHO(tty))
1852 set_bit(REPRINT_CHAR(tty),
Peter Hurley1bb9d562013-06-15 10:21:20 -04001853 ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
1855 }
1856 if (I_IXON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001857 set_bit(START_CHAR(tty), ldata->char_map);
1858 set_bit(STOP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 }
1860 if (L_ISIG(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001861 set_bit(INTR_CHAR(tty), ldata->char_map);
1862 set_bit(QUIT_CHAR(tty), ldata->char_map);
1863 set_bit(SUSP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
Peter Hurley1bb9d562013-06-15 10:21:20 -04001865 clear_bit(__DISABLED_CHAR, ldata->char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001866 ldata->raw = 0;
1867 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001869 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1871 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1872 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001873 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001875 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001877 /*
1878 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1879 * been stopped by STOP_CHAR(tty) before it.
1880 */
Peter Hurleye2613be2014-02-11 16:34:55 -05001881 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
Wang YanQingdab73b42013-05-09 14:16:47 +08001882 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001883 process_echoes(tty);
1884 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001885
Alan Coxf34d7a52008-04-30 00:54:13 -07001886 /* The termios change make the tty ready for I/O */
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001887 wake_up_interruptible(&tty->write_wait);
1888 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889}
1890
1891/**
1892 * n_tty_close - close the ldisc for this tty
1893 * @tty: device
1894 *
Alan Cox4edf1822008-02-08 04:18:44 -08001895 * Called from the terminal layer when this line discipline is
1896 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 * discipline change. The function will not be called while other
1898 * ldisc methods are in progress.
1899 */
Alan Cox4edf1822008-02-08 04:18:44 -08001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901static void n_tty_close(struct tty_struct *tty)
1902{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001903 struct n_tty_data *ldata = tty->disc_data;
1904
Peter Hurley79901312013-03-11 16:44:23 -04001905 if (tty->link)
1906 n_tty_packet_mode_flush(tty);
1907
Peter Hurley20bafb32013-06-15 10:21:19 -04001908 vfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001909 tty->disc_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
1912/**
1913 * n_tty_open - open an ldisc
1914 * @tty: terminal to open
1915 *
Alan Cox4edf1822008-02-08 04:18:44 -08001916 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 * terminal device. Can sleep. Called serialized so that no
1918 * other events will occur in parallel. No further open will occur
1919 * until a close.
1920 */
1921
1922static int n_tty_open(struct tty_struct *tty)
1923{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001924 struct n_tty_data *ldata;
1925
Peter Hurley20bafb32013-06-15 10:21:19 -04001926 /* Currently a malloc failure here can panic */
1927 ldata = vmalloc(sizeof(*ldata));
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001928 if (!ldata)
1929 goto err;
1930
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001931 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001932 mutex_init(&ldata->atomic_read_lock);
1933 mutex_init(&ldata->output_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001934
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001935 tty->disc_data = ldata;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001936 reset_buffer_flags(tty->disc_data);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001937 ldata->column = 0;
Peter Hurley20bafb32013-06-15 10:21:19 -04001938 ldata->canon_column = 0;
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04001939 ldata->minimum_to_wake = 1;
Peter Hurley20bafb32013-06-15 10:21:19 -04001940 ldata->num_overrun = 0;
1941 ldata->no_room = 0;
1942 ldata->lnext = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001944 /* indicate buffer work may resume */
1945 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1946 n_tty_set_termios(tty, NULL);
1947 tty_unthrottle(tty);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 return 0;
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001950err:
Jiri Slabyb91939f2012-10-18 22:26:35 +02001951 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953
Peter Hurleyeafbe672013-12-02 14:24:45 -05001954static inline int input_available_p(struct tty_struct *tty, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001956 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya5934802014-02-11 11:49:58 -05001957 int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001958
Peter Hurley25e8d0e2014-02-11 18:55:30 -05001959 if (ldata->icanon && !L_EXTPROC(tty))
1960 return ldata->canon_head != ldata->read_tail;
1961 else
Peter Hurley70aca712015-01-16 15:05:37 -05001962 return ldata->commit_head - ldata->read_tail >= amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
1964
Peter Hurley1a486322015-04-13 13:24:34 -04001965static inline int check_other_done(struct tty_struct *tty)
1966{
1967 int done = test_bit(TTY_OTHER_DONE, &tty->flags);
1968 if (done) {
1969 /* paired with cmpxchg() in check_other_closed(); ensures
1970 * read buffer head index is not stale
1971 */
1972 smp_mb__after_atomic();
1973 }
1974 return done;
1975}
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001978 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 * @tty: terminal device
1980 * @b: user data
1981 * @nr: size of data
1982 *
Alan Cox11a96d12008-10-13 10:46:24 +01001983 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 * ICANON is off; it copies characters straight from the tty queue to
1985 * user space directly. It can be profitably called twice; once to
1986 * drain the space from the tail pointer to the (physical) end of the
1987 * buffer, and once to drain the space from the (physical) beginning of
1988 * the buffer to head pointer.
1989 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001990 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001992 * n_tty_read()/consumer path:
1993 * caller holds non-exclusive termios_rwsem
1994 * read_tail published
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 */
Alan Cox4edf1822008-02-08 04:18:44 -08001996
Alan Cox33f0f882006-01-09 20:54:13 -08001997static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 unsigned char __user **b,
1999 size_t *nr)
2000
2001{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002002 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 int retval;
2004 size_t n;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02002005 bool is_eof;
Peter Hurley70aca712015-01-16 15:05:37 -05002006 size_t head = smp_load_acquire(&ldata->commit_head);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002007 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 retval = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05002010 n = min(head - ldata->read_tail, N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 n = min(*nr, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 if (n) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002013 retval = copy_to_user(*b, read_buf_addr(ldata, tail), n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 n -= retval;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002015 is_eof = n == 1 && read_buf(ldata, tail) == EOF_CHAR(tty);
2016 tty_audit_add_data(tty, read_buf_addr(ldata, tail), n,
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002017 ldata->icanon);
Peter Hurley70aca712015-01-16 15:05:37 -05002018 smp_store_release(&ldata->read_tail, ldata->read_tail + n);
hyc@symas.com26df6d12010-06-22 10:14:49 -07002019 /* Turn single EOF into zero-length read */
Peter Hurley70aca712015-01-16 15:05:37 -05002020 if (L_EXTPROC(tty) && ldata->icanon && is_eof &&
2021 (head == ldata->read_tail))
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02002022 n = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 *b += n;
2024 *nr -= n;
2025 }
2026 return retval;
2027}
2028
Peter Hurley88bb0de2013-06-15 09:14:16 -04002029/**
Peter Hurley32f13522013-06-15 09:14:17 -04002030 * canon_copy_from_read_buf - copy read data in canonical mode
Peter Hurley88bb0de2013-06-15 09:14:16 -04002031 * @tty: terminal device
2032 * @b: user data
2033 * @nr: size of data
2034 *
2035 * Helper function for n_tty_read. It is only called when ICANON is on;
Peter Hurley32f13522013-06-15 09:14:17 -04002036 * it copies one line of input up to and including the line-delimiting
2037 * character into the user-space buffer.
Peter Hurley88bb0de2013-06-15 09:14:16 -04002038 *
Peter Hurley4d0ed182013-12-10 17:12:02 -05002039 * NB: When termios is changed from non-canonical to canonical mode and
2040 * the read buffer contains data, n_tty_set_termios() simulates an EOF
2041 * push (as if C-d were input) _without_ the DISABLED_CHAR in the buffer.
2042 * This causes data already processed as input to be immediately available
2043 * as input although a newline has not been received.
2044 *
Peter Hurley88bb0de2013-06-15 09:14:16 -04002045 * Called under the atomic_read_lock mutex
Peter Hurley6d76bd22013-06-15 09:14:26 -04002046 *
2047 * n_tty_read()/consumer path:
2048 * caller holds non-exclusive termios_rwsem
2049 * read_tail published
Peter Hurley88bb0de2013-06-15 09:14:16 -04002050 */
2051
Peter Hurley32f13522013-06-15 09:14:17 -04002052static int canon_copy_from_read_buf(struct tty_struct *tty,
2053 unsigned char __user **b,
2054 size_t *nr)
Peter Hurley88bb0de2013-06-15 09:14:16 -04002055{
2056 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley32f13522013-06-15 09:14:17 -04002057 size_t n, size, more, c;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002058 size_t eol;
2059 size_t tail;
2060 int ret, found = 0;
Peter Hurley40d5e092013-06-15 10:21:17 -04002061 bool eof_push = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002062
2063 /* N.B. avoid overrun if nr == 0 */
Peter Hurley70aca712015-01-16 15:05:37 -05002064 n = min(*nr, smp_load_acquire(&ldata->canon_head) - ldata->read_tail);
Peter Hurley6d76bd22013-06-15 09:14:26 -04002065 if (!n)
Peter Hurley32f13522013-06-15 09:14:17 -04002066 return 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002067
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002068 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Peter Hurley32f13522013-06-15 09:14:17 -04002069 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
2070
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002071 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04002072 __func__, *nr, tail, n, size);
2073
2074 eol = find_next_bit(ldata->read_flags, size, tail);
2075 more = n - (size - tail);
2076 if (eol == N_TTY_BUF_SIZE && more) {
2077 /* scan wrapped without finding set bit */
2078 eol = find_next_bit(ldata->read_flags, more, 0);
2079 if (eol != more)
2080 found = 1;
2081 } else if (eol != size)
2082 found = 1;
2083
2084 size = N_TTY_BUF_SIZE - tail;
Peter Hurleyc77569d2013-11-22 07:16:25 -05002085 n = eol - tail;
Mark Tomlinsonda555db2015-05-18 12:01:48 +12002086 if (n > N_TTY_BUF_SIZE)
2087 n += N_TTY_BUF_SIZE;
Peter Hurleyc77569d2013-11-22 07:16:25 -05002088 n += found;
Peter Hurley32f13522013-06-15 09:14:17 -04002089 c = n;
2090
Peter Hurley4d0ed182013-12-10 17:12:02 -05002091 if (found && !ldata->push && read_buf(ldata, eol) == __DISABLED_CHAR) {
Peter Hurley32f13522013-06-15 09:14:17 -04002092 n--;
Peter Hurley40d5e092013-06-15 10:21:17 -04002093 eof_push = !n && ldata->read_tail != ldata->line_start;
2094 }
Peter Hurley32f13522013-06-15 09:14:17 -04002095
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002096 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu size:%zu more:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04002097 __func__, eol, found, n, c, size, more);
2098
Peter Hurley32f13522013-06-15 09:14:17 -04002099 if (n > size) {
Laura Abbott72586c62015-05-14 11:42:17 -07002100 ret = tty_copy_to_user(tty, *b, read_buf_addr(ldata, tail), size);
Peter Hurley32f13522013-06-15 09:14:17 -04002101 if (ret)
2102 return -EFAULT;
Laura Abbott72586c62015-05-14 11:42:17 -07002103 ret = tty_copy_to_user(tty, *b + size, ldata->read_buf, n - size);
Peter Hurley32f13522013-06-15 09:14:17 -04002104 } else
Laura Abbott72586c62015-05-14 11:42:17 -07002105 ret = tty_copy_to_user(tty, *b, read_buf_addr(ldata, tail), n);
Peter Hurley32f13522013-06-15 09:14:17 -04002106
2107 if (ret)
2108 return -EFAULT;
2109 *b += n;
2110 *nr -= n;
2111
Peter Hurleya73d3d62013-06-15 09:14:25 -04002112 if (found)
Peter Hurley6d76bd22013-06-15 09:14:26 -04002113 clear_bit(eol, ldata->read_flags);
Peter Hurley70aca712015-01-16 15:05:37 -05002114 smp_store_release(&ldata->read_tail, ldata->read_tail + c);
Peter Hurley88bb0de2013-06-15 09:14:16 -04002115
Peter Hurley40d5e092013-06-15 10:21:17 -04002116 if (found) {
Peter Hurley4d0ed182013-12-10 17:12:02 -05002117 if (!ldata->push)
2118 ldata->line_start = ldata->read_tail;
2119 else
2120 ldata->push = 0;
Peter Hurley32f13522013-06-15 09:14:17 -04002121 tty_audit_push(tty);
Peter Hurley40d5e092013-06-15 10:21:17 -04002122 }
2123 return eof_push ? -EAGAIN : 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002124}
2125
Al Virocc4191d2008-03-29 03:08:48 +00002126extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08002127 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129/**
2130 * job_control - check job control
2131 * @tty: tty
2132 * @file: file handle
2133 *
2134 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08002135 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07002137 *
Peter Hurley01a5e442013-03-06 08:38:20 -05002138 * Locking: redirected write test is safe
2139 * current->signal->tty check is safe
2140 * ctrl_lock to safely reference tty->pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 */
Alan Cox4edf1822008-02-08 04:18:44 -08002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143static int job_control(struct tty_struct *tty, struct file *file)
2144{
Patrick Donnelly67196932015-07-12 18:51:52 -04002145 struct pid *pgrp;
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 /* Job control check -- must be done at start and after
2148 every sleep (POSIX.1 7.1.1.4). */
2149 /* NOTE: not yet done after every sleep pending a thorough
2150 check of the logic of this change. -- jlc */
2151 /* don't stop on /dev/console */
Peter Hurley01a5e442013-03-06 08:38:20 -05002152 if (file->f_op->write == redirected_tty_write ||
2153 current->signal->tty != tty)
2154 return 0;
2155
Patrick Donnelly67196932015-07-12 18:51:52 -04002156 rcu_read_lock();
2157 pgrp = task_pgrp(current);
2158
Peter Hurley01a5e442013-03-06 08:38:20 -05002159 spin_lock_irq(&tty->ctrl_lock);
2160 if (!tty->pgrp)
2161 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
Patrick Donnelly67196932015-07-12 18:51:52 -04002162 else if (pgrp != tty->pgrp) {
Peter Hurley01a5e442013-03-06 08:38:20 -05002163 spin_unlock_irq(&tty->ctrl_lock);
Patrick Donnelly67196932015-07-12 18:51:52 -04002164 if (is_ignored(SIGTTIN) || is_current_pgrp_orphaned()) {
2165 rcu_read_unlock();
Peter Hurley01a5e442013-03-06 08:38:20 -05002166 return -EIO;
Patrick Donnelly67196932015-07-12 18:51:52 -04002167 }
2168 kill_pgrp(pgrp, SIGTTIN, 1);
2169 rcu_read_unlock();
Peter Hurley01a5e442013-03-06 08:38:20 -05002170 set_thread_flag(TIF_SIGPENDING);
2171 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 }
Peter Hurley01a5e442013-03-06 08:38:20 -05002173 spin_unlock_irq(&tty->ctrl_lock);
Patrick Donnelly67196932015-07-12 18:51:52 -04002174 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 return 0;
2176}
Alan Cox4edf1822008-02-08 04:18:44 -08002177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179/**
Alan Cox11a96d12008-10-13 10:46:24 +01002180 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 * @tty: tty device
2182 * @file: file object
2183 * @buf: userspace buffer pointer
2184 * @nr: size of I/O
2185 *
2186 * Perform reads for the line discipline. We are guaranteed that the
2187 * line discipline will not be closed under us but we may get multiple
2188 * parallel readers and must handle this ourselves. We may also get
2189 * a hangup. Always called in user context, may sleep.
2190 *
2191 * This code must be sure never to sleep through a hangup.
Peter Hurley6d76bd22013-06-15 09:14:26 -04002192 *
2193 * n_tty_read()/consumer path:
2194 * claims non-exclusive termios_rwsem
2195 * publishes read_tail
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 */
Alan Cox4edf1822008-02-08 04:18:44 -08002197
Alan Cox11a96d12008-10-13 10:46:24 +01002198static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 unsigned char __user *buf, size_t nr)
2200{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002201 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 unsigned char __user *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002203 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Peter Hurley1a486322015-04-13 13:24:34 -04002204 int c, done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 int minimum, time;
2206 ssize_t retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 long timeout;
Alan Cox04f378b2008-04-30 00:53:29 -07002208 int packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002209 size_t tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08002212 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08002214
Peter Hurleyaefceaf2013-08-11 08:04:23 -04002215 /*
2216 * Internal serialization of reads.
2217 */
2218 if (file->f_flags & O_NONBLOCK) {
2219 if (!mutex_trylock(&ldata->atomic_read_lock))
2220 return -EAGAIN;
2221 } else {
2222 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
2223 return -ERESTARTSYS;
2224 }
2225
Peter Hurley9356b532013-06-15 09:14:24 -04002226 down_read(&tty->termios_rwsem);
2227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 minimum = time = 0;
2229 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002230 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 minimum = MIN_CHAR(tty);
2232 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04002233 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 if (time)
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002235 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 else if (!waitqueue_active(&tty->read_wait) ||
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002237 (ldata->minimum_to_wake > minimum))
2238 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04002240 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002241 ldata->minimum_to_wake = minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 }
2243 }
2244
Alan Cox04f378b2008-04-30 00:53:29 -07002245 packet = tty->packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002246 tail = ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 while (nr) {
2250 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07002251 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 unsigned char cs;
2253 if (b != buf)
2254 break;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002255 spin_lock_irq(&tty->link->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 cs = tty->link->ctrl_status;
2257 tty->link->ctrl_status = 0;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002258 spin_unlock_irq(&tty->link->ctrl_lock);
Miloslav Trmac522ed772007-07-15 23:40:56 -07002259 if (tty_put_user(tty, cs, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 retval = -EFAULT;
2261 b--;
2262 break;
2263 }
2264 nr--;
2265 break;
2266 }
Alan Cox4edf1822008-02-08 04:18:44 -08002267
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002268 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 ((minimum - (b - buf)) >= 1))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002270 ldata->minimum_to_wake = (minimum - (b - buf));
Alan Cox4edf1822008-02-08 04:18:44 -08002271
Peter Hurley1a486322015-04-13 13:24:34 -04002272 done = check_other_done(tty);
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 if (!input_available_p(tty, 0)) {
Peter Hurley1a486322015-04-13 13:24:34 -04002275 if (done) {
Peter Hurley52bce7f2014-11-05 12:13:05 -05002276 retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 break;
2278 }
Peter Hurley52bce7f2014-11-05 12:13:05 -05002279 if (tty_hung_up_p(file))
2280 break;
2281 if (!timeout)
2282 break;
2283 if (file->f_flags & O_NONBLOCK) {
2284 retval = -EAGAIN;
2285 break;
2286 }
2287 if (signal_pending(current)) {
2288 retval = -ERESTARTSYS;
2289 break;
2290 }
Peter Hurley52bce7f2014-11-05 12:13:05 -05002291 up_read(&tty->termios_rwsem);
2292
Linus Torvalds37da7bb2014-12-14 15:23:32 -08002293 timeout = wait_woken(&wait, TASK_INTERRUPTIBLE,
2294 timeout);
Peter Hurley52bce7f2014-11-05 12:13:05 -05002295
2296 down_read(&tty->termios_rwsem);
2297 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 }
2299
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002300 if (ldata->icanon && !L_EXTPROC(tty)) {
Peter Hurley32f13522013-06-15 09:14:17 -04002301 retval = canon_copy_from_read_buf(tty, &b, &nr);
Peter Hurley40d5e092013-06-15 10:21:17 -04002302 if (retval == -EAGAIN) {
2303 retval = 0;
2304 continue;
2305 } else if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 break;
2307 } else {
2308 int uncopied;
Peter Hurley95ea90d2014-10-16 15:33:30 -04002309
2310 /* Deal with packet mode. */
2311 if (packet && b == buf) {
2312 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
2313 retval = -EFAULT;
2314 b--;
2315 break;
2316 }
2317 nr--;
2318 }
2319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 uncopied = copy_from_read_buf(tty, &b, &nr);
2321 uncopied += copy_from_read_buf(tty, &b, &nr);
2322 if (uncopied) {
2323 retval = -EFAULT;
2324 break;
2325 }
2326 }
2327
Peter Hurley6367ca72013-06-15 09:14:33 -04002328 n_tty_check_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 if (b - buf >= minimum)
2331 break;
2332 if (time)
2333 timeout = time;
2334 }
Peter Hurley2c5dc462015-01-16 15:05:34 -05002335 if (tail != ldata->read_tail)
2336 n_tty_kick_worker(tty);
Peter Hurley42458f42013-11-07 13:59:46 -05002337 up_read(&tty->termios_rwsem);
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 remove_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 if (!waitqueue_active(&tty->read_wait))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002341 ldata->minimum_to_wake = minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Peter Hurleyaebf04532013-11-07 14:01:57 -05002343 mutex_unlock(&ldata->atomic_read_lock);
2344
Peter Hurley40d5e092013-06-15 10:21:17 -04002345 if (b - buf)
2346 retval = b - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
2348 return retval;
2349}
2350
2351/**
Alan Cox11a96d12008-10-13 10:46:24 +01002352 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 * @tty: tty device
2354 * @file: file object
2355 * @buf: userspace buffer pointer
2356 * @nr: size of I/O
2357 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002358 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002360 * and other such events. Since the receive code will echo characters,
2361 * thus calling driver write methods, the output_lock is used in
2362 * the output processing functions called here as well as in the
2363 * echo processing function to protect the column state and space
2364 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 *
2366 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002367 *
2368 * Locking: output_lock to protect column state and space left
2369 * (note that the process_output*() functions take this
2370 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 */
Alan Cox4edf1822008-02-08 04:18:44 -08002372
Alan Cox11a96d12008-10-13 10:46:24 +01002373static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002374 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
2376 const unsigned char *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002377 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 int c;
2379 ssize_t retval = 0;
2380
2381 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2382 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2383 retval = tty_check_change(tty);
2384 if (retval)
2385 return retval;
2386 }
2387
Peter Hurley9356b532013-06-15 09:14:24 -04002388 down_read(&tty->termios_rwsem);
2389
Joe Petersona88a69c2009-01-02 13:40:53 +00002390 /* Write out any echoed characters that are still pending */
2391 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 add_wait_queue(&tty->write_wait, &wait);
2394 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (signal_pending(current)) {
2396 retval = -ERESTARTSYS;
2397 break;
2398 }
2399 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2400 retval = -EIO;
2401 break;
2402 }
Peter Hurley582f5592013-05-17 12:49:48 -04002403 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002405 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 if (num < 0) {
2407 if (num == -EAGAIN)
2408 break;
2409 retval = num;
2410 goto break_out;
2411 }
2412 b += num;
2413 nr -= num;
2414 if (nr == 0)
2415 break;
2416 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002417 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 break;
2419 b++; nr--;
2420 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002421 if (tty->ops->flush_chars)
2422 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 } else {
Peter Hurley42910862014-05-03 14:04:59 +02002424 struct n_tty_data *ldata = tty->disc_data;
2425
Roman Zippeld6afe272005-07-07 17:56:55 -07002426 while (nr > 0) {
Peter Hurley42910862014-05-03 14:04:59 +02002427 mutex_lock(&ldata->output_lock);
Alan Coxf34d7a52008-04-30 00:54:13 -07002428 c = tty->ops->write(tty, b, nr);
Peter Hurley42910862014-05-03 14:04:59 +02002429 mutex_unlock(&ldata->output_lock);
Roman Zippeld6afe272005-07-07 17:56:55 -07002430 if (c < 0) {
2431 retval = c;
2432 goto break_out;
2433 }
2434 if (!c)
2435 break;
2436 b += c;
2437 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
2440 if (!nr)
2441 break;
2442 if (file->f_flags & O_NONBLOCK) {
2443 retval = -EAGAIN;
2444 break;
2445 }
Peter Hurley9356b532013-06-15 09:14:24 -04002446 up_read(&tty->termios_rwsem);
2447
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002448 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Peter Hurley9356b532013-06-15 09:14:24 -04002449
2450 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 }
2452break_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 remove_wait_queue(&tty->write_wait, &wait);
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002454 if (b - buf != nr && tty->fasync)
2455 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002456 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 return (b - buf) ? b - buf : retval;
2458}
2459
2460/**
Alan Cox11a96d12008-10-13 10:46:24 +01002461 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 * @tty: terminal device
2463 * @file: file accessing it
2464 * @wait: poll table
2465 *
2466 * Called when the line discipline is asked to poll() for data or
2467 * for special events. This code is not serialized with respect to
2468 * other events save open/close.
2469 *
2470 * This code must be sure never to sleep through a hangup.
2471 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 */
Alan Cox4edf1822008-02-08 04:18:44 -08002473
Alan Cox11a96d12008-10-13 10:46:24 +01002474static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002475 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002477 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 unsigned int mask = 0;
2479
2480 poll_wait(file, &tty->read_wait, wait);
2481 poll_wait(file, &tty->write_wait, wait);
Peter Hurley1a486322015-04-13 13:24:34 -04002482 if (check_other_done(tty))
2483 mask |= POLLHUP;
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002484 if (input_available_p(tty, 1))
2485 mask |= POLLIN | POLLRDNORM;
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002486 if (tty->packet && tty->link->ctrl_status)
2487 mask |= POLLPRI | POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 if (tty_hung_up_p(file))
2489 mask |= POLLHUP;
2490 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2491 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002492 ldata->minimum_to_wake = MIN_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 else
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002494 ldata->minimum_to_wake = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002496 if (tty->ops->write && !tty_is_writelocked(tty) &&
2497 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2498 tty_write_room(tty) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 mask |= POLLOUT | POLLWRNORM;
2500 return mask;
2501}
2502
Jiri Slaby57c94122012-10-18 22:26:43 +02002503static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002504{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002505 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002506
Peter Hurleya73d3d62013-06-15 09:14:25 -04002507 if (ldata->canon_head == ldata->read_tail)
Alan Cox47afa7a2008-10-13 10:44:17 +01002508 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002509 head = ldata->canon_head;
2510 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002511 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002512 /* Skip EOF-chars.. */
2513 while (head != tail) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002514 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2515 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002516 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002517 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002518 }
2519 return nr;
2520}
2521
2522static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2523 unsigned int cmd, unsigned long arg)
2524{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002525 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002526 int retval;
2527
2528 switch (cmd) {
2529 case TIOCOUTQ:
2530 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2531 case TIOCINQ:
Peter Hurley6d76bd22013-06-15 09:14:26 -04002532 down_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002533 if (L_ICANON(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002534 retval = inq_canon(ldata);
Peter Hurley6d76bd22013-06-15 09:14:26 -04002535 else
2536 retval = read_cnt(ldata);
2537 up_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002538 return put_user(retval, (unsigned int __user *) arg);
2539 default:
2540 return n_tty_ioctl_helper(tty, file, cmd, arg);
2541 }
2542}
2543
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002544static void n_tty_fasync(struct tty_struct *tty, int on)
2545{
2546 struct n_tty_data *ldata = tty->disc_data;
2547
2548 if (!waitqueue_active(&tty->read_wait)) {
2549 if (on)
2550 ldata->minimum_to_wake = 1;
2551 else if (!tty->fasync)
2552 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2553 }
2554}
2555
Alan Coxa352def2008-07-16 21:53:12 +01002556struct tty_ldisc_ops tty_ldisc_N_TTY = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002557 .magic = TTY_LDISC_MAGIC,
2558 .name = "n_tty",
2559 .open = n_tty_open,
2560 .close = n_tty_close,
2561 .flush_buffer = n_tty_flush_buffer,
2562 .chars_in_buffer = n_tty_chars_in_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002563 .read = n_tty_read,
2564 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002565 .ioctl = n_tty_ioctl,
2566 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002567 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002568 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002569 .write_wakeup = n_tty_write_wakeup,
2570 .fasync = n_tty_fasync,
Peter Hurley24a89d12013-06-15 09:14:15 -04002571 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002573
2574/**
2575 * n_tty_inherit_ops - inherit N_TTY methods
2576 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2577 *
George Spelvin593fb1ae42013-02-12 02:00:43 -05002578 * Enables a 'subclass' line discipline to 'inherit' N_TTY
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002579 * methods.
2580 */
2581
2582void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2583{
2584 *ops = tty_ldisc_N_TTY;
2585 ops->owner = NULL;
2586 ops->refcount = ops->flags = 0;
2587}
2588EXPORT_SYMBOL_GPL(n_tty_inherit_ops);