2 * linux/drivers/char/tty_ioctl.c
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
6 * Modified by Fred N. van Kempen, 01/29/93, to add line disciplines
7 * which can be dynamically activated and de-activated by the line
8 * discipline handling modules (like SLIP).
11 #include <linux/types.h>
12 #include <linux/termios.h>
13 #include <linux/errno.h>
14 #include <linux/sched.h>
15 #include <linux/kernel.h>
16 #include <linux/major.h>
17 #include <linux/tty.h>
18 #include <linux/fcntl.h>
19 #include <linux/string.h>
21 #include <linux/module.h>
22 #include <linux/bitops.h>
23 #include <linux/mutex.h>
24 #include <linux/smp_lock.h>
27 #include <asm/uaccess.h>
28 #include <asm/system.h>
30 #undef TTY_DEBUG_WAIT_UNTIL_SENT
35 * Internal flag options for termios setting behavior
37 #define TERMIOS_FLUSH 1
38 #define TERMIOS_WAIT 2
39 #define TERMIOS_TERMIO 4
44 * tty_chars_in_buffer - characters pending
47 * Return the number of bytes of data in the device private
48 * output queue. If no private method is supplied there is assumed
49 * to be no queue on the device.
52 int tty_chars_in_buffer(struct tty_struct
*tty
)
54 if (tty
->ops
->chars_in_buffer
)
55 return tty
->ops
->chars_in_buffer(tty
);
59 EXPORT_SYMBOL(tty_chars_in_buffer
);
62 * tty_write_room - write queue space
65 * Return the number of bytes that can be queued to this device
66 * at the present time. The result should be treated as a guarantee
67 * and the driver cannot offer a value it later shrinks by more than
68 * the number of bytes written. If no method is provided 2K is always
69 * returned and data may be lost as there will be no flow control.
72 int tty_write_room(struct tty_struct
*tty
)
74 if (tty
->ops
->write_room
)
75 return tty
->ops
->write_room(tty
);
78 EXPORT_SYMBOL(tty_write_room
);
81 * tty_driver_flush_buffer - discard internal buffer
84 * Discard the internal output buffer for this device. If no method
85 * is provided then either the buffer cannot be hardware flushed or
86 * there is no buffer driver side.
88 void tty_driver_flush_buffer(struct tty_struct
*tty
)
90 if (tty
->ops
->flush_buffer
)
91 tty
->ops
->flush_buffer(tty
);
93 EXPORT_SYMBOL(tty_driver_flush_buffer
);
96 * tty_throttle - flow control
99 * Indicate that a tty should stop transmitting data down the stack.
100 * Takes the termios mutex to protect against parallel throttle/unthrottle
101 * and also to ensure the driver can consistently reference its own
102 * termios data at this point when implementing software flow control.
105 void tty_throttle(struct tty_struct
*tty
)
107 mutex_lock(&tty
->termios_mutex
);
108 /* check TTY_THROTTLED first so it indicates our state */
109 if (!test_and_set_bit(TTY_THROTTLED
, &tty
->flags
) &&
111 tty
->ops
->throttle(tty
);
112 mutex_unlock(&tty
->termios_mutex
);
114 EXPORT_SYMBOL(tty_throttle
);
117 * tty_unthrottle - flow control
120 * Indicate that a tty may continue transmitting data down the stack.
121 * Takes the termios mutex to protect against parallel throttle/unthrottle
122 * and also to ensure the driver can consistently reference its own
123 * termios data at this point when implementing software flow control.
125 * Drivers should however remember that the stack can issue a throttle,
126 * then change flow control method, then unthrottle.
129 void tty_unthrottle(struct tty_struct
*tty
)
131 mutex_lock(&tty
->termios_mutex
);
132 if (test_and_clear_bit(TTY_THROTTLED
, &tty
->flags
) &&
133 tty
->ops
->unthrottle
)
134 tty
->ops
->unthrottle(tty
);
135 mutex_unlock(&tty
->termios_mutex
);
137 EXPORT_SYMBOL(tty_unthrottle
);
140 * tty_wait_until_sent - wait for I/O to finish
141 * @tty: tty we are waiting for
142 * @timeout: how long we will wait
144 * Wait for characters pending in a tty driver to hit the wire, or
145 * for a timeout to occur (eg due to flow control)
150 void tty_wait_until_sent(struct tty_struct
*tty
, long timeout
)
152 #ifdef TTY_DEBUG_WAIT_UNTIL_SENT
155 printk(KERN_DEBUG
"%s wait until sent...\n", tty_name(tty
, buf
));
158 timeout
= MAX_SCHEDULE_TIMEOUT
;
159 if (wait_event_interruptible_timeout(tty
->write_wait
,
160 !tty_chars_in_buffer(tty
), timeout
) >= 0) {
161 if (tty
->ops
->wait_until_sent
)
162 tty
->ops
->wait_until_sent(tty
, timeout
);
165 EXPORT_SYMBOL(tty_wait_until_sent
);
169 * Termios Helper Methods
172 static void unset_locked_termios(struct ktermios
*termios
,
173 struct ktermios
*old
,
174 struct ktermios
*locked
)
178 #define NOSET_MASK(x, y, z) (x = ((x) & ~(z)) | ((y) & (z)))
181 printk(KERN_WARNING
"Warning?!? termios_locked is NULL.\n");
185 NOSET_MASK(termios
->c_iflag
, old
->c_iflag
, locked
->c_iflag
);
186 NOSET_MASK(termios
->c_oflag
, old
->c_oflag
, locked
->c_oflag
);
187 NOSET_MASK(termios
->c_cflag
, old
->c_cflag
, locked
->c_cflag
);
188 NOSET_MASK(termios
->c_lflag
, old
->c_lflag
, locked
->c_lflag
);
189 termios
->c_line
= locked
->c_line
? old
->c_line
: termios
->c_line
;
190 for (i
= 0; i
< NCCS
; i
++)
191 termios
->c_cc
[i
] = locked
->c_cc
[i
] ?
192 old
->c_cc
[i
] : termios
->c_cc
[i
];
193 /* FIXME: What should we do for i/ospeed */
197 * Routine which returns the baud rate of the tty
199 * Note that the baud_table needs to be kept in sync with the
200 * include/asm/termbits.h file.
202 static const speed_t baud_table
[] = {
203 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
204 9600, 19200, 38400, 57600, 115200, 230400, 460800,
206 76800, 153600, 307200, 614400, 921600
208 500000, 576000, 921600, 1000000, 1152000, 1500000, 2000000,
209 2500000, 3000000, 3500000, 4000000
214 static const tcflag_t baud_bits
[] = {
215 B0
, B50
, B75
, B110
, B134
, B150
, B200
, B300
, B600
,
216 B1200
, B1800
, B2400
, B4800
, B9600
, B19200
, B38400
,
217 B57600
, B115200
, B230400
, B460800
, B500000
, B576000
,
218 B921600
, B1000000
, B1152000
, B1500000
, B2000000
, B2500000
,
219 B3000000
, B3500000
, B4000000
222 static const tcflag_t baud_bits
[] = {
223 B0
, B50
, B75
, B110
, B134
, B150
, B200
, B300
, B600
,
224 B1200
, B1800
, B2400
, B4800
, B9600
, B19200
, B38400
,
225 B57600
, B115200
, B230400
, B460800
, B76800
, B153600
,
226 B307200
, B614400
, B921600
230 static int n_baud_table
= ARRAY_SIZE(baud_table
);
233 * tty_termios_baud_rate
234 * @termios: termios structure
236 * Convert termios baud rate data into a speed. This should be called
237 * with the termios lock held if this termios is a terminal termios
238 * structure. May change the termios data. Device drivers can call this
239 * function but should use ->c_[io]speed directly as they are updated.
244 speed_t
tty_termios_baud_rate(struct ktermios
*termios
)
248 cbaud
= termios
->c_cflag
& CBAUD
;
251 /* Magic token for arbitary speed via c_ispeed/c_ospeed */
253 return termios
->c_ospeed
;
255 if (cbaud
& CBAUDEX
) {
258 if (cbaud
< 1 || cbaud
+ 15 > n_baud_table
)
259 termios
->c_cflag
&= ~CBAUDEX
;
263 return baud_table
[cbaud
];
265 EXPORT_SYMBOL(tty_termios_baud_rate
);
268 * tty_termios_input_baud_rate
269 * @termios: termios structure
271 * Convert termios baud rate data into a speed. This should be called
272 * with the termios lock held if this termios is a terminal termios
273 * structure. May change the termios data. Device drivers can call this
274 * function but should use ->c_[io]speed directly as they are updated.
279 speed_t
tty_termios_input_baud_rate(struct ktermios
*termios
)
282 unsigned int cbaud
= (termios
->c_cflag
>> IBSHIFT
) & CBAUD
;
285 return tty_termios_baud_rate(termios
);
287 /* Magic token for arbitary speed via c_ispeed*/
289 return termios
->c_ispeed
;
291 if (cbaud
& CBAUDEX
) {
294 if (cbaud
< 1 || cbaud
+ 15 > n_baud_table
)
295 termios
->c_cflag
&= ~(CBAUDEX
<< IBSHIFT
);
299 return baud_table
[cbaud
];
301 return tty_termios_baud_rate(termios
);
304 EXPORT_SYMBOL(tty_termios_input_baud_rate
);
307 * tty_termios_encode_baud_rate
308 * @termios: ktermios structure holding user requested state
309 * @ispeed: input speed
310 * @ospeed: output speed
312 * Encode the speeds set into the passed termios structure. This is
313 * used as a library helper for drivers os that they can report back
314 * the actual speed selected when it differs from the speed requested
316 * For maximal back compatibility with legacy SYS5/POSIX *nix behaviour
317 * we need to carefully set the bits when the user does not get the
318 * desired speed. We allow small margins and preserve as much of possible
319 * of the input intent to keep compatiblity.
321 * Locking: Caller should hold termios lock. This is already held
322 * when calling this function from the driver termios handler.
324 * The ifdefs deal with platforms whose owners have yet to update them
325 * and will all go away once this is done.
328 void tty_termios_encode_baud_rate(struct ktermios
*termios
,
329 speed_t ibaud
, speed_t obaud
)
332 int ifound
= -1, ofound
= -1;
333 int iclose
= ibaud
/50, oclose
= obaud
/50;
336 if (obaud
== 0) /* CD dropped */
337 ibaud
= 0; /* Clear ibaud to be sure */
339 termios
->c_ispeed
= ibaud
;
340 termios
->c_ospeed
= obaud
;
343 /* If the user asked for a precise weird speed give a precise weird
344 answer. If they asked for a Bfoo speed they many have problems
345 digesting non-exact replies so fuzz a bit */
347 if ((termios
->c_cflag
& CBAUD
) == BOTHER
)
349 if (((termios
->c_cflag
>> IBSHIFT
) & CBAUD
) == BOTHER
)
351 if ((termios
->c_cflag
>> IBSHIFT
) & CBAUD
)
352 ibinput
= 1; /* An input speed was specified */
354 termios
->c_cflag
&= ~CBAUD
;
357 * Our goal is to find a close match to the standard baud rate
358 * returned. Walk the baud rate table and if we get a very close
359 * match then report back the speed as a POSIX Bxxxx value by
364 if (obaud
- oclose
<= baud_table
[i
] &&
365 obaud
+ oclose
>= baud_table
[i
]) {
366 termios
->c_cflag
|= baud_bits
[i
];
369 if (ibaud
- iclose
<= baud_table
[i
] &&
370 ibaud
+ iclose
>= baud_table
[i
]) {
371 /* For the case input == output don't set IBAUD bits
372 if the user didn't do so */
373 if (ofound
== i
&& !ibinput
)
378 termios
->c_cflag
|= (baud_bits
[i
] << IBSHIFT
);
382 } while (++i
< n_baud_table
);
385 * If we found no match then use BOTHER if provided or warn
386 * the user their platform maintainer needs to wake up if not.
390 termios
->c_cflag
|= BOTHER
;
391 /* Set exact input bits only if the input and output differ or the
393 if (ifound
== -1 && (ibaud
!= obaud
|| ibinput
))
394 termios
->c_cflag
|= (BOTHER
<< IBSHIFT
);
396 if (ifound
== -1 || ofound
== -1) {
399 printk(KERN_WARNING
"tty: Unable to return correct "
400 "speed data as your architecture needs updating.\n");
404 EXPORT_SYMBOL_GPL(tty_termios_encode_baud_rate
);
407 * tty_encode_baud_rate - set baud rate of the tty
408 * @ibaud: input baud rate
409 * @obad: output baud rate
411 * Update the current termios data for the tty with the new speed
412 * settings. The caller must hold the termios_mutex for the tty in
416 void tty_encode_baud_rate(struct tty_struct
*tty
, speed_t ibaud
, speed_t obaud
)
418 tty_termios_encode_baud_rate(tty
->termios
, ibaud
, obaud
);
420 EXPORT_SYMBOL_GPL(tty_encode_baud_rate
);
423 * tty_get_baud_rate - get tty bit rates
426 * Returns the baud rate as an integer for this terminal. The
427 * termios lock must be held by the caller and the terminal bit
428 * flags may be updated.
433 speed_t
tty_get_baud_rate(struct tty_struct
*tty
)
435 speed_t baud
= tty_termios_baud_rate(tty
->termios
);
437 if (baud
== 38400 && tty
->alt_speed
) {
439 printk(KERN_WARNING
"Use of setserial/setrocket to "
440 "set SPD_* flags is deprecated\n");
443 baud
= tty
->alt_speed
;
448 EXPORT_SYMBOL(tty_get_baud_rate
);
451 * tty_termios_copy_hw - copy hardware settings
455 * Propogate the hardware specific terminal setting bits from
456 * the old termios structure to the new one. This is used in cases
457 * where the hardware does not support reconfiguration or as a helper
458 * in some cases where only minimal reconfiguration is supported
461 void tty_termios_copy_hw(struct ktermios
*new, struct ktermios
*old
)
463 /* The bits a dumb device handles in software. Smart devices need
464 to always provide a set_termios method */
465 new->c_cflag
&= HUPCL
| CREAD
| CLOCAL
;
466 new->c_cflag
|= old
->c_cflag
& ~(HUPCL
| CREAD
| CLOCAL
);
467 new->c_ispeed
= old
->c_ispeed
;
468 new->c_ospeed
= old
->c_ospeed
;
470 EXPORT_SYMBOL(tty_termios_copy_hw
);
473 * tty_termios_hw_change - check for setting change
475 * @b: termios to compare
477 * Check if any of the bits that affect a dumb device have changed
478 * between the two termios structures, or a speed change is needed.
481 int tty_termios_hw_change(struct ktermios
*a
, struct ktermios
*b
)
483 if (a
->c_ispeed
!= b
->c_ispeed
|| a
->c_ospeed
!= b
->c_ospeed
)
485 if ((a
->c_cflag
^ b
->c_cflag
) & ~(HUPCL
| CREAD
| CLOCAL
))
489 EXPORT_SYMBOL(tty_termios_hw_change
);
492 * change_termios - update termios values
493 * @tty: tty to update
494 * @new_termios: desired new value
496 * Perform updates to the termios values set on this terminal. There
497 * is a bit of layering violation here with n_tty in terms of the
498 * internal knowledge of this function.
500 * Locking: termios_mutex
503 static void change_termios(struct tty_struct
*tty
, struct ktermios
*new_termios
)
505 struct ktermios old_termios
;
506 struct tty_ldisc
*ld
;
510 * Perform the actual termios internal changes under lock.
514 /* FIXME: we need to decide on some locking/ordering semantics
515 for the set_termios notification eventually */
516 mutex_lock(&tty
->termios_mutex
);
517 old_termios
= *tty
->termios
;
518 *tty
->termios
= *new_termios
;
519 unset_locked_termios(tty
->termios
, &old_termios
, tty
->termios_locked
);
521 /* See if packet mode change of state. */
522 if (tty
->link
&& tty
->link
->packet
) {
523 int old_flow
= ((old_termios
.c_iflag
& IXON
) &&
524 (old_termios
.c_cc
[VSTOP
] == '\023') &&
525 (old_termios
.c_cc
[VSTART
] == '\021'));
526 int new_flow
= (I_IXON(tty
) &&
527 STOP_CHAR(tty
) == '\023' &&
528 START_CHAR(tty
) == '\021');
529 if (old_flow
!= new_flow
) {
530 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
531 tty
->ctrl_status
&= ~(TIOCPKT_DOSTOP
| TIOCPKT_NOSTOP
);
533 tty
->ctrl_status
|= TIOCPKT_DOSTOP
;
535 tty
->ctrl_status
|= TIOCPKT_NOSTOP
;
536 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
537 wake_up_interruptible(&tty
->link
->read_wait
);
541 if (tty
->ops
->set_termios
)
542 (*tty
->ops
->set_termios
)(tty
, &old_termios
);
544 tty_termios_copy_hw(tty
->termios
, &old_termios
);
546 ld
= tty_ldisc_ref(tty
);
548 if (ld
->ops
->set_termios
)
549 (ld
->ops
->set_termios
)(tty
, &old_termios
);
552 mutex_unlock(&tty
->termios_mutex
);
556 * set_termios - set termios values for a tty
557 * @tty: terminal device
559 * @opt: option information
561 * Helper function to prepare termios data and run necessary other
562 * functions before using change_termios to do the actual changes.
565 * Called functions take ldisc and termios_mutex locks
568 static int set_termios(struct tty_struct
*tty
, void __user
*arg
, int opt
)
570 struct ktermios tmp_termios
;
571 struct tty_ldisc
*ld
;
572 int retval
= tty_check_change(tty
);
577 mutex_lock(&tty
->termios_mutex
);
578 memcpy(&tmp_termios
, tty
->termios
, sizeof(struct ktermios
));
579 mutex_unlock(&tty
->termios_mutex
);
581 if (opt
& TERMIOS_TERMIO
) {
582 if (user_termio_to_kernel_termios(&tmp_termios
,
583 (struct termio __user
*)arg
))
586 } else if (opt
& TERMIOS_OLD
) {
587 if (user_termios_to_kernel_termios_1(&tmp_termios
,
588 (struct termios __user
*)arg
))
591 if (user_termios_to_kernel_termios(&tmp_termios
,
592 (struct termios2 __user
*)arg
))
596 } else if (user_termios_to_kernel_termios(&tmp_termios
,
597 (struct termios __user
*)arg
))
601 /* If old style Bfoo values are used then load c_ispeed/c_ospeed
602 * with the real speed so its unconditionally usable */
603 tmp_termios
.c_ispeed
= tty_termios_input_baud_rate(&tmp_termios
);
604 tmp_termios
.c_ospeed
= tty_termios_baud_rate(&tmp_termios
);
606 ld
= tty_ldisc_ref(tty
);
609 if ((opt
& TERMIOS_FLUSH
) && ld
->ops
->flush_buffer
)
610 ld
->ops
->flush_buffer(tty
);
614 if (opt
& TERMIOS_WAIT
) {
615 tty_wait_until_sent(tty
, 0);
616 if (signal_pending(current
))
620 change_termios(tty
, &tmp_termios
);
622 /* FIXME: Arguably if tmp_termios == tty->termios AND the
623 actual requested termios was not tmp_termios then we may
624 want to return an error as no user requested change has
629 static void copy_termios(struct tty_struct
*tty
, struct ktermios
*kterm
)
631 mutex_lock(&tty
->termios_mutex
);
632 memcpy(kterm
, tty
->termios
, sizeof(struct ktermios
));
633 mutex_unlock(&tty
->termios_mutex
);
636 static void copy_termios_locked(struct tty_struct
*tty
, struct ktermios
*kterm
)
638 mutex_lock(&tty
->termios_mutex
);
639 memcpy(kterm
, tty
->termios_locked
, sizeof(struct ktermios
));
640 mutex_unlock(&tty
->termios_mutex
);
643 static int get_termio(struct tty_struct
*tty
, struct termio __user
*termio
)
645 struct ktermios kterm
;
646 copy_termios(tty
, &kterm
);
647 if (kernel_termios_to_user_termio(termio
, &kterm
))
656 * set_termiox - set termiox fields if possible
658 * @arg: termiox structure from user
659 * @opt: option flags for ioctl type
661 * Implement the device calling points for the SYS5 termiox ioctl
665 static int set_termiox(struct tty_struct
*tty
, void __user
*arg
, int opt
)
668 struct tty_ldisc
*ld
;
670 if (tty
->termiox
== NULL
)
672 if (copy_from_user(&tnew
, arg
, sizeof(struct termiox
)))
675 ld
= tty_ldisc_ref(tty
);
677 if ((opt
& TERMIOS_FLUSH
) && ld
->ops
->flush_buffer
)
678 ld
->ops
->flush_buffer(tty
);
681 if (opt
& TERMIOS_WAIT
) {
682 tty_wait_until_sent(tty
, 0);
683 if (signal_pending(current
))
687 mutex_lock(&tty
->termios_mutex
);
688 if (tty
->ops
->set_termiox
)
689 tty
->ops
->set_termiox(tty
, &tnew
);
690 mutex_unlock(&tty
->termios_mutex
);
699 * These are deprecated, but there is limited support..
701 * The "sg_flags" translation is a joke..
703 static int get_sgflags(struct tty_struct
*tty
)
707 if (!(tty
->termios
->c_lflag
& ICANON
)) {
708 if (tty
->termios
->c_lflag
& ISIG
)
709 flags
|= 0x02; /* cbreak */
711 flags
|= 0x20; /* raw */
713 if (tty
->termios
->c_lflag
& ECHO
)
714 flags
|= 0x08; /* echo */
715 if (tty
->termios
->c_oflag
& OPOST
)
716 if (tty
->termios
->c_oflag
& ONLCR
)
717 flags
|= 0x10; /* crmod */
721 static int get_sgttyb(struct tty_struct
*tty
, struct sgttyb __user
*sgttyb
)
725 mutex_lock(&tty
->termios_mutex
);
726 tmp
.sg_ispeed
= tty
->termios
->c_ispeed
;
727 tmp
.sg_ospeed
= tty
->termios
->c_ospeed
;
728 tmp
.sg_erase
= tty
->termios
->c_cc
[VERASE
];
729 tmp
.sg_kill
= tty
->termios
->c_cc
[VKILL
];
730 tmp
.sg_flags
= get_sgflags(tty
);
731 mutex_unlock(&tty
->termios_mutex
);
733 return copy_to_user(sgttyb
, &tmp
, sizeof(tmp
)) ? -EFAULT
: 0;
736 static void set_sgflags(struct ktermios
*termios
, int flags
)
738 termios
->c_iflag
= ICRNL
| IXON
;
739 termios
->c_oflag
= 0;
740 termios
->c_lflag
= ISIG
| ICANON
;
741 if (flags
& 0x02) { /* cbreak */
742 termios
->c_iflag
= 0;
743 termios
->c_lflag
&= ~ICANON
;
745 if (flags
& 0x08) { /* echo */
746 termios
->c_lflag
|= ECHO
| ECHOE
| ECHOK
|
747 ECHOCTL
| ECHOKE
| IEXTEN
;
749 if (flags
& 0x10) { /* crmod */
750 termios
->c_oflag
|= OPOST
| ONLCR
;
752 if (flags
& 0x20) { /* raw */
753 termios
->c_iflag
= 0;
754 termios
->c_lflag
&= ~(ISIG
| ICANON
);
756 if (!(termios
->c_lflag
& ICANON
)) {
757 termios
->c_cc
[VMIN
] = 1;
758 termios
->c_cc
[VTIME
] = 0;
763 * set_sgttyb - set legacy terminal values
764 * @tty: tty structure
765 * @sgttyb: pointer to old style terminal structure
767 * Updates a terminal from the legacy BSD style terminal information
770 * Locking: termios_mutex
773 static int set_sgttyb(struct tty_struct
*tty
, struct sgttyb __user
*sgttyb
)
777 struct ktermios termios
;
779 retval
= tty_check_change(tty
);
783 if (copy_from_user(&tmp
, sgttyb
, sizeof(tmp
)))
786 mutex_lock(&tty
->termios_mutex
);
787 termios
= *tty
->termios
;
788 termios
.c_cc
[VERASE
] = tmp
.sg_erase
;
789 termios
.c_cc
[VKILL
] = tmp
.sg_kill
;
790 set_sgflags(&termios
, tmp
.sg_flags
);
791 /* Try and encode into Bfoo format */
793 tty_termios_encode_baud_rate(&termios
, termios
.c_ispeed
,
796 mutex_unlock(&tty
->termios_mutex
);
797 change_termios(tty
, &termios
);
803 static int get_tchars(struct tty_struct
*tty
, struct tchars __user
*tchars
)
807 mutex_lock(&tty
->termios_mutex
);
808 tmp
.t_intrc
= tty
->termios
->c_cc
[VINTR
];
809 tmp
.t_quitc
= tty
->termios
->c_cc
[VQUIT
];
810 tmp
.t_startc
= tty
->termios
->c_cc
[VSTART
];
811 tmp
.t_stopc
= tty
->termios
->c_cc
[VSTOP
];
812 tmp
.t_eofc
= tty
->termios
->c_cc
[VEOF
];
813 tmp
.t_brkc
= tty
->termios
->c_cc
[VEOL2
]; /* what is brkc anyway? */
814 mutex_unlock(&tty
->termios_mutex
);
815 return copy_to_user(tchars
, &tmp
, sizeof(tmp
)) ? -EFAULT
: 0;
818 static int set_tchars(struct tty_struct
*tty
, struct tchars __user
*tchars
)
822 if (copy_from_user(&tmp
, tchars
, sizeof(tmp
)))
824 mutex_lock(&tty
->termios_mutex
);
825 tty
->termios
->c_cc
[VINTR
] = tmp
.t_intrc
;
826 tty
->termios
->c_cc
[VQUIT
] = tmp
.t_quitc
;
827 tty
->termios
->c_cc
[VSTART
] = tmp
.t_startc
;
828 tty
->termios
->c_cc
[VSTOP
] = tmp
.t_stopc
;
829 tty
->termios
->c_cc
[VEOF
] = tmp
.t_eofc
;
830 tty
->termios
->c_cc
[VEOL2
] = tmp
.t_brkc
; /* what is brkc anyway? */
831 mutex_unlock(&tty
->termios_mutex
);
837 static int get_ltchars(struct tty_struct
*tty
, struct ltchars __user
*ltchars
)
841 mutex_lock(&tty
->termios_mutex
);
842 tmp
.t_suspc
= tty
->termios
->c_cc
[VSUSP
];
843 /* what is dsuspc anyway? */
844 tmp
.t_dsuspc
= tty
->termios
->c_cc
[VSUSP
];
845 tmp
.t_rprntc
= tty
->termios
->c_cc
[VREPRINT
];
846 /* what is flushc anyway? */
847 tmp
.t_flushc
= tty
->termios
->c_cc
[VEOL2
];
848 tmp
.t_werasc
= tty
->termios
->c_cc
[VWERASE
];
849 tmp
.t_lnextc
= tty
->termios
->c_cc
[VLNEXT
];
850 mutex_unlock(&tty
->termios_mutex
);
851 return copy_to_user(ltchars
, &tmp
, sizeof(tmp
)) ? -EFAULT
: 0;
854 static int set_ltchars(struct tty_struct
*tty
, struct ltchars __user
*ltchars
)
858 if (copy_from_user(&tmp
, ltchars
, sizeof(tmp
)))
861 mutex_lock(&tty
->termios_mutex
);
862 tty
->termios
->c_cc
[VSUSP
] = tmp
.t_suspc
;
863 /* what is dsuspc anyway? */
864 tty
->termios
->c_cc
[VEOL2
] = tmp
.t_dsuspc
;
865 tty
->termios
->c_cc
[VREPRINT
] = tmp
.t_rprntc
;
866 /* what is flushc anyway? */
867 tty
->termios
->c_cc
[VEOL2
] = tmp
.t_flushc
;
868 tty
->termios
->c_cc
[VWERASE
] = tmp
.t_werasc
;
869 tty
->termios
->c_cc
[VLNEXT
] = tmp
.t_lnextc
;
870 mutex_unlock(&tty
->termios_mutex
);
876 * send_prio_char - send priority character
878 * Send a high priority character to the tty even if stopped
880 * Locking: none for xchar method, write ordering for write method.
883 static int send_prio_char(struct tty_struct
*tty
, char ch
)
885 int was_stopped
= tty
->stopped
;
887 if (tty
->ops
->send_xchar
) {
888 tty
->ops
->send_xchar(tty
, ch
);
892 if (tty_write_lock(tty
, 0) < 0)
897 tty
->ops
->write(tty
, &ch
, 1);
900 tty_write_unlock(tty
);
905 * tty_change_softcar - carrier change ioctl helper
906 * @tty: tty to update
907 * @arg: enable/disable CLOCAL
909 * Perform a change to the CLOCAL state and call into the driver
910 * layer to make it visible. All done with the termios mutex
913 static int tty_change_softcar(struct tty_struct
*tty
, int arg
)
916 int bit
= arg
? CLOCAL
: 0;
919 mutex_lock(&tty
->termios_mutex
);
921 tty
->termios
->c_cflag
&= ~CLOCAL
;
922 tty
->termios
->c_cflag
|= bit
;
923 if (tty
->ops
->set_termios
)
924 tty
->ops
->set_termios(tty
, &old
);
925 if ((tty
->termios
->c_cflag
& CLOCAL
) != bit
)
927 mutex_unlock(&tty
->termios_mutex
);
932 * tty_mode_ioctl - mode related ioctls
933 * @tty: tty for the ioctl
934 * @file: file pointer for the tty
936 * @arg: ioctl argument
938 * Perform non line discipline specific mode control ioctls. This
939 * is designed to be called by line disciplines to ensure they provide
940 * consistent mode setting.
943 int tty_mode_ioctl(struct tty_struct
*tty
, struct file
*file
,
944 unsigned int cmd
, unsigned long arg
)
946 struct tty_struct
*real_tty
;
947 void __user
*p
= (void __user
*)arg
;
949 struct ktermios kterm
;
950 struct termiox ktermx
;
952 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
&&
953 tty
->driver
->subtype
== PTY_TYPE_MASTER
)
954 real_tty
= tty
->link
;
961 return get_sgttyb(real_tty
, (struct sgttyb __user
*) arg
);
964 return set_sgttyb(real_tty
, (struct sgttyb __user
*) arg
);
968 return get_tchars(real_tty
, p
);
970 return set_tchars(real_tty
, p
);
974 return get_ltchars(real_tty
, p
);
976 return set_ltchars(real_tty
, p
);
979 return set_termios(real_tty
, p
, TERMIOS_FLUSH
| TERMIOS_WAIT
| TERMIOS_OLD
);
981 return set_termios(real_tty
, p
, TERMIOS_WAIT
| TERMIOS_OLD
);
983 return set_termios(real_tty
, p
, TERMIOS_OLD
);
986 copy_termios(real_tty
, &kterm
);
987 if (kernel_termios_to_user_termios((struct termios __user
*)arg
, &kterm
))
992 copy_termios(real_tty
, &kterm
);
993 if (kernel_termios_to_user_termios_1((struct termios __user
*)arg
, &kterm
))
997 copy_termios(real_tty
, &kterm
);
998 if (kernel_termios_to_user_termios((struct termios2 __user
*)arg
, &kterm
))
1002 return set_termios(real_tty
, p
, TERMIOS_FLUSH
| TERMIOS_WAIT
);
1004 return set_termios(real_tty
, p
, TERMIOS_WAIT
);
1006 return set_termios(real_tty
, p
, 0);
1009 return get_termio(real_tty
, p
);
1011 return set_termios(real_tty
, p
, TERMIOS_FLUSH
| TERMIOS_WAIT
| TERMIOS_TERMIO
);
1013 return set_termios(real_tty
, p
, TERMIOS_WAIT
| TERMIOS_TERMIO
);
1015 return set_termios(real_tty
, p
, TERMIOS_TERMIO
);
1017 case TIOCGLCKTRMIOS
:
1018 copy_termios_locked(real_tty
, &kterm
);
1019 if (kernel_termios_to_user_termios((struct termios __user
*)arg
, &kterm
))
1022 case TIOCSLCKTRMIOS
:
1023 if (!capable(CAP_SYS_ADMIN
))
1025 copy_termios_locked(real_tty
, &kterm
);
1026 if (user_termios_to_kernel_termios(&kterm
,
1027 (struct termios __user
*) arg
))
1029 mutex_lock(&real_tty
->termios_mutex
);
1030 memcpy(real_tty
->termios_locked
, &kterm
, sizeof(struct ktermios
));
1031 mutex_unlock(&real_tty
->termios_mutex
);
1034 case TIOCGLCKTRMIOS
:
1035 copy_termios_locked(real_tty
, &kterm
);
1036 if (kernel_termios_to_user_termios_1((struct termios __user
*)arg
, &kterm
))
1039 case TIOCSLCKTRMIOS
:
1040 if (!capable(CAP_SYS_ADMIN
))
1042 copy_termios_locked(real_tty
, &kterm
);
1043 if (user_termios_to_kernel_termios_1(&kterm
,
1044 (struct termios __user
*) arg
))
1046 mutex_lock(&real_tty
->termios_mutex
);
1047 memcpy(real_tty
->termios_locked
, &kterm
, sizeof(struct ktermios
));
1048 mutex_unlock(&real_tty
->termios_mutex
);
1053 if (real_tty
->termiox
== NULL
)
1055 mutex_lock(&real_tty
->termios_mutex
);
1056 memcpy(&ktermx
, real_tty
->termiox
, sizeof(struct termiox
));
1057 mutex_unlock(&real_tty
->termios_mutex
);
1058 if (copy_to_user(p
, &ktermx
, sizeof(struct termiox
)))
1062 return set_termiox(real_tty
, p
, 0);
1064 return set_termiox(real_tty
, p
, TERMIOS_WAIT
);
1066 return set_termiox(real_tty
, p
, TERMIOS_FLUSH
);
1069 copy_termios(real_tty
, &kterm
);
1070 ret
= put_user((kterm
.c_cflag
& CLOCAL
) ? 1 : 0,
1074 if (get_user(arg
, (unsigned int __user
*) arg
))
1076 return tty_change_softcar(real_tty
, arg
);
1078 return -ENOIOCTLCMD
;
1081 EXPORT_SYMBOL_GPL(tty_mode_ioctl
);
1083 int tty_perform_flush(struct tty_struct
*tty
, unsigned long arg
)
1085 struct tty_ldisc
*ld
;
1086 int retval
= tty_check_change(tty
);
1090 ld
= tty_ldisc_ref_wait(tty
);
1093 if (ld
&& ld
->ops
->flush_buffer
)
1094 ld
->ops
->flush_buffer(tty
);
1097 if (ld
&& ld
->ops
->flush_buffer
)
1098 ld
->ops
->flush_buffer(tty
);
1101 tty_driver_flush_buffer(tty
);
1104 tty_ldisc_deref(ld
);
1107 tty_ldisc_deref(ld
);
1110 EXPORT_SYMBOL_GPL(tty_perform_flush
);
1112 int n_tty_ioctl_helper(struct tty_struct
*tty
, struct file
*file
,
1113 unsigned int cmd
, unsigned long arg
)
1115 unsigned long flags
;
1120 retval
= tty_check_change(tty
);
1125 if (!tty
->flow_stopped
) {
1126 tty
->flow_stopped
= 1;
1131 if (tty
->flow_stopped
) {
1132 tty
->flow_stopped
= 0;
1137 if (STOP_CHAR(tty
) != __DISABLED_CHAR
)
1138 return send_prio_char(tty
, STOP_CHAR(tty
));
1141 if (START_CHAR(tty
) != __DISABLED_CHAR
)
1142 return send_prio_char(tty
, START_CHAR(tty
));
1149 return tty_perform_flush(tty
, arg
);
1154 if (tty
->driver
->type
!= TTY_DRIVER_TYPE_PTY
||
1155 tty
->driver
->subtype
!= PTY_TYPE_MASTER
)
1157 if (get_user(pktmode
, (int __user
*) arg
))
1159 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
1163 tty
->link
->ctrl_status
= 0;
1167 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1171 /* Try the mode commands */
1172 return tty_mode_ioctl(tty
, file
, cmd
, arg
);
1175 EXPORT_SYMBOL(n_tty_ioctl_helper
);