blob: 8933ef1f83c0e5a499975accbbb8bf92343c5dc3 [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>
Greg Kroah-Hartman98602c02021-04-08 14:51:22 +020052#include "tty.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Valentin Vidica5db4822018-12-29 13:48:29 +010054/*
55 * Until this number of characters is queued in the xmit buffer, select will
56 * return "we have room for writes".
57 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define WAKEUP_CHARS 256
59
60/*
61 * This defines the low- and high-watermarks for throttling and
62 * unthrottling the TTY driver. These watermarks are used for
63 * controlling the space in the read buffer.
64 */
65#define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
Thorsten Wißmannbbd20752011-12-08 17:47:33 +010066#define TTY_THRESHOLD_UNTHROTTLE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Joe Petersona88a69c2009-01-02 13:40:53 +000068/*
69 * Special byte codes used in the echo buffer to represent operations
70 * or special handling of characters. Bytes in the echo buffer that
71 * are not part of such special blocks are treated as normal character
72 * codes.
73 */
74#define ECHO_OP_START 0xff
75#define ECHO_OP_MOVE_BACK_COL 0x80
76#define ECHO_OP_SET_CANON_COL 0x81
77#define ECHO_OP_ERASE_TAB 0x82
78
Peter Hurleycbfd0342013-06-15 10:04:26 -040079#define ECHO_COMMIT_WATERMARK 256
80#define ECHO_BLOCK 256
81#define ECHO_DISCARD_WATERMARK N_TTY_BUF_SIZE - (ECHO_BLOCK + 32)
82
83
Peter Hurley32f13522013-06-15 09:14:17 -040084#undef N_TTY_TRACE
85#ifdef N_TTY_TRACE
86# define n_tty_trace(f, args...) trace_printk(f, ##args)
87#else
Jiri Slabya2878852020-01-30 12:58:43 +010088# define n_tty_trace(f, args...) no_printk(f, ##args)
Peter Hurley32f13522013-06-15 09:14:17 -040089#endif
90
Jiri Slaby70ece7a2012-10-18 22:26:38 +020091struct n_tty_data {
Peter Hurleyfb7aa032013-06-15 09:14:30 -040092 /* producer-published */
93 size_t read_head;
Peter Hurley70aca712015-01-16 15:05:37 -050094 size_t commit_head;
Peter Hurleyfb7aa032013-06-15 09:14:30 -040095 size_t canon_head;
Peter Hurley9dfd16d2013-06-15 10:04:29 -040096 size_t echo_head;
97 size_t echo_commit;
Peter Hurley1075a6e2013-12-09 18:06:07 -050098 size_t echo_mark;
Peter Hurley1bb9d562013-06-15 10:21:20 -040099 DECLARE_BITMAP(char_map, 256);
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400100
101 /* private to n_tty_receive_overrun (single-threaded) */
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200102 unsigned long overrun_time;
103 int num_overrun;
104
Peter Hurley24a89d12013-06-15 09:14:15 -0400105 /* non-atomic */
106 bool no_room;
107
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400108 /* must hold exclusive termios_rwsem to reset these */
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200109 unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
Peter Hurley4d0ed182013-12-10 17:12:02 -0500110 unsigned char push:1;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200111
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400112 /* shared by producer and consumer */
Peter Hurley20bafb32013-06-15 10:21:19 -0400113 char read_buf[N_TTY_BUF_SIZE];
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200114 DECLARE_BITMAP(read_flags, N_TTY_BUF_SIZE);
Peter Hurley20bafb32013-06-15 10:21:19 -0400115 unsigned char echo_buf[N_TTY_BUF_SIZE];
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200116
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400117 /* consumer-published */
118 size_t read_tail;
Peter Hurley40d5e092013-06-15 10:21:17 -0400119 size_t line_start;
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400120
Peter Hurleyfb7aa032013-06-15 09:14:30 -0400121 /* protected by output lock */
122 unsigned int column;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200123 unsigned int canon_column;
Peter Hurley9dfd16d2013-06-15 10:04:29 -0400124 size_t echo_tail;
Jiri Slabybddc7152012-10-18 22:26:42 +0200125
126 struct mutex atomic_read_lock;
127 struct mutex output_lock;
Jiri Slaby70ece7a2012-10-18 22:26:38 +0200128};
129
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +0900130#define MASK(x) ((x) & (N_TTY_BUF_SIZE - 1))
131
Peter Hurleyce741172013-06-15 09:14:20 -0400132static inline size_t read_cnt(struct n_tty_data *ldata)
133{
Peter Hurleya2f73be2013-06-15 09:14:22 -0400134 return ldata->read_head - ldata->read_tail;
Peter Hurleyce741172013-06-15 09:14:20 -0400135}
136
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400137static inline unsigned char read_buf(struct n_tty_data *ldata, size_t i)
138{
139 return ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
140}
141
142static inline unsigned char *read_buf_addr(struct n_tty_data *ldata, size_t i)
143{
144 return &ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
145}
146
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400147static inline unsigned char echo_buf(struct n_tty_data *ldata, size_t i)
148{
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900149 smp_rmb(); /* Matches smp_wmb() in add_echo_byte(). */
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400150 return ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
151}
152
153static inline unsigned char *echo_buf_addr(struct n_tty_data *ldata, size_t i)
154{
155 return &ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
156}
157
Greg KHb97b3d92018-10-04 11:06:14 -0700158/* If we are not echoing the data, perhaps this is a secret so erase it */
159static void zero_buffer(struct tty_struct *tty, u8 *buffer, int size)
160{
161 bool icanon = !!L_ICANON(tty);
162 bool no_echo = !L_ECHO(tty);
163
164 if (icanon && no_echo)
165 memset(buffer, 0x00, size);
166}
167
Linus Torvalds3b830a92021-01-18 13:31:30 -0800168static void tty_copy(struct tty_struct *tty, void *to, size_t tail, size_t n)
Laura Abbott72586c62015-05-14 11:42:17 -0700169{
170 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley679e7c22015-11-27 14:11:02 -0500171 size_t size = N_TTY_BUF_SIZE - tail;
Greg KHb97b3d92018-10-04 11:06:14 -0700172 void *from = read_buf_addr(ldata, tail);
Peter Hurley679e7c22015-11-27 14:11:02 -0500173
174 if (n > size) {
Peter Hurley309426a2016-01-09 22:55:27 -0800175 tty_audit_add_data(tty, from, size);
Linus Torvalds3b830a92021-01-18 13:31:30 -0800176 memcpy(to, from, size);
177 zero_buffer(tty, from, size);
Peter Hurley679e7c22015-11-27 14:11:02 -0500178 to += size;
179 n -= size;
180 from = ldata->read_buf;
181 }
Laura Abbott72586c62015-05-14 11:42:17 -0700182
Peter Hurley309426a2016-01-09 22:55:27 -0800183 tty_audit_add_data(tty, from, n);
Linus Torvalds3b830a92021-01-18 13:31:30 -0800184 memcpy(to, from, n);
185 zero_buffer(tty, from, n);
Laura Abbott72586c62015-05-14 11:42:17 -0700186}
187
Peter Hurley24a89d12013-06-15 09:14:15 -0400188/**
Jiri Slaby98629662021-11-26 09:16:04 +0100189 * n_tty_kick_worker - start input worker (if required)
190 * @tty: terminal
Peter Hurley24a89d12013-06-15 09:14:15 -0400191 *
Jiri Slaby98629662021-11-26 09:16:04 +0100192 * Re-schedules the flip buffer work if it may have stopped.
Peter Hurley24a89d12013-06-15 09:14:15 -0400193 *
Jiri Slaby98629662021-11-26 09:16:04 +0100194 * Locking:
195 * * Caller holds exclusive %termios_rwsem, or
196 * * n_tty_read()/consumer path:
197 * holds non-exclusive %termios_rwsem
Peter Hurley24a89d12013-06-15 09:14:15 -0400198 */
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/**
Jiri Slaby98629662021-11-26 09:16:04 +0100232 * n_tty_write_wakeup - asynchronous I/O notifier
233 * @tty: tty device
Peter Hurleyee0bab82013-06-15 09:14:34 -0400234 *
Jiri Slaby98629662021-11-26 09:16:04 +0100235 * Required for the ptys, serial driver etc. since processes that attach
236 * themselves to the master and rely on ASYNC IO must be woken up.
Peter Hurleyee0bab82013-06-15 09:14:34 -0400237 */
Peter Hurleyee0bab82013-06-15 09:14:34 -0400238static void n_tty_write_wakeup(struct tty_struct *tty)
239{
Peter Hurley7bccc362016-01-09 21:45:12 -0800240 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
241 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
Peter Hurleyee0bab82013-06-15 09:14:34 -0400242}
243
Peter Hurley4a23a4d2013-06-15 10:21:22 -0400244static void n_tty_check_throttle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400245{
Peter Hurleya3428462015-01-16 15:05:35 -0500246 struct n_tty_data *ldata = tty->disc_data;
247
Peter Hurley6367ca72013-06-15 09:14:33 -0400248 /*
249 * Check the remaining room for the input canonicalization
250 * mode. We don't want to throttle the driver if we're in
251 * canonical mode and don't have a newline yet!
252 */
Peter Hurleya3428462015-01-16 15:05:35 -0500253 if (ldata->icanon && ldata->canon_head == ldata->read_tail)
254 return;
255
Peter Hurley6367ca72013-06-15 09:14:33 -0400256 while (1) {
257 int throttled;
258 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
Peter Hurley5e28cca2015-01-16 15:05:36 -0500259 if (N_TTY_BUF_SIZE - read_cnt(ldata) >= TTY_THRESHOLD_THROTTLE)
Peter Hurley6367ca72013-06-15 09:14:33 -0400260 break;
261 throttled = tty_throttle_safe(tty);
262 if (!throttled)
263 break;
264 }
265 __tty_set_flow_change(tty, 0);
266}
267
Peter Hurley4b293492013-07-24 08:29:55 -0400268static void n_tty_check_unthrottle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400269{
Peter Hurley6d27a632016-01-10 22:40:56 -0800270 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
Peter Hurley3afb1b392013-07-23 08:47:30 -0400271 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
272 return;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500273 n_tty_kick_worker(tty);
Peter Hurley6d27a632016-01-10 22:40:56 -0800274 tty_wakeup(tty->link);
Peter Hurley3afb1b392013-07-23 08:47:30 -0400275 return;
276 }
277
Peter Hurley6367ca72013-06-15 09:14:33 -0400278 /* If there is enough space in the read buffer now, let the
279 * low-level driver know. We use chars_in_buffer() to
280 * check the buffer, as it now knows about canonical mode.
281 * Otherwise, if the driver is throttled and the line is
282 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
283 * we won't get any more characters.
284 */
285
286 while (1) {
287 int unthrottled;
288 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
289 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
290 break;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500291 n_tty_kick_worker(tty);
Peter Hurley6367ca72013-06-15 09:14:33 -0400292 unthrottled = tty_unthrottle_safe(tty);
293 if (!unthrottled)
294 break;
295 }
296 __tty_set_flow_change(tty, 0);
297}
298
Alan Cox17b82062008-10-13 10:45:06 +0100299/**
Jiri Slaby98629662021-11-26 09:16:04 +0100300 * put_tty_queue - add character to tty
301 * @c: character
302 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100303 *
Jiri Slaby98629662021-11-26 09:16:04 +0100304 * Add a character to the tty read_buf queue.
Peter Hurley6d76bd22013-06-15 09:14:26 -0400305 *
Jiri Slaby98629662021-11-26 09:16:04 +0100306 * Locking:
307 * * n_tty_receive_buf()/producer path:
308 * caller holds non-exclusive %termios_rwsem
Alan Cox17b82062008-10-13 10:45:06 +0100309 */
Peter Hurley19e2ad62013-07-24 08:29:54 -0400310static inline void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Christian Riesch8bfbe2d2014-11-13 05:53:26 +0100312 *read_buf_addr(ldata, ldata->read_head) = c;
313 ldata->read_head++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316/**
Jiri Slaby98629662021-11-26 09:16:04 +0100317 * reset_buffer_flags - reset buffer state
318 * @ldata: line disc data to reset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 *
Jiri Slaby98629662021-11-26 09:16:04 +0100320 * Reset the read buffer counters and clear the flags. Called from
321 * n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100322 *
Jiri Slaby98629662021-11-26 09:16:04 +0100323 * Locking:
324 * * caller holds exclusive %termios_rwsem, or
325 * * (locking is not required)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 */
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400327static void reset_buffer_flags(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Peter Hurleya73d3d62013-06-15 09:14:25 -0400329 ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
Peter Hurley70aca712015-01-16 15:05:37 -0500330 ldata->commit_head = 0;
Peter Hurley40d5e092013-06-15 10:21:17 -0400331 ldata->line_start = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000332
Peter Hurleya73d3d62013-06-15 09:14:25 -0400333 ldata->erasing = 0;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200334 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -0500335 ldata->push = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Peter Hurleya30737a2013-03-11 16:44:22 -0400338static void n_tty_packet_mode_flush(struct tty_struct *tty)
339{
340 unsigned long flags;
341
Jiri Slaby64d608d2021-05-05 11:19:06 +0200342 if (tty->link->ctrl.packet) {
343 spin_lock_irqsave(&tty->ctrl.lock, flags);
344 tty->ctrl.pktstatus |= TIOCPKT_FLUSHREAD;
345 spin_unlock_irqrestore(&tty->ctrl.lock, flags);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +0000346 wake_up_interruptible(&tty->link->read_wait);
Peter Hurleya30737a2013-03-11 16:44:22 -0400347 }
Peter Hurleya30737a2013-03-11 16:44:22 -0400348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/**
Jiri Slaby98629662021-11-26 09:16:04 +0100351 * n_tty_flush_buffer - clean input queue
352 * @tty: terminal device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 *
Jiri Slaby98629662021-11-26 09:16:04 +0100354 * Flush the input buffer. Called when the tty layer wants the buffer flushed
355 * (eg at hangup) or when the %N_TTY line discipline internally has to clean
356 * the pending queue (for example some signals).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 *
Jiri Slaby98629662021-11-26 09:16:04 +0100358 * Holds %termios_rwsem to exclude producer/consumer while buffer indices are
359 * reset.
Peter Hurley6d76bd22013-06-15 09:14:26 -0400360 *
Jiri Slaby98629662021-11-26 09:16:04 +0100361 * Locking: %ctrl.lock, exclusive %termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 */
Alan Cox4edf1822008-02-08 04:18:44 -0800363static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Peter Hurley6d76bd22013-06-15 09:14:26 -0400365 down_write(&tty->termios_rwsem);
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400366 reset_buffer_flags(tty->disc_data);
Peter Hurley2c5dc462015-01-16 15:05:34 -0500367 n_tty_kick_worker(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800368
Peter Hurleya30737a2013-03-11 16:44:22 -0400369 if (tty->link)
370 n_tty_packet_mode_flush(tty);
Peter Hurley6d76bd22013-06-15 09:14:26 -0400371 up_write(&tty->termios_rwsem);
372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/**
Jiri Slaby98629662021-11-26 09:16:04 +0100375 * is_utf8_continuation - utf8 multibyte check
376 * @c: byte to check
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 *
Jiri Slaby98629662021-11-26 09:16:04 +0100378 * Returns: true if the utf8 character @c is a multibyte continuation
379 * character. We use this to correctly compute the on-screen size of the
380 * character when printing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382static inline int is_utf8_continuation(unsigned char c)
383{
384 return (c & 0xc0) == 0x80;
385}
386
387/**
Jiri Slaby98629662021-11-26 09:16:04 +0100388 * is_continuation - multibyte check
389 * @c: byte to check
390 * @tty: terminal device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 *
Jiri Slaby98629662021-11-26 09:16:04 +0100392 * Returns: true if the utf8 character @c is a multibyte continuation character
393 * and the terminal is in unicode mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static inline int is_continuation(unsigned char c, struct tty_struct *tty)
396{
397 return I_IUTF8(tty) && is_utf8_continuation(c);
398}
399
400/**
Jiri Slaby98629662021-11-26 09:16:04 +0100401 * do_output_char - output one character
402 * @c: character (or partial unicode symbol)
403 * @tty: terminal device
404 * @space: space available in tty driver write buffer
Joe Petersona88a69c2009-01-02 13:40:53 +0000405 *
Jiri Slaby98629662021-11-26 09:16:04 +0100406 * This is a helper function that handles one output character (including
407 * special characters like TAB, CR, LF, etc.), doing OPOST processing and
408 * putting the results in the tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000409 *
Jiri Slaby98629662021-11-26 09:16:04 +0100410 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY and NLDLY.
411 * They simply aren't relevant in the world today. If you ever need them, add
412 * them here.
Joe Petersona88a69c2009-01-02 13:40:53 +0000413 *
Jiri Slaby98629662021-11-26 09:16:04 +0100414 * Returns: the number of bytes of buffer space used or -1 if no space left.
Joe Petersona88a69c2009-01-02 13:40:53 +0000415 *
Jiri Slaby98629662021-11-26 09:16:04 +0100416 * Locking: should be called under the %output_lock to protect the column state
417 * and space left in the buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000418 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000419static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
420{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200421 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000422 int spaces;
423
424 if (!space)
425 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000426
Joe Petersona88a69c2009-01-02 13:40:53 +0000427 switch (c) {
428 case '\n':
429 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200430 ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000431 if (O_ONLCR(tty)) {
432 if (space < 2)
433 return -1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200434 ldata->canon_column = ldata->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700435 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000436 return 2;
437 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200438 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000439 break;
440 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200441 if (O_ONOCR(tty) && ldata->column == 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000442 return 0;
443 if (O_OCRNL(tty)) {
444 c = '\n';
445 if (O_ONLRET(tty))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200446 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000447 break;
448 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200449 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000450 break;
451 case '\t':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200452 spaces = 8 - (ldata->column & 7);
Joe Petersona88a69c2009-01-02 13:40:53 +0000453 if (O_TABDLY(tty) == XTABS) {
454 if (space < spaces)
455 return -1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200456 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000457 tty->ops->write(tty, " ", spaces);
458 return spaces;
459 }
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200460 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000461 break;
462 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200463 if (ldata->column > 0)
464 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000465 break;
466 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000467 if (!iscntrl(c)) {
468 if (O_OLCUC(tty))
469 c = toupper(c);
470 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200471 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000472 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000473 break;
474 }
475
476 tty_put_char(tty, c);
477 return 1;
478}
479
480/**
Jiri Slaby98629662021-11-26 09:16:04 +0100481 * process_output - output post processor
482 * @c: character (or partial unicode symbol)
483 * @tty: terminal device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 *
Jiri Slaby98629662021-11-26 09:16:04 +0100485 * Output one character with OPOST processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 *
Jiri Slaby98629662021-11-26 09:16:04 +0100487 * Returns: -1 when the output device is full and the character must be
488 * retried.
489 *
490 * Locking: %output_lock to protect column state and space left (also, this is
491 *called from n_tty_write() under the tty layer write lock).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000493static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Jiri Slabybddc7152012-10-18 22:26:42 +0200495 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000496 int space, retval;
497
Jiri Slabybddc7152012-10-18 22:26:42 +0200498 mutex_lock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Alan Coxf34d7a52008-04-30 00:54:13 -0700500 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000501 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Jiri Slabybddc7152012-10-18 22:26:42 +0200503 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000504 if (retval < 0)
505 return -1;
506 else
507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
510/**
Jiri Slaby98629662021-11-26 09:16:04 +0100511 * process_output_block - block post processor
512 * @tty: terminal device
513 * @buf: character buffer
514 * @nr: number of bytes to output
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600515 *
Jiri Slaby98629662021-11-26 09:16:04 +0100516 * Output a block of characters with OPOST processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 *
Jiri Slaby98629662021-11-26 09:16:04 +0100518 * This path is used to speed up block console writes, among other things when
519 * processing blocks of output data. It handles only the simple cases normally
520 * found and helps to generate blocks of symbols for the console driver and
521 * thus improve performance.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 *
Jiri Slaby98629662021-11-26 09:16:04 +0100523 * Returns: the number of characters output.
524 *
525 * Locking: %output_lock to protect column state and space left (also, this is
526 * called from n_tty_write() under the tty layer write lock).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000528static ssize_t process_output_block(struct tty_struct *tty,
529 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200531 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100533 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 const unsigned char *cp;
535
Jiri Slabybddc7152012-10-18 22:26:42 +0200536 mutex_lock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000537
Alan Coxf34d7a52008-04-30 00:54:13 -0700538 space = tty_write_room(tty);
Colin Ian King9ef89272019-03-30 00:46:28 +0000539 if (space <= 0) {
Jiri Slabybddc7152012-10-18 22:26:42 +0200540 mutex_unlock(&ldata->output_lock);
Colin Ian King9ef89272019-03-30 00:46:28 +0000541 return space;
Joe Petersona88a69c2009-01-02 13:40:53 +0000542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (nr > space)
544 nr = space;
545
546 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000547 unsigned char c = *cp;
548
549 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 case '\n':
551 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200552 ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (O_ONLCR(tty))
554 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200555 ldata->canon_column = ldata->column;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 break;
557 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200558 if (O_ONOCR(tty) && ldata->column == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto break_out;
560 if (O_OCRNL(tty))
561 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200562 ldata->canon_column = ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 break;
564 case '\t':
565 goto break_out;
566 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200567 if (ldata->column > 0)
568 ldata->column--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 break;
570 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000571 if (!iscntrl(c)) {
572 if (O_OLCUC(tty))
573 goto break_out;
574 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200575 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 break;
578 }
579 }
580break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700581 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000582
Jiri Slabybddc7152012-10-18 22:26:42 +0200583 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return i;
585}
586
Joe Petersona88a69c2009-01-02 13:40:53 +0000587/**
Jiri Slaby98629662021-11-26 09:16:04 +0100588 * __process_echoes - write pending echo characters
589 * @tty: terminal device
Joe Petersona88a69c2009-01-02 13:40:53 +0000590 *
Jiri Slaby98629662021-11-26 09:16:04 +0100591 * Write previously buffered echo (and other ldisc-generated) characters to the
592 * tty.
Joe Petersona88a69c2009-01-02 13:40:53 +0000593 *
Jiri Slaby98629662021-11-26 09:16:04 +0100594 * Characters generated by the ldisc (including echoes) need to be buffered
595 * because the driver's write buffer can fill during heavy program output.
596 * Echoing straight to the driver will often fail under these conditions,
597 * causing lost characters and resulting mismatches of ldisc state information.
Joe Petersona88a69c2009-01-02 13:40:53 +0000598 *
Jiri Slaby98629662021-11-26 09:16:04 +0100599 * Since the ldisc state must represent the characters actually sent to the
600 * driver at the time of the write, operations like certain changes in column
601 * state are also saved in the buffer and executed here.
Joe Petersona88a69c2009-01-02 13:40:53 +0000602 *
Jiri Slaby98629662021-11-26 09:16:04 +0100603 * A circular fifo buffer is used so that the most recent characters are
604 * prioritized. Also, when control characters are echoed with a prefixed "^",
605 * the pair is treated atomically and thus not separated.
Joe Petersona88a69c2009-01-02 13:40:53 +0000606 *
Jiri Slaby98629662021-11-26 09:16:04 +0100607 * Locking: callers must hold %output_lock.
Joe Petersona88a69c2009-01-02 13:40:53 +0000608 */
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400609static size_t __process_echoes(struct tty_struct *tty)
Joe Petersona88a69c2009-01-02 13:40:53 +0000610{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200611 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400612 int space, old_space;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400613 size_t tail;
Joe Petersona88a69c2009-01-02 13:40:53 +0000614 unsigned char c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000615
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400616 old_space = space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000617
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400618 tail = ldata->echo_tail;
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900619 while (MASK(ldata->echo_commit) != MASK(tail)) {
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400620 c = echo_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +0000621 if (c == ECHO_OP_START) {
622 unsigned char op;
Joe Petersona88a69c2009-01-02 13:40:53 +0000623 int no_space_left = 0;
624
625 /*
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900626 * Since add_echo_byte() is called without holding
627 * output_lock, we might see only portion of multi-byte
628 * operation.
629 */
630 if (MASK(ldata->echo_commit) == MASK(tail + 1))
631 goto not_yet_stored;
632 /*
Joe Petersona88a69c2009-01-02 13:40:53 +0000633 * If the buffer byte is the start of a multi-byte
634 * operation, get the next byte, which is either the
635 * op code or a control character value.
636 */
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400637 op = echo_buf(ldata, tail + 1);
Alan Cox300a6202009-01-02 13:41:04 +0000638
Joe Petersona88a69c2009-01-02 13:40:53 +0000639 switch (op) {
Kees Cooke24cd4e2020-02-19 22:23:13 -0800640 case ECHO_OP_ERASE_TAB: {
Joe Petersona88a69c2009-01-02 13:40:53 +0000641 unsigned int num_chars, num_bs;
642
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900643 if (MASK(ldata->echo_commit) == MASK(tail + 2))
644 goto not_yet_stored;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400645 num_chars = echo_buf(ldata, tail + 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000646
647 /*
648 * Determine how many columns to go back
649 * in order to erase the tab.
650 * This depends on the number of columns
651 * used by other characters within the tab
652 * area. If this (modulo 8) count is from
653 * the start of input rather than from a
654 * previous tab, we offset by canon column.
655 * Otherwise, tab spacing is normal.
656 */
657 if (!(num_chars & 0x80))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200658 num_chars += ldata->canon_column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000659 num_bs = 8 - (num_chars & 7);
660
661 if (num_bs > space) {
662 no_space_left = 1;
663 break;
664 }
665 space -= num_bs;
666 while (num_bs--) {
667 tty_put_char(tty, '\b');
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200668 if (ldata->column > 0)
669 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000670 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400671 tail += 3;
Joe Petersona88a69c2009-01-02 13:40:53 +0000672 break;
Kees Cooke24cd4e2020-02-19 22:23:13 -0800673 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000674 case ECHO_OP_SET_CANON_COL:
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200675 ldata->canon_column = ldata->column;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400676 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000677 break;
678
679 case ECHO_OP_MOVE_BACK_COL:
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200680 if (ldata->column > 0)
681 ldata->column--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400682 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000683 break;
684
685 case ECHO_OP_START:
686 /* This is an escaped echo op start code */
687 if (!space) {
688 no_space_left = 1;
689 break;
690 }
691 tty_put_char(tty, ECHO_OP_START);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200692 ldata->column++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000693 space--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400694 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000695 break;
696
697 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000698 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600699 * If the op is not a special byte code,
700 * it is a ctrl char tagged to be echoed
701 * as "^X" (where X is the letter
702 * representing the control char).
703 * Note that we must ensure there is
704 * enough space for the whole ctrl pair.
705 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000706 */
Joe Peterson62b26352009-09-09 15:03:47 -0600707 if (space < 2) {
708 no_space_left = 1;
709 break;
710 }
711 tty_put_char(tty, '^');
712 tty_put_char(tty, op ^ 0100);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200713 ldata->column += 2;
Joe Peterson62b26352009-09-09 15:03:47 -0600714 space -= 2;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400715 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000716 }
717
718 if (no_space_left)
719 break;
720 } else {
Peter Hurley582f5592013-05-17 12:49:48 -0400721 if (O_OPOST(tty)) {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600722 int retval = do_output_char(c, tty, space);
723 if (retval < 0)
724 break;
725 space -= retval;
726 } else {
727 if (!space)
728 break;
729 tty_put_char(tty, c);
730 space -= 1;
731 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400732 tail += 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000733 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000734 }
735
Peter Hurleycbfd0342013-06-15 10:04:26 -0400736 /* If the echo buffer is nearly full (so that the possibility exists
737 * of echo overrun before the next commit), then discard enough
738 * data at the tail to prevent a subsequent overrun */
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900739 while (ldata->echo_commit > tail &&
740 ldata->echo_commit - tail >= ECHO_DISCARD_WATERMARK) {
Roel Kluinc476f652013-10-11 22:08:49 +0200741 if (echo_buf(ldata, tail) == ECHO_OP_START) {
Peter Hurley6f222532013-11-08 09:42:18 -0500742 if (echo_buf(ldata, tail + 1) == ECHO_OP_ERASE_TAB)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400743 tail += 3;
744 else
745 tail += 2;
746 } else
747 tail++;
748 }
749
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900750 not_yet_stored:
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400751 ldata->echo_tail = tail;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400752 return old_space - space;
Joe Petersona88a69c2009-01-02 13:40:53 +0000753}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Peter Hurley17bd7902013-06-15 10:04:24 -0400755static void commit_echoes(struct tty_struct *tty)
756{
757 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400758 size_t nr, old, echoed;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400759 size_t head;
760
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900761 mutex_lock(&ldata->output_lock);
Peter Hurleycbfd0342013-06-15 10:04:26 -0400762 head = ldata->echo_head;
Peter Hurley1075a6e2013-12-09 18:06:07 -0500763 ldata->echo_mark = head;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400764 old = ldata->echo_commit - ldata->echo_tail;
765
766 /* Process committed echoes if the accumulated # of bytes
767 * is over the threshold (and try again each time another
768 * block is accumulated) */
769 nr = head - ldata->echo_tail;
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900770 if (nr < ECHO_COMMIT_WATERMARK ||
771 (nr % ECHO_BLOCK > old % ECHO_BLOCK)) {
772 mutex_unlock(&ldata->output_lock);
Peter Hurleycbfd0342013-06-15 10:04:26 -0400773 return;
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900774 }
Peter Hurley17bd7902013-06-15 10:04:24 -0400775
Peter Hurleycbfd0342013-06-15 10:04:26 -0400776 ldata->echo_commit = head;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400777 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400778 mutex_unlock(&ldata->output_lock);
779
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400780 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400781 tty->ops->flush_chars(tty);
782}
783
784static void process_echoes(struct tty_struct *tty)
785{
786 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400787 size_t echoed;
Peter Hurley019ebdf2013-06-15 10:04:25 -0400788
Peter Hurleye2613be2014-02-11 16:34:55 -0500789 if (ldata->echo_mark == ldata->echo_tail)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400790 return;
791
792 mutex_lock(&ldata->output_lock);
Peter Hurley1075a6e2013-12-09 18:06:07 -0500793 ldata->echo_commit = ldata->echo_mark;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400794 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400795 mutex_unlock(&ldata->output_lock);
796
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400797 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400798 tty->ops->flush_chars(tty);
Peter Hurley17bd7902013-06-15 10:04:24 -0400799}
800
Peter Hurley1075a6e2013-12-09 18:06:07 -0500801/* NB: echo_mark and echo_head should be equivalent here */
Peter Hurleycbfd0342013-06-15 10:04:26 -0400802static void flush_echoes(struct tty_struct *tty)
803{
804 struct n_tty_data *ldata = tty->disc_data;
805
Peter Hurley39434ab2013-11-29 12:56:10 -0500806 if ((!L_ECHO(tty) && !L_ECHONL(tty)) ||
807 ldata->echo_commit == ldata->echo_head)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400808 return;
809
810 mutex_lock(&ldata->output_lock);
811 ldata->echo_commit = ldata->echo_head;
812 __process_echoes(tty);
813 mutex_unlock(&ldata->output_lock);
814}
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816/**
Jiri Slaby98629662021-11-26 09:16:04 +0100817 * add_echo_byte - add a byte to the echo buffer
818 * @c: unicode byte to echo
819 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000820 *
Jiri Slaby98629662021-11-26 09:16:04 +0100821 * Add a character or operation byte to the echo buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000822 */
Peter Hurleycbfd0342013-06-15 10:04:26 -0400823static inline void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000824{
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900825 *echo_buf_addr(ldata, ldata->echo_head) = c;
826 smp_wmb(); /* Matches smp_rmb() in echo_buf(). */
827 ldata->echo_head++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000828}
829
830/**
Jiri Slaby98629662021-11-26 09:16:04 +0100831 * echo_move_back_col - add operation to move back a column
832 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000833 *
Jiri Slaby98629662021-11-26 09:16:04 +0100834 * Add an operation to the echo buffer to move back one column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000835 */
Jiri Slaby57c94122012-10-18 22:26:43 +0200836static void echo_move_back_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000837{
Jiri Slaby57c94122012-10-18 22:26:43 +0200838 add_echo_byte(ECHO_OP_START, ldata);
839 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000840}
841
842/**
Jiri Slaby98629662021-11-26 09:16:04 +0100843 * echo_set_canon_col - add operation to set the canon column
844 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000845 *
Jiri Slaby98629662021-11-26 09:16:04 +0100846 * Add an operation to the echo buffer to set the canon column to the current
847 * column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000848 */
Jiri Slaby57c94122012-10-18 22:26:43 +0200849static void echo_set_canon_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000850{
Jiri Slaby57c94122012-10-18 22:26:43 +0200851 add_echo_byte(ECHO_OP_START, ldata);
852 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000853}
854
855/**
Jiri Slaby98629662021-11-26 09:16:04 +0100856 * echo_erase_tab - add operation to erase a tab
857 * @num_chars: number of character columns already used
858 * @after_tab: true if num_chars starts after a previous tab
859 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000860 *
Jiri Slaby98629662021-11-26 09:16:04 +0100861 * Add an operation to the echo buffer to erase a tab.
Joe Petersona88a69c2009-01-02 13:40:53 +0000862 *
Jiri Slaby98629662021-11-26 09:16:04 +0100863 * Called by the eraser function, which knows how many character columns have
864 * been used since either a previous tab or the start of input. This
865 * information will be used later, along with canon column (if applicable), to
866 * go back the correct number of columns.
Joe Petersona88a69c2009-01-02 13:40:53 +0000867 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000868static void echo_erase_tab(unsigned int num_chars, int after_tab,
Jiri Slaby57c94122012-10-18 22:26:43 +0200869 struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000870{
Jiri Slaby57c94122012-10-18 22:26:43 +0200871 add_echo_byte(ECHO_OP_START, ldata);
872 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000873
874 /* We only need to know this modulo 8 (tab spacing) */
875 num_chars &= 7;
876
877 /* Set the high bit as a flag if num_chars is after a previous tab */
878 if (after_tab)
879 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000880
Jiri Slaby57c94122012-10-18 22:26:43 +0200881 add_echo_byte(num_chars, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000882}
883
884/**
Jiri Slaby98629662021-11-26 09:16:04 +0100885 * echo_char_raw - echo a character raw
886 * @c: unicode byte to echo
887 * @ldata: line disc data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 *
Jiri Slaby98629662021-11-26 09:16:04 +0100889 * Echo user input back onto the screen. This must be called only when
890 * L_ECHO(tty) is true. Called from the &tty_driver.receive_buf() path.
Alan Cox17b82062008-10-13 10:45:06 +0100891 *
Jiri Slaby98629662021-11-26 09:16:04 +0100892 * This variant does not treat control characters specially.
Joe Petersona88a69c2009-01-02 13:40:53 +0000893 */
Jiri Slaby57c94122012-10-18 22:26:43 +0200894static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000895{
Joe Petersona88a69c2009-01-02 13:40:53 +0000896 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200897 add_echo_byte(ECHO_OP_START, ldata);
898 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000899 } else {
Jiri Slaby57c94122012-10-18 22:26:43 +0200900 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000901 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000902}
903
904/**
Jiri Slaby98629662021-11-26 09:16:04 +0100905 * echo_char - echo a character
906 * @c: unicode byte to echo
907 * @tty: terminal device
Joe Petersona88a69c2009-01-02 13:40:53 +0000908 *
Jiri Slaby98629662021-11-26 09:16:04 +0100909 * Echo user input back onto the screen. This must be called only when
910 * L_ECHO(tty) is true. Called from the &tty_driver.receive_buf() path.
Joe Petersona88a69c2009-01-02 13:40:53 +0000911 *
Jiri Slaby98629662021-11-26 09:16:04 +0100912 * This variant tags control characters to be echoed as "^X" (where X is the
913 * letter representing the control char).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915static void echo_char(unsigned char c, struct tty_struct *tty)
916{
Jiri Slabybddc7152012-10-18 22:26:42 +0200917 struct n_tty_data *ldata = tty->disc_data;
918
Joe Petersona88a69c2009-01-02 13:40:53 +0000919 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200920 add_echo_byte(ECHO_OP_START, ldata);
921 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000922 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600923 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Jiri Slaby57c94122012-10-18 22:26:43 +0200924 add_echo_byte(ECHO_OP_START, ldata);
925 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Alan Cox17b82062008-10-13 10:45:06 +0100929/**
Jiri Slaby98629662021-11-26 09:16:04 +0100930 * finish_erasing - complete erase
931 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100932 */
Jiri Slaby57c94122012-10-18 22:26:43 +0200933static inline void finish_erasing(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200935 if (ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200936 echo_char_raw('/', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200937 ldata->erasing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939}
940
941/**
Jiri Slaby98629662021-11-26 09:16:04 +0100942 * eraser - handle erase function
943 * @c: character input
944 * @tty: terminal device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 *
Jiri Slaby98629662021-11-26 09:16:04 +0100946 * Perform erase and necessary output when an erase character is present in the
947 * stream from the driver layer. Handles the complexities of UTF-8 multibyte
948 * symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100949 *
Jiri Slaby98629662021-11-26 09:16:04 +0100950 * Locking: n_tty_receive_buf()/producer path:
951 * caller holds non-exclusive %termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953static void eraser(unsigned char c, struct tty_struct *tty)
954{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200955 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 enum { ERASE, WERASE, KILL } kill_type;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400957 size_t head;
958 size_t cnt;
959 int seen_alnums;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200961 if (ldata->read_head == ldata->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000962 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return;
964 }
965 if (c == ERASE_CHAR(tty))
966 kill_type = ERASE;
967 else if (c == WERASE_CHAR(tty))
968 kill_type = WERASE;
969 else {
970 if (!L_ECHO(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200971 ldata->read_head = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return;
973 }
974 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200975 ldata->read_head = ldata->canon_head;
Jiri Slaby57c94122012-10-18 22:26:43 +0200976 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 echo_char(KILL_CHAR(tty), tty);
978 /* Add a newline if ECHOK is on and ECHOKE is off. */
979 if (L_ECHOK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +0200980 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return;
982 }
983 kill_type = KILL;
984 }
985
986 seen_alnums = 0;
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +0900987 while (MASK(ldata->read_head) != MASK(ldata->canon_head)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200988 head = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 /* erase a single possibly multibyte character */
991 do {
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400992 head--;
993 c = read_buf(ldata, head);
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +0900994 } while (is_continuation(c, tty) &&
995 MASK(head) != MASK(ldata->canon_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 /* do not partially erase */
998 if (is_continuation(c, tty))
999 break;
1000
1001 if (kill_type == WERASE) {
1002 /* Equivalent to BSD's ALTWERASE. */
1003 if (isalnum(c) || c == '_')
1004 seen_alnums++;
1005 else if (seen_alnums)
1006 break;
1007 }
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001008 cnt = ldata->read_head - head;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001009 ldata->read_head = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (L_ECHO(tty)) {
1011 if (L_ECHOPRT(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001012 if (!ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001013 echo_char_raw('\\', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001014 ldata->erasing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016 /* if cnt > 1, output a multi-byte character */
1017 echo_char(c, tty);
1018 while (--cnt > 0) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001019 head++;
1020 echo_char_raw(read_buf(ldata, head), ldata);
Jiri Slaby57c94122012-10-18 22:26:43 +02001021 echo_move_back_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1024 echo_char(ERASE_CHAR(tty), tty);
1025 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +00001026 unsigned int num_chars = 0;
1027 int after_tab = 0;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001028 size_t tail = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Joe Petersona88a69c2009-01-02 13:40:53 +00001030 /*
1031 * Count the columns used for characters
1032 * since the start of input or after a
1033 * previous tab.
1034 * This info is used to go back the correct
1035 * number of columns.
1036 */
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001037 while (MASK(tail) != MASK(ldata->canon_head)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001038 tail--;
1039 c = read_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +00001040 if (c == '\t') {
1041 after_tab = 1;
1042 break;
Alan Cox300a6202009-01-02 13:41:04 +00001043 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +00001045 num_chars += 2;
1046 } else if (!is_continuation(c, tty)) {
1047 num_chars++;
1048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001050 echo_erase_tab(num_chars, after_tab, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 } else {
1052 if (iscntrl(c) && L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001053 echo_char_raw('\b', ldata);
1054 echo_char_raw(' ', ldata);
1055 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001058 echo_char_raw('\b', ldata);
1059 echo_char_raw(' ', ldata);
1060 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062 }
1063 }
1064 if (kill_type == ERASE)
1065 break;
1066 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001067 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001068 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
Jiri Slabyc66453c2021-11-26 09:16:03 +01001071
1072static void __isig(int sig, struct tty_struct *tty)
1073{
1074 struct pid *tty_pgrp = tty_get_pgrp(tty);
1075 if (tty_pgrp) {
1076 kill_pgrp(tty_pgrp, sig, 1);
1077 put_pid(tty_pgrp);
1078 }
1079}
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081/**
Jiri Slaby98629662021-11-26 09:16:04 +01001082 * isig - handle the ISIG optio
1083 * @sig: signal
1084 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 *
Jiri Slaby98629662021-11-26 09:16:04 +01001086 * Called when a signal is being sent due to terminal input. Called from the
1087 * &tty_driver.receive_buf() path, so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001088 *
Jiri Slaby98629662021-11-26 09:16:04 +01001089 * Performs input and output flush if !NOFLSH. In this context, the echo
1090 * buffer is 'output'. The signal is processed first to alert any current
1091 * readers or writers to discontinue and exit their i/o loops.
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001092 *
Jiri Slaby98629662021-11-26 09:16:04 +01001093 * Locking: %ctrl.lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 */
Peter Hurley3b19e032015-06-27 09:21:32 -04001095static void isig(int sig, struct tty_struct *tty)
1096{
1097 struct n_tty_data *ldata = tty->disc_data;
1098
1099 if (L_NOFLSH(tty)) {
1100 /* signal only */
1101 __isig(sig, tty);
1102
1103 } else { /* signal and flush */
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001104 up_read(&tty->termios_rwsem);
1105 down_write(&tty->termios_rwsem);
1106
Peter Hurley3b19e032015-06-27 09:21:32 -04001107 __isig(sig, tty);
1108
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001109 /* clear echo buffer */
1110 mutex_lock(&ldata->output_lock);
1111 ldata->echo_head = ldata->echo_tail = 0;
1112 ldata->echo_mark = ldata->echo_commit = 0;
1113 mutex_unlock(&ldata->output_lock);
1114
1115 /* clear output buffer */
1116 tty_driver_flush_buffer(tty);
1117
1118 /* clear input buffer */
1119 reset_buffer_flags(tty->disc_data);
1120
1121 /* notify pty master of flush */
1122 if (tty->link)
1123 n_tty_packet_mode_flush(tty);
1124
1125 up_write(&tty->termios_rwsem);
1126 down_read(&tty->termios_rwsem);
1127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
1130/**
Jiri Slaby98629662021-11-26 09:16:04 +01001131 * n_tty_receive_break - handle break
1132 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 *
Jiri Slaby98629662021-11-26 09:16:04 +01001134 * An RS232 break event has been hit in the incoming bitstream. This can cause
1135 * a variety of events depending upon the termios settings.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 *
Jiri Slaby98629662021-11-26 09:16:04 +01001137 * Locking: n_tty_receive_buf()/producer path:
1138 * caller holds non-exclusive termios_rwsem
Peter Hurley6d76bd22013-06-15 09:14:26 -04001139 *
Jiri Slaby98629662021-11-26 09:16:04 +01001140 * Note: may get exclusive %termios_rwsem if flushing input buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 */
Peter Hurley4b293492013-07-24 08:29:55 -04001142static void n_tty_receive_break(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Jiri Slaby57c94122012-10-18 22:26:43 +02001144 struct n_tty_data *ldata = tty->disc_data;
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (I_IGNBRK(tty))
1147 return;
1148 if (I_BRKINT(tty)) {
Peter Hurley8c985d12013-03-06 08:38:19 -05001149 isig(SIGINT, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return;
1151 }
1152 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001153 put_tty_queue('\377', ldata);
1154 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001156 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159/**
Jiri Slaby98629662021-11-26 09:16:04 +01001160 * n_tty_receive_overrun - handle overrun reporting
1161 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 *
Jiri Slaby98629662021-11-26 09:16:04 +01001163 * Data arrived faster than we could process it. While the tty driver has
1164 * flagged this the bits that were missed are gone forever.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 *
Jiri Slaby98629662021-11-26 09:16:04 +01001166 * Called from the receive_buf path so single threaded. Does not need locking
1167 * as num_overrun and overrun_time are function private.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
Peter Hurley4b293492013-07-24 08:29:55 -04001169static void n_tty_receive_overrun(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001171 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001173 ldata->num_overrun++;
1174 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1175 time_after(ldata->overrun_time, jiffies)) {
Peter Hurley339f36b2015-11-08 13:01:13 -05001176 tty_warn(tty, "%d input overrun(s)\n", ldata->num_overrun);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001177 ldata->overrun_time = jiffies;
1178 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180}
1181
1182/**
Jiri Slaby98629662021-11-26 09:16:04 +01001183 * n_tty_receive_parity_error - error notifier
1184 * @tty: terminal device
1185 * @c: character
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 *
Jiri Slaby98629662021-11-26 09:16:04 +01001187 * Process a parity error and queue the right data to indicate the error case
1188 * if necessary.
Peter Hurley6d76bd22013-06-15 09:14:26 -04001189 *
Jiri Slaby98629662021-11-26 09:16:04 +01001190 * Locking: n_tty_receive_buf()/producer path:
1191 * caller holds non-exclusive %termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 */
Peter Hurley4b293492013-07-24 08:29:55 -04001193static void n_tty_receive_parity_error(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Jiri Slaby57c94122012-10-18 22:26:43 +02001195 struct n_tty_data *ldata = tty->disc_data;
1196
Peter Hurley66528f92014-06-16 08:10:42 -04001197 if (I_INPCK(tty)) {
1198 if (I_IGNPAR(tty))
1199 return;
1200 if (I_PARMRK(tty)) {
1201 put_tty_queue('\377', ldata);
1202 put_tty_queue('\0', ldata);
1203 put_tty_queue(c, ldata);
1204 } else
1205 put_tty_queue('\0', ldata);
1206 } else
Jiri Slaby57c94122012-10-18 22:26:43 +02001207 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001210static void
1211n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c)
1212{
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001213 isig(signal, tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001214 if (I_IXON(tty))
1215 start_tty(tty);
1216 if (L_ECHO(tty)) {
1217 echo_char(c, tty);
1218 commit_echoes(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001219 } else
1220 process_echoes(tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001221}
1222
Jiri Slaby16765362021-05-05 11:19:00 +02001223static void n_tty_receive_char_special(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001225 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (I_IXON(tty)) {
1228 if (c == START_CHAR(tty)) {
1229 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001230 process_echoes(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001231 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 if (c == STOP_CHAR(tty)) {
1234 stop_tty(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001235 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237 }
Joe Peterson575537b32008-04-30 00:53:30 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 if (L_ISIG(tty)) {
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001240 if (c == INTR_CHAR(tty)) {
1241 n_tty_receive_signal_char(tty, SIGINT, c);
Jiri Slaby16765362021-05-05 11:19:00 +02001242 return;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001243 } else if (c == QUIT_CHAR(tty)) {
1244 n_tty_receive_signal_char(tty, SIGQUIT, c);
Jiri Slaby16765362021-05-05 11:19:00 +02001245 return;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001246 } else if (c == SUSP_CHAR(tty)) {
1247 n_tty_receive_signal_char(tty, SIGTSTP, c);
Jiri Slaby16765362021-05-05 11:19:00 +02001248 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250 }
Joe Peterson575537b32008-04-30 00:53:30 -07001251
Jiri Slaby6e94dbc2021-05-05 11:19:05 +02001252 if (tty->flow.stopped && !tty->flow.tco_stopped && I_IXON(tty) && I_IXANY(tty)) {
Peter Hurley855df3c2013-07-24 08:29:50 -04001253 start_tty(tty);
1254 process_echoes(tty);
1255 }
1256
Joe Peterson575537b32008-04-30 00:53:30 -07001257 if (c == '\r') {
1258 if (I_IGNCR(tty))
Jiri Slaby16765362021-05-05 11:19:00 +02001259 return;
Joe Peterson575537b32008-04-30 00:53:30 -07001260 if (I_ICRNL(tty))
1261 c = '\n';
1262 } else if (c == '\n' && I_INLCR(tty))
1263 c = '\r';
1264
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001265 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1267 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1268 eraser(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001269 commit_echoes(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001270 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
1272 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001273 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001275 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001277 echo_char_raw('^', ldata);
1278 echo_char_raw('\b', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001279 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281 }
Jiri Slaby16765362021-05-05 11:19:00 +02001282 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001284 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001285 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Jiri Slaby57c94122012-10-18 22:26:43 +02001287 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001289 echo_char_raw('\n', ldata);
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001290 while (MASK(tail) != MASK(ldata->read_head)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001291 echo_char(read_buf(ldata, tail), tty);
1292 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001294 commit_echoes(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001295 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
1297 if (c == '\n') {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001298 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001299 echo_char_raw('\n', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001300 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302 goto handle_newline;
1303 }
1304 if (c == EOF_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 c = __DISABLED_CHAR;
1306 goto handle_newline;
1307 }
1308 if ((c == EOL_CHAR(tty)) ||
1309 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1310 /*
1311 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1312 */
1313 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001315 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001316 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 echo_char(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001318 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320 /*
1321 * XXX does PARMRK doubling happen for
1322 * EOL_CHAR and EOL2_CHAR?
1323 */
Peter Hurley001ba922013-12-02 14:24:44 -05001324 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001325 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Alan Cox4edf1822008-02-08 04:18:44 -08001327handle_newline:
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001328 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Peter Hurley6d76bd22013-06-15 09:14:26 -04001329 put_tty_queue(c, ldata);
Peter Hurley70aca712015-01-16 15:05:37 -05001330 smp_store_release(&ldata->canon_head, ldata->read_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001332 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
Jiri Slaby16765362021-05-05 11:19:00 +02001333 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335 }
Alan Cox4edf1822008-02-08 04:18:44 -08001336
Joe Petersonacc71bb2009-01-02 13:43:32 +00001337 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001338 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001340 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 else {
1342 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001343 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001344 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 echo_char(c, tty);
1346 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001347 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
1349
Peter Hurley001ba922013-12-02 14:24:44 -05001350 /* PARMRK doubling check */
1351 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001352 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Jiri Slaby57c94122012-10-18 22:26:43 +02001354 put_tty_queue(c, ldata);
Alan Cox4edf1822008-02-08 04:18:44 -08001355}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Jiri Slabyc66453c2021-11-26 09:16:03 +01001357/**
Jiri Slaby98629662021-11-26 09:16:04 +01001358 * n_tty_receive_char - perform processing
1359 * @tty: terminal device
1360 * @c: character
Jiri Slabyc66453c2021-11-26 09:16:03 +01001361 *
Jiri Slaby98629662021-11-26 09:16:04 +01001362 * Process an individual character of input received from the driver. This is
1363 * serialized with respect to itself by the rules for the driver above.
Jiri Slabyc66453c2021-11-26 09:16:03 +01001364 *
Jiri Slaby98629662021-11-26 09:16:04 +01001365 * Locking: n_tty_receive_buf()/producer path:
1366 * caller holds non-exclusive %termios_rwsem
1367 * publishes canon_head if canonical mode is active
Jiri Slabyc66453c2021-11-26 09:16:03 +01001368 */
Jiri Slaby95aafe32021-05-05 11:18:58 +02001369static void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001370{
1371 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001372
Jiri Slaby6e94dbc2021-05-05 11:19:05 +02001373 if (tty->flow.stopped && !tty->flow.tco_stopped && I_IXON(tty) && I_IXANY(tty)) {
Peter Hurleye60d27c2013-07-24 08:29:56 -04001374 start_tty(tty);
1375 process_echoes(tty);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001376 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001377 if (L_ECHO(tty)) {
1378 finish_erasing(ldata);
1379 /* Record the column of first canon char. */
1380 if (ldata->canon_head == ldata->read_head)
1381 echo_set_canon_col(ldata);
1382 echo_char(c, tty);
1383 commit_echoes(tty);
1384 }
Peter Hurley001ba922013-12-02 14:24:44 -05001385 /* PARMRK doubling check */
Jiri Slaby95aafe32021-05-05 11:18:58 +02001386 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001387 put_tty_queue(c, ldata);
1388 put_tty_queue(c, ldata);
1389}
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001390
Peter Hurley8dc4b252013-12-02 14:24:43 -05001391static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001392{
1393 if (I_ISTRIP(tty))
1394 c &= 0x7f;
1395 if (I_IUCLC(tty) && L_IEXTEN(tty))
1396 c = tolower(c);
1397
1398 if (I_IXON(tty)) {
1399 if (c == STOP_CHAR(tty))
1400 stop_tty(tty);
1401 else if (c == START_CHAR(tty) ||
Jiri Slaby6e94dbc2021-05-05 11:19:05 +02001402 (tty->flow.stopped && !tty->flow.tco_stopped && I_IXANY(tty) &&
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001403 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) &&
1404 c != SUSP_CHAR(tty))) {
1405 start_tty(tty);
1406 process_echoes(tty);
1407 }
1408 }
1409}
1410
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001411static void
1412n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)
1413{
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001414 switch (flag) {
1415 case TTY_BREAK:
1416 n_tty_receive_break(tty);
1417 break;
1418 case TTY_PARITY:
1419 case TTY_FRAME:
1420 n_tty_receive_parity_error(tty, c);
1421 break;
1422 case TTY_OVERRUN:
1423 n_tty_receive_overrun(tty);
1424 break;
1425 default:
Peter Hurley339f36b2015-11-08 13:01:13 -05001426 tty_err(tty, "unknown flag %d\n", flag);
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001427 break;
1428 }
1429}
1430
Peter Hurleye60d27c2013-07-24 08:29:56 -04001431static void
1432n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag)
1433{
1434 struct n_tty_data *ldata = tty->disc_data;
1435
1436 ldata->lnext = 0;
1437 if (likely(flag == TTY_NORMAL)) {
1438 if (I_ISTRIP(tty))
1439 c &= 0x7f;
1440 if (I_IUCLC(tty) && L_IEXTEN(tty))
1441 c = tolower(c);
Jiri Slaby95aafe32021-05-05 11:18:58 +02001442 n_tty_receive_char(tty, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001443 } else
1444 n_tty_receive_char_flagged(tty, c, flag);
1445}
1446
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001447static void
1448n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001449 const char *fp, int count)
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001450{
1451 struct n_tty_data *ldata = tty->disc_data;
1452 size_t n, head;
1453
1454 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001455 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001456 memcpy(read_buf_addr(ldata, head), cp, n);
1457 ldata->read_head += n;
1458 cp += n;
1459 count -= n;
1460
1461 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001462 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001463 memcpy(read_buf_addr(ldata, head), cp, n);
1464 ldata->read_head += n;
1465}
1466
Peter Hurley554117bd2013-06-15 10:21:25 -04001467static void
1468n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001469 const char *fp, int count)
Peter Hurley554117bd2013-06-15 10:21:25 -04001470{
1471 struct n_tty_data *ldata = tty->disc_data;
1472 char flag = TTY_NORMAL;
1473
1474 while (count--) {
1475 if (fp)
1476 flag = *fp++;
1477 if (likely(flag == TTY_NORMAL))
1478 put_tty_queue(*cp++, ldata);
1479 else
1480 n_tty_receive_char_flagged(tty, *cp++, flag);
1481 }
1482}
1483
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001484static void
1485n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001486 const char *fp, int count)
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001487{
1488 char flag = TTY_NORMAL;
1489
1490 while (count--) {
1491 if (fp)
1492 flag = *fp++;
1493 if (likely(flag == TTY_NORMAL))
1494 n_tty_receive_char_closing(tty, *cp++);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001495 }
1496}
1497
Jiri Slaby1ed2dfe2021-05-05 11:18:57 +02001498static void n_tty_receive_buf_standard(struct tty_struct *tty,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001499 const unsigned char *cp, const char *fp, int count)
Peter Hurley6baad002013-07-24 08:29:52 -04001500{
1501 struct n_tty_data *ldata = tty->disc_data;
1502 char flag = TTY_NORMAL;
1503
1504 while (count--) {
Jiri Slaby3a7d5302021-05-05 11:19:01 +02001505 unsigned char c = *cp++;
1506
Peter Hurley6baad002013-07-24 08:29:52 -04001507 if (fp)
1508 flag = *fp++;
Jiri Slaby67a620d2021-05-05 11:18:59 +02001509
1510 if (ldata->lnext) {
Jiri Slaby3a7d5302021-05-05 11:19:01 +02001511 n_tty_receive_char_lnext(tty, c, flag);
Jiri Slaby67a620d2021-05-05 11:18:59 +02001512 continue;
1513 }
1514
Jiri Slabye8f2a132021-05-05 11:19:02 +02001515 if (unlikely(flag != TTY_NORMAL)) {
Jiri Slaby3a7d5302021-05-05 11:19:01 +02001516 n_tty_receive_char_flagged(tty, c, flag);
Jiri Slabye8f2a132021-05-05 11:19:02 +02001517 continue;
1518 }
1519
1520 if (I_ISTRIP(tty))
1521 c &= 0x7f;
1522 if (I_IUCLC(tty) && L_IEXTEN(tty))
1523 c = tolower(c);
1524 if (L_EXTPROC(tty)) {
1525 put_tty_queue(c, ldata);
1526 continue;
1527 }
1528
1529 if (test_bit(c, ldata->char_map))
1530 n_tty_receive_char_special(tty, c);
1531 else
1532 n_tty_receive_char(tty, c);
Peter Hurley6baad002013-07-24 08:29:52 -04001533 }
1534}
1535
Peter Hurley24a89d12013-06-15 09:14:15 -04001536static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001537 const char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001539 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001540 bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001542 if (ldata->real_raw)
1543 n_tty_receive_buf_real_raw(tty, cp, fp, count);
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001544 else if (ldata->raw || (L_EXTPROC(tty) && !preops))
Peter Hurley554117bd2013-06-15 10:21:25 -04001545 n_tty_receive_buf_raw(tty, cp, fp, count);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001546 else if (tty->closing && !L_EXTPROC(tty))
1547 n_tty_receive_buf_closing(tty, cp, fp, count);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001548 else {
Jiri Slaby1ed2dfe2021-05-05 11:18:57 +02001549 n_tty_receive_buf_standard(tty, cp, fp, count);
Peter Hurleycbfd0342013-06-15 10:04:26 -04001550
1551 flush_echoes(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001552 if (tty->ops->flush_chars)
1553 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 }
1555
Peter Hurley70aca712015-01-16 15:05:37 -05001556 if (ldata->icanon && !L_EXTPROC(tty))
1557 return;
1558
1559 /* publish read_head to consumer */
1560 smp_store_release(&ldata->commit_head, ldata->read_head);
1561
Peter Hurley33d71362016-01-09 21:45:08 -08001562 if (read_cnt(ldata)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001564 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566}
1567
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001568/**
Jiri Slaby98629662021-11-26 09:16:04 +01001569 * n_tty_receive_buf_common - process input
1570 * @tty: device to receive input
1571 * @cp: input chars
1572 * @fp: flags for each char (if %NULL, all chars are %TTY_NORMAL)
1573 * @count: number of input chars in @cp
1574 * @flow: enable flow control
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001575 *
Jiri Slaby98629662021-11-26 09:16:04 +01001576 * Called by the terminal driver when a block of characters has been received.
1577 * This function must be called from soft contexts not from interrupt context.
1578 * The driver is responsible for making calls one at a time and in order (or
1579 * using flush_to_ldisc()).
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001580 *
Jiri Slaby98629662021-11-26 09:16:04 +01001581 * Returns: the # of input chars from @cp which were processed.
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001582 *
Jiri Slaby98629662021-11-26 09:16:04 +01001583 * In canonical mode, the maximum line length is 4096 chars (including the line
1584 * termination char); lines longer than 4096 chars are truncated. After 4095
1585 * chars, input data is still processed but not stored. Overflow processing
1586 * ensures the tty can always receive more input until at least one line can be
1587 * read.
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001588 *
Jiri Slaby98629662021-11-26 09:16:04 +01001589 * In non-canonical mode, the read buffer will only accept 4095 chars; this
1590 * provides the necessary space for a newline char if the input mode is
1591 * switched to canonical.
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001592 *
Jiri Slaby98629662021-11-26 09:16:04 +01001593 * Note it is possible for the read buffer to _contain_ 4096 chars in
1594 * non-canonical mode: the read buffer could already contain the maximum canon
1595 * line of 4096 chars when the mode is switched to non-canonical.
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001596 *
Jiri Slaby98629662021-11-26 09:16:04 +01001597 * Locking: n_tty_receive_buf()/producer path:
1598 * claims non-exclusive %termios_rwsem
1599 * publishes commit_head or canon_head
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001600 */
Peter Hurley5c32d122013-12-02 14:24:41 -05001601static int
1602n_tty_receive_buf_common(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001603 const char *fp, int count, int flow)
Peter Hurley24a89d12013-06-15 09:14:15 -04001604{
1605 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001606 int room, n, rcvd = 0, overflow;
Peter Hurley24a89d12013-06-15 09:14:15 -04001607
Peter Hurley9356b532013-06-15 09:14:24 -04001608 down_read(&tty->termios_rwsem);
1609
Dmitry Safonovc96cf922018-11-01 00:24:48 +00001610 do {
Peter Hurley70aca712015-01-16 15:05:37 -05001611 /*
Peter Hurley06c49f92015-01-16 15:05:38 -05001612 * When PARMRK is set, each input char may take up to 3 chars
1613 * in the read buf; reduce the buffer space avail by 3x
Peter Hurley70aca712015-01-16 15:05:37 -05001614 *
1615 * If we are doing input canonicalization, and there are no
1616 * pending newlines, let characters through without limit, so
1617 * that erase characters will be handled. Other excess
1618 * characters will be beeped.
1619 *
1620 * paired with store in *_copy_from_read_buf() -- guarantees
1621 * the consumer has loaded the data in read_buf up to the new
1622 * read_tail (so this producer will not overwrite unread data)
1623 */
1624 size_t tail = smp_load_acquire(&ldata->read_tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001625
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001626 room = N_TTY_BUF_SIZE - (ldata->read_head - tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001627 if (I_PARMRK(tty))
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001628 room = (room + 2) / 3;
1629 room--;
1630 if (room <= 0) {
1631 overflow = ldata->icanon && ldata->canon_head == tail;
1632 if (overflow && room < 0)
1633 ldata->read_head--;
1634 room = overflow;
1635 ldata->no_room = flow && !room;
1636 } else
1637 overflow = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05001638
Peter Hurley19e2ad62013-07-24 08:29:54 -04001639 n = min(count, room);
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001640 if (!n)
Peter Hurley19e2ad62013-07-24 08:29:54 -04001641 break;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001642
1643 /* ignore parity errors if handling overflow */
1644 if (!overflow || !fp || *fp != TTY_PARITY)
1645 __receive_buf(tty, cp, fp, n);
1646
Peter Hurley19e2ad62013-07-24 08:29:54 -04001647 cp += n;
1648 if (fp)
1649 fp += n;
1650 count -= n;
1651 rcvd += n;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00001652 } while (!test_bit(TTY_LDISC_CHANGING, &tty->flags));
Peter Hurley24a89d12013-06-15 09:14:15 -04001653
Peter Hurley19e2ad62013-07-24 08:29:54 -04001654 tty->receive_room = room;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001655
1656 /* Unthrottle if handling overflow on pty */
1657 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
1658 if (overflow) {
1659 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
1660 tty_unthrottle_safe(tty);
1661 __tty_set_flow_change(tty, 0);
1662 }
1663 } else
1664 n_tty_check_throttle(tty);
1665
Peter Hurley9356b532013-06-15 09:14:24 -04001666 up_read(&tty->termios_rwsem);
1667
Peter Hurley19e2ad62013-07-24 08:29:54 -04001668 return rcvd;
Peter Hurley24a89d12013-06-15 09:14:15 -04001669}
1670
Peter Hurley5c32d122013-12-02 14:24:41 -05001671static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001672 const char *fp, int count)
Peter Hurley5c32d122013-12-02 14:24:41 -05001673{
1674 n_tty_receive_buf_common(tty, cp, fp, count, 0);
1675}
1676
1677static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001678 const char *fp, int count)
Peter Hurley5c32d122013-12-02 14:24:41 -05001679{
1680 return n_tty_receive_buf_common(tty, cp, fp, count, 1);
1681}
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683/**
Jiri Slaby98629662021-11-26 09:16:04 +01001684 * n_tty_set_termios - termios data changed
1685 * @tty: terminal
1686 * @old: previous data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 *
Jiri Slaby98629662021-11-26 09:16:04 +01001688 * Called by the tty layer when the user changes termios flags so that the line
1689 * discipline can plan ahead. This function cannot sleep and is protected from
1690 * re-entry by the tty layer. The user is guaranteed that this function will
1691 * not be re-entered or in progress when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001692 *
Jiri Slaby98629662021-11-26 09:16:04 +01001693 * Locking: Caller holds @tty->termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 */
Alan Cox4edf1822008-02-08 04:18:44 -08001695static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001697 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001698
Linus Torvalds966031f2017-12-20 17:57:06 -08001699 if (!old || (old->c_lflag ^ tty->termios.c_lflag) & (ICANON | EXTPROC)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001700 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -05001701 ldata->line_start = ldata->read_tail;
1702 if (!L_ICANON(tty) || !read_cnt(ldata)) {
1703 ldata->canon_head = ldata->read_tail;
1704 ldata->push = 0;
1705 } else {
1706 set_bit((ldata->read_head - 1) & (N_TTY_BUF_SIZE - 1),
1707 ldata->read_flags);
1708 ldata->canon_head = ldata->read_head;
1709 ldata->push = 1;
1710 }
Peter Hurley70aca712015-01-16 15:05:37 -05001711 ldata->commit_head = ldata->read_head;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001712 ldata->erasing = 0;
Peter Hurley6f9b0282013-06-15 09:14:27 -04001713 ldata->lnext = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001714 }
1715
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001716 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1719 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1720 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1721 I_PARMRK(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001722 bitmap_zero(ldata->char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 if (I_IGNCR(tty) || I_ICRNL(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001725 set_bit('\r', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (I_INLCR(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001727 set_bit('\n', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 if (L_ICANON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001730 set_bit(ERASE_CHAR(tty), ldata->char_map);
1731 set_bit(KILL_CHAR(tty), ldata->char_map);
1732 set_bit(EOF_CHAR(tty), ldata->char_map);
1733 set_bit('\n', ldata->char_map);
1734 set_bit(EOL_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if (L_IEXTEN(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001736 set_bit(WERASE_CHAR(tty), ldata->char_map);
1737 set_bit(LNEXT_CHAR(tty), ldata->char_map);
1738 set_bit(EOL2_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (L_ECHO(tty))
1740 set_bit(REPRINT_CHAR(tty),
Peter Hurley1bb9d562013-06-15 10:21:20 -04001741 ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743 }
1744 if (I_IXON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001745 set_bit(START_CHAR(tty), ldata->char_map);
1746 set_bit(STOP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
1748 if (L_ISIG(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001749 set_bit(INTR_CHAR(tty), ldata->char_map);
1750 set_bit(QUIT_CHAR(tty), ldata->char_map);
1751 set_bit(SUSP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
Peter Hurley1bb9d562013-06-15 10:21:20 -04001753 clear_bit(__DISABLED_CHAR, ldata->char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001754 ldata->raw = 0;
1755 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001757 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1759 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1760 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001761 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001763 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001765 /*
1766 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1767 * been stopped by STOP_CHAR(tty) before it.
1768 */
Jiri Slaby6e94dbc2021-05-05 11:19:05 +02001769 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow.tco_stopped) {
Wang YanQingdab73b42013-05-09 14:16:47 +08001770 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001771 process_echoes(tty);
1772 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001773
Alan Coxf34d7a52008-04-30 00:54:13 -07001774 /* The termios change make the tty ready for I/O */
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001775 wake_up_interruptible(&tty->write_wait);
1776 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777}
1778
1779/**
Jiri Slaby98629662021-11-26 09:16:04 +01001780 * n_tty_close - close the ldisc for this tty
1781 * @tty: device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 *
Jiri Slaby98629662021-11-26 09:16:04 +01001783 * Called from the terminal layer when this line discipline is being shut down,
1784 * either because of a close or becsuse of a discipline change. The function
1785 * will not be called while other ldisc methods are in progress.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787static void n_tty_close(struct tty_struct *tty)
1788{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001789 struct n_tty_data *ldata = tty->disc_data;
1790
Peter Hurley79901312013-03-11 16:44:23 -04001791 if (tty->link)
1792 n_tty_packet_mode_flush(tty);
1793
Yan.Gaoc9cd57b2020-12-10 10:25:07 +08001794 down_write(&tty->termios_rwsem);
Peter Hurley20bafb32013-06-15 10:21:19 -04001795 vfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001796 tty->disc_data = NULL;
Yan.Gaoc9cd57b2020-12-10 10:25:07 +08001797 up_write(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
1800/**
Jiri Slaby98629662021-11-26 09:16:04 +01001801 * n_tty_open - open an ldisc
1802 * @tty: terminal to open
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 *
Jiri Slaby98629662021-11-26 09:16:04 +01001804 * Called when this line discipline is being attached to the terminal device.
1805 * Can sleep. Called serialized so that no other events will occur in parallel.
1806 * No further open will occur until a close.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808static int n_tty_open(struct tty_struct *tty)
1809{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001810 struct n_tty_data *ldata;
1811
Peter Hurley20bafb32013-06-15 10:21:19 -04001812 /* Currently a malloc failure here can panic */
Tetsuo Handaebec3f82018-05-26 09:53:14 +09001813 ldata = vzalloc(sizeof(*ldata));
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001814 if (!ldata)
Tetsuo Handaebec3f82018-05-26 09:53:14 +09001815 return -ENOMEM;
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001816
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001817 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001818 mutex_init(&ldata->atomic_read_lock);
1819 mutex_init(&ldata->output_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001820
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001821 tty->disc_data = ldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001823 /* indicate buffer work may resume */
1824 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1825 n_tty_set_termios(tty, NULL);
1826 tty_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return 0;
1828}
1829
Peter Hurleyeafbe672013-12-02 14:24:45 -05001830static inline int input_available_p(struct tty_struct *tty, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001832 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya5934802014-02-11 11:49:58 -05001833 int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001834
Peter Hurley25e8d0e2014-02-11 18:55:30 -05001835 if (ldata->icanon && !L_EXTPROC(tty))
1836 return ldata->canon_head != ldata->read_tail;
1837 else
Peter Hurley70aca712015-01-16 15:05:37 -05001838 return ldata->commit_head - ldata->read_tail >= amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
1841/**
Jiri Slaby98629662021-11-26 09:16:04 +01001842 * copy_from_read_buf - copy read data directly
1843 * @tty: terminal device
1844 * @kbp: data
1845 * @nr: size of data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 *
Jiri Slaby98629662021-11-26 09:16:04 +01001847 * Helper function to speed up n_tty_read(). It is only called when %ICANON is
1848 * off; it copies characters straight from the tty queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 *
Jiri Slaby98629662021-11-26 09:16:04 +01001850 * Returns: true if it successfully copied data, but there is still more data
1851 * to be had.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 *
Jiri Slaby98629662021-11-26 09:16:04 +01001853 * Locking:
1854 * * called under the @ldata->atomic_read_lock sem
1855 * * n_tty_read()/consumer path:
1856 * caller holds non-exclusive %termios_rwsem;
Peter Hurley6d76bd22013-06-15 09:14:26 -04001857 * read_tail published
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 */
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001859static bool copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds3b830a92021-01-18 13:31:30 -08001860 unsigned char **kbp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 size_t *nr)
1862
1863{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001864 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 size_t n;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001866 bool is_eof;
Peter Hurley70aca712015-01-16 15:05:37 -05001867 size_t head = smp_load_acquire(&ldata->commit_head);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001868 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Peter Hurley70aca712015-01-16 15:05:37 -05001870 n = min(head - ldata->read_tail, N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 n = min(*nr, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 if (n) {
Greg KHb97b3d92018-10-04 11:06:14 -07001873 unsigned char *from = read_buf_addr(ldata, tail);
Linus Torvalds3b830a92021-01-18 13:31:30 -08001874 memcpy(*kbp, from, n);
Peter Hurleye661cf72015-11-27 14:11:03 -05001875 is_eof = n == 1 && *from == EOF_CHAR(tty);
Peter Hurley309426a2016-01-09 22:55:27 -08001876 tty_audit_add_data(tty, from, n);
Greg KHb97b3d92018-10-04 11:06:14 -07001877 zero_buffer(tty, from, n);
Peter Hurley70aca712015-01-16 15:05:37 -05001878 smp_store_release(&ldata->read_tail, ldata->read_tail + n);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001879 /* Turn single EOF into zero-length read */
Peter Hurley70aca712015-01-16 15:05:37 -05001880 if (L_EXTPROC(tty) && ldata->icanon && is_eof &&
1881 (head == ldata->read_tail))
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001882 return false;
Linus Torvalds3b830a92021-01-18 13:31:30 -08001883 *kbp += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 *nr -= n;
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001885
1886 /* If we have more to copy, let the caller know */
1887 return head != ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001889 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890}
1891
Peter Hurley88bb0de2013-06-15 09:14:16 -04001892/**
Jiri Slaby98629662021-11-26 09:16:04 +01001893 * canon_copy_from_read_buf - copy read data in canonical mode
1894 * @tty: terminal device
1895 * @kbp: data
1896 * @nr: size of data
Peter Hurley88bb0de2013-06-15 09:14:16 -04001897 *
Jiri Slaby98629662021-11-26 09:16:04 +01001898 * Helper function for n_tty_read(). It is only called when %ICANON is on; it
1899 * copies one line of input up to and including the line-delimiting character
1900 * into the result buffer.
Peter Hurley88bb0de2013-06-15 09:14:16 -04001901 *
Jiri Slaby98629662021-11-26 09:16:04 +01001902 * Note: When termios is changed from non-canonical to canonical mode and the
1903 * read buffer contains data, n_tty_set_termios() simulates an EOF push (as if
1904 * C-d were input) _without_ the %DISABLED_CHAR in the buffer. This causes data
1905 * already processed as input to be immediately available as input although a
1906 * newline has not been received.
Peter Hurley4d0ed182013-12-10 17:12:02 -05001907 *
Jiri Slaby98629662021-11-26 09:16:04 +01001908 * Locking:
1909 * * called under the %atomic_read_lock mutex
1910 * * n_tty_read()/consumer path:
1911 * caller holds non-exclusive %termios_rwsem;
1912 * read_tail published
Peter Hurley88bb0de2013-06-15 09:14:16 -04001913 */
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001914static bool canon_copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds64a698922021-01-19 13:46:28 -08001915 unsigned char **kbp,
1916 size_t *nr)
Peter Hurley88bb0de2013-06-15 09:14:16 -04001917{
1918 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley32f13522013-06-15 09:14:17 -04001919 size_t n, size, more, c;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001920 size_t eol;
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001921 size_t tail, canon_head;
Linus Torvalds3b830a92021-01-18 13:31:30 -08001922 int found = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001923
1924 /* N.B. avoid overrun if nr == 0 */
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001925 if (!*nr)
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001926 return false;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001927
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001928 canon_head = smp_load_acquire(&ldata->canon_head);
1929 n = min(*nr + 1, canon_head - ldata->read_tail);
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001930
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001931 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Peter Hurley32f13522013-06-15 09:14:17 -04001932 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
1933
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001934 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04001935 __func__, *nr, tail, n, size);
1936
1937 eol = find_next_bit(ldata->read_flags, size, tail);
1938 more = n - (size - tail);
1939 if (eol == N_TTY_BUF_SIZE && more) {
1940 /* scan wrapped without finding set bit */
Yury Norovb5c7e7e2021-08-14 14:17:03 -07001941 eol = find_first_bit(ldata->read_flags, more);
Peter Hurleyb985e9e2015-11-27 14:11:04 -05001942 found = eol != more;
1943 } else
1944 found = eol != size;
Peter Hurley32f13522013-06-15 09:14:17 -04001945
Peter Hurleyc77569d2013-11-22 07:16:25 -05001946 n = eol - tail;
Mark Tomlinsonda555db2015-05-18 12:01:48 +12001947 if (n > N_TTY_BUF_SIZE)
1948 n += N_TTY_BUF_SIZE;
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001949 c = n + found;
Peter Hurley32f13522013-06-15 09:14:17 -04001950
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001951 if (!found || read_buf(ldata, eol) != __DISABLED_CHAR) {
1952 c = min(*nr, c);
1953 n = c;
Peter Hurley40d5e092013-06-15 10:21:17 -04001954 }
Peter Hurley32f13522013-06-15 09:14:17 -04001955
Peter Hurley679e7c22015-11-27 14:11:02 -05001956 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n",
1957 __func__, eol, found, n, c, tail, more);
Peter Hurley32f13522013-06-15 09:14:17 -04001958
Linus Torvalds3b830a92021-01-18 13:31:30 -08001959 tty_copy(tty, *kbp, tail, n);
1960 *kbp += n;
Peter Hurley32f13522013-06-15 09:14:17 -04001961 *nr -= n;
1962
Peter Hurleya73d3d62013-06-15 09:14:25 -04001963 if (found)
Peter Hurley6d76bd22013-06-15 09:14:26 -04001964 clear_bit(eol, ldata->read_flags);
Peter Hurley70aca712015-01-16 15:05:37 -05001965 smp_store_release(&ldata->read_tail, ldata->read_tail + c);
Peter Hurley88bb0de2013-06-15 09:14:16 -04001966
Peter Hurley40d5e092013-06-15 10:21:17 -04001967 if (found) {
Peter Hurley4d0ed182013-12-10 17:12:02 -05001968 if (!ldata->push)
1969 ldata->line_start = ldata->read_tail;
1970 else
1971 ldata->push = 0;
Peter Hurleyb50819f2016-01-09 22:55:30 -08001972 tty_audit_push();
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001973 return false;
Peter Hurley40d5e092013-06-15 10:21:17 -04001974 }
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001975
1976 /* No EOL found - do a continuation retry if there is more data */
1977 return ldata->read_tail != canon_head;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001978}
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980/**
Jiri Slaby98629662021-11-26 09:16:04 +01001981 * job_control - check job control
1982 * @tty: tty
1983 * @file: file handle
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 *
Jiri Slaby98629662021-11-26 09:16:04 +01001985 * Perform job control management checks on this @file/@tty descriptor and if
1986 * appropriate send any needed signals and return a negative error code if
1987 * action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07001988 *
Jiri Slaby98629662021-11-26 09:16:04 +01001989 * Locking:
1990 * * redirected write test is safe
1991 * * current->signal->tty check is safe
1992 * * ctrl.lock to safely reference @tty->ctrl.pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994static int job_control(struct tty_struct *tty, struct file *file)
1995{
1996 /* Job control check -- must be done at start and after
1997 every sleep (POSIX.1 7.1.1.4). */
1998 /* NOTE: not yet done after every sleep pending a thorough
1999 check of the logic of this change. -- jlc */
2000 /* don't stop on /dev/console */
Sami Tolvanen9f12e372021-01-25 11:09:25 -08002001 if (file->f_op->write_iter == redirected_tty_write)
Peter Hurley01a5e442013-03-06 08:38:20 -05002002 return 0;
2003
Peter Hurley2812d9e2015-10-10 20:28:42 -04002004 return __tty_check_change(tty, SIGTTIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
Alan Cox4edf1822008-02-08 04:18:44 -08002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
2008/**
Jiri Slaby98629662021-11-26 09:16:04 +01002009 * n_tty_read - read function for tty
2010 * @tty: tty device
2011 * @file: file object
2012 * @kbuf: kernelspace buffer pointer
2013 * @nr: size of I/O
2014 * @cookie: if non-%NULL, this is a continuation read
2015 * @offset: where to continue reading from (unused in n_tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 *
Jiri Slaby98629662021-11-26 09:16:04 +01002017 * Perform reads for the line discipline. We are guaranteed that the line
2018 * discipline will not be closed under us but we may get multiple parallel
2019 * readers and must handle this ourselves. We may also get a hangup. Always
2020 * called in user context, may sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 *
Jiri Slaby98629662021-11-26 09:16:04 +01002022 * This code must be sure never to sleep through a hangup.
Peter Hurley6d76bd22013-06-15 09:14:26 -04002023 *
Jiri Slaby98629662021-11-26 09:16:04 +01002024 * Locking: n_tty_read()/consumer path:
2025 * claims non-exclusive termios_rwsem;
2026 * publishes read_tail
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 */
Alan Cox11a96d12008-10-13 10:46:24 +01002028static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds3b830a92021-01-18 13:31:30 -08002029 unsigned char *kbuf, size_t nr,
2030 void **cookie, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002032 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds3b830a92021-01-18 13:31:30 -08002033 unsigned char *kb = kbuf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002034 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002035 int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 int minimum, time;
2037 ssize_t retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 long timeout;
Jiri Slaby64d608d2021-05-05 11:19:06 +02002039 bool packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002040 size_t tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002042 /*
2043 * Is this a continuation of a read started earler?
2044 *
2045 * If so, we still hold the atomic_read_lock and the
2046 * termios_rwsem, and can just continue to copy data.
2047 */
2048 if (*cookie) {
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002049 if (ldata->icanon && !L_EXTPROC(tty)) {
2050 if (canon_copy_from_read_buf(tty, &kb, &nr))
2051 return kb - kbuf;
2052 } else {
2053 if (copy_from_read_buf(tty, &kb, &nr))
2054 return kb - kbuf;
2055 }
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002056
2057 /* No more data - release locks and stop retries */
2058 n_tty_kick_worker(tty);
2059 n_tty_check_unthrottle(tty);
2060 up_read(&tty->termios_rwsem);
2061 mutex_unlock(&ldata->atomic_read_lock);
2062 *cookie = NULL;
2063 return kb - kbuf;
2064 }
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08002067 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08002069
Peter Hurleyaefceaf2013-08-11 08:04:23 -04002070 /*
2071 * Internal serialization of reads.
2072 */
2073 if (file->f_flags & O_NONBLOCK) {
2074 if (!mutex_trylock(&ldata->atomic_read_lock))
2075 return -EAGAIN;
2076 } else {
2077 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
2078 return -ERESTARTSYS;
2079 }
2080
Peter Hurley9356b532013-06-15 09:14:24 -04002081 down_read(&tty->termios_rwsem);
2082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 minimum = time = 0;
2084 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002085 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 minimum = MIN_CHAR(tty);
2087 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04002088 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04002090 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurley33d71362016-01-09 21:45:08 -08002091 minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
2093 }
2094
Jiri Slaby64d608d2021-05-05 11:19:06 +02002095 packet = tty->ctrl.packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002096 tail = ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 while (nr) {
2100 /* First test for status change. */
Jiri Slaby64d608d2021-05-05 11:19:06 +02002101 if (packet && tty->link->ctrl.pktstatus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 unsigned char cs;
Linus Torvalds3b830a92021-01-18 13:31:30 -08002103 if (kb != kbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 break;
Jiri Slaby64d608d2021-05-05 11:19:06 +02002105 spin_lock_irq(&tty->link->ctrl.lock);
2106 cs = tty->link->ctrl.pktstatus;
2107 tty->link->ctrl.pktstatus = 0;
2108 spin_unlock_irq(&tty->link->ctrl.lock);
Linus Torvalds3b830a92021-01-18 13:31:30 -08002109 *kb++ = cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 nr--;
2111 break;
2112 }
Alan Cox4edf1822008-02-08 04:18:44 -08002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if (!input_available_p(tty, 0)) {
Peter Hurley52bce7f2014-11-05 12:13:05 -05002115 up_read(&tty->termios_rwsem);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002116 tty_buffer_flush_work(tty->port);
Peter Hurley52bce7f2014-11-05 12:13:05 -05002117 down_read(&tty->termios_rwsem);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002118 if (!input_available_p(tty, 0)) {
2119 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
2120 retval = -EIO;
2121 break;
2122 }
2123 if (tty_hung_up_p(file))
2124 break;
Tejun Heo28b0f8a2018-02-13 07:38:08 -08002125 /*
2126 * Abort readers for ttys which never actually
2127 * get hung up. See __tty_hangup().
2128 */
2129 if (test_bit(TTY_HUPPING, &tty->flags))
2130 break;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002131 if (!timeout)
2132 break;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00002133 if (tty_io_nonblock(tty, file)) {
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002134 retval = -EAGAIN;
2135 break;
2136 }
2137 if (signal_pending(current)) {
2138 retval = -ERESTARTSYS;
2139 break;
2140 }
2141 up_read(&tty->termios_rwsem);
2142
2143 timeout = wait_woken(&wait, TASK_INTERRUPTIBLE,
2144 timeout);
2145
2146 down_read(&tty->termios_rwsem);
2147 continue;
2148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002151 if (ldata->icanon && !L_EXTPROC(tty)) {
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002152 if (canon_copy_from_read_buf(tty, &kb, &nr))
2153 goto more_to_be_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 } else {
Peter Hurley95ea90d2014-10-16 15:33:30 -04002155 /* Deal with packet mode. */
Linus Torvalds3b830a92021-01-18 13:31:30 -08002156 if (packet && kb == kbuf) {
2157 *kb++ = TIOCPKT_DATA;
Peter Hurley95ea90d2014-10-16 15:33:30 -04002158 nr--;
2159 }
2160
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002161 /*
2162 * Copy data, and if there is more to be had
2163 * and we have nothing more to wait for, then
2164 * let's mark us for retries.
2165 *
2166 * NOTE! We return here with both the termios_sem
2167 * and atomic_read_lock still held, the retries
2168 * will release them when done.
2169 */
2170 if (copy_from_read_buf(tty, &kb, &nr) && kb - kbuf >= minimum) {
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002171more_to_be_read:
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002172 remove_wait_queue(&tty->read_wait, &wait);
2173 *cookie = cookie;
2174 return kb - kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 }
2176 }
2177
Peter Hurley6367ca72013-06-15 09:14:33 -04002178 n_tty_check_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Linus Torvalds3b830a92021-01-18 13:31:30 -08002180 if (kb - kbuf >= minimum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 break;
2182 if (time)
2183 timeout = time;
2184 }
Peter Hurley2c5dc462015-01-16 15:05:34 -05002185 if (tail != ldata->read_tail)
2186 n_tty_kick_worker(tty);
Peter Hurley42458f42013-11-07 13:59:46 -05002187 up_read(&tty->termios_rwsem);
2188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 remove_wait_queue(&tty->read_wait, &wait);
Peter Hurleyaebf04532013-11-07 14:01:57 -05002190 mutex_unlock(&ldata->atomic_read_lock);
2191
Linus Torvalds3b830a92021-01-18 13:31:30 -08002192 if (kb - kbuf)
2193 retval = kb - kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 return retval;
2196}
2197
2198/**
Jiri Slaby98629662021-11-26 09:16:04 +01002199 * n_tty_write - write function for tty
2200 * @tty: tty device
2201 * @file: file object
2202 * @buf: userspace buffer pointer
2203 * @nr: size of I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 *
Jiri Slaby98629662021-11-26 09:16:04 +01002205 * Write function of the terminal device. This is serialized with respect to
2206 * other write callers but not to termios changes, reads and other such events.
2207 * Since the receive code will echo characters, thus calling driver write
2208 * methods, the %output_lock is used in the output processing functions called
2209 * here as well as in the echo processing function to protect the column state
2210 * and space left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 *
Jiri Slaby98629662021-11-26 09:16:04 +01002212 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002213 *
Jiri Slaby98629662021-11-26 09:16:04 +01002214 * Locking: output_lock to protect column state and space left
2215 * (note that the process_output*() functions take this lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 */
Alan Cox4edf1822008-02-08 04:18:44 -08002217
Alan Cox11a96d12008-10-13 10:46:24 +01002218static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002219 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
2221 const unsigned char *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002222 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 int c;
2224 ssize_t retval = 0;
2225
2226 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
Sami Tolvanen9f12e372021-01-25 11:09:25 -08002227 if (L_TOSTOP(tty) && file->f_op->write_iter != redirected_tty_write) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 retval = tty_check_change(tty);
2229 if (retval)
2230 return retval;
2231 }
2232
Peter Hurley9356b532013-06-15 09:14:24 -04002233 down_read(&tty->termios_rwsem);
2234
Joe Petersona88a69c2009-01-02 13:40:53 +00002235 /* Write out any echoed characters that are still pending */
2236 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 add_wait_queue(&tty->write_wait, &wait);
2239 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (signal_pending(current)) {
2241 retval = -ERESTARTSYS;
2242 break;
2243 }
2244 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2245 retval = -EIO;
2246 break;
2247 }
Peter Hurley582f5592013-05-17 12:49:48 -04002248 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002250 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 if (num < 0) {
2252 if (num == -EAGAIN)
2253 break;
2254 retval = num;
2255 goto break_out;
2256 }
2257 b += num;
2258 nr -= num;
2259 if (nr == 0)
2260 break;
2261 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002262 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 break;
2264 b++; nr--;
2265 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002266 if (tty->ops->flush_chars)
2267 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 } else {
Peter Hurley42910862014-05-03 14:04:59 +02002269 struct n_tty_data *ldata = tty->disc_data;
2270
Roman Zippeld6afe272005-07-07 17:56:55 -07002271 while (nr > 0) {
Peter Hurley42910862014-05-03 14:04:59 +02002272 mutex_lock(&ldata->output_lock);
Alan Coxf34d7a52008-04-30 00:54:13 -07002273 c = tty->ops->write(tty, b, nr);
Peter Hurley42910862014-05-03 14:04:59 +02002274 mutex_unlock(&ldata->output_lock);
Roman Zippeld6afe272005-07-07 17:56:55 -07002275 if (c < 0) {
2276 retval = c;
2277 goto break_out;
2278 }
2279 if (!c)
2280 break;
2281 b += c;
2282 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 }
2285 if (!nr)
2286 break;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00002287 if (tty_io_nonblock(tty, file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 retval = -EAGAIN;
2289 break;
2290 }
Peter Hurley9356b532013-06-15 09:14:24 -04002291 up_read(&tty->termios_rwsem);
2292
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002293 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Peter Hurley9356b532013-06-15 09:14:24 -04002294
2295 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 }
2297break_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 remove_wait_queue(&tty->write_wait, &wait);
Peter Hurley87108bc2016-01-09 21:45:14 -08002299 if (nr && tty->fasync)
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002300 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002301 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 return (b - buf) ? b - buf : retval;
2303}
2304
2305/**
Jiri Slaby98629662021-11-26 09:16:04 +01002306 * n_tty_poll - poll method for N_TTY
2307 * @tty: terminal device
2308 * @file: file accessing it
2309 * @wait: poll table
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 *
Jiri Slaby98629662021-11-26 09:16:04 +01002311 * Called when the line discipline is asked to poll() for data or for special
2312 * events. This code is not serialized with respect to other events save
2313 * open/close.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 *
Jiri Slaby98629662021-11-26 09:16:04 +01002315 * This code must be sure never to sleep through a hangup.
2316 *
2317 * Locking: called without the kernel lock held -- fine.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 */
Al Viroafc9a422017-07-03 06:39:46 -04002319static __poll_t n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002320 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321{
Al Viroafc9a422017-07-03 06:39:46 -04002322 __poll_t mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 poll_wait(file, &tty->read_wait, wait);
2325 poll_wait(file, &tty->write_wait, wait);
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002326 if (input_available_p(tty, 1))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002327 mask |= EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002328 else {
2329 tty_buffer_flush_work(tty->port);
2330 if (input_available_p(tty, 1))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002331 mask |= EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002332 }
Jiri Slaby64d608d2021-05-05 11:19:06 +02002333 if (tty->ctrl.packet && tty->link->ctrl.pktstatus)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002334 mask |= EPOLLPRI | EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002335 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002336 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 if (tty_hung_up_p(file))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002338 mask |= EPOLLHUP;
Alan Coxf34d7a52008-04-30 00:54:13 -07002339 if (tty->ops->write && !tty_is_writelocked(tty) &&
2340 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2341 tty_write_room(tty) > 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002342 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return mask;
2344}
2345
Jiri Slaby57c94122012-10-18 22:26:43 +02002346static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002347{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002348 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002349
Peter Hurleya73d3d62013-06-15 09:14:25 -04002350 if (ldata->canon_head == ldata->read_tail)
Alan Cox47afa7a2008-10-13 10:44:17 +01002351 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002352 head = ldata->canon_head;
2353 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002354 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002355 /* Skip EOF-chars.. */
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09002356 while (MASK(head) != MASK(tail)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002357 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2358 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002359 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002360 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002361 }
2362 return nr;
2363}
2364
Jiri Slabyd78328b2021-11-22 10:45:29 +01002365static int n_tty_ioctl(struct tty_struct *tty, unsigned int cmd,
2366 unsigned long arg)
Alan Cox47afa7a2008-10-13 10:44:17 +01002367{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002368 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002369 int retval;
2370
2371 switch (cmd) {
2372 case TIOCOUTQ:
2373 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2374 case TIOCINQ:
Peter Hurley6d76bd22013-06-15 09:14:26 -04002375 down_write(&tty->termios_rwsem);
Linus Torvalds966031f2017-12-20 17:57:06 -08002376 if (L_ICANON(tty) && !L_EXTPROC(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002377 retval = inq_canon(ldata);
Peter Hurley6d76bd22013-06-15 09:14:26 -04002378 else
2379 retval = read_cnt(ldata);
2380 up_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002381 return put_user(retval, (unsigned int __user *) arg);
2382 default:
Jiri Slaby7c783602021-09-14 11:11:24 +02002383 return n_tty_ioctl_helper(tty, cmd, arg);
Alan Cox47afa7a2008-10-13 10:44:17 +01002384 }
2385}
2386
Peter Hurley27228732016-01-09 21:35:19 -08002387static struct tty_ldisc_ops n_tty_ops = {
Jiri Slaby5e30d3b2021-03-02 07:21:39 +01002388 .owner = THIS_MODULE,
Jiri Slabyfbadf70a2021-05-05 11:19:07 +02002389 .num = N_TTY,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002390 .name = "n_tty",
2391 .open = n_tty_open,
2392 .close = n_tty_close,
2393 .flush_buffer = n_tty_flush_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002394 .read = n_tty_read,
2395 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002396 .ioctl = n_tty_ioctl,
2397 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002398 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002399 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002400 .write_wakeup = n_tty_write_wakeup,
Peter Hurley24a89d12013-06-15 09:14:15 -04002401 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002403
2404/**
2405 * n_tty_inherit_ops - inherit N_TTY methods
2406 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2407 *
Peter Hurley27228732016-01-09 21:35:19 -08002408 * Enables a 'subclass' line discipline to 'inherit' N_TTY methods.
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002409 */
2410
2411void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2412{
Peter Hurley27228732016-01-09 21:35:19 -08002413 *ops = n_tty_ops;
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002414 ops->owner = NULL;
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002415}
2416EXPORT_SYMBOL_GPL(n_tty_inherit_ops);
Peter Hurley27228732016-01-09 21:35:19 -08002417
2418void __init n_tty_init(void)
2419{
Jiri Slabyfbadf70a2021-05-05 11:19:07 +02002420 tty_register_ldisc(&n_tty_ops);
Peter Hurley27228732016-01-09 21:35:19 -08002421}