blob: f96ecaec24f81f9157809f173e8184dcde352c99 [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);
Greg Kroah-Hartmance1000d2012-02-24 13:56:36 -080057#ifdef CONFIG_UNIX98_PTYS
58 if (tty->driver == ptm_driver)
59 devpts_pty_kill(tty->link);
60#endif
Greg Kroah-Hartman0ef16982012-02-24 13:55:54 -080061 tty_unlock();
Arnd Bergmann11dbf202010-06-18 14:58:07 +020062 tty_vhangup(tty->link);
63 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
65}
66
67/*
68 * The unthrottle routine is called by the line discipline to signal
69 * that it can receive more characters. For PTY's, the TTY_THROTTLED
70 * flag is always set, to force the line discipline to always call the
Alan Coxfe9cd962008-10-13 10:43:38 +010071 * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * characters in the queue. This is necessary since each time this
73 * happens, we need to wake up any sleeping processes that could be
74 * (1) trying to send data to the pty, or (2) waiting in wait_until_sent()
75 * for the pty buffer to be drained.
76 */
Alan Coxfe9cd962008-10-13 10:43:38 +010077static void pty_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Alan Coxd945cb92009-07-07 16:39:41 +010079 tty_wakeup(tty->link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 set_bit(TTY_THROTTLED, &tty->flags);
81}
82
Alan Coxd945cb92009-07-07 16:39:41 +010083/**
84 * pty_space - report space left for writing
85 * @to: tty we are writing into
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 *
Alan Coxd945cb92009-07-07 16:39:41 +010087 * The tty buffers allow 64K but we sneak a peak and clip at 8K this
88 * allows a lot of overspill room for echo and other fun messes to
89 * be handled properly
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 */
Alan Coxd945cb92009-07-07 16:39:41 +010091
92static int pty_space(struct tty_struct *to)
93{
94 int n = 8192 - to->buf.memory_used;
95 if (n < 0)
96 return 0;
97 return n;
98}
99
100/**
101 * pty_write - write to a pty
102 * @tty: the tty we write from
103 * @buf: kernel buffer of data
104 * @count: bytes to write
105 *
106 * Our "hardware" write method. Data is coming from the ldisc which
107 * may be in a non sleeping state. We simply throw this at the other
108 * end of the link as if we were an IRQ handler receiving stuff for
109 * the other side of the pty/tty pair.
110 */
111
Linus Torvaldsac89a912009-09-05 13:27:10 -0700112static int pty_write(struct tty_struct *tty, const unsigned char *buf, int c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct tty_struct *to = tty->link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Alan Coxd945cb92009-07-07 16:39:41 +0100116 if (tty->stopped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return 0;
118
Alan Coxd945cb92009-07-07 16:39:41 +0100119 if (c > 0) {
120 /* Stuff the data into the input queue of the other end */
121 c = tty_insert_flip_string(to, buf, c);
122 /* And shovel */
Linus Torvalds202c4672009-09-18 07:05:58 -0700123 if (c) {
124 tty_flip_buffer_push(to);
125 tty_wakeup(tty);
126 }
Alan Cox762faae2009-06-16 17:01:13 +0100127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return c;
129}
130
Alan Coxd945cb92009-07-07 16:39:41 +0100131/**
132 * pty_write_room - write space
133 * @tty: tty we are writing from
134 *
135 * Report how many bytes the ldisc can send into the queue for
136 * the other device.
137 */
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static int pty_write_room(struct tty_struct *tty)
140{
Linus Torvalds85dfd812009-08-10 13:21:19 -0700141 if (tty->stopped)
142 return 0;
Alan Coxd945cb92009-07-07 16:39:41 +0100143 return pty_space(tty->link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Alan Coxd945cb92009-07-07 16:39:41 +0100146/**
147 * pty_chars_in_buffer - characters currently in our tx queue
148 * @tty: our tty
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 *
Alan Coxd945cb92009-07-07 16:39:41 +0100150 * Report how much we have in the transmit queue. As everything is
151 * instantly at the other end this is easy to implement.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
Alan Coxd945cb92009-07-07 16:39:41 +0100153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static int pty_chars_in_buffer(struct tty_struct *tty)
155{
Alan Coxd945cb92009-07-07 16:39:41 +0100156 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159/* Set the lock flag on a pty */
Alan Coxfe9cd962008-10-13 10:43:38 +0100160static int pty_set_lock(struct tty_struct *tty, int __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 int val;
Alan Coxfe9cd962008-10-13 10:43:38 +0100163 if (get_user(val, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return -EFAULT;
165 if (val)
166 set_bit(TTY_PTY_LOCK, &tty->flags);
167 else
168 clear_bit(TTY_PTY_LOCK, &tty->flags);
169 return 0;
170}
171
hyc@symas.com26df6d12010-06-22 10:14:49 -0700172/* Send a signal to the slave */
173static int pty_signal(struct tty_struct *tty, int sig)
174{
175 unsigned long flags;
176 struct pid *pgrp;
177
178 if (tty->link) {
179 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
180 pgrp = get_pid(tty->link->pgrp);
181 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
182
183 kill_pgrp(pgrp, sig, 1);
184 put_pid(pgrp);
185 }
186 return 0;
187}
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189static void pty_flush_buffer(struct tty_struct *tty)
190{
191 struct tty_struct *to = tty->link;
Alan Cox04f378b2008-04-30 00:53:29 -0700192 unsigned long flags;
Alan Coxfe9cd962008-10-13 10:43:38 +0100193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (!to)
195 return;
Alan Coxd945cb92009-07-07 16:39:41 +0100196 /* tty_buffer_flush(to); FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (to->packet) {
Alan Cox04f378b2008-04-30 00:53:29 -0700198 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 tty->ctrl_status |= TIOCPKT_FLUSHWRITE;
200 wake_up_interruptible(&to->read_wait);
Alan Cox04f378b2008-04-30 00:53:29 -0700201 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203}
204
Alan Coxfe9cd962008-10-13 10:43:38 +0100205static int pty_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 int retval = -ENODEV;
208
209 if (!tty || !tty->link)
210 goto out;
211
212 retval = -EIO;
213 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
214 goto out;
215 if (test_bit(TTY_PTY_LOCK, &tty->link->flags))
216 goto out;
217 if (tty->link->count != 1)
218 goto out;
219
220 clear_bit(TTY_OTHER_CLOSED, &tty->link->flags);
221 set_bit(TTY_THROTTLED, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 retval = 0;
223out:
224 return retval;
225}
226
Alan Coxfe9cd962008-10-13 10:43:38 +0100227static void pty_set_termios(struct tty_struct *tty,
228 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Alan Coxfe9cd962008-10-13 10:43:38 +0100230 tty->termios->c_cflag &= ~(CSIZE | PARENB);
231 tty->termios->c_cflag |= (CS8 | CREAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Alan Coxfc6f62382009-01-02 13:43:17 +0000234/**
235 * pty_do_resize - resize event
236 * @tty: tty being resized
Alan Coxc774bda2009-01-11 19:46:49 +0000237 * @ws: window size being set.
Alan Coxfc6f62382009-01-02 13:43:17 +0000238 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800239 * Update the termios variables and send the necessary signals to
Alan Coxfc6f62382009-01-02 13:43:17 +0000240 * peform a terminal resize correctly
241 */
242
243int pty_resize(struct tty_struct *tty, struct winsize *ws)
244{
245 struct pid *pgrp, *rpgrp;
246 unsigned long flags;
247 struct tty_struct *pty = tty->link;
248
249 /* For a PTY we need to lock the tty side */
250 mutex_lock(&tty->termios_mutex);
251 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
252 goto done;
253
254 /* Get the PID values and reference them so we can
255 avoid holding the tty ctrl lock while sending signals.
256 We need to lock these individually however. */
257
258 spin_lock_irqsave(&tty->ctrl_lock, flags);
259 pgrp = get_pid(tty->pgrp);
260 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
261
262 spin_lock_irqsave(&pty->ctrl_lock, flags);
263 rpgrp = get_pid(pty->pgrp);
264 spin_unlock_irqrestore(&pty->ctrl_lock, flags);
265
266 if (pgrp)
267 kill_pgrp(pgrp, SIGWINCH, 1);
268 if (rpgrp != pgrp && rpgrp)
269 kill_pgrp(rpgrp, SIGWINCH, 1);
270
271 put_pid(pgrp);
272 put_pid(rpgrp);
273
274 tty->winsize = *ws;
275 pty->winsize = *ws; /* Never used so will go away soon */
276done:
277 mutex_unlock(&tty->termios_mutex);
278 return 0;
279}
280
Linus Torvalds342a5972009-09-30 07:49:40 -0700281/* Traditional BSD devices */
282#ifdef CONFIG_LEGACY_PTYS
283
Alan Coxbf970ee2008-10-13 10:42:39 +0100284static int pty_install(struct tty_driver *driver, struct tty_struct *tty)
285{
286 struct tty_struct *o_tty;
287 int idx = tty->index;
288 int retval;
289
290 o_tty = alloc_tty_struct();
291 if (!o_tty)
292 return -ENOMEM;
293 if (!try_module_get(driver->other->owner)) {
294 /* This cannot in fact currently happen */
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100295 retval = -ENOMEM;
296 goto err_free_tty;
Alan Coxbf970ee2008-10-13 10:42:39 +0100297 }
298 initialize_tty_struct(o_tty, driver->other, idx);
299
300 /* We always use new tty termios data so we can do this
301 the easy way .. */
302 retval = tty_init_termios(tty);
303 if (retval)
Jiri Slabya9dccdd2011-03-23 10:48:36 +0100304 goto err_deinit_tty;
Alan Coxbf970ee2008-10-13 10:42:39 +0100305
306 retval = tty_init_termios(o_tty);
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100307 if (retval)
308 goto err_free_termios;
Alan Coxfe9cd962008-10-13 10:43:38 +0100309
Alan Coxbf970ee2008-10-13 10:42:39 +0100310 /*
311 * Everything allocated ... set up the o_tty structure.
312 */
313 driver->other->ttys[idx] = o_tty;
314 tty_driver_kref_get(driver->other);
315 if (driver->subtype == PTY_TYPE_MASTER)
316 o_tty->count++;
317 /* Establish the links in both directions */
318 tty->link = o_tty;
319 o_tty->link = tty;
320
321 tty_driver_kref_get(driver);
322 tty->count++;
323 driver->ttys[idx] = tty;
324 return 0;
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100325err_free_termios:
326 tty_free_termios(tty);
Jiri Slabya9dccdd2011-03-23 10:48:36 +0100327err_deinit_tty:
328 deinitialize_tty_struct(o_tty);
Alan Coxbf970ee2008-10-13 10:42:39 +0100329 module_put(o_tty->driver->owner);
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100330err_free_tty:
Alan Coxbf970ee2008-10-13 10:42:39 +0100331 free_tty_struct(o_tty);
Jiri Slaby8a1b8d72011-03-23 10:48:33 +0100332 return retval;
Alan Coxbf970ee2008-10-13 10:42:39 +0100333}
334
Alan Cox6caa76b2011-02-14 16:27:22 +0000335static int pty_bsd_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 unsigned int cmd, unsigned long arg)
337{
338 switch (cmd) {
339 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
340 return pty_set_lock(tty, (int __user *) arg);
hyc@symas.com26df6d12010-06-22 10:14:49 -0700341 case TIOCSIG: /* Send signal to other side of pty */
342 return pty_signal(tty, (int) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344 return -ENOIOCTLCMD;
345}
346
Kay Sieversdc8c8582007-08-15 12:25:38 +0200347static int legacy_count = CONFIG_LEGACY_PTY_COUNT;
348module_param(legacy_count, int, 0);
349
Linus Torvalds342a5972009-09-30 07:49:40 -0700350/*
351 * The master side of a pty can do TIOCSPTLCK and thus
352 * has pty_bsd_ioctl.
353 */
354static const struct tty_operations master_pty_ops_bsd = {
355 .install = pty_install,
Alan Cox3e8e88c2008-04-30 00:54:10 -0700356 .open = pty_open,
357 .close = pty_close,
358 .write = pty_write,
359 .write_room = pty_write_room,
360 .flush_buffer = pty_flush_buffer,
361 .chars_in_buffer = pty_chars_in_buffer,
362 .unthrottle = pty_unthrottle,
363 .set_termios = pty_set_termios,
364 .ioctl = pty_bsd_ioctl,
Alan Coxfc6f62382009-01-02 13:43:17 +0000365 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700366};
367
Linus Torvalds342a5972009-09-30 07:49:40 -0700368static const struct tty_operations slave_pty_ops_bsd = {
369 .install = pty_install,
370 .open = pty_open,
371 .close = pty_close,
372 .write = pty_write,
373 .write_room = pty_write_room,
374 .flush_buffer = pty_flush_buffer,
375 .chars_in_buffer = pty_chars_in_buffer,
376 .unthrottle = pty_unthrottle,
377 .set_termios = pty_set_termios,
378 .resize = pty_resize
379};
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381static void __init legacy_pty_init(void)
382{
Linus Torvalds342a5972009-09-30 07:49:40 -0700383 struct tty_driver *pty_driver, *pty_slave_driver;
384
Kay Sieversdc8c8582007-08-15 12:25:38 +0200385 if (legacy_count <= 0)
386 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Kay Sieversdc8c8582007-08-15 12:25:38 +0200388 pty_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (!pty_driver)
390 panic("Couldn't allocate pty driver");
391
Kay Sieversdc8c8582007-08-15 12:25:38 +0200392 pty_slave_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!pty_slave_driver)
394 panic("Couldn't allocate pty slave driver");
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 pty_driver->driver_name = "pty_master";
397 pty_driver->name = "pty";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 pty_driver->major = PTY_MASTER_MAJOR;
399 pty_driver->minor_start = 0;
400 pty_driver->type = TTY_DRIVER_TYPE_PTY;
401 pty_driver->subtype = PTY_TYPE_MASTER;
402 pty_driver->init_termios = tty_std_termios;
403 pty_driver->init_termios.c_iflag = 0;
404 pty_driver->init_termios.c_oflag = 0;
405 pty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
406 pty_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -0800407 pty_driver->init_termios.c_ispeed = 38400;
408 pty_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 pty_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW;
410 pty_driver->other = pty_slave_driver;
Linus Torvalds342a5972009-09-30 07:49:40 -0700411 tty_set_operations(pty_driver, &master_pty_ops_bsd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 pty_slave_driver->driver_name = "pty_slave";
414 pty_slave_driver->name = "ttyp";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 pty_slave_driver->major = PTY_SLAVE_MAJOR;
416 pty_slave_driver->minor_start = 0;
417 pty_slave_driver->type = TTY_DRIVER_TYPE_PTY;
418 pty_slave_driver->subtype = PTY_TYPE_SLAVE;
419 pty_slave_driver->init_termios = tty_std_termios;
420 pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800421 pty_slave_driver->init_termios.c_ispeed = 38400;
422 pty_slave_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 pty_slave_driver->flags = TTY_DRIVER_RESET_TERMIOS |
424 TTY_DRIVER_REAL_RAW;
425 pty_slave_driver->other = pty_driver;
Linus Torvalds342a5972009-09-30 07:49:40 -0700426 tty_set_operations(pty_slave_driver, &slave_pty_ops_bsd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 if (tty_register_driver(pty_driver))
429 panic("Couldn't register pty driver");
430 if (tty_register_driver(pty_slave_driver))
431 panic("Couldn't register pty slave driver");
432}
433#else
434static inline void legacy_pty_init(void) { }
435#endif
436
437/* Unix98 devices */
438#ifdef CONFIG_UNIX98_PTYS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Alan Coxd81ed102008-10-13 10:41:42 +0100440static struct cdev ptmx_cdev;
441
Alan Cox6caa76b2011-02-14 16:27:22 +0000442static int pty_unix98_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 unsigned int cmd, unsigned long arg)
444{
445 switch (cmd) {
446 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
447 return pty_set_lock(tty, (int __user *)arg);
448 case TIOCGPTN: /* Get PT Number */
449 return put_user(tty->index, (unsigned int __user *)arg);
hyc@symas.com26df6d12010-06-22 10:14:49 -0700450 case TIOCSIG: /* Send signal to other side of pty */
451 return pty_signal(tty, (int) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453
454 return -ENOIOCTLCMD;
455}
456
Alan Cox99f1fe12008-10-13 10:42:00 +0100457/**
458 * ptm_unix98_lookup - find a pty master
459 * @driver: ptm driver
460 * @idx: tty index
461 *
462 * Look up a pty master device. Called under the tty_mutex for now.
463 * This provides our locking.
464 */
465
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100466static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver,
467 struct inode *ptm_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100468{
Konstantin Khlebnikov593a27c2012-01-05 13:04:21 +0400469 /* Master must be open via /dev/ptmx */
470 return ERR_PTR(-EIO);
Alan Cox99f1fe12008-10-13 10:42:00 +0100471}
472
473/**
474 * pts_unix98_lookup - find a pty slave
475 * @driver: pts driver
476 * @idx: tty index
477 *
478 * Look up a pty master device. Called under the tty_mutex for now.
479 * This provides our locking.
480 */
481
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100482static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver,
483 struct inode *pts_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100484{
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100485 struct tty_struct *tty = devpts_get_tty(pts_inode, idx);
Alan Cox99f1fe12008-10-13 10:42:00 +0100486 /* Master must be open before slave */
487 if (!tty)
488 return ERR_PTR(-EIO);
489 return tty;
490}
491
Alan Coxbf970ee2008-10-13 10:42:39 +0100492static void pty_unix98_shutdown(struct tty_struct *tty)
Alan Coxfeebed62008-10-13 10:41:30 +0100493{
Jiri Slaby24d406a2011-08-10 14:59:28 +0200494 tty_driver_remove_tty(tty->driver, tty);
Alan Coxfeebed62008-10-13 10:41:30 +0100495 /* We have our own method as we don't use the tty index */
496 kfree(tty->termios);
Alan Coxfeebed62008-10-13 10:41:30 +0100497}
498
Alan Cox8b0a88d2008-10-13 10:42:19 +0100499/* We have no need to install and remove our tty objects as devpts does all
500 the work for us */
501
Alan Coxbf970ee2008-10-13 10:42:39 +0100502static int pty_unix98_install(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100503{
Alan Coxbf970ee2008-10-13 10:42:39 +0100504 struct tty_struct *o_tty;
505 int idx = tty->index;
506
507 o_tty = alloc_tty_struct();
508 if (!o_tty)
509 return -ENOMEM;
510 if (!try_module_get(driver->other->owner)) {
511 /* This cannot in fact currently happen */
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100512 goto err_free_tty;
Alan Coxbf970ee2008-10-13 10:42:39 +0100513 }
514 initialize_tty_struct(o_tty, driver->other, idx);
515
Alan Cox8dff04e2008-10-13 10:43:58 +0100516 tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100517 if (tty->termios == NULL)
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100518 goto err_free_mem;
Alan Coxbf970ee2008-10-13 10:42:39 +0100519 *tty->termios = driver->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100520 tty->termios_locked = tty->termios + 1;
521
522 o_tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100523 if (o_tty->termios == NULL)
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100524 goto err_free_mem;
Alan Coxbf970ee2008-10-13 10:42:39 +0100525 *o_tty->termios = driver->other->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100526 o_tty->termios_locked = o_tty->termios + 1;
Alan Coxbf970ee2008-10-13 10:42:39 +0100527
528 tty_driver_kref_get(driver->other);
529 if (driver->subtype == PTY_TYPE_MASTER)
530 o_tty->count++;
531 /* Establish the links in both directions */
532 tty->link = o_tty;
533 o_tty->link = tty;
534 /*
535 * All structures have been allocated, so now we install them.
536 * Failures after this point use release_tty to clean up, so
537 * there's no need to null out the local pointers.
538 */
539 tty_driver_kref_get(driver);
540 tty->count++;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100541 return 0;
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100542err_free_mem:
Jiri Slabya9dccdd2011-03-23 10:48:36 +0100543 deinitialize_tty_struct(o_tty);
Alan Cox8dff04e2008-10-13 10:43:58 +0100544 kfree(o_tty->termios);
Alan Cox8dff04e2008-10-13 10:43:58 +0100545 kfree(tty->termios);
Jiri Slabyc18d77a2011-03-23 10:48:34 +0100546 module_put(o_tty->driver->owner);
547err_free_tty:
548 free_tty_struct(o_tty);
Alan Coxbf970ee2008-10-13 10:42:39 +0100549 return -ENOMEM;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100550}
551
Jiri Slaby484af542011-11-16 16:27:11 +0100552static void ptm_unix98_remove(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100553{
Jiri Slaby484af542011-11-16 16:27:11 +0100554}
555
556static void pts_unix98_remove(struct tty_driver *driver, struct tty_struct *tty)
557{
Alan Cox8b0a88d2008-10-13 10:42:19 +0100558}
559
Alan Coxfeebed62008-10-13 10:41:30 +0100560static const struct tty_operations ptm_unix98_ops = {
Alan Cox99f1fe12008-10-13 10:42:00 +0100561 .lookup = ptm_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100562 .install = pty_unix98_install,
Jiri Slaby484af542011-11-16 16:27:11 +0100563 .remove = ptm_unix98_remove,
Alan Cox3e8e88c2008-04-30 00:54:10 -0700564 .open = pty_open,
565 .close = pty_close,
566 .write = pty_write,
567 .write_room = pty_write_room,
568 .flush_buffer = pty_flush_buffer,
569 .chars_in_buffer = pty_chars_in_buffer,
570 .unthrottle = pty_unthrottle,
571 .set_termios = pty_set_termios,
Alan Coxfeebed62008-10-13 10:41:30 +0100572 .ioctl = pty_unix98_ioctl,
Alan Coxfc6f62382009-01-02 13:43:17 +0000573 .shutdown = pty_unix98_shutdown,
574 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700575};
576
Alan Cox99f1fe12008-10-13 10:42:00 +0100577static const struct tty_operations pty_unix98_ops = {
578 .lookup = pts_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100579 .install = pty_unix98_install,
Jiri Slaby484af542011-11-16 16:27:11 +0100580 .remove = pts_unix98_remove,
Alan Cox99f1fe12008-10-13 10:42:00 +0100581 .open = pty_open,
582 .close = pty_close,
583 .write = pty_write,
584 .write_room = pty_write_room,
585 .flush_buffer = pty_flush_buffer,
586 .chars_in_buffer = pty_chars_in_buffer,
587 .unthrottle = pty_unthrottle,
588 .set_termios = pty_set_termios,
Alan Coxbf970ee2008-10-13 10:42:39 +0100589 .shutdown = pty_unix98_shutdown
Alan Cox99f1fe12008-10-13 10:42:00 +0100590};
Alan Coxd81ed102008-10-13 10:41:42 +0100591
592/**
593 * ptmx_open - open a unix 98 pty master
594 * @inode: inode of device file
595 * @filp: file pointer to tty
596 *
597 * Allocate a unix98 pty master device from the ptmx driver.
598 *
599 * Locking: tty_mutex protects the init_dev work. tty->count should
600 * protect the rest.
601 * allocated_ptys_lock handles the list of free pty numbers
602 */
603
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200604static int ptmx_open(struct inode *inode, struct file *filp)
Alan Coxd81ed102008-10-13 10:41:42 +0100605{
606 struct tty_struct *tty;
607 int retval;
608 int index;
609
610 nonseekable_open(inode, filp);
611
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200612 retval = tty_alloc_file(filp);
613 if (retval)
614 return retval;
615
Alan Coxd81ed102008-10-13 10:41:42 +0100616 /* find a device that is not in use. */
Greg Kroah-Hartman0ef16982012-02-24 13:55:54 -0800617 tty_lock();
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100618 index = devpts_new_index(inode);
Greg Kroah-Hartman0ef16982012-02-24 13:55:54 -0800619 tty_unlock();
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200620 if (index < 0) {
621 retval = index;
622 goto err_file;
623 }
Alan Coxd81ed102008-10-13 10:41:42 +0100624
625 mutex_lock(&tty_mutex);
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200626 tty_lock();
Konstantin Khlebnikov593a27c2012-01-05 13:04:21 +0400627 tty = tty_init_dev(ptm_driver, index);
Alan Coxd81ed102008-10-13 10:41:42 +0100628 mutex_unlock(&tty_mutex);
629
Alan Cox73ec06f2008-10-13 10:42:29 +0100630 if (IS_ERR(tty)) {
631 retval = PTR_ERR(tty);
Alan Coxd81ed102008-10-13 10:41:42 +0100632 goto out;
Alan Cox73ec06f2008-10-13 10:42:29 +0100633 }
Alan Coxd81ed102008-10-13 10:41:42 +0100634
635 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
Nick Pigginee2ffa02010-08-18 04:37:35 +1000636
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200637 tty_add_file(tty, filp);
Alan Coxd81ed102008-10-13 10:41:42 +0100638
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100639 retval = devpts_pty_new(inode, tty->link);
Alan Coxd81ed102008-10-13 10:41:42 +0100640 if (retval)
Jiri Slaby1177c0e2011-10-12 11:32:44 +0200641 goto err_release;
Alan Coxd81ed102008-10-13 10:41:42 +0100642
643 retval = ptm_driver->ops->open(tty, filp);
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200644 if (retval)
Jiri Slaby1177c0e2011-10-12 11:32:44 +0200645 goto err_release;
646
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200647 tty_unlock();
Jiri Slaby1177c0e2011-10-12 11:32:44 +0200648 return 0;
649err_release:
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200650 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +0000651 tty_release(inode, filp);
Alan Coxd81ed102008-10-13 10:41:42 +0100652 return retval;
653out:
Jiri Slabyd3bda522012-01-30 21:14:32 +0100654 devpts_kill_index(inode, index);
Greg Kroah-Hartman0ef16982012-02-24 13:55:54 -0800655 tty_unlock();
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200656err_file:
657 tty_free_file(filp);
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +0200658 return retval;
Alan Coxd81ed102008-10-13 10:41:42 +0100659}
660
661static struct file_operations ptmx_fops;
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663static void __init unix98_pty_init(void)
664{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 ptm_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
666 if (!ptm_driver)
667 panic("Couldn't allocate Unix98 ptm driver");
668 pts_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
669 if (!pts_driver)
670 panic("Couldn't allocate Unix98 pts driver");
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 pts_driver->driver_name = "pty_slave";
691 pts_driver->name = "pts";
692 pts_driver->major = UNIX98_PTY_SLAVE_MAJOR;
693 pts_driver->minor_start = 0;
694 pts_driver->type = TTY_DRIVER_TYPE_PTY;
695 pts_driver->subtype = PTY_TYPE_SLAVE;
696 pts_driver->init_termios = tty_std_termios;
697 pts_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800698 pts_driver->init_termios.c_ispeed = 38400;
699 pts_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 pts_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW |
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700701 TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 pts_driver->other = ptm_driver;
Alan Cox99f1fe12008-10-13 10:42:00 +0100703 tty_set_operations(pts_driver, &pty_unix98_ops);
Alan Coxfe9cd962008-10-13 10:43:38 +0100704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (tty_register_driver(ptm_driver))
706 panic("Couldn't register Unix98 ptm driver");
707 if (tty_register_driver(pts_driver))
708 panic("Couldn't register Unix98 pts driver");
709
Alan Coxd81ed102008-10-13 10:41:42 +0100710 /* Now create the /dev/ptmx special device */
711 tty_default_fops(&ptmx_fops);
712 ptmx_fops.open = ptmx_open;
713
714 cdev_init(&ptmx_cdev, &ptmx_fops);
715 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
716 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
717 panic("Couldn't register /dev/ptmx driver\n");
718 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
Alan Coxd81ed102008-10-13 10:41:42 +0100720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721#else
722static inline void unix98_pty_init(void) { }
723#endif
724
725static int __init pty_init(void)
726{
727 legacy_pty_init();
728 unix98_pty_init();
729 return 0;
730}
731module_init(pty_init);