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,
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
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
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>
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>
52 #include <asm/system.h>
54 /* number of characters left in xmit buffer before select has we have room */
55 #define WAKEUP_CHARS 256
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.
62 #define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
63 #define TTY_THRESHOLD_UNTHROTTLE 128
66 * Special byte codes used in the echo buffer to represent operations
67 * or special handling of characters. Bytes in the echo buffer that
68 * are not part of such special blocks are treated as normal character
71 #define ECHO_OP_START 0xff
72 #define ECHO_OP_MOVE_BACK_COL 0x80
73 #define ECHO_OP_SET_CANON_COL 0x81
74 #define ECHO_OP_ERASE_TAB 0x82
76 static inline unsigned char *alloc_buf(void)
78 gfp_t prio
= in_interrupt() ? GFP_ATOMIC
: GFP_KERNEL
;
80 if (PAGE_SIZE
!= N_TTY_BUF_SIZE
)
81 return kmalloc(N_TTY_BUF_SIZE
, prio
);
83 return (unsigned char *)__get_free_page(prio
);
86 static inline void free_buf(unsigned char *buf
)
88 if (PAGE_SIZE
!= N_TTY_BUF_SIZE
)
91 free_page((unsigned long) buf
);
94 static inline int tty_put_user(struct tty_struct
*tty
, unsigned char x
,
95 unsigned char __user
*ptr
)
97 tty_audit_add_data(tty
, &x
, 1);
98 return put_user(x
, ptr
);
102 * n_tty_set__room - receive space
105 * Called by the driver to find out how much data it is
106 * permitted to feed to the line discipline without any being lost
107 * and thus to manage flow control. Not serialized. Answers for the
111 static void n_tty_set_room(struct tty_struct
*tty
)
113 /* tty->read_cnt is not read locked ? */
114 int left
= N_TTY_BUF_SIZE
- tty
->read_cnt
- 1;
117 * If we are doing input canonicalization, and there are no
118 * pending newlines, let characters through without limit, so
119 * that erase characters will be handled. Other excess
120 * characters will be beeped.
123 left
= tty
->icanon
&& !tty
->canon_data
;
124 tty
->receive_room
= left
;
127 static void put_tty_queue_nolock(unsigned char c
, struct tty_struct
*tty
)
129 if (tty
->read_cnt
< N_TTY_BUF_SIZE
) {
130 tty
->read_buf
[tty
->read_head
] = c
;
131 tty
->read_head
= (tty
->read_head
+ 1) & (N_TTY_BUF_SIZE
-1);
137 * put_tty_queue - add character to tty
141 * Add a character to the tty read_buf queue. This is done under the
142 * read_lock to serialize character addition and also to protect us
143 * against parallel reads or flushes
146 static void put_tty_queue(unsigned char c
, struct tty_struct
*tty
)
150 * The problem of stomping on the buffers ends here.
151 * Why didn't anyone see this one coming? --AJK
153 spin_lock_irqsave(&tty
->read_lock
, flags
);
154 put_tty_queue_nolock(c
, tty
);
155 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
159 * check_unthrottle - allow new receive data
162 * Check whether to call the driver unthrottle functions
164 * Can sleep, may be called under the atomic_read_lock mutex but
165 * this is not guaranteed.
167 static void check_unthrottle(struct tty_struct
*tty
)
174 * reset_buffer_flags - reset buffer state
175 * @tty: terminal to reset
177 * Reset the read buffer counters, clear the flags,
178 * and make sure the driver is unthrottled. Called
179 * from n_tty_open() and n_tty_flush_buffer().
181 * Locking: tty_read_lock for read fields.
184 static void reset_buffer_flags(struct tty_struct
*tty
)
188 spin_lock_irqsave(&tty
->read_lock
, flags
);
189 tty
->read_head
= tty
->read_tail
= tty
->read_cnt
= 0;
190 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
192 mutex_lock(&tty
->echo_lock
);
193 tty
->echo_pos
= tty
->echo_cnt
= tty
->echo_overrun
= 0;
194 mutex_unlock(&tty
->echo_lock
);
196 tty
->canon_head
= tty
->canon_data
= tty
->erasing
= 0;
197 memset(&tty
->read_flags
, 0, sizeof tty
->read_flags
);
199 check_unthrottle(tty
);
203 * n_tty_flush_buffer - clean input queue
204 * @tty: terminal device
206 * Flush the input buffer. Called when the line discipline is
207 * being closed, when the tty layer wants the buffer flushed (eg
208 * at hangup) or when the N_TTY line discipline internally has to
209 * clean the pending queue (for example some signals).
211 * Locking: ctrl_lock, read_lock.
214 static void n_tty_flush_buffer(struct tty_struct
*tty
)
217 /* clear everything and unthrottle the driver */
218 reset_buffer_flags(tty
);
223 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
224 if (tty
->link
->packet
) {
225 tty
->ctrl_status
|= TIOCPKT_FLUSHREAD
;
226 wake_up_interruptible(&tty
->link
->read_wait
);
228 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
232 * n_tty_chars_in_buffer - report available bytes
235 * Report the number of characters buffered to be delivered to user
236 * at this instant in time.
241 static ssize_t
n_tty_chars_in_buffer(struct tty_struct
*tty
)
246 spin_lock_irqsave(&tty
->read_lock
, flags
);
249 } else if (tty
->canon_data
) {
250 n
= (tty
->canon_head
> tty
->read_tail
) ?
251 tty
->canon_head
- tty
->read_tail
:
252 tty
->canon_head
+ (N_TTY_BUF_SIZE
- tty
->read_tail
);
254 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
259 * is_utf8_continuation - utf8 multibyte check
262 * Returns true if the utf8 character 'c' is a multibyte continuation
263 * character. We use this to correctly compute the on screen size
264 * of the character when printing
267 static inline int is_utf8_continuation(unsigned char c
)
269 return (c
& 0xc0) == 0x80;
273 * is_continuation - multibyte check
276 * Returns true if the utf8 character 'c' is a multibyte continuation
277 * character and the terminal is in unicode mode.
280 static inline int is_continuation(unsigned char c
, struct tty_struct
*tty
)
282 return I_IUTF8(tty
) && is_utf8_continuation(c
);
286 * do_output_char - output one character
287 * @c: character (or partial unicode symbol)
288 * @tty: terminal device
289 * @space: space available in tty driver write buffer
291 * This is a helper function that handles one output character
292 * (including special characters like TAB, CR, LF, etc.),
293 * putting the results in the tty driver's write buffer.
295 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
296 * and NLDLY. They simply aren't relevant in the world today.
297 * If you ever need them, add them here.
299 * Returns the number of bytes of buffer space used or -1 if
302 * Locking: should be called under the output_lock to protect
303 * the column state and space left in the buffer
306 static int do_output_char(unsigned char c
, struct tty_struct
*tty
, int space
)
320 tty
->canon_column
= tty
->column
= 0;
321 tty_put_char(tty
, '\r');
322 tty_put_char(tty
, c
);
325 tty
->canon_column
= tty
->column
;
328 if (O_ONOCR(tty
) && tty
->column
== 0)
333 tty
->canon_column
= tty
->column
= 0;
336 tty
->canon_column
= tty
->column
= 0;
339 spaces
= 8 - (tty
->column
& 7);
340 if (O_TABDLY(tty
) == XTABS
) {
343 tty
->column
+= spaces
;
344 tty
->ops
->write(tty
, " ", spaces
);
347 tty
->column
+= spaces
;
357 if (!is_continuation(c
, tty
))
363 tty_put_char(tty
, c
);
368 * process_output - output post processor
369 * @c: character (or partial unicode symbol)
370 * @tty: terminal device
372 * Perform OPOST processing. Returns -1 when the output device is
373 * full and the character must be retried.
375 * Locking: output_lock to protect column state and space left
376 * (also, this is called from n_tty_write under the
377 * tty layer write lock)
380 static int process_output(unsigned char c
, struct tty_struct
*tty
)
384 mutex_lock(&tty
->output_lock
);
386 space
= tty_write_room(tty
);
387 retval
= do_output_char(c
, tty
, space
);
389 mutex_unlock(&tty
->output_lock
);
397 * process_output_block - block post processor
398 * @tty: terminal device
399 * @inbuf: user buffer
400 * @nr: number of bytes
402 * This path is used to speed up block console writes, among other
403 * things when processing blocks of output data. It handles only
404 * the simple cases normally found and helps to generate blocks of
405 * symbols for the console driver and thus improve performance.
407 * Locking: output_lock to protect column state and space left
408 * (also, this is called from n_tty_write under the
409 * tty layer write lock)
412 static ssize_t
process_output_block(struct tty_struct
*tty
,
413 const unsigned char *buf
, unsigned int nr
)
417 const unsigned char *cp
;
419 mutex_lock(&tty
->output_lock
);
421 space
= tty_write_room(tty
);
423 mutex_unlock(&tty
->output_lock
);
429 for (i
= 0, cp
= buf
; i
< nr
; i
++, cp
++) {
430 unsigned char c
= *cp
;
438 tty
->canon_column
= tty
->column
;
441 if (O_ONOCR(tty
) && tty
->column
== 0)
445 tty
->canon_column
= tty
->column
= 0;
457 if (!is_continuation(c
, tty
))
464 i
= tty
->ops
->write(tty
, buf
, i
);
466 mutex_unlock(&tty
->output_lock
);
471 * process_echoes - write pending echo characters
472 * @tty: terminal device
474 * Write previously buffered echo (and other ldisc-generated)
475 * characters to the tty.
477 * Characters generated by the ldisc (including echoes) need to
478 * be buffered because the driver's write buffer can fill during
479 * heavy program output. Echoing straight to the driver will
480 * often fail under these conditions, causing lost characters and
481 * resulting mismatches of ldisc state information.
483 * Since the ldisc state must represent the characters actually sent
484 * to the driver at the time of the write, operations like certain
485 * changes in column state are also saved in the buffer and executed
488 * A circular fifo buffer is used so that the most recent characters
489 * are prioritized. Also, when control characters are echoed with a
490 * prefixed "^", the pair is treated atomically and thus not separated.
492 * Locking: output_lock to protect column state and space left,
493 * echo_lock to protect the echo buffer
496 static void process_echoes(struct tty_struct
*tty
)
500 unsigned char *cp
, *buf_end
;
505 mutex_lock(&tty
->output_lock
);
506 mutex_lock(&tty
->echo_lock
);
508 space
= tty_write_room(tty
);
510 buf_end
= tty
->echo_buf
+ N_TTY_BUF_SIZE
;
511 cp
= tty
->echo_buf
+ tty
->echo_pos
;
515 if (c
== ECHO_OP_START
) {
518 int no_space_left
= 0;
521 * If the buffer byte is the start of a multi-byte
522 * operation, get the next byte, which is either the
523 * op code or a control character value.
527 opp
-= N_TTY_BUF_SIZE
;
531 unsigned int num_chars
, num_bs
;
533 case ECHO_OP_ERASE_TAB
:
534 if (++opp
== buf_end
)
535 opp
-= N_TTY_BUF_SIZE
;
539 * Determine how many columns to go back
540 * in order to erase the tab.
541 * This depends on the number of columns
542 * used by other characters within the tab
543 * area. If this (modulo 8) count is from
544 * the start of input rather than from a
545 * previous tab, we offset by canon column.
546 * Otherwise, tab spacing is normal.
548 if (!(num_chars
& 0x80))
549 num_chars
+= tty
->canon_column
;
550 num_bs
= 8 - (num_chars
& 7);
552 if (num_bs
> space
) {
558 tty_put_char(tty
, '\b');
566 case ECHO_OP_SET_CANON_COL
:
567 tty
->canon_column
= tty
->column
;
572 case ECHO_OP_MOVE_BACK_COL
:
580 /* This is an escaped echo op start code */
585 tty_put_char(tty
, ECHO_OP_START
);
594 if (L_ECHOCTL(tty
)) {
596 * Ensure there is enough space
597 * for the whole ctrl pair.
603 tty_put_char(tty
, '^');
604 tty_put_char(tty
, op
^ 0100);
612 tty_put_char(tty
, op
);
617 * If above falls through, this was an
629 retval
= do_output_char(c
, tty
, space
);
637 /* When end of circular buffer reached, wrap around */
639 cp
-= N_TTY_BUF_SIZE
;
645 tty
->echo_overrun
= 0;
647 int num_processed
= tty
->echo_cnt
- nr
;
648 tty
->echo_pos
+= num_processed
;
649 tty
->echo_pos
&= N_TTY_BUF_SIZE
- 1;
651 if (num_processed
> 0)
652 tty
->echo_overrun
= 0;
655 mutex_unlock(&tty
->echo_lock
);
656 mutex_unlock(&tty
->output_lock
);
658 if (tty
->ops
->flush_chars
)
659 tty
->ops
->flush_chars(tty
);
663 * add_echo_byte - add a byte to the echo buffer
664 * @c: unicode byte to echo
665 * @tty: terminal device
667 * Add a character or operation byte to the echo buffer.
669 * Should be called under the echo lock to protect the echo buffer.
672 static void add_echo_byte(unsigned char c
, struct tty_struct
*tty
)
676 if (tty
->echo_cnt
== N_TTY_BUF_SIZE
) {
677 /* Circular buffer is already at capacity */
678 new_byte_pos
= tty
->echo_pos
;
681 * Since the buffer start position needs to be advanced,
682 * be sure to step by a whole operation byte group.
684 if (tty
->echo_buf
[tty
->echo_pos
] == ECHO_OP_START
) {
685 if (tty
->echo_buf
[(tty
->echo_pos
+ 1) &
686 (N_TTY_BUF_SIZE
- 1)] ==
697 tty
->echo_pos
&= N_TTY_BUF_SIZE
- 1;
699 tty
->echo_overrun
= 1;
701 new_byte_pos
= tty
->echo_pos
+ tty
->echo_cnt
;
702 new_byte_pos
&= N_TTY_BUF_SIZE
- 1;
706 tty
->echo_buf
[new_byte_pos
] = c
;
710 * echo_move_back_col - add operation to move back a column
711 * @tty: terminal device
713 * Add an operation to the echo buffer to move back one column.
715 * Locking: echo_lock to protect the echo buffer
718 static void echo_move_back_col(struct tty_struct
*tty
)
720 mutex_lock(&tty
->echo_lock
);
722 add_echo_byte(ECHO_OP_START
, tty
);
723 add_echo_byte(ECHO_OP_MOVE_BACK_COL
, tty
);
725 mutex_unlock(&tty
->echo_lock
);
729 * echo_set_canon_col - add operation to set the canon column
730 * @tty: terminal device
732 * Add an operation to the echo buffer to set the canon column
733 * to the current column.
735 * Locking: echo_lock to protect the echo buffer
738 static void echo_set_canon_col(struct tty_struct
*tty
)
740 mutex_lock(&tty
->echo_lock
);
742 add_echo_byte(ECHO_OP_START
, tty
);
743 add_echo_byte(ECHO_OP_SET_CANON_COL
, tty
);
745 mutex_unlock(&tty
->echo_lock
);
749 * echo_erase_tab - add operation to erase a tab
750 * @num_chars: number of character columns already used
751 * @after_tab: true if num_chars starts after a previous tab
752 * @tty: terminal device
754 * Add an operation to the echo buffer to erase a tab.
756 * Called by the eraser function, which knows how many character
757 * columns have been used since either a previous tab or the start
758 * of input. This information will be used later, along with
759 * canon column (if applicable), to go back the correct number
762 * Locking: echo_lock to protect the echo buffer
765 static void echo_erase_tab(unsigned int num_chars
, int after_tab
,
766 struct tty_struct
*tty
)
768 mutex_lock(&tty
->echo_lock
);
770 add_echo_byte(ECHO_OP_START
, tty
);
771 add_echo_byte(ECHO_OP_ERASE_TAB
, tty
);
773 /* We only need to know this modulo 8 (tab spacing) */
776 /* Set the high bit as a flag if num_chars is after a previous tab */
780 add_echo_byte(num_chars
, tty
);
782 mutex_unlock(&tty
->echo_lock
);
786 * echo_char_raw - echo a character raw
787 * @c: unicode byte to echo
788 * @tty: terminal device
790 * Echo user input back onto the screen. This must be called only when
791 * L_ECHO(tty) is true. Called from the driver receive_buf path.
793 * This variant does not treat control characters specially.
795 * Locking: echo_lock to protect the echo buffer
798 static void echo_char_raw(unsigned char c
, struct tty_struct
*tty
)
800 mutex_lock(&tty
->echo_lock
);
802 if (c
== ECHO_OP_START
) {
803 add_echo_byte(ECHO_OP_START
, tty
);
804 add_echo_byte(ECHO_OP_START
, tty
);
806 add_echo_byte(c
, tty
);
809 mutex_unlock(&tty
->echo_lock
);
813 * echo_char - echo a character
814 * @c: unicode byte to echo
815 * @tty: terminal device
817 * Echo user input back onto the screen. This must be called only when
818 * L_ECHO(tty) is true. Called from the driver receive_buf path.
820 * This variant tags control characters to be possibly echoed as
821 * as "^X" (where X is the letter representing the control char).
823 * Locking: echo_lock to protect the echo buffer
826 static void echo_char(unsigned char c
, struct tty_struct
*tty
)
828 mutex_lock(&tty
->echo_lock
);
830 if (c
== ECHO_OP_START
) {
831 add_echo_byte(ECHO_OP_START
, tty
);
832 add_echo_byte(ECHO_OP_START
, tty
);
834 if (iscntrl(c
) && c
!= '\t')
835 add_echo_byte(ECHO_OP_START
, tty
);
836 add_echo_byte(c
, tty
);
839 mutex_unlock(&tty
->echo_lock
);
843 * finish_erasing - complete erase
844 * @tty: tty doing the erase
847 static inline void finish_erasing(struct tty_struct
*tty
)
850 echo_char_raw('/', tty
);
856 * eraser - handle erase function
857 * @c: character input
858 * @tty: terminal device
860 * Perform erase and necessary output when an erase character is
861 * present in the stream from the driver layer. Handles the complexities
862 * of UTF-8 multibyte symbols.
864 * Locking: read_lock for tty buffers
867 static void eraser(unsigned char c
, struct tty_struct
*tty
)
869 enum { ERASE
, WERASE
, KILL
} kill_type
;
870 int head
, seen_alnums
, cnt
;
873 /* FIXME: locking needed ? */
874 if (tty
->read_head
== tty
->canon_head
) {
875 /* process_output('\a', tty); */ /* what do you think? */
878 if (c
== ERASE_CHAR(tty
))
880 else if (c
== WERASE_CHAR(tty
))
884 spin_lock_irqsave(&tty
->read_lock
, flags
);
885 tty
->read_cnt
-= ((tty
->read_head
- tty
->canon_head
) &
886 (N_TTY_BUF_SIZE
- 1));
887 tty
->read_head
= tty
->canon_head
;
888 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
891 if (!L_ECHOK(tty
) || !L_ECHOKE(tty
) || !L_ECHOE(tty
)) {
892 spin_lock_irqsave(&tty
->read_lock
, flags
);
893 tty
->read_cnt
-= ((tty
->read_head
- tty
->canon_head
) &
894 (N_TTY_BUF_SIZE
- 1));
895 tty
->read_head
= tty
->canon_head
;
896 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
898 echo_char(KILL_CHAR(tty
), tty
);
899 /* Add a newline if ECHOK is on and ECHOKE is off. */
901 echo_char_raw('\n', tty
);
908 /* FIXME: Locking ?? */
909 while (tty
->read_head
!= tty
->canon_head
) {
910 head
= tty
->read_head
;
912 /* erase a single possibly multibyte character */
914 head
= (head
- 1) & (N_TTY_BUF_SIZE
-1);
915 c
= tty
->read_buf
[head
];
916 } while (is_continuation(c
, tty
) && head
!= tty
->canon_head
);
918 /* do not partially erase */
919 if (is_continuation(c
, tty
))
922 if (kill_type
== WERASE
) {
923 /* Equivalent to BSD's ALTWERASE. */
924 if (isalnum(c
) || c
== '_')
926 else if (seen_alnums
)
929 cnt
= (tty
->read_head
- head
) & (N_TTY_BUF_SIZE
-1);
930 spin_lock_irqsave(&tty
->read_lock
, flags
);
931 tty
->read_head
= head
;
932 tty
->read_cnt
-= cnt
;
933 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
935 if (L_ECHOPRT(tty
)) {
937 echo_char_raw('\\', tty
);
940 /* if cnt > 1, output a multi-byte character */
943 head
= (head
+1) & (N_TTY_BUF_SIZE
-1);
944 echo_char_raw(tty
->read_buf
[head
], tty
);
945 echo_move_back_col(tty
);
947 } else if (kill_type
== ERASE
&& !L_ECHOE(tty
)) {
948 echo_char(ERASE_CHAR(tty
), tty
);
949 } else if (c
== '\t') {
950 unsigned int num_chars
= 0;
952 unsigned long tail
= tty
->read_head
;
955 * Count the columns used for characters
956 * since the start of input or after a
958 * This info is used to go back the correct
961 while (tail
!= tty
->canon_head
) {
962 tail
= (tail
-1) & (N_TTY_BUF_SIZE
-1);
963 c
= tty
->read_buf
[tail
];
967 } else if (iscntrl(c
)) {
970 } else if (!is_continuation(c
, tty
)) {
974 echo_erase_tab(num_chars
, after_tab
, tty
);
976 if (iscntrl(c
) && L_ECHOCTL(tty
)) {
977 echo_char_raw('\b', tty
);
978 echo_char_raw(' ', tty
);
979 echo_char_raw('\b', tty
);
981 if (!iscntrl(c
) || L_ECHOCTL(tty
)) {
982 echo_char_raw('\b', tty
);
983 echo_char_raw(' ', tty
);
984 echo_char_raw('\b', tty
);
988 if (kill_type
== ERASE
)
991 if (tty
->read_head
== tty
->canon_head
&& L_ECHO(tty
))
996 * isig - handle the ISIG optio
999 * @flush: force flush
1001 * Called when a signal is being sent due to terminal input. This
1002 * may caus terminal flushing to take place according to the termios
1003 * settings and character used. Called from the driver receive_buf
1004 * path so serialized.
1006 * Locking: ctrl_lock, read_lock (both via flush buffer)
1009 static inline void isig(int sig
, struct tty_struct
*tty
, int flush
)
1012 kill_pgrp(tty
->pgrp
, sig
, 1);
1013 if (flush
|| !L_NOFLSH(tty
)) {
1014 n_tty_flush_buffer(tty
);
1015 tty_driver_flush_buffer(tty
);
1020 * n_tty_receive_break - handle break
1023 * An RS232 break event has been hit in the incoming bitstream. This
1024 * can cause a variety of events depending upon the termios settings.
1026 * Called from the receive_buf path so single threaded.
1029 static inline void n_tty_receive_break(struct tty_struct
*tty
)
1033 if (I_BRKINT(tty
)) {
1034 isig(SIGINT
, tty
, 1);
1037 if (I_PARMRK(tty
)) {
1038 put_tty_queue('\377', tty
);
1039 put_tty_queue('\0', tty
);
1041 put_tty_queue('\0', tty
);
1042 wake_up_interruptible(&tty
->read_wait
);
1046 * n_tty_receive_overrun - handle overrun reporting
1049 * Data arrived faster than we could process it. While the tty
1050 * driver has flagged this the bits that were missed are gone
1053 * Called from the receive_buf path so single threaded. Does not
1054 * need locking as num_overrun and overrun_time are function
1058 static inline void n_tty_receive_overrun(struct tty_struct
*tty
)
1063 if (time_before(tty
->overrun_time
, jiffies
- HZ
) ||
1064 time_after(tty
->overrun_time
, jiffies
)) {
1065 printk(KERN_WARNING
"%s: %d input overrun(s)\n",
1068 tty
->overrun_time
= jiffies
;
1069 tty
->num_overrun
= 0;
1074 * n_tty_receive_parity_error - error notifier
1075 * @tty: terminal device
1078 * Process a parity error and queue the right data to indicate
1079 * the error case if necessary. Locking as per n_tty_receive_buf.
1081 static inline void n_tty_receive_parity_error(struct tty_struct
*tty
,
1086 if (I_PARMRK(tty
)) {
1087 put_tty_queue('\377', tty
);
1088 put_tty_queue('\0', tty
);
1089 put_tty_queue(c
, tty
);
1090 } else if (I_INPCK(tty
))
1091 put_tty_queue('\0', tty
);
1093 put_tty_queue(c
, tty
);
1094 wake_up_interruptible(&tty
->read_wait
);
1098 * n_tty_receive_char - perform processing
1099 * @tty: terminal device
1102 * Process an individual character of input received from the driver.
1103 * This is serialized with respect to itself by the rules for the
1107 static inline void n_tty_receive_char(struct tty_struct
*tty
, unsigned char c
)
1109 unsigned long flags
;
1113 put_tty_queue(c
, tty
);
1119 if (I_IUCLC(tty
) && L_IEXTEN(tty
))
1122 if (tty
->stopped
&& !tty
->flow_stopped
&& I_IXON(tty
) &&
1123 I_IXANY(tty
) && c
!= START_CHAR(tty
) && c
!= STOP_CHAR(tty
) &&
1124 c
!= INTR_CHAR(tty
) && c
!= QUIT_CHAR(tty
) && c
!= SUSP_CHAR(tty
)) {
1126 process_echoes(tty
);
1131 if (c
== START_CHAR(tty
)) {
1133 process_echoes(tty
);
1134 } else if (c
== STOP_CHAR(tty
))
1141 * If the previous character was LNEXT, or we know that this
1142 * character is not one of the characters that we'll have to
1143 * handle specially, do shortcut processing to speed things
1146 if (!test_bit(c
, tty
->process_char_map
) || tty
->lnext
) {
1148 parmrk
= (c
== (unsigned char) '\377' && I_PARMRK(tty
)) ? 1 : 0;
1149 if (tty
->read_cnt
>= (N_TTY_BUF_SIZE
- parmrk
- 1)) {
1150 /* beep if no space */
1152 process_output('\a', tty
);
1156 finish_erasing(tty
);
1157 /* Record the column of first canon char. */
1158 if (tty
->canon_head
== tty
->read_head
)
1159 echo_set_canon_col(tty
);
1161 process_echoes(tty
);
1164 put_tty_queue(c
, tty
);
1165 put_tty_queue(c
, tty
);
1170 if (c
== START_CHAR(tty
)) {
1172 process_echoes(tty
);
1175 if (c
== STOP_CHAR(tty
)) {
1184 if (c
== INTR_CHAR(tty
))
1187 if (c
== QUIT_CHAR(tty
))
1190 if (c
== SUSP_CHAR(tty
)) {
1193 * Note that we do not use isig() here because we want
1195 * 1) flush, 2) echo, 3) signal
1197 if (!L_NOFLSH(tty
)) {
1198 n_tty_flush_buffer(tty
);
1199 tty_driver_flush_buffer(tty
);
1205 process_echoes(tty
);
1208 kill_pgrp(tty
->pgrp
, signal
, 1);
1218 } else if (c
== '\n' && I_INLCR(tty
))
1222 if (c
== ERASE_CHAR(tty
) || c
== KILL_CHAR(tty
) ||
1223 (c
== WERASE_CHAR(tty
) && L_IEXTEN(tty
))) {
1225 process_echoes(tty
);
1228 if (c
== LNEXT_CHAR(tty
) && L_IEXTEN(tty
)) {
1231 finish_erasing(tty
);
1232 if (L_ECHOCTL(tty
)) {
1233 echo_char_raw('^', tty
);
1234 echo_char_raw('\b', tty
);
1235 process_echoes(tty
);
1240 if (c
== REPRINT_CHAR(tty
) && L_ECHO(tty
) &&
1242 unsigned long tail
= tty
->canon_head
;
1244 finish_erasing(tty
);
1246 echo_char_raw('\n', tty
);
1247 while (tail
!= tty
->read_head
) {
1248 echo_char(tty
->read_buf
[tail
], tty
);
1249 tail
= (tail
+1) & (N_TTY_BUF_SIZE
-1);
1251 process_echoes(tty
);
1255 if (tty
->read_cnt
>= N_TTY_BUF_SIZE
) {
1257 process_output('\a', tty
);
1260 if (L_ECHO(tty
) || L_ECHONL(tty
)) {
1261 echo_char_raw('\n', tty
);
1262 process_echoes(tty
);
1264 goto handle_newline
;
1266 if (c
== EOF_CHAR(tty
)) {
1267 if (tty
->read_cnt
>= N_TTY_BUF_SIZE
)
1269 if (tty
->canon_head
!= tty
->read_head
)
1270 set_bit(TTY_PUSH
, &tty
->flags
);
1271 c
= __DISABLED_CHAR
;
1272 goto handle_newline
;
1274 if ((c
== EOL_CHAR(tty
)) ||
1275 (c
== EOL2_CHAR(tty
) && L_IEXTEN(tty
))) {
1276 parmrk
= (c
== (unsigned char) '\377' && I_PARMRK(tty
))
1278 if (tty
->read_cnt
>= (N_TTY_BUF_SIZE
- parmrk
)) {
1280 process_output('\a', tty
);
1284 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1287 /* Record the column of first canon char. */
1288 if (tty
->canon_head
== tty
->read_head
)
1289 echo_set_canon_col(tty
);
1291 process_echoes(tty
);
1294 * XXX does PARMRK doubling happen for
1295 * EOL_CHAR and EOL2_CHAR?
1298 put_tty_queue(c
, tty
);
1301 spin_lock_irqsave(&tty
->read_lock
, flags
);
1302 set_bit(tty
->read_head
, tty
->read_flags
);
1303 put_tty_queue_nolock(c
, tty
);
1304 tty
->canon_head
= tty
->read_head
;
1306 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
1307 kill_fasync(&tty
->fasync
, SIGIO
, POLL_IN
);
1308 if (waitqueue_active(&tty
->read_wait
))
1309 wake_up_interruptible(&tty
->read_wait
);
1314 parmrk
= (c
== (unsigned char) '\377' && I_PARMRK(tty
)) ? 1 : 0;
1315 if (tty
->read_cnt
>= (N_TTY_BUF_SIZE
- parmrk
- 1)) {
1316 /* beep if no space */
1318 process_output('\a', tty
);
1322 finish_erasing(tty
);
1324 echo_char_raw('\n', tty
);
1326 /* Record the column of first canon char. */
1327 if (tty
->canon_head
== tty
->read_head
)
1328 echo_set_canon_col(tty
);
1331 process_echoes(tty
);
1335 put_tty_queue(c
, tty
);
1337 put_tty_queue(c
, tty
);
1342 * n_tty_write_wakeup - asynchronous I/O notifier
1345 * Required for the ptys, serial driver etc. since processes
1346 * that attach themselves to the master and rely on ASYNC
1347 * IO must be woken up
1350 static void n_tty_write_wakeup(struct tty_struct
*tty
)
1352 /* Write out any echoed characters that are still pending */
1353 process_echoes(tty
);
1355 if (tty
->fasync
&& test_and_clear_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
))
1356 kill_fasync(&tty
->fasync
, SIGIO
, POLL_OUT
);
1360 * n_tty_receive_buf - data receive
1361 * @tty: terminal device
1364 * @count: characters
1366 * Called by the terminal driver when a block of characters has
1367 * been received. This function must be called from soft contexts
1368 * not from interrupt context. The driver is responsible for making
1369 * calls one at a time and in order (or using flush_to_ldisc)
1372 static void n_tty_receive_buf(struct tty_struct
*tty
, const unsigned char *cp
,
1373 char *fp
, int count
)
1375 const unsigned char *p
;
1376 char *f
, flags
= TTY_NORMAL
;
1379 unsigned long cpuflags
;
1384 if (tty
->real_raw
) {
1385 spin_lock_irqsave(&tty
->read_lock
, cpuflags
);
1386 i
= min(N_TTY_BUF_SIZE
- tty
->read_cnt
,
1387 N_TTY_BUF_SIZE
- tty
->read_head
);
1389 memcpy(tty
->read_buf
+ tty
->read_head
, cp
, i
);
1390 tty
->read_head
= (tty
->read_head
+ i
) & (N_TTY_BUF_SIZE
-1);
1395 i
= min(N_TTY_BUF_SIZE
- tty
->read_cnt
,
1396 N_TTY_BUF_SIZE
- tty
->read_head
);
1398 memcpy(tty
->read_buf
+ tty
->read_head
, cp
, i
);
1399 tty
->read_head
= (tty
->read_head
+ i
) & (N_TTY_BUF_SIZE
-1);
1401 spin_unlock_irqrestore(&tty
->read_lock
, cpuflags
);
1403 for (i
= count
, p
= cp
, f
= fp
; i
; i
--, p
++) {
1408 n_tty_receive_char(tty
, *p
);
1411 n_tty_receive_break(tty
);
1415 n_tty_receive_parity_error(tty
, *p
);
1418 n_tty_receive_overrun(tty
);
1421 printk(KERN_ERR
"%s: unknown flag %d\n",
1422 tty_name(tty
, buf
), flags
);
1426 if (tty
->ops
->flush_chars
)
1427 tty
->ops
->flush_chars(tty
);
1430 n_tty_set_room(tty
);
1432 if (!tty
->icanon
&& (tty
->read_cnt
>= tty
->minimum_to_wake
)) {
1433 kill_fasync(&tty
->fasync
, SIGIO
, POLL_IN
);
1434 if (waitqueue_active(&tty
->read_wait
))
1435 wake_up_interruptible(&tty
->read_wait
);
1439 * Check the remaining room for the input canonicalization
1440 * mode. We don't want to throttle the driver if we're in
1441 * canonical mode and don't have a newline yet!
1443 if (tty
->receive_room
< TTY_THRESHOLD_THROTTLE
)
1447 int is_ignored(int sig
)
1449 return (sigismember(¤t
->blocked
, sig
) ||
1450 current
->sighand
->action
[sig
-1].sa
.sa_handler
== SIG_IGN
);
1454 * n_tty_set_termios - termios data changed
1456 * @old: previous data
1458 * Called by the tty layer when the user changes termios flags so
1459 * that the line discipline can plan ahead. This function cannot sleep
1460 * and is protected from re-entry by the tty layer. The user is
1461 * guaranteed that this function will not be re-entered or in progress
1462 * when the ldisc is closed.
1464 * Locking: Caller holds tty->termios_mutex
1467 static void n_tty_set_termios(struct tty_struct
*tty
, struct ktermios
*old
)
1469 int canon_change
= 1;
1473 canon_change
= (old
->c_lflag
^ tty
->termios
->c_lflag
) & ICANON
;
1475 memset(&tty
->read_flags
, 0, sizeof tty
->read_flags
);
1476 tty
->canon_head
= tty
->read_tail
;
1477 tty
->canon_data
= 0;
1481 if (canon_change
&& !L_ICANON(tty
) && tty
->read_cnt
)
1482 wake_up_interruptible(&tty
->read_wait
);
1484 tty
->icanon
= (L_ICANON(tty
) != 0);
1485 if (test_bit(TTY_HW_COOK_IN
, &tty
->flags
)) {
1488 n_tty_set_room(tty
);
1491 if (I_ISTRIP(tty
) || I_IUCLC(tty
) || I_IGNCR(tty
) ||
1492 I_ICRNL(tty
) || I_INLCR(tty
) || L_ICANON(tty
) ||
1493 I_IXON(tty
) || L_ISIG(tty
) || L_ECHO(tty
) ||
1495 memset(tty
->process_char_map
, 0, 256/8);
1497 if (I_IGNCR(tty
) || I_ICRNL(tty
))
1498 set_bit('\r', tty
->process_char_map
);
1500 set_bit('\n', tty
->process_char_map
);
1502 if (L_ICANON(tty
)) {
1503 set_bit(ERASE_CHAR(tty
), tty
->process_char_map
);
1504 set_bit(KILL_CHAR(tty
), tty
->process_char_map
);
1505 set_bit(EOF_CHAR(tty
), tty
->process_char_map
);
1506 set_bit('\n', tty
->process_char_map
);
1507 set_bit(EOL_CHAR(tty
), tty
->process_char_map
);
1508 if (L_IEXTEN(tty
)) {
1509 set_bit(WERASE_CHAR(tty
),
1510 tty
->process_char_map
);
1511 set_bit(LNEXT_CHAR(tty
),
1512 tty
->process_char_map
);
1513 set_bit(EOL2_CHAR(tty
),
1514 tty
->process_char_map
);
1516 set_bit(REPRINT_CHAR(tty
),
1517 tty
->process_char_map
);
1521 set_bit(START_CHAR(tty
), tty
->process_char_map
);
1522 set_bit(STOP_CHAR(tty
), tty
->process_char_map
);
1525 set_bit(INTR_CHAR(tty
), tty
->process_char_map
);
1526 set_bit(QUIT_CHAR(tty
), tty
->process_char_map
);
1527 set_bit(SUSP_CHAR(tty
), tty
->process_char_map
);
1529 clear_bit(__DISABLED_CHAR
, tty
->process_char_map
);
1534 if ((I_IGNBRK(tty
) || (!I_BRKINT(tty
) && !I_PARMRK(tty
))) &&
1535 (I_IGNPAR(tty
) || !I_INPCK(tty
)) &&
1536 (tty
->driver
->flags
& TTY_DRIVER_REAL_RAW
))
1541 n_tty_set_room(tty
);
1542 /* The termios change make the tty ready for I/O */
1543 wake_up_interruptible(&tty
->write_wait
);
1544 wake_up_interruptible(&tty
->read_wait
);
1548 * n_tty_close - close the ldisc for this tty
1551 * Called from the terminal layer when this line discipline is
1552 * being shut down, either because of a close or becsuse of a
1553 * discipline change. The function will not be called while other
1554 * ldisc methods are in progress.
1557 static void n_tty_close(struct tty_struct
*tty
)
1559 n_tty_flush_buffer(tty
);
1560 if (tty
->read_buf
) {
1561 free_buf(tty
->read_buf
);
1562 tty
->read_buf
= NULL
;
1564 if (tty
->echo_buf
) {
1565 free_buf(tty
->echo_buf
);
1566 tty
->echo_buf
= NULL
;
1571 * n_tty_open - open an ldisc
1572 * @tty: terminal to open
1574 * Called when this line discipline is being attached to the
1575 * terminal device. Can sleep. Called serialized so that no
1576 * other events will occur in parallel. No further open will occur
1580 static int n_tty_open(struct tty_struct
*tty
)
1585 /* These are ugly. Currently a malloc failure here can panic */
1586 if (!tty
->read_buf
) {
1587 tty
->read_buf
= alloc_buf();
1591 if (!tty
->echo_buf
) {
1592 tty
->echo_buf
= alloc_buf();
1596 memset(tty
->read_buf
, 0, N_TTY_BUF_SIZE
);
1597 memset(tty
->echo_buf
, 0, N_TTY_BUF_SIZE
);
1598 reset_buffer_flags(tty
);
1600 n_tty_set_termios(tty
, NULL
);
1601 tty
->minimum_to_wake
= 1;
1606 static inline int input_available_p(struct tty_struct
*tty
, int amt
)
1609 if (tty
->canon_data
)
1611 } else if (tty
->read_cnt
>= (amt
? amt
: 1))
1618 * copy_from_read_buf - copy read data directly
1619 * @tty: terminal device
1623 * Helper function to speed up n_tty_read. It is only called when
1624 * ICANON is off; it copies characters straight from the tty queue to
1625 * user space directly. It can be profitably called twice; once to
1626 * drain the space from the tail pointer to the (physical) end of the
1627 * buffer, and once to drain the space from the (physical) beginning of
1628 * the buffer to head pointer.
1630 * Called under the tty->atomic_read_lock sem
1634 static int copy_from_read_buf(struct tty_struct
*tty
,
1635 unsigned char __user
**b
,
1641 unsigned long flags
;
1644 spin_lock_irqsave(&tty
->read_lock
, flags
);
1645 n
= min(tty
->read_cnt
, N_TTY_BUF_SIZE
- tty
->read_tail
);
1647 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
1649 retval
= copy_to_user(*b
, &tty
->read_buf
[tty
->read_tail
], n
);
1651 tty_audit_add_data(tty
, &tty
->read_buf
[tty
->read_tail
], n
);
1652 spin_lock_irqsave(&tty
->read_lock
, flags
);
1653 tty
->read_tail
= (tty
->read_tail
+ n
) & (N_TTY_BUF_SIZE
-1);
1655 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
1662 extern ssize_t
redirected_tty_write(struct file
*, const char __user
*,
1666 * job_control - check job control
1668 * @file: file handle
1670 * Perform job control management checks on this file/tty descriptor
1671 * and if appropriate send any needed signals and return a negative
1672 * error code if action should be taken.
1675 * Locking: None - redirected write test is safe, testing
1676 * current->signal should possibly lock current->sighand
1680 static int job_control(struct tty_struct
*tty
, struct file
*file
)
1682 /* Job control check -- must be done at start and after
1683 every sleep (POSIX.1 7.1.1.4). */
1684 /* NOTE: not yet done after every sleep pending a thorough
1685 check of the logic of this change. -- jlc */
1686 /* don't stop on /dev/console */
1687 if (file
->f_op
->write
!= redirected_tty_write
&&
1688 current
->signal
->tty
== tty
) {
1690 printk(KERN_ERR
"n_tty_read: no tty->pgrp!\n");
1691 else if (task_pgrp(current
) != tty
->pgrp
) {
1692 if (is_ignored(SIGTTIN
) ||
1693 is_current_pgrp_orphaned())
1695 kill_pgrp(task_pgrp(current
), SIGTTIN
, 1);
1696 set_thread_flag(TIF_SIGPENDING
);
1697 return -ERESTARTSYS
;
1705 * n_tty_read - read function for tty
1707 * @file: file object
1708 * @buf: userspace buffer pointer
1711 * Perform reads for the line discipline. We are guaranteed that the
1712 * line discipline will not be closed under us but we may get multiple
1713 * parallel readers and must handle this ourselves. We may also get
1714 * a hangup. Always called in user context, may sleep.
1716 * This code must be sure never to sleep through a hangup.
1719 static ssize_t
n_tty_read(struct tty_struct
*tty
, struct file
*file
,
1720 unsigned char __user
*buf
, size_t nr
)
1722 unsigned char __user
*b
= buf
;
1723 DECLARE_WAITQUEUE(wait
, current
);
1729 unsigned long flags
;
1734 BUG_ON(!tty
->read_buf
);
1736 c
= job_control(tty
, file
);
1741 timeout
= MAX_SCHEDULE_TIMEOUT
;
1743 time
= (HZ
/ 10) * TIME_CHAR(tty
);
1744 minimum
= MIN_CHAR(tty
);
1747 tty
->minimum_to_wake
= 1;
1748 else if (!waitqueue_active(&tty
->read_wait
) ||
1749 (tty
->minimum_to_wake
> minimum
))
1750 tty
->minimum_to_wake
= minimum
;
1757 tty
->minimum_to_wake
= minimum
= 1;
1762 * Internal serialization of reads.
1764 if (file
->f_flags
& O_NONBLOCK
) {
1765 if (!mutex_trylock(&tty
->atomic_read_lock
))
1768 if (mutex_lock_interruptible(&tty
->atomic_read_lock
))
1769 return -ERESTARTSYS
;
1771 packet
= tty
->packet
;
1773 add_wait_queue(&tty
->read_wait
, &wait
);
1775 /* First test for status change. */
1776 if (packet
&& tty
->link
->ctrl_status
) {
1780 spin_lock_irqsave(&tty
->link
->ctrl_lock
, flags
);
1781 cs
= tty
->link
->ctrl_status
;
1782 tty
->link
->ctrl_status
= 0;
1783 spin_unlock_irqrestore(&tty
->link
->ctrl_lock
, flags
);
1784 if (tty_put_user(tty
, cs
, b
++)) {
1792 /* This statement must be first before checking for input
1793 so that any interrupt will set the state back to
1795 set_current_state(TASK_INTERRUPTIBLE
);
1797 if (((minimum
- (b
- buf
)) < tty
->minimum_to_wake
) &&
1798 ((minimum
- (b
- buf
)) >= 1))
1799 tty
->minimum_to_wake
= (minimum
- (b
- buf
));
1801 if (!input_available_p(tty
, 0)) {
1802 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
)) {
1806 if (tty_hung_up_p(file
))
1810 if (file
->f_flags
& O_NONBLOCK
) {
1814 if (signal_pending(current
)) {
1815 retval
= -ERESTARTSYS
;
1818 /* FIXME: does n_tty_set_room need locking ? */
1819 n_tty_set_room(tty
);
1820 timeout
= schedule_timeout(timeout
);
1823 __set_current_state(TASK_RUNNING
);
1825 /* Deal with packet mode. */
1826 if (packet
&& b
== buf
) {
1827 if (tty_put_user(tty
, TIOCPKT_DATA
, b
++)) {
1836 /* N.B. avoid overrun if nr == 0 */
1837 while (nr
&& tty
->read_cnt
) {
1840 eol
= test_and_clear_bit(tty
->read_tail
,
1842 c
= tty
->read_buf
[tty
->read_tail
];
1843 spin_lock_irqsave(&tty
->read_lock
, flags
);
1844 tty
->read_tail
= ((tty
->read_tail
+1) &
1845 (N_TTY_BUF_SIZE
-1));
1848 /* this test should be redundant:
1849 * we shouldn't be reading data if
1852 if (--tty
->canon_data
< 0)
1853 tty
->canon_data
= 0;
1855 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
1857 if (!eol
|| (c
!= __DISABLED_CHAR
)) {
1858 if (tty_put_user(tty
, c
, b
++)) {
1866 tty_audit_push(tty
);
1874 /* The copy function takes the read lock and handles
1875 locking internally for this case */
1876 uncopied
= copy_from_read_buf(tty
, &b
, &nr
);
1877 uncopied
+= copy_from_read_buf(tty
, &b
, &nr
);
1884 /* If there is enough space in the read buffer now, let the
1885 * low-level driver know. We use n_tty_chars_in_buffer() to
1886 * check the buffer, as it now knows about canonical mode.
1887 * Otherwise, if the driver is throttled and the line is
1888 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
1889 * we won't get any more characters.
1891 if (n_tty_chars_in_buffer(tty
) <= TTY_THRESHOLD_UNTHROTTLE
) {
1892 n_tty_set_room(tty
);
1893 check_unthrottle(tty
);
1896 if (b
- buf
>= minimum
)
1901 mutex_unlock(&tty
->atomic_read_lock
);
1902 remove_wait_queue(&tty
->read_wait
, &wait
);
1904 if (!waitqueue_active(&tty
->read_wait
))
1905 tty
->minimum_to_wake
= minimum
;
1907 __set_current_state(TASK_RUNNING
);
1912 clear_bit(TTY_PUSH
, &tty
->flags
);
1913 } else if (test_and_clear_bit(TTY_PUSH
, &tty
->flags
))
1916 n_tty_set_room(tty
);
1921 * n_tty_write - write function for tty
1923 * @file: file object
1924 * @buf: userspace buffer pointer
1927 * Write function of the terminal device. This is serialized with
1928 * respect to other write callers but not to termios changes, reads
1929 * and other such events. Since the receive code will echo characters,
1930 * thus calling driver write methods, the output_lock is used in
1931 * the output processing functions called here as well as in the
1932 * echo processing function to protect the column state and space
1933 * left in the buffer.
1935 * This code must be sure never to sleep through a hangup.
1937 * Locking: output_lock to protect column state and space left
1938 * (note that the process_output*() functions take this
1942 static ssize_t
n_tty_write(struct tty_struct
*tty
, struct file
*file
,
1943 const unsigned char *buf
, size_t nr
)
1945 const unsigned char *b
= buf
;
1946 DECLARE_WAITQUEUE(wait
, current
);
1950 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
1951 if (L_TOSTOP(tty
) && file
->f_op
->write
!= redirected_tty_write
) {
1952 retval
= tty_check_change(tty
);
1957 /* Write out any echoed characters that are still pending */
1958 process_echoes(tty
);
1960 add_wait_queue(&tty
->write_wait
, &wait
);
1962 set_current_state(TASK_INTERRUPTIBLE
);
1963 if (signal_pending(current
)) {
1964 retval
= -ERESTARTSYS
;
1967 if (tty_hung_up_p(file
) || (tty
->link
&& !tty
->link
->count
)) {
1971 if (O_OPOST(tty
) && !(test_bit(TTY_HW_COOK_OUT
, &tty
->flags
))) {
1973 ssize_t num
= process_output_block(tty
, b
, nr
);
1985 if (process_output(c
, tty
) < 0)
1989 if (tty
->ops
->flush_chars
)
1990 tty
->ops
->flush_chars(tty
);
1993 c
= tty
->ops
->write(tty
, b
, nr
);
2006 if (file
->f_flags
& O_NONBLOCK
) {
2013 __set_current_state(TASK_RUNNING
);
2014 remove_wait_queue(&tty
->write_wait
, &wait
);
2015 if (b
- buf
!= nr
&& tty
->fasync
)
2016 set_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
);
2017 return (b
- buf
) ? b
- buf
: retval
;
2021 * n_tty_poll - poll method for N_TTY
2022 * @tty: terminal device
2023 * @file: file accessing it
2026 * Called when the line discipline is asked to poll() for data or
2027 * for special events. This code is not serialized with respect to
2028 * other events save open/close.
2030 * This code must be sure never to sleep through a hangup.
2031 * Called without the kernel lock held - fine
2034 static unsigned int n_tty_poll(struct tty_struct
*tty
, struct file
*file
,
2037 unsigned int mask
= 0;
2039 poll_wait(file
, &tty
->read_wait
, wait
);
2040 poll_wait(file
, &tty
->write_wait
, wait
);
2041 if (input_available_p(tty
, TIME_CHAR(tty
) ? 0 : MIN_CHAR(tty
)))
2042 mask
|= POLLIN
| POLLRDNORM
;
2043 if (tty
->packet
&& tty
->link
->ctrl_status
)
2044 mask
|= POLLPRI
| POLLIN
| POLLRDNORM
;
2045 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
))
2047 if (tty_hung_up_p(file
))
2049 if (!(mask
& (POLLHUP
| POLLIN
| POLLRDNORM
))) {
2050 if (MIN_CHAR(tty
) && !TIME_CHAR(tty
))
2051 tty
->minimum_to_wake
= MIN_CHAR(tty
);
2053 tty
->minimum_to_wake
= 1;
2055 if (tty
->ops
->write
&& !tty_is_writelocked(tty
) &&
2056 tty_chars_in_buffer(tty
) < WAKEUP_CHARS
&&
2057 tty_write_room(tty
) > 0)
2058 mask
|= POLLOUT
| POLLWRNORM
;
2062 static unsigned long inq_canon(struct tty_struct
*tty
)
2066 if (!tty
->canon_data
)
2068 head
= tty
->canon_head
;
2069 tail
= tty
->read_tail
;
2070 nr
= (head
- tail
) & (N_TTY_BUF_SIZE
-1);
2071 /* Skip EOF-chars.. */
2072 while (head
!= tail
) {
2073 if (test_bit(tail
, tty
->read_flags
) &&
2074 tty
->read_buf
[tail
] == __DISABLED_CHAR
)
2076 tail
= (tail
+1) & (N_TTY_BUF_SIZE
-1);
2081 static int n_tty_ioctl(struct tty_struct
*tty
, struct file
*file
,
2082 unsigned int cmd
, unsigned long arg
)
2088 return put_user(tty_chars_in_buffer(tty
), (int __user
*) arg
);
2090 /* FIXME: Locking */
2091 retval
= tty
->read_cnt
;
2093 retval
= inq_canon(tty
);
2094 return put_user(retval
, (unsigned int __user
*) arg
);
2096 return n_tty_ioctl_helper(tty
, file
, cmd
, arg
);
2100 struct tty_ldisc_ops tty_ldisc_N_TTY
= {
2101 .magic
= TTY_LDISC_MAGIC
,
2104 .close
= n_tty_close
,
2105 .flush_buffer
= n_tty_flush_buffer
,
2106 .chars_in_buffer
= n_tty_chars_in_buffer
,
2108 .write
= n_tty_write
,
2109 .ioctl
= n_tty_ioctl
,
2110 .set_termios
= n_tty_set_termios
,
2112 .receive_buf
= n_tty_receive_buf
,
2113 .write_wakeup
= n_tty_write_wakeup