]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
1da177e4 LT |
2 | * Copyright (C) 1991, 1992 Linus Torvalds |
3 | * | |
4 | * Added support for a Unix98-style ptmx device. | |
5 | * -- C. Scott Ananian <[email protected]>, 14-Jan-1998 | |
1da177e4 | 6 | * |
1da177e4 LT |
7 | */ |
8 | ||
fe9cd962 | 9 | #include <linux/module.h> |
1da177e4 | 10 | #include <linux/errno.h> |
1da177e4 LT |
11 | #include <linux/interrupt.h> |
12 | #include <linux/tty.h> | |
13 | #include <linux/tty_flip.h> | |
14 | #include <linux/fcntl.h> | |
3f07c014 | 15 | #include <linux/sched/signal.h> |
1da177e4 LT |
16 | #include <linux/string.h> |
17 | #include <linux/major.h> | |
18 | #include <linux/mm.h> | |
19 | #include <linux/init.h> | |
d81ed103 | 20 | #include <linux/device.h> |
fe9cd962 | 21 | #include <linux/uaccess.h> |
1da177e4 LT |
22 | #include <linux/bitops.h> |
23 | #include <linux/devpts_fs.h> | |
5a0e3ad6 | 24 | #include <linux/slab.h> |
d739e65b | 25 | #include <linux/mutex.h> |
01adc807 | 26 | #include <linux/poll.h> |
54ebbfb1 AS |
27 | #include <linux/mount.h> |
28 | #include <linux/file.h> | |
29 | #include <linux/ioctl.h> | |
1da177e4 | 30 | |
d6847793 PH |
31 | #undef TTY_DEBUG_HANGUP |
32 | #ifdef TTY_DEBUG_HANGUP | |
33 | # define tty_debug_hangup(tty, f, args...) tty_debug(tty, f, ##args) | |
34 | #else | |
35 | # define tty_debug_hangup(tty, f, args...) do {} while (0) | |
36 | #endif | |
fe9cd962 | 37 | |
1da177e4 | 38 | #ifdef CONFIG_UNIX98_PTYS |
da2bdf9a | 39 | static struct tty_driver *ptm_driver; |
1da177e4 | 40 | static struct tty_driver *pts_driver; |
d739e65b | 41 | static DEFINE_MUTEX(devpts_mutex); |
1da177e4 LT |
42 | #endif |
43 | ||
fe9cd962 | 44 | static void pty_close(struct tty_struct *tty, struct file *filp) |
1da177e4 | 45 | { |
fe9cd962 AC |
46 | BUG_ON(!tty); |
47 | if (tty->driver->subtype == PTY_TYPE_MASTER) | |
48 | WARN_ON(tty->count > 1); | |
49 | else { | |
18900ca6 | 50 | if (tty_io_error(tty)) |
69939035 | 51 | return; |
1da177e4 LT |
52 | if (tty->count > 2) |
53 | return; | |
54 | } | |
69939035 | 55 | set_bit(TTY_IO_ERROR, &tty->flags); |
1da177e4 LT |
56 | wake_up_interruptible(&tty->read_wait); |
57 | wake_up_interruptible(&tty->write_wait); | |
4ed60fc2 | 58 | spin_lock_irq(&tty->ctrl_lock); |
1da177e4 | 59 | tty->packet = 0; |
4ed60fc2 | 60 | spin_unlock_irq(&tty->ctrl_lock); |
89c8d91e | 61 | /* Review - krefs on tty_link ?? */ |
1da177e4 LT |
62 | if (!tty->link) |
63 | return; | |
1da177e4 | 64 | set_bit(TTY_OTHER_CLOSED, &tty->link->flags); |
0f40fbbc | 65 | wake_up_interruptible(&tty->link->read_wait); |
1da177e4 LT |
66 | wake_up_interruptible(&tty->link->write_wait); |
67 | if (tty->driver->subtype == PTY_TYPE_MASTER) { | |
68 | set_bit(TTY_OTHER_CLOSED, &tty->flags); | |
ce1000dd | 69 | #ifdef CONFIG_UNIX98_PTYS |
d739e65b | 70 | if (tty->driver == ptm_driver) { |
b9f8033f | 71 | mutex_lock(&devpts_mutex); |
311fc65c EB |
72 | if (tty->link->driver_data) |
73 | devpts_pty_kill(tty->link->driver_data); | |
b9f8033f | 74 | mutex_unlock(&devpts_mutex); |
d739e65b | 75 | } |
ce1000dd | 76 | #endif |
11dbf203 | 77 | tty_vhangup(tty->link); |
1da177e4 LT |
78 | } |
79 | } | |
80 | ||
81 | /* | |
82 | * The unthrottle routine is called by the line discipline to signal | |
83 | * that it can receive more characters. For PTY's, the TTY_THROTTLED | |
84 | * flag is always set, to force the line discipline to always call the | |
fe9cd962 | 85 | * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE |
1da177e4 LT |
86 | * characters in the queue. This is necessary since each time this |
87 | * happens, we need to wake up any sleeping processes that could be | |
88 | * (1) trying to send data to the pty, or (2) waiting in wait_until_sent() | |
89 | * for the pty buffer to be drained. | |
90 | */ | |
fe9cd962 | 91 | static void pty_unthrottle(struct tty_struct *tty) |
1da177e4 | 92 | { |
d945cb9c | 93 | tty_wakeup(tty->link); |
1da177e4 LT |
94 | set_bit(TTY_THROTTLED, &tty->flags); |
95 | } | |
96 | ||
d945cb9c AC |
97 | /** |
98 | * pty_write - write to a pty | |
99 | * @tty: the tty we write from | |
100 | * @buf: kernel buffer of data | |
101 | * @count: bytes to write | |
762faaed | 102 | * |
d945cb9c AC |
103 | * Our "hardware" write method. Data is coming from the ldisc which |
104 | * may be in a non sleeping state. We simply throw this at the other | |
105 | * end of the link as if we were an IRQ handler receiving stuff for | |
106 | * the other side of the pty/tty pair. | |
1da177e4 | 107 | */ |
d945cb9c | 108 | |
ac89a917 | 109 | static int pty_write(struct tty_struct *tty, const unsigned char *buf, int c) |
1da177e4 LT |
110 | { |
111 | struct tty_struct *to = tty->link; | |
1da177e4 | 112 | |
d945cb9c | 113 | if (tty->stopped) |
1da177e4 | 114 | return 0; |
d945cb9c | 115 | |
d945cb9c AC |
116 | if (c > 0) { |
117 | /* Stuff the data into the input queue of the other end */ | |
05c7cd39 | 118 | c = tty_insert_flip_string(to->port, buf, c); |
d945cb9c | 119 | /* And shovel */ |
5ede5253 | 120 | if (c) |
2e124b4a | 121 | tty_flip_buffer_push(to->port); |
762faaed | 122 | } |
1da177e4 LT |
123 | return c; |
124 | } | |
125 | ||
d945cb9c AC |
126 | /** |
127 | * pty_write_room - write space | |
128 | * @tty: tty we are writing from | |
129 | * | |
130 | * Report how many bytes the ldisc can send into the queue for | |
131 | * the other device. | |
132 | */ | |
133 | ||
1da177e4 LT |
134 | static int pty_write_room(struct tty_struct *tty) |
135 | { | |
85dfd81d LT |
136 | if (tty->stopped) |
137 | return 0; | |
c81622ac | 138 | return tty_buffer_space_avail(tty->link->port); |
1da177e4 LT |
139 | } |
140 | ||
d945cb9c AC |
141 | /** |
142 | * pty_chars_in_buffer - characters currently in our tx queue | |
143 | * @tty: our tty | |
fe9cd962 | 144 | * |
d945cb9c AC |
145 | * Report how much we have in the transmit queue. As everything is |
146 | * instantly at the other end this is easy to implement. | |
1da177e4 | 147 | */ |
d945cb9c | 148 | |
1da177e4 LT |
149 | static int pty_chars_in_buffer(struct tty_struct *tty) |
150 | { | |
d945cb9c | 151 | return 0; |
1da177e4 LT |
152 | } |
153 | ||
154 | /* Set the lock flag on a pty */ | |
fe9cd962 | 155 | static int pty_set_lock(struct tty_struct *tty, int __user *arg) |
1da177e4 LT |
156 | { |
157 | int val; | |
fe9cd962 | 158 | if (get_user(val, arg)) |
1da177e4 LT |
159 | return -EFAULT; |
160 | if (val) | |
161 | set_bit(TTY_PTY_LOCK, &tty->flags); | |
162 | else | |
163 | clear_bit(TTY_PTY_LOCK, &tty->flags); | |
164 | return 0; | |
165 | } | |
166 | ||
84fd7bdf CG |
167 | static int pty_get_lock(struct tty_struct *tty, int __user *arg) |
168 | { | |
169 | int locked = test_bit(TTY_PTY_LOCK, &tty->flags); | |
170 | return put_user(locked, arg); | |
171 | } | |
172 | ||
06026d91 CG |
173 | /* Set the packet mode on a pty */ |
174 | static int pty_set_pktmode(struct tty_struct *tty, int __user *arg) | |
175 | { | |
06026d91 CG |
176 | int pktmode; |
177 | ||
178 | if (get_user(pktmode, arg)) | |
179 | return -EFAULT; | |
180 | ||
6054c16e | 181 | spin_lock_irq(&tty->ctrl_lock); |
06026d91 CG |
182 | if (pktmode) { |
183 | if (!tty->packet) { | |
06026d91 | 184 | tty->link->ctrl_status = 0; |
2622d73e PH |
185 | smp_mb(); |
186 | tty->packet = 1; | |
06026d91 CG |
187 | } |
188 | } else | |
189 | tty->packet = 0; | |
6054c16e | 190 | spin_unlock_irq(&tty->ctrl_lock); |
06026d91 CG |
191 | |
192 | return 0; | |
193 | } | |
194 | ||
84fd7bdf CG |
195 | /* Get the packet mode of a pty */ |
196 | static int pty_get_pktmode(struct tty_struct *tty, int __user *arg) | |
197 | { | |
198 | int pktmode = tty->packet; | |
199 | return put_user(pktmode, arg); | |
200 | } | |
201 | ||
26df6d13 | 202 | /* Send a signal to the slave */ |
203 | static int pty_signal(struct tty_struct *tty, int sig) | |
204 | { | |
26df6d13 | 205 | struct pid *pgrp; |
206 | ||
37480a05 PH |
207 | if (sig != SIGINT && sig != SIGQUIT && sig != SIGTSTP) |
208 | return -EINVAL; | |
209 | ||
26df6d13 | 210 | if (tty->link) { |
5b239542 PH |
211 | pgrp = tty_get_pgrp(tty->link); |
212 | if (pgrp) | |
213 | kill_pgrp(pgrp, sig, 1); | |
26df6d13 | 214 | put_pid(pgrp); |
215 | } | |
216 | return 0; | |
217 | } | |
218 | ||
1da177e4 LT |
219 | static void pty_flush_buffer(struct tty_struct *tty) |
220 | { | |
221 | struct tty_struct *to = tty->link; | |
fe9cd962 | 222 | |
1da177e4 LT |
223 | if (!to) |
224 | return; | |
1d1d14da | 225 | |
77dae613 | 226 | tty_buffer_flush(to, NULL); |
1da177e4 | 227 | if (to->packet) { |
6054c16e | 228 | spin_lock_irq(&tty->ctrl_lock); |
1da177e4 LT |
229 | tty->ctrl_status |= TIOCPKT_FLUSHWRITE; |
230 | wake_up_interruptible(&to->read_wait); | |
6054c16e | 231 | spin_unlock_irq(&tty->ctrl_lock); |
1da177e4 LT |
232 | } |
233 | } | |
234 | ||
fe9cd962 | 235 | static int pty_open(struct tty_struct *tty, struct file *filp) |
1da177e4 | 236 | { |
1da177e4 | 237 | if (!tty || !tty->link) |
7c61c3d8 | 238 | return -ENODEV; |
69939035 | 239 | |
1da177e4 LT |
240 | if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) |
241 | goto out; | |
242 | if (test_bit(TTY_PTY_LOCK, &tty->link->flags)) | |
243 | goto out; | |
80cace72 | 244 | if (tty->driver->subtype == PTY_TYPE_SLAVE && tty->link->count != 1) |
1da177e4 LT |
245 | goto out; |
246 | ||
69939035 | 247 | clear_bit(TTY_IO_ERROR, &tty->flags); |
1da177e4 LT |
248 | clear_bit(TTY_OTHER_CLOSED, &tty->link->flags); |
249 | set_bit(TTY_THROTTLED, &tty->flags); | |
7c61c3d8 PH |
250 | return 0; |
251 | ||
1da177e4 | 252 | out: |
7c61c3d8 PH |
253 | set_bit(TTY_IO_ERROR, &tty->flags); |
254 | return -EIO; | |
1da177e4 LT |
255 | } |
256 | ||
fe9cd962 AC |
257 | static void pty_set_termios(struct tty_struct *tty, |
258 | struct ktermios *old_termios) | |
1da177e4 | 259 | { |
dbfcd851 PH |
260 | /* See if packet mode change of state. */ |
261 | if (tty->link && tty->link->packet) { | |
9db276f8 | 262 | int extproc = (old_termios->c_lflag & EXTPROC) | L_EXTPROC(tty); |
dbfcd851 PH |
263 | int old_flow = ((old_termios->c_iflag & IXON) && |
264 | (old_termios->c_cc[VSTOP] == '\023') && | |
265 | (old_termios->c_cc[VSTART] == '\021')); | |
266 | int new_flow = (I_IXON(tty) && | |
267 | STOP_CHAR(tty) == '\023' && | |
268 | START_CHAR(tty) == '\021'); | |
269 | if ((old_flow != new_flow) || extproc) { | |
4d8c1dff | 270 | spin_lock_irq(&tty->ctrl_lock); |
dbfcd851 PH |
271 | if (old_flow != new_flow) { |
272 | tty->ctrl_status &= ~(TIOCPKT_DOSTOP | TIOCPKT_NOSTOP); | |
273 | if (new_flow) | |
274 | tty->ctrl_status |= TIOCPKT_DOSTOP; | |
275 | else | |
276 | tty->ctrl_status |= TIOCPKT_NOSTOP; | |
277 | } | |
278 | if (extproc) | |
279 | tty->ctrl_status |= TIOCPKT_IOCTL; | |
4d8c1dff | 280 | spin_unlock_irq(&tty->ctrl_lock); |
dbfcd851 PH |
281 | wake_up_interruptible(&tty->link->read_wait); |
282 | } | |
283 | } | |
284 | ||
adc8d746 AC |
285 | tty->termios.c_cflag &= ~(CSIZE | PARENB); |
286 | tty->termios.c_cflag |= (CS8 | CREAD); | |
1da177e4 LT |
287 | } |
288 | ||
fc6f6238 AC |
289 | /** |
290 | * pty_do_resize - resize event | |
291 | * @tty: tty being resized | |
c774bda2 | 292 | * @ws: window size being set. |
fc6f6238 | 293 | * |
3ad2f3fb | 294 | * Update the termios variables and send the necessary signals to |
fc6f6238 AC |
295 | * peform a terminal resize correctly |
296 | */ | |
297 | ||
159a8e92 | 298 | static int pty_resize(struct tty_struct *tty, struct winsize *ws) |
fc6f6238 AC |
299 | { |
300 | struct pid *pgrp, *rpgrp; | |
fc6f6238 AC |
301 | struct tty_struct *pty = tty->link; |
302 | ||
303 | /* For a PTY we need to lock the tty side */ | |
dee4a0be | 304 | mutex_lock(&tty->winsize_mutex); |
fc6f6238 AC |
305 | if (!memcmp(ws, &tty->winsize, sizeof(*ws))) |
306 | goto done; | |
307 | ||
5b239542 PH |
308 | /* Signal the foreground process group of both ptys */ |
309 | pgrp = tty_get_pgrp(tty); | |
310 | rpgrp = tty_get_pgrp(pty); | |
fc6f6238 AC |
311 | |
312 | if (pgrp) | |
313 | kill_pgrp(pgrp, SIGWINCH, 1); | |
314 | if (rpgrp != pgrp && rpgrp) | |
315 | kill_pgrp(rpgrp, SIGWINCH, 1); | |
316 | ||
317 | put_pid(pgrp); | |
318 | put_pid(rpgrp); | |
319 | ||
320 | tty->winsize = *ws; | |
321 | pty->winsize = *ws; /* Never used so will go away soon */ | |
322 | done: | |
dee4a0be | 323 | mutex_unlock(&tty->winsize_mutex); |
fc6f6238 AC |
324 | return 0; |
325 | } | |
326 | ||
01adc807 PH |
327 | /** |
328 | * pty_start - start() handler | |
329 | * pty_stop - stop() handler | |
330 | * @tty: tty being flow-controlled | |
331 | * | |
332 | * Propagates the TIOCPKT status to the master pty. | |
333 | * | |
334 | * NB: only the master pty can be in packet mode so only the slave | |
335 | * needs start()/stop() handlers | |
336 | */ | |
337 | static void pty_start(struct tty_struct *tty) | |
338 | { | |
339 | unsigned long flags; | |
340 | ||
01adc807 | 341 | if (tty->link && tty->link->packet) { |
54e8e5fc | 342 | spin_lock_irqsave(&tty->ctrl_lock, flags); |
01adc807 PH |
343 | tty->ctrl_status &= ~TIOCPKT_STOP; |
344 | tty->ctrl_status |= TIOCPKT_START; | |
54e8e5fc | 345 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); |
01adc807 PH |
346 | wake_up_interruptible_poll(&tty->link->read_wait, POLLIN); |
347 | } | |
01adc807 PH |
348 | } |
349 | ||
350 | static void pty_stop(struct tty_struct *tty) | |
351 | { | |
352 | unsigned long flags; | |
353 | ||
01adc807 | 354 | if (tty->link && tty->link->packet) { |
54e8e5fc | 355 | spin_lock_irqsave(&tty->ctrl_lock, flags); |
01adc807 PH |
356 | tty->ctrl_status &= ~TIOCPKT_START; |
357 | tty->ctrl_status |= TIOCPKT_STOP; | |
54e8e5fc | 358 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); |
01adc807 PH |
359 | wake_up_interruptible_poll(&tty->link->read_wait, POLLIN); |
360 | } | |
01adc807 PH |
361 | } |
362 | ||
d155255a AC |
363 | /** |
364 | * pty_common_install - set up the pty pair | |
365 | * @driver: the pty driver | |
366 | * @tty: the tty being instantiated | |
2c964a2f | 367 | * @legacy: true if this is BSD style |
d155255a AC |
368 | * |
369 | * Perform the initial set up for the tty/pty pair. Called from the | |
370 | * tty layer when the port is first opened. | |
371 | * | |
372 | * Locking: the caller must hold the tty_mutex | |
373 | */ | |
5d249bc6 JS |
374 | static int pty_common_install(struct tty_driver *driver, struct tty_struct *tty, |
375 | bool legacy) | |
bf970ee4 AC |
376 | { |
377 | struct tty_struct *o_tty; | |
d03702a2 | 378 | struct tty_port *ports[2]; |
bf970ee4 | 379 | int idx = tty->index; |
5d249bc6 | 380 | int retval = -ENOMEM; |
bf970ee4 | 381 | |
55199ea3 PH |
382 | /* Opening the slave first has always returned -EIO */ |
383 | if (driver->subtype != PTY_TYPE_MASTER) | |
384 | return -EIO; | |
385 | ||
d03702a2 JS |
386 | ports[0] = kmalloc(sizeof **ports, GFP_KERNEL); |
387 | ports[1] = kmalloc(sizeof **ports, GFP_KERNEL); | |
6f9ea7ad | 388 | if (!ports[0] || !ports[1]) |
2c964a2f | 389 | goto err; |
bf970ee4 AC |
390 | if (!try_module_get(driver->other->owner)) { |
391 | /* This cannot in fact currently happen */ | |
2c964a2f | 392 | goto err; |
bf970ee4 | 393 | } |
2c964a2f RV |
394 | o_tty = alloc_tty_struct(driver->other, idx); |
395 | if (!o_tty) | |
396 | goto err_put_module; | |
bf970ee4 | 397 | |
2febdb63 | 398 | tty_set_lock_subclass(o_tty); |
d2b6f447 | 399 | lockdep_set_subclass(&o_tty->termios_rwsem, TTY_LOCK_SLAVE); |
2febdb63 | 400 | |
5d249bc6 JS |
401 | if (legacy) { |
402 | /* We always use new tty termios data so we can do this | |
403 | the easy way .. */ | |
a3123fd0 PH |
404 | tty_init_termios(tty); |
405 | tty_init_termios(o_tty); | |
5d249bc6 JS |
406 | |
407 | driver->other->ttys[idx] = o_tty; | |
408 | driver->ttys[idx] = tty; | |
409 | } else { | |
adc8d746 AC |
410 | memset(&tty->termios_locked, 0, sizeof(tty->termios_locked)); |
411 | tty->termios = driver->init_termios; | |
412 | memset(&o_tty->termios_locked, 0, sizeof(tty->termios_locked)); | |
413 | o_tty->termios = driver->other->init_termios; | |
5d249bc6 | 414 | } |
fe9cd962 | 415 | |
bf970ee4 AC |
416 | /* |
417 | * Everything allocated ... set up the o_tty structure. | |
418 | */ | |
bf970ee4 | 419 | tty_driver_kref_get(driver->other); |
bf970ee4 AC |
420 | /* Establish the links in both directions */ |
421 | tty->link = o_tty; | |
422 | o_tty->link = tty; | |
d03702a2 JS |
423 | tty_port_init(ports[0]); |
424 | tty_port_init(ports[1]); | |
c81622ac PH |
425 | tty_buffer_set_limit(ports[0], 8192); |
426 | tty_buffer_set_limit(ports[1], 8192); | |
d03702a2 JS |
427 | o_tty->port = ports[0]; |
428 | tty->port = ports[1]; | |
967fab69 | 429 | o_tty->port->itty = o_tty; |
bf970ee4 | 430 | |
1d1d14da PH |
431 | tty_buffer_set_lock_subclass(o_tty->port); |
432 | ||
bf970ee4 AC |
433 | tty_driver_kref_get(driver); |
434 | tty->count++; | |
55199ea3 | 435 | o_tty->count++; |
bf970ee4 | 436 | return 0; |
a3123fd0 | 437 | |
2c964a2f | 438 | err_put_module: |
07584d4a | 439 | module_put(driver->other->owner); |
2c964a2f | 440 | err: |
d03702a2 JS |
441 | kfree(ports[0]); |
442 | kfree(ports[1]); | |
8a1b8d70 | 443 | return retval; |
bf970ee4 AC |
444 | } |
445 | ||
d03702a2 JS |
446 | static void pty_cleanup(struct tty_struct *tty) |
447 | { | |
81c79838 | 448 | tty_port_put(tty->port); |
d03702a2 JS |
449 | } |
450 | ||
5d249bc6 JS |
451 | /* Traditional BSD devices */ |
452 | #ifdef CONFIG_LEGACY_PTYS | |
453 | ||
454 | static int pty_install(struct tty_driver *driver, struct tty_struct *tty) | |
455 | { | |
456 | return pty_common_install(driver, tty, true); | |
457 | } | |
458 | ||
d155255a AC |
459 | static void pty_remove(struct tty_driver *driver, struct tty_struct *tty) |
460 | { | |
461 | struct tty_struct *pair = tty->link; | |
462 | driver->ttys[tty->index] = NULL; | |
463 | if (pair) | |
464 | pair->driver->ttys[pair->index] = NULL; | |
465 | } | |
466 | ||
6caa76b7 | 467 | static int pty_bsd_ioctl(struct tty_struct *tty, |
1da177e4 LT |
468 | unsigned int cmd, unsigned long arg) |
469 | { | |
470 | switch (cmd) { | |
471 | case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */ | |
472 | return pty_set_lock(tty, (int __user *) arg); | |
84fd7bdf CG |
473 | case TIOCGPTLCK: /* Get PT Lock status */ |
474 | return pty_get_lock(tty, (int __user *)arg); | |
06026d91 CG |
475 | case TIOCPKT: /* Set PT packet mode */ |
476 | return pty_set_pktmode(tty, (int __user *)arg); | |
84fd7bdf CG |
477 | case TIOCGPKT: /* Get PT packet mode */ |
478 | return pty_get_pktmode(tty, (int __user *)arg); | |
26df6d13 | 479 | case TIOCSIG: /* Send signal to other side of pty */ |
480 | return pty_signal(tty, (int) arg); | |
ded2f295 JS |
481 | case TIOCGPTN: /* TTY returns ENOTTY, but glibc expects EINVAL here */ |
482 | return -EINVAL; | |
1da177e4 LT |
483 | } |
484 | return -ENOIOCTLCMD; | |
485 | } | |
486 | ||
5f0f187f AS |
487 | static long pty_bsd_compat_ioctl(struct tty_struct *tty, |
488 | unsigned int cmd, unsigned long arg) | |
489 | { | |
490 | /* | |
491 | * PTY ioctls don't require any special translation between 32-bit and | |
492 | * 64-bit userspace, they are already compatible. | |
493 | */ | |
494 | return pty_bsd_ioctl(tty, cmd, arg); | |
495 | } | |
496 | ||
dc8c8587 | 497 | static int legacy_count = CONFIG_LEGACY_PTY_COUNT; |
7154988f PG |
498 | /* |
499 | * not really modular, but the easiest way to keep compat with existing | |
500 | * bootargs behaviour is to continue using module_param here. | |
501 | */ | |
dc8c8587 KS |
502 | module_param(legacy_count, int, 0); |
503 | ||
342a5971 LT |
504 | /* |
505 | * The master side of a pty can do TIOCSPTLCK and thus | |
506 | * has pty_bsd_ioctl. | |
507 | */ | |
508 | static const struct tty_operations master_pty_ops_bsd = { | |
509 | .install = pty_install, | |
3e8e88ca AC |
510 | .open = pty_open, |
511 | .close = pty_close, | |
512 | .write = pty_write, | |
513 | .write_room = pty_write_room, | |
514 | .flush_buffer = pty_flush_buffer, | |
515 | .chars_in_buffer = pty_chars_in_buffer, | |
516 | .unthrottle = pty_unthrottle, | |
3e8e88ca | 517 | .ioctl = pty_bsd_ioctl, |
5f0f187f | 518 | .compat_ioctl = pty_bsd_compat_ioctl, |
d03702a2 | 519 | .cleanup = pty_cleanup, |
d155255a AC |
520 | .resize = pty_resize, |
521 | .remove = pty_remove | |
3e8e88ca AC |
522 | }; |
523 | ||
342a5971 LT |
524 | static const struct tty_operations slave_pty_ops_bsd = { |
525 | .install = pty_install, | |
526 | .open = pty_open, | |
527 | .close = pty_close, | |
528 | .write = pty_write, | |
529 | .write_room = pty_write_room, | |
530 | .flush_buffer = pty_flush_buffer, | |
531 | .chars_in_buffer = pty_chars_in_buffer, | |
532 | .unthrottle = pty_unthrottle, | |
533 | .set_termios = pty_set_termios, | |
d03702a2 | 534 | .cleanup = pty_cleanup, |
d155255a | 535 | .resize = pty_resize, |
01adc807 PH |
536 | .start = pty_start, |
537 | .stop = pty_stop, | |
d155255a | 538 | .remove = pty_remove |
342a5971 LT |
539 | }; |
540 | ||
1da177e4 LT |
541 | static void __init legacy_pty_init(void) |
542 | { | |
342a5971 LT |
543 | struct tty_driver *pty_driver, *pty_slave_driver; |
544 | ||
dc8c8587 KS |
545 | if (legacy_count <= 0) |
546 | return; | |
1da177e4 | 547 | |
21aca2fa JS |
548 | pty_driver = tty_alloc_driver(legacy_count, |
549 | TTY_DRIVER_RESET_TERMIOS | | |
550 | TTY_DRIVER_REAL_RAW | | |
551 | TTY_DRIVER_DYNAMIC_ALLOC); | |
c3a6344a | 552 | if (IS_ERR(pty_driver)) |
1da177e4 LT |
553 | panic("Couldn't allocate pty driver"); |
554 | ||
21aca2fa JS |
555 | pty_slave_driver = tty_alloc_driver(legacy_count, |
556 | TTY_DRIVER_RESET_TERMIOS | | |
557 | TTY_DRIVER_REAL_RAW | | |
558 | TTY_DRIVER_DYNAMIC_ALLOC); | |
c3a6344a | 559 | if (IS_ERR(pty_slave_driver)) |
1da177e4 LT |
560 | panic("Couldn't allocate pty slave driver"); |
561 | ||
1da177e4 LT |
562 | pty_driver->driver_name = "pty_master"; |
563 | pty_driver->name = "pty"; | |
1da177e4 LT |
564 | pty_driver->major = PTY_MASTER_MAJOR; |
565 | pty_driver->minor_start = 0; | |
566 | pty_driver->type = TTY_DRIVER_TYPE_PTY; | |
567 | pty_driver->subtype = PTY_TYPE_MASTER; | |
568 | pty_driver->init_termios = tty_std_termios; | |
569 | pty_driver->init_termios.c_iflag = 0; | |
570 | pty_driver->init_termios.c_oflag = 0; | |
571 | pty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; | |
572 | pty_driver->init_termios.c_lflag = 0; | |
606d099c AC |
573 | pty_driver->init_termios.c_ispeed = 38400; |
574 | pty_driver->init_termios.c_ospeed = 38400; | |
1da177e4 | 575 | pty_driver->other = pty_slave_driver; |
342a5971 | 576 | tty_set_operations(pty_driver, &master_pty_ops_bsd); |
1da177e4 | 577 | |
1da177e4 LT |
578 | pty_slave_driver->driver_name = "pty_slave"; |
579 | pty_slave_driver->name = "ttyp"; | |
1da177e4 LT |
580 | pty_slave_driver->major = PTY_SLAVE_MAJOR; |
581 | pty_slave_driver->minor_start = 0; | |
582 | pty_slave_driver->type = TTY_DRIVER_TYPE_PTY; | |
583 | pty_slave_driver->subtype = PTY_TYPE_SLAVE; | |
584 | pty_slave_driver->init_termios = tty_std_termios; | |
585 | pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; | |
606d099c AC |
586 | pty_slave_driver->init_termios.c_ispeed = 38400; |
587 | pty_slave_driver->init_termios.c_ospeed = 38400; | |
1da177e4 | 588 | pty_slave_driver->other = pty_driver; |
342a5971 | 589 | tty_set_operations(pty_slave_driver, &slave_pty_ops_bsd); |
1da177e4 LT |
590 | |
591 | if (tty_register_driver(pty_driver)) | |
592 | panic("Couldn't register pty driver"); | |
593 | if (tty_register_driver(pty_slave_driver)) | |
594 | panic("Couldn't register pty slave driver"); | |
595 | } | |
596 | #else | |
597 | static inline void legacy_pty_init(void) { } | |
598 | #endif | |
599 | ||
600 | /* Unix98 devices */ | |
601 | #ifdef CONFIG_UNIX98_PTYS | |
d81ed103 AC |
602 | static struct cdev ptmx_cdev; |
603 | ||
6509f309 | 604 | /** |
311fc65c EB |
605 | * ptm_open_peer - open the peer of a pty |
606 | * @master: the open struct file of the ptmx device node | |
607 | * @tty: the master of the pty being opened | |
608 | * @flags: the flags for open | |
6509f309 | 609 | * |
311fc65c EB |
610 | * Provide a race free way for userspace to open the slave end of a pty |
611 | * (where they have the master fd and cannot access or trust the mount | |
612 | * namespace /dev/pts was mounted inside). | |
6509f309 | 613 | */ |
311fc65c | 614 | int ptm_open_peer(struct file *master, struct tty_struct *tty, int flags) |
6509f309 AB |
615 | { |
616 | int fd = -1; | |
311fc65c | 617 | struct file *filp; |
6509f309 | 618 | int retval = -EINVAL; |
311fc65c EB |
619 | struct path path; |
620 | ||
621 | if (tty->driver != ptm_driver) | |
622 | return -EIO; | |
6509f309 AB |
623 | |
624 | fd = get_unused_fd_flags(0); | |
625 | if (fd < 0) { | |
626 | retval = fd; | |
627 | goto err; | |
628 | } | |
629 | ||
311fc65c EB |
630 | /* Compute the slave's path */ |
631 | path.mnt = devpts_mntget(master, tty->driver_data); | |
632 | if (IS_ERR(path.mnt)) { | |
633 | retval = PTR_ERR(path.mnt); | |
634 | goto err_put; | |
635 | } | |
636 | path.dentry = tty->link->driver_data; | |
637 | ||
638 | filp = dentry_open(&path, flags, current_cred()); | |
639 | mntput(path.mnt); | |
6509f309 AB |
640 | if (IS_ERR(filp)) { |
641 | retval = PTR_ERR(filp); | |
642 | goto err_put; | |
643 | } | |
644 | ||
645 | fd_install(fd, filp); | |
646 | return fd; | |
647 | ||
648 | err_put: | |
649 | put_unused_fd(fd); | |
650 | err: | |
651 | return retval; | |
652 | } | |
653 | ||
6caa76b7 | 654 | static int pty_unix98_ioctl(struct tty_struct *tty, |
1da177e4 LT |
655 | unsigned int cmd, unsigned long arg) |
656 | { | |
657 | switch (cmd) { | |
658 | case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */ | |
659 | return pty_set_lock(tty, (int __user *)arg); | |
84fd7bdf CG |
660 | case TIOCGPTLCK: /* Get PT Lock status */ |
661 | return pty_get_lock(tty, (int __user *)arg); | |
06026d91 CG |
662 | case TIOCPKT: /* Set PT packet mode */ |
663 | return pty_set_pktmode(tty, (int __user *)arg); | |
84fd7bdf CG |
664 | case TIOCGPKT: /* Get PT packet mode */ |
665 | return pty_get_pktmode(tty, (int __user *)arg); | |
1da177e4 LT |
666 | case TIOCGPTN: /* Get PT Number */ |
667 | return put_user(tty->index, (unsigned int __user *)arg); | |
26df6d13 | 668 | case TIOCSIG: /* Send signal to other side of pty */ |
669 | return pty_signal(tty, (int) arg); | |
1da177e4 LT |
670 | } |
671 | ||
672 | return -ENOIOCTLCMD; | |
673 | } | |
674 | ||
5f0f187f AS |
675 | static long pty_unix98_compat_ioctl(struct tty_struct *tty, |
676 | unsigned int cmd, unsigned long arg) | |
677 | { | |
678 | /* | |
679 | * PTY ioctls don't require any special translation between 32-bit and | |
680 | * 64-bit userspace, they are already compatible. | |
681 | */ | |
682 | return pty_unix98_ioctl(tty, cmd, arg); | |
683 | } | |
684 | ||
99f1fe18 AC |
685 | /** |
686 | * ptm_unix98_lookup - find a pty master | |
687 | * @driver: ptm driver | |
688 | * @idx: tty index | |
689 | * | |
690 | * Look up a pty master device. Called under the tty_mutex for now. | |
691 | * This provides our locking. | |
692 | */ | |
693 | ||
15f1a633 | 694 | static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver, |
8ead9dd5 | 695 | struct file *file, int idx) |
99f1fe18 | 696 | { |
593a27c4 KK |
697 | /* Master must be open via /dev/ptmx */ |
698 | return ERR_PTR(-EIO); | |
99f1fe18 AC |
699 | } |
700 | ||
701 | /** | |
702 | * pts_unix98_lookup - find a pty slave | |
703 | * @driver: pts driver | |
704 | * @idx: tty index | |
705 | * | |
706 | * Look up a pty master device. Called under the tty_mutex for now. | |
d739e65b | 707 | * This provides our locking for the tty pointer. |
99f1fe18 AC |
708 | */ |
709 | ||
15f1a633 | 710 | static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver, |
8ead9dd5 | 711 | struct file *file, int idx) |
99f1fe18 | 712 | { |
d739e65b AC |
713 | struct tty_struct *tty; |
714 | ||
715 | mutex_lock(&devpts_mutex); | |
8ead9dd5 | 716 | tty = devpts_get_priv(file->f_path.dentry); |
d739e65b | 717 | mutex_unlock(&devpts_mutex); |
99f1fe18 AC |
718 | /* Master must be open before slave */ |
719 | if (!tty) | |
720 | return ERR_PTR(-EIO); | |
721 | return tty; | |
722 | } | |
723 | ||
bf970ee4 | 724 | static int pty_unix98_install(struct tty_driver *driver, struct tty_struct *tty) |
8b0a88d5 | 725 | { |
5d249bc6 | 726 | return pty_common_install(driver, tty, false); |
8b0a88d5 AC |
727 | } |
728 | ||
f4b208eb | 729 | /* this is called once with whichever end is closed last */ |
c1e33af1 | 730 | static void pty_unix98_remove(struct tty_driver *driver, struct tty_struct *tty) |
f4b208eb | 731 | { |
67245ff3 | 732 | struct pts_fs_info *fsi; |
2831c89f HK |
733 | |
734 | if (tty->driver->subtype == PTY_TYPE_MASTER) | |
67245ff3 | 735 | fsi = tty->driver_data; |
2831c89f | 736 | else |
67245ff3 | 737 | fsi = tty->link->driver_data; |
5353ed8d CIK |
738 | |
739 | if (fsi) { | |
740 | devpts_kill_index(fsi, tty->index); | |
741 | devpts_release(fsi); | |
742 | } | |
f4b208eb JS |
743 | } |
744 | ||
feebed65 | 745 | static const struct tty_operations ptm_unix98_ops = { |
99f1fe18 | 746 | .lookup = ptm_unix98_lookup, |
bf970ee4 | 747 | .install = pty_unix98_install, |
7171604a | 748 | .remove = pty_unix98_remove, |
3e8e88ca AC |
749 | .open = pty_open, |
750 | .close = pty_close, | |
751 | .write = pty_write, | |
752 | .write_room = pty_write_room, | |
753 | .flush_buffer = pty_flush_buffer, | |
754 | .chars_in_buffer = pty_chars_in_buffer, | |
755 | .unthrottle = pty_unthrottle, | |
feebed65 | 756 | .ioctl = pty_unix98_ioctl, |
5f0f187f | 757 | .compat_ioctl = pty_unix98_compat_ioctl, |
36b3c070 AC |
758 | .resize = pty_resize, |
759 | .cleanup = pty_cleanup | |
3e8e88ca AC |
760 | }; |
761 | ||
99f1fe18 AC |
762 | static const struct tty_operations pty_unix98_ops = { |
763 | .lookup = pts_unix98_lookup, | |
bf970ee4 | 764 | .install = pty_unix98_install, |
7171604a | 765 | .remove = pty_unix98_remove, |
99f1fe18 AC |
766 | .open = pty_open, |
767 | .close = pty_close, | |
768 | .write = pty_write, | |
769 | .write_room = pty_write_room, | |
770 | .flush_buffer = pty_flush_buffer, | |
771 | .chars_in_buffer = pty_chars_in_buffer, | |
772 | .unthrottle = pty_unthrottle, | |
773 | .set_termios = pty_set_termios, | |
01adc807 PH |
774 | .start = pty_start, |
775 | .stop = pty_stop, | |
d03702a2 | 776 | .cleanup = pty_cleanup, |
99f1fe18 | 777 | }; |
d81ed103 AC |
778 | |
779 | /** | |
780 | * ptmx_open - open a unix 98 pty master | |
781 | * @inode: inode of device file | |
782 | * @filp: file pointer to tty | |
783 | * | |
784 | * Allocate a unix98 pty master device from the ptmx driver. | |
785 | * | |
786 | * Locking: tty_mutex protects the init_dev work. tty->count should | |
b9f8033f | 787 | * protect the rest. |
d81ed103 AC |
788 | * allocated_ptys_lock handles the list of free pty numbers |
789 | */ | |
790 | ||
64ba3dc3 | 791 | static int ptmx_open(struct inode *inode, struct file *filp) |
d81ed103 | 792 | { |
67245ff3 | 793 | struct pts_fs_info *fsi; |
d81ed103 | 794 | struct tty_struct *tty; |
8ead9dd5 | 795 | struct dentry *dentry; |
d81ed103 AC |
796 | int retval; |
797 | int index; | |
798 | ||
799 | nonseekable_open(inode, filp); | |
800 | ||
b0b88565 LT |
801 | /* We refuse fsnotify events on ptmx, since it's a shared resource */ |
802 | filp->f_mode |= FMODE_NONOTIFY; | |
803 | ||
fa90e1c9 JS |
804 | retval = tty_alloc_file(filp); |
805 | if (retval) | |
806 | return retval; | |
807 | ||
143c97cc | 808 | fsi = devpts_acquire(filp); |
eedf265a EB |
809 | if (IS_ERR(fsi)) { |
810 | retval = PTR_ERR(fsi); | |
67245ff3 | 811 | goto out_free_file; |
eedf265a | 812 | } |
67245ff3 | 813 | |
d81ed103 | 814 | /* find a device that is not in use. */ |
89c8d91e | 815 | mutex_lock(&devpts_mutex); |
67245ff3 | 816 | index = devpts_new_index(fsi); |
89c8d91e AC |
817 | mutex_unlock(&devpts_mutex); |
818 | ||
67245ff3 LT |
819 | retval = index; |
820 | if (index < 0) | |
eedf265a | 821 | goto out_put_fsi; |
d81ed103 | 822 | |
d81ed103 | 823 | |
67245ff3 LT |
824 | mutex_lock(&tty_mutex); |
825 | tty = tty_init_dev(ptm_driver, index); | |
89c8d91e AC |
826 | /* The tty returned here is locked so we can safely |
827 | drop the mutex */ | |
828 | mutex_unlock(&tty_mutex); | |
829 | ||
67245ff3 LT |
830 | retval = PTR_ERR(tty); |
831 | if (IS_ERR(tty)) | |
832 | goto out; | |
ee2ffa0d | 833 | |
2831c89f | 834 | /* |
67245ff3 LT |
835 | * From here on out, the tty is "live", and the index and |
836 | * fsi will be killed/put by the tty_release() | |
2831c89f | 837 | */ |
67245ff3 LT |
838 | set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */ |
839 | tty->driver_data = fsi; | |
2831c89f | 840 | |
fa90e1c9 | 841 | tty_add_file(tty, filp); |
d81ed103 | 842 | |
8ead9dd5 LT |
843 | dentry = devpts_pty_new(fsi, index, tty->link); |
844 | if (IS_ERR(dentry)) { | |
845 | retval = PTR_ERR(dentry); | |
1177c0ef | 846 | goto err_release; |
162b97cf | 847 | } |
311fc65c | 848 | tty->link->driver_data = dentry; |
d81ed103 AC |
849 | |
850 | retval = ptm_driver->ops->open(tty, filp); | |
64ba3dc3 | 851 | if (retval) |
311fc65c | 852 | goto err_release; |
1177c0ef | 853 | |
d435cefe | 854 | tty_debug_hangup(tty, "opening (count=%d)\n", tty->count); |
d6847793 | 855 | |
89c8d91e | 856 | tty_unlock(tty); |
1177c0ef JS |
857 | return 0; |
858 | err_release: | |
89c8d91e | 859 | tty_unlock(tty); |
67245ff3 | 860 | // This will also put-ref the fsi |
eeb89d91 | 861 | tty_release(inode, filp); |
d81ed103 AC |
862 | return retval; |
863 | out: | |
67245ff3 | 864 | devpts_kill_index(fsi, index); |
eedf265a EB |
865 | out_put_fsi: |
866 | devpts_release(fsi); | |
67245ff3 | 867 | out_free_file: |
fa90e1c9 | 868 | tty_free_file(filp); |
64ba3dc3 | 869 | return retval; |
d81ed103 AC |
870 | } |
871 | ||
d2ec3f77 | 872 | static struct file_operations ptmx_fops __ro_after_init; |
d81ed103 | 873 | |
1da177e4 LT |
874 | static void __init unix98_pty_init(void) |
875 | { | |
21aca2fa JS |
876 | ptm_driver = tty_alloc_driver(NR_UNIX98_PTY_MAX, |
877 | TTY_DRIVER_RESET_TERMIOS | | |
878 | TTY_DRIVER_REAL_RAW | | |
879 | TTY_DRIVER_DYNAMIC_DEV | | |
880 | TTY_DRIVER_DEVPTS_MEM | | |
881 | TTY_DRIVER_DYNAMIC_ALLOC); | |
c3a6344a | 882 | if (IS_ERR(ptm_driver)) |
1da177e4 | 883 | panic("Couldn't allocate Unix98 ptm driver"); |
21aca2fa JS |
884 | pts_driver = tty_alloc_driver(NR_UNIX98_PTY_MAX, |
885 | TTY_DRIVER_RESET_TERMIOS | | |
886 | TTY_DRIVER_REAL_RAW | | |
887 | TTY_DRIVER_DYNAMIC_DEV | | |
888 | TTY_DRIVER_DEVPTS_MEM | | |
889 | TTY_DRIVER_DYNAMIC_ALLOC); | |
c3a6344a | 890 | if (IS_ERR(pts_driver)) |
1da177e4 LT |
891 | panic("Couldn't allocate Unix98 pts driver"); |
892 | ||
1da177e4 LT |
893 | ptm_driver->driver_name = "pty_master"; |
894 | ptm_driver->name = "ptm"; | |
895 | ptm_driver->major = UNIX98_PTY_MASTER_MAJOR; | |
896 | ptm_driver->minor_start = 0; | |
897 | ptm_driver->type = TTY_DRIVER_TYPE_PTY; | |
898 | ptm_driver->subtype = PTY_TYPE_MASTER; | |
899 | ptm_driver->init_termios = tty_std_termios; | |
900 | ptm_driver->init_termios.c_iflag = 0; | |
901 | ptm_driver->init_termios.c_oflag = 0; | |
902 | ptm_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; | |
903 | ptm_driver->init_termios.c_lflag = 0; | |
606d099c AC |
904 | ptm_driver->init_termios.c_ispeed = 38400; |
905 | ptm_driver->init_termios.c_ospeed = 38400; | |
1da177e4 | 906 | ptm_driver->other = pts_driver; |
feebed65 | 907 | tty_set_operations(ptm_driver, &ptm_unix98_ops); |
1da177e4 | 908 | |
1da177e4 LT |
909 | pts_driver->driver_name = "pty_slave"; |
910 | pts_driver->name = "pts"; | |
911 | pts_driver->major = UNIX98_PTY_SLAVE_MAJOR; | |
912 | pts_driver->minor_start = 0; | |
913 | pts_driver->type = TTY_DRIVER_TYPE_PTY; | |
914 | pts_driver->subtype = PTY_TYPE_SLAVE; | |
915 | pts_driver->init_termios = tty_std_termios; | |
916 | pts_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; | |
606d099c AC |
917 | pts_driver->init_termios.c_ispeed = 38400; |
918 | pts_driver->init_termios.c_ospeed = 38400; | |
1da177e4 | 919 | pts_driver->other = ptm_driver; |
99f1fe18 | 920 | tty_set_operations(pts_driver, &pty_unix98_ops); |
fe9cd962 | 921 | |
1da177e4 LT |
922 | if (tty_register_driver(ptm_driver)) |
923 | panic("Couldn't register Unix98 ptm driver"); | |
924 | if (tty_register_driver(pts_driver)) | |
925 | panic("Couldn't register Unix98 pts driver"); | |
926 | ||
d81ed103 AC |
927 | /* Now create the /dev/ptmx special device */ |
928 | tty_default_fops(&ptmx_fops); | |
929 | ptmx_fops.open = ptmx_open; | |
930 | ||
931 | cdev_init(&ptmx_cdev, &ptmx_fops); | |
932 | if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) || | |
933 | register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0) | |
82f8c35f | 934 | panic("Couldn't register /dev/ptmx driver"); |
d81ed103 | 935 | device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx"); |
1da177e4 | 936 | } |
d81ed103 | 937 | |
1da177e4 LT |
938 | #else |
939 | static inline void unix98_pty_init(void) { } | |
940 | #endif | |
941 | ||
942 | static int __init pty_init(void) | |
943 | { | |
944 | legacy_pty_init(); | |
945 | unix98_pty_init(); | |
946 | return 0; | |
947 | } | |
7154988f | 948 | device_initcall(pty_init); |