blob: e7c9dce14f88be68e49241cb800b377afe51e7d9 [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
Peter Hurleya30737a2013-03-11 16:44:22 -0400345 if (tty->link->packet) {
Peter Hurley54e8e5f2014-10-16 15:33:26 -0400346 spin_lock_irqsave(&tty->ctrl_lock, flags);
Peter Hurleya30737a2013-03-11 16:44:22 -0400347 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
Peter Hurley54e8e5f2014-10-16 15:33:26 -0400348 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 *
364 * 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 *
Peter Hurley8c985d12013-03-06 08:38:19 -05001106 * 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 return;
1249}
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251/**
1252 * n_tty_receive_char - perform processing
1253 * @tty: terminal device
1254 * @c: character
1255 *
1256 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001257 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 * driver above.
Peter Hurley6d76bd22013-06-15 09:14:26 -04001259 *
1260 * n_tty_receive_buf()/producer path:
1261 * caller holds non-exclusive termios_rwsem
1262 * publishes canon_head if canonical mode is active
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 */
Jiri Slaby16765362021-05-05 11:19:00 +02001264static void n_tty_receive_char_special(struct tty_struct *tty, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001266 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (I_IXON(tty)) {
1269 if (c == START_CHAR(tty)) {
1270 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001271 process_echoes(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001272 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274 if (c == STOP_CHAR(tty)) {
1275 stop_tty(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001276 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
1278 }
Joe Peterson575537b32008-04-30 00:53:30 -07001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (L_ISIG(tty)) {
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001281 if (c == INTR_CHAR(tty)) {
1282 n_tty_receive_signal_char(tty, SIGINT, c);
Jiri Slaby16765362021-05-05 11:19:00 +02001283 return;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001284 } else if (c == QUIT_CHAR(tty)) {
1285 n_tty_receive_signal_char(tty, SIGQUIT, c);
Jiri Slaby16765362021-05-05 11:19:00 +02001286 return;
Peter Hurleyb0ac50b2013-06-15 10:21:23 -04001287 } else if (c == SUSP_CHAR(tty)) {
1288 n_tty_receive_signal_char(tty, SIGTSTP, c);
Jiri Slaby16765362021-05-05 11:19:00 +02001289 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 }
1291 }
Joe Peterson575537b32008-04-30 00:53:30 -07001292
Peter Hurley855df3c2013-07-24 08:29:50 -04001293 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1294 start_tty(tty);
1295 process_echoes(tty);
1296 }
1297
Joe Peterson575537b32008-04-30 00:53:30 -07001298 if (c == '\r') {
1299 if (I_IGNCR(tty))
Jiri Slaby16765362021-05-05 11:19:00 +02001300 return;
Joe Peterson575537b32008-04-30 00:53:30 -07001301 if (I_ICRNL(tty))
1302 c = '\n';
1303 } else if (c == '\n' && I_INLCR(tty))
1304 c = '\r';
1305
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001306 if (ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1308 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1309 eraser(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001310 commit_echoes(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001311 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 }
1313 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001314 ldata->lnext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001316 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (L_ECHOCTL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001318 echo_char_raw('^', ldata);
1319 echo_char_raw('\b', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001320 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
1322 }
Jiri Slaby16765362021-05-05 11:19:00 +02001323 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001325 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001326 size_t tail = ldata->canon_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Jiri Slaby57c94122012-10-18 22:26:43 +02001328 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 echo_char(c, tty);
Jiri Slaby57c94122012-10-18 22:26:43 +02001330 echo_char_raw('\n', ldata);
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09001331 while (MASK(tail) != MASK(ldata->read_head)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001332 echo_char(read_buf(ldata, tail), tty);
1333 tail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001335 commit_echoes(tty);
Jiri Slaby16765362021-05-05 11:19:00 +02001336 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338 if (c == '\n') {
Joe Petersonacc71bb2009-01-02 13:43:32 +00001339 if (L_ECHO(tty) || L_ECHONL(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001340 echo_char_raw('\n', ldata);
Peter Hurley17bd7902013-06-15 10:04:24 -04001341 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343 goto handle_newline;
1344 }
1345 if (c == EOF_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 c = __DISABLED_CHAR;
1347 goto handle_newline;
1348 }
1349 if ((c == EOL_CHAR(tty)) ||
1350 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1351 /*
1352 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1353 */
1354 if (L_ECHO(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001356 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001357 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 echo_char(c, tty);
Peter Hurley17bd7902013-06-15 10:04:24 -04001359 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 }
1361 /*
1362 * XXX does PARMRK doubling happen for
1363 * EOL_CHAR and EOL2_CHAR?
1364 */
Peter Hurley001ba922013-12-02 14:24:44 -05001365 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001366 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Alan Cox4edf1822008-02-08 04:18:44 -08001368handle_newline:
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001369 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
Peter Hurley6d76bd22013-06-15 09:14:26 -04001370 put_tty_queue(c, ldata);
Peter Hurley70aca712015-01-16 15:05:37 -05001371 smp_store_release(&ldata->canon_head, ldata->read_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001373 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
Jiri Slaby16765362021-05-05 11:19:00 +02001374 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376 }
Alan Cox4edf1822008-02-08 04:18:44 -08001377
Joe Petersonacc71bb2009-01-02 13:43:32 +00001378 if (L_ECHO(tty)) {
Jiri Slaby57c94122012-10-18 22:26:43 +02001379 finish_erasing(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (c == '\n')
Jiri Slaby57c94122012-10-18 22:26:43 +02001381 echo_char_raw('\n', ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 else {
1383 /* Record the column of first canon char. */
Jiri Slabyba2e68a2012-10-18 22:26:41 +02001384 if (ldata->canon_head == ldata->read_head)
Jiri Slaby57c94122012-10-18 22:26:43 +02001385 echo_set_canon_col(ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 echo_char(c, tty);
1387 }
Peter Hurley17bd7902013-06-15 10:04:24 -04001388 commit_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
1390
Peter Hurley001ba922013-12-02 14:24:44 -05001391 /* PARMRK doubling check */
1392 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02001393 put_tty_queue(c, ldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Jiri Slaby57c94122012-10-18 22:26:43 +02001395 put_tty_queue(c, ldata);
Alan Cox4edf1822008-02-08 04:18:44 -08001396}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Jiri Slaby95aafe32021-05-05 11:18:58 +02001398static void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001399{
1400 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001401
Peter Hurleye60d27c2013-07-24 08:29:56 -04001402 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1403 start_tty(tty);
1404 process_echoes(tty);
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001405 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001406 if (L_ECHO(tty)) {
1407 finish_erasing(ldata);
1408 /* Record the column of first canon char. */
1409 if (ldata->canon_head == ldata->read_head)
1410 echo_set_canon_col(ldata);
1411 echo_char(c, tty);
1412 commit_echoes(tty);
1413 }
Peter Hurley001ba922013-12-02 14:24:44 -05001414 /* PARMRK doubling check */
Jiri Slaby95aafe32021-05-05 11:18:58 +02001415 if (c == (unsigned char) '\377' && I_PARMRK(tty))
Peter Hurleye60d27c2013-07-24 08:29:56 -04001416 put_tty_queue(c, ldata);
1417 put_tty_queue(c, ldata);
1418}
Peter Hurley4b1f79c2013-07-24 08:29:51 -04001419
Peter Hurley8dc4b252013-12-02 14:24:43 -05001420static void n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001421{
1422 if (I_ISTRIP(tty))
1423 c &= 0x7f;
1424 if (I_IUCLC(tty) && L_IEXTEN(tty))
1425 c = tolower(c);
1426
1427 if (I_IXON(tty)) {
1428 if (c == STOP_CHAR(tty))
1429 stop_tty(tty);
1430 else if (c == START_CHAR(tty) ||
1431 (tty->stopped && !tty->flow_stopped && I_IXANY(tty) &&
1432 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) &&
1433 c != SUSP_CHAR(tty))) {
1434 start_tty(tty);
1435 process_echoes(tty);
1436 }
1437 }
1438}
1439
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001440static void
1441n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)
1442{
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001443 switch (flag) {
1444 case TTY_BREAK:
1445 n_tty_receive_break(tty);
1446 break;
1447 case TTY_PARITY:
1448 case TTY_FRAME:
1449 n_tty_receive_parity_error(tty, c);
1450 break;
1451 case TTY_OVERRUN:
1452 n_tty_receive_overrun(tty);
1453 break;
1454 default:
Peter Hurley339f36b2015-11-08 13:01:13 -05001455 tty_err(tty, "unknown flag %d\n", flag);
Peter Hurleyd2f8d7a2013-06-15 10:21:24 -04001456 break;
1457 }
1458}
1459
Peter Hurleye60d27c2013-07-24 08:29:56 -04001460static void
1461n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag)
1462{
1463 struct n_tty_data *ldata = tty->disc_data;
1464
1465 ldata->lnext = 0;
1466 if (likely(flag == TTY_NORMAL)) {
1467 if (I_ISTRIP(tty))
1468 c &= 0x7f;
1469 if (I_IUCLC(tty) && L_IEXTEN(tty))
1470 c = tolower(c);
Jiri Slaby95aafe32021-05-05 11:18:58 +02001471 n_tty_receive_char(tty, c);
Peter Hurleye60d27c2013-07-24 08:29:56 -04001472 } else
1473 n_tty_receive_char_flagged(tty, c, flag);
1474}
1475
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001476static void
1477n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp,
1478 char *fp, int count)
1479{
1480 struct n_tty_data *ldata = tty->disc_data;
1481 size_t n, head;
1482
1483 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001484 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001485 memcpy(read_buf_addr(ldata, head), cp, n);
1486 ldata->read_head += n;
1487 cp += n;
1488 count -= n;
1489
1490 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
Peter Hurley70aca712015-01-16 15:05:37 -05001491 n = min_t(size_t, count, N_TTY_BUF_SIZE - head);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001492 memcpy(read_buf_addr(ldata, head), cp, n);
1493 ldata->read_head += n;
1494}
1495
Peter Hurley554117bd2013-06-15 10:21:25 -04001496static void
1497n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp,
1498 char *fp, int count)
1499{
1500 struct n_tty_data *ldata = tty->disc_data;
1501 char flag = TTY_NORMAL;
1502
1503 while (count--) {
1504 if (fp)
1505 flag = *fp++;
1506 if (likely(flag == TTY_NORMAL))
1507 put_tty_queue(*cp++, ldata);
1508 else
1509 n_tty_receive_char_flagged(tty, *cp++, flag);
1510 }
1511}
1512
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001513static void
1514n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
1515 char *fp, int count)
1516{
1517 char flag = TTY_NORMAL;
1518
1519 while (count--) {
1520 if (fp)
1521 flag = *fp++;
1522 if (likely(flag == TTY_NORMAL))
1523 n_tty_receive_char_closing(tty, *cp++);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001524 }
1525}
1526
Jiri Slaby1ed2dfe2021-05-05 11:18:57 +02001527static void n_tty_receive_buf_standard(struct tty_struct *tty,
1528 const unsigned char *cp, char *fp, int count)
Peter Hurley6baad002013-07-24 08:29:52 -04001529{
1530 struct n_tty_data *ldata = tty->disc_data;
1531 char flag = TTY_NORMAL;
1532
1533 while (count--) {
Jiri Slaby3a7d5302021-05-05 11:19:01 +02001534 unsigned char c = *cp++;
1535
Peter Hurley6baad002013-07-24 08:29:52 -04001536 if (fp)
1537 flag = *fp++;
Jiri Slaby67a620d2021-05-05 11:18:59 +02001538
1539 if (ldata->lnext) {
Jiri Slaby3a7d5302021-05-05 11:19:01 +02001540 n_tty_receive_char_lnext(tty, c, flag);
Jiri Slaby67a620d2021-05-05 11:18:59 +02001541 continue;
1542 }
1543
Peter Hurley6baad002013-07-24 08:29:52 -04001544 if (likely(flag == TTY_NORMAL)) {
Peter Hurley6baad002013-07-24 08:29:52 -04001545 if (I_ISTRIP(tty))
1546 c &= 0x7f;
1547 if (I_IUCLC(tty) && L_IEXTEN(tty))
1548 c = tolower(c);
1549 if (L_EXTPROC(tty)) {
1550 put_tty_queue(c, ldata);
1551 continue;
1552 }
Peter Hurleye60d27c2013-07-24 08:29:56 -04001553 if (!test_bit(c, ldata->char_map))
Jiri Slaby95aafe32021-05-05 11:18:58 +02001554 n_tty_receive_char(tty, c);
Jiri Slaby67a620d2021-05-05 11:18:59 +02001555 else
1556 n_tty_receive_char_special(tty, c);
Peter Hurley6baad002013-07-24 08:29:52 -04001557 } else
Jiri Slaby3a7d5302021-05-05 11:19:01 +02001558 n_tty_receive_char_flagged(tty, c, flag);
Peter Hurley6baad002013-07-24 08:29:52 -04001559 }
1560}
1561
Peter Hurley24a89d12013-06-15 09:14:15 -04001562static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1563 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001565 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001566 bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001568 if (ldata->real_raw)
1569 n_tty_receive_buf_real_raw(tty, cp, fp, count);
Peter Hurleya1dd30e2013-06-15 10:21:26 -04001570 else if (ldata->raw || (L_EXTPROC(tty) && !preops))
Peter Hurley554117bd2013-06-15 10:21:25 -04001571 n_tty_receive_buf_raw(tty, cp, fp, count);
Peter Hurleyad0cc7b2013-06-15 10:21:27 -04001572 else if (tty->closing && !L_EXTPROC(tty))
1573 n_tty_receive_buf_closing(tty, cp, fp, count);
Peter Hurley4a23a4d2013-06-15 10:21:22 -04001574 else {
Jiri Slaby1ed2dfe2021-05-05 11:18:57 +02001575 n_tty_receive_buf_standard(tty, cp, fp, count);
Peter Hurleycbfd0342013-06-15 10:04:26 -04001576
1577 flush_echoes(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001578 if (tty->ops->flush_chars)
1579 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 }
1581
Peter Hurley70aca712015-01-16 15:05:37 -05001582 if (ldata->icanon && !L_EXTPROC(tty))
1583 return;
1584
1585 /* publish read_head to consumer */
1586 smp_store_release(&ldata->commit_head, ldata->read_head);
1587
Peter Hurley33d71362016-01-09 21:45:08 -08001588 if (read_cnt(ldata)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001590 wake_up_interruptible_poll(&tty->read_wait, EPOLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001594/**
1595 * n_tty_receive_buf_common - process input
1596 * @tty: device to receive input
1597 * @cp: input chars
1598 * @fp: flags for each char (if NULL, all chars are TTY_NORMAL)
1599 * @count: number of input chars in @cp
Lee Jones171044a2020-11-04 19:35:23 +00001600 * @flow: enable flow control
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001601 *
1602 * Called by the terminal driver when a block of characters has
1603 * been received. This function must be called from soft contexts
1604 * not from interrupt context. The driver is responsible for making
1605 * calls one at a time and in order (or using flush_to_ldisc)
1606 *
1607 * Returns the # of input chars from @cp which were processed.
1608 *
1609 * In canonical mode, the maximum line length is 4096 chars (including
1610 * the line termination char); lines longer than 4096 chars are
1611 * truncated. After 4095 chars, input data is still processed but
1612 * not stored. Overflow processing ensures the tty can always
1613 * receive more input until at least one line can be read.
1614 *
1615 * In non-canonical mode, the read buffer will only accept 4095 chars;
1616 * this provides the necessary space for a newline char if the input
1617 * mode is switched to canonical.
1618 *
1619 * Note it is possible for the read buffer to _contain_ 4096 chars
1620 * in non-canonical mode: the read buffer could already contain the
1621 * maximum canon line of 4096 chars when the mode is switched to
1622 * non-canonical.
1623 *
1624 * n_tty_receive_buf()/producer path:
1625 * claims non-exclusive termios_rwsem
1626 * publishes commit_head or canon_head
1627 */
Peter Hurley5c32d122013-12-02 14:24:41 -05001628static int
1629n_tty_receive_buf_common(struct tty_struct *tty, const unsigned char *cp,
1630 char *fp, int count, int flow)
Peter Hurley24a89d12013-06-15 09:14:15 -04001631{
1632 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001633 int room, n, rcvd = 0, overflow;
Peter Hurley24a89d12013-06-15 09:14:15 -04001634
Peter Hurley9356b532013-06-15 09:14:24 -04001635 down_read(&tty->termios_rwsem);
1636
Dmitry Safonovc96cf922018-11-01 00:24:48 +00001637 do {
Peter Hurley70aca712015-01-16 15:05:37 -05001638 /*
Peter Hurley06c49f92015-01-16 15:05:38 -05001639 * When PARMRK is set, each input char may take up to 3 chars
1640 * in the read buf; reduce the buffer space avail by 3x
Peter Hurley70aca712015-01-16 15:05:37 -05001641 *
1642 * If we are doing input canonicalization, and there are no
1643 * pending newlines, let characters through without limit, so
1644 * that erase characters will be handled. Other excess
1645 * characters will be beeped.
1646 *
1647 * paired with store in *_copy_from_read_buf() -- guarantees
1648 * the consumer has loaded the data in read_buf up to the new
1649 * read_tail (so this producer will not overwrite unread data)
1650 */
1651 size_t tail = smp_load_acquire(&ldata->read_tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001652
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001653 room = N_TTY_BUF_SIZE - (ldata->read_head - tail);
Peter Hurley70aca712015-01-16 15:05:37 -05001654 if (I_PARMRK(tty))
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001655 room = (room + 2) / 3;
1656 room--;
1657 if (room <= 0) {
1658 overflow = ldata->icanon && ldata->canon_head == tail;
1659 if (overflow && room < 0)
1660 ldata->read_head--;
1661 room = overflow;
1662 ldata->no_room = flow && !room;
1663 } else
1664 overflow = 0;
Peter Hurley70aca712015-01-16 15:05:37 -05001665
Peter Hurley19e2ad62013-07-24 08:29:54 -04001666 n = min(count, room);
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001667 if (!n)
Peter Hurley19e2ad62013-07-24 08:29:54 -04001668 break;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001669
1670 /* ignore parity errors if handling overflow */
1671 if (!overflow || !fp || *fp != TTY_PARITY)
1672 __receive_buf(tty, cp, fp, n);
1673
Peter Hurley19e2ad62013-07-24 08:29:54 -04001674 cp += n;
1675 if (fp)
1676 fp += n;
1677 count -= n;
1678 rcvd += n;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00001679 } while (!test_bit(TTY_LDISC_CHANGING, &tty->flags));
Peter Hurley24a89d12013-06-15 09:14:15 -04001680
Peter Hurley19e2ad62013-07-24 08:29:54 -04001681 tty->receive_room = room;
Peter Hurleyfb5ef9e2015-01-16 15:05:39 -05001682
1683 /* Unthrottle if handling overflow on pty */
1684 if (tty->driver->type == TTY_DRIVER_TYPE_PTY) {
1685 if (overflow) {
1686 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
1687 tty_unthrottle_safe(tty);
1688 __tty_set_flow_change(tty, 0);
1689 }
1690 } else
1691 n_tty_check_throttle(tty);
1692
Peter Hurley9356b532013-06-15 09:14:24 -04001693 up_read(&tty->termios_rwsem);
1694
Peter Hurley19e2ad62013-07-24 08:29:54 -04001695 return rcvd;
Peter Hurley24a89d12013-06-15 09:14:15 -04001696}
1697
Peter Hurley5c32d122013-12-02 14:24:41 -05001698static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1699 char *fp, int count)
1700{
1701 n_tty_receive_buf_common(tty, cp, fp, count, 0);
1702}
1703
1704static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1705 char *fp, int count)
1706{
1707 return n_tty_receive_buf_common(tty, cp, fp, count, 1);
1708}
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710/**
1711 * n_tty_set_termios - termios data changed
1712 * @tty: terminal
1713 * @old: previous data
1714 *
1715 * Called by the tty layer when the user changes termios flags so
1716 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001717 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 * guaranteed that this function will not be re-entered or in progress
1719 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001720 *
Peter Hurley6a1c0682013-06-15 09:14:23 -04001721 * Locking: Caller holds tty->termios_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 */
Alan Cox4edf1822008-02-08 04:18:44 -08001723
1724static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001726 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01001727
Linus Torvalds966031f2017-12-20 17:57:06 -08001728 if (!old || (old->c_lflag ^ tty->termios.c_lflag) & (ICANON | EXTPROC)) {
Jiri Slaby3fe780b2012-10-18 22:26:40 +02001729 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
Peter Hurley4d0ed182013-12-10 17:12:02 -05001730 ldata->line_start = ldata->read_tail;
1731 if (!L_ICANON(tty) || !read_cnt(ldata)) {
1732 ldata->canon_head = ldata->read_tail;
1733 ldata->push = 0;
1734 } else {
1735 set_bit((ldata->read_head - 1) & (N_TTY_BUF_SIZE - 1),
1736 ldata->read_flags);
1737 ldata->canon_head = ldata->read_head;
1738 ldata->push = 1;
1739 }
Peter Hurley70aca712015-01-16 15:05:37 -05001740 ldata->commit_head = ldata->read_head;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001741 ldata->erasing = 0;
Peter Hurley6f9b0282013-06-15 09:14:27 -04001742 ldata->lnext = 0;
Alan Cox47afa7a2008-10-13 10:44:17 +01001743 }
1744
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001745 ldata->icanon = (L_ICANON(tty) != 0);
Peter Hurley582f5592013-05-17 12:49:48 -04001746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1748 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1749 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1750 I_PARMRK(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001751 bitmap_zero(ldata->char_map, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 if (I_IGNCR(tty) || I_ICRNL(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001754 set_bit('\r', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (I_INLCR(tty))
Peter Hurley1bb9d562013-06-15 10:21:20 -04001756 set_bit('\n', ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 if (L_ICANON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001759 set_bit(ERASE_CHAR(tty), ldata->char_map);
1760 set_bit(KILL_CHAR(tty), ldata->char_map);
1761 set_bit(EOF_CHAR(tty), ldata->char_map);
1762 set_bit('\n', ldata->char_map);
1763 set_bit(EOL_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (L_IEXTEN(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001765 set_bit(WERASE_CHAR(tty), ldata->char_map);
1766 set_bit(LNEXT_CHAR(tty), ldata->char_map);
1767 set_bit(EOL2_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (L_ECHO(tty))
1769 set_bit(REPRINT_CHAR(tty),
Peter Hurley1bb9d562013-06-15 10:21:20 -04001770 ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
1772 }
1773 if (I_IXON(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001774 set_bit(START_CHAR(tty), ldata->char_map);
1775 set_bit(STOP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 }
1777 if (L_ISIG(tty)) {
Peter Hurley1bb9d562013-06-15 10:21:20 -04001778 set_bit(INTR_CHAR(tty), ldata->char_map);
1779 set_bit(QUIT_CHAR(tty), ldata->char_map);
1780 set_bit(SUSP_CHAR(tty), ldata->char_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 }
Peter Hurley1bb9d562013-06-15 10:21:20 -04001782 clear_bit(__DISABLED_CHAR, ldata->char_map);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001783 ldata->raw = 0;
1784 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 } else {
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001786 ldata->raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1788 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1789 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001790 ldata->real_raw = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 else
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001792 ldata->real_raw = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001794 /*
1795 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1796 * been stopped by STOP_CHAR(tty) before it.
1797 */
Peter Hurleye2613be2014-02-11 16:34:55 -05001798 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
Wang YanQingdab73b42013-05-09 14:16:47 +08001799 start_tty(tty);
Peter Hurleye2613be2014-02-11 16:34:55 -05001800 process_echoes(tty);
1801 }
Wang YanQingdab73b42013-05-09 14:16:47 +08001802
Alan Coxf34d7a52008-04-30 00:54:13 -07001803 /* The termios change make the tty ready for I/O */
Kosuke Tatsukawae81107d2015-10-02 08:27:05 +00001804 wake_up_interruptible(&tty->write_wait);
1805 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
1808/**
1809 * n_tty_close - close the ldisc for this tty
1810 * @tty: device
1811 *
Alan Cox4edf1822008-02-08 04:18:44 -08001812 * Called from the terminal layer when this line discipline is
1813 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 * discipline change. The function will not be called while other
1815 * ldisc methods are in progress.
1816 */
Alan Cox4edf1822008-02-08 04:18:44 -08001817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818static void n_tty_close(struct tty_struct *tty)
1819{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001820 struct n_tty_data *ldata = tty->disc_data;
1821
Peter Hurley79901312013-03-11 16:44:23 -04001822 if (tty->link)
1823 n_tty_packet_mode_flush(tty);
1824
Yan.Gaoc9cd57b2020-12-10 10:25:07 +08001825 down_write(&tty->termios_rwsem);
Peter Hurley20bafb32013-06-15 10:21:19 -04001826 vfree(ldata);
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001827 tty->disc_data = NULL;
Yan.Gaoc9cd57b2020-12-10 10:25:07 +08001828 up_write(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
1831/**
1832 * n_tty_open - open an ldisc
1833 * @tty: terminal to open
1834 *
Alan Cox4edf1822008-02-08 04:18:44 -08001835 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 * terminal device. Can sleep. Called serialized so that no
1837 * other events will occur in parallel. No further open will occur
1838 * until a close.
1839 */
1840
1841static int n_tty_open(struct tty_struct *tty)
1842{
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001843 struct n_tty_data *ldata;
1844
Peter Hurley20bafb32013-06-15 10:21:19 -04001845 /* Currently a malloc failure here can panic */
Tetsuo Handaebec3f82018-05-26 09:53:14 +09001846 ldata = vzalloc(sizeof(*ldata));
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001847 if (!ldata)
Tetsuo Handaebec3f82018-05-26 09:53:14 +09001848 return -ENOMEM;
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001849
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001850 ldata->overrun_time = jiffies;
Jiri Slabybddc7152012-10-18 22:26:42 +02001851 mutex_init(&ldata->atomic_read_lock);
1852 mutex_init(&ldata->output_lock);
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001853
Jiri Slaby70ece7a2012-10-18 22:26:38 +02001854 tty->disc_data = ldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 tty->closing = 0;
Peter Hurleyb66f4fa2013-03-11 16:44:32 -04001856 /* indicate buffer work may resume */
1857 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1858 n_tty_set_termios(tty, NULL);
1859 tty_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 return 0;
1861}
1862
Peter Hurleyeafbe672013-12-02 14:24:45 -05001863static inline int input_available_p(struct tty_struct *tty, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001865 struct n_tty_data *ldata = tty->disc_data;
Peter Hurleya5934802014-02-11 11:49:58 -05001866 int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001867
Peter Hurley25e8d0e2014-02-11 18:55:30 -05001868 if (ldata->icanon && !L_EXTPROC(tty))
1869 return ldata->canon_head != ldata->read_tail;
1870 else
Peter Hurley70aca712015-01-16 15:05:37 -05001871 return ldata->commit_head - ldata->read_tail >= amt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
1874/**
Thorsten Wißmannbbd20752011-12-08 17:47:33 +01001875 * copy_from_read_buf - copy read data directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 * @tty: terminal device
Linus Torvalds3b830a92021-01-18 13:31:30 -08001877 * @kbp: data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 * @nr: size of data
1879 *
Alan Cox11a96d12008-10-13 10:46:24 +01001880 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds3b830a92021-01-18 13:31:30 -08001881 * ICANON is off; it copies characters straight from the tty queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 *
Jiri Slabybddc7152012-10-18 22:26:42 +02001883 * Called under the ldata->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 *
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001885 * Returns true if it successfully copied data, but there is still
1886 * more data to be had.
1887 *
Peter Hurley6d76bd22013-06-15 09:14:26 -04001888 * n_tty_read()/consumer path:
1889 * caller holds non-exclusive termios_rwsem
1890 * read_tail published
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 */
Alan Cox4edf1822008-02-08 04:18:44 -08001892
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001893static bool copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds3b830a92021-01-18 13:31:30 -08001894 unsigned char **kbp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 size_t *nr)
1896
1897{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02001898 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 size_t n;
Jiri Slaby3fa10cc2012-04-26 20:13:00 +02001900 bool is_eof;
Peter Hurley70aca712015-01-16 15:05:37 -05001901 size_t head = smp_load_acquire(&ldata->commit_head);
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001902 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Peter Hurley70aca712015-01-16 15:05:37 -05001904 n = min(head - ldata->read_tail, N_TTY_BUF_SIZE - tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 n = min(*nr, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (n) {
Greg KHb97b3d92018-10-04 11:06:14 -07001907 unsigned char *from = read_buf_addr(ldata, tail);
Linus Torvalds3b830a92021-01-18 13:31:30 -08001908 memcpy(*kbp, from, n);
Peter Hurleye661cf72015-11-27 14:11:03 -05001909 is_eof = n == 1 && *from == EOF_CHAR(tty);
Peter Hurley309426a2016-01-09 22:55:27 -08001910 tty_audit_add_data(tty, from, n);
Greg KHb97b3d92018-10-04 11:06:14 -07001911 zero_buffer(tty, from, n);
Peter Hurley70aca712015-01-16 15:05:37 -05001912 smp_store_release(&ldata->read_tail, ldata->read_tail + n);
hyc@symas.com26df6d12010-06-22 10:14:49 -07001913 /* Turn single EOF into zero-length read */
Peter Hurley70aca712015-01-16 15:05:37 -05001914 if (L_EXTPROC(tty) && ldata->icanon && is_eof &&
1915 (head == ldata->read_tail))
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001916 return false;
Linus Torvalds3b830a92021-01-18 13:31:30 -08001917 *kbp += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 *nr -= n;
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001919
1920 /* If we have more to copy, let the caller know */
1921 return head != ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08001923 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924}
1925
Peter Hurley88bb0de2013-06-15 09:14:16 -04001926/**
Peter Hurley32f13522013-06-15 09:14:17 -04001927 * canon_copy_from_read_buf - copy read data in canonical mode
Peter Hurley88bb0de2013-06-15 09:14:16 -04001928 * @tty: terminal device
Linus Torvalds3b830a92021-01-18 13:31:30 -08001929 * @kbp: data
Peter Hurley88bb0de2013-06-15 09:14:16 -04001930 * @nr: size of data
1931 *
1932 * Helper function for n_tty_read. It is only called when ICANON is on;
Peter Hurley32f13522013-06-15 09:14:17 -04001933 * it copies one line of input up to and including the line-delimiting
Linus Torvalds3b830a92021-01-18 13:31:30 -08001934 * character into the result buffer.
Peter Hurley88bb0de2013-06-15 09:14:16 -04001935 *
Peter Hurley4d0ed182013-12-10 17:12:02 -05001936 * NB: When termios is changed from non-canonical to canonical mode and
1937 * the read buffer contains data, n_tty_set_termios() simulates an EOF
1938 * push (as if C-d were input) _without_ the DISABLED_CHAR in the buffer.
1939 * This causes data already processed as input to be immediately available
1940 * as input although a newline has not been received.
1941 *
Peter Hurley88bb0de2013-06-15 09:14:16 -04001942 * Called under the atomic_read_lock mutex
Peter Hurley6d76bd22013-06-15 09:14:26 -04001943 *
1944 * n_tty_read()/consumer path:
1945 * caller holds non-exclusive termios_rwsem
1946 * read_tail published
Peter Hurley88bb0de2013-06-15 09:14:16 -04001947 */
1948
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001949static bool canon_copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds64a698922021-01-19 13:46:28 -08001950 unsigned char **kbp,
1951 size_t *nr)
Peter Hurley88bb0de2013-06-15 09:14:16 -04001952{
1953 struct n_tty_data *ldata = tty->disc_data;
Peter Hurley32f13522013-06-15 09:14:17 -04001954 size_t n, size, more, c;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001955 size_t eol;
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001956 size_t tail, canon_head;
Linus Torvalds3b830a92021-01-18 13:31:30 -08001957 int found = 0;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001958
1959 /* N.B. avoid overrun if nr == 0 */
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001960 if (!*nr)
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001961 return false;
Peter Hurley88bb0de2013-06-15 09:14:16 -04001962
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08001963 canon_head = smp_load_acquire(&ldata->canon_head);
1964 n = min(*nr + 1, canon_head - ldata->read_tail);
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001965
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001966 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
Peter Hurley32f13522013-06-15 09:14:17 -04001967 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
1968
Peter Hurleybc5a5e32013-06-15 09:14:21 -04001969 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
Peter Hurley32f13522013-06-15 09:14:17 -04001970 __func__, *nr, tail, n, size);
1971
1972 eol = find_next_bit(ldata->read_flags, size, tail);
1973 more = n - (size - tail);
1974 if (eol == N_TTY_BUF_SIZE && more) {
1975 /* scan wrapped without finding set bit */
1976 eol = find_next_bit(ldata->read_flags, more, 0);
Peter Hurleyb985e9e2015-11-27 14:11:04 -05001977 found = eol != more;
1978 } else
1979 found = eol != size;
Peter Hurley32f13522013-06-15 09:14:17 -04001980
Peter Hurleyc77569d2013-11-22 07:16:25 -05001981 n = eol - tail;
Mark Tomlinsonda555db2015-05-18 12:01:48 +12001982 if (n > N_TTY_BUF_SIZE)
1983 n += N_TTY_BUF_SIZE;
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001984 c = n + found;
Peter Hurley32f13522013-06-15 09:14:17 -04001985
Peter Hurleyac8f3bf2015-11-27 13:59:20 -05001986 if (!found || read_buf(ldata, eol) != __DISABLED_CHAR) {
1987 c = min(*nr, c);
1988 n = c;
Peter Hurley40d5e092013-06-15 10:21:17 -04001989 }
Peter Hurley32f13522013-06-15 09:14:17 -04001990
Peter Hurley679e7c22015-11-27 14:11:02 -05001991 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu tail:%zu more:%zu\n",
1992 __func__, eol, found, n, c, tail, more);
Peter Hurley32f13522013-06-15 09:14:17 -04001993
Linus Torvalds3b830a92021-01-18 13:31:30 -08001994 tty_copy(tty, *kbp, tail, n);
1995 *kbp += n;
Peter Hurley32f13522013-06-15 09:14:17 -04001996 *nr -= n;
1997
Peter Hurleya73d3d62013-06-15 09:14:25 -04001998 if (found)
Peter Hurley6d76bd22013-06-15 09:14:26 -04001999 clear_bit(eol, ldata->read_flags);
Peter Hurley70aca712015-01-16 15:05:37 -05002000 smp_store_release(&ldata->read_tail, ldata->read_tail + c);
Peter Hurley88bb0de2013-06-15 09:14:16 -04002001
Peter Hurley40d5e092013-06-15 10:21:17 -04002002 if (found) {
Peter Hurley4d0ed182013-12-10 17:12:02 -05002003 if (!ldata->push)
2004 ldata->line_start = ldata->read_tail;
2005 else
2006 ldata->push = 0;
Peter Hurleyb50819f2016-01-09 22:55:30 -08002007 tty_audit_push();
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002008 return false;
Peter Hurley40d5e092013-06-15 10:21:17 -04002009 }
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002010
2011 /* No EOL found - do a continuation retry if there is more data */
2012 return ldata->read_tail != canon_head;
Peter Hurley88bb0de2013-06-15 09:14:16 -04002013}
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015/**
2016 * job_control - check job control
2017 * @tty: tty
2018 * @file: file handle
2019 *
2020 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08002021 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07002023 *
Peter Hurley01a5e442013-03-06 08:38:20 -05002024 * Locking: redirected write test is safe
2025 * current->signal->tty check is safe
2026 * ctrl_lock to safely reference tty->pgrp
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 */
Alan Cox4edf1822008-02-08 04:18:44 -08002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029static int job_control(struct tty_struct *tty, struct file *file)
2030{
2031 /* Job control check -- must be done at start and after
2032 every sleep (POSIX.1 7.1.1.4). */
2033 /* NOTE: not yet done after every sleep pending a thorough
2034 check of the logic of this change. -- jlc */
2035 /* don't stop on /dev/console */
Sami Tolvanen9f12e372021-01-25 11:09:25 -08002036 if (file->f_op->write_iter == redirected_tty_write)
Peter Hurley01a5e442013-03-06 08:38:20 -05002037 return 0;
2038
Peter Hurley2812d9e2015-10-10 20:28:42 -04002039 return __tty_check_change(tty, SIGTTIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040}
Alan Cox4edf1822008-02-08 04:18:44 -08002041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043/**
Alan Cox11a96d12008-10-13 10:46:24 +01002044 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 * @tty: tty device
2046 * @file: file object
2047 * @buf: userspace buffer pointer
2048 * @nr: size of I/O
2049 *
2050 * Perform reads for the line discipline. We are guaranteed that the
2051 * line discipline will not be closed under us but we may get multiple
2052 * parallel readers and must handle this ourselves. We may also get
2053 * a hangup. Always called in user context, may sleep.
2054 *
2055 * This code must be sure never to sleep through a hangup.
Peter Hurley6d76bd22013-06-15 09:14:26 -04002056 *
2057 * n_tty_read()/consumer path:
2058 * claims non-exclusive termios_rwsem
2059 * publishes read_tail
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 */
Alan Cox4edf1822008-02-08 04:18:44 -08002061
Alan Cox11a96d12008-10-13 10:46:24 +01002062static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds3b830a92021-01-18 13:31:30 -08002063 unsigned char *kbuf, size_t nr,
2064 void **cookie, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002066 struct n_tty_data *ldata = tty->disc_data;
Linus Torvalds3b830a92021-01-18 13:31:30 -08002067 unsigned char *kb = kbuf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002068 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002069 int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 int minimum, time;
2071 ssize_t retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 long timeout;
Alan Cox04f378b2008-04-30 00:53:29 -07002073 int packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002074 size_t tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002076 /*
2077 * Is this a continuation of a read started earler?
2078 *
2079 * If so, we still hold the atomic_read_lock and the
2080 * termios_rwsem, and can just continue to copy data.
2081 */
2082 if (*cookie) {
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002083 if (ldata->icanon && !L_EXTPROC(tty)) {
2084 if (canon_copy_from_read_buf(tty, &kb, &nr))
2085 return kb - kbuf;
2086 } else {
2087 if (copy_from_read_buf(tty, &kb, &nr))
2088 return kb - kbuf;
2089 }
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002090
2091 /* No more data - release locks and stop retries */
2092 n_tty_kick_worker(tty);
2093 n_tty_check_unthrottle(tty);
2094 up_read(&tty->termios_rwsem);
2095 mutex_unlock(&ldata->atomic_read_lock);
2096 *cookie = NULL;
2097 return kb - kbuf;
2098 }
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08002101 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08002103
Peter Hurleyaefceaf2013-08-11 08:04:23 -04002104 /*
2105 * Internal serialization of reads.
2106 */
2107 if (file->f_flags & O_NONBLOCK) {
2108 if (!mutex_trylock(&ldata->atomic_read_lock))
2109 return -EAGAIN;
2110 } else {
2111 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
2112 return -ERESTARTSYS;
2113 }
2114
Peter Hurley9356b532013-06-15 09:14:24 -04002115 down_read(&tty->termios_rwsem);
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 minimum = time = 0;
2118 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002119 if (!ldata->icanon) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 minimum = MIN_CHAR(tty);
2121 if (minimum) {
Peter Hurleya6e54312013-06-15 07:28:29 -04002122 time = (HZ / 10) * TIME_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 } else {
Peter Hurleya6e54312013-06-15 07:28:29 -04002124 timeout = (HZ / 10) * TIME_CHAR(tty);
Peter Hurley33d71362016-01-09 21:45:08 -08002125 minimum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
2127 }
2128
Alan Cox04f378b2008-04-30 00:53:29 -07002129 packet = tty->packet;
Peter Hurley2c5dc462015-01-16 15:05:34 -05002130 tail = ldata->read_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 while (nr) {
2134 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07002135 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 unsigned char cs;
Linus Torvalds3b830a92021-01-18 13:31:30 -08002137 if (kb != kbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 break;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002139 spin_lock_irq(&tty->link->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 cs = tty->link->ctrl_status;
2141 tty->link->ctrl_status = 0;
Peter Hurley6054c16e2014-10-16 15:33:25 -04002142 spin_unlock_irq(&tty->link->ctrl_lock);
Linus Torvalds3b830a92021-01-18 13:31:30 -08002143 *kb++ = cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 nr--;
2145 break;
2146 }
Alan Cox4edf1822008-02-08 04:18:44 -08002147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 if (!input_available_p(tty, 0)) {
Peter Hurley52bce7f2014-11-05 12:13:05 -05002149 up_read(&tty->termios_rwsem);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002150 tty_buffer_flush_work(tty->port);
Peter Hurley52bce7f2014-11-05 12:13:05 -05002151 down_read(&tty->termios_rwsem);
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002152 if (!input_available_p(tty, 0)) {
2153 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
2154 retval = -EIO;
2155 break;
2156 }
2157 if (tty_hung_up_p(file))
2158 break;
Tejun Heo28b0f8a2018-02-13 07:38:08 -08002159 /*
2160 * Abort readers for ttys which never actually
2161 * get hung up. See __tty_hangup().
2162 */
2163 if (test_bit(TTY_HUPPING, &tty->flags))
2164 break;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002165 if (!timeout)
2166 break;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00002167 if (tty_io_nonblock(tty, file)) {
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002168 retval = -EAGAIN;
2169 break;
2170 }
2171 if (signal_pending(current)) {
2172 retval = -ERESTARTSYS;
2173 break;
2174 }
2175 up_read(&tty->termios_rwsem);
2176
2177 timeout = wait_woken(&wait, TASK_INTERRUPTIBLE,
2178 timeout);
2179
2180 down_read(&tty->termios_rwsem);
2181 continue;
2182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184
Jiri Slaby53c5ee22012-10-18 22:26:39 +02002185 if (ldata->icanon && !L_EXTPROC(tty)) {
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002186 if (canon_copy_from_read_buf(tty, &kb, &nr))
2187 goto more_to_be_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 } else {
Peter Hurley95ea90d2014-10-16 15:33:30 -04002189 /* Deal with packet mode. */
Linus Torvalds3b830a92021-01-18 13:31:30 -08002190 if (packet && kb == kbuf) {
2191 *kb++ = TIOCPKT_DATA;
Peter Hurley95ea90d2014-10-16 15:33:30 -04002192 nr--;
2193 }
2194
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002195 /*
2196 * Copy data, and if there is more to be had
2197 * and we have nothing more to wait for, then
2198 * let's mark us for retries.
2199 *
2200 * NOTE! We return here with both the termios_sem
2201 * and atomic_read_lock still held, the retries
2202 * will release them when done.
2203 */
2204 if (copy_from_read_buf(tty, &kb, &nr) && kb - kbuf >= minimum) {
Linus Torvaldsd7fe75c2021-01-20 15:43:38 -08002205more_to_be_read:
Linus Torvalds15ea8ae2021-01-19 18:14:20 -08002206 remove_wait_queue(&tty->read_wait, &wait);
2207 *cookie = cookie;
2208 return kb - kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 }
2210 }
2211
Peter Hurley6367ca72013-06-15 09:14:33 -04002212 n_tty_check_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Linus Torvalds3b830a92021-01-18 13:31:30 -08002214 if (kb - kbuf >= minimum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 break;
2216 if (time)
2217 timeout = time;
2218 }
Peter Hurley2c5dc462015-01-16 15:05:34 -05002219 if (tail != ldata->read_tail)
2220 n_tty_kick_worker(tty);
Peter Hurley42458f42013-11-07 13:59:46 -05002221 up_read(&tty->termios_rwsem);
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 remove_wait_queue(&tty->read_wait, &wait);
Peter Hurleyaebf04532013-11-07 14:01:57 -05002224 mutex_unlock(&ldata->atomic_read_lock);
2225
Linus Torvalds3b830a92021-01-18 13:31:30 -08002226 if (kb - kbuf)
2227 retval = kb - kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229 return retval;
2230}
2231
2232/**
Alan Cox11a96d12008-10-13 10:46:24 +01002233 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 * @tty: tty device
2235 * @file: file object
2236 * @buf: userspace buffer pointer
2237 * @nr: size of I/O
2238 *
Joe Petersona88a69c2009-01-02 13:40:53 +00002239 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00002241 * and other such events. Since the receive code will echo characters,
2242 * thus calling driver write methods, the output_lock is used in
2243 * the output processing functions called here as well as in the
2244 * echo processing function to protect the column state and space
2245 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 *
2247 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00002248 *
2249 * Locking: output_lock to protect column state and space left
2250 * (note that the process_output*() functions take this
2251 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 */
Alan Cox4edf1822008-02-08 04:18:44 -08002253
Alan Cox11a96d12008-10-13 10:46:24 +01002254static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00002255 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 const unsigned char *b = buf;
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002258 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 int c;
2260 ssize_t retval = 0;
2261
2262 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
Sami Tolvanen9f12e372021-01-25 11:09:25 -08002263 if (L_TOSTOP(tty) && file->f_op->write_iter != redirected_tty_write) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 retval = tty_check_change(tty);
2265 if (retval)
2266 return retval;
2267 }
2268
Peter Hurley9356b532013-06-15 09:14:24 -04002269 down_read(&tty->termios_rwsem);
2270
Joe Petersona88a69c2009-01-02 13:40:53 +00002271 /* Write out any echoed characters that are still pending */
2272 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00002273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 add_wait_queue(&tty->write_wait, &wait);
2275 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 if (signal_pending(current)) {
2277 retval = -ERESTARTSYS;
2278 break;
2279 }
2280 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2281 retval = -EIO;
2282 break;
2283 }
Peter Hurley582f5592013-05-17 12:49:48 -04002284 if (O_OPOST(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00002286 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if (num < 0) {
2288 if (num == -EAGAIN)
2289 break;
2290 retval = num;
2291 goto break_out;
2292 }
2293 b += num;
2294 nr -= num;
2295 if (nr == 0)
2296 break;
2297 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00002298 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 break;
2300 b++; nr--;
2301 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002302 if (tty->ops->flush_chars)
2303 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 } else {
Peter Hurley42910862014-05-03 14:04:59 +02002305 struct n_tty_data *ldata = tty->disc_data;
2306
Roman Zippeld6afe272005-07-07 17:56:55 -07002307 while (nr > 0) {
Peter Hurley42910862014-05-03 14:04:59 +02002308 mutex_lock(&ldata->output_lock);
Alan Coxf34d7a52008-04-30 00:54:13 -07002309 c = tty->ops->write(tty, b, nr);
Peter Hurley42910862014-05-03 14:04:59 +02002310 mutex_unlock(&ldata->output_lock);
Roman Zippeld6afe272005-07-07 17:56:55 -07002311 if (c < 0) {
2312 retval = c;
2313 goto break_out;
2314 }
2315 if (!c)
2316 break;
2317 b += c;
2318 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
2321 if (!nr)
2322 break;
Dmitry Safonovc96cf922018-11-01 00:24:48 +00002323 if (tty_io_nonblock(tty, file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 retval = -EAGAIN;
2325 break;
2326 }
Peter Hurley9356b532013-06-15 09:14:24 -04002327 up_read(&tty->termios_rwsem);
2328
Peter Zijlstra97d9e282014-09-24 10:18:51 +02002329 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Peter Hurley9356b532013-06-15 09:14:24 -04002330
2331 down_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333break_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 remove_wait_queue(&tty->write_wait, &wait);
Peter Hurley87108bc2016-01-09 21:45:14 -08002335 if (nr && tty->fasync)
Thomas Pfaffff8cb0f2009-01-02 13:47:13 +00002336 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Peter Hurley9356b532013-06-15 09:14:24 -04002337 up_read(&tty->termios_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 return (b - buf) ? b - buf : retval;
2339}
2340
2341/**
Alan Cox11a96d12008-10-13 10:46:24 +01002342 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 * @tty: terminal device
2344 * @file: file accessing it
2345 * @wait: poll table
2346 *
2347 * Called when the line discipline is asked to poll() for data or
2348 * for special events. This code is not serialized with respect to
2349 * other events save open/close.
2350 *
2351 * This code must be sure never to sleep through a hangup.
2352 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 */
Alan Cox4edf1822008-02-08 04:18:44 -08002354
Al Viroafc9a422017-07-03 06:39:46 -04002355static __poll_t n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002356 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
Al Viroafc9a422017-07-03 06:39:46 -04002358 __poll_t mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 poll_wait(file, &tty->read_wait, wait);
2361 poll_wait(file, &tty->write_wait, wait);
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002362 if (input_available_p(tty, 1))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002363 mask |= EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002364 else {
2365 tty_buffer_flush_work(tty->port);
2366 if (input_available_p(tty, 1))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002367 mask |= EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002368 }
Francesco Ruggeric4dc3042014-10-10 13:09:53 -07002369 if (tty->packet && tty->link->ctrl_status)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002370 mask |= EPOLLPRI | EPOLLIN | EPOLLRDNORM;
Brian Bloniarz0f40fbb2016-03-06 13:16:30 -08002371 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002372 mask |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 if (tty_hung_up_p(file))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002374 mask |= EPOLLHUP;
Alan Coxf34d7a52008-04-30 00:54:13 -07002375 if (tty->ops->write && !tty_is_writelocked(tty) &&
2376 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2377 tty_write_room(tty) > 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002378 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 return mask;
2380}
2381
Jiri Slaby57c94122012-10-18 22:26:43 +02002382static unsigned long inq_canon(struct n_tty_data *ldata)
Alan Cox47afa7a2008-10-13 10:44:17 +01002383{
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002384 size_t nr, head, tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002385
Peter Hurleya73d3d62013-06-15 09:14:25 -04002386 if (ldata->canon_head == ldata->read_tail)
Alan Cox47afa7a2008-10-13 10:44:17 +01002387 return 0;
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002388 head = ldata->canon_head;
2389 tail = ldata->read_tail;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002390 nr = head - tail;
Alan Cox47afa7a2008-10-13 10:44:17 +01002391 /* Skip EOF-chars.. */
Tetsuo Handa3d63b7e2018-05-26 09:53:13 +09002392 while (MASK(head) != MASK(tail)) {
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002393 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2394 read_buf(ldata, tail) == __DISABLED_CHAR)
Alan Cox47afa7a2008-10-13 10:44:17 +01002395 nr--;
Peter Hurleybc5a5e32013-06-15 09:14:21 -04002396 tail++;
Alan Cox47afa7a2008-10-13 10:44:17 +01002397 }
2398 return nr;
2399}
2400
2401static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2402 unsigned int cmd, unsigned long arg)
2403{
Jiri Slabyba2e68a2012-10-18 22:26:41 +02002404 struct n_tty_data *ldata = tty->disc_data;
Alan Cox47afa7a2008-10-13 10:44:17 +01002405 int retval;
2406
2407 switch (cmd) {
2408 case TIOCOUTQ:
2409 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2410 case TIOCINQ:
Peter Hurley6d76bd22013-06-15 09:14:26 -04002411 down_write(&tty->termios_rwsem);
Linus Torvalds966031f2017-12-20 17:57:06 -08002412 if (L_ICANON(tty) && !L_EXTPROC(tty))
Jiri Slaby57c94122012-10-18 22:26:43 +02002413 retval = inq_canon(ldata);
Peter Hurley6d76bd22013-06-15 09:14:26 -04002414 else
2415 retval = read_cnt(ldata);
2416 up_write(&tty->termios_rwsem);
Alan Cox47afa7a2008-10-13 10:44:17 +01002417 return put_user(retval, (unsigned int __user *) arg);
2418 default:
2419 return n_tty_ioctl_helper(tty, file, cmd, arg);
2420 }
2421}
2422
Peter Hurley27228732016-01-09 21:35:19 -08002423static struct tty_ldisc_ops n_tty_ops = {
Jiri Slaby5e30d3b2021-03-02 07:21:39 +01002424 .owner = THIS_MODULE,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002425 .name = "n_tty",
2426 .open = n_tty_open,
2427 .close = n_tty_close,
2428 .flush_buffer = n_tty_flush_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002429 .read = n_tty_read,
2430 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002431 .ioctl = n_tty_ioctl,
2432 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002433 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002434 .receive_buf = n_tty_receive_buf,
Peter Hurleyf6c8dbe2013-06-15 07:28:28 -04002435 .write_wakeup = n_tty_write_wakeup,
Peter Hurley24a89d12013-06-15 09:14:15 -04002436 .receive_buf2 = n_tty_receive_buf2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437};
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002438
2439/**
2440 * n_tty_inherit_ops - inherit N_TTY methods
2441 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2442 *
Peter Hurley27228732016-01-09 21:35:19 -08002443 * Enables a 'subclass' line discipline to 'inherit' N_TTY methods.
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002444 */
2445
2446void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2447{
Peter Hurley27228732016-01-09 21:35:19 -08002448 *ops = n_tty_ops;
Rodolfo Giometti572b9ad2010-03-10 15:23:46 -08002449 ops->owner = NULL;
2450 ops->refcount = ops->flags = 0;
2451}
2452EXPORT_SYMBOL_GPL(n_tty_inherit_ops);
Peter Hurley27228732016-01-09 21:35:19 -08002453
2454void __init n_tty_init(void)
2455{
2456 tty_register_ldisc(N_TTY, &n_tty_ops);
2457}