tty: bfin_jtag_comm: emulate a TTY over the Blackfin EMUDAT/JTAG interface
[linux-2.6-block.git] / drivers / char / tty_ioctl.c
CommitLineData
1da177e4
LT
1/*
2 * linux/drivers/char/tty_ioctl.c
3 *
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 *
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).
9 */
10
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>
20#include <linux/mm.h>
21#include <linux/module.h>
22#include <linux/bitops.h>
5785c95b 23#include <linux/mutex.h>
0ee9cbb3 24#include <linux/smp_lock.h>
1da177e4
LT
25
26#include <asm/io.h>
27#include <asm/uaccess.h>
28#include <asm/system.h>
29
30#undef TTY_DEBUG_WAIT_UNTIL_SENT
31
32#undef DEBUG
33
34/*
35 * Internal flag options for termios setting behavior
36 */
37#define TERMIOS_FLUSH 1
38#define TERMIOS_WAIT 2
39#define TERMIOS_TERMIO 4
edc6afc5 40#define TERMIOS_OLD 8
1da177e4 41
af9b897e 42
d81ed103
AC
43/**
44 * tty_chars_in_buffer - characters pending
45 * @tty: terminal
46 *
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.
50 */
51
f34d7a5b
AC
52int tty_chars_in_buffer(struct tty_struct *tty)
53{
54 if (tty->ops->chars_in_buffer)
55 return tty->ops->chars_in_buffer(tty);
56 else
57 return 0;
58}
f34d7a5b
AC
59EXPORT_SYMBOL(tty_chars_in_buffer);
60
d81ed103
AC
61/**
62 * tty_write_room - write queue space
63 * @tty: terminal
64 *
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.
70 */
71
f34d7a5b
AC
72int tty_write_room(struct tty_struct *tty)
73{
74 if (tty->ops->write_room)
75 return tty->ops->write_room(tty);
76 return 2048;
77}
f34d7a5b
AC
78EXPORT_SYMBOL(tty_write_room);
79
d81ed103
AC
80/**
81 * tty_driver_flush_buffer - discard internal buffer
82 * @tty: terminal
83 *
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.
87 */
f34d7a5b
AC
88void tty_driver_flush_buffer(struct tty_struct *tty)
89{
90 if (tty->ops->flush_buffer)
91 tty->ops->flush_buffer(tty);
92}
f34d7a5b
AC
93EXPORT_SYMBOL(tty_driver_flush_buffer);
94
d81ed103
AC
95/**
96 * tty_throttle - flow control
97 * @tty: terminal
98 *
99 * Indicate that a tty should stop transmitting data down the stack.
38db8979
AC
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.
d81ed103
AC
103 */
104
39c2e60f
AC
105void tty_throttle(struct tty_struct *tty)
106{
38db8979 107 mutex_lock(&tty->termios_mutex);
39c2e60f
AC
108 /* check TTY_THROTTLED first so it indicates our state */
109 if (!test_and_set_bit(TTY_THROTTLED, &tty->flags) &&
110 tty->ops->throttle)
111 tty->ops->throttle(tty);
38db8979 112 mutex_unlock(&tty->termios_mutex);
39c2e60f
AC
113}
114EXPORT_SYMBOL(tty_throttle);
115
d81ed103
AC
116/**
117 * tty_unthrottle - flow control
118 * @tty: terminal
119 *
120 * Indicate that a tty may continue transmitting data down the stack.
38db8979
AC
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.
124 *
125 * Drivers should however remember that the stack can issue a throttle,
126 * then change flow control method, then unthrottle.
d81ed103
AC
127 */
128
39c2e60f
AC
129void tty_unthrottle(struct tty_struct *tty)
130{
38db8979 131 mutex_lock(&tty->termios_mutex);
39c2e60f
AC
132 if (test_and_clear_bit(TTY_THROTTLED, &tty->flags) &&
133 tty->ops->unthrottle)
134 tty->ops->unthrottle(tty);
38db8979 135 mutex_unlock(&tty->termios_mutex);
39c2e60f
AC
136}
137EXPORT_SYMBOL(tty_unthrottle);
f34d7a5b 138
af9b897e
AC
139/**
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
143 *
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)
146 *
147 * Locking: none
148 */
149
355d95a1 150void tty_wait_until_sent(struct tty_struct *tty, long timeout)
1da177e4 151{
1da177e4
LT
152#ifdef TTY_DEBUG_WAIT_UNTIL_SENT
153 char buf[64];
355d95a1 154
1da177e4
LT
155 printk(KERN_DEBUG "%s wait until sent...\n", tty_name(tty, buf));
156#endif
1da177e4
LT
157 if (!timeout)
158 timeout = MAX_SCHEDULE_TIMEOUT;
5a52bd4a 159 if (wait_event_interruptible_timeout(tty->write_wait,
f34d7a5b
AC
160 !tty_chars_in_buffer(tty), timeout) >= 0) {
161 if (tty->ops->wait_until_sent)
162 tty->ops->wait_until_sent(tty, timeout);
0ee9cbb3 163 }
1da177e4 164}
1da177e4
LT
165EXPORT_SYMBOL(tty_wait_until_sent);
166
d81ed103
AC
167
168/*
169 * Termios Helper Methods
170 */
171
edc6afc5
AC
172static void unset_locked_termios(struct ktermios *termios,
173 struct ktermios *old,
174 struct ktermios *locked)
1da177e4
LT
175{
176 int i;
355d95a1
AC
177
178#define NOSET_MASK(x, y, z) (x = ((x) & ~(z)) | ((y) & (z)))
1da177e4
LT
179
180 if (!locked) {
181 printk(KERN_WARNING "Warning?!? termios_locked is NULL.\n");
182 return;
183 }
184
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;
355d95a1 190 for (i = 0; i < NCCS; i++)
1da177e4
LT
191 termios->c_cc[i] = locked->c_cc[i] ?
192 old->c_cc[i] : termios->c_cc[i];
edc6afc5 193 /* FIXME: What should we do for i/ospeed */
1da177e4
LT
194}
195
edc6afc5
AC
196/*
197 * Routine which returns the baud rate of the tty
198 *
199 * Note that the baud_table needs to be kept in sync with the
200 * include/asm/termbits.h file.
201 */
202static 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,
205#ifdef __sparc__
206 76800, 153600, 307200, 614400, 921600
207#else
208 500000, 576000, 921600, 1000000, 1152000, 1500000, 2000000,
209 2500000, 3000000, 3500000, 4000000
210#endif
211};
212
213#ifndef __sparc__
214static 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
220};
221#else
222static 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
227};
228#endif
229
230static int n_baud_table = ARRAY_SIZE(baud_table);
231
232/**
233 * tty_termios_baud_rate
234 * @termios: termios structure
235 *
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.
240 *
241 * Locking: none
242 */
243
244speed_t tty_termios_baud_rate(struct ktermios *termios)
245{
246 unsigned int cbaud;
247
248 cbaud = termios->c_cflag & CBAUD;
249
250#ifdef BOTHER
251 /* Magic token for arbitary speed via c_ispeed/c_ospeed */
252 if (cbaud == BOTHER)
253 return termios->c_ospeed;
254#endif
255 if (cbaud & CBAUDEX) {
256 cbaud &= ~CBAUDEX;
257
258 if (cbaud < 1 || cbaud + 15 > n_baud_table)
259 termios->c_cflag &= ~CBAUDEX;
260 else
261 cbaud += 15;
262 }
263 return baud_table[cbaud];
264}
edc6afc5
AC
265EXPORT_SYMBOL(tty_termios_baud_rate);
266
267/**
268 * tty_termios_input_baud_rate
269 * @termios: termios structure
270 *
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.
275 *
276 * Locking: none
277 */
278
279speed_t tty_termios_input_baud_rate(struct ktermios *termios)
280{
281#ifdef IBSHIFT
282 unsigned int cbaud = (termios->c_cflag >> IBSHIFT) & CBAUD;
283
284 if (cbaud == B0)
285 return tty_termios_baud_rate(termios);
286
287 /* Magic token for arbitary speed via c_ispeed*/
288 if (cbaud == BOTHER)
289 return termios->c_ispeed;
290
291 if (cbaud & CBAUDEX) {
292 cbaud &= ~CBAUDEX;
293
294 if (cbaud < 1 || cbaud + 15 > n_baud_table)
295 termios->c_cflag &= ~(CBAUDEX << IBSHIFT);
296 else
297 cbaud += 15;
298 }
299 return baud_table[cbaud];
300#else
301 return tty_termios_baud_rate(termios);
302#endif
303}
edc6afc5
AC
304EXPORT_SYMBOL(tty_termios_input_baud_rate);
305
edc6afc5
AC
306/**
307 * tty_termios_encode_baud_rate
78137e3b 308 * @termios: ktermios structure holding user requested state
edc6afc5
AC
309 * @ispeed: input speed
310 * @ospeed: output speed
311 *
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
315 *
78137e3b
AC
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.
edc6afc5
AC
320 *
321 * Locking: Caller should hold termios lock. This is already held
322 * when calling this function from the driver termios handler.
5f519d72
AC
323 *
324 * The ifdefs deal with platforms whose owners have yet to update them
325 * and will all go away once this is done.
edc6afc5
AC
326 */
327
75e8b71d
MR
328void tty_termios_encode_baud_rate(struct ktermios *termios,
329 speed_t ibaud, speed_t obaud)
edc6afc5
AC
330{
331 int i = 0;
78137e3b
AC
332 int ifound = -1, ofound = -1;
333 int iclose = ibaud/50, oclose = obaud/50;
334 int ibinput = 0;
edc6afc5 335
5f519d72
AC
336 if (obaud == 0) /* CD dropped */
337 ibaud = 0; /* Clear ibaud to be sure */
338
edc6afc5
AC
339 termios->c_ispeed = ibaud;
340 termios->c_ospeed = obaud;
341
5f519d72 342#ifdef BOTHER
78137e3b
AC
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 */
346
347 if ((termios->c_cflag & CBAUD) == BOTHER)
348 oclose = 0;
349 if (((termios->c_cflag >> IBSHIFT) & CBAUD) == BOTHER)
350 iclose = 0;
351 if ((termios->c_cflag >> IBSHIFT) & CBAUD)
352 ibinput = 1; /* An input speed was specified */
5f519d72 353#endif
edc6afc5 354 termios->c_cflag &= ~CBAUD;
edc6afc5 355
5f519d72
AC
356 /*
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
360 * preference
361 */
362
edc6afc5 363 do {
75e8b71d
MR
364 if (obaud - oclose <= baud_table[i] &&
365 obaud + oclose >= baud_table[i]) {
edc6afc5 366 termios->c_cflag |= baud_bits[i];
78137e3b 367 ofound = i;
edc6afc5 368 }
75e8b71d
MR
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 */
5f519d72
AC
373 if (ofound == i && !ibinput)
374 ifound = i;
375#ifdef IBSHIFT
376 else {
377 ifound = i;
78137e3b 378 termios->c_cflag |= (baud_bits[i] << IBSHIFT);
5f519d72
AC
379 }
380#endif
edc6afc5 381 }
6804396f 382 } while (++i < n_baud_table);
5f519d72
AC
383
384 /*
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.
387 */
388#ifdef BOTHER
78137e3b 389 if (ofound == -1)
edc6afc5 390 termios->c_cflag |= BOTHER;
78137e3b
AC
391 /* Set exact input bits only if the input and output differ or the
392 user already did */
6804396f 393 if (ifound == -1 && (ibaud != obaud || ibinput))
edc6afc5 394 termios->c_cflag |= (BOTHER << IBSHIFT);
5f519d72
AC
395#else
396 if (ifound == -1 || ofound == -1) {
397 static int warned;
398 if (!warned++)
399 printk(KERN_WARNING "tty: Unable to return correct "
400 "speed data as your architecture needs updating.\n");
401 }
402#endif
edc6afc5 403}
edc6afc5
AC
404EXPORT_SYMBOL_GPL(tty_termios_encode_baud_rate);
405
d81ed103
AC
406/**
407 * tty_encode_baud_rate - set baud rate of the tty
408 * @ibaud: input baud rate
409 * @obad: output baud rate
410 *
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
413 * question.
414 */
415
5f519d72
AC
416void tty_encode_baud_rate(struct tty_struct *tty, speed_t ibaud, speed_t obaud)
417{
418 tty_termios_encode_baud_rate(tty->termios, ibaud, obaud);
419}
420EXPORT_SYMBOL_GPL(tty_encode_baud_rate);
edc6afc5
AC
421
422/**
423 * tty_get_baud_rate - get tty bit rates
424 * @tty: tty to query
425 *
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.
429 *
430 * Locking: none
431 */
432
433speed_t tty_get_baud_rate(struct tty_struct *tty)
434{
435 speed_t baud = tty_termios_baud_rate(tty->termios);
436
437 if (baud == 38400 && tty->alt_speed) {
438 if (!tty->warned) {
439 printk(KERN_WARNING "Use of setserial/setrocket to "
440 "set SPD_* flags is deprecated\n");
441 tty->warned = 1;
442 }
443 baud = tty->alt_speed;
444 }
445
446 return baud;
447}
edc6afc5
AC
448EXPORT_SYMBOL(tty_get_baud_rate);
449
5f519d72
AC
450/**
451 * tty_termios_copy_hw - copy hardware settings
452 * @new: New termios
453 * @old: Old termios
454 *
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
459 */
460
461void tty_termios_copy_hw(struct ktermios *new, struct ktermios *old)
462{
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;
469}
5f519d72
AC
470EXPORT_SYMBOL(tty_termios_copy_hw);
471
bf5e5834
AC
472/**
473 * tty_termios_hw_change - check for setting change
474 * @a: termios
475 * @b: termios to compare
476 *
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.
479 */
480
481int tty_termios_hw_change(struct ktermios *a, struct ktermios *b)
482{
483 if (a->c_ispeed != b->c_ispeed || a->c_ospeed != b->c_ospeed)
484 return 1;
485 if ((a->c_cflag ^ b->c_cflag) & ~(HUPCL | CREAD | CLOCAL))
486 return 1;
487 return 0;
488}
489EXPORT_SYMBOL(tty_termios_hw_change);
490
af9b897e
AC
491/**
492 * change_termios - update termios values
493 * @tty: tty to update
494 * @new_termios: desired new value
495 *
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.
499 *
d81ed103 500 * Locking: termios_mutex
af9b897e
AC
501 */
502
355d95a1 503static void change_termios(struct tty_struct *tty, struct ktermios *new_termios)
1da177e4 504{
978e595f 505 struct ktermios old_termios;
1da177e4 506 struct tty_ldisc *ld;
04f378b1 507 unsigned long flags;
355d95a1 508
1da177e4
LT
509 /*
510 * Perform the actual termios internal changes under lock.
511 */
355d95a1 512
1da177e4
LT
513
514 /* FIXME: we need to decide on some locking/ordering semantics
515 for the set_termios notification eventually */
5785c95b 516 mutex_lock(&tty->termios_mutex);
978e595f 517 old_termios = *tty->termios;
1da177e4
LT
518 *tty->termios = *new_termios;
519 unset_locked_termios(tty->termios, &old_termios, tty->termios_locked);
1da177e4
LT
520
521 /* See if packet mode change of state. */
1da177e4
LT
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) {
04f378b1 530 spin_lock_irqsave(&tty->ctrl_lock, flags);
1da177e4
LT
531 tty->ctrl_status &= ~(TIOCPKT_DOSTOP | TIOCPKT_NOSTOP);
532 if (new_flow)
533 tty->ctrl_status |= TIOCPKT_DOSTOP;
534 else
535 tty->ctrl_status |= TIOCPKT_NOSTOP;
04f378b1 536 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
1da177e4
LT
537 wake_up_interruptible(&tty->link->read_wait);
538 }
539 }
355d95a1 540
f34d7a5b
AC
541 if (tty->ops->set_termios)
542 (*tty->ops->set_termios)(tty, &old_termios);
5f519d72
AC
543 else
544 tty_termios_copy_hw(tty->termios, &old_termios);
1da177e4
LT
545
546 ld = tty_ldisc_ref(tty);
547 if (ld != NULL) {
a352def2
AC
548 if (ld->ops->set_termios)
549 (ld->ops->set_termios)(tty, &old_termios);
1da177e4
LT
550 tty_ldisc_deref(ld);
551 }
5785c95b 552 mutex_unlock(&tty->termios_mutex);
1da177e4
LT
553}
554
af9b897e
AC
555/**
556 * set_termios - set termios values for a tty
557 * @tty: terminal device
558 * @arg: user data
559 * @opt: option information
560 *
3a4fa0a2 561 * Helper function to prepare termios data and run necessary other
af9b897e
AC
562 * functions before using change_termios to do the actual changes.
563 *
564 * Locking:
d81ed103 565 * Called functions take ldisc and termios_mutex locks
af9b897e
AC
566 */
567
355d95a1 568static int set_termios(struct tty_struct *tty, void __user *arg, int opt)
1da177e4 569{
edc6afc5 570 struct ktermios tmp_termios;
1da177e4
LT
571 struct tty_ldisc *ld;
572 int retval = tty_check_change(tty);
573
574 if (retval)
575 return retval;
576
978e595f 577 mutex_lock(&tty->termios_mutex);
64bb6c5e 578 memcpy(&tmp_termios, tty->termios, sizeof(struct ktermios));
978e595f 579 mutex_unlock(&tty->termios_mutex);
64bb6c5e 580
1da177e4 581 if (opt & TERMIOS_TERMIO) {
1da177e4
LT
582 if (user_termio_to_kernel_termios(&tmp_termios,
583 (struct termio __user *)arg))
584 return -EFAULT;
edc6afc5
AC
585#ifdef TCGETS2
586 } else if (opt & TERMIOS_OLD) {
edc6afc5 587 if (user_termios_to_kernel_termios_1(&tmp_termios,
64bb6c5e 588 (struct termios __user *)arg))
edc6afc5 589 return -EFAULT;
1da177e4
LT
590 } else {
591 if (user_termios_to_kernel_termios(&tmp_termios,
64bb6c5e 592 (struct termios2 __user *)arg))
1da177e4
LT
593 return -EFAULT;
594 }
64bb6c5e
AC
595#else
596 } else if (user_termios_to_kernel_termios(&tmp_termios,
597 (struct termios __user *)arg))
598 return -EFAULT;
599#endif
1da177e4 600
355d95a1
AC
601 /* If old style Bfoo values are used then load c_ispeed/c_ospeed
602 * with the real speed so its unconditionally usable */
edc6afc5
AC
603 tmp_termios.c_ispeed = tty_termios_input_baud_rate(&tmp_termios);
604 tmp_termios.c_ospeed = tty_termios_baud_rate(&tmp_termios);
605
1da177e4 606 ld = tty_ldisc_ref(tty);
355d95a1 607
1da177e4 608 if (ld != NULL) {
a352def2
AC
609 if ((opt & TERMIOS_FLUSH) && ld->ops->flush_buffer)
610 ld->ops->flush_buffer(tty);
1da177e4
LT
611 tty_ldisc_deref(ld);
612 }
355d95a1 613
1da177e4
LT
614 if (opt & TERMIOS_WAIT) {
615 tty_wait_until_sent(tty, 0);
616 if (signal_pending(current))
617 return -EINTR;
618 }
619
620 change_termios(tty, &tmp_termios);
5f519d72
AC
621
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
625 succeeded */
1da177e4
LT
626 return 0;
627}
628
355d95a1 629static int get_termio(struct tty_struct *tty, struct termio __user *termio)
1da177e4
LT
630{
631 if (kernel_termios_to_user_termio(termio, tty->termios))
632 return -EFAULT;
633 return 0;
634}
635
1d65b4a0
AC
636
637#ifdef TCGETX
638
639/**
640 * set_termiox - set termiox fields if possible
641 * @tty: terminal
642 * @arg: termiox structure from user
643 * @opt: option flags for ioctl type
644 *
645 * Implement the device calling points for the SYS5 termiox ioctl
646 * interface in Linux
647 */
648
649static int set_termiox(struct tty_struct *tty, void __user *arg, int opt)
650{
651 struct termiox tnew;
652 struct tty_ldisc *ld;
653
654 if (tty->termiox == NULL)
655 return -EINVAL;
656 if (copy_from_user(&tnew, arg, sizeof(struct termiox)))
657 return -EFAULT;
658
659 ld = tty_ldisc_ref(tty);
660 if (ld != NULL) {
661 if ((opt & TERMIOS_FLUSH) && ld->ops->flush_buffer)
662 ld->ops->flush_buffer(tty);
663 tty_ldisc_deref(ld);
664 }
665 if (opt & TERMIOS_WAIT) {
666 tty_wait_until_sent(tty, 0);
667 if (signal_pending(current))
668 return -EINTR;
669 }
670
671 mutex_lock(&tty->termios_mutex);
672 if (tty->ops->set_termiox)
673 tty->ops->set_termiox(tty, &tnew);
674 mutex_unlock(&tty->termios_mutex);
675 return 0;
676}
677
678#endif
679
1da177e4
LT
680
681#ifdef TIOCGETP
682/*
683 * These are deprecated, but there is limited support..
684 *
685 * The "sg_flags" translation is a joke..
686 */
355d95a1 687static int get_sgflags(struct tty_struct *tty)
1da177e4
LT
688{
689 int flags = 0;
690
691 if (!(tty->termios->c_lflag & ICANON)) {
692 if (tty->termios->c_lflag & ISIG)
693 flags |= 0x02; /* cbreak */
694 else
695 flags |= 0x20; /* raw */
696 }
697 if (tty->termios->c_lflag & ECHO)
698 flags |= 0x08; /* echo */
699 if (tty->termios->c_oflag & OPOST)
700 if (tty->termios->c_oflag & ONLCR)
701 flags |= 0x10; /* crmod */
702 return flags;
703}
704
355d95a1 705static int get_sgttyb(struct tty_struct *tty, struct sgttyb __user *sgttyb)
1da177e4
LT
706{
707 struct sgttyb tmp;
708
5785c95b 709 mutex_lock(&tty->termios_mutex);
606d099c
AC
710 tmp.sg_ispeed = tty->termios->c_ispeed;
711 tmp.sg_ospeed = tty->termios->c_ospeed;
1da177e4
LT
712 tmp.sg_erase = tty->termios->c_cc[VERASE];
713 tmp.sg_kill = tty->termios->c_cc[VKILL];
714 tmp.sg_flags = get_sgflags(tty);
5785c95b 715 mutex_unlock(&tty->termios_mutex);
355d95a1 716
1da177e4
LT
717 return copy_to_user(sgttyb, &tmp, sizeof(tmp)) ? -EFAULT : 0;
718}
719
355d95a1 720static void set_sgflags(struct ktermios *termios, int flags)
1da177e4
LT
721{
722 termios->c_iflag = ICRNL | IXON;
723 termios->c_oflag = 0;
724 termios->c_lflag = ISIG | ICANON;
725 if (flags & 0x02) { /* cbreak */
726 termios->c_iflag = 0;
727 termios->c_lflag &= ~ICANON;
728 }
729 if (flags & 0x08) { /* echo */
730 termios->c_lflag |= ECHO | ECHOE | ECHOK |
731 ECHOCTL | ECHOKE | IEXTEN;
732 }
733 if (flags & 0x10) { /* crmod */
734 termios->c_oflag |= OPOST | ONLCR;
735 }
736 if (flags & 0x20) { /* raw */
737 termios->c_iflag = 0;
738 termios->c_lflag &= ~(ISIG | ICANON);
739 }
740 if (!(termios->c_lflag & ICANON)) {
741 termios->c_cc[VMIN] = 1;
742 termios->c_cc[VTIME] = 0;
743 }
744}
745
af9b897e
AC
746/**
747 * set_sgttyb - set legacy terminal values
748 * @tty: tty structure
749 * @sgttyb: pointer to old style terminal structure
750 *
751 * Updates a terminal from the legacy BSD style terminal information
752 * structure.
753 *
d81ed103 754 * Locking: termios_mutex
af9b897e
AC
755 */
756
355d95a1 757static int set_sgttyb(struct tty_struct *tty, struct sgttyb __user *sgttyb)
1da177e4
LT
758{
759 int retval;
760 struct sgttyb tmp;
edc6afc5 761 struct ktermios termios;
1da177e4
LT
762
763 retval = tty_check_change(tty);
764 if (retval)
765 return retval;
355d95a1 766
1da177e4
LT
767 if (copy_from_user(&tmp, sgttyb, sizeof(tmp)))
768 return -EFAULT;
769
5785c95b 770 mutex_lock(&tty->termios_mutex);
6804396f 771 termios = *tty->termios;
1da177e4
LT
772 termios.c_cc[VERASE] = tmp.sg_erase;
773 termios.c_cc[VKILL] = tmp.sg_kill;
774 set_sgflags(&termios, tmp.sg_flags);
edc6afc5
AC
775 /* Try and encode into Bfoo format */
776#ifdef BOTHER
355d95a1
AC
777 tty_termios_encode_baud_rate(&termios, termios.c_ispeed,
778 termios.c_ospeed);
edc6afc5 779#endif
5785c95b 780 mutex_unlock(&tty->termios_mutex);
1da177e4
LT
781 change_termios(tty, &termios);
782 return 0;
783}
784#endif
785
786#ifdef TIOCGETC
355d95a1 787static int get_tchars(struct tty_struct *tty, struct tchars __user *tchars)
1da177e4
LT
788{
789 struct tchars tmp;
790
978e595f 791 mutex_lock(&tty->termios_mutex);
1da177e4
LT
792 tmp.t_intrc = tty->termios->c_cc[VINTR];
793 tmp.t_quitc = tty->termios->c_cc[VQUIT];
794 tmp.t_startc = tty->termios->c_cc[VSTART];
795 tmp.t_stopc = tty->termios->c_cc[VSTOP];
796 tmp.t_eofc = tty->termios->c_cc[VEOF];
797 tmp.t_brkc = tty->termios->c_cc[VEOL2]; /* what is brkc anyway? */
978e595f 798 mutex_unlock(&tty->termios_mutex);
1da177e4
LT
799 return copy_to_user(tchars, &tmp, sizeof(tmp)) ? -EFAULT : 0;
800}
801
355d95a1 802static int set_tchars(struct tty_struct *tty, struct tchars __user *tchars)
1da177e4
LT
803{
804 struct tchars tmp;
805
806 if (copy_from_user(&tmp, tchars, sizeof(tmp)))
807 return -EFAULT;
978e595f 808 mutex_lock(&tty->termios_mutex);
1da177e4
LT
809 tty->termios->c_cc[VINTR] = tmp.t_intrc;
810 tty->termios->c_cc[VQUIT] = tmp.t_quitc;
811 tty->termios->c_cc[VSTART] = tmp.t_startc;
812 tty->termios->c_cc[VSTOP] = tmp.t_stopc;
813 tty->termios->c_cc[VEOF] = tmp.t_eofc;
814 tty->termios->c_cc[VEOL2] = tmp.t_brkc; /* what is brkc anyway? */
978e595f 815 mutex_unlock(&tty->termios_mutex);
1da177e4
LT
816 return 0;
817}
818#endif
819
820#ifdef TIOCGLTC
355d95a1 821static int get_ltchars(struct tty_struct *tty, struct ltchars __user *ltchars)
1da177e4
LT
822{
823 struct ltchars tmp;
824
978e595f 825 mutex_lock(&tty->termios_mutex);
1da177e4 826 tmp.t_suspc = tty->termios->c_cc[VSUSP];
355d95a1
AC
827 /* what is dsuspc anyway? */
828 tmp.t_dsuspc = tty->termios->c_cc[VSUSP];
1da177e4 829 tmp.t_rprntc = tty->termios->c_cc[VREPRINT];
355d95a1
AC
830 /* what is flushc anyway? */
831 tmp.t_flushc = tty->termios->c_cc[VEOL2];
1da177e4
LT
832 tmp.t_werasc = tty->termios->c_cc[VWERASE];
833 tmp.t_lnextc = tty->termios->c_cc[VLNEXT];
978e595f 834 mutex_unlock(&tty->termios_mutex);
1da177e4
LT
835 return copy_to_user(ltchars, &tmp, sizeof(tmp)) ? -EFAULT : 0;
836}
837
355d95a1 838static int set_ltchars(struct tty_struct *tty, struct ltchars __user *ltchars)
1da177e4
LT
839{
840 struct ltchars tmp;
841
842 if (copy_from_user(&tmp, ltchars, sizeof(tmp)))
843 return -EFAULT;
844
978e595f 845 mutex_lock(&tty->termios_mutex);
1da177e4 846 tty->termios->c_cc[VSUSP] = tmp.t_suspc;
355d95a1
AC
847 /* what is dsuspc anyway? */
848 tty->termios->c_cc[VEOL2] = tmp.t_dsuspc;
1da177e4 849 tty->termios->c_cc[VREPRINT] = tmp.t_rprntc;
355d95a1
AC
850 /* what is flushc anyway? */
851 tty->termios->c_cc[VEOL2] = tmp.t_flushc;
1da177e4
LT
852 tty->termios->c_cc[VWERASE] = tmp.t_werasc;
853 tty->termios->c_cc[VLNEXT] = tmp.t_lnextc;
978e595f 854 mutex_unlock(&tty->termios_mutex);
1da177e4
LT
855 return 0;
856}
857#endif
858
af9b897e
AC
859/**
860 * send_prio_char - send priority character
861 *
862 * Send a high priority character to the tty even if stopped
863 *
5f412b24 864 * Locking: none for xchar method, write ordering for write method.
1da177e4 865 */
af9b897e 866
5f412b24 867static int send_prio_char(struct tty_struct *tty, char ch)
1da177e4
LT
868{
869 int was_stopped = tty->stopped;
870
f34d7a5b
AC
871 if (tty->ops->send_xchar) {
872 tty->ops->send_xchar(tty, ch);
5f412b24 873 return 0;
1da177e4 874 }
5f412b24 875
9c1729db 876 if (tty_write_lock(tty, 0) < 0)
5f412b24
AC
877 return -ERESTARTSYS;
878
1da177e4
LT
879 if (was_stopped)
880 start_tty(tty);
f34d7a5b 881 tty->ops->write(tty, &ch, 1);
1da177e4
LT
882 if (was_stopped)
883 stop_tty(tty);
9c1729db 884 tty_write_unlock(tty);
5f412b24 885 return 0;
1da177e4
LT
886}
887
1c2630cc
AC
888/**
889 * tty_change_softcar - carrier change ioctl helper
890 * @tty: tty to update
891 * @arg: enable/disable CLOCAL
892 *
893 * Perform a change to the CLOCAL state and call into the driver
894 * layer to make it visible. All done with the termios mutex
895 */
896
897static int tty_change_softcar(struct tty_struct *tty, int arg)
898{
899 int ret = 0;
900 int bit = arg ? CLOCAL : 0;
f34d7a5b 901 struct ktermios old;
1c2630cc
AC
902
903 mutex_lock(&tty->termios_mutex);
f34d7a5b 904 old = *tty->termios;
1c2630cc
AC
905 tty->termios->c_cflag &= ~CLOCAL;
906 tty->termios->c_cflag |= bit;
f34d7a5b
AC
907 if (tty->ops->set_termios)
908 tty->ops->set_termios(tty, &old);
1c2630cc
AC
909 if ((tty->termios->c_cflag & CLOCAL) != bit)
910 ret = -EINVAL;
911 mutex_unlock(&tty->termios_mutex);
912 return ret;
913}
914
0fc00e24
AC
915/**
916 * tty_mode_ioctl - mode related ioctls
917 * @tty: tty for the ioctl
918 * @file: file pointer for the tty
919 * @cmd: command
920 * @arg: ioctl argument
921 *
922 * Perform non line discipline specific mode control ioctls. This
923 * is designed to be called by line disciplines to ensure they provide
924 * consistent mode setting.
925 */
926
355d95a1 927int tty_mode_ioctl(struct tty_struct *tty, struct file *file,
0fc00e24 928 unsigned int cmd, unsigned long arg)
1da177e4 929{
355d95a1 930 struct tty_struct *real_tty;
1da177e4 931 void __user *p = (void __user *)arg;
8f520021 932 int ret = 0;
1da177e4
LT
933
934 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
935 tty->driver->subtype == PTY_TYPE_MASTER)
936 real_tty = tty->link;
937 else
938 real_tty = tty;
939
940 switch (cmd) {
941#ifdef TIOCGETP
355d95a1
AC
942 case TIOCGETP:
943 return get_sgttyb(real_tty, (struct sgttyb __user *) arg);
944 case TIOCSETP:
945 case TIOCSETN:
946 return set_sgttyb(real_tty, (struct sgttyb __user *) arg);
1da177e4
LT
947#endif
948#ifdef TIOCGETC
355d95a1
AC
949 case TIOCGETC:
950 return get_tchars(real_tty, p);
951 case TIOCSETC:
952 return set_tchars(real_tty, p);
1da177e4
LT
953#endif
954#ifdef TIOCGLTC
355d95a1
AC
955 case TIOCGLTC:
956 return get_ltchars(real_tty, p);
957 case TIOCSLTC:
958 return set_ltchars(real_tty, p);
1da177e4 959#endif
355d95a1
AC
960 case TCSETSF:
961 return set_termios(real_tty, p, TERMIOS_FLUSH | TERMIOS_WAIT | TERMIOS_OLD);
962 case TCSETSW:
963 return set_termios(real_tty, p, TERMIOS_WAIT | TERMIOS_OLD);
964 case TCSETS:
965 return set_termios(real_tty, p, TERMIOS_OLD);
edc6afc5 966#ifndef TCGETS2
355d95a1 967 case TCGETS:
8f520021 968 mutex_lock(&real_tty->termios_mutex);
355d95a1 969 if (kernel_termios_to_user_termios((struct termios __user *)arg, real_tty->termios))
8f520021
AC
970 ret = -EFAULT;
971 mutex_unlock(&real_tty->termios_mutex);
972 return ret;
edc6afc5 973#else
355d95a1 974 case TCGETS:
8f520021 975 mutex_lock(&real_tty->termios_mutex);
355d95a1 976 if (kernel_termios_to_user_termios_1((struct termios __user *)arg, real_tty->termios))
8f520021
AC
977 ret = -EFAULT;
978 mutex_unlock(&real_tty->termios_mutex);
979 return ret;
355d95a1 980 case TCGETS2:
8f520021 981 mutex_lock(&real_tty->termios_mutex);
355d95a1 982 if (kernel_termios_to_user_termios((struct termios2 __user *)arg, real_tty->termios))
8f520021
AC
983 ret = -EFAULT;
984 mutex_unlock(&real_tty->termios_mutex);
985 return ret;
355d95a1
AC
986 case TCSETSF2:
987 return set_termios(real_tty, p, TERMIOS_FLUSH | TERMIOS_WAIT);
988 case TCSETSW2:
989 return set_termios(real_tty, p, TERMIOS_WAIT);
990 case TCSETS2:
991 return set_termios(real_tty, p, 0);
edc6afc5 992#endif
355d95a1
AC
993 case TCGETA:
994 return get_termio(real_tty, p);
995 case TCSETAF:
996 return set_termios(real_tty, p, TERMIOS_FLUSH | TERMIOS_WAIT | TERMIOS_TERMIO);
997 case TCSETAW:
998 return set_termios(real_tty, p, TERMIOS_WAIT | TERMIOS_TERMIO);
999 case TCSETA:
1000 return set_termios(real_tty, p, TERMIOS_TERMIO);
0fc00e24 1001#ifndef TCGETS2
355d95a1 1002 case TIOCGLCKTRMIOS:
8f520021 1003 mutex_lock(&real_tty->termios_mutex);
355d95a1 1004 if (kernel_termios_to_user_termios((struct termios __user *)arg, real_tty->termios_locked))
8f520021
AC
1005 ret = -EFAULT;
1006 mutex_unlock(&real_tty->termios_mutex);
1007 return ret;
355d95a1
AC
1008 case TIOCSLCKTRMIOS:
1009 if (!capable(CAP_SYS_ADMIN))
1010 return -EPERM;
8f520021 1011 mutex_lock(&real_tty->termios_mutex);
355d95a1
AC
1012 if (user_termios_to_kernel_termios(real_tty->termios_locked,
1013 (struct termios __user *) arg))
8f520021
AC
1014 ret = -EFAULT;
1015 mutex_unlock(&real_tty->termios_mutex);
1016 return ret;
0fc00e24 1017#else
355d95a1 1018 case TIOCGLCKTRMIOS:
8f520021 1019 mutex_lock(&real_tty->termios_mutex);
355d95a1 1020 if (kernel_termios_to_user_termios_1((struct termios __user *)arg, real_tty->termios_locked))
8f520021
AC
1021 ret = -EFAULT;
1022 mutex_unlock(&real_tty->termios_mutex);
1023 return ret;
355d95a1
AC
1024 case TIOCSLCKTRMIOS:
1025 if (!capable(CAP_SYS_ADMIN))
8f520021
AC
1026 ret = -EPERM;
1027 mutex_lock(&real_tty->termios_mutex);
355d95a1
AC
1028 if (user_termios_to_kernel_termios_1(real_tty->termios_locked,
1029 (struct termios __user *) arg))
8f520021
AC
1030 ret = -EFAULT;
1031 mutex_unlock(&real_tty->termios_mutex);
1032 return ret;
0fc00e24 1033#endif
1d65b4a0
AC
1034#ifdef TCGETX
1035 case TCGETX:
1036 if (real_tty->termiox == NULL)
1037 return -EINVAL;
8f520021 1038 mutex_lock(&real_tty->termios_mutex);
1d65b4a0 1039 if (copy_to_user(p, real_tty->termiox, sizeof(struct termiox)))
8f520021
AC
1040 ret = -EFAULT;
1041 mutex_unlock(&real_tty->termios_mutex);
1042 return ret;
1d65b4a0
AC
1043 case TCSETX:
1044 return set_termiox(real_tty, p, 0);
1045 case TCSETXW:
1046 return set_termiox(real_tty, p, TERMIOS_WAIT);
1047 case TCSETXF:
1048 return set_termiox(real_tty, p, TERMIOS_FLUSH);
1049#endif
355d95a1 1050 case TIOCGSOFTCAR:
8f520021
AC
1051 mutex_lock(&real_tty->termios_mutex);
1052 ret = put_user(C_CLOCAL(real_tty) ? 1 : 0,
355d95a1 1053 (int __user *)arg);
8f520021
AC
1054 mutex_unlock(&real_tty->termios_mutex);
1055 return ret;
355d95a1
AC
1056 case TIOCSSOFTCAR:
1057 if (get_user(arg, (unsigned int __user *) arg))
1058 return -EFAULT;
f753f327 1059 return tty_change_softcar(real_tty, arg);
355d95a1
AC
1060 default:
1061 return -ENOIOCTLCMD;
0fc00e24
AC
1062 }
1063}
0fc00e24
AC
1064EXPORT_SYMBOL_GPL(tty_mode_ioctl);
1065
1066int tty_perform_flush(struct tty_struct *tty, unsigned long arg)
1067{
1068 struct tty_ldisc *ld;
1069 int retval = tty_check_change(tty);
1070 if (retval)
1071 return retval;
1072
c0253eec 1073 ld = tty_ldisc_ref_wait(tty);
0fc00e24
AC
1074 switch (arg) {
1075 case TCIFLUSH:
a352def2
AC
1076 if (ld && ld->ops->flush_buffer)
1077 ld->ops->flush_buffer(tty);
0fc00e24
AC
1078 break;
1079 case TCIOFLUSH:
a352def2
AC
1080 if (ld && ld->ops->flush_buffer)
1081 ld->ops->flush_buffer(tty);
0fc00e24
AC
1082 /* fall through */
1083 case TCOFLUSH:
f34d7a5b 1084 tty_driver_flush_buffer(tty);
0fc00e24
AC
1085 break;
1086 default:
1087 tty_ldisc_deref(ld);
1088 return -EINVAL;
1089 }
1090 tty_ldisc_deref(ld);
1091 return 0;
1092}
0fc00e24
AC
1093EXPORT_SYMBOL_GPL(tty_perform_flush);
1094
47afa7a5 1095int n_tty_ioctl_helper(struct tty_struct *tty, struct file *file,
0fc00e24
AC
1096 unsigned int cmd, unsigned long arg)
1097{
04f378b1 1098 unsigned long flags;
0fc00e24
AC
1099 int retval;
1100
0fc00e24 1101 switch (cmd) {
355d95a1
AC
1102 case TCXONC:
1103 retval = tty_check_change(tty);
1104 if (retval)
1105 return retval;
1106 switch (arg) {
1107 case TCOOFF:
1108 if (!tty->flow_stopped) {
1109 tty->flow_stopped = 1;
1110 stop_tty(tty);
1da177e4 1111 }
355d95a1
AC
1112 break;
1113 case TCOON:
1114 if (tty->flow_stopped) {
1115 tty->flow_stopped = 0;
1116 start_tty(tty);
1117 }
1118 break;
1119 case TCIOFF:
1120 if (STOP_CHAR(tty) != __DISABLED_CHAR)
1121 return send_prio_char(tty, STOP_CHAR(tty));
1122 break;
1123 case TCION:
1124 if (START_CHAR(tty) != __DISABLED_CHAR)
1125 return send_prio_char(tty, START_CHAR(tty));
1126 break;
1da177e4 1127 default:
355d95a1 1128 return -EINVAL;
1da177e4 1129 }
355d95a1
AC
1130 return 0;
1131 case TCFLSH:
1132 return tty_perform_flush(tty, arg);
355d95a1
AC
1133 case TIOCPKT:
1134 {
1135 int pktmode;
1136
1137 if (tty->driver->type != TTY_DRIVER_TYPE_PTY ||
1138 tty->driver->subtype != PTY_TYPE_MASTER)
1139 return -ENOTTY;
1140 if (get_user(pktmode, (int __user *) arg))
1141 return -EFAULT;
04f378b1 1142 spin_lock_irqsave(&tty->ctrl_lock, flags);
355d95a1
AC
1143 if (pktmode) {
1144 if (!tty->packet) {
1145 tty->packet = 1;
1146 tty->link->ctrl_status = 0;
1147 }
1148 } else
1149 tty->packet = 0;
04f378b1 1150 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
355d95a1
AC
1151 return 0;
1152 }
1153 default:
1154 /* Try the mode commands */
1155 return tty_mode_ioctl(tty, file, cmd, arg);
1156 }
1da177e4 1157}
47afa7a5 1158EXPORT_SYMBOL(n_tty_ioctl_helper);