blob: a223823544bfe33c2f325cb7b8d0fbb3629626fa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * n_tty.c --- implements the N_TTY line discipline.
Alan Cox4edf1822008-02-08 04:18:44 -08003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This code used to be in tty_io.c, but things are getting hairy
5 * enough that it made sense to split things off. (The N_TTY
6 * processing has changed so much that it's hardly recognizable,
7 * anyway...)
8 *
9 * Note that the open routine for N_TTY is guaranteed never to return
10 * an error. This is because Linux will fall back to setting a line
Alan Cox4edf1822008-02-08 04:18:44 -080011 * to N_TTY if it can not switch to any other line discipline.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * Written by Theodore Ts'o, Copyright 1994.
Alan Cox4edf1822008-02-08 04:18:44 -080014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * This file also contains code originally written by Linus Torvalds,
16 * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
Alan Cox4edf1822008-02-08 04:18:44 -080017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * This file may be redistributed under the terms of the GNU General Public
19 * License.
20 *
21 * Reduced memory usage for older ARM systems - Russell King.
22 *
Alan Cox4edf1822008-02-08 04:18:44 -080023 * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * the patch by Andrew J. Kroll <ag784@freenet.buffalo.edu>
25 * who actually finally proved there really was a race.
26 *
27 * 2002/03/18 Implemented n_tty_wakeup to send SIGIO POLL_OUTs to
28 * waiting writing processes-Sapan Bhatia <sapan@corewars.org>.
Alan Cox11a96d12008-10-13 10:46:24 +010029 * Also fixed a bug in BLOCKING mode where n_tty_write returns
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * EAGAIN
31 */
32
33#include <linux/types.h>
34#include <linux/major.h>
35#include <linux/errno.h>
36#include <linux/signal.h>
37#include <linux/fcntl.h>
38#include <linux/sched.h>
39#include <linux/interrupt.h>
40#include <linux/tty.h>
41#include <linux/timer.h>
42#include <linux/ctype.h>
43#include <linux/mm.h>
44#include <linux/string.h>
45#include <linux/slab.h>
46#include <linux/poll.h>
47#include <linux/bitops.h>
Miloslav Trmac522ed772007-07-15 23:40:56 -070048#include <linux/audit.h>
49#include <linux/file.h>
Alan Cox300a6202009-01-02 13:41:04 +000050#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/system.h>
53
54/* number of characters left in xmit buffer before select has we have room */
55#define WAKEUP_CHARS 256
56
57/*
58 * This defines the low- and high-watermarks for throttling and
59 * unthrottling the TTY driver. These watermarks are used for
60 * controlling the space in the read buffer.
61 */
62#define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
63#define TTY_THRESHOLD_UNTHROTTLE 128
64
Joe Petersona88a69c2009-01-02 13:40:53 +000065/*
66 * Special byte codes used in the echo buffer to represent operations
67 * or special handling of characters. Bytes in the echo buffer that
68 * are not part of such special blocks are treated as normal character
69 * codes.
70 */
71#define ECHO_OP_START 0xff
72#define ECHO_OP_MOVE_BACK_COL 0x80
73#define ECHO_OP_SET_CANON_COL 0x81
74#define ECHO_OP_ERASE_TAB 0x82
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static inline unsigned char *alloc_buf(void)
77{
Al Virob4e3ca12005-10-21 03:22:34 -040078 gfp_t prio = in_interrupt() ? GFP_ATOMIC : GFP_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 if (PAGE_SIZE != N_TTY_BUF_SIZE)
81 return kmalloc(N_TTY_BUF_SIZE, prio);
82 else
83 return (unsigned char *)__get_free_page(prio);
84}
85
86static inline void free_buf(unsigned char *buf)
87{
88 if (PAGE_SIZE != N_TTY_BUF_SIZE)
89 kfree(buf);
90 else
91 free_page((unsigned long) buf);
92}
93
Miloslav Trmac522ed772007-07-15 23:40:56 -070094static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
95 unsigned char __user *ptr)
96{
97 tty_audit_add_data(tty, &x, 1);
98 return put_user(x, ptr);
99}
100
Alan Cox33f0f882006-01-09 20:54:13 -0800101/**
102 * n_tty_set__room - receive space
103 * @tty: terminal
104 *
105 * Called by the driver to find out how much data it is
106 * permitted to feed to the line discipline without any being lost
107 * and thus to manage flow control. Not serialized. Answers for the
108 * "instant".
109 */
110
111static void n_tty_set_room(struct tty_struct *tty)
112{
Alan Cox17b82062008-10-13 10:45:06 +0100113 /* tty->read_cnt is not read locked ? */
Alan Cox33f0f882006-01-09 20:54:13 -0800114 int left = N_TTY_BUF_SIZE - tty->read_cnt - 1;
115
116 /*
117 * If we are doing input canonicalization, and there are no
118 * pending newlines, let characters through without limit, so
119 * that erase characters will be handled. Other excess
120 * characters will be beeped.
121 */
122 if (left <= 0)
123 left = tty->icanon && !tty->canon_data;
124 tty->receive_room = left;
125}
126
127static void put_tty_queue_nolock(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 if (tty->read_cnt < N_TTY_BUF_SIZE) {
130 tty->read_buf[tty->read_head] = c;
131 tty->read_head = (tty->read_head + 1) & (N_TTY_BUF_SIZE-1);
132 tty->read_cnt++;
133 }
134}
135
Alan Cox17b82062008-10-13 10:45:06 +0100136/**
137 * put_tty_queue - add character to tty
138 * @c: character
139 * @tty: tty device
140 *
141 * Add a character to the tty read_buf queue. This is done under the
142 * read_lock to serialize character addition and also to protect us
143 * against parallel reads or flushes
144 */
145
Alan Cox33f0f882006-01-09 20:54:13 -0800146static void put_tty_queue(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 unsigned long flags;
149 /*
150 * The problem of stomping on the buffers ends here.
151 * Why didn't anyone see this one coming? --AJK
152 */
153 spin_lock_irqsave(&tty->read_lock, flags);
154 put_tty_queue_nolock(c, tty);
155 spin_unlock_irqrestore(&tty->read_lock, flags);
156}
157
158/**
159 * check_unthrottle - allow new receive data
160 * @tty; tty device
161 *
Alan Cox17b82062008-10-13 10:45:06 +0100162 * Check whether to call the driver unthrottle functions
163 *
Ingo Molnar70522e12006-03-23 03:00:31 -0800164 * Can sleep, may be called under the atomic_read_lock mutex but
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * this is not guaranteed.
166 */
Alan Cox4edf1822008-02-08 04:18:44 -0800167static void check_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Alan Cox39c2e602008-04-30 00:54:18 -0700169 if (tty->count)
170 tty_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173/**
174 * reset_buffer_flags - reset buffer state
175 * @tty: terminal to reset
176 *
Alan Cox4edf1822008-02-08 04:18:44 -0800177 * Reset the read buffer counters, clear the flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * and make sure the driver is unthrottled. Called
179 * from n_tty_open() and n_tty_flush_buffer().
Alan Cox17b82062008-10-13 10:45:06 +0100180 *
181 * Locking: tty_read_lock for read fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static void reset_buffer_flags(struct tty_struct *tty)
185{
186 unsigned long flags;
187
188 spin_lock_irqsave(&tty->read_lock, flags);
189 tty->read_head = tty->read_tail = tty->read_cnt = 0;
190 spin_unlock_irqrestore(&tty->read_lock, flags);
Joe Petersona88a69c2009-01-02 13:40:53 +0000191
192 mutex_lock(&tty->echo_lock);
193 tty->echo_pos = tty->echo_cnt = tty->echo_overrun = 0;
194 mutex_unlock(&tty->echo_lock);
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 tty->canon_head = tty->canon_data = tty->erasing = 0;
197 memset(&tty->read_flags, 0, sizeof tty->read_flags);
Alan Cox33f0f882006-01-09 20:54:13 -0800198 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 check_unthrottle(tty);
200}
201
202/**
203 * n_tty_flush_buffer - clean input queue
204 * @tty: terminal device
205 *
206 * Flush the input buffer. Called when the line discipline is
207 * being closed, when the tty layer wants the buffer flushed (eg
208 * at hangup) or when the N_TTY line discipline internally has to
209 * clean the pending queue (for example some signals).
210 *
Alan Cox17b82062008-10-13 10:45:06 +0100211 * Locking: ctrl_lock, read_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 */
Alan Cox4edf1822008-02-08 04:18:44 -0800213
214static void n_tty_flush_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Alan Cox04f378b2008-04-30 00:53:29 -0700216 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /* clear everything and unthrottle the driver */
218 reset_buffer_flags(tty);
Alan Cox4edf1822008-02-08 04:18:44 -0800219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (!tty->link)
221 return;
222
Alan Cox04f378b2008-04-30 00:53:29 -0700223 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (tty->link->packet) {
225 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
226 wake_up_interruptible(&tty->link->read_wait);
227 }
Alan Cox04f378b2008-04-30 00:53:29 -0700228 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231/**
232 * n_tty_chars_in_buffer - report available bytes
233 * @tty: tty device
234 *
235 * Report the number of characters buffered to be delivered to user
Alan Cox4edf1822008-02-08 04:18:44 -0800236 * at this instant in time.
Alan Cox17b82062008-10-13 10:45:06 +0100237 *
238 * Locking: read_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 */
Alan Cox4edf1822008-02-08 04:18:44 -0800240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
242{
243 unsigned long flags;
244 ssize_t n = 0;
245
246 spin_lock_irqsave(&tty->read_lock, flags);
247 if (!tty->icanon) {
248 n = tty->read_cnt;
249 } else if (tty->canon_data) {
250 n = (tty->canon_head > tty->read_tail) ?
251 tty->canon_head - tty->read_tail :
252 tty->canon_head + (N_TTY_BUF_SIZE - tty->read_tail);
253 }
254 spin_unlock_irqrestore(&tty->read_lock, flags);
255 return n;
256}
257
258/**
259 * is_utf8_continuation - utf8 multibyte check
260 * @c: byte to check
261 *
262 * Returns true if the utf8 character 'c' is a multibyte continuation
263 * character. We use this to correctly compute the on screen size
264 * of the character when printing
265 */
Alan Cox4edf1822008-02-08 04:18:44 -0800266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267static inline int is_utf8_continuation(unsigned char c)
268{
269 return (c & 0xc0) == 0x80;
270}
271
272/**
273 * is_continuation - multibyte check
274 * @c: byte to check
275 *
276 * Returns true if the utf8 character 'c' is a multibyte continuation
277 * character and the terminal is in unicode mode.
278 */
Alan Cox4edf1822008-02-08 04:18:44 -0800279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static inline int is_continuation(unsigned char c, struct tty_struct *tty)
281{
282 return I_IUTF8(tty) && is_utf8_continuation(c);
283}
284
285/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000286 * do_output_char - output one character
287 * @c: character (or partial unicode symbol)
288 * @tty: terminal device
289 * @space: space available in tty driver write buffer
290 *
291 * This is a helper function that handles one output character
292 * (including special characters like TAB, CR, LF, etc.),
293 * putting the results in the tty driver's write buffer.
294 *
295 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
296 * and NLDLY. They simply aren't relevant in the world today.
297 * If you ever need them, add them here.
298 *
299 * Returns the number of bytes of buffer space used or -1 if
300 * no space left.
301 *
302 * Locking: should be called under the output_lock to protect
303 * the column state and space left in the buffer
304 */
305
306static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
307{
308 int spaces;
309
310 if (!space)
311 return -1;
Alan Cox300a6202009-01-02 13:41:04 +0000312
Joe Petersona88a69c2009-01-02 13:40:53 +0000313 switch (c) {
314 case '\n':
315 if (O_ONLRET(tty))
316 tty->column = 0;
317 if (O_ONLCR(tty)) {
318 if (space < 2)
319 return -1;
320 tty->canon_column = tty->column = 0;
321 tty_put_char(tty, '\r');
322 tty_put_char(tty, c);
323 return 2;
324 }
325 tty->canon_column = tty->column;
326 break;
327 case '\r':
328 if (O_ONOCR(tty) && tty->column == 0)
329 return 0;
330 if (O_OCRNL(tty)) {
331 c = '\n';
332 if (O_ONLRET(tty))
333 tty->canon_column = tty->column = 0;
334 break;
335 }
336 tty->canon_column = tty->column = 0;
337 break;
338 case '\t':
339 spaces = 8 - (tty->column & 7);
340 if (O_TABDLY(tty) == XTABS) {
341 if (space < spaces)
342 return -1;
343 tty->column += spaces;
344 tty->ops->write(tty, " ", spaces);
345 return spaces;
346 }
347 tty->column += spaces;
348 break;
349 case '\b':
350 if (tty->column > 0)
351 tty->column--;
352 break;
353 default:
354 if (O_OLCUC(tty))
355 c = toupper(c);
356 if (!iscntrl(c) && !is_continuation(c, tty))
357 tty->column++;
358 break;
359 }
360
361 tty_put_char(tty, c);
362 return 1;
363}
364
365/**
366 * process_output - output post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * @c: character (or partial unicode symbol)
368 * @tty: terminal device
369 *
370 * Perform OPOST processing. Returns -1 when the output device is
Joe Petersona88a69c2009-01-02 13:40:53 +0000371 * full and the character must be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000373 * Locking: output_lock to protect column state and space left
374 * (also, this is called from n_tty_write under the
375 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 */
Alan Cox4edf1822008-02-08 04:18:44 -0800377
Joe Petersona88a69c2009-01-02 13:40:53 +0000378static int process_output(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Joe Petersona88a69c2009-01-02 13:40:53 +0000380 int space, retval;
381
382 mutex_lock(&tty->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Alan Coxf34d7a52008-04-30 00:54:13 -0700384 space = tty_write_room(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +0000385 retval = do_output_char(c, tty, space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Joe Petersona88a69c2009-01-02 13:40:53 +0000387 mutex_unlock(&tty->output_lock);
388 if (retval < 0)
389 return -1;
390 else
391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000395 * process_output_block - block post processor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * @tty: terminal device
397 * @inbuf: user buffer
398 * @nr: number of bytes
399 *
400 * This path is used to speed up block console writes, among other
401 * things when processing blocks of output data. It handles only
402 * the simple cases normally found and helps to generate blocks of
403 * symbols for the console driver and thus improve performance.
404 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000405 * Locking: output_lock to protect column state and space left
406 * (also, this is called from n_tty_write under the
407 * tty layer write lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
Alan Cox4edf1822008-02-08 04:18:44 -0800409
Joe Petersona88a69c2009-01-02 13:40:53 +0000410static ssize_t process_output_block(struct tty_struct *tty,
411 const unsigned char *buf, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 int space;
414 int i;
415 const unsigned char *cp;
416
Joe Petersona88a69c2009-01-02 13:40:53 +0000417 mutex_lock(&tty->output_lock);
418
Alan Coxf34d7a52008-04-30 00:54:13 -0700419 space = tty_write_room(tty);
Alan Cox300a6202009-01-02 13:41:04 +0000420 if (!space) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000421 mutex_unlock(&tty->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return 0;
Joe Petersona88a69c2009-01-02 13:40:53 +0000423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (nr > space)
425 nr = space;
426
427 for (i = 0, cp = buf; i < nr; i++, cp++) {
428 switch (*cp) {
429 case '\n':
430 if (O_ONLRET(tty))
431 tty->column = 0;
432 if (O_ONLCR(tty))
433 goto break_out;
434 tty->canon_column = tty->column;
435 break;
436 case '\r':
437 if (O_ONOCR(tty) && tty->column == 0)
438 goto break_out;
439 if (O_OCRNL(tty))
440 goto break_out;
441 tty->canon_column = tty->column = 0;
442 break;
443 case '\t':
444 goto break_out;
445 case '\b':
446 if (tty->column > 0)
447 tty->column--;
448 break;
449 default:
450 if (O_OLCUC(tty))
451 goto break_out;
452 if (!iscntrl(*cp))
453 tty->column++;
454 break;
455 }
456 }
457break_out:
Alan Coxf34d7a52008-04-30 00:54:13 -0700458 i = tty->ops->write(tty, buf, i);
Joe Petersona88a69c2009-01-02 13:40:53 +0000459
460 mutex_unlock(&tty->output_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return i;
462}
463
Joe Petersona88a69c2009-01-02 13:40:53 +0000464/**
465 * process_echoes - write pending echo characters
466 * @tty: terminal device
467 *
468 * Write previously buffered echo (and other ldisc-generated)
469 * characters to the tty.
470 *
471 * Characters generated by the ldisc (including echoes) need to
472 * be buffered because the driver's write buffer can fill during
473 * heavy program output. Echoing straight to the driver will
474 * often fail under these conditions, causing lost characters and
475 * resulting mismatches of ldisc state information.
476 *
477 * Since the ldisc state must represent the characters actually sent
478 * to the driver at the time of the write, operations like certain
479 * changes in column state are also saved in the buffer and executed
480 * here.
481 *
482 * A circular fifo buffer is used so that the most recent characters
483 * are prioritized. Also, when control characters are echoed with a
484 * prefixed "^", the pair is treated atomically and thus not separated.
485 *
486 * Locking: output_lock to protect column state and space left,
487 * echo_lock to protect the echo buffer
488 */
489
490static void process_echoes(struct tty_struct *tty)
491{
492 int space, nr;
493 unsigned char c;
494 unsigned char *cp, *buf_end;
495
496 if (!tty->echo_cnt)
497 return;
498
499 mutex_lock(&tty->output_lock);
500 mutex_lock(&tty->echo_lock);
501
502 space = tty_write_room(tty);
503
504 buf_end = tty->echo_buf + N_TTY_BUF_SIZE;
505 cp = tty->echo_buf + tty->echo_pos;
506 nr = tty->echo_cnt;
507 while (nr > 0) {
508 c = *cp;
509 if (c == ECHO_OP_START) {
510 unsigned char op;
511 unsigned char *opp;
512 int no_space_left = 0;
513
514 /*
515 * If the buffer byte is the start of a multi-byte
516 * operation, get the next byte, which is either the
517 * op code or a control character value.
518 */
519 opp = cp + 1;
520 if (opp == buf_end)
521 opp -= N_TTY_BUF_SIZE;
522 op = *opp;
Alan Cox300a6202009-01-02 13:41:04 +0000523
Joe Petersona88a69c2009-01-02 13:40:53 +0000524 switch (op) {
525 unsigned int num_chars, num_bs;
526
527 case ECHO_OP_ERASE_TAB:
528 if (++opp == buf_end)
529 opp -= N_TTY_BUF_SIZE;
530 num_chars = *opp;
531
532 /*
533 * Determine how many columns to go back
534 * in order to erase the tab.
535 * This depends on the number of columns
536 * used by other characters within the tab
537 * area. If this (modulo 8) count is from
538 * the start of input rather than from a
539 * previous tab, we offset by canon column.
540 * Otherwise, tab spacing is normal.
541 */
542 if (!(num_chars & 0x80))
543 num_chars += tty->canon_column;
544 num_bs = 8 - (num_chars & 7);
545
546 if (num_bs > space) {
547 no_space_left = 1;
548 break;
549 }
550 space -= num_bs;
551 while (num_bs--) {
552 tty_put_char(tty, '\b');
553 if (tty->column > 0)
554 tty->column--;
555 }
556 cp += 3;
557 nr -= 3;
558 break;
559
560 case ECHO_OP_SET_CANON_COL:
561 tty->canon_column = tty->column;
562 cp += 2;
563 nr -= 2;
564 break;
565
566 case ECHO_OP_MOVE_BACK_COL:
567 if (tty->column > 0)
568 tty->column--;
569 cp += 2;
570 nr -= 2;
571 break;
572
573 case ECHO_OP_START:
574 /* This is an escaped echo op start code */
575 if (!space) {
576 no_space_left = 1;
577 break;
578 }
579 tty_put_char(tty, ECHO_OP_START);
580 tty->column++;
581 space--;
582 cp += 2;
583 nr -= 2;
584 break;
585
586 default:
587 if (iscntrl(op)) {
588 if (L_ECHOCTL(tty)) {
589 /*
590 * Ensure there is enough space
591 * for the whole ctrl pair.
592 */
593 if (space < 2) {
594 no_space_left = 1;
595 break;
596 }
597 tty_put_char(tty, '^');
598 tty_put_char(tty, op ^ 0100);
599 tty->column += 2;
600 space -= 2;
601 } else {
602 if (!space) {
603 no_space_left = 1;
604 break;
605 }
606 tty_put_char(tty, op);
607 space--;
608 }
609 }
610 /*
611 * If above falls through, this was an
612 * undefined op.
613 */
614 cp += 2;
615 nr -= 2;
616 }
617
618 if (no_space_left)
619 break;
620 } else {
621 int retval;
622
Alan Cox300a6202009-01-02 13:41:04 +0000623 retval = do_output_char(c, tty, space);
624 if (retval < 0)
Joe Petersona88a69c2009-01-02 13:40:53 +0000625 break;
626 space -= retval;
627 cp += 1;
628 nr -= 1;
629 }
630
631 /* When end of circular buffer reached, wrap around */
632 if (cp >= buf_end)
633 cp -= N_TTY_BUF_SIZE;
634 }
635
636 if (nr == 0) {
637 tty->echo_pos = 0;
638 tty->echo_cnt = 0;
639 tty->echo_overrun = 0;
640 } else {
641 int num_processed = tty->echo_cnt - nr;
642 tty->echo_pos += num_processed;
643 tty->echo_pos &= N_TTY_BUF_SIZE - 1;
644 tty->echo_cnt = nr;
645 if (num_processed > 0)
646 tty->echo_overrun = 0;
647 }
648
649 mutex_unlock(&tty->echo_lock);
650 mutex_unlock(&tty->output_lock);
651
652 if (tty->ops->flush_chars)
653 tty->ops->flush_chars(tty);
654}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000657 * add_echo_byte - add a byte to the echo buffer
658 * @c: unicode byte to echo
659 * @tty: terminal device
660 *
661 * Add a character or operation byte to the echo buffer.
662 *
663 * Should be called under the echo lock to protect the echo buffer.
664 */
665
666static void add_echo_byte(unsigned char c, struct tty_struct *tty)
667{
668 int new_byte_pos;
669
670 if (tty->echo_cnt == N_TTY_BUF_SIZE) {
671 /* Circular buffer is already at capacity */
672 new_byte_pos = tty->echo_pos;
673
674 /*
675 * Since the buffer start position needs to be advanced,
676 * be sure to step by a whole operation byte group.
677 */
Alan Cox300a6202009-01-02 13:41:04 +0000678 if (tty->echo_buf[tty->echo_pos] == ECHO_OP_START) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000679 if (tty->echo_buf[(tty->echo_pos + 1) &
680 (N_TTY_BUF_SIZE - 1)] ==
681 ECHO_OP_ERASE_TAB) {
682 tty->echo_pos += 3;
683 tty->echo_cnt -= 2;
684 } else {
685 tty->echo_pos += 2;
686 tty->echo_cnt -= 1;
687 }
688 } else {
689 tty->echo_pos++;
690 }
691 tty->echo_pos &= N_TTY_BUF_SIZE - 1;
692
693 tty->echo_overrun = 1;
694 } else {
695 new_byte_pos = tty->echo_pos + tty->echo_cnt;
696 new_byte_pos &= N_TTY_BUF_SIZE - 1;
697 tty->echo_cnt++;
698 }
699
700 tty->echo_buf[new_byte_pos] = c;
701}
702
703/**
704 * echo_move_back_col - add operation to move back a column
705 * @tty: terminal device
706 *
707 * Add an operation to the echo buffer to move back one column.
708 *
709 * Locking: echo_lock to protect the echo buffer
710 */
711
712static void echo_move_back_col(struct tty_struct *tty)
713{
714 mutex_lock(&tty->echo_lock);
715
716 add_echo_byte(ECHO_OP_START, tty);
717 add_echo_byte(ECHO_OP_MOVE_BACK_COL, tty);
718
719 mutex_unlock(&tty->echo_lock);
720}
721
722/**
723 * echo_set_canon_col - add operation to set the canon column
724 * @tty: terminal device
725 *
726 * Add an operation to the echo buffer to set the canon column
727 * to the current column.
728 *
729 * Locking: echo_lock to protect the echo buffer
730 */
731
732static void echo_set_canon_col(struct tty_struct *tty)
733{
734 mutex_lock(&tty->echo_lock);
735
736 add_echo_byte(ECHO_OP_START, tty);
737 add_echo_byte(ECHO_OP_SET_CANON_COL, tty);
738
739 mutex_unlock(&tty->echo_lock);
740}
741
742/**
743 * echo_erase_tab - add operation to erase a tab
744 * @num_chars: number of character columns already used
745 * @after_tab: true if num_chars starts after a previous tab
746 * @tty: terminal device
747 *
748 * Add an operation to the echo buffer to erase a tab.
749 *
750 * Called by the eraser function, which knows how many character
751 * columns have been used since either a previous tab or the start
752 * of input. This information will be used later, along with
753 * canon column (if applicable), to go back the correct number
754 * of columns.
755 *
756 * Locking: echo_lock to protect the echo buffer
757 */
758
759static void echo_erase_tab(unsigned int num_chars, int after_tab,
760 struct tty_struct *tty)
761{
762 mutex_lock(&tty->echo_lock);
763
764 add_echo_byte(ECHO_OP_START, tty);
765 add_echo_byte(ECHO_OP_ERASE_TAB, tty);
766
767 /* We only need to know this modulo 8 (tab spacing) */
768 num_chars &= 7;
769
770 /* Set the high bit as a flag if num_chars is after a previous tab */
771 if (after_tab)
772 num_chars |= 0x80;
Alan Cox300a6202009-01-02 13:41:04 +0000773
Joe Petersona88a69c2009-01-02 13:40:53 +0000774 add_echo_byte(num_chars, tty);
775
776 mutex_unlock(&tty->echo_lock);
777}
778
779/**
780 * echo_char_raw - echo a character raw
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 * @c: unicode byte to echo
782 * @tty: terminal device
783 *
Alan Cox4edf1822008-02-08 04:18:44 -0800784 * Echo user input back onto the screen. This must be called only when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 * L_ECHO(tty) is true. Called from the driver receive_buf path.
Alan Cox17b82062008-10-13 10:45:06 +0100786 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000787 * This variant does not treat control characters specially.
788 *
789 * Locking: echo_lock to protect the echo buffer
790 */
791
792static void echo_char_raw(unsigned char c, struct tty_struct *tty)
793{
794 mutex_lock(&tty->echo_lock);
795
796 if (c == ECHO_OP_START) {
797 add_echo_byte(ECHO_OP_START, tty);
798 add_echo_byte(ECHO_OP_START, tty);
799 } else {
800 add_echo_byte(c, tty);
801 }
802
803 mutex_unlock(&tty->echo_lock);
804}
805
806/**
807 * echo_char - echo a character
808 * @c: unicode byte to echo
809 * @tty: terminal device
810 *
811 * Echo user input back onto the screen. This must be called only when
812 * L_ECHO(tty) is true. Called from the driver receive_buf path.
813 *
814 * This variant tags control characters to be possibly echoed as
815 * as "^X" (where X is the letter representing the control char).
816 *
817 * Locking: echo_lock to protect the echo buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 */
819
820static void echo_char(unsigned char c, struct tty_struct *tty)
821{
Joe Petersona88a69c2009-01-02 13:40:53 +0000822 mutex_lock(&tty->echo_lock);
823
824 if (c == ECHO_OP_START) {
825 add_echo_byte(ECHO_OP_START, tty);
826 add_echo_byte(ECHO_OP_START, tty);
827 } else {
828 if (iscntrl(c) && c != '\t')
829 add_echo_byte(ECHO_OP_START, tty);
830 add_echo_byte(c, tty);
831 }
832
833 mutex_unlock(&tty->echo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Alan Cox17b82062008-10-13 10:45:06 +0100836/**
Joe Petersona88a69c2009-01-02 13:40:53 +0000837 * finish_erasing - complete erase
Alan Cox17b82062008-10-13 10:45:06 +0100838 * @tty: tty doing the erase
Alan Cox17b82062008-10-13 10:45:06 +0100839 */
Joe Petersona88a69c2009-01-02 13:40:53 +0000840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841static inline void finish_erasing(struct tty_struct *tty)
842{
843 if (tty->erasing) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000844 echo_char_raw('/', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 tty->erasing = 0;
846 }
847}
848
849/**
850 * eraser - handle erase function
851 * @c: character input
852 * @tty: terminal device
853 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200854 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 * present in the stream from the driver layer. Handles the complexities
856 * of UTF-8 multibyte symbols.
Alan Cox17b82062008-10-13 10:45:06 +0100857 *
Joe Petersona88a69c2009-01-02 13:40:53 +0000858 * Locking: read_lock for tty buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 */
Alan Cox4edf1822008-02-08 04:18:44 -0800860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861static void eraser(unsigned char c, struct tty_struct *tty)
862{
863 enum { ERASE, WERASE, KILL } kill_type;
864 int head, seen_alnums, cnt;
865 unsigned long flags;
866
Alan Cox17b82062008-10-13 10:45:06 +0100867 /* FIXME: locking needed ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (tty->read_head == tty->canon_head) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000869 /* echo_char_raw('\a', tty); */ /* what do you think? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return;
871 }
872 if (c == ERASE_CHAR(tty))
873 kill_type = ERASE;
874 else if (c == WERASE_CHAR(tty))
875 kill_type = WERASE;
876 else {
877 if (!L_ECHO(tty)) {
878 spin_lock_irqsave(&tty->read_lock, flags);
879 tty->read_cnt -= ((tty->read_head - tty->canon_head) &
880 (N_TTY_BUF_SIZE - 1));
881 tty->read_head = tty->canon_head;
882 spin_unlock_irqrestore(&tty->read_lock, flags);
883 return;
884 }
885 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
886 spin_lock_irqsave(&tty->read_lock, flags);
887 tty->read_cnt -= ((tty->read_head - tty->canon_head) &
888 (N_TTY_BUF_SIZE - 1));
889 tty->read_head = tty->canon_head;
890 spin_unlock_irqrestore(&tty->read_lock, flags);
891 finish_erasing(tty);
892 echo_char(KILL_CHAR(tty), tty);
893 /* Add a newline if ECHOK is on and ECHOKE is off. */
894 if (L_ECHOK(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +0000895 echo_char_raw('\n', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return;
897 }
898 kill_type = KILL;
899 }
900
901 seen_alnums = 0;
Alan Cox17b82062008-10-13 10:45:06 +0100902 /* FIXME: Locking ?? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 while (tty->read_head != tty->canon_head) {
904 head = tty->read_head;
905
906 /* erase a single possibly multibyte character */
907 do {
908 head = (head - 1) & (N_TTY_BUF_SIZE-1);
909 c = tty->read_buf[head];
910 } while (is_continuation(c, tty) && head != tty->canon_head);
911
912 /* do not partially erase */
913 if (is_continuation(c, tty))
914 break;
915
916 if (kill_type == WERASE) {
917 /* Equivalent to BSD's ALTWERASE. */
918 if (isalnum(c) || c == '_')
919 seen_alnums++;
920 else if (seen_alnums)
921 break;
922 }
923 cnt = (tty->read_head - head) & (N_TTY_BUF_SIZE-1);
924 spin_lock_irqsave(&tty->read_lock, flags);
925 tty->read_head = head;
926 tty->read_cnt -= cnt;
927 spin_unlock_irqrestore(&tty->read_lock, flags);
928 if (L_ECHO(tty)) {
929 if (L_ECHOPRT(tty)) {
930 if (!tty->erasing) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000931 echo_char_raw('\\', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 tty->erasing = 1;
933 }
934 /* if cnt > 1, output a multi-byte character */
935 echo_char(c, tty);
936 while (--cnt > 0) {
937 head = (head+1) & (N_TTY_BUF_SIZE-1);
Joe Petersona88a69c2009-01-02 13:40:53 +0000938 echo_char_raw(tty->read_buf[head], tty);
939 echo_move_back_col(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
941 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
942 echo_char(ERASE_CHAR(tty), tty);
943 } else if (c == '\t') {
Joe Petersona88a69c2009-01-02 13:40:53 +0000944 unsigned int num_chars = 0;
945 int after_tab = 0;
946 unsigned long tail = tty->read_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Joe Petersona88a69c2009-01-02 13:40:53 +0000948 /*
949 * Count the columns used for characters
950 * since the start of input or after a
951 * previous tab.
952 * This info is used to go back the correct
953 * number of columns.
954 */
955 while (tail != tty->canon_head) {
956 tail = (tail-1) & (N_TTY_BUF_SIZE-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 c = tty->read_buf[tail];
Joe Petersona88a69c2009-01-02 13:40:53 +0000958 if (c == '\t') {
959 after_tab = 1;
960 break;
Alan Cox300a6202009-01-02 13:41:04 +0000961 } else if (iscntrl(c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (L_ECHOCTL(tty))
Joe Petersona88a69c2009-01-02 13:40:53 +0000963 num_chars += 2;
964 } else if (!is_continuation(c, tty)) {
965 num_chars++;
966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000968 echo_erase_tab(num_chars, after_tab, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 } else {
970 if (iscntrl(c) && L_ECHOCTL(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000971 echo_char_raw('\b', tty);
972 echo_char_raw(' ', tty);
973 echo_char_raw('\b', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975 if (!iscntrl(c) || L_ECHOCTL(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +0000976 echo_char_raw('\b', tty);
977 echo_char_raw(' ', tty);
978 echo_char_raw('\b', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980 }
981 }
982 if (kill_type == ERASE)
983 break;
984 }
Joe Petersona88a69c2009-01-02 13:40:53 +0000985 if (tty->read_head == tty->canon_head && L_ECHO(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 finish_erasing(tty);
987}
988
989/**
990 * isig - handle the ISIG optio
991 * @sig: signal
992 * @tty: terminal
993 * @flush: force flush
994 *
995 * Called when a signal is being sent due to terminal input. This
996 * may caus terminal flushing to take place according to the termios
997 * settings and character used. Called from the driver receive_buf
998 * path so serialized.
Alan Cox17b82062008-10-13 10:45:06 +0100999 *
1000 * Locking: ctrl_lock, read_lock (both via flush buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 */
Alan Cox4edf1822008-02-08 04:18:44 -08001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003static inline void isig(int sig, struct tty_struct *tty, int flush)
1004{
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001005 if (tty->pgrp)
1006 kill_pgrp(tty->pgrp, sig, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (flush || !L_NOFLSH(tty)) {
1008 n_tty_flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001009 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011}
1012
1013/**
1014 * n_tty_receive_break - handle break
1015 * @tty: terminal
1016 *
1017 * An RS232 break event has been hit in the incoming bitstream. This
1018 * can cause a variety of events depending upon the termios settings.
1019 *
1020 * Called from the receive_buf path so single threaded.
1021 */
Alan Cox4edf1822008-02-08 04:18:44 -08001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023static inline void n_tty_receive_break(struct tty_struct *tty)
1024{
1025 if (I_IGNBRK(tty))
1026 return;
1027 if (I_BRKINT(tty)) {
1028 isig(SIGINT, tty, 1);
1029 return;
1030 }
1031 if (I_PARMRK(tty)) {
1032 put_tty_queue('\377', tty);
1033 put_tty_queue('\0', tty);
1034 }
1035 put_tty_queue('\0', tty);
1036 wake_up_interruptible(&tty->read_wait);
1037}
1038
1039/**
1040 * n_tty_receive_overrun - handle overrun reporting
1041 * @tty: terminal
1042 *
1043 * Data arrived faster than we could process it. While the tty
1044 * driver has flagged this the bits that were missed are gone
1045 * forever.
1046 *
1047 * Called from the receive_buf path so single threaded. Does not
1048 * need locking as num_overrun and overrun_time are function
1049 * private.
1050 */
Alan Cox4edf1822008-02-08 04:18:44 -08001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052static inline void n_tty_receive_overrun(struct tty_struct *tty)
1053{
1054 char buf[64];
1055
1056 tty->num_overrun++;
1057 if (time_before(tty->overrun_time, jiffies - HZ) ||
1058 time_after(tty->overrun_time, jiffies)) {
1059 printk(KERN_WARNING "%s: %d input overrun(s)\n",
1060 tty_name(tty, buf),
1061 tty->num_overrun);
1062 tty->overrun_time = jiffies;
1063 tty->num_overrun = 0;
1064 }
1065}
1066
1067/**
1068 * n_tty_receive_parity_error - error notifier
1069 * @tty: terminal device
1070 * @c: character
1071 *
1072 * Process a parity error and queue the right data to indicate
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001073 * the error case if necessary. Locking as per n_tty_receive_buf.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 */
1075static inline void n_tty_receive_parity_error(struct tty_struct *tty,
1076 unsigned char c)
1077{
Alan Cox4edf1822008-02-08 04:18:44 -08001078 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (I_PARMRK(tty)) {
1081 put_tty_queue('\377', tty);
1082 put_tty_queue('\0', tty);
1083 put_tty_queue(c, tty);
1084 } else if (I_INPCK(tty))
1085 put_tty_queue('\0', tty);
1086 else
1087 put_tty_queue(c, tty);
1088 wake_up_interruptible(&tty->read_wait);
1089}
1090
1091/**
1092 * n_tty_receive_char - perform processing
1093 * @tty: terminal device
1094 * @c: character
1095 *
1096 * Process an individual character of input received from the driver.
Alan Cox4edf1822008-02-08 04:18:44 -08001097 * This is serialized with respect to itself by the rules for the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 * driver above.
1099 */
1100
1101static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1102{
1103 unsigned long flags;
1104
1105 if (tty->raw) {
1106 put_tty_queue(c, tty);
1107 return;
1108 }
Alan Cox4edf1822008-02-08 04:18:44 -08001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (I_ISTRIP(tty))
1111 c &= 0x7f;
1112 if (I_IUCLC(tty) && L_IEXTEN(tty))
Alan Cox300a6202009-01-02 13:41:04 +00001113 c = tolower(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Joe Peterson54d2a372008-02-06 01:37:59 -08001115 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) &&
Joe Petersona88a69c2009-01-02 13:40:53 +00001116 I_IXANY(tty) && c != START_CHAR(tty) && c != STOP_CHAR(tty) &&
1117 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && c != SUSP_CHAR(tty)) {
Joe Peterson54d2a372008-02-06 01:37:59 -08001118 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001119 process_echoes(tty);
1120 }
Joe Peterson54d2a372008-02-06 01:37:59 -08001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (tty->closing) {
1123 if (I_IXON(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001124 if (c == START_CHAR(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001126 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00001127 } else if (c == STOP_CHAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 stop_tty(tty);
1129 }
1130 return;
1131 }
1132
1133 /*
1134 * If the previous character was LNEXT, or we know that this
1135 * character is not one of the characters that we'll have to
1136 * handle specially, do shortcut processing to speed things
1137 * up.
1138 */
1139 if (!test_bit(c, tty->process_char_map) || tty->lnext) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 tty->lnext = 0;
1141 if (L_ECHO(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001142 finish_erasing(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (tty->read_cnt >= N_TTY_BUF_SIZE-1) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001144 /* beep if no space */
1145 echo_char_raw('\a', tty);
1146 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return;
1148 }
1149 /* Record the column of first canon char. */
1150 if (tty->canon_head == tty->read_head)
Joe Petersona88a69c2009-01-02 13:40:53 +00001151 echo_set_canon_col(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001153 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155 if (I_PARMRK(tty) && c == (unsigned char) '\377')
1156 put_tty_queue(c, tty);
1157 put_tty_queue(c, tty);
1158 return;
1159 }
Alan Cox4edf1822008-02-08 04:18:44 -08001160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (I_IXON(tty)) {
1162 if (c == START_CHAR(tty)) {
1163 start_tty(tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001164 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return;
1166 }
1167 if (c == STOP_CHAR(tty)) {
1168 stop_tty(tty);
1169 return;
1170 }
1171 }
Joe Peterson575537b32008-04-30 00:53:30 -07001172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (L_ISIG(tty)) {
1174 int signal;
1175 signal = SIGINT;
1176 if (c == INTR_CHAR(tty))
1177 goto send_signal;
1178 signal = SIGQUIT;
1179 if (c == QUIT_CHAR(tty))
1180 goto send_signal;
1181 signal = SIGTSTP;
1182 if (c == SUSP_CHAR(tty)) {
1183send_signal:
Joe Petersonec5b1152008-02-06 01:37:38 -08001184 /*
Joe Petersonec5b1152008-02-06 01:37:38 -08001185 * Note that we do not use isig() here because we want
1186 * the order to be:
1187 * 1) flush, 2) echo, 3) signal
1188 */
1189 if (!L_NOFLSH(tty)) {
1190 n_tty_flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001191 tty_driver_flush_buffer(tty);
Joe Petersonec5b1152008-02-06 01:37:38 -08001192 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001193 if (I_IXON(tty))
1194 start_tty(tty);
1195 if (L_ECHO(tty)) {
Joe Petersonec5b1152008-02-06 01:37:38 -08001196 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001197 process_echoes(tty);
1198 }
Joe Petersonec5b1152008-02-06 01:37:38 -08001199 if (tty->pgrp)
1200 kill_pgrp(tty->pgrp, signal, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return;
1202 }
1203 }
Joe Peterson575537b32008-04-30 00:53:30 -07001204
1205 if (c == '\r') {
1206 if (I_IGNCR(tty))
1207 return;
1208 if (I_ICRNL(tty))
1209 c = '\n';
1210 } else if (c == '\n' && I_INLCR(tty))
1211 c = '\r';
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (tty->icanon) {
1214 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1215 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1216 eraser(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001217 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 return;
1219 }
1220 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
1221 tty->lnext = 1;
1222 if (L_ECHO(tty)) {
1223 finish_erasing(tty);
1224 if (L_ECHOCTL(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001225 echo_char_raw('^', tty);
1226 echo_char_raw('\b', tty);
1227 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229 }
1230 return;
1231 }
1232 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
1233 L_IEXTEN(tty)) {
1234 unsigned long tail = tty->canon_head;
1235
1236 finish_erasing(tty);
1237 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001238 echo_char_raw('\n', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 while (tail != tty->read_head) {
1240 echo_char(tty->read_buf[tail], tty);
1241 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
1242 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001243 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 return;
1245 }
1246 if (c == '\n') {
1247 if (L_ECHO(tty) || L_ECHONL(tty)) {
Roman Zippeld6afe272005-07-07 17:56:55 -07001248 if (tty->read_cnt >= N_TTY_BUF_SIZE-1)
Joe Petersona88a69c2009-01-02 13:40:53 +00001249 echo_char_raw('\a', tty);
1250 echo_char_raw('\n', tty);
1251 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253 goto handle_newline;
1254 }
1255 if (c == EOF_CHAR(tty)) {
Alan Cox4edf1822008-02-08 04:18:44 -08001256 if (tty->canon_head != tty->read_head)
1257 set_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 c = __DISABLED_CHAR;
1259 goto handle_newline;
1260 }
1261 if ((c == EOL_CHAR(tty)) ||
1262 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1263 /*
1264 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1265 */
1266 if (L_ECHO(tty)) {
Roman Zippeld6afe272005-07-07 17:56:55 -07001267 if (tty->read_cnt >= N_TTY_BUF_SIZE-1)
Joe Petersona88a69c2009-01-02 13:40:53 +00001268 echo_char_raw('\a', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 /* Record the column of first canon char. */
1270 if (tty->canon_head == tty->read_head)
Joe Petersona88a69c2009-01-02 13:40:53 +00001271 echo_set_canon_col(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 echo_char(c, tty);
Joe Petersona88a69c2009-01-02 13:40:53 +00001273 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275 /*
1276 * XXX does PARMRK doubling happen for
1277 * EOL_CHAR and EOL2_CHAR?
1278 */
1279 if (I_PARMRK(tty) && c == (unsigned char) '\377')
1280 put_tty_queue(c, tty);
1281
Alan Cox4edf1822008-02-08 04:18:44 -08001282handle_newline:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 spin_lock_irqsave(&tty->read_lock, flags);
1284 set_bit(tty->read_head, tty->read_flags);
1285 put_tty_queue_nolock(c, tty);
1286 tty->canon_head = tty->read_head;
1287 tty->canon_data++;
1288 spin_unlock_irqrestore(&tty->read_lock, flags);
1289 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1290 if (waitqueue_active(&tty->read_wait))
1291 wake_up_interruptible(&tty->read_wait);
1292 return;
1293 }
1294 }
Alan Cox4edf1822008-02-08 04:18:44 -08001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (L_ECHO(tty)) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001297 finish_erasing(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (tty->read_cnt >= N_TTY_BUF_SIZE-1) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001299 /* beep if no space */
1300 echo_char_raw('\a', tty);
1301 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return;
1303 }
1304 if (c == '\n')
Joe Petersona88a69c2009-01-02 13:40:53 +00001305 echo_char_raw('\n', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 else {
1307 /* Record the column of first canon char. */
1308 if (tty->canon_head == tty->read_head)
Joe Petersona88a69c2009-01-02 13:40:53 +00001309 echo_set_canon_col(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 echo_char(c, tty);
1311 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001312 process_echoes(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314
1315 if (I_PARMRK(tty) && c == (unsigned char) '\377')
1316 put_tty_queue(c, tty);
1317
1318 put_tty_queue(c, tty);
Alan Cox4edf1822008-02-08 04:18:44 -08001319}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322/**
1323 * n_tty_write_wakeup - asynchronous I/O notifier
1324 * @tty: tty device
1325 *
1326 * Required for the ptys, serial driver etc. since processes
1327 * that attach themselves to the master and rely on ASYNC
1328 * IO must be woken up
1329 */
1330
1331static void n_tty_write_wakeup(struct tty_struct *tty)
1332{
Joe Petersona88a69c2009-01-02 13:40:53 +00001333 /* Write out any echoed characters that are still pending */
1334 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00001335
Alan Cox4edf1822008-02-08 04:18:44 -08001336 if (tty->fasync) {
1337 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342/**
1343 * n_tty_receive_buf - data receive
1344 * @tty: terminal device
1345 * @cp: buffer
1346 * @fp: flag buffer
1347 * @count: characters
1348 *
1349 * Called by the terminal driver when a block of characters has
1350 * been received. This function must be called from soft contexts
1351 * not from interrupt context. The driver is responsible for making
1352 * calls one at a time and in order (or using flush_to_ldisc)
1353 */
Alan Cox4edf1822008-02-08 04:18:44 -08001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1356 char *fp, int count)
1357{
1358 const unsigned char *p;
1359 char *f, flags = TTY_NORMAL;
1360 int i;
1361 char buf[64];
1362 unsigned long cpuflags;
1363
1364 if (!tty->read_buf)
1365 return;
1366
1367 if (tty->real_raw) {
1368 spin_lock_irqsave(&tty->read_lock, cpuflags);
1369 i = min(N_TTY_BUF_SIZE - tty->read_cnt,
1370 N_TTY_BUF_SIZE - tty->read_head);
1371 i = min(count, i);
1372 memcpy(tty->read_buf + tty->read_head, cp, i);
1373 tty->read_head = (tty->read_head + i) & (N_TTY_BUF_SIZE-1);
1374 tty->read_cnt += i;
1375 cp += i;
1376 count -= i;
1377
1378 i = min(N_TTY_BUF_SIZE - tty->read_cnt,
1379 N_TTY_BUF_SIZE - tty->read_head);
1380 i = min(count, i);
1381 memcpy(tty->read_buf + tty->read_head, cp, i);
1382 tty->read_head = (tty->read_head + i) & (N_TTY_BUF_SIZE-1);
1383 tty->read_cnt += i;
1384 spin_unlock_irqrestore(&tty->read_lock, cpuflags);
1385 } else {
Alan Cox4edf1822008-02-08 04:18:44 -08001386 for (i = count, p = cp, f = fp; i; i--, p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (f)
1388 flags = *f++;
1389 switch (flags) {
1390 case TTY_NORMAL:
1391 n_tty_receive_char(tty, *p);
1392 break;
1393 case TTY_BREAK:
1394 n_tty_receive_break(tty);
1395 break;
1396 case TTY_PARITY:
1397 case TTY_FRAME:
1398 n_tty_receive_parity_error(tty, *p);
1399 break;
1400 case TTY_OVERRUN:
1401 n_tty_receive_overrun(tty);
1402 break;
1403 default:
Alan Cox4edf1822008-02-08 04:18:44 -08001404 printk(KERN_ERR "%s: unknown flag %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 tty_name(tty, buf), flags);
1406 break;
1407 }
1408 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001409 if (tty->ops->flush_chars)
1410 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
1412
Alan Cox33f0f882006-01-09 20:54:13 -08001413 n_tty_set_room(tty);
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (!tty->icanon && (tty->read_cnt >= tty->minimum_to_wake)) {
1416 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1417 if (waitqueue_active(&tty->read_wait))
1418 wake_up_interruptible(&tty->read_wait);
1419 }
1420
1421 /*
1422 * Check the remaining room for the input canonicalization
1423 * mode. We don't want to throttle the driver if we're in
1424 * canonical mode and don't have a newline yet!
1425 */
Alan Cox39c2e602008-04-30 00:54:18 -07001426 if (tty->receive_room < TTY_THRESHOLD_THROTTLE)
1427 tty_throttle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
1430int is_ignored(int sig)
1431{
1432 return (sigismember(&current->blocked, sig) ||
Alan Cox4edf1822008-02-08 04:18:44 -08001433 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
1436/**
1437 * n_tty_set_termios - termios data changed
1438 * @tty: terminal
1439 * @old: previous data
1440 *
1441 * Called by the tty layer when the user changes termios flags so
1442 * that the line discipline can plan ahead. This function cannot sleep
Alan Cox4edf1822008-02-08 04:18:44 -08001443 * and is protected from re-entry by the tty layer. The user is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 * guaranteed that this function will not be re-entered or in progress
1445 * when the ldisc is closed.
Alan Cox17b82062008-10-13 10:45:06 +01001446 *
1447 * Locking: Caller holds tty->termios_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 */
Alan Cox4edf1822008-02-08 04:18:44 -08001449
1450static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
Alan Cox47afa7a2008-10-13 10:44:17 +01001452 int canon_change = 1;
1453 BUG_ON(!tty);
1454
1455 if (old)
1456 canon_change = (old->c_lflag ^ tty->termios->c_lflag) & ICANON;
1457 if (canon_change) {
1458 memset(&tty->read_flags, 0, sizeof tty->read_flags);
1459 tty->canon_head = tty->read_tail;
1460 tty->canon_data = 0;
1461 tty->erasing = 0;
1462 }
1463
1464 if (canon_change && !L_ICANON(tty) && tty->read_cnt)
1465 wake_up_interruptible(&tty->read_wait);
Alan Cox4edf1822008-02-08 04:18:44 -08001466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 tty->icanon = (L_ICANON(tty) != 0);
1468 if (test_bit(TTY_HW_COOK_IN, &tty->flags)) {
1469 tty->raw = 1;
1470 tty->real_raw = 1;
Alan Cox33f0f882006-01-09 20:54:13 -08001471 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return;
1473 }
1474 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1475 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1476 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1477 I_PARMRK(tty)) {
1478 memset(tty->process_char_map, 0, 256/8);
1479
1480 if (I_IGNCR(tty) || I_ICRNL(tty))
1481 set_bit('\r', tty->process_char_map);
1482 if (I_INLCR(tty))
1483 set_bit('\n', tty->process_char_map);
1484
1485 if (L_ICANON(tty)) {
1486 set_bit(ERASE_CHAR(tty), tty->process_char_map);
1487 set_bit(KILL_CHAR(tty), tty->process_char_map);
1488 set_bit(EOF_CHAR(tty), tty->process_char_map);
1489 set_bit('\n', tty->process_char_map);
1490 set_bit(EOL_CHAR(tty), tty->process_char_map);
1491 if (L_IEXTEN(tty)) {
1492 set_bit(WERASE_CHAR(tty),
1493 tty->process_char_map);
1494 set_bit(LNEXT_CHAR(tty),
1495 tty->process_char_map);
1496 set_bit(EOL2_CHAR(tty),
1497 tty->process_char_map);
1498 if (L_ECHO(tty))
1499 set_bit(REPRINT_CHAR(tty),
1500 tty->process_char_map);
1501 }
1502 }
1503 if (I_IXON(tty)) {
1504 set_bit(START_CHAR(tty), tty->process_char_map);
1505 set_bit(STOP_CHAR(tty), tty->process_char_map);
1506 }
1507 if (L_ISIG(tty)) {
1508 set_bit(INTR_CHAR(tty), tty->process_char_map);
1509 set_bit(QUIT_CHAR(tty), tty->process_char_map);
1510 set_bit(SUSP_CHAR(tty), tty->process_char_map);
1511 }
1512 clear_bit(__DISABLED_CHAR, tty->process_char_map);
1513 tty->raw = 0;
1514 tty->real_raw = 0;
1515 } else {
1516 tty->raw = 1;
1517 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1518 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1519 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
1520 tty->real_raw = 1;
1521 else
1522 tty->real_raw = 0;
1523 }
Alan Cox33f0f882006-01-09 20:54:13 -08001524 n_tty_set_room(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -07001525 /* The termios change make the tty ready for I/O */
1526 wake_up_interruptible(&tty->write_wait);
1527 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
1530/**
1531 * n_tty_close - close the ldisc for this tty
1532 * @tty: device
1533 *
Alan Cox4edf1822008-02-08 04:18:44 -08001534 * Called from the terminal layer when this line discipline is
1535 * being shut down, either because of a close or becsuse of a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 * discipline change. The function will not be called while other
1537 * ldisc methods are in progress.
1538 */
Alan Cox4edf1822008-02-08 04:18:44 -08001539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540static void n_tty_close(struct tty_struct *tty)
1541{
1542 n_tty_flush_buffer(tty);
1543 if (tty->read_buf) {
1544 free_buf(tty->read_buf);
1545 tty->read_buf = NULL;
1546 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001547 if (tty->echo_buf) {
1548 free_buf(tty->echo_buf);
1549 tty->echo_buf = NULL;
1550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
1552
1553/**
1554 * n_tty_open - open an ldisc
1555 * @tty: terminal to open
1556 *
Alan Cox4edf1822008-02-08 04:18:44 -08001557 * Called when this line discipline is being attached to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 * terminal device. Can sleep. Called serialized so that no
1559 * other events will occur in parallel. No further open will occur
1560 * until a close.
1561 */
1562
1563static int n_tty_open(struct tty_struct *tty)
1564{
1565 if (!tty)
1566 return -EINVAL;
1567
Joe Petersona88a69c2009-01-02 13:40:53 +00001568 /* These are ugly. Currently a malloc failure here can panic */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (!tty->read_buf) {
1570 tty->read_buf = alloc_buf();
1571 if (!tty->read_buf)
1572 return -ENOMEM;
1573 }
Joe Petersona88a69c2009-01-02 13:40:53 +00001574 if (!tty->echo_buf) {
1575 tty->echo_buf = alloc_buf();
1576 if (!tty->echo_buf)
1577 return -ENOMEM;
1578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 memset(tty->read_buf, 0, N_TTY_BUF_SIZE);
Joe Petersona88a69c2009-01-02 13:40:53 +00001580 memset(tty->echo_buf, 0, N_TTY_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 reset_buffer_flags(tty);
1582 tty->column = 0;
1583 n_tty_set_termios(tty, NULL);
1584 tty->minimum_to_wake = 1;
1585 tty->closing = 0;
1586 return 0;
1587}
1588
1589static inline int input_available_p(struct tty_struct *tty, int amt)
1590{
1591 if (tty->icanon) {
1592 if (tty->canon_data)
1593 return 1;
1594 } else if (tty->read_cnt >= (amt ? amt : 1))
1595 return 1;
1596
1597 return 0;
1598}
1599
1600/**
1601 * copy_from_read_buf - copy read data directly
1602 * @tty: terminal device
1603 * @b: user data
1604 * @nr: size of data
1605 *
Alan Cox11a96d12008-10-13 10:46:24 +01001606 * Helper function to speed up n_tty_read. It is only called when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 * ICANON is off; it copies characters straight from the tty queue to
1608 * user space directly. It can be profitably called twice; once to
1609 * drain the space from the tail pointer to the (physical) end of the
1610 * buffer, and once to drain the space from the (physical) beginning of
1611 * the buffer to head pointer.
1612 *
Paul Fulghum817d6d32006-06-28 04:26:47 -07001613 * Called under the tty->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 *
1615 */
Alan Cox4edf1822008-02-08 04:18:44 -08001616
Alan Cox33f0f882006-01-09 20:54:13 -08001617static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 unsigned char __user **b,
1619 size_t *nr)
1620
1621{
1622 int retval;
1623 size_t n;
1624 unsigned long flags;
1625
1626 retval = 0;
1627 spin_lock_irqsave(&tty->read_lock, flags);
1628 n = min(tty->read_cnt, N_TTY_BUF_SIZE - tty->read_tail);
1629 n = min(*nr, n);
1630 spin_unlock_irqrestore(&tty->read_lock, flags);
1631 if (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 retval = copy_to_user(*b, &tty->read_buf[tty->read_tail], n);
1633 n -= retval;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001634 tty_audit_add_data(tty, &tty->read_buf[tty->read_tail], n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 spin_lock_irqsave(&tty->read_lock, flags);
1636 tty->read_tail = (tty->read_tail + n) & (N_TTY_BUF_SIZE-1);
1637 tty->read_cnt -= n;
1638 spin_unlock_irqrestore(&tty->read_lock, flags);
1639 *b += n;
1640 *nr -= n;
1641 }
1642 return retval;
1643}
1644
Al Virocc4191d2008-03-29 03:08:48 +00001645extern ssize_t redirected_tty_write(struct file *, const char __user *,
Alan Cox4edf1822008-02-08 04:18:44 -08001646 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648/**
1649 * job_control - check job control
1650 * @tty: tty
1651 * @file: file handle
1652 *
1653 * Perform job control management checks on this file/tty descriptor
Alan Cox4edf1822008-02-08 04:18:44 -08001654 * and if appropriate send any needed signals and return a negative
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 * error code if action should be taken.
Alan Cox04f378b2008-04-30 00:53:29 -07001656 *
1657 * FIXME:
1658 * Locking: None - redirected write test is safe, testing
1659 * current->signal should possibly lock current->sighand
1660 * pgrp locking ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 */
Alan Cox4edf1822008-02-08 04:18:44 -08001662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663static int job_control(struct tty_struct *tty, struct file *file)
1664{
1665 /* Job control check -- must be done at start and after
1666 every sleep (POSIX.1 7.1.1.4). */
1667 /* NOTE: not yet done after every sleep pending a thorough
1668 check of the logic of this change. -- jlc */
1669 /* don't stop on /dev/console */
1670 if (file->f_op->write != redirected_tty_write &&
1671 current->signal->tty == tty) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001672 if (!tty->pgrp)
Alan Cox11a96d12008-10-13 10:46:24 +01001673 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001674 else if (task_pgrp(current) != tty->pgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (is_ignored(SIGTTIN) ||
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08001676 is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 return -EIO;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001678 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
Oleg Nesterov040b6362007-06-01 00:46:53 -07001679 set_thread_flag(TIF_SIGPENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return -ERESTARTSYS;
1681 }
1682 }
1683 return 0;
1684}
Alan Cox4edf1822008-02-08 04:18:44 -08001685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687/**
Alan Cox11a96d12008-10-13 10:46:24 +01001688 * n_tty_read - read function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 * @tty: tty device
1690 * @file: file object
1691 * @buf: userspace buffer pointer
1692 * @nr: size of I/O
1693 *
1694 * Perform reads for the line discipline. We are guaranteed that the
1695 * line discipline will not be closed under us but we may get multiple
1696 * parallel readers and must handle this ourselves. We may also get
1697 * a hangup. Always called in user context, may sleep.
1698 *
1699 * This code must be sure never to sleep through a hangup.
1700 */
Alan Cox4edf1822008-02-08 04:18:44 -08001701
Alan Cox11a96d12008-10-13 10:46:24 +01001702static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 unsigned char __user *buf, size_t nr)
1704{
1705 unsigned char __user *b = buf;
1706 DECLARE_WAITQUEUE(wait, current);
1707 int c;
1708 int minimum, time;
1709 ssize_t retval = 0;
1710 ssize_t size;
1711 long timeout;
1712 unsigned long flags;
Alan Cox04f378b2008-04-30 00:53:29 -07001713 int packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715do_it_again:
1716
Alan Cox17b82062008-10-13 10:45:06 +01001717 BUG_ON(!tty->read_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 c = job_control(tty, file);
Alan Cox4edf1822008-02-08 04:18:44 -08001720 if (c < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return c;
Alan Cox4edf1822008-02-08 04:18:44 -08001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 minimum = time = 0;
1724 timeout = MAX_SCHEDULE_TIMEOUT;
1725 if (!tty->icanon) {
1726 time = (HZ / 10) * TIME_CHAR(tty);
1727 minimum = MIN_CHAR(tty);
1728 if (minimum) {
1729 if (time)
1730 tty->minimum_to_wake = 1;
1731 else if (!waitqueue_active(&tty->read_wait) ||
1732 (tty->minimum_to_wake > minimum))
1733 tty->minimum_to_wake = minimum;
1734 } else {
1735 timeout = 0;
1736 if (time) {
1737 timeout = time;
1738 time = 0;
1739 }
1740 tty->minimum_to_wake = minimum = 1;
1741 }
1742 }
1743
1744 /*
1745 * Internal serialization of reads.
1746 */
1747 if (file->f_flags & O_NONBLOCK) {
Ingo Molnar70522e12006-03-23 03:00:31 -08001748 if (!mutex_trylock(&tty->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 return -EAGAIN;
Alan Cox4edf1822008-02-08 04:18:44 -08001750 } else {
Ingo Molnar70522e12006-03-23 03:00:31 -08001751 if (mutex_lock_interruptible(&tty->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return -ERESTARTSYS;
1753 }
Alan Cox04f378b2008-04-30 00:53:29 -07001754 packet = tty->packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 while (nr) {
1758 /* First test for status change. */
Alan Cox04f378b2008-04-30 00:53:29 -07001759 if (packet && tty->link->ctrl_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 unsigned char cs;
1761 if (b != buf)
1762 break;
Alan Cox04f378b2008-04-30 00:53:29 -07001763 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 cs = tty->link->ctrl_status;
1765 tty->link->ctrl_status = 0;
Alan Cox04f378b2008-04-30 00:53:29 -07001766 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -07001767 if (tty_put_user(tty, cs, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 retval = -EFAULT;
1769 b--;
1770 break;
1771 }
1772 nr--;
1773 break;
1774 }
1775 /* This statement must be first before checking for input
1776 so that any interrupt will set the state back to
1777 TASK_RUNNING. */
1778 set_current_state(TASK_INTERRUPTIBLE);
Alan Cox4edf1822008-02-08 04:18:44 -08001779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (((minimum - (b - buf)) < tty->minimum_to_wake) &&
1781 ((minimum - (b - buf)) >= 1))
1782 tty->minimum_to_wake = (minimum - (b - buf));
Alan Cox4edf1822008-02-08 04:18:44 -08001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (!input_available_p(tty, 0)) {
1785 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
1786 retval = -EIO;
1787 break;
1788 }
1789 if (tty_hung_up_p(file))
1790 break;
1791 if (!timeout)
1792 break;
1793 if (file->f_flags & O_NONBLOCK) {
1794 retval = -EAGAIN;
1795 break;
1796 }
1797 if (signal_pending(current)) {
1798 retval = -ERESTARTSYS;
1799 break;
1800 }
Alan Cox04f378b2008-04-30 00:53:29 -07001801 /* FIXME: does n_tty_set_room need locking ? */
Alan Cox33f0f882006-01-09 20:54:13 -08001802 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 continue;
1805 }
1806 __set_current_state(TASK_RUNNING);
1807
1808 /* Deal with packet mode. */
Alan Cox04f378b2008-04-30 00:53:29 -07001809 if (packet && b == buf) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07001810 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 retval = -EFAULT;
1812 b--;
1813 break;
1814 }
1815 nr--;
1816 }
1817
1818 if (tty->icanon) {
1819 /* N.B. avoid overrun if nr == 0 */
1820 while (nr && tty->read_cnt) {
Alan Cox4edf1822008-02-08 04:18:44 -08001821 int eol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 eol = test_and_clear_bit(tty->read_tail,
1824 tty->read_flags);
1825 c = tty->read_buf[tty->read_tail];
1826 spin_lock_irqsave(&tty->read_lock, flags);
1827 tty->read_tail = ((tty->read_tail+1) &
1828 (N_TTY_BUF_SIZE-1));
1829 tty->read_cnt--;
1830 if (eol) {
1831 /* this test should be redundant:
1832 * we shouldn't be reading data if
1833 * canon_data is 0
1834 */
1835 if (--tty->canon_data < 0)
1836 tty->canon_data = 0;
1837 }
1838 spin_unlock_irqrestore(&tty->read_lock, flags);
1839
1840 if (!eol || (c != __DISABLED_CHAR)) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07001841 if (tty_put_user(tty, c, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 retval = -EFAULT;
1843 b--;
1844 break;
1845 }
1846 nr--;
1847 }
Miloslav Trmac522ed772007-07-15 23:40:56 -07001848 if (eol) {
1849 tty_audit_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 break;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853 if (retval)
1854 break;
1855 } else {
1856 int uncopied;
Alan Cox04f378b2008-04-30 00:53:29 -07001857 /* The copy function takes the read lock and handles
1858 locking internally for this case */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 uncopied = copy_from_read_buf(tty, &b, &nr);
1860 uncopied += copy_from_read_buf(tty, &b, &nr);
1861 if (uncopied) {
1862 retval = -EFAULT;
1863 break;
1864 }
1865 }
1866
1867 /* If there is enough space in the read buffer now, let the
1868 * low-level driver know. We use n_tty_chars_in_buffer() to
1869 * check the buffer, as it now knows about canonical mode.
1870 * Otherwise, if the driver is throttled and the line is
1871 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
1872 * we won't get any more characters.
1873 */
Paul Mackerras289a1e92006-06-12 12:16:26 +10001874 if (n_tty_chars_in_buffer(tty) <= TTY_THRESHOLD_UNTHROTTLE) {
1875 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 check_unthrottle(tty);
Paul Mackerras289a1e92006-06-12 12:16:26 +10001877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 if (b - buf >= minimum)
1880 break;
1881 if (time)
1882 timeout = time;
1883 }
Ingo Molnar70522e12006-03-23 03:00:31 -08001884 mutex_unlock(&tty->atomic_read_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 remove_wait_queue(&tty->read_wait, &wait);
1886
1887 if (!waitqueue_active(&tty->read_wait))
1888 tty->minimum_to_wake = minimum;
1889
1890 __set_current_state(TASK_RUNNING);
1891 size = b - buf;
1892 if (size) {
1893 retval = size;
1894 if (nr)
Alan Cox4edf1822008-02-08 04:18:44 -08001895 clear_bit(TTY_PUSH, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 } else if (test_and_clear_bit(TTY_PUSH, &tty->flags))
1897 goto do_it_again;
1898
Alan Cox33f0f882006-01-09 20:54:13 -08001899 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 return retval;
1901}
1902
1903/**
Alan Cox11a96d12008-10-13 10:46:24 +01001904 * n_tty_write - write function for tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 * @tty: tty device
1906 * @file: file object
1907 * @buf: userspace buffer pointer
1908 * @nr: size of I/O
1909 *
Joe Petersona88a69c2009-01-02 13:40:53 +00001910 * Write function of the terminal device. This is serialized with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 * respect to other write callers but not to termios changes, reads
Joe Petersona88a69c2009-01-02 13:40:53 +00001912 * and other such events. Since the receive code will echo characters,
1913 * thus calling driver write methods, the output_lock is used in
1914 * the output processing functions called here as well as in the
1915 * echo processing function to protect the column state and space
1916 * left in the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 *
1918 * This code must be sure never to sleep through a hangup.
Joe Petersona88a69c2009-01-02 13:40:53 +00001919 *
1920 * Locking: output_lock to protect column state and space left
1921 * (note that the process_output*() functions take this
1922 * lock themselves)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 */
Alan Cox4edf1822008-02-08 04:18:44 -08001924
Alan Cox11a96d12008-10-13 10:46:24 +01001925static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
Joe Petersona88a69c2009-01-02 13:40:53 +00001926 const unsigned char *buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
1928 const unsigned char *b = buf;
1929 DECLARE_WAITQUEUE(wait, current);
1930 int c;
1931 ssize_t retval = 0;
1932
1933 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
1934 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
1935 retval = tty_check_change(tty);
1936 if (retval)
1937 return retval;
1938 }
1939
Joe Petersona88a69c2009-01-02 13:40:53 +00001940 /* Write out any echoed characters that are still pending */
1941 process_echoes(tty);
Alan Cox300a6202009-01-02 13:41:04 +00001942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 add_wait_queue(&tty->write_wait, &wait);
1944 while (1) {
1945 set_current_state(TASK_INTERRUPTIBLE);
1946 if (signal_pending(current)) {
1947 retval = -ERESTARTSYS;
1948 break;
1949 }
1950 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
1951 retval = -EIO;
1952 break;
1953 }
1954 if (O_OPOST(tty) && !(test_bit(TTY_HW_COOK_OUT, &tty->flags))) {
1955 while (nr > 0) {
Joe Petersona88a69c2009-01-02 13:40:53 +00001956 ssize_t num = process_output_block(tty, b, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (num < 0) {
1958 if (num == -EAGAIN)
1959 break;
1960 retval = num;
1961 goto break_out;
1962 }
1963 b += num;
1964 nr -= num;
1965 if (nr == 0)
1966 break;
1967 c = *b;
Joe Petersona88a69c2009-01-02 13:40:53 +00001968 if (process_output(c, tty) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 break;
1970 b++; nr--;
1971 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001972 if (tty->ops->flush_chars)
1973 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 } else {
Roman Zippeld6afe272005-07-07 17:56:55 -07001975 while (nr > 0) {
Alan Coxf34d7a52008-04-30 00:54:13 -07001976 c = tty->ops->write(tty, b, nr);
Roman Zippeld6afe272005-07-07 17:56:55 -07001977 if (c < 0) {
1978 retval = c;
1979 goto break_out;
1980 }
1981 if (!c)
1982 break;
1983 b += c;
1984 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987 if (!nr)
1988 break;
1989 if (file->f_flags & O_NONBLOCK) {
1990 retval = -EAGAIN;
1991 break;
1992 }
1993 schedule();
1994 }
1995break_out:
1996 __set_current_state(TASK_RUNNING);
1997 remove_wait_queue(&tty->write_wait, &wait);
1998 return (b - buf) ? b - buf : retval;
1999}
2000
2001/**
Alan Cox11a96d12008-10-13 10:46:24 +01002002 * n_tty_poll - poll method for N_TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 * @tty: terminal device
2004 * @file: file accessing it
2005 * @wait: poll table
2006 *
2007 * Called when the line discipline is asked to poll() for data or
2008 * for special events. This code is not serialized with respect to
2009 * other events save open/close.
2010 *
2011 * This code must be sure never to sleep through a hangup.
2012 * Called without the kernel lock held - fine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 */
Alan Cox4edf1822008-02-08 04:18:44 -08002014
Alan Cox11a96d12008-10-13 10:46:24 +01002015static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
Alan Cox4edf1822008-02-08 04:18:44 -08002016 poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
2018 unsigned int mask = 0;
2019
2020 poll_wait(file, &tty->read_wait, wait);
2021 poll_wait(file, &tty->write_wait, wait);
2022 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
2023 mask |= POLLIN | POLLRDNORM;
2024 if (tty->packet && tty->link->ctrl_status)
2025 mask |= POLLPRI | POLLIN | POLLRDNORM;
2026 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2027 mask |= POLLHUP;
2028 if (tty_hung_up_p(file))
2029 mask |= POLLHUP;
2030 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2031 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
2032 tty->minimum_to_wake = MIN_CHAR(tty);
2033 else
2034 tty->minimum_to_wake = 1;
2035 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002036 if (tty->ops->write && !tty_is_writelocked(tty) &&
2037 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2038 tty_write_room(tty) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 mask |= POLLOUT | POLLWRNORM;
2040 return mask;
2041}
2042
Alan Cox47afa7a2008-10-13 10:44:17 +01002043static unsigned long inq_canon(struct tty_struct *tty)
2044{
2045 int nr, head, tail;
2046
Alan Cox17b82062008-10-13 10:45:06 +01002047 if (!tty->canon_data)
Alan Cox47afa7a2008-10-13 10:44:17 +01002048 return 0;
2049 head = tty->canon_head;
2050 tail = tty->read_tail;
2051 nr = (head - tail) & (N_TTY_BUF_SIZE-1);
2052 /* Skip EOF-chars.. */
2053 while (head != tail) {
2054 if (test_bit(tail, tty->read_flags) &&
2055 tty->read_buf[tail] == __DISABLED_CHAR)
2056 nr--;
2057 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
2058 }
2059 return nr;
2060}
2061
2062static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2063 unsigned int cmd, unsigned long arg)
2064{
2065 int retval;
2066
2067 switch (cmd) {
2068 case TIOCOUTQ:
2069 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2070 case TIOCINQ:
Alan Cox17b82062008-10-13 10:45:06 +01002071 /* FIXME: Locking */
Alan Cox47afa7a2008-10-13 10:44:17 +01002072 retval = tty->read_cnt;
2073 if (L_ICANON(tty))
2074 retval = inq_canon(tty);
2075 return put_user(retval, (unsigned int __user *) arg);
2076 default:
2077 return n_tty_ioctl_helper(tty, file, cmd, arg);
2078 }
2079}
2080
Alan Coxa352def2008-07-16 21:53:12 +01002081struct tty_ldisc_ops tty_ldisc_N_TTY = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002082 .magic = TTY_LDISC_MAGIC,
2083 .name = "n_tty",
2084 .open = n_tty_open,
2085 .close = n_tty_close,
2086 .flush_buffer = n_tty_flush_buffer,
2087 .chars_in_buffer = n_tty_chars_in_buffer,
Alan Cox11a96d12008-10-13 10:46:24 +01002088 .read = n_tty_read,
2089 .write = n_tty_write,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002090 .ioctl = n_tty_ioctl,
2091 .set_termios = n_tty_set_termios,
Alan Cox11a96d12008-10-13 10:46:24 +01002092 .poll = n_tty_poll,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002093 .receive_buf = n_tty_receive_buf,
2094 .write_wakeup = n_tty_write_wakeup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095};