n_tty: Get read_cnt through accessor
[deliverable/linux.git] / drivers / tty / n_tty.c
... / ...
CommitLineData
1/*
2 * n_tty.c --- implements the N_TTY line discipline.
3 *
4 * This code used to be in tty_io.c, but things are getting hairy
5 * enough that it made sense to split things off. (The N_TTY
6 * processing has changed so much that it's hardly recognizable,
7 * anyway...)
8 *
9 * Note that the open routine for N_TTY is guaranteed never to return
10 * an error. This is because Linux will fall back to setting a line
11 * to N_TTY if it can not switch to any other line discipline.
12 *
13 * Written by Theodore Ts'o, Copyright 1994.
14 *
15 * This file also contains code originally written by Linus Torvalds,
16 * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
17 *
18 * This file may be redistributed under the terms of the GNU General Public
19 * License.
20 *
21 * Reduced memory usage for older ARM systems - Russell King.
22 *
23 * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of
24 * the patch by Andrew J. Kroll <ag784@freenet.buffalo.edu>
25 * who actually finally proved there really was a race.
26 *
27 * 2002/03/18 Implemented n_tty_wakeup to send SIGIO POLL_OUTs to
28 * waiting writing processes-Sapan Bhatia <sapan@corewars.org>.
29 * Also fixed a bug in BLOCKING mode where n_tty_write returns
30 * EAGAIN
31 */
32
33#include <linux/types.h>
34#include <linux/major.h>
35#include <linux/errno.h>
36#include <linux/signal.h>
37#include <linux/fcntl.h>
38#include <linux/sched.h>
39#include <linux/interrupt.h>
40#include <linux/tty.h>
41#include <linux/timer.h>
42#include <linux/ctype.h>
43#include <linux/mm.h>
44#include <linux/string.h>
45#include <linux/slab.h>
46#include <linux/poll.h>
47#include <linux/bitops.h>
48#include <linux/audit.h>
49#include <linux/file.h>
50#include <linux/uaccess.h>
51#include <linux/module.h>
52#include <linux/ratelimit.h>
53
54
55/* number of characters left in xmit buffer before select has we have room */
56#define WAKEUP_CHARS 256
57
58/*
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.
62 */
63#define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
64#define TTY_THRESHOLD_UNTHROTTLE 128
65
66/*
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
70 * codes.
71 */
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
76
77#undef N_TTY_TRACE
78#ifdef N_TTY_TRACE
79# define n_tty_trace(f, args...) trace_printk(f, ##args)
80#else
81# define n_tty_trace(f, args...)
82#endif
83
84struct n_tty_data {
85 unsigned int column;
86 unsigned long overrun_time;
87 int num_overrun;
88
89 /* non-atomic */
90 bool no_room;
91
92 unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
93 unsigned char echo_overrun:1;
94
95 DECLARE_BITMAP(process_char_map, 256);
96 DECLARE_BITMAP(read_flags, N_TTY_BUF_SIZE);
97
98 char *read_buf;
99 int read_head;
100 int read_tail;
101 int read_cnt;
102 int minimum_to_wake;
103
104 unsigned char *echo_buf;
105 unsigned int echo_pos;
106 unsigned int echo_cnt;
107
108 int canon_data;
109 unsigned long canon_head;
110 unsigned int canon_column;
111
112 struct mutex atomic_read_lock;
113 struct mutex output_lock;
114 struct mutex echo_lock;
115 raw_spinlock_t read_lock;
116};
117
118static inline size_t read_cnt(struct n_tty_data *ldata)
119{
120 return ldata->read_cnt;
121}
122
123static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
124 unsigned char __user *ptr)
125{
126 struct n_tty_data *ldata = tty->disc_data;
127
128 tty_audit_add_data(tty, &x, 1, ldata->icanon);
129 return put_user(x, ptr);
130}
131
132static int receive_room(struct tty_struct *tty)
133{
134 struct n_tty_data *ldata = tty->disc_data;
135 int left;
136
137 if (I_PARMRK(tty)) {
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 - read_cnt(ldata) * 3 - 1;
142 } else
143 left = N_TTY_BUF_SIZE - read_cnt(ldata) - 1;
144
145 /*
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.
150 */
151 if (left <= 0)
152 left = ldata->icanon && !ldata->canon_data;
153
154 return left;
155}
156
157/**
158 * n_tty_set_room - receive space
159 * @tty: terminal
160 *
161 * Re-schedules the flip buffer work if space just became available.
162 *
163 * Locks: Concurrent update is protected with read_lock
164 */
165
166static void n_tty_set_room(struct tty_struct *tty)
167{
168 struct n_tty_data *ldata = tty->disc_data;
169
170 /* Did this open up the receive buffer? We may need to flip */
171 if (unlikely(ldata->no_room) && receive_room(tty)) {
172 ldata->no_room = 0;
173
174 WARN_RATELIMIT(tty->port->itty == NULL,
175 "scheduling with invalid itty\n");
176 /* see if ldisc has been killed - if so, this means that
177 * even though the ldisc has been halted and ->buf.work
178 * cancelled, ->buf.work is about to be rescheduled
179 */
180 WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
181 "scheduling buffer work for halted ldisc\n");
182 schedule_work(&tty->port->buf.work);
183 }
184}
185
186static void put_tty_queue_nolock(unsigned char c, struct n_tty_data *ldata)
187{
188 if (read_cnt(ldata) < N_TTY_BUF_SIZE) {
189 ldata->read_buf[ldata->read_head] = c;
190 ldata->read_head = (ldata->read_head + 1) & (N_TTY_BUF_SIZE-1);
191 ldata->read_cnt++;
192 }
193}
194
195/**
196 * put_tty_queue - add character to tty
197 * @c: character
198 * @ldata: n_tty data
199 *
200 * Add a character to the tty read_buf queue. This is done under the
201 * read_lock to serialize character addition and also to protect us
202 * against parallel reads or flushes
203 */
204
205static void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
206{
207 unsigned long flags;
208 /*
209 * The problem of stomping on the buffers ends here.
210 * Why didn't anyone see this one coming? --AJK
211 */
212 raw_spin_lock_irqsave(&ldata->read_lock, flags);
213 put_tty_queue_nolock(c, ldata);
214 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
215}
216
217/**
218 * reset_buffer_flags - reset buffer state
219 * @tty: terminal to reset
220 *
221 * Reset the read buffer counters and clear the flags.
222 * Called from n_tty_open() and n_tty_flush_buffer().
223 *
224 * Locking: tty_read_lock for read fields.
225 */
226
227static void reset_buffer_flags(struct n_tty_data *ldata)
228{
229 unsigned long flags;
230
231 raw_spin_lock_irqsave(&ldata->read_lock, flags);
232 ldata->read_head = ldata->read_tail = ldata->read_cnt = 0;
233 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
234
235 mutex_lock(&ldata->echo_lock);
236 ldata->echo_pos = ldata->echo_cnt = ldata->echo_overrun = 0;
237 mutex_unlock(&ldata->echo_lock);
238
239 ldata->canon_head = ldata->canon_data = ldata->erasing = 0;
240 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
241}
242
243static void n_tty_packet_mode_flush(struct tty_struct *tty)
244{
245 unsigned long flags;
246
247 spin_lock_irqsave(&tty->ctrl_lock, flags);
248 if (tty->link->packet) {
249 tty->ctrl_status |= TIOCPKT_FLUSHREAD;
250 wake_up_interruptible(&tty->link->read_wait);
251 }
252 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
253}
254
255/**
256 * n_tty_flush_buffer - clean input queue
257 * @tty: terminal device
258 *
259 * Flush the input buffer. Called when the tty layer wants the
260 * buffer flushed (eg at hangup) or when the N_TTY line discipline
261 * internally has to clean the pending queue (for example some signals).
262 *
263 * Locking: ctrl_lock, read_lock.
264 */
265
266static void n_tty_flush_buffer(struct tty_struct *tty)
267{
268 reset_buffer_flags(tty->disc_data);
269 n_tty_set_room(tty);
270
271 if (tty->link)
272 n_tty_packet_mode_flush(tty);
273}
274
275/**
276 * n_tty_chars_in_buffer - report available bytes
277 * @tty: tty device
278 *
279 * Report the number of characters buffered to be delivered to user
280 * at this instant in time.
281 *
282 * Locking: read_lock
283 */
284
285static ssize_t chars_in_buffer(struct tty_struct *tty)
286{
287 struct n_tty_data *ldata = tty->disc_data;
288 unsigned long flags;
289 ssize_t n = 0;
290
291 raw_spin_lock_irqsave(&ldata->read_lock, flags);
292 if (!ldata->icanon) {
293 n = read_cnt(ldata);
294 } else if (ldata->canon_data) {
295 n = (ldata->canon_head > ldata->read_tail) ?
296 ldata->canon_head - ldata->read_tail :
297 ldata->canon_head + (N_TTY_BUF_SIZE - ldata->read_tail);
298 }
299 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
300 return n;
301}
302
303static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
304{
305 WARN_ONCE(1, "%s is deprecated and scheduled for removal.", __func__);
306 return chars_in_buffer(tty);
307}
308
309/**
310 * is_utf8_continuation - utf8 multibyte check
311 * @c: byte to check
312 *
313 * Returns true if the utf8 character 'c' is a multibyte continuation
314 * character. We use this to correctly compute the on screen size
315 * of the character when printing
316 */
317
318static inline int is_utf8_continuation(unsigned char c)
319{
320 return (c & 0xc0) == 0x80;
321}
322
323/**
324 * is_continuation - multibyte check
325 * @c: byte to check
326 *
327 * Returns true if the utf8 character 'c' is a multibyte continuation
328 * character and the terminal is in unicode mode.
329 */
330
331static inline int is_continuation(unsigned char c, struct tty_struct *tty)
332{
333 return I_IUTF8(tty) && is_utf8_continuation(c);
334}
335
336/**
337 * do_output_char - output one character
338 * @c: character (or partial unicode symbol)
339 * @tty: terminal device
340 * @space: space available in tty driver write buffer
341 *
342 * This is a helper function that handles one output character
343 * (including special characters like TAB, CR, LF, etc.),
344 * doing OPOST processing and putting the results in the
345 * tty driver's write buffer.
346 *
347 * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
348 * and NLDLY. They simply aren't relevant in the world today.
349 * If you ever need them, add them here.
350 *
351 * Returns the number of bytes of buffer space used or -1 if
352 * no space left.
353 *
354 * Locking: should be called under the output_lock to protect
355 * the column state and space left in the buffer
356 */
357
358static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
359{
360 struct n_tty_data *ldata = tty->disc_data;
361 int spaces;
362
363 if (!space)
364 return -1;
365
366 switch (c) {
367 case '\n':
368 if (O_ONLRET(tty))
369 ldata->column = 0;
370 if (O_ONLCR(tty)) {
371 if (space < 2)
372 return -1;
373 ldata->canon_column = ldata->column = 0;
374 tty->ops->write(tty, "\r\n", 2);
375 return 2;
376 }
377 ldata->canon_column = ldata->column;
378 break;
379 case '\r':
380 if (O_ONOCR(tty) && ldata->column == 0)
381 return 0;
382 if (O_OCRNL(tty)) {
383 c = '\n';
384 if (O_ONLRET(tty))
385 ldata->canon_column = ldata->column = 0;
386 break;
387 }
388 ldata->canon_column = ldata->column = 0;
389 break;
390 case '\t':
391 spaces = 8 - (ldata->column & 7);
392 if (O_TABDLY(tty) == XTABS) {
393 if (space < spaces)
394 return -1;
395 ldata->column += spaces;
396 tty->ops->write(tty, " ", spaces);
397 return spaces;
398 }
399 ldata->column += spaces;
400 break;
401 case '\b':
402 if (ldata->column > 0)
403 ldata->column--;
404 break;
405 default:
406 if (!iscntrl(c)) {
407 if (O_OLCUC(tty))
408 c = toupper(c);
409 if (!is_continuation(c, tty))
410 ldata->column++;
411 }
412 break;
413 }
414
415 tty_put_char(tty, c);
416 return 1;
417}
418
419/**
420 * process_output - output post processor
421 * @c: character (or partial unicode symbol)
422 * @tty: terminal device
423 *
424 * Output one character with OPOST processing.
425 * Returns -1 when the output device is full and the character
426 * must be retried.
427 *
428 * Locking: output_lock to protect column state and space left
429 * (also, this is called from n_tty_write under the
430 * tty layer write lock)
431 */
432
433static int process_output(unsigned char c, struct tty_struct *tty)
434{
435 struct n_tty_data *ldata = tty->disc_data;
436 int space, retval;
437
438 mutex_lock(&ldata->output_lock);
439
440 space = tty_write_room(tty);
441 retval = do_output_char(c, tty, space);
442
443 mutex_unlock(&ldata->output_lock);
444 if (retval < 0)
445 return -1;
446 else
447 return 0;
448}
449
450/**
451 * process_output_block - block post processor
452 * @tty: terminal device
453 * @buf: character buffer
454 * @nr: number of bytes to output
455 *
456 * Output a block of characters with OPOST processing.
457 * Returns the number of characters output.
458 *
459 * This path is used to speed up block console writes, among other
460 * things when processing blocks of output data. It handles only
461 * the simple cases normally found and helps to generate blocks of
462 * symbols for the console driver and thus improve performance.
463 *
464 * Locking: output_lock to protect column state and space left
465 * (also, this is called from n_tty_write under the
466 * tty layer write lock)
467 */
468
469static ssize_t process_output_block(struct tty_struct *tty,
470 const unsigned char *buf, unsigned int nr)
471{
472 struct n_tty_data *ldata = tty->disc_data;
473 int space;
474 int i;
475 const unsigned char *cp;
476
477 mutex_lock(&ldata->output_lock);
478
479 space = tty_write_room(tty);
480 if (!space) {
481 mutex_unlock(&ldata->output_lock);
482 return 0;
483 }
484 if (nr > space)
485 nr = space;
486
487 for (i = 0, cp = buf; i < nr; i++, cp++) {
488 unsigned char c = *cp;
489
490 switch (c) {
491 case '\n':
492 if (O_ONLRET(tty))
493 ldata->column = 0;
494 if (O_ONLCR(tty))
495 goto break_out;
496 ldata->canon_column = ldata->column;
497 break;
498 case '\r':
499 if (O_ONOCR(tty) && ldata->column == 0)
500 goto break_out;
501 if (O_OCRNL(tty))
502 goto break_out;
503 ldata->canon_column = ldata->column = 0;
504 break;
505 case '\t':
506 goto break_out;
507 case '\b':
508 if (ldata->column > 0)
509 ldata->column--;
510 break;
511 default:
512 if (!iscntrl(c)) {
513 if (O_OLCUC(tty))
514 goto break_out;
515 if (!is_continuation(c, tty))
516 ldata->column++;
517 }
518 break;
519 }
520 }
521break_out:
522 i = tty->ops->write(tty, buf, i);
523
524 mutex_unlock(&ldata->output_lock);
525 return i;
526}
527
528/**
529 * process_echoes - write pending echo characters
530 * @tty: terminal device
531 *
532 * Write previously buffered echo (and other ldisc-generated)
533 * characters to the tty.
534 *
535 * Characters generated by the ldisc (including echoes) need to
536 * be buffered because the driver's write buffer can fill during
537 * heavy program output. Echoing straight to the driver will
538 * often fail under these conditions, causing lost characters and
539 * resulting mismatches of ldisc state information.
540 *
541 * Since the ldisc state must represent the characters actually sent
542 * to the driver at the time of the write, operations like certain
543 * changes in column state are also saved in the buffer and executed
544 * here.
545 *
546 * A circular fifo buffer is used so that the most recent characters
547 * are prioritized. Also, when control characters are echoed with a
548 * prefixed "^", the pair is treated atomically and thus not separated.
549 *
550 * Locking: output_lock to protect column state and space left,
551 * echo_lock to protect the echo buffer
552 */
553
554static void process_echoes(struct tty_struct *tty)
555{
556 struct n_tty_data *ldata = tty->disc_data;
557 int space, nr;
558 unsigned char c;
559 unsigned char *cp, *buf_end;
560
561 if (!ldata->echo_cnt)
562 return;
563
564 mutex_lock(&ldata->output_lock);
565 mutex_lock(&ldata->echo_lock);
566
567 space = tty_write_room(tty);
568
569 buf_end = ldata->echo_buf + N_TTY_BUF_SIZE;
570 cp = ldata->echo_buf + ldata->echo_pos;
571 nr = ldata->echo_cnt;
572 while (nr > 0) {
573 c = *cp;
574 if (c == ECHO_OP_START) {
575 unsigned char op;
576 unsigned char *opp;
577 int no_space_left = 0;
578
579 /*
580 * If the buffer byte is the start of a multi-byte
581 * operation, get the next byte, which is either the
582 * op code or a control character value.
583 */
584 opp = cp + 1;
585 if (opp == buf_end)
586 opp -= N_TTY_BUF_SIZE;
587 op = *opp;
588
589 switch (op) {
590 unsigned int num_chars, num_bs;
591
592 case ECHO_OP_ERASE_TAB:
593 if (++opp == buf_end)
594 opp -= N_TTY_BUF_SIZE;
595 num_chars = *opp;
596
597 /*
598 * Determine how many columns to go back
599 * in order to erase the tab.
600 * This depends on the number of columns
601 * used by other characters within the tab
602 * area. If this (modulo 8) count is from
603 * the start of input rather than from a
604 * previous tab, we offset by canon column.
605 * Otherwise, tab spacing is normal.
606 */
607 if (!(num_chars & 0x80))
608 num_chars += ldata->canon_column;
609 num_bs = 8 - (num_chars & 7);
610
611 if (num_bs > space) {
612 no_space_left = 1;
613 break;
614 }
615 space -= num_bs;
616 while (num_bs--) {
617 tty_put_char(tty, '\b');
618 if (ldata->column > 0)
619 ldata->column--;
620 }
621 cp += 3;
622 nr -= 3;
623 break;
624
625 case ECHO_OP_SET_CANON_COL:
626 ldata->canon_column = ldata->column;
627 cp += 2;
628 nr -= 2;
629 break;
630
631 case ECHO_OP_MOVE_BACK_COL:
632 if (ldata->column > 0)
633 ldata->column--;
634 cp += 2;
635 nr -= 2;
636 break;
637
638 case ECHO_OP_START:
639 /* This is an escaped echo op start code */
640 if (!space) {
641 no_space_left = 1;
642 break;
643 }
644 tty_put_char(tty, ECHO_OP_START);
645 ldata->column++;
646 space--;
647 cp += 2;
648 nr -= 2;
649 break;
650
651 default:
652 /*
653 * If the op is not a special byte code,
654 * it is a ctrl char tagged to be echoed
655 * as "^X" (where X is the letter
656 * representing the control char).
657 * Note that we must ensure there is
658 * enough space for the whole ctrl pair.
659 *
660 */
661 if (space < 2) {
662 no_space_left = 1;
663 break;
664 }
665 tty_put_char(tty, '^');
666 tty_put_char(tty, op ^ 0100);
667 ldata->column += 2;
668 space -= 2;
669 cp += 2;
670 nr -= 2;
671 }
672
673 if (no_space_left)
674 break;
675 } else {
676 if (O_OPOST(tty)) {
677 int retval = do_output_char(c, tty, space);
678 if (retval < 0)
679 break;
680 space -= retval;
681 } else {
682 if (!space)
683 break;
684 tty_put_char(tty, c);
685 space -= 1;
686 }
687 cp += 1;
688 nr -= 1;
689 }
690
691 /* When end of circular buffer reached, wrap around */
692 if (cp >= buf_end)
693 cp -= N_TTY_BUF_SIZE;
694 }
695
696 if (nr == 0) {
697 ldata->echo_pos = 0;
698 ldata->echo_cnt = 0;
699 ldata->echo_overrun = 0;
700 } else {
701 int num_processed = ldata->echo_cnt - nr;
702 ldata->echo_pos += num_processed;
703 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
704 ldata->echo_cnt = nr;
705 if (num_processed > 0)
706 ldata->echo_overrun = 0;
707 }
708
709 mutex_unlock(&ldata->echo_lock);
710 mutex_unlock(&ldata->output_lock);
711
712 if (tty->ops->flush_chars)
713 tty->ops->flush_chars(tty);
714}
715
716/**
717 * add_echo_byte - add a byte to the echo buffer
718 * @c: unicode byte to echo
719 * @ldata: n_tty data
720 *
721 * Add a character or operation byte to the echo buffer.
722 *
723 * Should be called under the echo lock to protect the echo buffer.
724 */
725
726static void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
727{
728 int new_byte_pos;
729
730 if (ldata->echo_cnt == N_TTY_BUF_SIZE) {
731 /* Circular buffer is already at capacity */
732 new_byte_pos = ldata->echo_pos;
733
734 /*
735 * Since the buffer start position needs to be advanced,
736 * be sure to step by a whole operation byte group.
737 */
738 if (ldata->echo_buf[ldata->echo_pos] == ECHO_OP_START) {
739 if (ldata->echo_buf[(ldata->echo_pos + 1) &
740 (N_TTY_BUF_SIZE - 1)] ==
741 ECHO_OP_ERASE_TAB) {
742 ldata->echo_pos += 3;
743 ldata->echo_cnt -= 2;
744 } else {
745 ldata->echo_pos += 2;
746 ldata->echo_cnt -= 1;
747 }
748 } else {
749 ldata->echo_pos++;
750 }
751 ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
752
753 ldata->echo_overrun = 1;
754 } else {
755 new_byte_pos = ldata->echo_pos + ldata->echo_cnt;
756 new_byte_pos &= N_TTY_BUF_SIZE - 1;
757 ldata->echo_cnt++;
758 }
759
760 ldata->echo_buf[new_byte_pos] = c;
761}
762
763/**
764 * echo_move_back_col - add operation to move back a column
765 * @ldata: n_tty data
766 *
767 * Add an operation to the echo buffer to move back one column.
768 *
769 * Locking: echo_lock to protect the echo buffer
770 */
771
772static void echo_move_back_col(struct n_tty_data *ldata)
773{
774 mutex_lock(&ldata->echo_lock);
775 add_echo_byte(ECHO_OP_START, ldata);
776 add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
777 mutex_unlock(&ldata->echo_lock);
778}
779
780/**
781 * echo_set_canon_col - add operation to set the canon column
782 * @ldata: n_tty data
783 *
784 * Add an operation to the echo buffer to set the canon column
785 * to the current column.
786 *
787 * Locking: echo_lock to protect the echo buffer
788 */
789
790static void echo_set_canon_col(struct n_tty_data *ldata)
791{
792 mutex_lock(&ldata->echo_lock);
793 add_echo_byte(ECHO_OP_START, ldata);
794 add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
795 mutex_unlock(&ldata->echo_lock);
796}
797
798/**
799 * echo_erase_tab - add operation to erase a tab
800 * @num_chars: number of character columns already used
801 * @after_tab: true if num_chars starts after a previous tab
802 * @ldata: n_tty data
803 *
804 * Add an operation to the echo buffer to erase a tab.
805 *
806 * Called by the eraser function, which knows how many character
807 * columns have been used since either a previous tab or the start
808 * of input. This information will be used later, along with
809 * canon column (if applicable), to go back the correct number
810 * of columns.
811 *
812 * Locking: echo_lock to protect the echo buffer
813 */
814
815static void echo_erase_tab(unsigned int num_chars, int after_tab,
816 struct n_tty_data *ldata)
817{
818 mutex_lock(&ldata->echo_lock);
819
820 add_echo_byte(ECHO_OP_START, ldata);
821 add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
822
823 /* We only need to know this modulo 8 (tab spacing) */
824 num_chars &= 7;
825
826 /* Set the high bit as a flag if num_chars is after a previous tab */
827 if (after_tab)
828 num_chars |= 0x80;
829
830 add_echo_byte(num_chars, ldata);
831
832 mutex_unlock(&ldata->echo_lock);
833}
834
835/**
836 * echo_char_raw - echo a character raw
837 * @c: unicode byte to echo
838 * @tty: terminal device
839 *
840 * Echo user input back onto the screen. This must be called only when
841 * L_ECHO(tty) is true. Called from the driver receive_buf path.
842 *
843 * This variant does not treat control characters specially.
844 *
845 * Locking: echo_lock to protect the echo buffer
846 */
847
848static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
849{
850 mutex_lock(&ldata->echo_lock);
851 if (c == ECHO_OP_START) {
852 add_echo_byte(ECHO_OP_START, ldata);
853 add_echo_byte(ECHO_OP_START, ldata);
854 } else {
855 add_echo_byte(c, ldata);
856 }
857 mutex_unlock(&ldata->echo_lock);
858}
859
860/**
861 * echo_char - echo a character
862 * @c: unicode byte to echo
863 * @tty: terminal device
864 *
865 * Echo user input back onto the screen. This must be called only when
866 * L_ECHO(tty) is true. Called from the driver receive_buf path.
867 *
868 * This variant tags control characters to be echoed as "^X"
869 * (where X is the letter representing the control char).
870 *
871 * Locking: echo_lock to protect the echo buffer
872 */
873
874static void echo_char(unsigned char c, struct tty_struct *tty)
875{
876 struct n_tty_data *ldata = tty->disc_data;
877
878 mutex_lock(&ldata->echo_lock);
879
880 if (c == ECHO_OP_START) {
881 add_echo_byte(ECHO_OP_START, ldata);
882 add_echo_byte(ECHO_OP_START, ldata);
883 } else {
884 if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
885 add_echo_byte(ECHO_OP_START, ldata);
886 add_echo_byte(c, ldata);
887 }
888
889 mutex_unlock(&ldata->echo_lock);
890}
891
892/**
893 * finish_erasing - complete erase
894 * @ldata: n_tty data
895 */
896
897static inline void finish_erasing(struct n_tty_data *ldata)
898{
899 if (ldata->erasing) {
900 echo_char_raw('/', ldata);
901 ldata->erasing = 0;
902 }
903}
904
905/**
906 * eraser - handle erase function
907 * @c: character input
908 * @tty: terminal device
909 *
910 * Perform erase and necessary output when an erase character is
911 * present in the stream from the driver layer. Handles the complexities
912 * of UTF-8 multibyte symbols.
913 *
914 * Locking: read_lock for tty buffers
915 */
916
917static void eraser(unsigned char c, struct tty_struct *tty)
918{
919 struct n_tty_data *ldata = tty->disc_data;
920 enum { ERASE, WERASE, KILL } kill_type;
921 int head, seen_alnums, cnt;
922 unsigned long flags;
923
924 /* FIXME: locking needed ? */
925 if (ldata->read_head == ldata->canon_head) {
926 /* process_output('\a', tty); */ /* what do you think? */
927 return;
928 }
929 if (c == ERASE_CHAR(tty))
930 kill_type = ERASE;
931 else if (c == WERASE_CHAR(tty))
932 kill_type = WERASE;
933 else {
934 if (!L_ECHO(tty)) {
935 raw_spin_lock_irqsave(&ldata->read_lock, flags);
936 ldata->read_cnt -= ((ldata->read_head - ldata->canon_head) &
937 (N_TTY_BUF_SIZE - 1));
938 ldata->read_head = ldata->canon_head;
939 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
940 return;
941 }
942 if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
943 raw_spin_lock_irqsave(&ldata->read_lock, flags);
944 ldata->read_cnt -= ((ldata->read_head - ldata->canon_head) &
945 (N_TTY_BUF_SIZE - 1));
946 ldata->read_head = ldata->canon_head;
947 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
948 finish_erasing(ldata);
949 echo_char(KILL_CHAR(tty), tty);
950 /* Add a newline if ECHOK is on and ECHOKE is off. */
951 if (L_ECHOK(tty))
952 echo_char_raw('\n', ldata);
953 return;
954 }
955 kill_type = KILL;
956 }
957
958 seen_alnums = 0;
959 /* FIXME: Locking ?? */
960 while (ldata->read_head != ldata->canon_head) {
961 head = ldata->read_head;
962
963 /* erase a single possibly multibyte character */
964 do {
965 head = (head - 1) & (N_TTY_BUF_SIZE-1);
966 c = ldata->read_buf[head];
967 } while (is_continuation(c, tty) && head != ldata->canon_head);
968
969 /* do not partially erase */
970 if (is_continuation(c, tty))
971 break;
972
973 if (kill_type == WERASE) {
974 /* Equivalent to BSD's ALTWERASE. */
975 if (isalnum(c) || c == '_')
976 seen_alnums++;
977 else if (seen_alnums)
978 break;
979 }
980 cnt = (ldata->read_head - head) & (N_TTY_BUF_SIZE-1);
981 raw_spin_lock_irqsave(&ldata->read_lock, flags);
982 ldata->read_head = head;
983 ldata->read_cnt -= cnt;
984 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
985 if (L_ECHO(tty)) {
986 if (L_ECHOPRT(tty)) {
987 if (!ldata->erasing) {
988 echo_char_raw('\\', ldata);
989 ldata->erasing = 1;
990 }
991 /* if cnt > 1, output a multi-byte character */
992 echo_char(c, tty);
993 while (--cnt > 0) {
994 head = (head+1) & (N_TTY_BUF_SIZE-1);
995 echo_char_raw(ldata->read_buf[head],
996 ldata);
997 echo_move_back_col(ldata);
998 }
999 } else if (kill_type == ERASE && !L_ECHOE(tty)) {
1000 echo_char(ERASE_CHAR(tty), tty);
1001 } else if (c == '\t') {
1002 unsigned int num_chars = 0;
1003 int after_tab = 0;
1004 unsigned long tail = ldata->read_head;
1005
1006 /*
1007 * Count the columns used for characters
1008 * since the start of input or after a
1009 * previous tab.
1010 * This info is used to go back the correct
1011 * number of columns.
1012 */
1013 while (tail != ldata->canon_head) {
1014 tail = (tail-1) & (N_TTY_BUF_SIZE-1);
1015 c = ldata->read_buf[tail];
1016 if (c == '\t') {
1017 after_tab = 1;
1018 break;
1019 } else if (iscntrl(c)) {
1020 if (L_ECHOCTL(tty))
1021 num_chars += 2;
1022 } else if (!is_continuation(c, tty)) {
1023 num_chars++;
1024 }
1025 }
1026 echo_erase_tab(num_chars, after_tab, ldata);
1027 } else {
1028 if (iscntrl(c) && L_ECHOCTL(tty)) {
1029 echo_char_raw('\b', ldata);
1030 echo_char_raw(' ', ldata);
1031 echo_char_raw('\b', ldata);
1032 }
1033 if (!iscntrl(c) || L_ECHOCTL(tty)) {
1034 echo_char_raw('\b', ldata);
1035 echo_char_raw(' ', ldata);
1036 echo_char_raw('\b', ldata);
1037 }
1038 }
1039 }
1040 if (kill_type == ERASE)
1041 break;
1042 }
1043 if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
1044 finish_erasing(ldata);
1045}
1046
1047/**
1048 * isig - handle the ISIG optio
1049 * @sig: signal
1050 * @tty: terminal
1051 *
1052 * Called when a signal is being sent due to terminal input.
1053 * Called from the driver receive_buf path so serialized.
1054 *
1055 * Locking: ctrl_lock
1056 */
1057
1058static inline void isig(int sig, struct tty_struct *tty)
1059{
1060 struct pid *tty_pgrp = tty_get_pgrp(tty);
1061 if (tty_pgrp) {
1062 kill_pgrp(tty_pgrp, sig, 1);
1063 put_pid(tty_pgrp);
1064 }
1065}
1066
1067/**
1068 * n_tty_receive_break - handle break
1069 * @tty: terminal
1070 *
1071 * An RS232 break event has been hit in the incoming bitstream. This
1072 * can cause a variety of events depending upon the termios settings.
1073 *
1074 * Called from the receive_buf path so single threaded.
1075 */
1076
1077static inline void n_tty_receive_break(struct tty_struct *tty)
1078{
1079 struct n_tty_data *ldata = tty->disc_data;
1080
1081 if (I_IGNBRK(tty))
1082 return;
1083 if (I_BRKINT(tty)) {
1084 isig(SIGINT, tty);
1085 if (!L_NOFLSH(tty)) {
1086 n_tty_flush_buffer(tty);
1087 tty_driver_flush_buffer(tty);
1088 }
1089 return;
1090 }
1091 if (I_PARMRK(tty)) {
1092 put_tty_queue('\377', ldata);
1093 put_tty_queue('\0', ldata);
1094 }
1095 put_tty_queue('\0', ldata);
1096 wake_up_interruptible(&tty->read_wait);
1097}
1098
1099/**
1100 * n_tty_receive_overrun - handle overrun reporting
1101 * @tty: terminal
1102 *
1103 * Data arrived faster than we could process it. While the tty
1104 * driver has flagged this the bits that were missed are gone
1105 * forever.
1106 *
1107 * Called from the receive_buf path so single threaded. Does not
1108 * need locking as num_overrun and overrun_time are function
1109 * private.
1110 */
1111
1112static inline void n_tty_receive_overrun(struct tty_struct *tty)
1113{
1114 struct n_tty_data *ldata = tty->disc_data;
1115 char buf[64];
1116
1117 ldata->num_overrun++;
1118 if (time_after(jiffies, ldata->overrun_time + HZ) ||
1119 time_after(ldata->overrun_time, jiffies)) {
1120 printk(KERN_WARNING "%s: %d input overrun(s)\n",
1121 tty_name(tty, buf),
1122 ldata->num_overrun);
1123 ldata->overrun_time = jiffies;
1124 ldata->num_overrun = 0;
1125 }
1126}
1127
1128/**
1129 * n_tty_receive_parity_error - error notifier
1130 * @tty: terminal device
1131 * @c: character
1132 *
1133 * Process a parity error and queue the right data to indicate
1134 * the error case if necessary. Locking as per n_tty_receive_buf.
1135 */
1136static inline void n_tty_receive_parity_error(struct tty_struct *tty,
1137 unsigned char c)
1138{
1139 struct n_tty_data *ldata = tty->disc_data;
1140
1141 if (I_IGNPAR(tty))
1142 return;
1143 if (I_PARMRK(tty)) {
1144 put_tty_queue('\377', ldata);
1145 put_tty_queue('\0', ldata);
1146 put_tty_queue(c, ldata);
1147 } else if (I_INPCK(tty))
1148 put_tty_queue('\0', ldata);
1149 else
1150 put_tty_queue(c, ldata);
1151 wake_up_interruptible(&tty->read_wait);
1152}
1153
1154/**
1155 * n_tty_receive_char - perform processing
1156 * @tty: terminal device
1157 * @c: character
1158 *
1159 * Process an individual character of input received from the driver.
1160 * This is serialized with respect to itself by the rules for the
1161 * driver above.
1162 */
1163
1164static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
1165{
1166 struct n_tty_data *ldata = tty->disc_data;
1167 unsigned long flags;
1168 int parmrk;
1169
1170 if (ldata->raw) {
1171 put_tty_queue(c, ldata);
1172 return;
1173 }
1174
1175 if (I_ISTRIP(tty))
1176 c &= 0x7f;
1177 if (I_IUCLC(tty) && L_IEXTEN(tty))
1178 c = tolower(c);
1179
1180 if (L_EXTPROC(tty)) {
1181 put_tty_queue(c, ldata);
1182 return;
1183 }
1184
1185 if (tty->stopped && !tty->flow_stopped && I_IXON(tty) &&
1186 I_IXANY(tty) && c != START_CHAR(tty) && c != STOP_CHAR(tty) &&
1187 c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && c != SUSP_CHAR(tty)) {
1188 start_tty(tty);
1189 process_echoes(tty);
1190 }
1191
1192 if (tty->closing) {
1193 if (I_IXON(tty)) {
1194 if (c == START_CHAR(tty)) {
1195 start_tty(tty);
1196 process_echoes(tty);
1197 } else if (c == STOP_CHAR(tty))
1198 stop_tty(tty);
1199 }
1200 return;
1201 }
1202
1203 /*
1204 * If the previous character was LNEXT, or we know that this
1205 * character is not one of the characters that we'll have to
1206 * handle specially, do shortcut processing to speed things
1207 * up.
1208 */
1209 if (!test_bit(c, ldata->process_char_map) || ldata->lnext) {
1210 ldata->lnext = 0;
1211 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
1212 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
1213 /* beep if no space */
1214 if (L_ECHO(tty))
1215 process_output('\a', tty);
1216 return;
1217 }
1218 if (L_ECHO(tty)) {
1219 finish_erasing(ldata);
1220 /* Record the column of first canon char. */
1221 if (ldata->canon_head == ldata->read_head)
1222 echo_set_canon_col(ldata);
1223 echo_char(c, tty);
1224 process_echoes(tty);
1225 }
1226 if (parmrk)
1227 put_tty_queue(c, ldata);
1228 put_tty_queue(c, ldata);
1229 return;
1230 }
1231
1232 if (I_IXON(tty)) {
1233 if (c == START_CHAR(tty)) {
1234 start_tty(tty);
1235 process_echoes(tty);
1236 return;
1237 }
1238 if (c == STOP_CHAR(tty)) {
1239 stop_tty(tty);
1240 return;
1241 }
1242 }
1243
1244 if (L_ISIG(tty)) {
1245 int signal;
1246 signal = SIGINT;
1247 if (c == INTR_CHAR(tty))
1248 goto send_signal;
1249 signal = SIGQUIT;
1250 if (c == QUIT_CHAR(tty))
1251 goto send_signal;
1252 signal = SIGTSTP;
1253 if (c == SUSP_CHAR(tty)) {
1254send_signal:
1255 if (!L_NOFLSH(tty)) {
1256 n_tty_flush_buffer(tty);
1257 tty_driver_flush_buffer(tty);
1258 }
1259 if (I_IXON(tty))
1260 start_tty(tty);
1261 if (L_ECHO(tty)) {
1262 echo_char(c, tty);
1263 process_echoes(tty);
1264 }
1265 isig(signal, tty);
1266 return;
1267 }
1268 }
1269
1270 if (c == '\r') {
1271 if (I_IGNCR(tty))
1272 return;
1273 if (I_ICRNL(tty))
1274 c = '\n';
1275 } else if (c == '\n' && I_INLCR(tty))
1276 c = '\r';
1277
1278 if (ldata->icanon) {
1279 if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
1280 (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
1281 eraser(c, tty);
1282 process_echoes(tty);
1283 return;
1284 }
1285 if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
1286 ldata->lnext = 1;
1287 if (L_ECHO(tty)) {
1288 finish_erasing(ldata);
1289 if (L_ECHOCTL(tty)) {
1290 echo_char_raw('^', ldata);
1291 echo_char_raw('\b', ldata);
1292 process_echoes(tty);
1293 }
1294 }
1295 return;
1296 }
1297 if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
1298 L_IEXTEN(tty)) {
1299 unsigned long tail = ldata->canon_head;
1300
1301 finish_erasing(ldata);
1302 echo_char(c, tty);
1303 echo_char_raw('\n', ldata);
1304 while (tail != ldata->read_head) {
1305 echo_char(ldata->read_buf[tail], tty);
1306 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
1307 }
1308 process_echoes(tty);
1309 return;
1310 }
1311 if (c == '\n') {
1312 if (read_cnt(ldata) >= N_TTY_BUF_SIZE) {
1313 if (L_ECHO(tty))
1314 process_output('\a', tty);
1315 return;
1316 }
1317 if (L_ECHO(tty) || L_ECHONL(tty)) {
1318 echo_char_raw('\n', ldata);
1319 process_echoes(tty);
1320 }
1321 goto handle_newline;
1322 }
1323 if (c == EOF_CHAR(tty)) {
1324 if (read_cnt(ldata) >= N_TTY_BUF_SIZE)
1325 return;
1326 if (ldata->canon_head != ldata->read_head)
1327 set_bit(TTY_PUSH, &tty->flags);
1328 c = __DISABLED_CHAR;
1329 goto handle_newline;
1330 }
1331 if ((c == EOL_CHAR(tty)) ||
1332 (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
1333 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty))
1334 ? 1 : 0;
1335 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk)) {
1336 if (L_ECHO(tty))
1337 process_output('\a', tty);
1338 return;
1339 }
1340 /*
1341 * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
1342 */
1343 if (L_ECHO(tty)) {
1344 /* Record the column of first canon char. */
1345 if (ldata->canon_head == ldata->read_head)
1346 echo_set_canon_col(ldata);
1347 echo_char(c, tty);
1348 process_echoes(tty);
1349 }
1350 /*
1351 * XXX does PARMRK doubling happen for
1352 * EOL_CHAR and EOL2_CHAR?
1353 */
1354 if (parmrk)
1355 put_tty_queue(c, ldata);
1356
1357handle_newline:
1358 raw_spin_lock_irqsave(&ldata->read_lock, flags);
1359 set_bit(ldata->read_head, ldata->read_flags);
1360 put_tty_queue_nolock(c, ldata);
1361 ldata->canon_head = ldata->read_head;
1362 ldata->canon_data++;
1363 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1364 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1365 if (waitqueue_active(&tty->read_wait))
1366 wake_up_interruptible(&tty->read_wait);
1367 return;
1368 }
1369 }
1370
1371 parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
1372 if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
1373 /* beep if no space */
1374 if (L_ECHO(tty))
1375 process_output('\a', tty);
1376 return;
1377 }
1378 if (L_ECHO(tty)) {
1379 finish_erasing(ldata);
1380 if (c == '\n')
1381 echo_char_raw('\n', ldata);
1382 else {
1383 /* Record the column of first canon char. */
1384 if (ldata->canon_head == ldata->read_head)
1385 echo_set_canon_col(ldata);
1386 echo_char(c, tty);
1387 }
1388 process_echoes(tty);
1389 }
1390
1391 if (parmrk)
1392 put_tty_queue(c, ldata);
1393
1394 put_tty_queue(c, ldata);
1395}
1396
1397
1398/**
1399 * n_tty_write_wakeup - asynchronous I/O notifier
1400 * @tty: tty device
1401 *
1402 * Required for the ptys, serial driver etc. since processes
1403 * that attach themselves to the master and rely on ASYNC
1404 * IO must be woken up
1405 */
1406
1407static void n_tty_write_wakeup(struct tty_struct *tty)
1408{
1409 if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
1410 kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
1411}
1412
1413/**
1414 * n_tty_receive_buf - data receive
1415 * @tty: terminal device
1416 * @cp: buffer
1417 * @fp: flag buffer
1418 * @count: characters
1419 *
1420 * Called by the terminal driver when a block of characters has
1421 * been received. This function must be called from soft contexts
1422 * not from interrupt context. The driver is responsible for making
1423 * calls one at a time and in order (or using flush_to_ldisc)
1424 */
1425
1426static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
1427 char *fp, int count)
1428{
1429 struct n_tty_data *ldata = tty->disc_data;
1430 const unsigned char *p;
1431 char *f, flags = TTY_NORMAL;
1432 int i;
1433 char buf[64];
1434 unsigned long cpuflags;
1435
1436 if (ldata->real_raw) {
1437 raw_spin_lock_irqsave(&ldata->read_lock, cpuflags);
1438 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
1439 N_TTY_BUF_SIZE - ldata->read_head);
1440 i = min(count, i);
1441 memcpy(ldata->read_buf + ldata->read_head, cp, i);
1442 ldata->read_head = (ldata->read_head + i) & (N_TTY_BUF_SIZE-1);
1443 ldata->read_cnt += i;
1444 cp += i;
1445 count -= i;
1446
1447 i = min(N_TTY_BUF_SIZE - read_cnt(ldata),
1448 N_TTY_BUF_SIZE - ldata->read_head);
1449 i = min(count, i);
1450 memcpy(ldata->read_buf + ldata->read_head, cp, i);
1451 ldata->read_head = (ldata->read_head + i) & (N_TTY_BUF_SIZE-1);
1452 ldata->read_cnt += i;
1453 raw_spin_unlock_irqrestore(&ldata->read_lock, cpuflags);
1454 } else {
1455 for (i = count, p = cp, f = fp; i; i--, p++) {
1456 if (f)
1457 flags = *f++;
1458 switch (flags) {
1459 case TTY_NORMAL:
1460 n_tty_receive_char(tty, *p);
1461 break;
1462 case TTY_BREAK:
1463 n_tty_receive_break(tty);
1464 break;
1465 case TTY_PARITY:
1466 case TTY_FRAME:
1467 n_tty_receive_parity_error(tty, *p);
1468 break;
1469 case TTY_OVERRUN:
1470 n_tty_receive_overrun(tty);
1471 break;
1472 default:
1473 printk(KERN_ERR "%s: unknown flag %d\n",
1474 tty_name(tty, buf), flags);
1475 break;
1476 }
1477 }
1478 if (tty->ops->flush_chars)
1479 tty->ops->flush_chars(tty);
1480 }
1481
1482 if ((!ldata->icanon && (read_cnt(ldata) >= ldata->minimum_to_wake)) ||
1483 L_EXTPROC(tty)) {
1484 kill_fasync(&tty->fasync, SIGIO, POLL_IN);
1485 if (waitqueue_active(&tty->read_wait))
1486 wake_up_interruptible(&tty->read_wait);
1487 }
1488
1489 /*
1490 * Check the remaining room for the input canonicalization
1491 * mode. We don't want to throttle the driver if we're in
1492 * canonical mode and don't have a newline yet!
1493 */
1494 while (1) {
1495 tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
1496 if (receive_room(tty) >= TTY_THRESHOLD_THROTTLE)
1497 break;
1498 if (!tty_throttle_safe(tty))
1499 break;
1500 }
1501 __tty_set_flow_change(tty, 0);
1502}
1503
1504static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1505 char *fp, int count)
1506{
1507 __receive_buf(tty, cp, fp, count);
1508}
1509
1510static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
1511 char *fp, int count)
1512{
1513 struct n_tty_data *ldata = tty->disc_data;
1514 int room;
1515
1516 tty->receive_room = room = receive_room(tty);
1517 if (!room)
1518 ldata->no_room = 1;
1519 count = min(count, room);
1520 if (count)
1521 __receive_buf(tty, cp, fp, count);
1522
1523 return count;
1524}
1525
1526int is_ignored(int sig)
1527{
1528 return (sigismember(&current->blocked, sig) ||
1529 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
1530}
1531
1532/**
1533 * n_tty_set_termios - termios data changed
1534 * @tty: terminal
1535 * @old: previous data
1536 *
1537 * Called by the tty layer when the user changes termios flags so
1538 * that the line discipline can plan ahead. This function cannot sleep
1539 * and is protected from re-entry by the tty layer. The user is
1540 * guaranteed that this function will not be re-entered or in progress
1541 * when the ldisc is closed.
1542 *
1543 * Locking: Caller holds tty->termios_mutex
1544 */
1545
1546static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
1547{
1548 struct n_tty_data *ldata = tty->disc_data;
1549 int canon_change = 1;
1550
1551 if (old)
1552 canon_change = (old->c_lflag ^ tty->termios.c_lflag) & ICANON;
1553 if (canon_change) {
1554 bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
1555 ldata->canon_head = ldata->read_tail;
1556 ldata->canon_data = 0;
1557 ldata->erasing = 0;
1558 }
1559
1560 if (canon_change && !L_ICANON(tty) && read_cnt(ldata))
1561 wake_up_interruptible(&tty->read_wait);
1562
1563 ldata->icanon = (L_ICANON(tty) != 0);
1564
1565 if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
1566 I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
1567 I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
1568 I_PARMRK(tty)) {
1569 bitmap_zero(ldata->process_char_map, 256);
1570
1571 if (I_IGNCR(tty) || I_ICRNL(tty))
1572 set_bit('\r', ldata->process_char_map);
1573 if (I_INLCR(tty))
1574 set_bit('\n', ldata->process_char_map);
1575
1576 if (L_ICANON(tty)) {
1577 set_bit(ERASE_CHAR(tty), ldata->process_char_map);
1578 set_bit(KILL_CHAR(tty), ldata->process_char_map);
1579 set_bit(EOF_CHAR(tty), ldata->process_char_map);
1580 set_bit('\n', ldata->process_char_map);
1581 set_bit(EOL_CHAR(tty), ldata->process_char_map);
1582 if (L_IEXTEN(tty)) {
1583 set_bit(WERASE_CHAR(tty),
1584 ldata->process_char_map);
1585 set_bit(LNEXT_CHAR(tty),
1586 ldata->process_char_map);
1587 set_bit(EOL2_CHAR(tty),
1588 ldata->process_char_map);
1589 if (L_ECHO(tty))
1590 set_bit(REPRINT_CHAR(tty),
1591 ldata->process_char_map);
1592 }
1593 }
1594 if (I_IXON(tty)) {
1595 set_bit(START_CHAR(tty), ldata->process_char_map);
1596 set_bit(STOP_CHAR(tty), ldata->process_char_map);
1597 }
1598 if (L_ISIG(tty)) {
1599 set_bit(INTR_CHAR(tty), ldata->process_char_map);
1600 set_bit(QUIT_CHAR(tty), ldata->process_char_map);
1601 set_bit(SUSP_CHAR(tty), ldata->process_char_map);
1602 }
1603 clear_bit(__DISABLED_CHAR, ldata->process_char_map);
1604 ldata->raw = 0;
1605 ldata->real_raw = 0;
1606 } else {
1607 ldata->raw = 1;
1608 if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
1609 (I_IGNPAR(tty) || !I_INPCK(tty)) &&
1610 (tty->driver->flags & TTY_DRIVER_REAL_RAW))
1611 ldata->real_raw = 1;
1612 else
1613 ldata->real_raw = 0;
1614 }
1615 n_tty_set_room(tty);
1616 /*
1617 * Fix tty hang when I_IXON(tty) is cleared, but the tty
1618 * been stopped by STOP_CHAR(tty) before it.
1619 */
1620 if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
1621 start_tty(tty);
1622 }
1623
1624 /* The termios change make the tty ready for I/O */
1625 wake_up_interruptible(&tty->write_wait);
1626 wake_up_interruptible(&tty->read_wait);
1627}
1628
1629/**
1630 * n_tty_close - close the ldisc for this tty
1631 * @tty: device
1632 *
1633 * Called from the terminal layer when this line discipline is
1634 * being shut down, either because of a close or becsuse of a
1635 * discipline change. The function will not be called while other
1636 * ldisc methods are in progress.
1637 */
1638
1639static void n_tty_close(struct tty_struct *tty)
1640{
1641 struct n_tty_data *ldata = tty->disc_data;
1642
1643 if (tty->link)
1644 n_tty_packet_mode_flush(tty);
1645
1646 kfree(ldata->read_buf);
1647 kfree(ldata->echo_buf);
1648 kfree(ldata);
1649 tty->disc_data = NULL;
1650}
1651
1652/**
1653 * n_tty_open - open an ldisc
1654 * @tty: terminal to open
1655 *
1656 * Called when this line discipline is being attached to the
1657 * terminal device. Can sleep. Called serialized so that no
1658 * other events will occur in parallel. No further open will occur
1659 * until a close.
1660 */
1661
1662static int n_tty_open(struct tty_struct *tty)
1663{
1664 struct n_tty_data *ldata;
1665
1666 ldata = kzalloc(sizeof(*ldata), GFP_KERNEL);
1667 if (!ldata)
1668 goto err;
1669
1670 ldata->overrun_time = jiffies;
1671 mutex_init(&ldata->atomic_read_lock);
1672 mutex_init(&ldata->output_lock);
1673 mutex_init(&ldata->echo_lock);
1674 raw_spin_lock_init(&ldata->read_lock);
1675
1676 /* These are ugly. Currently a malloc failure here can panic */
1677 ldata->read_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1678 ldata->echo_buf = kzalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
1679 if (!ldata->read_buf || !ldata->echo_buf)
1680 goto err_free_bufs;
1681
1682 tty->disc_data = ldata;
1683 reset_buffer_flags(tty->disc_data);
1684 ldata->column = 0;
1685 ldata->minimum_to_wake = 1;
1686 tty->closing = 0;
1687 /* indicate buffer work may resume */
1688 clear_bit(TTY_LDISC_HALTED, &tty->flags);
1689 n_tty_set_termios(tty, NULL);
1690 tty_unthrottle(tty);
1691
1692 return 0;
1693err_free_bufs:
1694 kfree(ldata->read_buf);
1695 kfree(ldata->echo_buf);
1696 kfree(ldata);
1697err:
1698 return -ENOMEM;
1699}
1700
1701static inline int input_available_p(struct tty_struct *tty, int amt)
1702{
1703 struct n_tty_data *ldata = tty->disc_data;
1704
1705 tty_flush_to_ldisc(tty);
1706 if (ldata->icanon && !L_EXTPROC(tty)) {
1707 if (ldata->canon_data)
1708 return 1;
1709 } else if (read_cnt(ldata) >= (amt ? amt : 1))
1710 return 1;
1711
1712 return 0;
1713}
1714
1715/**
1716 * copy_from_read_buf - copy read data directly
1717 * @tty: terminal device
1718 * @b: user data
1719 * @nr: size of data
1720 *
1721 * Helper function to speed up n_tty_read. It is only called when
1722 * ICANON is off; it copies characters straight from the tty queue to
1723 * user space directly. It can be profitably called twice; once to
1724 * drain the space from the tail pointer to the (physical) end of the
1725 * buffer, and once to drain the space from the (physical) beginning of
1726 * the buffer to head pointer.
1727 *
1728 * Called under the ldata->atomic_read_lock sem
1729 *
1730 */
1731
1732static int copy_from_read_buf(struct tty_struct *tty,
1733 unsigned char __user **b,
1734 size_t *nr)
1735
1736{
1737 struct n_tty_data *ldata = tty->disc_data;
1738 int retval;
1739 size_t n;
1740 unsigned long flags;
1741 bool is_eof;
1742
1743 retval = 0;
1744 raw_spin_lock_irqsave(&ldata->read_lock, flags);
1745 n = min(read_cnt(ldata), N_TTY_BUF_SIZE - ldata->read_tail);
1746 n = min(*nr, n);
1747 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1748 if (n) {
1749 retval = copy_to_user(*b, &ldata->read_buf[ldata->read_tail], n);
1750 n -= retval;
1751 is_eof = n == 1 &&
1752 ldata->read_buf[ldata->read_tail] == EOF_CHAR(tty);
1753 tty_audit_add_data(tty, &ldata->read_buf[ldata->read_tail], n,
1754 ldata->icanon);
1755 raw_spin_lock_irqsave(&ldata->read_lock, flags);
1756 ldata->read_tail = (ldata->read_tail + n) & (N_TTY_BUF_SIZE-1);
1757 ldata->read_cnt -= n;
1758 /* Turn single EOF into zero-length read */
1759 if (L_EXTPROC(tty) && ldata->icanon && is_eof && !read_cnt(ldata))
1760 n = 0;
1761 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1762 *b += n;
1763 *nr -= n;
1764 }
1765 return retval;
1766}
1767
1768/**
1769 * canon_copy_from_read_buf - copy read data in canonical mode
1770 * @tty: terminal device
1771 * @b: user data
1772 * @nr: size of data
1773 *
1774 * Helper function for n_tty_read. It is only called when ICANON is on;
1775 * it copies one line of input up to and including the line-delimiting
1776 * character into the user-space buffer.
1777 *
1778 * Called under the atomic_read_lock mutex
1779 */
1780
1781static int canon_copy_from_read_buf(struct tty_struct *tty,
1782 unsigned char __user **b,
1783 size_t *nr)
1784{
1785 struct n_tty_data *ldata = tty->disc_data;
1786 unsigned long flags;
1787 size_t n, size, more, c;
1788 unsigned long eol;
1789 int ret, tail, found = 0;
1790
1791 /* N.B. avoid overrun if nr == 0 */
1792
1793 raw_spin_lock_irqsave(&ldata->read_lock, flags);
1794
1795 n = min(*nr, read_cnt(ldata));
1796 if (!n) {
1797 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1798 return 0;
1799 }
1800
1801 tail = ldata->read_tail;
1802 size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
1803
1804 n_tty_trace("%s: nr:%zu tail:%d n:%zu size:%zu\n",
1805 __func__, *nr, tail, n, size);
1806
1807 eol = find_next_bit(ldata->read_flags, size, tail);
1808 more = n - (size - tail);
1809 if (eol == N_TTY_BUF_SIZE && more) {
1810 /* scan wrapped without finding set bit */
1811 eol = find_next_bit(ldata->read_flags, more, 0);
1812 if (eol != more)
1813 found = 1;
1814 } else if (eol != size)
1815 found = 1;
1816
1817 size = N_TTY_BUF_SIZE - tail;
1818 n = (found + eol + size) & (N_TTY_BUF_SIZE - 1);
1819 c = n;
1820
1821 if (found && ldata->read_buf[eol] == __DISABLED_CHAR)
1822 n--;
1823
1824 n_tty_trace("%s: eol:%lu found:%d n:%zu c:%zu size:%zu more:%zu\n",
1825 __func__, eol, found, n, c, size, more);
1826
1827 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1828
1829 if (n > size) {
1830 ret = copy_to_user(*b, &ldata->read_buf[tail], size);
1831 if (ret)
1832 return -EFAULT;
1833 ret = copy_to_user(*b + size, ldata->read_buf, n - size);
1834 } else
1835 ret = copy_to_user(*b, &ldata->read_buf[tail], n);
1836
1837 if (ret)
1838 return -EFAULT;
1839 *b += n;
1840 *nr -= n;
1841
1842 raw_spin_lock_irqsave(&ldata->read_lock, flags);
1843 ldata->read_tail = (ldata->read_tail + c) & (N_TTY_BUF_SIZE - 1);
1844 ldata->read_cnt -= c;
1845 if (found) {
1846 __clear_bit(eol, ldata->read_flags);
1847 /* this test should be redundant:
1848 * we shouldn't be reading data if
1849 * canon_data is 0
1850 */
1851 if (--ldata->canon_data < 0)
1852 ldata->canon_data = 0;
1853 }
1854 raw_spin_unlock_irqrestore(&ldata->read_lock, flags);
1855
1856 if (found)
1857 tty_audit_push(tty);
1858 return 0;
1859}
1860
1861extern ssize_t redirected_tty_write(struct file *, const char __user *,
1862 size_t, loff_t *);
1863
1864/**
1865 * job_control - check job control
1866 * @tty: tty
1867 * @file: file handle
1868 *
1869 * Perform job control management checks on this file/tty descriptor
1870 * and if appropriate send any needed signals and return a negative
1871 * error code if action should be taken.
1872 *
1873 * Locking: redirected write test is safe
1874 * current->signal->tty check is safe
1875 * ctrl_lock to safely reference tty->pgrp
1876 */
1877
1878static int job_control(struct tty_struct *tty, struct file *file)
1879{
1880 /* Job control check -- must be done at start and after
1881 every sleep (POSIX.1 7.1.1.4). */
1882 /* NOTE: not yet done after every sleep pending a thorough
1883 check of the logic of this change. -- jlc */
1884 /* don't stop on /dev/console */
1885 if (file->f_op->write == redirected_tty_write ||
1886 current->signal->tty != tty)
1887 return 0;
1888
1889 spin_lock_irq(&tty->ctrl_lock);
1890 if (!tty->pgrp)
1891 printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
1892 else if (task_pgrp(current) != tty->pgrp) {
1893 spin_unlock_irq(&tty->ctrl_lock);
1894 if (is_ignored(SIGTTIN) || is_current_pgrp_orphaned())
1895 return -EIO;
1896 kill_pgrp(task_pgrp(current), SIGTTIN, 1);
1897 set_thread_flag(TIF_SIGPENDING);
1898 return -ERESTARTSYS;
1899 }
1900 spin_unlock_irq(&tty->ctrl_lock);
1901 return 0;
1902}
1903
1904
1905/**
1906 * n_tty_read - read function for tty
1907 * @tty: tty device
1908 * @file: file object
1909 * @buf: userspace buffer pointer
1910 * @nr: size of I/O
1911 *
1912 * Perform reads for the line discipline. We are guaranteed that the
1913 * line discipline will not be closed under us but we may get multiple
1914 * parallel readers and must handle this ourselves. We may also get
1915 * a hangup. Always called in user context, may sleep.
1916 *
1917 * This code must be sure never to sleep through a hangup.
1918 */
1919
1920static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
1921 unsigned char __user *buf, size_t nr)
1922{
1923 struct n_tty_data *ldata = tty->disc_data;
1924 unsigned char __user *b = buf;
1925 DECLARE_WAITQUEUE(wait, current);
1926 int c;
1927 int minimum, time;
1928 ssize_t retval = 0;
1929 ssize_t size;
1930 long timeout;
1931 unsigned long flags;
1932 int packet;
1933
1934do_it_again:
1935 c = job_control(tty, file);
1936 if (c < 0)
1937 return c;
1938
1939 minimum = time = 0;
1940 timeout = MAX_SCHEDULE_TIMEOUT;
1941 if (!ldata->icanon) {
1942 minimum = MIN_CHAR(tty);
1943 if (minimum) {
1944 time = (HZ / 10) * TIME_CHAR(tty);
1945 if (time)
1946 ldata->minimum_to_wake = 1;
1947 else if (!waitqueue_active(&tty->read_wait) ||
1948 (ldata->minimum_to_wake > minimum))
1949 ldata->minimum_to_wake = minimum;
1950 } else {
1951 timeout = (HZ / 10) * TIME_CHAR(tty);
1952 ldata->minimum_to_wake = minimum = 1;
1953 }
1954 }
1955
1956 /*
1957 * Internal serialization of reads.
1958 */
1959 if (file->f_flags & O_NONBLOCK) {
1960 if (!mutex_trylock(&ldata->atomic_read_lock))
1961 return -EAGAIN;
1962 } else {
1963 if (mutex_lock_interruptible(&ldata->atomic_read_lock))
1964 return -ERESTARTSYS;
1965 }
1966 packet = tty->packet;
1967
1968 add_wait_queue(&tty->read_wait, &wait);
1969 while (nr) {
1970 /* First test for status change. */
1971 if (packet && tty->link->ctrl_status) {
1972 unsigned char cs;
1973 if (b != buf)
1974 break;
1975 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
1976 cs = tty->link->ctrl_status;
1977 tty->link->ctrl_status = 0;
1978 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
1979 if (tty_put_user(tty, cs, b++)) {
1980 retval = -EFAULT;
1981 b--;
1982 break;
1983 }
1984 nr--;
1985 break;
1986 }
1987 /* This statement must be first before checking for input
1988 so that any interrupt will set the state back to
1989 TASK_RUNNING. */
1990 set_current_state(TASK_INTERRUPTIBLE);
1991
1992 if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
1993 ((minimum - (b - buf)) >= 1))
1994 ldata->minimum_to_wake = (minimum - (b - buf));
1995
1996 if (!input_available_p(tty, 0)) {
1997 if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
1998 retval = -EIO;
1999 break;
2000 }
2001 if (tty_hung_up_p(file))
2002 break;
2003 if (!timeout)
2004 break;
2005 if (file->f_flags & O_NONBLOCK) {
2006 retval = -EAGAIN;
2007 break;
2008 }
2009 if (signal_pending(current)) {
2010 retval = -ERESTARTSYS;
2011 break;
2012 }
2013 n_tty_set_room(tty);
2014 timeout = schedule_timeout(timeout);
2015 continue;
2016 }
2017 __set_current_state(TASK_RUNNING);
2018
2019 /* Deal with packet mode. */
2020 if (packet && b == buf) {
2021 if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
2022 retval = -EFAULT;
2023 b--;
2024 break;
2025 }
2026 nr--;
2027 }
2028
2029 if (ldata->icanon && !L_EXTPROC(tty)) {
2030 retval = canon_copy_from_read_buf(tty, &b, &nr);
2031 if (retval)
2032 break;
2033 } else {
2034 int uncopied;
2035 /* The copy function takes the read lock and handles
2036 locking internally for this case */
2037 uncopied = copy_from_read_buf(tty, &b, &nr);
2038 uncopied += copy_from_read_buf(tty, &b, &nr);
2039 if (uncopied) {
2040 retval = -EFAULT;
2041 break;
2042 }
2043 }
2044
2045 /* If there is enough space in the read buffer now, let the
2046 * low-level driver know. We use chars_in_buffer() to
2047 * check the buffer, as it now knows about canonical mode.
2048 * Otherwise, if the driver is throttled and the line is
2049 * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
2050 * we won't get any more characters.
2051 */
2052 while (1) {
2053 tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
2054 if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
2055 break;
2056 if (!tty->count)
2057 break;
2058 n_tty_set_room(tty);
2059 if (!tty_unthrottle_safe(tty))
2060 break;
2061 }
2062 __tty_set_flow_change(tty, 0);
2063
2064 if (b - buf >= minimum)
2065 break;
2066 if (time)
2067 timeout = time;
2068 }
2069 mutex_unlock(&ldata->atomic_read_lock);
2070 remove_wait_queue(&tty->read_wait, &wait);
2071
2072 if (!waitqueue_active(&tty->read_wait))
2073 ldata->minimum_to_wake = minimum;
2074
2075 __set_current_state(TASK_RUNNING);
2076 size = b - buf;
2077 if (size) {
2078 retval = size;
2079 if (nr)
2080 clear_bit(TTY_PUSH, &tty->flags);
2081 } else if (test_and_clear_bit(TTY_PUSH, &tty->flags))
2082 goto do_it_again;
2083
2084 n_tty_set_room(tty);
2085 return retval;
2086}
2087
2088/**
2089 * n_tty_write - write function for tty
2090 * @tty: tty device
2091 * @file: file object
2092 * @buf: userspace buffer pointer
2093 * @nr: size of I/O
2094 *
2095 * Write function of the terminal device. This is serialized with
2096 * respect to other write callers but not to termios changes, reads
2097 * and other such events. Since the receive code will echo characters,
2098 * thus calling driver write methods, the output_lock is used in
2099 * the output processing functions called here as well as in the
2100 * echo processing function to protect the column state and space
2101 * left in the buffer.
2102 *
2103 * This code must be sure never to sleep through a hangup.
2104 *
2105 * Locking: output_lock to protect column state and space left
2106 * (note that the process_output*() functions take this
2107 * lock themselves)
2108 */
2109
2110static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
2111 const unsigned char *buf, size_t nr)
2112{
2113 const unsigned char *b = buf;
2114 DECLARE_WAITQUEUE(wait, current);
2115 int c;
2116 ssize_t retval = 0;
2117
2118 /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
2119 if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
2120 retval = tty_check_change(tty);
2121 if (retval)
2122 return retval;
2123 }
2124
2125 /* Write out any echoed characters that are still pending */
2126 process_echoes(tty);
2127
2128 add_wait_queue(&tty->write_wait, &wait);
2129 while (1) {
2130 set_current_state(TASK_INTERRUPTIBLE);
2131 if (signal_pending(current)) {
2132 retval = -ERESTARTSYS;
2133 break;
2134 }
2135 if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
2136 retval = -EIO;
2137 break;
2138 }
2139 if (O_OPOST(tty)) {
2140 while (nr > 0) {
2141 ssize_t num = process_output_block(tty, b, nr);
2142 if (num < 0) {
2143 if (num == -EAGAIN)
2144 break;
2145 retval = num;
2146 goto break_out;
2147 }
2148 b += num;
2149 nr -= num;
2150 if (nr == 0)
2151 break;
2152 c = *b;
2153 if (process_output(c, tty) < 0)
2154 break;
2155 b++; nr--;
2156 }
2157 if (tty->ops->flush_chars)
2158 tty->ops->flush_chars(tty);
2159 } else {
2160 while (nr > 0) {
2161 c = tty->ops->write(tty, b, nr);
2162 if (c < 0) {
2163 retval = c;
2164 goto break_out;
2165 }
2166 if (!c)
2167 break;
2168 b += c;
2169 nr -= c;
2170 }
2171 }
2172 if (!nr)
2173 break;
2174 if (file->f_flags & O_NONBLOCK) {
2175 retval = -EAGAIN;
2176 break;
2177 }
2178 schedule();
2179 }
2180break_out:
2181 __set_current_state(TASK_RUNNING);
2182 remove_wait_queue(&tty->write_wait, &wait);
2183 if (b - buf != nr && tty->fasync)
2184 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
2185 return (b - buf) ? b - buf : retval;
2186}
2187
2188/**
2189 * n_tty_poll - poll method for N_TTY
2190 * @tty: terminal device
2191 * @file: file accessing it
2192 * @wait: poll table
2193 *
2194 * Called when the line discipline is asked to poll() for data or
2195 * for special events. This code is not serialized with respect to
2196 * other events save open/close.
2197 *
2198 * This code must be sure never to sleep through a hangup.
2199 * Called without the kernel lock held - fine
2200 */
2201
2202static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
2203 poll_table *wait)
2204{
2205 struct n_tty_data *ldata = tty->disc_data;
2206 unsigned int mask = 0;
2207
2208 poll_wait(file, &tty->read_wait, wait);
2209 poll_wait(file, &tty->write_wait, wait);
2210 if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
2211 mask |= POLLIN | POLLRDNORM;
2212 if (tty->packet && tty->link->ctrl_status)
2213 mask |= POLLPRI | POLLIN | POLLRDNORM;
2214 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
2215 mask |= POLLHUP;
2216 if (tty_hung_up_p(file))
2217 mask |= POLLHUP;
2218 if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
2219 if (MIN_CHAR(tty) && !TIME_CHAR(tty))
2220 ldata->minimum_to_wake = MIN_CHAR(tty);
2221 else
2222 ldata->minimum_to_wake = 1;
2223 }
2224 if (tty->ops->write && !tty_is_writelocked(tty) &&
2225 tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
2226 tty_write_room(tty) > 0)
2227 mask |= POLLOUT | POLLWRNORM;
2228 return mask;
2229}
2230
2231static unsigned long inq_canon(struct n_tty_data *ldata)
2232{
2233 int nr, head, tail;
2234
2235 if (!ldata->canon_data)
2236 return 0;
2237 head = ldata->canon_head;
2238 tail = ldata->read_tail;
2239 nr = (head - tail) & (N_TTY_BUF_SIZE-1);
2240 /* Skip EOF-chars.. */
2241 while (head != tail) {
2242 if (test_bit(tail, ldata->read_flags) &&
2243 ldata->read_buf[tail] == __DISABLED_CHAR)
2244 nr--;
2245 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
2246 }
2247 return nr;
2248}
2249
2250static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
2251 unsigned int cmd, unsigned long arg)
2252{
2253 struct n_tty_data *ldata = tty->disc_data;
2254 int retval;
2255
2256 switch (cmd) {
2257 case TIOCOUTQ:
2258 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
2259 case TIOCINQ:
2260 /* FIXME: Locking */
2261 retval = read_cnt(ldata);
2262 if (L_ICANON(tty))
2263 retval = inq_canon(ldata);
2264 return put_user(retval, (unsigned int __user *) arg);
2265 default:
2266 return n_tty_ioctl_helper(tty, file, cmd, arg);
2267 }
2268}
2269
2270static void n_tty_fasync(struct tty_struct *tty, int on)
2271{
2272 struct n_tty_data *ldata = tty->disc_data;
2273
2274 if (!waitqueue_active(&tty->read_wait)) {
2275 if (on)
2276 ldata->minimum_to_wake = 1;
2277 else if (!tty->fasync)
2278 ldata->minimum_to_wake = N_TTY_BUF_SIZE;
2279 }
2280}
2281
2282struct tty_ldisc_ops tty_ldisc_N_TTY = {
2283 .magic = TTY_LDISC_MAGIC,
2284 .name = "n_tty",
2285 .open = n_tty_open,
2286 .close = n_tty_close,
2287 .flush_buffer = n_tty_flush_buffer,
2288 .chars_in_buffer = n_tty_chars_in_buffer,
2289 .read = n_tty_read,
2290 .write = n_tty_write,
2291 .ioctl = n_tty_ioctl,
2292 .set_termios = n_tty_set_termios,
2293 .poll = n_tty_poll,
2294 .receive_buf = n_tty_receive_buf,
2295 .write_wakeup = n_tty_write_wakeup,
2296 .fasync = n_tty_fasync,
2297 .receive_buf2 = n_tty_receive_buf2,
2298};
2299
2300/**
2301 * n_tty_inherit_ops - inherit N_TTY methods
2302 * @ops: struct tty_ldisc_ops where to save N_TTY methods
2303 *
2304 * Enables a 'subclass' line discipline to 'inherit' N_TTY
2305 * methods.
2306 */
2307
2308void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
2309{
2310 *ops = tty_ldisc_N_TTY;
2311 ops->owner = NULL;
2312 ops->refcount = ops->flags = 0;
2313}
2314EXPORT_SYMBOL_GPL(n_tty_inherit_ops);
This page took 0.054274 seconds and 5 git commands to generate.