hpsa: fix bad -ENOMEM return value in hpsa_big_passthru_ioctl
[linux/fpc-iii.git] / drivers / tty / n_tty.c
blobeac1b0d5b4631c5c60ca2d6ebf6df9870357f26a
1 /*
2 * n_tty.c --- implements the N_TTY line discipline.
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...)
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.
13 * Written by Theodore Ts'o, Copyright 1994.
15 * This file also contains code originally written by Linus Torvalds,
16 * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
18 * This file may be redistributed under the terms of the GNU General Public
19 * License.
21 * Reduced memory usage for older ARM systems - Russell King.
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.
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 n_tty_write returns
30 * EAGAIN
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>
48 #include <linux/audit.h>
49 #include <linux/file.h>
50 #include <linux/uaccess.h>
51 #include <linux/module.h>
52 #include <linux/ratelimit.h>
53 #include <linux/vmalloc.h>
56 /* number of characters left in xmit buffer before select has we have room */
57 #define WAKEUP_CHARS 256
60 * This defines the low- and high-watermarks for throttling and
61 * unthrottling the TTY driver. These watermarks are used for
62 * controlling the space in the read buffer.
64 #define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
65 #define TTY_THRESHOLD_UNTHROTTLE 128
68 * Special byte codes used in the echo buffer to represent operations
69 * or special handling of characters. Bytes in the echo buffer that
70 * are not part of such special blocks are treated as normal character
71 * codes.
73 #define ECHO_OP_START 0xff
74 #define ECHO_OP_MOVE_BACK_COL 0x80
75 #define ECHO_OP_SET_CANON_COL 0x81
76 #define ECHO_OP_ERASE_TAB 0x82
78 #define ECHO_COMMIT_WATERMARK 256
79 #define ECHO_BLOCK 256
80 #define ECHO_DISCARD_WATERMARK N_TTY_BUF_SIZE - (ECHO_BLOCK + 32)
83 #undef N_TTY_TRACE
84 #ifdef N_TTY_TRACE
85 # define n_tty_trace(f, args...) trace_printk(f, ##args)
86 #else
87 # define n_tty_trace(f, args...)
88 #endif
90 struct n_tty_data {
91 /* producer-published */
92 size_t read_head;
93 size_t canon_head;
94 size_t echo_head;
95 size_t echo_commit;
96 size_t echo_mark;
97 DECLARE_BITMAP(char_map, 256);
99 /* private to n_tty_receive_overrun (single-threaded) */
100 unsigned long overrun_time;
101 int num_overrun;
103 /* non-atomic */
104 bool no_room;
106 /* must hold exclusive termios_rwsem to reset these */
107 unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
109 /* shared by producer and consumer */
110 char read_buf[N_TTY_BUF_SIZE];
111 DECLARE_BITMAP(read_flags, N_TTY_BUF_SIZE);
112 unsigned char echo_buf[N_TTY_BUF_SIZE];
114 int minimum_to_wake;
116 /* consumer-published */
117 size_t read_tail;
118 size_t line_start;
120 /* protected by output lock */
121 unsigned int column;
122 unsigned int canon_column;
123 size_t echo_tail;
125 struct mutex atomic_read_lock;
126 struct mutex output_lock;
129 static inline size_t read_cnt(struct n_tty_data *ldata)
131 return ldata->read_head - ldata->read_tail;
134 static inline unsigned char read_buf(struct n_tty_data *ldata, size_t i)
136 return ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
139 static inline unsigned char *read_buf_addr(struct n_tty_data *ldata, size_t i)
141 return &ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
144 static inline unsigned char echo_buf(struct n_tty_data *ldata, size_t i)
146 return ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
149 static inline unsigned char *echo_buf_addr(struct n_tty_data *ldata, size_t i)
151 return &ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
154 static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
155 unsigned char __user *ptr)
157 struct n_tty_data *ldata = tty->disc_data;
159 tty_audit_add_data(tty, &x, 1, ldata->icanon);
160 return put_user(x, ptr);
163 static int receive_room(struct tty_struct *tty)
165 struct n_tty_data *ldata = tty->disc_data;
166 int left;
168 if (I_PARMRK(tty)) {
169 /* Multiply read_cnt by 3, since each byte might take up to
170 * three times as many spaces when PARMRK is set (depending on
171 * its flags, e.g. parity error). */
172 left = N_TTY_BUF_SIZE - read_cnt(ldata) * 3 - 1;
173 } else
174 left = N_TTY_BUF_SIZE - read_cnt(ldata) - 1;
177 * If we are doing input canonicalization, and there are no
178 * pending newlines, let characters through without limit, so
179 * that erase characters will be handled. Other excess
180 * characters will be beeped.
182 if (left <= 0)
183 left = ldata->icanon && ldata->canon_head == ldata->read_tail;
185 return left;
189 * n_tty_set_room - receive space
190 * @tty: terminal
192 * Re-schedules the flip buffer work if space just became available.
194 * Caller holds exclusive termios_rwsem
195 * or
196 * n_tty_read()/consumer path:
197 * holds non-exclusive termios_rwsem
200 static void n_tty_set_room(struct tty_struct *tty)
202 struct n_tty_data *ldata = tty->disc_data;
204 /* Did this open up the receive buffer? We may need to flip */
205 if (unlikely(ldata->no_room) && receive_room(tty)) {
206 ldata->no_room = 0;
208 WARN_RATELIMIT(tty->port->itty == NULL,
209 "scheduling with invalid itty\n");
210 /* see if ldisc has been killed - if so, this means that
211 * even though the ldisc has been halted and ->buf.work
212 * cancelled, ->buf.work is about to be rescheduled
214 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
215 "scheduling buffer work for halted ldisc\n");
216 queue_work(system_unbound_wq, &tty->port->buf.work);
220 static ssize_t chars_in_buffer(struct tty_struct *tty)
222 struct n_tty_data *ldata = tty->disc_data;
223 ssize_t n = 0;
225 if (!ldata->icanon)
226 n = read_cnt(ldata);
227 else
228 n = ldata->canon_head - ldata->read_tail;
229 return n;
233 * n_tty_write_wakeup - asynchronous I/O notifier
234 * @tty: tty device
236 * Required for the ptys, serial driver etc. since processes
237 * that attach themselves to the master and rely on ASYNC
238 * IO must be woken up
241 static void n_tty_write_wakeup(struct tty_struct *tty)
243 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
244 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
247 static void n_tty_check_throttle(struct tty_struct *tty)
249 if (tty->driver->type == TTY_DRIVER_TYPE_PTY)
250 return;
252 * Check the remaining room for the input canonicalization
253 * mode. We don't want to throttle the driver if we're in
254 * canonical mode and don't have a newline yet!
256 while (1) {
257 int throttled;
258 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
259 if (receive_room(tty) >= TTY_THRESHOLD_THROTTLE)
260 break;
261 throttled = tty_throttle_safe(tty);
262 if (!throttled)
263 break;
265 __tty_set_flow_change(tty, 0);
268 static void n_tty_check_unthrottle(struct tty_struct *tty)
270 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
271 tty->link->ldisc->ops->write_wakeup == n_tty_write_wakeup) {
272 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
273 return;
274 if (!tty->count)
275 return;
276 n_tty_set_room(tty);
277 n_tty_write_wakeup(tty->link);
278 wake_up_interruptible_poll(&tty->link->write_wait, POLLOUT);
279 return;
282 /* If there is enough space in the read buffer now, let the
283 * low-level driver know. We use chars_in_buffer() to
284 * check the buffer, as it now knows about canonical mode.
285 * Otherwise, if the driver is throttled and the line is
286 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
287 * we won't get any more characters.
290 while (1) {
291 int unthrottled;
292 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
293 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
294 break;
295 if (!tty->count)
296 break;
297 n_tty_set_room(tty);
298 unthrottled = tty_unthrottle_safe(tty);
299 if (!unthrottled)
300 break;
302 __tty_set_flow_change(tty, 0);
306 * put_tty_queue - add character to tty
307 * @c: character
308 * @ldata: n_tty data
310 * Add a character to the tty read_buf queue.
312 * n_tty_receive_buf()/producer path:
313 * caller holds non-exclusive termios_rwsem
314 * modifies read_head
316 * read_head is only considered 'published' if canonical mode is
317 * not active.
320 static inline void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
322 *read_buf_addr(ldata, ldata->read_head++) = c;
326 * reset_buffer_flags - reset buffer state
327 * @tty: terminal to reset
329 * Reset the read buffer counters and clear the flags.
330 * Called from n_tty_open() and n_tty_flush_buffer().
332 * Locking: caller holds exclusive termios_rwsem
333 * (or locking is not required)
336 static void reset_buffer_flags(struct n_tty_data *ldata)
338 ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
339 ldata->echo_head = ldata->echo_tail = ldata->echo_commit = 0;
340 ldata->echo_mark = 0;
341 ldata->line_start = 0;
343 ldata->erasing = 0;
344 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
347 static void n_tty_packet_mode_flush(struct tty_struct *tty)
349 unsigned long flags;
351 spin_lock_irqsave(&tty->ctrl_lock, flags);
352 if (tty->link->packet) {
353 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
354 wake_up_interruptible(&tty->link->read_wait);
356 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
360 * n_tty_flush_buffer - clean input queue
361 * @tty: terminal device
363 * Flush the input buffer. Called when the tty layer wants the
364 * buffer flushed (eg at hangup) or when the N_TTY line discipline
365 * internally has to clean the pending queue (for example some signals).
367 * Holds termios_rwsem to exclude producer/consumer while
368 * buffer indices are reset.
370 * Locking: ctrl_lock, exclusive termios_rwsem
373 static void n_tty_flush_buffer(struct tty_struct *tty)
375 down_write(&tty->termios_rwsem);
376 reset_buffer_flags(tty->disc_data);
377 n_tty_set_room(tty);
379 if (tty->link)
380 n_tty_packet_mode_flush(tty);
381 up_write(&tty->termios_rwsem);
385 * n_tty_chars_in_buffer - report available bytes
386 * @tty: tty device
388 * Report the number of characters buffered to be delivered to user
389 * at this instant in time.
391 * Locking: exclusive termios_rwsem
394 static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
396 ssize_t n;
398 WARN_ONCE(1, "%s is deprecated and scheduled for removal.", __func__);
400 down_write(&tty->termios_rwsem);
401 n = chars_in_buffer(tty);
402 up_write(&tty->termios_rwsem);
403 return n;
407 * is_utf8_continuation - utf8 multibyte check
408 * @c: byte to check
410 * Returns true if the utf8 character 'c' is a multibyte continuation
411 * character. We use this to correctly compute the on screen size
412 * of the character when printing
415 static inline int is_utf8_continuation(unsigned char c)
417 return (c & 0xc0) == 0x80;
421 * is_continuation - multibyte check
422 * @c: byte to check
424 * Returns true if the utf8 character 'c' is a multibyte continuation
425 * character and the terminal is in unicode mode.
428 static inline int is_continuation(unsigned char c, struct tty_struct *tty)
430 return I_IUTF8(tty) && is_utf8_continuation(c);
434 * do_output_char - output one character
435 * @c: character (or partial unicode symbol)
436 * @tty: terminal device
437 * @space: space available in tty driver write buffer
439 * This is a helper function that handles one output character
440 * (including special characters like TAB, CR, LF, etc.),
441 * doing OPOST processing and putting the results in the
442 * tty driver's write buffer.
444 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
445 * and NLDLY. They simply aren't relevant in the world today.
446 * If you ever need them, add them here.
448 * Returns the number of bytes of buffer space used or -1 if
449 * no space left.
451 * Locking: should be called under the output_lock to protect
452 * the column state and space left in the buffer
455 static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
457 struct n_tty_data *ldata = tty->disc_data;
458 int spaces;
460 if (!space)
461 return -1;
463 switch (c) {
464 case '\n':
465 if (O_ONLRET(tty))
466 ldata->column = 0;
467 if (O_ONLCR(tty)) {
468 if (space < 2)
469 return -1;
470 ldata->canon_column = ldata->column = 0;
471 tty->ops->write(tty, "\r\n", 2);
472 return 2;
474 ldata->canon_column = ldata->column;
475 break;
476 case '\r':
477 if (O_ONOCR(tty) && ldata->column == 0)
478 return 0;
479 if (O_OCRNL(tty)) {
480 c = '\n';
481 if (O_ONLRET(tty))
482 ldata->canon_column = ldata->column = 0;
483 break;
485 ldata->canon_column = ldata->column = 0;
486 break;
487 case '\t':
488 spaces = 8 - (ldata->column & 7);
489 if (O_TABDLY(tty) == XTABS) {
490 if (space < spaces)
491 return -1;
492 ldata->column += spaces;
493 tty->ops->write(tty, " ", spaces);
494 return spaces;
496 ldata->column += spaces;
497 break;
498 case '\b':
499 if (ldata->column > 0)
500 ldata->column--;
501 break;
502 default:
503 if (!iscntrl(c)) {
504 if (O_OLCUC(tty))
505 c = toupper(c);
506 if (!is_continuation(c, tty))
507 ldata->column++;
509 break;
512 tty_put_char(tty, c);
513 return 1;
517 * process_output - output post processor
518 * @c: character (or partial unicode symbol)
519 * @tty: terminal device
521 * Output one character with OPOST processing.
522 * Returns -1 when the output device is full and the character
523 * must be retried.
525 * Locking: output_lock to protect column state and space left
526 * (also, this is called from n_tty_write under the
527 * tty layer write lock)
530 static int process_output(unsigned char c, struct tty_struct *tty)
532 struct n_tty_data *ldata = tty->disc_data;
533 int space, retval;
535 mutex_lock(&ldata->output_lock);
537 space = tty_write_room(tty);
538 retval = do_output_char(c, tty, space);
540 mutex_unlock(&ldata->output_lock);
541 if (retval < 0)
542 return -1;
543 else
544 return 0;
548 * process_output_block - block post processor
549 * @tty: terminal device
550 * @buf: character buffer
551 * @nr: number of bytes to output
553 * Output a block of characters with OPOST processing.
554 * Returns the number of characters output.
556 * This path is used to speed up block console writes, among other
557 * things when processing blocks of output data. It handles only
558 * the simple cases normally found and helps to generate blocks of
559 * symbols for the console driver and thus improve performance.
561 * Locking: output_lock to protect column state and space left
562 * (also, this is called from n_tty_write under the
563 * tty layer write lock)
566 static ssize_t process_output_block(struct tty_struct *tty,
567 const unsigned char *buf, unsigned int nr)
569 struct n_tty_data *ldata = tty->disc_data;
570 int space;
571 int i;
572 const unsigned char *cp;
574 mutex_lock(&ldata->output_lock);
576 space = tty_write_room(tty);
577 if (!space) {
578 mutex_unlock(&ldata->output_lock);
579 return 0;
581 if (nr > space)
582 nr = space;
584 for (i = 0, cp = buf; i < nr; i++, cp++) {
585 unsigned char c = *cp;
587 switch (c) {
588 case '\n':
589 if (O_ONLRET(tty))
590 ldata->column = 0;
591 if (O_ONLCR(tty))
592 goto break_out;
593 ldata->canon_column = ldata->column;
594 break;
595 case '\r':
596 if (O_ONOCR(tty) && ldata->column == 0)
597 goto break_out;
598 if (O_OCRNL(tty))
599 goto break_out;
600 ldata->canon_column = ldata->column = 0;
601 break;
602 case '\t':
603 goto break_out;
604 case '\b':
605 if (ldata->column > 0)
606 ldata->column--;
607 break;
608 default:
609 if (!iscntrl(c)) {
610 if (O_OLCUC(tty))
611 goto break_out;
612 if (!is_continuation(c, tty))
613 ldata->column++;
615 break;
618 break_out:
619 i = tty->ops->write(tty, buf, i);
621 mutex_unlock(&ldata->output_lock);
622 return i;
626 * process_echoes - write pending echo characters
627 * @tty: terminal device
629 * Write previously buffered echo (and other ldisc-generated)
630 * characters to the tty.
632 * Characters generated by the ldisc (including echoes) need to
633 * be buffered because the driver's write buffer can fill during
634 * heavy program output. Echoing straight to the driver will
635 * often fail under these conditions, causing lost characters and
636 * resulting mismatches of ldisc state information.
638 * Since the ldisc state must represent the characters actually sent
639 * to the driver at the time of the write, operations like certain
640 * changes in column state are also saved in the buffer and executed
641 * here.
643 * A circular fifo buffer is used so that the most recent characters
644 * are prioritized. Also, when control characters are echoed with a
645 * prefixed "^", the pair is treated atomically and thus not separated.
647 * Locking: callers must hold output_lock
650 static size_t __process_echoes(struct tty_struct *tty)
652 struct n_tty_data *ldata = tty->disc_data;
653 int space, old_space;
654 size_t tail;
655 unsigned char c;
657 old_space = space = tty_write_room(tty);
659 tail = ldata->echo_tail;
660 while (ldata->echo_commit != tail) {
661 c = echo_buf(ldata, tail);
662 if (c == ECHO_OP_START) {
663 unsigned char op;
664 int no_space_left = 0;
667 * If the buffer byte is the start of a multi-byte
668 * operation, get the next byte, which is either the
669 * op code or a control character value.
671 op = echo_buf(ldata, tail + 1);
673 switch (op) {
674 unsigned int num_chars, num_bs;
676 case ECHO_OP_ERASE_TAB:
677 num_chars = echo_buf(ldata, tail + 2);
680 * Determine how many columns to go back
681 * in order to erase the tab.
682 * This depends on the number of columns
683 * used by other characters within the tab
684 * area. If this (modulo 8) count is from
685 * the start of input rather than from a
686 * previous tab, we offset by canon column.
687 * Otherwise, tab spacing is normal.
689 if (!(num_chars & 0x80))
690 num_chars += ldata->canon_column;
691 num_bs = 8 - (num_chars & 7);
693 if (num_bs > space) {
694 no_space_left = 1;
695 break;
697 space -= num_bs;
698 while (num_bs--) {
699 tty_put_char(tty, '\b');
700 if (ldata->column > 0)
701 ldata->column--;
703 tail += 3;
704 break;
706 case ECHO_OP_SET_CANON_COL:
707 ldata->canon_column = ldata->column;
708 tail += 2;
709 break;
711 case ECHO_OP_MOVE_BACK_COL:
712 if (ldata->column > 0)
713 ldata->column--;
714 tail += 2;
715 break;
717 case ECHO_OP_START:
718 /* This is an escaped echo op start code */
719 if (!space) {
720 no_space_left = 1;
721 break;
723 tty_put_char(tty, ECHO_OP_START);
724 ldata->column++;
725 space--;
726 tail += 2;
727 break;
729 default:
731 * If the op is not a special byte code,
732 * it is a ctrl char tagged to be echoed
733 * as "^X" (where X is the letter
734 * representing the control char).
735 * Note that we must ensure there is
736 * enough space for the whole ctrl pair.
739 if (space < 2) {
740 no_space_left = 1;
741 break;
743 tty_put_char(tty, '^');
744 tty_put_char(tty, op ^ 0100);
745 ldata->column += 2;
746 space -= 2;
747 tail += 2;
750 if (no_space_left)
751 break;
752 } else {
753 if (O_OPOST(tty)) {
754 int retval = do_output_char(c, tty, space);
755 if (retval < 0)
756 break;
757 space -= retval;
758 } else {
759 if (!space)
760 break;
761 tty_put_char(tty, c);
762 space -= 1;
764 tail += 1;
768 /* If the echo buffer is nearly full (so that the possibility exists
769 * of echo overrun before the next commit), then discard enough
770 * data at the tail to prevent a subsequent overrun */
771 while (ldata->echo_commit - tail >= ECHO_DISCARD_WATERMARK) {
772 if (echo_buf(ldata, tail) == ECHO_OP_START) {
773 if (echo_buf(ldata, tail + 1) == ECHO_OP_ERASE_TAB)
774 tail += 3;
775 else
776 tail += 2;
777 } else
778 tail++;
781 ldata->echo_tail = tail;
782 return old_space - space;
785 static void commit_echoes(struct tty_struct *tty)
787 struct n_tty_data *ldata = tty->disc_data;
788 size_t nr, old, echoed;
789 size_t head;
791 head = ldata->echo_head;
792 ldata->echo_mark = head;
793 old = ldata->echo_commit - ldata->echo_tail;
795 /* Process committed echoes if the accumulated # of bytes
796 * is over the threshold (and try again each time another
797 * block is accumulated) */
798 nr = head - ldata->echo_tail;
799 if (nr < ECHO_COMMIT_WATERMARK || (nr % ECHO_BLOCK > old % ECHO_BLOCK))
800 return;
802 mutex_lock(&ldata->output_lock);
803 ldata->echo_commit = head;
804 echoed = __process_echoes(tty);
805 mutex_unlock(&ldata->output_lock);
807 if (echoed && tty->ops->flush_chars)
808 tty->ops->flush_chars(tty);
811 static void process_echoes(struct tty_struct *tty)
813 struct n_tty_data *ldata = tty->disc_data;
814 size_t echoed;
816 if ((!L_ECHO(tty) && !L_ECHONL(tty)) ||
817 ldata->echo_mark == ldata->echo_tail)
818 return;
820 mutex_lock(&ldata->output_lock);
821 ldata->echo_commit = ldata->echo_mark;
822 echoed = __process_echoes(tty);
823 mutex_unlock(&ldata->output_lock);
825 if (echoed && tty->ops->flush_chars)
826 tty->ops->flush_chars(tty);
829 /* NB: echo_mark and echo_head should be equivalent here */
830 static void flush_echoes(struct tty_struct *tty)
832 struct n_tty_data *ldata = tty->disc_data;
834 if ((!L_ECHO(tty) && !L_ECHONL(tty)) ||
835 ldata->echo_commit == ldata->echo_head)
836 return;
838 mutex_lock(&ldata->output_lock);
839 ldata->echo_commit = ldata->echo_head;
840 __process_echoes(tty);
841 mutex_unlock(&ldata->output_lock);
845 * add_echo_byte - add a byte to the echo buffer
846 * @c: unicode byte to echo
847 * @ldata: n_tty data
849 * Add a character or operation byte to the echo buffer.
852 static inline void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
854 *echo_buf_addr(ldata, ldata->echo_head++) = c;
858 * echo_move_back_col - add operation to move back a column
859 * @ldata: n_tty data
861 * Add an operation to the echo buffer to move back one column.
864 static void echo_move_back_col(struct n_tty_data *ldata)
866 add_echo_byte(ECHO_OP_START, ldata);
867 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
871 * echo_set_canon_col - add operation to set the canon column
872 * @ldata: n_tty data
874 * Add an operation to the echo buffer to set the canon column
875 * to the current column.
878 static void echo_set_canon_col(struct n_tty_data *ldata)
880 add_echo_byte(ECHO_OP_START, ldata);
881 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
885 * echo_erase_tab - add operation to erase a tab
886 * @num_chars: number of character columns already used
887 * @after_tab: true if num_chars starts after a previous tab
888 * @ldata: n_tty data
890 * Add an operation to the echo buffer to erase a tab.
892 * Called by the eraser function, which knows how many character
893 * columns have been used since either a previous tab or the start
894 * of input. This information will be used later, along with
895 * canon column (if applicable), to go back the correct number
896 * of columns.
899 static void echo_erase_tab(unsigned int num_chars, int after_tab,
900 struct n_tty_data *ldata)
902 add_echo_byte(ECHO_OP_START, ldata);
903 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
905 /* We only need to know this modulo 8 (tab spacing) */
906 num_chars &= 7;
908 /* Set the high bit as a flag if num_chars is after a previous tab */
909 if (after_tab)
910 num_chars |= 0x80;
912 add_echo_byte(num_chars, ldata);
916 * echo_char_raw - echo a character raw
917 * @c: unicode byte to echo
918 * @tty: terminal device
920 * Echo user input back onto the screen. This must be called only when
921 * L_ECHO(tty) is true. Called from the driver receive_buf path.
923 * This variant does not treat control characters specially.
926 static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
928 if (c == ECHO_OP_START) {
929 add_echo_byte(ECHO_OP_START, ldata);
930 add_echo_byte(ECHO_OP_START, ldata);
931 } else {
932 add_echo_byte(c, ldata);
937 * echo_char - echo a character
938 * @c: unicode byte to echo
939 * @tty: terminal device
941 * Echo user input back onto the screen. This must be called only when
942 * L_ECHO(tty) is true. Called from the driver receive_buf path.
944 * This variant tags control characters to be echoed as "^X"
945 * (where X is the letter representing the control char).
948 static void echo_char(unsigned char c, struct tty_struct *tty)
950 struct n_tty_data *ldata = tty->disc_data;
952 if (c == ECHO_OP_START) {
953 add_echo_byte(ECHO_OP_START, ldata);
954 add_echo_byte(ECHO_OP_START, ldata);
955 } else {
956 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
957 add_echo_byte(ECHO_OP_START, ldata);
958 add_echo_byte(c, ldata);
963 * finish_erasing - complete erase
964 * @ldata: n_tty data
967 static inline void finish_erasing(struct n_tty_data *ldata)
969 if (ldata->erasing) {
970 echo_char_raw('/', ldata);
971 ldata->erasing = 0;
976 * eraser - handle erase function
977 * @c: character input
978 * @tty: terminal device
980 * Perform erase and necessary output when an erase character is
981 * present in the stream from the driver layer. Handles the complexities
982 * of UTF-8 multibyte symbols.
984 * n_tty_receive_buf()/producer path:
985 * caller holds non-exclusive termios_rwsem
986 * modifies read_head
988 * Modifying the read_head is not considered a publish in this context
989 * because canonical mode is active -- only canon_head publishes
992 static void eraser(unsigned char c, struct tty_struct *tty)
994 struct n_tty_data *ldata = tty->disc_data;
995 enum { ERASE, WERASE, KILL } kill_type;
996 size_t head;
997 size_t cnt;
998 int seen_alnums;
1000 if (ldata->read_head == ldata->canon_head) {
1001 /* process_output('\a', tty); */ /* what do you think? */
1002 return;
1004 if (c == ERASE_CHAR(tty))
1005 kill_type = ERASE;
1006 else if (c == WERASE_CHAR(tty))
1007 kill_type = WERASE;
1008 else {
1009 if (!L_ECHO(tty)) {
1010 ldata->read_head = ldata->canon_head;
1011 return;
1013 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
1014 ldata->read_head = ldata->canon_head;
1015 finish_erasing(ldata);
1016 echo_char(KILL_CHAR(tty), tty);
1017 /* Add a newline if ECHOK is on and ECHOKE is off. */
1018 if (L_ECHOK(tty))
1019 echo_char_raw('\n', ldata);
1020 return;
1022 kill_type = KILL;
1025 seen_alnums = 0;
1026 while (ldata->read_head != ldata->canon_head) {
1027 head = ldata->read_head;
1029 /* erase a single possibly multibyte character */
1030 do {
1031 head--;
1032 c = read_buf(ldata, head);
1033 } while (is_continuation(c, tty) && head != ldata->canon_head);
1035 /* do not partially erase */
1036 if (is_continuation(c, tty))
1037 break;
1039 if (kill_type == WERASE) {
1040 /* Equivalent to BSD's ALTWERASE. */
1041 if (isalnum(c) || c == '_')
1042 seen_alnums++;
1043 else if (seen_alnums)
1044 break;
1046 cnt = ldata->read_head - head;
1047 ldata->read_head = head;
1048 if (L_ECHO(tty)) {
1049 if (L_ECHOPRT(tty)) {
1050 if (!ldata->erasing) {
1051 echo_char_raw('\\', ldata);
1052 ldata->erasing = 1;
1054 /* if cnt > 1, output a multi-byte character */
1055 echo_char(c, tty);
1056 while (--cnt > 0) {
1057 head++;
1058 echo_char_raw(read_buf(ldata, head), ldata);
1059 echo_move_back_col(ldata);
1061 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1062 echo_char(ERASE_CHAR(tty), tty);
1063 } else if (c == '\t') {
1064 unsigned int num_chars = 0;
1065 int after_tab = 0;
1066 size_t tail = ldata->read_head;
1069 * Count the columns used for characters
1070 * since the start of input or after a
1071 * previous tab.
1072 * This info is used to go back the correct
1073 * number of columns.
1075 while (tail != ldata->canon_head) {
1076 tail--;
1077 c = read_buf(ldata, tail);
1078 if (c == '\t') {
1079 after_tab = 1;
1080 break;
1081 } else if (iscntrl(c)) {
1082 if (L_ECHOCTL(tty))
1083 num_chars += 2;
1084 } else if (!is_continuation(c, tty)) {
1085 num_chars++;
1088 echo_erase_tab(num_chars, after_tab, ldata);
1089 } else {
1090 if (iscntrl(c) && L_ECHOCTL(tty)) {
1091 echo_char_raw('\b', ldata);
1092 echo_char_raw(' ', ldata);
1093 echo_char_raw('\b', ldata);
1095 if (!iscntrl(c) || L_ECHOCTL(tty)) {
1096 echo_char_raw('\b', ldata);
1097 echo_char_raw(' ', ldata);
1098 echo_char_raw('\b', ldata);
1102 if (kill_type == ERASE)
1103 break;
1105 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
1106 finish_erasing(ldata);
1110 * isig - handle the ISIG optio
1111 * @sig: signal
1112 * @tty: terminal
1114 * Called when a signal is being sent due to terminal input.
1115 * Called from the driver receive_buf path so serialized.
1117 * Locking: ctrl_lock
1120 static void isig(int sig, struct tty_struct *tty)
1122 struct pid *tty_pgrp = tty_get_pgrp(tty);
1123 if (tty_pgrp) {
1124 kill_pgrp(tty_pgrp, sig, 1);
1125 put_pid(tty_pgrp);
1130 * n_tty_receive_break - handle break
1131 * @tty: terminal
1133 * An RS232 break event has been hit in the incoming bitstream. This
1134 * can cause a variety of events depending upon the termios settings.
1136 * n_tty_receive_buf()/producer path:
1137 * caller holds non-exclusive termios_rwsem
1138 * publishes read_head via put_tty_queue()
1140 * Note: may get exclusive termios_rwsem if flushing input buffer
1143 static void n_tty_receive_break(struct tty_struct *tty)
1145 struct n_tty_data *ldata = tty->disc_data;
1147 if (I_IGNBRK(tty))
1148 return;
1149 if (I_BRKINT(tty)) {
1150 isig(SIGINT, tty);
1151 if (!L_NOFLSH(tty)) {
1152 /* flushing needs exclusive termios_rwsem */
1153 up_read(&tty->termios_rwsem);
1154 n_tty_flush_buffer(tty);
1155 tty_driver_flush_buffer(tty);
1156 down_read(&tty->termios_rwsem);
1158 return;
1160 if (I_PARMRK(tty)) {
1161 put_tty_queue('\377', ldata);
1162 put_tty_queue('\0', ldata);
1164 put_tty_queue('\0', ldata);
1165 wake_up_interruptible(&tty->read_wait);
1169 * n_tty_receive_overrun - handle overrun reporting
1170 * @tty: terminal
1172 * Data arrived faster than we could process it. While the tty
1173 * driver has flagged this the bits that were missed are gone
1174 * forever.
1176 * Called from the receive_buf path so single threaded. Does not
1177 * need locking as num_overrun and overrun_time are function
1178 * private.
1181 static void n_tty_receive_overrun(struct tty_struct *tty)
1183 struct n_tty_data *ldata = tty->disc_data;
1184 char buf[64];
1186 ldata->num_overrun++;
1187 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1188 time_after(ldata->overrun_time, jiffies)) {
1189 printk(KERN_WARNING "%s: %d input overrun(s)\n",
1190 tty_name(tty, buf),
1191 ldata->num_overrun);
1192 ldata->overrun_time = jiffies;
1193 ldata->num_overrun = 0;
1198 * n_tty_receive_parity_error - error notifier
1199 * @tty: terminal device
1200 * @c: character
1202 * Process a parity error and queue the right data to indicate
1203 * the error case if necessary.
1205 * n_tty_receive_buf()/producer path:
1206 * caller holds non-exclusive termios_rwsem
1207 * publishes read_head via put_tty_queue()
1209 static void n_tty_receive_parity_error(struct tty_struct *tty, unsigned char c)
1211 struct n_tty_data *ldata = tty->disc_data;
1213 if (I_INPCK(tty)) {
1214 if (I_IGNPAR(tty))
1215 return;
1216 if (I_PARMRK(tty)) {
1217 put_tty_queue('\377', ldata);
1218 put_tty_queue('\0', ldata);
1219 put_tty_queue(c, ldata);
1220 } else
1221 put_tty_queue('\0', ldata);
1222 } else
1223 put_tty_queue(c, ldata);
1224 wake_up_interruptible(&tty->read_wait);
1227 static void
1228 n_tty_receive_signal_char(struct tty_struct *tty, int signal, unsigned char c)
1230 if (!L_NOFLSH(tty)) {
1231 /* flushing needs exclusive termios_rwsem */
1232 up_read(&tty->termios_rwsem);
1233 n_tty_flush_buffer(tty);
1234 tty_driver_flush_buffer(tty);
1235 down_read(&tty->termios_rwsem);
1237 if (I_IXON(tty))
1238 start_tty(tty);
1239 if (L_ECHO(tty)) {
1240 echo_char(c, tty);
1241 commit_echoes(tty);
1243 isig(signal, tty);
1244 return;
1248 * n_tty_receive_char - perform processing
1249 * @tty: terminal device
1250 * @c: character
1252 * Process an individual character of input received from the driver.
1253 * This is serialized with respect to itself by the rules for the
1254 * driver above.
1256 * n_tty_receive_buf()/producer path:
1257 * caller holds non-exclusive termios_rwsem
1258 * publishes canon_head if canonical mode is active
1259 * otherwise, publishes read_head via put_tty_queue()
1261 * Returns 1 if LNEXT was received, else returns 0
1264 static int
1265 n_tty_receive_char_special(struct tty_struct *tty, unsigned char c)
1267 struct n_tty_data *ldata = tty->disc_data;
1268 int parmrk;
1270 if (I_IXON(tty)) {
1271 if (c == START_CHAR(tty)) {
1272 start_tty(tty);
1273 commit_echoes(tty);
1274 return 0;
1276 if (c == STOP_CHAR(tty)) {
1277 stop_tty(tty);
1278 return 0;
1282 if (L_ISIG(tty)) {
1283 if (c == INTR_CHAR(tty)) {
1284 n_tty_receive_signal_char(tty, SIGINT, c);
1285 return 0;
1286 } else if (c == QUIT_CHAR(tty)) {
1287 n_tty_receive_signal_char(tty, SIGQUIT, c);
1288 return 0;
1289 } else if (c == SUSP_CHAR(tty)) {
1290 n_tty_receive_signal_char(tty, SIGTSTP, c);
1291 return 0;
1295 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1296 start_tty(tty);
1297 process_echoes(tty);
1300 if (c == '\r') {
1301 if (I_IGNCR(tty))
1302 return 0;
1303 if (I_ICRNL(tty))
1304 c = '\n';
1305 } else if (c == '\n' && I_INLCR(tty))
1306 c = '\r';
1308 if (ldata->icanon) {
1309 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1310 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1311 eraser(c, tty);
1312 commit_echoes(tty);
1313 return 0;
1315 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
1316 ldata->lnext = 1;
1317 if (L_ECHO(tty)) {
1318 finish_erasing(ldata);
1319 if (L_ECHOCTL(tty)) {
1320 echo_char_raw('^', ldata);
1321 echo_char_raw('\b', ldata);
1322 commit_echoes(tty);
1325 return 1;
1327 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) && L_IEXTEN(tty)) {
1328 size_t tail = ldata->canon_head;
1330 finish_erasing(ldata);
1331 echo_char(c, tty);
1332 echo_char_raw('\n', ldata);
1333 while (tail != ldata->read_head) {
1334 echo_char(read_buf(ldata, tail), tty);
1335 tail++;
1337 commit_echoes(tty);
1338 return 0;
1340 if (c == '\n') {
1341 if (L_ECHO(tty) || L_ECHONL(tty)) {
1342 echo_char_raw('\n', ldata);
1343 commit_echoes(tty);
1345 goto handle_newline;
1347 if (c == EOF_CHAR(tty)) {
1348 c = __DISABLED_CHAR;
1349 goto handle_newline;
1351 if ((c == EOL_CHAR(tty)) ||
1352 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1353 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty))
1354 ? 1 : 0;
1356 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1358 if (L_ECHO(tty)) {
1359 /* Record the column of first canon char. */
1360 if (ldata->canon_head == ldata->read_head)
1361 echo_set_canon_col(ldata);
1362 echo_char(c, tty);
1363 commit_echoes(tty);
1366 * XXX does PARMRK doubling happen for
1367 * EOL_CHAR and EOL2_CHAR?
1369 if (parmrk)
1370 put_tty_queue(c, ldata);
1372 handle_newline:
1373 set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
1374 put_tty_queue(c, ldata);
1375 ldata->canon_head = ldata->read_head;
1376 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1377 if (waitqueue_active(&tty->read_wait))
1378 wake_up_interruptible(&tty->read_wait);
1379 return 0;
1383 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
1384 if (L_ECHO(tty)) {
1385 finish_erasing(ldata);
1386 if (c == '\n')
1387 echo_char_raw('\n', ldata);
1388 else {
1389 /* Record the column of first canon char. */
1390 if (ldata->canon_head == ldata->read_head)
1391 echo_set_canon_col(ldata);
1392 echo_char(c, tty);
1394 commit_echoes(tty);
1397 if (parmrk)
1398 put_tty_queue(c, ldata);
1400 put_tty_queue(c, ldata);
1401 return 0;
1404 static inline void
1405 n_tty_receive_char_inline(struct tty_struct *tty, unsigned char c)
1407 struct n_tty_data *ldata = tty->disc_data;
1408 int parmrk;
1410 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1411 start_tty(tty);
1412 process_echoes(tty);
1414 if (L_ECHO(tty)) {
1415 finish_erasing(ldata);
1416 /* Record the column of first canon char. */
1417 if (ldata->canon_head == ldata->read_head)
1418 echo_set_canon_col(ldata);
1419 echo_char(c, tty);
1420 commit_echoes(tty);
1422 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
1423 if (parmrk)
1424 put_tty_queue(c, ldata);
1425 put_tty_queue(c, ldata);
1428 static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1430 n_tty_receive_char_inline(tty, c);
1433 static inline void
1434 n_tty_receive_char_fast(struct tty_struct *tty, unsigned char c)
1436 struct n_tty_data *ldata = tty->disc_data;
1438 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) && I_IXANY(tty)) {
1439 start_tty(tty);
1440 process_echoes(tty);
1442 if (L_ECHO(tty)) {
1443 finish_erasing(ldata);
1444 /* Record the column of first canon char. */
1445 if (ldata->canon_head == ldata->read_head)
1446 echo_set_canon_col(ldata);
1447 echo_char(c, tty);
1448 commit_echoes(tty);
1450 put_tty_queue(c, ldata);
1453 static inline void
1454 n_tty_receive_char_closing(struct tty_struct *tty, unsigned char c)
1456 if (I_ISTRIP(tty))
1457 c &= 0x7f;
1458 if (I_IUCLC(tty) && L_IEXTEN(tty))
1459 c = tolower(c);
1461 if (I_IXON(tty)) {
1462 if (c == STOP_CHAR(tty))
1463 stop_tty(tty);
1464 else if (c == START_CHAR(tty) ||
1465 (tty->stopped && !tty->flow_stopped && I_IXANY(tty) &&
1466 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) &&
1467 c != SUSP_CHAR(tty))) {
1468 start_tty(tty);
1469 process_echoes(tty);
1474 static void
1475 n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)
1477 char buf[64];
1479 switch (flag) {
1480 case TTY_BREAK:
1481 n_tty_receive_break(tty);
1482 break;
1483 case TTY_PARITY:
1484 case TTY_FRAME:
1485 n_tty_receive_parity_error(tty, c);
1486 break;
1487 case TTY_OVERRUN:
1488 n_tty_receive_overrun(tty);
1489 break;
1490 default:
1491 printk(KERN_ERR "%s: unknown flag %d\n",
1492 tty_name(tty, buf), flag);
1493 break;
1497 static void
1498 n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag)
1500 struct n_tty_data *ldata = tty->disc_data;
1502 ldata->lnext = 0;
1503 if (likely(flag == TTY_NORMAL)) {
1504 if (I_ISTRIP(tty))
1505 c &= 0x7f;
1506 if (I_IUCLC(tty) && L_IEXTEN(tty))
1507 c = tolower(c);
1508 n_tty_receive_char(tty, c);
1509 } else
1510 n_tty_receive_char_flagged(tty, c, flag);
1514 * n_tty_receive_buf - data receive
1515 * @tty: terminal device
1516 * @cp: buffer
1517 * @fp: flag buffer
1518 * @count: characters
1520 * Called by the terminal driver when a block of characters has
1521 * been received. This function must be called from soft contexts
1522 * not from interrupt context. The driver is responsible for making
1523 * calls one at a time and in order (or using flush_to_ldisc)
1525 * n_tty_receive_buf()/producer path:
1526 * claims non-exclusive termios_rwsem
1527 * publishes read_head and canon_head
1530 static void
1531 n_tty_receive_buf_real_raw(struct tty_struct *tty, const unsigned char *cp,
1532 char *fp, int count)
1534 struct n_tty_data *ldata = tty->disc_data;
1535 size_t n, head;
1537 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
1538 n = N_TTY_BUF_SIZE - max(read_cnt(ldata), head);
1539 n = min_t(size_t, count, n);
1540 memcpy(read_buf_addr(ldata, head), cp, n);
1541 ldata->read_head += n;
1542 cp += n;
1543 count -= n;
1545 head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
1546 n = N_TTY_BUF_SIZE - max(read_cnt(ldata), head);
1547 n = min_t(size_t, count, n);
1548 memcpy(read_buf_addr(ldata, head), cp, n);
1549 ldata->read_head += n;
1552 static void
1553 n_tty_receive_buf_raw(struct tty_struct *tty, const unsigned char *cp,
1554 char *fp, int count)
1556 struct n_tty_data *ldata = tty->disc_data;
1557 char flag = TTY_NORMAL;
1559 while (count--) {
1560 if (fp)
1561 flag = *fp++;
1562 if (likely(flag == TTY_NORMAL))
1563 put_tty_queue(*cp++, ldata);
1564 else
1565 n_tty_receive_char_flagged(tty, *cp++, flag);
1569 static void
1570 n_tty_receive_buf_closing(struct tty_struct *tty, const unsigned char *cp,
1571 char *fp, int count)
1573 char flag = TTY_NORMAL;
1575 while (count--) {
1576 if (fp)
1577 flag = *fp++;
1578 if (likely(flag == TTY_NORMAL))
1579 n_tty_receive_char_closing(tty, *cp++);
1580 else
1581 n_tty_receive_char_flagged(tty, *cp++, flag);
1585 static void
1586 n_tty_receive_buf_standard(struct tty_struct *tty, const unsigned char *cp,
1587 char *fp, int count)
1589 struct n_tty_data *ldata = tty->disc_data;
1590 char flag = TTY_NORMAL;
1592 while (count--) {
1593 if (fp)
1594 flag = *fp++;
1595 if (likely(flag == TTY_NORMAL)) {
1596 unsigned char c = *cp++;
1598 if (I_ISTRIP(tty))
1599 c &= 0x7f;
1600 if (I_IUCLC(tty) && L_IEXTEN(tty))
1601 c = tolower(c);
1602 if (L_EXTPROC(tty)) {
1603 put_tty_queue(c, ldata);
1604 continue;
1606 if (!test_bit(c, ldata->char_map))
1607 n_tty_receive_char_inline(tty, c);
1608 else if (n_tty_receive_char_special(tty, c) && count) {
1609 if (fp)
1610 flag = *fp++;
1611 n_tty_receive_char_lnext(tty, *cp++, flag);
1612 count--;
1614 } else
1615 n_tty_receive_char_flagged(tty, *cp++, flag);
1619 static void
1620 n_tty_receive_buf_fast(struct tty_struct *tty, const unsigned char *cp,
1621 char *fp, int count)
1623 struct n_tty_data *ldata = tty->disc_data;
1624 char flag = TTY_NORMAL;
1626 while (count--) {
1627 if (fp)
1628 flag = *fp++;
1629 if (likely(flag == TTY_NORMAL)) {
1630 unsigned char c = *cp++;
1632 if (!test_bit(c, ldata->char_map))
1633 n_tty_receive_char_fast(tty, c);
1634 else if (n_tty_receive_char_special(tty, c) && count) {
1635 if (fp)
1636 flag = *fp++;
1637 n_tty_receive_char_lnext(tty, *cp++, flag);
1638 count--;
1640 } else
1641 n_tty_receive_char_flagged(tty, *cp++, flag);
1645 static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1646 char *fp, int count)
1648 struct n_tty_data *ldata = tty->disc_data;
1649 bool preops = I_ISTRIP(tty) || (I_IUCLC(tty) && L_IEXTEN(tty));
1651 if (ldata->real_raw)
1652 n_tty_receive_buf_real_raw(tty, cp, fp, count);
1653 else if (ldata->raw || (L_EXTPROC(tty) && !preops))
1654 n_tty_receive_buf_raw(tty, cp, fp, count);
1655 else if (tty->closing && !L_EXTPROC(tty))
1656 n_tty_receive_buf_closing(tty, cp, fp, count);
1657 else {
1658 if (ldata->lnext) {
1659 char flag = TTY_NORMAL;
1661 if (fp)
1662 flag = *fp++;
1663 n_tty_receive_char_lnext(tty, *cp++, flag);
1664 count--;
1667 if (!preops && !I_PARMRK(tty))
1668 n_tty_receive_buf_fast(tty, cp, fp, count);
1669 else
1670 n_tty_receive_buf_standard(tty, cp, fp, count);
1672 flush_echoes(tty);
1673 if (tty->ops->flush_chars)
1674 tty->ops->flush_chars(tty);
1677 if ((!ldata->icanon && (read_cnt(ldata) >= ldata->minimum_to_wake)) ||
1678 L_EXTPROC(tty)) {
1679 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1680 if (waitqueue_active(&tty->read_wait))
1681 wake_up_interruptible(&tty->read_wait);
1685 static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1686 char *fp, int count)
1688 int room, n;
1690 down_read(&tty->termios_rwsem);
1692 while (1) {
1693 room = receive_room(tty);
1694 n = min(count, room);
1695 if (!n)
1696 break;
1697 __receive_buf(tty, cp, fp, n);
1698 cp += n;
1699 if (fp)
1700 fp += n;
1701 count -= n;
1704 tty->receive_room = room;
1705 n_tty_check_throttle(tty);
1706 up_read(&tty->termios_rwsem);
1709 static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1710 char *fp, int count)
1712 struct n_tty_data *ldata = tty->disc_data;
1713 int room, n, rcvd = 0;
1715 down_read(&tty->termios_rwsem);
1717 while (1) {
1718 room = receive_room(tty);
1719 n = min(count, room);
1720 if (!n) {
1721 if (!room)
1722 ldata->no_room = 1;
1723 break;
1725 __receive_buf(tty, cp, fp, n);
1726 cp += n;
1727 if (fp)
1728 fp += n;
1729 count -= n;
1730 rcvd += n;
1733 tty->receive_room = room;
1734 n_tty_check_throttle(tty);
1735 up_read(&tty->termios_rwsem);
1737 return rcvd;
1740 int is_ignored(int sig)
1742 return (sigismember(&current->blocked, sig) ||
1743 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
1747 * n_tty_set_termios - termios data changed
1748 * @tty: terminal
1749 * @old: previous data
1751 * Called by the tty layer when the user changes termios flags so
1752 * that the line discipline can plan ahead. This function cannot sleep
1753 * and is protected from re-entry by the tty layer. The user is
1754 * guaranteed that this function will not be re-entered or in progress
1755 * when the ldisc is closed.
1757 * Locking: Caller holds tty->termios_rwsem
1760 static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
1762 struct n_tty_data *ldata = tty->disc_data;
1763 int canon_change = 1;
1765 if (old)
1766 canon_change = (old->c_lflag ^ tty->termios.c_lflag) & ICANON;
1767 if (canon_change) {
1768 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
1769 ldata->line_start = ldata->canon_head = ldata->read_tail;
1770 ldata->erasing = 0;
1771 ldata->lnext = 0;
1774 if (canon_change && !L_ICANON(tty) && read_cnt(ldata))
1775 wake_up_interruptible(&tty->read_wait);
1777 ldata->icanon = (L_ICANON(tty) != 0);
1779 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1780 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1781 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1782 I_PARMRK(tty)) {
1783 bitmap_zero(ldata->char_map, 256);
1785 if (I_IGNCR(tty) || I_ICRNL(tty))
1786 set_bit('\r', ldata->char_map);
1787 if (I_INLCR(tty))
1788 set_bit('\n', ldata->char_map);
1790 if (L_ICANON(tty)) {
1791 set_bit(ERASE_CHAR(tty), ldata->char_map);
1792 set_bit(KILL_CHAR(tty), ldata->char_map);
1793 set_bit(EOF_CHAR(tty), ldata->char_map);
1794 set_bit('\n', ldata->char_map);
1795 set_bit(EOL_CHAR(tty), ldata->char_map);
1796 if (L_IEXTEN(tty)) {
1797 set_bit(WERASE_CHAR(tty), ldata->char_map);
1798 set_bit(LNEXT_CHAR(tty), ldata->char_map);
1799 set_bit(EOL2_CHAR(tty), ldata->char_map);
1800 if (L_ECHO(tty))
1801 set_bit(REPRINT_CHAR(tty),
1802 ldata->char_map);
1805 if (I_IXON(tty)) {
1806 set_bit(START_CHAR(tty), ldata->char_map);
1807 set_bit(STOP_CHAR(tty), ldata->char_map);
1809 if (L_ISIG(tty)) {
1810 set_bit(INTR_CHAR(tty), ldata->char_map);
1811 set_bit(QUIT_CHAR(tty), ldata->char_map);
1812 set_bit(SUSP_CHAR(tty), ldata->char_map);
1814 clear_bit(__DISABLED_CHAR, ldata->char_map);
1815 ldata->raw = 0;
1816 ldata->real_raw = 0;
1817 } else {
1818 ldata->raw = 1;
1819 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1820 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1821 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
1822 ldata->real_raw = 1;
1823 else
1824 ldata->real_raw = 0;
1826 n_tty_set_room(tty);
1828 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1829 * been stopped by STOP_CHAR(tty) before it.
1831 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
1832 start_tty(tty);
1835 /* The termios change make the tty ready for I/O */
1836 wake_up_interruptible(&tty->write_wait);
1837 wake_up_interruptible(&tty->read_wait);
1841 * n_tty_close - close the ldisc for this tty
1842 * @tty: device
1844 * Called from the terminal layer when this line discipline is
1845 * being shut down, either because of a close or becsuse of a
1846 * discipline change. The function will not be called while other
1847 * ldisc methods are in progress.
1850 static void n_tty_close(struct tty_struct *tty)
1852 struct n_tty_data *ldata = tty->disc_data;
1854 if (tty->link)
1855 n_tty_packet_mode_flush(tty);
1857 vfree(ldata);
1858 tty->disc_data = NULL;
1862 * n_tty_open - open an ldisc
1863 * @tty: terminal to open
1865 * Called when this line discipline is being attached to the
1866 * terminal device. Can sleep. Called serialized so that no
1867 * other events will occur in parallel. No further open will occur
1868 * until a close.
1871 static int n_tty_open(struct tty_struct *tty)
1873 struct n_tty_data *ldata;
1875 /* Currently a malloc failure here can panic */
1876 ldata = vmalloc(sizeof(*ldata));
1877 if (!ldata)
1878 goto err;
1880 ldata->overrun_time = jiffies;
1881 mutex_init(&ldata->atomic_read_lock);
1882 mutex_init(&ldata->output_lock);
1884 tty->disc_data = ldata;
1885 reset_buffer_flags(tty->disc_data);
1886 ldata->column = 0;
1887 ldata->canon_column = 0;
1888 ldata->minimum_to_wake = 1;
1889 ldata->num_overrun = 0;
1890 ldata->no_room = 0;
1891 ldata->lnext = 0;
1892 tty->closing = 0;
1893 /* indicate buffer work may resume */
1894 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1895 n_tty_set_termios(tty, NULL);
1896 tty_unthrottle(tty);
1898 return 0;
1899 err:
1900 return -ENOMEM;
1903 static inline int input_available_p(struct tty_struct *tty, int amt)
1905 struct n_tty_data *ldata = tty->disc_data;
1907 if (ldata->icanon && !L_EXTPROC(tty)) {
1908 if (ldata->canon_head != ldata->read_tail)
1909 return 1;
1910 } else if (read_cnt(ldata) >= (amt ? amt : 1))
1911 return 1;
1913 return 0;
1917 * copy_from_read_buf - copy read data directly
1918 * @tty: terminal device
1919 * @b: user data
1920 * @nr: size of data
1922 * Helper function to speed up n_tty_read. It is only called when
1923 * ICANON is off; it copies characters straight from the tty queue to
1924 * user space directly. It can be profitably called twice; once to
1925 * drain the space from the tail pointer to the (physical) end of the
1926 * buffer, and once to drain the space from the (physical) beginning of
1927 * the buffer to head pointer.
1929 * Called under the ldata->atomic_read_lock sem
1931 * n_tty_read()/consumer path:
1932 * caller holds non-exclusive termios_rwsem
1933 * read_tail published
1936 static int copy_from_read_buf(struct tty_struct *tty,
1937 unsigned char __user **b,
1938 size_t *nr)
1941 struct n_tty_data *ldata = tty->disc_data;
1942 int retval;
1943 size_t n;
1944 bool is_eof;
1945 size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
1947 retval = 0;
1948 n = min(read_cnt(ldata), N_TTY_BUF_SIZE - tail);
1949 n = min(*nr, n);
1950 if (n) {
1951 retval = copy_to_user(*b, read_buf_addr(ldata, tail), n);
1952 n -= retval;
1953 is_eof = n == 1 && read_buf(ldata, tail) == EOF_CHAR(tty);
1954 tty_audit_add_data(tty, read_buf_addr(ldata, tail), n,
1955 ldata->icanon);
1956 ldata->read_tail += n;
1957 /* Turn single EOF into zero-length read */
1958 if (L_EXTPROC(tty) && ldata->icanon && is_eof && !read_cnt(ldata))
1959 n = 0;
1960 *b += n;
1961 *nr -= n;
1963 return retval;
1967 * canon_copy_from_read_buf - copy read data in canonical mode
1968 * @tty: terminal device
1969 * @b: user data
1970 * @nr: size of data
1972 * Helper function for n_tty_read. It is only called when ICANON is on;
1973 * it copies one line of input up to and including the line-delimiting
1974 * character into the user-space buffer.
1976 * Called under the atomic_read_lock mutex
1978 * n_tty_read()/consumer path:
1979 * caller holds non-exclusive termios_rwsem
1980 * read_tail published
1983 static int canon_copy_from_read_buf(struct tty_struct *tty,
1984 unsigned char __user **b,
1985 size_t *nr)
1987 struct n_tty_data *ldata = tty->disc_data;
1988 size_t n, size, more, c;
1989 size_t eol;
1990 size_t tail;
1991 int ret, found = 0;
1992 bool eof_push = 0;
1994 /* N.B. avoid overrun if nr == 0 */
1995 n = min(*nr, read_cnt(ldata));
1996 if (!n)
1997 return 0;
1999 tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
2000 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
2002 n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
2003 __func__, *nr, tail, n, size);
2005 eol = find_next_bit(ldata->read_flags, size, tail);
2006 more = n - (size - tail);
2007 if (eol == N_TTY_BUF_SIZE && more) {
2008 /* scan wrapped without finding set bit */
2009 eol = find_next_bit(ldata->read_flags, more, 0);
2010 if (eol != more)
2011 found = 1;
2012 } else if (eol != size)
2013 found = 1;
2015 size = N_TTY_BUF_SIZE - tail;
2016 n = eol - tail;
2017 if (n > 4096)
2018 n += 4096;
2019 n += found;
2020 c = n;
2022 if (found && read_buf(ldata, eol) == __DISABLED_CHAR) {
2023 n--;
2024 eof_push = !n && ldata->read_tail != ldata->line_start;
2027 n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu size:%zu more:%zu\n",
2028 __func__, eol, found, n, c, size, more);
2030 if (n > size) {
2031 ret = copy_to_user(*b, read_buf_addr(ldata, tail), size);
2032 if (ret)
2033 return -EFAULT;
2034 ret = copy_to_user(*b + size, ldata->read_buf, n - size);
2035 } else
2036 ret = copy_to_user(*b, read_buf_addr(ldata, tail), n);
2038 if (ret)
2039 return -EFAULT;
2040 *b += n;
2041 *nr -= n;
2043 if (found)
2044 clear_bit(eol, ldata->read_flags);
2045 smp_mb__after_clear_bit();
2046 ldata->read_tail += c;
2048 if (found) {
2049 ldata->line_start = ldata->read_tail;
2050 tty_audit_push(tty);
2052 return eof_push ? -EAGAIN : 0;
2055 extern ssize_t redirected_tty_write(struct file *, const char __user *,
2056 size_t, loff_t *);
2059 * job_control - check job control
2060 * @tty: tty
2061 * @file: file handle
2063 * Perform job control management checks on this file/tty descriptor
2064 * and if appropriate send any needed signals and return a negative
2065 * error code if action should be taken.
2067 * Locking: redirected write test is safe
2068 * current->signal->tty check is safe
2069 * ctrl_lock to safely reference tty->pgrp
2072 static int job_control(struct tty_struct *tty, struct file *file)
2074 /* Job control check -- must be done at start and after
2075 every sleep (POSIX.1 7.1.1.4). */
2076 /* NOTE: not yet done after every sleep pending a thorough
2077 check of the logic of this change. -- jlc */
2078 /* don't stop on /dev/console */
2079 if (file->f_op->write == redirected_tty_write ||
2080 current->signal->tty != tty)
2081 return 0;
2083 spin_lock_irq(&tty->ctrl_lock);
2084 if (!tty->pgrp)
2085 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
2086 else if (task_pgrp(current) != tty->pgrp) {
2087 spin_unlock_irq(&tty->ctrl_lock);
2088 if (is_ignored(SIGTTIN) || is_current_pgrp_orphaned())
2089 return -EIO;
2090 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
2091 set_thread_flag(TIF_SIGPENDING);
2092 return -ERESTARTSYS;
2094 spin_unlock_irq(&tty->ctrl_lock);
2095 return 0;
2100 * n_tty_read - read function for tty
2101 * @tty: tty device
2102 * @file: file object
2103 * @buf: userspace buffer pointer
2104 * @nr: size of I/O
2106 * Perform reads for the line discipline. We are guaranteed that the
2107 * line discipline will not be closed under us but we may get multiple
2108 * parallel readers and must handle this ourselves. We may also get
2109 * a hangup. Always called in user context, may sleep.
2111 * This code must be sure never to sleep through a hangup.
2113 * n_tty_read()/consumer path:
2114 * claims non-exclusive termios_rwsem
2115 * publishes read_tail
2118 static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
2119 unsigned char __user *buf, size_t nr)
2121 struct n_tty_data *ldata = tty->disc_data;
2122 unsigned char __user *b = buf;
2123 DECLARE_WAITQUEUE(wait, current);
2124 int c;
2125 int minimum, time;
2126 ssize_t retval = 0;
2127 long timeout;
2128 unsigned long flags;
2129 int packet;
2131 c = job_control(tty, file);
2132 if (c < 0)
2133 return c;
2136 * Internal serialization of reads.
2138 if (file->f_flags & O_NONBLOCK) {
2139 if (!mutex_trylock(&ldata->atomic_read_lock))
2140 return -EAGAIN;
2141 } else {
2142 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
2143 return -ERESTARTSYS;
2146 down_read(&tty->termios_rwsem);
2148 minimum = time = 0;
2149 timeout = MAX_SCHEDULE_TIMEOUT;
2150 if (!ldata->icanon) {
2151 minimum = MIN_CHAR(tty);
2152 if (minimum) {
2153 time = (HZ / 10) * TIME_CHAR(tty);
2154 if (time)
2155 ldata->minimum_to_wake = 1;
2156 else if (!waitqueue_active(&tty->read_wait) ||
2157 (ldata->minimum_to_wake > minimum))
2158 ldata->minimum_to_wake = minimum;
2159 } else {
2160 timeout = (HZ / 10) * TIME_CHAR(tty);
2161 ldata->minimum_to_wake = minimum = 1;
2165 packet = tty->packet;
2167 add_wait_queue(&tty->read_wait, &wait);
2168 while (nr) {
2169 /* First test for status change. */
2170 if (packet && tty->link->ctrl_status) {
2171 unsigned char cs;
2172 if (b != buf)
2173 break;
2174 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
2175 cs = tty->link->ctrl_status;
2176 tty->link->ctrl_status = 0;
2177 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
2178 if (tty_put_user(tty, cs, b++)) {
2179 retval = -EFAULT;
2180 b--;
2181 break;
2183 nr--;
2184 break;
2186 /* This statement must be first before checking for input
2187 so that any interrupt will set the state back to
2188 TASK_RUNNING. */
2189 set_current_state(TASK_INTERRUPTIBLE);
2191 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
2192 ((minimum - (b - buf)) >= 1))
2193 ldata->minimum_to_wake = (minimum - (b - buf));
2195 if (!input_available_p(tty, 0)) {
2196 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
2197 up_read(&tty->termios_rwsem);
2198 tty_flush_to_ldisc(tty);
2199 down_read(&tty->termios_rwsem);
2200 if (!input_available_p(tty, 0)) {
2201 retval = -EIO;
2202 break;
2204 } else {
2205 if (tty_hung_up_p(file))
2206 break;
2207 if (!timeout)
2208 break;
2209 if (file->f_flags & O_NONBLOCK) {
2210 retval = -EAGAIN;
2211 break;
2213 if (signal_pending(current)) {
2214 retval = -ERESTARTSYS;
2215 break;
2217 n_tty_set_room(tty);
2218 up_read(&tty->termios_rwsem);
2220 timeout = schedule_timeout(timeout);
2222 down_read(&tty->termios_rwsem);
2223 continue;
2226 __set_current_state(TASK_RUNNING);
2228 /* Deal with packet mode. */
2229 if (packet && b == buf) {
2230 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
2231 retval = -EFAULT;
2232 b--;
2233 break;
2235 nr--;
2238 if (ldata->icanon && !L_EXTPROC(tty)) {
2239 retval = canon_copy_from_read_buf(tty, &b, &nr);
2240 if (retval == -EAGAIN) {
2241 retval = 0;
2242 continue;
2243 } else if (retval)
2244 break;
2245 } else {
2246 int uncopied;
2247 /* The copy function takes the read lock and handles
2248 locking internally for this case */
2249 uncopied = copy_from_read_buf(tty, &b, &nr);
2250 uncopied += copy_from_read_buf(tty, &b, &nr);
2251 if (uncopied) {
2252 retval = -EFAULT;
2253 break;
2257 n_tty_check_unthrottle(tty);
2259 if (b - buf >= minimum)
2260 break;
2261 if (time)
2262 timeout = time;
2264 n_tty_set_room(tty);
2265 up_read(&tty->termios_rwsem);
2267 mutex_unlock(&ldata->atomic_read_lock);
2268 remove_wait_queue(&tty->read_wait, &wait);
2270 if (!waitqueue_active(&tty->read_wait))
2271 ldata->minimum_to_wake = minimum;
2273 __set_current_state(TASK_RUNNING);
2274 if (b - buf)
2275 retval = b - buf;
2277 return retval;
2281 * n_tty_write - write function for tty
2282 * @tty: tty device
2283 * @file: file object
2284 * @buf: userspace buffer pointer
2285 * @nr: size of I/O
2287 * Write function of the terminal device. This is serialized with
2288 * respect to other write callers but not to termios changes, reads
2289 * and other such events. Since the receive code will echo characters,
2290 * thus calling driver write methods, the output_lock is used in
2291 * the output processing functions called here as well as in the
2292 * echo processing function to protect the column state and space
2293 * left in the buffer.
2295 * This code must be sure never to sleep through a hangup.
2297 * Locking: output_lock to protect column state and space left
2298 * (note that the process_output*() functions take this
2299 * lock themselves)
2302 static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
2303 const unsigned char *buf, size_t nr)
2305 const unsigned char *b = buf;
2306 DECLARE_WAITQUEUE(wait, current);
2307 int c;
2308 ssize_t retval = 0;
2310 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2311 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2312 retval = tty_check_change(tty);
2313 if (retval)
2314 return retval;
2317 down_read(&tty->termios_rwsem);
2319 /* Write out any echoed characters that are still pending */
2320 process_echoes(tty);
2322 add_wait_queue(&tty->write_wait, &wait);
2323 while (1) {
2324 set_current_state(TASK_INTERRUPTIBLE);
2325 if (signal_pending(current)) {
2326 retval = -ERESTARTSYS;
2327 break;
2329 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2330 retval = -EIO;
2331 break;
2333 if (O_OPOST(tty)) {
2334 while (nr > 0) {
2335 ssize_t num = process_output_block(tty, b, nr);
2336 if (num < 0) {
2337 if (num == -EAGAIN)
2338 break;
2339 retval = num;
2340 goto break_out;
2342 b += num;
2343 nr -= num;
2344 if (nr == 0)
2345 break;
2346 c = *b;
2347 if (process_output(c, tty) < 0)
2348 break;
2349 b++; nr--;
2351 if (tty->ops->flush_chars)
2352 tty->ops->flush_chars(tty);
2353 } else {
2354 struct n_tty_data *ldata = tty->disc_data;
2356 while (nr > 0) {
2357 mutex_lock(&ldata->output_lock);
2358 c = tty->ops->write(tty, b, nr);
2359 mutex_unlock(&ldata->output_lock);
2360 if (c < 0) {
2361 retval = c;
2362 goto break_out;
2364 if (!c)
2365 break;
2366 b += c;
2367 nr -= c;
2370 if (!nr)
2371 break;
2372 if (file->f_flags & O_NONBLOCK) {
2373 retval = -EAGAIN;
2374 break;
2376 up_read(&tty->termios_rwsem);
2378 schedule();
2380 down_read(&tty->termios_rwsem);
2382 break_out:
2383 __set_current_state(TASK_RUNNING);
2384 remove_wait_queue(&tty->write_wait, &wait);
2385 if (b - buf != nr && tty->fasync)
2386 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
2387 up_read(&tty->termios_rwsem);
2388 return (b - buf) ? b - buf : retval;
2392 * n_tty_poll - poll method for N_TTY
2393 * @tty: terminal device
2394 * @file: file accessing it
2395 * @wait: poll table
2397 * Called when the line discipline is asked to poll() for data or
2398 * for special events. This code is not serialized with respect to
2399 * other events save open/close.
2401 * This code must be sure never to sleep through a hangup.
2402 * Called without the kernel lock held - fine
2405 static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
2406 poll_table *wait)
2408 struct n_tty_data *ldata = tty->disc_data;
2409 unsigned int mask = 0;
2411 poll_wait(file, &tty->read_wait, wait);
2412 poll_wait(file, &tty->write_wait, wait);
2413 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
2414 mask |= POLLIN | POLLRDNORM;
2415 if (tty->packet && tty->link->ctrl_status)
2416 mask |= POLLPRI | POLLIN | POLLRDNORM;
2417 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2418 mask |= POLLHUP;
2419 if (tty_hung_up_p(file))
2420 mask |= POLLHUP;
2421 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2422 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
2423 ldata->minimum_to_wake = MIN_CHAR(tty);
2424 else
2425 ldata->minimum_to_wake = 1;
2427 if (tty->ops->write && !tty_is_writelocked(tty) &&
2428 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2429 tty_write_room(tty) > 0)
2430 mask |= POLLOUT | POLLWRNORM;
2431 return mask;
2434 static unsigned long inq_canon(struct n_tty_data *ldata)
2436 size_t nr, head, tail;
2438 if (ldata->canon_head == ldata->read_tail)
2439 return 0;
2440 head = ldata->canon_head;
2441 tail = ldata->read_tail;
2442 nr = head - tail;
2443 /* Skip EOF-chars.. */
2444 while (head != tail) {
2445 if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
2446 read_buf(ldata, tail) == __DISABLED_CHAR)
2447 nr--;
2448 tail++;
2450 return nr;
2453 static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2454 unsigned int cmd, unsigned long arg)
2456 struct n_tty_data *ldata = tty->disc_data;
2457 int retval;
2459 switch (cmd) {
2460 case TIOCOUTQ:
2461 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2462 case TIOCINQ:
2463 down_write(&tty->termios_rwsem);
2464 if (L_ICANON(tty))
2465 retval = inq_canon(ldata);
2466 else
2467 retval = read_cnt(ldata);
2468 up_write(&tty->termios_rwsem);
2469 return put_user(retval, (unsigned int __user *) arg);
2470 default:
2471 return n_tty_ioctl_helper(tty, file, cmd, arg);
2475 static void n_tty_fasync(struct tty_struct *tty, int on)
2477 struct n_tty_data *ldata = tty->disc_data;
2479 if (!waitqueue_active(&tty->read_wait)) {
2480 if (on)
2481 ldata->minimum_to_wake = 1;
2482 else if (!tty->fasync)
2483 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2487 struct tty_ldisc_ops tty_ldisc_N_TTY = {
2488 .magic = TTY_LDISC_MAGIC,
2489 .name = "n_tty",
2490 .open = n_tty_open,
2491 .close = n_tty_close,
2492 .flush_buffer = n_tty_flush_buffer,
2493 .chars_in_buffer = n_tty_chars_in_buffer,
2494 .read = n_tty_read,
2495 .write = n_tty_write,
2496 .ioctl = n_tty_ioctl,
2497 .set_termios = n_tty_set_termios,
2498 .poll = n_tty_poll,
2499 .receive_buf = n_tty_receive_buf,
2500 .write_wakeup = n_tty_write_wakeup,
2501 .fasync = n_tty_fasync,
2502 .receive_buf2 = n_tty_receive_buf2,
2506 * n_tty_inherit_ops - inherit N_TTY methods
2507 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2509 * Enables a 'subclass' line discipline to 'inherit' N_TTY
2510 * methods.
2513 void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2515 *ops = tty_ldisc_N_TTY;
2516 ops->owner = NULL;
2517 ops->refcount = ops->flags = 0;
2519 EXPORT_SYMBOL_GPL(n_tty_inherit_ops);