blob: 2fe27905c398389b2358a870b4206af1e62cbfd3 [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/**
Peter Hurley2c5dc462015-01-16 15:05:34 -0500189 * n_tty_kick_worker - start input worker (if required)
Peter Hurley24a89d12013-06-15 09:14:15 -0400190 * @tty: terminal
191 *
Peter Hurley2c5dc462015-01-16 15:05:34 -0500192 * Re-schedules the flip buffer work if it may have stopped
Peter Hurley24a89d12013-06-15 09:14:15 -0400193 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400194 * Caller holds exclusive termios_rwsem
195 * or
196 * n_tty_read()/consumer path:
197 * holds non-exclusive termios_rwsem
Peter Hurley24a89d12013-06-15 09:14:15 -0400198 */
199
Peter Hurley2c5dc462015-01-16 15:05:34 -0500200static void n_tty_kick_worker(struct tty_struct *tty)
Peter Hurley7879a9f2013-06-15 07:28:31 -0400201{
Peter Hurley24a89d12013-06-15 09:14:15 -0400202 struct n_tty_data *ldata = tty->disc_data;
203
Peter Hurley2c5dc462015-01-16 15:05:34 -0500204 /* Did the input worker stop? Restart it */
205 if (unlikely(ldata->no_room)) {
Peter Hurley24a89d12013-06-15 09:14:15 -0400206 ldata->no_room = 0;
207
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200208 WARN_RATELIMIT(tty->port->itty == NULL,
Sasha Levincadf7482012-10-25 14:26:35 -0400209 "scheduling with invalid itty\n");
Peter Hurley21622932013-03-11 16:44:21 -0400210 /* see if ldisc has been killed - if so, this means that
211 * even though the ldisc has been halted and ->buf.work
212 * cancelled, ->buf.work is about to be rescheduled
213 */
214 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
215 "scheduling buffer work for halted ldisc\n");
Peter Hurleye1760582015-10-17 16:36:23 -0400216 tty_buffer_restart_work(tty->port);
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200217 }
Linus Torvalds55db4c62011-06-04 06:33:24 +0900218}
219
Peter Hurley9a4aec22013-06-15 09:14:32 -0400220static ssize_t chars_in_buffer(struct tty_struct *tty)
221{
222 struct n_tty_data *ldata = tty->disc_data;
223 ssize_t n = 0;
224
225 if (!ldata->icanon)
Peter Hurley70aca712015-01-16 15:05:37 -0500226 n = ldata->commit_head - ldata->read_tail;
Peter Hurley9a4aec22013-06-15 09:14:32 -0400227 else
228 n = ldata->canon_head - ldata->read_tail;
229 return n;
230}
231
Peter Hurleyee0bab82013-06-15 09:14:34 -0400232/**
233 * n_tty_write_wakeup - asynchronous I/O notifier
234 * @tty: tty device
235 *
236 * Required for the ptys, serial driver etc. since processes
237 * that attach themselves to the master and rely on ASYNC
238 * IO must be woken up
239 */
240
241static void n_tty_write_wakeup(struct tty_struct *tty)
242{
Peter Hurley7bccc362016-01-09 21:45:12 -0800243 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
244 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
Peter Hurleyee0bab82013-06-15 09:14:34 -0400245}
246
Peter Hurley4a23a4d2013-06-15 10:21:22 -0400247static void n_tty_check_throttle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400248{
Peter Hurleya3428462015-01-16 15:05:35 -0500249 struct n_tty_data *ldata = tty->disc_data;
250
Peter Hurley6367ca72013-06-15 09:14:33 -0400251 /*
252 * Check the remaining room for the input canonicalization
253 * mode. We don't want to throttle the driver if we're in
254 * canonical mode and don't have a newline yet!
255 */
Peter Hurleya3428462015-01-16 15:05:35 -0500256 if (ldata->icanon && ldata->canon_head == ldata->read_tail)
257 return;
258
Peter Hurley6367ca72013-06-15 09:14:33 -0400259 while (1) {
260 int throttled;
261 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
Peter Hurley5e28cca2015-01-16 15:05:36 -0500262 if (N_TTY_BUF_SIZE - read_cnt(ldata) >= TTY_THRESHOLD_THROTTLE)
Peter Hurley6367ca72013-06-15 09:14:33 -0400263 break;
264 throttled = tty_throttle_safe(tty);
265 if (!throttled)
266 break;
267 }
268 __tty_set_flow_change(tty, 0);
269}
270
Peter Hurley4b293492013-07-24 08:29:55 -0400271static void n_tty_check_unthrottle(struct tty_struct *tty)
Peter Hurley6367ca72013-06-15 09:14:33 -0400272{
Peter Hurley6d27a632016-01-10 22:40:56 -0800273 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
Peter Hurley3afb1b392013-07-23 08:47:30 -0400274 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
275 return;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500276 n_tty_kick_worker(tty);
Peter Hurley6d27a632016-01-10 22:40:56 -0800277 tty_wakeup(tty->link);
Peter Hurley3afb1b392013-07-23 08:47:30 -0400278 return;
279 }
280
Peter Hurley6367ca72013-06-15 09:14:33 -0400281 /* If there is enough space in the read buffer now, let the
282 * low-level driver know. We use chars_in_buffer() to
283 * check the buffer, as it now knows about canonical mode.
284 * Otherwise, if the driver is throttled and the line is
285 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
286 * we won't get any more characters.
287 */
288
289 while (1) {
290 int unthrottled;
291 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
292 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
293 break;
Peter Hurley2c5dc462015-01-16 15:05:34 -0500294 n_tty_kick_worker(tty);
Peter Hurley6367ca72013-06-15 09:14:33 -0400295 unthrottled = tty_unthrottle_safe(tty);
296 if (!unthrottled)
297 break;
298 }
299 __tty_set_flow_change(tty, 0);
300}
301
Alan Cox17b82062008-10-13 10:45:06 +0100302/**
303 * put_tty_queue - add character to tty
304 * @c: character
Jiri Slaby57c94122012-10-18 22:26:43 +0200305 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100306 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400307 * Add a character to the tty read_buf queue.
308 *
309 * n_tty_receive_buf()/producer path:
310 * caller holds non-exclusive termios_rwsem
Alan Cox17b82062008-10-13 10:45:06 +0100311 */
312
Peter Hurley19e2ad62013-07-24 08:29:54 -0400313static inline void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Christian Riesch8bfbe2d2014-11-13 05:53:26 +0100315 *read_buf_addr(ldata, ldata->read_head) = c;
316 ldata->read_head++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * reset_buffer_flags - reset buffer state
Jiri Slaby724ac072020-08-18 10:56:52 +0200321 * @ldata: line disc data to reset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 *
Peter Hurley25518c62013-03-11 16:44:31 -0400323 * Reset the read buffer counters and clear the flags.
324 * Called from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100325 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400326 * Locking: caller holds exclusive termios_rwsem
327 * (or locking is not required)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000329
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400330static void reset_buffer_flags(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Peter Hurleya73d3d62013-06-15 09:14:25 -0400332 ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
Peter Hurley70aca712015-01-16 15:05:37 -0500333 ldata->commit_head = 0;
Peter Hurley40d5e092013-06-15 10:21:17 -0400334 ldata->line_start = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000335
Peter Hurleya73d3d62013-06-15 09:14:25 -0400336 ldata->erasing = 0;
Jiri Slaby3fe780b2012-10-18 22:26:40 +0200337 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -0500338 ldata->push = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Peter Hurleya30737a2013-03-11 16:44:22 -0400341static void n_tty_packet_mode_flush(struct tty_struct *tty)
342{
343 unsigned long flags;
344
Jiri Slaby64d608d2021-05-05 11:19:06 +0200345 if (tty->link->ctrl.packet) {
346 spin_lock_irqsave(&tty->ctrl.lock, flags);
347 tty->ctrl.pktstatus |= TIOCPKT_FLUSHREAD;
348 spin_unlock_irqrestore(&tty->ctrl.lock, flags);
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +0000349 wake_up_interruptible(&tty->link->read_wait);
Peter Hurleya30737a2013-03-11 16:44:22 -0400350 }
Peter Hurleya30737a2013-03-11 16:44:22 -0400351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353/**
354 * n_tty_flush_buffer - clean input queue
355 * @tty: terminal device
356 *
Peter Hurley25518c62013-03-11 16:44:31 -0400357 * Flush the input buffer. Called when the tty layer wants the
358 * buffer flushed (eg at hangup) or when the N_TTY line discipline
359 * internally has to clean the pending queue (for example some signals).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400361 * Holds termios_rwsem to exclude producer/consumer while
362 * buffer indices are reset.
363 *
Jiri Slaby64d608d2021-05-05 11:19:06 +0200364 * Locking: ctrl.lock, exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 */
Alan Cox4edf1822008-02-08 04:18:44 -0800366
367static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Peter Hurley6d76bd22013-06-15 09:14:26 -0400369 down_write(&tty->termios_rwsem);
Peter Hurleyb66f4fa2013-03-11 16:44:32 -0400370 reset_buffer_flags(tty->disc_data);
Peter Hurley2c5dc462015-01-16 15:05:34 -0500371 n_tty_kick_worker(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800372
Peter Hurleya30737a2013-03-11 16:44:22 -0400373 if (tty->link)
374 n_tty_packet_mode_flush(tty);
Peter Hurley6d76bd22013-06-15 09:14:26 -0400375 up_write(&tty->termios_rwsem);
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * is_utf8_continuation - utf8 multibyte check
380 * @c: byte to check
381 *
382 * Returns true if the utf8 character 'c' is a multibyte continuation
383 * character. We use this to correctly compute the on screen size
384 * of the character when printing
385 */
Alan Cox4edf1822008-02-08 04:18:44 -0800386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387static inline int is_utf8_continuation(unsigned char c)
388{
389 return (c & 0xc0) == 0x80;
390}
391
392/**
393 * is_continuation - multibyte check
394 * @c: byte to check
Lee Jones171044a2020-11-04 19:35:23 +0000395 * @tty: terminal device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 *
397 * Returns true if the utf8 character 'c' is a multibyte continuation
398 * character and the terminal is in unicode mode.
399 */
Alan Cox4edf1822008-02-08 04:18:44 -0800400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401static inline int is_continuation(unsigned char c, struct tty_struct *tty)
402{
403 return I_IUTF8(tty) && is_utf8_continuation(c);
404}
405
406/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000407 * do_output_char - output one character
408 * @c: character (or partial unicode symbol)
409 * @tty: terminal device
410 * @space: space available in tty driver write buffer
411 *
412 * This is a helper function that handles one output character
413 * (including special characters like TAB, CR, LF, etc.),
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600414 * doing OPOST processing and putting the results in the
415 * tty driver's write buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000416 *
417 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
418 * and NLDLY. They simply aren't relevant in the world today.
419 * If you ever need them, add them here.
420 *
421 * Returns the number of bytes of buffer space used or -1 if
422 * no space left.
423 *
424 * Locking: should be called under the output_lock to protect
425 * the column state and space left in the buffer
426 */
427
428static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
429{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200430 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000431 int spaces;
432
433 if (!space)
434 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000435
Joe Petersona88a69c2009-01-02 13:40:53 +0000436 switch (c) {
437 case '\n':
438 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200439 ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000440 if (O_ONLCR(tty)) {
441 if (space < 2)
442 return -1;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200443 ldata->canon_column = ldata->column = 0;
Linus Torvalds37f81fa2009-09-05 12:46:07 -0700444 tty->ops->write(tty, "\r\n", 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000445 return 2;
446 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200447 ldata->canon_column = ldata->column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000448 break;
449 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200450 if (O_ONOCR(tty) && ldata->column == 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000451 return 0;
452 if (O_OCRNL(tty)) {
453 c = '\n';
454 if (O_ONLRET(tty))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200455 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000456 break;
457 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200458 ldata->canon_column = ldata->column = 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000459 break;
460 case '\t':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200461 spaces = 8 - (ldata->column & 7);
Joe Petersona88a69c2009-01-02 13:40:53 +0000462 if (O_TABDLY(tty) == XTABS) {
463 if (space < spaces)
464 return -1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200465 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000466 tty->ops->write(tty, " ", spaces);
467 return spaces;
468 }
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200469 ldata->column += spaces;
Joe Petersona88a69c2009-01-02 13:40:53 +0000470 break;
471 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200472 if (ldata->column > 0)
473 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000474 break;
475 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000476 if (!iscntrl(c)) {
477 if (O_OLCUC(tty))
478 c = toupper(c);
479 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200480 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000481 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000482 break;
483 }
484
485 tty_put_char(tty, c);
486 return 1;
487}
488
489/**
490 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 * @c: character (or partial unicode symbol)
492 * @tty: terminal device
493 *
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600494 * Output one character with OPOST processing.
495 * Returns -1 when the output device is full and the character
496 * must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000498 * Locking: output_lock to protect column state and space left
499 * (also, this is called from n_tty_write under the
500 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 */
Alan Cox4edf1822008-02-08 04:18:44 -0800502
Joe Petersona88a69c2009-01-02 13:40:53 +0000503static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Jiri Slabybddc7152012-10-18 22:26:42 +0200505 struct n_tty_data *ldata = tty->disc_data;
Joe Petersona88a69c2009-01-02 13:40:53 +0000506 int space, retval;
507
Jiri Slabybddc7152012-10-18 22:26:42 +0200508 mutex_lock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Alan Coxf34d7a52008-04-30 00:54:13 -0700510 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000511 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Jiri Slabybddc7152012-10-18 22:26:42 +0200513 mutex_unlock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000514 if (retval < 0)
515 return -1;
516 else
517 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
520/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000521 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * @tty: terminal device
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600523 * @buf: character buffer
524 * @nr: number of bytes to output
525 *
526 * Output a block of characters with OPOST processing.
527 * Returns the number of characters output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 *
529 * This path is used to speed up block console writes, among other
530 * things when processing blocks of output data. It handles only
531 * the simple cases normally found and helps to generate blocks of
532 * symbols for the console driver and thus improve performance.
533 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000534 * Locking: output_lock to protect column state and space left
535 * (also, this is called from n_tty_write under the
536 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 */
Alan Cox4edf1822008-02-08 04:18:44 -0800538
Joe Petersona88a69c2009-01-02 13:40:53 +0000539static ssize_t process_output_block(struct tty_struct *tty,
540 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200542 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int space;
Thorsten Wißmannbbd20752011-12-08 17:47:33 +0100544 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 const unsigned char *cp;
546
Jiri Slabybddc7152012-10-18 22:26:42 +0200547 mutex_lock(&ldata->output_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +0000548
Alan Coxf34d7a52008-04-30 00:54:13 -0700549 space = tty_write_room(tty);
Colin Ian King9ef89272019-03-30 00:46:28 +0000550 if (space <= 0) {
Jiri Slabybddc7152012-10-18 22:26:42 +0200551 mutex_unlock(&ldata->output_lock);
Colin Ian King9ef89272019-03-30 00:46:28 +0000552 return space;
Joe Petersona88a69c2009-01-02 13:40:53 +0000553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (nr > space)
555 nr = space;
556
557 for (i = 0, cp = buf; i < nr; i++, cp++) {
Joe Petersona59c0d62009-01-02 13:43:25 +0000558 unsigned char c = *cp;
559
560 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 case '\n':
562 if (O_ONLRET(tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200563 ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (O_ONLCR(tty))
565 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200566 ldata->canon_column = ldata->column;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 break;
568 case '\r':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200569 if (O_ONOCR(tty) && ldata->column == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 goto break_out;
571 if (O_OCRNL(tty))
572 goto break_out;
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200573 ldata->canon_column = ldata->column = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 break;
575 case '\t':
576 goto break_out;
577 case '\b':
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200578 if (ldata->column > 0)
579 ldata->column--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 break;
581 default:
Joe Petersona59c0d62009-01-02 13:43:25 +0000582 if (!iscntrl(c)) {
583 if (O_OLCUC(tty))
584 goto break_out;
585 if (!is_continuation(c, tty))
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200586 ldata->column++;
Joe Petersona59c0d62009-01-02 13:43:25 +0000587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589 }
590 }
591break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700592 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000593
Jiri Slabybddc7152012-10-18 22:26:42 +0200594 mutex_unlock(&ldata->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return i;
596}
597
Joe Petersona88a69c2009-01-02 13:40:53 +0000598/**
599 * process_echoes - write pending echo characters
600 * @tty: terminal device
601 *
602 * Write previously buffered echo (and other ldisc-generated)
603 * characters to the tty.
604 *
605 * Characters generated by the ldisc (including echoes) need to
606 * be buffered because the driver's write buffer can fill during
607 * heavy program output. Echoing straight to the driver will
608 * often fail under these conditions, causing lost characters and
609 * resulting mismatches of ldisc state information.
610 *
611 * Since the ldisc state must represent the characters actually sent
612 * to the driver at the time of the write, operations like certain
613 * changes in column state are also saved in the buffer and executed
614 * here.
615 *
616 * A circular fifo buffer is used so that the most recent characters
617 * are prioritized. Also, when control characters are echoed with a
618 * prefixed "^", the pair is treated atomically and thus not separated.
619 *
Peter Hurley019ebdf2013-06-15 10:04:25 -0400620 * Locking: callers must hold output_lock
Joe Petersona88a69c2009-01-02 13:40:53 +0000621 */
622
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400623static size_t __process_echoes(struct tty_struct *tty)
Joe Petersona88a69c2009-01-02 13:40:53 +0000624{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200625 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400626 int space, old_space;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400627 size_t tail;
Joe Petersona88a69c2009-01-02 13:40:53 +0000628 unsigned char c;
Joe Petersona88a69c2009-01-02 13:40:53 +0000629
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400630 old_space = space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000631
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400632 tail = ldata->echo_tail;
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900633 while (MASK(ldata->echo_commit) != MASK(tail)) {
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400634 c = echo_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +0000635 if (c == ECHO_OP_START) {
636 unsigned char op;
Joe Petersona88a69c2009-01-02 13:40:53 +0000637 int no_space_left = 0;
638
639 /*
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900640 * Since add_echo_byte() is called without holding
641 * output_lock, we might see only portion of multi-byte
642 * operation.
643 */
644 if (MASK(ldata->echo_commit) == MASK(tail + 1))
645 goto not_yet_stored;
646 /*
Joe Petersona88a69c2009-01-02 13:40:53 +0000647 * If the buffer byte is the start of a multi-byte
648 * operation, get the next byte, which is either the
649 * op code or a control character value.
650 */
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400651 op = echo_buf(ldata, tail + 1);
Alan Cox300a6202009-01-02 13:41:04 +0000652
Joe Petersona88a69c2009-01-02 13:40:53 +0000653 switch (op) {
Kees Cooke24cd4e2020-02-19 22:23:13 -0800654 case ECHO_OP_ERASE_TAB: {
Joe Petersona88a69c2009-01-02 13:40:53 +0000655 unsigned int num_chars, num_bs;
656
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900657 if (MASK(ldata->echo_commit) == MASK(tail + 2))
658 goto not_yet_stored;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400659 num_chars = echo_buf(ldata, tail + 2);
Joe Petersona88a69c2009-01-02 13:40:53 +0000660
661 /*
662 * Determine how many columns to go back
663 * in order to erase the tab.
664 * This depends on the number of columns
665 * used by other characters within the tab
666 * area. If this (modulo 8) count is from
667 * the start of input rather than from a
668 * previous tab, we offset by canon column.
669 * Otherwise, tab spacing is normal.
670 */
671 if (!(num_chars & 0x80))
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200672 num_chars += ldata->canon_column;
Joe Petersona88a69c2009-01-02 13:40:53 +0000673 num_bs = 8 - (num_chars & 7);
674
675 if (num_bs > space) {
676 no_space_left = 1;
677 break;
678 }
679 space -= num_bs;
680 while (num_bs--) {
681 tty_put_char(tty, '\b');
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200682 if (ldata->column > 0)
683 ldata->column--;
Joe Petersona88a69c2009-01-02 13:40:53 +0000684 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400685 tail += 3;
Joe Petersona88a69c2009-01-02 13:40:53 +0000686 break;
Kees Cooke24cd4e2020-02-19 22:23:13 -0800687 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000688 case ECHO_OP_SET_CANON_COL:
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200689 ldata->canon_column = ldata->column;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400690 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000691 break;
692
693 case ECHO_OP_MOVE_BACK_COL:
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200694 if (ldata->column > 0)
695 ldata->column--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400696 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000697 break;
698
699 case ECHO_OP_START:
700 /* This is an escaped echo op start code */
701 if (!space) {
702 no_space_left = 1;
703 break;
704 }
705 tty_put_char(tty, ECHO_OP_START);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200706 ldata->column++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000707 space--;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400708 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000709 break;
710
711 default:
Joe Petersona88a69c2009-01-02 13:40:53 +0000712 /*
Joe Peterson62b26352009-09-09 15:03:47 -0600713 * If the op is not a special byte code,
714 * it is a ctrl char tagged to be echoed
715 * as "^X" (where X is the letter
716 * representing the control char).
717 * Note that we must ensure there is
718 * enough space for the whole ctrl pair.
719 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000720 */
Joe Peterson62b26352009-09-09 15:03:47 -0600721 if (space < 2) {
722 no_space_left = 1;
723 break;
724 }
725 tty_put_char(tty, '^');
726 tty_put_char(tty, op ^ 0100);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200727 ldata->column += 2;
Joe Peterson62b26352009-09-09 15:03:47 -0600728 space -= 2;
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400729 tail += 2;
Joe Petersona88a69c2009-01-02 13:40:53 +0000730 }
731
732 if (no_space_left)
733 break;
734 } else {
Peter Hurley582f5592013-05-17 12:49:48 -0400735 if (O_OPOST(tty)) {
Joe Petersonee5aa7b2009-09-09 15:03:13 -0600736 int retval = do_output_char(c, tty, space);
737 if (retval < 0)
738 break;
739 space -= retval;
740 } else {
741 if (!space)
742 break;
743 tty_put_char(tty, c);
744 space -= 1;
745 }
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400746 tail += 1;
Joe Petersona88a69c2009-01-02 13:40:53 +0000747 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000748 }
749
Peter Hurleycbfd0342013-06-15 10:04:26 -0400750 /* If the echo buffer is nearly full (so that the possibility exists
751 * of echo overrun before the next commit), then discard enough
752 * data at the tail to prevent a subsequent overrun */
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900753 while (ldata->echo_commit > tail &&
754 ldata->echo_commit - tail >= ECHO_DISCARD_WATERMARK) {
Roel Kluinc476f652013-10-11 22:08:49 +0200755 if (echo_buf(ldata, tail) == ECHO_OP_START) {
Peter Hurley6f222532013-11-08 09:42:18 -0500756 if (echo_buf(ldata, tail + 1) == ECHO_OP_ERASE_TAB)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400757 tail += 3;
758 else
759 tail += 2;
760 } else
761 tail++;
762 }
763
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900764 not_yet_stored:
Peter Hurleyaddaebc2013-06-15 10:04:22 -0400765 ldata->echo_tail = tail;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400766 return old_space - space;
Joe Petersona88a69c2009-01-02 13:40:53 +0000767}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Peter Hurley17bd7902013-06-15 10:04:24 -0400769static void commit_echoes(struct tty_struct *tty)
770{
771 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400772 size_t nr, old, echoed;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400773 size_t head;
774
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900775 mutex_lock(&ldata->output_lock);
Peter Hurleycbfd0342013-06-15 10:04:26 -0400776 head = ldata->echo_head;
Peter Hurley1075a6e2013-12-09 18:06:07 -0500777 ldata->echo_mark = head;
Peter Hurleycbfd0342013-06-15 10:04:26 -0400778 old = ldata->echo_commit - ldata->echo_tail;
779
780 /* Process committed echoes if the accumulated # of bytes
781 * is over the threshold (and try again each time another
782 * block is accumulated) */
783 nr = head - ldata->echo_tail;
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900784 if (nr < ECHO_COMMIT_WATERMARK ||
785 (nr % ECHO_BLOCK > old % ECHO_BLOCK)) {
786 mutex_unlock(&ldata->output_lock);
Peter Hurleycbfd0342013-06-15 10:04:26 -0400787 return;
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900788 }
Peter Hurley17bd7902013-06-15 10:04:24 -0400789
Peter Hurleycbfd0342013-06-15 10:04:26 -0400790 ldata->echo_commit = head;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400791 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400792 mutex_unlock(&ldata->output_lock);
793
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400794 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400795 tty->ops->flush_chars(tty);
796}
797
798static void process_echoes(struct tty_struct *tty)
799{
800 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400801 size_t echoed;
Peter Hurley019ebdf2013-06-15 10:04:25 -0400802
Peter Hurleye2613be2014-02-11 16:34:55 -0500803 if (ldata->echo_mark == ldata->echo_tail)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400804 return;
805
806 mutex_lock(&ldata->output_lock);
Peter Hurley1075a6e2013-12-09 18:06:07 -0500807 ldata->echo_commit = ldata->echo_mark;
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400808 echoed = __process_echoes(tty);
Peter Hurley019ebdf2013-06-15 10:04:25 -0400809 mutex_unlock(&ldata->output_lock);
810
Peter Hurleybc5b1ec2013-06-15 10:04:27 -0400811 if (echoed && tty->ops->flush_chars)
Peter Hurley019ebdf2013-06-15 10:04:25 -0400812 tty->ops->flush_chars(tty);
Peter Hurley17bd7902013-06-15 10:04:24 -0400813}
814
Peter Hurley1075a6e2013-12-09 18:06:07 -0500815/* NB: echo_mark and echo_head should be equivalent here */
Peter Hurleycbfd0342013-06-15 10:04:26 -0400816static void flush_echoes(struct tty_struct *tty)
817{
818 struct n_tty_data *ldata = tty->disc_data;
819
Peter Hurley39434ab2013-11-29 12:56:10 -0500820 if ((!L_ECHO(tty) && !L_ECHONL(tty)) ||
821 ldata->echo_commit == ldata->echo_head)
Peter Hurleycbfd0342013-06-15 10:04:26 -0400822 return;
823
824 mutex_lock(&ldata->output_lock);
825 ldata->echo_commit = ldata->echo_head;
826 __process_echoes(tty);
827 mutex_unlock(&ldata->output_lock);
828}
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000831 * add_echo_byte - add a byte to the echo buffer
832 * @c: unicode byte to echo
Jiri Slaby57c94122012-10-18 22:26:43 +0200833 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000834 *
835 * Add a character or operation byte to the echo buffer.
Joe Petersona88a69c2009-01-02 13:40:53 +0000836 */
837
Peter Hurleycbfd0342013-06-15 10:04:26 -0400838static inline void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000839{
Tetsuo Handaebec3f82018-05-26 09:53:14 +0900840 *echo_buf_addr(ldata, ldata->echo_head) = c;
841 smp_wmb(); /* Matches smp_rmb() in echo_buf(). */
842 ldata->echo_head++;
Joe Petersona88a69c2009-01-02 13:40:53 +0000843}
844
845/**
846 * echo_move_back_col - add operation to move back a column
Jiri Slaby57c94122012-10-18 22:26:43 +0200847 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000848 *
849 * Add an operation to the echo buffer to move back one column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000850 */
851
Jiri Slaby57c94122012-10-18 22:26:43 +0200852static void echo_move_back_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000853{
Jiri Slaby57c94122012-10-18 22:26:43 +0200854 add_echo_byte(ECHO_OP_START, ldata);
855 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000856}
857
858/**
859 * echo_set_canon_col - add operation to set the canon column
Jiri Slaby57c94122012-10-18 22:26:43 +0200860 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000861 *
862 * Add an operation to the echo buffer to set the canon column
863 * to the current column.
Joe Petersona88a69c2009-01-02 13:40:53 +0000864 */
865
Jiri Slaby57c94122012-10-18 22:26:43 +0200866static void echo_set_canon_col(struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000867{
Jiri Slaby57c94122012-10-18 22:26:43 +0200868 add_echo_byte(ECHO_OP_START, ldata);
869 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000870}
871
872/**
873 * echo_erase_tab - add operation to erase a tab
874 * @num_chars: number of character columns already used
875 * @after_tab: true if num_chars starts after a previous tab
Jiri Slaby57c94122012-10-18 22:26:43 +0200876 * @ldata: n_tty data
Joe Petersona88a69c2009-01-02 13:40:53 +0000877 *
878 * Add an operation to the echo buffer to erase a tab.
879 *
880 * Called by the eraser function, which knows how many character
881 * columns have been used since either a previous tab or the start
882 * of input. This information will be used later, along with
883 * canon column (if applicable), to go back the correct number
884 * of columns.
Joe Petersona88a69c2009-01-02 13:40:53 +0000885 */
886
887static void echo_erase_tab(unsigned int num_chars, int after_tab,
Jiri Slaby57c94122012-10-18 22:26:43 +0200888 struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000889{
Jiri Slaby57c94122012-10-18 22:26:43 +0200890 add_echo_byte(ECHO_OP_START, ldata);
891 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000892
893 /* We only need to know this modulo 8 (tab spacing) */
894 num_chars &= 7;
895
896 /* Set the high bit as a flag if num_chars is after a previous tab */
897 if (after_tab)
898 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000899
Jiri Slaby57c94122012-10-18 22:26:43 +0200900 add_echo_byte(num_chars, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000901}
902
903/**
904 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 * @c: unicode byte to echo
Jiri Slaby724ac072020-08-18 10:56:52 +0200906 * @ldata: line disc data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 *
Alan Cox4edf1822008-02-08 04:18:44 -0800908 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100910 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000911 * This variant does not treat control characters specially.
Joe Petersona88a69c2009-01-02 13:40:53 +0000912 */
913
Jiri Slaby57c94122012-10-18 22:26:43 +0200914static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
Joe Petersona88a69c2009-01-02 13:40:53 +0000915{
Joe Petersona88a69c2009-01-02 13:40:53 +0000916 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200917 add_echo_byte(ECHO_OP_START, ldata);
918 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000919 } else {
Jiri Slaby57c94122012-10-18 22:26:43 +0200920 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000921 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000922}
923
924/**
925 * echo_char - echo a character
926 * @c: unicode byte to echo
927 * @tty: terminal device
928 *
929 * Echo user input back onto the screen. This must be called only when
930 * L_ECHO(tty) is true. Called from the driver receive_buf path.
931 *
Joe Peterson62b26352009-09-09 15:03:47 -0600932 * This variant tags control characters to be echoed as "^X"
933 * (where X is the letter representing the control char).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 */
935
936static void echo_char(unsigned char c, struct tty_struct *tty)
937{
Jiri Slabybddc7152012-10-18 22:26:42 +0200938 struct n_tty_data *ldata = tty->disc_data;
939
Joe Petersona88a69c2009-01-02 13:40:53 +0000940 if (c == ECHO_OP_START) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200941 add_echo_byte(ECHO_OP_START, ldata);
942 add_echo_byte(ECHO_OP_START, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000943 } else {
Joe Peterson62b26352009-09-09 15:03:47 -0600944 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
Jiri Slaby57c94122012-10-18 22:26:43 +0200945 add_echo_byte(ECHO_OP_START, ldata);
946 add_echo_byte(c, ldata);
Joe Petersona88a69c2009-01-02 13:40:53 +0000947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
Alan Cox17b82062008-10-13 10:45:06 +0100950/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000951 * finish_erasing - complete erase
Jiri Slaby57c94122012-10-18 22:26:43 +0200952 * @ldata: n_tty data
Alan Cox17b82062008-10-13 10:45:06 +0100953 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000954
Jiri Slaby57c94122012-10-18 22:26:43 +0200955static inline void finish_erasing(struct n_tty_data *ldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200957 if (ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +0200958 echo_char_raw('/', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200959 ldata->erasing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961}
962
963/**
964 * eraser - handle erase function
965 * @c: character input
966 * @tty: terminal device
967 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200968 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 * present in the stream from the driver layer. Handles the complexities
970 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100971 *
Peter Hurley6d76bd22013-06-15 09:14:26 -0400972 * n_tty_receive_buf()/producer path:
973 * caller holds non-exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 */
Alan Cox4edf1822008-02-08 04:18:44 -0800975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976static void eraser(unsigned char c, struct tty_struct *tty)
977{
Jiri Slaby53c5ee22012-10-18 22:26:39 +0200978 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 enum { ERASE, WERASE, KILL } kill_type;
Peter Hurleybc5a5e32013-06-15 09:14:21 -0400980 size_t head;
981 size_t cnt;
982 int seen_alnums;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200984 if (ldata->read_head == ldata->canon_head) {
Joe Peterson7e94b1d2009-01-02 13:43:40 +0000985 /* process_output('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return;
987 }
988 if (c == ERASE_CHAR(tty))
989 kill_type = ERASE;
990 else if (c == WERASE_CHAR(tty))
991 kill_type = WERASE;
992 else {
993 if (!L_ECHO(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200994 ldata->read_head = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return;
996 }
997 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +0200998 ldata->read_head = ldata->canon_head;
Jiri Slaby57c94122012-10-18 22:26:43 +0200999 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 echo_char(KILL_CHAR(tty), tty);
1001 /* Add a newline if ECHOK is on and ECHOKE is off. */
1002 if (L_ECHOK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001003 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return;
1005 }
1006 kill_type = KILL;
1007 }
1008
1009 seen_alnums = 0;
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001010 while (MASK(ldata->read_head) != MASK(ldata->canon_head)) {
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001011 head = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 /* erase a single possibly multibyte character */
1014 do {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001015 head--;
1016 c = read_buf(ldata, head);
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001017 } while (is_continuation(c, tty) &&
1018 MASK(head) != MASK(ldata->canon_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 /* do not partially erase */
1021 if (is_continuation(c, tty))
1022 break;
1023
1024 if (kill_type == WERASE) {
1025 /* Equivalent to BSD's ALTWERASE. */
1026 if (isalnum(c) || c == '_')
1027 seen_alnums++;
1028 else if (seen_alnums)
1029 break;
1030 }
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001031 cnt = ldata->read_head - head;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001032 ldata->read_head = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (L_ECHO(tty)) {
1034 if (L_ECHOPRT(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001035 if (!ldata->erasing) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001036 echo_char_raw('\\', ldata);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001037 ldata->erasing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039 /* if cnt > 1, output a multi-byte character */
1040 echo_char(c, tty);
1041 while (--cnt > 0) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001042 head++;
1043 echo_char_raw(read_buf(ldata, head), ldata);
Jiri Slaby57c94122012-10-18 22:26:43 +02001044 echo_move_back_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1047 echo_char(ERASE_CHAR(tty), tty);
1048 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +00001049 unsigned int num_chars = 0;
1050 int after_tab = 0;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001051 size_t tail = ldata->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Joe Petersona88a69c2009-01-02 13:40:53 +00001053 /*
1054 * Count the columns used for characters
1055 * since the start of input or after a
1056 * previous tab.
1057 * This info is used to go back the correct
1058 * number of columns.
1059 */
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001060 while (MASK(tail) != MASK(ldata->canon_head)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001061 tail--;
1062 c = read_buf(ldata, tail);
Joe Petersona88a69c2009-01-02 13:40:53 +00001063 if (c == '\t') {
1064 after_tab = 1;
1065 break;
Alan Cox300a6202009-01-02 13:41:04 +00001066 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +00001068 num_chars += 2;
1069 } else if (!is_continuation(c, tty)) {
1070 num_chars++;
1071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001073 echo_erase_tab(num_chars, after_tab, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 } else {
1075 if (iscntrl(c) && L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001076 echo_char_raw('\b', ldata);
1077 echo_char_raw(' ', ldata);
1078 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001081 echo_char_raw('\b', ldata);
1082 echo_char_raw(' ', ldata);
1083 echo_char_raw('\b', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085 }
1086 }
1087 if (kill_type == ERASE)
1088 break;
1089 }
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001090 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001091 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
1094/**
1095 * isig - handle the ISIG optio
1096 * @sig: signal
1097 * @tty: terminal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001099 * Called when a signal is being sent due to terminal input.
1100 * Called from the driver receive_buf path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +01001101 *
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001102 * Performs input and output flush if !NOFLSH. In this context, the echo
1103 * buffer is 'output'. The signal is processed first to alert any current
1104 * readers or writers to discontinue and exit their i/o loops.
1105 *
Jiri Slaby64d608d2021-05-05 11:19:06 +02001106 * Locking: ctrl.lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 */
Alan Cox4edf1822008-02-08 04:18:44 -08001108
Peter Hurley3b19e032015-06-27 09:21:32 -04001109static void __isig(int sig, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Peter Hurley8c985d12013-03-06 08:38:19 -05001111 struct pid *tty_pgrp = tty_get_pgrp(tty);
1112 if (tty_pgrp) {
1113 kill_pgrp(tty_pgrp, sig, 1);
1114 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
Peter Hurley3b19e032015-06-27 09:21:32 -04001116}
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001117
Peter Hurley3b19e032015-06-27 09:21:32 -04001118static void isig(int sig, struct tty_struct *tty)
1119{
1120 struct n_tty_data *ldata = tty->disc_data;
1121
1122 if (L_NOFLSH(tty)) {
1123 /* signal only */
1124 __isig(sig, tty);
1125
1126 } else { /* signal and flush */
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001127 up_read(&tty->termios_rwsem);
1128 down_write(&tty->termios_rwsem);
1129
Peter Hurley3b19e032015-06-27 09:21:32 -04001130 __isig(sig, tty);
1131
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001132 /* clear echo buffer */
1133 mutex_lock(&ldata->output_lock);
1134 ldata->echo_head = ldata->echo_tail = 0;
1135 ldata->echo_mark = ldata->echo_commit = 0;
1136 mutex_unlock(&ldata->output_lock);
1137
1138 /* clear output buffer */
1139 tty_driver_flush_buffer(tty);
1140
1141 /* clear input buffer */
1142 reset_buffer_flags(tty->disc_data);
1143
1144 /* notify pty master of flush */
1145 if (tty->link)
1146 n_tty_packet_mode_flush(tty);
1147
1148 up_write(&tty->termios_rwsem);
1149 down_read(&tty->termios_rwsem);
1150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
1153/**
1154 * n_tty_receive_break - handle break
1155 * @tty: terminal
1156 *
1157 * An RS232 break event has been hit in the incoming bitstream. This
1158 * can cause a variety of events depending upon the termios settings.
1159 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001160 * n_tty_receive_buf()/producer path:
1161 * caller holds non-exclusive termios_rwsem
Peter Hurley6d76bd22013-06-15 09:14:26 -04001162 *
1163 * Note: may get exclusive termios_rwsem if flushing input buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 */
Alan Cox4edf1822008-02-08 04:18:44 -08001165
Peter Hurley4b293492013-07-24 08:29:55 -04001166static void n_tty_receive_break(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Jiri Slaby57c94122012-10-18 22:26:43 +02001168 struct n_tty_data *ldata = tty->disc_data;
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (I_IGNBRK(tty))
1171 return;
1172 if (I_BRKINT(tty)) {
Peter Hurley8c985d12013-03-06 08:38:19 -05001173 isig(SIGINT, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return;
1175 }
1176 if (I_PARMRK(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001177 put_tty_queue('\377', ldata);
1178 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Jiri Slaby57c94122012-10-18 22:26:43 +02001180 put_tty_queue('\0', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
1183/**
1184 * n_tty_receive_overrun - handle overrun reporting
1185 * @tty: terminal
1186 *
1187 * Data arrived faster than we could process it. While the tty
1188 * driver has flagged this the bits that were missed are gone
1189 * forever.
1190 *
1191 * Called from the receive_buf path so single threaded. Does not
1192 * need locking as num_overrun and overrun_time are function
1193 * private.
1194 */
Alan Cox4edf1822008-02-08 04:18:44 -08001195
Peter Hurley4b293492013-07-24 08:29:55 -04001196static void n_tty_receive_overrun(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001198 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001200 ldata->num_overrun++;
1201 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1202 time_after(ldata->overrun_time, jiffies)) {
Peter Hurley339f36b2015-11-08 13:01:13 -05001203 tty_warn(tty, "%d input overrun(s)\n", ldata->num_overrun);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001204 ldata->overrun_time = jiffies;
1205 ldata->num_overrun = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
1207}
1208
1209/**
1210 * n_tty_receive_parity_error - error notifier
1211 * @tty: terminal device
1212 * @c: character
1213 *
1214 * Process a parity error and queue the right data to indicate
Peter Hurley6d76bd22013-06-15 09:14:26 -04001215 * the error case if necessary.
1216 *
1217 * n_tty_receive_buf()/producer path:
1218 * caller holds non-exclusive termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 */
Peter Hurley4b293492013-07-24 08:29:55 -04001220static void n_tty_receive_parity_error(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Jiri Slaby57c94122012-10-18 22:26:43 +02001222 struct n_tty_data *ldata = tty->disc_data;
1223
Peter Hurley66528f92014-06-16 08:10:42 -04001224 if (I_INPCK(tty)) {
1225 if (I_IGNPAR(tty))
1226 return;
1227 if (I_PARMRK(tty)) {
1228 put_tty_queue('\377', ldata);
1229 put_tty_queue('\0', ldata);
1230 put_tty_queue(c, ldata);
1231 } else
1232 put_tty_queue('\0', ldata);
1233 } else
Jiri Slaby57c94122012-10-18 22:26:43 +02001234 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001237static void
1238n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c)
1239{
Peter Hurleyd2b6f442015-01-17 15:42:06 -05001240 isig(signal, tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001241 if (I_IXON(tty))
1242 start_tty(tty);
1243 if (L_ECHO(tty)) {
1244 echo_char(c, tty);
1245 commit_echoes(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001246 } else
1247 process_echoes(tty);
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001248}
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250/**
1251 * n_tty_receive_char - perform processing
1252 * @tty: terminal device
1253 * @c: character
1254 *
1255 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001256 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 * driver above.
Peter Hurley6d76bd22013-06-15 09:14:26 -04001258 *
1259 * n_tty_receive_buf()/producer path:
1260 * caller holds non-exclusive termios_rwsem
1261 * publishes canon_head if canonical mode is active
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 */
Jiri Slaby16765362021-05-05 11:19:00 +02001263static void n_tty_receive_char_special(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001265 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (I_IXON(tty)) {
1268 if (c == START_CHAR(tty)) {
1269 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001270 process_echoes(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001271 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273 if (c == STOP_CHAR(tty)) {
1274 stop_tty(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001275 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277 }
Joe Peterson575537b32008-04-30 00:53:30 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (L_ISIG(tty)) {
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001280 if (c == INTR_CHAR(tty)) {
1281 n_tty_receive_signal_char(tty, SIGINT, c);
Jiri Slaby16765362021-05-05 11:19:00 +02001282 return;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001283 } else if (c == QUIT_CHAR(tty)) {
1284 n_tty_receive_signal_char(tty, SIGQUIT, c);
Jiri Slaby16765362021-05-05 11:19:00 +02001285 return;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001286 } else if (c == SUSP_CHAR(tty)) {
1287 n_tty_receive_signal_char(tty, SIGTSTP, c);
Jiri Slaby16765362021-05-05 11:19:00 +02001288 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
1290 }
Joe Peterson575537b32008-04-30 00:53:30 -07001291
Jiri Slaby6e94dbc2021-05-05 11:19:05 +02001292 if (tty->flow.stopped && !tty->flow.tco_stopped && I_IXON(tty) && I_IXANY(tty)) {
Peter Hurley855df3c2013-07-24 08:29:50 -04001293 start_tty(tty);
1294 process_echoes(tty);
1295 }
1296
Joe Peterson575537b32008-04-30 00:53:30 -07001297 if (c == '\r') {
1298 if (I_IGNCR(tty))
Jiri Slaby16765362021-05-05 11:19:00 +02001299 return;
Joe Peterson575537b32008-04-30 00:53:30 -07001300 if (I_ICRNL(tty))
1301 c = '\n';
1302 } else if (c == '\n' && I_INLCR(tty))
1303 c = '\r';
1304
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001305 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1307 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1308 eraser(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001309 commit_echoes(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001310 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001313 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001315 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001317 echo_char_raw('^', ldata);
1318 echo_char_raw('\b', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001319 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321 }
Jiri Slaby16765362021-05-05 11:19:00 +02001322 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001324 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001325 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Jiri Slaby57c94122012-10-18 22:26:43 +02001327 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001329 echo_char_raw('\n', ldata);
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001330 while (MASK(tail) != MASK(ldata->read_head)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001331 echo_char(read_buf(ldata, tail), tty);
1332 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001334 commit_echoes(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001335 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
1337 if (c == '\n') {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001338 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001339 echo_char_raw('\n', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001340 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342 goto handle_newline;
1343 }
1344 if (c == EOF_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 c = __DISABLED_CHAR;
1346 goto handle_newline;
1347 }
1348 if ((c == EOL_CHAR(tty)) ||
1349 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1350 /*
1351 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1352 */
1353 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001355 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001356 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 echo_char(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001358 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360 /*
1361 * XXX does PARMRK doubling happen for
1362 * EOL_CHAR and EOL2_CHAR?
1363 */
Peter Hurley001ba922013-12-02 14:24:44 -05001364 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001365 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Alan Cox4edf1822008-02-08 04:18:44 -08001367handle_newline:
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001368 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Peter Hurley6d76bd22013-06-15 09:14:26 -04001369 put_tty_queue(c, ldata);
Peter Hurley70aca712015-01-16 15:05:37 -05001370 smp_store_release(&ldata->canon_head, ldata->read_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001372 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
Jiri Slaby16765362021-05-05 11:19:00 +02001373 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
1375 }
Alan Cox4edf1822008-02-08 04:18:44 -08001376
Joe Petersonacc71bb2009-01-02 13:43:32 +00001377 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001378 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001380 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 else {
1382 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001383 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001384 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 echo_char(c, tty);
1386 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001387 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389
Peter Hurley001ba922013-12-02 14:24:44 -05001390 /* PARMRK doubling check */
1391 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001392 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Jiri Slaby57c94122012-10-18 22:26:43 +02001394 put_tty_queue(c, ldata);
Alan Cox4edf1822008-02-08 04:18:44 -08001395}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Jiri Slaby95aafe32021-05-05 11:18:58 +02001397static void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001398{
1399 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001400
Jiri Slaby6e94dbc2021-05-05 11:19:05 +02001401 if (tty->flow.stopped && !tty->flow.tco_stopped && I_IXON(tty) && I_IXANY(tty)) {
Peter Hurleye60d27c2013-07-24 08:29:56 -04001402 start_tty(tty);
1403 process_echoes(tty);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001404 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001405 if (L_ECHO(tty)) {
1406 finish_erasing(ldata);
1407 /* Record the column of first canon char. */
1408 if (ldata->canon_head == ldata->read_head)
1409 echo_set_canon_col(ldata);
1410 echo_char(c, tty);
1411 commit_echoes(tty);
1412 }
Peter Hurley001ba922013-12-02 14:24:44 -05001413 /* PARMRK doubling check */
Jiri Slaby95aafe32021-05-05 11:18:58 +02001414 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001415 put_tty_queue(c, ldata);
1416 put_tty_queue(c, ldata);
1417}
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001418
Peter Hurley8dc4b252013-12-02 14:24:43 -05001419static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001420{
1421 if (I_ISTRIP(tty))
1422 c &= 0x7f;
1423 if (I_IUCLC(tty) && L_IEXTEN(tty))
1424 c = tolower(c);
1425
1426 if (I_IXON(tty)) {
1427 if (c == STOP_CHAR(tty))
1428 stop_tty(tty);
1429 else if (c == START_CHAR(tty) ||
Jiri Slaby6e94dbc2021-05-05 11:19:05 +02001430 (tty->flow.stopped && !tty->flow.tco_stopped && I_IXANY(tty) &&
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001431 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) &&
1432 c != SUSP_CHAR(tty))) {
1433 start_tty(tty);
1434 process_echoes(tty);
1435 }
1436 }
1437}
1438
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001439static void
1440n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)
1441{
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001442 switch (flag) {
1443 case TTY_BREAK:
1444 n_tty_receive_break(tty);
1445 break;
1446 case TTY_PARITY:
1447 case TTY_FRAME:
1448 n_tty_receive_parity_error(tty, c);
1449 break;
1450 case TTY_OVERRUN:
1451 n_tty_receive_overrun(tty);
1452 break;
1453 default:
Peter Hurley339f36b2015-11-08 13:01:13 -05001454 tty_err(tty, "unknown flag %d\n", flag);
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001455 break;
1456 }
1457}
1458
Peter Hurleye60d27c2013-07-24 08:29:56 -04001459static void
1460n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag)
1461{
1462 struct n_tty_data *ldata = tty->disc_data;
1463
1464 ldata->lnext = 0;
1465 if (likely(flag == TTY_NORMAL)) {
1466 if (I_ISTRIP(tty))
1467 c &= 0x7f;
1468 if (I_IUCLC(tty) && L_IEXTEN(tty))
1469 c = tolower(c);
Jiri Slaby95aafe32021-05-05 11:18:58 +02001470 n_tty_receive_char(tty, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001471 } else
1472 n_tty_receive_char_flagged(tty, c, flag);
1473}
1474
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001475static void
1476n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001477 const char *fp, int count)
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001478{
1479 struct n_tty_data *ldata = tty->disc_data;
1480 size_t n, head;
1481
1482 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001483 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001484 memcpy(read_buf_addr(ldata, head), cp, n);
1485 ldata->read_head += n;
1486 cp += n;
1487 count -= n;
1488
1489 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001490 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001491 memcpy(read_buf_addr(ldata, head), cp, n);
1492 ldata->read_head += n;
1493}
1494
Peter Hurley554117bd2013-06-15 10:21:25 -04001495static void
1496n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001497 const char *fp, int count)
Peter Hurley554117bd2013-06-15 10:21:25 -04001498{
1499 struct n_tty_data *ldata = tty->disc_data;
1500 char flag = TTY_NORMAL;
1501
1502 while (count--) {
1503 if (fp)
1504 flag = *fp++;
1505 if (likely(flag == TTY_NORMAL))
1506 put_tty_queue(*cp++, ldata);
1507 else
1508 n_tty_receive_char_flagged(tty, *cp++, flag);
1509 }
1510}
1511
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001512static void
1513n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001514 const char *fp, int count)
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001515{
1516 char flag = TTY_NORMAL;
1517
1518 while (count--) {
1519 if (fp)
1520 flag = *fp++;
1521 if (likely(flag == TTY_NORMAL))
1522 n_tty_receive_char_closing(tty, *cp++);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001523 }
1524}
1525
Jiri Slaby1ed2dfe2021-05-05 11:18:57 +02001526static void n_tty_receive_buf_standard(struct tty_struct *tty,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001527 const unsigned char *cp, const char *fp, int count)
Peter Hurley6baad002013-07-24 08:29:52 -04001528{
1529 struct n_tty_data *ldata = tty->disc_data;
1530 char flag = TTY_NORMAL;
1531
1532 while (count--) {
Jiri Slaby3a7d5302021-05-05 11:19:01 +02001533 unsigned char c = *cp++;
1534
Peter Hurley6baad002013-07-24 08:29:52 -04001535 if (fp)
1536 flag = *fp++;
Jiri Slaby67a620d2021-05-05 11:18:59 +02001537
1538 if (ldata->lnext) {
Jiri Slaby3a7d5302021-05-05 11:19:01 +02001539 n_tty_receive_char_lnext(tty, c, flag);
Jiri Slaby67a620d2021-05-05 11:18:59 +02001540 continue;
1541 }
1542
Jiri Slabye8f2a132021-05-05 11:19:02 +02001543 if (unlikely(flag != TTY_NORMAL)) {
Jiri Slaby3a7d5302021-05-05 11:19:01 +02001544 n_tty_receive_char_flagged(tty, c, flag);
Jiri Slabye8f2a132021-05-05 11:19:02 +02001545 continue;
1546 }
1547
1548 if (I_ISTRIP(tty))
1549 c &= 0x7f;
1550 if (I_IUCLC(tty) && L_IEXTEN(tty))
1551 c = tolower(c);
1552 if (L_EXTPROC(tty)) {
1553 put_tty_queue(c, ldata);
1554 continue;
1555 }
1556
1557 if (test_bit(c, ldata->char_map))
1558 n_tty_receive_char_special(tty, c);
1559 else
1560 n_tty_receive_char(tty, c);
Peter Hurley6baad002013-07-24 08:29:52 -04001561 }
1562}
1563
Peter Hurley24a89d12013-06-15 09:14:15 -04001564static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001565 const char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001567 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001568 bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001570 if (ldata->real_raw)
1571 n_tty_receive_buf_real_raw(tty, cp, fp, count);
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001572 else if (ldata->raw || (L_EXTPROC(tty) && !preops))
Peter Hurley554117bd2013-06-15 10:21:25 -04001573 n_tty_receive_buf_raw(tty, cp, fp, count);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001574 else if (tty->closing && !L_EXTPROC(tty))
1575 n_tty_receive_buf_closing(tty, cp, fp, count);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001576 else {
Jiri Slaby1ed2dfe2021-05-05 11:18:57 +02001577 n_tty_receive_buf_standard(tty, cp, fp, count);
Peter Hurleycbfd0342013-06-15 10:04:26 -04001578
1579 flush_echoes(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001580 if (tty->ops->flush_chars)
1581 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583
Peter Hurley70aca712015-01-16 15:05:37 -05001584 if (ldata->icanon && !L_EXTPROC(tty))
1585 return;
1586
1587 /* publish read_head to consumer */
1588 smp_store_release(&ldata->commit_head, ldata->read_head);
1589
Peter Hurley33d71362016-01-09 21:45:08 -08001590 if (read_cnt(ldata)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001592 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001596/**
1597 * n_tty_receive_buf_common - process input
1598 * @tty: device to receive input
1599 * @cp: input chars
1600 * @fp: flags for each char (if NULL, all chars are TTY_NORMAL)
1601 * @count: number of input chars in @cp
Lee Jones171044a2020-11-04 19:35:23 +00001602 * @flow: enable flow control
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001603 *
1604 * Called by the terminal driver when a block of characters has
1605 * been received. This function must be called from soft contexts
1606 * not from interrupt context. The driver is responsible for making
1607 * calls one at a time and in order (or using flush_to_ldisc)
1608 *
1609 * Returns the # of input chars from @cp which were processed.
1610 *
1611 * In canonical mode, the maximum line length is 4096 chars (including
1612 * the line termination char); lines longer than 4096 chars are
1613 * truncated. After 4095 chars, input data is still processed but
1614 * not stored. Overflow processing ensures the tty can always
1615 * receive more input until at least one line can be read.
1616 *
1617 * In non-canonical mode, the read buffer will only accept 4095 chars;
1618 * this provides the necessary space for a newline char if the input
1619 * mode is switched to canonical.
1620 *
1621 * Note it is possible for the read buffer to _contain_ 4096 chars
1622 * in non-canonical mode: the read buffer could already contain the
1623 * maximum canon line of 4096 chars when the mode is switched to
1624 * non-canonical.
1625 *
1626 * n_tty_receive_buf()/producer path:
1627 * claims non-exclusive termios_rwsem
1628 * publishes commit_head or canon_head
1629 */
Peter Hurley5c32d122013-12-02 14:24:41 -05001630static int
1631n_tty_receive_buf_common(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001632 const char *fp, int count, int flow)
Peter Hurley24a89d12013-06-15 09:14:15 -04001633{
1634 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001635 int room, n, rcvd = 0, overflow;
Peter Hurley24a89d12013-06-15 09:14:15 -04001636
Peter Hurley9356b532013-06-15 09:14:24 -04001637 down_read(&tty->termios_rwsem);
1638
Dmitry Safonovc96cf922018-11-01 00:24:48 +00001639 do {
Peter Hurley70aca712015-01-16 15:05:37 -05001640 /*
Peter Hurley06c49f92015-01-16 15:05:38 -05001641 * When PARMRK is set, each input char may take up to 3 chars
1642 * in the read buf; reduce the buffer space avail by 3x
Peter Hurley70aca712015-01-16 15:05:37 -05001643 *
1644 * If we are doing input canonicalization, and there are no
1645 * pending newlines, let characters through without limit, so
1646 * that erase characters will be handled. Other excess
1647 * characters will be beeped.
1648 *
1649 * paired with store in *_copy_from_read_buf() -- guarantees
1650 * the consumer has loaded the data in read_buf up to the new
1651 * read_tail (so this producer will not overwrite unread data)
1652 */
1653 size_t tail = smp_load_acquire(&ldata->read_tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001654
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001655 room = N_TTY_BUF_SIZE - (ldata->read_head - tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001656 if (I_PARMRK(tty))
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001657 room = (room + 2) / 3;
1658 room--;
1659 if (room <= 0) {
1660 overflow = ldata->icanon && ldata->canon_head == tail;
1661 if (overflow && room < 0)
1662 ldata->read_head--;
1663 room = overflow;
1664 ldata->no_room = flow && !room;
1665 } else
1666 overflow = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05001667
Peter Hurley19e2ad62013-07-24 08:29:54 -04001668 n = min(count, room);
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001669 if (!n)
Peter Hurley19e2ad62013-07-24 08:29:54 -04001670 break;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001671
1672 /* ignore parity errors if handling overflow */
1673 if (!overflow || !fp || *fp != TTY_PARITY)
1674 __receive_buf(tty, cp, fp, n);
1675
Peter Hurley19e2ad62013-07-24 08:29:54 -04001676 cp += n;
1677 if (fp)
1678 fp += n;
1679 count -= n;
1680 rcvd += n;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00001681 } while (!test_bit(TTY_LDISC_CHANGING, &tty->flags));
Peter Hurley24a89d12013-06-15 09:14:15 -04001682
Peter Hurley19e2ad62013-07-24 08:29:54 -04001683 tty->receive_room = room;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001684
1685 /* Unthrottle if handling overflow on pty */
1686 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
1687 if (overflow) {
1688 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
1689 tty_unthrottle_safe(tty);
1690 __tty_set_flow_change(tty, 0);
1691 }
1692 } else
1693 n_tty_check_throttle(tty);
1694
Peter Hurley9356b532013-06-15 09:14:24 -04001695 up_read(&tty->termios_rwsem);
1696
Peter Hurley19e2ad62013-07-24 08:29:54 -04001697 return rcvd;
Peter Hurley24a89d12013-06-15 09:14:15 -04001698}
1699
Peter Hurley5c32d122013-12-02 14:24:41 -05001700static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001701 const char *fp, int count)
Peter Hurley5c32d122013-12-02 14:24:41 -05001702{
1703 n_tty_receive_buf_common(tty, cp, fp, count, 0);
1704}
1705
1706static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +02001707 const char *fp, int count)
Peter Hurley5c32d122013-12-02 14:24:41 -05001708{
1709 return n_tty_receive_buf_common(tty, cp, fp, count, 1);
1710}
1711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712/**
1713 * n_tty_set_termios - termios data changed
1714 * @tty: terminal
1715 * @old: previous data
1716 *
1717 * Called by the tty layer when the user changes termios flags so
1718 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001719 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 * guaranteed that this function will not be re-entered or in progress
1721 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001722 *
Peter Hurley6a1c0682013-06-15 09:14:23 -04001723 * Locking: Caller holds tty->termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 */
Alan Cox4edf1822008-02-08 04:18:44 -08001725
1726static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001728 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001729
Linus Torvalds966031f2017-12-20 17:57:06 -08001730 if (!old || (old->c_lflag ^ tty->termios.c_lflag) & (ICANON | EXTPROC)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001731 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -05001732 ldata->line_start = ldata->read_tail;
1733 if (!L_ICANON(tty) || !read_cnt(ldata)) {
1734 ldata->canon_head = ldata->read_tail;
1735 ldata->push = 0;
1736 } else {
1737 set_bit((ldata->read_head - 1) & (N_TTY_BUF_SIZE - 1),
1738 ldata->read_flags);
1739 ldata->canon_head = ldata->read_head;
1740 ldata->push = 1;
1741 }
Peter Hurley70aca712015-01-16 15:05:37 -05001742 ldata->commit_head = ldata->read_head;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001743 ldata->erasing = 0;
Peter Hurley6f9b0282013-06-15 09:14:27 -04001744 ldata->lnext = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001745 }
1746
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001747 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1750 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1751 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1752 I_PARMRK(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001753 bitmap_zero(ldata->char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
1755 if (I_IGNCR(tty) || I_ICRNL(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001756 set_bit('\r', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 if (I_INLCR(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001758 set_bit('\n', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 if (L_ICANON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001761 set_bit(ERASE_CHAR(tty), ldata->char_map);
1762 set_bit(KILL_CHAR(tty), ldata->char_map);
1763 set_bit(EOF_CHAR(tty), ldata->char_map);
1764 set_bit('\n', ldata->char_map);
1765 set_bit(EOL_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (L_IEXTEN(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001767 set_bit(WERASE_CHAR(tty), ldata->char_map);
1768 set_bit(LNEXT_CHAR(tty), ldata->char_map);
1769 set_bit(EOL2_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 if (L_ECHO(tty))
1771 set_bit(REPRINT_CHAR(tty),
Peter Hurley1bb9d562013-06-15 10:21:20 -04001772 ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 }
1774 }
1775 if (I_IXON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001776 set_bit(START_CHAR(tty), ldata->char_map);
1777 set_bit(STOP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
1779 if (L_ISIG(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001780 set_bit(INTR_CHAR(tty), ldata->char_map);
1781 set_bit(QUIT_CHAR(tty), ldata->char_map);
1782 set_bit(SUSP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
Peter Hurley1bb9d562013-06-15 10:21:20 -04001784 clear_bit(__DISABLED_CHAR, ldata->char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001785 ldata->raw = 0;
1786 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001788 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1790 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1791 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001792 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001794 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001796 /*
1797 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1798 * been stopped by STOP_CHAR(tty) before it.
1799 */
Jiri Slaby6e94dbc2021-05-05 11:19:05 +02001800 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow.tco_stopped) {
Wang YanQingdab73b42013-05-09 14:16:47 +08001801 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001802 process_echoes(tty);
1803 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001804
Alan Coxf34d7a52008-04-30 00:54:13 -07001805 /* The termios change make the tty ready for I/O */
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001806 wake_up_interruptible(&tty->write_wait);
1807 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
1810/**
1811 * n_tty_close - close the ldisc for this tty
1812 * @tty: device
1813 *
Alan Cox4edf1822008-02-08 04:18:44 -08001814 * Called from the terminal layer when this line discipline is
1815 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 * discipline change. The function will not be called while other
1817 * ldisc methods are in progress.
1818 */
Alan Cox4edf1822008-02-08 04:18:44 -08001819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820static void n_tty_close(struct tty_struct *tty)
1821{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001822 struct n_tty_data *ldata = tty->disc_data;
1823
Peter Hurley79901312013-03-11 16:44:23 -04001824 if (tty->link)
1825 n_tty_packet_mode_flush(tty);
1826
Yan.Gaoc9cd57b2020-12-10 10:25:07 +08001827 down_write(&tty->termios_rwsem);
Peter Hurley20bafb32013-06-15 10:21:19 -04001828 vfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001829 tty->disc_data = NULL;
Yan.Gaoc9cd57b2020-12-10 10:25:07 +08001830 up_write(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
1833/**
1834 * n_tty_open - open an ldisc
1835 * @tty: terminal to open
1836 *
Alan Cox4edf1822008-02-08 04:18:44 -08001837 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 * terminal device. Can sleep. Called serialized so that no
1839 * other events will occur in parallel. No further open will occur
1840 * until a close.
1841 */
1842
1843static int n_tty_open(struct tty_struct *tty)
1844{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001845 struct n_tty_data *ldata;
1846
Peter Hurley20bafb32013-06-15 10:21:19 -04001847 /* Currently a malloc failure here can panic */
Tetsuo Handaebec3f82018-05-26 09:53:14 +09001848 ldata = vzalloc(sizeof(*ldata));
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001849 if (!ldata)
Tetsuo Handaebec3f82018-05-26 09:53:14 +09001850 return -ENOMEM;
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001851
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001852 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001853 mutex_init(&ldata->atomic_read_lock);
1854 mutex_init(&ldata->output_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001855
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001856 tty->disc_data = ldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001858 /* indicate buffer work may resume */
1859 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1860 n_tty_set_termios(tty, NULL);
1861 tty_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return 0;
1863}
1864
Peter Hurleyeafbe672013-12-02 14:24:45 -05001865static inline int input_available_p(struct tty_struct *tty, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001867 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya5934802014-02-11 11:49:58 -05001868 int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001869
Peter Hurley25e8d0e2014-02-11 18:55:30 -05001870 if (ldata->icanon && !L_EXTPROC(tty))
1871 return ldata->canon_head != ldata->read_tail;
1872 else
Peter Hurley70aca712015-01-16 15:05:37 -05001873 return ldata->commit_head - ldata->read_tail >= amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
1876/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001877 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 * @tty: terminal device
Linus Torvalds3b830a92021-01-18 13:31:30 -08001879 * @kbp: data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 * @nr: size of data
1881 *
Alan Cox11a96d12008-10-13 10:46:24 +01001882 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds3b830a92021-01-18 13:31:30 -08001883 * ICANON is off; it copies characters straight from the tty queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001885 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 *
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001887 * Returns true if it successfully copied data, but there is still
1888 * more data to be had.
1889 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001890 * n_tty_read()/consumer path:
1891 * caller holds non-exclusive termios_rwsem
1892 * read_tail published
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 */
Alan Cox4edf1822008-02-08 04:18:44 -08001894
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001895static bool copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds3b830a92021-01-18 13:31:30 -08001896 unsigned char **kbp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 size_t *nr)
1898
1899{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001900 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 size_t n;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001902 bool is_eof;
Peter Hurley70aca712015-01-16 15:05:37 -05001903 size_t head = smp_load_acquire(&ldata->commit_head);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001904 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Peter Hurley70aca712015-01-16 15:05:37 -05001906 n = min(head - ldata->read_tail, N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 n = min(*nr, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (n) {
Greg KHb97b3d92018-10-04 11:06:14 -07001909 unsigned char *from = read_buf_addr(ldata, tail);
Linus Torvalds3b830a92021-01-18 13:31:30 -08001910 memcpy(*kbp, from, n);
Peter Hurleye661cf72015-11-27 14:11:03 -05001911 is_eof = n == 1 && *from == EOF_CHAR(tty);
Peter Hurley309426a2016-01-09 22:55:27 -08001912 tty_audit_add_data(tty, from, n);
Greg KHb97b3d92018-10-04 11:06:14 -07001913 zero_buffer(tty, from, n);
Peter Hurley70aca712015-01-16 15:05:37 -05001914 smp_store_release(&ldata->read_tail, ldata->read_tail + n);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001915 /* Turn single EOF into zero-length read */
Peter Hurley70aca712015-01-16 15:05:37 -05001916 if (L_EXTPROC(tty) && ldata->icanon && is_eof &&
1917 (head == ldata->read_tail))
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001918 return false;
Linus Torvalds3b830a92021-01-18 13:31:30 -08001919 *kbp += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 *nr -= n;
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001921
1922 /* If we have more to copy, let the caller know */
1923 return head != ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001925 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
1927
Peter Hurley88bb0de2013-06-15 09:14:16 -04001928/**
Peter Hurley32f13522013-06-15 09:14:17 -04001929 * canon_copy_from_read_buf - copy read data in canonical mode
Peter Hurley88bb0de2013-06-15 09:14:16 -04001930 * @tty: terminal device
Linus Torvalds3b830a92021-01-18 13:31:30 -08001931 * @kbp: data
Peter Hurley88bb0de2013-06-15 09:14:16 -04001932 * @nr: size of data
1933 *
1934 * Helper function for n_tty_read. It is only called when ICANON is on;
Peter Hurley32f13522013-06-15 09:14:17 -04001935 * it copies one line of input up to and including the line-delimiting
Linus Torvalds3b830a92021-01-18 13:31:30 -08001936 * character into the result buffer.
Peter Hurley88bb0de2013-06-15 09:14:16 -04001937 *
Peter Hurley4d0ed182013-12-10 17:12:02 -05001938 * NB: When termios is changed from non-canonical to canonical mode and
1939 * the read buffer contains data, n_tty_set_termios() simulates an EOF
1940 * push (as if C-d were input) _without_ the DISABLED_CHAR in the buffer.
1941 * This causes data already processed as input to be immediately available
1942 * as input although a newline has not been received.
1943 *
Peter Hurley88bb0de2013-06-15 09:14:16 -04001944 * Called under the atomic_read_lock mutex
Peter Hurley6d76bd22013-06-15 09:14:26 -04001945 *
1946 * n_tty_read()/consumer path:
1947 * caller holds non-exclusive termios_rwsem
1948 * read_tail published
Peter Hurley88bb0de2013-06-15 09:14:16 -04001949 */
1950
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001951static bool canon_copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds64a698922021-01-19 13:46:28 -08001952 unsigned char **kbp,
1953 size_t *nr)
Peter Hurley88bb0de2013-06-15 09:14:16 -04001954{
1955 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley32f13522013-06-15 09:14:17 -04001956 size_t n, size, more, c;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001957 size_t eol;
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001958 size_t tail, canon_head;
Linus Torvalds3b830a92021-01-18 13:31:30 -08001959 int found = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001960
1961 /* N.B. avoid overrun if nr == 0 */
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001962 if (!*nr)
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001963 return false;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001964
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001965 canon_head = smp_load_acquire(&ldata->canon_head);
1966 n = min(*nr + 1, canon_head - ldata->read_tail);
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001967
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001968 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Peter Hurley32f13522013-06-15 09:14:17 -04001969 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
1970
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001971 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04001972 __func__, *nr, tail, n, size);
1973
1974 eol = find_next_bit(ldata->read_flags, size, tail);
1975 more = n - (size - tail);
1976 if (eol == N_TTY_BUF_SIZE && more) {
1977 /* scan wrapped without finding set bit */
1978 eol = find_next_bit(ldata->read_flags, more, 0);
Peter Hurleyb985e9e2015-11-27 14:11:04 -05001979 found = eol != more;
1980 } else
1981 found = eol != size;
Peter Hurley32f13522013-06-15 09:14:17 -04001982
Peter Hurleyc77569d2013-11-22 07:16:25 -05001983 n = eol - tail;
Mark Tomlinsonda555db2015-05-18 12:01:48 +12001984 if (n > N_TTY_BUF_SIZE)
1985 n += N_TTY_BUF_SIZE;
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001986 c = n + found;
Peter Hurley32f13522013-06-15 09:14:17 -04001987
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001988 if (!found || read_buf(ldata, eol) != __DISABLED_CHAR) {
1989 c = min(*nr, c);
1990 n = c;
Peter Hurley40d5e092013-06-15 10:21:17 -04001991 }
Peter Hurley32f13522013-06-15 09:14:17 -04001992
Peter Hurley679e7c22015-11-27 14:11:02 -05001993 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n",
1994 __func__, eol, found, n, c, tail, more);
Peter Hurley32f13522013-06-15 09:14:17 -04001995
Linus Torvalds3b830a92021-01-18 13:31:30 -08001996 tty_copy(tty, *kbp, tail, n);
1997 *kbp += n;
Peter Hurley32f13522013-06-15 09:14:17 -04001998 *nr -= n;
1999
Peter Hurleya73d3d62013-06-15 09:14:25 -04002000 if (found)
Peter Hurley6d76bd22013-06-15 09:14:26 -04002001 clear_bit(eol, ldata->read_flags);
Peter Hurley70aca712015-01-16 15:05:37 -05002002 smp_store_release(&ldata->read_tail, ldata->read_tail + c);
Peter Hurley88bb0de2013-06-15 09:14:16 -04002003
Peter Hurley40d5e092013-06-15 10:21:17 -04002004 if (found) {
Peter Hurley4d0ed182013-12-10 17:12:02 -05002005 if (!ldata->push)
2006 ldata->line_start = ldata->read_tail;
2007 else
2008 ldata->push = 0;
Peter Hurleyb50819f2016-01-09 22:55:30 -08002009 tty_audit_push();
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002010 return false;
Peter Hurley40d5e092013-06-15 10:21:17 -04002011 }
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002012
2013 /* No EOL found - do a continuation retry if there is more data */
2014 return ldata->read_tail != canon_head;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002015}
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017/**
2018 * job_control - check job control
2019 * @tty: tty
2020 * @file: file handle
2021 *
2022 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08002023 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07002025 *
Peter Hurley01a5e442013-03-06 08:38:20 -05002026 * Locking: redirected write test is safe
2027 * current->signal->tty check is safe
Jiri Slaby64d608d2021-05-05 11:19:06 +02002028 * ctrl.lock to safely reference tty->ctrl.pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 */
Alan Cox4edf1822008-02-08 04:18:44 -08002030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031static int job_control(struct tty_struct *tty, struct file *file)
2032{
2033 /* Job control check -- must be done at start and after
2034 every sleep (POSIX.1 7.1.1.4). */
2035 /* NOTE: not yet done after every sleep pending a thorough
2036 check of the logic of this change. -- jlc */
2037 /* don't stop on /dev/console */
Sami Tolvanen9f12e372021-01-25 11:09:25 -08002038 if (file->f_op->write_iter == redirected_tty_write)
Peter Hurley01a5e442013-03-06 08:38:20 -05002039 return 0;
2040
Peter Hurley2812d9e2015-10-10 20:28:42 -04002041 return __tty_check_change(tty, SIGTTIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
Alan Cox4edf1822008-02-08 04:18:44 -08002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045/**
Alan Cox11a96d12008-10-13 10:46:24 +01002046 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 * @tty: tty device
2048 * @file: file object
2049 * @buf: userspace buffer pointer
2050 * @nr: size of I/O
2051 *
2052 * Perform reads for the line discipline. We are guaranteed that the
2053 * line discipline will not be closed under us but we may get multiple
2054 * parallel readers and must handle this ourselves. We may also get
2055 * a hangup. Always called in user context, may sleep.
2056 *
2057 * This code must be sure never to sleep through a hangup.
Peter Hurley6d76bd22013-06-15 09:14:26 -04002058 *
2059 * n_tty_read()/consumer path:
2060 * claims non-exclusive termios_rwsem
2061 * publishes read_tail
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 */
Alan Cox4edf1822008-02-08 04:18:44 -08002063
Alan Cox11a96d12008-10-13 10:46:24 +01002064static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds3b830a92021-01-18 13:31:30 -08002065 unsigned char *kbuf, size_t nr,
2066 void **cookie, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002068 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds3b830a92021-01-18 13:31:30 -08002069 unsigned char *kb = kbuf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002070 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002071 int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 int minimum, time;
2073 ssize_t retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 long timeout;
Jiri Slaby64d608d2021-05-05 11:19:06 +02002075 bool packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002076 size_t tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002078 /*
2079 * Is this a continuation of a read started earler?
2080 *
2081 * If so, we still hold the atomic_read_lock and the
2082 * termios_rwsem, and can just continue to copy data.
2083 */
2084 if (*cookie) {
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002085 if (ldata->icanon && !L_EXTPROC(tty)) {
2086 if (canon_copy_from_read_buf(tty, &kb, &nr))
2087 return kb - kbuf;
2088 } else {
2089 if (copy_from_read_buf(tty, &kb, &nr))
2090 return kb - kbuf;
2091 }
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002092
2093 /* No more data - release locks and stop retries */
2094 n_tty_kick_worker(tty);
2095 n_tty_check_unthrottle(tty);
2096 up_read(&tty->termios_rwsem);
2097 mutex_unlock(&ldata->atomic_read_lock);
2098 *cookie = NULL;
2099 return kb - kbuf;
2100 }
2101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08002103 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08002105
Peter Hurleyaefceaf2013-08-11 08:04:23 -04002106 /*
2107 * Internal serialization of reads.
2108 */
2109 if (file->f_flags & O_NONBLOCK) {
2110 if (!mutex_trylock(&ldata->atomic_read_lock))
2111 return -EAGAIN;
2112 } else {
2113 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
2114 return -ERESTARTSYS;
2115 }
2116
Peter Hurley9356b532013-06-15 09:14:24 -04002117 down_read(&tty->termios_rwsem);
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 minimum = time = 0;
2120 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002121 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 minimum = MIN_CHAR(tty);
2123 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04002124 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04002126 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurley33d71362016-01-09 21:45:08 -08002127 minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129 }
2130
Jiri Slaby64d608d2021-05-05 11:19:06 +02002131 packet = tty->ctrl.packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002132 tail = ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 while (nr) {
2136 /* First test for status change. */
Jiri Slaby64d608d2021-05-05 11:19:06 +02002137 if (packet && tty->link->ctrl.pktstatus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 unsigned char cs;
Linus Torvalds3b830a92021-01-18 13:31:30 -08002139 if (kb != kbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 break;
Jiri Slaby64d608d2021-05-05 11:19:06 +02002141 spin_lock_irq(&tty->link->ctrl.lock);
2142 cs = tty->link->ctrl.pktstatus;
2143 tty->link->ctrl.pktstatus = 0;
2144 spin_unlock_irq(&tty->link->ctrl.lock);
Linus Torvalds3b830a92021-01-18 13:31:30 -08002145 *kb++ = cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 nr--;
2147 break;
2148 }
Alan Cox4edf1822008-02-08 04:18:44 -08002149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 if (!input_available_p(tty, 0)) {
Peter Hurley52bce7f2014-11-05 12:13:05 -05002151 up_read(&tty->termios_rwsem);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002152 tty_buffer_flush_work(tty->port);
Peter Hurley52bce7f2014-11-05 12:13:05 -05002153 down_read(&tty->termios_rwsem);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002154 if (!input_available_p(tty, 0)) {
2155 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
2156 retval = -EIO;
2157 break;
2158 }
2159 if (tty_hung_up_p(file))
2160 break;
Tejun Heo28b0f8a2018-02-13 07:38:08 -08002161 /*
2162 * Abort readers for ttys which never actually
2163 * get hung up. See __tty_hangup().
2164 */
2165 if (test_bit(TTY_HUPPING, &tty->flags))
2166 break;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002167 if (!timeout)
2168 break;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00002169 if (tty_io_nonblock(tty, file)) {
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002170 retval = -EAGAIN;
2171 break;
2172 }
2173 if (signal_pending(current)) {
2174 retval = -ERESTARTSYS;
2175 break;
2176 }
2177 up_read(&tty->termios_rwsem);
2178
2179 timeout = wait_woken(&wait, TASK_INTERRUPTIBLE,
2180 timeout);
2181
2182 down_read(&tty->termios_rwsem);
2183 continue;
2184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
2186
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002187 if (ldata->icanon && !L_EXTPROC(tty)) {
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002188 if (canon_copy_from_read_buf(tty, &kb, &nr))
2189 goto more_to_be_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 } else {
Peter Hurley95ea90d2014-10-16 15:33:30 -04002191 /* Deal with packet mode. */
Linus Torvalds3b830a92021-01-18 13:31:30 -08002192 if (packet && kb == kbuf) {
2193 *kb++ = TIOCPKT_DATA;
Peter Hurley95ea90d2014-10-16 15:33:30 -04002194 nr--;
2195 }
2196
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002197 /*
2198 * Copy data, and if there is more to be had
2199 * and we have nothing more to wait for, then
2200 * let's mark us for retries.
2201 *
2202 * NOTE! We return here with both the termios_sem
2203 * and atomic_read_lock still held, the retries
2204 * will release them when done.
2205 */
2206 if (copy_from_read_buf(tty, &kb, &nr) && kb - kbuf >= minimum) {
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002207more_to_be_read:
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002208 remove_wait_queue(&tty->read_wait, &wait);
2209 *cookie = cookie;
2210 return kb - kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
2212 }
2213
Peter Hurley6367ca72013-06-15 09:14:33 -04002214 n_tty_check_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Linus Torvalds3b830a92021-01-18 13:31:30 -08002216 if (kb - kbuf >= minimum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 break;
2218 if (time)
2219 timeout = time;
2220 }
Peter Hurley2c5dc462015-01-16 15:05:34 -05002221 if (tail != ldata->read_tail)
2222 n_tty_kick_worker(tty);
Peter Hurley42458f42013-11-07 13:59:46 -05002223 up_read(&tty->termios_rwsem);
2224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 remove_wait_queue(&tty->read_wait, &wait);
Peter Hurleyaebf04532013-11-07 14:01:57 -05002226 mutex_unlock(&ldata->atomic_read_lock);
2227
Linus Torvalds3b830a92021-01-18 13:31:30 -08002228 if (kb - kbuf)
2229 retval = kb - kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 return retval;
2232}
2233
2234/**
Alan Cox11a96d12008-10-13 10:46:24 +01002235 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 * @tty: tty device
2237 * @file: file object
2238 * @buf: userspace buffer pointer
2239 * @nr: size of I/O
2240 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002241 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002243 * and other such events. Since the receive code will echo characters,
2244 * thus calling driver write methods, the output_lock is used in
2245 * the output processing functions called here as well as in the
2246 * echo processing function to protect the column state and space
2247 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 *
2249 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002250 *
2251 * Locking: output_lock to protect column state and space left
2252 * (note that the process_output*() functions take this
2253 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 */
Alan Cox4edf1822008-02-08 04:18:44 -08002255
Alan Cox11a96d12008-10-13 10:46:24 +01002256static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002257 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
2259 const unsigned char *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002260 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 int c;
2262 ssize_t retval = 0;
2263
2264 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
Sami Tolvanen9f12e372021-01-25 11:09:25 -08002265 if (L_TOSTOP(tty) && file->f_op->write_iter != redirected_tty_write) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 retval = tty_check_change(tty);
2267 if (retval)
2268 return retval;
2269 }
2270
Peter Hurley9356b532013-06-15 09:14:24 -04002271 down_read(&tty->termios_rwsem);
2272
Joe Petersona88a69c2009-01-02 13:40:53 +00002273 /* Write out any echoed characters that are still pending */
2274 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 add_wait_queue(&tty->write_wait, &wait);
2277 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 if (signal_pending(current)) {
2279 retval = -ERESTARTSYS;
2280 break;
2281 }
2282 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2283 retval = -EIO;
2284 break;
2285 }
Peter Hurley582f5592013-05-17 12:49:48 -04002286 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002288 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 if (num < 0) {
2290 if (num == -EAGAIN)
2291 break;
2292 retval = num;
2293 goto break_out;
2294 }
2295 b += num;
2296 nr -= num;
2297 if (nr == 0)
2298 break;
2299 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002300 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 break;
2302 b++; nr--;
2303 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002304 if (tty->ops->flush_chars)
2305 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 } else {
Peter Hurley42910862014-05-03 14:04:59 +02002307 struct n_tty_data *ldata = tty->disc_data;
2308
Roman Zippeld6afe272005-07-07 17:56:55 -07002309 while (nr > 0) {
Peter Hurley42910862014-05-03 14:04:59 +02002310 mutex_lock(&ldata->output_lock);
Alan Coxf34d7a52008-04-30 00:54:13 -07002311 c = tty->ops->write(tty, b, nr);
Peter Hurley42910862014-05-03 14:04:59 +02002312 mutex_unlock(&ldata->output_lock);
Roman Zippeld6afe272005-07-07 17:56:55 -07002313 if (c < 0) {
2314 retval = c;
2315 goto break_out;
2316 }
2317 if (!c)
2318 break;
2319 b += c;
2320 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 }
2323 if (!nr)
2324 break;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00002325 if (tty_io_nonblock(tty, file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 retval = -EAGAIN;
2327 break;
2328 }
Peter Hurley9356b532013-06-15 09:14:24 -04002329 up_read(&tty->termios_rwsem);
2330
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002331 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Peter Hurley9356b532013-06-15 09:14:24 -04002332
2333 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 }
2335break_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 remove_wait_queue(&tty->write_wait, &wait);
Peter Hurley87108bc2016-01-09 21:45:14 -08002337 if (nr && tty->fasync)
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002338 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002339 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 return (b - buf) ? b - buf : retval;
2341}
2342
2343/**
Alan Cox11a96d12008-10-13 10:46:24 +01002344 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 * @tty: terminal device
2346 * @file: file accessing it
2347 * @wait: poll table
2348 *
2349 * Called when the line discipline is asked to poll() for data or
2350 * for special events. This code is not serialized with respect to
2351 * other events save open/close.
2352 *
2353 * This code must be sure never to sleep through a hangup.
2354 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 */
Alan Cox4edf1822008-02-08 04:18:44 -08002356
Al Viroafc9a422017-07-03 06:39:46 -04002357static __poll_t n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002358 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
Al Viroafc9a422017-07-03 06:39:46 -04002360 __poll_t mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
2362 poll_wait(file, &tty->read_wait, wait);
2363 poll_wait(file, &tty->write_wait, wait);
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002364 if (input_available_p(tty, 1))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002365 mask |= EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002366 else {
2367 tty_buffer_flush_work(tty->port);
2368 if (input_available_p(tty, 1))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002369 mask |= EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002370 }
Jiri Slaby64d608d2021-05-05 11:19:06 +02002371 if (tty->ctrl.packet && tty->link->ctrl.pktstatus)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002372 mask |= EPOLLPRI | EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002373 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002374 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 if (tty_hung_up_p(file))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002376 mask |= EPOLLHUP;
Alan Coxf34d7a52008-04-30 00:54:13 -07002377 if (tty->ops->write && !tty_is_writelocked(tty) &&
2378 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2379 tty_write_room(tty) > 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002380 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 return mask;
2382}
2383
Jiri Slaby57c94122012-10-18 22:26:43 +02002384static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002385{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002386 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002387
Peter Hurleya73d3d62013-06-15 09:14:25 -04002388 if (ldata->canon_head == ldata->read_tail)
Alan Cox47afa7a2008-10-13 10:44:17 +01002389 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002390 head = ldata->canon_head;
2391 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002392 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002393 /* Skip EOF-chars.. */
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09002394 while (MASK(head) != MASK(tail)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002395 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2396 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002397 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002398 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002399 }
2400 return nr;
2401}
2402
2403static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2404 unsigned int cmd, unsigned long arg)
2405{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002406 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002407 int retval;
2408
2409 switch (cmd) {
2410 case TIOCOUTQ:
2411 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2412 case TIOCINQ:
Peter Hurley6d76bd22013-06-15 09:14:26 -04002413 down_write(&tty->termios_rwsem);
Linus Torvalds966031f2017-12-20 17:57:06 -08002414 if (L_ICANON(tty) && !L_EXTPROC(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002415 retval = inq_canon(ldata);
Peter Hurley6d76bd22013-06-15 09:14:26 -04002416 else
2417 retval = read_cnt(ldata);
2418 up_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002419 return put_user(retval, (unsigned int __user *) arg);
2420 default:
2421 return n_tty_ioctl_helper(tty, file, cmd, arg);
2422 }
2423}
2424
Peter Hurley27228732016-01-09 21:35:19 -08002425static struct tty_ldisc_ops n_tty_ops = {
Jiri Slaby5e30d3b2021-03-02 07:21:39 +01002426 .owner = THIS_MODULE,
Jiri Slabyfbadf70a2021-05-05 11:19:07 +02002427 .num = N_TTY,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002428 .name = "n_tty",
2429 .open = n_tty_open,
2430 .close = n_tty_close,
2431 .flush_buffer = n_tty_flush_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002432 .read = n_tty_read,
2433 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002434 .ioctl = n_tty_ioctl,
2435 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002436 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002437 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002438 .write_wakeup = n_tty_write_wakeup,
Peter Hurley24a89d12013-06-15 09:14:15 -04002439 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002441
2442/**
2443 * n_tty_inherit_ops - inherit N_TTY methods
2444 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2445 *
Peter Hurley27228732016-01-09 21:35:19 -08002446 * Enables a 'subclass' line discipline to 'inherit' N_TTY methods.
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002447 */
2448
2449void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2450{
Peter Hurley27228732016-01-09 21:35:19 -08002451 *ops = n_tty_ops;
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002452 ops->owner = NULL;
2453 ops->refcount = ops->flags = 0;
2454}
2455EXPORT_SYMBOL_GPL(n_tty_inherit_ops);
Peter Hurley27228732016-01-09 21:35:19 -08002456
2457void __init n_tty_init(void)
2458{
Jiri Slabyfbadf70a2021-05-05 11:19:07 +02002459 tty_register_ldisc(&n_tty_ops);
Peter Hurley27228732016-01-09 21:35:19 -08002460}