blob: 9d1b4f548f677566e8314d27dbbda0824ba67f5c [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/sysctl.h>
Alan Coxd81ed102008-10-13 10:41:42 +010026#include <linux/device.h>
Alan Coxfe9cd962008-10-13 10:43:38 +010027#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/bitops.h>
29#include <linux/devpts_fs.h>
30
Alan Coxfe9cd962008-10-13 10:43:38 +010031#include <asm/system.h>
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#ifdef CONFIG_UNIX98_PTYS
Roel Kluinda2bdf92009-01-07 18:09:15 -080034static struct tty_driver *ptm_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static struct tty_driver *pts_driver;
36#endif
37
Alan Coxfe9cd962008-10-13 10:43:38 +010038static void pty_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Alan Coxfe9cd962008-10-13 10:43:38 +010040 BUG_ON(!tty);
41 if (tty->driver->subtype == PTY_TYPE_MASTER)
42 WARN_ON(tty->count > 1);
43 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 if (tty->count > 2)
45 return;
46 }
47 wake_up_interruptible(&tty->read_wait);
48 wake_up_interruptible(&tty->write_wait);
49 tty->packet = 0;
50 if (!tty->link)
51 return;
52 tty->link->packet = 0;
53 set_bit(TTY_OTHER_CLOSED, &tty->link->flags);
54 wake_up_interruptible(&tty->link->read_wait);
55 wake_up_interruptible(&tty->link->write_wait);
56 if (tty->driver->subtype == PTY_TYPE_MASTER) {
57 set_bit(TTY_OTHER_CLOSED, &tty->flags);
58#ifdef CONFIG_UNIX98_PTYS
59 if (tty->driver == ptm_driver)
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +010060 devpts_pty_kill(tty->link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif
62 tty_vhangup(tty->link);
63 }
64}
65
66/*
67 * The unthrottle routine is called by the line discipline to signal
68 * that it can receive more characters. For PTY's, the TTY_THROTTLED
69 * flag is always set, to force the line discipline to always call the
Alan Coxfe9cd962008-10-13 10:43:38 +010070 * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * characters in the queue. This is necessary since each time this
72 * happens, we need to wake up any sleeping processes that could be
73 * (1) trying to send data to the pty, or (2) waiting in wait_until_sent()
74 * for the pty buffer to be drained.
75 */
Alan Coxfe9cd962008-10-13 10:43:38 +010076static void pty_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Alan Coxd945cb92009-07-07 16:39:41 +010078 tty_wakeup(tty->link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 set_bit(TTY_THROTTLED, &tty->flags);
80}
81
Alan Coxd945cb92009-07-07 16:39:41 +010082/**
83 * pty_space - report space left for writing
84 * @to: tty we are writing into
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 *
Alan Coxd945cb92009-07-07 16:39:41 +010086 * The tty buffers allow 64K but we sneak a peak and clip at 8K this
87 * allows a lot of overspill room for echo and other fun messes to
88 * be handled properly
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 */
Alan Coxd945cb92009-07-07 16:39:41 +010090
91static int pty_space(struct tty_struct *to)
92{
93 int n = 8192 - to->buf.memory_used;
94 if (n < 0)
95 return 0;
96 return n;
97}
98
99/**
100 * pty_write - write to a pty
101 * @tty: the tty we write from
102 * @buf: kernel buffer of data
103 * @count: bytes to write
104 *
105 * Our "hardware" write method. Data is coming from the ldisc which
106 * may be in a non sleeping state. We simply throw this at the other
107 * end of the link as if we were an IRQ handler receiving stuff for
108 * the other side of the pty/tty pair.
109 */
110
Alan Coxfe9cd962008-10-13 10:43:38 +0100111static int pty_write(struct tty_struct *tty, const unsigned char *buf,
112 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct tty_struct *to = tty->link;
Alan Coxd945cb92009-07-07 16:39:41 +0100115 int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Alan Coxd945cb92009-07-07 16:39:41 +0100117 if (tty->stopped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return 0;
119
Alan Coxd945cb92009-07-07 16:39:41 +0100120 /* This isn't locked but our 8K is quite sloppy so no
121 big deal */
122
123 c = pty_space(to);
124 if (c > count)
125 c = count;
126 if (c > 0) {
127 /* Stuff the data into the input queue of the other end */
128 c = tty_insert_flip_string(to, buf, c);
129 /* And shovel */
130 tty_flip_buffer_push(to);
131 tty_wakeup(tty);
Alan Cox762faae2009-06-16 17:01:13 +0100132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return c;
134}
135
Alan Coxd945cb92009-07-07 16:39:41 +0100136/**
137 * pty_write_room - write space
138 * @tty: tty we are writing from
139 *
140 * Report how many bytes the ldisc can send into the queue for
141 * the other device.
142 */
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static int pty_write_room(struct tty_struct *tty)
145{
Alan Coxd945cb92009-07-07 16:39:41 +0100146 return pty_space(tty->link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Alan Coxd945cb92009-07-07 16:39:41 +0100149/**
150 * pty_chars_in_buffer - characters currently in our tx queue
151 * @tty: our tty
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 *
Alan Coxd945cb92009-07-07 16:39:41 +0100153 * Report how much we have in the transmit queue. As everything is
154 * instantly at the other end this is easy to implement.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
Alan Coxd945cb92009-07-07 16:39:41 +0100156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static int pty_chars_in_buffer(struct tty_struct *tty)
158{
Alan Coxd945cb92009-07-07 16:39:41 +0100159 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162/* Set the lock flag on a pty */
Alan Coxfe9cd962008-10-13 10:43:38 +0100163static int pty_set_lock(struct tty_struct *tty, int __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 int val;
Alan Coxfe9cd962008-10-13 10:43:38 +0100166 if (get_user(val, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return -EFAULT;
168 if (val)
169 set_bit(TTY_PTY_LOCK, &tty->flags);
170 else
171 clear_bit(TTY_PTY_LOCK, &tty->flags);
172 return 0;
173}
174
175static void pty_flush_buffer(struct tty_struct *tty)
176{
177 struct tty_struct *to = tty->link;
Alan Cox04f378b2008-04-30 00:53:29 -0700178 unsigned long flags;
Alan Coxfe9cd962008-10-13 10:43:38 +0100179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (!to)
181 return;
Alan Coxd945cb92009-07-07 16:39:41 +0100182 /* tty_buffer_flush(to); FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (to->packet) {
Alan Cox04f378b2008-04-30 00:53:29 -0700184 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 tty->ctrl_status |= TIOCPKT_FLUSHWRITE;
186 wake_up_interruptible(&to->read_wait);
Alan Cox04f378b2008-04-30 00:53:29 -0700187 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189}
190
Alan Coxfe9cd962008-10-13 10:43:38 +0100191static int pty_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 int retval = -ENODEV;
194
195 if (!tty || !tty->link)
196 goto out;
197
198 retval = -EIO;
199 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
200 goto out;
201 if (test_bit(TTY_PTY_LOCK, &tty->link->flags))
202 goto out;
203 if (tty->link->count != 1)
204 goto out;
205
206 clear_bit(TTY_OTHER_CLOSED, &tty->link->flags);
207 set_bit(TTY_THROTTLED, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 retval = 0;
209out:
210 return retval;
211}
212
Alan Coxfe9cd962008-10-13 10:43:38 +0100213static void pty_set_termios(struct tty_struct *tty,
214 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Alan Coxfe9cd962008-10-13 10:43:38 +0100216 tty->termios->c_cflag &= ~(CSIZE | PARENB);
217 tty->termios->c_cflag |= (CS8 | CREAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Alan Coxfc6f6232009-01-02 13:43:17 +0000220/**
221 * pty_do_resize - resize event
222 * @tty: tty being resized
Alan Coxc774bda2009-01-11 19:46:49 +0000223 * @ws: window size being set.
Alan Coxfc6f6232009-01-02 13:43:17 +0000224 *
225 * Update the termios variables and send the neccessary signals to
226 * peform a terminal resize correctly
227 */
228
229int pty_resize(struct tty_struct *tty, struct winsize *ws)
230{
231 struct pid *pgrp, *rpgrp;
232 unsigned long flags;
233 struct tty_struct *pty = tty->link;
234
235 /* For a PTY we need to lock the tty side */
236 mutex_lock(&tty->termios_mutex);
237 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
238 goto done;
239
240 /* Get the PID values and reference them so we can
241 avoid holding the tty ctrl lock while sending signals.
242 We need to lock these individually however. */
243
244 spin_lock_irqsave(&tty->ctrl_lock, flags);
245 pgrp = get_pid(tty->pgrp);
246 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
247
248 spin_lock_irqsave(&pty->ctrl_lock, flags);
249 rpgrp = get_pid(pty->pgrp);
250 spin_unlock_irqrestore(&pty->ctrl_lock, flags);
251
252 if (pgrp)
253 kill_pgrp(pgrp, SIGWINCH, 1);
254 if (rpgrp != pgrp && rpgrp)
255 kill_pgrp(rpgrp, SIGWINCH, 1);
256
257 put_pid(pgrp);
258 put_pid(rpgrp);
259
260 tty->winsize = *ws;
261 pty->winsize = *ws; /* Never used so will go away soon */
262done:
263 mutex_unlock(&tty->termios_mutex);
264 return 0;
265}
266
Alan Coxbf970ee2008-10-13 10:42:39 +0100267static int pty_install(struct tty_driver *driver, struct tty_struct *tty)
268{
269 struct tty_struct *o_tty;
270 int idx = tty->index;
271 int retval;
272
273 o_tty = alloc_tty_struct();
274 if (!o_tty)
275 return -ENOMEM;
276 if (!try_module_get(driver->other->owner)) {
277 /* This cannot in fact currently happen */
278 free_tty_struct(o_tty);
279 return -ENOMEM;
280 }
281 initialize_tty_struct(o_tty, driver->other, idx);
282
283 /* We always use new tty termios data so we can do this
284 the easy way .. */
285 retval = tty_init_termios(tty);
286 if (retval)
287 goto free_mem_out;
288
289 retval = tty_init_termios(o_tty);
290 if (retval) {
291 tty_free_termios(tty);
292 goto free_mem_out;
293 }
Alan Coxfe9cd962008-10-13 10:43:38 +0100294
Alan Coxbf970ee2008-10-13 10:42:39 +0100295 /*
296 * Everything allocated ... set up the o_tty structure.
297 */
298 driver->other->ttys[idx] = o_tty;
299 tty_driver_kref_get(driver->other);
300 if (driver->subtype == PTY_TYPE_MASTER)
301 o_tty->count++;
302 /* Establish the links in both directions */
303 tty->link = o_tty;
304 o_tty->link = tty;
305
306 tty_driver_kref_get(driver);
307 tty->count++;
308 driver->ttys[idx] = tty;
309 return 0;
310free_mem_out:
311 module_put(o_tty->driver->owner);
312 free_tty_struct(o_tty);
313 return -ENOMEM;
314}
315
316
Jeff Dikeb68e31d2006-10-02 02:17:18 -0700317static const struct tty_operations pty_ops = {
Alan Coxbf970ee2008-10-13 10:42:39 +0100318 .install = pty_install,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 .open = pty_open,
320 .close = pty_close,
321 .write = pty_write,
322 .write_room = pty_write_room,
323 .flush_buffer = pty_flush_buffer,
324 .chars_in_buffer = pty_chars_in_buffer,
325 .unthrottle = pty_unthrottle,
326 .set_termios = pty_set_termios,
Alan Coxfc6f6232009-01-02 13:43:17 +0000327 .resize = pty_resize
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328};
329
330/* Traditional BSD devices */
331#ifdef CONFIG_LEGACY_PTYS
332static struct tty_driver *pty_driver, *pty_slave_driver;
333
334static int pty_bsd_ioctl(struct tty_struct *tty, struct file *file,
335 unsigned int cmd, unsigned long arg)
336{
337 switch (cmd) {
338 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
339 return pty_set_lock(tty, (int __user *) arg);
340 }
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
Alan Cox3e8e88c2008-04-30 00:54:10 -0700347static const struct tty_operations pty_ops_bsd = {
348 .open = pty_open,
349 .close = pty_close,
350 .write = pty_write,
351 .write_room = pty_write_room,
352 .flush_buffer = pty_flush_buffer,
353 .chars_in_buffer = pty_chars_in_buffer,
354 .unthrottle = pty_unthrottle,
355 .set_termios = pty_set_termios,
356 .ioctl = pty_bsd_ioctl,
Alan Coxfc6f6232009-01-02 13:43:17 +0000357 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700358};
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360static void __init legacy_pty_init(void)
361{
Kay Sieversdc8c8582007-08-15 12:25:38 +0200362 if (legacy_count <= 0)
363 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Kay Sieversdc8c8582007-08-15 12:25:38 +0200365 pty_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (!pty_driver)
367 panic("Couldn't allocate pty driver");
368
Kay Sieversdc8c8582007-08-15 12:25:38 +0200369 pty_slave_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (!pty_slave_driver)
371 panic("Couldn't allocate pty slave driver");
372
373 pty_driver->owner = THIS_MODULE;
374 pty_driver->driver_name = "pty_master";
375 pty_driver->name = "pty";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 pty_driver->major = PTY_MASTER_MAJOR;
377 pty_driver->minor_start = 0;
378 pty_driver->type = TTY_DRIVER_TYPE_PTY;
379 pty_driver->subtype = PTY_TYPE_MASTER;
380 pty_driver->init_termios = tty_std_termios;
381 pty_driver->init_termios.c_iflag = 0;
382 pty_driver->init_termios.c_oflag = 0;
383 pty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
384 pty_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -0800385 pty_driver->init_termios.c_ispeed = 38400;
386 pty_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 pty_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW;
388 pty_driver->other = pty_slave_driver;
389 tty_set_operations(pty_driver, &pty_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 pty_slave_driver->owner = THIS_MODULE;
392 pty_slave_driver->driver_name = "pty_slave";
393 pty_slave_driver->name = "ttyp";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 pty_slave_driver->major = PTY_SLAVE_MAJOR;
395 pty_slave_driver->minor_start = 0;
396 pty_slave_driver->type = TTY_DRIVER_TYPE_PTY;
397 pty_slave_driver->subtype = PTY_TYPE_SLAVE;
398 pty_slave_driver->init_termios = tty_std_termios;
399 pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800400 pty_slave_driver->init_termios.c_ispeed = 38400;
401 pty_slave_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 pty_slave_driver->flags = TTY_DRIVER_RESET_TERMIOS |
403 TTY_DRIVER_REAL_RAW;
404 pty_slave_driver->other = pty_driver;
405 tty_set_operations(pty_slave_driver, &pty_ops);
406
407 if (tty_register_driver(pty_driver))
408 panic("Couldn't register pty driver");
409 if (tty_register_driver(pty_slave_driver))
410 panic("Couldn't register pty slave driver");
411}
412#else
413static inline void legacy_pty_init(void) { }
414#endif
415
416/* Unix98 devices */
417#ifdef CONFIG_UNIX98_PTYS
418/*
419 * sysctl support for setting limits on the number of Unix98 ptys allocated.
420 * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly.
421 */
422int pty_limit = NR_UNIX98_PTY_DEFAULT;
Alan Coxfe9cd962008-10-13 10:43:38 +0100423static int pty_limit_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424static int pty_limit_max = NR_UNIX98_PTY_MAX;
Alan Coxfe9cd962008-10-13 10:43:38 +0100425static int pty_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Alan Coxd81ed102008-10-13 10:41:42 +0100427static struct cdev ptmx_cdev;
428
Eric W. Biederman35834ca2007-10-18 03:05:31 -0700429static struct ctl_table pty_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 {
431 .ctl_name = PTY_MAX,
432 .procname = "max",
433 .maxlen = sizeof(int),
434 .mode = 0644,
435 .data = &pty_limit,
436 .proc_handler = &proc_dointvec_minmax,
437 .strategy = &sysctl_intvec,
438 .extra1 = &pty_limit_min,
439 .extra2 = &pty_limit_max,
440 }, {
441 .ctl_name = PTY_NR,
442 .procname = "nr",
443 .maxlen = sizeof(int),
444 .mode = 0444,
Alan Coxbf970ee2008-10-13 10:42:39 +0100445 .data = &pty_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 .proc_handler = &proc_dointvec,
447 }, {
448 .ctl_name = 0
449 }
450};
451
Eric W. Biederman35834ca2007-10-18 03:05:31 -0700452static struct ctl_table pty_kern_table[] = {
453 {
454 .ctl_name = KERN_PTY,
455 .procname = "pty",
456 .mode = 0555,
457 .child = pty_table,
458 },
459 {}
460};
461
462static struct ctl_table pty_root_table[] = {
463 {
464 .ctl_name = CTL_KERN,
465 .procname = "kernel",
466 .mode = 0555,
467 .child = pty_kern_table,
468 },
469 {}
470};
471
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473static int pty_unix98_ioctl(struct tty_struct *tty, struct file *file,
474 unsigned int cmd, unsigned long arg)
475{
476 switch (cmd) {
477 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
478 return pty_set_lock(tty, (int __user *)arg);
479 case TIOCGPTN: /* Get PT Number */
480 return put_user(tty->index, (unsigned int __user *)arg);
481 }
482
483 return -ENOIOCTLCMD;
484}
485
Alan Cox99f1fe12008-10-13 10:42:00 +0100486/**
487 * ptm_unix98_lookup - find a pty master
488 * @driver: ptm driver
489 * @idx: tty index
490 *
491 * Look up a pty master device. Called under the tty_mutex for now.
492 * This provides our locking.
493 */
494
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100495static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver,
496 struct inode *ptm_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100497{
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100498 struct tty_struct *tty = devpts_get_tty(ptm_inode, idx);
Alan Cox99f1fe12008-10-13 10:42:00 +0100499 if (tty)
500 tty = tty->link;
501 return tty;
502}
503
504/**
505 * pts_unix98_lookup - find a pty slave
506 * @driver: pts driver
507 * @idx: tty index
508 *
509 * Look up a pty master device. Called under the tty_mutex for now.
510 * This provides our locking.
511 */
512
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100513static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver,
514 struct inode *pts_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100515{
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100516 struct tty_struct *tty = devpts_get_tty(pts_inode, idx);
Alan Cox99f1fe12008-10-13 10:42:00 +0100517 /* Master must be open before slave */
518 if (!tty)
519 return ERR_PTR(-EIO);
520 return tty;
521}
522
Alan Coxbf970ee2008-10-13 10:42:39 +0100523static void pty_unix98_shutdown(struct tty_struct *tty)
Alan Coxfeebed62008-10-13 10:41:30 +0100524{
525 /* We have our own method as we don't use the tty index */
526 kfree(tty->termios);
Alan Coxfeebed62008-10-13 10:41:30 +0100527}
528
Alan Cox8b0a88d2008-10-13 10:42:19 +0100529/* We have no need to install and remove our tty objects as devpts does all
530 the work for us */
531
Alan Coxbf970ee2008-10-13 10:42:39 +0100532static int pty_unix98_install(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100533{
Alan Coxbf970ee2008-10-13 10:42:39 +0100534 struct tty_struct *o_tty;
535 int idx = tty->index;
536
537 o_tty = alloc_tty_struct();
538 if (!o_tty)
539 return -ENOMEM;
540 if (!try_module_get(driver->other->owner)) {
541 /* This cannot in fact currently happen */
542 free_tty_struct(o_tty);
543 return -ENOMEM;
544 }
545 initialize_tty_struct(o_tty, driver->other, idx);
546
Alan Cox8dff04e2008-10-13 10:43:58 +0100547 tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100548 if (tty->termios == NULL)
549 goto free_mem_out;
550 *tty->termios = driver->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100551 tty->termios_locked = tty->termios + 1;
552
553 o_tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100554 if (o_tty->termios == NULL)
555 goto free_mem_out;
556 *o_tty->termios = driver->other->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100557 o_tty->termios_locked = o_tty->termios + 1;
Alan Coxbf970ee2008-10-13 10:42:39 +0100558
559 tty_driver_kref_get(driver->other);
560 if (driver->subtype == PTY_TYPE_MASTER)
561 o_tty->count++;
562 /* Establish the links in both directions */
563 tty->link = o_tty;
564 o_tty->link = tty;
565 /*
566 * All structures have been allocated, so now we install them.
567 * Failures after this point use release_tty to clean up, so
568 * there's no need to null out the local pointers.
569 */
570 tty_driver_kref_get(driver);
571 tty->count++;
572 pty_count++;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100573 return 0;
Alan Coxbf970ee2008-10-13 10:42:39 +0100574free_mem_out:
Alan Cox8dff04e2008-10-13 10:43:58 +0100575 kfree(o_tty->termios);
Alan Coxbf970ee2008-10-13 10:42:39 +0100576 module_put(o_tty->driver->owner);
577 free_tty_struct(o_tty);
Alan Cox8dff04e2008-10-13 10:43:58 +0100578 kfree(tty->termios);
Alan Coxbf970ee2008-10-13 10:42:39 +0100579 return -ENOMEM;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100580}
581
Alan Coxbf970ee2008-10-13 10:42:39 +0100582static void pty_unix98_remove(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100583{
Alan Coxbf970ee2008-10-13 10:42:39 +0100584 pty_count--;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100585}
586
Alan Coxfeebed62008-10-13 10:41:30 +0100587static const struct tty_operations ptm_unix98_ops = {
Alan Cox99f1fe12008-10-13 10:42:00 +0100588 .lookup = ptm_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100589 .install = pty_unix98_install,
590 .remove = pty_unix98_remove,
Alan Cox3e8e88c2008-04-30 00:54:10 -0700591 .open = pty_open,
592 .close = pty_close,
593 .write = pty_write,
594 .write_room = pty_write_room,
595 .flush_buffer = pty_flush_buffer,
596 .chars_in_buffer = pty_chars_in_buffer,
597 .unthrottle = pty_unthrottle,
598 .set_termios = pty_set_termios,
Alan Coxfeebed62008-10-13 10:41:30 +0100599 .ioctl = pty_unix98_ioctl,
Alan Coxfc6f6232009-01-02 13:43:17 +0000600 .shutdown = pty_unix98_shutdown,
601 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700602};
603
Alan Cox99f1fe12008-10-13 10:42:00 +0100604static const struct tty_operations pty_unix98_ops = {
605 .lookup = pts_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100606 .install = pty_unix98_install,
607 .remove = pty_unix98_remove,
Alan Cox99f1fe12008-10-13 10:42:00 +0100608 .open = pty_open,
609 .close = pty_close,
610 .write = pty_write,
611 .write_room = pty_write_room,
612 .flush_buffer = pty_flush_buffer,
613 .chars_in_buffer = pty_chars_in_buffer,
614 .unthrottle = pty_unthrottle,
615 .set_termios = pty_set_termios,
Alan Coxbf970ee2008-10-13 10:42:39 +0100616 .shutdown = pty_unix98_shutdown
Alan Cox99f1fe12008-10-13 10:42:00 +0100617};
Alan Coxd81ed102008-10-13 10:41:42 +0100618
619/**
620 * ptmx_open - open a unix 98 pty master
621 * @inode: inode of device file
622 * @filp: file pointer to tty
623 *
624 * Allocate a unix98 pty master device from the ptmx driver.
625 *
626 * Locking: tty_mutex protects the init_dev work. tty->count should
627 * protect the rest.
628 * allocated_ptys_lock handles the list of free pty numbers
629 */
630
631static int __ptmx_open(struct inode *inode, struct file *filp)
632{
633 struct tty_struct *tty;
634 int retval;
635 int index;
636
637 nonseekable_open(inode, filp);
638
639 /* find a device that is not in use. */
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100640 index = devpts_new_index(inode);
Alan Coxd81ed102008-10-13 10:41:42 +0100641 if (index < 0)
642 return index;
643
644 mutex_lock(&tty_mutex);
Alan Cox73ec06f2008-10-13 10:42:29 +0100645 tty = tty_init_dev(ptm_driver, index, 1);
Alan Coxd81ed102008-10-13 10:41:42 +0100646 mutex_unlock(&tty_mutex);
647
Alan Cox73ec06f2008-10-13 10:42:29 +0100648 if (IS_ERR(tty)) {
649 retval = PTR_ERR(tty);
Alan Coxd81ed102008-10-13 10:41:42 +0100650 goto out;
Alan Cox73ec06f2008-10-13 10:42:29 +0100651 }
Alan Coxd81ed102008-10-13 10:41:42 +0100652
653 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
654 filp->private_data = tty;
655 file_move(filp, &tty->tty_files);
656
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100657 retval = devpts_pty_new(inode, tty->link);
Alan Coxd81ed102008-10-13 10:41:42 +0100658 if (retval)
659 goto out1;
660
661 retval = ptm_driver->ops->open(tty, filp);
662 if (!retval)
663 return 0;
664out1:
665 tty_release_dev(filp);
666 return retval;
667out:
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100668 devpts_kill_index(inode, index);
Alan Coxd81ed102008-10-13 10:41:42 +0100669 return retval;
670}
671
672static int ptmx_open(struct inode *inode, struct file *filp)
673{
674 int ret;
675
676 lock_kernel();
677 ret = __ptmx_open(inode, filp);
678 unlock_kernel();
679 return ret;
680}
681
682static struct file_operations ptmx_fops;
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684static void __init unix98_pty_init(void)
685{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 ptm_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
687 if (!ptm_driver)
688 panic("Couldn't allocate Unix98 ptm driver");
689 pts_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
690 if (!pts_driver)
691 panic("Couldn't allocate Unix98 pts driver");
692
693 ptm_driver->owner = THIS_MODULE;
694 ptm_driver->driver_name = "pty_master";
695 ptm_driver->name = "ptm";
696 ptm_driver->major = UNIX98_PTY_MASTER_MAJOR;
697 ptm_driver->minor_start = 0;
698 ptm_driver->type = TTY_DRIVER_TYPE_PTY;
699 ptm_driver->subtype = PTY_TYPE_MASTER;
700 ptm_driver->init_termios = tty_std_termios;
701 ptm_driver->init_termios.c_iflag = 0;
702 ptm_driver->init_termios.c_oflag = 0;
703 ptm_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
704 ptm_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -0800705 ptm_driver->init_termios.c_ispeed = 38400;
706 ptm_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 ptm_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW |
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700708 TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 ptm_driver->other = pts_driver;
Alan Coxfeebed62008-10-13 10:41:30 +0100710 tty_set_operations(ptm_driver, &ptm_unix98_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 pts_driver->owner = THIS_MODULE;
713 pts_driver->driver_name = "pty_slave";
714 pts_driver->name = "pts";
715 pts_driver->major = UNIX98_PTY_SLAVE_MAJOR;
716 pts_driver->minor_start = 0;
717 pts_driver->type = TTY_DRIVER_TYPE_PTY;
718 pts_driver->subtype = PTY_TYPE_SLAVE;
719 pts_driver->init_termios = tty_std_termios;
720 pts_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800721 pts_driver->init_termios.c_ispeed = 38400;
722 pts_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 pts_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW |
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700724 TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 pts_driver->other = ptm_driver;
Alan Cox99f1fe12008-10-13 10:42:00 +0100726 tty_set_operations(pts_driver, &pty_unix98_ops);
Alan Coxfe9cd962008-10-13 10:43:38 +0100727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (tty_register_driver(ptm_driver))
729 panic("Couldn't register Unix98 ptm driver");
730 if (tty_register_driver(pts_driver))
731 panic("Couldn't register Unix98 pts driver");
732
Alan Coxfe9cd962008-10-13 10:43:38 +0100733 register_sysctl_table(pty_root_table);
Alan Coxd81ed102008-10-13 10:41:42 +0100734
735 /* Now create the /dev/ptmx special device */
736 tty_default_fops(&ptmx_fops);
737 ptmx_fops.open = ptmx_open;
738
739 cdev_init(&ptmx_cdev, &ptmx_fops);
740 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
741 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
742 panic("Couldn't register /dev/ptmx driver\n");
743 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
Alan Coxd81ed102008-10-13 10:41:42 +0100745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746#else
747static inline void unix98_pty_init(void) { }
748#endif
749
750static int __init pty_init(void)
751{
752 legacy_pty_init();
753 unix98_pty_init();
754 return 0;
755}
756module_init(pty_init);