1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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/proc_fs.h>
91#include <linux/init.h>
92#include <linux/module.h>
93#include <linux/device.h>
94#include <linux/wait.h>
95#include <linux/bitops.h>
96#include <linux/delay.h>
97#include <linux/seq_file.h>
98#include <linux/serial.h>
99#include <linux/ratelimit.h>
100
101#include <linux/uaccess.h>
102
103#include <linux/kbd_kern.h>
104#include <linux/vt_kern.h>
105#include <linux/selection.h>
106
107#include <linux/kmod.h>
108#include <linux/nsproxy.h>
109
110#undef TTY_DEBUG_HANGUP
111#ifdef TTY_DEBUG_HANGUP
112# define tty_debug_hangup(tty, f, args...) tty_debug(tty, f, ##args)
113#else
114# define tty_debug_hangup(tty, f, args...) do { } while (0)
115#endif
116
117#define TTY_PARANOIA_CHECK 1
118#define CHECK_TTY_COUNT 1
119
120struct ktermios tty_std_termios = {
121 .c_iflag = ICRNL | IXON,
122 .c_oflag = OPOST | ONLCR,
123 .c_cflag = B38400 | CS8 | CREAD | HUPCL,
124 .c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
125 ECHOCTL | ECHOKE | IEXTEN,
126 .c_cc = INIT_C_CC,
127 .c_ispeed = 38400,
128 .c_ospeed = 38400,
129
130};
131
132EXPORT_SYMBOL(tty_std_termios);
133
134
135
136
137
138LIST_HEAD(tty_drivers);
139
140
141DEFINE_MUTEX(tty_mutex);
142
143static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
144static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
145ssize_t redirected_tty_write(struct file *, const char __user *,
146 size_t, loff_t *);
147static __poll_t tty_poll(struct file *, poll_table *);
148static int tty_open(struct inode *, struct file *);
149long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
150#ifdef CONFIG_COMPAT
151static long tty_compat_ioctl(struct file *file, unsigned int cmd,
152 unsigned long arg);
153#else
154#define tty_compat_ioctl NULL
155#endif
156static int __tty_fasync(int fd, struct file *filp, int on);
157static int tty_fasync(int fd, struct file *filp, int on);
158static void release_tty(struct tty_struct *tty, int idx);
159
160
161
162
163
164
165
166
167
168
169static void free_tty_struct(struct tty_struct *tty)
170{
171 tty_ldisc_deinit(tty);
172 put_device(tty->dev);
173 kfree(tty->write_buf);
174 tty->magic = 0xDEADDEAD;
175 kfree(tty);
176}
177
178static inline struct tty_struct *file_tty(struct file *file)
179{
180 return ((struct tty_file_private *)file->private_data)->tty;
181}
182
183int tty_alloc_file(struct file *file)
184{
185 struct tty_file_private *priv;
186
187 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
188 if (!priv)
189 return -ENOMEM;
190
191 file->private_data = priv;
192
193 return 0;
194}
195
196
197void tty_add_file(struct tty_struct *tty, struct file *file)
198{
199 struct tty_file_private *priv = file->private_data;
200
201 priv->tty = tty;
202 priv->file = file;
203
204 spin_lock(&tty->files_lock);
205 list_add(&priv->list, &tty->tty_files);
206 spin_unlock(&tty->files_lock);
207}
208
209
210
211
212
213
214
215void tty_free_file(struct file *file)
216{
217 struct tty_file_private *priv = file->private_data;
218
219 file->private_data = NULL;
220 kfree(priv);
221}
222
223
224static void tty_del_file(struct file *file)
225{
226 struct tty_file_private *priv = file->private_data;
227 struct tty_struct *tty = priv->tty;
228
229 spin_lock(&tty->files_lock);
230 list_del(&priv->list);
231 spin_unlock(&tty->files_lock);
232 tty_free_file(file);
233}
234
235
236
237
238
239
240
241
242
243
244
245const char *tty_name(const struct tty_struct *tty)
246{
247 if (!tty)
248 return "NULL tty";
249 return tty->name;
250}
251
252EXPORT_SYMBOL(tty_name);
253
254const char *tty_driver_name(const struct tty_struct *tty)
255{
256 if (!tty || !tty->driver)
257 return "";
258 return tty->driver->name;
259}
260
261static int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
262 const char *routine)
263{
264#ifdef TTY_PARANOIA_CHECK
265 if (!tty) {
266 pr_warn("(%d:%d): %s: NULL tty\n",
267 imajor(inode), iminor(inode), routine);
268 return 1;
269 }
270 if (tty->magic != TTY_MAGIC) {
271 pr_warn("(%d:%d): %s: bad magic number\n",
272 imajor(inode), iminor(inode), routine);
273 return 1;
274 }
275#endif
276 return 0;
277}
278
279
280static int check_tty_count(struct tty_struct *tty, const char *routine)
281{
282#ifdef CHECK_TTY_COUNT
283 struct list_head *p;
284 int count = 0, kopen_count = 0;
285
286 spin_lock(&tty->files_lock);
287 list_for_each(p, &tty->tty_files) {
288 count++;
289 }
290 spin_unlock(&tty->files_lock);
291 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
292 tty->driver->subtype == PTY_TYPE_SLAVE &&
293 tty->link && tty->link->count)
294 count++;
295 if (tty_port_kopened(tty->port))
296 kopen_count++;
297 if (tty->count != (count + kopen_count)) {
298 tty_warn(tty, "%s: tty->count(%d) != (#fd's(%d) + #kopen's(%d))\n",
299 routine, tty->count, count, kopen_count);
300 return (count + kopen_count);
301 }
302#endif
303 return 0;
304}
305
306
307
308
309
310
311
312
313
314
315
316
317static struct tty_driver *get_tty_driver(dev_t device, int *index)
318{
319 struct tty_driver *p;
320
321 list_for_each_entry(p, &tty_drivers, tty_drivers) {
322 dev_t base = MKDEV(p->major, p->minor_start);
323 if (device < base || device >= base + p->num)
324 continue;
325 *index = device - base;
326 return tty_driver_kref_get(p);
327 }
328 return NULL;
329}
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344int tty_dev_name_to_number(const char *name, dev_t *number)
345{
346 struct tty_driver *p;
347 int ret;
348 int index, prefix_length = 0;
349 const char *str;
350
351 for (str = name; *str && !isdigit(*str); str++)
352 ;
353
354 if (!*str)
355 return -EINVAL;
356
357 ret = kstrtoint(str, 10, &index);
358 if (ret)
359 return ret;
360
361 prefix_length = str - name;
362 mutex_lock(&tty_mutex);
363
364 list_for_each_entry(p, &tty_drivers, tty_drivers)
365 if (prefix_length == strlen(p->name) && strncmp(name,
366 p->name, prefix_length) == 0) {
367 if (index < p->num) {
368 *number = MKDEV(p->major, p->minor_start + index);
369 goto out;
370 }
371 }
372
373
374 ret = -ENODEV;
375out:
376 mutex_unlock(&tty_mutex);
377 return ret;
378}
379EXPORT_SYMBOL_GPL(tty_dev_name_to_number);
380
381#ifdef CONFIG_CONSOLE_POLL
382
383
384
385
386
387
388
389
390
391
392struct tty_driver *tty_find_polling_driver(char *name, int *line)
393{
394 struct tty_driver *p, *res = NULL;
395 int tty_line = 0;
396 int len;
397 char *str, *stp;
398
399 for (str = name; *str; str++)
400 if ((*str >= '0' && *str <= '9') || *str == ',')
401 break;
402 if (!*str)
403 return NULL;
404
405 len = str - name;
406 tty_line = simple_strtoul(str, &str, 10);
407
408 mutex_lock(&tty_mutex);
409
410 list_for_each_entry(p, &tty_drivers, tty_drivers) {
411 if (strncmp(name, p->name, len) != 0)
412 continue;
413 stp = str;
414 if (*stp == ',')
415 stp++;
416 if (*stp == '\0')
417 stp = NULL;
418
419 if (tty_line >= 0 && tty_line < p->num && p->ops &&
420 p->ops->poll_init && !p->ops->poll_init(p, tty_line, stp)) {
421 res = tty_driver_kref_get(p);
422 *line = tty_line;
423 break;
424 }
425 }
426 mutex_unlock(&tty_mutex);
427
428 return res;
429}
430EXPORT_SYMBOL_GPL(tty_find_polling_driver);
431#endif
432
433static ssize_t hung_up_tty_read(struct file *file, char __user *buf,
434 size_t count, loff_t *ppos)
435{
436 return 0;
437}
438
439static ssize_t hung_up_tty_write(struct file *file, const char __user *buf,
440 size_t count, loff_t *ppos)
441{
442 return -EIO;
443}
444
445
446static __poll_t hung_up_tty_poll(struct file *filp, poll_table *wait)
447{
448 return EPOLLIN | EPOLLOUT | EPOLLERR | EPOLLHUP | EPOLLRDNORM | EPOLLWRNORM;
449}
450
451static long hung_up_tty_ioctl(struct file *file, unsigned int cmd,
452 unsigned long arg)
453{
454 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
455}
456
457static long hung_up_tty_compat_ioctl(struct file *file,
458 unsigned int cmd, unsigned long arg)
459{
460 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
461}
462
463static int hung_up_tty_fasync(int fd, struct file *file, int on)
464{
465 return -ENOTTY;
466}
467
468static void tty_show_fdinfo(struct seq_file *m, struct file *file)
469{
470 struct tty_struct *tty = file_tty(file);
471
472 if (tty && tty->ops && tty->ops->show_fdinfo)
473 tty->ops->show_fdinfo(tty, m);
474}
475
476static const struct file_operations tty_fops = {
477 .llseek = no_llseek,
478 .read = tty_read,
479 .write = tty_write,
480 .poll = tty_poll,
481 .unlocked_ioctl = tty_ioctl,
482 .compat_ioctl = tty_compat_ioctl,
483 .open = tty_open,
484 .release = tty_release,
485 .fasync = tty_fasync,
486 .show_fdinfo = tty_show_fdinfo,
487};
488
489static const struct file_operations console_fops = {
490 .llseek = no_llseek,
491 .read = tty_read,
492 .write = redirected_tty_write,
493 .poll = tty_poll,
494 .unlocked_ioctl = tty_ioctl,
495 .compat_ioctl = tty_compat_ioctl,
496 .open = tty_open,
497 .release = tty_release,
498 .fasync = tty_fasync,
499};
500
501static const struct file_operations hung_up_tty_fops = {
502 .llseek = no_llseek,
503 .read = hung_up_tty_read,
504 .write = hung_up_tty_write,
505 .poll = hung_up_tty_poll,
506 .unlocked_ioctl = hung_up_tty_ioctl,
507 .compat_ioctl = hung_up_tty_compat_ioctl,
508 .release = tty_release,
509 .fasync = hung_up_tty_fasync,
510};
511
512static DEFINE_SPINLOCK(redirect_lock);
513static struct file *redirect;
514
515
516
517
518
519
520
521
522
523
524void tty_wakeup(struct tty_struct *tty)
525{
526 struct tty_ldisc *ld;
527
528 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
529 ld = tty_ldisc_ref(tty);
530 if (ld) {
531 if (ld->ops->write_wakeup)
532 ld->ops->write_wakeup(tty);
533 tty_ldisc_deref(ld);
534 }
535 }
536 wake_up_interruptible_poll(&tty->write_wait, EPOLLOUT);
537}
538
539EXPORT_SYMBOL_GPL(tty_wakeup);
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563static void __tty_hangup(struct tty_struct *tty, int exit_session)
564{
565 struct file *cons_filp = NULL;
566 struct file *filp, *f = NULL;
567 struct tty_file_private *priv;
568 int closecount = 0, n;
569 int refs;
570
571 if (!tty)
572 return;
573
574
575 spin_lock(&redirect_lock);
576 if (redirect && file_tty(redirect) == tty) {
577 f = redirect;
578 redirect = NULL;
579 }
580 spin_unlock(&redirect_lock);
581
582 tty_lock(tty);
583
584 if (test_bit(TTY_HUPPED, &tty->flags)) {
585 tty_unlock(tty);
586 return;
587 }
588
589
590
591
592
593
594
595 set_bit(TTY_HUPPING, &tty->flags);
596
597
598
599
600 check_tty_count(tty, "tty_hangup");
601
602 spin_lock(&tty->files_lock);
603
604 list_for_each_entry(priv, &tty->tty_files, list) {
605 filp = priv->file;
606 if (filp->f_op->write == redirected_tty_write)
607 cons_filp = filp;
608 if (filp->f_op->write != tty_write)
609 continue;
610 closecount++;
611 __tty_fasync(-1, filp, 0);
612 filp->f_op = &hung_up_tty_fops;
613 }
614 spin_unlock(&tty->files_lock);
615
616 refs = tty_signal_session_leader(tty, exit_session);
617
618 while (refs--)
619 tty_kref_put(tty);
620
621 tty_ldisc_hangup(tty, cons_filp != NULL);
622
623 spin_lock_irq(&tty->ctrl_lock);
624 clear_bit(TTY_THROTTLED, &tty->flags);
625 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
626 put_pid(tty->session);
627 put_pid(tty->pgrp);
628 tty->session = NULL;
629 tty->pgrp = NULL;
630 tty->ctrl_status = 0;
631 spin_unlock_irq(&tty->ctrl_lock);
632
633
634
635
636
637
638
639 if (cons_filp) {
640 if (tty->ops->close)
641 for (n = 0; n < closecount; n++)
642 tty->ops->close(tty, cons_filp);
643 } else if (tty->ops->hangup)
644 tty->ops->hangup(tty);
645
646
647
648
649
650 set_bit(TTY_HUPPED, &tty->flags);
651 clear_bit(TTY_HUPPING, &tty->flags);
652 tty_unlock(tty);
653
654 if (f)
655 fput(f);
656}
657
658static void do_tty_hangup(struct work_struct *work)
659{
660 struct tty_struct *tty =
661 container_of(work, struct tty_struct, hangup_work);
662
663 __tty_hangup(tty, 0);
664}
665
666
667
668
669
670
671
672
673
674void tty_hangup(struct tty_struct *tty)
675{
676 tty_debug_hangup(tty, "hangup\n");
677 schedule_work(&tty->hangup_work);
678}
679
680EXPORT_SYMBOL(tty_hangup);
681
682
683
684
685
686
687
688
689
690
691void tty_vhangup(struct tty_struct *tty)
692{
693 tty_debug_hangup(tty, "vhangup\n");
694 __tty_hangup(tty, 0);
695}
696
697EXPORT_SYMBOL(tty_vhangup);
698
699
700
701
702
703
704
705
706void tty_vhangup_self(void)
707{
708 struct tty_struct *tty;
709
710 tty = get_current_tty();
711 if (tty) {
712 tty_vhangup(tty);
713 tty_kref_put(tty);
714 }
715}
716
717
718
719
720
721
722
723
724
725
726
727
728void tty_vhangup_session(struct tty_struct *tty)
729{
730 tty_debug_hangup(tty, "session hangup\n");
731 __tty_hangup(tty, 1);
732}
733
734
735
736
737
738
739
740
741
742int tty_hung_up_p(struct file *filp)
743{
744 return (filp && filp->f_op == &hung_up_tty_fops);
745}
746
747EXPORT_SYMBOL(tty_hung_up_p);
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766void __stop_tty(struct tty_struct *tty)
767{
768 if (tty->stopped)
769 return;
770 tty->stopped = 1;
771 if (tty->ops->stop)
772 tty->ops->stop(tty);
773}
774
775void stop_tty(struct tty_struct *tty)
776{
777 unsigned long flags;
778
779 spin_lock_irqsave(&tty->flow_lock, flags);
780 __stop_tty(tty);
781 spin_unlock_irqrestore(&tty->flow_lock, flags);
782}
783EXPORT_SYMBOL(stop_tty);
784
785
786
787
788
789
790
791
792
793
794
795
796
797void __start_tty(struct tty_struct *tty)
798{
799 if (!tty->stopped || tty->flow_stopped)
800 return;
801 tty->stopped = 0;
802 if (tty->ops->start)
803 tty->ops->start(tty);
804 tty_wakeup(tty);
805}
806
807void start_tty(struct tty_struct *tty)
808{
809 unsigned long flags;
810
811 spin_lock_irqsave(&tty->flow_lock, flags);
812 __start_tty(tty);
813 spin_unlock_irqrestore(&tty->flow_lock, flags);
814}
815EXPORT_SYMBOL(start_tty);
816
817static void tty_update_time(struct timespec64 *time)
818{
819 time64_t sec = ktime_get_real_seconds();
820
821
822
823
824
825
826
827 if ((sec ^ time->tv_sec) & ~7)
828 time->tv_sec = sec;
829}
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846static ssize_t tty_read(struct file *file, char __user *buf, size_t count,
847 loff_t *ppos)
848{
849 int i;
850 struct inode *inode = file_inode(file);
851 struct tty_struct *tty = file_tty(file);
852 struct tty_ldisc *ld;
853
854 if (tty_paranoia_check(tty, inode, "tty_read"))
855 return -EIO;
856 if (!tty || tty_io_error(tty))
857 return -EIO;
858
859
860
861 ld = tty_ldisc_ref_wait(tty);
862 if (!ld)
863 return hung_up_tty_read(file, buf, count, ppos);
864 if (ld->ops->read)
865 i = ld->ops->read(tty, file, buf, count);
866 else
867 i = -EIO;
868 tty_ldisc_deref(ld);
869
870 if (i > 0)
871 tty_update_time(&inode->i_atime);
872
873 return i;
874}
875
876static void tty_write_unlock(struct tty_struct *tty)
877{
878 mutex_unlock(&tty->atomic_write_lock);
879 wake_up_interruptible_poll(&tty->write_wait, EPOLLOUT);
880}
881
882static int tty_write_lock(struct tty_struct *tty, int ndelay)
883{
884 if (!mutex_trylock(&tty->atomic_write_lock)) {
885 if (ndelay)
886 return -EAGAIN;
887 if (mutex_lock_interruptible(&tty->atomic_write_lock))
888 return -ERESTARTSYS;
889 }
890 return 0;
891}
892
893
894
895
896
897static inline ssize_t do_tty_write(
898 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t),
899 struct tty_struct *tty,
900 struct file *file,
901 const char __user *buf,
902 size_t count)
903{
904 ssize_t ret, written = 0;
905 unsigned int chunk;
906
907 ret = tty_write_lock(tty, file->f_flags & O_NDELAY);
908 if (ret < 0)
909 return ret;
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927 chunk = 2048;
928 if (test_bit(TTY_NO_WRITE_SPLIT, &tty->flags))
929 chunk = 65536;
930 if (count < chunk)
931 chunk = count;
932
933
934 if (tty->write_cnt < chunk) {
935 unsigned char *buf_chunk;
936
937 if (chunk < 1024)
938 chunk = 1024;
939
940 buf_chunk = kmalloc(chunk, GFP_KERNEL);
941 if (!buf_chunk) {
942 ret = -ENOMEM;
943 goto out;
944 }
945 kfree(tty->write_buf);
946 tty->write_cnt = chunk;
947 tty->write_buf = buf_chunk;
948 }
949
950
951 for (;;) {
952 size_t size = count;
953 if (size > chunk)
954 size = chunk;
955 ret = -EFAULT;
956 if (copy_from_user(tty->write_buf, buf, size))
957 break;
958 ret = write(tty, file, tty->write_buf, size);
959 if (ret <= 0)
960 break;
961 written += ret;
962 buf += ret;
963 count -= ret;
964 if (!count)
965 break;
966 ret = -ERESTARTSYS;
967 if (signal_pending(current))
968 break;
969 cond_resched();
970 }
971 if (written) {
972 tty_update_time(&file_inode(file)->i_mtime);
973 ret = written;
974 }
975out:
976 tty_write_unlock(tty);
977 return ret;
978}
979
980
981
982
983
984
985
986
987
988
989
990
991
992void tty_write_message(struct tty_struct *tty, char *msg)
993{
994 if (tty) {
995 mutex_lock(&tty->atomic_write_lock);
996 tty_lock(tty);
997 if (tty->ops->write && tty->count > 0)
998 tty->ops->write(tty, msg, strlen(msg));
999 tty_unlock(tty);
1000 tty_write_unlock(tty);
1001 }
1002 return;
1003}
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022static ssize_t tty_write(struct file *file, const char __user *buf,
1023 size_t count, loff_t *ppos)
1024{
1025 struct tty_struct *tty = file_tty(file);
1026 struct tty_ldisc *ld;
1027 ssize_t ret;
1028
1029 if (tty_paranoia_check(tty, file_inode(file), "tty_write"))
1030 return -EIO;
1031 if (!tty || !tty->ops->write || tty_io_error(tty))
1032 return -EIO;
1033
1034 if (tty->ops->write_room == NULL)
1035 tty_err(tty, "missing write_room method\n");
1036 ld = tty_ldisc_ref_wait(tty);
1037 if (!ld)
1038 return hung_up_tty_write(file, buf, count, ppos);
1039 if (!ld->ops->write)
1040 ret = -EIO;
1041 else
1042 ret = do_tty_write(ld->ops->write, tty, file, buf, count);
1043 tty_ldisc_deref(ld);
1044 return ret;
1045}
1046
1047ssize_t redirected_tty_write(struct file *file, const char __user *buf,
1048 size_t count, loff_t *ppos)
1049{
1050 struct file *p = NULL;
1051
1052 spin_lock(&redirect_lock);
1053 if (redirect)
1054 p = get_file(redirect);
1055 spin_unlock(&redirect_lock);
1056
1057 if (p) {
1058 ssize_t res;
1059 res = vfs_write(p, buf, count, &p->f_pos);
1060 fput(p);
1061 return res;
1062 }
1063 return tty_write(file, buf, count, ppos);
1064}
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074int tty_send_xchar(struct tty_struct *tty, char ch)
1075{
1076 int was_stopped = tty->stopped;
1077
1078 if (tty->ops->send_xchar) {
1079 down_read(&tty->termios_rwsem);
1080 tty->ops->send_xchar(tty, ch);
1081 up_read(&tty->termios_rwsem);
1082 return 0;
1083 }
1084
1085 if (tty_write_lock(tty, 0) < 0)
1086 return -ERESTARTSYS;
1087
1088 down_read(&tty->termios_rwsem);
1089 if (was_stopped)
1090 start_tty(tty);
1091 tty->ops->write(tty, &ch, 1);
1092 if (was_stopped)
1093 stop_tty(tty);
1094 up_read(&tty->termios_rwsem);
1095 tty_write_unlock(tty);
1096 return 0;
1097}
1098
1099static char ptychar[] = "pqrstuvwxyzabcde";
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112static void pty_line_name(struct tty_driver *driver, int index, char *p)
1113{
1114 int i = index + driver->name_base;
1115
1116 sprintf(p, "%s%c%x",
1117 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1118 ptychar[i >> 4 & 0xf], i & 0xf);
1119}
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132static ssize_t tty_line_name(struct tty_driver *driver, int index, char *p)
1133{
1134 if (driver->flags & TTY_DRIVER_UNNUMBERED_NODE)
1135 return sprintf(p, "%s", driver->name);
1136 else
1137 return sprintf(p, "%s%d", driver->name,
1138 index + driver->name_base);
1139}
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver,
1152 struct file *file, int idx)
1153{
1154 struct tty_struct *tty;
1155
1156 if (driver->ops->lookup)
1157 if (!file)
1158 tty = ERR_PTR(-EIO);
1159 else
1160 tty = driver->ops->lookup(driver, file, idx);
1161 else
1162 tty = driver->ttys[idx];
1163
1164 if (!IS_ERR(tty))
1165 tty_kref_get(tty);
1166 return tty;
1167}
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177void tty_init_termios(struct tty_struct *tty)
1178{
1179 struct ktermios *tp;
1180 int idx = tty->index;
1181
1182 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
1183 tty->termios = tty->driver->init_termios;
1184 else {
1185
1186 tp = tty->driver->termios[idx];
1187 if (tp != NULL) {
1188 tty->termios = *tp;
1189 tty->termios.c_line = tty->driver->init_termios.c_line;
1190 } else
1191 tty->termios = tty->driver->init_termios;
1192 }
1193
1194 tty->termios.c_ispeed = tty_termios_input_baud_rate(&tty->termios);
1195 tty->termios.c_ospeed = tty_termios_baud_rate(&tty->termios);
1196}
1197EXPORT_SYMBOL_GPL(tty_init_termios);
1198
1199int tty_standard_install(struct tty_driver *driver, struct tty_struct *tty)
1200{
1201 tty_init_termios(tty);
1202 tty_driver_kref_get(driver);
1203 tty->count++;
1204 driver->ttys[tty->index] = tty;
1205 return 0;
1206}
1207EXPORT_SYMBOL_GPL(tty_standard_install);
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221static int tty_driver_install_tty(struct tty_driver *driver,
1222 struct tty_struct *tty)
1223{
1224 return driver->ops->install ? driver->ops->install(driver, tty) :
1225 tty_standard_install(driver, tty);
1226}
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238static void tty_driver_remove_tty(struct tty_driver *driver, struct tty_struct *tty)
1239{
1240 if (driver->ops->remove)
1241 driver->ops->remove(driver, tty);
1242 else
1243 driver->ttys[tty->index] = NULL;
1244}
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255static int tty_reopen(struct tty_struct *tty)
1256{
1257 struct tty_driver *driver = tty->driver;
1258 int retval;
1259
1260 if (driver->type == TTY_DRIVER_TYPE_PTY &&
1261 driver->subtype == PTY_TYPE_MASTER)
1262 return -EIO;
1263
1264 if (!tty->count)
1265 return -EAGAIN;
1266
1267 if (test_bit(TTY_EXCLUSIVE, &tty->flags) && !capable(CAP_SYS_ADMIN))
1268 return -EBUSY;
1269
1270 tty->count++;
1271
1272 if (tty->ldisc)
1273 return 0;
1274
1275 retval = tty_ldisc_reinit(tty, tty->termios.c_line);
1276 if (retval)
1277 tty->count--;
1278
1279 return retval;
1280}
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx)
1307{
1308 struct tty_struct *tty;
1309 int retval;
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319 if (!try_module_get(driver->owner))
1320 return ERR_PTR(-ENODEV);
1321
1322 tty = alloc_tty_struct(driver, idx);
1323 if (!tty) {
1324 retval = -ENOMEM;
1325 goto err_module_put;
1326 }
1327
1328 tty_lock(tty);
1329 retval = tty_driver_install_tty(driver, tty);
1330 if (retval < 0)
1331 goto err_free_tty;
1332
1333 if (!tty->port)
1334 tty->port = driver->ports[idx];
1335
1336 WARN_RATELIMIT(!tty->port,
1337 "%s: %s driver does not set tty->port. This will crash the kernel later. Fix the driver!\n",
1338 __func__, tty->driver->name);
1339
1340 retval = tty_ldisc_lock(tty, 5 * HZ);
1341 if (retval)
1342 goto err_release_lock;
1343 tty->port->itty = tty;
1344
1345
1346
1347
1348
1349
1350 retval = tty_ldisc_setup(tty, tty->link);
1351 if (retval)
1352 goto err_release_tty;
1353 tty_ldisc_unlock(tty);
1354
1355 return tty;
1356
1357err_free_tty:
1358 tty_unlock(tty);
1359 free_tty_struct(tty);
1360err_module_put:
1361 module_put(driver->owner);
1362 return ERR_PTR(retval);
1363
1364
1365err_release_tty:
1366 tty_ldisc_unlock(tty);
1367 tty_info_ratelimited(tty, "ldisc open failed (%d), clearing slot %d\n",
1368 retval, idx);
1369err_release_lock:
1370 tty_unlock(tty);
1371 release_tty(tty, idx);
1372 return ERR_PTR(retval);
1373}
1374
1375static void tty_free_termios(struct tty_struct *tty)
1376{
1377 struct ktermios *tp;
1378 int idx = tty->index;
1379
1380
1381 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
1382 return;
1383
1384
1385 tp = tty->driver->termios[idx];
1386 if (tp == NULL) {
1387 tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
1388 if (tp == NULL)
1389 return;
1390 tty->driver->termios[idx] = tp;
1391 }
1392 *tp = tty->termios;
1393}
1394
1395
1396
1397
1398
1399
1400
1401static void tty_flush_works(struct tty_struct *tty)
1402{
1403 flush_work(&tty->SAK_work);
1404 flush_work(&tty->hangup_work);
1405 if (tty->link) {
1406 flush_work(&tty->link->SAK_work);
1407 flush_work(&tty->link->hangup_work);
1408 }
1409}
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426static void release_one_tty(struct work_struct *work)
1427{
1428 struct tty_struct *tty =
1429 container_of(work, struct tty_struct, hangup_work);
1430 struct tty_driver *driver = tty->driver;
1431 struct module *owner = driver->owner;
1432
1433 if (tty->ops->cleanup)
1434 tty->ops->cleanup(tty);
1435
1436 tty->magic = 0;
1437 tty_driver_kref_put(driver);
1438 module_put(owner);
1439
1440 spin_lock(&tty->files_lock);
1441 list_del_init(&tty->tty_files);
1442 spin_unlock(&tty->files_lock);
1443
1444 put_pid(tty->pgrp);
1445 put_pid(tty->session);
1446 free_tty_struct(tty);
1447}
1448
1449static void queue_release_one_tty(struct kref *kref)
1450{
1451 struct tty_struct *tty = container_of(kref, struct tty_struct, kref);
1452
1453
1454
1455 INIT_WORK(&tty->hangup_work, release_one_tty);
1456 schedule_work(&tty->hangup_work);
1457}
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467void tty_kref_put(struct tty_struct *tty)
1468{
1469 if (tty)
1470 kref_put(&tty->kref, queue_release_one_tty);
1471}
1472EXPORT_SYMBOL(tty_kref_put);
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486static void release_tty(struct tty_struct *tty, int idx)
1487{
1488
1489 WARN_ON(tty->index != idx);
1490 WARN_ON(!mutex_is_locked(&tty_mutex));
1491 if (tty->ops->shutdown)
1492 tty->ops->shutdown(tty);
1493 tty_free_termios(tty);
1494 tty_driver_remove_tty(tty->driver, tty);
1495 tty->port->itty = NULL;
1496 if (tty->link)
1497 tty->link->port->itty = NULL;
1498 tty_buffer_cancel_work(tty->port);
1499 if (tty->link)
1500 tty_buffer_cancel_work(tty->link->port);
1501
1502 tty_kref_put(tty->link);
1503 tty_kref_put(tty);
1504}
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515static int tty_release_checks(struct tty_struct *tty, int idx)
1516{
1517#ifdef TTY_PARANOIA_CHECK
1518 if (idx < 0 || idx >= tty->driver->num) {
1519 tty_debug(tty, "bad idx %d\n", idx);
1520 return -1;
1521 }
1522
1523
1524 if (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)
1525 return 0;
1526
1527 if (tty != tty->driver->ttys[idx]) {
1528 tty_debug(tty, "bad driver table[%d] = %p\n",
1529 idx, tty->driver->ttys[idx]);
1530 return -1;
1531 }
1532 if (tty->driver->other) {
1533 struct tty_struct *o_tty = tty->link;
1534
1535 if (o_tty != tty->driver->other->ttys[idx]) {
1536 tty_debug(tty, "bad other table[%d] = %p\n",
1537 idx, tty->driver->other->ttys[idx]);
1538 return -1;
1539 }
1540 if (o_tty->link != tty) {
1541 tty_debug(tty, "bad link = %p\n", o_tty->link);
1542 return -1;
1543 }
1544 }
1545#endif
1546 return 0;
1547}
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557void tty_kclose(struct tty_struct *tty)
1558{
1559
1560
1561
1562 tty_ldisc_release(tty);
1563
1564
1565 tty_flush_works(tty);
1566
1567 tty_debug_hangup(tty, "freeing structure\n");
1568
1569
1570
1571
1572
1573
1574 mutex_lock(&tty_mutex);
1575 tty_port_set_kopened(tty->port, 0);
1576 release_tty(tty, tty->index);
1577 mutex_unlock(&tty_mutex);
1578}
1579EXPORT_SYMBOL_GPL(tty_kclose);
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589void tty_release_struct(struct tty_struct *tty, int idx)
1590{
1591
1592
1593
1594 tty_ldisc_release(tty);
1595
1596
1597 tty_flush_works(tty);
1598
1599 tty_debug_hangup(tty, "freeing structure\n");
1600
1601
1602
1603
1604
1605
1606 mutex_lock(&tty_mutex);
1607 release_tty(tty, idx);
1608 mutex_unlock(&tty_mutex);
1609}
1610EXPORT_SYMBOL_GPL(tty_release_struct);
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631int tty_release(struct inode *inode, struct file *filp)
1632{
1633 struct tty_struct *tty = file_tty(filp);
1634 struct tty_struct *o_tty = NULL;
1635 int do_sleep, final;
1636 int idx;
1637 long timeout = 0;
1638 int once = 1;
1639
1640 if (tty_paranoia_check(tty, inode, __func__))
1641 return 0;
1642
1643 tty_lock(tty);
1644 check_tty_count(tty, __func__);
1645
1646 __tty_fasync(-1, filp, 0);
1647
1648 idx = tty->index;
1649 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1650 tty->driver->subtype == PTY_TYPE_MASTER)
1651 o_tty = tty->link;
1652
1653 if (tty_release_checks(tty, idx)) {
1654 tty_unlock(tty);
1655 return 0;
1656 }
1657
1658 tty_debug_hangup(tty, "releasing (count=%d)\n", tty->count);
1659
1660 if (tty->ops->close)
1661 tty->ops->close(tty, filp);
1662
1663
1664 tty_lock_slave(o_tty);
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679 while (1) {
1680 do_sleep = 0;
1681
1682 if (tty->count <= 1) {
1683 if (waitqueue_active(&tty->read_wait)) {
1684 wake_up_poll(&tty->read_wait, EPOLLIN);
1685 do_sleep++;
1686 }
1687 if (waitqueue_active(&tty->write_wait)) {
1688 wake_up_poll(&tty->write_wait, EPOLLOUT);
1689 do_sleep++;
1690 }
1691 }
1692 if (o_tty && o_tty->count <= 1) {
1693 if (waitqueue_active(&o_tty->read_wait)) {
1694 wake_up_poll(&o_tty->read_wait, EPOLLIN);
1695 do_sleep++;
1696 }
1697 if (waitqueue_active(&o_tty->write_wait)) {
1698 wake_up_poll(&o_tty->write_wait, EPOLLOUT);
1699 do_sleep++;
1700 }
1701 }
1702 if (!do_sleep)
1703 break;
1704
1705 if (once) {
1706 once = 0;
1707 tty_warn(tty, "read/write wait queue active!\n");
1708 }
1709 schedule_timeout_killable(timeout);
1710 if (timeout < 120 * HZ)
1711 timeout = 2 * timeout + 1;
1712 else
1713 timeout = MAX_SCHEDULE_TIMEOUT;
1714 }
1715
1716 if (o_tty) {
1717 if (--o_tty->count < 0) {
1718 tty_warn(tty, "bad slave count (%d)\n", o_tty->count);
1719 o_tty->count = 0;
1720 }
1721 }
1722 if (--tty->count < 0) {
1723 tty_warn(tty, "bad tty->count (%d)\n", tty->count);
1724 tty->count = 0;
1725 }
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736 tty_del_file(filp);
1737
1738
1739
1740
1741
1742
1743
1744
1745 if (!tty->count) {
1746 read_lock(&tasklist_lock);
1747 session_clear_tty(tty->session);
1748 if (o_tty)
1749 session_clear_tty(o_tty->session);
1750 read_unlock(&tasklist_lock);
1751 }
1752
1753
1754 final = !tty->count && !(o_tty && o_tty->count);
1755
1756 tty_unlock_slave(o_tty);
1757 tty_unlock(tty);
1758
1759
1760
1761
1762 if (!final)
1763 return 0;
1764
1765 tty_debug_hangup(tty, "final close\n");
1766
1767 tty_release_struct(tty, idx);
1768 return 0;
1769}
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782static struct tty_struct *tty_open_current_tty(dev_t device, struct file *filp)
1783{
1784 struct tty_struct *tty;
1785 int retval;
1786
1787 if (device != MKDEV(TTYAUX_MAJOR, 0))
1788 return NULL;
1789
1790 tty = get_current_tty();
1791 if (!tty)
1792 return ERR_PTR(-ENXIO);
1793
1794 filp->f_flags |= O_NONBLOCK;
1795
1796 tty_lock(tty);
1797 tty_kref_put(tty);
1798
1799 retval = tty_reopen(tty);
1800 if (retval < 0) {
1801 tty_unlock(tty);
1802 tty = ERR_PTR(retval);
1803 }
1804 return tty;
1805}
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819static struct tty_driver *tty_lookup_driver(dev_t device, struct file *filp,
1820 int *index)
1821{
1822 struct tty_driver *driver;
1823
1824 switch (device) {
1825#ifdef CONFIG_VT
1826 case MKDEV(TTY_MAJOR, 0): {
1827 extern struct tty_driver *console_driver;
1828 driver = tty_driver_kref_get(console_driver);
1829 *index = fg_console;
1830 break;
1831 }
1832#endif
1833 case MKDEV(TTYAUX_MAJOR, 1): {
1834 struct tty_driver *console_driver = console_device(index);
1835 if (console_driver) {
1836 driver = tty_driver_kref_get(console_driver);
1837 if (driver && filp) {
1838
1839 filp->f_flags |= O_NONBLOCK;
1840 break;
1841 }
1842 }
1843 return ERR_PTR(-ENODEV);
1844 }
1845 default:
1846 driver = get_tty_driver(device, index);
1847 if (!driver)
1848 return ERR_PTR(-ENODEV);
1849 break;
1850 }
1851 return driver;
1852}
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869struct tty_struct *tty_kopen(dev_t device)
1870{
1871 struct tty_struct *tty;
1872 struct tty_driver *driver = NULL;
1873 int index = -1;
1874
1875 mutex_lock(&tty_mutex);
1876 driver = tty_lookup_driver(device, NULL, &index);
1877 if (IS_ERR(driver)) {
1878 mutex_unlock(&tty_mutex);
1879 return ERR_CAST(driver);
1880 }
1881
1882
1883 tty = tty_driver_lookup_tty(driver, NULL, index);
1884 if (IS_ERR(tty))
1885 goto out;
1886
1887 if (tty) {
1888
1889 tty_kref_put(tty);
1890 tty = ERR_PTR(-EBUSY);
1891 } else {
1892 tty = tty_init_dev(driver, index);
1893 if (IS_ERR(tty))
1894 goto out;
1895 tty_port_set_kopened(tty->port, 1);
1896 }
1897out:
1898 mutex_unlock(&tty_mutex);
1899 tty_driver_kref_put(driver);
1900 return tty;
1901}
1902EXPORT_SYMBOL_GPL(tty_kopen);
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920static struct tty_struct *tty_open_by_driver(dev_t device, struct inode *inode,
1921 struct file *filp)
1922{
1923 struct tty_struct *tty;
1924 struct tty_driver *driver = NULL;
1925 int index = -1;
1926 int retval;
1927
1928 mutex_lock(&tty_mutex);
1929 driver = tty_lookup_driver(device, filp, &index);
1930 if (IS_ERR(driver)) {
1931 mutex_unlock(&tty_mutex);
1932 return ERR_CAST(driver);
1933 }
1934
1935
1936 tty = tty_driver_lookup_tty(driver, filp, index);
1937 if (IS_ERR(tty)) {
1938 mutex_unlock(&tty_mutex);
1939 goto out;
1940 }
1941
1942 if (tty) {
1943 if (tty_port_kopened(tty->port)) {
1944 tty_kref_put(tty);
1945 mutex_unlock(&tty_mutex);
1946 tty = ERR_PTR(-EBUSY);
1947 goto out;
1948 }
1949 mutex_unlock(&tty_mutex);
1950 retval = tty_lock_interruptible(tty);
1951 tty_kref_put(tty);
1952 if (retval) {
1953 if (retval == -EINTR)
1954 retval = -ERESTARTSYS;
1955 tty = ERR_PTR(retval);
1956 goto out;
1957 }
1958 retval = tty_reopen(tty);
1959 if (retval < 0) {
1960 tty_unlock(tty);
1961 tty = ERR_PTR(retval);
1962 }
1963 } else {
1964 tty = tty_init_dev(driver, index);
1965 mutex_unlock(&tty_mutex);
1966 }
1967out:
1968 tty_driver_kref_put(driver);
1969 return tty;
1970}
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996static int tty_open(struct inode *inode, struct file *filp)
1997{
1998 struct tty_struct *tty;
1999 int noctty, retval;
2000 dev_t device = inode->i_rdev;
2001 unsigned saved_flags = filp->f_flags;
2002
2003 nonseekable_open(inode, filp);
2004
2005retry_open:
2006 retval = tty_alloc_file(filp);
2007 if (retval)
2008 return -ENOMEM;
2009
2010 tty = tty_open_current_tty(device, filp);
2011 if (!tty)
2012 tty = tty_open_by_driver(device, inode, filp);
2013
2014 if (IS_ERR(tty)) {
2015 tty_free_file(filp);
2016 retval = PTR_ERR(tty);
2017 if (retval != -EAGAIN || signal_pending(current))
2018 return retval;
2019 schedule();
2020 goto retry_open;
2021 }
2022
2023 tty_add_file(tty, filp);
2024
2025 check_tty_count(tty, __func__);
2026 tty_debug_hangup(tty, "opening (count=%d)\n", tty->count);
2027
2028 if (tty->ops->open)
2029 retval = tty->ops->open(tty, filp);
2030 else
2031 retval = -ENODEV;
2032 filp->f_flags = saved_flags;
2033
2034 if (retval) {
2035 tty_debug_hangup(tty, "open error %d, releasing\n", retval);
2036
2037 tty_unlock(tty);
2038 tty_release(inode, filp);
2039 if (retval != -ERESTARTSYS)
2040 return retval;
2041
2042 if (signal_pending(current))
2043 return retval;
2044
2045 schedule();
2046
2047
2048
2049 if (tty_hung_up_p(filp))
2050 filp->f_op = &tty_fops;
2051 goto retry_open;
2052 }
2053 clear_bit(TTY_HUPPED, &tty->flags);
2054
2055 noctty = (filp->f_flags & O_NOCTTY) ||
2056 (IS_ENABLED(CONFIG_VT) && device == MKDEV(TTY_MAJOR, 0)) ||
2057 device == MKDEV(TTYAUX_MAJOR, 1) ||
2058 (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2059 tty->driver->subtype == PTY_TYPE_MASTER);
2060 if (!noctty)
2061 tty_open_proc_set_tty(filp, tty);
2062 tty_unlock(tty);
2063 return 0;
2064}
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080static __poll_t tty_poll(struct file *filp, poll_table *wait)
2081{
2082 struct tty_struct *tty = file_tty(filp);
2083 struct tty_ldisc *ld;
2084 __poll_t ret = 0;
2085
2086 if (tty_paranoia_check(tty, file_inode(filp), "tty_poll"))
2087 return 0;
2088
2089 ld = tty_ldisc_ref_wait(tty);
2090 if (!ld)
2091 return hung_up_tty_poll(filp, wait);
2092 if (ld->ops->poll)
2093 ret = ld->ops->poll(tty, filp, wait);
2094 tty_ldisc_deref(ld);
2095 return ret;
2096}
2097
2098static int __tty_fasync(int fd, struct file *filp, int on)
2099{
2100 struct tty_struct *tty = file_tty(filp);
2101 unsigned long flags;
2102 int retval = 0;
2103
2104 if (tty_paranoia_check(tty, file_inode(filp), "tty_fasync"))
2105 goto out;
2106
2107 retval = fasync_helper(fd, filp, on, &tty->fasync);
2108 if (retval <= 0)
2109 goto out;
2110
2111 if (on) {
2112 enum pid_type type;
2113 struct pid *pid;
2114
2115 spin_lock_irqsave(&tty->ctrl_lock, flags);
2116 if (tty->pgrp) {
2117 pid = tty->pgrp;
2118 type = PIDTYPE_PGID;
2119 } else {
2120 pid = task_pid(current);
2121 type = PIDTYPE_TGID;
2122 }
2123 get_pid(pid);
2124 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2125 __f_setown(filp, pid, type, 0);
2126 put_pid(pid);
2127 retval = 0;
2128 }
2129out:
2130 return retval;
2131}
2132
2133static int tty_fasync(int fd, struct file *filp, int on)
2134{
2135 struct tty_struct *tty = file_tty(filp);
2136 int retval = -ENOTTY;
2137
2138 tty_lock(tty);
2139 if (!tty_hung_up_p(filp))
2140 retval = __tty_fasync(fd, filp, on);
2141 tty_unlock(tty);
2142
2143 return retval;
2144}
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163static int tiocsti(struct tty_struct *tty, char __user *p)
2164{
2165 char ch, mbz = 0;
2166 struct tty_ldisc *ld;
2167
2168 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
2169 return -EPERM;
2170 if (get_user(ch, p))
2171 return -EFAULT;
2172 tty_audit_tiocsti(tty, ch);
2173 ld = tty_ldisc_ref_wait(tty);
2174 if (!ld)
2175 return -EIO;
2176 ld->ops->receive_buf(tty, &ch, &mbz, 1);
2177 tty_ldisc_deref(ld);
2178 return 0;
2179}
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg)
2193{
2194 int err;
2195
2196 mutex_lock(&tty->winsize_mutex);
2197 err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
2198 mutex_unlock(&tty->winsize_mutex);
2199
2200 return err ? -EFAULT: 0;
2201}
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213int tty_do_resize(struct tty_struct *tty, struct winsize *ws)
2214{
2215 struct pid *pgrp;
2216
2217
2218 mutex_lock(&tty->winsize_mutex);
2219 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
2220 goto done;
2221
2222
2223 pgrp = tty_get_pgrp(tty);
2224 if (pgrp)
2225 kill_pgrp(pgrp, SIGWINCH, 1);
2226 put_pid(pgrp);
2227
2228 tty->winsize = *ws;
2229done:
2230 mutex_unlock(&tty->winsize_mutex);
2231 return 0;
2232}
2233EXPORT_SYMBOL(tty_do_resize);
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250static int tiocswinsz(struct tty_struct *tty, struct winsize __user *arg)
2251{
2252 struct winsize tmp_ws;
2253 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
2254 return -EFAULT;
2255
2256 if (tty->ops->resize)
2257 return tty->ops->resize(tty, &tmp_ws);
2258 else
2259 return tty_do_resize(tty, &tmp_ws);
2260}
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271static int tioccons(struct file *file)
2272{
2273 if (!capable(CAP_SYS_ADMIN))
2274 return -EPERM;
2275 if (file->f_op->write == redirected_tty_write) {
2276 struct file *f;
2277 spin_lock(&redirect_lock);
2278 f = redirect;
2279 redirect = NULL;
2280 spin_unlock(&redirect_lock);
2281 if (f)
2282 fput(f);
2283 return 0;
2284 }
2285 spin_lock(&redirect_lock);
2286 if (redirect) {
2287 spin_unlock(&redirect_lock);
2288 return -EBUSY;
2289 }
2290 redirect = get_file(file);
2291 spin_unlock(&redirect_lock);
2292 return 0;
2293}
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307static int fionbio(struct file *file, int __user *p)
2308{
2309 int nonblock;
2310
2311 if (get_user(nonblock, p))
2312 return -EFAULT;
2313
2314 spin_lock(&file->f_lock);
2315 if (nonblock)
2316 file->f_flags |= O_NONBLOCK;
2317 else
2318 file->f_flags &= ~O_NONBLOCK;
2319 spin_unlock(&file->f_lock);
2320 return 0;
2321}
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333static int tiocsetd(struct tty_struct *tty, int __user *p)
2334{
2335 int disc;
2336 int ret;
2337
2338 if (get_user(disc, p))
2339 return -EFAULT;
2340
2341 ret = tty_set_ldisc(tty, disc);
2342
2343 return ret;
2344}
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357static int tiocgetd(struct tty_struct *tty, int __user *p)
2358{
2359 struct tty_ldisc *ld;
2360 int ret;
2361
2362 ld = tty_ldisc_ref_wait(tty);
2363 if (!ld)
2364 return -EIO;
2365 ret = put_user(ld->ops->num, p);
2366 tty_ldisc_deref(ld);
2367 return ret;
2368}
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383static int send_break(struct tty_struct *tty, unsigned int duration)
2384{
2385 int retval;
2386
2387 if (tty->ops->break_ctl == NULL)
2388 return 0;
2389
2390 if (tty->driver->flags & TTY_DRIVER_HARDWARE_BREAK)
2391 retval = tty->ops->break_ctl(tty, duration);
2392 else {
2393
2394 if (tty_write_lock(tty, 0) < 0)
2395 return -EINTR;
2396 retval = tty->ops->break_ctl(tty, -1);
2397 if (retval)
2398 goto out;
2399 if (!signal_pending(current))
2400 msleep_interruptible(duration);
2401 retval = tty->ops->break_ctl(tty, 0);
2402out:
2403 tty_write_unlock(tty);
2404 if (signal_pending(current))
2405 retval = -EINTR;
2406 }
2407 return retval;
2408}
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422static int tty_tiocmget(struct tty_struct *tty, int __user *p)
2423{
2424 int retval = -EINVAL;
2425
2426 if (tty->ops->tiocmget) {
2427 retval = tty->ops->tiocmget(tty);
2428
2429 if (retval >= 0)
2430 retval = put_user(retval, p);
2431 }
2432 return retval;
2433}
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447static int tty_tiocmset(struct tty_struct *tty, unsigned int cmd,
2448 unsigned __user *p)
2449{
2450 int retval;
2451 unsigned int set, clear, val;
2452
2453 if (tty->ops->tiocmset == NULL)
2454 return -EINVAL;
2455
2456 retval = get_user(val, p);
2457 if (retval)
2458 return retval;
2459 set = clear = 0;
2460 switch (cmd) {
2461 case TIOCMBIS:
2462 set = val;
2463 break;
2464 case TIOCMBIC:
2465 clear = val;
2466 break;
2467 case TIOCMSET:
2468 set = val;
2469 clear = ~val;
2470 break;
2471 }
2472 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2473 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2474 return tty->ops->tiocmset(tty, set, clear);
2475}
2476
2477static int tty_tiocgicount(struct tty_struct *tty, void __user *arg)
2478{
2479 int retval = -EINVAL;
2480 struct serial_icounter_struct icount;
2481 memset(&icount, 0, sizeof(icount));
2482 if (tty->ops->get_icount)
2483 retval = tty->ops->get_icount(tty, &icount);
2484 if (retval != 0)
2485 return retval;
2486 if (copy_to_user(arg, &icount, sizeof(icount)))
2487 return -EFAULT;
2488 return 0;
2489}
2490
2491static void tty_warn_deprecated_flags(struct serial_struct __user *ss)
2492{
2493 static DEFINE_RATELIMIT_STATE(depr_flags,
2494 DEFAULT_RATELIMIT_INTERVAL,
2495 DEFAULT_RATELIMIT_BURST);
2496 char comm[TASK_COMM_LEN];
2497 int flags;
2498
2499 if (get_user(flags, &ss->flags))
2500 return;
2501
2502 flags &= ASYNC_DEPRECATED;
2503
2504 if (flags && __ratelimit(&depr_flags))
2505 pr_warn("%s: '%s' is using deprecated serial flags (with no effect): %.8x\n",
2506 __func__, get_task_comm(comm, current), flags);
2507}
2508
2509
2510
2511
2512
2513static struct tty_struct *tty_pair_get_tty(struct tty_struct *tty)
2514{
2515 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2516 tty->driver->subtype == PTY_TYPE_MASTER)
2517 tty = tty->link;
2518 return tty;
2519}
2520
2521
2522
2523
2524long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2525{
2526 struct tty_struct *tty = file_tty(file);
2527 struct tty_struct *real_tty;
2528 void __user *p = (void __user *)arg;
2529 int retval;
2530 struct tty_ldisc *ld;
2531
2532 if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl"))
2533 return -EINVAL;
2534
2535 real_tty = tty_pair_get_tty(tty);
2536
2537
2538
2539
2540 switch (cmd) {
2541 case TIOCSETD:
2542 case TIOCSBRK:
2543 case TIOCCBRK:
2544 case TCSBRK:
2545 case TCSBRKP:
2546 retval = tty_check_change(tty);
2547 if (retval)
2548 return retval;
2549 if (cmd != TIOCCBRK) {
2550 tty_wait_until_sent(tty, 0);
2551 if (signal_pending(current))
2552 return -EINTR;
2553 }
2554 break;
2555 }
2556
2557
2558
2559
2560 switch (cmd) {
2561 case TIOCSTI:
2562 return tiocsti(tty, p);
2563 case TIOCGWINSZ:
2564 return tiocgwinsz(real_tty, p);
2565 case TIOCSWINSZ:
2566 return tiocswinsz(real_tty, p);
2567 case TIOCCONS:
2568 return real_tty != tty ? -EINVAL : tioccons(file);
2569 case FIONBIO:
2570 return fionbio(file, p);
2571 case TIOCEXCL:
2572 set_bit(TTY_EXCLUSIVE, &tty->flags);
2573 return 0;
2574 case TIOCNXCL:
2575 clear_bit(TTY_EXCLUSIVE, &tty->flags);
2576 return 0;
2577 case TIOCGEXCL:
2578 {
2579 int excl = test_bit(TTY_EXCLUSIVE, &tty->flags);
2580 return put_user(excl, (int __user *)p);
2581 }
2582 case TIOCGETD:
2583 return tiocgetd(tty, p);
2584 case TIOCSETD:
2585 return tiocsetd(tty, p);
2586 case TIOCVHANGUP:
2587 if (!capable(CAP_SYS_ADMIN))
2588 return -EPERM;
2589 tty_vhangup(tty);
2590 return 0;
2591 case TIOCGDEV:
2592 {
2593 unsigned int ret = new_encode_dev(tty_devnum(real_tty));
2594 return put_user(ret, (unsigned int __user *)p);
2595 }
2596
2597
2598
2599 case TIOCSBRK:
2600 if (tty->ops->break_ctl)
2601 return tty->ops->break_ctl(tty, -1);
2602 return 0;
2603 case TIOCCBRK:
2604 if (tty->ops->break_ctl)
2605 return tty->ops->break_ctl(tty, 0);
2606 return 0;
2607 case TCSBRK:
2608
2609
2610
2611
2612 if (!arg)
2613 return send_break(tty, 250);
2614 return 0;
2615 case TCSBRKP:
2616 return send_break(tty, arg ? arg*100 : 250);
2617
2618 case TIOCMGET:
2619 return tty_tiocmget(tty, p);
2620 case TIOCMSET:
2621 case TIOCMBIC:
2622 case TIOCMBIS:
2623 return tty_tiocmset(tty, cmd, p);
2624 case TIOCGICOUNT:
2625 retval = tty_tiocgicount(tty, p);
2626
2627 if (retval != -EINVAL)
2628 return retval;
2629 break;
2630 case TCFLSH:
2631 switch (arg) {
2632 case TCIFLUSH:
2633 case TCIOFLUSH:
2634
2635 tty_buffer_flush(tty, NULL);
2636 break;
2637 }
2638 break;
2639 case TIOCSSERIAL:
2640 tty_warn_deprecated_flags(p);
2641 break;
2642 case TIOCGPTPEER:
2643
2644 return ptm_open_peer(file, tty, (int)arg);
2645 default:
2646 retval = tty_jobctrl_ioctl(tty, real_tty, file, cmd, arg);
2647 if (retval != -ENOIOCTLCMD)
2648 return retval;
2649 }
2650 if (tty->ops->ioctl) {
2651 retval = tty->ops->ioctl(tty, cmd, arg);
2652 if (retval != -ENOIOCTLCMD)
2653 return retval;
2654 }
2655 ld = tty_ldisc_ref_wait(tty);
2656 if (!ld)
2657 return hung_up_tty_ioctl(file, cmd, arg);
2658 retval = -EINVAL;
2659 if (ld->ops->ioctl) {
2660 retval = ld->ops->ioctl(tty, file, cmd, arg);
2661 if (retval == -ENOIOCTLCMD)
2662 retval = -ENOTTY;
2663 }
2664 tty_ldisc_deref(ld);
2665 return retval;
2666}
2667
2668#ifdef CONFIG_COMPAT
2669static long tty_compat_ioctl(struct file *file, unsigned int cmd,
2670 unsigned long arg)
2671{
2672 struct tty_struct *tty = file_tty(file);
2673 struct tty_ldisc *ld;
2674 int retval = -ENOIOCTLCMD;
2675
2676 if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl"))
2677 return -EINVAL;
2678
2679 if (tty->ops->compat_ioctl) {
2680 retval = tty->ops->compat_ioctl(tty, cmd, arg);
2681 if (retval != -ENOIOCTLCMD)
2682 return retval;
2683 }
2684
2685 ld = tty_ldisc_ref_wait(tty);
2686 if (!ld)
2687 return hung_up_tty_compat_ioctl(file, cmd, arg);
2688 if (ld->ops->compat_ioctl)
2689 retval = ld->ops->compat_ioctl(tty, file, cmd, arg);
2690 else
2691 retval = n_tty_compat_ioctl_helper(tty, file, cmd, arg);
2692 tty_ldisc_deref(ld);
2693
2694 return retval;
2695}
2696#endif
2697
2698static int this_tty(const void *t, struct file *file, unsigned fd)
2699{
2700 if (likely(file->f_op->read != tty_read))
2701 return 0;
2702 return file_tty(file) != t ? 0 : fd + 1;
2703}
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724void __do_SAK(struct tty_struct *tty)
2725{
2726#ifdef TTY_SOFT_SAK
2727 tty_hangup(tty);
2728#else
2729 struct task_struct *g, *p;
2730 struct pid *session;
2731 int i;
2732
2733 if (!tty)
2734 return;
2735 session = tty->session;
2736
2737 tty_ldisc_flush(tty);
2738
2739 tty_driver_flush_buffer(tty);
2740
2741 read_lock(&tasklist_lock);
2742
2743 do_each_pid_task(session, PIDTYPE_SID, p) {
2744 tty_notice(tty, "SAK: killed process %d (%s): by session\n",
2745 task_pid_nr(p), p->comm);
2746 send_sig(SIGKILL, p, 1);
2747 } while_each_pid_task(session, PIDTYPE_SID, p);
2748
2749
2750 do_each_thread(g, p) {
2751 if (p->signal->tty == tty) {
2752 tty_notice(tty, "SAK: killed process %d (%s): by controlling tty\n",
2753 task_pid_nr(p), p->comm);
2754 send_sig(SIGKILL, p, 1);
2755 continue;
2756 }
2757 task_lock(p);
2758 i = iterate_fd(p->files, 0, this_tty, tty);
2759 if (i != 0) {
2760 tty_notice(tty, "SAK: killed process %d (%s): by fd#%d\n",
2761 task_pid_nr(p), p->comm, i - 1);
2762 force_sig(SIGKILL, p);
2763 }
2764 task_unlock(p);
2765 } while_each_thread(g, p);
2766 read_unlock(&tasklist_lock);
2767#endif
2768}
2769
2770static void do_SAK_work(struct work_struct *work)
2771{
2772 struct tty_struct *tty =
2773 container_of(work, struct tty_struct, SAK_work);
2774 __do_SAK(tty);
2775}
2776
2777
2778
2779
2780
2781
2782
2783void do_SAK(struct tty_struct *tty)
2784{
2785 if (!tty)
2786 return;
2787 schedule_work(&tty->SAK_work);
2788}
2789
2790EXPORT_SYMBOL(do_SAK);
2791
2792static int dev_match_devt(struct device *dev, const void *data)
2793{
2794 const dev_t *devt = data;
2795 return dev->devt == *devt;
2796}
2797
2798
2799static struct device *tty_get_device(struct tty_struct *tty)
2800{
2801 dev_t devt = tty_devnum(tty);
2802 return class_find_device(tty_class, NULL, &devt, dev_match_devt);
2803}
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814struct tty_struct *alloc_tty_struct(struct tty_driver *driver, int idx)
2815{
2816 struct tty_struct *tty;
2817
2818 tty = kzalloc(sizeof(*tty), GFP_KERNEL);
2819 if (!tty)
2820 return NULL;
2821
2822 kref_init(&tty->kref);
2823 tty->magic = TTY_MAGIC;
2824 if (tty_ldisc_init(tty)) {
2825 kfree(tty);
2826 return NULL;
2827 }
2828 tty->session = NULL;
2829 tty->pgrp = NULL;
2830 mutex_init(&tty->legacy_mutex);
2831 mutex_init(&tty->throttle_mutex);
2832 init_rwsem(&tty->termios_rwsem);
2833 mutex_init(&tty->winsize_mutex);
2834 init_ldsem(&tty->ldisc_sem);
2835 init_waitqueue_head(&tty->write_wait);
2836 init_waitqueue_head(&tty->read_wait);
2837 INIT_WORK(&tty->hangup_work, do_tty_hangup);
2838 mutex_init(&tty->atomic_write_lock);
2839 spin_lock_init(&tty->ctrl_lock);
2840 spin_lock_init(&tty->flow_lock);
2841 spin_lock_init(&tty->files_lock);
2842 INIT_LIST_HEAD(&tty->tty_files);
2843 INIT_WORK(&tty->SAK_work, do_SAK_work);
2844
2845 tty->driver = driver;
2846 tty->ops = driver->ops;
2847 tty->index = idx;
2848 tty_line_name(driver, idx, tty->name);
2849 tty->dev = tty_get_device(tty);
2850
2851 return tty;
2852}
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866int tty_put_char(struct tty_struct *tty, unsigned char ch)
2867{
2868 if (tty->ops->put_char)
2869 return tty->ops->put_char(tty, ch);
2870 return tty->ops->write(tty, &ch, 1);
2871}
2872EXPORT_SYMBOL_GPL(tty_put_char);
2873
2874struct class *tty_class;
2875
2876static int tty_cdev_add(struct tty_driver *driver, dev_t dev,
2877 unsigned int index, unsigned int count)
2878{
2879 int err;
2880
2881
2882 driver->cdevs[index] = cdev_alloc();
2883 if (!driver->cdevs[index])
2884 return -ENOMEM;
2885 driver->cdevs[index]->ops = &tty_fops;
2886 driver->cdevs[index]->owner = driver->owner;
2887 err = cdev_add(driver->cdevs[index], dev, count);
2888 if (err)
2889 kobject_put(&driver->cdevs[index]->kobj);
2890 return err;
2891}
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912struct device *tty_register_device(struct tty_driver *driver, unsigned index,
2913 struct device *device)
2914{
2915 return tty_register_device_attr(driver, index, device, NULL, NULL);
2916}
2917EXPORT_SYMBOL(tty_register_device);
2918
2919static void tty_device_create_release(struct device *dev)
2920{
2921 dev_dbg(dev, "releasing...\n");
2922 kfree(dev);
2923}
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945struct device *tty_register_device_attr(struct tty_driver *driver,
2946 unsigned index, struct device *device,
2947 void *drvdata,
2948 const struct attribute_group **attr_grp)
2949{
2950 char name[64];
2951 dev_t devt = MKDEV(driver->major, driver->minor_start) + index;
2952 struct ktermios *tp;
2953 struct device *dev;
2954 int retval;
2955
2956 if (index >= driver->num) {
2957 pr_err("%s: Attempt to register invalid tty line number (%d)\n",
2958 driver->name, index);
2959 return ERR_PTR(-EINVAL);
2960 }
2961
2962 if (driver->type == TTY_DRIVER_TYPE_PTY)
2963 pty_line_name(driver, index, name);
2964 else
2965 tty_line_name(driver, index, name);
2966
2967 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2968 if (!dev)
2969 return ERR_PTR(-ENOMEM);
2970
2971 dev->devt = devt;
2972 dev->class = tty_class;
2973 dev->parent = device;
2974 dev->release = tty_device_create_release;
2975 dev_set_name(dev, "%s", name);
2976 dev->groups = attr_grp;
2977 dev_set_drvdata(dev, drvdata);
2978
2979 dev_set_uevent_suppress(dev, 1);
2980
2981 retval = device_register(dev);
2982 if (retval)
2983 goto err_put;
2984
2985 if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
2986
2987
2988
2989
2990 tp = driver->termios[index];
2991 if (tp) {
2992 driver->termios[index] = NULL;
2993 kfree(tp);
2994 }
2995
2996 retval = tty_cdev_add(driver, devt, index, 1);
2997 if (retval)
2998 goto err_del;
2999 }
3000
3001 dev_set_uevent_suppress(dev, 0);
3002 kobject_uevent(&dev->kobj, KOBJ_ADD);
3003
3004 return dev;
3005
3006err_del:
3007 device_del(dev);
3008err_put:
3009 put_device(dev);
3010
3011 return ERR_PTR(retval);
3012}
3013EXPORT_SYMBOL_GPL(tty_register_device_attr);
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026void tty_unregister_device(struct tty_driver *driver, unsigned index)
3027{
3028 device_destroy(tty_class,
3029 MKDEV(driver->major, driver->minor_start) + index);
3030 if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
3031 cdev_del(driver->cdevs[index]);
3032 driver->cdevs[index] = NULL;
3033 }
3034}
3035EXPORT_SYMBOL(tty_unregister_device);
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046struct tty_driver *__tty_alloc_driver(unsigned int lines, struct module *owner,
3047 unsigned long flags)
3048{
3049 struct tty_driver *driver;
3050 unsigned int cdevs = 1;
3051 int err;
3052
3053 if (!lines || (flags & TTY_DRIVER_UNNUMBERED_NODE && lines > 1))
3054 return ERR_PTR(-EINVAL);
3055
3056 driver = kzalloc(sizeof(struct tty_driver), GFP_KERNEL);
3057 if (!driver)
3058 return ERR_PTR(-ENOMEM);
3059
3060 kref_init(&driver->kref);
3061 driver->magic = TTY_DRIVER_MAGIC;
3062 driver->num = lines;
3063 driver->owner = owner;
3064 driver->flags = flags;
3065
3066 if (!(flags & TTY_DRIVER_DEVPTS_MEM)) {
3067 driver->ttys = kcalloc(lines, sizeof(*driver->ttys),
3068 GFP_KERNEL);
3069 driver->termios = kcalloc(lines, sizeof(*driver->termios),
3070 GFP_KERNEL);
3071 if (!driver->ttys || !driver->termios) {
3072 err = -ENOMEM;
3073 goto err_free_all;
3074 }
3075 }
3076
3077 if (!(flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
3078 driver->ports = kcalloc(lines, sizeof(*driver->ports),
3079 GFP_KERNEL);
3080 if (!driver->ports) {
3081 err = -ENOMEM;
3082 goto err_free_all;
3083 }
3084 cdevs = lines;
3085 }
3086
3087 driver->cdevs = kcalloc(cdevs, sizeof(*driver->cdevs), GFP_KERNEL);
3088 if (!driver->cdevs) {
3089 err = -ENOMEM;
3090 goto err_free_all;
3091 }
3092
3093 return driver;
3094err_free_all:
3095 kfree(driver->ports);
3096 kfree(driver->ttys);
3097 kfree(driver->termios);
3098 kfree(driver->cdevs);
3099 kfree(driver);
3100 return ERR_PTR(err);
3101}
3102EXPORT_SYMBOL(__tty_alloc_driver);
3103
3104static void destruct_tty_driver(struct kref *kref)
3105{
3106 struct tty_driver *driver = container_of(kref, struct tty_driver, kref);
3107 int i;
3108 struct ktermios *tp;
3109
3110 if (driver->flags & TTY_DRIVER_INSTALLED) {
3111 for (i = 0; i < driver->num; i++) {
3112 tp = driver->termios[i];
3113 if (tp) {
3114 driver->termios[i] = NULL;
3115 kfree(tp);
3116 }
3117 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
3118 tty_unregister_device(driver, i);
3119 }
3120 proc_tty_unregister_driver(driver);
3121 if (driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)
3122 cdev_del(driver->cdevs[0]);
3123 }
3124 kfree(driver->cdevs);
3125 kfree(driver->ports);
3126 kfree(driver->termios);
3127 kfree(driver->ttys);
3128 kfree(driver);
3129}
3130
3131void tty_driver_kref_put(struct tty_driver *driver)
3132{
3133 kref_put(&driver->kref, destruct_tty_driver);
3134}
3135EXPORT_SYMBOL(tty_driver_kref_put);
3136
3137void tty_set_operations(struct tty_driver *driver,
3138 const struct tty_operations *op)
3139{
3140 driver->ops = op;
3141};
3142EXPORT_SYMBOL(tty_set_operations);
3143
3144void put_tty_driver(struct tty_driver *d)
3145{
3146 tty_driver_kref_put(d);
3147}
3148EXPORT_SYMBOL(put_tty_driver);
3149
3150
3151
3152
3153int tty_register_driver(struct tty_driver *driver)
3154{
3155 int error;
3156 int i;
3157 dev_t dev;
3158 struct device *d;
3159
3160 if (!driver->major) {
3161 error = alloc_chrdev_region(&dev, driver->minor_start,
3162 driver->num, driver->name);
3163 if (!error) {
3164 driver->major = MAJOR(dev);
3165 driver->minor_start = MINOR(dev);
3166 }
3167 } else {
3168 dev = MKDEV(driver->major, driver->minor_start);
3169 error = register_chrdev_region(dev, driver->num, driver->name);
3170 }
3171 if (error < 0)
3172 goto err;
3173
3174 if (driver->flags & TTY_DRIVER_DYNAMIC_ALLOC) {
3175 error = tty_cdev_add(driver, dev, 0, driver->num);
3176 if (error)
3177 goto err_unreg_char;
3178 }
3179
3180 mutex_lock(&tty_mutex);
3181 list_add(&driver->tty_drivers, &tty_drivers);
3182 mutex_unlock(&tty_mutex);
3183
3184 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) {
3185 for (i = 0; i < driver->num; i++) {
3186 d = tty_register_device(driver, i, NULL);
3187 if (IS_ERR(d)) {
3188 error = PTR_ERR(d);
3189 goto err_unreg_devs;
3190 }
3191 }
3192 }
3193 proc_tty_register_driver(driver);
3194 driver->flags |= TTY_DRIVER_INSTALLED;
3195 return 0;
3196
3197err_unreg_devs:
3198 for (i--; i >= 0; i--)
3199 tty_unregister_device(driver, i);
3200
3201 mutex_lock(&tty_mutex);
3202 list_del(&driver->tty_drivers);
3203 mutex_unlock(&tty_mutex);
3204
3205err_unreg_char:
3206 unregister_chrdev_region(dev, driver->num);
3207err:
3208 return error;
3209}
3210EXPORT_SYMBOL(tty_register_driver);
3211
3212
3213
3214
3215int tty_unregister_driver(struct tty_driver *driver)
3216{
3217#if 0
3218
3219 if (driver->refcount)
3220 return -EBUSY;
3221#endif
3222 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
3223 driver->num);
3224 mutex_lock(&tty_mutex);
3225 list_del(&driver->tty_drivers);
3226 mutex_unlock(&tty_mutex);
3227 return 0;
3228}
3229
3230EXPORT_SYMBOL(tty_unregister_driver);
3231
3232dev_t tty_devnum(struct tty_struct *tty)
3233{
3234 return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3235}
3236EXPORT_SYMBOL(tty_devnum);
3237
3238void tty_default_fops(struct file_operations *fops)
3239{
3240 *fops = tty_fops;
3241}
3242
3243static char *tty_devnode(struct device *dev, umode_t *mode)
3244{
3245 if (!mode)
3246 return NULL;
3247 if (dev->devt == MKDEV(TTYAUX_MAJOR, 0) ||
3248 dev->devt == MKDEV(TTYAUX_MAJOR, 2))
3249 *mode = 0666;
3250 return NULL;
3251}
3252
3253static int __init tty_class_init(void)
3254{
3255 tty_class = class_create(THIS_MODULE, "tty");
3256 if (IS_ERR(tty_class))
3257 return PTR_ERR(tty_class);
3258 tty_class->devnode = tty_devnode;
3259 return 0;
3260}
3261
3262postcore_initcall(tty_class_init);
3263
3264
3265static struct cdev tty_cdev, console_cdev;
3266
3267static ssize_t show_cons_active(struct device *dev,
3268 struct device_attribute *attr, char *buf)
3269{
3270 struct console *cs[16];
3271 int i = 0;
3272 struct console *c;
3273 ssize_t count = 0;
3274
3275 console_lock();
3276 for_each_console(c) {
3277 if (!c->device)
3278 continue;
3279 if (!c->write)
3280 continue;
3281 if ((c->flags & CON_ENABLED) == 0)
3282 continue;
3283 cs[i++] = c;
3284 if (i >= ARRAY_SIZE(cs))
3285 break;
3286 }
3287 while (i--) {
3288 int index = cs[i]->index;
3289 struct tty_driver *drv = cs[i]->device(cs[i], &index);
3290
3291
3292 if (drv && (cs[i]->index > 0 || drv->major != TTY_MAJOR))
3293 count += tty_line_name(drv, index, buf + count);
3294 else
3295 count += sprintf(buf + count, "%s%d",
3296 cs[i]->name, cs[i]->index);
3297
3298 count += sprintf(buf + count, "%c", i ? ' ':'\n');
3299 }
3300 console_unlock();
3301
3302 return count;
3303}
3304static DEVICE_ATTR(active, S_IRUGO, show_cons_active, NULL);
3305
3306static struct attribute *cons_dev_attrs[] = {
3307 &dev_attr_active.attr,
3308 NULL
3309};
3310
3311ATTRIBUTE_GROUPS(cons_dev);
3312
3313static struct device *consdev;
3314
3315void console_sysfs_notify(void)
3316{
3317 if (consdev)
3318 sysfs_notify(&consdev->kobj, NULL, "active");
3319}
3320
3321
3322
3323
3324
3325int __init tty_init(void)
3326{
3327 cdev_init(&tty_cdev, &tty_fops);
3328 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3329 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3330 panic("Couldn't register /dev/tty driver\n");
3331 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL, "tty");
3332
3333 cdev_init(&console_cdev, &console_fops);
3334 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3335 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3336 panic("Couldn't register /dev/console driver\n");
3337 consdev = device_create_with_groups(tty_class, NULL,
3338 MKDEV(TTYAUX_MAJOR, 1), NULL,
3339 cons_dev_groups, "console");
3340 if (IS_ERR(consdev))
3341 consdev = NULL;
3342
3343#ifdef CONFIG_VT
3344 vty_init(&console_fops);
3345#endif
3346 return 0;
3347}
3348
3349