blob: 93bfa1d6cc92301e38cca48dbf99086a6dce2e78 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Arjan van de Ven5785c952006-09-29 02:00:43 -070023#include <linux/mutex.h>
Alan Cox0ee9cbb2008-04-30 00:53:32 -070024#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
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
Alan Coxedc6afc2006-12-08 02:38:44 -080040#define TERMIOS_OLD 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Alan Coxaf9b8972006-08-27 01:24:01 -070042
Alan Coxf34d7a52008-04-30 00:54:13 -070043int tty_chars_in_buffer(struct tty_struct *tty)
44{
45 if (tty->ops->chars_in_buffer)
46 return tty->ops->chars_in_buffer(tty);
47 else
48 return 0;
49}
50
51EXPORT_SYMBOL(tty_chars_in_buffer);
52
53int tty_write_room(struct tty_struct *tty)
54{
55 if (tty->ops->write_room)
56 return tty->ops->write_room(tty);
57 return 2048;
58}
59
60EXPORT_SYMBOL(tty_write_room);
61
62void tty_driver_flush_buffer(struct tty_struct *tty)
63{
64 if (tty->ops->flush_buffer)
65 tty->ops->flush_buffer(tty);
66}
67
68EXPORT_SYMBOL(tty_driver_flush_buffer);
69
Alan Cox39c2e602008-04-30 00:54:18 -070070void tty_throttle(struct tty_struct *tty)
71{
72 /* check TTY_THROTTLED first so it indicates our state */
73 if (!test_and_set_bit(TTY_THROTTLED, &tty->flags) &&
74 tty->ops->throttle)
75 tty->ops->throttle(tty);
76}
77EXPORT_SYMBOL(tty_throttle);
78
79void tty_unthrottle(struct tty_struct *tty)
80{
81 if (test_and_clear_bit(TTY_THROTTLED, &tty->flags) &&
82 tty->ops->unthrottle)
83 tty->ops->unthrottle(tty);
84}
85EXPORT_SYMBOL(tty_unthrottle);
Alan Coxf34d7a52008-04-30 00:54:13 -070086
Alan Coxaf9b8972006-08-27 01:24:01 -070087/**
88 * tty_wait_until_sent - wait for I/O to finish
89 * @tty: tty we are waiting for
90 * @timeout: how long we will wait
91 *
92 * Wait for characters pending in a tty driver to hit the wire, or
93 * for a timeout to occur (eg due to flow control)
94 *
95 * Locking: none
96 */
97
Alan Cox355d95a12008-02-08 04:18:48 -080098void tty_wait_until_sent(struct tty_struct *tty, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#ifdef TTY_DEBUG_WAIT_UNTIL_SENT
101 char buf[64];
Alan Cox355d95a12008-02-08 04:18:48 -0800102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 printk(KERN_DEBUG "%s wait until sent...\n", tty_name(tty, buf));
104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (!timeout)
106 timeout = MAX_SCHEDULE_TIMEOUT;
Jiri Slaby5a52bd42007-07-15 23:40:18 -0700107 if (wait_event_interruptible_timeout(tty->write_wait,
Alan Coxf34d7a52008-04-30 00:54:13 -0700108 !tty_chars_in_buffer(tty), timeout) >= 0) {
109 if (tty->ops->wait_until_sent)
110 tty->ops->wait_until_sent(tty, timeout);
Alan Cox0ee9cbb2008-04-30 00:53:32 -0700111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113EXPORT_SYMBOL(tty_wait_until_sent);
114
Alan Coxedc6afc2006-12-08 02:38:44 -0800115static void unset_locked_termios(struct ktermios *termios,
116 struct ktermios *old,
117 struct ktermios *locked)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 int i;
Alan Cox355d95a12008-02-08 04:18:48 -0800120
121#define NOSET_MASK(x, y, z) (x = ((x) & ~(z)) | ((y) & (z)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (!locked) {
124 printk(KERN_WARNING "Warning?!? termios_locked is NULL.\n");
125 return;
126 }
127
128 NOSET_MASK(termios->c_iflag, old->c_iflag, locked->c_iflag);
129 NOSET_MASK(termios->c_oflag, old->c_oflag, locked->c_oflag);
130 NOSET_MASK(termios->c_cflag, old->c_cflag, locked->c_cflag);
131 NOSET_MASK(termios->c_lflag, old->c_lflag, locked->c_lflag);
132 termios->c_line = locked->c_line ? old->c_line : termios->c_line;
Alan Cox355d95a12008-02-08 04:18:48 -0800133 for (i = 0; i < NCCS; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 termios->c_cc[i] = locked->c_cc[i] ?
135 old->c_cc[i] : termios->c_cc[i];
Alan Coxedc6afc2006-12-08 02:38:44 -0800136 /* FIXME: What should we do for i/ospeed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Alan Coxedc6afc2006-12-08 02:38:44 -0800139/*
140 * Routine which returns the baud rate of the tty
141 *
142 * Note that the baud_table needs to be kept in sync with the
143 * include/asm/termbits.h file.
144 */
145static const speed_t baud_table[] = {
146 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
147 9600, 19200, 38400, 57600, 115200, 230400, 460800,
148#ifdef __sparc__
149 76800, 153600, 307200, 614400, 921600
150#else
151 500000, 576000, 921600, 1000000, 1152000, 1500000, 2000000,
152 2500000, 3000000, 3500000, 4000000
153#endif
154};
155
156#ifndef __sparc__
157static const tcflag_t baud_bits[] = {
158 B0, B50, B75, B110, B134, B150, B200, B300, B600,
159 B1200, B1800, B2400, B4800, B9600, B19200, B38400,
160 B57600, B115200, B230400, B460800, B500000, B576000,
161 B921600, B1000000, B1152000, B1500000, B2000000, B2500000,
162 B3000000, B3500000, B4000000
163};
164#else
165static const tcflag_t baud_bits[] = {
166 B0, B50, B75, B110, B134, B150, B200, B300, B600,
167 B1200, B1800, B2400, B4800, B9600, B19200, B38400,
168 B57600, B115200, B230400, B460800, B76800, B153600,
169 B307200, B614400, B921600
170};
171#endif
172
173static int n_baud_table = ARRAY_SIZE(baud_table);
174
175/**
176 * tty_termios_baud_rate
177 * @termios: termios structure
178 *
179 * Convert termios baud rate data into a speed. This should be called
180 * with the termios lock held if this termios is a terminal termios
181 * structure. May change the termios data. Device drivers can call this
182 * function but should use ->c_[io]speed directly as they are updated.
183 *
184 * Locking: none
185 */
186
187speed_t tty_termios_baud_rate(struct ktermios *termios)
188{
189 unsigned int cbaud;
190
191 cbaud = termios->c_cflag & CBAUD;
192
193#ifdef BOTHER
194 /* Magic token for arbitary speed via c_ispeed/c_ospeed */
195 if (cbaud == BOTHER)
196 return termios->c_ospeed;
197#endif
198 if (cbaud & CBAUDEX) {
199 cbaud &= ~CBAUDEX;
200
201 if (cbaud < 1 || cbaud + 15 > n_baud_table)
202 termios->c_cflag &= ~CBAUDEX;
203 else
204 cbaud += 15;
205 }
206 return baud_table[cbaud];
207}
Alan Coxedc6afc2006-12-08 02:38:44 -0800208EXPORT_SYMBOL(tty_termios_baud_rate);
209
210/**
211 * tty_termios_input_baud_rate
212 * @termios: termios structure
213 *
214 * Convert termios baud rate data into a speed. This should be called
215 * with the termios lock held if this termios is a terminal termios
216 * structure. May change the termios data. Device drivers can call this
217 * function but should use ->c_[io]speed directly as they are updated.
218 *
219 * Locking: none
220 */
221
222speed_t tty_termios_input_baud_rate(struct ktermios *termios)
223{
224#ifdef IBSHIFT
225 unsigned int cbaud = (termios->c_cflag >> IBSHIFT) & CBAUD;
226
227 if (cbaud == B0)
228 return tty_termios_baud_rate(termios);
229
230 /* Magic token for arbitary speed via c_ispeed*/
231 if (cbaud == BOTHER)
232 return termios->c_ispeed;
233
234 if (cbaud & CBAUDEX) {
235 cbaud &= ~CBAUDEX;
236
237 if (cbaud < 1 || cbaud + 15 > n_baud_table)
238 termios->c_cflag &= ~(CBAUDEX << IBSHIFT);
239 else
240 cbaud += 15;
241 }
242 return baud_table[cbaud];
243#else
244 return tty_termios_baud_rate(termios);
245#endif
246}
Alan Coxedc6afc2006-12-08 02:38:44 -0800247EXPORT_SYMBOL(tty_termios_input_baud_rate);
248
Alan Coxedc6afc2006-12-08 02:38:44 -0800249/**
250 * tty_termios_encode_baud_rate
Alan Cox78137e32007-02-10 01:45:57 -0800251 * @termios: ktermios structure holding user requested state
Alan Coxedc6afc2006-12-08 02:38:44 -0800252 * @ispeed: input speed
253 * @ospeed: output speed
254 *
255 * Encode the speeds set into the passed termios structure. This is
256 * used as a library helper for drivers os that they can report back
257 * the actual speed selected when it differs from the speed requested
258 *
Alan Cox78137e32007-02-10 01:45:57 -0800259 * For maximal back compatibility with legacy SYS5/POSIX *nix behaviour
260 * we need to carefully set the bits when the user does not get the
261 * desired speed. We allow small margins and preserve as much of possible
262 * of the input intent to keep compatiblity.
Alan Coxedc6afc2006-12-08 02:38:44 -0800263 *
264 * Locking: Caller should hold termios lock. This is already held
265 * when calling this function from the driver termios handler.
Alan Cox5f519d72007-10-16 23:30:07 -0700266 *
267 * The ifdefs deal with platforms whose owners have yet to update them
268 * and will all go away once this is done.
Alan Coxedc6afc2006-12-08 02:38:44 -0800269 */
270
Maciej W. Rozycki75e8b712007-10-18 03:04:35 -0700271void tty_termios_encode_baud_rate(struct ktermios *termios,
272 speed_t ibaud, speed_t obaud)
Alan Coxedc6afc2006-12-08 02:38:44 -0800273{
274 int i = 0;
Alan Cox78137e32007-02-10 01:45:57 -0800275 int ifound = -1, ofound = -1;
276 int iclose = ibaud/50, oclose = obaud/50;
277 int ibinput = 0;
Alan Coxedc6afc2006-12-08 02:38:44 -0800278
Alan Cox5f519d72007-10-16 23:30:07 -0700279 if (obaud == 0) /* CD dropped */
280 ibaud = 0; /* Clear ibaud to be sure */
281
Alan Coxedc6afc2006-12-08 02:38:44 -0800282 termios->c_ispeed = ibaud;
283 termios->c_ospeed = obaud;
284
Alan Cox5f519d72007-10-16 23:30:07 -0700285#ifdef BOTHER
Alan Cox78137e32007-02-10 01:45:57 -0800286 /* If the user asked for a precise weird speed give a precise weird
287 answer. If they asked for a Bfoo speed they many have problems
288 digesting non-exact replies so fuzz a bit */
289
290 if ((termios->c_cflag & CBAUD) == BOTHER)
291 oclose = 0;
292 if (((termios->c_cflag >> IBSHIFT) & CBAUD) == BOTHER)
293 iclose = 0;
294 if ((termios->c_cflag >> IBSHIFT) & CBAUD)
295 ibinput = 1; /* An input speed was specified */
Alan Cox5f519d72007-10-16 23:30:07 -0700296#endif
Alan Coxedc6afc2006-12-08 02:38:44 -0800297 termios->c_cflag &= ~CBAUD;
Alan Coxedc6afc2006-12-08 02:38:44 -0800298
Alan Cox5f519d72007-10-16 23:30:07 -0700299 /*
300 * Our goal is to find a close match to the standard baud rate
301 * returned. Walk the baud rate table and if we get a very close
302 * match then report back the speed as a POSIX Bxxxx value by
303 * preference
304 */
305
Alan Coxedc6afc2006-12-08 02:38:44 -0800306 do {
Maciej W. Rozycki75e8b712007-10-18 03:04:35 -0700307 if (obaud - oclose <= baud_table[i] &&
308 obaud + oclose >= baud_table[i]) {
Alan Coxedc6afc2006-12-08 02:38:44 -0800309 termios->c_cflag |= baud_bits[i];
Alan Cox78137e32007-02-10 01:45:57 -0800310 ofound = i;
Alan Coxedc6afc2006-12-08 02:38:44 -0800311 }
Maciej W. Rozycki75e8b712007-10-18 03:04:35 -0700312 if (ibaud - iclose <= baud_table[i] &&
313 ibaud + iclose >= baud_table[i]) {
314 /* For the case input == output don't set IBAUD bits
315 if the user didn't do so */
Alan Cox5f519d72007-10-16 23:30:07 -0700316 if (ofound == i && !ibinput)
317 ifound = i;
318#ifdef IBSHIFT
319 else {
320 ifound = i;
Alan Cox78137e32007-02-10 01:45:57 -0800321 termios->c_cflag |= (baud_bits[i] << IBSHIFT);
Alan Cox5f519d72007-10-16 23:30:07 -0700322 }
323#endif
Alan Coxedc6afc2006-12-08 02:38:44 -0800324 }
Jiri Slaby68043962007-07-15 23:40:18 -0700325 } while (++i < n_baud_table);
Alan Cox5f519d72007-10-16 23:30:07 -0700326
327 /*
328 * If we found no match then use BOTHER if provided or warn
329 * the user their platform maintainer needs to wake up if not.
330 */
331#ifdef BOTHER
Alan Cox78137e32007-02-10 01:45:57 -0800332 if (ofound == -1)
Alan Coxedc6afc2006-12-08 02:38:44 -0800333 termios->c_cflag |= BOTHER;
Alan Cox78137e32007-02-10 01:45:57 -0800334 /* Set exact input bits only if the input and output differ or the
335 user already did */
Jiri Slaby68043962007-07-15 23:40:18 -0700336 if (ifound == -1 && (ibaud != obaud || ibinput))
Alan Coxedc6afc2006-12-08 02:38:44 -0800337 termios->c_cflag |= (BOTHER << IBSHIFT);
Alan Cox5f519d72007-10-16 23:30:07 -0700338#else
339 if (ifound == -1 || ofound == -1) {
340 static int warned;
341 if (!warned++)
342 printk(KERN_WARNING "tty: Unable to return correct "
343 "speed data as your architecture needs updating.\n");
344 }
345#endif
Alan Coxedc6afc2006-12-08 02:38:44 -0800346}
Alan Coxedc6afc2006-12-08 02:38:44 -0800347EXPORT_SYMBOL_GPL(tty_termios_encode_baud_rate);
348
Alan Cox5f519d72007-10-16 23:30:07 -0700349void tty_encode_baud_rate(struct tty_struct *tty, speed_t ibaud, speed_t obaud)
350{
351 tty_termios_encode_baud_rate(tty->termios, ibaud, obaud);
352}
353EXPORT_SYMBOL_GPL(tty_encode_baud_rate);
Alan Coxedc6afc2006-12-08 02:38:44 -0800354
355/**
356 * tty_get_baud_rate - get tty bit rates
357 * @tty: tty to query
358 *
359 * Returns the baud rate as an integer for this terminal. The
360 * termios lock must be held by the caller and the terminal bit
361 * flags may be updated.
362 *
363 * Locking: none
364 */
365
366speed_t tty_get_baud_rate(struct tty_struct *tty)
367{
368 speed_t baud = tty_termios_baud_rate(tty->termios);
369
370 if (baud == 38400 && tty->alt_speed) {
371 if (!tty->warned) {
372 printk(KERN_WARNING "Use of setserial/setrocket to "
373 "set SPD_* flags is deprecated\n");
374 tty->warned = 1;
375 }
376 baud = tty->alt_speed;
377 }
378
379 return baud;
380}
Alan Coxedc6afc2006-12-08 02:38:44 -0800381EXPORT_SYMBOL(tty_get_baud_rate);
382
Alan Coxaf9b8972006-08-27 01:24:01 -0700383/**
Alan Cox5f519d72007-10-16 23:30:07 -0700384 * tty_termios_copy_hw - copy hardware settings
385 * @new: New termios
386 * @old: Old termios
387 *
388 * Propogate the hardware specific terminal setting bits from
389 * the old termios structure to the new one. This is used in cases
390 * where the hardware does not support reconfiguration or as a helper
391 * in some cases where only minimal reconfiguration is supported
392 */
393
394void tty_termios_copy_hw(struct ktermios *new, struct ktermios *old)
395{
396 /* The bits a dumb device handles in software. Smart devices need
397 to always provide a set_termios method */
398 new->c_cflag &= HUPCL | CREAD | CLOCAL;
399 new->c_cflag |= old->c_cflag & ~(HUPCL | CREAD | CLOCAL);
400 new->c_ispeed = old->c_ispeed;
401 new->c_ospeed = old->c_ospeed;
402}
Alan Cox5f519d72007-10-16 23:30:07 -0700403EXPORT_SYMBOL(tty_termios_copy_hw);
404
405/**
Alan Coxbf5e5832008-01-08 14:55:51 +0000406 * tty_termios_hw_change - check for setting change
407 * @a: termios
408 * @b: termios to compare
409 *
410 * Check if any of the bits that affect a dumb device have changed
411 * between the two termios structures, or a speed change is needed.
412 */
413
414int tty_termios_hw_change(struct ktermios *a, struct ktermios *b)
415{
416 if (a->c_ispeed != b->c_ispeed || a->c_ospeed != b->c_ospeed)
417 return 1;
418 if ((a->c_cflag ^ b->c_cflag) & ~(HUPCL | CREAD | CLOCAL))
419 return 1;
420 return 0;
421}
422EXPORT_SYMBOL(tty_termios_hw_change);
423
424/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700425 * change_termios - update termios values
426 * @tty: tty to update
427 * @new_termios: desired new value
428 *
429 * Perform updates to the termios values set on this terminal. There
430 * is a bit of layering violation here with n_tty in terms of the
431 * internal knowledge of this function.
432 *
433 * Locking: termios_sem
434 */
435
Alan Cox355d95a12008-02-08 04:18:48 -0800436static void change_termios(struct tty_struct *tty, struct ktermios *new_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 int canon_change;
Alan Cox978e5952008-04-30 00:53:59 -0700439 struct ktermios old_termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 struct tty_ldisc *ld;
Alan Cox04f378b2008-04-30 00:53:29 -0700441 unsigned long flags;
Alan Cox355d95a12008-02-08 04:18:48 -0800442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /*
444 * Perform the actual termios internal changes under lock.
445 */
Alan Cox355d95a12008-02-08 04:18:48 -0800446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /* FIXME: we need to decide on some locking/ordering semantics
449 for the set_termios notification eventually */
Arjan van de Ven5785c952006-09-29 02:00:43 -0700450 mutex_lock(&tty->termios_mutex);
Alan Cox978e5952008-04-30 00:53:59 -0700451 old_termios = *tty->termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 *tty->termios = *new_termios;
453 unset_locked_termios(tty->termios, &old_termios, tty->termios_locked);
454 canon_change = (old_termios.c_lflag ^ tty->termios->c_lflag) & ICANON;
455 if (canon_change) {
456 memset(&tty->read_flags, 0, sizeof tty->read_flags);
457 tty->canon_head = tty->read_tail;
458 tty->canon_data = 0;
459 tty->erasing = 0;
460 }
Alan Cox355d95a12008-02-08 04:18:48 -0800461
Alan Cox5f519d72007-10-16 23:30:07 -0700462 /* This bit should be in the ldisc code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (canon_change && !L_ICANON(tty) && tty->read_cnt)
464 /* Get characters left over from canonical mode. */
465 wake_up_interruptible(&tty->read_wait);
466
467 /* See if packet mode change of state. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (tty->link && tty->link->packet) {
469 int old_flow = ((old_termios.c_iflag & IXON) &&
470 (old_termios.c_cc[VSTOP] == '\023') &&
471 (old_termios.c_cc[VSTART] == '\021'));
472 int new_flow = (I_IXON(tty) &&
473 STOP_CHAR(tty) == '\023' &&
474 START_CHAR(tty) == '\021');
475 if (old_flow != new_flow) {
Alan Cox04f378b2008-04-30 00:53:29 -0700476 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 tty->ctrl_status &= ~(TIOCPKT_DOSTOP | TIOCPKT_NOSTOP);
478 if (new_flow)
479 tty->ctrl_status |= TIOCPKT_DOSTOP;
480 else
481 tty->ctrl_status |= TIOCPKT_NOSTOP;
Alan Cox04f378b2008-04-30 00:53:29 -0700482 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 wake_up_interruptible(&tty->link->read_wait);
484 }
485 }
Alan Cox355d95a12008-02-08 04:18:48 -0800486
Alan Coxf34d7a52008-04-30 00:54:13 -0700487 if (tty->ops->set_termios)
488 (*tty->ops->set_termios)(tty, &old_termios);
Alan Cox5f519d72007-10-16 23:30:07 -0700489 else
490 tty_termios_copy_hw(tty->termios, &old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 ld = tty_ldisc_ref(tty);
493 if (ld != NULL) {
Alan Coxa352def2008-07-16 21:53:12 +0100494 if (ld->ops->set_termios)
495 (ld->ops->set_termios)(tty, &old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 tty_ldisc_deref(ld);
497 }
Arjan van de Ven5785c952006-09-29 02:00:43 -0700498 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
Alan Coxaf9b8972006-08-27 01:24:01 -0700501/**
502 * set_termios - set termios values for a tty
503 * @tty: terminal device
504 * @arg: user data
505 * @opt: option information
506 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200507 * Helper function to prepare termios data and run necessary other
Alan Coxaf9b8972006-08-27 01:24:01 -0700508 * functions before using change_termios to do the actual changes.
509 *
510 * Locking:
511 * Called functions take ldisc and termios_sem locks
512 */
513
Alan Cox355d95a12008-02-08 04:18:48 -0800514static int set_termios(struct tty_struct *tty, void __user *arg, int opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Alan Coxedc6afc2006-12-08 02:38:44 -0800516 struct ktermios tmp_termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct tty_ldisc *ld;
518 int retval = tty_check_change(tty);
519
520 if (retval)
521 return retval;
522
Alan Cox978e5952008-04-30 00:53:59 -0700523 mutex_lock(&tty->termios_mutex);
Alan Cox64bb6c52006-12-08 02:38:47 -0800524 memcpy(&tmp_termios, tty->termios, sizeof(struct ktermios));
Alan Cox978e5952008-04-30 00:53:59 -0700525 mutex_unlock(&tty->termios_mutex);
Alan Cox64bb6c52006-12-08 02:38:47 -0800526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (opt & TERMIOS_TERMIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (user_termio_to_kernel_termios(&tmp_termios,
529 (struct termio __user *)arg))
530 return -EFAULT;
Alan Coxedc6afc2006-12-08 02:38:44 -0800531#ifdef TCGETS2
532 } else if (opt & TERMIOS_OLD) {
Alan Coxedc6afc2006-12-08 02:38:44 -0800533 if (user_termios_to_kernel_termios_1(&tmp_termios,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 (struct termios __user *)arg))
535 return -EFAULT;
Alan Cox64bb6c52006-12-08 02:38:47 -0800536 } else {
537 if (user_termios_to_kernel_termios(&tmp_termios,
538 (struct termios2 __user *)arg))
539 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
Alan Cox64bb6c52006-12-08 02:38:47 -0800541#else
542 } else if (user_termios_to_kernel_termios(&tmp_termios,
543 (struct termios __user *)arg))
544 return -EFAULT;
545#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Alan Cox355d95a12008-02-08 04:18:48 -0800547 /* If old style Bfoo values are used then load c_ispeed/c_ospeed
548 * with the real speed so its unconditionally usable */
Alan Coxedc6afc2006-12-08 02:38:44 -0800549 tmp_termios.c_ispeed = tty_termios_input_baud_rate(&tmp_termios);
550 tmp_termios.c_ospeed = tty_termios_baud_rate(&tmp_termios);
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 ld = tty_ldisc_ref(tty);
Alan Cox355d95a12008-02-08 04:18:48 -0800553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (ld != NULL) {
Alan Coxa352def2008-07-16 21:53:12 +0100555 if ((opt & TERMIOS_FLUSH) && ld->ops->flush_buffer)
556 ld->ops->flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 tty_ldisc_deref(ld);
558 }
Alan Cox355d95a12008-02-08 04:18:48 -0800559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (opt & TERMIOS_WAIT) {
561 tty_wait_until_sent(tty, 0);
562 if (signal_pending(current))
563 return -EINTR;
564 }
565
566 change_termios(tty, &tmp_termios);
Alan Cox5f519d72007-10-16 23:30:07 -0700567
568 /* FIXME: Arguably if tmp_termios == tty->termios AND the
569 actual requested termios was not tmp_termios then we may
570 want to return an error as no user requested change has
571 succeeded */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return 0;
573}
574
Alan Cox355d95a12008-02-08 04:18:48 -0800575static int get_termio(struct tty_struct *tty, struct termio __user *termio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 if (kernel_termios_to_user_termio(termio, tty->termios))
578 return -EFAULT;
579 return 0;
580}
581
Alan Cox1d65b4a2008-10-13 10:38:18 +0100582
583#ifdef TCGETX
584
585/**
586 * set_termiox - set termiox fields if possible
587 * @tty: terminal
588 * @arg: termiox structure from user
589 * @opt: option flags for ioctl type
590 *
591 * Implement the device calling points for the SYS5 termiox ioctl
592 * interface in Linux
593 */
594
595static int set_termiox(struct tty_struct *tty, void __user *arg, int opt)
596{
597 struct termiox tnew;
598 struct tty_ldisc *ld;
599
600 if (tty->termiox == NULL)
601 return -EINVAL;
602 if (copy_from_user(&tnew, arg, sizeof(struct termiox)))
603 return -EFAULT;
604
605 ld = tty_ldisc_ref(tty);
606 if (ld != NULL) {
607 if ((opt & TERMIOS_FLUSH) && ld->ops->flush_buffer)
608 ld->ops->flush_buffer(tty);
609 tty_ldisc_deref(ld);
610 }
611 if (opt & TERMIOS_WAIT) {
612 tty_wait_until_sent(tty, 0);
613 if (signal_pending(current))
614 return -EINTR;
615 }
616
617 mutex_lock(&tty->termios_mutex);
618 if (tty->ops->set_termiox)
619 tty->ops->set_termiox(tty, &tnew);
620 mutex_unlock(&tty->termios_mutex);
621 return 0;
622}
623
624#endif
625
Alan Cox355d95a12008-02-08 04:18:48 -0800626static unsigned long inq_canon(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 int nr, head, tail;
629
630 if (!tty->canon_data || !tty->read_buf)
631 return 0;
632 head = tty->canon_head;
633 tail = tty->read_tail;
634 nr = (head - tail) & (N_TTY_BUF_SIZE-1);
635 /* Skip EOF-chars.. */
636 while (head != tail) {
637 if (test_bit(tail, tty->read_flags) &&
638 tty->read_buf[tail] == __DISABLED_CHAR)
639 nr--;
640 tail = (tail+1) & (N_TTY_BUF_SIZE-1);
641 }
642 return nr;
643}
644
645#ifdef TIOCGETP
646/*
647 * These are deprecated, but there is limited support..
648 *
649 * The "sg_flags" translation is a joke..
650 */
Alan Cox355d95a12008-02-08 04:18:48 -0800651static int get_sgflags(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 int flags = 0;
654
655 if (!(tty->termios->c_lflag & ICANON)) {
656 if (tty->termios->c_lflag & ISIG)
657 flags |= 0x02; /* cbreak */
658 else
659 flags |= 0x20; /* raw */
660 }
661 if (tty->termios->c_lflag & ECHO)
662 flags |= 0x08; /* echo */
663 if (tty->termios->c_oflag & OPOST)
664 if (tty->termios->c_oflag & ONLCR)
665 flags |= 0x10; /* crmod */
666 return flags;
667}
668
Alan Cox355d95a12008-02-08 04:18:48 -0800669static int get_sgttyb(struct tty_struct *tty, struct sgttyb __user *sgttyb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
671 struct sgttyb tmp;
672
Arjan van de Ven5785c952006-09-29 02:00:43 -0700673 mutex_lock(&tty->termios_mutex);
Alan Cox606d0992006-12-08 02:38:45 -0800674 tmp.sg_ispeed = tty->termios->c_ispeed;
675 tmp.sg_ospeed = tty->termios->c_ospeed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 tmp.sg_erase = tty->termios->c_cc[VERASE];
677 tmp.sg_kill = tty->termios->c_cc[VKILL];
678 tmp.sg_flags = get_sgflags(tty);
Arjan van de Ven5785c952006-09-29 02:00:43 -0700679 mutex_unlock(&tty->termios_mutex);
Alan Cox355d95a12008-02-08 04:18:48 -0800680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return copy_to_user(sgttyb, &tmp, sizeof(tmp)) ? -EFAULT : 0;
682}
683
Alan Cox355d95a12008-02-08 04:18:48 -0800684static void set_sgflags(struct ktermios *termios, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 termios->c_iflag = ICRNL | IXON;
687 termios->c_oflag = 0;
688 termios->c_lflag = ISIG | ICANON;
689 if (flags & 0x02) { /* cbreak */
690 termios->c_iflag = 0;
691 termios->c_lflag &= ~ICANON;
692 }
693 if (flags & 0x08) { /* echo */
694 termios->c_lflag |= ECHO | ECHOE | ECHOK |
695 ECHOCTL | ECHOKE | IEXTEN;
696 }
697 if (flags & 0x10) { /* crmod */
698 termios->c_oflag |= OPOST | ONLCR;
699 }
700 if (flags & 0x20) { /* raw */
701 termios->c_iflag = 0;
702 termios->c_lflag &= ~(ISIG | ICANON);
703 }
704 if (!(termios->c_lflag & ICANON)) {
705 termios->c_cc[VMIN] = 1;
706 termios->c_cc[VTIME] = 0;
707 }
708}
709
Alan Coxaf9b8972006-08-27 01:24:01 -0700710/**
711 * set_sgttyb - set legacy terminal values
712 * @tty: tty structure
713 * @sgttyb: pointer to old style terminal structure
714 *
715 * Updates a terminal from the legacy BSD style terminal information
716 * structure.
717 *
718 * Locking: termios_sem
719 */
720
Alan Cox355d95a12008-02-08 04:18:48 -0800721static int set_sgttyb(struct tty_struct *tty, struct sgttyb __user *sgttyb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
723 int retval;
724 struct sgttyb tmp;
Alan Coxedc6afc2006-12-08 02:38:44 -0800725 struct ktermios termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 retval = tty_check_change(tty);
728 if (retval)
729 return retval;
Alan Cox355d95a12008-02-08 04:18:48 -0800730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (copy_from_user(&tmp, sgttyb, sizeof(tmp)))
732 return -EFAULT;
733
Arjan van de Ven5785c952006-09-29 02:00:43 -0700734 mutex_lock(&tty->termios_mutex);
Jiri Slaby68043962007-07-15 23:40:18 -0700735 termios = *tty->termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 termios.c_cc[VERASE] = tmp.sg_erase;
737 termios.c_cc[VKILL] = tmp.sg_kill;
738 set_sgflags(&termios, tmp.sg_flags);
Alan Coxedc6afc2006-12-08 02:38:44 -0800739 /* Try and encode into Bfoo format */
740#ifdef BOTHER
Alan Cox355d95a12008-02-08 04:18:48 -0800741 tty_termios_encode_baud_rate(&termios, termios.c_ispeed,
742 termios.c_ospeed);
Alan Coxedc6afc2006-12-08 02:38:44 -0800743#endif
Arjan van de Ven5785c952006-09-29 02:00:43 -0700744 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 change_termios(tty, &termios);
746 return 0;
747}
748#endif
749
750#ifdef TIOCGETC
Alan Cox355d95a12008-02-08 04:18:48 -0800751static int get_tchars(struct tty_struct *tty, struct tchars __user *tchars)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 struct tchars tmp;
754
Alan Cox978e5952008-04-30 00:53:59 -0700755 mutex_lock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 tmp.t_intrc = tty->termios->c_cc[VINTR];
757 tmp.t_quitc = tty->termios->c_cc[VQUIT];
758 tmp.t_startc = tty->termios->c_cc[VSTART];
759 tmp.t_stopc = tty->termios->c_cc[VSTOP];
760 tmp.t_eofc = tty->termios->c_cc[VEOF];
761 tmp.t_brkc = tty->termios->c_cc[VEOL2]; /* what is brkc anyway? */
Alan Cox978e5952008-04-30 00:53:59 -0700762 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return copy_to_user(tchars, &tmp, sizeof(tmp)) ? -EFAULT : 0;
764}
765
Alan Cox355d95a12008-02-08 04:18:48 -0800766static int set_tchars(struct tty_struct *tty, struct tchars __user *tchars)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 struct tchars tmp;
769
770 if (copy_from_user(&tmp, tchars, sizeof(tmp)))
771 return -EFAULT;
Alan Cox978e5952008-04-30 00:53:59 -0700772 mutex_lock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 tty->termios->c_cc[VINTR] = tmp.t_intrc;
774 tty->termios->c_cc[VQUIT] = tmp.t_quitc;
775 tty->termios->c_cc[VSTART] = tmp.t_startc;
776 tty->termios->c_cc[VSTOP] = tmp.t_stopc;
777 tty->termios->c_cc[VEOF] = tmp.t_eofc;
778 tty->termios->c_cc[VEOL2] = tmp.t_brkc; /* what is brkc anyway? */
Alan Cox978e5952008-04-30 00:53:59 -0700779 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return 0;
781}
782#endif
783
784#ifdef TIOCGLTC
Alan Cox355d95a12008-02-08 04:18:48 -0800785static int get_ltchars(struct tty_struct *tty, struct ltchars __user *ltchars)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
787 struct ltchars tmp;
788
Alan Cox978e5952008-04-30 00:53:59 -0700789 mutex_lock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 tmp.t_suspc = tty->termios->c_cc[VSUSP];
Alan Cox355d95a12008-02-08 04:18:48 -0800791 /* what is dsuspc anyway? */
792 tmp.t_dsuspc = tty->termios->c_cc[VSUSP];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 tmp.t_rprntc = tty->termios->c_cc[VREPRINT];
Alan Cox355d95a12008-02-08 04:18:48 -0800794 /* what is flushc anyway? */
795 tmp.t_flushc = tty->termios->c_cc[VEOL2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 tmp.t_werasc = tty->termios->c_cc[VWERASE];
797 tmp.t_lnextc = tty->termios->c_cc[VLNEXT];
Alan Cox978e5952008-04-30 00:53:59 -0700798 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return copy_to_user(ltchars, &tmp, sizeof(tmp)) ? -EFAULT : 0;
800}
801
Alan Cox355d95a12008-02-08 04:18:48 -0800802static int set_ltchars(struct tty_struct *tty, struct ltchars __user *ltchars)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 struct ltchars tmp;
805
806 if (copy_from_user(&tmp, ltchars, sizeof(tmp)))
807 return -EFAULT;
808
Alan Cox978e5952008-04-30 00:53:59 -0700809 mutex_lock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 tty->termios->c_cc[VSUSP] = tmp.t_suspc;
Alan Cox355d95a12008-02-08 04:18:48 -0800811 /* what is dsuspc anyway? */
812 tty->termios->c_cc[VEOL2] = tmp.t_dsuspc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 tty->termios->c_cc[VREPRINT] = tmp.t_rprntc;
Alan Cox355d95a12008-02-08 04:18:48 -0800814 /* what is flushc anyway? */
815 tty->termios->c_cc[VEOL2] = tmp.t_flushc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 tty->termios->c_cc[VWERASE] = tmp.t_werasc;
817 tty->termios->c_cc[VLNEXT] = tmp.t_lnextc;
Alan Cox978e5952008-04-30 00:53:59 -0700818 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return 0;
820}
821#endif
822
Alan Coxaf9b8972006-08-27 01:24:01 -0700823/**
824 * send_prio_char - send priority character
825 *
826 * Send a high priority character to the tty even if stopped
827 *
Alan Cox5f412b22006-09-29 02:01:40 -0700828 * Locking: none for xchar method, write ordering for write method.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700830
Alan Cox5f412b22006-09-29 02:01:40 -0700831static int send_prio_char(struct tty_struct *tty, char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
833 int was_stopped = tty->stopped;
834
Alan Coxf34d7a52008-04-30 00:54:13 -0700835 if (tty->ops->send_xchar) {
836 tty->ops->send_xchar(tty, ch);
Alan Cox5f412b22006-09-29 02:01:40 -0700837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
Alan Cox5f412b22006-09-29 02:01:40 -0700839
Alan Cox9c1729d2007-07-15 23:39:43 -0700840 if (tty_write_lock(tty, 0) < 0)
Alan Cox5f412b22006-09-29 02:01:40 -0700841 return -ERESTARTSYS;
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (was_stopped)
844 start_tty(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -0700845 tty->ops->write(tty, &ch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (was_stopped)
847 stop_tty(tty);
Alan Cox9c1729d2007-07-15 23:39:43 -0700848 tty_write_unlock(tty);
Alan Cox5f412b22006-09-29 02:01:40 -0700849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Alan Cox0fc00e22007-11-07 01:24:56 -0800852/**
Alan Cox1c2630c2008-04-30 00:53:34 -0700853 * tty_change_softcar - carrier change ioctl helper
854 * @tty: tty to update
855 * @arg: enable/disable CLOCAL
856 *
857 * Perform a change to the CLOCAL state and call into the driver
858 * layer to make it visible. All done with the termios mutex
859 */
860
861static int tty_change_softcar(struct tty_struct *tty, int arg)
862{
863 int ret = 0;
864 int bit = arg ? CLOCAL : 0;
Alan Coxf34d7a52008-04-30 00:54:13 -0700865 struct ktermios old;
Alan Cox1c2630c2008-04-30 00:53:34 -0700866
867 mutex_lock(&tty->termios_mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -0700868 old = *tty->termios;
Alan Cox1c2630c2008-04-30 00:53:34 -0700869 tty->termios->c_cflag &= ~CLOCAL;
870 tty->termios->c_cflag |= bit;
Alan Coxf34d7a52008-04-30 00:54:13 -0700871 if (tty->ops->set_termios)
872 tty->ops->set_termios(tty, &old);
Alan Cox1c2630c2008-04-30 00:53:34 -0700873 if ((tty->termios->c_cflag & CLOCAL) != bit)
874 ret = -EINVAL;
875 mutex_unlock(&tty->termios_mutex);
876 return ret;
877}
878
879/**
Alan Cox0fc00e22007-11-07 01:24:56 -0800880 * tty_mode_ioctl - mode related ioctls
881 * @tty: tty for the ioctl
882 * @file: file pointer for the tty
883 * @cmd: command
884 * @arg: ioctl argument
885 *
886 * Perform non line discipline specific mode control ioctls. This
887 * is designed to be called by line disciplines to ensure they provide
888 * consistent mode setting.
889 */
890
Alan Cox355d95a12008-02-08 04:18:48 -0800891int tty_mode_ioctl(struct tty_struct *tty, struct file *file,
Alan Cox0fc00e22007-11-07 01:24:56 -0800892 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Alan Cox355d95a12008-02-08 04:18:48 -0800894 struct tty_struct *real_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 void __user *p = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
898 tty->driver->subtype == PTY_TYPE_MASTER)
899 real_tty = tty->link;
900 else
901 real_tty = tty;
902
903 switch (cmd) {
904#ifdef TIOCGETP
Alan Cox355d95a12008-02-08 04:18:48 -0800905 case TIOCGETP:
906 return get_sgttyb(real_tty, (struct sgttyb __user *) arg);
907 case TIOCSETP:
908 case TIOCSETN:
909 return set_sgttyb(real_tty, (struct sgttyb __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910#endif
911#ifdef TIOCGETC
Alan Cox355d95a12008-02-08 04:18:48 -0800912 case TIOCGETC:
913 return get_tchars(real_tty, p);
914 case TIOCSETC:
915 return set_tchars(real_tty, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916#endif
917#ifdef TIOCGLTC
Alan Cox355d95a12008-02-08 04:18:48 -0800918 case TIOCGLTC:
919 return get_ltchars(real_tty, p);
920 case TIOCSLTC:
921 return set_ltchars(real_tty, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922#endif
Alan Cox355d95a12008-02-08 04:18:48 -0800923 case TCSETSF:
924 return set_termios(real_tty, p, TERMIOS_FLUSH | TERMIOS_WAIT | TERMIOS_OLD);
925 case TCSETSW:
926 return set_termios(real_tty, p, TERMIOS_WAIT | TERMIOS_OLD);
927 case TCSETS:
928 return set_termios(real_tty, p, TERMIOS_OLD);
Alan Coxedc6afc2006-12-08 02:38:44 -0800929#ifndef TCGETS2
Alan Cox355d95a12008-02-08 04:18:48 -0800930 case TCGETS:
931 if (kernel_termios_to_user_termios((struct termios __user *)arg, real_tty->termios))
932 return -EFAULT;
933 return 0;
Alan Coxedc6afc2006-12-08 02:38:44 -0800934#else
Alan Cox355d95a12008-02-08 04:18:48 -0800935 case TCGETS:
936 if (kernel_termios_to_user_termios_1((struct termios __user *)arg, real_tty->termios))
937 return -EFAULT;
938 return 0;
939 case TCGETS2:
940 if (kernel_termios_to_user_termios((struct termios2 __user *)arg, real_tty->termios))
941 return -EFAULT;
942 return 0;
943 case TCSETSF2:
944 return set_termios(real_tty, p, TERMIOS_FLUSH | TERMIOS_WAIT);
945 case TCSETSW2:
946 return set_termios(real_tty, p, TERMIOS_WAIT);
947 case TCSETS2:
948 return set_termios(real_tty, p, 0);
Alan Coxedc6afc2006-12-08 02:38:44 -0800949#endif
Alan Cox355d95a12008-02-08 04:18:48 -0800950 case TCGETA:
951 return get_termio(real_tty, p);
952 case TCSETAF:
953 return set_termios(real_tty, p, TERMIOS_FLUSH | TERMIOS_WAIT | TERMIOS_TERMIO);
954 case TCSETAW:
955 return set_termios(real_tty, p, TERMIOS_WAIT | TERMIOS_TERMIO);
956 case TCSETA:
957 return set_termios(real_tty, p, TERMIOS_TERMIO);
Alan Cox0fc00e22007-11-07 01:24:56 -0800958#ifndef TCGETS2
Alan Cox355d95a12008-02-08 04:18:48 -0800959 case TIOCGLCKTRMIOS:
960 if (kernel_termios_to_user_termios((struct termios __user *)arg, real_tty->termios_locked))
961 return -EFAULT;
962 return 0;
963 case TIOCSLCKTRMIOS:
964 if (!capable(CAP_SYS_ADMIN))
965 return -EPERM;
966 if (user_termios_to_kernel_termios(real_tty->termios_locked,
967 (struct termios __user *) arg))
968 return -EFAULT;
969 return 0;
Alan Cox0fc00e22007-11-07 01:24:56 -0800970#else
Alan Cox355d95a12008-02-08 04:18:48 -0800971 case TIOCGLCKTRMIOS:
972 if (kernel_termios_to_user_termios_1((struct termios __user *)arg, real_tty->termios_locked))
973 return -EFAULT;
974 return 0;
975 case TIOCSLCKTRMIOS:
976 if (!capable(CAP_SYS_ADMIN))
977 return -EPERM;
978 if (user_termios_to_kernel_termios_1(real_tty->termios_locked,
979 (struct termios __user *) arg))
980 return -EFAULT;
Alan Cox0fc00e22007-11-07 01:24:56 -0800981 return 0;
982#endif
Alan Cox1d65b4a2008-10-13 10:38:18 +0100983#ifdef TCGETX
984 case TCGETX:
985 if (real_tty->termiox == NULL)
986 return -EINVAL;
987 if (copy_to_user(p, real_tty->termiox, sizeof(struct termiox)))
988 return -EFAULT;
989 return 0;
990 case TCSETX:
991 return set_termiox(real_tty, p, 0);
992 case TCSETXW:
993 return set_termiox(real_tty, p, TERMIOS_WAIT);
994 case TCSETXF:
995 return set_termiox(real_tty, p, TERMIOS_FLUSH);
996#endif
Alan Cox355d95a12008-02-08 04:18:48 -0800997 case TIOCGSOFTCAR:
Alan Coxf753f322008-08-26 19:52:47 +0100998 /* FIXME: for correctness we may need to take the termios
999 lock here - review */
1000 return put_user(C_CLOCAL(real_tty) ? 1 : 0,
Alan Cox355d95a12008-02-08 04:18:48 -08001001 (int __user *)arg);
1002 case TIOCSSOFTCAR:
1003 if (get_user(arg, (unsigned int __user *) arg))
1004 return -EFAULT;
Alan Coxf753f322008-08-26 19:52:47 +01001005 return tty_change_softcar(real_tty, arg);
Alan Cox355d95a12008-02-08 04:18:48 -08001006 default:
1007 return -ENOIOCTLCMD;
Alan Cox0fc00e22007-11-07 01:24:56 -08001008 }
1009}
Alan Cox0fc00e22007-11-07 01:24:56 -08001010EXPORT_SYMBOL_GPL(tty_mode_ioctl);
1011
1012int tty_perform_flush(struct tty_struct *tty, unsigned long arg)
1013{
1014 struct tty_ldisc *ld;
1015 int retval = tty_check_change(tty);
1016 if (retval)
1017 return retval;
1018
1019 ld = tty_ldisc_ref(tty);
1020 switch (arg) {
1021 case TCIFLUSH:
Alan Coxa352def2008-07-16 21:53:12 +01001022 if (ld && ld->ops->flush_buffer)
1023 ld->ops->flush_buffer(tty);
Alan Cox0fc00e22007-11-07 01:24:56 -08001024 break;
1025 case TCIOFLUSH:
Alan Coxa352def2008-07-16 21:53:12 +01001026 if (ld && ld->ops->flush_buffer)
1027 ld->ops->flush_buffer(tty);
Alan Cox0fc00e22007-11-07 01:24:56 -08001028 /* fall through */
1029 case TCOFLUSH:
Alan Coxf34d7a52008-04-30 00:54:13 -07001030 tty_driver_flush_buffer(tty);
Alan Cox0fc00e22007-11-07 01:24:56 -08001031 break;
1032 default:
1033 tty_ldisc_deref(ld);
1034 return -EINVAL;
1035 }
1036 tty_ldisc_deref(ld);
1037 return 0;
1038}
Alan Cox0fc00e22007-11-07 01:24:56 -08001039EXPORT_SYMBOL_GPL(tty_perform_flush);
1040
Alan Cox355d95a12008-02-08 04:18:48 -08001041int n_tty_ioctl(struct tty_struct *tty, struct file *file,
Alan Cox0fc00e22007-11-07 01:24:56 -08001042 unsigned int cmd, unsigned long arg)
1043{
Alan Cox04f378b2008-04-30 00:53:29 -07001044 unsigned long flags;
Alan Cox0fc00e22007-11-07 01:24:56 -08001045 int retval;
1046
Alan Cox0fc00e22007-11-07 01:24:56 -08001047 switch (cmd) {
Alan Cox355d95a12008-02-08 04:18:48 -08001048 case TCXONC:
1049 retval = tty_check_change(tty);
1050 if (retval)
1051 return retval;
1052 switch (arg) {
1053 case TCOOFF:
1054 if (!tty->flow_stopped) {
1055 tty->flow_stopped = 1;
1056 stop_tty(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
Alan Cox355d95a12008-02-08 04:18:48 -08001058 break;
1059 case TCOON:
1060 if (tty->flow_stopped) {
1061 tty->flow_stopped = 0;
1062 start_tty(tty);
1063 }
1064 break;
1065 case TCIOFF:
1066 if (STOP_CHAR(tty) != __DISABLED_CHAR)
1067 return send_prio_char(tty, STOP_CHAR(tty));
1068 break;
1069 case TCION:
1070 if (START_CHAR(tty) != __DISABLED_CHAR)
1071 return send_prio_char(tty, START_CHAR(tty));
1072 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 default:
Alan Cox355d95a12008-02-08 04:18:48 -08001074 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
Alan Cox355d95a12008-02-08 04:18:48 -08001076 return 0;
1077 case TCFLSH:
1078 return tty_perform_flush(tty, arg);
1079 case TIOCOUTQ:
Alan Coxf34d7a52008-04-30 00:54:13 -07001080 return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
Alan Cox355d95a12008-02-08 04:18:48 -08001081 case TIOCINQ:
1082 retval = tty->read_cnt;
1083 if (L_ICANON(tty))
1084 retval = inq_canon(tty);
1085 return put_user(retval, (unsigned int __user *) arg);
1086 case TIOCPKT:
1087 {
1088 int pktmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Alan Cox355d95a12008-02-08 04:18:48 -08001090 if (tty->driver->type != TTY_DRIVER_TYPE_PTY ||
1091 tty->driver->subtype != PTY_TYPE_MASTER)
1092 return -ENOTTY;
1093 if (get_user(pktmode, (int __user *) arg))
1094 return -EFAULT;
Alan Cox04f378b2008-04-30 00:53:29 -07001095 spin_lock_irqsave(&tty->ctrl_lock, flags);
Alan Cox355d95a12008-02-08 04:18:48 -08001096 if (pktmode) {
1097 if (!tty->packet) {
1098 tty->packet = 1;
1099 tty->link->ctrl_status = 0;
1100 }
1101 } else
1102 tty->packet = 0;
Alan Cox04f378b2008-04-30 00:53:29 -07001103 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Cox355d95a12008-02-08 04:18:48 -08001104 return 0;
1105 }
1106 default:
1107 /* Try the mode commands */
1108 return tty_mode_ioctl(tty, file, cmd, arg);
1109 }
1110}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111EXPORT_SYMBOL(n_tty_ioctl);