blob: ddec9f3c33962d2a57c30a05ba7af9e3aa10a19f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 *
4 * Added support for a Unix98-style ptmx device.
5 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Alan Coxfe9cd962008-10-13 10:43:38 +01007 * When reading this code see also fs/devpts. In particular note that the
8 * driver_data field is used by the devpts side as a binding to the devpts
9 * inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Alan Coxfe9cd962008-10-13 10:43:38 +010012#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/interrupt.h>
16#include <linux/tty.h>
17#include <linux/tty_flip.h>
18#include <linux/fcntl.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040019#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/string.h>
21#include <linux/major.h>
22#include <linux/mm.h>
23#include <linux/init.h>
Alan Coxd81ed102008-10-13 10:41:42 +010024#include <linux/device.h>
Alan Coxfe9cd962008-10-13 10:43:38 +010025#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/bitops.h>
27#include <linux/devpts_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Alan Coxfe9cd962008-10-13 10:43:38 +010030#include <asm/system.h>
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#ifdef CONFIG_UNIX98_PTYS
Roel Kluinda2bdf92009-01-07 18:09:15 -080033static struct tty_driver *ptm_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static struct tty_driver *pts_driver;
35#endif
36
Alan Coxfe9cd962008-10-13 10:43:38 +010037static void pty_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Alan Coxfe9cd962008-10-13 10:43:38 +010039 BUG_ON(!tty);
40 if (tty->driver->subtype == PTY_TYPE_MASTER)
41 WARN_ON(tty->count > 1);
42 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 if (tty->count > 2)
44 return;
45 }
46 wake_up_interruptible(&tty->read_wait);
47 wake_up_interruptible(&tty->write_wait);
48 tty->packet = 0;
49 if (!tty->link)
50 return;
51 tty->link->packet = 0;
52 set_bit(TTY_OTHER_CLOSED, &tty->link->flags);
53 wake_up_interruptible(&tty->link->read_wait);
54 wake_up_interruptible(&tty->link->write_wait);
55 if (tty->driver->subtype == PTY_TYPE_MASTER) {
56 set_bit(TTY_OTHER_CLOSED, &tty->flags);
Jiri Slabyd3bda522012-01-30 21:14:32 +010057 devpts_pty_kill(tty->link);
Greg Kroah-Hartman0ef16982012-02-24 13:55:54 -080058 tty_unlock();
Arnd Bergmann11dbf202010-06-18 14:58:07 +020059 tty_vhangup(tty->link);
60 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 }
62}
63
64/*
65 * The unthrottle routine is called by the line discipline to signal
66 * that it can receive more characters. For PTY's, the TTY_THROTTLED
67 * flag is always set, to force the line discipline to always call the
Alan Coxfe9cd962008-10-13 10:43:38 +010068 * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * characters in the queue. This is necessary since each time this
70 * happens, we need to wake up any sleeping processes that could be
71 * (1) trying to send data to the pty, or (2) waiting in wait_until_sent()
72 * for the pty buffer to be drained.
73 */
Alan Coxfe9cd962008-10-13 10:43:38 +010074static void pty_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Alan Coxd945cb92009-07-07 16:39:41 +010076 tty_wakeup(tty->link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 set_bit(TTY_THROTTLED, &tty->flags);
78}
79
Alan Coxd945cb92009-07-07 16:39:41 +010080/**
81 * pty_space - report space left for writing
82 * @to: tty we are writing into
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 *
Alan Coxd945cb92009-07-07 16:39:41 +010084 * The tty buffers allow 64K but we sneak a peak and clip at 8K this
85 * allows a lot of overspill room for echo and other fun messes to
86 * be handled properly
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
Alan Coxd945cb92009-07-07 16:39:41 +010088
89static int pty_space(struct tty_struct *to)
90{
91 int n = 8192 - to->buf.memory_used;
92 if (n < 0)
93 return 0;
94 return n;
95}
96
97/**
98 * pty_write - write to a pty
99 * @tty: the tty we write from
100 * @buf: kernel buffer of data
101 * @count: bytes to write
102 *
103 * Our "hardware" write method. Data is coming from the ldisc which
104 * may be in a non sleeping state. We simply throw this at the other
105 * end of the link as if we were an IRQ handler receiving stuff for
106 * the other side of the pty/tty pair.
107 */
108
Linus Torvaldsac89a912009-09-05 13:27:10 -0700109static int pty_write(struct tty_struct *tty, const unsigned char *buf, int c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct tty_struct *to = tty->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Alan Coxd945cb92009-07-07 16:39:41 +0100113 if (tty->stopped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return 0;
115
Alan Coxd945cb92009-07-07 16:39:41 +0100116 if (c > 0) {
117 /* Stuff the data into the input queue of the other end */
118 c = tty_insert_flip_string(to, buf, c);
119 /* And shovel */
Linus Torvalds202c4672009-09-18 07:05:58 -0700120 if (c) {
121 tty_flip_buffer_push(to);
122 tty_wakeup(tty);
123 }
Alan Cox762faae2009-06-16 17:01:13 +0100124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return c;
126}
127
Alan Coxd945cb92009-07-07 16:39:41 +0100128/**
129 * pty_write_room - write space
130 * @tty: tty we are writing from
131 *
132 * Report how many bytes the ldisc can send into the queue for
133 * the other device.
134 */
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136static int pty_write_room(struct tty_struct *tty)
137{
Linus Torvalds85dfd812009-08-10 13:21:19 -0700138 if (tty->stopped)
139 return 0;
Alan Coxd945cb92009-07-07 16:39:41 +0100140 return pty_space(tty->link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Alan Coxd945cb92009-07-07 16:39:41 +0100143/**
144 * pty_chars_in_buffer - characters currently in our tx queue
145 * @tty: our tty
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 *
Alan Coxd945cb92009-07-07 16:39:41 +0100147 * Report how much we have in the transmit queue. As everything is
148 * instantly at the other end this is easy to implement.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
Alan Coxd945cb92009-07-07 16:39:41 +0100150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static int pty_chars_in_buffer(struct tty_struct *tty)
152{
Alan Coxd945cb92009-07-07 16:39:41 +0100153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156/* Set the lock flag on a pty */
Alan Coxfe9cd962008-10-13 10:43:38 +0100157static int pty_set_lock(struct tty_struct *tty, int __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 int val;
Alan Coxfe9cd962008-10-13 10:43:38 +0100160 if (get_user(val, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return -EFAULT;
162 if (val)
163 set_bit(TTY_PTY_LOCK, &tty->flags);
164 else
165 clear_bit(TTY_PTY_LOCK, &tty->flags);
166 return 0;
167}
168
hyc@symas.com26df6d12010-06-22 10:14:49 -0700169/* Send a signal to the slave */
170static int pty_signal(struct tty_struct *tty, int sig)
171{
172 unsigned long flags;
173 struct pid *pgrp;
174
175 if (tty->link) {
176 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
177 pgrp = get_pid(tty->link->pgrp);
178 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
179
180 kill_pgrp(pgrp, sig, 1);
181 put_pid(pgrp);
182 }
183 return 0;
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static void pty_flush_buffer(struct tty_struct *tty)
187{
188 struct tty_struct *to = tty->link;
Alan Cox04f378b2008-04-30 00:53:29 -0700189 unsigned long flags;
Alan Coxfe9cd962008-10-13 10:43:38 +0100190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (!to)
192 return;
Alan Coxd945cb92009-07-07 16:39:41 +0100193 /* tty_buffer_flush(to); FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (to->packet) {
Alan Cox04f378b2008-04-30 00:53:29 -0700195 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 tty->ctrl_status |= TIOCPKT_FLUSHWRITE;
197 wake_up_interruptible(&to->read_wait);
Alan Cox04f378b2008-04-30 00:53:29 -0700198 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200}
201
Alan Coxfe9cd962008-10-13 10:43:38 +0100202static int pty_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 int retval = -ENODEV;
205
206 if (!tty || !tty->link)
207 goto out;
208
209 retval = -EIO;
210 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
211 goto out;
212 if (test_bit(TTY_PTY_LOCK, &tty->link->flags))
213 goto out;
214 if (tty->link->count != 1)
215 goto out;
216
217 clear_bit(TTY_OTHER_CLOSED, &tty->link->flags);
218 set_bit(TTY_THROTTLED, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 retval = 0;
220out:
221 return retval;
222}
223
Alan Coxfe9cd962008-10-13 10:43:38 +0100224static void pty_set_termios(struct tty_struct *tty,
225 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Alan Coxfe9cd962008-10-13 10:43:38 +0100227 tty->termios->c_cflag &= ~(CSIZE | PARENB);
228 tty->termios->c_cflag |= (CS8 | CREAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Alan Coxfc6f6232009-01-02 13:43:17 +0000231/**
232 * pty_do_resize - resize event
233 * @tty: tty being resized
Alan Coxc774bda2009-01-11 19:46:49 +0000234 * @ws: window size being set.
Alan Coxfc6f6232009-01-02 13:43:17 +0000235 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800236 * Update the termios variables and send the necessary signals to
Alan Coxfc6f6232009-01-02 13:43:17 +0000237 * peform a terminal resize correctly
238 */
239
240int pty_resize(struct tty_struct *tty, struct winsize *ws)
241{
242 struct pid *pgrp, *rpgrp;
243 unsigned long flags;
244 struct tty_struct *pty = tty->link;
245
246 /* For a PTY we need to lock the tty side */
247 mutex_lock(&tty->termios_mutex);
248 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
249 goto done;
250
251 /* Get the PID values and reference them so we can
252 avoid holding the tty ctrl lock while sending signals.
253 We need to lock these individually however. */
254
255 spin_lock_irqsave(&tty->ctrl_lock, flags);
256 pgrp = get_pid(tty->pgrp);
257 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
258
259 spin_lock_irqsave(&pty->ctrl_lock, flags);
260 rpgrp = get_pid(pty->pgrp);
261 spin_unlock_irqrestore(&pty->ctrl_lock, flags);
262
263 if (pgrp)
264 kill_pgrp(pgrp, SIGWINCH, 1);
265 if (rpgrp != pgrp && rpgrp)
266 kill_pgrp(rpgrp, SIGWINCH, 1);
267
268 put_pid(pgrp);
269 put_pid(rpgrp);
270
271 tty->winsize = *ws;
272 pty->winsize = *ws; /* Never used so will go away soon */
273done:
274 mutex_unlock(&tty->termios_mutex);
275 return 0;
276}
277
Linus Torvalds342a5972009-09-30 07:49:40 -0700278/* Traditional BSD devices */
279#ifdef CONFIG_LEGACY_PTYS
280
Alan Coxbf970ee2008-10-13 10:42:39 +0100281static int pty_install(struct tty_driver *driver, struct tty_struct *tty)
282{
283 struct tty_struct *o_tty;
284 int idx = tty->index;
285 int retval;
286
287 o_tty = alloc_tty_struct();
288 if (!o_tty)
289 return -ENOMEM;
290 if (!try_module_get(driver->other->owner)) {
291 /* This cannot in fact currently happen */
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100292 retval = -ENOMEM;
293 goto err_free_tty;
Alan Coxbf970ee2008-10-13 10:42:39 +0100294 }
295 initialize_tty_struct(o_tty, driver->other, idx);
296
297 /* We always use new tty termios data so we can do this
298 the easy way .. */
299 retval = tty_init_termios(tty);
300 if (retval)
Jiri Slabya9dccdd2011-03-23 10:48:36 +0100301 goto err_deinit_tty;
Alan Coxbf970ee2008-10-13 10:42:39 +0100302
303 retval = tty_init_termios(o_tty);
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100304 if (retval)
305 goto err_free_termios;
Alan Coxfe9cd962008-10-13 10:43:38 +0100306
Alan Coxbf970ee2008-10-13 10:42:39 +0100307 /*
308 * Everything allocated ... set up the o_tty structure.
309 */
310 driver->other->ttys[idx] = o_tty;
311 tty_driver_kref_get(driver->other);
312 if (driver->subtype == PTY_TYPE_MASTER)
313 o_tty->count++;
314 /* Establish the links in both directions */
315 tty->link = o_tty;
316 o_tty->link = tty;
317
318 tty_driver_kref_get(driver);
319 tty->count++;
320 driver->ttys[idx] = tty;
321 return 0;
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100322err_free_termios:
323 tty_free_termios(tty);
Jiri Slabya9dccdd2011-03-23 10:48:36 +0100324err_deinit_tty:
325 deinitialize_tty_struct(o_tty);
Alan Coxbf970ee2008-10-13 10:42:39 +0100326 module_put(o_tty->driver->owner);
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100327err_free_tty:
Alan Coxbf970ee2008-10-13 10:42:39 +0100328 free_tty_struct(o_tty);
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100329 return retval;
Alan Coxbf970ee2008-10-13 10:42:39 +0100330}
331
Alan Cox6caa76b2011-02-14 16:27:22 +0000332static int pty_bsd_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 unsigned int cmd, unsigned long arg)
334{
335 switch (cmd) {
336 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
337 return pty_set_lock(tty, (int __user *) arg);
hyc@symas.com26df6d12010-06-22 10:14:49 -0700338 case TIOCSIG: /* Send signal to other side of pty */
339 return pty_signal(tty, (int) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341 return -ENOIOCTLCMD;
342}
343
Kay Sieversdc8c8582007-08-15 12:25:38 +0200344static int legacy_count = CONFIG_LEGACY_PTY_COUNT;
345module_param(legacy_count, int, 0);
346
Linus Torvalds342a5972009-09-30 07:49:40 -0700347/*
348 * The master side of a pty can do TIOCSPTLCK and thus
349 * has pty_bsd_ioctl.
350 */
351static const struct tty_operations master_pty_ops_bsd = {
352 .install = pty_install,
Alan Cox3e8e88c2008-04-30 00:54:10 -0700353 .open = pty_open,
354 .close = pty_close,
355 .write = pty_write,
356 .write_room = pty_write_room,
357 .flush_buffer = pty_flush_buffer,
358 .chars_in_buffer = pty_chars_in_buffer,
359 .unthrottle = pty_unthrottle,
360 .set_termios = pty_set_termios,
361 .ioctl = pty_bsd_ioctl,
Alan Coxfc6f6232009-01-02 13:43:17 +0000362 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700363};
364
Linus Torvalds342a5972009-09-30 07:49:40 -0700365static const struct tty_operations slave_pty_ops_bsd = {
366 .install = pty_install,
367 .open = pty_open,
368 .close = pty_close,
369 .write = pty_write,
370 .write_room = pty_write_room,
371 .flush_buffer = pty_flush_buffer,
372 .chars_in_buffer = pty_chars_in_buffer,
373 .unthrottle = pty_unthrottle,
374 .set_termios = pty_set_termios,
375 .resize = pty_resize
376};
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378static void __init legacy_pty_init(void)
379{
Linus Torvalds342a5972009-09-30 07:49:40 -0700380 struct tty_driver *pty_driver, *pty_slave_driver;
381
Kay Sieversdc8c8582007-08-15 12:25:38 +0200382 if (legacy_count <= 0)
383 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Kay Sieversdc8c8582007-08-15 12:25:38 +0200385 pty_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (!pty_driver)
387 panic("Couldn't allocate pty driver");
388
Kay Sieversdc8c8582007-08-15 12:25:38 +0200389 pty_slave_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (!pty_slave_driver)
391 panic("Couldn't allocate pty slave driver");
392
393 pty_driver->owner = THIS_MODULE;
394 pty_driver->driver_name = "pty_master";
395 pty_driver->name = "pty";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 pty_driver->major = PTY_MASTER_MAJOR;
397 pty_driver->minor_start = 0;
398 pty_driver->type = TTY_DRIVER_TYPE_PTY;
399 pty_driver->subtype = PTY_TYPE_MASTER;
400 pty_driver->init_termios = tty_std_termios;
401 pty_driver->init_termios.c_iflag = 0;
402 pty_driver->init_termios.c_oflag = 0;
403 pty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
404 pty_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -0800405 pty_driver->init_termios.c_ispeed = 38400;
406 pty_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 pty_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW;
408 pty_driver->other = pty_slave_driver;
Linus Torvalds342a5972009-09-30 07:49:40 -0700409 tty_set_operations(pty_driver, &master_pty_ops_bsd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 pty_slave_driver->owner = THIS_MODULE;
412 pty_slave_driver->driver_name = "pty_slave";
413 pty_slave_driver->name = "ttyp";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 pty_slave_driver->major = PTY_SLAVE_MAJOR;
415 pty_slave_driver->minor_start = 0;
416 pty_slave_driver->type = TTY_DRIVER_TYPE_PTY;
417 pty_slave_driver->subtype = PTY_TYPE_SLAVE;
418 pty_slave_driver->init_termios = tty_std_termios;
419 pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800420 pty_slave_driver->init_termios.c_ispeed = 38400;
421 pty_slave_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 pty_slave_driver->flags = TTY_DRIVER_RESET_TERMIOS |
423 TTY_DRIVER_REAL_RAW;
424 pty_slave_driver->other = pty_driver;
Linus Torvalds342a5972009-09-30 07:49:40 -0700425 tty_set_operations(pty_slave_driver, &slave_pty_ops_bsd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 if (tty_register_driver(pty_driver))
428 panic("Couldn't register pty driver");
429 if (tty_register_driver(pty_slave_driver))
430 panic("Couldn't register pty slave driver");
431}
432#else
433static inline void legacy_pty_init(void) { }
434#endif
435
436/* Unix98 devices */
437#ifdef CONFIG_UNIX98_PTYS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Alan Coxd81ed102008-10-13 10:41:42 +0100439static struct cdev ptmx_cdev;
440
Alan Cox6caa76b2011-02-14 16:27:22 +0000441static int pty_unix98_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 unsigned int cmd, unsigned long arg)
443{
444 switch (cmd) {
445 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
446 return pty_set_lock(tty, (int __user *)arg);
447 case TIOCGPTN: /* Get PT Number */
448 return put_user(tty->index, (unsigned int __user *)arg);
hyc@symas.com26df6d12010-06-22 10:14:49 -0700449 case TIOCSIG: /* Send signal to other side of pty */
450 return pty_signal(tty, (int) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
453 return -ENOIOCTLCMD;
454}
455
Alan Cox99f1fe12008-10-13 10:42:00 +0100456/**
457 * ptm_unix98_lookup - find a pty master
458 * @driver: ptm driver
459 * @idx: tty index
460 *
461 * Look up a pty master device. Called under the tty_mutex for now.
462 * This provides our locking.
463 */
464
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100465static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver,
466 struct inode *ptm_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100467{
Konstantin Khlebnikov593a27c2012-01-05 13:04:21 +0400468 /* Master must be open via /dev/ptmx */
469 return ERR_PTR(-EIO);
Alan Cox99f1fe12008-10-13 10:42:00 +0100470}
471
472/**
473 * pts_unix98_lookup - find a pty slave
474 * @driver: pts driver
475 * @idx: tty index
476 *
477 * Look up a pty master device. Called under the tty_mutex for now.
478 * This provides our locking.
479 */
480
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100481static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver,
482 struct inode *pts_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100483{
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100484 struct tty_struct *tty = devpts_get_tty(pts_inode, idx);
Alan Cox99f1fe12008-10-13 10:42:00 +0100485 /* Master must be open before slave */
486 if (!tty)
487 return ERR_PTR(-EIO);
488 return tty;
489}
490
Alan Coxbf970ee2008-10-13 10:42:39 +0100491static void pty_unix98_shutdown(struct tty_struct *tty)
Alan Coxfeebed62008-10-13 10:41:30 +0100492{
Jiri Slaby24d406a2011-08-10 14:59:28 +0200493 tty_driver_remove_tty(tty->driver, tty);
Alan Coxfeebed62008-10-13 10:41:30 +0100494 /* We have our own method as we don't use the tty index */
495 kfree(tty->termios);
Alan Coxfeebed62008-10-13 10:41:30 +0100496}
497
Alan Cox8b0a88d2008-10-13 10:42:19 +0100498/* We have no need to install and remove our tty objects as devpts does all
499 the work for us */
500
Alan Coxbf970ee2008-10-13 10:42:39 +0100501static int pty_unix98_install(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100502{
Alan Coxbf970ee2008-10-13 10:42:39 +0100503 struct tty_struct *o_tty;
504 int idx = tty->index;
505
506 o_tty = alloc_tty_struct();
507 if (!o_tty)
508 return -ENOMEM;
509 if (!try_module_get(driver->other->owner)) {
510 /* This cannot in fact currently happen */
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100511 goto err_free_tty;
Alan Coxbf970ee2008-10-13 10:42:39 +0100512 }
513 initialize_tty_struct(o_tty, driver->other, idx);
514
Alan Cox8dff04e2008-10-13 10:43:58 +0100515 tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100516 if (tty->termios == NULL)
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100517 goto err_free_mem;
Alan Coxbf970ee2008-10-13 10:42:39 +0100518 *tty->termios = driver->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100519 tty->termios_locked = tty->termios + 1;
520
521 o_tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100522 if (o_tty->termios == NULL)
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100523 goto err_free_mem;
Alan Coxbf970ee2008-10-13 10:42:39 +0100524 *o_tty->termios = driver->other->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100525 o_tty->termios_locked = o_tty->termios + 1;
Alan Coxbf970ee2008-10-13 10:42:39 +0100526
527 tty_driver_kref_get(driver->other);
528 if (driver->subtype == PTY_TYPE_MASTER)
529 o_tty->count++;
530 /* Establish the links in both directions */
531 tty->link = o_tty;
532 o_tty->link = tty;
533 /*
534 * All structures have been allocated, so now we install them.
535 * Failures after this point use release_tty to clean up, so
536 * there's no need to null out the local pointers.
537 */
538 tty_driver_kref_get(driver);
539 tty->count++;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100540 return 0;
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100541err_free_mem:
Jiri Slabya9dccdd2011-03-23 10:48:36 +0100542 deinitialize_tty_struct(o_tty);
Alan Cox8dff04e2008-10-13 10:43:58 +0100543 kfree(o_tty->termios);
Alan Cox8dff04e2008-10-13 10:43:58 +0100544 kfree(tty->termios);
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100545 module_put(o_tty->driver->owner);
546err_free_tty:
547 free_tty_struct(o_tty);
Alan Coxbf970ee2008-10-13 10:42:39 +0100548 return -ENOMEM;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100549}
550
Jiri Slaby484af542011-11-16 16:27:11 +0100551static void ptm_unix98_remove(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100552{
Jiri Slaby484af542011-11-16 16:27:11 +0100553}
554
555static void pts_unix98_remove(struct tty_driver *driver, struct tty_struct *tty)
556{
Alan Cox8b0a88d2008-10-13 10:42:19 +0100557}
558
Alan Coxfeebed62008-10-13 10:41:30 +0100559static const struct tty_operations ptm_unix98_ops = {
Alan Cox99f1fe12008-10-13 10:42:00 +0100560 .lookup = ptm_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100561 .install = pty_unix98_install,
Jiri Slaby484af542011-11-16 16:27:11 +0100562 .remove = ptm_unix98_remove,
Alan Cox3e8e88c2008-04-30 00:54:10 -0700563 .open = pty_open,
564 .close = pty_close,
565 .write = pty_write,
566 .write_room = pty_write_room,
567 .flush_buffer = pty_flush_buffer,
568 .chars_in_buffer = pty_chars_in_buffer,
569 .unthrottle = pty_unthrottle,
570 .set_termios = pty_set_termios,
Alan Coxfeebed62008-10-13 10:41:30 +0100571 .ioctl = pty_unix98_ioctl,
Alan Coxfc6f6232009-01-02 13:43:17 +0000572 .shutdown = pty_unix98_shutdown,
573 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700574};
575
Alan Cox99f1fe12008-10-13 10:42:00 +0100576static const struct tty_operations pty_unix98_ops = {
577 .lookup = pts_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100578 .install = pty_unix98_install,
Jiri Slaby484af542011-11-16 16:27:11 +0100579 .remove = pts_unix98_remove,
Alan Cox99f1fe12008-10-13 10:42:00 +0100580 .open = pty_open,
581 .close = pty_close,
582 .write = pty_write,
583 .write_room = pty_write_room,
584 .flush_buffer = pty_flush_buffer,
585 .chars_in_buffer = pty_chars_in_buffer,
586 .unthrottle = pty_unthrottle,
587 .set_termios = pty_set_termios,
Alan Coxbf970ee2008-10-13 10:42:39 +0100588 .shutdown = pty_unix98_shutdown
Alan Cox99f1fe12008-10-13 10:42:00 +0100589};
Alan Coxd81ed102008-10-13 10:41:42 +0100590
591/**
592 * ptmx_open - open a unix 98 pty master
593 * @inode: inode of device file
594 * @filp: file pointer to tty
595 *
596 * Allocate a unix98 pty master device from the ptmx driver.
597 *
598 * Locking: tty_mutex protects the init_dev work. tty->count should
599 * protect the rest.
600 * allocated_ptys_lock handles the list of free pty numbers
601 */
602
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200603static int ptmx_open(struct inode *inode, struct file *filp)
Alan Coxd81ed102008-10-13 10:41:42 +0100604{
605 struct tty_struct *tty;
606 int retval;
607 int index;
608
609 nonseekable_open(inode, filp);
610
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200611 retval = tty_alloc_file(filp);
612 if (retval)
613 return retval;
614
Alan Coxd81ed102008-10-13 10:41:42 +0100615 /* find a device that is not in use. */
Greg Kroah-Hartman0ef16982012-02-24 13:55:54 -0800616 tty_lock();
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100617 index = devpts_new_index(inode);
Greg Kroah-Hartman0ef16982012-02-24 13:55:54 -0800618 tty_unlock();
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200619 if (index < 0) {
620 retval = index;
621 goto err_file;
622 }
Alan Coxd81ed102008-10-13 10:41:42 +0100623
624 mutex_lock(&tty_mutex);
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200625 tty_lock();
Konstantin Khlebnikov593a27c2012-01-05 13:04:21 +0400626 tty = tty_init_dev(ptm_driver, index);
Alan Coxd81ed102008-10-13 10:41:42 +0100627 mutex_unlock(&tty_mutex);
628
Alan Cox73ec06f2008-10-13 10:42:29 +0100629 if (IS_ERR(tty)) {
630 retval = PTR_ERR(tty);
Alan Coxd81ed102008-10-13 10:41:42 +0100631 goto out;
Alan Cox73ec06f2008-10-13 10:42:29 +0100632 }
Alan Coxd81ed102008-10-13 10:41:42 +0100633
634 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
Nick Pigginee2ffa02010-08-18 04:37:35 +1000635
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200636 tty_add_file(tty, filp);
Alan Coxd81ed102008-10-13 10:41:42 +0100637
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100638 retval = devpts_pty_new(inode, tty->link);
Alan Coxd81ed102008-10-13 10:41:42 +0100639 if (retval)
Jiri Slaby1177c0e2011-10-12 11:32:44 +0200640 goto err_release;
Alan Coxd81ed102008-10-13 10:41:42 +0100641
642 retval = ptm_driver->ops->open(tty, filp);
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200643 if (retval)
Jiri Slaby1177c0e2011-10-12 11:32:44 +0200644 goto err_release;
645
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200646 tty_unlock();
Jiri Slaby1177c0e2011-10-12 11:32:44 +0200647 return 0;
648err_release:
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200649 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +0000650 tty_release(inode, filp);
Alan Coxd81ed102008-10-13 10:41:42 +0100651 return retval;
652out:
Jiri Slabyd3bda522012-01-30 21:14:32 +0100653 devpts_kill_index(inode, index);
Greg Kroah-Hartman0ef16982012-02-24 13:55:54 -0800654 tty_unlock();
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200655err_file:
656 tty_free_file(filp);
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200657 return retval;
Alan Coxd81ed102008-10-13 10:41:42 +0100658}
659
660static struct file_operations ptmx_fops;
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662static void __init unix98_pty_init(void)
663{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 ptm_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
665 if (!ptm_driver)
666 panic("Couldn't allocate Unix98 ptm driver");
667 pts_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
668 if (!pts_driver)
669 panic("Couldn't allocate Unix98 pts driver");
670
671 ptm_driver->owner = THIS_MODULE;
672 ptm_driver->driver_name = "pty_master";
673 ptm_driver->name = "ptm";
674 ptm_driver->major = UNIX98_PTY_MASTER_MAJOR;
675 ptm_driver->minor_start = 0;
676 ptm_driver->type = TTY_DRIVER_TYPE_PTY;
677 ptm_driver->subtype = PTY_TYPE_MASTER;
678 ptm_driver->init_termios = tty_std_termios;
679 ptm_driver->init_termios.c_iflag = 0;
680 ptm_driver->init_termios.c_oflag = 0;
681 ptm_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
682 ptm_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -0800683 ptm_driver->init_termios.c_ispeed = 38400;
684 ptm_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 ptm_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW |
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700686 TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 ptm_driver->other = pts_driver;
Alan Coxfeebed62008-10-13 10:41:30 +0100688 tty_set_operations(ptm_driver, &ptm_unix98_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 pts_driver->owner = THIS_MODULE;
691 pts_driver->driver_name = "pty_slave";
692 pts_driver->name = "pts";
693 pts_driver->major = UNIX98_PTY_SLAVE_MAJOR;
694 pts_driver->minor_start = 0;
695 pts_driver->type = TTY_DRIVER_TYPE_PTY;
696 pts_driver->subtype = PTY_TYPE_SLAVE;
697 pts_driver->init_termios = tty_std_termios;
698 pts_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800699 pts_driver->init_termios.c_ispeed = 38400;
700 pts_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 pts_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW |
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700702 TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 pts_driver->other = ptm_driver;
Alan Cox99f1fe12008-10-13 10:42:00 +0100704 tty_set_operations(pts_driver, &pty_unix98_ops);
Alan Coxfe9cd962008-10-13 10:43:38 +0100705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (tty_register_driver(ptm_driver))
707 panic("Couldn't register Unix98 ptm driver");
708 if (tty_register_driver(pts_driver))
709 panic("Couldn't register Unix98 pts driver");
710
Alan Coxd81ed102008-10-13 10:41:42 +0100711 /* Now create the /dev/ptmx special device */
712 tty_default_fops(&ptmx_fops);
713 ptmx_fops.open = ptmx_open;
714
715 cdev_init(&ptmx_cdev, &ptmx_fops);
716 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
717 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
718 panic("Couldn't register /dev/ptmx driver\n");
719 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
Alan Coxd81ed102008-10-13 10:41:42 +0100721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722#else
723static inline void unix98_pty_init(void) { }
724#endif
725
726static int __init pty_init(void)
727{
728 legacy_pty_init();
729 unix98_pty_init();
730 return 0;
731}
732module_init(pty_init);