blob: 6e6942c45f5b6cb76d6c1aaf91ed96fee9185ae7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/pty.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * Added support for a Unix98-style ptmx device.
7 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Alan Coxfe9cd962008-10-13 10:43:38 +01009 * When reading this code see also fs/devpts. In particular note that the
10 * driver_data field is used by the devpts side as a binding to the devpts
11 * inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Alan Coxfe9cd962008-10-13 10:43:38 +010014#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/interrupt.h>
18#include <linux/tty.h>
19#include <linux/tty_flip.h>
20#include <linux/fcntl.h>
21#include <linux/string.h>
22#include <linux/major.h>
23#include <linux/mm.h>
24#include <linux/init.h>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040025#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/sysctl.h>
Alan Coxd81ed102008-10-13 10:41:42 +010027#include <linux/device.h>
Alan Coxfe9cd962008-10-13 10:43:38 +010028#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/bitops.h>
30#include <linux/devpts_fs.h>
31
Alan Coxfe9cd962008-10-13 10:43:38 +010032#include <asm/system.h>
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#ifdef CONFIG_UNIX98_PTYS
Roel Kluinda2bdf92009-01-07 18:09:15 -080035static struct tty_driver *ptm_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static struct tty_driver *pts_driver;
37#endif
38
Alan Coxfe9cd962008-10-13 10:43:38 +010039static void pty_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
Alan Coxfe9cd962008-10-13 10:43:38 +010041 BUG_ON(!tty);
42 if (tty->driver->subtype == PTY_TYPE_MASTER)
43 WARN_ON(tty->count > 1);
44 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 if (tty->count > 2)
46 return;
47 }
48 wake_up_interruptible(&tty->read_wait);
49 wake_up_interruptible(&tty->write_wait);
50 tty->packet = 0;
51 if (!tty->link)
52 return;
53 tty->link->packet = 0;
54 set_bit(TTY_OTHER_CLOSED, &tty->link->flags);
55 wake_up_interruptible(&tty->link->read_wait);
56 wake_up_interruptible(&tty->link->write_wait);
57 if (tty->driver->subtype == PTY_TYPE_MASTER) {
58 set_bit(TTY_OTHER_CLOSED, &tty->flags);
59#ifdef CONFIG_UNIX98_PTYS
60 if (tty->driver == ptm_driver)
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +010061 devpts_pty_kill(tty->link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#endif
63 tty_vhangup(tty->link);
64 }
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
Alan Coxfe9cd962008-10-13 10:43:38 +0100112static int pty_write(struct tty_struct *tty, const unsigned char *buf,
113 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 struct tty_struct *to = tty->link;
Alan Coxd945cb92009-07-07 16:39:41 +0100116 int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Alan Coxd945cb92009-07-07 16:39:41 +0100118 if (tty->stopped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return 0;
120
Alan Coxd945cb92009-07-07 16:39:41 +0100121 /* This isn't locked but our 8K is quite sloppy so no
122 big deal */
123
124 c = pty_space(to);
125 if (c > count)
126 c = count;
127 if (c > 0) {
128 /* Stuff the data into the input queue of the other end */
129 c = tty_insert_flip_string(to, buf, c);
130 /* And shovel */
131 tty_flip_buffer_push(to);
132 tty_wakeup(tty);
Alan Cox762faae2009-06-16 17:01:13 +0100133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return c;
135}
136
Alan Coxd945cb92009-07-07 16:39:41 +0100137/**
138 * pty_write_room - write space
139 * @tty: tty we are writing from
140 *
141 * Report how many bytes the ldisc can send into the queue for
142 * the other device.
143 */
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static int pty_write_room(struct tty_struct *tty)
146{
Alan Coxd945cb92009-07-07 16:39:41 +0100147 return pty_space(tty->link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Alan Coxd945cb92009-07-07 16:39:41 +0100150/**
151 * pty_chars_in_buffer - characters currently in our tx queue
152 * @tty: our tty
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
Alan Coxd945cb92009-07-07 16:39:41 +0100154 * Report how much we have in the transmit queue. As everything is
155 * instantly at the other end this is easy to implement.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 */
Alan Coxd945cb92009-07-07 16:39:41 +0100157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static int pty_chars_in_buffer(struct tty_struct *tty)
159{
Alan Coxd945cb92009-07-07 16:39:41 +0100160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163/* Set the lock flag on a pty */
Alan Coxfe9cd962008-10-13 10:43:38 +0100164static int pty_set_lock(struct tty_struct *tty, int __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 int val;
Alan Coxfe9cd962008-10-13 10:43:38 +0100167 if (get_user(val, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return -EFAULT;
169 if (val)
170 set_bit(TTY_PTY_LOCK, &tty->flags);
171 else
172 clear_bit(TTY_PTY_LOCK, &tty->flags);
173 return 0;
174}
175
176static void pty_flush_buffer(struct tty_struct *tty)
177{
178 struct tty_struct *to = tty->link;
Alan Cox04f378b2008-04-30 00:53:29 -0700179 unsigned long flags;
Alan Coxfe9cd962008-10-13 10:43:38 +0100180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (!to)
182 return;
Alan Coxd945cb92009-07-07 16:39:41 +0100183 /* tty_buffer_flush(to); FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (to->packet) {
Alan Cox04f378b2008-04-30 00:53:29 -0700185 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 tty->ctrl_status |= TIOCPKT_FLUSHWRITE;
187 wake_up_interruptible(&to->read_wait);
Alan Cox04f378b2008-04-30 00:53:29 -0700188 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190}
191
Alan Coxfe9cd962008-10-13 10:43:38 +0100192static int pty_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 int retval = -ENODEV;
195
196 if (!tty || !tty->link)
197 goto out;
198
199 retval = -EIO;
200 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
201 goto out;
202 if (test_bit(TTY_PTY_LOCK, &tty->link->flags))
203 goto out;
204 if (tty->link->count != 1)
205 goto out;
206
207 clear_bit(TTY_OTHER_CLOSED, &tty->link->flags);
208 set_bit(TTY_THROTTLED, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 retval = 0;
210out:
211 return retval;
212}
213
Alan Coxfe9cd962008-10-13 10:43:38 +0100214static void pty_set_termios(struct tty_struct *tty,
215 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Alan Coxfe9cd962008-10-13 10:43:38 +0100217 tty->termios->c_cflag &= ~(CSIZE | PARENB);
218 tty->termios->c_cflag |= (CS8 | CREAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Alan Coxfc6f6232009-01-02 13:43:17 +0000221/**
222 * pty_do_resize - resize event
223 * @tty: tty being resized
Alan Coxc774bda2009-01-11 19:46:49 +0000224 * @ws: window size being set.
Alan Coxfc6f6232009-01-02 13:43:17 +0000225 *
226 * Update the termios variables and send the neccessary signals to
227 * peform a terminal resize correctly
228 */
229
230int pty_resize(struct tty_struct *tty, struct winsize *ws)
231{
232 struct pid *pgrp, *rpgrp;
233 unsigned long flags;
234 struct tty_struct *pty = tty->link;
235
236 /* For a PTY we need to lock the tty side */
237 mutex_lock(&tty->termios_mutex);
238 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
239 goto done;
240
241 /* Get the PID values and reference them so we can
242 avoid holding the tty ctrl lock while sending signals.
243 We need to lock these individually however. */
244
245 spin_lock_irqsave(&tty->ctrl_lock, flags);
246 pgrp = get_pid(tty->pgrp);
247 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
248
249 spin_lock_irqsave(&pty->ctrl_lock, flags);
250 rpgrp = get_pid(pty->pgrp);
251 spin_unlock_irqrestore(&pty->ctrl_lock, flags);
252
253 if (pgrp)
254 kill_pgrp(pgrp, SIGWINCH, 1);
255 if (rpgrp != pgrp && rpgrp)
256 kill_pgrp(rpgrp, SIGWINCH, 1);
257
258 put_pid(pgrp);
259 put_pid(rpgrp);
260
261 tty->winsize = *ws;
262 pty->winsize = *ws; /* Never used so will go away soon */
263done:
264 mutex_unlock(&tty->termios_mutex);
265 return 0;
266}
267
Alan Coxbf970ee2008-10-13 10:42:39 +0100268static int pty_install(struct tty_driver *driver, struct tty_struct *tty)
269{
270 struct tty_struct *o_tty;
271 int idx = tty->index;
272 int retval;
273
274 o_tty = alloc_tty_struct();
275 if (!o_tty)
276 return -ENOMEM;
277 if (!try_module_get(driver->other->owner)) {
278 /* This cannot in fact currently happen */
279 free_tty_struct(o_tty);
280 return -ENOMEM;
281 }
282 initialize_tty_struct(o_tty, driver->other, idx);
283
284 /* We always use new tty termios data so we can do this
285 the easy way .. */
286 retval = tty_init_termios(tty);
287 if (retval)
288 goto free_mem_out;
289
290 retval = tty_init_termios(o_tty);
291 if (retval) {
292 tty_free_termios(tty);
293 goto free_mem_out;
294 }
Alan Coxfe9cd962008-10-13 10:43:38 +0100295
Alan Coxbf970ee2008-10-13 10:42:39 +0100296 /*
297 * Everything allocated ... set up the o_tty structure.
298 */
299 driver->other->ttys[idx] = o_tty;
300 tty_driver_kref_get(driver->other);
301 if (driver->subtype == PTY_TYPE_MASTER)
302 o_tty->count++;
303 /* Establish the links in both directions */
304 tty->link = o_tty;
305 o_tty->link = tty;
306
307 tty_driver_kref_get(driver);
308 tty->count++;
309 driver->ttys[idx] = tty;
310 return 0;
311free_mem_out:
312 module_put(o_tty->driver->owner);
313 free_tty_struct(o_tty);
314 return -ENOMEM;
315}
316
317
Jeff Dikeb68e31d2006-10-02 02:17:18 -0700318static const struct tty_operations pty_ops = {
Alan Coxbf970ee2008-10-13 10:42:39 +0100319 .install = pty_install,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 .open = pty_open,
321 .close = pty_close,
322 .write = pty_write,
323 .write_room = pty_write_room,
324 .flush_buffer = pty_flush_buffer,
325 .chars_in_buffer = pty_chars_in_buffer,
326 .unthrottle = pty_unthrottle,
327 .set_termios = pty_set_termios,
Alan Coxfc6f6232009-01-02 13:43:17 +0000328 .resize = pty_resize
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329};
330
331/* Traditional BSD devices */
332#ifdef CONFIG_LEGACY_PTYS
333static struct tty_driver *pty_driver, *pty_slave_driver;
334
335static int pty_bsd_ioctl(struct tty_struct *tty, struct file *file,
336 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);
341 }
342 return -ENOIOCTLCMD;
343}
344
Kay Sieversdc8c8582007-08-15 12:25:38 +0200345static int legacy_count = CONFIG_LEGACY_PTY_COUNT;
346module_param(legacy_count, int, 0);
347
Alan Cox3e8e88c2008-04-30 00:54:10 -0700348static const struct tty_operations pty_ops_bsd = {
349 .open = pty_open,
350 .close = pty_close,
351 .write = pty_write,
352 .write_room = pty_write_room,
353 .flush_buffer = pty_flush_buffer,
354 .chars_in_buffer = pty_chars_in_buffer,
355 .unthrottle = pty_unthrottle,
356 .set_termios = pty_set_termios,
357 .ioctl = pty_bsd_ioctl,
Alan Coxfc6f6232009-01-02 13:43:17 +0000358 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700359};
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361static void __init legacy_pty_init(void)
362{
Kay Sieversdc8c8582007-08-15 12:25:38 +0200363 if (legacy_count <= 0)
364 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Kay Sieversdc8c8582007-08-15 12:25:38 +0200366 pty_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (!pty_driver)
368 panic("Couldn't allocate pty driver");
369
Kay Sieversdc8c8582007-08-15 12:25:38 +0200370 pty_slave_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (!pty_slave_driver)
372 panic("Couldn't allocate pty slave driver");
373
374 pty_driver->owner = THIS_MODULE;
375 pty_driver->driver_name = "pty_master";
376 pty_driver->name = "pty";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 pty_driver->major = PTY_MASTER_MAJOR;
378 pty_driver->minor_start = 0;
379 pty_driver->type = TTY_DRIVER_TYPE_PTY;
380 pty_driver->subtype = PTY_TYPE_MASTER;
381 pty_driver->init_termios = tty_std_termios;
382 pty_driver->init_termios.c_iflag = 0;
383 pty_driver->init_termios.c_oflag = 0;
384 pty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
385 pty_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -0800386 pty_driver->init_termios.c_ispeed = 38400;
387 pty_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 pty_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW;
389 pty_driver->other = pty_slave_driver;
390 tty_set_operations(pty_driver, &pty_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 pty_slave_driver->owner = THIS_MODULE;
393 pty_slave_driver->driver_name = "pty_slave";
394 pty_slave_driver->name = "ttyp";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 pty_slave_driver->major = PTY_SLAVE_MAJOR;
396 pty_slave_driver->minor_start = 0;
397 pty_slave_driver->type = TTY_DRIVER_TYPE_PTY;
398 pty_slave_driver->subtype = PTY_TYPE_SLAVE;
399 pty_slave_driver->init_termios = tty_std_termios;
400 pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800401 pty_slave_driver->init_termios.c_ispeed = 38400;
402 pty_slave_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 pty_slave_driver->flags = TTY_DRIVER_RESET_TERMIOS |
404 TTY_DRIVER_REAL_RAW;
405 pty_slave_driver->other = pty_driver;
406 tty_set_operations(pty_slave_driver, &pty_ops);
407
408 if (tty_register_driver(pty_driver))
409 panic("Couldn't register pty driver");
410 if (tty_register_driver(pty_slave_driver))
411 panic("Couldn't register pty slave driver");
412}
413#else
414static inline void legacy_pty_init(void) { }
415#endif
416
417/* Unix98 devices */
418#ifdef CONFIG_UNIX98_PTYS
419/*
420 * sysctl support for setting limits on the number of Unix98 ptys allocated.
421 * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly.
422 */
423int pty_limit = NR_UNIX98_PTY_DEFAULT;
Alan Coxfe9cd962008-10-13 10:43:38 +0100424static int pty_limit_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425static int pty_limit_max = NR_UNIX98_PTY_MAX;
Alan Coxfe9cd962008-10-13 10:43:38 +0100426static int pty_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Alan Coxd81ed102008-10-13 10:41:42 +0100428static struct cdev ptmx_cdev;
429
Eric W. Biederman35834ca2007-10-18 03:05:31 -0700430static struct ctl_table pty_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 {
432 .ctl_name = PTY_MAX,
433 .procname = "max",
434 .maxlen = sizeof(int),
435 .mode = 0644,
436 .data = &pty_limit,
437 .proc_handler = &proc_dointvec_minmax,
438 .strategy = &sysctl_intvec,
439 .extra1 = &pty_limit_min,
440 .extra2 = &pty_limit_max,
441 }, {
442 .ctl_name = PTY_NR,
443 .procname = "nr",
444 .maxlen = sizeof(int),
445 .mode = 0444,
Alan Coxbf970ee2008-10-13 10:42:39 +0100446 .data = &pty_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 .proc_handler = &proc_dointvec,
448 }, {
449 .ctl_name = 0
450 }
451};
452
Eric W. Biederman35834ca2007-10-18 03:05:31 -0700453static struct ctl_table pty_kern_table[] = {
454 {
455 .ctl_name = KERN_PTY,
456 .procname = "pty",
457 .mode = 0555,
458 .child = pty_table,
459 },
460 {}
461};
462
463static struct ctl_table pty_root_table[] = {
464 {
465 .ctl_name = CTL_KERN,
466 .procname = "kernel",
467 .mode = 0555,
468 .child = pty_kern_table,
469 },
470 {}
471};
472
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474static int pty_unix98_ioctl(struct tty_struct *tty, struct file *file,
475 unsigned int cmd, unsigned long arg)
476{
477 switch (cmd) {
478 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
479 return pty_set_lock(tty, (int __user *)arg);
480 case TIOCGPTN: /* Get PT Number */
481 return put_user(tty->index, (unsigned int __user *)arg);
482 }
483
484 return -ENOIOCTLCMD;
485}
486
Alan Cox99f1fe12008-10-13 10:42:00 +0100487/**
488 * ptm_unix98_lookup - find a pty master
489 * @driver: ptm driver
490 * @idx: tty index
491 *
492 * Look up a pty master device. Called under the tty_mutex for now.
493 * This provides our locking.
494 */
495
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100496static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver,
497 struct inode *ptm_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100498{
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100499 struct tty_struct *tty = devpts_get_tty(ptm_inode, idx);
Alan Cox99f1fe12008-10-13 10:42:00 +0100500 if (tty)
501 tty = tty->link;
502 return tty;
503}
504
505/**
506 * pts_unix98_lookup - find a pty slave
507 * @driver: pts driver
508 * @idx: tty index
509 *
510 * Look up a pty master device. Called under the tty_mutex for now.
511 * This provides our locking.
512 */
513
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100514static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver,
515 struct inode *pts_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100516{
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100517 struct tty_struct *tty = devpts_get_tty(pts_inode, idx);
Alan Cox99f1fe12008-10-13 10:42:00 +0100518 /* Master must be open before slave */
519 if (!tty)
520 return ERR_PTR(-EIO);
521 return tty;
522}
523
Alan Coxbf970ee2008-10-13 10:42:39 +0100524static void pty_unix98_shutdown(struct tty_struct *tty)
Alan Coxfeebed62008-10-13 10:41:30 +0100525{
526 /* We have our own method as we don't use the tty index */
527 kfree(tty->termios);
Alan Coxfeebed62008-10-13 10:41:30 +0100528}
529
Alan Cox8b0a88d2008-10-13 10:42:19 +0100530/* We have no need to install and remove our tty objects as devpts does all
531 the work for us */
532
Alan Coxbf970ee2008-10-13 10:42:39 +0100533static int pty_unix98_install(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100534{
Alan Coxbf970ee2008-10-13 10:42:39 +0100535 struct tty_struct *o_tty;
536 int idx = tty->index;
537
538 o_tty = alloc_tty_struct();
539 if (!o_tty)
540 return -ENOMEM;
541 if (!try_module_get(driver->other->owner)) {
542 /* This cannot in fact currently happen */
543 free_tty_struct(o_tty);
544 return -ENOMEM;
545 }
546 initialize_tty_struct(o_tty, driver->other, idx);
547
Alan Cox8dff04e2008-10-13 10:43:58 +0100548 tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100549 if (tty->termios == NULL)
550 goto free_mem_out;
551 *tty->termios = driver->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100552 tty->termios_locked = tty->termios + 1;
553
554 o_tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100555 if (o_tty->termios == NULL)
556 goto free_mem_out;
557 *o_tty->termios = driver->other->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100558 o_tty->termios_locked = o_tty->termios + 1;
Alan Coxbf970ee2008-10-13 10:42:39 +0100559
560 tty_driver_kref_get(driver->other);
561 if (driver->subtype == PTY_TYPE_MASTER)
562 o_tty->count++;
563 /* Establish the links in both directions */
564 tty->link = o_tty;
565 o_tty->link = tty;
566 /*
567 * All structures have been allocated, so now we install them.
568 * Failures after this point use release_tty to clean up, so
569 * there's no need to null out the local pointers.
570 */
571 tty_driver_kref_get(driver);
572 tty->count++;
573 pty_count++;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100574 return 0;
Alan Coxbf970ee2008-10-13 10:42:39 +0100575free_mem_out:
Alan Cox8dff04e2008-10-13 10:43:58 +0100576 kfree(o_tty->termios);
Alan Coxbf970ee2008-10-13 10:42:39 +0100577 module_put(o_tty->driver->owner);
578 free_tty_struct(o_tty);
Alan Cox8dff04e2008-10-13 10:43:58 +0100579 kfree(tty->termios);
Alan Coxbf970ee2008-10-13 10:42:39 +0100580 return -ENOMEM;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100581}
582
Alan Coxbf970ee2008-10-13 10:42:39 +0100583static void pty_unix98_remove(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100584{
Alan Coxbf970ee2008-10-13 10:42:39 +0100585 pty_count--;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100586}
587
Alan Coxfeebed62008-10-13 10:41:30 +0100588static const struct tty_operations ptm_unix98_ops = {
Alan Cox99f1fe12008-10-13 10:42:00 +0100589 .lookup = ptm_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100590 .install = pty_unix98_install,
591 .remove = pty_unix98_remove,
Alan Cox3e8e88c2008-04-30 00:54:10 -0700592 .open = pty_open,
593 .close = pty_close,
594 .write = pty_write,
595 .write_room = pty_write_room,
596 .flush_buffer = pty_flush_buffer,
597 .chars_in_buffer = pty_chars_in_buffer,
598 .unthrottle = pty_unthrottle,
599 .set_termios = pty_set_termios,
Alan Coxfeebed62008-10-13 10:41:30 +0100600 .ioctl = pty_unix98_ioctl,
Alan Coxfc6f6232009-01-02 13:43:17 +0000601 .shutdown = pty_unix98_shutdown,
602 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700603};
604
Alan Cox99f1fe12008-10-13 10:42:00 +0100605static const struct tty_operations pty_unix98_ops = {
606 .lookup = pts_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100607 .install = pty_unix98_install,
608 .remove = pty_unix98_remove,
Alan Cox99f1fe12008-10-13 10:42:00 +0100609 .open = pty_open,
610 .close = pty_close,
611 .write = pty_write,
612 .write_room = pty_write_room,
613 .flush_buffer = pty_flush_buffer,
614 .chars_in_buffer = pty_chars_in_buffer,
615 .unthrottle = pty_unthrottle,
616 .set_termios = pty_set_termios,
Alan Coxbf970ee2008-10-13 10:42:39 +0100617 .shutdown = pty_unix98_shutdown
Alan Cox99f1fe12008-10-13 10:42:00 +0100618};
Alan Coxd81ed102008-10-13 10:41:42 +0100619
620/**
621 * ptmx_open - open a unix 98 pty master
622 * @inode: inode of device file
623 * @filp: file pointer to tty
624 *
625 * Allocate a unix98 pty master device from the ptmx driver.
626 *
627 * Locking: tty_mutex protects the init_dev work. tty->count should
628 * protect the rest.
629 * allocated_ptys_lock handles the list of free pty numbers
630 */
631
632static int __ptmx_open(struct inode *inode, struct file *filp)
633{
634 struct tty_struct *tty;
635 int retval;
636 int index;
637
638 nonseekable_open(inode, filp);
639
640 /* find a device that is not in use. */
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100641 index = devpts_new_index(inode);
Alan Coxd81ed102008-10-13 10:41:42 +0100642 if (index < 0)
643 return index;
644
645 mutex_lock(&tty_mutex);
Alan Cox73ec06f2008-10-13 10:42:29 +0100646 tty = tty_init_dev(ptm_driver, index, 1);
Alan Coxd81ed102008-10-13 10:41:42 +0100647 mutex_unlock(&tty_mutex);
648
Alan Cox73ec06f2008-10-13 10:42:29 +0100649 if (IS_ERR(tty)) {
650 retval = PTR_ERR(tty);
Alan Coxd81ed102008-10-13 10:41:42 +0100651 goto out;
Alan Cox73ec06f2008-10-13 10:42:29 +0100652 }
Alan Coxd81ed102008-10-13 10:41:42 +0100653
654 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
655 filp->private_data = tty;
656 file_move(filp, &tty->tty_files);
657
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100658 retval = devpts_pty_new(inode, tty->link);
Alan Coxd81ed102008-10-13 10:41:42 +0100659 if (retval)
660 goto out1;
661
662 retval = ptm_driver->ops->open(tty, filp);
663 if (!retval)
664 return 0;
665out1:
666 tty_release_dev(filp);
667 return retval;
668out:
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100669 devpts_kill_index(inode, index);
Alan Coxd81ed102008-10-13 10:41:42 +0100670 return retval;
671}
672
673static int ptmx_open(struct inode *inode, struct file *filp)
674{
675 int ret;
676
677 lock_kernel();
678 ret = __ptmx_open(inode, filp);
679 unlock_kernel();
680 return ret;
681}
682
683static struct file_operations ptmx_fops;
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685static void __init unix98_pty_init(void)
686{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 ptm_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
688 if (!ptm_driver)
689 panic("Couldn't allocate Unix98 ptm driver");
690 pts_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
691 if (!pts_driver)
692 panic("Couldn't allocate Unix98 pts driver");
693
694 ptm_driver->owner = THIS_MODULE;
695 ptm_driver->driver_name = "pty_master";
696 ptm_driver->name = "ptm";
697 ptm_driver->major = UNIX98_PTY_MASTER_MAJOR;
698 ptm_driver->minor_start = 0;
699 ptm_driver->type = TTY_DRIVER_TYPE_PTY;
700 ptm_driver->subtype = PTY_TYPE_MASTER;
701 ptm_driver->init_termios = tty_std_termios;
702 ptm_driver->init_termios.c_iflag = 0;
703 ptm_driver->init_termios.c_oflag = 0;
704 ptm_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
705 ptm_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -0800706 ptm_driver->init_termios.c_ispeed = 38400;
707 ptm_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 ptm_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW |
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700709 TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 ptm_driver->other = pts_driver;
Alan Coxfeebed62008-10-13 10:41:30 +0100711 tty_set_operations(ptm_driver, &ptm_unix98_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 pts_driver->owner = THIS_MODULE;
714 pts_driver->driver_name = "pty_slave";
715 pts_driver->name = "pts";
716 pts_driver->major = UNIX98_PTY_SLAVE_MAJOR;
717 pts_driver->minor_start = 0;
718 pts_driver->type = TTY_DRIVER_TYPE_PTY;
719 pts_driver->subtype = PTY_TYPE_SLAVE;
720 pts_driver->init_termios = tty_std_termios;
721 pts_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800722 pts_driver->init_termios.c_ispeed = 38400;
723 pts_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 pts_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW |
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700725 TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 pts_driver->other = ptm_driver;
Alan Cox99f1fe12008-10-13 10:42:00 +0100727 tty_set_operations(pts_driver, &pty_unix98_ops);
Alan Coxfe9cd962008-10-13 10:43:38 +0100728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (tty_register_driver(ptm_driver))
730 panic("Couldn't register Unix98 ptm driver");
731 if (tty_register_driver(pts_driver))
732 panic("Couldn't register Unix98 pts driver");
733
Alan Coxfe9cd962008-10-13 10:43:38 +0100734 register_sysctl_table(pty_root_table);
Alan Coxd81ed102008-10-13 10:41:42 +0100735
736 /* Now create the /dev/ptmx special device */
737 tty_default_fops(&ptmx_fops);
738 ptmx_fops.open = ptmx_open;
739
740 cdev_init(&ptmx_cdev, &ptmx_fops);
741 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
742 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
743 panic("Couldn't register /dev/ptmx driver\n");
744 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
Alan Coxd81ed102008-10-13 10:41:42 +0100746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747#else
748static inline void unix98_pty_init(void) { }
749#endif
750
751static int __init pty_init(void)
752{
753 legacy_pty_init();
754 unix98_pty_init();
755 return 0;
756}
757module_init(pty_init);