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>
51 #include <linux/module.h>
52 #include <linux/ratelimit.h>
55 /* number of characters left in xmit buffer before select has we have room */
56 #define WAKEUP_CHARS 256
59 * This defines the low- and high-watermarks for throttling and
60 * unthrottling the TTY driver. These watermarks are used for
61 * controlling the space in the read buffer.
63 #define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
64 #define TTY_THRESHOLD_UNTHROTTLE 128
67 * Special byte codes used in the echo buffer to represent operations
68 * or special handling of characters. Bytes in the echo buffer that
69 * are not part of such special blocks are treated as normal character
72 #define ECHO_OP_START 0xff
73 #define ECHO_OP_MOVE_BACK_COL 0x80
74 #define ECHO_OP_SET_CANON_COL 0x81
75 #define ECHO_OP_ERASE_TAB 0x82
79 unsigned long overrun_time
;
82 unsigned char lnext
:1, erasing
:1, raw
:1, real_raw
:1, icanon
:1;
83 unsigned char echo_overrun
:1;
85 DECLARE_BITMAP(process_char_map
, 256);
86 DECLARE_BITMAP(read_flags
, N_TTY_BUF_SIZE
);
94 unsigned char *echo_buf
;
95 unsigned int echo_pos
;
96 unsigned int echo_cnt
;
99 unsigned long canon_head
;
100 unsigned int canon_column
;
102 struct mutex atomic_read_lock
;
103 struct mutex output_lock
;
104 struct mutex echo_lock
;
105 raw_spinlock_t read_lock
;
108 static inline int tty_put_user(struct tty_struct
*tty
, unsigned char x
,
109 unsigned char __user
*ptr
)
111 struct n_tty_data
*ldata
= tty
->disc_data
;
113 tty_audit_add_data(tty
, &x
, 1, ldata
->icanon
);
114 return put_user(x
, ptr
);
118 * n_tty_set_room - receive space
121 * Updates tty->receive_room to reflect the currently available space
122 * in the input buffer, and re-schedules the flip buffer work if space
123 * just became available.
125 * Locks: Concurrent update is protected with read_lock
128 static int set_room(struct tty_struct
*tty
)
130 struct n_tty_data
*ldata
= tty
->disc_data
;
135 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
138 /* Multiply read_cnt by 3, since each byte might take up to
139 * three times as many spaces when PARMRK is set (depending on
140 * its flags, e.g. parity error). */
141 left
= N_TTY_BUF_SIZE
- ldata
->read_cnt
* 3 - 1;
143 left
= N_TTY_BUF_SIZE
- ldata
->read_cnt
- 1;
146 * If we are doing input canonicalization, and there are no
147 * pending newlines, let characters through without limit, so
148 * that erase characters will be handled. Other excess
149 * characters will be beeped.
152 left
= ldata
->icanon
&& !ldata
->canon_data
;
153 old_left
= tty
->receive_room
;
154 tty
->receive_room
= left
;
156 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
158 return left
&& !old_left
;
161 static void n_tty_set_room(struct tty_struct
*tty
)
163 /* Did this open up the receive buffer? We may need to flip */
165 WARN_RATELIMIT(tty
->port
->itty
== NULL
,
166 "scheduling with invalid itty\n");
167 /* see if ldisc has been killed - if so, this means that
168 * even though the ldisc has been halted and ->buf.work
169 * cancelled, ->buf.work is about to be rescheduled
171 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED
, &tty
->flags
),
172 "scheduling buffer work for halted ldisc\n");
173 schedule_work(&tty
->port
->buf
.work
);
177 static void put_tty_queue_nolock(unsigned char c
, struct n_tty_data
*ldata
)
179 if (ldata
->read_cnt
< N_TTY_BUF_SIZE
) {
180 ldata
->read_buf
[ldata
->read_head
] = c
;
181 ldata
->read_head
= (ldata
->read_head
+ 1) & (N_TTY_BUF_SIZE
-1);
187 * put_tty_queue - add character to tty
191 * Add a character to the tty read_buf queue. This is done under the
192 * read_lock to serialize character addition and also to protect us
193 * against parallel reads or flushes
196 static void put_tty_queue(unsigned char c
, struct n_tty_data
*ldata
)
200 * The problem of stomping on the buffers ends here.
201 * Why didn't anyone see this one coming? --AJK
203 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
204 put_tty_queue_nolock(c
, ldata
);
205 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
209 * reset_buffer_flags - reset buffer state
210 * @tty: terminal to reset
212 * Reset the read buffer counters and clear the flags.
213 * Called from n_tty_open() and n_tty_flush_buffer().
215 * Locking: tty_read_lock for read fields.
218 static void reset_buffer_flags(struct n_tty_data
*ldata
)
222 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
223 ldata
->read_head
= ldata
->read_tail
= ldata
->read_cnt
= 0;
224 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
226 mutex_lock(&ldata
->echo_lock
);
227 ldata
->echo_pos
= ldata
->echo_cnt
= ldata
->echo_overrun
= 0;
228 mutex_unlock(&ldata
->echo_lock
);
230 ldata
->canon_head
= ldata
->canon_data
= ldata
->erasing
= 0;
231 bitmap_zero(ldata
->read_flags
, N_TTY_BUF_SIZE
);
234 static void n_tty_packet_mode_flush(struct tty_struct
*tty
)
238 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
239 if (tty
->link
->packet
) {
240 tty
->ctrl_status
|= TIOCPKT_FLUSHREAD
;
241 wake_up_interruptible(&tty
->link
->read_wait
);
243 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
247 * n_tty_flush_buffer - clean input queue
248 * @tty: terminal device
250 * Flush the input buffer. Called when the tty layer wants the
251 * buffer flushed (eg at hangup) or when the N_TTY line discipline
252 * internally has to clean the pending queue (for example some signals).
254 * Locking: ctrl_lock, read_lock.
257 static void n_tty_flush_buffer(struct tty_struct
*tty
)
259 reset_buffer_flags(tty
->disc_data
);
263 n_tty_packet_mode_flush(tty
);
267 * n_tty_chars_in_buffer - report available bytes
270 * Report the number of characters buffered to be delivered to user
271 * at this instant in time.
276 static ssize_t
n_tty_chars_in_buffer(struct tty_struct
*tty
)
278 struct n_tty_data
*ldata
= tty
->disc_data
;
282 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
283 if (!ldata
->icanon
) {
285 } else if (ldata
->canon_data
) {
286 n
= (ldata
->canon_head
> ldata
->read_tail
) ?
287 ldata
->canon_head
- ldata
->read_tail
:
288 ldata
->canon_head
+ (N_TTY_BUF_SIZE
- ldata
->read_tail
);
290 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
295 * is_utf8_continuation - utf8 multibyte check
298 * Returns true if the utf8 character 'c' is a multibyte continuation
299 * character. We use this to correctly compute the on screen size
300 * of the character when printing
303 static inline int is_utf8_continuation(unsigned char c
)
305 return (c
& 0xc0) == 0x80;
309 * is_continuation - multibyte check
312 * Returns true if the utf8 character 'c' is a multibyte continuation
313 * character and the terminal is in unicode mode.
316 static inline int is_continuation(unsigned char c
, struct tty_struct
*tty
)
318 return I_IUTF8(tty
) && is_utf8_continuation(c
);
322 * do_output_char - output one character
323 * @c: character (or partial unicode symbol)
324 * @tty: terminal device
325 * @space: space available in tty driver write buffer
327 * This is a helper function that handles one output character
328 * (including special characters like TAB, CR, LF, etc.),
329 * doing OPOST processing and putting the results in the
330 * tty driver's write buffer.
332 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
333 * and NLDLY. They simply aren't relevant in the world today.
334 * If you ever need them, add them here.
336 * Returns the number of bytes of buffer space used or -1 if
339 * Locking: should be called under the output_lock to protect
340 * the column state and space left in the buffer
343 static int do_output_char(unsigned char c
, struct tty_struct
*tty
, int space
)
345 struct n_tty_data
*ldata
= tty
->disc_data
;
358 ldata
->canon_column
= ldata
->column
= 0;
359 tty
->ops
->write(tty
, "\r\n", 2);
362 ldata
->canon_column
= ldata
->column
;
365 if (O_ONOCR(tty
) && ldata
->column
== 0)
370 ldata
->canon_column
= ldata
->column
= 0;
373 ldata
->canon_column
= ldata
->column
= 0;
376 spaces
= 8 - (ldata
->column
& 7);
377 if (O_TABDLY(tty
) == XTABS
) {
380 ldata
->column
+= spaces
;
381 tty
->ops
->write(tty
, " ", spaces
);
384 ldata
->column
+= spaces
;
387 if (ldata
->column
> 0)
394 if (!is_continuation(c
, tty
))
400 tty_put_char(tty
, c
);
405 * process_output - output post processor
406 * @c: character (or partial unicode symbol)
407 * @tty: terminal device
409 * Output one character with OPOST processing.
410 * Returns -1 when the output device is full and the character
413 * Locking: output_lock to protect column state and space left
414 * (also, this is called from n_tty_write under the
415 * tty layer write lock)
418 static int process_output(unsigned char c
, struct tty_struct
*tty
)
420 struct n_tty_data
*ldata
= tty
->disc_data
;
423 mutex_lock(&ldata
->output_lock
);
425 space
= tty_write_room(tty
);
426 retval
= do_output_char(c
, tty
, space
);
428 mutex_unlock(&ldata
->output_lock
);
436 * process_output_block - block post processor
437 * @tty: terminal device
438 * @buf: character buffer
439 * @nr: number of bytes to output
441 * Output a block of characters with OPOST processing.
442 * Returns the number of characters output.
444 * This path is used to speed up block console writes, among other
445 * things when processing blocks of output data. It handles only
446 * the simple cases normally found and helps to generate blocks of
447 * symbols for the console driver and thus improve performance.
449 * Locking: output_lock to protect column state and space left
450 * (also, this is called from n_tty_write under the
451 * tty layer write lock)
454 static ssize_t
process_output_block(struct tty_struct
*tty
,
455 const unsigned char *buf
, unsigned int nr
)
457 struct n_tty_data
*ldata
= tty
->disc_data
;
460 const unsigned char *cp
;
462 mutex_lock(&ldata
->output_lock
);
464 space
= tty_write_room(tty
);
466 mutex_unlock(&ldata
->output_lock
);
472 for (i
= 0, cp
= buf
; i
< nr
; i
++, cp
++) {
473 unsigned char c
= *cp
;
481 ldata
->canon_column
= ldata
->column
;
484 if (O_ONOCR(tty
) && ldata
->column
== 0)
488 ldata
->canon_column
= ldata
->column
= 0;
493 if (ldata
->column
> 0)
500 if (!is_continuation(c
, tty
))
507 i
= tty
->ops
->write(tty
, buf
, i
);
509 mutex_unlock(&ldata
->output_lock
);
514 * process_echoes - write pending echo characters
515 * @tty: terminal device
517 * Write previously buffered echo (and other ldisc-generated)
518 * characters to the tty.
520 * Characters generated by the ldisc (including echoes) need to
521 * be buffered because the driver's write buffer can fill during
522 * heavy program output. Echoing straight to the driver will
523 * often fail under these conditions, causing lost characters and
524 * resulting mismatches of ldisc state information.
526 * Since the ldisc state must represent the characters actually sent
527 * to the driver at the time of the write, operations like certain
528 * changes in column state are also saved in the buffer and executed
531 * A circular fifo buffer is used so that the most recent characters
532 * are prioritized. Also, when control characters are echoed with a
533 * prefixed "^", the pair is treated atomically and thus not separated.
535 * Locking: output_lock to protect column state and space left,
536 * echo_lock to protect the echo buffer
539 static void process_echoes(struct tty_struct
*tty
)
541 struct n_tty_data
*ldata
= tty
->disc_data
;
544 unsigned char *cp
, *buf_end
;
546 if (!ldata
->echo_cnt
)
549 mutex_lock(&ldata
->output_lock
);
550 mutex_lock(&ldata
->echo_lock
);
552 space
= tty_write_room(tty
);
554 buf_end
= ldata
->echo_buf
+ N_TTY_BUF_SIZE
;
555 cp
= ldata
->echo_buf
+ ldata
->echo_pos
;
556 nr
= ldata
->echo_cnt
;
559 if (c
== ECHO_OP_START
) {
562 int no_space_left
= 0;
565 * If the buffer byte is the start of a multi-byte
566 * operation, get the next byte, which is either the
567 * op code or a control character value.
571 opp
-= N_TTY_BUF_SIZE
;
575 unsigned int num_chars
, num_bs
;
577 case ECHO_OP_ERASE_TAB
:
578 if (++opp
== buf_end
)
579 opp
-= N_TTY_BUF_SIZE
;
583 * Determine how many columns to go back
584 * in order to erase the tab.
585 * This depends on the number of columns
586 * used by other characters within the tab
587 * area. If this (modulo 8) count is from
588 * the start of input rather than from a
589 * previous tab, we offset by canon column.
590 * Otherwise, tab spacing is normal.
592 if (!(num_chars
& 0x80))
593 num_chars
+= ldata
->canon_column
;
594 num_bs
= 8 - (num_chars
& 7);
596 if (num_bs
> space
) {
602 tty_put_char(tty
, '\b');
603 if (ldata
->column
> 0)
610 case ECHO_OP_SET_CANON_COL
:
611 ldata
->canon_column
= ldata
->column
;
616 case ECHO_OP_MOVE_BACK_COL
:
617 if (ldata
->column
> 0)
624 /* This is an escaped echo op start code */
629 tty_put_char(tty
, ECHO_OP_START
);
638 * If the op is not a special byte code,
639 * it is a ctrl char tagged to be echoed
640 * as "^X" (where X is the letter
641 * representing the control char).
642 * Note that we must ensure there is
643 * enough space for the whole ctrl pair.
650 tty_put_char(tty
, '^');
651 tty_put_char(tty
, op
^ 0100);
662 int retval
= do_output_char(c
, tty
, space
);
669 tty_put_char(tty
, c
);
676 /* When end of circular buffer reached, wrap around */
678 cp
-= N_TTY_BUF_SIZE
;
684 ldata
->echo_overrun
= 0;
686 int num_processed
= ldata
->echo_cnt
- nr
;
687 ldata
->echo_pos
+= num_processed
;
688 ldata
->echo_pos
&= N_TTY_BUF_SIZE
- 1;
689 ldata
->echo_cnt
= nr
;
690 if (num_processed
> 0)
691 ldata
->echo_overrun
= 0;
694 mutex_unlock(&ldata
->echo_lock
);
695 mutex_unlock(&ldata
->output_lock
);
697 if (tty
->ops
->flush_chars
)
698 tty
->ops
->flush_chars(tty
);
702 * add_echo_byte - add a byte to the echo buffer
703 * @c: unicode byte to echo
706 * Add a character or operation byte to the echo buffer.
708 * Should be called under the echo lock to protect the echo buffer.
711 static void add_echo_byte(unsigned char c
, struct n_tty_data
*ldata
)
715 if (ldata
->echo_cnt
== N_TTY_BUF_SIZE
) {
716 /* Circular buffer is already at capacity */
717 new_byte_pos
= ldata
->echo_pos
;
720 * Since the buffer start position needs to be advanced,
721 * be sure to step by a whole operation byte group.
723 if (ldata
->echo_buf
[ldata
->echo_pos
] == ECHO_OP_START
) {
724 if (ldata
->echo_buf
[(ldata
->echo_pos
+ 1) &
725 (N_TTY_BUF_SIZE
- 1)] ==
727 ldata
->echo_pos
+= 3;
728 ldata
->echo_cnt
-= 2;
730 ldata
->echo_pos
+= 2;
731 ldata
->echo_cnt
-= 1;
736 ldata
->echo_pos
&= N_TTY_BUF_SIZE
- 1;
738 ldata
->echo_overrun
= 1;
740 new_byte_pos
= ldata
->echo_pos
+ ldata
->echo_cnt
;
741 new_byte_pos
&= N_TTY_BUF_SIZE
- 1;
745 ldata
->echo_buf
[new_byte_pos
] = c
;
749 * echo_move_back_col - add operation to move back a column
752 * Add an operation to the echo buffer to move back one column.
754 * Locking: echo_lock to protect the echo buffer
757 static void echo_move_back_col(struct n_tty_data
*ldata
)
759 mutex_lock(&ldata
->echo_lock
);
760 add_echo_byte(ECHO_OP_START
, ldata
);
761 add_echo_byte(ECHO_OP_MOVE_BACK_COL
, ldata
);
762 mutex_unlock(&ldata
->echo_lock
);
766 * echo_set_canon_col - add operation to set the canon column
769 * Add an operation to the echo buffer to set the canon column
770 * to the current column.
772 * Locking: echo_lock to protect the echo buffer
775 static void echo_set_canon_col(struct n_tty_data
*ldata
)
777 mutex_lock(&ldata
->echo_lock
);
778 add_echo_byte(ECHO_OP_START
, ldata
);
779 add_echo_byte(ECHO_OP_SET_CANON_COL
, ldata
);
780 mutex_unlock(&ldata
->echo_lock
);
784 * echo_erase_tab - add operation to erase a tab
785 * @num_chars: number of character columns already used
786 * @after_tab: true if num_chars starts after a previous tab
789 * Add an operation to the echo buffer to erase a tab.
791 * Called by the eraser function, which knows how many character
792 * columns have been used since either a previous tab or the start
793 * of input. This information will be used later, along with
794 * canon column (if applicable), to go back the correct number
797 * Locking: echo_lock to protect the echo buffer
800 static void echo_erase_tab(unsigned int num_chars
, int after_tab
,
801 struct n_tty_data
*ldata
)
803 mutex_lock(&ldata
->echo_lock
);
805 add_echo_byte(ECHO_OP_START
, ldata
);
806 add_echo_byte(ECHO_OP_ERASE_TAB
, ldata
);
808 /* We only need to know this modulo 8 (tab spacing) */
811 /* Set the high bit as a flag if num_chars is after a previous tab */
815 add_echo_byte(num_chars
, ldata
);
817 mutex_unlock(&ldata
->echo_lock
);
821 * echo_char_raw - echo a character raw
822 * @c: unicode byte to echo
823 * @tty: terminal device
825 * Echo user input back onto the screen. This must be called only when
826 * L_ECHO(tty) is true. Called from the driver receive_buf path.
828 * This variant does not treat control characters specially.
830 * Locking: echo_lock to protect the echo buffer
833 static void echo_char_raw(unsigned char c
, struct n_tty_data
*ldata
)
835 mutex_lock(&ldata
->echo_lock
);
836 if (c
== ECHO_OP_START
) {
837 add_echo_byte(ECHO_OP_START
, ldata
);
838 add_echo_byte(ECHO_OP_START
, ldata
);
840 add_echo_byte(c
, ldata
);
842 mutex_unlock(&ldata
->echo_lock
);
846 * echo_char - echo a character
847 * @c: unicode byte to echo
848 * @tty: terminal device
850 * Echo user input back onto the screen. This must be called only when
851 * L_ECHO(tty) is true. Called from the driver receive_buf path.
853 * This variant tags control characters to be echoed as "^X"
854 * (where X is the letter representing the control char).
856 * Locking: echo_lock to protect the echo buffer
859 static void echo_char(unsigned char c
, struct tty_struct
*tty
)
861 struct n_tty_data
*ldata
= tty
->disc_data
;
863 mutex_lock(&ldata
->echo_lock
);
865 if (c
== ECHO_OP_START
) {
866 add_echo_byte(ECHO_OP_START
, ldata
);
867 add_echo_byte(ECHO_OP_START
, ldata
);
869 if (L_ECHOCTL(tty
) && iscntrl(c
) && c
!= '\t')
870 add_echo_byte(ECHO_OP_START
, ldata
);
871 add_echo_byte(c
, ldata
);
874 mutex_unlock(&ldata
->echo_lock
);
878 * finish_erasing - complete erase
882 static inline void finish_erasing(struct n_tty_data
*ldata
)
884 if (ldata
->erasing
) {
885 echo_char_raw('/', ldata
);
891 * eraser - handle erase function
892 * @c: character input
893 * @tty: terminal device
895 * Perform erase and necessary output when an erase character is
896 * present in the stream from the driver layer. Handles the complexities
897 * of UTF-8 multibyte symbols.
899 * Locking: read_lock for tty buffers
902 static void eraser(unsigned char c
, struct tty_struct
*tty
)
904 struct n_tty_data
*ldata
= tty
->disc_data
;
905 enum { ERASE
, WERASE
, KILL
} kill_type
;
906 int head
, seen_alnums
, cnt
;
909 /* FIXME: locking needed ? */
910 if (ldata
->read_head
== ldata
->canon_head
) {
911 /* process_output('\a', tty); */ /* what do you think? */
914 if (c
== ERASE_CHAR(tty
))
916 else if (c
== WERASE_CHAR(tty
))
920 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
921 ldata
->read_cnt
-= ((ldata
->read_head
- ldata
->canon_head
) &
922 (N_TTY_BUF_SIZE
- 1));
923 ldata
->read_head
= ldata
->canon_head
;
924 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
927 if (!L_ECHOK(tty
) || !L_ECHOKE(tty
) || !L_ECHOE(tty
)) {
928 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
929 ldata
->read_cnt
-= ((ldata
->read_head
- ldata
->canon_head
) &
930 (N_TTY_BUF_SIZE
- 1));
931 ldata
->read_head
= ldata
->canon_head
;
932 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
933 finish_erasing(ldata
);
934 echo_char(KILL_CHAR(tty
), tty
);
935 /* Add a newline if ECHOK is on and ECHOKE is off. */
937 echo_char_raw('\n', ldata
);
944 /* FIXME: Locking ?? */
945 while (ldata
->read_head
!= ldata
->canon_head
) {
946 head
= ldata
->read_head
;
948 /* erase a single possibly multibyte character */
950 head
= (head
- 1) & (N_TTY_BUF_SIZE
-1);
951 c
= ldata
->read_buf
[head
];
952 } while (is_continuation(c
, tty
) && head
!= ldata
->canon_head
);
954 /* do not partially erase */
955 if (is_continuation(c
, tty
))
958 if (kill_type
== WERASE
) {
959 /* Equivalent to BSD's ALTWERASE. */
960 if (isalnum(c
) || c
== '_')
962 else if (seen_alnums
)
965 cnt
= (ldata
->read_head
- head
) & (N_TTY_BUF_SIZE
-1);
966 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
967 ldata
->read_head
= head
;
968 ldata
->read_cnt
-= cnt
;
969 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
971 if (L_ECHOPRT(tty
)) {
972 if (!ldata
->erasing
) {
973 echo_char_raw('\\', ldata
);
976 /* if cnt > 1, output a multi-byte character */
979 head
= (head
+1) & (N_TTY_BUF_SIZE
-1);
980 echo_char_raw(ldata
->read_buf
[head
],
982 echo_move_back_col(ldata
);
984 } else if (kill_type
== ERASE
&& !L_ECHOE(tty
)) {
985 echo_char(ERASE_CHAR(tty
), tty
);
986 } else if (c
== '\t') {
987 unsigned int num_chars
= 0;
989 unsigned long tail
= ldata
->read_head
;
992 * Count the columns used for characters
993 * since the start of input or after a
995 * This info is used to go back the correct
998 while (tail
!= ldata
->canon_head
) {
999 tail
= (tail
-1) & (N_TTY_BUF_SIZE
-1);
1000 c
= ldata
->read_buf
[tail
];
1004 } else if (iscntrl(c
)) {
1007 } else if (!is_continuation(c
, tty
)) {
1011 echo_erase_tab(num_chars
, after_tab
, ldata
);
1013 if (iscntrl(c
) && L_ECHOCTL(tty
)) {
1014 echo_char_raw('\b', ldata
);
1015 echo_char_raw(' ', ldata
);
1016 echo_char_raw('\b', ldata
);
1018 if (!iscntrl(c
) || L_ECHOCTL(tty
)) {
1019 echo_char_raw('\b', ldata
);
1020 echo_char_raw(' ', ldata
);
1021 echo_char_raw('\b', ldata
);
1025 if (kill_type
== ERASE
)
1028 if (ldata
->read_head
== ldata
->canon_head
&& L_ECHO(tty
))
1029 finish_erasing(ldata
);
1033 * isig - handle the ISIG optio
1037 * Called when a signal is being sent due to terminal input.
1038 * Called from the driver receive_buf path so serialized.
1040 * Locking: ctrl_lock
1043 static inline void isig(int sig
, struct tty_struct
*tty
)
1045 struct pid
*tty_pgrp
= tty_get_pgrp(tty
);
1047 kill_pgrp(tty_pgrp
, sig
, 1);
1053 * n_tty_receive_break - handle break
1056 * An RS232 break event has been hit in the incoming bitstream. This
1057 * can cause a variety of events depending upon the termios settings.
1059 * Called from the receive_buf path so single threaded.
1062 static inline void n_tty_receive_break(struct tty_struct
*tty
)
1064 struct n_tty_data
*ldata
= tty
->disc_data
;
1068 if (I_BRKINT(tty
)) {
1070 if (!L_NOFLSH(tty
)) {
1071 n_tty_flush_buffer(tty
);
1072 tty_driver_flush_buffer(tty
);
1076 if (I_PARMRK(tty
)) {
1077 put_tty_queue('\377', ldata
);
1078 put_tty_queue('\0', ldata
);
1080 put_tty_queue('\0', ldata
);
1081 wake_up_interruptible(&tty
->read_wait
);
1085 * n_tty_receive_overrun - handle overrun reporting
1088 * Data arrived faster than we could process it. While the tty
1089 * driver has flagged this the bits that were missed are gone
1092 * Called from the receive_buf path so single threaded. Does not
1093 * need locking as num_overrun and overrun_time are function
1097 static inline void n_tty_receive_overrun(struct tty_struct
*tty
)
1099 struct n_tty_data
*ldata
= tty
->disc_data
;
1102 ldata
->num_overrun
++;
1103 if (time_after(jiffies
, ldata
->overrun_time
+ HZ
) ||
1104 time_after(ldata
->overrun_time
, jiffies
)) {
1105 printk(KERN_WARNING
"%s: %d input overrun(s)\n",
1107 ldata
->num_overrun
);
1108 ldata
->overrun_time
= jiffies
;
1109 ldata
->num_overrun
= 0;
1114 * n_tty_receive_parity_error - error notifier
1115 * @tty: terminal device
1118 * Process a parity error and queue the right data to indicate
1119 * the error case if necessary. Locking as per n_tty_receive_buf.
1121 static inline void n_tty_receive_parity_error(struct tty_struct
*tty
,
1124 struct n_tty_data
*ldata
= tty
->disc_data
;
1128 if (I_PARMRK(tty
)) {
1129 put_tty_queue('\377', ldata
);
1130 put_tty_queue('\0', ldata
);
1131 put_tty_queue(c
, ldata
);
1132 } else if (I_INPCK(tty
))
1133 put_tty_queue('\0', ldata
);
1135 put_tty_queue(c
, ldata
);
1136 wake_up_interruptible(&tty
->read_wait
);
1140 * n_tty_receive_char - perform processing
1141 * @tty: terminal device
1144 * Process an individual character of input received from the driver.
1145 * This is serialized with respect to itself by the rules for the
1149 static inline void n_tty_receive_char(struct tty_struct
*tty
, unsigned char c
)
1151 struct n_tty_data
*ldata
= tty
->disc_data
;
1152 unsigned long flags
;
1156 put_tty_queue(c
, ldata
);
1162 if (I_IUCLC(tty
) && L_IEXTEN(tty
))
1165 if (L_EXTPROC(tty
)) {
1166 put_tty_queue(c
, ldata
);
1170 if (tty
->stopped
&& !tty
->flow_stopped
&& I_IXON(tty
) &&
1171 I_IXANY(tty
) && c
!= START_CHAR(tty
) && c
!= STOP_CHAR(tty
) &&
1172 c
!= INTR_CHAR(tty
) && c
!= QUIT_CHAR(tty
) && c
!= SUSP_CHAR(tty
)) {
1174 process_echoes(tty
);
1179 if (c
== START_CHAR(tty
)) {
1181 process_echoes(tty
);
1182 } else if (c
== STOP_CHAR(tty
))
1189 * If the previous character was LNEXT, or we know that this
1190 * character is not one of the characters that we'll have to
1191 * handle specially, do shortcut processing to speed things
1194 if (!test_bit(c
, ldata
->process_char_map
) || ldata
->lnext
) {
1196 parmrk
= (c
== (unsigned char) '\377' && I_PARMRK(tty
)) ? 1 : 0;
1197 if (ldata
->read_cnt
>= (N_TTY_BUF_SIZE
- parmrk
- 1)) {
1198 /* beep if no space */
1200 process_output('\a', tty
);
1204 finish_erasing(ldata
);
1205 /* Record the column of first canon char. */
1206 if (ldata
->canon_head
== ldata
->read_head
)
1207 echo_set_canon_col(ldata
);
1209 process_echoes(tty
);
1212 put_tty_queue(c
, ldata
);
1213 put_tty_queue(c
, ldata
);
1218 if (c
== START_CHAR(tty
)) {
1220 process_echoes(tty
);
1223 if (c
== STOP_CHAR(tty
)) {
1232 if (c
== INTR_CHAR(tty
))
1235 if (c
== QUIT_CHAR(tty
))
1238 if (c
== SUSP_CHAR(tty
)) {
1240 if (!L_NOFLSH(tty
)) {
1241 n_tty_flush_buffer(tty
);
1242 tty_driver_flush_buffer(tty
);
1248 process_echoes(tty
);
1260 } else if (c
== '\n' && I_INLCR(tty
))
1263 if (ldata
->icanon
) {
1264 if (c
== ERASE_CHAR(tty
) || c
== KILL_CHAR(tty
) ||
1265 (c
== WERASE_CHAR(tty
) && L_IEXTEN(tty
))) {
1267 process_echoes(tty
);
1270 if (c
== LNEXT_CHAR(tty
) && L_IEXTEN(tty
)) {
1273 finish_erasing(ldata
);
1274 if (L_ECHOCTL(tty
)) {
1275 echo_char_raw('^', ldata
);
1276 echo_char_raw('\b', ldata
);
1277 process_echoes(tty
);
1282 if (c
== REPRINT_CHAR(tty
) && L_ECHO(tty
) &&
1284 unsigned long tail
= ldata
->canon_head
;
1286 finish_erasing(ldata
);
1288 echo_char_raw('\n', ldata
);
1289 while (tail
!= ldata
->read_head
) {
1290 echo_char(ldata
->read_buf
[tail
], tty
);
1291 tail
= (tail
+1) & (N_TTY_BUF_SIZE
-1);
1293 process_echoes(tty
);
1297 if (ldata
->read_cnt
>= N_TTY_BUF_SIZE
) {
1299 process_output('\a', tty
);
1302 if (L_ECHO(tty
) || L_ECHONL(tty
)) {
1303 echo_char_raw('\n', ldata
);
1304 process_echoes(tty
);
1306 goto handle_newline
;
1308 if (c
== EOF_CHAR(tty
)) {
1309 if (ldata
->read_cnt
>= N_TTY_BUF_SIZE
)
1311 if (ldata
->canon_head
!= ldata
->read_head
)
1312 set_bit(TTY_PUSH
, &tty
->flags
);
1313 c
= __DISABLED_CHAR
;
1314 goto handle_newline
;
1316 if ((c
== EOL_CHAR(tty
)) ||
1317 (c
== EOL2_CHAR(tty
) && L_IEXTEN(tty
))) {
1318 parmrk
= (c
== (unsigned char) '\377' && I_PARMRK(tty
))
1320 if (ldata
->read_cnt
>= (N_TTY_BUF_SIZE
- parmrk
)) {
1322 process_output('\a', tty
);
1326 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1329 /* Record the column of first canon char. */
1330 if (ldata
->canon_head
== ldata
->read_head
)
1331 echo_set_canon_col(ldata
);
1333 process_echoes(tty
);
1336 * XXX does PARMRK doubling happen for
1337 * EOL_CHAR and EOL2_CHAR?
1340 put_tty_queue(c
, ldata
);
1343 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
1344 set_bit(ldata
->read_head
, ldata
->read_flags
);
1345 put_tty_queue_nolock(c
, ldata
);
1346 ldata
->canon_head
= ldata
->read_head
;
1347 ldata
->canon_data
++;
1348 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
1349 kill_fasync(&tty
->fasync
, SIGIO
, POLL_IN
);
1350 if (waitqueue_active(&tty
->read_wait
))
1351 wake_up_interruptible(&tty
->read_wait
);
1356 parmrk
= (c
== (unsigned char) '\377' && I_PARMRK(tty
)) ? 1 : 0;
1357 if (ldata
->read_cnt
>= (N_TTY_BUF_SIZE
- parmrk
- 1)) {
1358 /* beep if no space */
1360 process_output('\a', tty
);
1364 finish_erasing(ldata
);
1366 echo_char_raw('\n', ldata
);
1368 /* Record the column of first canon char. */
1369 if (ldata
->canon_head
== ldata
->read_head
)
1370 echo_set_canon_col(ldata
);
1373 process_echoes(tty
);
1377 put_tty_queue(c
, ldata
);
1379 put_tty_queue(c
, ldata
);
1384 * n_tty_write_wakeup - asynchronous I/O notifier
1387 * Required for the ptys, serial driver etc. since processes
1388 * that attach themselves to the master and rely on ASYNC
1389 * IO must be woken up
1392 static void n_tty_write_wakeup(struct tty_struct
*tty
)
1394 if (tty
->fasync
&& test_and_clear_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
))
1395 kill_fasync(&tty
->fasync
, SIGIO
, POLL_OUT
);
1399 * n_tty_receive_buf - data receive
1400 * @tty: terminal device
1403 * @count: characters
1405 * Called by the terminal driver when a block of characters has
1406 * been received. This function must be called from soft contexts
1407 * not from interrupt context. The driver is responsible for making
1408 * calls one at a time and in order (or using flush_to_ldisc)
1411 static void n_tty_receive_buf(struct tty_struct
*tty
, const unsigned char *cp
,
1412 char *fp
, int count
)
1414 struct n_tty_data
*ldata
= tty
->disc_data
;
1415 const unsigned char *p
;
1416 char *f
, flags
= TTY_NORMAL
;
1419 unsigned long cpuflags
;
1421 if (ldata
->real_raw
) {
1422 raw_spin_lock_irqsave(&ldata
->read_lock
, cpuflags
);
1423 i
= min(N_TTY_BUF_SIZE
- ldata
->read_cnt
,
1424 N_TTY_BUF_SIZE
- ldata
->read_head
);
1426 memcpy(ldata
->read_buf
+ ldata
->read_head
, cp
, i
);
1427 ldata
->read_head
= (ldata
->read_head
+ i
) & (N_TTY_BUF_SIZE
-1);
1428 ldata
->read_cnt
+= i
;
1432 i
= min(N_TTY_BUF_SIZE
- ldata
->read_cnt
,
1433 N_TTY_BUF_SIZE
- ldata
->read_head
);
1435 memcpy(ldata
->read_buf
+ ldata
->read_head
, cp
, i
);
1436 ldata
->read_head
= (ldata
->read_head
+ i
) & (N_TTY_BUF_SIZE
-1);
1437 ldata
->read_cnt
+= i
;
1438 raw_spin_unlock_irqrestore(&ldata
->read_lock
, cpuflags
);
1440 for (i
= count
, p
= cp
, f
= fp
; i
; i
--, p
++) {
1445 n_tty_receive_char(tty
, *p
);
1448 n_tty_receive_break(tty
);
1452 n_tty_receive_parity_error(tty
, *p
);
1455 n_tty_receive_overrun(tty
);
1458 printk(KERN_ERR
"%s: unknown flag %d\n",
1459 tty_name(tty
, buf
), flags
);
1463 if (tty
->ops
->flush_chars
)
1464 tty
->ops
->flush_chars(tty
);
1469 if ((!ldata
->icanon
&& (ldata
->read_cnt
>= ldata
->minimum_to_wake
)) ||
1471 kill_fasync(&tty
->fasync
, SIGIO
, POLL_IN
);
1472 if (waitqueue_active(&tty
->read_wait
))
1473 wake_up_interruptible(&tty
->read_wait
);
1477 * Check the remaining room for the input canonicalization
1478 * mode. We don't want to throttle the driver if we're in
1479 * canonical mode and don't have a newline yet!
1482 tty_set_flow_change(tty
, TTY_THROTTLE_SAFE
);
1483 if (tty
->receive_room
>= TTY_THRESHOLD_THROTTLE
)
1485 if (!tty_throttle_safe(tty
))
1488 __tty_set_flow_change(tty
, 0);
1491 int is_ignored(int sig
)
1493 return (sigismember(¤t
->blocked
, sig
) ||
1494 current
->sighand
->action
[sig
-1].sa
.sa_handler
== SIG_IGN
);
1498 * n_tty_set_termios - termios data changed
1500 * @old: previous data
1502 * Called by the tty layer when the user changes termios flags so
1503 * that the line discipline can plan ahead. This function cannot sleep
1504 * and is protected from re-entry by the tty layer. The user is
1505 * guaranteed that this function will not be re-entered or in progress
1506 * when the ldisc is closed.
1508 * Locking: Caller holds tty->termios_mutex
1511 static void n_tty_set_termios(struct tty_struct
*tty
, struct ktermios
*old
)
1513 struct n_tty_data
*ldata
= tty
->disc_data
;
1514 int canon_change
= 1;
1517 canon_change
= (old
->c_lflag
^ tty
->termios
.c_lflag
) & ICANON
;
1519 bitmap_zero(ldata
->read_flags
, N_TTY_BUF_SIZE
);
1520 ldata
->canon_head
= ldata
->read_tail
;
1521 ldata
->canon_data
= 0;
1525 if (canon_change
&& !L_ICANON(tty
) && ldata
->read_cnt
)
1526 wake_up_interruptible(&tty
->read_wait
);
1528 ldata
->icanon
= (L_ICANON(tty
) != 0);
1530 if (I_ISTRIP(tty
) || I_IUCLC(tty
) || I_IGNCR(tty
) ||
1531 I_ICRNL(tty
) || I_INLCR(tty
) || L_ICANON(tty
) ||
1532 I_IXON(tty
) || L_ISIG(tty
) || L_ECHO(tty
) ||
1534 bitmap_zero(ldata
->process_char_map
, 256);
1536 if (I_IGNCR(tty
) || I_ICRNL(tty
))
1537 set_bit('\r', ldata
->process_char_map
);
1539 set_bit('\n', ldata
->process_char_map
);
1541 if (L_ICANON(tty
)) {
1542 set_bit(ERASE_CHAR(tty
), ldata
->process_char_map
);
1543 set_bit(KILL_CHAR(tty
), ldata
->process_char_map
);
1544 set_bit(EOF_CHAR(tty
), ldata
->process_char_map
);
1545 set_bit('\n', ldata
->process_char_map
);
1546 set_bit(EOL_CHAR(tty
), ldata
->process_char_map
);
1547 if (L_IEXTEN(tty
)) {
1548 set_bit(WERASE_CHAR(tty
),
1549 ldata
->process_char_map
);
1550 set_bit(LNEXT_CHAR(tty
),
1551 ldata
->process_char_map
);
1552 set_bit(EOL2_CHAR(tty
),
1553 ldata
->process_char_map
);
1555 set_bit(REPRINT_CHAR(tty
),
1556 ldata
->process_char_map
);
1560 set_bit(START_CHAR(tty
), ldata
->process_char_map
);
1561 set_bit(STOP_CHAR(tty
), ldata
->process_char_map
);
1564 set_bit(INTR_CHAR(tty
), ldata
->process_char_map
);
1565 set_bit(QUIT_CHAR(tty
), ldata
->process_char_map
);
1566 set_bit(SUSP_CHAR(tty
), ldata
->process_char_map
);
1568 clear_bit(__DISABLED_CHAR
, ldata
->process_char_map
);
1570 ldata
->real_raw
= 0;
1573 if ((I_IGNBRK(tty
) || (!I_BRKINT(tty
) && !I_PARMRK(tty
))) &&
1574 (I_IGNPAR(tty
) || !I_INPCK(tty
)) &&
1575 (tty
->driver
->flags
& TTY_DRIVER_REAL_RAW
))
1576 ldata
->real_raw
= 1;
1578 ldata
->real_raw
= 0;
1580 n_tty_set_room(tty
);
1582 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1583 * been stopped by STOP_CHAR(tty) before it.
1585 if (!I_IXON(tty
) && old
&& (old
->c_iflag
& IXON
) && !tty
->flow_stopped
) {
1589 /* The termios change make the tty ready for I/O */
1590 wake_up_interruptible(&tty
->write_wait
);
1591 wake_up_interruptible(&tty
->read_wait
);
1595 * n_tty_close - close the ldisc for this tty
1598 * Called from the terminal layer when this line discipline is
1599 * being shut down, either because of a close or becsuse of a
1600 * discipline change. The function will not be called while other
1601 * ldisc methods are in progress.
1604 static void n_tty_close(struct tty_struct
*tty
)
1606 struct n_tty_data
*ldata
= tty
->disc_data
;
1609 n_tty_packet_mode_flush(tty
);
1611 kfree(ldata
->read_buf
);
1612 kfree(ldata
->echo_buf
);
1614 tty
->disc_data
= NULL
;
1618 * n_tty_open - open an ldisc
1619 * @tty: terminal to open
1621 * Called when this line discipline is being attached to the
1622 * terminal device. Can sleep. Called serialized so that no
1623 * other events will occur in parallel. No further open will occur
1627 static int n_tty_open(struct tty_struct
*tty
)
1629 struct n_tty_data
*ldata
;
1631 ldata
= kzalloc(sizeof(*ldata
), GFP_KERNEL
);
1635 ldata
->overrun_time
= jiffies
;
1636 mutex_init(&ldata
->atomic_read_lock
);
1637 mutex_init(&ldata
->output_lock
);
1638 mutex_init(&ldata
->echo_lock
);
1639 raw_spin_lock_init(&ldata
->read_lock
);
1641 /* These are ugly. Currently a malloc failure here can panic */
1642 ldata
->read_buf
= kzalloc(N_TTY_BUF_SIZE
, GFP_KERNEL
);
1643 ldata
->echo_buf
= kzalloc(N_TTY_BUF_SIZE
, GFP_KERNEL
);
1644 if (!ldata
->read_buf
|| !ldata
->echo_buf
)
1647 tty
->disc_data
= ldata
;
1648 reset_buffer_flags(tty
->disc_data
);
1650 ldata
->minimum_to_wake
= 1;
1652 /* indicate buffer work may resume */
1653 clear_bit(TTY_LDISC_HALTED
, &tty
->flags
);
1654 n_tty_set_termios(tty
, NULL
);
1655 tty_unthrottle(tty
);
1659 kfree(ldata
->read_buf
);
1660 kfree(ldata
->echo_buf
);
1666 static inline int input_available_p(struct tty_struct
*tty
, int amt
)
1668 struct n_tty_data
*ldata
= tty
->disc_data
;
1670 tty_flush_to_ldisc(tty
);
1671 if (ldata
->icanon
&& !L_EXTPROC(tty
)) {
1672 if (ldata
->canon_data
)
1674 } else if (ldata
->read_cnt
>= (amt
? amt
: 1))
1681 * copy_from_read_buf - copy read data directly
1682 * @tty: terminal device
1686 * Helper function to speed up n_tty_read. It is only called when
1687 * ICANON is off; it copies characters straight from the tty queue to
1688 * user space directly. It can be profitably called twice; once to
1689 * drain the space from the tail pointer to the (physical) end of the
1690 * buffer, and once to drain the space from the (physical) beginning of
1691 * the buffer to head pointer.
1693 * Called under the ldata->atomic_read_lock sem
1697 static int copy_from_read_buf(struct tty_struct
*tty
,
1698 unsigned char __user
**b
,
1702 struct n_tty_data
*ldata
= tty
->disc_data
;
1705 unsigned long flags
;
1709 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
1710 n
= min(ldata
->read_cnt
, N_TTY_BUF_SIZE
- ldata
->read_tail
);
1712 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
1714 retval
= copy_to_user(*b
, &ldata
->read_buf
[ldata
->read_tail
], n
);
1717 ldata
->read_buf
[ldata
->read_tail
] == EOF_CHAR(tty
);
1718 tty_audit_add_data(tty
, &ldata
->read_buf
[ldata
->read_tail
], n
,
1720 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
1721 ldata
->read_tail
= (ldata
->read_tail
+ n
) & (N_TTY_BUF_SIZE
-1);
1722 ldata
->read_cnt
-= n
;
1723 /* Turn single EOF into zero-length read */
1724 if (L_EXTPROC(tty
) && ldata
->icanon
&& is_eof
&& !ldata
->read_cnt
)
1726 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
1733 extern ssize_t
redirected_tty_write(struct file
*, const char __user
*,
1737 * job_control - check job control
1739 * @file: file handle
1741 * Perform job control management checks on this file/tty descriptor
1742 * and if appropriate send any needed signals and return a negative
1743 * error code if action should be taken.
1745 * Locking: redirected write test is safe
1746 * current->signal->tty check is safe
1747 * ctrl_lock to safely reference tty->pgrp
1750 static int job_control(struct tty_struct
*tty
, struct file
*file
)
1752 /* Job control check -- must be done at start and after
1753 every sleep (POSIX.1 7.1.1.4). */
1754 /* NOTE: not yet done after every sleep pending a thorough
1755 check of the logic of this change. -- jlc */
1756 /* don't stop on /dev/console */
1757 if (file
->f_op
->write
== redirected_tty_write
||
1758 current
->signal
->tty
!= tty
)
1761 spin_lock_irq(&tty
->ctrl_lock
);
1763 printk(KERN_ERR
"n_tty_read: no tty->pgrp!\n");
1764 else if (task_pgrp(current
) != tty
->pgrp
) {
1765 spin_unlock_irq(&tty
->ctrl_lock
);
1766 if (is_ignored(SIGTTIN
) || is_current_pgrp_orphaned())
1768 kill_pgrp(task_pgrp(current
), SIGTTIN
, 1);
1769 set_thread_flag(TIF_SIGPENDING
);
1770 return -ERESTARTSYS
;
1772 spin_unlock_irq(&tty
->ctrl_lock
);
1778 * n_tty_read - read function for tty
1780 * @file: file object
1781 * @buf: userspace buffer pointer
1784 * Perform reads for the line discipline. We are guaranteed that the
1785 * line discipline will not be closed under us but we may get multiple
1786 * parallel readers and must handle this ourselves. We may also get
1787 * a hangup. Always called in user context, may sleep.
1789 * This code must be sure never to sleep through a hangup.
1792 static ssize_t
n_tty_read(struct tty_struct
*tty
, struct file
*file
,
1793 unsigned char __user
*buf
, size_t nr
)
1795 struct n_tty_data
*ldata
= tty
->disc_data
;
1796 unsigned char __user
*b
= buf
;
1797 DECLARE_WAITQUEUE(wait
, current
);
1803 unsigned long flags
;
1807 c
= job_control(tty
, file
);
1812 timeout
= MAX_SCHEDULE_TIMEOUT
;
1813 if (!ldata
->icanon
) {
1814 minimum
= MIN_CHAR(tty
);
1816 time
= (HZ
/ 10) * TIME_CHAR(tty
);
1818 ldata
->minimum_to_wake
= 1;
1819 else if (!waitqueue_active(&tty
->read_wait
) ||
1820 (ldata
->minimum_to_wake
> minimum
))
1821 ldata
->minimum_to_wake
= minimum
;
1823 timeout
= (HZ
/ 10) * TIME_CHAR(tty
);
1824 ldata
->minimum_to_wake
= minimum
= 1;
1829 * Internal serialization of reads.
1831 if (file
->f_flags
& O_NONBLOCK
) {
1832 if (!mutex_trylock(&ldata
->atomic_read_lock
))
1835 if (mutex_lock_interruptible(&ldata
->atomic_read_lock
))
1836 return -ERESTARTSYS
;
1838 packet
= tty
->packet
;
1840 add_wait_queue(&tty
->read_wait
, &wait
);
1842 /* First test for status change. */
1843 if (packet
&& tty
->link
->ctrl_status
) {
1847 spin_lock_irqsave(&tty
->link
->ctrl_lock
, flags
);
1848 cs
= tty
->link
->ctrl_status
;
1849 tty
->link
->ctrl_status
= 0;
1850 spin_unlock_irqrestore(&tty
->link
->ctrl_lock
, flags
);
1851 if (tty_put_user(tty
, cs
, b
++)) {
1859 /* This statement must be first before checking for input
1860 so that any interrupt will set the state back to
1862 set_current_state(TASK_INTERRUPTIBLE
);
1864 if (((minimum
- (b
- buf
)) < ldata
->minimum_to_wake
) &&
1865 ((minimum
- (b
- buf
)) >= 1))
1866 ldata
->minimum_to_wake
= (minimum
- (b
- buf
));
1868 if (!input_available_p(tty
, 0)) {
1869 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
)) {
1873 if (tty_hung_up_p(file
))
1877 if (file
->f_flags
& O_NONBLOCK
) {
1881 if (signal_pending(current
)) {
1882 retval
= -ERESTARTSYS
;
1885 n_tty_set_room(tty
);
1886 timeout
= schedule_timeout(timeout
);
1889 __set_current_state(TASK_RUNNING
);
1891 /* Deal with packet mode. */
1892 if (packet
&& b
== buf
) {
1893 if (tty_put_user(tty
, TIOCPKT_DATA
, b
++)) {
1901 if (ldata
->icanon
&& !L_EXTPROC(tty
)) {
1902 /* N.B. avoid overrun if nr == 0 */
1903 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
1904 while (nr
&& ldata
->read_cnt
) {
1907 eol
= test_and_clear_bit(ldata
->read_tail
,
1909 c
= ldata
->read_buf
[ldata
->read_tail
];
1910 ldata
->read_tail
= ((ldata
->read_tail
+1) &
1911 (N_TTY_BUF_SIZE
-1));
1914 /* this test should be redundant:
1915 * we shouldn't be reading data if
1918 if (--ldata
->canon_data
< 0)
1919 ldata
->canon_data
= 0;
1921 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
1923 if (!eol
|| (c
!= __DISABLED_CHAR
)) {
1924 if (tty_put_user(tty
, c
, b
++)) {
1927 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
1933 tty_audit_push(tty
);
1934 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
1937 raw_spin_lock_irqsave(&ldata
->read_lock
, flags
);
1939 raw_spin_unlock_irqrestore(&ldata
->read_lock
, flags
);
1944 /* The copy function takes the read lock and handles
1945 locking internally for this case */
1946 uncopied
= copy_from_read_buf(tty
, &b
, &nr
);
1947 uncopied
+= copy_from_read_buf(tty
, &b
, &nr
);
1954 /* If there is enough space in the read buffer now, let the
1955 * low-level driver know. We use n_tty_chars_in_buffer() to
1956 * check the buffer, as it now knows about canonical mode.
1957 * Otherwise, if the driver is throttled and the line is
1958 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
1959 * we won't get any more characters.
1962 tty_set_flow_change(tty
, TTY_UNTHROTTLE_SAFE
);
1963 if (n_tty_chars_in_buffer(tty
) > TTY_THRESHOLD_UNTHROTTLE
)
1967 n_tty_set_room(tty
);
1968 if (!tty_unthrottle_safe(tty
))
1971 __tty_set_flow_change(tty
, 0);
1973 if (b
- buf
>= minimum
)
1978 mutex_unlock(&ldata
->atomic_read_lock
);
1979 remove_wait_queue(&tty
->read_wait
, &wait
);
1981 if (!waitqueue_active(&tty
->read_wait
))
1982 ldata
->minimum_to_wake
= minimum
;
1984 __set_current_state(TASK_RUNNING
);
1989 clear_bit(TTY_PUSH
, &tty
->flags
);
1990 } else if (test_and_clear_bit(TTY_PUSH
, &tty
->flags
))
1993 n_tty_set_room(tty
);
1998 * n_tty_write - write function for tty
2000 * @file: file object
2001 * @buf: userspace buffer pointer
2004 * Write function of the terminal device. This is serialized with
2005 * respect to other write callers but not to termios changes, reads
2006 * and other such events. Since the receive code will echo characters,
2007 * thus calling driver write methods, the output_lock is used in
2008 * the output processing functions called here as well as in the
2009 * echo processing function to protect the column state and space
2010 * left in the buffer.
2012 * This code must be sure never to sleep through a hangup.
2014 * Locking: output_lock to protect column state and space left
2015 * (note that the process_output*() functions take this
2019 static ssize_t
n_tty_write(struct tty_struct
*tty
, struct file
*file
,
2020 const unsigned char *buf
, size_t nr
)
2022 const unsigned char *b
= buf
;
2023 DECLARE_WAITQUEUE(wait
, current
);
2027 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2028 if (L_TOSTOP(tty
) && file
->f_op
->write
!= redirected_tty_write
) {
2029 retval
= tty_check_change(tty
);
2034 /* Write out any echoed characters that are still pending */
2035 process_echoes(tty
);
2037 add_wait_queue(&tty
->write_wait
, &wait
);
2039 set_current_state(TASK_INTERRUPTIBLE
);
2040 if (signal_pending(current
)) {
2041 retval
= -ERESTARTSYS
;
2044 if (tty_hung_up_p(file
) || (tty
->link
&& !tty
->link
->count
)) {
2050 ssize_t num
= process_output_block(tty
, b
, nr
);
2062 if (process_output(c
, tty
) < 0)
2066 if (tty
->ops
->flush_chars
)
2067 tty
->ops
->flush_chars(tty
);
2070 c
= tty
->ops
->write(tty
, b
, nr
);
2083 if (file
->f_flags
& O_NONBLOCK
) {
2090 __set_current_state(TASK_RUNNING
);
2091 remove_wait_queue(&tty
->write_wait
, &wait
);
2092 if (b
- buf
!= nr
&& tty
->fasync
)
2093 set_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
);
2094 return (b
- buf
) ? b
- buf
: retval
;
2098 * n_tty_poll - poll method for N_TTY
2099 * @tty: terminal device
2100 * @file: file accessing it
2103 * Called when the line discipline is asked to poll() for data or
2104 * for special events. This code is not serialized with respect to
2105 * other events save open/close.
2107 * This code must be sure never to sleep through a hangup.
2108 * Called without the kernel lock held - fine
2111 static unsigned int n_tty_poll(struct tty_struct
*tty
, struct file
*file
,
2114 struct n_tty_data
*ldata
= tty
->disc_data
;
2115 unsigned int mask
= 0;
2117 poll_wait(file
, &tty
->read_wait
, wait
);
2118 poll_wait(file
, &tty
->write_wait
, wait
);
2119 if (input_available_p(tty
, TIME_CHAR(tty
) ? 0 : MIN_CHAR(tty
)))
2120 mask
|= POLLIN
| POLLRDNORM
;
2121 if (tty
->packet
&& tty
->link
->ctrl_status
)
2122 mask
|= POLLPRI
| POLLIN
| POLLRDNORM
;
2123 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
))
2125 if (tty_hung_up_p(file
))
2127 if (!(mask
& (POLLHUP
| POLLIN
| POLLRDNORM
))) {
2128 if (MIN_CHAR(tty
) && !TIME_CHAR(tty
))
2129 ldata
->minimum_to_wake
= MIN_CHAR(tty
);
2131 ldata
->minimum_to_wake
= 1;
2133 if (tty
->ops
->write
&& !tty_is_writelocked(tty
) &&
2134 tty_chars_in_buffer(tty
) < WAKEUP_CHARS
&&
2135 tty_write_room(tty
) > 0)
2136 mask
|= POLLOUT
| POLLWRNORM
;
2140 static unsigned long inq_canon(struct n_tty_data
*ldata
)
2144 if (!ldata
->canon_data
)
2146 head
= ldata
->canon_head
;
2147 tail
= ldata
->read_tail
;
2148 nr
= (head
- tail
) & (N_TTY_BUF_SIZE
-1);
2149 /* Skip EOF-chars.. */
2150 while (head
!= tail
) {
2151 if (test_bit(tail
, ldata
->read_flags
) &&
2152 ldata
->read_buf
[tail
] == __DISABLED_CHAR
)
2154 tail
= (tail
+1) & (N_TTY_BUF_SIZE
-1);
2159 static int n_tty_ioctl(struct tty_struct
*tty
, struct file
*file
,
2160 unsigned int cmd
, unsigned long arg
)
2162 struct n_tty_data
*ldata
= tty
->disc_data
;
2167 return put_user(tty_chars_in_buffer(tty
), (int __user
*) arg
);
2169 /* FIXME: Locking */
2170 retval
= ldata
->read_cnt
;
2172 retval
= inq_canon(ldata
);
2173 return put_user(retval
, (unsigned int __user
*) arg
);
2175 return n_tty_ioctl_helper(tty
, file
, cmd
, arg
);
2179 static void n_tty_fasync(struct tty_struct
*tty
, int on
)
2181 struct n_tty_data
*ldata
= tty
->disc_data
;
2183 if (!waitqueue_active(&tty
->read_wait
)) {
2185 ldata
->minimum_to_wake
= 1;
2186 else if (!tty
->fasync
)
2187 ldata
->minimum_to_wake
= N_TTY_BUF_SIZE
;
2191 struct tty_ldisc_ops tty_ldisc_N_TTY
= {
2192 .magic
= TTY_LDISC_MAGIC
,
2195 .close
= n_tty_close
,
2196 .flush_buffer
= n_tty_flush_buffer
,
2197 .chars_in_buffer
= n_tty_chars_in_buffer
,
2199 .write
= n_tty_write
,
2200 .ioctl
= n_tty_ioctl
,
2201 .set_termios
= n_tty_set_termios
,
2203 .receive_buf
= n_tty_receive_buf
,
2204 .write_wakeup
= n_tty_write_wakeup
,
2205 .fasync
= n_tty_fasync
,
2209 * n_tty_inherit_ops - inherit N_TTY methods
2210 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2212 * Enables a 'subclass' line discipline to 'inherit' N_TTY
2216 void n_tty_inherit_ops(struct tty_ldisc_ops
*ops
)
2218 *ops
= tty_ldisc_N_TTY
;
2220 ops
->refcount
= ops
->flags
= 0;
2222 EXPORT_SYMBOL_GPL(n_tty_inherit_ops
);