blob: e0e3815f92bafc4888956b96f87d790936c299f2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * n_tty.c --- implements the N_TTY line discipline.
3 *
4 * 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
11 * to N_TTY if it can not switch to any other line discipline.
12 *
13 * Written by Theodore Ts'o, Copyright 1994.
14 *
15 * This file also contains code originally written by Linus Torvalds,
16 * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
17 *
18 * 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 *
23 * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of
24 * 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>.
29 * Also fixed a bug in BLOCKING mode where write_chan returns
30 * 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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <asm/uaccess.h>
52#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
65static inline unsigned char *alloc_buf(void)
66{
Al Virob4e3ca12005-10-21 03:22:34 -040067 gfp_t prio = in_interrupt() ? GFP_ATOMIC : GFP_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 if (PAGE_SIZE != N_TTY_BUF_SIZE)
70 return kmalloc(N_TTY_BUF_SIZE, prio);
71 else
72 return (unsigned char *)__get_free_page(prio);
73}
74
75static inline void free_buf(unsigned char *buf)
76{
77 if (PAGE_SIZE != N_TTY_BUF_SIZE)
78 kfree(buf);
79 else
80 free_page((unsigned long) buf);
81}
82
Miloslav Trmac522ed772007-07-15 23:40:56 -070083static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
84 unsigned char __user *ptr)
85{
86 tty_audit_add_data(tty, &x, 1);
87 return put_user(x, ptr);
88}
89
Alan Cox33f0f882006-01-09 20:54:13 -080090/**
91 * n_tty_set__room - receive space
92 * @tty: terminal
93 *
94 * Called by the driver to find out how much data it is
95 * permitted to feed to the line discipline without any being lost
96 * and thus to manage flow control. Not serialized. Answers for the
97 * "instant".
98 */
99
100static void n_tty_set_room(struct tty_struct *tty)
101{
102 int left = N_TTY_BUF_SIZE - tty->read_cnt - 1;
103
104 /*
105 * If we are doing input canonicalization, and there are no
106 * pending newlines, let characters through without limit, so
107 * that erase characters will be handled. Other excess
108 * characters will be beeped.
109 */
110 if (left <= 0)
111 left = tty->icanon && !tty->canon_data;
112 tty->receive_room = left;
113}
114
115static void put_tty_queue_nolock(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 if (tty->read_cnt < N_TTY_BUF_SIZE) {
118 tty->read_buf[tty->read_head] = c;
119 tty->read_head = (tty->read_head + 1) & (N_TTY_BUF_SIZE-1);
120 tty->read_cnt++;
121 }
122}
123
Alan Cox33f0f882006-01-09 20:54:13 -0800124static void put_tty_queue(unsigned char c, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 unsigned long flags;
127 /*
128 * The problem of stomping on the buffers ends here.
129 * Why didn't anyone see this one coming? --AJK
130 */
131 spin_lock_irqsave(&tty->read_lock, flags);
132 put_tty_queue_nolock(c, tty);
133 spin_unlock_irqrestore(&tty->read_lock, flags);
134}
135
136/**
137 * check_unthrottle - allow new receive data
138 * @tty; tty device
139 *
140 * Check whether to call the driver.unthrottle function.
141 * We test the TTY_THROTTLED bit first so that it always
142 * indicates the current state. The decision about whether
143 * it is worth allowing more input has been taken by the caller.
Ingo Molnar70522e12006-03-23 03:00:31 -0800144 * Can sleep, may be called under the atomic_read_lock mutex but
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * this is not guaranteed.
146 */
147
148static void check_unthrottle(struct tty_struct * tty)
149{
150 if (tty->count &&
151 test_and_clear_bit(TTY_THROTTLED, &tty->flags) &&
152 tty->driver->unthrottle)
153 tty->driver->unthrottle(tty);
154}
155
156/**
157 * reset_buffer_flags - reset buffer state
158 * @tty: terminal to reset
159 *
160 * Reset the read buffer counters, clear the flags,
161 * and make sure the driver is unthrottled. Called
162 * from n_tty_open() and n_tty_flush_buffer().
163 */
164static void reset_buffer_flags(struct tty_struct *tty)
165{
166 unsigned long flags;
167
168 spin_lock_irqsave(&tty->read_lock, flags);
169 tty->read_head = tty->read_tail = tty->read_cnt = 0;
170 spin_unlock_irqrestore(&tty->read_lock, flags);
171 tty->canon_head = tty->canon_data = tty->erasing = 0;
172 memset(&tty->read_flags, 0, sizeof tty->read_flags);
Alan Cox33f0f882006-01-09 20:54:13 -0800173 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 check_unthrottle(tty);
175}
176
177/**
178 * n_tty_flush_buffer - clean input queue
179 * @tty: terminal device
180 *
181 * Flush the input buffer. Called when the line discipline is
182 * being closed, when the tty layer wants the buffer flushed (eg
183 * at hangup) or when the N_TTY line discipline internally has to
184 * clean the pending queue (for example some signals).
185 *
186 * FIXME: tty->ctrl_status is not spinlocked and relies on
187 * lock_kernel() still.
188 */
189
190static void n_tty_flush_buffer(struct tty_struct * tty)
191{
192 /* clear everything and unthrottle the driver */
193 reset_buffer_flags(tty);
194
195 if (!tty->link)
196 return;
197
198 if (tty->link->packet) {
199 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
200 wake_up_interruptible(&tty->link->read_wait);
201 }
202}
203
204/**
205 * n_tty_chars_in_buffer - report available bytes
206 * @tty: tty device
207 *
208 * Report the number of characters buffered to be delivered to user
209 * at this instant in time.
210 */
211
212static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
213{
214 unsigned long flags;
215 ssize_t n = 0;
216
217 spin_lock_irqsave(&tty->read_lock, flags);
218 if (!tty->icanon) {
219 n = tty->read_cnt;
220 } else if (tty->canon_data) {
221 n = (tty->canon_head > tty->read_tail) ?
222 tty->canon_head - tty->read_tail :
223 tty->canon_head + (N_TTY_BUF_SIZE - tty->read_tail);
224 }
225 spin_unlock_irqrestore(&tty->read_lock, flags);
226 return n;
227}
228
229/**
230 * is_utf8_continuation - utf8 multibyte check
231 * @c: byte to check
232 *
233 * Returns true if the utf8 character 'c' is a multibyte continuation
234 * character. We use this to correctly compute the on screen size
235 * of the character when printing
236 */
237
238static inline int is_utf8_continuation(unsigned char c)
239{
240 return (c & 0xc0) == 0x80;
241}
242
243/**
244 * is_continuation - multibyte check
245 * @c: byte to check
246 *
247 * Returns true if the utf8 character 'c' is a multibyte continuation
248 * character and the terminal is in unicode mode.
249 */
250
251static inline int is_continuation(unsigned char c, struct tty_struct *tty)
252{
253 return I_IUTF8(tty) && is_utf8_continuation(c);
254}
255
256/**
257 * opost - output post processor
258 * @c: character (or partial unicode symbol)
259 * @tty: terminal device
260 *
261 * Perform OPOST processing. Returns -1 when the output device is
262 * full and the character must be retried. Note that Linux currently
263 * ignores TABDLY, CRDLY, VTDLY, FFDLY and NLDLY. They simply aren't
264 * relevant in the world today. If you ever need them, add them here.
265 *
266 * Called from both the receive and transmit sides and can be called
267 * re-entrantly. Relies on lock_kernel() still.
268 */
269
270static int opost(unsigned char c, struct tty_struct *tty)
271{
272 int space, spaces;
273
274 space = tty->driver->write_room(tty);
275 if (!space)
276 return -1;
277
278 if (O_OPOST(tty)) {
279 switch (c) {
280 case '\n':
281 if (O_ONLRET(tty))
282 tty->column = 0;
283 if (O_ONLCR(tty)) {
284 if (space < 2)
285 return -1;
286 tty->driver->put_char(tty, '\r');
287 tty->column = 0;
288 }
289 tty->canon_column = tty->column;
290 break;
291 case '\r':
292 if (O_ONOCR(tty) && tty->column == 0)
293 return 0;
294 if (O_OCRNL(tty)) {
295 c = '\n';
296 if (O_ONLRET(tty))
297 tty->canon_column = tty->column = 0;
298 break;
299 }
300 tty->canon_column = tty->column = 0;
301 break;
302 case '\t':
303 spaces = 8 - (tty->column & 7);
304 if (O_TABDLY(tty) == XTABS) {
305 if (space < spaces)
306 return -1;
307 tty->column += spaces;
308 tty->driver->write(tty, " ", spaces);
309 return 0;
310 }
311 tty->column += spaces;
312 break;
313 case '\b':
314 if (tty->column > 0)
315 tty->column--;
316 break;
317 default:
318 if (O_OLCUC(tty))
319 c = toupper(c);
320 if (!iscntrl(c) && !is_continuation(c, tty))
321 tty->column++;
322 break;
323 }
324 }
325 tty->driver->put_char(tty, c);
326 return 0;
327}
328
329/**
330 * opost_block - block postprocess
331 * @tty: terminal device
332 * @inbuf: user buffer
333 * @nr: number of bytes
334 *
335 * This path is used to speed up block console writes, among other
336 * things when processing blocks of output data. It handles only
337 * the simple cases normally found and helps to generate blocks of
338 * symbols for the console driver and thus improve performance.
339 *
340 * Called from write_chan under the tty layer write lock.
341 */
342
343static ssize_t opost_block(struct tty_struct * tty,
344 const unsigned char * buf, unsigned int nr)
345{
346 int space;
347 int i;
348 const unsigned char *cp;
349
350 space = tty->driver->write_room(tty);
351 if (!space)
352 return 0;
353 if (nr > space)
354 nr = space;
355
356 for (i = 0, cp = buf; i < nr; i++, cp++) {
357 switch (*cp) {
358 case '\n':
359 if (O_ONLRET(tty))
360 tty->column = 0;
361 if (O_ONLCR(tty))
362 goto break_out;
363 tty->canon_column = tty->column;
364 break;
365 case '\r':
366 if (O_ONOCR(tty) && tty->column == 0)
367 goto break_out;
368 if (O_OCRNL(tty))
369 goto break_out;
370 tty->canon_column = tty->column = 0;
371 break;
372 case '\t':
373 goto break_out;
374 case '\b':
375 if (tty->column > 0)
376 tty->column--;
377 break;
378 default:
379 if (O_OLCUC(tty))
380 goto break_out;
381 if (!iscntrl(*cp))
382 tty->column++;
383 break;
384 }
385 }
386break_out:
387 if (tty->driver->flush_chars)
388 tty->driver->flush_chars(tty);
389 i = tty->driver->write(tty, buf, i);
390 return i;
391}
392
393
394/**
395 * put_char - write character to driver
396 * @c: character (or part of unicode symbol)
397 * @tty: terminal device
398 *
399 * Queue a byte to the driver layer for output
400 */
401
402static inline void put_char(unsigned char c, struct tty_struct *tty)
403{
404 tty->driver->put_char(tty, c);
405}
406
407/**
408 * echo_char - echo characters
409 * @c: unicode byte to echo
410 * @tty: terminal device
411 *
412 * Echo user input back onto the screen. This must be called only when
413 * L_ECHO(tty) is true. Called from the driver receive_buf path.
414 */
415
416static void echo_char(unsigned char c, struct tty_struct *tty)
417{
418 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t') {
419 put_char('^', tty);
420 put_char(c ^ 0100, tty);
421 tty->column += 2;
422 } else
423 opost(c, tty);
424}
425
426static inline void finish_erasing(struct tty_struct *tty)
427{
428 if (tty->erasing) {
429 put_char('/', tty);
430 tty->column++;
431 tty->erasing = 0;
432 }
433}
434
435/**
436 * eraser - handle erase function
437 * @c: character input
438 * @tty: terminal device
439 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200440 * Perform erase and necessary output when an erase character is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * present in the stream from the driver layer. Handles the complexities
442 * of UTF-8 multibyte symbols.
443 */
444
445static void eraser(unsigned char c, struct tty_struct *tty)
446{
447 enum { ERASE, WERASE, KILL } kill_type;
448 int head, seen_alnums, cnt;
449 unsigned long flags;
450
451 if (tty->read_head == tty->canon_head) {
452 /* opost('\a', tty); */ /* what do you think? */
453 return;
454 }
455 if (c == ERASE_CHAR(tty))
456 kill_type = ERASE;
457 else if (c == WERASE_CHAR(tty))
458 kill_type = WERASE;
459 else {
460 if (!L_ECHO(tty)) {
461 spin_lock_irqsave(&tty->read_lock, flags);
462 tty->read_cnt -= ((tty->read_head - tty->canon_head) &
463 (N_TTY_BUF_SIZE - 1));
464 tty->read_head = tty->canon_head;
465 spin_unlock_irqrestore(&tty->read_lock, flags);
466 return;
467 }
468 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
469 spin_lock_irqsave(&tty->read_lock, flags);
470 tty->read_cnt -= ((tty->read_head - tty->canon_head) &
471 (N_TTY_BUF_SIZE - 1));
472 tty->read_head = tty->canon_head;
473 spin_unlock_irqrestore(&tty->read_lock, flags);
474 finish_erasing(tty);
475 echo_char(KILL_CHAR(tty), tty);
476 /* Add a newline if ECHOK is on and ECHOKE is off. */
477 if (L_ECHOK(tty))
478 opost('\n', tty);
479 return;
480 }
481 kill_type = KILL;
482 }
483
484 seen_alnums = 0;
485 while (tty->read_head != tty->canon_head) {
486 head = tty->read_head;
487
488 /* erase a single possibly multibyte character */
489 do {
490 head = (head - 1) & (N_TTY_BUF_SIZE-1);
491 c = tty->read_buf[head];
492 } while (is_continuation(c, tty) && head != tty->canon_head);
493
494 /* do not partially erase */
495 if (is_continuation(c, tty))
496 break;
497
498 if (kill_type == WERASE) {
499 /* Equivalent to BSD's ALTWERASE. */
500 if (isalnum(c) || c == '_')
501 seen_alnums++;
502 else if (seen_alnums)
503 break;
504 }
505 cnt = (tty->read_head - head) & (N_TTY_BUF_SIZE-1);
506 spin_lock_irqsave(&tty->read_lock, flags);
507 tty->read_head = head;
508 tty->read_cnt -= cnt;
509 spin_unlock_irqrestore(&tty->read_lock, flags);
510 if (L_ECHO(tty)) {
511 if (L_ECHOPRT(tty)) {
512 if (!tty->erasing) {
513 put_char('\\', tty);
514 tty->column++;
515 tty->erasing = 1;
516 }
517 /* if cnt > 1, output a multi-byte character */
518 echo_char(c, tty);
519 while (--cnt > 0) {
520 head = (head+1) & (N_TTY_BUF_SIZE-1);
521 put_char(tty->read_buf[head], tty);
522 }
523 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
524 echo_char(ERASE_CHAR(tty), tty);
525 } else if (c == '\t') {
526 unsigned int col = tty->canon_column;
527 unsigned long tail = tty->canon_head;
528
529 /* Find the column of the last char. */
530 while (tail != tty->read_head) {
531 c = tty->read_buf[tail];
532 if (c == '\t')
533 col = (col | 7) + 1;
534 else if (iscntrl(c)) {
535 if (L_ECHOCTL(tty))
536 col += 2;
537 } else if (!is_continuation(c, tty))
538 col++;
539 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
540 }
541
542 /* should never happen */
543 if (tty->column > 0x80000000)
544 tty->column = 0;
545
546 /* Now backup to that column. */
547 while (tty->column > col) {
548 /* Can't use opost here. */
549 put_char('\b', tty);
550 if (tty->column > 0)
551 tty->column--;
552 }
553 } else {
554 if (iscntrl(c) && L_ECHOCTL(tty)) {
555 put_char('\b', tty);
556 put_char(' ', tty);
557 put_char('\b', tty);
558 if (tty->column > 0)
559 tty->column--;
560 }
561 if (!iscntrl(c) || L_ECHOCTL(tty)) {
562 put_char('\b', tty);
563 put_char(' ', tty);
564 put_char('\b', tty);
565 if (tty->column > 0)
566 tty->column--;
567 }
568 }
569 }
570 if (kill_type == ERASE)
571 break;
572 }
573 if (tty->read_head == tty->canon_head)
574 finish_erasing(tty);
575}
576
577/**
578 * isig - handle the ISIG optio
579 * @sig: signal
580 * @tty: terminal
581 * @flush: force flush
582 *
583 * Called when a signal is being sent due to terminal input. This
584 * may caus terminal flushing to take place according to the termios
585 * settings and character used. Called from the driver receive_buf
586 * path so serialized.
587 */
588
589static inline void isig(int sig, struct tty_struct *tty, int flush)
590{
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800591 if (tty->pgrp)
592 kill_pgrp(tty->pgrp, sig, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (flush || !L_NOFLSH(tty)) {
594 n_tty_flush_buffer(tty);
595 if (tty->driver->flush_buffer)
596 tty->driver->flush_buffer(tty);
597 }
598}
599
600/**
601 * n_tty_receive_break - handle break
602 * @tty: terminal
603 *
604 * An RS232 break event has been hit in the incoming bitstream. This
605 * can cause a variety of events depending upon the termios settings.
606 *
607 * Called from the receive_buf path so single threaded.
608 */
609
610static inline void n_tty_receive_break(struct tty_struct *tty)
611{
612 if (I_IGNBRK(tty))
613 return;
614 if (I_BRKINT(tty)) {
615 isig(SIGINT, tty, 1);
616 return;
617 }
618 if (I_PARMRK(tty)) {
619 put_tty_queue('\377', tty);
620 put_tty_queue('\0', tty);
621 }
622 put_tty_queue('\0', tty);
623 wake_up_interruptible(&tty->read_wait);
624}
625
626/**
627 * n_tty_receive_overrun - handle overrun reporting
628 * @tty: terminal
629 *
630 * Data arrived faster than we could process it. While the tty
631 * driver has flagged this the bits that were missed are gone
632 * forever.
633 *
634 * Called from the receive_buf path so single threaded. Does not
635 * need locking as num_overrun and overrun_time are function
636 * private.
637 */
638
639static inline void n_tty_receive_overrun(struct tty_struct *tty)
640{
641 char buf[64];
642
643 tty->num_overrun++;
644 if (time_before(tty->overrun_time, jiffies - HZ) ||
645 time_after(tty->overrun_time, jiffies)) {
646 printk(KERN_WARNING "%s: %d input overrun(s)\n",
647 tty_name(tty, buf),
648 tty->num_overrun);
649 tty->overrun_time = jiffies;
650 tty->num_overrun = 0;
651 }
652}
653
654/**
655 * n_tty_receive_parity_error - error notifier
656 * @tty: terminal device
657 * @c: character
658 *
659 * Process a parity error and queue the right data to indicate
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200660 * the error case if necessary. Locking as per n_tty_receive_buf.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 */
662static inline void n_tty_receive_parity_error(struct tty_struct *tty,
663 unsigned char c)
664{
665 if (I_IGNPAR(tty)) {
666 return;
667 }
668 if (I_PARMRK(tty)) {
669 put_tty_queue('\377', tty);
670 put_tty_queue('\0', tty);
671 put_tty_queue(c, tty);
672 } else if (I_INPCK(tty))
673 put_tty_queue('\0', tty);
674 else
675 put_tty_queue(c, tty);
676 wake_up_interruptible(&tty->read_wait);
677}
678
679/**
680 * n_tty_receive_char - perform processing
681 * @tty: terminal device
682 * @c: character
683 *
684 * Process an individual character of input received from the driver.
685 * This is serialized with respect to itself by the rules for the
686 * driver above.
687 */
688
689static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
690{
691 unsigned long flags;
692
693 if (tty->raw) {
694 put_tty_queue(c, tty);
695 return;
696 }
697
698 if (tty->stopped && !tty->flow_stopped &&
699 I_IXON(tty) && I_IXANY(tty)) {
700 start_tty(tty);
701 return;
702 }
703
704 if (I_ISTRIP(tty))
705 c &= 0x7f;
706 if (I_IUCLC(tty) && L_IEXTEN(tty))
707 c=tolower(c);
708
709 if (tty->closing) {
710 if (I_IXON(tty)) {
711 if (c == START_CHAR(tty))
712 start_tty(tty);
713 else if (c == STOP_CHAR(tty))
714 stop_tty(tty);
715 }
716 return;
717 }
718
719 /*
720 * If the previous character was LNEXT, or we know that this
721 * character is not one of the characters that we'll have to
722 * handle specially, do shortcut processing to speed things
723 * up.
724 */
725 if (!test_bit(c, tty->process_char_map) || tty->lnext) {
726 finish_erasing(tty);
727 tty->lnext = 0;
728 if (L_ECHO(tty)) {
729 if (tty->read_cnt >= N_TTY_BUF_SIZE-1) {
730 put_char('\a', tty); /* beep if no space */
731 return;
732 }
733 /* Record the column of first canon char. */
734 if (tty->canon_head == tty->read_head)
735 tty->canon_column = tty->column;
736 echo_char(c, tty);
737 }
738 if (I_PARMRK(tty) && c == (unsigned char) '\377')
739 put_tty_queue(c, tty);
740 put_tty_queue(c, tty);
741 return;
742 }
743
744 if (c == '\r') {
745 if (I_IGNCR(tty))
746 return;
747 if (I_ICRNL(tty))
748 c = '\n';
749 } else if (c == '\n' && I_INLCR(tty))
750 c = '\r';
751 if (I_IXON(tty)) {
752 if (c == START_CHAR(tty)) {
753 start_tty(tty);
754 return;
755 }
756 if (c == STOP_CHAR(tty)) {
757 stop_tty(tty);
758 return;
759 }
760 }
761 if (L_ISIG(tty)) {
762 int signal;
763 signal = SIGINT;
764 if (c == INTR_CHAR(tty))
765 goto send_signal;
766 signal = SIGQUIT;
767 if (c == QUIT_CHAR(tty))
768 goto send_signal;
769 signal = SIGTSTP;
770 if (c == SUSP_CHAR(tty)) {
771send_signal:
Joe Petersonec5b1152008-02-06 01:37:38 -0800772 /*
773 * Echo character, and then send the signal.
774 * Note that we do not use isig() here because we want
775 * the order to be:
776 * 1) flush, 2) echo, 3) signal
777 */
778 if (!L_NOFLSH(tty)) {
779 n_tty_flush_buffer(tty);
780 if (tty->driver->flush_buffer)
781 tty->driver->flush_buffer(tty);
782 }
783 if (L_ECHO(tty))
784 echo_char(c, tty);
785 if (tty->pgrp)
786 kill_pgrp(tty->pgrp, signal, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return;
788 }
789 }
790 if (tty->icanon) {
791 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
792 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
793 eraser(c, tty);
794 return;
795 }
796 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
797 tty->lnext = 1;
798 if (L_ECHO(tty)) {
799 finish_erasing(tty);
800 if (L_ECHOCTL(tty)) {
801 put_char('^', tty);
802 put_char('\b', tty);
803 }
804 }
805 return;
806 }
807 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
808 L_IEXTEN(tty)) {
809 unsigned long tail = tty->canon_head;
810
811 finish_erasing(tty);
812 echo_char(c, tty);
813 opost('\n', tty);
814 while (tail != tty->read_head) {
815 echo_char(tty->read_buf[tail], tty);
816 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
817 }
818 return;
819 }
820 if (c == '\n') {
821 if (L_ECHO(tty) || L_ECHONL(tty)) {
Roman Zippeld6afe272005-07-07 17:56:55 -0700822 if (tty->read_cnt >= N_TTY_BUF_SIZE-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 put_char('\a', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 opost('\n', tty);
825 }
826 goto handle_newline;
827 }
828 if (c == EOF_CHAR(tty)) {
829 if (tty->canon_head != tty->read_head)
830 set_bit(TTY_PUSH, &tty->flags);
831 c = __DISABLED_CHAR;
832 goto handle_newline;
833 }
834 if ((c == EOL_CHAR(tty)) ||
835 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
836 /*
837 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
838 */
839 if (L_ECHO(tty)) {
Roman Zippeld6afe272005-07-07 17:56:55 -0700840 if (tty->read_cnt >= N_TTY_BUF_SIZE-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 put_char('\a', tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 /* Record the column of first canon char. */
843 if (tty->canon_head == tty->read_head)
844 tty->canon_column = tty->column;
845 echo_char(c, tty);
846 }
847 /*
848 * XXX does PARMRK doubling happen for
849 * EOL_CHAR and EOL2_CHAR?
850 */
851 if (I_PARMRK(tty) && c == (unsigned char) '\377')
852 put_tty_queue(c, tty);
853
854 handle_newline:
855 spin_lock_irqsave(&tty->read_lock, flags);
856 set_bit(tty->read_head, tty->read_flags);
857 put_tty_queue_nolock(c, tty);
858 tty->canon_head = tty->read_head;
859 tty->canon_data++;
860 spin_unlock_irqrestore(&tty->read_lock, flags);
861 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
862 if (waitqueue_active(&tty->read_wait))
863 wake_up_interruptible(&tty->read_wait);
864 return;
865 }
866 }
867
868 finish_erasing(tty);
869 if (L_ECHO(tty)) {
870 if (tty->read_cnt >= N_TTY_BUF_SIZE-1) {
871 put_char('\a', tty); /* beep if no space */
872 return;
873 }
874 if (c == '\n')
875 opost('\n', tty);
876 else {
877 /* Record the column of first canon char. */
878 if (tty->canon_head == tty->read_head)
879 tty->canon_column = tty->column;
880 echo_char(c, tty);
881 }
882 }
883
884 if (I_PARMRK(tty) && c == (unsigned char) '\377')
885 put_tty_queue(c, tty);
886
887 put_tty_queue(c, tty);
888}
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891/**
892 * n_tty_write_wakeup - asynchronous I/O notifier
893 * @tty: tty device
894 *
895 * Required for the ptys, serial driver etc. since processes
896 * that attach themselves to the master and rely on ASYNC
897 * IO must be woken up
898 */
899
900static void n_tty_write_wakeup(struct tty_struct *tty)
901{
902 if (tty->fasync)
903 {
904 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
905 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
906 }
907 return;
908}
909
910/**
911 * n_tty_receive_buf - data receive
912 * @tty: terminal device
913 * @cp: buffer
914 * @fp: flag buffer
915 * @count: characters
916 *
917 * Called by the terminal driver when a block of characters has
918 * been received. This function must be called from soft contexts
919 * not from interrupt context. The driver is responsible for making
920 * calls one at a time and in order (or using flush_to_ldisc)
921 */
922
923static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
924 char *fp, int count)
925{
926 const unsigned char *p;
927 char *f, flags = TTY_NORMAL;
928 int i;
929 char buf[64];
930 unsigned long cpuflags;
931
932 if (!tty->read_buf)
933 return;
934
935 if (tty->real_raw) {
936 spin_lock_irqsave(&tty->read_lock, cpuflags);
937 i = min(N_TTY_BUF_SIZE - tty->read_cnt,
938 N_TTY_BUF_SIZE - tty->read_head);
939 i = min(count, i);
940 memcpy(tty->read_buf + tty->read_head, cp, i);
941 tty->read_head = (tty->read_head + i) & (N_TTY_BUF_SIZE-1);
942 tty->read_cnt += i;
943 cp += i;
944 count -= i;
945
946 i = min(N_TTY_BUF_SIZE - tty->read_cnt,
947 N_TTY_BUF_SIZE - tty->read_head);
948 i = min(count, i);
949 memcpy(tty->read_buf + tty->read_head, cp, i);
950 tty->read_head = (tty->read_head + i) & (N_TTY_BUF_SIZE-1);
951 tty->read_cnt += i;
952 spin_unlock_irqrestore(&tty->read_lock, cpuflags);
953 } else {
954 for (i=count, p = cp, f = fp; i; i--, p++) {
955 if (f)
956 flags = *f++;
957 switch (flags) {
958 case TTY_NORMAL:
959 n_tty_receive_char(tty, *p);
960 break;
961 case TTY_BREAK:
962 n_tty_receive_break(tty);
963 break;
964 case TTY_PARITY:
965 case TTY_FRAME:
966 n_tty_receive_parity_error(tty, *p);
967 break;
968 case TTY_OVERRUN:
969 n_tty_receive_overrun(tty);
970 break;
971 default:
972 printk("%s: unknown flag %d\n",
973 tty_name(tty, buf), flags);
974 break;
975 }
976 }
977 if (tty->driver->flush_chars)
978 tty->driver->flush_chars(tty);
979 }
980
Alan Cox33f0f882006-01-09 20:54:13 -0800981 n_tty_set_room(tty);
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (!tty->icanon && (tty->read_cnt >= tty->minimum_to_wake)) {
984 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
985 if (waitqueue_active(&tty->read_wait))
986 wake_up_interruptible(&tty->read_wait);
987 }
988
989 /*
990 * Check the remaining room for the input canonicalization
991 * mode. We don't want to throttle the driver if we're in
992 * canonical mode and don't have a newline yet!
993 */
Alan Cox33f0f882006-01-09 20:54:13 -0800994 if (tty->receive_room < TTY_THRESHOLD_THROTTLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 /* check TTY_THROTTLED first so it indicates our state */
996 if (!test_and_set_bit(TTY_THROTTLED, &tty->flags) &&
997 tty->driver->throttle)
998 tty->driver->throttle(tty);
999 }
1000}
1001
1002int is_ignored(int sig)
1003{
1004 return (sigismember(&current->blocked, sig) ||
1005 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
1006}
1007
1008/**
1009 * n_tty_set_termios - termios data changed
1010 * @tty: terminal
1011 * @old: previous data
1012 *
1013 * Called by the tty layer when the user changes termios flags so
1014 * that the line discipline can plan ahead. This function cannot sleep
1015 * and is protected from re-entry by the tty layer. The user is
1016 * guaranteed that this function will not be re-entered or in progress
1017 * when the ldisc is closed.
1018 */
1019
Alan Cox606d0992006-12-08 02:38:45 -08001020static void n_tty_set_termios(struct tty_struct *tty, struct ktermios * old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 if (!tty)
1023 return;
1024
1025 tty->icanon = (L_ICANON(tty) != 0);
1026 if (test_bit(TTY_HW_COOK_IN, &tty->flags)) {
1027 tty->raw = 1;
1028 tty->real_raw = 1;
Alan Cox33f0f882006-01-09 20:54:13 -08001029 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return;
1031 }
1032 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1033 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1034 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1035 I_PARMRK(tty)) {
1036 memset(tty->process_char_map, 0, 256/8);
1037
1038 if (I_IGNCR(tty) || I_ICRNL(tty))
1039 set_bit('\r', tty->process_char_map);
1040 if (I_INLCR(tty))
1041 set_bit('\n', tty->process_char_map);
1042
1043 if (L_ICANON(tty)) {
1044 set_bit(ERASE_CHAR(tty), tty->process_char_map);
1045 set_bit(KILL_CHAR(tty), tty->process_char_map);
1046 set_bit(EOF_CHAR(tty), tty->process_char_map);
1047 set_bit('\n', tty->process_char_map);
1048 set_bit(EOL_CHAR(tty), tty->process_char_map);
1049 if (L_IEXTEN(tty)) {
1050 set_bit(WERASE_CHAR(tty),
1051 tty->process_char_map);
1052 set_bit(LNEXT_CHAR(tty),
1053 tty->process_char_map);
1054 set_bit(EOL2_CHAR(tty),
1055 tty->process_char_map);
1056 if (L_ECHO(tty))
1057 set_bit(REPRINT_CHAR(tty),
1058 tty->process_char_map);
1059 }
1060 }
1061 if (I_IXON(tty)) {
1062 set_bit(START_CHAR(tty), tty->process_char_map);
1063 set_bit(STOP_CHAR(tty), tty->process_char_map);
1064 }
1065 if (L_ISIG(tty)) {
1066 set_bit(INTR_CHAR(tty), tty->process_char_map);
1067 set_bit(QUIT_CHAR(tty), tty->process_char_map);
1068 set_bit(SUSP_CHAR(tty), tty->process_char_map);
1069 }
1070 clear_bit(__DISABLED_CHAR, tty->process_char_map);
1071 tty->raw = 0;
1072 tty->real_raw = 0;
1073 } else {
1074 tty->raw = 1;
1075 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1076 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1077 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
1078 tty->real_raw = 1;
1079 else
1080 tty->real_raw = 0;
1081 }
Alan Cox33f0f882006-01-09 20:54:13 -08001082 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085/**
1086 * n_tty_close - close the ldisc for this tty
1087 * @tty: device
1088 *
1089 * Called from the terminal layer when this line discipline is
1090 * being shut down, either because of a close or becsuse of a
1091 * discipline change. The function will not be called while other
1092 * ldisc methods are in progress.
1093 */
1094
1095static void n_tty_close(struct tty_struct *tty)
1096{
1097 n_tty_flush_buffer(tty);
1098 if (tty->read_buf) {
1099 free_buf(tty->read_buf);
1100 tty->read_buf = NULL;
1101 }
1102}
1103
1104/**
1105 * n_tty_open - open an ldisc
1106 * @tty: terminal to open
1107 *
1108 * Called when this line discipline is being attached to the
1109 * terminal device. Can sleep. Called serialized so that no
1110 * other events will occur in parallel. No further open will occur
1111 * until a close.
1112 */
1113
1114static int n_tty_open(struct tty_struct *tty)
1115{
1116 if (!tty)
1117 return -EINVAL;
1118
1119 /* This one is ugly. Currently a malloc failure here can panic */
1120 if (!tty->read_buf) {
1121 tty->read_buf = alloc_buf();
1122 if (!tty->read_buf)
1123 return -ENOMEM;
1124 }
1125 memset(tty->read_buf, 0, N_TTY_BUF_SIZE);
1126 reset_buffer_flags(tty);
1127 tty->column = 0;
1128 n_tty_set_termios(tty, NULL);
1129 tty->minimum_to_wake = 1;
1130 tty->closing = 0;
1131 return 0;
1132}
1133
1134static inline int input_available_p(struct tty_struct *tty, int amt)
1135{
1136 if (tty->icanon) {
1137 if (tty->canon_data)
1138 return 1;
1139 } else if (tty->read_cnt >= (amt ? amt : 1))
1140 return 1;
1141
1142 return 0;
1143}
1144
1145/**
1146 * copy_from_read_buf - copy read data directly
1147 * @tty: terminal device
1148 * @b: user data
1149 * @nr: size of data
1150 *
1151 * Helper function to speed up read_chan. It is only called when
1152 * ICANON is off; it copies characters straight from the tty queue to
1153 * user space directly. It can be profitably called twice; once to
1154 * drain the space from the tail pointer to the (physical) end of the
1155 * buffer, and once to drain the space from the (physical) beginning of
1156 * the buffer to head pointer.
1157 *
Paul Fulghum817d6d32006-06-28 04:26:47 -07001158 * Called under the tty->atomic_read_lock sem
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 *
1160 */
1161
Alan Cox33f0f882006-01-09 20:54:13 -08001162static int copy_from_read_buf(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 unsigned char __user **b,
1164 size_t *nr)
1165
1166{
1167 int retval;
1168 size_t n;
1169 unsigned long flags;
1170
1171 retval = 0;
1172 spin_lock_irqsave(&tty->read_lock, flags);
1173 n = min(tty->read_cnt, N_TTY_BUF_SIZE - tty->read_tail);
1174 n = min(*nr, n);
1175 spin_unlock_irqrestore(&tty->read_lock, flags);
1176 if (n) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 retval = copy_to_user(*b, &tty->read_buf[tty->read_tail], n);
1178 n -= retval;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001179 tty_audit_add_data(tty, &tty->read_buf[tty->read_tail], n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 spin_lock_irqsave(&tty->read_lock, flags);
1181 tty->read_tail = (tty->read_tail + n) & (N_TTY_BUF_SIZE-1);
1182 tty->read_cnt -= n;
1183 spin_unlock_irqrestore(&tty->read_lock, flags);
1184 *b += n;
1185 *nr -= n;
1186 }
1187 return retval;
1188}
1189
1190extern ssize_t redirected_tty_write(struct file *,const char *,size_t,loff_t *);
1191
1192/**
1193 * job_control - check job control
1194 * @tty: tty
1195 * @file: file handle
1196 *
1197 * Perform job control management checks on this file/tty descriptor
1198 * and if appropriate send any needed signals and return a negative
1199 * error code if action should be taken.
1200 */
1201
1202static int job_control(struct tty_struct *tty, struct file *file)
1203{
1204 /* Job control check -- must be done at start and after
1205 every sleep (POSIX.1 7.1.1.4). */
1206 /* NOTE: not yet done after every sleep pending a thorough
1207 check of the logic of this change. -- jlc */
1208 /* don't stop on /dev/console */
1209 if (file->f_op->write != redirected_tty_write &&
1210 current->signal->tty == tty) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001211 if (!tty->pgrp)
1212 printk("read_chan: no tty->pgrp!\n");
1213 else if (task_pgrp(current) != tty->pgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (is_ignored(SIGTTIN) ||
Eric W. Biederman3e7cd6c2007-02-12 00:52:58 -08001215 is_current_pgrp_orphaned())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return -EIO;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001217 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
Oleg Nesterov040b6362007-06-01 00:46:53 -07001218 set_thread_flag(TIF_SIGPENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return -ERESTARTSYS;
1220 }
1221 }
1222 return 0;
1223}
1224
1225
1226/**
1227 * read_chan - read function for tty
1228 * @tty: tty device
1229 * @file: file object
1230 * @buf: userspace buffer pointer
1231 * @nr: size of I/O
1232 *
1233 * Perform reads for the line discipline. We are guaranteed that the
1234 * line discipline will not be closed under us but we may get multiple
1235 * parallel readers and must handle this ourselves. We may also get
1236 * a hangup. Always called in user context, may sleep.
1237 *
1238 * This code must be sure never to sleep through a hangup.
1239 */
1240
1241static ssize_t read_chan(struct tty_struct *tty, struct file *file,
1242 unsigned char __user *buf, size_t nr)
1243{
1244 unsigned char __user *b = buf;
1245 DECLARE_WAITQUEUE(wait, current);
1246 int c;
1247 int minimum, time;
1248 ssize_t retval = 0;
1249 ssize_t size;
1250 long timeout;
1251 unsigned long flags;
1252
1253do_it_again:
1254
1255 if (!tty->read_buf) {
1256 printk("n_tty_read_chan: called with read_buf == NULL?!?\n");
1257 return -EIO;
1258 }
1259
1260 c = job_control(tty, file);
1261 if(c < 0)
1262 return c;
1263
1264 minimum = time = 0;
1265 timeout = MAX_SCHEDULE_TIMEOUT;
1266 if (!tty->icanon) {
1267 time = (HZ / 10) * TIME_CHAR(tty);
1268 minimum = MIN_CHAR(tty);
1269 if (minimum) {
1270 if (time)
1271 tty->minimum_to_wake = 1;
1272 else if (!waitqueue_active(&tty->read_wait) ||
1273 (tty->minimum_to_wake > minimum))
1274 tty->minimum_to_wake = minimum;
1275 } else {
1276 timeout = 0;
1277 if (time) {
1278 timeout = time;
1279 time = 0;
1280 }
1281 tty->minimum_to_wake = minimum = 1;
1282 }
1283 }
1284
1285 /*
1286 * Internal serialization of reads.
1287 */
1288 if (file->f_flags & O_NONBLOCK) {
Ingo Molnar70522e12006-03-23 03:00:31 -08001289 if (!mutex_trylock(&tty->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 return -EAGAIN;
1291 }
1292 else {
Ingo Molnar70522e12006-03-23 03:00:31 -08001293 if (mutex_lock_interruptible(&tty->atomic_read_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 return -ERESTARTSYS;
1295 }
1296
1297 add_wait_queue(&tty->read_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 while (nr) {
1299 /* First test for status change. */
1300 if (tty->packet && tty->link->ctrl_status) {
1301 unsigned char cs;
1302 if (b != buf)
1303 break;
1304 cs = tty->link->ctrl_status;
1305 tty->link->ctrl_status = 0;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001306 if (tty_put_user(tty, cs, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 retval = -EFAULT;
1308 b--;
1309 break;
1310 }
1311 nr--;
1312 break;
1313 }
1314 /* This statement must be first before checking for input
1315 so that any interrupt will set the state back to
1316 TASK_RUNNING. */
1317 set_current_state(TASK_INTERRUPTIBLE);
1318
1319 if (((minimum - (b - buf)) < tty->minimum_to_wake) &&
1320 ((minimum - (b - buf)) >= 1))
1321 tty->minimum_to_wake = (minimum - (b - buf));
1322
1323 if (!input_available_p(tty, 0)) {
1324 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
1325 retval = -EIO;
1326 break;
1327 }
1328 if (tty_hung_up_p(file))
1329 break;
1330 if (!timeout)
1331 break;
1332 if (file->f_flags & O_NONBLOCK) {
1333 retval = -EAGAIN;
1334 break;
1335 }
1336 if (signal_pending(current)) {
1337 retval = -ERESTARTSYS;
1338 break;
1339 }
Alan Cox33f0f882006-01-09 20:54:13 -08001340 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 continue;
1343 }
1344 __set_current_state(TASK_RUNNING);
1345
1346 /* Deal with packet mode. */
1347 if (tty->packet && b == buf) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07001348 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 retval = -EFAULT;
1350 b--;
1351 break;
1352 }
1353 nr--;
1354 }
1355
1356 if (tty->icanon) {
1357 /* N.B. avoid overrun if nr == 0 */
1358 while (nr && tty->read_cnt) {
1359 int eol;
1360
1361 eol = test_and_clear_bit(tty->read_tail,
1362 tty->read_flags);
1363 c = tty->read_buf[tty->read_tail];
1364 spin_lock_irqsave(&tty->read_lock, flags);
1365 tty->read_tail = ((tty->read_tail+1) &
1366 (N_TTY_BUF_SIZE-1));
1367 tty->read_cnt--;
1368 if (eol) {
1369 /* this test should be redundant:
1370 * we shouldn't be reading data if
1371 * canon_data is 0
1372 */
1373 if (--tty->canon_data < 0)
1374 tty->canon_data = 0;
1375 }
1376 spin_unlock_irqrestore(&tty->read_lock, flags);
1377
1378 if (!eol || (c != __DISABLED_CHAR)) {
Miloslav Trmac522ed772007-07-15 23:40:56 -07001379 if (tty_put_user(tty, c, b++)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 retval = -EFAULT;
1381 b--;
1382 break;
1383 }
1384 nr--;
1385 }
Miloslav Trmac522ed772007-07-15 23:40:56 -07001386 if (eol) {
1387 tty_audit_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 break;
Miloslav Trmac522ed772007-07-15 23:40:56 -07001389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
1391 if (retval)
1392 break;
1393 } else {
1394 int uncopied;
1395 uncopied = copy_from_read_buf(tty, &b, &nr);
1396 uncopied += copy_from_read_buf(tty, &b, &nr);
1397 if (uncopied) {
1398 retval = -EFAULT;
1399 break;
1400 }
1401 }
1402
1403 /* If there is enough space in the read buffer now, let the
1404 * low-level driver know. We use n_tty_chars_in_buffer() to
1405 * check the buffer, as it now knows about canonical mode.
1406 * Otherwise, if the driver is throttled and the line is
1407 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
1408 * we won't get any more characters.
1409 */
Paul Mackerras289a1e92006-06-12 12:16:26 +10001410 if (n_tty_chars_in_buffer(tty) <= TTY_THRESHOLD_UNTHROTTLE) {
1411 n_tty_set_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 check_unthrottle(tty);
Paul Mackerras289a1e92006-06-12 12:16:26 +10001413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 if (b - buf >= minimum)
1416 break;
1417 if (time)
1418 timeout = time;
1419 }
Ingo Molnar70522e12006-03-23 03:00:31 -08001420 mutex_unlock(&tty->atomic_read_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 remove_wait_queue(&tty->read_wait, &wait);
1422
1423 if (!waitqueue_active(&tty->read_wait))
1424 tty->minimum_to_wake = minimum;
1425
1426 __set_current_state(TASK_RUNNING);
1427 size = b - buf;
1428 if (size) {
1429 retval = size;
1430 if (nr)
1431 clear_bit(TTY_PUSH, &tty->flags);
1432 } else if (test_and_clear_bit(TTY_PUSH, &tty->flags))
1433 goto do_it_again;
1434
Alan Cox33f0f882006-01-09 20:54:13 -08001435 n_tty_set_room(tty);
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 return retval;
1438}
1439
1440/**
1441 * write_chan - write function for tty
1442 * @tty: tty device
1443 * @file: file object
1444 * @buf: userspace buffer pointer
1445 * @nr: size of I/O
1446 *
1447 * Write function of the terminal device. This is serialized with
1448 * respect to other write callers but not to termios changes, reads
1449 * and other such events. We must be careful with N_TTY as the receive
1450 * code will echo characters, thus calling driver write methods.
1451 *
1452 * This code must be sure never to sleep through a hangup.
1453 */
1454
1455static ssize_t write_chan(struct tty_struct * tty, struct file * file,
1456 const unsigned char * buf, size_t nr)
1457{
1458 const unsigned char *b = buf;
1459 DECLARE_WAITQUEUE(wait, current);
1460 int c;
1461 ssize_t retval = 0;
1462
1463 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
1464 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
1465 retval = tty_check_change(tty);
1466 if (retval)
1467 return retval;
1468 }
1469
1470 add_wait_queue(&tty->write_wait, &wait);
1471 while (1) {
1472 set_current_state(TASK_INTERRUPTIBLE);
1473 if (signal_pending(current)) {
1474 retval = -ERESTARTSYS;
1475 break;
1476 }
1477 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
1478 retval = -EIO;
1479 break;
1480 }
1481 if (O_OPOST(tty) && !(test_bit(TTY_HW_COOK_OUT, &tty->flags))) {
1482 while (nr > 0) {
1483 ssize_t num = opost_block(tty, b, nr);
1484 if (num < 0) {
1485 if (num == -EAGAIN)
1486 break;
1487 retval = num;
1488 goto break_out;
1489 }
1490 b += num;
1491 nr -= num;
1492 if (nr == 0)
1493 break;
1494 c = *b;
1495 if (opost(c, tty) < 0)
1496 break;
1497 b++; nr--;
1498 }
1499 if (tty->driver->flush_chars)
1500 tty->driver->flush_chars(tty);
1501 } else {
Roman Zippeld6afe272005-07-07 17:56:55 -07001502 while (nr > 0) {
1503 c = tty->driver->write(tty, b, nr);
1504 if (c < 0) {
1505 retval = c;
1506 goto break_out;
1507 }
1508 if (!c)
1509 break;
1510 b += c;
1511 nr -= c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
1514 if (!nr)
1515 break;
1516 if (file->f_flags & O_NONBLOCK) {
1517 retval = -EAGAIN;
1518 break;
1519 }
1520 schedule();
1521 }
1522break_out:
1523 __set_current_state(TASK_RUNNING);
1524 remove_wait_queue(&tty->write_wait, &wait);
1525 return (b - buf) ? b - buf : retval;
1526}
1527
1528/**
1529 * normal_poll - poll method for N_TTY
1530 * @tty: terminal device
1531 * @file: file accessing it
1532 * @wait: poll table
1533 *
1534 * Called when the line discipline is asked to poll() for data or
1535 * for special events. This code is not serialized with respect to
1536 * other events save open/close.
1537 *
1538 * This code must be sure never to sleep through a hangup.
1539 * Called without the kernel lock held - fine
1540 *
1541 * FIXME: if someone changes the VMIN or discipline settings for the
1542 * terminal while another process is in poll() the poll does not
1543 * recompute the new limits. Possibly set_termios should issue
1544 * a read wakeup to fix this bug.
1545 */
1546
1547static unsigned int normal_poll(struct tty_struct * tty, struct file * file, poll_table *wait)
1548{
1549 unsigned int mask = 0;
1550
1551 poll_wait(file, &tty->read_wait, wait);
1552 poll_wait(file, &tty->write_wait, wait);
1553 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
1554 mask |= POLLIN | POLLRDNORM;
1555 if (tty->packet && tty->link->ctrl_status)
1556 mask |= POLLPRI | POLLIN | POLLRDNORM;
1557 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
1558 mask |= POLLHUP;
1559 if (tty_hung_up_p(file))
1560 mask |= POLLHUP;
1561 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
1562 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
1563 tty->minimum_to_wake = MIN_CHAR(tty);
1564 else
1565 tty->minimum_to_wake = 1;
1566 }
Alan Cox9c1729d2007-07-15 23:39:43 -07001567 if (!tty_is_writelocked(tty) &&
1568 tty->driver->chars_in_buffer(tty) < WAKEUP_CHARS &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 tty->driver->write_room(tty) > 0)
1570 mask |= POLLOUT | POLLWRNORM;
1571 return mask;
1572}
1573
1574struct tty_ldisc tty_ldisc_N_TTY = {
Paul Fulghume10cc1d2007-05-10 22:22:50 -07001575 .magic = TTY_LDISC_MAGIC,
1576 .name = "n_tty",
1577 .open = n_tty_open,
1578 .close = n_tty_close,
1579 .flush_buffer = n_tty_flush_buffer,
1580 .chars_in_buffer = n_tty_chars_in_buffer,
1581 .read = read_chan,
1582 .write = write_chan,
1583 .ioctl = n_tty_ioctl,
1584 .set_termios = n_tty_set_termios,
1585 .poll = normal_poll,
1586 .receive_buf = n_tty_receive_buf,
1587 .write_wakeup = n_tty_write_wakeup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588};
1589