blob: e066c4fdf81be774e4be3317b8aa2e26a3f65d61 [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
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
172static void pty_flush_buffer(struct tty_struct *tty)
173{
174 struct tty_struct *to = tty->link;
Alan Cox04f378b2008-04-30 00:53:29 -0700175 unsigned long flags;
Alan Coxfe9cd962008-10-13 10:43:38 +0100176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (!to)
178 return;
Alan Coxd945cb92009-07-07 16:39:41 +0100179 /* tty_buffer_flush(to); FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (to->packet) {
Alan Cox04f378b2008-04-30 00:53:29 -0700181 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 tty->ctrl_status |= TIOCPKT_FLUSHWRITE;
183 wake_up_interruptible(&to->read_wait);
Alan Cox04f378b2008-04-30 00:53:29 -0700184 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186}
187
Alan Coxfe9cd962008-10-13 10:43:38 +0100188static int pty_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 int retval = -ENODEV;
191
192 if (!tty || !tty->link)
193 goto out;
194
195 retval = -EIO;
196 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
197 goto out;
198 if (test_bit(TTY_PTY_LOCK, &tty->link->flags))
199 goto out;
200 if (tty->link->count != 1)
201 goto out;
202
203 clear_bit(TTY_OTHER_CLOSED, &tty->link->flags);
204 set_bit(TTY_THROTTLED, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 retval = 0;
206out:
207 return retval;
208}
209
Alan Coxfe9cd962008-10-13 10:43:38 +0100210static void pty_set_termios(struct tty_struct *tty,
211 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Alan Coxfe9cd962008-10-13 10:43:38 +0100213 tty->termios->c_cflag &= ~(CSIZE | PARENB);
214 tty->termios->c_cflag |= (CS8 | CREAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Alan Coxfc6f6232009-01-02 13:43:17 +0000217/**
218 * pty_do_resize - resize event
219 * @tty: tty being resized
Alan Coxc774bda2009-01-11 19:46:49 +0000220 * @ws: window size being set.
Alan Coxfc6f6232009-01-02 13:43:17 +0000221 *
222 * Update the termios variables and send the neccessary signals to
223 * peform a terminal resize correctly
224 */
225
226int pty_resize(struct tty_struct *tty, struct winsize *ws)
227{
228 struct pid *pgrp, *rpgrp;
229 unsigned long flags;
230 struct tty_struct *pty = tty->link;
231
232 /* For a PTY we need to lock the tty side */
233 mutex_lock(&tty->termios_mutex);
234 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
235 goto done;
236
237 /* Get the PID values and reference them so we can
238 avoid holding the tty ctrl lock while sending signals.
239 We need to lock these individually however. */
240
241 spin_lock_irqsave(&tty->ctrl_lock, flags);
242 pgrp = get_pid(tty->pgrp);
243 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
244
245 spin_lock_irqsave(&pty->ctrl_lock, flags);
246 rpgrp = get_pid(pty->pgrp);
247 spin_unlock_irqrestore(&pty->ctrl_lock, flags);
248
249 if (pgrp)
250 kill_pgrp(pgrp, SIGWINCH, 1);
251 if (rpgrp != pgrp && rpgrp)
252 kill_pgrp(rpgrp, SIGWINCH, 1);
253
254 put_pid(pgrp);
255 put_pid(rpgrp);
256
257 tty->winsize = *ws;
258 pty->winsize = *ws; /* Never used so will go away soon */
259done:
260 mutex_unlock(&tty->termios_mutex);
261 return 0;
262}
263
Linus Torvalds342a5972009-09-30 07:49:40 -0700264/* Traditional BSD devices */
265#ifdef CONFIG_LEGACY_PTYS
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316static int pty_bsd_ioctl(struct tty_struct *tty, struct file *file,
317 unsigned int cmd, unsigned long arg)
318{
319 switch (cmd) {
320 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
321 return pty_set_lock(tty, (int __user *) arg);
322 }
323 return -ENOIOCTLCMD;
324}
325
Kay Sieversdc8c8582007-08-15 12:25:38 +0200326static int legacy_count = CONFIG_LEGACY_PTY_COUNT;
327module_param(legacy_count, int, 0);
328
Linus Torvalds342a5972009-09-30 07:49:40 -0700329/*
330 * The master side of a pty can do TIOCSPTLCK and thus
331 * has pty_bsd_ioctl.
332 */
333static const struct tty_operations master_pty_ops_bsd = {
334 .install = pty_install,
Alan Cox3e8e88c2008-04-30 00:54:10 -0700335 .open = pty_open,
336 .close = pty_close,
337 .write = pty_write,
338 .write_room = pty_write_room,
339 .flush_buffer = pty_flush_buffer,
340 .chars_in_buffer = pty_chars_in_buffer,
341 .unthrottle = pty_unthrottle,
342 .set_termios = pty_set_termios,
343 .ioctl = pty_bsd_ioctl,
Alan Coxfc6f6232009-01-02 13:43:17 +0000344 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700345};
346
Linus Torvalds342a5972009-09-30 07:49:40 -0700347static const struct tty_operations slave_pty_ops_bsd = {
348 .install = pty_install,
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 .resize = pty_resize
358};
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360static void __init legacy_pty_init(void)
361{
Linus Torvalds342a5972009-09-30 07:49:40 -0700362 struct tty_driver *pty_driver, *pty_slave_driver;
363
Kay Sieversdc8c8582007-08-15 12:25:38 +0200364 if (legacy_count <= 0)
365 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Kay Sieversdc8c8582007-08-15 12:25:38 +0200367 pty_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (!pty_driver)
369 panic("Couldn't allocate pty driver");
370
Kay Sieversdc8c8582007-08-15 12:25:38 +0200371 pty_slave_driver = alloc_tty_driver(legacy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (!pty_slave_driver)
373 panic("Couldn't allocate pty slave driver");
374
375 pty_driver->owner = THIS_MODULE;
376 pty_driver->driver_name = "pty_master";
377 pty_driver->name = "pty";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 pty_driver->major = PTY_MASTER_MAJOR;
379 pty_driver->minor_start = 0;
380 pty_driver->type = TTY_DRIVER_TYPE_PTY;
381 pty_driver->subtype = PTY_TYPE_MASTER;
382 pty_driver->init_termios = tty_std_termios;
383 pty_driver->init_termios.c_iflag = 0;
384 pty_driver->init_termios.c_oflag = 0;
385 pty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
386 pty_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -0800387 pty_driver->init_termios.c_ispeed = 38400;
388 pty_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 pty_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW;
390 pty_driver->other = pty_slave_driver;
Linus Torvalds342a5972009-09-30 07:49:40 -0700391 tty_set_operations(pty_driver, &master_pty_ops_bsd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 pty_slave_driver->owner = THIS_MODULE;
394 pty_slave_driver->driver_name = "pty_slave";
395 pty_slave_driver->name = "ttyp";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 pty_slave_driver->major = PTY_SLAVE_MAJOR;
397 pty_slave_driver->minor_start = 0;
398 pty_slave_driver->type = TTY_DRIVER_TYPE_PTY;
399 pty_slave_driver->subtype = PTY_TYPE_SLAVE;
400 pty_slave_driver->init_termios = tty_std_termios;
401 pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800402 pty_slave_driver->init_termios.c_ispeed = 38400;
403 pty_slave_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 pty_slave_driver->flags = TTY_DRIVER_RESET_TERMIOS |
405 TTY_DRIVER_REAL_RAW;
406 pty_slave_driver->other = pty_driver;
Linus Torvalds342a5972009-09-30 07:49:40 -0700407 tty_set_operations(pty_slave_driver, &slave_pty_ops_bsd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 if (tty_register_driver(pty_driver))
410 panic("Couldn't register pty driver");
411 if (tty_register_driver(pty_slave_driver))
412 panic("Couldn't register pty slave driver");
413}
414#else
415static inline void legacy_pty_init(void) { }
416#endif
417
418/* Unix98 devices */
419#ifdef CONFIG_UNIX98_PTYS
420/*
421 * sysctl support for setting limits on the number of Unix98 ptys allocated.
422 * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly.
423 */
424int pty_limit = NR_UNIX98_PTY_DEFAULT;
Alan Coxfe9cd962008-10-13 10:43:38 +0100425static int pty_limit_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static int pty_limit_max = NR_UNIX98_PTY_MAX;
Alan Coxfe9cd962008-10-13 10:43:38 +0100427static int pty_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Alan Coxd81ed102008-10-13 10:41:42 +0100429static struct cdev ptmx_cdev;
430
Eric W. Biederman35834ca2007-10-18 03:05:31 -0700431static struct ctl_table pty_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 {
433 .ctl_name = PTY_MAX,
434 .procname = "max",
435 .maxlen = sizeof(int),
436 .mode = 0644,
437 .data = &pty_limit,
438 .proc_handler = &proc_dointvec_minmax,
439 .strategy = &sysctl_intvec,
440 .extra1 = &pty_limit_min,
441 .extra2 = &pty_limit_max,
442 }, {
443 .ctl_name = PTY_NR,
444 .procname = "nr",
445 .maxlen = sizeof(int),
446 .mode = 0444,
Alan Coxbf970ee2008-10-13 10:42:39 +0100447 .data = &pty_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 .proc_handler = &proc_dointvec,
449 }, {
450 .ctl_name = 0
451 }
452};
453
Eric W. Biederman35834ca2007-10-18 03:05:31 -0700454static struct ctl_table pty_kern_table[] = {
455 {
456 .ctl_name = KERN_PTY,
457 .procname = "pty",
458 .mode = 0555,
459 .child = pty_table,
460 },
461 {}
462};
463
464static struct ctl_table pty_root_table[] = {
465 {
466 .ctl_name = CTL_KERN,
467 .procname = "kernel",
468 .mode = 0555,
469 .child = pty_kern_table,
470 },
471 {}
472};
473
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475static int pty_unix98_ioctl(struct tty_struct *tty, struct file *file,
476 unsigned int cmd, unsigned long arg)
477{
478 switch (cmd) {
479 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
480 return pty_set_lock(tty, (int __user *)arg);
481 case TIOCGPTN: /* Get PT Number */
482 return put_user(tty->index, (unsigned int __user *)arg);
483 }
484
485 return -ENOIOCTLCMD;
486}
487
Alan Cox99f1fe12008-10-13 10:42:00 +0100488/**
489 * ptm_unix98_lookup - find a pty master
490 * @driver: ptm driver
491 * @idx: tty index
492 *
493 * Look up a pty master device. Called under the tty_mutex for now.
494 * This provides our locking.
495 */
496
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100497static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver,
498 struct inode *ptm_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100499{
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100500 struct tty_struct *tty = devpts_get_tty(ptm_inode, idx);
Alan Cox99f1fe12008-10-13 10:42:00 +0100501 if (tty)
502 tty = tty->link;
503 return tty;
504}
505
506/**
507 * pts_unix98_lookup - find a pty slave
508 * @driver: pts driver
509 * @idx: tty index
510 *
511 * Look up a pty master device. Called under the tty_mutex for now.
512 * This provides our locking.
513 */
514
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100515static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver,
516 struct inode *pts_inode, int idx)
Alan Cox99f1fe12008-10-13 10:42:00 +0100517{
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100518 struct tty_struct *tty = devpts_get_tty(pts_inode, idx);
Alan Cox99f1fe12008-10-13 10:42:00 +0100519 /* Master must be open before slave */
520 if (!tty)
521 return ERR_PTR(-EIO);
522 return tty;
523}
524
Alan Coxbf970ee2008-10-13 10:42:39 +0100525static void pty_unix98_shutdown(struct tty_struct *tty)
Alan Coxfeebed62008-10-13 10:41:30 +0100526{
527 /* We have our own method as we don't use the tty index */
528 kfree(tty->termios);
Alan Coxfeebed62008-10-13 10:41:30 +0100529}
530
Alan Cox8b0a88d2008-10-13 10:42:19 +0100531/* We have no need to install and remove our tty objects as devpts does all
532 the work for us */
533
Alan Coxbf970ee2008-10-13 10:42:39 +0100534static int pty_unix98_install(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100535{
Alan Coxbf970ee2008-10-13 10:42:39 +0100536 struct tty_struct *o_tty;
537 int idx = tty->index;
538
539 o_tty = alloc_tty_struct();
540 if (!o_tty)
541 return -ENOMEM;
542 if (!try_module_get(driver->other->owner)) {
543 /* This cannot in fact currently happen */
544 free_tty_struct(o_tty);
545 return -ENOMEM;
546 }
547 initialize_tty_struct(o_tty, driver->other, idx);
548
Alan Cox8dff04e2008-10-13 10:43:58 +0100549 tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100550 if (tty->termios == NULL)
551 goto free_mem_out;
552 *tty->termios = driver->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100553 tty->termios_locked = tty->termios + 1;
554
555 o_tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
Alan Coxbf970ee2008-10-13 10:42:39 +0100556 if (o_tty->termios == NULL)
557 goto free_mem_out;
558 *o_tty->termios = driver->other->init_termios;
Alan Cox8dff04e2008-10-13 10:43:58 +0100559 o_tty->termios_locked = o_tty->termios + 1;
Alan Coxbf970ee2008-10-13 10:42:39 +0100560
561 tty_driver_kref_get(driver->other);
562 if (driver->subtype == PTY_TYPE_MASTER)
563 o_tty->count++;
564 /* Establish the links in both directions */
565 tty->link = o_tty;
566 o_tty->link = tty;
567 /*
568 * All structures have been allocated, so now we install them.
569 * Failures after this point use release_tty to clean up, so
570 * there's no need to null out the local pointers.
571 */
572 tty_driver_kref_get(driver);
573 tty->count++;
574 pty_count++;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100575 return 0;
Alan Coxbf970ee2008-10-13 10:42:39 +0100576free_mem_out:
Alan Cox8dff04e2008-10-13 10:43:58 +0100577 kfree(o_tty->termios);
Alan Coxbf970ee2008-10-13 10:42:39 +0100578 module_put(o_tty->driver->owner);
579 free_tty_struct(o_tty);
Alan Cox8dff04e2008-10-13 10:43:58 +0100580 kfree(tty->termios);
Alan Coxbf970ee2008-10-13 10:42:39 +0100581 return -ENOMEM;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100582}
583
Alan Coxbf970ee2008-10-13 10:42:39 +0100584static void pty_unix98_remove(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +0100585{
Alan Coxbf970ee2008-10-13 10:42:39 +0100586 pty_count--;
Alan Cox8b0a88d2008-10-13 10:42:19 +0100587}
588
Alan Coxfeebed62008-10-13 10:41:30 +0100589static const struct tty_operations ptm_unix98_ops = {
Alan Cox99f1fe12008-10-13 10:42:00 +0100590 .lookup = ptm_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100591 .install = pty_unix98_install,
592 .remove = pty_unix98_remove,
Alan Cox3e8e88c2008-04-30 00:54:10 -0700593 .open = pty_open,
594 .close = pty_close,
595 .write = pty_write,
596 .write_room = pty_write_room,
597 .flush_buffer = pty_flush_buffer,
598 .chars_in_buffer = pty_chars_in_buffer,
599 .unthrottle = pty_unthrottle,
600 .set_termios = pty_set_termios,
Alan Coxfeebed62008-10-13 10:41:30 +0100601 .ioctl = pty_unix98_ioctl,
Alan Coxfc6f6232009-01-02 13:43:17 +0000602 .shutdown = pty_unix98_shutdown,
603 .resize = pty_resize
Alan Cox3e8e88c2008-04-30 00:54:10 -0700604};
605
Alan Cox99f1fe12008-10-13 10:42:00 +0100606static const struct tty_operations pty_unix98_ops = {
607 .lookup = pts_unix98_lookup,
Alan Coxbf970ee2008-10-13 10:42:39 +0100608 .install = pty_unix98_install,
609 .remove = pty_unix98_remove,
Alan Cox99f1fe12008-10-13 10:42:00 +0100610 .open = pty_open,
611 .close = pty_close,
612 .write = pty_write,
613 .write_room = pty_write_room,
614 .flush_buffer = pty_flush_buffer,
615 .chars_in_buffer = pty_chars_in_buffer,
616 .unthrottle = pty_unthrottle,
617 .set_termios = pty_set_termios,
Alan Coxbf970ee2008-10-13 10:42:39 +0100618 .shutdown = pty_unix98_shutdown
Alan Cox99f1fe12008-10-13 10:42:00 +0100619};
Alan Coxd81ed102008-10-13 10:41:42 +0100620
621/**
622 * ptmx_open - open a unix 98 pty master
623 * @inode: inode of device file
624 * @filp: file pointer to tty
625 *
626 * Allocate a unix98 pty master device from the ptmx driver.
627 *
628 * Locking: tty_mutex protects the init_dev work. tty->count should
629 * protect the rest.
630 * allocated_ptys_lock handles the list of free pty numbers
631 */
632
633static int __ptmx_open(struct inode *inode, struct file *filp)
634{
635 struct tty_struct *tty;
636 int retval;
637 int index;
638
639 nonseekable_open(inode, filp);
640
641 /* find a device that is not in use. */
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100642 index = devpts_new_index(inode);
Alan Coxd81ed102008-10-13 10:41:42 +0100643 if (index < 0)
644 return index;
645
646 mutex_lock(&tty_mutex);
Alan Cox73ec06f2008-10-13 10:42:29 +0100647 tty = tty_init_dev(ptm_driver, index, 1);
Alan Coxd81ed102008-10-13 10:41:42 +0100648 mutex_unlock(&tty_mutex);
649
Alan Cox73ec06f2008-10-13 10:42:29 +0100650 if (IS_ERR(tty)) {
651 retval = PTR_ERR(tty);
Alan Coxd81ed102008-10-13 10:41:42 +0100652 goto out;
Alan Cox73ec06f2008-10-13 10:42:29 +0100653 }
Alan Coxd81ed102008-10-13 10:41:42 +0100654
655 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
656 filp->private_data = tty;
657 file_move(filp, &tty->tty_files);
658
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100659 retval = devpts_pty_new(inode, tty->link);
Alan Coxd81ed102008-10-13 10:41:42 +0100660 if (retval)
661 goto out1;
662
663 retval = ptm_driver->ops->open(tty, filp);
664 if (!retval)
665 return 0;
666out1:
667 tty_release_dev(filp);
668 return retval;
669out:
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +0100670 devpts_kill_index(inode, index);
Alan Coxd81ed102008-10-13 10:41:42 +0100671 return retval;
672}
673
674static int ptmx_open(struct inode *inode, struct file *filp)
675{
676 int ret;
677
678 lock_kernel();
679 ret = __ptmx_open(inode, filp);
680 unlock_kernel();
681 return ret;
682}
683
684static struct file_operations ptmx_fops;
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686static void __init unix98_pty_init(void)
687{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 ptm_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
689 if (!ptm_driver)
690 panic("Couldn't allocate Unix98 ptm driver");
691 pts_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX);
692 if (!pts_driver)
693 panic("Couldn't allocate Unix98 pts driver");
694
695 ptm_driver->owner = THIS_MODULE;
696 ptm_driver->driver_name = "pty_master";
697 ptm_driver->name = "ptm";
698 ptm_driver->major = UNIX98_PTY_MASTER_MAJOR;
699 ptm_driver->minor_start = 0;
700 ptm_driver->type = TTY_DRIVER_TYPE_PTY;
701 ptm_driver->subtype = PTY_TYPE_MASTER;
702 ptm_driver->init_termios = tty_std_termios;
703 ptm_driver->init_termios.c_iflag = 0;
704 ptm_driver->init_termios.c_oflag = 0;
705 ptm_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
706 ptm_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -0800707 ptm_driver->init_termios.c_ispeed = 38400;
708 ptm_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 ptm_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW |
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700710 TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 ptm_driver->other = pts_driver;
Alan Coxfeebed62008-10-13 10:41:30 +0100712 tty_set_operations(ptm_driver, &ptm_unix98_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 pts_driver->owner = THIS_MODULE;
715 pts_driver->driver_name = "pty_slave";
716 pts_driver->name = "pts";
717 pts_driver->major = UNIX98_PTY_SLAVE_MAJOR;
718 pts_driver->minor_start = 0;
719 pts_driver->type = TTY_DRIVER_TYPE_PTY;
720 pts_driver->subtype = PTY_TYPE_SLAVE;
721 pts_driver->init_termios = tty_std_termios;
722 pts_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
Alan Cox606d0992006-12-08 02:38:45 -0800723 pts_driver->init_termios.c_ispeed = 38400;
724 pts_driver->init_termios.c_ospeed = 38400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 pts_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW |
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -0700726 TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 pts_driver->other = ptm_driver;
Alan Cox99f1fe12008-10-13 10:42:00 +0100728 tty_set_operations(pts_driver, &pty_unix98_ops);
Alan Coxfe9cd962008-10-13 10:43:38 +0100729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (tty_register_driver(ptm_driver))
731 panic("Couldn't register Unix98 ptm driver");
732 if (tty_register_driver(pts_driver))
733 panic("Couldn't register Unix98 pts driver");
734
Alan Coxfe9cd962008-10-13 10:43:38 +0100735 register_sysctl_table(pty_root_table);
Alan Coxd81ed102008-10-13 10:41:42 +0100736
737 /* Now create the /dev/ptmx special device */
738 tty_default_fops(&ptmx_fops);
739 ptmx_fops.open = ptmx_open;
740
741 cdev_init(&ptmx_cdev, &ptmx_fops);
742 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
743 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
744 panic("Couldn't register /dev/ptmx driver\n");
745 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
Alan Coxd81ed102008-10-13 10:41:42 +0100747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748#else
749static inline void unix98_pty_init(void) { }
750#endif
751
752static int __init pty_init(void)
753{
754 legacy_pty_init();
755 unix98_pty_init();
756 return 0;
757}
758module_init(pty_init);