2 * linux/drivers/char/tty_io.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
8 * 'tty_io.c' gives an orthogonal feeling to tty's, be they consoles
9 * or rs-channels. It also implements echoing, cooked mode etc.
11 * Kill-line thanks to John T Kohl, who also corrected VMIN = VTIME = 0.
13 * Modified by Theodore Ts'o, 9/14/92, to dynamically allocate the
14 * tty_struct and tty_queue structures. Previously there was an array
15 * of 256 tty_struct's which was statically allocated, and the
16 * tty_queue structures were allocated at boot time. Both are now
17 * dynamically allocated only when the tty is open.
19 * Also restructured routines so that there is more of a separation
20 * between the high-level tty routines (tty_io.c and tty_ioctl.c) and
21 * the low-level tty routines (serial.c, pty.c, console.c). This
22 * makes for cleaner and more compact code. -TYT, 9/17/92
24 * Modified by Fred N. van Kempen, 01/29/93, to add line disciplines
25 * which can be dynamically activated and de-activated by the line
26 * discipline handling modules (like SLIP).
28 * NOTE: pay no attention to the line discipline code (yet); its
29 * interface is still subject to change in this version...
32 * Added functionality to the OPOST tty handling. No delays, but all
33 * other bits should be there.
34 * -- Nick Holloway <alfie@dcs.warwick.ac.uk>, 27th May 1993.
36 * Rewrote canonical mode and added more termios flags.
37 * -- julian@uhunix.uhcc.hawaii.edu (J. Cowley), 13Jan94
39 * Reorganized FASYNC support so mouse code can share it.
40 * -- ctm@ardi.com, 9Sep95
42 * New TIOCLINUX variants added.
43 * -- mj@k332.feld.cvut.cz, 19-Nov-95
45 * Restrict vt switching via ioctl()
46 * -- grif@cs.ucr.edu, 5-Dec-95
48 * Move console and virtual terminal code to more appropriate files,
49 * implement CONFIG_VT and generalize console device interface.
50 * -- Marko Kohtala <Marko.Kohtala@hut.fi>, March 97
52 * Rewrote init_dev and release_dev to eliminate races.
53 * -- Bill Hawes <whawes@star.net>, June 97
55 * Added devfs support.
56 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 13-Jan-1998
58 * Added support for a Unix98-style ptmx device.
59 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
61 * Reduced memory usage for older ARM systems
62 * -- Russell King <rmk@arm.linux.org.uk>
64 * Move do_SAK() into process context. Less stack use in devfs functions.
65 * alloc_tty_struct() always uses kmalloc()
66 * -- Andrew Morton <andrewm@uow.edu.eu> 17Mar01
69 #include <linux/types.h>
70 #include <linux/major.h>
71 #include <linux/errno.h>
72 #include <linux/signal.h>
73 #include <linux/fcntl.h>
74 #include <linux/sched.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>
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/smp_lock.h>
94 #include <linux/device.h>
95 #include <linux/wait.h>
96 #include <linux/bitops.h>
97 #include <linux/delay.h>
99 #include <asm/uaccess.h>
100 #include <asm/system.h>
102 #include <linux/kbd_kern.h>
103 #include <linux/vt_kern.h>
104 #include <linux/selection.h>
106 #include <linux/kmod.h>
107 #include <linux/nsproxy.h>
109 #undef TTY_DEBUG_HANGUP
111 #define TTY_PARANOIA_CHECK 1
112 #define CHECK_TTY_COUNT 1
114 struct ktermios tty_std_termios
= { /* for the benefit of tty drivers */
115 .c_iflag
= ICRNL
| IXON
,
116 .c_oflag
= OPOST
| ONLCR
,
117 .c_cflag
= B38400
| CS8
| CREAD
| HUPCL
,
118 .c_lflag
= ISIG
| ICANON
| ECHO
| ECHOE
| ECHOK
|
119 ECHOCTL
| ECHOKE
| IEXTEN
,
125 EXPORT_SYMBOL(tty_std_termios
);
127 /* This list gets poked at by procfs and various bits of boot up code. This
128 could do with some rationalisation such as pulling the tty proc function
131 LIST_HEAD(tty_drivers
); /* linked list of tty drivers */
133 /* Mutex to protect creating and releasing a tty. This is shared with
134 vt.c for deeply disgusting hack reasons */
135 DEFINE_MUTEX(tty_mutex
);
136 EXPORT_SYMBOL(tty_mutex
);
138 #ifdef CONFIG_UNIX98_PTYS
139 extern struct tty_driver
*ptm_driver
; /* Unix98 pty masters; for /dev/ptmx */
140 static int ptmx_open(struct inode
*, struct file
*);
143 static void initialize_tty_struct(struct tty_struct
*tty
);
145 static ssize_t
tty_read(struct file
*, char __user
*, size_t, loff_t
*);
146 static ssize_t
tty_write(struct file
*, const char __user
*, size_t, loff_t
*);
147 ssize_t
redirected_tty_write(struct file
*, const char __user
*,
149 static unsigned int tty_poll(struct file
*, poll_table
*);
150 static int tty_open(struct inode
*, struct file
*);
151 static int tty_release(struct inode
*, struct file
*);
152 long tty_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
);
154 static long tty_compat_ioctl(struct file
*file
, unsigned int cmd
,
157 #define tty_compat_ioctl NULL
159 static int tty_fasync(int fd
, struct file
*filp
, int on
);
160 static void release_tty(struct tty_struct
*tty
, int idx
);
161 static void __proc_set_tty(struct task_struct
*tsk
, struct tty_struct
*tty
);
162 static void proc_set_tty(struct task_struct
*tsk
, struct tty_struct
*tty
);
165 * alloc_tty_struct - allocate a tty object
167 * Return a new empty tty structure. The data fields have not
168 * been initialized in any way but has been zeroed
173 static struct tty_struct
*alloc_tty_struct(void)
175 return kzalloc(sizeof(struct tty_struct
), GFP_KERNEL
);
178 static void tty_buffer_free_all(struct tty_struct
*);
181 * free_tty_struct - free a disused tty
182 * @tty: tty struct to free
184 * Free the write buffers, tty queue and tty memory itself.
186 * Locking: none. Must be called after tty is definitely unused
189 static inline void free_tty_struct(struct tty_struct
*tty
)
191 kfree(tty
->write_buf
);
192 tty_buffer_free_all(tty
);
196 #define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
199 * tty_name - return tty naming
200 * @tty: tty structure
201 * @buf: buffer for output
203 * Convert a tty structure into a name. The name reflects the kernel
204 * naming policy and if udev is in use may not reflect user space
209 char *tty_name(struct tty_struct
*tty
, char *buf
)
211 if (!tty
) /* Hmm. NULL pointer. That's fun. */
212 strcpy(buf
, "NULL tty");
214 strcpy(buf
, tty
->name
);
218 EXPORT_SYMBOL(tty_name
);
220 int tty_paranoia_check(struct tty_struct
*tty
, struct inode
*inode
,
223 #ifdef TTY_PARANOIA_CHECK
226 "null TTY for (%d:%d) in %s\n",
227 imajor(inode
), iminor(inode
), routine
);
230 if (tty
->magic
!= TTY_MAGIC
) {
232 "bad magic number for tty struct (%d:%d) in %s\n",
233 imajor(inode
), iminor(inode
), routine
);
240 static int check_tty_count(struct tty_struct
*tty
, const char *routine
)
242 #ifdef CHECK_TTY_COUNT
247 list_for_each(p
, &tty
->tty_files
) {
251 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
&&
252 tty
->driver
->subtype
== PTY_TYPE_SLAVE
&&
253 tty
->link
&& tty
->link
->count
)
255 if (tty
->count
!= count
) {
256 printk(KERN_WARNING
"Warning: dev (%s) tty->count(%d) "
257 "!= #fd's(%d) in %s\n",
258 tty
->name
, tty
->count
, count
, routine
);
266 * Tty buffer allocation management
270 * tty_buffer_free_all - free buffers used by a tty
271 * @tty: tty to free from
273 * Remove all the buffers pending on a tty whether queued with data
274 * or in the free ring. Must be called when the tty is no longer in use
279 static void tty_buffer_free_all(struct tty_struct
*tty
)
281 struct tty_buffer
*thead
;
282 while ((thead
= tty
->buf
.head
) != NULL
) {
283 tty
->buf
.head
= thead
->next
;
286 while ((thead
= tty
->buf
.free
) != NULL
) {
287 tty
->buf
.free
= thead
->next
;
290 tty
->buf
.tail
= NULL
;
291 tty
->buf
.memory_used
= 0;
295 * tty_buffer_init - prepare a tty buffer structure
296 * @tty: tty to initialise
298 * Set up the initial state of the buffer management for a tty device.
299 * Must be called before the other tty buffer functions are used.
304 static void tty_buffer_init(struct tty_struct
*tty
)
306 spin_lock_init(&tty
->buf
.lock
);
307 tty
->buf
.head
= NULL
;
308 tty
->buf
.tail
= NULL
;
309 tty
->buf
.free
= NULL
;
310 tty
->buf
.memory_used
= 0;
314 * tty_buffer_alloc - allocate a tty buffer
316 * @size: desired size (characters)
318 * Allocate a new tty buffer to hold the desired number of characters.
319 * Return NULL if out of memory or the allocation would exceed the
322 * Locking: Caller must hold tty->buf.lock
325 static struct tty_buffer
*tty_buffer_alloc(struct tty_struct
*tty
, size_t size
)
327 struct tty_buffer
*p
;
329 if (tty
->buf
.memory_used
+ size
> 65536)
331 p
= kmalloc(sizeof(struct tty_buffer
) + 2 * size
, GFP_ATOMIC
);
339 p
->char_buf_ptr
= (char *)(p
->data
);
340 p
->flag_buf_ptr
= (unsigned char *)p
->char_buf_ptr
+ size
;
341 tty
->buf
.memory_used
+= size
;
346 * tty_buffer_free - free a tty buffer
347 * @tty: tty owning the buffer
348 * @b: the buffer to free
350 * Free a tty buffer, or add it to the free list according to our
353 * Locking: Caller must hold tty->buf.lock
356 static void tty_buffer_free(struct tty_struct
*tty
, struct tty_buffer
*b
)
358 /* Dumb strategy for now - should keep some stats */
359 tty
->buf
.memory_used
-= b
->size
;
360 WARN_ON(tty
->buf
.memory_used
< 0);
365 b
->next
= tty
->buf
.free
;
371 * __tty_buffer_flush - flush full tty buffers
374 * flush all the buffers containing receive data. Caller must
375 * hold the buffer lock and must have ensured no parallel flush to
378 * Locking: Caller must hold tty->buf.lock
381 static void __tty_buffer_flush(struct tty_struct
*tty
)
383 struct tty_buffer
*thead
;
385 while ((thead
= tty
->buf
.head
) != NULL
) {
386 tty
->buf
.head
= thead
->next
;
387 tty_buffer_free(tty
, thead
);
389 tty
->buf
.tail
= NULL
;
393 * tty_buffer_flush - flush full tty buffers
396 * flush all the buffers containing receive data. If the buffer is
397 * being processed by flush_to_ldisc then we defer the processing
403 static void tty_buffer_flush(struct tty_struct
*tty
)
406 spin_lock_irqsave(&tty
->buf
.lock
, flags
);
408 /* If the data is being pushed to the tty layer then we can't
409 process it here. Instead set a flag and the flush_to_ldisc
410 path will process the flush request before it exits */
411 if (test_bit(TTY_FLUSHING
, &tty
->flags
)) {
412 set_bit(TTY_FLUSHPENDING
, &tty
->flags
);
413 spin_unlock_irqrestore(&tty
->buf
.lock
, flags
);
414 wait_event(tty
->read_wait
,
415 test_bit(TTY_FLUSHPENDING
, &tty
->flags
) == 0);
418 __tty_buffer_flush(tty
);
419 spin_unlock_irqrestore(&tty
->buf
.lock
, flags
);
423 * tty_buffer_find - find a free tty buffer
424 * @tty: tty owning the buffer
425 * @size: characters wanted
427 * Locate an existing suitable tty buffer or if we are lacking one then
428 * allocate a new one. We round our buffers off in 256 character chunks
429 * to get better allocation behaviour.
431 * Locking: Caller must hold tty->buf.lock
434 static struct tty_buffer
*tty_buffer_find(struct tty_struct
*tty
, size_t size
)
436 struct tty_buffer
**tbh
= &tty
->buf
.free
;
437 while ((*tbh
) != NULL
) {
438 struct tty_buffer
*t
= *tbh
;
439 if (t
->size
>= size
) {
445 tty
->buf
.memory_used
+= t
->size
;
448 tbh
= &((*tbh
)->next
);
450 /* Round the buffer size out */
451 size
= (size
+ 0xFF) & ~0xFF;
452 return tty_buffer_alloc(tty
, size
);
453 /* Should possibly check if this fails for the largest buffer we
454 have queued and recycle that ? */
458 * tty_buffer_request_room - grow tty buffer if needed
459 * @tty: tty structure
460 * @size: size desired
462 * Make at least size bytes of linear space available for the tty
463 * buffer. If we fail return the size we managed to find.
465 * Locking: Takes tty->buf.lock
467 int tty_buffer_request_room(struct tty_struct
*tty
, size_t size
)
469 struct tty_buffer
*b
, *n
;
473 spin_lock_irqsave(&tty
->buf
.lock
, flags
);
475 /* OPTIMISATION: We could keep a per tty "zero" sized buffer to
476 remove this conditional if its worth it. This would be invisible
478 if ((b
= tty
->buf
.tail
) != NULL
)
479 left
= b
->size
- b
->used
;
484 /* This is the slow path - looking for new buffers to use */
485 if ((n
= tty_buffer_find(tty
, size
)) != NULL
) {
496 spin_unlock_irqrestore(&tty
->buf
.lock
, flags
);
499 EXPORT_SYMBOL_GPL(tty_buffer_request_room
);
502 * tty_insert_flip_string - Add characters to the tty buffer
503 * @tty: tty structure
507 * Queue a series of bytes to the tty buffering. All the characters
508 * passed are marked as without error. Returns the number added.
510 * Locking: Called functions may take tty->buf.lock
513 int tty_insert_flip_string(struct tty_struct
*tty
, const unsigned char *chars
,
518 int space
= tty_buffer_request_room(tty
, size
- copied
);
519 struct tty_buffer
*tb
= tty
->buf
.tail
;
520 /* If there is no space then tb may be NULL */
521 if (unlikely(space
== 0))
523 memcpy(tb
->char_buf_ptr
+ tb
->used
, chars
, space
);
524 memset(tb
->flag_buf_ptr
+ tb
->used
, TTY_NORMAL
, space
);
528 /* There is a small chance that we need to split the data over
529 several buffers. If this is the case we must loop */
530 } while (unlikely(size
> copied
));
533 EXPORT_SYMBOL(tty_insert_flip_string
);
536 * tty_insert_flip_string_flags - Add characters to the tty buffer
537 * @tty: tty structure
542 * Queue a series of bytes to the tty buffering. For each character
543 * the flags array indicates the status of the character. Returns the
546 * Locking: Called functions may take tty->buf.lock
549 int tty_insert_flip_string_flags(struct tty_struct
*tty
,
550 const unsigned char *chars
, const char *flags
, size_t size
)
554 int space
= tty_buffer_request_room(tty
, size
- copied
);
555 struct tty_buffer
*tb
= tty
->buf
.tail
;
556 /* If there is no space then tb may be NULL */
557 if (unlikely(space
== 0))
559 memcpy(tb
->char_buf_ptr
+ tb
->used
, chars
, space
);
560 memcpy(tb
->flag_buf_ptr
+ tb
->used
, flags
, space
);
565 /* There is a small chance that we need to split the data over
566 several buffers. If this is the case we must loop */
567 } while (unlikely(size
> copied
));
570 EXPORT_SYMBOL(tty_insert_flip_string_flags
);
573 * tty_schedule_flip - push characters to ldisc
574 * @tty: tty to push from
576 * Takes any pending buffers and transfers their ownership to the
577 * ldisc side of the queue. It then schedules those characters for
578 * processing by the line discipline.
580 * Locking: Takes tty->buf.lock
583 void tty_schedule_flip(struct tty_struct
*tty
)
586 spin_lock_irqsave(&tty
->buf
.lock
, flags
);
587 if (tty
->buf
.tail
!= NULL
)
588 tty
->buf
.tail
->commit
= tty
->buf
.tail
->used
;
589 spin_unlock_irqrestore(&tty
->buf
.lock
, flags
);
590 schedule_delayed_work(&tty
->buf
.work
, 1);
592 EXPORT_SYMBOL(tty_schedule_flip
);
595 * tty_prepare_flip_string - make room for characters
597 * @chars: return pointer for character write area
598 * @size: desired size
600 * Prepare a block of space in the buffer for data. Returns the length
601 * available and buffer pointer to the space which is now allocated and
602 * accounted for as ready for normal characters. This is used for drivers
603 * that need their own block copy routines into the buffer. There is no
604 * guarantee the buffer is a DMA target!
606 * Locking: May call functions taking tty->buf.lock
609 int tty_prepare_flip_string(struct tty_struct
*tty
, unsigned char **chars
,
612 int space
= tty_buffer_request_room(tty
, size
);
614 struct tty_buffer
*tb
= tty
->buf
.tail
;
615 *chars
= tb
->char_buf_ptr
+ tb
->used
;
616 memset(tb
->flag_buf_ptr
+ tb
->used
, TTY_NORMAL
, space
);
622 EXPORT_SYMBOL_GPL(tty_prepare_flip_string
);
625 * tty_prepare_flip_string_flags - make room for characters
627 * @chars: return pointer for character write area
628 * @flags: return pointer for status flag write area
629 * @size: desired size
631 * Prepare a block of space in the buffer for data. Returns the length
632 * available and buffer pointer to the space which is now allocated and
633 * accounted for as ready for characters. This is used for drivers
634 * that need their own block copy routines into the buffer. There is no
635 * guarantee the buffer is a DMA target!
637 * Locking: May call functions taking tty->buf.lock
640 int tty_prepare_flip_string_flags(struct tty_struct
*tty
,
641 unsigned char **chars
, char **flags
, size_t size
)
643 int space
= tty_buffer_request_room(tty
, size
);
645 struct tty_buffer
*tb
= tty
->buf
.tail
;
646 *chars
= tb
->char_buf_ptr
+ tb
->used
;
647 *flags
= tb
->flag_buf_ptr
+ tb
->used
;
653 EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags
);
658 * tty_set_termios_ldisc - set ldisc field
659 * @tty: tty structure
660 * @num: line discipline number
662 * This is probably overkill for real world processors but
663 * they are not on hot paths so a little discipline won't do
666 * Locking: takes termios_mutex
669 static void tty_set_termios_ldisc(struct tty_struct
*tty
, int num
)
671 mutex_lock(&tty
->termios_mutex
);
672 tty
->termios
->c_line
= num
;
673 mutex_unlock(&tty
->termios_mutex
);
677 * This guards the refcounted line discipline lists. The lock
678 * must be taken with irqs off because there are hangup path
679 * callers who will do ldisc lookups and cannot sleep.
682 static DEFINE_SPINLOCK(tty_ldisc_lock
);
683 static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait
);
684 /* Line disc dispatch table */
685 static struct tty_ldisc tty_ldiscs
[NR_LDISCS
];
688 * tty_register_ldisc - install a line discipline
689 * @disc: ldisc number
690 * @new_ldisc: pointer to the ldisc object
692 * Installs a new line discipline into the kernel. The discipline
693 * is set up as unreferenced and then made available to the kernel
694 * from this point onwards.
697 * takes tty_ldisc_lock to guard against ldisc races
700 int tty_register_ldisc(int disc
, struct tty_ldisc
*new_ldisc
)
705 if (disc
< N_TTY
|| disc
>= NR_LDISCS
)
708 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
709 tty_ldiscs
[disc
] = *new_ldisc
;
710 tty_ldiscs
[disc
].num
= disc
;
711 tty_ldiscs
[disc
].flags
|= LDISC_FLAG_DEFINED
;
712 tty_ldiscs
[disc
].refcount
= 0;
713 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
717 EXPORT_SYMBOL(tty_register_ldisc
);
720 * tty_unregister_ldisc - unload a line discipline
721 * @disc: ldisc number
722 * @new_ldisc: pointer to the ldisc object
724 * Remove a line discipline from the kernel providing it is not
728 * takes tty_ldisc_lock to guard against ldisc races
731 int tty_unregister_ldisc(int disc
)
736 if (disc
< N_TTY
|| disc
>= NR_LDISCS
)
739 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
740 if (tty_ldiscs
[disc
].refcount
)
743 tty_ldiscs
[disc
].flags
&= ~LDISC_FLAG_DEFINED
;
744 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
748 EXPORT_SYMBOL(tty_unregister_ldisc
);
751 * tty_ldisc_get - take a reference to an ldisc
752 * @disc: ldisc number
754 * Takes a reference to a line discipline. Deals with refcounts and
755 * module locking counts. Returns NULL if the discipline is not available.
756 * Returns a pointer to the discipline and bumps the ref count if it is
760 * takes tty_ldisc_lock to guard against ldisc races
763 struct tty_ldisc
*tty_ldisc_get(int disc
)
766 struct tty_ldisc
*ld
;
768 if (disc
< N_TTY
|| disc
>= NR_LDISCS
)
771 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
773 ld
= &tty_ldiscs
[disc
];
774 /* Check the entry is defined */
775 if (ld
->flags
& LDISC_FLAG_DEFINED
) {
776 /* If the module is being unloaded we can't use it */
777 if (!try_module_get(ld
->owner
))
783 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
787 EXPORT_SYMBOL_GPL(tty_ldisc_get
);
790 * tty_ldisc_put - drop ldisc reference
791 * @disc: ldisc number
793 * Drop a reference to a line discipline. Manage refcounts and
794 * module usage counts
797 * takes tty_ldisc_lock to guard against ldisc races
800 void tty_ldisc_put(int disc
)
802 struct tty_ldisc
*ld
;
805 BUG_ON(disc
< N_TTY
|| disc
>= NR_LDISCS
);
807 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
808 ld
= &tty_ldiscs
[disc
];
809 BUG_ON(ld
->refcount
== 0);
811 module_put(ld
->owner
);
812 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
815 EXPORT_SYMBOL_GPL(tty_ldisc_put
);
818 * tty_ldisc_assign - set ldisc on a tty
819 * @tty: tty to assign
820 * @ld: line discipline
822 * Install an instance of a line discipline into a tty structure. The
823 * ldisc must have a reference count above zero to ensure it remains/
824 * The tty instance refcount starts at zero.
827 * Caller must hold references
830 static void tty_ldisc_assign(struct tty_struct
*tty
, struct tty_ldisc
*ld
)
833 tty
->ldisc
.refcount
= 0;
837 * tty_ldisc_try - internal helper
840 * Make a single attempt to grab and bump the refcount on
841 * the tty ldisc. Return 0 on failure or 1 on success. This is
842 * used to implement both the waiting and non waiting versions
845 * Locking: takes tty_ldisc_lock
848 static int tty_ldisc_try(struct tty_struct
*tty
)
851 struct tty_ldisc
*ld
;
854 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
856 if (test_bit(TTY_LDISC
, &tty
->flags
)) {
860 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
865 * tty_ldisc_ref_wait - wait for the tty ldisc
868 * Dereference the line discipline for the terminal and take a
869 * reference to it. If the line discipline is in flux then
870 * wait patiently until it changes.
872 * Note: Must not be called from an IRQ/timer context. The caller
873 * must also be careful not to hold other locks that will deadlock
874 * against a discipline change, such as an existing ldisc reference
875 * (which we check for)
877 * Locking: call functions take tty_ldisc_lock
880 struct tty_ldisc
*tty_ldisc_ref_wait(struct tty_struct
*tty
)
882 /* wait_event is a macro */
883 wait_event(tty_ldisc_wait
, tty_ldisc_try(tty
));
884 if (tty
->ldisc
.refcount
== 0)
885 printk(KERN_ERR
"tty_ldisc_ref_wait\n");
889 EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait
);
892 * tty_ldisc_ref - get the tty ldisc
895 * Dereference the line discipline for the terminal and take a
896 * reference to it. If the line discipline is in flux then
897 * return NULL. Can be called from IRQ and timer functions.
899 * Locking: called functions take tty_ldisc_lock
902 struct tty_ldisc
*tty_ldisc_ref(struct tty_struct
*tty
)
904 if (tty_ldisc_try(tty
))
909 EXPORT_SYMBOL_GPL(tty_ldisc_ref
);
912 * tty_ldisc_deref - free a tty ldisc reference
913 * @ld: reference to free up
915 * Undoes the effect of tty_ldisc_ref or tty_ldisc_ref_wait. May
916 * be called in IRQ context.
918 * Locking: takes tty_ldisc_lock
921 void tty_ldisc_deref(struct tty_ldisc
*ld
)
927 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
928 if (ld
->refcount
== 0)
929 printk(KERN_ERR
"tty_ldisc_deref: no references.\n");
932 if (ld
->refcount
== 0)
933 wake_up(&tty_ldisc_wait
);
934 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
937 EXPORT_SYMBOL_GPL(tty_ldisc_deref
);
940 * tty_ldisc_enable - allow ldisc use
941 * @tty: terminal to activate ldisc on
943 * Set the TTY_LDISC flag when the line discipline can be called
944 * again. Do necessary wakeups for existing sleepers.
946 * Note: nobody should set this bit except via this function. Clearing
947 * directly is allowed.
950 static void tty_ldisc_enable(struct tty_struct
*tty
)
952 set_bit(TTY_LDISC
, &tty
->flags
);
953 wake_up(&tty_ldisc_wait
);
957 * tty_set_ldisc - set line discipline
958 * @tty: the terminal to set
959 * @ldisc: the line discipline
961 * Set the discipline of a tty line. Must be called from a process
964 * Locking: takes tty_ldisc_lock.
965 * called functions take termios_mutex
968 static int tty_set_ldisc(struct tty_struct
*tty
, int ldisc
)
971 struct tty_ldisc o_ldisc
;
975 struct tty_ldisc
*ld
;
976 struct tty_struct
*o_tty
;
978 if ((ldisc
< N_TTY
) || (ldisc
>= NR_LDISCS
))
983 ld
= tty_ldisc_get(ldisc
);
984 /* Eduardo Blanco <ejbs@cs.cs.com.uy> */
985 /* Cyrus Durgin <cider@speakeasy.org> */
987 request_module("tty-ldisc-%d", ldisc
);
988 ld
= tty_ldisc_get(ldisc
);
994 * Problem: What do we do if this blocks ?
997 tty_wait_until_sent(tty
, 0);
999 if (tty
->ldisc
.num
== ldisc
) {
1000 tty_ldisc_put(ldisc
);
1005 * No more input please, we are switching. The new ldisc
1006 * will update this value in the ldisc open function
1009 tty
->receive_room
= 0;
1011 o_ldisc
= tty
->ldisc
;
1015 * Make sure we don't change while someone holds a
1016 * reference to the line discipline. The TTY_LDISC bit
1017 * prevents anyone taking a reference once it is clear.
1018 * We need the lock to avoid racing reference takers.
1021 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
1022 if (tty
->ldisc
.refcount
|| (o_tty
&& o_tty
->ldisc
.refcount
)) {
1023 if (tty
->ldisc
.refcount
) {
1024 /* Free the new ldisc we grabbed. Must drop the lock
1026 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
1027 tty_ldisc_put(ldisc
);
1029 * There are several reasons we may be busy, including
1030 * random momentary I/O traffic. We must therefore
1031 * retry. We could distinguish between blocking ops
1032 * and retries if we made tty_ldisc_wait() smarter.
1033 * That is up for discussion.
1035 if (wait_event_interruptible(tty_ldisc_wait
, tty
->ldisc
.refcount
== 0) < 0)
1036 return -ERESTARTSYS
;
1039 if (o_tty
&& o_tty
->ldisc
.refcount
) {
1040 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
1041 tty_ldisc_put(ldisc
);
1042 if (wait_event_interruptible(tty_ldisc_wait
, o_tty
->ldisc
.refcount
== 0) < 0)
1043 return -ERESTARTSYS
;
1048 * If the TTY_LDISC bit is set, then we are racing against
1049 * another ldisc change
1051 if (!test_bit(TTY_LDISC
, &tty
->flags
)) {
1052 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
1053 tty_ldisc_put(ldisc
);
1054 ld
= tty_ldisc_ref_wait(tty
);
1055 tty_ldisc_deref(ld
);
1059 clear_bit(TTY_LDISC
, &tty
->flags
);
1061 clear_bit(TTY_LDISC
, &o_tty
->flags
);
1062 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
1065 * From this point on we know nobody has an ldisc
1066 * usage reference, nor can they obtain one until
1067 * we say so later on.
1070 work
= cancel_delayed_work(&tty
->buf
.work
);
1072 * Wait for ->hangup_work and ->buf.work handlers to terminate
1074 flush_scheduled_work();
1075 /* Shutdown the current discipline. */
1076 if (tty
->ldisc
.close
)
1077 (tty
->ldisc
.close
)(tty
);
1079 /* Now set up the new line discipline. */
1080 tty_ldisc_assign(tty
, ld
);
1081 tty_set_termios_ldisc(tty
, ldisc
);
1082 if (tty
->ldisc
.open
)
1083 retval
= (tty
->ldisc
.open
)(tty
);
1085 tty_ldisc_put(ldisc
);
1086 /* There is an outstanding reference here so this is safe */
1087 tty_ldisc_assign(tty
, tty_ldisc_get(o_ldisc
.num
));
1088 tty_set_termios_ldisc(tty
, tty
->ldisc
.num
);
1089 if (tty
->ldisc
.open
&& (tty
->ldisc
.open(tty
) < 0)) {
1090 tty_ldisc_put(o_ldisc
.num
);
1091 /* This driver is always present */
1092 tty_ldisc_assign(tty
, tty_ldisc_get(N_TTY
));
1093 tty_set_termios_ldisc(tty
, N_TTY
);
1094 if (tty
->ldisc
.open
) {
1095 int r
= tty
->ldisc
.open(tty
);
1098 panic("Couldn't open N_TTY ldisc for "
1100 tty_name(tty
, buf
), r
);
1104 /* At this point we hold a reference to the new ldisc and a
1105 a reference to the old ldisc. If we ended up flipping back
1106 to the existing ldisc we have two references to it */
1108 if (tty
->ldisc
.num
!= o_ldisc
.num
&& tty
->ops
->set_ldisc
)
1109 tty
->ops
->set_ldisc(tty
);
1111 tty_ldisc_put(o_ldisc
.num
);
1114 * Allow ldisc referencing to occur as soon as the driver
1115 * ldisc callback completes.
1118 tty_ldisc_enable(tty
);
1120 tty_ldisc_enable(o_tty
);
1122 /* Restart it in case no characters kick it off. Safe if
1125 schedule_delayed_work(&tty
->buf
.work
, 1);
1130 * get_tty_driver - find device of a tty
1131 * @dev_t: device identifier
1132 * @index: returns the index of the tty
1134 * This routine returns a tty driver structure, given a device number
1135 * and also passes back the index number.
1137 * Locking: caller must hold tty_mutex
1140 static struct tty_driver
*get_tty_driver(dev_t device
, int *index
)
1142 struct tty_driver
*p
;
1144 list_for_each_entry(p
, &tty_drivers
, tty_drivers
) {
1145 dev_t base
= MKDEV(p
->major
, p
->minor_start
);
1146 if (device
< base
|| device
>= base
+ p
->num
)
1148 *index
= device
- base
;
1154 #ifdef CONFIG_CONSOLE_POLL
1157 * tty_find_polling_driver - find device of a polled tty
1158 * @name: name string to match
1159 * @line: pointer to resulting tty line nr
1161 * This routine returns a tty driver structure, given a name
1162 * and the condition that the tty driver is capable of polled
1165 struct tty_driver
*tty_find_polling_driver(char *name
, int *line
)
1167 struct tty_driver
*p
, *res
= NULL
;
1171 mutex_lock(&tty_mutex
);
1172 /* Search through the tty devices to look for a match */
1173 list_for_each_entry(p
, &tty_drivers
, tty_drivers
) {
1174 str
= name
+ strlen(p
->name
);
1175 tty_line
= simple_strtoul(str
, &str
, 10);
1181 if (tty_line
>= 0 && tty_line
<= p
->num
&& p
->ops
&&
1182 p
->ops
->poll_init
&& !p
->ops
->poll_init(p
, tty_line
, str
)) {
1188 mutex_unlock(&tty_mutex
);
1192 EXPORT_SYMBOL_GPL(tty_find_polling_driver
);
1196 * tty_check_change - check for POSIX terminal changes
1197 * @tty: tty to check
1199 * If we try to write to, or set the state of, a terminal and we're
1200 * not in the foreground, send a SIGTTOU. If the signal is blocked or
1201 * ignored, go ahead and perform the operation. (POSIX 7.2)
1203 * Locking: ctrl_lock
1206 int tty_check_change(struct tty_struct
*tty
)
1208 unsigned long flags
;
1211 if (current
->signal
->tty
!= tty
)
1214 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
1217 printk(KERN_WARNING
"tty_check_change: tty->pgrp == NULL!\n");
1220 if (task_pgrp(current
) == tty
->pgrp
)
1222 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1223 if (is_ignored(SIGTTOU
))
1225 if (is_current_pgrp_orphaned()) {
1229 kill_pgrp(task_pgrp(current
), SIGTTOU
, 1);
1230 set_thread_flag(TIF_SIGPENDING
);
1235 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1239 EXPORT_SYMBOL(tty_check_change
);
1241 static ssize_t
hung_up_tty_read(struct file
*file
, char __user
*buf
,
1242 size_t count
, loff_t
*ppos
)
1247 static ssize_t
hung_up_tty_write(struct file
*file
, const char __user
*buf
,
1248 size_t count
, loff_t
*ppos
)
1253 /* No kernel lock held - none needed ;) */
1254 static unsigned int hung_up_tty_poll(struct file
*filp
, poll_table
*wait
)
1256 return POLLIN
| POLLOUT
| POLLERR
| POLLHUP
| POLLRDNORM
| POLLWRNORM
;
1259 static long hung_up_tty_ioctl(struct file
*file
, unsigned int cmd
,
1262 return cmd
== TIOCSPGRP
? -ENOTTY
: -EIO
;
1265 static long hung_up_tty_compat_ioctl(struct file
*file
,
1266 unsigned int cmd
, unsigned long arg
)
1268 return cmd
== TIOCSPGRP
? -ENOTTY
: -EIO
;
1271 static const struct file_operations tty_fops
= {
1272 .llseek
= no_llseek
,
1276 .unlocked_ioctl
= tty_ioctl
,
1277 .compat_ioctl
= tty_compat_ioctl
,
1279 .release
= tty_release
,
1280 .fasync
= tty_fasync
,
1283 #ifdef CONFIG_UNIX98_PTYS
1284 static const struct file_operations ptmx_fops
= {
1285 .llseek
= no_llseek
,
1289 .unlocked_ioctl
= tty_ioctl
,
1290 .compat_ioctl
= tty_compat_ioctl
,
1292 .release
= tty_release
,
1293 .fasync
= tty_fasync
,
1297 static const struct file_operations console_fops
= {
1298 .llseek
= no_llseek
,
1300 .write
= redirected_tty_write
,
1302 .unlocked_ioctl
= tty_ioctl
,
1303 .compat_ioctl
= tty_compat_ioctl
,
1305 .release
= tty_release
,
1306 .fasync
= tty_fasync
,
1309 static const struct file_operations hung_up_tty_fops
= {
1310 .llseek
= no_llseek
,
1311 .read
= hung_up_tty_read
,
1312 .write
= hung_up_tty_write
,
1313 .poll
= hung_up_tty_poll
,
1314 .unlocked_ioctl
= hung_up_tty_ioctl
,
1315 .compat_ioctl
= hung_up_tty_compat_ioctl
,
1316 .release
= tty_release
,
1319 static DEFINE_SPINLOCK(redirect_lock
);
1320 static struct file
*redirect
;
1323 * tty_wakeup - request more data
1326 * Internal and external helper for wakeups of tty. This function
1327 * informs the line discipline if present that the driver is ready
1328 * to receive more output data.
1331 void tty_wakeup(struct tty_struct
*tty
)
1333 struct tty_ldisc
*ld
;
1335 if (test_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
)) {
1336 ld
= tty_ldisc_ref(tty
);
1338 if (ld
->write_wakeup
)
1339 ld
->write_wakeup(tty
);
1340 tty_ldisc_deref(ld
);
1343 wake_up_interruptible(&tty
->write_wait
);
1346 EXPORT_SYMBOL_GPL(tty_wakeup
);
1349 * tty_ldisc_flush - flush line discipline queue
1352 * Flush the line discipline queue (if any) for this tty. If there
1353 * is no line discipline active this is a no-op.
1356 void tty_ldisc_flush(struct tty_struct
*tty
)
1358 struct tty_ldisc
*ld
= tty_ldisc_ref(tty
);
1360 if (ld
->flush_buffer
)
1361 ld
->flush_buffer(tty
);
1362 tty_ldisc_deref(ld
);
1364 tty_buffer_flush(tty
);
1367 EXPORT_SYMBOL_GPL(tty_ldisc_flush
);
1370 * tty_reset_termios - reset terminal state
1371 * @tty: tty to reset
1373 * Restore a terminal to the driver default state
1376 static void tty_reset_termios(struct tty_struct
*tty
)
1378 mutex_lock(&tty
->termios_mutex
);
1379 *tty
->termios
= tty
->driver
->init_termios
;
1380 tty
->termios
->c_ispeed
= tty_termios_input_baud_rate(tty
->termios
);
1381 tty
->termios
->c_ospeed
= tty_termios_baud_rate(tty
->termios
);
1382 mutex_unlock(&tty
->termios_mutex
);
1386 * do_tty_hangup - actual handler for hangup events
1389 * This can be called by the "eventd" kernel thread. That is process
1390 * synchronous but doesn't hold any locks, so we need to make sure we
1391 * have the appropriate locks for what we're doing.
1393 * The hangup event clears any pending redirections onto the hung up
1394 * device. It ensures future writes will error and it does the needed
1395 * line discipline hangup and signal delivery. The tty object itself
1400 * redirect lock for undoing redirection
1401 * file list lock for manipulating list of ttys
1402 * tty_ldisc_lock from called functions
1403 * termios_mutex resetting termios data
1404 * tasklist_lock to walk task list for hangup event
1405 * ->siglock to protect ->signal/->sighand
1407 static void do_tty_hangup(struct work_struct
*work
)
1409 struct tty_struct
*tty
=
1410 container_of(work
, struct tty_struct
, hangup_work
);
1411 struct file
*cons_filp
= NULL
;
1412 struct file
*filp
, *f
= NULL
;
1413 struct task_struct
*p
;
1414 struct tty_ldisc
*ld
;
1415 int closecount
= 0, n
;
1416 unsigned long flags
;
1421 /* inuse_filps is protected by the single kernel lock */
1424 spin_lock(&redirect_lock
);
1425 if (redirect
&& redirect
->private_data
== tty
) {
1429 spin_unlock(&redirect_lock
);
1431 check_tty_count(tty
, "do_tty_hangup");
1433 /* This breaks for file handles being sent over AF_UNIX sockets ? */
1434 list_for_each_entry(filp
, &tty
->tty_files
, f_u
.fu_list
) {
1435 if (filp
->f_op
->write
== redirected_tty_write
)
1437 if (filp
->f_op
->write
!= tty_write
)
1440 tty_fasync(-1, filp
, 0); /* can't block */
1441 filp
->f_op
= &hung_up_tty_fops
;
1445 * FIXME! What are the locking issues here? This may me overdoing
1446 * things... This question is especially important now that we've
1447 * removed the irqlock.
1449 ld
= tty_ldisc_ref(tty
);
1451 /* We may have no line discipline at this point */
1452 if (ld
->flush_buffer
)
1453 ld
->flush_buffer(tty
);
1454 tty_driver_flush_buffer(tty
);
1455 if ((test_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
)) &&
1457 ld
->write_wakeup(tty
);
1462 * FIXME: Once we trust the LDISC code better we can wait here for
1463 * ldisc completion and fix the driver call race
1465 wake_up_interruptible(&tty
->write_wait
);
1466 wake_up_interruptible(&tty
->read_wait
);
1468 * Shutdown the current line discipline, and reset it to
1471 if (tty
->driver
->flags
& TTY_DRIVER_RESET_TERMIOS
)
1472 tty_reset_termios(tty
);
1473 /* Defer ldisc switch */
1474 /* tty_deferred_ldisc_switch(N_TTY);
1476 This should get done automatically when the port closes and
1477 tty_release is called */
1479 read_lock(&tasklist_lock
);
1481 do_each_pid_task(tty
->session
, PIDTYPE_SID
, p
) {
1482 spin_lock_irq(&p
->sighand
->siglock
);
1483 if (p
->signal
->tty
== tty
)
1484 p
->signal
->tty
= NULL
;
1485 if (!p
->signal
->leader
) {
1486 spin_unlock_irq(&p
->sighand
->siglock
);
1489 __group_send_sig_info(SIGHUP
, SEND_SIG_PRIV
, p
);
1490 __group_send_sig_info(SIGCONT
, SEND_SIG_PRIV
, p
);
1491 put_pid(p
->signal
->tty_old_pgrp
); /* A noop */
1492 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
1494 p
->signal
->tty_old_pgrp
= get_pid(tty
->pgrp
);
1495 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1496 spin_unlock_irq(&p
->sighand
->siglock
);
1497 } while_each_pid_task(tty
->session
, PIDTYPE_SID
, p
);
1499 read_unlock(&tasklist_lock
);
1501 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
1503 put_pid(tty
->session
);
1505 tty
->session
= NULL
;
1507 tty
->ctrl_status
= 0;
1508 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1511 * If one of the devices matches a console pointer, we
1512 * cannot just call hangup() because that will cause
1513 * tty->count and state->count to go out of sync.
1514 * So we just call close() the right number of times.
1517 if (tty
->ops
->close
)
1518 for (n
= 0; n
< closecount
; n
++)
1519 tty
->ops
->close(tty
, cons_filp
);
1520 } else if (tty
->ops
->hangup
)
1521 (tty
->ops
->hangup
)(tty
);
1523 * We don't want to have driver/ldisc interactions beyond
1524 * the ones we did here. The driver layer expects no
1525 * calls after ->hangup() from the ldisc side. However we
1526 * can't yet guarantee all that.
1528 set_bit(TTY_HUPPED
, &tty
->flags
);
1530 tty_ldisc_enable(tty
);
1531 tty_ldisc_deref(ld
);
1539 * tty_hangup - trigger a hangup event
1540 * @tty: tty to hangup
1542 * A carrier loss (virtual or otherwise) has occurred on this like
1543 * schedule a hangup sequence to run after this event.
1546 void tty_hangup(struct tty_struct
*tty
)
1548 #ifdef TTY_DEBUG_HANGUP
1550 printk(KERN_DEBUG
"%s hangup...\n", tty_name(tty
, buf
));
1552 schedule_work(&tty
->hangup_work
);
1555 EXPORT_SYMBOL(tty_hangup
);
1558 * tty_vhangup - process vhangup
1559 * @tty: tty to hangup
1561 * The user has asked via system call for the terminal to be hung up.
1562 * We do this synchronously so that when the syscall returns the process
1563 * is complete. That guarantee is necessary for security reasons.
1566 void tty_vhangup(struct tty_struct
*tty
)
1568 #ifdef TTY_DEBUG_HANGUP
1571 printk(KERN_DEBUG
"%s vhangup...\n", tty_name(tty
, buf
));
1573 do_tty_hangup(&tty
->hangup_work
);
1576 EXPORT_SYMBOL(tty_vhangup
);
1579 * tty_hung_up_p - was tty hung up
1580 * @filp: file pointer of tty
1582 * Return true if the tty has been subject to a vhangup or a carrier
1586 int tty_hung_up_p(struct file
*filp
)
1588 return (filp
->f_op
== &hung_up_tty_fops
);
1591 EXPORT_SYMBOL(tty_hung_up_p
);
1594 * is_tty - checker whether file is a TTY
1595 * @filp: file handle that may be a tty
1597 * Check if the file handle is a tty handle.
1600 int is_tty(struct file
*filp
)
1602 return filp
->f_op
->read
== tty_read
1603 || filp
->f_op
->read
== hung_up_tty_read
;
1606 static void session_clear_tty(struct pid
*session
)
1608 struct task_struct
*p
;
1609 do_each_pid_task(session
, PIDTYPE_SID
, p
) {
1611 } while_each_pid_task(session
, PIDTYPE_SID
, p
);
1615 * disassociate_ctty - disconnect controlling tty
1616 * @on_exit: true if exiting so need to "hang up" the session
1618 * This function is typically called only by the session leader, when
1619 * it wants to disassociate itself from its controlling tty.
1621 * It performs the following functions:
1622 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
1623 * (2) Clears the tty from being controlling the session
1624 * (3) Clears the controlling tty for all processes in the
1627 * The argument on_exit is set to 1 if called when a process is
1628 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
1631 * BKL is taken for hysterical raisins
1632 * tty_mutex is taken to protect tty
1633 * ->siglock is taken to protect ->signal/->sighand
1634 * tasklist_lock is taken to walk process list for sessions
1635 * ->siglock is taken to protect ->signal/->sighand
1638 void disassociate_ctty(int on_exit
)
1640 struct tty_struct
*tty
;
1641 struct pid
*tty_pgrp
= NULL
;
1644 mutex_lock(&tty_mutex
);
1645 tty
= get_current_tty();
1647 tty_pgrp
= get_pid(tty
->pgrp
);
1648 mutex_unlock(&tty_mutex
);
1650 /* XXX: here we race, there is nothing protecting tty */
1651 if (on_exit
&& tty
->driver
->type
!= TTY_DRIVER_TYPE_PTY
)
1654 } else if (on_exit
) {
1655 struct pid
*old_pgrp
;
1656 spin_lock_irq(¤t
->sighand
->siglock
);
1657 old_pgrp
= current
->signal
->tty_old_pgrp
;
1658 current
->signal
->tty_old_pgrp
= NULL
;
1659 spin_unlock_irq(¤t
->sighand
->siglock
);
1661 kill_pgrp(old_pgrp
, SIGHUP
, on_exit
);
1662 kill_pgrp(old_pgrp
, SIGCONT
, on_exit
);
1665 mutex_unlock(&tty_mutex
);
1669 kill_pgrp(tty_pgrp
, SIGHUP
, on_exit
);
1671 kill_pgrp(tty_pgrp
, SIGCONT
, on_exit
);
1675 spin_lock_irq(¤t
->sighand
->siglock
);
1676 put_pid(current
->signal
->tty_old_pgrp
);
1677 current
->signal
->tty_old_pgrp
= NULL
;
1678 spin_unlock_irq(¤t
->sighand
->siglock
);
1680 mutex_lock(&tty_mutex
);
1681 /* It is possible that do_tty_hangup has free'd this tty */
1682 tty
= get_current_tty();
1684 unsigned long flags
;
1685 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
1686 put_pid(tty
->session
);
1688 tty
->session
= NULL
;
1690 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1692 #ifdef TTY_DEBUG_HANGUP
1693 printk(KERN_DEBUG
"error attempted to write to tty [0x%p]"
1697 mutex_unlock(&tty_mutex
);
1699 /* Now clear signal->tty under the lock */
1700 read_lock(&tasklist_lock
);
1701 session_clear_tty(task_session(current
));
1702 read_unlock(&tasklist_lock
);
1707 * no_tty - Ensure the current process does not have a controlling tty
1711 struct task_struct
*tsk
= current
;
1713 if (tsk
->signal
->leader
)
1714 disassociate_ctty(0);
1716 proc_clear_tty(tsk
);
1721 * stop_tty - propagate flow control
1724 * Perform flow control to the driver. For PTY/TTY pairs we
1725 * must also propagate the TIOCKPKT status. May be called
1726 * on an already stopped device and will not re-call the driver
1729 * This functionality is used by both the line disciplines for
1730 * halting incoming flow and by the driver. It may therefore be
1731 * called from any context, may be under the tty atomic_write_lock
1735 * Uses the tty control lock internally
1738 void stop_tty(struct tty_struct
*tty
)
1740 unsigned long flags
;
1741 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
1743 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1747 if (tty
->link
&& tty
->link
->packet
) {
1748 tty
->ctrl_status
&= ~TIOCPKT_START
;
1749 tty
->ctrl_status
|= TIOCPKT_STOP
;
1750 wake_up_interruptible(&tty
->link
->read_wait
);
1752 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1754 (tty
->ops
->stop
)(tty
);
1757 EXPORT_SYMBOL(stop_tty
);
1760 * start_tty - propagate flow control
1761 * @tty: tty to start
1763 * Start a tty that has been stopped if at all possible. Perform
1764 * any necessary wakeups and propagate the TIOCPKT status. If this
1765 * is the tty was previous stopped and is being started then the
1766 * driver start method is invoked and the line discipline woken.
1772 void start_tty(struct tty_struct
*tty
)
1774 unsigned long flags
;
1775 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
1776 if (!tty
->stopped
|| tty
->flow_stopped
) {
1777 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1781 if (tty
->link
&& tty
->link
->packet
) {
1782 tty
->ctrl_status
&= ~TIOCPKT_STOP
;
1783 tty
->ctrl_status
|= TIOCPKT_START
;
1784 wake_up_interruptible(&tty
->link
->read_wait
);
1786 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
1787 if (tty
->ops
->start
)
1788 (tty
->ops
->start
)(tty
);
1789 /* If we have a running line discipline it may need kicking */
1793 EXPORT_SYMBOL(start_tty
);
1796 * tty_read - read method for tty device files
1797 * @file: pointer to tty file
1799 * @count: size of user buffer
1802 * Perform the read system call function on this terminal device. Checks
1803 * for hung up devices before calling the line discipline method.
1806 * Locks the line discipline internally while needed. Multiple
1807 * read calls may be outstanding in parallel.
1810 static ssize_t
tty_read(struct file
*file
, char __user
*buf
, size_t count
,
1814 struct tty_struct
*tty
;
1815 struct inode
*inode
;
1816 struct tty_ldisc
*ld
;
1818 tty
= (struct tty_struct
*)file
->private_data
;
1819 inode
= file
->f_path
.dentry
->d_inode
;
1820 if (tty_paranoia_check(tty
, inode
, "tty_read"))
1822 if (!tty
|| (test_bit(TTY_IO_ERROR
, &tty
->flags
)))
1825 /* We want to wait for the line discipline to sort out in this
1827 ld
= tty_ldisc_ref_wait(tty
);
1829 i
= (ld
->read
)(tty
, file
, buf
, count
);
1832 tty_ldisc_deref(ld
);
1834 inode
->i_atime
= current_fs_time(inode
->i_sb
);
1838 void tty_write_unlock(struct tty_struct
*tty
)
1840 mutex_unlock(&tty
->atomic_write_lock
);
1841 wake_up_interruptible(&tty
->write_wait
);
1844 int tty_write_lock(struct tty_struct
*tty
, int ndelay
)
1846 if (!mutex_trylock(&tty
->atomic_write_lock
)) {
1849 if (mutex_lock_interruptible(&tty
->atomic_write_lock
))
1850 return -ERESTARTSYS
;
1856 * Split writes up in sane blocksizes to avoid
1857 * denial-of-service type attacks
1859 static inline ssize_t
do_tty_write(
1860 ssize_t (*write
)(struct tty_struct
*, struct file
*, const unsigned char *, size_t),
1861 struct tty_struct
*tty
,
1863 const char __user
*buf
,
1866 ssize_t ret
, written
= 0;
1869 ret
= tty_write_lock(tty
, file
->f_flags
& O_NDELAY
);
1874 * We chunk up writes into a temporary buffer. This
1875 * simplifies low-level drivers immensely, since they
1876 * don't have locking issues and user mode accesses.
1878 * But if TTY_NO_WRITE_SPLIT is set, we should use a
1881 * The default chunk-size is 2kB, because the NTTY
1882 * layer has problems with bigger chunks. It will
1883 * claim to be able to handle more characters than
1886 * FIXME: This can probably go away now except that 64K chunks
1887 * are too likely to fail unless switched to vmalloc...
1890 if (test_bit(TTY_NO_WRITE_SPLIT
, &tty
->flags
))
1895 /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
1896 if (tty
->write_cnt
< chunk
) {
1902 buf
= kmalloc(chunk
, GFP_KERNEL
);
1907 kfree(tty
->write_buf
);
1908 tty
->write_cnt
= chunk
;
1909 tty
->write_buf
= buf
;
1912 /* Do the write .. */
1914 size_t size
= count
;
1918 if (copy_from_user(tty
->write_buf
, buf
, size
))
1920 ret
= write(tty
, file
, tty
->write_buf
, size
);
1929 if (signal_pending(current
))
1934 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1935 inode
->i_mtime
= current_fs_time(inode
->i_sb
);
1939 tty_write_unlock(tty
);
1945 * tty_write - write method for tty device file
1946 * @file: tty file pointer
1947 * @buf: user data to write
1948 * @count: bytes to write
1951 * Write data to a tty device via the line discipline.
1954 * Locks the line discipline as required
1955 * Writes to the tty driver are serialized by the atomic_write_lock
1956 * and are then processed in chunks to the device. The line discipline
1957 * write method will not be involked in parallel for each device
1958 * The line discipline write method is called under the big
1959 * kernel lock for historical reasons. New code should not rely on this.
1962 static ssize_t
tty_write(struct file
*file
, const char __user
*buf
,
1963 size_t count
, loff_t
*ppos
)
1965 struct tty_struct
*tty
;
1966 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1968 struct tty_ldisc
*ld
;
1970 tty
= (struct tty_struct
*)file
->private_data
;
1971 if (tty_paranoia_check(tty
, inode
, "tty_write"))
1973 if (!tty
|| !tty
->ops
->write
||
1974 (test_bit(TTY_IO_ERROR
, &tty
->flags
)))
1976 /* Short term debug to catch buggy drivers */
1977 if (tty
->ops
->write_room
== NULL
)
1978 printk(KERN_ERR
"tty driver %s lacks a write_room method.\n",
1980 ld
= tty_ldisc_ref_wait(tty
);
1984 ret
= do_tty_write(ld
->write
, tty
, file
, buf
, count
);
1985 tty_ldisc_deref(ld
);
1989 ssize_t
redirected_tty_write(struct file
*file
, const char __user
*buf
,
1990 size_t count
, loff_t
*ppos
)
1992 struct file
*p
= NULL
;
1994 spin_lock(&redirect_lock
);
1999 spin_unlock(&redirect_lock
);
2003 res
= vfs_write(p
, buf
, count
, &p
->f_pos
);
2007 return tty_write(file
, buf
, count
, ppos
);
2010 static char ptychar
[] = "pqrstuvwxyzabcde";
2013 * pty_line_name - generate name for a pty
2014 * @driver: the tty driver in use
2015 * @index: the minor number
2016 * @p: output buffer of at least 6 bytes
2018 * Generate a name from a driver reference and write it to the output
2023 static void pty_line_name(struct tty_driver
*driver
, int index
, char *p
)
2025 int i
= index
+ driver
->name_base
;
2026 /* ->name is initialized to "ttyp", but "tty" is expected */
2027 sprintf(p
, "%s%c%x",
2028 driver
->subtype
== PTY_TYPE_SLAVE
? "tty" : driver
->name
,
2029 ptychar
[i
>> 4 & 0xf], i
& 0xf);
2033 * pty_line_name - generate name for a tty
2034 * @driver: the tty driver in use
2035 * @index: the minor number
2036 * @p: output buffer of at least 7 bytes
2038 * Generate a name from a driver reference and write it to the output
2043 static void tty_line_name(struct tty_driver
*driver
, int index
, char *p
)
2045 sprintf(p
, "%s%d", driver
->name
, index
+ driver
->name_base
);
2049 * init_dev - initialise a tty device
2050 * @driver: tty driver we are opening a device on
2051 * @idx: device index
2052 * @tty: returned tty structure
2054 * Prepare a tty device. This may not be a "new" clean device but
2055 * could also be an active device. The pty drivers require special
2056 * handling because of this.
2059 * The function is called under the tty_mutex, which
2060 * protects us from the tty struct or driver itself going away.
2062 * On exit the tty device has the line discipline attached and
2063 * a reference count of 1. If a pair was created for pty/tty use
2064 * and the other was a pty master then it too has a reference count of 1.
2066 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
2067 * failed open. The new code protects the open with a mutex, so it's
2068 * really quite straightforward. The mutex locking can probably be
2069 * relaxed for the (most common) case of reopening a tty.
2072 static int init_dev(struct tty_driver
*driver
, int idx
,
2073 struct tty_struct
**ret_tty
)
2075 struct tty_struct
*tty
, *o_tty
;
2076 struct ktermios
*tp
, **tp_loc
, *o_tp
, **o_tp_loc
;
2077 struct ktermios
*ltp
, **ltp_loc
, *o_ltp
, **o_ltp_loc
;
2080 /* check whether we're reopening an existing tty */
2081 if (driver
->flags
& TTY_DRIVER_DEVPTS_MEM
) {
2082 tty
= devpts_get_tty(idx
);
2084 * If we don't have a tty here on a slave open, it's because
2085 * the master already started the close process and there's
2086 * no relation between devpts file and tty anymore.
2088 if (!tty
&& driver
->subtype
== PTY_TYPE_SLAVE
) {
2093 * It's safe from now on because init_dev() is called with
2094 * tty_mutex held and release_dev() won't change tty->count
2095 * or tty->flags without having to grab tty_mutex
2097 if (tty
&& driver
->subtype
== PTY_TYPE_MASTER
)
2100 tty
= driver
->ttys
[idx
];
2102 if (tty
) goto fast_track
;
2105 * First time open is complex, especially for PTY devices.
2106 * This code guarantees that either everything succeeds and the
2107 * TTY is ready for operation, or else the table slots are vacated
2108 * and the allocated memory released. (Except that the termios
2109 * and locked termios may be retained.)
2112 if (!try_module_get(driver
->owner
)) {
2121 tty
= alloc_tty_struct();
2124 initialize_tty_struct(tty
);
2125 tty
->driver
= driver
;
2126 tty
->ops
= driver
->ops
;
2128 tty_line_name(driver
, idx
, tty
->name
);
2130 if (driver
->flags
& TTY_DRIVER_DEVPTS_MEM
) {
2131 tp_loc
= &tty
->termios
;
2132 ltp_loc
= &tty
->termios_locked
;
2134 tp_loc
= &driver
->termios
[idx
];
2135 ltp_loc
= &driver
->termios_locked
[idx
];
2139 tp
= kmalloc(sizeof(struct ktermios
), GFP_KERNEL
);
2142 *tp
= driver
->init_termios
;
2146 ltp
= kzalloc(sizeof(struct ktermios
), GFP_KERNEL
);
2151 if (driver
->type
== TTY_DRIVER_TYPE_PTY
) {
2152 o_tty
= alloc_tty_struct();
2155 initialize_tty_struct(o_tty
);
2156 o_tty
->driver
= driver
->other
;
2157 o_tty
->ops
= driver
->ops
;
2159 tty_line_name(driver
->other
, idx
, o_tty
->name
);
2161 if (driver
->flags
& TTY_DRIVER_DEVPTS_MEM
) {
2162 o_tp_loc
= &o_tty
->termios
;
2163 o_ltp_loc
= &o_tty
->termios_locked
;
2165 o_tp_loc
= &driver
->other
->termios
[idx
];
2166 o_ltp_loc
= &driver
->other
->termios_locked
[idx
];
2170 o_tp
= kmalloc(sizeof(struct ktermios
), GFP_KERNEL
);
2173 *o_tp
= driver
->other
->init_termios
;
2177 o_ltp
= kzalloc(sizeof(struct ktermios
), GFP_KERNEL
);
2183 * Everything allocated ... set up the o_tty structure.
2185 if (!(driver
->other
->flags
& TTY_DRIVER_DEVPTS_MEM
))
2186 driver
->other
->ttys
[idx
] = o_tty
;
2191 o_tty
->termios
= *o_tp_loc
;
2192 o_tty
->termios_locked
= *o_ltp_loc
;
2193 driver
->other
->refcount
++;
2194 if (driver
->subtype
== PTY_TYPE_MASTER
)
2197 /* Establish the links in both directions */
2203 * All structures have been allocated, so now we install them.
2204 * Failures after this point use release_tty to clean up, so
2205 * there's no need to null out the local pointers.
2207 if (!(driver
->flags
& TTY_DRIVER_DEVPTS_MEM
))
2208 driver
->ttys
[idx
] = tty
;
2214 tty
->termios
= *tp_loc
;
2215 tty
->termios_locked
= *ltp_loc
;
2216 /* Compatibility until drivers always set this */
2217 tty
->termios
->c_ispeed
= tty_termios_input_baud_rate(tty
->termios
);
2218 tty
->termios
->c_ospeed
= tty_termios_baud_rate(tty
->termios
);
2223 * Structures all installed ... call the ldisc open routines.
2224 * If we fail here just call release_tty to clean up. No need
2225 * to decrement the use counts, as release_tty doesn't care.
2228 if (tty
->ldisc
.open
) {
2229 retval
= (tty
->ldisc
.open
)(tty
);
2231 goto release_mem_out
;
2233 if (o_tty
&& o_tty
->ldisc
.open
) {
2234 retval
= (o_tty
->ldisc
.open
)(o_tty
);
2236 if (tty
->ldisc
.close
)
2237 (tty
->ldisc
.close
)(tty
);
2238 goto release_mem_out
;
2240 tty_ldisc_enable(o_tty
);
2242 tty_ldisc_enable(tty
);
2246 * This fast open can be used if the tty is already open.
2247 * No memory is allocated, and the only failures are from
2248 * attempting to open a closing tty or attempting multiple
2249 * opens on a pty master.
2252 if (test_bit(TTY_CLOSING
, &tty
->flags
)) {
2256 if (driver
->type
== TTY_DRIVER_TYPE_PTY
&&
2257 driver
->subtype
== PTY_TYPE_MASTER
) {
2259 * special case for PTY masters: only one open permitted,
2260 * and the slave side open count is incremented as well.
2269 tty
->driver
= driver
; /* N.B. why do this every time?? */
2272 if (!test_bit(TTY_LDISC
, &tty
->flags
))
2273 printk(KERN_ERR
"init_dev but no ldisc\n");
2277 /* All paths come through here to release the mutex */
2281 /* Release locally allocated memory ... nothing placed in slots */
2285 free_tty_struct(o_tty
);
2288 free_tty_struct(tty
);
2291 module_put(driver
->owner
);
2295 /* call the tty release_tty routine to clean out this slot */
2297 if (printk_ratelimit())
2298 printk(KERN_INFO
"init_dev: ldisc open failed, "
2299 "clearing slot %d\n", idx
);
2300 release_tty(tty
, idx
);
2305 * release_one_tty - release tty structure memory
2307 * Releases memory associated with a tty structure, and clears out the
2308 * driver table slots. This function is called when a device is no longer
2309 * in use. It also gets called when setup of a device fails.
2312 * tty_mutex - sometimes only
2313 * takes the file list lock internally when working on the list
2314 * of ttys that the driver keeps.
2315 * FIXME: should we require tty_mutex is held here ??
2317 static void release_one_tty(struct tty_struct
*tty
, int idx
)
2319 int devpts
= tty
->driver
->flags
& TTY_DRIVER_DEVPTS_MEM
;
2320 struct ktermios
*tp
;
2323 tty
->driver
->ttys
[idx
] = NULL
;
2325 if (tty
->driver
->flags
& TTY_DRIVER_RESET_TERMIOS
) {
2328 tty
->driver
->termios
[idx
] = NULL
;
2331 tp
= tty
->termios_locked
;
2333 tty
->driver
->termios_locked
[idx
] = NULL
;
2339 tty
->driver
->refcount
--;
2342 list_del_init(&tty
->tty_files
);
2345 free_tty_struct(tty
);
2349 * release_tty - release tty structure memory
2351 * Release both @tty and a possible linked partner (think pty pair),
2352 * and decrement the refcount of the backing module.
2355 * tty_mutex - sometimes only
2356 * takes the file list lock internally when working on the list
2357 * of ttys that the driver keeps.
2358 * FIXME: should we require tty_mutex is held here ??
2360 static void release_tty(struct tty_struct
*tty
, int idx
)
2362 struct tty_driver
*driver
= tty
->driver
;
2365 release_one_tty(tty
->link
, idx
);
2366 release_one_tty(tty
, idx
);
2367 module_put(driver
->owner
);
2371 * Even releasing the tty structures is a tricky business.. We have
2372 * to be very careful that the structures are all released at the
2373 * same time, as interrupts might otherwise get the wrong pointers.
2375 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
2376 * lead to double frees or releasing memory still in use.
2378 static void release_dev(struct file
*filp
)
2380 struct tty_struct
*tty
, *o_tty
;
2381 int pty_master
, tty_closing
, o_tty_closing
, do_sleep
;
2385 unsigned long flags
;
2387 tty
= (struct tty_struct
*)filp
->private_data
;
2388 if (tty_paranoia_check(tty
, filp
->f_path
.dentry
->d_inode
,
2392 check_tty_count(tty
, "release_dev");
2394 tty_fasync(-1, filp
, 0);
2397 pty_master
= (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
&&
2398 tty
->driver
->subtype
== PTY_TYPE_MASTER
);
2399 devpts
= (tty
->driver
->flags
& TTY_DRIVER_DEVPTS_MEM
) != 0;
2402 #ifdef TTY_PARANOIA_CHECK
2403 if (idx
< 0 || idx
>= tty
->driver
->num
) {
2404 printk(KERN_DEBUG
"release_dev: bad idx when trying to "
2405 "free (%s)\n", tty
->name
);
2408 if (!(tty
->driver
->flags
& TTY_DRIVER_DEVPTS_MEM
)) {
2409 if (tty
!= tty
->driver
->ttys
[idx
]) {
2410 printk(KERN_DEBUG
"release_dev: driver.table[%d] not tty "
2411 "for (%s)\n", idx
, tty
->name
);
2414 if (tty
->termios
!= tty
->driver
->termios
[idx
]) {
2415 printk(KERN_DEBUG
"release_dev: driver.termios[%d] not termios "
2420 if (tty
->termios_locked
!= tty
->driver
->termios_locked
[idx
]) {
2421 printk(KERN_DEBUG
"release_dev: driver.termios_locked[%d] not "
2422 "termios_locked for (%s)\n",
2429 #ifdef TTY_DEBUG_HANGUP
2430 printk(KERN_DEBUG
"release_dev of %s (tty count=%d)...",
2431 tty_name(tty
, buf
), tty
->count
);
2434 #ifdef TTY_PARANOIA_CHECK
2435 if (tty
->driver
->other
&&
2436 !(tty
->driver
->flags
& TTY_DRIVER_DEVPTS_MEM
)) {
2437 if (o_tty
!= tty
->driver
->other
->ttys
[idx
]) {
2438 printk(KERN_DEBUG
"release_dev: other->table[%d] "
2439 "not o_tty for (%s)\n",
2443 if (o_tty
->termios
!= tty
->driver
->other
->termios
[idx
]) {
2444 printk(KERN_DEBUG
"release_dev: other->termios[%d] "
2445 "not o_termios for (%s)\n",
2449 if (o_tty
->termios_locked
!=
2450 tty
->driver
->other
->termios_locked
[idx
]) {
2451 printk(KERN_DEBUG
"release_dev: other->termios_locked["
2452 "%d] not o_termios_locked for (%s)\n",
2456 if (o_tty
->link
!= tty
) {
2457 printk(KERN_DEBUG
"release_dev: bad pty pointers\n");
2462 if (tty
->ops
->close
)
2463 tty
->ops
->close(tty
, filp
);
2466 * Sanity check: if tty->count is going to zero, there shouldn't be
2467 * any waiters on tty->read_wait or tty->write_wait. We test the
2468 * wait queues and kick everyone out _before_ actually starting to
2469 * close. This ensures that we won't block while releasing the tty
2472 * The test for the o_tty closing is necessary, since the master and
2473 * slave sides may close in any order. If the slave side closes out
2474 * first, its count will be one, since the master side holds an open.
2475 * Thus this test wouldn't be triggered at the time the slave closes,
2478 * Note that it's possible for the tty to be opened again while we're
2479 * flushing out waiters. By recalculating the closing flags before
2480 * each iteration we avoid any problems.
2483 /* Guard against races with tty->count changes elsewhere and
2484 opens on /dev/tty */
2486 mutex_lock(&tty_mutex
);
2487 tty_closing
= tty
->count
<= 1;
2488 o_tty_closing
= o_tty
&&
2489 (o_tty
->count
<= (pty_master
? 1 : 0));
2493 if (waitqueue_active(&tty
->read_wait
)) {
2494 wake_up(&tty
->read_wait
);
2497 if (waitqueue_active(&tty
->write_wait
)) {
2498 wake_up(&tty
->write_wait
);
2502 if (o_tty_closing
) {
2503 if (waitqueue_active(&o_tty
->read_wait
)) {
2504 wake_up(&o_tty
->read_wait
);
2507 if (waitqueue_active(&o_tty
->write_wait
)) {
2508 wake_up(&o_tty
->write_wait
);
2515 printk(KERN_WARNING
"release_dev: %s: read/write wait queue "
2516 "active!\n", tty_name(tty
, buf
));
2517 mutex_unlock(&tty_mutex
);
2522 * The closing flags are now consistent with the open counts on
2523 * both sides, and we've completed the last operation that could
2524 * block, so it's safe to proceed with closing.
2527 if (--o_tty
->count
< 0) {
2528 printk(KERN_WARNING
"release_dev: bad pty slave count "
2530 o_tty
->count
, tty_name(o_tty
, buf
));
2534 if (--tty
->count
< 0) {
2535 printk(KERN_WARNING
"release_dev: bad tty->count (%d) for %s\n",
2536 tty
->count
, tty_name(tty
, buf
));
2541 * We've decremented tty->count, so we need to remove this file
2542 * descriptor off the tty->tty_files list; this serves two
2544 * - check_tty_count sees the correct number of file descriptors
2545 * associated with this tty.
2546 * - do_tty_hangup no longer sees this file descriptor as
2547 * something that needs to be handled for hangups.
2550 filp
->private_data
= NULL
;
2553 * Perform some housekeeping before deciding whether to return.
2555 * Set the TTY_CLOSING flag if this was the last open. In the
2556 * case of a pty we may have to wait around for the other side
2557 * to close, and TTY_CLOSING makes sure we can't be reopened.
2560 set_bit(TTY_CLOSING
, &tty
->flags
);
2562 set_bit(TTY_CLOSING
, &o_tty
->flags
);
2565 * If _either_ side is closing, make sure there aren't any
2566 * processes that still think tty or o_tty is their controlling
2569 if (tty_closing
|| o_tty_closing
) {
2570 read_lock(&tasklist_lock
);
2571 session_clear_tty(tty
->session
);
2573 session_clear_tty(o_tty
->session
);
2574 read_unlock(&tasklist_lock
);
2577 mutex_unlock(&tty_mutex
);
2579 /* check whether both sides are closing ... */
2580 if (!tty_closing
|| (o_tty
&& !o_tty_closing
))
2583 #ifdef TTY_DEBUG_HANGUP
2584 printk(KERN_DEBUG
"freeing tty structure...");
2587 * Prevent flush_to_ldisc() from rescheduling the work for later. Then
2588 * kill any delayed work. As this is the final close it does not
2589 * race with the set_ldisc code path.
2591 clear_bit(TTY_LDISC
, &tty
->flags
);
2592 cancel_delayed_work(&tty
->buf
.work
);
2595 * Wait for ->hangup_work and ->buf.work handlers to terminate
2598 flush_scheduled_work();
2601 * Wait for any short term users (we know they are just driver
2602 * side waiters as the file is closing so user count on the file
2605 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
2606 while (tty
->ldisc
.refcount
) {
2607 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
2608 wait_event(tty_ldisc_wait
, tty
->ldisc
.refcount
== 0);
2609 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
2611 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
2613 * Shutdown the current line discipline, and reset it to N_TTY.
2614 * N.B. why reset ldisc when we're releasing the memory??
2616 * FIXME: this MUST get fixed for the new reflocking
2618 if (tty
->ldisc
.close
)
2619 (tty
->ldisc
.close
)(tty
);
2620 tty_ldisc_put(tty
->ldisc
.num
);
2623 * Switch the line discipline back
2625 tty_ldisc_assign(tty
, tty_ldisc_get(N_TTY
));
2626 tty_set_termios_ldisc(tty
, N_TTY
);
2628 /* FIXME: could o_tty be in setldisc here ? */
2629 clear_bit(TTY_LDISC
, &o_tty
->flags
);
2630 if (o_tty
->ldisc
.close
)
2631 (o_tty
->ldisc
.close
)(o_tty
);
2632 tty_ldisc_put(o_tty
->ldisc
.num
);
2633 tty_ldisc_assign(o_tty
, tty_ldisc_get(N_TTY
));
2634 tty_set_termios_ldisc(o_tty
, N_TTY
);
2637 * The release_tty function takes care of the details of clearing
2638 * the slots and preserving the termios structure.
2640 release_tty(tty
, idx
);
2642 /* Make this pty number available for reallocation */
2644 devpts_kill_index(idx
);
2648 * tty_open - open a tty device
2649 * @inode: inode of device file
2650 * @filp: file pointer to tty
2652 * tty_open and tty_release keep up the tty count that contains the
2653 * number of opens done on a tty. We cannot use the inode-count, as
2654 * different inodes might point to the same tty.
2656 * Open-counting is needed for pty masters, as well as for keeping
2657 * track of serial lines: DTR is dropped when the last close happens.
2658 * (This is not done solely through tty->count, now. - Ted 1/27/92)
2660 * The termios state of a pty is reset on first open so that
2661 * settings don't persist across reuse.
2663 * Locking: tty_mutex protects tty, get_tty_driver and init_dev work.
2664 * tty->count should protect the rest.
2665 * ->siglock protects ->signal/->sighand
2668 static int tty_open(struct inode
*inode
, struct file
*filp
)
2670 struct tty_struct
*tty
;
2672 struct tty_driver
*driver
;
2674 dev_t device
= inode
->i_rdev
;
2675 unsigned short saved_flags
= filp
->f_flags
;
2677 nonseekable_open(inode
, filp
);
2680 noctty
= filp
->f_flags
& O_NOCTTY
;
2684 mutex_lock(&tty_mutex
);
2686 if (device
== MKDEV(TTYAUX_MAJOR
, 0)) {
2687 tty
= get_current_tty();
2689 mutex_unlock(&tty_mutex
);
2692 driver
= tty
->driver
;
2694 filp
->f_flags
|= O_NONBLOCK
; /* Don't let /dev/tty block */
2699 if (device
== MKDEV(TTY_MAJOR
, 0)) {
2700 extern struct tty_driver
*console_driver
;
2701 driver
= console_driver
;
2707 if (device
== MKDEV(TTYAUX_MAJOR
, 1)) {
2708 driver
= console_device(&index
);
2710 /* Don't let /dev/console block */
2711 filp
->f_flags
|= O_NONBLOCK
;
2715 mutex_unlock(&tty_mutex
);
2719 driver
= get_tty_driver(device
, &index
);
2721 mutex_unlock(&tty_mutex
);
2725 retval
= init_dev(driver
, index
, &tty
);
2726 mutex_unlock(&tty_mutex
);
2730 filp
->private_data
= tty
;
2731 file_move(filp
, &tty
->tty_files
);
2732 check_tty_count(tty
, "tty_open");
2733 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
&&
2734 tty
->driver
->subtype
== PTY_TYPE_MASTER
)
2736 #ifdef TTY_DEBUG_HANGUP
2737 printk(KERN_DEBUG
"opening %s...", tty
->name
);
2741 retval
= tty
->ops
->open(tty
, filp
);
2745 filp
->f_flags
= saved_flags
;
2747 if (!retval
&& test_bit(TTY_EXCLUSIVE
, &tty
->flags
) &&
2748 !capable(CAP_SYS_ADMIN
))
2752 #ifdef TTY_DEBUG_HANGUP
2753 printk(KERN_DEBUG
"error %d in opening %s...", retval
,
2757 if (retval
!= -ERESTARTSYS
)
2759 if (signal_pending(current
))
2763 * Need to reset f_op in case a hangup happened.
2765 if (filp
->f_op
== &hung_up_tty_fops
)
2766 filp
->f_op
= &tty_fops
;
2770 mutex_lock(&tty_mutex
);
2771 spin_lock_irq(¤t
->sighand
->siglock
);
2773 current
->signal
->leader
&&
2774 !current
->signal
->tty
&&
2775 tty
->session
== NULL
)
2776 __proc_set_tty(current
, tty
);
2777 spin_unlock_irq(¤t
->sighand
->siglock
);
2778 mutex_unlock(&tty_mutex
);
2782 #ifdef CONFIG_UNIX98_PTYS
2784 * ptmx_open - open a unix 98 pty master
2785 * @inode: inode of device file
2786 * @filp: file pointer to tty
2788 * Allocate a unix98 pty master device from the ptmx driver.
2790 * Locking: tty_mutex protects theinit_dev work. tty->count should
2792 * allocated_ptys_lock handles the list of free pty numbers
2795 static int ptmx_open(struct inode
*inode
, struct file
*filp
)
2797 struct tty_struct
*tty
;
2801 nonseekable_open(inode
, filp
);
2803 /* find a device that is not in use. */
2804 index
= devpts_new_index();
2808 mutex_lock(&tty_mutex
);
2809 retval
= init_dev(ptm_driver
, index
, &tty
);
2810 mutex_unlock(&tty_mutex
);
2815 set_bit(TTY_PTY_LOCK
, &tty
->flags
); /* LOCK THE SLAVE */
2816 filp
->private_data
= tty
;
2817 file_move(filp
, &tty
->tty_files
);
2819 retval
= devpts_pty_new(tty
->link
);
2823 check_tty_count(tty
, "ptmx_open");
2824 retval
= ptm_driver
->ops
->open(tty
, filp
);
2831 devpts_kill_index(index
);
2837 * tty_release - vfs callback for close
2838 * @inode: inode of tty
2839 * @filp: file pointer for handle to tty
2841 * Called the last time each file handle is closed that references
2842 * this tty. There may however be several such references.
2845 * Takes bkl. See release_dev
2848 static int tty_release(struct inode
*inode
, struct file
*filp
)
2857 * tty_poll - check tty status
2858 * @filp: file being polled
2859 * @wait: poll wait structures to update
2861 * Call the line discipline polling method to obtain the poll
2862 * status of the device.
2864 * Locking: locks called line discipline but ldisc poll method
2865 * may be re-entered freely by other callers.
2868 static unsigned int tty_poll(struct file
*filp
, poll_table
*wait
)
2870 struct tty_struct
*tty
;
2871 struct tty_ldisc
*ld
;
2874 tty
= (struct tty_struct
*)filp
->private_data
;
2875 if (tty_paranoia_check(tty
, filp
->f_path
.dentry
->d_inode
, "tty_poll"))
2878 ld
= tty_ldisc_ref_wait(tty
);
2880 ret
= (ld
->poll
)(tty
, filp
, wait
);
2881 tty_ldisc_deref(ld
);
2885 static int tty_fasync(int fd
, struct file
*filp
, int on
)
2887 struct tty_struct
*tty
;
2888 unsigned long flags
;
2891 tty
= (struct tty_struct
*)filp
->private_data
;
2892 if (tty_paranoia_check(tty
, filp
->f_path
.dentry
->d_inode
, "tty_fasync"))
2895 retval
= fasync_helper(fd
, filp
, on
, &tty
->fasync
);
2902 if (!waitqueue_active(&tty
->read_wait
))
2903 tty
->minimum_to_wake
= 1;
2904 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
2907 type
= PIDTYPE_PGID
;
2909 pid
= task_pid(current
);
2912 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
2913 retval
= __f_setown(filp
, pid
, type
, 0);
2917 if (!tty
->fasync
&& !waitqueue_active(&tty
->read_wait
))
2918 tty
->minimum_to_wake
= N_TTY_BUF_SIZE
;
2924 * tiocsti - fake input character
2925 * @tty: tty to fake input into
2926 * @p: pointer to character
2928 * Fake input to a tty device. Does the necessary locking and
2931 * FIXME: does not honour flow control ??
2934 * Called functions take tty_ldisc_lock
2935 * current->signal->tty check is safe without locks
2937 * FIXME: may race normal receive processing
2940 static int tiocsti(struct tty_struct
*tty
, char __user
*p
)
2943 struct tty_ldisc
*ld
;
2945 if ((current
->signal
->tty
!= tty
) && !capable(CAP_SYS_ADMIN
))
2947 if (get_user(ch
, p
))
2949 ld
= tty_ldisc_ref_wait(tty
);
2950 ld
->receive_buf(tty
, &ch
, &mbz
, 1);
2951 tty_ldisc_deref(ld
);
2956 * tiocgwinsz - implement window query ioctl
2958 * @arg: user buffer for result
2960 * Copies the kernel idea of the window size into the user buffer.
2962 * Locking: tty->termios_mutex is taken to ensure the winsize data
2966 static int tiocgwinsz(struct tty_struct
*tty
, struct winsize __user
*arg
)
2970 mutex_lock(&tty
->termios_mutex
);
2971 err
= copy_to_user(arg
, &tty
->winsize
, sizeof(*arg
));
2972 mutex_unlock(&tty
->termios_mutex
);
2974 return err
? -EFAULT
: 0;
2978 * tiocswinsz - implement window size set ioctl
2980 * @arg: user buffer for result
2982 * Copies the user idea of the window size to the kernel. Traditionally
2983 * this is just advisory information but for the Linux console it
2984 * actually has driver level meaning and triggers a VC resize.
2987 * Called function use the console_sem is used to ensure we do
2988 * not try and resize the console twice at once.
2989 * The tty->termios_mutex is used to ensure we don't double
2990 * resize and get confused. Lock order - tty->termios_mutex before
2994 static int tiocswinsz(struct tty_struct
*tty
, struct tty_struct
*real_tty
,
2995 struct winsize __user
*arg
)
2997 struct winsize tmp_ws
;
2998 struct pid
*pgrp
, *rpgrp
;
2999 unsigned long flags
;
3001 if (copy_from_user(&tmp_ws
, arg
, sizeof(*arg
)))
3004 mutex_lock(&tty
->termios_mutex
);
3005 if (!memcmp(&tmp_ws
, &tty
->winsize
, sizeof(*arg
)))
3009 if (tty
->driver
->type
== TTY_DRIVER_TYPE_CONSOLE
) {
3010 if (vc_lock_resize(tty
->driver_data
, tmp_ws
.ws_col
,
3012 mutex_unlock(&tty
->termios_mutex
);
3017 /* Get the PID values and reference them so we can
3018 avoid holding the tty ctrl lock while sending signals */
3019 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
3020 pgrp
= get_pid(tty
->pgrp
);
3021 rpgrp
= get_pid(real_tty
->pgrp
);
3022 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
3025 kill_pgrp(pgrp
, SIGWINCH
, 1);
3026 if (rpgrp
!= pgrp
&& rpgrp
)
3027 kill_pgrp(rpgrp
, SIGWINCH
, 1);
3032 tty
->winsize
= tmp_ws
;
3033 real_tty
->winsize
= tmp_ws
;
3035 mutex_unlock(&tty
->termios_mutex
);
3040 * tioccons - allow admin to move logical console
3041 * @file: the file to become console
3043 * Allow the adminstrator to move the redirected console device
3045 * Locking: uses redirect_lock to guard the redirect information
3048 static int tioccons(struct file
*file
)
3050 if (!capable(CAP_SYS_ADMIN
))
3052 if (file
->f_op
->write
== redirected_tty_write
) {
3054 spin_lock(&redirect_lock
);
3057 spin_unlock(&redirect_lock
);
3062 spin_lock(&redirect_lock
);
3064 spin_unlock(&redirect_lock
);
3069 spin_unlock(&redirect_lock
);
3074 * fionbio - non blocking ioctl
3075 * @file: file to set blocking value
3076 * @p: user parameter
3078 * Historical tty interfaces had a blocking control ioctl before
3079 * the generic functionality existed. This piece of history is preserved
3080 * in the expected tty API of posix OS's.
3082 * Locking: none, the open fle handle ensures it won't go away.
3085 static int fionbio(struct file
*file
, int __user
*p
)
3089 if (get_user(nonblock
, p
))
3092 /* file->f_flags is still BKL protected in the fs layer - vomit */
3095 file
->f_flags
|= O_NONBLOCK
;
3097 file
->f_flags
&= ~O_NONBLOCK
;
3103 * tiocsctty - set controlling tty
3104 * @tty: tty structure
3105 * @arg: user argument
3107 * This ioctl is used to manage job control. It permits a session
3108 * leader to set this tty as the controlling tty for the session.
3111 * Takes tty_mutex() to protect tty instance
3112 * Takes tasklist_lock internally to walk sessions
3113 * Takes ->siglock() when updating signal->tty
3116 static int tiocsctty(struct tty_struct
*tty
, int arg
)
3119 if (current
->signal
->leader
&& (task_session(current
) == tty
->session
))
3122 mutex_lock(&tty_mutex
);
3124 * The process must be a session leader and
3125 * not have a controlling tty already.
3127 if (!current
->signal
->leader
|| current
->signal
->tty
) {
3134 * This tty is already the controlling
3135 * tty for another session group!
3137 if (arg
== 1 && capable(CAP_SYS_ADMIN
)) {
3141 read_lock(&tasklist_lock
);
3142 session_clear_tty(tty
->session
);
3143 read_unlock(&tasklist_lock
);
3149 proc_set_tty(current
, tty
);
3151 mutex_unlock(&tty_mutex
);
3156 * tty_get_pgrp - return a ref counted pgrp pid
3159 * Returns a refcounted instance of the pid struct for the process
3160 * group controlling the tty.
3163 struct pid
*tty_get_pgrp(struct tty_struct
*tty
)
3165 unsigned long flags
;
3168 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
3169 pgrp
= get_pid(tty
->pgrp
);
3170 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
3174 EXPORT_SYMBOL_GPL(tty_get_pgrp
);
3177 * tiocgpgrp - get process group
3178 * @tty: tty passed by user
3179 * @real_tty: tty side of the tty pased by the user if a pty else the tty
3182 * Obtain the process group of the tty. If there is no process group
3185 * Locking: none. Reference to current->signal->tty is safe.
3188 static int tiocgpgrp(struct tty_struct
*tty
, struct tty_struct
*real_tty
, pid_t __user
*p
)
3193 * (tty == real_tty) is a cheap way of
3194 * testing if the tty is NOT a master pty.
3196 if (tty
== real_tty
&& current
->signal
->tty
!= real_tty
)
3198 pid
= tty_get_pgrp(real_tty
);
3199 ret
= put_user(pid_vnr(pid
), p
);
3205 * tiocspgrp - attempt to set process group
3206 * @tty: tty passed by user
3207 * @real_tty: tty side device matching tty passed by user
3210 * Set the process group of the tty to the session passed. Only
3211 * permitted where the tty session is our session.
3213 * Locking: RCU, ctrl lock
3216 static int tiocspgrp(struct tty_struct
*tty
, struct tty_struct
*real_tty
, pid_t __user
*p
)
3220 int retval
= tty_check_change(real_tty
);
3221 unsigned long flags
;
3227 if (!current
->signal
->tty
||
3228 (current
->signal
->tty
!= real_tty
) ||
3229 (real_tty
->session
!= task_session(current
)))
3231 if (get_user(pgrp_nr
, p
))
3236 pgrp
= find_vpid(pgrp_nr
);
3241 if (session_of_pgrp(pgrp
) != task_session(current
))
3244 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
3245 put_pid(real_tty
->pgrp
);
3246 real_tty
->pgrp
= get_pid(pgrp
);
3247 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
3254 * tiocgsid - get session id
3255 * @tty: tty passed by user
3256 * @real_tty: tty side of the tty pased by the user if a pty else the tty
3257 * @p: pointer to returned session id
3259 * Obtain the session id of the tty. If there is no session
3262 * Locking: none. Reference to current->signal->tty is safe.
3265 static int tiocgsid(struct tty_struct
*tty
, struct tty_struct
*real_tty
, pid_t __user
*p
)
3268 * (tty == real_tty) is a cheap way of
3269 * testing if the tty is NOT a master pty.
3271 if (tty
== real_tty
&& current
->signal
->tty
!= real_tty
)
3273 if (!real_tty
->session
)
3275 return put_user(pid_vnr(real_tty
->session
), p
);
3279 * tiocsetd - set line discipline
3281 * @p: pointer to user data
3283 * Set the line discipline according to user request.
3285 * Locking: see tty_set_ldisc, this function is just a helper
3288 static int tiocsetd(struct tty_struct
*tty
, int __user
*p
)
3293 if (get_user(ldisc
, p
))
3297 ret
= tty_set_ldisc(tty
, ldisc
);
3304 * send_break - performed time break
3305 * @tty: device to break on
3306 * @duration: timeout in mS
3308 * Perform a timed break on hardware that lacks its own driver level
3309 * timed break functionality.
3312 * atomic_write_lock serializes
3316 static int send_break(struct tty_struct
*tty
, unsigned int duration
)
3318 if (tty_write_lock(tty
, 0) < 0)
3320 tty
->ops
->break_ctl(tty
, -1);
3321 if (!signal_pending(current
))
3322 msleep_interruptible(duration
);
3323 tty
->ops
->break_ctl(tty
, 0);
3324 tty_write_unlock(tty
);
3325 if (!signal_pending(current
))
3331 * tty_tiocmget - get modem status
3333 * @file: user file pointer
3334 * @p: pointer to result
3336 * Obtain the modem status bits from the tty driver if the feature
3337 * is supported. Return -EINVAL if it is not available.
3339 * Locking: none (up to the driver)
3342 static int tty_tiocmget(struct tty_struct
*tty
, struct file
*file
, int __user
*p
)
3344 int retval
= -EINVAL
;
3346 if (tty
->ops
->tiocmget
) {
3347 retval
= tty
->ops
->tiocmget(tty
, file
);
3350 retval
= put_user(retval
, p
);
3356 * tty_tiocmset - set modem status
3358 * @file: user file pointer
3359 * @cmd: command - clear bits, set bits or set all
3360 * @p: pointer to desired bits
3362 * Set the modem status bits from the tty driver if the feature
3363 * is supported. Return -EINVAL if it is not available.
3365 * Locking: none (up to the driver)
3368 static int tty_tiocmset(struct tty_struct
*tty
, struct file
*file
, unsigned int cmd
,
3371 int retval
= -EINVAL
;
3373 if (tty
->ops
->tiocmset
) {
3374 unsigned int set
, clear
, val
;
3376 retval
= get_user(val
, p
);
3394 set
&= TIOCM_DTR
|TIOCM_RTS
|TIOCM_OUT1
|TIOCM_OUT2
|TIOCM_LOOP
;
3395 clear
&= TIOCM_DTR
|TIOCM_RTS
|TIOCM_OUT1
|TIOCM_OUT2
|TIOCM_LOOP
;
3397 retval
= tty
->ops
->tiocmset(tty
, file
, set
, clear
);
3403 * Split this up, as gcc can choke on it otherwise..
3405 long tty_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
3407 struct tty_struct
*tty
, *real_tty
;
3408 void __user
*p
= (void __user
*)arg
;
3410 struct tty_ldisc
*ld
;
3411 struct inode
*inode
= file
->f_dentry
->d_inode
;
3413 tty
= (struct tty_struct
*)file
->private_data
;
3414 if (tty_paranoia_check(tty
, inode
, "tty_ioctl"))
3418 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
&&
3419 tty
->driver
->subtype
== PTY_TYPE_MASTER
)
3420 real_tty
= tty
->link
;
3423 * Break handling by driver
3428 if (!tty
->ops
->break_ctl
) {
3432 if (tty
->ops
->ioctl
)
3433 retval
= tty
->ops
->ioctl(tty
, file
, cmd
, arg
);
3434 if (retval
!= -EINVAL
&& retval
!= -ENOIOCTLCMD
)
3435 printk(KERN_WARNING
"tty: driver %s needs updating to use break_ctl\n", tty
->driver
->name
);
3438 /* These two ioctl's always return success; even if */
3439 /* the driver doesn't support them. */
3442 if (!tty
->ops
->ioctl
)
3444 retval
= tty
->ops
->ioctl(tty
, file
, cmd
, arg
);
3445 if (retval
!= -EINVAL
&& retval
!= -ENOIOCTLCMD
)
3446 printk(KERN_WARNING
"tty: driver %s needs updating to use break_ctl\n", tty
->driver
->name
);
3447 if (retval
== -ENOIOCTLCMD
)
3454 * Factor out some common prep work
3462 retval
= tty_check_change(tty
);
3465 if (cmd
!= TIOCCBRK
) {
3466 tty_wait_until_sent(tty
, 0);
3467 if (signal_pending(current
))
3475 return tiocsti(tty
, p
);
3477 return tiocgwinsz(tty
, p
);
3479 return tiocswinsz(tty
, real_tty
, p
);
3481 return real_tty
!= tty
? -EINVAL
: tioccons(file
);
3483 return fionbio(file
, p
);
3485 set_bit(TTY_EXCLUSIVE
, &tty
->flags
);
3488 clear_bit(TTY_EXCLUSIVE
, &tty
->flags
);
3491 if (current
->signal
->tty
!= tty
)
3496 return tiocsctty(tty
, arg
);
3498 return tiocgpgrp(tty
, real_tty
, p
);
3500 return tiocspgrp(tty
, real_tty
, p
);
3502 return tiocgsid(tty
, real_tty
, p
);
3504 return put_user(tty
->ldisc
.num
, (int __user
*)p
);
3506 return tiocsetd(tty
, p
);
3509 return tioclinux(tty
, arg
);
3514 case TIOCSBRK
: /* Turn break on, unconditionally */
3515 if (tty
->ops
->break_ctl
)
3516 tty
->ops
->break_ctl(tty
, -1);
3519 case TIOCCBRK
: /* Turn break off, unconditionally */
3520 if (tty
->ops
->break_ctl
)
3521 tty
->ops
->break_ctl(tty
, 0);
3523 case TCSBRK
: /* SVID version: non-zero arg --> no break */
3524 /* non-zero arg means wait for all output data
3525 * to be sent (performed above) but don't send break.
3526 * This is used by the tcdrain() termios function.
3529 return send_break(tty
, 250);
3531 case TCSBRKP
: /* support for POSIX tcsendbreak() */
3532 return send_break(tty
, arg
? arg
*100 : 250);
3535 return tty_tiocmget(tty
, file
, p
);
3539 return tty_tiocmset(tty
, file
, cmd
, p
);
3544 /* flush tty buffer and allow ldisc to process ioctl */
3545 tty_buffer_flush(tty
);
3550 if (tty
->ops
->ioctl
) {
3551 retval
= (tty
->ops
->ioctl
)(tty
, file
, cmd
, arg
);
3552 if (retval
!= -ENOIOCTLCMD
)
3555 ld
= tty_ldisc_ref_wait(tty
);
3558 retval
= ld
->ioctl(tty
, file
, cmd
, arg
);
3559 if (retval
== -ENOIOCTLCMD
)
3562 tty_ldisc_deref(ld
);
3566 #ifdef CONFIG_COMPAT
3567 static long tty_compat_ioctl(struct file
*file
, unsigned int cmd
,
3570 struct inode
*inode
= file
->f_dentry
->d_inode
;
3571 struct tty_struct
*tty
= file
->private_data
;
3572 struct tty_ldisc
*ld
;
3573 int retval
= -ENOIOCTLCMD
;
3575 if (tty_paranoia_check(tty
, inode
, "tty_ioctl"))
3578 if (tty
->ops
->compat_ioctl
) {
3579 retval
= (tty
->ops
->compat_ioctl
)(tty
, file
, cmd
, arg
);
3580 if (retval
!= -ENOIOCTLCMD
)
3584 ld
= tty_ldisc_ref_wait(tty
);
3585 if (ld
->compat_ioctl
)
3586 retval
= ld
->compat_ioctl(tty
, file
, cmd
, arg
);
3587 tty_ldisc_deref(ld
);
3594 * This implements the "Secure Attention Key" --- the idea is to
3595 * prevent trojan horses by killing all processes associated with this
3596 * tty when the user hits the "Secure Attention Key". Required for
3597 * super-paranoid applications --- see the Orange Book for more details.
3599 * This code could be nicer; ideally it should send a HUP, wait a few
3600 * seconds, then send a INT, and then a KILL signal. But you then
3601 * have to coordinate with the init process, since all processes associated
3602 * with the current tty must be dead before the new getty is allowed
3605 * Now, if it would be correct ;-/ The current code has a nasty hole -
3606 * it doesn't catch files in flight. We may send the descriptor to ourselves
3607 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
3609 * Nasty bug: do_SAK is being called in interrupt context. This can
3610 * deadlock. We punt it up to process context. AKPM - 16Mar2001
3612 void __do_SAK(struct tty_struct
*tty
)
3617 struct task_struct
*g
, *p
;
3618 struct pid
*session
;
3621 struct fdtable
*fdt
;
3625 session
= tty
->session
;
3627 tty_ldisc_flush(tty
);
3629 tty_driver_flush_buffer(tty
);
3631 read_lock(&tasklist_lock
);
3632 /* Kill the entire session */
3633 do_each_pid_task(session
, PIDTYPE_SID
, p
) {
3634 printk(KERN_NOTICE
"SAK: killed process %d"
3635 " (%s): task_session_nr(p)==tty->session\n",
3636 task_pid_nr(p
), p
->comm
);
3637 send_sig(SIGKILL
, p
, 1);
3638 } while_each_pid_task(session
, PIDTYPE_SID
, p
);
3639 /* Now kill any processes that happen to have the
3642 do_each_thread(g
, p
) {
3643 if (p
->signal
->tty
== tty
) {
3644 printk(KERN_NOTICE
"SAK: killed process %d"
3645 " (%s): task_session_nr(p)==tty->session\n",
3646 task_pid_nr(p
), p
->comm
);
3647 send_sig(SIGKILL
, p
, 1);
3653 * We don't take a ref to the file, so we must
3654 * hold ->file_lock instead.
3656 spin_lock(&p
->files
->file_lock
);
3657 fdt
= files_fdtable(p
->files
);
3658 for (i
= 0; i
< fdt
->max_fds
; i
++) {
3659 filp
= fcheck_files(p
->files
, i
);
3662 if (filp
->f_op
->read
== tty_read
&&
3663 filp
->private_data
== tty
) {
3664 printk(KERN_NOTICE
"SAK: killed process %d"
3665 " (%s): fd#%d opened to the tty\n",
3666 task_pid_nr(p
), p
->comm
, i
);
3667 force_sig(SIGKILL
, p
);
3671 spin_unlock(&p
->files
->file_lock
);
3674 } while_each_thread(g
, p
);
3675 read_unlock(&tasklist_lock
);
3679 static void do_SAK_work(struct work_struct
*work
)
3681 struct tty_struct
*tty
=
3682 container_of(work
, struct tty_struct
, SAK_work
);
3687 * The tq handling here is a little racy - tty->SAK_work may already be queued.
3688 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
3689 * the values which we write to it will be identical to the values which it
3690 * already has. --akpm
3692 void do_SAK(struct tty_struct
*tty
)
3696 schedule_work(&tty
->SAK_work
);
3699 EXPORT_SYMBOL(do_SAK
);
3703 * @work: tty structure passed from work queue.
3705 * This routine is called out of the software interrupt to flush data
3706 * from the buffer chain to the line discipline.
3708 * Locking: holds tty->buf.lock to guard buffer list. Drops the lock
3709 * while invoking the line discipline receive_buf method. The
3710 * receive_buf method is single threaded for each tty instance.
3713 static void flush_to_ldisc(struct work_struct
*work
)
3715 struct tty_struct
*tty
=
3716 container_of(work
, struct tty_struct
, buf
.work
.work
);
3717 unsigned long flags
;
3718 struct tty_ldisc
*disc
;
3719 struct tty_buffer
*tbuf
, *head
;
3721 unsigned char *flag_buf
;
3723 disc
= tty_ldisc_ref(tty
);
3724 if (disc
== NULL
) /* !TTY_LDISC */
3727 spin_lock_irqsave(&tty
->buf
.lock
, flags
);
3728 /* So we know a flush is running */
3729 set_bit(TTY_FLUSHING
, &tty
->flags
);
3730 head
= tty
->buf
.head
;
3732 tty
->buf
.head
= NULL
;
3734 int count
= head
->commit
- head
->read
;
3736 if (head
->next
== NULL
)
3740 tty_buffer_free(tty
, tbuf
);
3743 /* Ldisc or user is trying to flush the buffers
3744 we are feeding to the ldisc, stop feeding the
3745 line discipline as we want to empty the queue */
3746 if (test_bit(TTY_FLUSHPENDING
, &tty
->flags
))
3748 if (!tty
->receive_room
) {
3749 schedule_delayed_work(&tty
->buf
.work
, 1);
3752 if (count
> tty
->receive_room
)
3753 count
= tty
->receive_room
;
3754 char_buf
= head
->char_buf_ptr
+ head
->read
;
3755 flag_buf
= head
->flag_buf_ptr
+ head
->read
;
3756 head
->read
+= count
;
3757 spin_unlock_irqrestore(&tty
->buf
.lock
, flags
);
3758 disc
->receive_buf(tty
, char_buf
, flag_buf
, count
);
3759 spin_lock_irqsave(&tty
->buf
.lock
, flags
);
3761 /* Restore the queue head */
3762 tty
->buf
.head
= head
;
3764 /* We may have a deferred request to flush the input buffer,
3765 if so pull the chain under the lock and empty the queue */
3766 if (test_bit(TTY_FLUSHPENDING
, &tty
->flags
)) {
3767 __tty_buffer_flush(tty
);
3768 clear_bit(TTY_FLUSHPENDING
, &tty
->flags
);
3769 wake_up(&tty
->read_wait
);
3771 clear_bit(TTY_FLUSHING
, &tty
->flags
);
3772 spin_unlock_irqrestore(&tty
->buf
.lock
, flags
);
3774 tty_ldisc_deref(disc
);
3778 * tty_flip_buffer_push - terminal
3781 * Queue a push of the terminal flip buffers to the line discipline. This
3782 * function must not be called from IRQ context if tty->low_latency is set.
3784 * In the event of the queue being busy for flipping the work will be
3785 * held off and retried later.
3787 * Locking: tty buffer lock. Driver locks in low latency mode.
3790 void tty_flip_buffer_push(struct tty_struct
*tty
)
3792 unsigned long flags
;
3793 spin_lock_irqsave(&tty
->buf
.lock
, flags
);
3794 if (tty
->buf
.tail
!= NULL
)
3795 tty
->buf
.tail
->commit
= tty
->buf
.tail
->used
;
3796 spin_unlock_irqrestore(&tty
->buf
.lock
, flags
);
3798 if (tty
->low_latency
)
3799 flush_to_ldisc(&tty
->buf
.work
.work
);
3801 schedule_delayed_work(&tty
->buf
.work
, 1);
3804 EXPORT_SYMBOL(tty_flip_buffer_push
);
3808 * initialize_tty_struct
3809 * @tty: tty to initialize
3811 * This subroutine initializes a tty structure that has been newly
3814 * Locking: none - tty in question must not be exposed at this point
3817 static void initialize_tty_struct(struct tty_struct
*tty
)
3819 memset(tty
, 0, sizeof(struct tty_struct
));
3820 tty
->magic
= TTY_MAGIC
;
3821 tty_ldisc_assign(tty
, tty_ldisc_get(N_TTY
));
3822 tty
->session
= NULL
;
3824 tty
->overrun_time
= jiffies
;
3825 tty
->buf
.head
= tty
->buf
.tail
= NULL
;
3826 tty_buffer_init(tty
);
3827 INIT_DELAYED_WORK(&tty
->buf
.work
, flush_to_ldisc
);
3828 mutex_init(&tty
->termios_mutex
);
3829 init_waitqueue_head(&tty
->write_wait
);
3830 init_waitqueue_head(&tty
->read_wait
);
3831 INIT_WORK(&tty
->hangup_work
, do_tty_hangup
);
3832 mutex_init(&tty
->atomic_read_lock
);
3833 mutex_init(&tty
->atomic_write_lock
);
3834 spin_lock_init(&tty
->read_lock
);
3835 spin_lock_init(&tty
->ctrl_lock
);
3836 INIT_LIST_HEAD(&tty
->tty_files
);
3837 INIT_WORK(&tty
->SAK_work
, do_SAK_work
);
3841 * tty_put_char - write one character to a tty
3845 * Write one byte to the tty using the provided put_char method
3846 * if present. Returns the number of characters successfully output.
3848 * Note: the specific put_char operation in the driver layer may go
3849 * away soon. Don't call it directly, use this method
3852 int tty_put_char(struct tty_struct
*tty
, unsigned char ch
)
3854 if (tty
->ops
->put_char
)
3855 return tty
->ops
->put_char(tty
, ch
);
3856 return tty
->ops
->write(tty
, &ch
, 1);
3859 EXPORT_SYMBOL_GPL(tty_put_char
);
3861 static struct class *tty_class
;
3864 * tty_register_device - register a tty device
3865 * @driver: the tty driver that describes the tty device
3866 * @index: the index in the tty driver for this tty device
3867 * @device: a struct device that is associated with this tty device.
3868 * This field is optional, if there is no known struct device
3869 * for this tty device it can be set to NULL safely.
3871 * Returns a pointer to the struct device for this tty device
3872 * (or ERR_PTR(-EFOO) on error).
3874 * This call is required to be made to register an individual tty device
3875 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
3876 * that bit is not set, this function should not be called by a tty
3882 struct device
*tty_register_device(struct tty_driver
*driver
, unsigned index
,
3883 struct device
*device
)
3886 dev_t dev
= MKDEV(driver
->major
, driver
->minor_start
) + index
;
3888 if (index
>= driver
->num
) {
3889 printk(KERN_ERR
"Attempt to register invalid tty line number "
3891 return ERR_PTR(-EINVAL
);
3894 if (driver
->type
== TTY_DRIVER_TYPE_PTY
)
3895 pty_line_name(driver
, index
, name
);
3897 tty_line_name(driver
, index
, name
);
3899 return device_create(tty_class
, device
, dev
, name
);
3903 * tty_unregister_device - unregister a tty device
3904 * @driver: the tty driver that describes the tty device
3905 * @index: the index in the tty driver for this tty device
3907 * If a tty device is registered with a call to tty_register_device() then
3908 * this function must be called when the tty device is gone.
3913 void tty_unregister_device(struct tty_driver
*driver
, unsigned index
)
3915 device_destroy(tty_class
,
3916 MKDEV(driver
->major
, driver
->minor_start
) + index
);
3919 EXPORT_SYMBOL(tty_register_device
);
3920 EXPORT_SYMBOL(tty_unregister_device
);
3922 struct tty_driver
*alloc_tty_driver(int lines
)
3924 struct tty_driver
*driver
;
3926 driver
= kzalloc(sizeof(struct tty_driver
), GFP_KERNEL
);
3928 driver
->magic
= TTY_DRIVER_MAGIC
;
3929 driver
->num
= lines
;
3930 /* later we'll move allocation of tables here */
3935 void put_tty_driver(struct tty_driver
*driver
)
3940 void tty_set_operations(struct tty_driver
*driver
,
3941 const struct tty_operations
*op
)
3946 EXPORT_SYMBOL(alloc_tty_driver
);
3947 EXPORT_SYMBOL(put_tty_driver
);
3948 EXPORT_SYMBOL(tty_set_operations
);
3951 * Called by a tty driver to register itself.
3953 int tty_register_driver(struct tty_driver
*driver
)
3960 if (driver
->flags
& TTY_DRIVER_INSTALLED
)
3963 if (!(driver
->flags
& TTY_DRIVER_DEVPTS_MEM
) && driver
->num
) {
3964 p
= kzalloc(driver
->num
* 3 * sizeof(void *), GFP_KERNEL
);
3969 if (!driver
->major
) {
3970 error
= alloc_chrdev_region(&dev
, driver
->minor_start
,
3971 driver
->num
, driver
->name
);
3973 driver
->major
= MAJOR(dev
);
3974 driver
->minor_start
= MINOR(dev
);
3977 dev
= MKDEV(driver
->major
, driver
->minor_start
);
3978 error
= register_chrdev_region(dev
, driver
->num
, driver
->name
);
3986 driver
->ttys
= (struct tty_struct
**)p
;
3987 driver
->termios
= (struct ktermios
**)(p
+ driver
->num
);
3988 driver
->termios_locked
= (struct ktermios
**)
3989 (p
+ driver
->num
* 2);
3991 driver
->ttys
= NULL
;
3992 driver
->termios
= NULL
;
3993 driver
->termios_locked
= NULL
;
3996 cdev_init(&driver
->cdev
, &tty_fops
);
3997 driver
->cdev
.owner
= driver
->owner
;
3998 error
= cdev_add(&driver
->cdev
, dev
, driver
->num
);
4000 unregister_chrdev_region(dev
, driver
->num
);
4001 driver
->ttys
= NULL
;
4002 driver
->termios
= driver
->termios_locked
= NULL
;
4007 mutex_lock(&tty_mutex
);
4008 list_add(&driver
->tty_drivers
, &tty_drivers
);
4009 mutex_unlock(&tty_mutex
);
4011 if (!(driver
->flags
& TTY_DRIVER_DYNAMIC_DEV
)) {
4012 for (i
= 0; i
< driver
->num
; i
++)
4013 tty_register_device(driver
, i
, NULL
);
4015 proc_tty_register_driver(driver
);
4019 EXPORT_SYMBOL(tty_register_driver
);
4022 * Called by a tty driver to unregister itself.
4024 int tty_unregister_driver(struct tty_driver
*driver
)
4027 struct ktermios
*tp
;
4030 if (driver
->refcount
)
4033 unregister_chrdev_region(MKDEV(driver
->major
, driver
->minor_start
),
4035 mutex_lock(&tty_mutex
);
4036 list_del(&driver
->tty_drivers
);
4037 mutex_unlock(&tty_mutex
);
4040 * Free the termios and termios_locked structures because
4041 * we don't want to get memory leaks when modular tty
4042 * drivers are removed from the kernel.
4044 for (i
= 0; i
< driver
->num
; i
++) {
4045 tp
= driver
->termios
[i
];
4047 driver
->termios
[i
] = NULL
;
4050 tp
= driver
->termios_locked
[i
];
4052 driver
->termios_locked
[i
] = NULL
;
4055 if (!(driver
->flags
& TTY_DRIVER_DYNAMIC_DEV
))
4056 tty_unregister_device(driver
, i
);
4059 proc_tty_unregister_driver(driver
);
4060 driver
->ttys
= NULL
;
4061 driver
->termios
= driver
->termios_locked
= NULL
;
4063 cdev_del(&driver
->cdev
);
4066 EXPORT_SYMBOL(tty_unregister_driver
);
4068 dev_t
tty_devnum(struct tty_struct
*tty
)
4070 return MKDEV(tty
->driver
->major
, tty
->driver
->minor_start
) + tty
->index
;
4072 EXPORT_SYMBOL(tty_devnum
);
4074 void proc_clear_tty(struct task_struct
*p
)
4076 spin_lock_irq(&p
->sighand
->siglock
);
4077 p
->signal
->tty
= NULL
;
4078 spin_unlock_irq(&p
->sighand
->siglock
);
4080 EXPORT_SYMBOL(proc_clear_tty
);
4082 /* Called under the sighand lock */
4084 static void __proc_set_tty(struct task_struct
*tsk
, struct tty_struct
*tty
)
4087 unsigned long flags
;
4088 /* We should not have a session or pgrp to put here but.... */
4089 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
4090 put_pid(tty
->session
);
4092 tty
->pgrp
= get_pid(task_pgrp(tsk
));
4093 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
4094 tty
->session
= get_pid(task_session(tsk
));
4096 put_pid(tsk
->signal
->tty_old_pgrp
);
4097 tsk
->signal
->tty
= tty
;
4098 tsk
->signal
->tty_old_pgrp
= NULL
;
4101 static void proc_set_tty(struct task_struct
*tsk
, struct tty_struct
*tty
)
4103 spin_lock_irq(&tsk
->sighand
->siglock
);
4104 __proc_set_tty(tsk
, tty
);
4105 spin_unlock_irq(&tsk
->sighand
->siglock
);
4108 struct tty_struct
*get_current_tty(void)
4110 struct tty_struct
*tty
;
4111 WARN_ON_ONCE(!mutex_is_locked(&tty_mutex
));
4112 tty
= current
->signal
->tty
;
4114 * session->tty can be changed/cleared from under us, make sure we
4115 * issue the load. The obtained pointer, when not NULL, is valid as
4116 * long as we hold tty_mutex.
4121 EXPORT_SYMBOL_GPL(get_current_tty
);
4124 * Initialize the console device. This is called *early*, so
4125 * we can't necessarily depend on lots of kernel help here.
4126 * Just do some early initializations, and do the complex setup
4129 void __init
console_init(void)
4133 /* Setup the default TTY line discipline. */
4134 (void) tty_register_ldisc(N_TTY
, &tty_ldisc_N_TTY
);
4137 * set up the console device so that later boot sequences can
4138 * inform about problems etc..
4140 call
= __con_initcall_start
;
4141 while (call
< __con_initcall_end
) {
4147 static int __init
tty_class_init(void)
4149 tty_class
= class_create(THIS_MODULE
, "tty");
4150 if (IS_ERR(tty_class
))
4151 return PTR_ERR(tty_class
);
4155 postcore_initcall(tty_class_init
);
4157 /* 3/2004 jmc: why do these devices exist? */
4159 static struct cdev tty_cdev
, console_cdev
;
4160 #ifdef CONFIG_UNIX98_PTYS
4161 static struct cdev ptmx_cdev
;
4164 static struct cdev vc0_cdev
;
4168 * Ok, now we can initialize the rest of the tty devices and can count
4169 * on memory allocations, interrupts etc..
4171 static int __init
tty_init(void)
4173 cdev_init(&tty_cdev
, &tty_fops
);
4174 if (cdev_add(&tty_cdev
, MKDEV(TTYAUX_MAJOR
, 0), 1) ||
4175 register_chrdev_region(MKDEV(TTYAUX_MAJOR
, 0), 1, "/dev/tty") < 0)
4176 panic("Couldn't register /dev/tty driver\n");
4177 device_create(tty_class
, NULL
, MKDEV(TTYAUX_MAJOR
, 0), "tty");
4179 cdev_init(&console_cdev
, &console_fops
);
4180 if (cdev_add(&console_cdev
, MKDEV(TTYAUX_MAJOR
, 1), 1) ||
4181 register_chrdev_region(MKDEV(TTYAUX_MAJOR
, 1), 1, "/dev/console") < 0)
4182 panic("Couldn't register /dev/console driver\n");
4183 device_create(tty_class
, NULL
, MKDEV(TTYAUX_MAJOR
, 1), "console");
4185 #ifdef CONFIG_UNIX98_PTYS
4186 cdev_init(&ptmx_cdev
, &ptmx_fops
);
4187 if (cdev_add(&ptmx_cdev
, MKDEV(TTYAUX_MAJOR
, 2), 1) ||
4188 register_chrdev_region(MKDEV(TTYAUX_MAJOR
, 2), 1, "/dev/ptmx") < 0)
4189 panic("Couldn't register /dev/ptmx driver\n");
4190 device_create(tty_class
, NULL
, MKDEV(TTYAUX_MAJOR
, 2), "ptmx");
4194 cdev_init(&vc0_cdev
, &console_fops
);
4195 if (cdev_add(&vc0_cdev
, MKDEV(TTY_MAJOR
, 0), 1) ||
4196 register_chrdev_region(MKDEV(TTY_MAJOR
, 0), 1, "/dev/vc/0") < 0)
4197 panic("Couldn't register /dev/tty0 driver\n");
4198 device_create(tty_class
, NULL
, MKDEV(TTY_MAJOR
, 0), "tty0");
4204 module_init(tty_init
);