blob: b89308d52adeb0ddb832160e75b623e9c7c34855 [file] [log] [blame]
Greg Kroah-Hartmane3b3d0f2017-11-06 18:11:51 +01001// SPDX-License-Identifier: GPL-1.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * n_tty.c --- implements the N_TTY line discipline.
Alan Cox4edf1822008-02-08 04:18:44 -08004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * This code used to be in tty_io.c, but things are getting hairy
6 * enough that it made sense to split things off. (The N_TTY
7 * processing has changed so much that it's hardly recognizable,
8 * anyway...)
9 *
10 * Note that the open routine for N_TTY is guaranteed never to return
11 * an error. This is because Linux will fall back to setting a line
Alan Cox4edf1822008-02-08 04:18:44 -080012 * to N_TTY if it can not switch to any other line discipline.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * Written by Theodore Ts'o, Copyright 1994.
Alan Cox4edf1822008-02-08 04:18:44 -080015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * This file also contains code originally written by Linus Torvalds,
17 * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
Alan Cox4edf1822008-02-08 04:18:44 -080018 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Reduced memory usage for older ARM systems - Russell King.
20 *
Alan Cox4edf1822008-02-08 04:18:44 -080021 * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * the patch by Andrew J. Kroll <ag784@freenet.buffalo.edu>
23 * who actually finally proved there really was a race.
24 *
25 * 2002/03/18 Implemented n_tty_wakeup to send SIGIO POLL_OUTs to
26 * waiting writing processes-Sapan Bhatia <sapan@corewars.org>.
Alan Cox11a96d12008-10-13 10:46:24 +010027 * Also fixed a bug in BLOCKING mode where n_tty_write returns
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * EAGAIN
29 */
30
31#include <linux/types.h>
32#include <linux/major.h>
33#include <linux/errno.h>
34#include <linux/signal.h>
35#include <linux/fcntl.h>
36#include <linux/sched.h>
37#include <linux/interrupt.h>
38#include <linux/tty.h>
39#include <linux/timer.h>
40#include <linux/ctype.h>
41#include <linux/mm.h>
42#include <linux/string.h>
43#include <linux/slab.h>
44#include <linux/poll.h>
45#include <linux/bitops.h>
Miloslav Trmac522ed772007-07-15 23:40:56 -070046#include <linux/audit.h>
47#include <linux/file.h>
Alan Cox300a6202009-01-02 13:41:04 +000048#include <linux/uaccess.h>
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -080049#include <linux/module.h>
George Spelvin593fb1ae42013-02-12 02:00:43 -050050#include <linux/ratelimit.h>
Peter Hurley86e35ae2013-07-24 09:30:05 -040051#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Valentin Vidica5db4822018-12-29 13:48:29 +010053/*
54 * Until this number of characters is queued in the xmit buffer, select will
55 * return "we have room for writes".
56 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#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
Jiri Slabya2878852020-01-30 12:58:43 +010087# define n_tty_trace(f, args...) no_printk(f, ##args)
Peter Hurley32f13522013-06-15 09:14:17 -040088#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 Hurleyfb7aa032013-06-15 09:14:30 -0400116 /* consumer-published */
117 size_t read_tail;
Peter Hurley40d5e092013-06-15 10:21:17 -0400118 size_t line_start;
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400119
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400120 /* protected by output lock */
121 unsigned int column;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200122 unsigned int canon_column;
Peter Hurley9dfd16d2013-06-15 10:04:29 -0400123 size_t echo_tail;
Jiri Slabybddc7152012-10-18 22:26:42 +0200124
125 struct mutex atomic_read_lock;
126 struct mutex output_lock;
Jiri Slaby70ece7a2012-10-18 22:26:38 +0200127};
128
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +0900129#define MASK(x) ((x) & (N_TTY_BUF_SIZE - 1))
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{
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900148 smp_rmb(); /* Matches smp_wmb() in add_echo_byte(). */
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400149 return ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
150}
151
152static inline unsigned char *echo_buf_addr(struct n_tty_data *ldata, size_t i)
153{
154 return &ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
155}
156
Greg KHb97b3d92018-10-04 11:06:14 -0700157/* If we are not echoing the data, perhaps this is a secret so erase it */
158static void zero_buffer(struct tty_struct *tty, u8 *buffer, int size)
159{
160 bool icanon = !!L_ICANON(tty);
161 bool no_echo = !L_ECHO(tty);
162
163 if (icanon && no_echo)
164 memset(buffer, 0x00, size);
165}
166
Linus Torvalds3b830a92021-01-18 13:31:30 -0800167static void tty_copy(struct tty_struct *tty, void *to, size_t tail, size_t n)
Laura Abbott72586c62015-05-14 11:42:17 -0700168{
169 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley679e7c22015-11-27 14:11:02 -0500170 size_t size = N_TTY_BUF_SIZE - tail;
Greg KHb97b3d92018-10-04 11:06:14 -0700171 void *from = read_buf_addr(ldata, tail);
Peter Hurley679e7c22015-11-27 14:11:02 -0500172
173 if (n > size) {
Peter Hurley309426a2016-01-09 22:55:27 -0800174 tty_audit_add_data(tty, from, size);
Linus Torvalds3b830a92021-01-18 13:31:30 -0800175 memcpy(to, from, size);
176 zero_buffer(tty, from, size);
Peter Hurley679e7c22015-11-27 14:11:02 -0500177 to += size;
178 n -= size;
179 from = ldata->read_buf;
180 }
Laura Abbott72586c62015-05-14 11:42:17 -0700181
Peter Hurley309426a2016-01-09 22:55:27 -0800182 tty_audit_add_data(tty, from, n);
Linus Torvalds3b830a92021-01-18 13:31:30 -0800183 memcpy(to, from, n);
184 zero_buffer(tty, from, n);
Laura Abbott72586c62015-05-14 11:42:17 -0700185}
186
Peter Hurley24a89d12013-06-15 09:14:15 -0400187/**
Peter Hurley2c5dc462015-01-16 15:05:34 -0500188 * n_tty_kick_worker - start input worker (if required)
Peter Hurley24a89d12013-06-15 09:14:15 -0400189 * @tty: terminal
190 *
Peter Hurley2c5dc462015-01-16 15:05:34 -0500191 * Re-schedules the flip buffer work if it may have stopped
Peter Hurley24a89d12013-06-15 09:14:15 -0400192 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400193 * Caller holds exclusive termios_rwsem
194 * or
195 * n_tty_read()/consumer path:
196 * holds non-exclusive termios_rwsem
Peter Hurley24a89d12013-06-15 09:14:15 -0400197 */
198
Peter Hurley2c5dc462015-01-16 15:05:34 -0500199static void n_tty_kick_worker(struct tty_struct *tty)
Peter Hurley7879a9f2013-06-15 07:28:31 -0400200{
Peter Hurley24a89d12013-06-15 09:14:15 -0400201 struct n_tty_data *ldata = tty->disc_data;
202
Peter Hurley2c5dc462015-01-16 15:05:34 -0500203 /* Did the input worker stop? Restart it */
204 if (unlikely(ldata->no_room)) {
Peter Hurley24a89d12013-06-15 09:14:15 -0400205 ldata->no_room = 0;
206
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200207 WARN_RATELIMIT(tty->port->itty == NULL,
Sasha Levincadf7482012-10-25 14:26:35 -0400208 "scheduling with invalid itty\n");
Peter Hurley21622932013-03-11 16:44:21 -0400209 /* see if ldisc has been killed - if so, this means that
210 * even though the ldisc has been halted and ->buf.work
211 * cancelled, ->buf.work is about to be rescheduled
212 */
213 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
214 "scheduling buffer work for halted ldisc\n");
Peter Hurleye1760582015-10-17 16:36:23 -0400215 tty_buffer_restart_work(tty->port);
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200216 }
Linus Torvalds55db4c62011-06-04 06:33:24 +0900217}
218
Peter Hurley9a4aec22013-06-15 09:14:32 -0400219static ssize_t chars_in_buffer(struct tty_struct *tty)
220{
221 struct n_tty_data *ldata = tty->disc_data;
222 ssize_t n = 0;
223
224 if (!ldata->icanon)
Peter Hurley70aca712015-01-16 15:05:37 -0500225 n = ldata->commit_head - ldata->read_tail;
Peter Hurley9a4aec22013-06-15 09:14:32 -0400226 else
227 n = ldata->canon_head - ldata->read_tail;
228 return n;
229}
230
Peter Hurleyee0bab82013-06-15 09:14:34 -0400231/**
232 * n_tty_write_wakeup - asynchronous I/O notifier
233 * @tty: tty device
234 *
235 * Required for the ptys, serial driver etc. since processes
236 * that attach themselves to the master and rely on ASYNC
237 * IO must be woken up
238 */
239
240static void n_tty_write_wakeup(struct tty_struct *tty)
241{
Peter Hurley7bccc362016-01-09 21:45:12 -0800242 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
243 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
Peter Hurleyee0bab82013-06-15 09:14:34 -0400244}
245
Peter Hurley4a23a4d2013-06-15 10:21:22 -0400246static void n_tty_check_throttle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400247{
Peter Hurleya3428462015-01-16 15:05:35 -0500248 struct n_tty_data *ldata = tty->disc_data;
249
Peter Hurley6367ca72013-06-15 09:14:33 -0400250 /*
251 * Check the remaining room for the input canonicalization
252 * mode. We don't want to throttle the driver if we're in
253 * canonical mode and don't have a newline yet!
254 */
Peter Hurleya3428462015-01-16 15:05:35 -0500255 if (ldata->icanon && ldata->canon_head == ldata->read_tail)
256 return;
257
Peter Hurley6367ca72013-06-15 09:14:33 -0400258 while (1) {
259 int throttled;
260 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
Peter Hurley5e28cca2015-01-16 15:05:36 -0500261 if (N_TTY_BUF_SIZE - read_cnt(ldata) >= TTY_THRESHOLD_THROTTLE)
Peter Hurley6367ca72013-06-15 09:14:33 -0400262 break;
263 throttled = tty_throttle_safe(tty);
264 if (!throttled)
265 break;
266 }
267 __tty_set_flow_change(tty, 0);
268}
269
Peter Hurley4b293492013-07-24 08:29:55 -0400270static void n_tty_check_unthrottle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400271{
Peter Hurley6d27a632016-01-10 22:40:56 -0800272 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
Peter Hurley3afb1b392013-07-23 08:47:30 -0400273 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
274 return;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500275 n_tty_kick_worker(tty);
Peter Hurley6d27a632016-01-10 22:40:56 -0800276 tty_wakeup(tty->link);
Peter Hurley3afb1b392013-07-23 08:47:30 -0400277 return;
278 }
279
Peter Hurley6367ca72013-06-15 09:14:33 -0400280 /* If there is enough space in the read buffer now, let the
281 * low-level driver know. We use chars_in_buffer() to
282 * check the buffer, as it now knows about canonical mode.
283 * Otherwise, if the driver is throttled and the line is
284 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
285 * we won't get any more characters.
286 */
287
288 while (1) {
289 int unthrottled;
290 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
291 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
292 break;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500293 n_tty_kick_worker(tty);
Peter Hurley6367ca72013-06-15 09:14:33 -0400294 unthrottled = tty_unthrottle_safe(tty);
295 if (!unthrottled)
296 break;
297 }
298 __tty_set_flow_change(tty, 0);
299}
300
Alan Cox17b82062008-10-13 10:45:06 +0100301/**
302 * put_tty_queue - add character to tty
303 * @c: character
Jiri Slaby57c94122012-10-18 22:26:43 +0200304 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100305 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400306 * Add a character to the tty read_buf queue.
307 *
308 * n_tty_receive_buf()/producer path:
309 * caller holds non-exclusive termios_rwsem
Alan Cox17b82062008-10-13 10:45:06 +0100310 */
311
Peter Hurley19e2ad62013-07-24 08:29:54 -0400312static inline void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Christian Riesch8bfbe2d2014-11-13 05:53:26 +0100314 *read_buf_addr(ldata, ldata->read_head) = c;
315 ldata->read_head++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * reset_buffer_flags - reset buffer state
Jiri Slaby724ac072020-08-18 10:56:52 +0200320 * @ldata: line disc data to reset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 *
Peter Hurley25518c62013-03-11 16:44:31 -0400322 * Reset the read buffer counters and clear the flags.
323 * Called from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100324 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400325 * Locking: caller holds exclusive termios_rwsem
326 * (or locking is not required)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000328
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400329static void reset_buffer_flags(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Peter Hurleya73d3d62013-06-15 09:14:25 -0400331 ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
Peter Hurley70aca712015-01-16 15:05:37 -0500332 ldata->commit_head = 0;
Peter Hurley40d5e092013-06-15 10:21:17 -0400333 ldata->line_start = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000334
Peter Hurleya73d3d62013-06-15 09:14:25 -0400335 ldata->erasing = 0;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200336 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -0500337 ldata->push = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Peter Hurleya30737a2013-03-11 16:44:22 -0400340static void n_tty_packet_mode_flush(struct tty_struct *tty)
341{
342 unsigned long flags;
343
Peter Hurleya30737a2013-03-11 16:44:22 -0400344 if (tty->link->packet) {
Peter Hurley54e8e5f2014-10-16 15:33:26 -0400345 spin_lock_irqsave(&tty->ctrl_lock, flags);
Peter Hurleya30737a2013-03-11 16:44:22 -0400346 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
Peter Hurley54e8e5f2014-10-16 15:33:26 -0400347 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +0000348 wake_up_interruptible(&tty->link->read_wait);
Peter Hurleya30737a2013-03-11 16:44:22 -0400349 }
Peter Hurleya30737a2013-03-11 16:44:22 -0400350}
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/**
353 * n_tty_flush_buffer - clean input queue
354 * @tty: terminal device
355 *
Peter Hurley25518c62013-03-11 16:44:31 -0400356 * Flush the input buffer. Called when the tty layer wants the
357 * buffer flushed (eg at hangup) or when the N_TTY line discipline
358 * internally has to clean the pending queue (for example some signals).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400360 * Holds termios_rwsem to exclude producer/consumer while
361 * buffer indices are reset.
362 *
363 * Locking: ctrl_lock, exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
Alan Cox4edf1822008-02-08 04:18:44 -0800365
366static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Peter Hurley6d76bd22013-06-15 09:14:26 -0400368 down_write(&tty->termios_rwsem);
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400369 reset_buffer_flags(tty->disc_data);
Peter Hurley2c5dc462015-01-16 15:05:34 -0500370 n_tty_kick_worker(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800371
Peter Hurleya30737a2013-03-11 16:44:22 -0400372 if (tty->link)
373 n_tty_packet_mode_flush(tty);
Peter Hurley6d76bd22013-06-15 09:14:26 -0400374 up_write(&tty->termios_rwsem);
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * is_utf8_continuation - utf8 multibyte check
379 * @c: byte to check
380 *
381 * Returns true if the utf8 character 'c' is a multibyte continuation
382 * character. We use this to correctly compute the on screen size
383 * of the character when printing
384 */
Alan Cox4edf1822008-02-08 04:18:44 -0800385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386static inline int is_utf8_continuation(unsigned char c)
387{
388 return (c & 0xc0) == 0x80;
389}
390
391/**
392 * is_continuation - multibyte check
393 * @c: byte to check
394 *
395 * Returns true if the utf8 character 'c' is a multibyte continuation
396 * character and the terminal is in unicode mode.
397 */
Alan Cox4edf1822008-02-08 04:18:44 -0800398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399static inline int is_continuation(unsigned char c, struct tty_struct *tty)
400{
401 return I_IUTF8(tty) && is_utf8_continuation(c);
402}
403
404/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000405 * do_output_char - output one character
406 * @c: character (or partial unicode symbol)
407 * @tty: terminal device
408 * @space: space available in tty driver write buffer
409 *
410 * This is a helper function that handles one output character
411 * (including special characters like TAB, CR, LF, etc.),
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600412 * doing OPOST processing and putting the results in the
413 * tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000414 *
415 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
416 * and NLDLY. They simply aren't relevant in the world today.
417 * If you ever need them, add them here.
418 *
419 * Returns the number of bytes of buffer space used or -1 if
420 * no space left.
421 *
422 * Locking: should be called under the output_lock to protect
423 * the column state and space left in the buffer
424 */
425
426static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
427{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200428 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000429 int spaces;
430
431 if (!space)
432 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000433
Joe Petersona88a69c2009-01-02 13:40:53 +0000434 switch (c) {
435 case '\n':
436 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200437 ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000438 if (O_ONLCR(tty)) {
439 if (space < 2)
440 return -1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200441 ldata->canon_column = ldata->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700442 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000443 return 2;
444 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200445 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000446 break;
447 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200448 if (O_ONOCR(tty) && ldata->column == 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000449 return 0;
450 if (O_OCRNL(tty)) {
451 c = '\n';
452 if (O_ONLRET(tty))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200453 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000454 break;
455 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200456 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000457 break;
458 case '\t':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200459 spaces = 8 - (ldata->column & 7);
Joe Petersona88a69c2009-01-02 13:40:53 +0000460 if (O_TABDLY(tty) == XTABS) {
461 if (space < spaces)
462 return -1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200463 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000464 tty->ops->write(tty, " ", spaces);
465 return spaces;
466 }
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200467 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000468 break;
469 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200470 if (ldata->column > 0)
471 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000472 break;
473 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000474 if (!iscntrl(c)) {
475 if (O_OLCUC(tty))
476 c = toupper(c);
477 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200478 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000479 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000480 break;
481 }
482
483 tty_put_char(tty, c);
484 return 1;
485}
486
487/**
488 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 * @c: character (or partial unicode symbol)
490 * @tty: terminal device
491 *
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600492 * Output one character with OPOST processing.
493 * Returns -1 when the output device is full and the character
494 * must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000496 * Locking: output_lock to protect column state and space left
497 * (also, this is called from n_tty_write under the
498 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 */
Alan Cox4edf1822008-02-08 04:18:44 -0800500
Joe Petersona88a69c2009-01-02 13:40:53 +0000501static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Jiri Slabybddc7152012-10-18 22:26:42 +0200503 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000504 int space, retval;
505
Jiri Slabybddc7152012-10-18 22:26:42 +0200506 mutex_lock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Alan Coxf34d7a52008-04-30 00:54:13 -0700508 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000509 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Jiri Slabybddc7152012-10-18 22:26:42 +0200511 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000512 if (retval < 0)
513 return -1;
514 else
515 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
518/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000519 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 * @tty: terminal device
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600521 * @buf: character buffer
522 * @nr: number of bytes to output
523 *
524 * Output a block of characters with OPOST processing.
525 * Returns the number of characters output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 *
527 * This path is used to speed up block console writes, among other
528 * things when processing blocks of output data. It handles only
529 * the simple cases normally found and helps to generate blocks of
530 * symbols for the console driver and thus improve performance.
531 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000532 * Locking: output_lock to protect column state and space left
533 * (also, this is called from n_tty_write under the
534 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
Alan Cox4edf1822008-02-08 04:18:44 -0800536
Joe Petersona88a69c2009-01-02 13:40:53 +0000537static ssize_t process_output_block(struct tty_struct *tty,
538 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200540 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100542 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 const unsigned char *cp;
544
Jiri Slabybddc7152012-10-18 22:26:42 +0200545 mutex_lock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000546
Alan Coxf34d7a52008-04-30 00:54:13 -0700547 space = tty_write_room(tty);
Colin Ian King9ef89272019-03-30 00:46:28 +0000548 if (space <= 0) {
Jiri Slabybddc7152012-10-18 22:26:42 +0200549 mutex_unlock(&ldata->output_lock);
Colin Ian King9ef89272019-03-30 00:46:28 +0000550 return space;
Joe Petersona88a69c2009-01-02 13:40:53 +0000551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (nr > space)
553 nr = space;
554
555 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000556 unsigned char c = *cp;
557
558 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 case '\n':
560 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200561 ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (O_ONLCR(tty))
563 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200564 ldata->canon_column = ldata->column;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 break;
566 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200567 if (O_ONOCR(tty) && ldata->column == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 goto break_out;
569 if (O_OCRNL(tty))
570 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200571 ldata->canon_column = ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 break;
573 case '\t':
574 goto break_out;
575 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200576 if (ldata->column > 0)
577 ldata->column--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 break;
579 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000580 if (!iscntrl(c)) {
581 if (O_OLCUC(tty))
582 goto break_out;
583 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200584 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 break;
587 }
588 }
589break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700590 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000591
Jiri Slabybddc7152012-10-18 22:26:42 +0200592 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return i;
594}
595
Joe Petersona88a69c2009-01-02 13:40:53 +0000596/**
597 * process_echoes - write pending echo characters
598 * @tty: terminal device
599 *
600 * Write previously buffered echo (and other ldisc-generated)
601 * characters to the tty.
602 *
603 * Characters generated by the ldisc (including echoes) need to
604 * be buffered because the driver's write buffer can fill during
605 * heavy program output. Echoing straight to the driver will
606 * often fail under these conditions, causing lost characters and
607 * resulting mismatches of ldisc state information.
608 *
609 * Since the ldisc state must represent the characters actually sent
610 * to the driver at the time of the write, operations like certain
611 * changes in column state are also saved in the buffer and executed
612 * here.
613 *
614 * A circular fifo buffer is used so that the most recent characters
615 * are prioritized. Also, when control characters are echoed with a
616 * prefixed "^", the pair is treated atomically and thus not separated.
617 *
Peter Hurley019ebdf2013-06-15 10:04:25 -0400618 * Locking: callers must hold output_lock
Joe Petersona88a69c2009-01-02 13:40:53 +0000619 */
620
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400621static size_t __process_echoes(struct tty_struct *tty)
Joe Petersona88a69c2009-01-02 13:40:53 +0000622{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200623 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400624 int space, old_space;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400625 size_t tail;
Joe Petersona88a69c2009-01-02 13:40:53 +0000626 unsigned char c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000627
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400628 old_space = space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000629
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400630 tail = ldata->echo_tail;
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900631 while (MASK(ldata->echo_commit) != MASK(tail)) {
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400632 c = echo_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +0000633 if (c == ECHO_OP_START) {
634 unsigned char op;
Joe Petersona88a69c2009-01-02 13:40:53 +0000635 int no_space_left = 0;
636
637 /*
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900638 * Since add_echo_byte() is called without holding
639 * output_lock, we might see only portion of multi-byte
640 * operation.
641 */
642 if (MASK(ldata->echo_commit) == MASK(tail + 1))
643 goto not_yet_stored;
644 /*
Joe Petersona88a69c2009-01-02 13:40:53 +0000645 * If the buffer byte is the start of a multi-byte
646 * operation, get the next byte, which is either the
647 * op code or a control character value.
648 */
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400649 op = echo_buf(ldata, tail + 1);
Alan Cox300a6202009-01-02 13:41:04 +0000650
Joe Petersona88a69c2009-01-02 13:40:53 +0000651 switch (op) {
Kees Cooke24cd4e2020-02-19 22:23:13 -0800652 case ECHO_OP_ERASE_TAB: {
Joe Petersona88a69c2009-01-02 13:40:53 +0000653 unsigned int num_chars, num_bs;
654
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900655 if (MASK(ldata->echo_commit) == MASK(tail + 2))
656 goto not_yet_stored;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400657 num_chars = echo_buf(ldata, tail + 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000658
659 /*
660 * Determine how many columns to go back
661 * in order to erase the tab.
662 * This depends on the number of columns
663 * used by other characters within the tab
664 * area. If this (modulo 8) count is from
665 * the start of input rather than from a
666 * previous tab, we offset by canon column.
667 * Otherwise, tab spacing is normal.
668 */
669 if (!(num_chars & 0x80))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200670 num_chars += ldata->canon_column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000671 num_bs = 8 - (num_chars & 7);
672
673 if (num_bs > space) {
674 no_space_left = 1;
675 break;
676 }
677 space -= num_bs;
678 while (num_bs--) {
679 tty_put_char(tty, '\b');
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200680 if (ldata->column > 0)
681 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000682 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400683 tail += 3;
Joe Petersona88a69c2009-01-02 13:40:53 +0000684 break;
Kees Cooke24cd4e2020-02-19 22:23:13 -0800685 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000686 case ECHO_OP_SET_CANON_COL:
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200687 ldata->canon_column = ldata->column;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400688 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000689 break;
690
691 case ECHO_OP_MOVE_BACK_COL:
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200692 if (ldata->column > 0)
693 ldata->column--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400694 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000695 break;
696
697 case ECHO_OP_START:
698 /* This is an escaped echo op start code */
699 if (!space) {
700 no_space_left = 1;
701 break;
702 }
703 tty_put_char(tty, ECHO_OP_START);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200704 ldata->column++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000705 space--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400706 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000707 break;
708
709 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000710 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600711 * If the op is not a special byte code,
712 * it is a ctrl char tagged to be echoed
713 * as "^X" (where X is the letter
714 * representing the control char).
715 * Note that we must ensure there is
716 * enough space for the whole ctrl pair.
717 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000718 */
Joe Peterson62b26352009-09-09 15:03:47 -0600719 if (space < 2) {
720 no_space_left = 1;
721 break;
722 }
723 tty_put_char(tty, '^');
724 tty_put_char(tty, op ^ 0100);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200725 ldata->column += 2;
Joe Peterson62b26352009-09-09 15:03:47 -0600726 space -= 2;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400727 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000728 }
729
730 if (no_space_left)
731 break;
732 } else {
Peter Hurley582f5592013-05-17 12:49:48 -0400733 if (O_OPOST(tty)) {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600734 int retval = do_output_char(c, tty, space);
735 if (retval < 0)
736 break;
737 space -= retval;
738 } else {
739 if (!space)
740 break;
741 tty_put_char(tty, c);
742 space -= 1;
743 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400744 tail += 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000745 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000746 }
747
Peter Hurleycbfd0342013-06-15 10:04:26 -0400748 /* If the echo buffer is nearly full (so that the possibility exists
749 * of echo overrun before the next commit), then discard enough
750 * data at the tail to prevent a subsequent overrun */
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900751 while (ldata->echo_commit > tail &&
752 ldata->echo_commit - tail >= ECHO_DISCARD_WATERMARK) {
Roel Kluinc476f652013-10-11 22:08:49 +0200753 if (echo_buf(ldata, tail) == ECHO_OP_START) {
Peter Hurley6f222532013-11-08 09:42:18 -0500754 if (echo_buf(ldata, tail + 1) == ECHO_OP_ERASE_TAB)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400755 tail += 3;
756 else
757 tail += 2;
758 } else
759 tail++;
760 }
761
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900762 not_yet_stored:
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400763 ldata->echo_tail = tail;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400764 return old_space - space;
Joe Petersona88a69c2009-01-02 13:40:53 +0000765}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Peter Hurley17bd7902013-06-15 10:04:24 -0400767static void commit_echoes(struct tty_struct *tty)
768{
769 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400770 size_t nr, old, echoed;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400771 size_t head;
772
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900773 mutex_lock(&ldata->output_lock);
Peter Hurleycbfd0342013-06-15 10:04:26 -0400774 head = ldata->echo_head;
Peter Hurley1075a6e2013-12-09 18:06:07 -0500775 ldata->echo_mark = head;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400776 old = ldata->echo_commit - ldata->echo_tail;
777
778 /* Process committed echoes if the accumulated # of bytes
779 * is over the threshold (and try again each time another
780 * block is accumulated) */
781 nr = head - ldata->echo_tail;
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900782 if (nr < ECHO_COMMIT_WATERMARK ||
783 (nr % ECHO_BLOCK > old % ECHO_BLOCK)) {
784 mutex_unlock(&ldata->output_lock);
Peter Hurleycbfd0342013-06-15 10:04:26 -0400785 return;
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900786 }
Peter Hurley17bd7902013-06-15 10:04:24 -0400787
Peter Hurleycbfd0342013-06-15 10:04:26 -0400788 ldata->echo_commit = head;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400789 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400790 mutex_unlock(&ldata->output_lock);
791
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400792 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400793 tty->ops->flush_chars(tty);
794}
795
796static void process_echoes(struct tty_struct *tty)
797{
798 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400799 size_t echoed;
Peter Hurley019ebdf2013-06-15 10:04:25 -0400800
Peter Hurleye2613be2014-02-11 16:34:55 -0500801 if (ldata->echo_mark == ldata->echo_tail)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400802 return;
803
804 mutex_lock(&ldata->output_lock);
Peter Hurley1075a6e2013-12-09 18:06:07 -0500805 ldata->echo_commit = ldata->echo_mark;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400806 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400807 mutex_unlock(&ldata->output_lock);
808
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400809 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400810 tty->ops->flush_chars(tty);
Peter Hurley17bd7902013-06-15 10:04:24 -0400811}
812
Peter Hurley1075a6e2013-12-09 18:06:07 -0500813/* NB: echo_mark and echo_head should be equivalent here */
Peter Hurleycbfd0342013-06-15 10:04:26 -0400814static void flush_echoes(struct tty_struct *tty)
815{
816 struct n_tty_data *ldata = tty->disc_data;
817
Peter Hurley39434ab2013-11-29 12:56:10 -0500818 if ((!L_ECHO(tty) && !L_ECHONL(tty)) ||
819 ldata->echo_commit == ldata->echo_head)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400820 return;
821
822 mutex_lock(&ldata->output_lock);
823 ldata->echo_commit = ldata->echo_head;
824 __process_echoes(tty);
825 mutex_unlock(&ldata->output_lock);
826}
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000829 * add_echo_byte - add a byte to the echo buffer
830 * @c: unicode byte to echo
Jiri Slaby57c94122012-10-18 22:26:43 +0200831 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000832 *
833 * Add a character or operation byte to the echo buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000834 */
835
Peter Hurleycbfd0342013-06-15 10:04:26 -0400836static inline void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000837{
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900838 *echo_buf_addr(ldata, ldata->echo_head) = c;
839 smp_wmb(); /* Matches smp_rmb() in echo_buf(). */
840 ldata->echo_head++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000841}
842
843/**
844 * echo_move_back_col - add operation to move back a column
Jiri Slaby57c94122012-10-18 22:26:43 +0200845 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000846 *
847 * Add an operation to the echo buffer to move back one column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000848 */
849
Jiri Slaby57c94122012-10-18 22:26:43 +0200850static void echo_move_back_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000851{
Jiri Slaby57c94122012-10-18 22:26:43 +0200852 add_echo_byte(ECHO_OP_START, ldata);
853 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000854}
855
856/**
857 * echo_set_canon_col - add operation to set the canon column
Jiri Slaby57c94122012-10-18 22:26:43 +0200858 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000859 *
860 * Add an operation to the echo buffer to set the canon column
861 * to the current column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000862 */
863
Jiri Slaby57c94122012-10-18 22:26:43 +0200864static void echo_set_canon_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000865{
Jiri Slaby57c94122012-10-18 22:26:43 +0200866 add_echo_byte(ECHO_OP_START, ldata);
867 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000868}
869
870/**
871 * echo_erase_tab - add operation to erase a tab
872 * @num_chars: number of character columns already used
873 * @after_tab: true if num_chars starts after a previous tab
Jiri Slaby57c94122012-10-18 22:26:43 +0200874 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000875 *
876 * Add an operation to the echo buffer to erase a tab.
877 *
878 * Called by the eraser function, which knows how many character
879 * columns have been used since either a previous tab or the start
880 * of input. This information will be used later, along with
881 * canon column (if applicable), to go back the correct number
882 * of columns.
Joe Petersona88a69c2009-01-02 13:40:53 +0000883 */
884
885static void echo_erase_tab(unsigned int num_chars, int after_tab,
Jiri Slaby57c94122012-10-18 22:26:43 +0200886 struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000887{
Jiri Slaby57c94122012-10-18 22:26:43 +0200888 add_echo_byte(ECHO_OP_START, ldata);
889 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000890
891 /* We only need to know this modulo 8 (tab spacing) */
892 num_chars &= 7;
893
894 /* Set the high bit as a flag if num_chars is after a previous tab */
895 if (after_tab)
896 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000897
Jiri Slaby57c94122012-10-18 22:26:43 +0200898 add_echo_byte(num_chars, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000899}
900
901/**
902 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 * @c: unicode byte to echo
Jiri Slaby724ac072020-08-18 10:56:52 +0200904 * @ldata: line disc data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 *
Alan Cox4edf1822008-02-08 04:18:44 -0800906 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100908 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000909 * This variant does not treat control characters specially.
Joe Petersona88a69c2009-01-02 13:40:53 +0000910 */
911
Jiri Slaby57c94122012-10-18 22:26:43 +0200912static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000913{
Joe Petersona88a69c2009-01-02 13:40:53 +0000914 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200915 add_echo_byte(ECHO_OP_START, ldata);
916 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000917 } else {
Jiri Slaby57c94122012-10-18 22:26:43 +0200918 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000919 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000920}
921
922/**
923 * echo_char - echo a character
924 * @c: unicode byte to echo
925 * @tty: terminal device
926 *
927 * Echo user input back onto the screen. This must be called only when
928 * L_ECHO(tty) is true. Called from the driver receive_buf path.
929 *
Joe Peterson62b26352009-09-09 15:03:47 -0600930 * This variant tags control characters to be echoed as "^X"
931 * (where X is the letter representing the control char).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 */
933
934static void echo_char(unsigned char c, struct tty_struct *tty)
935{
Jiri Slabybddc7152012-10-18 22:26:42 +0200936 struct n_tty_data *ldata = tty->disc_data;
937
Joe Petersona88a69c2009-01-02 13:40:53 +0000938 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200939 add_echo_byte(ECHO_OP_START, ldata);
940 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000941 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600942 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Jiri Slaby57c94122012-10-18 22:26:43 +0200943 add_echo_byte(ECHO_OP_START, ldata);
944 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Alan Cox17b82062008-10-13 10:45:06 +0100948/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000949 * finish_erasing - complete erase
Jiri Slaby57c94122012-10-18 22:26:43 +0200950 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100951 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000952
Jiri Slaby57c94122012-10-18 22:26:43 +0200953static inline void finish_erasing(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200955 if (ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200956 echo_char_raw('/', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200957 ldata->erasing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959}
960
961/**
962 * eraser - handle erase function
963 * @c: character input
964 * @tty: terminal device
965 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200966 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 * present in the stream from the driver layer. Handles the complexities
968 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100969 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400970 * n_tty_receive_buf()/producer path:
971 * caller holds non-exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 */
Alan Cox4edf1822008-02-08 04:18:44 -0800973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974static void eraser(unsigned char c, struct tty_struct *tty)
975{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200976 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 enum { ERASE, WERASE, KILL } kill_type;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400978 size_t head;
979 size_t cnt;
980 int seen_alnums;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200982 if (ldata->read_head == ldata->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000983 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return;
985 }
986 if (c == ERASE_CHAR(tty))
987 kill_type = ERASE;
988 else if (c == WERASE_CHAR(tty))
989 kill_type = WERASE;
990 else {
991 if (!L_ECHO(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200992 ldata->read_head = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return;
994 }
995 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200996 ldata->read_head = ldata->canon_head;
Jiri Slaby57c94122012-10-18 22:26:43 +0200997 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 echo_char(KILL_CHAR(tty), tty);
999 /* Add a newline if ECHOK is on and ECHOKE is off. */
1000 if (L_ECHOK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001001 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 return;
1003 }
1004 kill_type = KILL;
1005 }
1006
1007 seen_alnums = 0;
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001008 while (MASK(ldata->read_head) != MASK(ldata->canon_head)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001009 head = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 /* erase a single possibly multibyte character */
1012 do {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001013 head--;
1014 c = read_buf(ldata, head);
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001015 } while (is_continuation(c, tty) &&
1016 MASK(head) != MASK(ldata->canon_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 /* do not partially erase */
1019 if (is_continuation(c, tty))
1020 break;
1021
1022 if (kill_type == WERASE) {
1023 /* Equivalent to BSD's ALTWERASE. */
1024 if (isalnum(c) || c == '_')
1025 seen_alnums++;
1026 else if (seen_alnums)
1027 break;
1028 }
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001029 cnt = ldata->read_head - head;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001030 ldata->read_head = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (L_ECHO(tty)) {
1032 if (L_ECHOPRT(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001033 if (!ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001034 echo_char_raw('\\', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001035 ldata->erasing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037 /* if cnt > 1, output a multi-byte character */
1038 echo_char(c, tty);
1039 while (--cnt > 0) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001040 head++;
1041 echo_char_raw(read_buf(ldata, head), ldata);
Jiri Slaby57c94122012-10-18 22:26:43 +02001042 echo_move_back_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1045 echo_char(ERASE_CHAR(tty), tty);
1046 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +00001047 unsigned int num_chars = 0;
1048 int after_tab = 0;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001049 size_t tail = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Joe Petersona88a69c2009-01-02 13:40:53 +00001051 /*
1052 * Count the columns used for characters
1053 * since the start of input or after a
1054 * previous tab.
1055 * This info is used to go back the correct
1056 * number of columns.
1057 */
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001058 while (MASK(tail) != MASK(ldata->canon_head)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001059 tail--;
1060 c = read_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +00001061 if (c == '\t') {
1062 after_tab = 1;
1063 break;
Alan Cox300a6202009-01-02 13:41:04 +00001064 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +00001066 num_chars += 2;
1067 } else if (!is_continuation(c, tty)) {
1068 num_chars++;
1069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001071 echo_erase_tab(num_chars, after_tab, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 } else {
1073 if (iscntrl(c) && L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001074 echo_char_raw('\b', ldata);
1075 echo_char_raw(' ', ldata);
1076 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
1078 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001079 echo_char_raw('\b', ldata);
1080 echo_char_raw(' ', ldata);
1081 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083 }
1084 }
1085 if (kill_type == ERASE)
1086 break;
1087 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001088 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001089 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
1092/**
1093 * isig - handle the ISIG optio
1094 * @sig: signal
1095 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001097 * Called when a signal is being sent due to terminal input.
1098 * Called from the driver receive_buf path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001099 *
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001100 * Performs input and output flush if !NOFLSH. In this context, the echo
1101 * buffer is 'output'. The signal is processed first to alert any current
1102 * readers or writers to discontinue and exit their i/o loops.
1103 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001104 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 */
Alan Cox4edf1822008-02-08 04:18:44 -08001106
Peter Hurley3b19e032015-06-27 09:21:32 -04001107static void __isig(int sig, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Peter Hurley8c985d12013-03-06 08:38:19 -05001109 struct pid *tty_pgrp = tty_get_pgrp(tty);
1110 if (tty_pgrp) {
1111 kill_pgrp(tty_pgrp, sig, 1);
1112 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
Peter Hurley3b19e032015-06-27 09:21:32 -04001114}
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001115
Peter Hurley3b19e032015-06-27 09:21:32 -04001116static void isig(int sig, struct tty_struct *tty)
1117{
1118 struct n_tty_data *ldata = tty->disc_data;
1119
1120 if (L_NOFLSH(tty)) {
1121 /* signal only */
1122 __isig(sig, tty);
1123
1124 } else { /* signal and flush */
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001125 up_read(&tty->termios_rwsem);
1126 down_write(&tty->termios_rwsem);
1127
Peter Hurley3b19e032015-06-27 09:21:32 -04001128 __isig(sig, tty);
1129
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001130 /* clear echo buffer */
1131 mutex_lock(&ldata->output_lock);
1132 ldata->echo_head = ldata->echo_tail = 0;
1133 ldata->echo_mark = ldata->echo_commit = 0;
1134 mutex_unlock(&ldata->output_lock);
1135
1136 /* clear output buffer */
1137 tty_driver_flush_buffer(tty);
1138
1139 /* clear input buffer */
1140 reset_buffer_flags(tty->disc_data);
1141
1142 /* notify pty master of flush */
1143 if (tty->link)
1144 n_tty_packet_mode_flush(tty);
1145
1146 up_write(&tty->termios_rwsem);
1147 down_read(&tty->termios_rwsem);
1148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
1151/**
1152 * n_tty_receive_break - handle break
1153 * @tty: terminal
1154 *
1155 * An RS232 break event has been hit in the incoming bitstream. This
1156 * can cause a variety of events depending upon the termios settings.
1157 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001158 * n_tty_receive_buf()/producer path:
1159 * caller holds non-exclusive termios_rwsem
Peter Hurley6d76bd22013-06-15 09:14:26 -04001160 *
1161 * Note: may get exclusive termios_rwsem if flushing input buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 */
Alan Cox4edf1822008-02-08 04:18:44 -08001163
Peter Hurley4b293492013-07-24 08:29:55 -04001164static void n_tty_receive_break(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
Jiri Slaby57c94122012-10-18 22:26:43 +02001166 struct n_tty_data *ldata = tty->disc_data;
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (I_IGNBRK(tty))
1169 return;
1170 if (I_BRKINT(tty)) {
Peter Hurley8c985d12013-03-06 08:38:19 -05001171 isig(SIGINT, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return;
1173 }
1174 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001175 put_tty_queue('\377', ldata);
1176 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001178 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181/**
1182 * n_tty_receive_overrun - handle overrun reporting
1183 * @tty: terminal
1184 *
1185 * Data arrived faster than we could process it. While the tty
1186 * driver has flagged this the bits that were missed are gone
1187 * forever.
1188 *
1189 * Called from the receive_buf path so single threaded. Does not
1190 * need locking as num_overrun and overrun_time are function
1191 * private.
1192 */
Alan Cox4edf1822008-02-08 04:18:44 -08001193
Peter Hurley4b293492013-07-24 08:29:55 -04001194static void n_tty_receive_overrun(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001196 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001198 ldata->num_overrun++;
1199 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1200 time_after(ldata->overrun_time, jiffies)) {
Peter Hurley339f36b2015-11-08 13:01:13 -05001201 tty_warn(tty, "%d input overrun(s)\n", ldata->num_overrun);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001202 ldata->overrun_time = jiffies;
1203 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
1205}
1206
1207/**
1208 * n_tty_receive_parity_error - error notifier
1209 * @tty: terminal device
1210 * @c: character
1211 *
1212 * Process a parity error and queue the right data to indicate
Peter Hurley6d76bd22013-06-15 09:14:26 -04001213 * the error case if necessary.
1214 *
1215 * n_tty_receive_buf()/producer path:
1216 * caller holds non-exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 */
Peter Hurley4b293492013-07-24 08:29:55 -04001218static void n_tty_receive_parity_error(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Jiri Slaby57c94122012-10-18 22:26:43 +02001220 struct n_tty_data *ldata = tty->disc_data;
1221
Peter Hurley66528f92014-06-16 08:10:42 -04001222 if (I_INPCK(tty)) {
1223 if (I_IGNPAR(tty))
1224 return;
1225 if (I_PARMRK(tty)) {
1226 put_tty_queue('\377', ldata);
1227 put_tty_queue('\0', ldata);
1228 put_tty_queue(c, ldata);
1229 } else
1230 put_tty_queue('\0', ldata);
1231 } else
Jiri Slaby57c94122012-10-18 22:26:43 +02001232 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001235static void
1236n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c)
1237{
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001238 isig(signal, tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001239 if (I_IXON(tty))
1240 start_tty(tty);
1241 if (L_ECHO(tty)) {
1242 echo_char(c, tty);
1243 commit_echoes(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001244 } else
1245 process_echoes(tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001246 return;
1247}
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249/**
1250 * n_tty_receive_char - perform processing
1251 * @tty: terminal device
1252 * @c: character
1253 *
1254 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001255 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 * driver above.
Peter Hurley6d76bd22013-06-15 09:14:26 -04001257 *
1258 * n_tty_receive_buf()/producer path:
1259 * caller holds non-exclusive termios_rwsem
1260 * publishes canon_head if canonical mode is active
Peter Hurleye60d27c2013-07-24 08:29:56 -04001261 *
1262 * Returns 1 if LNEXT was received, else returns 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 */
1264
Peter Hurleye60d27c2013-07-24 08:29:56 -04001265static int
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001266n_tty_receive_char_special(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001268 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (I_IXON(tty)) {
1271 if (c == START_CHAR(tty)) {
1272 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001273 process_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001274 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
1276 if (c == STOP_CHAR(tty)) {
1277 stop_tty(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 }
1280 }
Joe Peterson575537b32008-04-30 00:53:30 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (L_ISIG(tty)) {
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001283 if (c == INTR_CHAR(tty)) {
1284 n_tty_receive_signal_char(tty, SIGINT, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001285 return 0;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001286 } else if (c == QUIT_CHAR(tty)) {
1287 n_tty_receive_signal_char(tty, SIGQUIT, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001288 return 0;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001289 } else if (c == SUSP_CHAR(tty)) {
1290 n_tty_receive_signal_char(tty, SIGTSTP, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001291 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293 }
Joe Peterson575537b32008-04-30 00:53:30 -07001294
Peter Hurley855df3c2013-07-24 08:29:50 -04001295 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1296 start_tty(tty);
1297 process_echoes(tty);
1298 }
1299
Joe Peterson575537b32008-04-30 00:53:30 -07001300 if (c == '\r') {
1301 if (I_IGNCR(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001302 return 0;
Joe Peterson575537b32008-04-30 00:53:30 -07001303 if (I_ICRNL(tty))
1304 c = '\n';
1305 } else if (c == '\n' && I_INLCR(tty))
1306 c = '\r';
1307
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001308 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1310 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1311 eraser(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001312 commit_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001313 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
1315 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001316 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001318 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001320 echo_char_raw('^', ldata);
1321 echo_char_raw('\b', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001322 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
1324 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001325 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001327 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001328 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Jiri Slaby57c94122012-10-18 22:26:43 +02001330 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001332 echo_char_raw('\n', ldata);
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001333 while (MASK(tail) != MASK(ldata->read_head)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001334 echo_char(read_buf(ldata, tail), tty);
1335 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001337 commit_echoes(tty);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340 if (c == '\n') {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001341 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001342 echo_char_raw('\n', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001343 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345 goto handle_newline;
1346 }
1347 if (c == EOF_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 c = __DISABLED_CHAR;
1349 goto handle_newline;
1350 }
1351 if ((c == EOL_CHAR(tty)) ||
1352 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1353 /*
1354 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1355 */
1356 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001358 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001359 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 echo_char(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001361 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
1363 /*
1364 * XXX does PARMRK doubling happen for
1365 * EOL_CHAR and EOL2_CHAR?
1366 */
Peter Hurley001ba922013-12-02 14:24:44 -05001367 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001368 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Alan Cox4edf1822008-02-08 04:18:44 -08001370handle_newline:
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001371 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Peter Hurley6d76bd22013-06-15 09:14:26 -04001372 put_tty_queue(c, ldata);
Peter Hurley70aca712015-01-16 15:05:37 -05001373 smp_store_release(&ldata->canon_head, ldata->read_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001375 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001376 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378 }
Alan Cox4edf1822008-02-08 04:18:44 -08001379
Joe Petersonacc71bb2009-01-02 13:43:32 +00001380 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001381 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001383 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 else {
1385 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001386 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001387 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 echo_char(c, tty);
1389 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001390 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392
Peter Hurley001ba922013-12-02 14:24:44 -05001393 /* PARMRK doubling check */
1394 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001395 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Jiri Slaby57c94122012-10-18 22:26:43 +02001397 put_tty_queue(c, ldata);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001398 return 0;
Alan Cox4edf1822008-02-08 04:18:44 -08001399}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Peter Hurleye60d27c2013-07-24 08:29:56 -04001401static inline void
1402n_tty_receive_char_inline(struct tty_struct *tty, unsigned char c)
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001403{
1404 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001405
Peter Hurleye60d27c2013-07-24 08:29:56 -04001406 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1407 start_tty(tty);
1408 process_echoes(tty);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001409 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001410 if (L_ECHO(tty)) {
1411 finish_erasing(ldata);
1412 /* Record the column of first canon char. */
1413 if (ldata->canon_head == ldata->read_head)
1414 echo_set_canon_col(ldata);
1415 echo_char(c, tty);
1416 commit_echoes(tty);
1417 }
Peter Hurley001ba922013-12-02 14:24:44 -05001418 /* PARMRK doubling check */
1419 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001420 put_tty_queue(c, ldata);
1421 put_tty_queue(c, ldata);
1422}
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001423
Peter Hurleyeb3e4662013-12-02 14:24:42 -05001424static void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
Peter Hurleye60d27c2013-07-24 08:29:56 -04001425{
1426 n_tty_receive_char_inline(tty, c);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001427}
1428
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001429static inline void
Peter Hurley7de971b2013-07-24 08:29:53 -04001430n_tty_receive_char_fast(struct tty_struct *tty, unsigned char c)
1431{
1432 struct n_tty_data *ldata = tty->disc_data;
1433
Peter Hurleye60d27c2013-07-24 08:29:56 -04001434 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1435 start_tty(tty);
1436 process_echoes(tty);
Peter Hurley7de971b2013-07-24 08:29:53 -04001437 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001438 if (L_ECHO(tty)) {
1439 finish_erasing(ldata);
1440 /* Record the column of first canon char. */
1441 if (ldata->canon_head == ldata->read_head)
1442 echo_set_canon_col(ldata);
1443 echo_char(c, tty);
1444 commit_echoes(tty);
1445 }
1446 put_tty_queue(c, ldata);
Peter Hurley7de971b2013-07-24 08:29:53 -04001447}
1448
Peter Hurley8dc4b252013-12-02 14:24:43 -05001449static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001450{
1451 if (I_ISTRIP(tty))
1452 c &= 0x7f;
1453 if (I_IUCLC(tty) && L_IEXTEN(tty))
1454 c = tolower(c);
1455
1456 if (I_IXON(tty)) {
1457 if (c == STOP_CHAR(tty))
1458 stop_tty(tty);
1459 else if (c == START_CHAR(tty) ||
1460 (tty->stopped && !tty->flow_stopped && I_IXANY(tty) &&
1461 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) &&
1462 c != SUSP_CHAR(tty))) {
1463 start_tty(tty);
1464 process_echoes(tty);
1465 }
1466 }
1467}
1468
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001469static void
1470n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)
1471{
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001472 switch (flag) {
1473 case TTY_BREAK:
1474 n_tty_receive_break(tty);
1475 break;
1476 case TTY_PARITY:
1477 case TTY_FRAME:
1478 n_tty_receive_parity_error(tty, c);
1479 break;
1480 case TTY_OVERRUN:
1481 n_tty_receive_overrun(tty);
1482 break;
1483 default:
Peter Hurley339f36b2015-11-08 13:01:13 -05001484 tty_err(tty, "unknown flag %d\n", flag);
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001485 break;
1486 }
1487}
1488
Peter Hurleye60d27c2013-07-24 08:29:56 -04001489static void
1490n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag)
1491{
1492 struct n_tty_data *ldata = tty->disc_data;
1493
1494 ldata->lnext = 0;
1495 if (likely(flag == TTY_NORMAL)) {
1496 if (I_ISTRIP(tty))
1497 c &= 0x7f;
1498 if (I_IUCLC(tty) && L_IEXTEN(tty))
1499 c = tolower(c);
1500 n_tty_receive_char(tty, c);
1501 } else
1502 n_tty_receive_char_flagged(tty, c, flag);
1503}
1504
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001505static void
1506n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp,
1507 char *fp, int count)
1508{
1509 struct n_tty_data *ldata = tty->disc_data;
1510 size_t n, head;
1511
1512 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001513 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001514 memcpy(read_buf_addr(ldata, head), cp, n);
1515 ldata->read_head += n;
1516 cp += n;
1517 count -= n;
1518
1519 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001520 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001521 memcpy(read_buf_addr(ldata, head), cp, n);
1522 ldata->read_head += n;
1523}
1524
Peter Hurley554117bd2013-06-15 10:21:25 -04001525static void
1526n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp,
1527 char *fp, int count)
1528{
1529 struct n_tty_data *ldata = tty->disc_data;
1530 char flag = TTY_NORMAL;
1531
1532 while (count--) {
1533 if (fp)
1534 flag = *fp++;
1535 if (likely(flag == TTY_NORMAL))
1536 put_tty_queue(*cp++, ldata);
1537 else
1538 n_tty_receive_char_flagged(tty, *cp++, flag);
1539 }
1540}
1541
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001542static void
1543n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
1544 char *fp, int count)
1545{
1546 char flag = TTY_NORMAL;
1547
1548 while (count--) {
1549 if (fp)
1550 flag = *fp++;
1551 if (likely(flag == TTY_NORMAL))
1552 n_tty_receive_char_closing(tty, *cp++);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001553 }
1554}
1555
Peter Hurley7d88d632013-07-24 08:29:49 -04001556static void
1557n_tty_receive_buf_standard(struct tty_struct *tty, const unsigned char *cp,
Peter Hurley6baad002013-07-24 08:29:52 -04001558 char *fp, int count)
1559{
1560 struct n_tty_data *ldata = tty->disc_data;
1561 char flag = TTY_NORMAL;
1562
1563 while (count--) {
1564 if (fp)
1565 flag = *fp++;
1566 if (likely(flag == TTY_NORMAL)) {
1567 unsigned char c = *cp++;
1568
1569 if (I_ISTRIP(tty))
1570 c &= 0x7f;
1571 if (I_IUCLC(tty) && L_IEXTEN(tty))
1572 c = tolower(c);
1573 if (L_EXTPROC(tty)) {
1574 put_tty_queue(c, ldata);
1575 continue;
1576 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001577 if (!test_bit(c, ldata->char_map))
1578 n_tty_receive_char_inline(tty, c);
1579 else if (n_tty_receive_char_special(tty, c) && count) {
1580 if (fp)
1581 flag = *fp++;
1582 n_tty_receive_char_lnext(tty, *cp++, flag);
1583 count--;
1584 }
Peter Hurley6baad002013-07-24 08:29:52 -04001585 } else
1586 n_tty_receive_char_flagged(tty, *cp++, flag);
1587 }
1588}
1589
1590static void
1591n_tty_receive_buf_fast(struct tty_struct *tty, const unsigned char *cp,
1592 char *fp, int count)
Peter Hurley7d88d632013-07-24 08:29:49 -04001593{
Peter Hurleye60d27c2013-07-24 08:29:56 -04001594 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley7d88d632013-07-24 08:29:49 -04001595 char flag = TTY_NORMAL;
1596
1597 while (count--) {
1598 if (fp)
1599 flag = *fp++;
Peter Hurleye60d27c2013-07-24 08:29:56 -04001600 if (likely(flag == TTY_NORMAL)) {
1601 unsigned char c = *cp++;
1602
1603 if (!test_bit(c, ldata->char_map))
1604 n_tty_receive_char_fast(tty, c);
1605 else if (n_tty_receive_char_special(tty, c) && count) {
1606 if (fp)
1607 flag = *fp++;
1608 n_tty_receive_char_lnext(tty, *cp++, flag);
1609 count--;
1610 }
1611 } else
Peter Hurley7d88d632013-07-24 08:29:49 -04001612 n_tty_receive_char_flagged(tty, *cp++, flag);
1613 }
1614}
1615
Peter Hurley24a89d12013-06-15 09:14:15 -04001616static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1617 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001619 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001620 bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001622 if (ldata->real_raw)
1623 n_tty_receive_buf_real_raw(tty, cp, fp, count);
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001624 else if (ldata->raw || (L_EXTPROC(tty) && !preops))
Peter Hurley554117bd2013-06-15 10:21:25 -04001625 n_tty_receive_buf_raw(tty, cp, fp, count);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001626 else if (tty->closing && !L_EXTPROC(tty))
1627 n_tty_receive_buf_closing(tty, cp, fp, count);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001628 else {
Peter Hurleye60d27c2013-07-24 08:29:56 -04001629 if (ldata->lnext) {
1630 char flag = TTY_NORMAL;
1631
1632 if (fp)
1633 flag = *fp++;
1634 n_tty_receive_char_lnext(tty, *cp++, flag);
1635 count--;
1636 }
1637
Peter Hurley7de971b2013-07-24 08:29:53 -04001638 if (!preops && !I_PARMRK(tty))
Peter Hurley6baad002013-07-24 08:29:52 -04001639 n_tty_receive_buf_fast(tty, cp, fp, count);
1640 else
1641 n_tty_receive_buf_standard(tty, cp, fp, count);
Peter Hurleycbfd0342013-06-15 10:04:26 -04001642
1643 flush_echoes(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001644 if (tty->ops->flush_chars)
1645 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
1647
Peter Hurley70aca712015-01-16 15:05:37 -05001648 if (ldata->icanon && !L_EXTPROC(tty))
1649 return;
1650
1651 /* publish read_head to consumer */
1652 smp_store_release(&ldata->commit_head, ldata->read_head);
1653
Peter Hurley33d71362016-01-09 21:45:08 -08001654 if (read_cnt(ldata)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001656 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001660/**
1661 * n_tty_receive_buf_common - process input
1662 * @tty: device to receive input
1663 * @cp: input chars
1664 * @fp: flags for each char (if NULL, all chars are TTY_NORMAL)
1665 * @count: number of input chars in @cp
1666 *
1667 * Called by the terminal driver when a block of characters has
1668 * been received. This function must be called from soft contexts
1669 * not from interrupt context. The driver is responsible for making
1670 * calls one at a time and in order (or using flush_to_ldisc)
1671 *
1672 * Returns the # of input chars from @cp which were processed.
1673 *
1674 * In canonical mode, the maximum line length is 4096 chars (including
1675 * the line termination char); lines longer than 4096 chars are
1676 * truncated. After 4095 chars, input data is still processed but
1677 * not stored. Overflow processing ensures the tty can always
1678 * receive more input until at least one line can be read.
1679 *
1680 * In non-canonical mode, the read buffer will only accept 4095 chars;
1681 * this provides the necessary space for a newline char if the input
1682 * mode is switched to canonical.
1683 *
1684 * Note it is possible for the read buffer to _contain_ 4096 chars
1685 * in non-canonical mode: the read buffer could already contain the
1686 * maximum canon line of 4096 chars when the mode is switched to
1687 * non-canonical.
1688 *
1689 * n_tty_receive_buf()/producer path:
1690 * claims non-exclusive termios_rwsem
1691 * publishes commit_head or canon_head
1692 */
Peter Hurley5c32d122013-12-02 14:24:41 -05001693static int
1694n_tty_receive_buf_common(struct tty_struct *tty, const unsigned char *cp,
1695 char *fp, int count, int flow)
Peter Hurley24a89d12013-06-15 09:14:15 -04001696{
1697 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001698 int room, n, rcvd = 0, overflow;
Peter Hurley24a89d12013-06-15 09:14:15 -04001699
Peter Hurley9356b532013-06-15 09:14:24 -04001700 down_read(&tty->termios_rwsem);
1701
Dmitry Safonovc96cf922018-11-01 00:24:48 +00001702 do {
Peter Hurley70aca712015-01-16 15:05:37 -05001703 /*
Peter Hurley06c49f92015-01-16 15:05:38 -05001704 * When PARMRK is set, each input char may take up to 3 chars
1705 * in the read buf; reduce the buffer space avail by 3x
Peter Hurley70aca712015-01-16 15:05:37 -05001706 *
1707 * If we are doing input canonicalization, and there are no
1708 * pending newlines, let characters through without limit, so
1709 * that erase characters will be handled. Other excess
1710 * characters will be beeped.
1711 *
1712 * paired with store in *_copy_from_read_buf() -- guarantees
1713 * the consumer has loaded the data in read_buf up to the new
1714 * read_tail (so this producer will not overwrite unread data)
1715 */
1716 size_t tail = smp_load_acquire(&ldata->read_tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001717
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001718 room = N_TTY_BUF_SIZE - (ldata->read_head - tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001719 if (I_PARMRK(tty))
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001720 room = (room + 2) / 3;
1721 room--;
1722 if (room <= 0) {
1723 overflow = ldata->icanon && ldata->canon_head == tail;
1724 if (overflow && room < 0)
1725 ldata->read_head--;
1726 room = overflow;
1727 ldata->no_room = flow && !room;
1728 } else
1729 overflow = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05001730
Peter Hurley19e2ad62013-07-24 08:29:54 -04001731 n = min(count, room);
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001732 if (!n)
Peter Hurley19e2ad62013-07-24 08:29:54 -04001733 break;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001734
1735 /* ignore parity errors if handling overflow */
1736 if (!overflow || !fp || *fp != TTY_PARITY)
1737 __receive_buf(tty, cp, fp, n);
1738
Peter Hurley19e2ad62013-07-24 08:29:54 -04001739 cp += n;
1740 if (fp)
1741 fp += n;
1742 count -= n;
1743 rcvd += n;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00001744 } while (!test_bit(TTY_LDISC_CHANGING, &tty->flags));
Peter Hurley24a89d12013-06-15 09:14:15 -04001745
Peter Hurley19e2ad62013-07-24 08:29:54 -04001746 tty->receive_room = room;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001747
1748 /* Unthrottle if handling overflow on pty */
1749 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
1750 if (overflow) {
1751 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
1752 tty_unthrottle_safe(tty);
1753 __tty_set_flow_change(tty, 0);
1754 }
1755 } else
1756 n_tty_check_throttle(tty);
1757
Peter Hurley9356b532013-06-15 09:14:24 -04001758 up_read(&tty->termios_rwsem);
1759
Peter Hurley19e2ad62013-07-24 08:29:54 -04001760 return rcvd;
Peter Hurley24a89d12013-06-15 09:14:15 -04001761}
1762
Peter Hurley5c32d122013-12-02 14:24:41 -05001763static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1764 char *fp, int count)
1765{
1766 n_tty_receive_buf_common(tty, cp, fp, count, 0);
1767}
1768
1769static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1770 char *fp, int count)
1771{
1772 return n_tty_receive_buf_common(tty, cp, fp, count, 1);
1773}
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775/**
1776 * n_tty_set_termios - termios data changed
1777 * @tty: terminal
1778 * @old: previous data
1779 *
1780 * Called by the tty layer when the user changes termios flags so
1781 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001782 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 * guaranteed that this function will not be re-entered or in progress
1784 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001785 *
Peter Hurley6a1c0682013-06-15 09:14:23 -04001786 * Locking: Caller holds tty->termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 */
Alan Cox4edf1822008-02-08 04:18:44 -08001788
1789static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001791 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001792
Linus Torvalds966031f2017-12-20 17:57:06 -08001793 if (!old || (old->c_lflag ^ tty->termios.c_lflag) & (ICANON | EXTPROC)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001794 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -05001795 ldata->line_start = ldata->read_tail;
1796 if (!L_ICANON(tty) || !read_cnt(ldata)) {
1797 ldata->canon_head = ldata->read_tail;
1798 ldata->push = 0;
1799 } else {
1800 set_bit((ldata->read_head - 1) & (N_TTY_BUF_SIZE - 1),
1801 ldata->read_flags);
1802 ldata->canon_head = ldata->read_head;
1803 ldata->push = 1;
1804 }
Peter Hurley70aca712015-01-16 15:05:37 -05001805 ldata->commit_head = ldata->read_head;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001806 ldata->erasing = 0;
Peter Hurley6f9b0282013-06-15 09:14:27 -04001807 ldata->lnext = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001808 }
1809
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001810 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1813 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1814 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1815 I_PARMRK(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001816 bitmap_zero(ldata->char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
1818 if (I_IGNCR(tty) || I_ICRNL(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001819 set_bit('\r', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 if (I_INLCR(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001821 set_bit('\n', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 if (L_ICANON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001824 set_bit(ERASE_CHAR(tty), ldata->char_map);
1825 set_bit(KILL_CHAR(tty), ldata->char_map);
1826 set_bit(EOF_CHAR(tty), ldata->char_map);
1827 set_bit('\n', ldata->char_map);
1828 set_bit(EOL_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 if (L_IEXTEN(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001830 set_bit(WERASE_CHAR(tty), ldata->char_map);
1831 set_bit(LNEXT_CHAR(tty), ldata->char_map);
1832 set_bit(EOL2_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (L_ECHO(tty))
1834 set_bit(REPRINT_CHAR(tty),
Peter Hurley1bb9d562013-06-15 10:21:20 -04001835 ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837 }
1838 if (I_IXON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001839 set_bit(START_CHAR(tty), ldata->char_map);
1840 set_bit(STOP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842 if (L_ISIG(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001843 set_bit(INTR_CHAR(tty), ldata->char_map);
1844 set_bit(QUIT_CHAR(tty), ldata->char_map);
1845 set_bit(SUSP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
Peter Hurley1bb9d562013-06-15 10:21:20 -04001847 clear_bit(__DISABLED_CHAR, ldata->char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001848 ldata->raw = 0;
1849 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001851 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1853 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1854 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001855 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001857 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001859 /*
1860 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1861 * been stopped by STOP_CHAR(tty) before it.
1862 */
Peter Hurleye2613be2014-02-11 16:34:55 -05001863 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
Wang YanQingdab73b42013-05-09 14:16:47 +08001864 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001865 process_echoes(tty);
1866 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001867
Alan Coxf34d7a52008-04-30 00:54:13 -07001868 /* The termios change make the tty ready for I/O */
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001869 wake_up_interruptible(&tty->write_wait);
1870 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
1873/**
1874 * n_tty_close - close the ldisc for this tty
1875 * @tty: device
1876 *
Alan Cox4edf1822008-02-08 04:18:44 -08001877 * Called from the terminal layer when this line discipline is
1878 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 * discipline change. The function will not be called while other
1880 * ldisc methods are in progress.
1881 */
Alan Cox4edf1822008-02-08 04:18:44 -08001882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883static void n_tty_close(struct tty_struct *tty)
1884{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001885 struct n_tty_data *ldata = tty->disc_data;
1886
Peter Hurley79901312013-03-11 16:44:23 -04001887 if (tty->link)
1888 n_tty_packet_mode_flush(tty);
1889
Peter Hurley20bafb32013-06-15 10:21:19 -04001890 vfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001891 tty->disc_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892}
1893
1894/**
1895 * n_tty_open - open an ldisc
1896 * @tty: terminal to open
1897 *
Alan Cox4edf1822008-02-08 04:18:44 -08001898 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 * terminal device. Can sleep. Called serialized so that no
1900 * other events will occur in parallel. No further open will occur
1901 * until a close.
1902 */
1903
1904static int n_tty_open(struct tty_struct *tty)
1905{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001906 struct n_tty_data *ldata;
1907
Peter Hurley20bafb32013-06-15 10:21:19 -04001908 /* Currently a malloc failure here can panic */
Tetsuo Handaebec3f82018-05-26 09:53:14 +09001909 ldata = vzalloc(sizeof(*ldata));
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001910 if (!ldata)
Tetsuo Handaebec3f82018-05-26 09:53:14 +09001911 return -ENOMEM;
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001912
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001913 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001914 mutex_init(&ldata->atomic_read_lock);
1915 mutex_init(&ldata->output_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001916
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001917 tty->disc_data = ldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001919 /* indicate buffer work may resume */
1920 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1921 n_tty_set_termios(tty, NULL);
1922 tty_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 return 0;
1924}
1925
Peter Hurleyeafbe672013-12-02 14:24:45 -05001926static inline int input_available_p(struct tty_struct *tty, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001928 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya5934802014-02-11 11:49:58 -05001929 int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001930
Peter Hurley25e8d0e2014-02-11 18:55:30 -05001931 if (ldata->icanon && !L_EXTPROC(tty))
1932 return ldata->canon_head != ldata->read_tail;
1933 else
Peter Hurley70aca712015-01-16 15:05:37 -05001934 return ldata->commit_head - ldata->read_tail >= amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
1937/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001938 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 * @tty: terminal device
Linus Torvalds3b830a92021-01-18 13:31:30 -08001940 * @kbp: data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 * @nr: size of data
1942 *
Alan Cox11a96d12008-10-13 10:46:24 +01001943 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds3b830a92021-01-18 13:31:30 -08001944 * ICANON is off; it copies characters straight from the tty queue.
1945 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001946 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 *
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001948 * Returns true if it successfully copied data, but there is still
1949 * more data to be had.
1950 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001951 * n_tty_read()/consumer path:
1952 * caller holds non-exclusive termios_rwsem
1953 * read_tail published
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 */
Alan Cox4edf1822008-02-08 04:18:44 -08001955
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001956static bool copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds3b830a92021-01-18 13:31:30 -08001957 unsigned char **kbp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 size_t *nr)
1959
1960{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001961 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 size_t n;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001963 bool is_eof;
Peter Hurley70aca712015-01-16 15:05:37 -05001964 size_t head = smp_load_acquire(&ldata->commit_head);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001965 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Peter Hurley70aca712015-01-16 15:05:37 -05001967 n = min(head - ldata->read_tail, N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 n = min(*nr, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (n) {
Greg KHb97b3d92018-10-04 11:06:14 -07001970 unsigned char *from = read_buf_addr(ldata, tail);
Linus Torvalds3b830a92021-01-18 13:31:30 -08001971 memcpy(*kbp, from, n);
Peter Hurleye661cf72015-11-27 14:11:03 -05001972 is_eof = n == 1 && *from == EOF_CHAR(tty);
Peter Hurley309426a2016-01-09 22:55:27 -08001973 tty_audit_add_data(tty, from, n);
Greg KHb97b3d92018-10-04 11:06:14 -07001974 zero_buffer(tty, from, n);
Peter Hurley70aca712015-01-16 15:05:37 -05001975 smp_store_release(&ldata->read_tail, ldata->read_tail + n);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001976 /* Turn single EOF into zero-length read */
Peter Hurley70aca712015-01-16 15:05:37 -05001977 if (L_EXTPROC(tty) && ldata->icanon && is_eof &&
1978 (head == ldata->read_tail))
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001979 return false;
Linus Torvalds3b830a92021-01-18 13:31:30 -08001980 *kbp += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 *nr -= n;
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001982
1983 /* If we have more to copy, let the caller know */
1984 return head != ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 }
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001986 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987}
1988
Peter Hurley88bb0de2013-06-15 09:14:16 -04001989/**
Peter Hurley32f13522013-06-15 09:14:17 -04001990 * canon_copy_from_read_buf - copy read data in canonical mode
Peter Hurley88bb0de2013-06-15 09:14:16 -04001991 * @tty: terminal device
Linus Torvalds3b830a92021-01-18 13:31:30 -08001992 * @kbp: data
Peter Hurley88bb0de2013-06-15 09:14:16 -04001993 * @nr: size of data
1994 *
1995 * Helper function for n_tty_read. It is only called when ICANON is on;
Peter Hurley32f13522013-06-15 09:14:17 -04001996 * it copies one line of input up to and including the line-delimiting
Linus Torvalds3b830a92021-01-18 13:31:30 -08001997 * character into the result buffer.
Peter Hurley88bb0de2013-06-15 09:14:16 -04001998 *
Peter Hurley4d0ed182013-12-10 17:12:02 -05001999 * NB: When termios is changed from non-canonical to canonical mode and
2000 * the read buffer contains data, n_tty_set_termios() simulates an EOF
2001 * push (as if C-d were input) _without_ the DISABLED_CHAR in the buffer.
2002 * This causes data already processed as input to be immediately available
2003 * as input although a newline has not been received.
2004 *
Peter Hurley88bb0de2013-06-15 09:14:16 -04002005 * Called under the atomic_read_lock mutex
Peter Hurley6d76bd22013-06-15 09:14:26 -04002006 *
2007 * n_tty_read()/consumer path:
2008 * caller holds non-exclusive termios_rwsem
2009 * read_tail published
Peter Hurley88bb0de2013-06-15 09:14:16 -04002010 */
2011
Linus Torvalds64a698922021-01-19 13:46:28 -08002012static void canon_copy_from_read_buf(struct tty_struct *tty,
2013 unsigned char **kbp,
2014 size_t *nr)
Peter Hurley88bb0de2013-06-15 09:14:16 -04002015{
2016 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley32f13522013-06-15 09:14:17 -04002017 size_t n, size, more, c;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002018 size_t eol;
2019 size_t tail;
Linus Torvalds3b830a92021-01-18 13:31:30 -08002020 int found = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002021
2022 /* N.B. avoid overrun if nr == 0 */
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002023 if (!*nr)
Linus Torvalds64a698922021-01-19 13:46:28 -08002024 return;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002025
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002026 n = min(*nr + 1, smp_load_acquire(&ldata->canon_head) - ldata->read_tail);
2027
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002028 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Peter Hurley32f13522013-06-15 09:14:17 -04002029 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
2030
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002031 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04002032 __func__, *nr, tail, n, size);
2033
2034 eol = find_next_bit(ldata->read_flags, size, tail);
2035 more = n - (size - tail);
2036 if (eol == N_TTY_BUF_SIZE && more) {
2037 /* scan wrapped without finding set bit */
2038 eol = find_next_bit(ldata->read_flags, more, 0);
Peter Hurleyb985e9e2015-11-27 14:11:04 -05002039 found = eol != more;
2040 } else
2041 found = eol != size;
Peter Hurley32f13522013-06-15 09:14:17 -04002042
Peter Hurleyc77569d2013-11-22 07:16:25 -05002043 n = eol - tail;
Mark Tomlinsonda555db2015-05-18 12:01:48 +12002044 if (n > N_TTY_BUF_SIZE)
2045 n += N_TTY_BUF_SIZE;
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002046 c = n + found;
Peter Hurley32f13522013-06-15 09:14:17 -04002047
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05002048 if (!found || read_buf(ldata, eol) != __DISABLED_CHAR) {
2049 c = min(*nr, c);
2050 n = c;
Peter Hurley40d5e092013-06-15 10:21:17 -04002051 }
Peter Hurley32f13522013-06-15 09:14:17 -04002052
Peter Hurley679e7c22015-11-27 14:11:02 -05002053 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n",
2054 __func__, eol, found, n, c, tail, more);
Peter Hurley32f13522013-06-15 09:14:17 -04002055
Linus Torvalds3b830a92021-01-18 13:31:30 -08002056 tty_copy(tty, *kbp, tail, n);
2057 *kbp += n;
Peter Hurley32f13522013-06-15 09:14:17 -04002058 *nr -= n;
2059
Peter Hurleya73d3d62013-06-15 09:14:25 -04002060 if (found)
Peter Hurley6d76bd22013-06-15 09:14:26 -04002061 clear_bit(eol, ldata->read_flags);
Peter Hurley70aca712015-01-16 15:05:37 -05002062 smp_store_release(&ldata->read_tail, ldata->read_tail + c);
Peter Hurley88bb0de2013-06-15 09:14:16 -04002063
Peter Hurley40d5e092013-06-15 10:21:17 -04002064 if (found) {
Peter Hurley4d0ed182013-12-10 17:12:02 -05002065 if (!ldata->push)
2066 ldata->line_start = ldata->read_tail;
2067 else
2068 ldata->push = 0;
Peter Hurleyb50819f2016-01-09 22:55:30 -08002069 tty_audit_push();
Peter Hurley40d5e092013-06-15 10:21:17 -04002070 }
Peter Hurley88bb0de2013-06-15 09:14:16 -04002071}
2072
Al Virocc4191d2008-03-29 03:08:48 +00002073extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08002074 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076/**
2077 * job_control - check job control
2078 * @tty: tty
2079 * @file: file handle
2080 *
2081 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08002082 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07002084 *
Peter Hurley01a5e442013-03-06 08:38:20 -05002085 * Locking: redirected write test is safe
2086 * current->signal->tty check is safe
2087 * ctrl_lock to safely reference tty->pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 */
Alan Cox4edf1822008-02-08 04:18:44 -08002089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090static int job_control(struct tty_struct *tty, struct file *file)
2091{
2092 /* Job control check -- must be done at start and after
2093 every sleep (POSIX.1 7.1.1.4). */
2094 /* NOTE: not yet done after every sleep pending a thorough
2095 check of the logic of this change. -- jlc */
2096 /* don't stop on /dev/console */
Peter Hurley2812d9e2015-10-10 20:28:42 -04002097 if (file->f_op->write == redirected_tty_write)
Peter Hurley01a5e442013-03-06 08:38:20 -05002098 return 0;
2099
Peter Hurley2812d9e2015-10-10 20:28:42 -04002100 return __tty_check_change(tty, SIGTTIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
Alan Cox4edf1822008-02-08 04:18:44 -08002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104/**
Alan Cox11a96d12008-10-13 10:46:24 +01002105 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 * @tty: tty device
2107 * @file: file object
2108 * @buf: userspace buffer pointer
2109 * @nr: size of I/O
2110 *
2111 * Perform reads for the line discipline. We are guaranteed that the
2112 * line discipline will not be closed under us but we may get multiple
2113 * parallel readers and must handle this ourselves. We may also get
2114 * a hangup. Always called in user context, may sleep.
2115 *
2116 * This code must be sure never to sleep through a hangup.
Peter Hurley6d76bd22013-06-15 09:14:26 -04002117 *
2118 * n_tty_read()/consumer path:
2119 * claims non-exclusive termios_rwsem
2120 * publishes read_tail
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 */
Alan Cox4edf1822008-02-08 04:18:44 -08002122
Alan Cox11a96d12008-10-13 10:46:24 +01002123static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds3b830a92021-01-18 13:31:30 -08002124 unsigned char *kbuf, size_t nr,
2125 void **cookie, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002127 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds3b830a92021-01-18 13:31:30 -08002128 unsigned char *kb = kbuf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002129 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002130 int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 int minimum, time;
2132 ssize_t retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 long timeout;
Alan Cox04f378b2008-04-30 00:53:29 -07002134 int packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002135 size_t tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002137 /*
2138 * Is this a continuation of a read started earler?
2139 *
2140 * If so, we still hold the atomic_read_lock and the
2141 * termios_rwsem, and can just continue to copy data.
2142 */
2143 if (*cookie) {
2144 if (copy_from_read_buf(tty, &kb, &nr))
2145 return kb - kbuf;
2146
2147 /* No more data - release locks and stop retries */
2148 n_tty_kick_worker(tty);
2149 n_tty_check_unthrottle(tty);
2150 up_read(&tty->termios_rwsem);
2151 mutex_unlock(&ldata->atomic_read_lock);
2152 *cookie = NULL;
2153 return kb - kbuf;
2154 }
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08002157 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08002159
Peter Hurleyaefceaf2013-08-11 08:04:23 -04002160 /*
2161 * Internal serialization of reads.
2162 */
2163 if (file->f_flags & O_NONBLOCK) {
2164 if (!mutex_trylock(&ldata->atomic_read_lock))
2165 return -EAGAIN;
2166 } else {
2167 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
2168 return -ERESTARTSYS;
2169 }
2170
Peter Hurley9356b532013-06-15 09:14:24 -04002171 down_read(&tty->termios_rwsem);
2172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 minimum = time = 0;
2174 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002175 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 minimum = MIN_CHAR(tty);
2177 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04002178 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04002180 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurley33d71362016-01-09 21:45:08 -08002181 minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
2183 }
2184
Alan Cox04f378b2008-04-30 00:53:29 -07002185 packet = tty->packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002186 tail = ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 while (nr) {
2190 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07002191 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 unsigned char cs;
Linus Torvalds3b830a92021-01-18 13:31:30 -08002193 if (kb != kbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 break;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002195 spin_lock_irq(&tty->link->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 cs = tty->link->ctrl_status;
2197 tty->link->ctrl_status = 0;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002198 spin_unlock_irq(&tty->link->ctrl_lock);
Linus Torvalds3b830a92021-01-18 13:31:30 -08002199 *kb++ = cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 nr--;
2201 break;
2202 }
Alan Cox4edf1822008-02-08 04:18:44 -08002203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 if (!input_available_p(tty, 0)) {
Peter Hurley52bce7f2014-11-05 12:13:05 -05002205 up_read(&tty->termios_rwsem);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002206 tty_buffer_flush_work(tty->port);
Peter Hurley52bce7f2014-11-05 12:13:05 -05002207 down_read(&tty->termios_rwsem);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002208 if (!input_available_p(tty, 0)) {
2209 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
2210 retval = -EIO;
2211 break;
2212 }
2213 if (tty_hung_up_p(file))
2214 break;
Tejun Heo28b0f8a2018-02-13 07:38:08 -08002215 /*
2216 * Abort readers for ttys which never actually
2217 * get hung up. See __tty_hangup().
2218 */
2219 if (test_bit(TTY_HUPPING, &tty->flags))
2220 break;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002221 if (!timeout)
2222 break;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00002223 if (tty_io_nonblock(tty, file)) {
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002224 retval = -EAGAIN;
2225 break;
2226 }
2227 if (signal_pending(current)) {
2228 retval = -ERESTARTSYS;
2229 break;
2230 }
2231 up_read(&tty->termios_rwsem);
2232
2233 timeout = wait_woken(&wait, TASK_INTERRUPTIBLE,
2234 timeout);
2235
2236 down_read(&tty->termios_rwsem);
2237 continue;
2238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 }
2240
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002241 if (ldata->icanon && !L_EXTPROC(tty)) {
Linus Torvalds64a698922021-01-19 13:46:28 -08002242 canon_copy_from_read_buf(tty, &kb, &nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 } else {
Peter Hurley95ea90d2014-10-16 15:33:30 -04002244 /* Deal with packet mode. */
Linus Torvalds3b830a92021-01-18 13:31:30 -08002245 if (packet && kb == kbuf) {
2246 *kb++ = TIOCPKT_DATA;
Peter Hurley95ea90d2014-10-16 15:33:30 -04002247 nr--;
2248 }
2249
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002250 /*
2251 * Copy data, and if there is more to be had
2252 * and we have nothing more to wait for, then
2253 * let's mark us for retries.
2254 *
2255 * NOTE! We return here with both the termios_sem
2256 * and atomic_read_lock still held, the retries
2257 * will release them when done.
2258 */
2259 if (copy_from_read_buf(tty, &kb, &nr) && kb - kbuf >= minimum) {
2260 remove_wait_queue(&tty->read_wait, &wait);
2261 *cookie = cookie;
2262 return kb - kbuf;
2263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
2265
Peter Hurley6367ca72013-06-15 09:14:33 -04002266 n_tty_check_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Linus Torvalds3b830a92021-01-18 13:31:30 -08002268 if (kb - kbuf >= minimum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 break;
2270 if (time)
2271 timeout = time;
2272 }
Peter Hurley2c5dc462015-01-16 15:05:34 -05002273 if (tail != ldata->read_tail)
2274 n_tty_kick_worker(tty);
Peter Hurley42458f42013-11-07 13:59:46 -05002275 up_read(&tty->termios_rwsem);
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 remove_wait_queue(&tty->read_wait, &wait);
Peter Hurleyaebf04532013-11-07 14:01:57 -05002278 mutex_unlock(&ldata->atomic_read_lock);
2279
Linus Torvalds3b830a92021-01-18 13:31:30 -08002280 if (kb - kbuf)
2281 retval = kb - kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 return retval;
2284}
2285
2286/**
Alan Cox11a96d12008-10-13 10:46:24 +01002287 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 * @tty: tty device
2289 * @file: file object
2290 * @buf: userspace buffer pointer
2291 * @nr: size of I/O
2292 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002293 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002295 * and other such events. Since the receive code will echo characters,
2296 * thus calling driver write methods, the output_lock is used in
2297 * the output processing functions called here as well as in the
2298 * echo processing function to protect the column state and space
2299 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 *
2301 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002302 *
2303 * Locking: output_lock to protect column state and space left
2304 * (note that the process_output*() functions take this
2305 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 */
Alan Cox4edf1822008-02-08 04:18:44 -08002307
Alan Cox11a96d12008-10-13 10:46:24 +01002308static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002309 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310{
2311 const unsigned char *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002312 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 int c;
2314 ssize_t retval = 0;
2315
2316 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2317 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2318 retval = tty_check_change(tty);
2319 if (retval)
2320 return retval;
2321 }
2322
Peter Hurley9356b532013-06-15 09:14:24 -04002323 down_read(&tty->termios_rwsem);
2324
Joe Petersona88a69c2009-01-02 13:40:53 +00002325 /* Write out any echoed characters that are still pending */
2326 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 add_wait_queue(&tty->write_wait, &wait);
2329 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 if (signal_pending(current)) {
2331 retval = -ERESTARTSYS;
2332 break;
2333 }
2334 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2335 retval = -EIO;
2336 break;
2337 }
Peter Hurley582f5592013-05-17 12:49:48 -04002338 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002340 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 if (num < 0) {
2342 if (num == -EAGAIN)
2343 break;
2344 retval = num;
2345 goto break_out;
2346 }
2347 b += num;
2348 nr -= num;
2349 if (nr == 0)
2350 break;
2351 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002352 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 break;
2354 b++; nr--;
2355 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002356 if (tty->ops->flush_chars)
2357 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 } else {
Peter Hurley42910862014-05-03 14:04:59 +02002359 struct n_tty_data *ldata = tty->disc_data;
2360
Roman Zippeld6afe272005-07-07 17:56:55 -07002361 while (nr > 0) {
Peter Hurley42910862014-05-03 14:04:59 +02002362 mutex_lock(&ldata->output_lock);
Alan Coxf34d7a52008-04-30 00:54:13 -07002363 c = tty->ops->write(tty, b, nr);
Peter Hurley42910862014-05-03 14:04:59 +02002364 mutex_unlock(&ldata->output_lock);
Roman Zippeld6afe272005-07-07 17:56:55 -07002365 if (c < 0) {
2366 retval = c;
2367 goto break_out;
2368 }
2369 if (!c)
2370 break;
2371 b += c;
2372 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 }
2375 if (!nr)
2376 break;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00002377 if (tty_io_nonblock(tty, file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 retval = -EAGAIN;
2379 break;
2380 }
Peter Hurley9356b532013-06-15 09:14:24 -04002381 up_read(&tty->termios_rwsem);
2382
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002383 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Peter Hurley9356b532013-06-15 09:14:24 -04002384
2385 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 }
2387break_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 remove_wait_queue(&tty->write_wait, &wait);
Peter Hurley87108bc2016-01-09 21:45:14 -08002389 if (nr && tty->fasync)
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002390 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002391 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 return (b - buf) ? b - buf : retval;
2393}
2394
2395/**
Alan Cox11a96d12008-10-13 10:46:24 +01002396 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 * @tty: terminal device
2398 * @file: file accessing it
2399 * @wait: poll table
2400 *
2401 * Called when the line discipline is asked to poll() for data or
2402 * for special events. This code is not serialized with respect to
2403 * other events save open/close.
2404 *
2405 * This code must be sure never to sleep through a hangup.
2406 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 */
Alan Cox4edf1822008-02-08 04:18:44 -08002408
Al Viroafc9a422017-07-03 06:39:46 -04002409static __poll_t n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002410 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
Al Viroafc9a422017-07-03 06:39:46 -04002412 __poll_t mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414 poll_wait(file, &tty->read_wait, wait);
2415 poll_wait(file, &tty->write_wait, wait);
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002416 if (input_available_p(tty, 1))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002417 mask |= EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002418 else {
2419 tty_buffer_flush_work(tty->port);
2420 if (input_available_p(tty, 1))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002421 mask |= EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002422 }
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002423 if (tty->packet && tty->link->ctrl_status)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002424 mask |= EPOLLPRI | EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002425 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002426 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 if (tty_hung_up_p(file))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002428 mask |= EPOLLHUP;
Alan Coxf34d7a52008-04-30 00:54:13 -07002429 if (tty->ops->write && !tty_is_writelocked(tty) &&
2430 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2431 tty_write_room(tty) > 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002432 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 return mask;
2434}
2435
Jiri Slaby57c94122012-10-18 22:26:43 +02002436static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002437{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002438 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002439
Peter Hurleya73d3d62013-06-15 09:14:25 -04002440 if (ldata->canon_head == ldata->read_tail)
Alan Cox47afa7a2008-10-13 10:44:17 +01002441 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002442 head = ldata->canon_head;
2443 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002444 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002445 /* Skip EOF-chars.. */
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09002446 while (MASK(head) != MASK(tail)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002447 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2448 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002449 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002450 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002451 }
2452 return nr;
2453}
2454
2455static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2456 unsigned int cmd, unsigned long arg)
2457{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002458 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002459 int retval;
2460
2461 switch (cmd) {
2462 case TIOCOUTQ:
2463 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2464 case TIOCINQ:
Peter Hurley6d76bd22013-06-15 09:14:26 -04002465 down_write(&tty->termios_rwsem);
Linus Torvalds966031f2017-12-20 17:57:06 -08002466 if (L_ICANON(tty) && !L_EXTPROC(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002467 retval = inq_canon(ldata);
Peter Hurley6d76bd22013-06-15 09:14:26 -04002468 else
2469 retval = read_cnt(ldata);
2470 up_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002471 return put_user(retval, (unsigned int __user *) arg);
2472 default:
2473 return n_tty_ioctl_helper(tty, file, cmd, arg);
2474 }
2475}
2476
Peter Hurley27228732016-01-09 21:35:19 -08002477static struct tty_ldisc_ops n_tty_ops = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002478 .magic = TTY_LDISC_MAGIC,
2479 .name = "n_tty",
2480 .open = n_tty_open,
2481 .close = n_tty_close,
2482 .flush_buffer = n_tty_flush_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002483 .read = n_tty_read,
2484 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002485 .ioctl = n_tty_ioctl,
2486 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002487 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002488 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002489 .write_wakeup = n_tty_write_wakeup,
Peter Hurley24a89d12013-06-15 09:14:15 -04002490 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002492
2493/**
2494 * n_tty_inherit_ops - inherit N_TTY methods
2495 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2496 *
Peter Hurley27228732016-01-09 21:35:19 -08002497 * Enables a 'subclass' line discipline to 'inherit' N_TTY methods.
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002498 */
2499
2500void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2501{
Peter Hurley27228732016-01-09 21:35:19 -08002502 *ops = n_tty_ops;
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002503 ops->owner = NULL;
2504 ops->refcount = ops->flags = 0;
2505}
2506EXPORT_SYMBOL_GPL(n_tty_inherit_ops);
Peter Hurley27228732016-01-09 21:35:19 -08002507
2508void __init n_tty_init(void)
2509{
2510 tty_register_ldisc(N_TTY, &n_tty_ops);
2511}