blob: 8591d06c4212fab1027d629e0f6377879c0120c5 [file] [log] [blame]
l.yangb8fdece2024-10-10 14:56:17 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 */
5
6/*
7 * 'tty_io.c' gives an orthogonal feeling to tty's, be they consoles
8 * or rs-channels. It also implements echoing, cooked mode etc.
9 *
10 * Kill-line thanks to John T Kohl, who also corrected VMIN = VTIME = 0.
11 *
12 * Modified by Theodore Ts'o, 9/14/92, to dynamically allocate the
13 * tty_struct and tty_queue structures. Previously there was an array
14 * of 256 tty_struct's which was statically allocated, and the
15 * tty_queue structures were allocated at boot time. Both are now
16 * dynamically allocated only when the tty is open.
17 *
18 * Also restructured routines so that there is more of a separation
19 * between the high-level tty routines (tty_io.c and tty_ioctl.c) and
20 * the low-level tty routines (serial.c, pty.c, console.c). This
21 * makes for cleaner and more compact code. -TYT, 9/17/92
22 *
23 * Modified by Fred N. van Kempen, 01/29/93, to add line disciplines
24 * which can be dynamically activated and de-activated by the line
25 * discipline handling modules (like SLIP).
26 *
27 * NOTE: pay no attention to the line discipline code (yet); its
28 * interface is still subject to change in this version...
29 * -- TYT, 1/31/92
30 *
31 * Added functionality to the OPOST tty handling. No delays, but all
32 * other bits should be there.
33 * -- Nick Holloway <alfie@dcs.warwick.ac.uk>, 27th May 1993.
34 *
35 * Rewrote canonical mode and added more termios flags.
36 * -- julian@uhunix.uhcc.hawaii.edu (J. Cowley), 13Jan94
37 *
38 * Reorganized FASYNC support so mouse code can share it.
39 * -- ctm@ardi.com, 9Sep95
40 *
41 * New TIOCLINUX variants added.
42 * -- mj@k332.feld.cvut.cz, 19-Nov-95
43 *
44 * Restrict vt switching via ioctl()
45 * -- grif@cs.ucr.edu, 5-Dec-95
46 *
47 * Move console and virtual terminal code to more appropriate files,
48 * implement CONFIG_VT and generalize console device interface.
49 * -- Marko Kohtala <Marko.Kohtala@hut.fi>, March 97
50 *
51 * Rewrote tty_init_dev and tty_release_dev to eliminate races.
52 * -- Bill Hawes <whawes@star.net>, June 97
53 *
54 * Added devfs support.
55 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 13-Jan-1998
56 *
57 * Added support for a Unix98-style ptmx device.
58 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
59 *
60 * Reduced memory usage for older ARM systems
61 * -- Russell King <rmk@arm.linux.org.uk>
62 *
63 * Move do_SAK() into process context. Less stack use in devfs functions.
64 * alloc_tty_struct() always uses kmalloc()
65 * -- Andrew Morton <andrewm@uow.edu.eu> 17Mar01
66 */
67
68#include <linux/types.h>
69#include <linux/major.h>
70#include <linux/errno.h>
71#include <linux/signal.h>
72#include <linux/fcntl.h>
73#include <linux/sched/signal.h>
74#include <linux/sched/task.h>
75#include <linux/interrupt.h>
76#include <linux/tty.h>
77#include <linux/tty_driver.h>
78#include <linux/tty_flip.h>
79#include <linux/devpts_fs.h>
80#include <linux/file.h>
81#include <linux/fdtable.h>
82#include <linux/console.h>
83#include <linux/timer.h>
84#include <linux/ctype.h>
85#include <linux/kd.h>
86#include <linux/mm.h>
87#include <linux/string.h>
88#include <linux/slab.h>
89#include <linux/poll.h>
90#include <linux/ppp-ioctl.h>
91#include <linux/proc_fs.h>
92#include <linux/init.h>
93#include <linux/module.h>
94#include <linux/device.h>
95#include <linux/wait.h>
96#include <linux/bitops.h>
97#include <linux/delay.h>
98#include <linux/seq_file.h>
99#include <linux/serial.h>
100#include <linux/ratelimit.h>
101#include <linux/compat.h>
102
103#include <linux/uaccess.h>
104
105#include <linux/kbd_kern.h>
106#include <linux/vt_kern.h>
107#include <linux/selection.h>
108
109#include <linux/kmod.h>
110#include <linux/nsproxy.h>
111
112#undef TTY_DEBUG_HANGUP
113#ifdef TTY_DEBUG_HANGUP
114# define tty_debug_hangup(tty, f, args...) tty_debug(tty, f, ##args)
115#else
116# define tty_debug_hangup(tty, f, args...) do { } while (0)
117#endif
118
119#define TTY_PARANOIA_CHECK 1
120#define CHECK_TTY_COUNT 1
121
122struct ktermios tty_std_termios = { /* for the benefit of tty drivers */
123 .c_iflag = ICRNL | IXON,
124 .c_oflag = OPOST | ONLCR,
125 .c_cflag = B38400 | CS8 | CREAD | HUPCL,
126 .c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
127 ECHOCTL | ECHOKE | IEXTEN,
128 .c_cc = INIT_C_CC,
129 .c_ispeed = 38400,
130 .c_ospeed = 38400,
131 /* .c_line = N_TTY, */
132};
133
134EXPORT_SYMBOL(tty_std_termios);
135
136/* This list gets poked at by procfs and various bits of boot up code. This
137 could do with some rationalisation such as pulling the tty proc function
138 into this file */
139
140LIST_HEAD(tty_drivers); /* linked list of tty drivers */
141
142/* Mutex to protect creating and releasing a tty */
143DEFINE_MUTEX(tty_mutex);
144
145static ssize_t tty_read(struct kiocb *, struct iov_iter *);
146static ssize_t tty_write(struct kiocb *, struct iov_iter *);
147static __poll_t tty_poll(struct file *, poll_table *);
148static int tty_open(struct inode *, struct file *);
149#ifdef CONFIG_COMPAT
150static long tty_compat_ioctl(struct file *file, unsigned int cmd,
151 unsigned long arg);
152#else
153#define tty_compat_ioctl NULL
154#endif
155static int __tty_fasync(int fd, struct file *filp, int on);
156static int tty_fasync(int fd, struct file *filp, int on);
157static void release_tty(struct tty_struct *tty, int idx);
158
159/**
160 * free_tty_struct - free a disused tty
161 * @tty: tty struct to free
162 *
163 * Free the write buffers, tty queue and tty memory itself.
164 *
165 * Locking: none. Must be called after tty is definitely unused
166 */
167
168static void free_tty_struct(struct tty_struct *tty)
169{
170 tty_ldisc_deinit(tty);
171 put_device(tty->dev);
172 kfree(tty->write_buf);
173 tty->magic = 0xDEADDEAD;
174 kfree(tty);
175}
176
177static inline struct tty_struct *file_tty(struct file *file)
178{
179 return ((struct tty_file_private *)file->private_data)->tty;
180}
181
182int tty_alloc_file(struct file *file)
183{
184 struct tty_file_private *priv;
185
186 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
187 if (!priv)
188 return -ENOMEM;
189
190 file->private_data = priv;
191
192 return 0;
193}
194
195/* Associate a new file with the tty structure */
196void tty_add_file(struct tty_struct *tty, struct file *file)
197{
198 struct tty_file_private *priv = file->private_data;
199
200 priv->tty = tty;
201 priv->file = file;
202
203 spin_lock(&tty->files_lock);
204 list_add(&priv->list, &tty->tty_files);
205 spin_unlock(&tty->files_lock);
206}
207
208/**
209 * tty_free_file - free file->private_data
210 *
211 * This shall be used only for fail path handling when tty_add_file was not
212 * called yet.
213 */
214void tty_free_file(struct file *file)
215{
216 struct tty_file_private *priv = file->private_data;
217
218 file->private_data = NULL;
219 kfree(priv);
220}
221
222/* Delete file from its tty */
223static void tty_del_file(struct file *file)
224{
225 struct tty_file_private *priv = file->private_data;
226 struct tty_struct *tty = priv->tty;
227
228 spin_lock(&tty->files_lock);
229 list_del(&priv->list);
230 spin_unlock(&tty->files_lock);
231 tty_free_file(file);
232}
233
234/**
235 * tty_name - return tty naming
236 * @tty: tty structure
237 *
238 * Convert a tty structure into a name. The name reflects the kernel
239 * naming policy and if udev is in use may not reflect user space
240 *
241 * Locking: none
242 */
243
244const char *tty_name(const struct tty_struct *tty)
245{
246 if (!tty) /* Hmm. NULL pointer. That's fun. */
247 return "NULL tty";
248 return tty->name;
249}
250
251EXPORT_SYMBOL(tty_name);
252
253const char *tty_driver_name(const struct tty_struct *tty)
254{
255 if (!tty || !tty->driver)
256 return "";
257 return tty->driver->name;
258}
259
260static int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
261 const char *routine)
262{
263#ifdef TTY_PARANOIA_CHECK
264 if (!tty) {
265 pr_warn("(%d:%d): %s: NULL tty\n",
266 imajor(inode), iminor(inode), routine);
267 return 1;
268 }
269 if (tty->magic != TTY_MAGIC) {
270 pr_warn("(%d:%d): %s: bad magic number\n",
271 imajor(inode), iminor(inode), routine);
272 return 1;
273 }
274#endif
275 return 0;
276}
277
278/* Caller must hold tty_lock */
279static int check_tty_count(struct tty_struct *tty, const char *routine)
280{
281#ifdef CHECK_TTY_COUNT
282 struct list_head *p;
283 int count = 0, kopen_count = 0;
284
285 spin_lock(&tty->files_lock);
286 list_for_each(p, &tty->tty_files) {
287 count++;
288 }
289 spin_unlock(&tty->files_lock);
290 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
291 tty->driver->subtype == PTY_TYPE_SLAVE &&
292 tty->link && tty->link->count)
293 count++;
294 if (tty_port_kopened(tty->port))
295 kopen_count++;
296 if (tty->count != (count + kopen_count)) {
297 tty_warn(tty, "%s: tty->count(%d) != (#fd's(%d) + #kopen's(%d))\n",
298 routine, tty->count, count, kopen_count);
299 return (count + kopen_count);
300 }
301#endif
302 return 0;
303}
304
305/**
306 * get_tty_driver - find device of a tty
307 * @device: device identifier
308 * @index: returns the index of the tty
309 *
310 * This routine returns a tty driver structure, given a device number
311 * and also passes back the index number.
312 *
313 * Locking: caller must hold tty_mutex
314 */
315
316static struct tty_driver *get_tty_driver(dev_t device, int *index)
317{
318 struct tty_driver *p;
319
320 list_for_each_entry(p, &tty_drivers, tty_drivers) {
321 dev_t base = MKDEV(p->major, p->minor_start);
322 if (device < base || device >= base + p->num)
323 continue;
324 *index = device - base;
325 return tty_driver_kref_get(p);
326 }
327 return NULL;
328}
329
330/**
331 * tty_dev_name_to_number - return dev_t for device name
332 * @name: user space name of device under /dev
333 * @number: pointer to dev_t that this function will populate
334 *
335 * This function converts device names like ttyS0 or ttyUSB1 into dev_t
336 * like (4, 64) or (188, 1). If no corresponding driver is registered then
337 * the function returns -ENODEV.
338 *
339 * Locking: this acquires tty_mutex to protect the tty_drivers list from
340 * being modified while we are traversing it, and makes sure to
341 * release it before exiting.
342 */
343int tty_dev_name_to_number(const char *name, dev_t *number)
344{
345 struct tty_driver *p;
346 int ret;
347 int index, prefix_length = 0;
348 const char *str;
349
350 for (str = name; *str && !isdigit(*str); str++)
351 ;
352
353 if (!*str)
354 return -EINVAL;
355
356 ret = kstrtoint(str, 10, &index);
357 if (ret)
358 return ret;
359
360 prefix_length = str - name;
361 mutex_lock(&tty_mutex);
362
363 list_for_each_entry(p, &tty_drivers, tty_drivers)
364 if (prefix_length == strlen(p->name) && strncmp(name,
365 p->name, prefix_length) == 0) {
366 if (index < p->num) {
367 *number = MKDEV(p->major, p->minor_start + index);
368 goto out;
369 }
370 }
371
372 /* if here then driver wasn't found */
373 ret = -ENODEV;
374out:
375 mutex_unlock(&tty_mutex);
376 return ret;
377}
378EXPORT_SYMBOL_GPL(tty_dev_name_to_number);
379
380#ifdef CONFIG_CONSOLE_POLL
381
382/**
383 * tty_find_polling_driver - find device of a polled tty
384 * @name: name string to match
385 * @line: pointer to resulting tty line nr
386 *
387 * This routine returns a tty driver structure, given a name
388 * and the condition that the tty driver is capable of polled
389 * operation.
390 */
391struct tty_driver *tty_find_polling_driver(char *name, int *line)
392{
393 struct tty_driver *p, *res = NULL;
394 int tty_line = 0;
395 int len;
396 char *str, *stp;
397
398 for (str = name; *str; str++)
399 if ((*str >= '0' && *str <= '9') || *str == ',')
400 break;
401 if (!*str)
402 return NULL;
403
404 len = str - name;
405 tty_line = simple_strtoul(str, &str, 10);
406
407 mutex_lock(&tty_mutex);
408 /* Search through the tty devices to look for a match */
409 list_for_each_entry(p, &tty_drivers, tty_drivers) {
410 if (!len || strncmp(name, p->name, len) != 0)
411 continue;
412 stp = str;
413 if (*stp == ',')
414 stp++;
415 if (*stp == '\0')
416 stp = NULL;
417
418 if (tty_line >= 0 && tty_line < p->num && p->ops &&
419 p->ops->poll_init && !p->ops->poll_init(p, tty_line, stp)) {
420 res = tty_driver_kref_get(p);
421 *line = tty_line;
422 break;
423 }
424 }
425 mutex_unlock(&tty_mutex);
426
427 return res;
428}
429EXPORT_SYMBOL_GPL(tty_find_polling_driver);
430#endif
431
432static ssize_t hung_up_tty_read(struct kiocb *iocb, struct iov_iter *to)
433{
434 return 0;
435}
436
437static ssize_t hung_up_tty_write(struct kiocb *iocb, struct iov_iter *from)
438{
439 return -EIO;
440}
441
442/* No kernel lock held - none needed ;) */
443static __poll_t hung_up_tty_poll(struct file *filp, poll_table *wait)
444{
445 return EPOLLIN | EPOLLOUT | EPOLLERR | EPOLLHUP | EPOLLRDNORM | EPOLLWRNORM;
446}
447
448static long hung_up_tty_ioctl(struct file *file, unsigned int cmd,
449 unsigned long arg)
450{
451 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
452}
453
454static long hung_up_tty_compat_ioctl(struct file *file,
455 unsigned int cmd, unsigned long arg)
456{
457 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
458}
459
460static int hung_up_tty_fasync(int fd, struct file *file, int on)
461{
462 return -ENOTTY;
463}
464
465static void tty_show_fdinfo(struct seq_file *m, struct file *file)
466{
467 struct tty_struct *tty = file_tty(file);
468
469 if (tty && tty->ops && tty->ops->show_fdinfo)
470 tty->ops->show_fdinfo(tty, m);
471}
472
473static const struct file_operations tty_fops = {
474 .llseek = no_llseek,
475 .read_iter = tty_read,
476 .write_iter = tty_write,
477 .splice_read = generic_file_splice_read,
478 .splice_write = iter_file_splice_write,
479 .poll = tty_poll,
480 .unlocked_ioctl = tty_ioctl,
481 .compat_ioctl = tty_compat_ioctl,
482 .open = tty_open,
483 .release = tty_release,
484 .fasync = tty_fasync,
485 .show_fdinfo = tty_show_fdinfo,
486};
487
488static const struct file_operations console_fops = {
489 .llseek = no_llseek,
490 .read_iter = tty_read,
491 .write_iter = redirected_tty_write,
492 .splice_read = generic_file_splice_read,
493 .splice_write = iter_file_splice_write,
494 .poll = tty_poll,
495 .unlocked_ioctl = tty_ioctl,
496 .compat_ioctl = tty_compat_ioctl,
497 .open = tty_open,
498 .release = tty_release,
499 .fasync = tty_fasync,
500};
501
502static const struct file_operations hung_up_tty_fops = {
503 .llseek = no_llseek,
504 .read_iter = hung_up_tty_read,
505 .write_iter = hung_up_tty_write,
506 .poll = hung_up_tty_poll,
507 .unlocked_ioctl = hung_up_tty_ioctl,
508 .compat_ioctl = hung_up_tty_compat_ioctl,
509 .release = tty_release,
510 .fasync = hung_up_tty_fasync,
511};
512
513static DEFINE_SPINLOCK(redirect_lock);
514static struct file *redirect;
515
516extern void tty_sysctl_init(void);
517
518/**
519 * tty_wakeup - request more data
520 * @tty: terminal
521 *
522 * Internal and external helper for wakeups of tty. This function
523 * informs the line discipline if present that the driver is ready
524 * to receive more output data.
525 */
526
527void tty_wakeup(struct tty_struct *tty)
528{
529 struct tty_ldisc *ld;
530
531 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
532 ld = tty_ldisc_ref(tty);
533 if (ld) {
534 if (ld->ops->write_wakeup)
535 ld->ops->write_wakeup(tty);
536 tty_ldisc_deref(ld);
537 }
538 }
539 wake_up_interruptible_poll(&tty->write_wait, EPOLLOUT);
540}
541
542EXPORT_SYMBOL_GPL(tty_wakeup);
543
544/**
545 * __tty_hangup - actual handler for hangup events
546 * @tty: tty device
547 *
548 * This can be called by a "kworker" kernel thread. That is process
549 * synchronous but doesn't hold any locks, so we need to make sure we
550 * have the appropriate locks for what we're doing.
551 *
552 * The hangup event clears any pending redirections onto the hung up
553 * device. It ensures future writes will error and it does the needed
554 * line discipline hangup and signal delivery. The tty object itself
555 * remains intact.
556 *
557 * Locking:
558 * BTM
559 * redirect lock for undoing redirection
560 * file list lock for manipulating list of ttys
561 * tty_ldiscs_lock from called functions
562 * termios_rwsem resetting termios data
563 * tasklist_lock to walk task list for hangup event
564 * ->siglock to protect ->signal/->sighand
565 */
566static void __tty_hangup(struct tty_struct *tty, int exit_session)
567{
568 struct file *cons_filp = NULL;
569 struct file *filp, *f = NULL;
570 struct tty_file_private *priv;
571 int closecount = 0, n;
572 int refs;
573
574 if (!tty)
575 return;
576
577
578 spin_lock(&redirect_lock);
579 if (redirect && file_tty(redirect) == tty) {
580 f = redirect;
581 redirect = NULL;
582 }
583 spin_unlock(&redirect_lock);
584
585 tty_lock(tty);
586
587 if (test_bit(TTY_HUPPED, &tty->flags)) {
588 tty_unlock(tty);
589 return;
590 }
591
592 /*
593 * Some console devices aren't actually hung up for technical and
594 * historical reasons, which can lead to indefinite interruptible
595 * sleep in n_tty_read(). The following explicitly tells
596 * n_tty_read() to abort readers.
597 */
598 set_bit(TTY_HUPPING, &tty->flags);
599
600 /* inuse_filps is protected by the single tty lock,
601 this really needs to change if we want to flush the
602 workqueue with the lock held */
603 check_tty_count(tty, "tty_hangup");
604
605 spin_lock(&tty->files_lock);
606 /* This breaks for file handles being sent over AF_UNIX sockets ? */
607 list_for_each_entry(priv, &tty->tty_files, list) {
608 filp = priv->file;
609 if (filp->f_op->write_iter == redirected_tty_write)
610 cons_filp = filp;
611 if (filp->f_op->write_iter != tty_write)
612 continue;
613 closecount++;
614 __tty_fasync(-1, filp, 0); /* can't block */
615 filp->f_op = &hung_up_tty_fops;
616 }
617 spin_unlock(&tty->files_lock);
618
619 refs = tty_signal_session_leader(tty, exit_session);
620 /* Account for the p->signal references we killed */
621 while (refs--)
622 tty_kref_put(tty);
623
624 tty_ldisc_hangup(tty, cons_filp != NULL);
625
626 spin_lock_irq(&tty->ctrl_lock);
627 clear_bit(TTY_THROTTLED, &tty->flags);
628 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
629 put_pid(tty->session);
630 put_pid(tty->pgrp);
631 tty->session = NULL;
632 tty->pgrp = NULL;
633 tty->ctrl_status = 0;
634 spin_unlock_irq(&tty->ctrl_lock);
635
636 /*
637 * If one of the devices matches a console pointer, we
638 * cannot just call hangup() because that will cause
639 * tty->count and state->count to go out of sync.
640 * So we just call close() the right number of times.
641 */
642 if (cons_filp) {
643 if (tty->ops->close)
644 for (n = 0; n < closecount; n++)
645 tty->ops->close(tty, cons_filp);
646 } else if (tty->ops->hangup)
647 tty->ops->hangup(tty);
648 /*
649 * We don't want to have driver/ldisc interactions beyond the ones
650 * we did here. The driver layer expects no calls after ->hangup()
651 * from the ldisc side, which is now guaranteed.
652 */
653 set_bit(TTY_HUPPED, &tty->flags);
654 clear_bit(TTY_HUPPING, &tty->flags);
655 tty_unlock(tty);
656
657 if (f)
658 fput(f);
659}
660
661static void do_tty_hangup(struct work_struct *work)
662{
663 struct tty_struct *tty =
664 container_of(work, struct tty_struct, hangup_work);
665
666 __tty_hangup(tty, 0);
667}
668
669/**
670 * tty_hangup - trigger a hangup event
671 * @tty: tty to hangup
672 *
673 * A carrier loss (virtual or otherwise) has occurred on this like
674 * schedule a hangup sequence to run after this event.
675 */
676
677void tty_hangup(struct tty_struct *tty)
678{
679 tty_debug_hangup(tty, "hangup\n");
680 schedule_work(&tty->hangup_work);
681}
682
683EXPORT_SYMBOL(tty_hangup);
684
685/**
686 * tty_vhangup - process vhangup
687 * @tty: tty to hangup
688 *
689 * The user has asked via system call for the terminal to be hung up.
690 * We do this synchronously so that when the syscall returns the process
691 * is complete. That guarantee is necessary for security reasons.
692 */
693
694void tty_vhangup(struct tty_struct *tty)
695{
696 tty_debug_hangup(tty, "vhangup\n");
697 __tty_hangup(tty, 0);
698}
699
700EXPORT_SYMBOL(tty_vhangup);
701
702
703/**
704 * tty_vhangup_self - process vhangup for own ctty
705 *
706 * Perform a vhangup on the current controlling tty
707 */
708
709void tty_vhangup_self(void)
710{
711 struct tty_struct *tty;
712
713 tty = get_current_tty();
714 if (tty) {
715 tty_vhangup(tty);
716 tty_kref_put(tty);
717 }
718}
719
720/**
721 * tty_vhangup_session - hangup session leader exit
722 * @tty: tty to hangup
723 *
724 * The session leader is exiting and hanging up its controlling terminal.
725 * Every process in the foreground process group is signalled SIGHUP.
726 *
727 * We do this synchronously so that when the syscall returns the process
728 * is complete. That guarantee is necessary for security reasons.
729 */
730
731void tty_vhangup_session(struct tty_struct *tty)
732{
733 tty_debug_hangup(tty, "session hangup\n");
734 __tty_hangup(tty, 1);
735}
736
737/**
738 * tty_hung_up_p - was tty hung up
739 * @filp: file pointer of tty
740 *
741 * Return true if the tty has been subject to a vhangup or a carrier
742 * loss
743 */
744
745int tty_hung_up_p(struct file *filp)
746{
747 return (filp && filp->f_op == &hung_up_tty_fops);
748}
749
750EXPORT_SYMBOL(tty_hung_up_p);
751
752/**
753 * stop_tty - propagate flow control
754 * @tty: tty to stop
755 *
756 * Perform flow control to the driver. May be called
757 * on an already stopped device and will not re-call the driver
758 * method.
759 *
760 * This functionality is used by both the line disciplines for
761 * halting incoming flow and by the driver. It may therefore be
762 * called from any context, may be under the tty atomic_write_lock
763 * but not always.
764 *
765 * Locking:
766 * flow_lock
767 */
768
769void __stop_tty(struct tty_struct *tty)
770{
771 if (tty->stopped)
772 return;
773 tty->stopped = 1;
l.yangafee7ee2024-10-10 15:01:10 +0800774
775 //l.yang add log for bug T106-134 start
776 if(tty->index == 1){
777 printk("__stop_tty got stop cmd\n");
778 }
779 //l.yang add log for bug T106-134 end
l.yangb8fdece2024-10-10 14:56:17 +0800780 if (tty->ops->stop)
781 tty->ops->stop(tty);
782}
783
784void stop_tty(struct tty_struct *tty)
785{
786 unsigned long flags;
787
788 spin_lock_irqsave(&tty->flow_lock, flags);
789 __stop_tty(tty);
790 spin_unlock_irqrestore(&tty->flow_lock, flags);
791}
792EXPORT_SYMBOL(stop_tty);
793
794/**
795 * start_tty - propagate flow control
796 * @tty: tty to start
797 *
798 * Start a tty that has been stopped if at all possible. If this
799 * tty was previous stopped and is now being started, the driver
800 * start method is invoked and the line discipline woken.
801 *
802 * Locking:
803 * flow_lock
804 */
805
806void __start_tty(struct tty_struct *tty)
807{
808 if (!tty->stopped || tty->flow_stopped)
809 return;
810 tty->stopped = 0;
811 if (tty->ops->start)
812 tty->ops->start(tty);
813 tty_wakeup(tty);
814}
815
816void start_tty(struct tty_struct *tty)
817{
818 unsigned long flags;
819
820 spin_lock_irqsave(&tty->flow_lock, flags);
821 __start_tty(tty);
822 spin_unlock_irqrestore(&tty->flow_lock, flags);
823}
824EXPORT_SYMBOL(start_tty);
825
826static void tty_update_time(struct timespec64 *time)
827{
828 time64_t sec = ktime_get_real_seconds();
829
830 /*
831 * We only care if the two values differ in anything other than the
832 * lower three bits (i.e every 8 seconds). If so, then we can update
833 * the time of the tty device, otherwise it could be construded as a
834 * security leak to let userspace know the exact timing of the tty.
835 */
836 if ((sec ^ time->tv_sec) & ~7)
837 time->tv_sec = sec;
838}
839
840/*
841 * Iterate on the ldisc ->read() function until we've gotten all
842 * the data the ldisc has for us.
843 *
844 * The "cookie" is something that the ldisc read function can fill
845 * in to let us know that there is more data to be had.
846 *
847 * We promise to continue to call the ldisc until it stops returning
848 * data or clears the cookie. The cookie may be something that the
849 * ldisc maintains state for and needs to free.
850 */
851static int iterate_tty_read(struct tty_ldisc *ld, struct tty_struct *tty,
852 struct file *file, struct iov_iter *to)
853{
854 int retval = 0;
855 void *cookie = NULL;
856 unsigned long offset = 0;
857 char kernel_buf[64];
858 size_t count = iov_iter_count(to);
859
860 do {
861 int size, copied;
862
863 size = count > sizeof(kernel_buf) ? sizeof(kernel_buf) : count;
864 size = ld->ops->read(tty, file, kernel_buf, size, &cookie, offset);
865 if (!size)
866 break;
867
868 if (size < 0) {
869 /* Did we have an earlier error (ie -EFAULT)? */
870 if (retval)
871 break;
872 retval = size;
873
874 /*
875 * -EOVERFLOW means we didn't have enough space
876 * for a whole packet, and we shouldn't return
877 * a partial result.
878 */
879 if (retval == -EOVERFLOW)
880 offset = 0;
881 break;
882 }
883
884 copied = copy_to_iter(kernel_buf, size, to);
885 offset += copied;
886 count -= copied;
887
888 /*
889 * If the user copy failed, we still need to do another ->read()
890 * call if we had a cookie to let the ldisc clear up.
891 *
892 * But make sure size is zeroed.
893 */
894 if (unlikely(copied != size)) {
895 count = 0;
896 retval = -EFAULT;
897 }
898 } while (cookie);
899
900 /* We always clear tty buffer in case they contained passwords */
901 memzero_explicit(kernel_buf, sizeof(kernel_buf));
902 return offset ? offset : retval;
903}
904
905
906/**
907 * tty_read - read method for tty device files
908 * @file: pointer to tty file
909 * @buf: user buffer
910 * @count: size of user buffer
911 * @ppos: unused
912 *
913 * Perform the read system call function on this terminal device. Checks
914 * for hung up devices before calling the line discipline method.
915 *
916 * Locking:
917 * Locks the line discipline internally while needed. Multiple
918 * read calls may be outstanding in parallel.
919 */
920
921static ssize_t tty_read(struct kiocb *iocb, struct iov_iter *to)
922{
923 int i;
924 struct file *file = iocb->ki_filp;
925 struct inode *inode = file_inode(file);
926 struct tty_struct *tty = file_tty(file);
927 struct tty_ldisc *ld;
928
929 if (tty_paranoia_check(tty, inode, "tty_read"))
930 return -EIO;
931 if (!tty || tty_io_error(tty))
932 return -EIO;
933
934 /* We want to wait for the line discipline to sort out in this
935 situation */
936 ld = tty_ldisc_ref_wait(tty);
937 if (!ld)
938 return hung_up_tty_read(iocb, to);
939 i = -EIO;
940 if (ld->ops->read)
941 i = iterate_tty_read(ld, tty, file, to);
942 tty_ldisc_deref(ld);
943
944 if (i > 0)
945 tty_update_time(&inode->i_atime);
946
947 return i;
948}
949
950static void tty_write_unlock(struct tty_struct *tty)
951{
952 mutex_unlock(&tty->atomic_write_lock);
953 wake_up_interruptible_poll(&tty->write_wait, EPOLLOUT);
954}
955
956static int tty_write_lock(struct tty_struct *tty, int ndelay)
957{
958 if (!mutex_trylock(&tty->atomic_write_lock)) {
959 if (ndelay)
960 return -EAGAIN;
961 if (mutex_lock_interruptible(&tty->atomic_write_lock))
962 return -ERESTARTSYS;
963 }
964 return 0;
965}
966
967/*
968 * Split writes up in sane blocksizes to avoid
969 * denial-of-service type attacks
970 */
971static inline ssize_t do_tty_write(
972 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t),
973 struct tty_struct *tty,
974 struct file *file,
975 struct iov_iter *from)
976{
977 size_t count = iov_iter_count(from);
978 ssize_t ret, written = 0;
979 unsigned int chunk;
980
981 ret = tty_write_lock(tty, file->f_flags & O_NDELAY);
982 if (ret < 0)
983 return ret;
984
985 /*
986 * We chunk up writes into a temporary buffer. This
987 * simplifies low-level drivers immensely, since they
988 * don't have locking issues and user mode accesses.
989 *
990 * But if TTY_NO_WRITE_SPLIT is set, we should use a
991 * big chunk-size..
992 *
993 * The default chunk-size is 2kB, because the NTTY
994 * layer has problems with bigger chunks. It will
995 * claim to be able to handle more characters than
996 * it actually does.
997 *
998 * FIXME: This can probably go away now except that 64K chunks
999 * are too likely to fail unless switched to vmalloc...
1000 */
1001 chunk = 2048;
1002 if (test_bit(TTY_NO_WRITE_SPLIT, &tty->flags))
1003 chunk = 65536;
1004 if (count < chunk)
1005 chunk = count;
1006
1007 /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
1008 if (tty->write_cnt < chunk) {
1009 unsigned char *buf_chunk;
1010
1011 if (chunk < 1024)
1012 chunk = 1024;
1013
1014 buf_chunk = kmalloc(chunk, GFP_KERNEL);
1015 if (!buf_chunk) {
1016 ret = -ENOMEM;
1017 goto out;
1018 }
1019 kfree(tty->write_buf);
1020 tty->write_cnt = chunk;
1021 tty->write_buf = buf_chunk;
1022 }
1023
1024 /* Do the write .. */
1025 for (;;) {
1026 size_t size = count;
1027 if (size > chunk)
1028 size = chunk;
1029
1030 ret = -EFAULT;
1031 if (copy_from_iter(tty->write_buf, size, from) != size)
1032 break;
1033
1034 ret = write(tty, file, tty->write_buf, size);
1035 if (ret <= 0)
1036 break;
1037
1038 written += ret;
1039 if (ret > size)
1040 break;
1041
1042 /* FIXME! Have Al check this! */
1043 if (ret != size)
1044 iov_iter_revert(from, size-ret);
1045
1046 count -= ret;
1047 if (!count)
1048 break;
1049 ret = -ERESTARTSYS;
1050 if (signal_pending(current))
1051 break;
1052 cond_resched();
1053 }
1054 if (written) {
1055 tty_update_time(&file_inode(file)->i_mtime);
1056 ret = written;
1057 }
1058out:
1059 tty_write_unlock(tty);
1060 return ret;
1061}
1062
1063/**
1064 * tty_write_message - write a message to a certain tty, not just the console.
1065 * @tty: the destination tty_struct
1066 * @msg: the message to write
1067 *
1068 * This is used for messages that need to be redirected to a specific tty.
1069 * We don't put it into the syslog queue right now maybe in the future if
1070 * really needed.
1071 *
1072 * We must still hold the BTM and test the CLOSING flag for the moment.
1073 */
1074
1075void tty_write_message(struct tty_struct *tty, char *msg)
1076{
1077 if (tty) {
1078 mutex_lock(&tty->atomic_write_lock);
1079 tty_lock(tty);
1080 if (tty->ops->write && tty->count > 0)
1081 tty->ops->write(tty, msg, strlen(msg));
1082 tty_unlock(tty);
1083 tty_write_unlock(tty);
1084 }
1085 return;
1086}
1087
1088
1089/**
1090 * tty_write - write method for tty device file
1091 * @file: tty file pointer
1092 * @buf: user data to write
1093 * @count: bytes to write
1094 * @ppos: unused
1095 *
1096 * Write data to a tty device via the line discipline.
1097 *
1098 * Locking:
1099 * Locks the line discipline as required
1100 * Writes to the tty driver are serialized by the atomic_write_lock
1101 * and are then processed in chunks to the device. The line discipline
1102 * write method will not be invoked in parallel for each device.
1103 */
1104
1105static ssize_t file_tty_write(struct file *file, struct kiocb *iocb, struct iov_iter *from)
1106{
1107 struct tty_struct *tty = file_tty(file);
1108 struct tty_ldisc *ld;
1109 ssize_t ret;
1110
1111 if (tty_paranoia_check(tty, file_inode(file), "tty_write"))
1112 return -EIO;
1113 if (!tty || !tty->ops->write || tty_io_error(tty))
1114 return -EIO;
1115 /* Short term debug to catch buggy drivers */
1116 if (tty->ops->write_room == NULL)
1117 tty_err(tty, "missing write_room method\n");
1118 ld = tty_ldisc_ref_wait(tty);
1119 if (!ld)
1120 return hung_up_tty_write(iocb, from);
1121 if (!ld->ops->write)
1122 ret = -EIO;
1123 else
1124 ret = do_tty_write(ld->ops->write, tty, file, from);
1125 tty_ldisc_deref(ld);
1126 return ret;
1127}
1128
1129static ssize_t tty_write(struct kiocb *iocb, struct iov_iter *from)
1130{
1131 return file_tty_write(iocb->ki_filp, iocb, from);
1132}
1133
1134ssize_t redirected_tty_write(struct kiocb *iocb, struct iov_iter *iter)
1135{
1136 struct file *p = NULL;
1137
1138 spin_lock(&redirect_lock);
1139 if (redirect)
1140 p = get_file(redirect);
1141 spin_unlock(&redirect_lock);
1142
1143 /*
1144 * We know the redirected tty is just another tty, we can can
1145 * call file_tty_write() directly with that file pointer.
1146 */
1147 if (p) {
1148 ssize_t res;
1149 res = file_tty_write(p, iocb, iter);
1150 fput(p);
1151 return res;
1152 }
1153 return tty_write(iocb, iter);
1154}
1155
1156/**
1157 * tty_send_xchar - send priority character
1158 *
1159 * Send a high priority character to the tty even if stopped
1160 *
1161 * Locking: none for xchar method, write ordering for write method.
1162 */
1163
1164int tty_send_xchar(struct tty_struct *tty, char ch)
1165{
1166 int was_stopped = tty->stopped;
1167
1168 if (tty->ops->send_xchar) {
1169 down_read(&tty->termios_rwsem);
1170 tty->ops->send_xchar(tty, ch);
1171 up_read(&tty->termios_rwsem);
1172 return 0;
1173 }
1174
1175 if (tty_write_lock(tty, 0) < 0)
1176 return -ERESTARTSYS;
1177
1178 down_read(&tty->termios_rwsem);
1179 if (was_stopped)
1180 start_tty(tty);
1181 tty->ops->write(tty, &ch, 1);
1182 if (was_stopped)
1183 stop_tty(tty);
1184 up_read(&tty->termios_rwsem);
1185 tty_write_unlock(tty);
1186 return 0;
1187}
1188
1189static char ptychar[] = "pqrstuvwxyzabcde";
1190
1191/**
1192 * pty_line_name - generate name for a pty
1193 * @driver: the tty driver in use
1194 * @index: the minor number
1195 * @p: output buffer of at least 6 bytes
1196 *
1197 * Generate a name from a driver reference and write it to the output
1198 * buffer.
1199 *
1200 * Locking: None
1201 */
1202static void pty_line_name(struct tty_driver *driver, int index, char *p)
1203{
1204 int i = index + driver->name_base;
1205 /* ->name is initialized to "ttyp", but "tty" is expected */
1206 sprintf(p, "%s%c%x",
1207 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1208 ptychar[i >> 4 & 0xf], i & 0xf);
1209}
1210
1211/**
1212 * tty_line_name - generate name for a tty
1213 * @driver: the tty driver in use
1214 * @index: the minor number
1215 * @p: output buffer of at least 7 bytes
1216 *
1217 * Generate a name from a driver reference and write it to the output
1218 * buffer.
1219 *
1220 * Locking: None
1221 */
1222static ssize_t tty_line_name(struct tty_driver *driver, int index, char *p)
1223{
1224 if (driver->flags & TTY_DRIVER_UNNUMBERED_NODE)
1225 return sprintf(p, "%s", driver->name);
1226 else
1227 return sprintf(p, "%s%d", driver->name,
1228 index + driver->name_base);
1229}
1230
1231/**
1232 * tty_driver_lookup_tty() - find an existing tty, if any
1233 * @driver: the driver for the tty
1234 * @idx: the minor number
1235 *
1236 * Return the tty, if found. If not found, return NULL or ERR_PTR() if the
1237 * driver lookup() method returns an error.
1238 *
1239 * Locking: tty_mutex must be held. If the tty is found, bump the tty kref.
1240 */
1241static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver,
1242 struct file *file, int idx)
1243{
1244 struct tty_struct *tty;
1245
1246 if (driver->ops->lookup)
1247 if (!file)
1248 tty = ERR_PTR(-EIO);
1249 else
1250 tty = driver->ops->lookup(driver, file, idx);
1251 else
1252 tty = driver->ttys[idx];
1253
1254 if (!IS_ERR(tty))
1255 tty_kref_get(tty);
1256 return tty;
1257}
1258
1259/**
1260 * tty_init_termios - helper for termios setup
1261 * @tty: the tty to set up
1262 *
1263 * Initialise the termios structure for this tty. This runs under
1264 * the tty_mutex currently so we can be relaxed about ordering.
1265 */
1266
1267void tty_init_termios(struct tty_struct *tty)
1268{
1269 struct ktermios *tp;
1270 int idx = tty->index;
1271
1272 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
1273 tty->termios = tty->driver->init_termios;
1274 else {
1275 /* Check for lazy saved data */
1276 tp = tty->driver->termios[idx];
1277 if (tp != NULL) {
1278 tty->termios = *tp;
1279 tty->termios.c_line = tty->driver->init_termios.c_line;
1280 } else
1281 tty->termios = tty->driver->init_termios;
1282 }
1283 /* Compatibility until drivers always set this */
1284 tty->termios.c_ispeed = tty_termios_input_baud_rate(&tty->termios);
1285 tty->termios.c_ospeed = tty_termios_baud_rate(&tty->termios);
1286}
1287EXPORT_SYMBOL_GPL(tty_init_termios);
1288
1289int tty_standard_install(struct tty_driver *driver, struct tty_struct *tty)
1290{
1291 tty_init_termios(tty);
1292 tty_driver_kref_get(driver);
1293 tty->count++;
1294 driver->ttys[tty->index] = tty;
1295 return 0;
1296}
1297EXPORT_SYMBOL_GPL(tty_standard_install);
1298
1299/**
1300 * tty_driver_install_tty() - install a tty entry in the driver
1301 * @driver: the driver for the tty
1302 * @tty: the tty
1303 *
1304 * Install a tty object into the driver tables. The tty->index field
1305 * will be set by the time this is called. This method is responsible
1306 * for ensuring any need additional structures are allocated and
1307 * configured.
1308 *
1309 * Locking: tty_mutex for now
1310 */
1311static int tty_driver_install_tty(struct tty_driver *driver,
1312 struct tty_struct *tty)
1313{
1314 return driver->ops->install ? driver->ops->install(driver, tty) :
1315 tty_standard_install(driver, tty);
1316}
1317
1318/**
1319 * tty_driver_remove_tty() - remove a tty from the driver tables
1320 * @driver: the driver for the tty
1321 * @tty: tty to remove
1322 *
1323 * Remvoe a tty object from the driver tables. The tty->index field
1324 * will be set by the time this is called.
1325 *
1326 * Locking: tty_mutex for now
1327 */
1328static void tty_driver_remove_tty(struct tty_driver *driver, struct tty_struct *tty)
1329{
1330 if (driver->ops->remove)
1331 driver->ops->remove(driver, tty);
1332 else
1333 driver->ttys[tty->index] = NULL;
1334}
1335
1336/**
1337 * tty_reopen() - fast re-open of an open tty
1338 * @tty: the tty to open
1339 *
1340 * Return 0 on success, -errno on error.
1341 * Re-opens on master ptys are not allowed and return -EIO.
1342 *
1343 * Locking: Caller must hold tty_lock
1344 */
1345static int tty_reopen(struct tty_struct *tty)
1346{
1347 struct tty_driver *driver = tty->driver;
1348 struct tty_ldisc *ld;
1349 int retval = 0;
1350
1351 if (driver->type == TTY_DRIVER_TYPE_PTY &&
1352 driver->subtype == PTY_TYPE_MASTER)
1353 return -EIO;
1354
1355 if (!tty->count)
1356 return -EAGAIN;
1357
1358 if (test_bit(TTY_EXCLUSIVE, &tty->flags) && !capable(CAP_SYS_ADMIN))
1359 return -EBUSY;
1360
1361 ld = tty_ldisc_ref_wait(tty);
1362 if (ld) {
1363 tty_ldisc_deref(ld);
1364 } else {
1365 retval = tty_ldisc_lock(tty, 5 * HZ);
1366 if (retval)
1367 return retval;
1368
1369 if (!tty->ldisc)
1370 retval = tty_ldisc_reinit(tty, tty->termios.c_line);
1371 tty_ldisc_unlock(tty);
1372 }
1373
1374 if (retval == 0)
1375 tty->count++;
1376
1377 return retval;
1378}
1379
1380/**
1381 * tty_init_dev - initialise a tty device
1382 * @driver: tty driver we are opening a device on
1383 * @idx: device index
1384 *
1385 * Prepare a tty device. This may not be a "new" clean device but
1386 * could also be an active device. The pty drivers require special
1387 * handling because of this.
1388 *
1389 * Locking:
1390 * The function is called under the tty_mutex, which
1391 * protects us from the tty struct or driver itself going away.
1392 *
1393 * On exit the tty device has the line discipline attached and
1394 * a reference count of 1. If a pair was created for pty/tty use
1395 * and the other was a pty master then it too has a reference count of 1.
1396 *
1397 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
1398 * failed open. The new code protects the open with a mutex, so it's
1399 * really quite straightforward. The mutex locking can probably be
1400 * relaxed for the (most common) case of reopening a tty.
1401 *
1402 * Return: returned tty structure
1403 */
1404
1405struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx)
1406{
1407 struct tty_struct *tty;
1408 int retval;
1409
1410 /*
1411 * First time open is complex, especially for PTY devices.
1412 * This code guarantees that either everything succeeds and the
1413 * TTY is ready for operation, or else the table slots are vacated
1414 * and the allocated memory released. (Except that the termios
1415 * may be retained.)
1416 */
1417
1418 if (!try_module_get(driver->owner))
1419 return ERR_PTR(-ENODEV);
1420
1421 tty = alloc_tty_struct(driver, idx);
1422 if (!tty) {
1423 retval = -ENOMEM;
1424 goto err_module_put;
1425 }
1426
1427 tty_lock(tty);
1428 retval = tty_driver_install_tty(driver, tty);
1429 if (retval < 0)
1430 goto err_free_tty;
1431
1432 if (!tty->port)
1433 tty->port = driver->ports[idx];
1434
1435 if (WARN_RATELIMIT(!tty->port,
1436 "%s: %s driver does not set tty->port. This would crash the kernel. Fix the driver!\n",
1437 __func__, tty->driver->name)) {
1438 retval = -EINVAL;
1439 goto err_release_lock;
1440 }
1441
1442 retval = tty_ldisc_lock(tty, 5 * HZ);
1443 if (retval)
1444 goto err_release_lock;
1445 tty->port->itty = tty;
1446
1447 /*
1448 * Structures all installed ... call the ldisc open routines.
1449 * If we fail here just call release_tty to clean up. No need
1450 * to decrement the use counts, as release_tty doesn't care.
1451 */
1452 retval = tty_ldisc_setup(tty, tty->link);
1453 if (retval)
1454 goto err_release_tty;
1455 tty_ldisc_unlock(tty);
1456 /* Return the tty locked so that it cannot vanish under the caller */
1457 return tty;
1458
1459err_free_tty:
1460 tty_unlock(tty);
1461 free_tty_struct(tty);
1462err_module_put:
1463 module_put(driver->owner);
1464 return ERR_PTR(retval);
1465
1466 /* call the tty release_tty routine to clean out this slot */
1467err_release_tty:
1468 tty_ldisc_unlock(tty);
1469 tty_info_ratelimited(tty, "ldisc open failed (%d), clearing slot %d\n",
1470 retval, idx);
1471err_release_lock:
1472 tty_unlock(tty);
1473 release_tty(tty, idx);
1474 return ERR_PTR(retval);
1475}
1476
1477/**
1478 * tty_save_termios() - save tty termios data in driver table
1479 * @tty: tty whose termios data to save
1480 *
1481 * Locking: Caller guarantees serialisation with tty_init_termios().
1482 */
1483void tty_save_termios(struct tty_struct *tty)
1484{
1485 struct ktermios *tp;
1486 int idx = tty->index;
1487
1488 /* If the port is going to reset then it has no termios to save */
1489 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
1490 return;
1491
1492 /* Stash the termios data */
1493 tp = tty->driver->termios[idx];
1494 if (tp == NULL) {
1495 tp = kmalloc(sizeof(*tp), GFP_KERNEL);
1496 if (tp == NULL)
1497 return;
1498 tty->driver->termios[idx] = tp;
1499 }
1500 *tp = tty->termios;
1501}
1502EXPORT_SYMBOL_GPL(tty_save_termios);
1503
1504/**
1505 * tty_flush_works - flush all works of a tty/pty pair
1506 * @tty: tty device to flush works for (or either end of a pty pair)
1507 *
1508 * Sync flush all works belonging to @tty (and the 'other' tty).
1509 */
1510static void tty_flush_works(struct tty_struct *tty)
1511{
1512 flush_work(&tty->SAK_work);
1513 flush_work(&tty->hangup_work);
1514 if (tty->link) {
1515 flush_work(&tty->link->SAK_work);
1516 flush_work(&tty->link->hangup_work);
1517 }
1518}
1519
1520/**
1521 * release_one_tty - release tty structure memory
1522 * @work: work of tty we are obliterating
1523 *
1524 * Releases memory associated with a tty structure, and clears out the
1525 * driver table slots. This function is called when a device is no longer
1526 * in use. It also gets called when setup of a device fails.
1527 *
1528 * Locking:
1529 * takes the file list lock internally when working on the list
1530 * of ttys that the driver keeps.
1531 *
1532 * This method gets called from a work queue so that the driver private
1533 * cleanup ops can sleep (needed for USB at least)
1534 */
1535static void release_one_tty(struct work_struct *work)
1536{
1537 struct tty_struct *tty =
1538 container_of(work, struct tty_struct, hangup_work);
1539 struct tty_driver *driver = tty->driver;
1540 struct module *owner = driver->owner;
1541
1542 if (tty->ops->cleanup)
1543 tty->ops->cleanup(tty);
1544
1545 tty->magic = 0;
1546 tty_driver_kref_put(driver);
1547 module_put(owner);
1548
1549 spin_lock(&tty->files_lock);
1550 list_del_init(&tty->tty_files);
1551 spin_unlock(&tty->files_lock);
1552
1553 put_pid(tty->pgrp);
1554 put_pid(tty->session);
1555 free_tty_struct(tty);
1556}
1557
1558static void queue_release_one_tty(struct kref *kref)
1559{
1560 struct tty_struct *tty = container_of(kref, struct tty_struct, kref);
1561
1562 /* The hangup queue is now free so we can reuse it rather than
1563 waste a chunk of memory for each port */
1564 INIT_WORK(&tty->hangup_work, release_one_tty);
1565 schedule_work(&tty->hangup_work);
1566}
1567
1568/**
1569 * tty_kref_put - release a tty kref
1570 * @tty: tty device
1571 *
1572 * Release a reference to a tty device and if need be let the kref
1573 * layer destruct the object for us
1574 */
1575
1576void tty_kref_put(struct tty_struct *tty)
1577{
1578 if (tty)
1579 kref_put(&tty->kref, queue_release_one_tty);
1580}
1581EXPORT_SYMBOL(tty_kref_put);
1582
1583/**
1584 * release_tty - release tty structure memory
1585 *
1586 * Release both @tty and a possible linked partner (think pty pair),
1587 * and decrement the refcount of the backing module.
1588 *
1589 * Locking:
1590 * tty_mutex
1591 * takes the file list lock internally when working on the list
1592 * of ttys that the driver keeps.
1593 *
1594 */
1595static void release_tty(struct tty_struct *tty, int idx)
1596{
1597 /* This should always be true but check for the moment */
1598 WARN_ON(tty->index != idx);
1599 WARN_ON(!mutex_is_locked(&tty_mutex));
1600 if (tty->ops->shutdown)
1601 tty->ops->shutdown(tty);
1602 tty_save_termios(tty);
1603 tty_driver_remove_tty(tty->driver, tty);
1604 if (tty->port)
1605 tty->port->itty = NULL;
1606 if (tty->link)
1607 tty->link->port->itty = NULL;
1608 if (tty->port)
1609 tty_buffer_cancel_work(tty->port);
1610 if (tty->link)
1611 tty_buffer_cancel_work(tty->link->port);
1612
1613 tty_kref_put(tty->link);
1614 tty_kref_put(tty);
1615}
1616
1617/**
1618 * tty_release_checks - check a tty before real release
1619 * @tty: tty to check
1620 * @idx: index of the tty
1621 *
1622 * Performs some paranoid checking before true release of the @tty.
1623 * This is a no-op unless TTY_PARANOIA_CHECK is defined.
1624 */
1625static int tty_release_checks(struct tty_struct *tty, int idx)
1626{
1627#ifdef TTY_PARANOIA_CHECK
1628 if (idx < 0 || idx >= tty->driver->num) {
1629 tty_debug(tty, "bad idx %d\n", idx);
1630 return -1;
1631 }
1632
1633 /* not much to check for devpts */
1634 if (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)
1635 return 0;
1636
1637 if (tty != tty->driver->ttys[idx]) {
1638 tty_debug(tty, "bad driver table[%d] = %p\n",
1639 idx, tty->driver->ttys[idx]);
1640 return -1;
1641 }
1642 if (tty->driver->other) {
1643 struct tty_struct *o_tty = tty->link;
1644
1645 if (o_tty != tty->driver->other->ttys[idx]) {
1646 tty_debug(tty, "bad other table[%d] = %p\n",
1647 idx, tty->driver->other->ttys[idx]);
1648 return -1;
1649 }
1650 if (o_tty->link != tty) {
1651 tty_debug(tty, "bad link = %p\n", o_tty->link);
1652 return -1;
1653 }
1654 }
1655#endif
1656 return 0;
1657}
1658
1659/**
1660 * tty_kclose - closes tty opened by tty_kopen
1661 * @tty: tty device
1662 *
1663 * Performs the final steps to release and free a tty device. It is the
1664 * same as tty_release_struct except that it also resets TTY_PORT_KOPENED
1665 * flag on tty->port.
1666 */
1667void tty_kclose(struct tty_struct *tty)
1668{
1669 /*
1670 * Ask the line discipline code to release its structures
1671 */
1672 tty_ldisc_release(tty);
1673
1674 /* Wait for pending work before tty destruction commmences */
1675 tty_flush_works(tty);
1676
1677 tty_debug_hangup(tty, "freeing structure\n");
1678 /*
1679 * The release_tty function takes care of the details of clearing
1680 * the slots and preserving the termios structure.
1681 */
1682 mutex_lock(&tty_mutex);
1683 tty_port_set_kopened(tty->port, 0);
1684 release_tty(tty, tty->index);
1685 mutex_unlock(&tty_mutex);
1686}
1687EXPORT_SYMBOL_GPL(tty_kclose);
1688
1689/**
1690 * tty_release_struct - release a tty struct
1691 * @tty: tty device
1692 * @idx: index of the tty
1693 *
1694 * Performs the final steps to release and free a tty device. It is
1695 * roughly the reverse of tty_init_dev.
1696 */
1697void tty_release_struct(struct tty_struct *tty, int idx)
1698{
1699 /*
1700 * Ask the line discipline code to release its structures
1701 */
1702 tty_ldisc_release(tty);
1703
1704 /* Wait for pending work before tty destruction commmences */
1705 tty_flush_works(tty);
1706
1707 tty_debug_hangup(tty, "freeing structure\n");
1708 /*
1709 * The release_tty function takes care of the details of clearing
1710 * the slots and preserving the termios structure.
1711 */
1712 mutex_lock(&tty_mutex);
1713 release_tty(tty, idx);
1714 mutex_unlock(&tty_mutex);
1715}
1716EXPORT_SYMBOL_GPL(tty_release_struct);
1717
1718/**
1719 * tty_release - vfs callback for close
1720 * @inode: inode of tty
1721 * @filp: file pointer for handle to tty
1722 *
1723 * Called the last time each file handle is closed that references
1724 * this tty. There may however be several such references.
1725 *
1726 * Locking:
1727 * Takes bkl. See tty_release_dev
1728 *
1729 * Even releasing the tty structures is a tricky business.. We have
1730 * to be very careful that the structures are all released at the
1731 * same time, as interrupts might otherwise get the wrong pointers.
1732 *
1733 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
1734 * lead to double frees or releasing memory still in use.
1735 */
1736
1737int tty_release(struct inode *inode, struct file *filp)
1738{
1739 struct tty_struct *tty = file_tty(filp);
1740 struct tty_struct *o_tty = NULL;
1741 int do_sleep, final;
1742 int idx;
1743 long timeout = 0;
1744 int once = 1;
1745
1746 if (tty_paranoia_check(tty, inode, __func__))
1747 return 0;
1748
1749 tty_lock(tty);
1750 check_tty_count(tty, __func__);
1751
1752 __tty_fasync(-1, filp, 0);
1753
1754 idx = tty->index;
1755 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1756 tty->driver->subtype == PTY_TYPE_MASTER)
1757 o_tty = tty->link;
1758
1759 if (tty_release_checks(tty, idx)) {
1760 tty_unlock(tty);
1761 return 0;
1762 }
1763
1764 tty_debug_hangup(tty, "releasing (count=%d)\n", tty->count);
1765
1766 if (tty->ops->close)
1767 tty->ops->close(tty, filp);
1768
1769 /* If tty is pty master, lock the slave pty (stable lock order) */
1770 tty_lock_slave(o_tty);
1771
1772 /*
1773 * Sanity check: if tty->count is going to zero, there shouldn't be
1774 * any waiters on tty->read_wait or tty->write_wait. We test the
1775 * wait queues and kick everyone out _before_ actually starting to
1776 * close. This ensures that we won't block while releasing the tty
1777 * structure.
1778 *
1779 * The test for the o_tty closing is necessary, since the master and
1780 * slave sides may close in any order. If the slave side closes out
1781 * first, its count will be one, since the master side holds an open.
1782 * Thus this test wouldn't be triggered at the time the slave closed,
1783 * so we do it now.
1784 */
1785 while (1) {
1786 do_sleep = 0;
1787
1788 if (tty->count <= 1) {
1789 if (waitqueue_active(&tty->read_wait)) {
1790 wake_up_poll(&tty->read_wait, EPOLLIN);
1791 do_sleep++;
1792 }
1793 if (waitqueue_active(&tty->write_wait)) {
1794 wake_up_poll(&tty->write_wait, EPOLLOUT);
1795 do_sleep++;
1796 }
1797 }
1798 if (o_tty && o_tty->count <= 1) {
1799 if (waitqueue_active(&o_tty->read_wait)) {
1800 wake_up_poll(&o_tty->read_wait, EPOLLIN);
1801 do_sleep++;
1802 }
1803 if (waitqueue_active(&o_tty->write_wait)) {
1804 wake_up_poll(&o_tty->write_wait, EPOLLOUT);
1805 do_sleep++;
1806 }
1807 }
1808 if (!do_sleep)
1809 break;
1810
1811 if (once) {
1812 once = 0;
1813 tty_warn(tty, "read/write wait queue active!\n");
1814 }
1815 schedule_timeout_killable(timeout);
1816 if (timeout < 120 * HZ)
1817 timeout = 2 * timeout + 1;
1818 else
1819 timeout = MAX_SCHEDULE_TIMEOUT;
1820 }
1821
1822 if (o_tty) {
1823 if (--o_tty->count < 0) {
1824 tty_warn(tty, "bad slave count (%d)\n", o_tty->count);
1825 o_tty->count = 0;
1826 }
1827 }
1828 if (--tty->count < 0) {
1829 tty_warn(tty, "bad tty->count (%d)\n", tty->count);
1830 tty->count = 0;
1831 }
1832
1833 /*
1834 * We've decremented tty->count, so we need to remove this file
1835 * descriptor off the tty->tty_files list; this serves two
1836 * purposes:
1837 * - check_tty_count sees the correct number of file descriptors
1838 * associated with this tty.
1839 * - do_tty_hangup no longer sees this file descriptor as
1840 * something that needs to be handled for hangups.
1841 */
1842 tty_del_file(filp);
1843
1844 /*
1845 * Perform some housekeeping before deciding whether to return.
1846 *
1847 * If _either_ side is closing, make sure there aren't any
1848 * processes that still think tty or o_tty is their controlling
1849 * tty.
1850 */
1851 if (!tty->count) {
1852 read_lock(&tasklist_lock);
1853 session_clear_tty(tty->session);
1854 if (o_tty)
1855 session_clear_tty(o_tty->session);
1856 read_unlock(&tasklist_lock);
1857 }
1858
1859 /* check whether both sides are closing ... */
1860 final = !tty->count && !(o_tty && o_tty->count);
1861
1862 tty_unlock_slave(o_tty);
1863 tty_unlock(tty);
1864
1865 /* At this point, the tty->count == 0 should ensure a dead tty
1866 cannot be re-opened by a racing opener */
1867
1868 if (!final)
1869 return 0;
1870
1871 tty_debug_hangup(tty, "final close\n");
1872
1873 tty_release_struct(tty, idx);
1874 return 0;
1875}
1876
1877/**
1878 * tty_open_current_tty - get locked tty of current task
1879 * @device: device number
1880 * @filp: file pointer to tty
1881 * @return: locked tty of the current task iff @device is /dev/tty
1882 *
1883 * Performs a re-open of the current task's controlling tty.
1884 *
1885 * We cannot return driver and index like for the other nodes because
1886 * devpts will not work then. It expects inodes to be from devpts FS.
1887 */
1888static struct tty_struct *tty_open_current_tty(dev_t device, struct file *filp)
1889{
1890 struct tty_struct *tty;
1891 int retval;
1892
1893 if (device != MKDEV(TTYAUX_MAJOR, 0))
1894 return NULL;
1895
1896 tty = get_current_tty();
1897 if (!tty)
1898 return ERR_PTR(-ENXIO);
1899
1900 filp->f_flags |= O_NONBLOCK; /* Don't let /dev/tty block */
1901 /* noctty = 1; */
1902 tty_lock(tty);
1903 tty_kref_put(tty); /* safe to drop the kref now */
1904
1905 retval = tty_reopen(tty);
1906 if (retval < 0) {
1907 tty_unlock(tty);
1908 tty = ERR_PTR(retval);
1909 }
1910 return tty;
1911}
1912
1913/**
1914 * tty_lookup_driver - lookup a tty driver for a given device file
1915 * @device: device number
1916 * @filp: file pointer to tty
1917 * @index: index for the device in the @return driver
1918 * @return: driver for this inode (with increased refcount)
1919 *
1920 * If @return is not erroneous, the caller is responsible to decrement the
1921 * refcount by tty_driver_kref_put.
1922 *
1923 * Locking: tty_mutex protects get_tty_driver
1924 */
1925static struct tty_driver *tty_lookup_driver(dev_t device, struct file *filp,
1926 int *index)
1927{
1928 struct tty_driver *driver = NULL;
1929
1930 switch (device) {
1931#ifdef CONFIG_VT
1932 case MKDEV(TTY_MAJOR, 0): {
1933 extern struct tty_driver *console_driver;
1934 driver = tty_driver_kref_get(console_driver);
1935 *index = fg_console;
1936 break;
1937 }
1938#endif
1939 case MKDEV(TTYAUX_MAJOR, 1): {
1940 struct tty_driver *console_driver = console_device(index);
1941 if (console_driver) {
1942 driver = tty_driver_kref_get(console_driver);
1943 if (driver && filp) {
1944 /* Don't let /dev/console block */
1945 filp->f_flags |= O_NONBLOCK;
1946 break;
1947 }
1948 }
1949 if (driver)
1950 tty_driver_kref_put(driver);
1951 return ERR_PTR(-ENODEV);
1952 }
1953 default:
1954 driver = get_tty_driver(device, index);
1955 if (!driver)
1956 return ERR_PTR(-ENODEV);
1957 break;
1958 }
1959 return driver;
1960}
1961
1962/**
1963 * tty_kopen - open a tty device for kernel
1964 * @device: dev_t of device to open
1965 *
1966 * Opens tty exclusively for kernel. Performs the driver lookup,
1967 * makes sure it's not already opened and performs the first-time
1968 * tty initialization.
1969 *
1970 * Returns the locked initialized &tty_struct
1971 *
1972 * Claims the global tty_mutex to serialize:
1973 * - concurrent first-time tty initialization
1974 * - concurrent tty driver removal w/ lookup
1975 * - concurrent tty removal from driver table
1976 */
1977struct tty_struct *tty_kopen(dev_t device)
1978{
1979 struct tty_struct *tty;
1980 struct tty_driver *driver;
1981 int index = -1;
1982
1983 mutex_lock(&tty_mutex);
1984 driver = tty_lookup_driver(device, NULL, &index);
1985 if (IS_ERR(driver)) {
1986 mutex_unlock(&tty_mutex);
1987 return ERR_CAST(driver);
1988 }
1989
1990 /* check whether we're reopening an existing tty */
1991 tty = tty_driver_lookup_tty(driver, NULL, index);
1992 if (IS_ERR(tty))
1993 goto out;
1994
1995 if (tty) {
1996 /* drop kref from tty_driver_lookup_tty() */
1997 tty_kref_put(tty);
1998 tty = ERR_PTR(-EBUSY);
1999 } else { /* tty_init_dev returns tty with the tty_lock held */
2000 tty = tty_init_dev(driver, index);
2001 if (IS_ERR(tty))
2002 goto out;
2003 tty_port_set_kopened(tty->port, 1);
2004 }
2005out:
2006 mutex_unlock(&tty_mutex);
2007 tty_driver_kref_put(driver);
2008 return tty;
2009}
2010EXPORT_SYMBOL_GPL(tty_kopen);
2011
2012/**
2013 * tty_open_by_driver - open a tty device
2014 * @device: dev_t of device to open
2015 * @filp: file pointer to tty
2016 *
2017 * Performs the driver lookup, checks for a reopen, or otherwise
2018 * performs the first-time tty initialization.
2019 *
2020 * Returns the locked initialized or re-opened &tty_struct
2021 *
2022 * Claims the global tty_mutex to serialize:
2023 * - concurrent first-time tty initialization
2024 * - concurrent tty driver removal w/ lookup
2025 * - concurrent tty removal from driver table
2026 */
2027static struct tty_struct *tty_open_by_driver(dev_t device,
2028 struct file *filp)
2029{
2030 struct tty_struct *tty;
2031 struct tty_driver *driver = NULL;
2032 int index = -1;
2033 int retval;
2034
2035 mutex_lock(&tty_mutex);
2036 driver = tty_lookup_driver(device, filp, &index);
2037 if (IS_ERR(driver)) {
2038 mutex_unlock(&tty_mutex);
2039 return ERR_CAST(driver);
2040 }
2041
2042 /* check whether we're reopening an existing tty */
2043 tty = tty_driver_lookup_tty(driver, filp, index);
2044 if (IS_ERR(tty)) {
2045 mutex_unlock(&tty_mutex);
2046 goto out;
2047 }
2048
2049 if (tty) {
2050 if (tty_port_kopened(tty->port)) {
2051 tty_kref_put(tty);
2052 mutex_unlock(&tty_mutex);
2053 tty = ERR_PTR(-EBUSY);
2054 goto out;
2055 }
2056 mutex_unlock(&tty_mutex);
2057 retval = tty_lock_interruptible(tty);
2058 tty_kref_put(tty); /* drop kref from tty_driver_lookup_tty() */
2059 if (retval) {
2060 if (retval == -EINTR)
2061 retval = -ERESTARTSYS;
2062 tty = ERR_PTR(retval);
2063 goto out;
2064 }
2065 retval = tty_reopen(tty);
2066 if (retval < 0) {
2067 tty_unlock(tty);
2068 tty = ERR_PTR(retval);
2069 }
2070 } else { /* Returns with the tty_lock held for now */
2071 tty = tty_init_dev(driver, index);
2072 mutex_unlock(&tty_mutex);
2073 }
2074out:
2075 tty_driver_kref_put(driver);
2076 return tty;
2077}
2078
2079/**
2080 * tty_open - open a tty device
2081 * @inode: inode of device file
2082 * @filp: file pointer to tty
2083 *
2084 * tty_open and tty_release keep up the tty count that contains the
2085 * number of opens done on a tty. We cannot use the inode-count, as
2086 * different inodes might point to the same tty.
2087 *
2088 * Open-counting is needed for pty masters, as well as for keeping
2089 * track of serial lines: DTR is dropped when the last close happens.
2090 * (This is not done solely through tty->count, now. - Ted 1/27/92)
2091 *
2092 * The termios state of a pty is reset on first open so that
2093 * settings don't persist across reuse.
2094 *
2095 * Locking: tty_mutex protects tty, tty_lookup_driver and tty_init_dev.
2096 * tty->count should protect the rest.
2097 * ->siglock protects ->signal/->sighand
2098 *
2099 * Note: the tty_unlock/lock cases without a ref are only safe due to
2100 * tty_mutex
2101 */
2102
2103static int tty_open(struct inode *inode, struct file *filp)
2104{
2105 struct tty_struct *tty;
2106 int noctty, retval;
2107 dev_t device = inode->i_rdev;
2108 unsigned saved_flags = filp->f_flags;
2109
2110 nonseekable_open(inode, filp);
2111
2112retry_open:
2113 retval = tty_alloc_file(filp);
2114 if (retval)
2115 return -ENOMEM;
2116
2117 tty = tty_open_current_tty(device, filp);
2118 if (!tty)
2119 tty = tty_open_by_driver(device, filp);
2120
2121 if (IS_ERR(tty)) {
2122 tty_free_file(filp);
2123 retval = PTR_ERR(tty);
2124 if (retval != -EAGAIN || signal_pending(current))
2125 return retval;
2126 schedule();
2127 goto retry_open;
2128 }
2129
2130 tty_add_file(tty, filp);
2131
2132 check_tty_count(tty, __func__);
2133 tty_debug_hangup(tty, "opening (count=%d)\n", tty->count);
2134
2135 if (tty->ops->open)
2136 retval = tty->ops->open(tty, filp);
2137 else
2138 retval = -ENODEV;
2139 filp->f_flags = saved_flags;
2140
2141 if (retval) {
2142 tty_debug_hangup(tty, "open error %d, releasing\n", retval);
2143
2144 tty_unlock(tty); /* need to call tty_release without BTM */
2145 tty_release(inode, filp);
2146 if (retval != -ERESTARTSYS)
2147 return retval;
2148
2149 if (signal_pending(current))
2150 return retval;
2151
2152 schedule();
2153 /*
2154 * Need to reset f_op in case a hangup happened.
2155 */
2156 if (tty_hung_up_p(filp))
2157 filp->f_op = &tty_fops;
2158 goto retry_open;
2159 }
2160 clear_bit(TTY_HUPPED, &tty->flags);
2161
2162 noctty = (filp->f_flags & O_NOCTTY) ||
2163 (IS_ENABLED(CONFIG_VT) && device == MKDEV(TTY_MAJOR, 0)) ||
2164 device == MKDEV(TTYAUX_MAJOR, 1) ||
2165 (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2166 tty->driver->subtype == PTY_TYPE_MASTER);
2167 if (!noctty)
2168 tty_open_proc_set_tty(filp, tty);
2169 tty_unlock(tty);
2170 return 0;
2171}
2172
2173
2174
2175/**
2176 * tty_poll - check tty status
2177 * @filp: file being polled
2178 * @wait: poll wait structures to update
2179 *
2180 * Call the line discipline polling method to obtain the poll
2181 * status of the device.
2182 *
2183 * Locking: locks called line discipline but ldisc poll method
2184 * may be re-entered freely by other callers.
2185 */
2186
2187static __poll_t tty_poll(struct file *filp, poll_table *wait)
2188{
2189 struct tty_struct *tty = file_tty(filp);
2190 struct tty_ldisc *ld;
2191 __poll_t ret = 0;
2192
2193 if (tty_paranoia_check(tty, file_inode(filp), "tty_poll"))
2194 return 0;
2195
2196 ld = tty_ldisc_ref_wait(tty);
2197 if (!ld)
2198 return hung_up_tty_poll(filp, wait);
2199 if (ld->ops->poll)
2200 ret = ld->ops->poll(tty, filp, wait);
2201 tty_ldisc_deref(ld);
2202 return ret;
2203}
2204
2205static int __tty_fasync(int fd, struct file *filp, int on)
2206{
2207 struct tty_struct *tty = file_tty(filp);
2208 unsigned long flags;
2209 int retval = 0;
2210
2211 if (tty_paranoia_check(tty, file_inode(filp), "tty_fasync"))
2212 goto out;
2213
2214 retval = fasync_helper(fd, filp, on, &tty->fasync);
2215 if (retval <= 0)
2216 goto out;
2217
2218 if (on) {
2219 enum pid_type type;
2220 struct pid *pid;
2221
2222 spin_lock_irqsave(&tty->ctrl_lock, flags);
2223 if (tty->pgrp) {
2224 pid = tty->pgrp;
2225 type = PIDTYPE_PGID;
2226 } else {
2227 pid = task_pid(current);
2228 type = PIDTYPE_TGID;
2229 }
2230 get_pid(pid);
2231 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2232 __f_setown(filp, pid, type, 0);
2233 put_pid(pid);
2234 retval = 0;
2235 }
2236out:
2237 return retval;
2238}
2239
2240static int tty_fasync(int fd, struct file *filp, int on)
2241{
2242 struct tty_struct *tty = file_tty(filp);
2243 int retval = -ENOTTY;
2244
2245 tty_lock(tty);
2246 if (!tty_hung_up_p(filp))
2247 retval = __tty_fasync(fd, filp, on);
2248 tty_unlock(tty);
2249
2250 return retval;
2251}
2252
2253/**
2254 * tiocsti - fake input character
2255 * @tty: tty to fake input into
2256 * @p: pointer to character
2257 *
2258 * Fake input to a tty device. Does the necessary locking and
2259 * input management.
2260 *
2261 * FIXME: does not honour flow control ??
2262 *
2263 * Locking:
2264 * Called functions take tty_ldiscs_lock
2265 * current->signal->tty check is safe without locks
2266 */
2267
2268static int tiocsti(struct tty_struct *tty, char __user *p)
2269{
2270 char ch, mbz = 0;
2271 struct tty_ldisc *ld;
2272
2273 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
2274 return -EPERM;
2275 if (get_user(ch, p))
2276 return -EFAULT;
2277 tty_audit_tiocsti(tty, ch);
2278 ld = tty_ldisc_ref_wait(tty);
2279 if (!ld)
2280 return -EIO;
2281 tty_buffer_lock_exclusive(tty->port);
2282 if (ld->ops->receive_buf)
2283 ld->ops->receive_buf(tty, &ch, &mbz, 1);
2284 tty_buffer_unlock_exclusive(tty->port);
2285 tty_ldisc_deref(ld);
2286 return 0;
2287}
2288
2289/**
2290 * tiocgwinsz - implement window query ioctl
2291 * @tty: tty
2292 * @arg: user buffer for result
2293 *
2294 * Copies the kernel idea of the window size into the user buffer.
2295 *
2296 * Locking: tty->winsize_mutex is taken to ensure the winsize data
2297 * is consistent.
2298 */
2299
2300static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg)
2301{
2302 int err;
2303
2304 mutex_lock(&tty->winsize_mutex);
2305 err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
2306 mutex_unlock(&tty->winsize_mutex);
2307
2308 return err ? -EFAULT: 0;
2309}
2310
2311/**
2312 * tty_do_resize - resize event
2313 * @tty: tty being resized
2314 * @ws: new dimensions
2315 *
2316 * Update the termios variables and send the necessary signals to
2317 * peform a terminal resize correctly
2318 */
2319
2320int tty_do_resize(struct tty_struct *tty, struct winsize *ws)
2321{
2322 struct pid *pgrp;
2323
2324 /* Lock the tty */
2325 mutex_lock(&tty->winsize_mutex);
2326 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
2327 goto done;
2328
2329 /* Signal the foreground process group */
2330 pgrp = tty_get_pgrp(tty);
2331 if (pgrp)
2332 kill_pgrp(pgrp, SIGWINCH, 1);
2333 put_pid(pgrp);
2334
2335 tty->winsize = *ws;
2336done:
2337 mutex_unlock(&tty->winsize_mutex);
2338 return 0;
2339}
2340EXPORT_SYMBOL(tty_do_resize);
2341
2342/**
2343 * tiocswinsz - implement window size set ioctl
2344 * @tty: tty side of tty
2345 * @arg: user buffer for result
2346 *
2347 * Copies the user idea of the window size to the kernel. Traditionally
2348 * this is just advisory information but for the Linux console it
2349 * actually has driver level meaning and triggers a VC resize.
2350 *
2351 * Locking:
2352 * Driver dependent. The default do_resize method takes the
2353 * tty termios mutex and ctrl_lock. The console takes its own lock
2354 * then calls into the default method.
2355 */
2356
2357static int tiocswinsz(struct tty_struct *tty, struct winsize __user *arg)
2358{
2359 struct winsize tmp_ws;
2360 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
2361 return -EFAULT;
2362
2363 if (tty->ops->resize)
2364 return tty->ops->resize(tty, &tmp_ws);
2365 else
2366 return tty_do_resize(tty, &tmp_ws);
2367}
2368
2369/**
2370 * tioccons - allow admin to move logical console
2371 * @file: the file to become console
2372 *
2373 * Allow the administrator to move the redirected console device
2374 *
2375 * Locking: uses redirect_lock to guard the redirect information
2376 */
2377
2378static int tioccons(struct file *file)
2379{
2380 if (!capable(CAP_SYS_ADMIN))
2381 return -EPERM;
2382 if (file->f_op->write_iter == redirected_tty_write) {
2383 struct file *f;
2384 spin_lock(&redirect_lock);
2385 f = redirect;
2386 redirect = NULL;
2387 spin_unlock(&redirect_lock);
2388 if (f)
2389 fput(f);
2390 return 0;
2391 }
2392 if (file->f_op->write_iter != tty_write)
2393 return -ENOTTY;
2394 if (!(file->f_mode & FMODE_WRITE))
2395 return -EBADF;
2396 if (!(file->f_mode & FMODE_CAN_WRITE))
2397 return -EINVAL;
2398 spin_lock(&redirect_lock);
2399 if (redirect) {
2400 spin_unlock(&redirect_lock);
2401 return -EBUSY;
2402 }
2403 redirect = get_file(file);
2404 spin_unlock(&redirect_lock);
2405 return 0;
2406}
2407
2408/**
2409 * tiocsetd - set line discipline
2410 * @tty: tty device
2411 * @p: pointer to user data
2412 *
2413 * Set the line discipline according to user request.
2414 *
2415 * Locking: see tty_set_ldisc, this function is just a helper
2416 */
2417
2418static int tiocsetd(struct tty_struct *tty, int __user *p)
2419{
2420 int disc;
2421 int ret;
2422
2423 if (get_user(disc, p))
2424 return -EFAULT;
2425
2426 ret = tty_set_ldisc(tty, disc);
2427
2428 return ret;
2429}
2430
2431/**
2432 * tiocgetd - get line discipline
2433 * @tty: tty device
2434 * @p: pointer to user data
2435 *
2436 * Retrieves the line discipline id directly from the ldisc.
2437 *
2438 * Locking: waits for ldisc reference (in case the line discipline
2439 * is changing or the tty is being hungup)
2440 */
2441
2442static int tiocgetd(struct tty_struct *tty, int __user *p)
2443{
2444 struct tty_ldisc *ld;
2445 int ret;
2446
2447 ld = tty_ldisc_ref_wait(tty);
2448 if (!ld)
2449 return -EIO;
2450 ret = put_user(ld->ops->num, p);
2451 tty_ldisc_deref(ld);
2452 return ret;
2453}
2454
2455/**
2456 * send_break - performed time break
2457 * @tty: device to break on
2458 * @duration: timeout in mS
2459 *
2460 * Perform a timed break on hardware that lacks its own driver level
2461 * timed break functionality.
2462 *
2463 * Locking:
2464 * atomic_write_lock serializes
2465 *
2466 */
2467
2468static int send_break(struct tty_struct *tty, unsigned int duration)
2469{
2470 int retval;
2471
2472 if (tty->ops->break_ctl == NULL)
2473 return 0;
2474
2475 if (tty->driver->flags & TTY_DRIVER_HARDWARE_BREAK)
2476 retval = tty->ops->break_ctl(tty, duration);
2477 else {
2478 /* Do the work ourselves */
2479 if (tty_write_lock(tty, 0) < 0)
2480 return -EINTR;
2481 retval = tty->ops->break_ctl(tty, -1);
2482 if (retval)
2483 goto out;
2484 if (!signal_pending(current))
2485 msleep_interruptible(duration);
2486 retval = tty->ops->break_ctl(tty, 0);
2487out:
2488 tty_write_unlock(tty);
2489 if (signal_pending(current))
2490 retval = -EINTR;
2491 }
2492 return retval;
2493}
2494
2495/**
2496 * tty_tiocmget - get modem status
2497 * @tty: tty device
2498 * @p: pointer to result
2499 *
2500 * Obtain the modem status bits from the tty driver if the feature
2501 * is supported. Return -ENOTTY if it is not available.
2502 *
2503 * Locking: none (up to the driver)
2504 */
2505
2506static int tty_tiocmget(struct tty_struct *tty, int __user *p)
2507{
2508 int retval = -ENOTTY;
2509
2510 if (tty->ops->tiocmget) {
2511 retval = tty->ops->tiocmget(tty);
2512
2513 if (retval >= 0)
2514 retval = put_user(retval, p);
2515 }
2516 return retval;
2517}
2518
2519/**
2520 * tty_tiocmset - set modem status
2521 * @tty: tty device
2522 * @cmd: command - clear bits, set bits or set all
2523 * @p: pointer to desired bits
2524 *
2525 * Set the modem status bits from the tty driver if the feature
2526 * is supported. Return -ENOTTY if it is not available.
2527 *
2528 * Locking: none (up to the driver)
2529 */
2530
2531static int tty_tiocmset(struct tty_struct *tty, unsigned int cmd,
2532 unsigned __user *p)
2533{
2534 int retval;
2535 unsigned int set, clear, val;
2536
2537 if (tty->ops->tiocmset == NULL)
2538 return -ENOTTY;
2539
2540 retval = get_user(val, p);
2541 if (retval)
2542 return retval;
2543 set = clear = 0;
2544 switch (cmd) {
2545 case TIOCMBIS:
2546 set = val;
2547 break;
2548 case TIOCMBIC:
2549 clear = val;
2550 break;
2551 case TIOCMSET:
2552 set = val;
2553 clear = ~val;
2554 break;
2555 }
2556 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2557 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2558 return tty->ops->tiocmset(tty, set, clear);
2559}
2560
2561static int tty_tiocgicount(struct tty_struct *tty, void __user *arg)
2562{
2563 int retval = -EINVAL;
2564 struct serial_icounter_struct icount;
2565 memset(&icount, 0, sizeof(icount));
2566 if (tty->ops->get_icount)
2567 retval = tty->ops->get_icount(tty, &icount);
2568 if (retval != 0)
2569 return retval;
2570 if (copy_to_user(arg, &icount, sizeof(icount)))
2571 return -EFAULT;
2572 return 0;
2573}
2574
2575static int tty_tiocsserial(struct tty_struct *tty, struct serial_struct __user *ss)
2576{
2577 static DEFINE_RATELIMIT_STATE(depr_flags,
2578 DEFAULT_RATELIMIT_INTERVAL,
2579 DEFAULT_RATELIMIT_BURST);
2580 char comm[TASK_COMM_LEN];
2581 struct serial_struct v;
2582 int flags;
2583
2584 if (copy_from_user(&v, ss, sizeof(*ss)))
2585 return -EFAULT;
2586
2587 flags = v.flags & ASYNC_DEPRECATED;
2588
2589 if (flags && __ratelimit(&depr_flags))
2590 pr_warn("%s: '%s' is using deprecated serial flags (with no effect): %.8x\n",
2591 __func__, get_task_comm(comm, current), flags);
2592 if (!tty->ops->set_serial)
2593 return -ENOTTY;
2594 return tty->ops->set_serial(tty, &v);
2595}
2596
2597static int tty_tiocgserial(struct tty_struct *tty, struct serial_struct __user *ss)
2598{
2599 struct serial_struct v;
2600 int err;
2601
2602 memset(&v, 0, sizeof(v));
2603 if (!tty->ops->get_serial)
2604 return -ENOTTY;
2605 err = tty->ops->get_serial(tty, &v);
2606 if (!err && copy_to_user(ss, &v, sizeof(v)))
2607 err = -EFAULT;
2608 return err;
2609}
2610
2611/*
2612 * if pty, return the slave side (real_tty)
2613 * otherwise, return self
2614 */
2615static struct tty_struct *tty_pair_get_tty(struct tty_struct *tty)
2616{
2617 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2618 tty->driver->subtype == PTY_TYPE_MASTER)
2619 tty = tty->link;
2620 return tty;
2621}
2622
2623/*
2624 * Split this up, as gcc can choke on it otherwise..
2625 */
2626long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2627{
2628 struct tty_struct *tty = file_tty(file);
2629 struct tty_struct *real_tty;
2630 void __user *p = (void __user *)arg;
2631 int retval;
2632 struct tty_ldisc *ld;
2633
2634 if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl"))
2635 return -EINVAL;
2636
2637 real_tty = tty_pair_get_tty(tty);
2638
2639 /*
2640 * Factor out some common prep work
2641 */
2642 switch (cmd) {
2643 case TIOCSETD:
2644 case TIOCSBRK:
2645 case TIOCCBRK:
2646 case TCSBRK:
2647 case TCSBRKP:
2648 retval = tty_check_change(tty);
2649 if (retval)
2650 return retval;
2651 if (cmd != TIOCCBRK) {
2652 tty_wait_until_sent(tty, 0);
2653 if (signal_pending(current))
2654 return -EINTR;
2655 }
2656 break;
2657 }
2658
2659 /*
2660 * Now do the stuff.
2661 */
2662 switch (cmd) {
2663 case TIOCSTI:
2664 return tiocsti(tty, p);
2665 case TIOCGWINSZ:
2666 return tiocgwinsz(real_tty, p);
2667 case TIOCSWINSZ:
2668 return tiocswinsz(real_tty, p);
2669 case TIOCCONS:
2670 return real_tty != tty ? -EINVAL : tioccons(file);
2671 case TIOCEXCL:
2672 set_bit(TTY_EXCLUSIVE, &tty->flags);
2673 return 0;
2674 case TIOCNXCL:
2675 clear_bit(TTY_EXCLUSIVE, &tty->flags);
2676 return 0;
2677 case TIOCGEXCL:
2678 {
2679 int excl = test_bit(TTY_EXCLUSIVE, &tty->flags);
2680 return put_user(excl, (int __user *)p);
2681 }
2682 case TIOCGETD:
2683 return tiocgetd(tty, p);
2684 case TIOCSETD:
2685 return tiocsetd(tty, p);
2686 case TIOCVHANGUP:
2687 if (!capable(CAP_SYS_ADMIN))
2688 return -EPERM;
2689 tty_vhangup(tty);
2690 return 0;
2691 case TIOCGDEV:
2692 {
2693 unsigned int ret = new_encode_dev(tty_devnum(real_tty));
2694 return put_user(ret, (unsigned int __user *)p);
2695 }
2696 /*
2697 * Break handling
2698 */
2699 case TIOCSBRK: /* Turn break on, unconditionally */
2700 if (tty->ops->break_ctl)
2701 return tty->ops->break_ctl(tty, -1);
2702 return 0;
2703 case TIOCCBRK: /* Turn break off, unconditionally */
2704 if (tty->ops->break_ctl)
2705 return tty->ops->break_ctl(tty, 0);
2706 return 0;
2707 case TCSBRK: /* SVID version: non-zero arg --> no break */
2708 /* non-zero arg means wait for all output data
2709 * to be sent (performed above) but don't send break.
2710 * This is used by the tcdrain() termios function.
2711 */
2712 if (!arg)
2713 return send_break(tty, 250);
2714 return 0;
2715 case TCSBRKP: /* support for POSIX tcsendbreak() */
2716 return send_break(tty, arg ? arg*100 : 250);
2717
2718 case TIOCMGET:
2719 return tty_tiocmget(tty, p);
2720 case TIOCMSET:
2721 case TIOCMBIC:
2722 case TIOCMBIS:
2723 return tty_tiocmset(tty, cmd, p);
2724 case TIOCGICOUNT:
2725 return tty_tiocgicount(tty, p);
2726 case TCFLSH:
2727 switch (arg) {
2728 case TCIFLUSH:
2729 case TCIOFLUSH:
2730 /* flush tty buffer and allow ldisc to process ioctl */
2731 tty_buffer_flush(tty, NULL);
2732 break;
2733 }
2734 break;
2735 case TIOCSSERIAL:
2736 return tty_tiocsserial(tty, p);
2737 case TIOCGSERIAL:
2738 return tty_tiocgserial(tty, p);
2739 case TIOCGPTPEER:
2740 /* Special because the struct file is needed */
2741 return ptm_open_peer(file, tty, (int)arg);
2742 default:
2743 retval = tty_jobctrl_ioctl(tty, real_tty, file, cmd, arg);
2744 if (retval != -ENOIOCTLCMD)
2745 return retval;
2746 }
2747 if (tty->ops->ioctl) {
2748 retval = tty->ops->ioctl(tty, cmd, arg);
2749 if (retval != -ENOIOCTLCMD)
2750 return retval;
2751 }
2752 ld = tty_ldisc_ref_wait(tty);
2753 if (!ld)
2754 return hung_up_tty_ioctl(file, cmd, arg);
2755 retval = -EINVAL;
2756 if (ld->ops->ioctl) {
2757 retval = ld->ops->ioctl(tty, file, cmd, arg);
2758 if (retval == -ENOIOCTLCMD)
2759 retval = -ENOTTY;
2760 }
2761 tty_ldisc_deref(ld);
2762 return retval;
2763}
2764
2765#ifdef CONFIG_COMPAT
2766
2767struct serial_struct32 {
2768 compat_int_t type;
2769 compat_int_t line;
2770 compat_uint_t port;
2771 compat_int_t irq;
2772 compat_int_t flags;
2773 compat_int_t xmit_fifo_size;
2774 compat_int_t custom_divisor;
2775 compat_int_t baud_base;
2776 unsigned short close_delay;
2777 char io_type;
2778 char reserved_char;
2779 compat_int_t hub6;
2780 unsigned short closing_wait; /* time to wait before closing */
2781 unsigned short closing_wait2; /* no longer used... */
2782 compat_uint_t iomem_base;
2783 unsigned short iomem_reg_shift;
2784 unsigned int port_high;
2785 /* compat_ulong_t iomap_base FIXME */
2786 compat_int_t reserved;
2787};
2788
2789static int compat_tty_tiocsserial(struct tty_struct *tty,
2790 struct serial_struct32 __user *ss)
2791{
2792 static DEFINE_RATELIMIT_STATE(depr_flags,
2793 DEFAULT_RATELIMIT_INTERVAL,
2794 DEFAULT_RATELIMIT_BURST);
2795 char comm[TASK_COMM_LEN];
2796 struct serial_struct32 v32;
2797 struct serial_struct v;
2798 int flags;
2799
2800 if (copy_from_user(&v32, ss, sizeof(*ss)))
2801 return -EFAULT;
2802
2803 memcpy(&v, &v32, offsetof(struct serial_struct32, iomem_base));
2804 v.iomem_base = compat_ptr(v32.iomem_base);
2805 v.iomem_reg_shift = v32.iomem_reg_shift;
2806 v.port_high = v32.port_high;
2807 v.iomap_base = 0;
2808
2809 flags = v.flags & ASYNC_DEPRECATED;
2810
2811 if (flags && __ratelimit(&depr_flags))
2812 pr_warn("%s: '%s' is using deprecated serial flags (with no effect): %.8x\n",
2813 __func__, get_task_comm(comm, current), flags);
2814 if (!tty->ops->set_serial)
2815 return -ENOTTY;
2816 return tty->ops->set_serial(tty, &v);
2817}
2818
2819static int compat_tty_tiocgserial(struct tty_struct *tty,
2820 struct serial_struct32 __user *ss)
2821{
2822 struct serial_struct32 v32;
2823 struct serial_struct v;
2824 int err;
2825
2826 memset(&v, 0, sizeof(v));
2827 memset(&v32, 0, sizeof(v32));
2828
2829 if (!tty->ops->get_serial)
2830 return -ENOTTY;
2831 err = tty->ops->get_serial(tty, &v);
2832 if (!err) {
2833 memcpy(&v32, &v, offsetof(struct serial_struct32, iomem_base));
2834 v32.iomem_base = (unsigned long)v.iomem_base >> 32 ?
2835 0xfffffff : ptr_to_compat(v.iomem_base);
2836 v32.iomem_reg_shift = v.iomem_reg_shift;
2837 v32.port_high = v.port_high;
2838 if (copy_to_user(ss, &v32, sizeof(v32)))
2839 err = -EFAULT;
2840 }
2841 return err;
2842}
2843static long tty_compat_ioctl(struct file *file, unsigned int cmd,
2844 unsigned long arg)
2845{
2846 struct tty_struct *tty = file_tty(file);
2847 struct tty_ldisc *ld;
2848 int retval = -ENOIOCTLCMD;
2849
2850 switch (cmd) {
2851 case TIOCOUTQ:
2852 case TIOCSTI:
2853 case TIOCGWINSZ:
2854 case TIOCSWINSZ:
2855 case TIOCGEXCL:
2856 case TIOCGETD:
2857 case TIOCSETD:
2858 case TIOCGDEV:
2859 case TIOCMGET:
2860 case TIOCMSET:
2861 case TIOCMBIC:
2862 case TIOCMBIS:
2863 case TIOCGICOUNT:
2864 case TIOCGPGRP:
2865 case TIOCSPGRP:
2866 case TIOCGSID:
2867 case TIOCSERGETLSR:
2868 case TIOCGRS485:
2869 case TIOCSRS485:
2870#ifdef TIOCGETP
2871 case TIOCGETP:
2872 case TIOCSETP:
2873 case TIOCSETN:
2874#endif
2875#ifdef TIOCGETC
2876 case TIOCGETC:
2877 case TIOCSETC:
2878#endif
2879#ifdef TIOCGLTC
2880 case TIOCGLTC:
2881 case TIOCSLTC:
2882#endif
2883 case TCSETSF:
2884 case TCSETSW:
2885 case TCSETS:
2886 case TCGETS:
2887#ifdef TCGETS2
2888 case TCGETS2:
2889 case TCSETSF2:
2890 case TCSETSW2:
2891 case TCSETS2:
2892#endif
2893 case TCGETA:
2894 case TCSETAF:
2895 case TCSETAW:
2896 case TCSETA:
2897 case TIOCGLCKTRMIOS:
2898 case TIOCSLCKTRMIOS:
2899#ifdef TCGETX
2900 case TCGETX:
2901 case TCSETX:
2902 case TCSETXW:
2903 case TCSETXF:
2904#endif
2905 case TIOCGSOFTCAR:
2906 case TIOCSSOFTCAR:
2907
2908 case PPPIOCGCHAN:
2909 case PPPIOCGUNIT:
2910 return tty_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
2911 case TIOCCONS:
2912 case TIOCEXCL:
2913 case TIOCNXCL:
2914 case TIOCVHANGUP:
2915 case TIOCSBRK:
2916 case TIOCCBRK:
2917 case TCSBRK:
2918 case TCSBRKP:
2919 case TCFLSH:
2920 case TIOCGPTPEER:
2921 case TIOCNOTTY:
2922 case TIOCSCTTY:
2923 case TCXONC:
2924 case TIOCMIWAIT:
2925 case TIOCSERCONFIG:
2926 return tty_ioctl(file, cmd, arg);
2927 }
2928
2929 if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl"))
2930 return -EINVAL;
2931
2932 switch (cmd) {
2933 case TIOCSSERIAL:
2934 return compat_tty_tiocsserial(tty, compat_ptr(arg));
2935 case TIOCGSERIAL:
2936 return compat_tty_tiocgserial(tty, compat_ptr(arg));
2937 }
2938 if (tty->ops->compat_ioctl) {
2939 retval = tty->ops->compat_ioctl(tty, cmd, arg);
2940 if (retval != -ENOIOCTLCMD)
2941 return retval;
2942 }
2943
2944 ld = tty_ldisc_ref_wait(tty);
2945 if (!ld)
2946 return hung_up_tty_compat_ioctl(file, cmd, arg);
2947 if (ld->ops->compat_ioctl)
2948 retval = ld->ops->compat_ioctl(tty, file, cmd, arg);
2949 if (retval == -ENOIOCTLCMD && ld->ops->ioctl)
2950 retval = ld->ops->ioctl(tty, file,
2951 (unsigned long)compat_ptr(cmd), arg);
2952 tty_ldisc_deref(ld);
2953
2954 return retval;
2955}
2956#endif
2957
2958static int this_tty(const void *t, struct file *file, unsigned fd)
2959{
2960 if (likely(file->f_op->read_iter != tty_read))
2961 return 0;
2962 return file_tty(file) != t ? 0 : fd + 1;
2963}
2964
2965/*
2966 * This implements the "Secure Attention Key" --- the idea is to
2967 * prevent trojan horses by killing all processes associated with this
2968 * tty when the user hits the "Secure Attention Key". Required for
2969 * super-paranoid applications --- see the Orange Book for more details.
2970 *
2971 * This code could be nicer; ideally it should send a HUP, wait a few
2972 * seconds, then send a INT, and then a KILL signal. But you then
2973 * have to coordinate with the init process, since all processes associated
2974 * with the current tty must be dead before the new getty is allowed
2975 * to spawn.
2976 *
2977 * Now, if it would be correct ;-/ The current code has a nasty hole -
2978 * it doesn't catch files in flight. We may send the descriptor to ourselves
2979 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
2980 *
2981 * Nasty bug: do_SAK is being called in interrupt context. This can
2982 * deadlock. We punt it up to process context. AKPM - 16Mar2001
2983 */
2984void __do_SAK(struct tty_struct *tty)
2985{
2986#ifdef TTY_SOFT_SAK
2987 tty_hangup(tty);
2988#else
2989 struct task_struct *g, *p;
2990 struct pid *session;
2991 int i;
2992 unsigned long flags;
2993
2994 if (!tty)
2995 return;
2996
2997 spin_lock_irqsave(&tty->ctrl_lock, flags);
2998 session = get_pid(tty->session);
2999 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
3000
3001 tty_ldisc_flush(tty);
3002
3003 tty_driver_flush_buffer(tty);
3004
3005 read_lock(&tasklist_lock);
3006 /* Kill the entire session */
3007 do_each_pid_task(session, PIDTYPE_SID, p) {
3008 tty_notice(tty, "SAK: killed process %d (%s): by session\n",
3009 task_pid_nr(p), p->comm);
3010 group_send_sig_info(SIGKILL, SEND_SIG_PRIV, p, PIDTYPE_SID);
3011 } while_each_pid_task(session, PIDTYPE_SID, p);
3012
3013 /* Now kill any processes that happen to have the tty open */
3014 do_each_thread(g, p) {
3015 if (p->signal->tty == tty) {
3016 tty_notice(tty, "SAK: killed process %d (%s): by controlling tty\n",
3017 task_pid_nr(p), p->comm);
3018 group_send_sig_info(SIGKILL, SEND_SIG_PRIV, p, PIDTYPE_SID);
3019 continue;
3020 }
3021 task_lock(p);
3022 i = iterate_fd(p->files, 0, this_tty, tty);
3023 if (i != 0) {
3024 tty_notice(tty, "SAK: killed process %d (%s): by fd#%d\n",
3025 task_pid_nr(p), p->comm, i - 1);
3026 group_send_sig_info(SIGKILL, SEND_SIG_PRIV, p, PIDTYPE_SID);
3027 }
3028 task_unlock(p);
3029 } while_each_thread(g, p);
3030 read_unlock(&tasklist_lock);
3031 put_pid(session);
3032#endif
3033}
3034
3035static void do_SAK_work(struct work_struct *work)
3036{
3037 struct tty_struct *tty =
3038 container_of(work, struct tty_struct, SAK_work);
3039 __do_SAK(tty);
3040}
3041
3042/*
3043 * The tq handling here is a little racy - tty->SAK_work may already be queued.
3044 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
3045 * the values which we write to it will be identical to the values which it
3046 * already has. --akpm
3047 */
3048void do_SAK(struct tty_struct *tty)
3049{
3050 if (!tty)
3051 return;
3052 schedule_work(&tty->SAK_work);
3053}
3054
3055EXPORT_SYMBOL(do_SAK);
3056
3057/* Must put_device() after it's unused! */
3058static struct device *tty_get_device(struct tty_struct *tty)
3059{
3060 dev_t devt = tty_devnum(tty);
3061 return class_find_device_by_devt(tty_class, devt);
3062}
3063
3064
3065/**
3066 * alloc_tty_struct
3067 *
3068 * This subroutine allocates and initializes a tty structure.
3069 *
3070 * Locking: none - tty in question is not exposed at this point
3071 */
3072
3073struct tty_struct *alloc_tty_struct(struct tty_driver *driver, int idx)
3074{
3075 struct tty_struct *tty;
3076
3077 tty = kzalloc(sizeof(*tty), GFP_KERNEL);
3078 if (!tty)
3079 return NULL;
3080
3081 kref_init(&tty->kref);
3082 tty->magic = TTY_MAGIC;
3083 if (tty_ldisc_init(tty)) {
3084 kfree(tty);
3085 return NULL;
3086 }
3087 tty->session = NULL;
3088 tty->pgrp = NULL;
3089 mutex_init(&tty->legacy_mutex);
3090 mutex_init(&tty->throttle_mutex);
3091 init_rwsem(&tty->termios_rwsem);
3092 mutex_init(&tty->winsize_mutex);
3093 init_ldsem(&tty->ldisc_sem);
3094 init_waitqueue_head(&tty->write_wait);
3095 init_waitqueue_head(&tty->read_wait);
3096 INIT_WORK(&tty->hangup_work, do_tty_hangup);
3097 mutex_init(&tty->atomic_write_lock);
3098 spin_lock_init(&tty->ctrl_lock);
3099 spin_lock_init(&tty->flow_lock);
3100 spin_lock_init(&tty->files_lock);
3101 INIT_LIST_HEAD(&tty->tty_files);
3102 INIT_WORK(&tty->SAK_work, do_SAK_work);
3103
3104 tty->driver = driver;
3105 tty->ops = driver->ops;
3106 tty->index = idx;
3107 tty_line_name(driver, idx, tty->name);
3108 tty->dev = tty_get_device(tty);
3109
3110 return tty;
3111}
3112
3113/**
3114 * tty_put_char - write one character to a tty
3115 * @tty: tty
3116 * @ch: character
3117 *
3118 * Write one byte to the tty using the provided put_char method
3119 * if present. Returns the number of characters successfully output.
3120 *
3121 * Note: the specific put_char operation in the driver layer may go
3122 * away soon. Don't call it directly, use this method
3123 */
3124
3125int tty_put_char(struct tty_struct *tty, unsigned char ch)
3126{
3127 if (tty->ops->put_char)
3128 return tty->ops->put_char(tty, ch);
3129 return tty->ops->write(tty, &ch, 1);
3130}
3131EXPORT_SYMBOL_GPL(tty_put_char);
3132
3133struct class *tty_class;
3134
3135static int tty_cdev_add(struct tty_driver *driver, dev_t dev,
3136 unsigned int index, unsigned int count)
3137{
3138 int err;
3139
3140 /* init here, since reused cdevs cause crashes */
3141 driver->cdevs[index] = cdev_alloc();
3142 if (!driver->cdevs[index])
3143 return -ENOMEM;
3144 driver->cdevs[index]->ops = &tty_fops;
3145 driver->cdevs[index]->owner = driver->owner;
3146 err = cdev_add(driver->cdevs[index], dev, count);
3147 if (err)
3148 kobject_put(&driver->cdevs[index]->kobj);
3149 return err;
3150}
3151
3152/**
3153 * tty_register_device - register a tty device
3154 * @driver: the tty driver that describes the tty device
3155 * @index: the index in the tty driver for this tty device
3156 * @device: a struct device that is associated with this tty device.
3157 * This field is optional, if there is no known struct device
3158 * for this tty device it can be set to NULL safely.
3159 *
3160 * Returns a pointer to the struct device for this tty device
3161 * (or ERR_PTR(-EFOO) on error).
3162 *
3163 * This call is required to be made to register an individual tty device
3164 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
3165 * that bit is not set, this function should not be called by a tty
3166 * driver.
3167 *
3168 * Locking: ??
3169 */
3170
3171struct device *tty_register_device(struct tty_driver *driver, unsigned index,
3172 struct device *device)
3173{
3174 return tty_register_device_attr(driver, index, device, NULL, NULL);
3175}
3176EXPORT_SYMBOL(tty_register_device);
3177
3178static void tty_device_create_release(struct device *dev)
3179{
3180 dev_dbg(dev, "releasing...\n");
3181 kfree(dev);
3182}
3183
3184/**
3185 * tty_register_device_attr - register a tty device
3186 * @driver: the tty driver that describes the tty device
3187 * @index: the index in the tty driver for this tty device
3188 * @device: a struct device that is associated with this tty device.
3189 * This field is optional, if there is no known struct device
3190 * for this tty device it can be set to NULL safely.
3191 * @drvdata: Driver data to be set to device.
3192 * @attr_grp: Attribute group to be set on device.
3193 *
3194 * Returns a pointer to the struct device for this tty device
3195 * (or ERR_PTR(-EFOO) on error).
3196 *
3197 * This call is required to be made to register an individual tty device
3198 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
3199 * that bit is not set, this function should not be called by a tty
3200 * driver.
3201 *
3202 * Locking: ??
3203 */
3204struct device *tty_register_device_attr(struct tty_driver *driver,
3205 unsigned index, struct device *device,
3206 void *drvdata,
3207 const struct attribute_group **attr_grp)
3208{
3209 char name[64];
3210 dev_t devt = MKDEV(driver->major, driver->minor_start) + index;
3211 struct ktermios *tp;
3212 struct device *dev;
3213 int retval;
3214
3215 if (index >= driver->num) {
3216 pr_err("%s: Attempt to register invalid tty line number (%d)\n",
3217 driver->name, index);
3218 return ERR_PTR(-EINVAL);
3219 }
3220
3221 if (driver->type == TTY_DRIVER_TYPE_PTY)
3222 pty_line_name(driver, index, name);
3223 else
3224 tty_line_name(driver, index, name);
3225
3226 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
3227 if (!dev)
3228 return ERR_PTR(-ENOMEM);
3229
3230 dev->devt = devt;
3231 dev->class = tty_class;
3232 dev->parent = device;
3233 dev->release = tty_device_create_release;
3234 dev_set_name(dev, "%s", name);
3235 dev->groups = attr_grp;
3236 dev_set_drvdata(dev, drvdata);
3237
3238 dev_set_uevent_suppress(dev, 1);
3239
3240 retval = device_register(dev);
3241 if (retval)
3242 goto err_put;
3243
3244 if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
3245 /*
3246 * Free any saved termios data so that the termios state is
3247 * reset when reusing a minor number.
3248 */
3249 tp = driver->termios[index];
3250 if (tp) {
3251 driver->termios[index] = NULL;
3252 kfree(tp);
3253 }
3254
3255 retval = tty_cdev_add(driver, devt, index, 1);
3256 if (retval)
3257 goto err_del;
3258 }
3259
3260 dev_set_uevent_suppress(dev, 0);
3261 kobject_uevent(&dev->kobj, KOBJ_ADD);
3262
3263 return dev;
3264
3265err_del:
3266 device_del(dev);
3267err_put:
3268 put_device(dev);
3269
3270 return ERR_PTR(retval);
3271}
3272EXPORT_SYMBOL_GPL(tty_register_device_attr);
3273
3274/**
3275 * tty_unregister_device - unregister a tty device
3276 * @driver: the tty driver that describes the tty device
3277 * @index: the index in the tty driver for this tty device
3278 *
3279 * If a tty device is registered with a call to tty_register_device() then
3280 * this function must be called when the tty device is gone.
3281 *
3282 * Locking: ??
3283 */
3284
3285void tty_unregister_device(struct tty_driver *driver, unsigned index)
3286{
3287 device_destroy(tty_class,
3288 MKDEV(driver->major, driver->minor_start) + index);
3289 if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
3290 cdev_del(driver->cdevs[index]);
3291 driver->cdevs[index] = NULL;
3292 }
3293}
3294EXPORT_SYMBOL(tty_unregister_device);
3295
3296/**
3297 * __tty_alloc_driver -- allocate tty driver
3298 * @lines: count of lines this driver can handle at most
3299 * @owner: module which is responsible for this driver
3300 * @flags: some of TTY_DRIVER_* flags, will be set in driver->flags
3301 *
3302 * This should not be called directly, some of the provided macros should be
3303 * used instead. Use IS_ERR and friends on @retval.
3304 */
3305struct tty_driver *__tty_alloc_driver(unsigned int lines, struct module *owner,
3306 unsigned long flags)
3307{
3308 struct tty_driver *driver;
3309 unsigned int cdevs = 1;
3310 int err;
3311
3312 if (!lines || (flags & TTY_DRIVER_UNNUMBERED_NODE && lines > 1))
3313 return ERR_PTR(-EINVAL);
3314
3315 driver = kzalloc(sizeof(*driver), GFP_KERNEL);
3316 if (!driver)
3317 return ERR_PTR(-ENOMEM);
3318
3319 kref_init(&driver->kref);
3320 driver->magic = TTY_DRIVER_MAGIC;
3321 driver->num = lines;
3322 driver->owner = owner;
3323 driver->flags = flags;
3324
3325 if (!(flags & TTY_DRIVER_DEVPTS_MEM)) {
3326 driver->ttys = kcalloc(lines, sizeof(*driver->ttys),
3327 GFP_KERNEL);
3328 driver->termios = kcalloc(lines, sizeof(*driver->termios),
3329 GFP_KERNEL);
3330 if (!driver->ttys || !driver->termios) {
3331 err = -ENOMEM;
3332 goto err_free_all;
3333 }
3334 }
3335
3336 if (!(flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
3337 driver->ports = kcalloc(lines, sizeof(*driver->ports),
3338 GFP_KERNEL);
3339 if (!driver->ports) {
3340 err = -ENOMEM;
3341 goto err_free_all;
3342 }
3343 cdevs = lines;
3344 }
3345
3346 driver->cdevs = kcalloc(cdevs, sizeof(*driver->cdevs), GFP_KERNEL);
3347 if (!driver->cdevs) {
3348 err = -ENOMEM;
3349 goto err_free_all;
3350 }
3351
3352 return driver;
3353err_free_all:
3354 kfree(driver->ports);
3355 kfree(driver->ttys);
3356 kfree(driver->termios);
3357 kfree(driver->cdevs);
3358 kfree(driver);
3359 return ERR_PTR(err);
3360}
3361EXPORT_SYMBOL(__tty_alloc_driver);
3362
3363static void destruct_tty_driver(struct kref *kref)
3364{
3365 struct tty_driver *driver = container_of(kref, struct tty_driver, kref);
3366 int i;
3367 struct ktermios *tp;
3368
3369 if (driver->flags & TTY_DRIVER_INSTALLED) {
3370 for (i = 0; i < driver->num; i++) {
3371 tp = driver->termios[i];
3372 if (tp) {
3373 driver->termios[i] = NULL;
3374 kfree(tp);
3375 }
3376 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
3377 tty_unregister_device(driver, i);
3378 }
3379 proc_tty_unregister_driver(driver);
3380 if (driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)
3381 cdev_del(driver->cdevs[0]);
3382 }
3383 kfree(driver->cdevs);
3384 kfree(driver->ports);
3385 kfree(driver->termios);
3386 kfree(driver->ttys);
3387 kfree(driver);
3388}
3389
3390void tty_driver_kref_put(struct tty_driver *driver)
3391{
3392 kref_put(&driver->kref, destruct_tty_driver);
3393}
3394EXPORT_SYMBOL(tty_driver_kref_put);
3395
3396void tty_set_operations(struct tty_driver *driver,
3397 const struct tty_operations *op)
3398{
3399 driver->ops = op;
3400};
3401EXPORT_SYMBOL(tty_set_operations);
3402
3403void put_tty_driver(struct tty_driver *d)
3404{
3405 tty_driver_kref_put(d);
3406}
3407EXPORT_SYMBOL(put_tty_driver);
3408
3409/*
3410 * Called by a tty driver to register itself.
3411 */
3412int tty_register_driver(struct tty_driver *driver)
3413{
3414 int error;
3415 int i;
3416 dev_t dev;
3417 struct device *d;
3418
3419 if (!driver->major) {
3420 error = alloc_chrdev_region(&dev, driver->minor_start,
3421 driver->num, driver->name);
3422 if (!error) {
3423 driver->major = MAJOR(dev);
3424 driver->minor_start = MINOR(dev);
3425 }
3426 } else {
3427 dev = MKDEV(driver->major, driver->minor_start);
3428 error = register_chrdev_region(dev, driver->num, driver->name);
3429 }
3430 if (error < 0)
3431 goto err;
3432
3433 if (driver->flags & TTY_DRIVER_DYNAMIC_ALLOC) {
3434 error = tty_cdev_add(driver, dev, 0, driver->num);
3435 if (error)
3436 goto err_unreg_char;
3437 }
3438
3439 mutex_lock(&tty_mutex);
3440 list_add(&driver->tty_drivers, &tty_drivers);
3441 mutex_unlock(&tty_mutex);
3442
3443 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) {
3444 for (i = 0; i < driver->num; i++) {
3445 d = tty_register_device(driver, i, NULL);
3446 if (IS_ERR(d)) {
3447 error = PTR_ERR(d);
3448 goto err_unreg_devs;
3449 }
3450 }
3451 }
3452 proc_tty_register_driver(driver);
3453 driver->flags |= TTY_DRIVER_INSTALLED;
3454 return 0;
3455
3456err_unreg_devs:
3457 for (i--; i >= 0; i--)
3458 tty_unregister_device(driver, i);
3459
3460 mutex_lock(&tty_mutex);
3461 list_del(&driver->tty_drivers);
3462 mutex_unlock(&tty_mutex);
3463
3464err_unreg_char:
3465 unregister_chrdev_region(dev, driver->num);
3466err:
3467 return error;
3468}
3469EXPORT_SYMBOL(tty_register_driver);
3470
3471/*
3472 * Called by a tty driver to unregister itself.
3473 */
3474int tty_unregister_driver(struct tty_driver *driver)
3475{
3476#if 0
3477 /* FIXME */
3478 if (driver->refcount)
3479 return -EBUSY;
3480#endif
3481 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
3482 driver->num);
3483 mutex_lock(&tty_mutex);
3484 list_del(&driver->tty_drivers);
3485 mutex_unlock(&tty_mutex);
3486 return 0;
3487}
3488
3489EXPORT_SYMBOL(tty_unregister_driver);
3490
3491dev_t tty_devnum(struct tty_struct *tty)
3492{
3493 return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3494}
3495EXPORT_SYMBOL(tty_devnum);
3496
3497void tty_default_fops(struct file_operations *fops)
3498{
3499 *fops = tty_fops;
3500}
3501
3502static char *tty_devnode(struct device *dev, umode_t *mode)
3503{
3504 if (!mode)
3505 return NULL;
3506 if (dev->devt == MKDEV(TTYAUX_MAJOR, 0) ||
3507 dev->devt == MKDEV(TTYAUX_MAJOR, 2))
3508 *mode = 0666;
3509 return NULL;
3510}
3511
3512static int __init tty_class_init(void)
3513{
3514 tty_class = class_create(THIS_MODULE, "tty");
3515 if (IS_ERR(tty_class))
3516 return PTR_ERR(tty_class);
3517 tty_class->devnode = tty_devnode;
3518 return 0;
3519}
3520
3521postcore_initcall(tty_class_init);
3522
3523/* 3/2004 jmc: why do these devices exist? */
3524static struct cdev tty_cdev, console_cdev;
3525
3526static ssize_t show_cons_active(struct device *dev,
3527 struct device_attribute *attr, char *buf)
3528{
3529 struct console *cs[16];
3530 int i = 0;
3531 struct console *c;
3532 ssize_t count = 0;
3533
3534 console_lock();
3535 for_each_console(c) {
3536 if (!c->device)
3537 continue;
3538 if (!c->write)
3539 continue;
3540 if ((c->flags & CON_ENABLED) == 0)
3541 continue;
3542 cs[i++] = c;
3543 if (i >= ARRAY_SIZE(cs))
3544 break;
3545 }
3546 while (i--) {
3547 int index = cs[i]->index;
3548 struct tty_driver *drv = cs[i]->device(cs[i], &index);
3549
3550 /* don't resolve tty0 as some programs depend on it */
3551 if (drv && (cs[i]->index > 0 || drv->major != TTY_MAJOR))
3552 count += tty_line_name(drv, index, buf + count);
3553 else
3554 count += sprintf(buf + count, "%s%d",
3555 cs[i]->name, cs[i]->index);
3556
3557 count += sprintf(buf + count, "%c", i ? ' ':'\n');
3558 }
3559 console_unlock();
3560
3561 return count;
3562}
3563static DEVICE_ATTR(active, S_IRUGO, show_cons_active, NULL);
3564
3565static struct attribute *cons_dev_attrs[] = {
3566 &dev_attr_active.attr,
3567 NULL
3568};
3569
3570ATTRIBUTE_GROUPS(cons_dev);
3571
3572static struct device *consdev;
3573
3574void console_sysfs_notify(void)
3575{
3576 if (consdev)
3577 sysfs_notify(&consdev->kobj, NULL, "active");
3578}
3579
3580/*
3581 * Ok, now we can initialize the rest of the tty devices and can count
3582 * on memory allocations, interrupts etc..
3583 */
3584int __init tty_init(void)
3585{
3586 tty_sysctl_init();
3587 cdev_init(&tty_cdev, &tty_fops);
3588 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3589 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3590 panic("Couldn't register /dev/tty driver\n");
3591 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL, "tty");
3592
3593 cdev_init(&console_cdev, &console_fops);
3594 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3595 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3596 panic("Couldn't register /dev/console driver\n");
3597 consdev = device_create_with_groups(tty_class, NULL,
3598 MKDEV(TTYAUX_MAJOR, 1), NULL,
3599 cons_dev_groups, "console");
3600 if (IS_ERR(consdev))
3601 consdev = NULL;
3602
3603#ifdef CONFIG_VT
3604 vty_init(&console_fops);
3605#endif
3606 return 0;
3607}
3608