ntfs: use zero_user_page
[linux-2.6-block.git] / drivers / char / tty_io.c
CommitLineData
1da177e4
LT
1/*
2 * linux/drivers/char/tty_io.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
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.
10 *
11 * Kill-line thanks to John T Kohl, who also corrected VMIN = VTIME = 0.
12 *
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.
18 *
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
23 *
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).
27 *
28 * NOTE: pay no attention to the line discipline code (yet); its
29 * interface is still subject to change in this version...
30 * -- TYT, 1/31/92
31 *
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.
35 *
36 * Rewrote canonical mode and added more termios flags.
37 * -- julian@uhunix.uhcc.hawaii.edu (J. Cowley), 13Jan94
38 *
39 * Reorganized FASYNC support so mouse code can share it.
40 * -- ctm@ardi.com, 9Sep95
41 *
42 * New TIOCLINUX variants added.
43 * -- mj@k332.feld.cvut.cz, 19-Nov-95
44 *
45 * Restrict vt switching via ioctl()
46 * -- grif@cs.ucr.edu, 5-Dec-95
47 *
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
51 *
52 * Rewrote init_dev and release_dev to eliminate races.
53 * -- Bill Hawes <whawes@star.net>, June 97
54 *
55 * Added devfs support.
56 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 13-Jan-1998
57 *
58 * Added support for a Unix98-style ptmx device.
59 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
60 *
61 * Reduced memory usage for older ARM systems
62 * -- Russell King <rmk@arm.linux.org.uk>
63 *
64 * Move do_SAK() into process context. Less stack use in devfs functions.
65 * alloc_tty_struct() always uses kmalloc() -- Andrew Morton <andrewm@uow.edu.eu> 17Mar01
66 */
67
1da177e4
LT
68#include <linux/types.h>
69#include <linux/major.h>
70#include <linux/errno.h>
71#include <linux/signal.h>
72#include <linux/fcntl.h>
73#include <linux/sched.h>
74#include <linux/interrupt.h>
75#include <linux/tty.h>
76#include <linux/tty_driver.h>
77#include <linux/tty_flip.h>
78#include <linux/devpts_fs.h>
79#include <linux/file.h>
80#include <linux/console.h>
81#include <linux/timer.h>
82#include <linux/ctype.h>
83#include <linux/kd.h>
84#include <linux/mm.h>
85#include <linux/string.h>
86#include <linux/slab.h>
87#include <linux/poll.h>
88#include <linux/proc_fs.h>
89#include <linux/init.h>
90#include <linux/module.h>
91#include <linux/smp_lock.h>
92#include <linux/device.h>
93#include <linux/idr.h>
94#include <linux/wait.h>
95#include <linux/bitops.h>
b20f3ae5 96#include <linux/delay.h>
1da177e4
LT
97
98#include <asm/uaccess.h>
99#include <asm/system.h>
100
101#include <linux/kbd_kern.h>
102#include <linux/vt_kern.h>
103#include <linux/selection.h>
1da177e4
LT
104
105#include <linux/kmod.h>
106
107#undef TTY_DEBUG_HANGUP
108
109#define TTY_PARANOIA_CHECK 1
110#define CHECK_TTY_COUNT 1
111
edc6afc5 112struct ktermios tty_std_termios = { /* for the benefit of tty drivers */
1da177e4
LT
113 .c_iflag = ICRNL | IXON,
114 .c_oflag = OPOST | ONLCR,
115 .c_cflag = B38400 | CS8 | CREAD | HUPCL,
116 .c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
117 ECHOCTL | ECHOKE | IEXTEN,
edc6afc5
AC
118 .c_cc = INIT_C_CC,
119 .c_ispeed = 38400,
120 .c_ospeed = 38400
1da177e4
LT
121};
122
123EXPORT_SYMBOL(tty_std_termios);
124
125/* This list gets poked at by procfs and various bits of boot up code. This
126 could do with some rationalisation such as pulling the tty proc function
127 into this file */
128
129LIST_HEAD(tty_drivers); /* linked list of tty drivers */
130
24ec839c 131/* Mutex to protect creating and releasing a tty. This is shared with
1da177e4 132 vt.c for deeply disgusting hack reasons */
70522e12 133DEFINE_MUTEX(tty_mutex);
de2a84f2 134EXPORT_SYMBOL(tty_mutex);
1da177e4
LT
135
136#ifdef CONFIG_UNIX98_PTYS
137extern struct tty_driver *ptm_driver; /* Unix98 pty masters; for /dev/ptmx */
138extern int pty_limit; /* Config limit on Unix98 ptys */
139static DEFINE_IDR(allocated_ptys);
140static DECLARE_MUTEX(allocated_ptys_lock);
141static int ptmx_open(struct inode *, struct file *);
142#endif
143
1da177e4
LT
144static void initialize_tty_struct(struct tty_struct *tty);
145
146static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
147static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
148ssize_t redirected_tty_write(struct file *, const char __user *, size_t, loff_t *);
149static unsigned int tty_poll(struct file *, poll_table *);
150static int tty_open(struct inode *, struct file *);
151static int tty_release(struct inode *, struct file *);
152int tty_ioctl(struct inode * inode, struct file * file,
153 unsigned int cmd, unsigned long arg);
e10cc1df
PF
154#ifdef CONFIG_COMPAT
155static long tty_compat_ioctl(struct file * file, unsigned int cmd,
156 unsigned long arg);
157#else
158#define tty_compat_ioctl NULL
159#endif
1da177e4 160static int tty_fasync(int fd, struct file * filp, int on);
d5698c28 161static void release_tty(struct tty_struct *tty, int idx);
2a65f1d9 162static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
98a27ba4 163static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
1da177e4 164
af9b897e
AC
165/**
166 * alloc_tty_struct - allocate a tty object
167 *
168 * Return a new empty tty structure. The data fields have not
169 * been initialized in any way but has been zeroed
170 *
171 * Locking: none
af9b897e 172 */
1da177e4
LT
173
174static struct tty_struct *alloc_tty_struct(void)
175{
1266b1e1 176 return kzalloc(sizeof(struct tty_struct), GFP_KERNEL);
1da177e4
LT
177}
178
33f0f88f
AC
179static void tty_buffer_free_all(struct tty_struct *);
180
af9b897e
AC
181/**
182 * free_tty_struct - free a disused tty
183 * @tty: tty struct to free
184 *
185 * Free the write buffers, tty queue and tty memory itself.
186 *
187 * Locking: none. Must be called after tty is definitely unused
188 */
189
1da177e4
LT
190static inline void free_tty_struct(struct tty_struct *tty)
191{
192 kfree(tty->write_buf);
33f0f88f 193 tty_buffer_free_all(tty);
1da177e4
LT
194 kfree(tty);
195}
196
197#define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
198
af9b897e
AC
199/**
200 * tty_name - return tty naming
201 * @tty: tty structure
202 * @buf: buffer for output
203 *
204 * Convert a tty structure into a name. The name reflects the kernel
205 * naming policy and if udev is in use may not reflect user space
206 *
207 * Locking: none
208 */
209
1da177e4
LT
210char *tty_name(struct tty_struct *tty, char *buf)
211{
212 if (!tty) /* Hmm. NULL pointer. That's fun. */
213 strcpy(buf, "NULL tty");
214 else
215 strcpy(buf, tty->name);
216 return buf;
217}
218
219EXPORT_SYMBOL(tty_name);
220
d769a669 221int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
1da177e4
LT
222 const char *routine)
223{
224#ifdef TTY_PARANOIA_CHECK
225 if (!tty) {
226 printk(KERN_WARNING
227 "null TTY for (%d:%d) in %s\n",
228 imajor(inode), iminor(inode), routine);
229 return 1;
230 }
231 if (tty->magic != TTY_MAGIC) {
232 printk(KERN_WARNING
233 "bad magic number for tty struct (%d:%d) in %s\n",
234 imajor(inode), iminor(inode), routine);
235 return 1;
236 }
237#endif
238 return 0;
239}
240
241static int check_tty_count(struct tty_struct *tty, const char *routine)
242{
243#ifdef CHECK_TTY_COUNT
244 struct list_head *p;
245 int count = 0;
246
247 file_list_lock();
248 list_for_each(p, &tty->tty_files) {
249 count++;
250 }
251 file_list_unlock();
252 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
253 tty->driver->subtype == PTY_TYPE_SLAVE &&
254 tty->link && tty->link->count)
255 count++;
256 if (tty->count != count) {
257 printk(KERN_WARNING "Warning: dev (%s) tty->count(%d) "
258 "!= #fd's(%d) in %s\n",
259 tty->name, tty->count, count, routine);
260 return count;
24ec839c 261 }
1da177e4
LT
262#endif
263 return 0;
264}
265
33f0f88f
AC
266/*
267 * Tty buffer allocation management
268 */
269
af9b897e
AC
270/**
271 * tty_buffer_free_all - free buffers used by a tty
272 * @tty: tty to free from
273 *
274 * Remove all the buffers pending on a tty whether queued with data
275 * or in the free ring. Must be called when the tty is no longer in use
276 *
277 * Locking: none
278 */
279
33f0f88f
AC
280static void tty_buffer_free_all(struct tty_struct *tty)
281{
282 struct tty_buffer *thead;
283 while((thead = tty->buf.head) != NULL) {
284 tty->buf.head = thead->next;
285 kfree(thead);
286 }
287 while((thead = tty->buf.free) != NULL) {
288 tty->buf.free = thead->next;
289 kfree(thead);
290 }
291 tty->buf.tail = NULL;
01da5fd8 292 tty->buf.memory_used = 0;
33f0f88f
AC
293}
294
01da5fd8
AC
295/**
296 * tty_buffer_init - prepare a tty buffer structure
297 * @tty: tty to initialise
298 *
299 * Set up the initial state of the buffer management for a tty device.
300 * Must be called before the other tty buffer functions are used.
301 *
302 * Locking: none
303 */
304
33f0f88f
AC
305static void tty_buffer_init(struct tty_struct *tty)
306{
808249ce 307 spin_lock_init(&tty->buf.lock);
33f0f88f
AC
308 tty->buf.head = NULL;
309 tty->buf.tail = NULL;
310 tty->buf.free = NULL;
01da5fd8 311 tty->buf.memory_used = 0;
33f0f88f
AC
312}
313
01da5fd8
AC
314/**
315 * tty_buffer_alloc - allocate a tty buffer
316 * @tty: tty device
317 * @size: desired size (characters)
318 *
319 * Allocate a new tty buffer to hold the desired number of characters.
320 * Return NULL if out of memory or the allocation would exceed the
321 * per device queue
322 *
323 * Locking: Caller must hold tty->buf.lock
324 */
325
326static struct tty_buffer *tty_buffer_alloc(struct tty_struct *tty, size_t size)
33f0f88f 327{
01da5fd8
AC
328 struct tty_buffer *p;
329
330 if (tty->buf.memory_used + size > 65536)
331 return NULL;
332 p = kmalloc(sizeof(struct tty_buffer) + 2 * size, GFP_ATOMIC);
33f0f88f
AC
333 if(p == NULL)
334 return NULL;
335 p->used = 0;
336 p->size = size;
337 p->next = NULL;
8977d929
PF
338 p->commit = 0;
339 p->read = 0;
33f0f88f
AC
340 p->char_buf_ptr = (char *)(p->data);
341 p->flag_buf_ptr = (unsigned char *)p->char_buf_ptr + size;
01da5fd8 342 tty->buf.memory_used += size;
33f0f88f
AC
343 return p;
344}
345
01da5fd8
AC
346/**
347 * tty_buffer_free - free a tty buffer
348 * @tty: tty owning the buffer
349 * @b: the buffer to free
350 *
351 * Free a tty buffer, or add it to the free list according to our
352 * internal strategy
353 *
354 * Locking: Caller must hold tty->buf.lock
355 */
33f0f88f
AC
356
357static void tty_buffer_free(struct tty_struct *tty, struct tty_buffer *b)
358{
359 /* Dumb strategy for now - should keep some stats */
01da5fd8
AC
360 tty->buf.memory_used -= b->size;
361 WARN_ON(tty->buf.memory_used < 0);
362
33f0f88f
AC
363 if(b->size >= 512)
364 kfree(b);
365 else {
366 b->next = tty->buf.free;
367 tty->buf.free = b;
368 }
369}
370
01da5fd8
AC
371/**
372 * tty_buffer_find - find a free tty buffer
373 * @tty: tty owning the buffer
374 * @size: characters wanted
375 *
376 * Locate an existing suitable tty buffer or if we are lacking one then
377 * allocate a new one. We round our buffers off in 256 character chunks
378 * to get better allocation behaviour.
379 *
380 * Locking: Caller must hold tty->buf.lock
381 */
382
33f0f88f
AC
383static struct tty_buffer *tty_buffer_find(struct tty_struct *tty, size_t size)
384{
385 struct tty_buffer **tbh = &tty->buf.free;
386 while((*tbh) != NULL) {
387 struct tty_buffer *t = *tbh;
388 if(t->size >= size) {
389 *tbh = t->next;
390 t->next = NULL;
391 t->used = 0;
8977d929
PF
392 t->commit = 0;
393 t->read = 0;
01da5fd8 394 tty->buf.memory_used += t->size;
33f0f88f
AC
395 return t;
396 }
397 tbh = &((*tbh)->next);
398 }
399 /* Round the buffer size out */
400 size = (size + 0xFF) & ~ 0xFF;
01da5fd8 401 return tty_buffer_alloc(tty, size);
33f0f88f
AC
402 /* Should possibly check if this fails for the largest buffer we
403 have queued and recycle that ? */
404}
405
01da5fd8
AC
406/**
407 * tty_buffer_request_room - grow tty buffer if needed
408 * @tty: tty structure
409 * @size: size desired
410 *
411 * Make at least size bytes of linear space available for the tty
412 * buffer. If we fail return the size we managed to find.
413 *
414 * Locking: Takes tty->buf.lock
415 */
33f0f88f
AC
416int tty_buffer_request_room(struct tty_struct *tty, size_t size)
417{
808249ce
PF
418 struct tty_buffer *b, *n;
419 int left;
420 unsigned long flags;
421
422 spin_lock_irqsave(&tty->buf.lock, flags);
33f0f88f
AC
423
424 /* OPTIMISATION: We could keep a per tty "zero" sized buffer to
425 remove this conditional if its worth it. This would be invisible
426 to the callers */
33b37a33 427 if ((b = tty->buf.tail) != NULL)
33f0f88f 428 left = b->size - b->used;
33b37a33 429 else
808249ce
PF
430 left = 0;
431
432 if (left < size) {
433 /* This is the slow path - looking for new buffers to use */
434 if ((n = tty_buffer_find(tty, size)) != NULL) {
435 if (b != NULL) {
436 b->next = n;
8977d929 437 b->commit = b->used;
808249ce
PF
438 } else
439 tty->buf.head = n;
440 tty->buf.tail = n;
808249ce
PF
441 } else
442 size = left;
443 }
444
445 spin_unlock_irqrestore(&tty->buf.lock, flags);
33f0f88f
AC
446 return size;
447}
33f0f88f
AC
448EXPORT_SYMBOL_GPL(tty_buffer_request_room);
449
af9b897e
AC
450/**
451 * tty_insert_flip_string - Add characters to the tty buffer
452 * @tty: tty structure
453 * @chars: characters
454 * @size: size
455 *
456 * Queue a series of bytes to the tty buffering. All the characters
457 * passed are marked as without error. Returns the number added.
458 *
459 * Locking: Called functions may take tty->buf.lock
460 */
461
e1a25090
AM
462int tty_insert_flip_string(struct tty_struct *tty, const unsigned char *chars,
463 size_t size)
33f0f88f
AC
464{
465 int copied = 0;
466 do {
467 int space = tty_buffer_request_room(tty, size - copied);
468 struct tty_buffer *tb = tty->buf.tail;
469 /* If there is no space then tb may be NULL */
470 if(unlikely(space == 0))
471 break;
472 memcpy(tb->char_buf_ptr + tb->used, chars, space);
473 memset(tb->flag_buf_ptr + tb->used, TTY_NORMAL, space);
474 tb->used += space;
475 copied += space;
476 chars += space;
527063ba
AD
477 /* There is a small chance that we need to split the data over
478 several buffers. If this is the case we must loop */
479 } while (unlikely(size > copied));
33f0f88f
AC
480 return copied;
481}
ee37df78 482EXPORT_SYMBOL(tty_insert_flip_string);
33f0f88f 483
af9b897e
AC
484/**
485 * tty_insert_flip_string_flags - Add characters to the tty buffer
486 * @tty: tty structure
487 * @chars: characters
488 * @flags: flag bytes
489 * @size: size
490 *
491 * Queue a series of bytes to the tty buffering. For each character
492 * the flags array indicates the status of the character. Returns the
493 * number added.
494 *
495 * Locking: Called functions may take tty->buf.lock
496 */
497
e1a25090
AM
498int tty_insert_flip_string_flags(struct tty_struct *tty,
499 const unsigned char *chars, const char *flags, size_t size)
33f0f88f
AC
500{
501 int copied = 0;
502 do {
503 int space = tty_buffer_request_room(tty, size - copied);
504 struct tty_buffer *tb = tty->buf.tail;
505 /* If there is no space then tb may be NULL */
506 if(unlikely(space == 0))
507 break;
508 memcpy(tb->char_buf_ptr + tb->used, chars, space);
509 memcpy(tb->flag_buf_ptr + tb->used, flags, space);
510 tb->used += space;
511 copied += space;
512 chars += space;
513 flags += space;
527063ba
AD
514 /* There is a small chance that we need to split the data over
515 several buffers. If this is the case we must loop */
516 } while (unlikely(size > copied));
33f0f88f
AC
517 return copied;
518}
ff4547f4 519EXPORT_SYMBOL(tty_insert_flip_string_flags);
33f0f88f 520
af9b897e
AC
521/**
522 * tty_schedule_flip - push characters to ldisc
523 * @tty: tty to push from
524 *
525 * Takes any pending buffers and transfers their ownership to the
526 * ldisc side of the queue. It then schedules those characters for
527 * processing by the line discipline.
528 *
529 * Locking: Takes tty->buf.lock
530 */
531
e1a25090
AM
532void tty_schedule_flip(struct tty_struct *tty)
533{
534 unsigned long flags;
535 spin_lock_irqsave(&tty->buf.lock, flags);
33b37a33 536 if (tty->buf.tail != NULL)
e1a25090 537 tty->buf.tail->commit = tty->buf.tail->used;
e1a25090
AM
538 spin_unlock_irqrestore(&tty->buf.lock, flags);
539 schedule_delayed_work(&tty->buf.work, 1);
540}
541EXPORT_SYMBOL(tty_schedule_flip);
33f0f88f 542
af9b897e
AC
543/**
544 * tty_prepare_flip_string - make room for characters
545 * @tty: tty
546 * @chars: return pointer for character write area
547 * @size: desired size
548 *
33f0f88f
AC
549 * Prepare a block of space in the buffer for data. Returns the length
550 * available and buffer pointer to the space which is now allocated and
551 * accounted for as ready for normal characters. This is used for drivers
552 * that need their own block copy routines into the buffer. There is no
553 * guarantee the buffer is a DMA target!
af9b897e
AC
554 *
555 * Locking: May call functions taking tty->buf.lock
33f0f88f
AC
556 */
557
558int tty_prepare_flip_string(struct tty_struct *tty, unsigned char **chars, size_t size)
559{
560 int space = tty_buffer_request_room(tty, size);
808249ce
PF
561 if (likely(space)) {
562 struct tty_buffer *tb = tty->buf.tail;
563 *chars = tb->char_buf_ptr + tb->used;
564 memset(tb->flag_buf_ptr + tb->used, TTY_NORMAL, space);
565 tb->used += space;
566 }
33f0f88f
AC
567 return space;
568}
569
570EXPORT_SYMBOL_GPL(tty_prepare_flip_string);
571
af9b897e
AC
572/**
573 * tty_prepare_flip_string_flags - make room for characters
574 * @tty: tty
575 * @chars: return pointer for character write area
576 * @flags: return pointer for status flag write area
577 * @size: desired size
578 *
33f0f88f
AC
579 * Prepare a block of space in the buffer for data. Returns the length
580 * available and buffer pointer to the space which is now allocated and
581 * accounted for as ready for characters. This is used for drivers
582 * that need their own block copy routines into the buffer. There is no
583 * guarantee the buffer is a DMA target!
af9b897e
AC
584 *
585 * Locking: May call functions taking tty->buf.lock
33f0f88f
AC
586 */
587
588int tty_prepare_flip_string_flags(struct tty_struct *tty, unsigned char **chars, char **flags, size_t size)
589{
590 int space = tty_buffer_request_room(tty, size);
808249ce
PF
591 if (likely(space)) {
592 struct tty_buffer *tb = tty->buf.tail;
593 *chars = tb->char_buf_ptr + tb->used;
594 *flags = tb->flag_buf_ptr + tb->used;
595 tb->used += space;
596 }
33f0f88f
AC
597 return space;
598}
599
600EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags);
601
602
603
af9b897e
AC
604/**
605 * tty_set_termios_ldisc - set ldisc field
606 * @tty: tty structure
607 * @num: line discipline number
608 *
1da177e4
LT
609 * This is probably overkill for real world processors but
610 * they are not on hot paths so a little discipline won't do
611 * any harm.
af9b897e 612 *
24ec839c 613 * Locking: takes termios_mutex
1da177e4
LT
614 */
615
616static void tty_set_termios_ldisc(struct tty_struct *tty, int num)
617{
5785c95b 618 mutex_lock(&tty->termios_mutex);
1da177e4 619 tty->termios->c_line = num;
5785c95b 620 mutex_unlock(&tty->termios_mutex);
1da177e4
LT
621}
622
623/*
624 * This guards the refcounted line discipline lists. The lock
625 * must be taken with irqs off because there are hangup path
626 * callers who will do ldisc lookups and cannot sleep.
627 */
628
629static DEFINE_SPINLOCK(tty_ldisc_lock);
630static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait);
bfb07599 631static struct tty_ldisc tty_ldiscs[NR_LDISCS]; /* line disc dispatch table */
1da177e4 632
af9b897e
AC
633/**
634 * tty_register_ldisc - install a line discipline
635 * @disc: ldisc number
636 * @new_ldisc: pointer to the ldisc object
637 *
638 * Installs a new line discipline into the kernel. The discipline
639 * is set up as unreferenced and then made available to the kernel
640 * from this point onwards.
641 *
642 * Locking:
643 * takes tty_ldisc_lock to guard against ldisc races
644 */
645
1da177e4
LT
646int tty_register_ldisc(int disc, struct tty_ldisc *new_ldisc)
647{
648 unsigned long flags;
649 int ret = 0;
650
651 if (disc < N_TTY || disc >= NR_LDISCS)
652 return -EINVAL;
653
654 spin_lock_irqsave(&tty_ldisc_lock, flags);
bfb07599
AD
655 tty_ldiscs[disc] = *new_ldisc;
656 tty_ldiscs[disc].num = disc;
657 tty_ldiscs[disc].flags |= LDISC_FLAG_DEFINED;
658 tty_ldiscs[disc].refcount = 0;
1da177e4
LT
659 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
660
661 return ret;
662}
1da177e4
LT
663EXPORT_SYMBOL(tty_register_ldisc);
664
af9b897e
AC
665/**
666 * tty_unregister_ldisc - unload a line discipline
667 * @disc: ldisc number
668 * @new_ldisc: pointer to the ldisc object
669 *
670 * Remove a line discipline from the kernel providing it is not
671 * currently in use.
672 *
673 * Locking:
674 * takes tty_ldisc_lock to guard against ldisc races
675 */
676
bfb07599
AD
677int tty_unregister_ldisc(int disc)
678{
679 unsigned long flags;
680 int ret = 0;
681
682 if (disc < N_TTY || disc >= NR_LDISCS)
683 return -EINVAL;
684
685 spin_lock_irqsave(&tty_ldisc_lock, flags);
686 if (tty_ldiscs[disc].refcount)
687 ret = -EBUSY;
688 else
689 tty_ldiscs[disc].flags &= ~LDISC_FLAG_DEFINED;
690 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
691
692 return ret;
693}
694EXPORT_SYMBOL(tty_unregister_ldisc);
695
af9b897e
AC
696/**
697 * tty_ldisc_get - take a reference to an ldisc
698 * @disc: ldisc number
699 *
700 * Takes a reference to a line discipline. Deals with refcounts and
701 * module locking counts. Returns NULL if the discipline is not available.
702 * Returns a pointer to the discipline and bumps the ref count if it is
703 * available
704 *
705 * Locking:
706 * takes tty_ldisc_lock to guard against ldisc races
707 */
708
1da177e4
LT
709struct tty_ldisc *tty_ldisc_get(int disc)
710{
711 unsigned long flags;
712 struct tty_ldisc *ld;
713
714 if (disc < N_TTY || disc >= NR_LDISCS)
715 return NULL;
716
717 spin_lock_irqsave(&tty_ldisc_lock, flags);
718
719 ld = &tty_ldiscs[disc];
720 /* Check the entry is defined */
721 if(ld->flags & LDISC_FLAG_DEFINED)
722 {
723 /* If the module is being unloaded we can't use it */
724 if (!try_module_get(ld->owner))
725 ld = NULL;
726 else /* lock it */
727 ld->refcount++;
728 }
729 else
730 ld = NULL;
731 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
732 return ld;
733}
734
735EXPORT_SYMBOL_GPL(tty_ldisc_get);
736
af9b897e
AC
737/**
738 * tty_ldisc_put - drop ldisc reference
739 * @disc: ldisc number
740 *
741 * Drop a reference to a line discipline. Manage refcounts and
742 * module usage counts
743 *
744 * Locking:
745 * takes tty_ldisc_lock to guard against ldisc races
746 */
747
1da177e4
LT
748void tty_ldisc_put(int disc)
749{
750 struct tty_ldisc *ld;
751 unsigned long flags;
752
56ee4827 753 BUG_ON(disc < N_TTY || disc >= NR_LDISCS);
1da177e4
LT
754
755 spin_lock_irqsave(&tty_ldisc_lock, flags);
756 ld = &tty_ldiscs[disc];
56ee4827
ES
757 BUG_ON(ld->refcount == 0);
758 ld->refcount--;
1da177e4
LT
759 module_put(ld->owner);
760 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
761}
762
763EXPORT_SYMBOL_GPL(tty_ldisc_put);
764
af9b897e
AC
765/**
766 * tty_ldisc_assign - set ldisc on a tty
767 * @tty: tty to assign
768 * @ld: line discipline
769 *
770 * Install an instance of a line discipline into a tty structure. The
771 * ldisc must have a reference count above zero to ensure it remains/
772 * The tty instance refcount starts at zero.
773 *
774 * Locking:
775 * Caller must hold references
776 */
777
1da177e4
LT
778static void tty_ldisc_assign(struct tty_struct *tty, struct tty_ldisc *ld)
779{
780 tty->ldisc = *ld;
781 tty->ldisc.refcount = 0;
782}
783
784/**
785 * tty_ldisc_try - internal helper
786 * @tty: the tty
787 *
788 * Make a single attempt to grab and bump the refcount on
789 * the tty ldisc. Return 0 on failure or 1 on success. This is
790 * used to implement both the waiting and non waiting versions
791 * of tty_ldisc_ref
af9b897e
AC
792 *
793 * Locking: takes tty_ldisc_lock
1da177e4
LT
794 */
795
796static int tty_ldisc_try(struct tty_struct *tty)
797{
798 unsigned long flags;
799 struct tty_ldisc *ld;
800 int ret = 0;
801
802 spin_lock_irqsave(&tty_ldisc_lock, flags);
803 ld = &tty->ldisc;
804 if(test_bit(TTY_LDISC, &tty->flags))
805 {
806 ld->refcount++;
807 ret = 1;
808 }
809 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
810 return ret;
811}
812
813/**
814 * tty_ldisc_ref_wait - wait for the tty ldisc
815 * @tty: tty device
816 *
817 * Dereference the line discipline for the terminal and take a
818 * reference to it. If the line discipline is in flux then
819 * wait patiently until it changes.
820 *
821 * Note: Must not be called from an IRQ/timer context. The caller
822 * must also be careful not to hold other locks that will deadlock
823 * against a discipline change, such as an existing ldisc reference
824 * (which we check for)
af9b897e
AC
825 *
826 * Locking: call functions take tty_ldisc_lock
1da177e4
LT
827 */
828
829struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *tty)
830{
831 /* wait_event is a macro */
832 wait_event(tty_ldisc_wait, tty_ldisc_try(tty));
833 if(tty->ldisc.refcount == 0)
834 printk(KERN_ERR "tty_ldisc_ref_wait\n");
835 return &tty->ldisc;
836}
837
838EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait);
839
840/**
841 * tty_ldisc_ref - get the tty ldisc
842 * @tty: tty device
843 *
844 * Dereference the line discipline for the terminal and take a
845 * reference to it. If the line discipline is in flux then
846 * return NULL. Can be called from IRQ and timer functions.
af9b897e
AC
847 *
848 * Locking: called functions take tty_ldisc_lock
1da177e4
LT
849 */
850
851struct tty_ldisc *tty_ldisc_ref(struct tty_struct *tty)
852{
853 if(tty_ldisc_try(tty))
854 return &tty->ldisc;
855 return NULL;
856}
857
858EXPORT_SYMBOL_GPL(tty_ldisc_ref);
859
860/**
861 * tty_ldisc_deref - free a tty ldisc reference
862 * @ld: reference to free up
863 *
864 * Undoes the effect of tty_ldisc_ref or tty_ldisc_ref_wait. May
865 * be called in IRQ context.
af9b897e
AC
866 *
867 * Locking: takes tty_ldisc_lock
1da177e4
LT
868 */
869
870void tty_ldisc_deref(struct tty_ldisc *ld)
871{
872 unsigned long flags;
873
56ee4827 874 BUG_ON(ld == NULL);
1da177e4
LT
875
876 spin_lock_irqsave(&tty_ldisc_lock, flags);
877 if(ld->refcount == 0)
878 printk(KERN_ERR "tty_ldisc_deref: no references.\n");
879 else
880 ld->refcount--;
881 if(ld->refcount == 0)
882 wake_up(&tty_ldisc_wait);
883 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
884}
885
886EXPORT_SYMBOL_GPL(tty_ldisc_deref);
887
888/**
889 * tty_ldisc_enable - allow ldisc use
890 * @tty: terminal to activate ldisc on
891 *
892 * Set the TTY_LDISC flag when the line discipline can be called
893 * again. Do neccessary wakeups for existing sleepers.
894 *
895 * Note: nobody should set this bit except via this function. Clearing
896 * directly is allowed.
897 */
898
899static void tty_ldisc_enable(struct tty_struct *tty)
900{
901 set_bit(TTY_LDISC, &tty->flags);
902 wake_up(&tty_ldisc_wait);
903}
904
905/**
906 * tty_set_ldisc - set line discipline
907 * @tty: the terminal to set
908 * @ldisc: the line discipline
909 *
910 * Set the discipline of a tty line. Must be called from a process
911 * context.
af9b897e
AC
912 *
913 * Locking: takes tty_ldisc_lock.
24ec839c 914 * called functions take termios_mutex
1da177e4
LT
915 */
916
917static int tty_set_ldisc(struct tty_struct *tty, int ldisc)
918{
ff55fe20
JB
919 int retval = 0;
920 struct tty_ldisc o_ldisc;
1da177e4
LT
921 char buf[64];
922 int work;
923 unsigned long flags;
924 struct tty_ldisc *ld;
ff55fe20 925 struct tty_struct *o_tty;
1da177e4
LT
926
927 if ((ldisc < N_TTY) || (ldisc >= NR_LDISCS))
928 return -EINVAL;
929
930restart:
931
1da177e4
LT
932 ld = tty_ldisc_get(ldisc);
933 /* Eduardo Blanco <ejbs@cs.cs.com.uy> */
934 /* Cyrus Durgin <cider@speakeasy.org> */
935 if (ld == NULL) {
936 request_module("tty-ldisc-%d", ldisc);
937 ld = tty_ldisc_get(ldisc);
938 }
939 if (ld == NULL)
940 return -EINVAL;
941
33f0f88f
AC
942 /*
943 * Problem: What do we do if this blocks ?
944 */
945
1da177e4
LT
946 tty_wait_until_sent(tty, 0);
947
ff55fe20
JB
948 if (tty->ldisc.num == ldisc) {
949 tty_ldisc_put(ldisc);
950 return 0;
951 }
952
ae030e43
PF
953 /*
954 * No more input please, we are switching. The new ldisc
955 * will update this value in the ldisc open function
956 */
957
958 tty->receive_room = 0;
959
ff55fe20
JB
960 o_ldisc = tty->ldisc;
961 o_tty = tty->link;
962
1da177e4
LT
963 /*
964 * Make sure we don't change while someone holds a
965 * reference to the line discipline. The TTY_LDISC bit
966 * prevents anyone taking a reference once it is clear.
967 * We need the lock to avoid racing reference takers.
968 */
ff55fe20 969
1da177e4 970 spin_lock_irqsave(&tty_ldisc_lock, flags);
ff55fe20
JB
971 if (tty->ldisc.refcount || (o_tty && o_tty->ldisc.refcount)) {
972 if(tty->ldisc.refcount) {
973 /* Free the new ldisc we grabbed. Must drop the lock
974 first. */
975 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
976 tty_ldisc_put(ldisc);
977 /*
978 * There are several reasons we may be busy, including
979 * random momentary I/O traffic. We must therefore
980 * retry. We could distinguish between blocking ops
981 * and retries if we made tty_ldisc_wait() smarter. That
982 * is up for discussion.
983 */
984 if (wait_event_interruptible(tty_ldisc_wait, tty->ldisc.refcount == 0) < 0)
985 return -ERESTARTSYS;
986 goto restart;
987 }
988 if(o_tty && o_tty->ldisc.refcount) {
989 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
990 tty_ldisc_put(ldisc);
991 if (wait_event_interruptible(tty_ldisc_wait, o_tty->ldisc.refcount == 0) < 0)
992 return -ERESTARTSYS;
993 goto restart;
994 }
995 }
996
997 /* if the TTY_LDISC bit is set, then we are racing against another ldisc change */
998
999 if (!test_bit(TTY_LDISC, &tty->flags)) {
1da177e4
LT
1000 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
1001 tty_ldisc_put(ldisc);
ff55fe20
JB
1002 ld = tty_ldisc_ref_wait(tty);
1003 tty_ldisc_deref(ld);
1da177e4
LT
1004 goto restart;
1005 }
ff55fe20
JB
1006
1007 clear_bit(TTY_LDISC, &tty->flags);
817d6d3b 1008 if (o_tty)
ff55fe20 1009 clear_bit(TTY_LDISC, &o_tty->flags);
1da177e4 1010 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
ff55fe20 1011
1da177e4
LT
1012 /*
1013 * From this point on we know nobody has an ldisc
1014 * usage reference, nor can they obtain one until
1015 * we say so later on.
1016 */
ff55fe20 1017
33f0f88f 1018 work = cancel_delayed_work(&tty->buf.work);
1da177e4 1019 /*
33f0f88f 1020 * Wait for ->hangup_work and ->buf.work handlers to terminate
1da177e4
LT
1021 */
1022
1023 flush_scheduled_work();
1024 /* Shutdown the current discipline. */
1025 if (tty->ldisc.close)
1026 (tty->ldisc.close)(tty);
1027
1028 /* Now set up the new line discipline. */
1029 tty_ldisc_assign(tty, ld);
1030 tty_set_termios_ldisc(tty, ldisc);
1031 if (tty->ldisc.open)
1032 retval = (tty->ldisc.open)(tty);
1033 if (retval < 0) {
1034 tty_ldisc_put(ldisc);
1035 /* There is an outstanding reference here so this is safe */
1036 tty_ldisc_assign(tty, tty_ldisc_get(o_ldisc.num));
1037 tty_set_termios_ldisc(tty, tty->ldisc.num);
1038 if (tty->ldisc.open && (tty->ldisc.open(tty) < 0)) {
1039 tty_ldisc_put(o_ldisc.num);
1040 /* This driver is always present */
1041 tty_ldisc_assign(tty, tty_ldisc_get(N_TTY));
1042 tty_set_termios_ldisc(tty, N_TTY);
1043 if (tty->ldisc.open) {
1044 int r = tty->ldisc.open(tty);
1045
1046 if (r < 0)
1047 panic("Couldn't open N_TTY ldisc for "
1048 "%s --- error %d.",
1049 tty_name(tty, buf), r);
1050 }
1051 }
1052 }
1053 /* At this point we hold a reference to the new ldisc and a
1054 a reference to the old ldisc. If we ended up flipping back
1055 to the existing ldisc we have two references to it */
1056
1057 if (tty->ldisc.num != o_ldisc.num && tty->driver->set_ldisc)
1058 tty->driver->set_ldisc(tty);
1059
1060 tty_ldisc_put(o_ldisc.num);
1061
1062 /*
1063 * Allow ldisc referencing to occur as soon as the driver
1064 * ldisc callback completes.
1065 */
1066
1067 tty_ldisc_enable(tty);
ff55fe20
JB
1068 if (o_tty)
1069 tty_ldisc_enable(o_tty);
1da177e4
LT
1070
1071 /* Restart it in case no characters kick it off. Safe if
1072 already running */
ff55fe20 1073 if (work)
33f0f88f 1074 schedule_delayed_work(&tty->buf.work, 1);
1da177e4
LT
1075 return retval;
1076}
1077
af9b897e
AC
1078/**
1079 * get_tty_driver - find device of a tty
1080 * @dev_t: device identifier
1081 * @index: returns the index of the tty
1082 *
1083 * This routine returns a tty driver structure, given a device number
1084 * and also passes back the index number.
1085 *
1086 * Locking: caller must hold tty_mutex
1da177e4 1087 */
af9b897e 1088
1da177e4
LT
1089static struct tty_driver *get_tty_driver(dev_t device, int *index)
1090{
1091 struct tty_driver *p;
1092
1093 list_for_each_entry(p, &tty_drivers, tty_drivers) {
1094 dev_t base = MKDEV(p->major, p->minor_start);
1095 if (device < base || device >= base + p->num)
1096 continue;
1097 *index = device - base;
1098 return p;
1099 }
1100 return NULL;
1101}
1102
af9b897e
AC
1103/**
1104 * tty_check_change - check for POSIX terminal changes
1105 * @tty: tty to check
1106 *
1107 * If we try to write to, or set the state of, a terminal and we're
1108 * not in the foreground, send a SIGTTOU. If the signal is blocked or
1109 * ignored, go ahead and perform the operation. (POSIX 7.2)
1110 *
1111 * Locking: none
1da177e4 1112 */
af9b897e 1113
1da177e4
LT
1114int tty_check_change(struct tty_struct * tty)
1115{
1116 if (current->signal->tty != tty)
1117 return 0;
ab521dc0
EB
1118 if (!tty->pgrp) {
1119 printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n");
1da177e4
LT
1120 return 0;
1121 }
ab521dc0 1122 if (task_pgrp(current) == tty->pgrp)
1da177e4
LT
1123 return 0;
1124 if (is_ignored(SIGTTOU))
1125 return 0;
3e7cd6c4 1126 if (is_current_pgrp_orphaned())
1da177e4 1127 return -EIO;
ab521dc0 1128 (void) kill_pgrp(task_pgrp(current), SIGTTOU, 1);
1da177e4
LT
1129 return -ERESTARTSYS;
1130}
1131
1132EXPORT_SYMBOL(tty_check_change);
1133
1134static ssize_t hung_up_tty_read(struct file * file, char __user * buf,
1135 size_t count, loff_t *ppos)
1136{
1137 return 0;
1138}
1139
1140static ssize_t hung_up_tty_write(struct file * file, const char __user * buf,
1141 size_t count, loff_t *ppos)
1142{
1143 return -EIO;
1144}
1145
1146/* No kernel lock held - none needed ;) */
1147static unsigned int hung_up_tty_poll(struct file * filp, poll_table * wait)
1148{
1149 return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM;
1150}
1151
e10cc1df
PF
1152static long hung_up_tty_ioctl(struct file * file,
1153 unsigned int cmd, unsigned long arg)
1da177e4
LT
1154{
1155 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
1156}
1157
62322d25 1158static const struct file_operations tty_fops = {
1da177e4
LT
1159 .llseek = no_llseek,
1160 .read = tty_read,
1161 .write = tty_write,
1162 .poll = tty_poll,
1163 .ioctl = tty_ioctl,
e10cc1df 1164 .compat_ioctl = tty_compat_ioctl,
1da177e4
LT
1165 .open = tty_open,
1166 .release = tty_release,
1167 .fasync = tty_fasync,
1168};
1169
1170#ifdef CONFIG_UNIX98_PTYS
62322d25 1171static const struct file_operations ptmx_fops = {
1da177e4
LT
1172 .llseek = no_llseek,
1173 .read = tty_read,
1174 .write = tty_write,
1175 .poll = tty_poll,
1176 .ioctl = tty_ioctl,
e10cc1df 1177 .compat_ioctl = tty_compat_ioctl,
1da177e4
LT
1178 .open = ptmx_open,
1179 .release = tty_release,
1180 .fasync = tty_fasync,
1181};
1182#endif
1183
62322d25 1184static const struct file_operations console_fops = {
1da177e4
LT
1185 .llseek = no_llseek,
1186 .read = tty_read,
1187 .write = redirected_tty_write,
1188 .poll = tty_poll,
1189 .ioctl = tty_ioctl,
e10cc1df 1190 .compat_ioctl = tty_compat_ioctl,
1da177e4
LT
1191 .open = tty_open,
1192 .release = tty_release,
1193 .fasync = tty_fasync,
1194};
1195
62322d25 1196static const struct file_operations hung_up_tty_fops = {
1da177e4
LT
1197 .llseek = no_llseek,
1198 .read = hung_up_tty_read,
1199 .write = hung_up_tty_write,
1200 .poll = hung_up_tty_poll,
e10cc1df
PF
1201 .unlocked_ioctl = hung_up_tty_ioctl,
1202 .compat_ioctl = hung_up_tty_ioctl,
1da177e4
LT
1203 .release = tty_release,
1204};
1205
1206static DEFINE_SPINLOCK(redirect_lock);
1207static struct file *redirect;
1208
1209/**
1210 * tty_wakeup - request more data
1211 * @tty: terminal
1212 *
1213 * Internal and external helper for wakeups of tty. This function
1214 * informs the line discipline if present that the driver is ready
1215 * to receive more output data.
1216 */
1217
1218void tty_wakeup(struct tty_struct *tty)
1219{
1220 struct tty_ldisc *ld;
1221
1222 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
1223 ld = tty_ldisc_ref(tty);
1224 if(ld) {
1225 if(ld->write_wakeup)
1226 ld->write_wakeup(tty);
1227 tty_ldisc_deref(ld);
1228 }
1229 }
1230 wake_up_interruptible(&tty->write_wait);
1231}
1232
1233EXPORT_SYMBOL_GPL(tty_wakeup);
1234
1235/**
1236 * tty_ldisc_flush - flush line discipline queue
1237 * @tty: tty
1238 *
1239 * Flush the line discipline queue (if any) for this tty. If there
1240 * is no line discipline active this is a no-op.
1241 */
1242
1243void tty_ldisc_flush(struct tty_struct *tty)
1244{
1245 struct tty_ldisc *ld = tty_ldisc_ref(tty);
1246 if(ld) {
1247 if(ld->flush_buffer)
1248 ld->flush_buffer(tty);
1249 tty_ldisc_deref(ld);
1250 }
1251}
1252
1253EXPORT_SYMBOL_GPL(tty_ldisc_flush);
edc6afc5
AC
1254
1255/**
1256 * tty_reset_termios - reset terminal state
1257 * @tty: tty to reset
1258 *
1259 * Restore a terminal to the driver default state
1260 */
1261
1262static void tty_reset_termios(struct tty_struct *tty)
1263{
1264 mutex_lock(&tty->termios_mutex);
1265 *tty->termios = tty->driver->init_termios;
1266 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
1267 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
1268 mutex_unlock(&tty->termios_mutex);
1269}
1da177e4 1270
af9b897e
AC
1271/**
1272 * do_tty_hangup - actual handler for hangup events
65f27f38 1273 * @work: tty device
af9b897e
AC
1274 *
1275 * This can be called by the "eventd" kernel thread. That is process
1276 * synchronous but doesn't hold any locks, so we need to make sure we
1277 * have the appropriate locks for what we're doing.
1278 *
1279 * The hangup event clears any pending redirections onto the hung up
1280 * device. It ensures future writes will error and it does the needed
1281 * line discipline hangup and signal delivery. The tty object itself
1282 * remains intact.
1283 *
1284 * Locking:
1285 * BKL
24ec839c
PZ
1286 * redirect lock for undoing redirection
1287 * file list lock for manipulating list of ttys
1288 * tty_ldisc_lock from called functions
1289 * termios_mutex resetting termios data
1290 * tasklist_lock to walk task list for hangup event
1291 * ->siglock to protect ->signal/->sighand
1da177e4 1292 */
65f27f38 1293static void do_tty_hangup(struct work_struct *work)
1da177e4 1294{
65f27f38
DH
1295 struct tty_struct *tty =
1296 container_of(work, struct tty_struct, hangup_work);
1da177e4
LT
1297 struct file * cons_filp = NULL;
1298 struct file *filp, *f = NULL;
1299 struct task_struct *p;
1300 struct tty_ldisc *ld;
1301 int closecount = 0, n;
1302
1303 if (!tty)
1304 return;
1305
1306 /* inuse_filps is protected by the single kernel lock */
1307 lock_kernel();
1308
1309 spin_lock(&redirect_lock);
1310 if (redirect && redirect->private_data == tty) {
1311 f = redirect;
1312 redirect = NULL;
1313 }
1314 spin_unlock(&redirect_lock);
1315
1316 check_tty_count(tty, "do_tty_hangup");
1317 file_list_lock();
1318 /* This breaks for file handles being sent over AF_UNIX sockets ? */
2f512016 1319 list_for_each_entry(filp, &tty->tty_files, f_u.fu_list) {
1da177e4
LT
1320 if (filp->f_op->write == redirected_tty_write)
1321 cons_filp = filp;
1322 if (filp->f_op->write != tty_write)
1323 continue;
1324 closecount++;
1325 tty_fasync(-1, filp, 0); /* can't block */
1326 filp->f_op = &hung_up_tty_fops;
1327 }
1328 file_list_unlock();
1329
1330 /* FIXME! What are the locking issues here? This may me overdoing things..
1331 * this question is especially important now that we've removed the irqlock. */
1332
1333 ld = tty_ldisc_ref(tty);
1334 if(ld != NULL) /* We may have no line discipline at this point */
1335 {
1336 if (ld->flush_buffer)
1337 ld->flush_buffer(tty);
1338 if (tty->driver->flush_buffer)
1339 tty->driver->flush_buffer(tty);
1340 if ((test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) &&
1341 ld->write_wakeup)
1342 ld->write_wakeup(tty);
1343 if (ld->hangup)
1344 ld->hangup(tty);
1345 }
1346
1347 /* FIXME: Once we trust the LDISC code better we can wait here for
1348 ldisc completion and fix the driver call race */
1349
1350 wake_up_interruptible(&tty->write_wait);
1351 wake_up_interruptible(&tty->read_wait);
1352
1353 /*
1354 * Shutdown the current line discipline, and reset it to
1355 * N_TTY.
1356 */
1357 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
edc6afc5 1358 tty_reset_termios(tty);
1da177e4
LT
1359
1360 /* Defer ldisc switch */
1361 /* tty_deferred_ldisc_switch(N_TTY);
1362
1363 This should get done automatically when the port closes and
1364 tty_release is called */
1365
1366 read_lock(&tasklist_lock);
ab521dc0
EB
1367 if (tty->session) {
1368 do_each_pid_task(tty->session, PIDTYPE_SID, p) {
24ec839c 1369 spin_lock_irq(&p->sighand->siglock);
1da177e4
LT
1370 if (p->signal->tty == tty)
1371 p->signal->tty = NULL;
24ec839c
PZ
1372 if (!p->signal->leader) {
1373 spin_unlock_irq(&p->sighand->siglock);
1da177e4 1374 continue;
24ec839c
PZ
1375 }
1376 __group_send_sig_info(SIGHUP, SEND_SIG_PRIV, p);
1377 __group_send_sig_info(SIGCONT, SEND_SIG_PRIV, p);
ab521dc0
EB
1378 put_pid(p->signal->tty_old_pgrp); /* A noop */
1379 if (tty->pgrp)
1380 p->signal->tty_old_pgrp = get_pid(tty->pgrp);
24ec839c 1381 spin_unlock_irq(&p->sighand->siglock);
ab521dc0 1382 } while_each_pid_task(tty->session, PIDTYPE_SID, p);
1da177e4
LT
1383 }
1384 read_unlock(&tasklist_lock);
1385
1386 tty->flags = 0;
d9c1e9a8
EB
1387 put_pid(tty->session);
1388 put_pid(tty->pgrp);
ab521dc0
EB
1389 tty->session = NULL;
1390 tty->pgrp = NULL;
1da177e4
LT
1391 tty->ctrl_status = 0;
1392 /*
1393 * If one of the devices matches a console pointer, we
1394 * cannot just call hangup() because that will cause
1395 * tty->count and state->count to go out of sync.
1396 * So we just call close() the right number of times.
1397 */
1398 if (cons_filp) {
1399 if (tty->driver->close)
1400 for (n = 0; n < closecount; n++)
1401 tty->driver->close(tty, cons_filp);
1402 } else if (tty->driver->hangup)
1403 (tty->driver->hangup)(tty);
1404
1405 /* We don't want to have driver/ldisc interactions beyond
1406 the ones we did here. The driver layer expects no
1407 calls after ->hangup() from the ldisc side. However we
1408 can't yet guarantee all that */
1409
1410 set_bit(TTY_HUPPED, &tty->flags);
1411 if (ld) {
1412 tty_ldisc_enable(tty);
1413 tty_ldisc_deref(ld);
1414 }
1415 unlock_kernel();
1416 if (f)
1417 fput(f);
1418}
1419
af9b897e
AC
1420/**
1421 * tty_hangup - trigger a hangup event
1422 * @tty: tty to hangup
1423 *
1424 * A carrier loss (virtual or otherwise) has occurred on this like
1425 * schedule a hangup sequence to run after this event.
1426 */
1427
1da177e4
LT
1428void tty_hangup(struct tty_struct * tty)
1429{
1430#ifdef TTY_DEBUG_HANGUP
1431 char buf[64];
1432
1433 printk(KERN_DEBUG "%s hangup...\n", tty_name(tty, buf));
1434#endif
1435 schedule_work(&tty->hangup_work);
1436}
1437
1438EXPORT_SYMBOL(tty_hangup);
1439
af9b897e
AC
1440/**
1441 * tty_vhangup - process vhangup
1442 * @tty: tty to hangup
1443 *
1444 * The user has asked via system call for the terminal to be hung up.
1445 * We do this synchronously so that when the syscall returns the process
1446 * is complete. That guarantee is neccessary for security reasons.
1447 */
1448
1da177e4
LT
1449void tty_vhangup(struct tty_struct * tty)
1450{
1451#ifdef TTY_DEBUG_HANGUP
1452 char buf[64];
1453
1454 printk(KERN_DEBUG "%s vhangup...\n", tty_name(tty, buf));
1455#endif
65f27f38 1456 do_tty_hangup(&tty->hangup_work);
1da177e4
LT
1457}
1458EXPORT_SYMBOL(tty_vhangup);
1459
af9b897e
AC
1460/**
1461 * tty_hung_up_p - was tty hung up
1462 * @filp: file pointer of tty
1463 *
1464 * Return true if the tty has been subject to a vhangup or a carrier
1465 * loss
1466 */
1467
1da177e4
LT
1468int tty_hung_up_p(struct file * filp)
1469{
1470 return (filp->f_op == &hung_up_tty_fops);
1471}
1472
1473EXPORT_SYMBOL(tty_hung_up_p);
1474
ab521dc0 1475static void session_clear_tty(struct pid *session)
24ec839c
PZ
1476{
1477 struct task_struct *p;
ab521dc0 1478 do_each_pid_task(session, PIDTYPE_SID, p) {
24ec839c 1479 proc_clear_tty(p);
ab521dc0 1480 } while_each_pid_task(session, PIDTYPE_SID, p);
24ec839c
PZ
1481}
1482
af9b897e
AC
1483/**
1484 * disassociate_ctty - disconnect controlling tty
1485 * @on_exit: true if exiting so need to "hang up" the session
1da177e4 1486 *
af9b897e
AC
1487 * This function is typically called only by the session leader, when
1488 * it wants to disassociate itself from its controlling tty.
1489 *
1490 * It performs the following functions:
1da177e4
LT
1491 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
1492 * (2) Clears the tty from being controlling the session
1493 * (3) Clears the controlling tty for all processes in the
1494 * session group.
1495 *
af9b897e
AC
1496 * The argument on_exit is set to 1 if called when a process is
1497 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
1498 *
24ec839c 1499 * Locking:
af9b897e 1500 * BKL is taken for hysterical raisins
24ec839c
PZ
1501 * tty_mutex is taken to protect tty
1502 * ->siglock is taken to protect ->signal/->sighand
1503 * tasklist_lock is taken to walk process list for sessions
1504 * ->siglock is taken to protect ->signal/->sighand
1da177e4 1505 */
af9b897e 1506
1da177e4
LT
1507void disassociate_ctty(int on_exit)
1508{
1509 struct tty_struct *tty;
ab521dc0 1510 struct pid *tty_pgrp = NULL;
1da177e4
LT
1511
1512 lock_kernel();
1513
70522e12 1514 mutex_lock(&tty_mutex);
24ec839c 1515 tty = get_current_tty();
1da177e4 1516 if (tty) {
ab521dc0 1517 tty_pgrp = get_pid(tty->pgrp);
70522e12 1518 mutex_unlock(&tty_mutex);
24ec839c 1519 /* XXX: here we race, there is nothing protecting tty */
1da177e4
LT
1520 if (on_exit && tty->driver->type != TTY_DRIVER_TYPE_PTY)
1521 tty_vhangup(tty);
680a9671 1522 } else if (on_exit) {
ab521dc0 1523 struct pid *old_pgrp;
680a9671
EB
1524 spin_lock_irq(&current->sighand->siglock);
1525 old_pgrp = current->signal->tty_old_pgrp;
ab521dc0 1526 current->signal->tty_old_pgrp = NULL;
680a9671 1527 spin_unlock_irq(&current->sighand->siglock);
24ec839c 1528 if (old_pgrp) {
ab521dc0
EB
1529 kill_pgrp(old_pgrp, SIGHUP, on_exit);
1530 kill_pgrp(old_pgrp, SIGCONT, on_exit);
1531 put_pid(old_pgrp);
1da177e4 1532 }
70522e12 1533 mutex_unlock(&tty_mutex);
1da177e4
LT
1534 unlock_kernel();
1535 return;
1536 }
ab521dc0
EB
1537 if (tty_pgrp) {
1538 kill_pgrp(tty_pgrp, SIGHUP, on_exit);
1da177e4 1539 if (!on_exit)
ab521dc0
EB
1540 kill_pgrp(tty_pgrp, SIGCONT, on_exit);
1541 put_pid(tty_pgrp);
1da177e4
LT
1542 }
1543
24ec839c 1544 spin_lock_irq(&current->sighand->siglock);
2a65f1d9 1545 put_pid(current->signal->tty_old_pgrp);
23cac8de 1546 current->signal->tty_old_pgrp = NULL;
24ec839c
PZ
1547 spin_unlock_irq(&current->sighand->siglock);
1548
1549 mutex_lock(&tty_mutex);
1550 /* It is possible that do_tty_hangup has free'd this tty */
1551 tty = get_current_tty();
1552 if (tty) {
ab521dc0
EB
1553 put_pid(tty->session);
1554 put_pid(tty->pgrp);
1555 tty->session = NULL;
1556 tty->pgrp = NULL;
24ec839c
PZ
1557 } else {
1558#ifdef TTY_DEBUG_HANGUP
1559 printk(KERN_DEBUG "error attempted to write to tty [0x%p]"
1560 " = NULL", tty);
1561#endif
1562 }
1563 mutex_unlock(&tty_mutex);
1da177e4
LT
1564
1565 /* Now clear signal->tty under the lock */
1566 read_lock(&tasklist_lock);
ab521dc0 1567 session_clear_tty(task_session(current));
1da177e4 1568 read_unlock(&tasklist_lock);
1da177e4
LT
1569 unlock_kernel();
1570}
1571
98a27ba4
EB
1572/**
1573 *
1574 * no_tty - Ensure the current process does not have a controlling tty
1575 */
1576void no_tty(void)
1577{
1578 struct task_struct *tsk = current;
1579 if (tsk->signal->leader)
1580 disassociate_ctty(0);
1581 proc_clear_tty(tsk);
1582}
1583
af9b897e
AC
1584
1585/**
beb7dd86 1586 * stop_tty - propagate flow control
af9b897e
AC
1587 * @tty: tty to stop
1588 *
1589 * Perform flow control to the driver. For PTY/TTY pairs we
beb7dd86 1590 * must also propagate the TIOCKPKT status. May be called
af9b897e
AC
1591 * on an already stopped device and will not re-call the driver
1592 * method.
1593 *
1594 * This functionality is used by both the line disciplines for
1595 * halting incoming flow and by the driver. It may therefore be
1596 * called from any context, may be under the tty atomic_write_lock
1597 * but not always.
1598 *
1599 * Locking:
1600 * Broken. Relies on BKL which is unsafe here.
1601 */
1602
1da177e4
LT
1603void stop_tty(struct tty_struct *tty)
1604{
1605 if (tty->stopped)
1606 return;
1607 tty->stopped = 1;
1608 if (tty->link && tty->link->packet) {
1609 tty->ctrl_status &= ~TIOCPKT_START;
1610 tty->ctrl_status |= TIOCPKT_STOP;
1611 wake_up_interruptible(&tty->link->read_wait);
1612 }
1613 if (tty->driver->stop)
1614 (tty->driver->stop)(tty);
1615}
1616
1617EXPORT_SYMBOL(stop_tty);
1618
af9b897e 1619/**
beb7dd86 1620 * start_tty - propagate flow control
af9b897e
AC
1621 * @tty: tty to start
1622 *
1623 * Start a tty that has been stopped if at all possible. Perform
beb7dd86 1624 * any neccessary wakeups and propagate the TIOCPKT status. If this
af9b897e
AC
1625 * is the tty was previous stopped and is being started then the
1626 * driver start method is invoked and the line discipline woken.
1627 *
1628 * Locking:
1629 * Broken. Relies on BKL which is unsafe here.
1630 */
1631
1da177e4
LT
1632void start_tty(struct tty_struct *tty)
1633{
1634 if (!tty->stopped || tty->flow_stopped)
1635 return;
1636 tty->stopped = 0;
1637 if (tty->link && tty->link->packet) {
1638 tty->ctrl_status &= ~TIOCPKT_STOP;
1639 tty->ctrl_status |= TIOCPKT_START;
1640 wake_up_interruptible(&tty->link->read_wait);
1641 }
1642 if (tty->driver->start)
1643 (tty->driver->start)(tty);
1644
1645 /* If we have a running line discipline it may need kicking */
1646 tty_wakeup(tty);
1da177e4
LT
1647}
1648
1649EXPORT_SYMBOL(start_tty);
1650
af9b897e
AC
1651/**
1652 * tty_read - read method for tty device files
1653 * @file: pointer to tty file
1654 * @buf: user buffer
1655 * @count: size of user buffer
1656 * @ppos: unused
1657 *
1658 * Perform the read system call function on this terminal device. Checks
1659 * for hung up devices before calling the line discipline method.
1660 *
1661 * Locking:
1662 * Locks the line discipline internally while needed
1663 * For historical reasons the line discipline read method is
1664 * invoked under the BKL. This will go away in time so do not rely on it
1665 * in new code. Multiple read calls may be outstanding in parallel.
1666 */
1667
1da177e4
LT
1668static ssize_t tty_read(struct file * file, char __user * buf, size_t count,
1669 loff_t *ppos)
1670{
1671 int i;
1672 struct tty_struct * tty;
1673 struct inode *inode;
1674 struct tty_ldisc *ld;
1675
1676 tty = (struct tty_struct *)file->private_data;
a7113a96 1677 inode = file->f_path.dentry->d_inode;
1da177e4
LT
1678 if (tty_paranoia_check(tty, inode, "tty_read"))
1679 return -EIO;
1680 if (!tty || (test_bit(TTY_IO_ERROR, &tty->flags)))
1681 return -EIO;
1682
1683 /* We want to wait for the line discipline to sort out in this
1684 situation */
1685 ld = tty_ldisc_ref_wait(tty);
1686 lock_kernel();
1687 if (ld->read)
1688 i = (ld->read)(tty,file,buf,count);
1689 else
1690 i = -EIO;
1691 tty_ldisc_deref(ld);
1692 unlock_kernel();
1693 if (i > 0)
1694 inode->i_atime = current_fs_time(inode->i_sb);
1695 return i;
1696}
1697
1698/*
1699 * Split writes up in sane blocksizes to avoid
1700 * denial-of-service type attacks
1701 */
1702static inline ssize_t do_tty_write(
1703 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t),
1704 struct tty_struct *tty,
1705 struct file *file,
1706 const char __user *buf,
1707 size_t count)
1708{
1709 ssize_t ret = 0, written = 0;
1710 unsigned int chunk;
1711
af9b897e 1712 /* FIXME: O_NDELAY ... */
70522e12 1713 if (mutex_lock_interruptible(&tty->atomic_write_lock)) {
1da177e4
LT
1714 return -ERESTARTSYS;
1715 }
1716
1717 /*
1718 * We chunk up writes into a temporary buffer. This
1719 * simplifies low-level drivers immensely, since they
1720 * don't have locking issues and user mode accesses.
1721 *
1722 * But if TTY_NO_WRITE_SPLIT is set, we should use a
1723 * big chunk-size..
1724 *
1725 * The default chunk-size is 2kB, because the NTTY
1726 * layer has problems with bigger chunks. It will
1727 * claim to be able to handle more characters than
1728 * it actually does.
af9b897e
AC
1729 *
1730 * FIXME: This can probably go away now except that 64K chunks
1731 * are too likely to fail unless switched to vmalloc...
1da177e4
LT
1732 */
1733 chunk = 2048;
1734 if (test_bit(TTY_NO_WRITE_SPLIT, &tty->flags))
1735 chunk = 65536;
1736 if (count < chunk)
1737 chunk = count;
1738
70522e12 1739 /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
1da177e4
LT
1740 if (tty->write_cnt < chunk) {
1741 unsigned char *buf;
1742
1743 if (chunk < 1024)
1744 chunk = 1024;
1745
1746 buf = kmalloc(chunk, GFP_KERNEL);
1747 if (!buf) {
70522e12 1748 mutex_unlock(&tty->atomic_write_lock);
1da177e4
LT
1749 return -ENOMEM;
1750 }
1751 kfree(tty->write_buf);
1752 tty->write_cnt = chunk;
1753 tty->write_buf = buf;
1754 }
1755
1756 /* Do the write .. */
1757 for (;;) {
1758 size_t size = count;
1759 if (size > chunk)
1760 size = chunk;
1761 ret = -EFAULT;
1762 if (copy_from_user(tty->write_buf, buf, size))
1763 break;
1764 lock_kernel();
1765 ret = write(tty, file, tty->write_buf, size);
1766 unlock_kernel();
1767 if (ret <= 0)
1768 break;
1769 written += ret;
1770 buf += ret;
1771 count -= ret;
1772 if (!count)
1773 break;
1774 ret = -ERESTARTSYS;
1775 if (signal_pending(current))
1776 break;
1777 cond_resched();
1778 }
1779 if (written) {
a7113a96 1780 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
1781 inode->i_mtime = current_fs_time(inode->i_sb);
1782 ret = written;
1783 }
70522e12 1784 mutex_unlock(&tty->atomic_write_lock);
1da177e4
LT
1785 return ret;
1786}
1787
1788
af9b897e
AC
1789/**
1790 * tty_write - write method for tty device file
1791 * @file: tty file pointer
1792 * @buf: user data to write
1793 * @count: bytes to write
1794 * @ppos: unused
1795 *
1796 * Write data to a tty device via the line discipline.
1797 *
1798 * Locking:
1799 * Locks the line discipline as required
1800 * Writes to the tty driver are serialized by the atomic_write_lock
1801 * and are then processed in chunks to the device. The line discipline
1802 * write method will not be involked in parallel for each device
1803 * The line discipline write method is called under the big
1804 * kernel lock for historical reasons. New code should not rely on this.
1805 */
1806
1da177e4
LT
1807static ssize_t tty_write(struct file * file, const char __user * buf, size_t count,
1808 loff_t *ppos)
1809{
1810 struct tty_struct * tty;
a7113a96 1811 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
1812 ssize_t ret;
1813 struct tty_ldisc *ld;
1814
1815 tty = (struct tty_struct *)file->private_data;
1816 if (tty_paranoia_check(tty, inode, "tty_write"))
1817 return -EIO;
1818 if (!tty || !tty->driver->write || (test_bit(TTY_IO_ERROR, &tty->flags)))
1819 return -EIO;
1820
1821 ld = tty_ldisc_ref_wait(tty);
1822 if (!ld->write)
1823 ret = -EIO;
1824 else
1825 ret = do_tty_write(ld->write, tty, file, buf, count);
1826 tty_ldisc_deref(ld);
1827 return ret;
1828}
1829
1830ssize_t redirected_tty_write(struct file * file, const char __user * buf, size_t count,
1831 loff_t *ppos)
1832{
1833 struct file *p = NULL;
1834
1835 spin_lock(&redirect_lock);
1836 if (redirect) {
1837 get_file(redirect);
1838 p = redirect;
1839 }
1840 spin_unlock(&redirect_lock);
1841
1842 if (p) {
1843 ssize_t res;
1844 res = vfs_write(p, buf, count, &p->f_pos);
1845 fput(p);
1846 return res;
1847 }
1848
1849 return tty_write(file, buf, count, ppos);
1850}
1851
1852static char ptychar[] = "pqrstuvwxyzabcde";
1853
af9b897e
AC
1854/**
1855 * pty_line_name - generate name for a pty
1856 * @driver: the tty driver in use
1857 * @index: the minor number
1858 * @p: output buffer of at least 6 bytes
1859 *
1860 * Generate a name from a driver reference and write it to the output
1861 * buffer.
1862 *
1863 * Locking: None
1864 */
1865static void pty_line_name(struct tty_driver *driver, int index, char *p)
1da177e4
LT
1866{
1867 int i = index + driver->name_base;
1868 /* ->name is initialized to "ttyp", but "tty" is expected */
1869 sprintf(p, "%s%c%x",
1870 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1871 ptychar[i >> 4 & 0xf], i & 0xf);
1872}
1873
af9b897e
AC
1874/**
1875 * pty_line_name - generate name for a tty
1876 * @driver: the tty driver in use
1877 * @index: the minor number
1878 * @p: output buffer of at least 7 bytes
1879 *
1880 * Generate a name from a driver reference and write it to the output
1881 * buffer.
1882 *
1883 * Locking: None
1884 */
1885static void tty_line_name(struct tty_driver *driver, int index, char *p)
1da177e4
LT
1886{
1887 sprintf(p, "%s%d", driver->name, index + driver->name_base);
1888}
1889
af9b897e
AC
1890/**
1891 * init_dev - initialise a tty device
1892 * @driver: tty driver we are opening a device on
1893 * @idx: device index
1894 * @tty: returned tty structure
1895 *
1896 * Prepare a tty device. This may not be a "new" clean device but
1897 * could also be an active device. The pty drivers require special
1898 * handling because of this.
1899 *
1900 * Locking:
1901 * The function is called under the tty_mutex, which
1902 * protects us from the tty struct or driver itself going away.
1903 *
1904 * On exit the tty device has the line discipline attached and
1905 * a reference count of 1. If a pair was created for pty/tty use
1906 * and the other was a pty master then it too has a reference count of 1.
1907 *
1da177e4 1908 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
70522e12
IM
1909 * failed open. The new code protects the open with a mutex, so it's
1910 * really quite straightforward. The mutex locking can probably be
1da177e4
LT
1911 * relaxed for the (most common) case of reopening a tty.
1912 */
af9b897e 1913
1da177e4
LT
1914static int init_dev(struct tty_driver *driver, int idx,
1915 struct tty_struct **ret_tty)
1916{
1917 struct tty_struct *tty, *o_tty;
edc6afc5
AC
1918 struct ktermios *tp, **tp_loc, *o_tp, **o_tp_loc;
1919 struct ktermios *ltp, **ltp_loc, *o_ltp, **o_ltp_loc;
af9b897e 1920 int retval = 0;
1da177e4
LT
1921
1922 /* check whether we're reopening an existing tty */
1923 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1924 tty = devpts_get_tty(idx);
5a39e8c6
ASRF
1925 /*
1926 * If we don't have a tty here on a slave open, it's because
1927 * the master already started the close process and there's
1928 * no relation between devpts file and tty anymore.
1929 */
1930 if (!tty && driver->subtype == PTY_TYPE_SLAVE) {
1931 retval = -EIO;
1932 goto end_init;
1933 }
1934 /*
1935 * It's safe from now on because init_dev() is called with
1936 * tty_mutex held and release_dev() won't change tty->count
1937 * or tty->flags without having to grab tty_mutex
1938 */
1da177e4
LT
1939 if (tty && driver->subtype == PTY_TYPE_MASTER)
1940 tty = tty->link;
1941 } else {
1942 tty = driver->ttys[idx];
1943 }
1944 if (tty) goto fast_track;
1945
1946 /*
1947 * First time open is complex, especially for PTY devices.
1948 * This code guarantees that either everything succeeds and the
1949 * TTY is ready for operation, or else the table slots are vacated
1950 * and the allocated memory released. (Except that the termios
1951 * and locked termios may be retained.)
1952 */
1953
1954 if (!try_module_get(driver->owner)) {
1955 retval = -ENODEV;
1956 goto end_init;
1957 }
1958
1959 o_tty = NULL;
1960 tp = o_tp = NULL;
1961 ltp = o_ltp = NULL;
1962
1963 tty = alloc_tty_struct();
1964 if(!tty)
1965 goto fail_no_mem;
1966 initialize_tty_struct(tty);
1967 tty->driver = driver;
1968 tty->index = idx;
1969 tty_line_name(driver, idx, tty->name);
1970
1971 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1972 tp_loc = &tty->termios;
1973 ltp_loc = &tty->termios_locked;
1974 } else {
1975 tp_loc = &driver->termios[idx];
1976 ltp_loc = &driver->termios_locked[idx];
1977 }
1978
1979 if (!*tp_loc) {
edc6afc5 1980 tp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
1da177e4
LT
1981 GFP_KERNEL);
1982 if (!tp)
1983 goto free_mem_out;
1984 *tp = driver->init_termios;
1985 }
1986
1987 if (!*ltp_loc) {
edc6afc5 1988 ltp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
1da177e4
LT
1989 GFP_KERNEL);
1990 if (!ltp)
1991 goto free_mem_out;
edc6afc5 1992 memset(ltp, 0, sizeof(struct ktermios));
1da177e4
LT
1993 }
1994
1995 if (driver->type == TTY_DRIVER_TYPE_PTY) {
1996 o_tty = alloc_tty_struct();
1997 if (!o_tty)
1998 goto free_mem_out;
1999 initialize_tty_struct(o_tty);
2000 o_tty->driver = driver->other;
2001 o_tty->index = idx;
2002 tty_line_name(driver->other, idx, o_tty->name);
2003
2004 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
2005 o_tp_loc = &o_tty->termios;
2006 o_ltp_loc = &o_tty->termios_locked;
2007 } else {
2008 o_tp_loc = &driver->other->termios[idx];
2009 o_ltp_loc = &driver->other->termios_locked[idx];
2010 }
2011
2012 if (!*o_tp_loc) {
edc6afc5
AC
2013 o_tp = (struct ktermios *)
2014 kmalloc(sizeof(struct ktermios), GFP_KERNEL);
1da177e4
LT
2015 if (!o_tp)
2016 goto free_mem_out;
2017 *o_tp = driver->other->init_termios;
2018 }
2019
2020 if (!*o_ltp_loc) {
edc6afc5
AC
2021 o_ltp = (struct ktermios *)
2022 kmalloc(sizeof(struct ktermios), GFP_KERNEL);
1da177e4
LT
2023 if (!o_ltp)
2024 goto free_mem_out;
edc6afc5 2025 memset(o_ltp, 0, sizeof(struct ktermios));
1da177e4
LT
2026 }
2027
2028 /*
2029 * Everything allocated ... set up the o_tty structure.
2030 */
2031 if (!(driver->other->flags & TTY_DRIVER_DEVPTS_MEM)) {
2032 driver->other->ttys[idx] = o_tty;
2033 }
2034 if (!*o_tp_loc)
2035 *o_tp_loc = o_tp;
2036 if (!*o_ltp_loc)
2037 *o_ltp_loc = o_ltp;
2038 o_tty->termios = *o_tp_loc;
2039 o_tty->termios_locked = *o_ltp_loc;
2040 driver->other->refcount++;
2041 if (driver->subtype == PTY_TYPE_MASTER)
2042 o_tty->count++;
2043
2044 /* Establish the links in both directions */
2045 tty->link = o_tty;
2046 o_tty->link = tty;
2047 }
2048
2049 /*
2050 * All structures have been allocated, so now we install them.
d5698c28 2051 * Failures after this point use release_tty to clean up, so
1da177e4
LT
2052 * there's no need to null out the local pointers.
2053 */
2054 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
2055 driver->ttys[idx] = tty;
2056 }
2057
2058 if (!*tp_loc)
2059 *tp_loc = tp;
2060 if (!*ltp_loc)
2061 *ltp_loc = ltp;
2062 tty->termios = *tp_loc;
2063 tty->termios_locked = *ltp_loc;
edc6afc5
AC
2064 /* Compatibility until drivers always set this */
2065 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
2066 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
1da177e4
LT
2067 driver->refcount++;
2068 tty->count++;
2069
2070 /*
2071 * Structures all installed ... call the ldisc open routines.
d5698c28
CH
2072 * If we fail here just call release_tty to clean up. No need
2073 * to decrement the use counts, as release_tty doesn't care.
1da177e4
LT
2074 */
2075
2076 if (tty->ldisc.open) {
2077 retval = (tty->ldisc.open)(tty);
2078 if (retval)
2079 goto release_mem_out;
2080 }
2081 if (o_tty && o_tty->ldisc.open) {
2082 retval = (o_tty->ldisc.open)(o_tty);
2083 if (retval) {
2084 if (tty->ldisc.close)
2085 (tty->ldisc.close)(tty);
2086 goto release_mem_out;
2087 }
2088 tty_ldisc_enable(o_tty);
2089 }
2090 tty_ldisc_enable(tty);
2091 goto success;
2092
2093 /*
2094 * This fast open can be used if the tty is already open.
2095 * No memory is allocated, and the only failures are from
2096 * attempting to open a closing tty or attempting multiple
2097 * opens on a pty master.
2098 */
2099fast_track:
2100 if (test_bit(TTY_CLOSING, &tty->flags)) {
2101 retval = -EIO;
2102 goto end_init;
2103 }
2104 if (driver->type == TTY_DRIVER_TYPE_PTY &&
2105 driver->subtype == PTY_TYPE_MASTER) {
2106 /*
2107 * special case for PTY masters: only one open permitted,
2108 * and the slave side open count is incremented as well.
2109 */
2110 if (tty->count) {
2111 retval = -EIO;
2112 goto end_init;
2113 }
2114 tty->link->count++;
2115 }
2116 tty->count++;
2117 tty->driver = driver; /* N.B. why do this every time?? */
2118
2119 /* FIXME */
2120 if(!test_bit(TTY_LDISC, &tty->flags))
2121 printk(KERN_ERR "init_dev but no ldisc\n");
2122success:
2123 *ret_tty = tty;
2124
70522e12 2125 /* All paths come through here to release the mutex */
1da177e4
LT
2126end_init:
2127 return retval;
2128
2129 /* Release locally allocated memory ... nothing placed in slots */
2130free_mem_out:
735d5661 2131 kfree(o_tp);
1da177e4
LT
2132 if (o_tty)
2133 free_tty_struct(o_tty);
735d5661
JJ
2134 kfree(ltp);
2135 kfree(tp);
1da177e4
LT
2136 free_tty_struct(tty);
2137
2138fail_no_mem:
2139 module_put(driver->owner);
2140 retval = -ENOMEM;
2141 goto end_init;
2142
d5698c28 2143 /* call the tty release_tty routine to clean out this slot */
1da177e4 2144release_mem_out:
4050914f
AM
2145 if (printk_ratelimit())
2146 printk(KERN_INFO "init_dev: ldisc open failed, "
2147 "clearing slot %d\n", idx);
d5698c28 2148 release_tty(tty, idx);
1da177e4
LT
2149 goto end_init;
2150}
2151
af9b897e 2152/**
d5698c28 2153 * release_one_tty - release tty structure memory
af9b897e
AC
2154 *
2155 * Releases memory associated with a tty structure, and clears out the
2156 * driver table slots. This function is called when a device is no longer
2157 * in use. It also gets called when setup of a device fails.
2158 *
2159 * Locking:
2160 * tty_mutex - sometimes only
2161 * takes the file list lock internally when working on the list
2162 * of ttys that the driver keeps.
2163 * FIXME: should we require tty_mutex is held here ??
1da177e4 2164 */
d5698c28 2165static void release_one_tty(struct tty_struct *tty, int idx)
1da177e4 2166{
1da177e4 2167 int devpts = tty->driver->flags & TTY_DRIVER_DEVPTS_MEM;
d5698c28 2168 struct ktermios *tp;
1da177e4
LT
2169
2170 if (!devpts)
2171 tty->driver->ttys[idx] = NULL;
d5698c28 2172
1da177e4
LT
2173 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) {
2174 tp = tty->termios;
2175 if (!devpts)
2176 tty->driver->termios[idx] = NULL;
2177 kfree(tp);
2178
2179 tp = tty->termios_locked;
2180 if (!devpts)
2181 tty->driver->termios_locked[idx] = NULL;
2182 kfree(tp);
2183 }
2184
d5698c28 2185
1da177e4
LT
2186 tty->magic = 0;
2187 tty->driver->refcount--;
d5698c28 2188
1da177e4
LT
2189 file_list_lock();
2190 list_del_init(&tty->tty_files);
2191 file_list_unlock();
d5698c28 2192
1da177e4
LT
2193 free_tty_struct(tty);
2194}
2195
d5698c28
CH
2196/**
2197 * release_tty - release tty structure memory
2198 *
2199 * Release both @tty and a possible linked partner (think pty pair),
2200 * and decrement the refcount of the backing module.
2201 *
2202 * Locking:
2203 * tty_mutex - sometimes only
2204 * takes the file list lock internally when working on the list
2205 * of ttys that the driver keeps.
2206 * FIXME: should we require tty_mutex is held here ??
2207 */
2208static void release_tty(struct tty_struct *tty, int idx)
2209{
2210 struct tty_driver *driver = tty->driver;
2211
2212 if (tty->link)
2213 release_one_tty(tty->link, idx);
2214 release_one_tty(tty, idx);
2215 module_put(driver->owner);
2216}
2217
1da177e4
LT
2218/*
2219 * Even releasing the tty structures is a tricky business.. We have
2220 * to be very careful that the structures are all released at the
2221 * same time, as interrupts might otherwise get the wrong pointers.
2222 *
2223 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
2224 * lead to double frees or releasing memory still in use.
2225 */
2226static void release_dev(struct file * filp)
2227{
2228 struct tty_struct *tty, *o_tty;
2229 int pty_master, tty_closing, o_tty_closing, do_sleep;
14a6283e 2230 int devpts;
1da177e4
LT
2231 int idx;
2232 char buf[64];
2233 unsigned long flags;
2234
2235 tty = (struct tty_struct *)filp->private_data;
a7113a96 2236 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "release_dev"))
1da177e4
LT
2237 return;
2238
2239 check_tty_count(tty, "release_dev");
2240
2241 tty_fasync(-1, filp, 0);
2242
2243 idx = tty->index;
2244 pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2245 tty->driver->subtype == PTY_TYPE_MASTER);
2246 devpts = (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM) != 0;
1da177e4
LT
2247 o_tty = tty->link;
2248
2249#ifdef TTY_PARANOIA_CHECK
2250 if (idx < 0 || idx >= tty->driver->num) {
2251 printk(KERN_DEBUG "release_dev: bad idx when trying to "
2252 "free (%s)\n", tty->name);
2253 return;
2254 }
2255 if (!(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
2256 if (tty != tty->driver->ttys[idx]) {
2257 printk(KERN_DEBUG "release_dev: driver.table[%d] not tty "
2258 "for (%s)\n", idx, tty->name);
2259 return;
2260 }
2261 if (tty->termios != tty->driver->termios[idx]) {
2262 printk(KERN_DEBUG "release_dev: driver.termios[%d] not termios "
2263 "for (%s)\n",
2264 idx, tty->name);
2265 return;
2266 }
2267 if (tty->termios_locked != tty->driver->termios_locked[idx]) {
2268 printk(KERN_DEBUG "release_dev: driver.termios_locked[%d] not "
2269 "termios_locked for (%s)\n",
2270 idx, tty->name);
2271 return;
2272 }
2273 }
2274#endif
2275
2276#ifdef TTY_DEBUG_HANGUP
2277 printk(KERN_DEBUG "release_dev of %s (tty count=%d)...",
2278 tty_name(tty, buf), tty->count);
2279#endif
2280
2281#ifdef TTY_PARANOIA_CHECK
2282 if (tty->driver->other &&
2283 !(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
2284 if (o_tty != tty->driver->other->ttys[idx]) {
2285 printk(KERN_DEBUG "release_dev: other->table[%d] "
2286 "not o_tty for (%s)\n",
2287 idx, tty->name);
2288 return;
2289 }
2290 if (o_tty->termios != tty->driver->other->termios[idx]) {
2291 printk(KERN_DEBUG "release_dev: other->termios[%d] "
2292 "not o_termios for (%s)\n",
2293 idx, tty->name);
2294 return;
2295 }
2296 if (o_tty->termios_locked !=
2297 tty->driver->other->termios_locked[idx]) {
2298 printk(KERN_DEBUG "release_dev: other->termios_locked["
2299 "%d] not o_termios_locked for (%s)\n",
2300 idx, tty->name);
2301 return;
2302 }
2303 if (o_tty->link != tty) {
2304 printk(KERN_DEBUG "release_dev: bad pty pointers\n");
2305 return;
2306 }
2307 }
2308#endif
2309 if (tty->driver->close)
2310 tty->driver->close(tty, filp);
2311
2312 /*
2313 * Sanity check: if tty->count is going to zero, there shouldn't be
2314 * any waiters on tty->read_wait or tty->write_wait. We test the
2315 * wait queues and kick everyone out _before_ actually starting to
2316 * close. This ensures that we won't block while releasing the tty
2317 * structure.
2318 *
2319 * The test for the o_tty closing is necessary, since the master and
2320 * slave sides may close in any order. If the slave side closes out
2321 * first, its count will be one, since the master side holds an open.
2322 * Thus this test wouldn't be triggered at the time the slave closes,
2323 * so we do it now.
2324 *
2325 * Note that it's possible for the tty to be opened again while we're
2326 * flushing out waiters. By recalculating the closing flags before
2327 * each iteration we avoid any problems.
2328 */
2329 while (1) {
2330 /* Guard against races with tty->count changes elsewhere and
2331 opens on /dev/tty */
2332
70522e12 2333 mutex_lock(&tty_mutex);
1da177e4
LT
2334 tty_closing = tty->count <= 1;
2335 o_tty_closing = o_tty &&
2336 (o_tty->count <= (pty_master ? 1 : 0));
1da177e4
LT
2337 do_sleep = 0;
2338
2339 if (tty_closing) {
2340 if (waitqueue_active(&tty->read_wait)) {
2341 wake_up(&tty->read_wait);
2342 do_sleep++;
2343 }
2344 if (waitqueue_active(&tty->write_wait)) {
2345 wake_up(&tty->write_wait);
2346 do_sleep++;
2347 }
2348 }
2349 if (o_tty_closing) {
2350 if (waitqueue_active(&o_tty->read_wait)) {
2351 wake_up(&o_tty->read_wait);
2352 do_sleep++;
2353 }
2354 if (waitqueue_active(&o_tty->write_wait)) {
2355 wake_up(&o_tty->write_wait);
2356 do_sleep++;
2357 }
2358 }
2359 if (!do_sleep)
2360 break;
2361
2362 printk(KERN_WARNING "release_dev: %s: read/write wait queue "
2363 "active!\n", tty_name(tty, buf));
70522e12 2364 mutex_unlock(&tty_mutex);
1da177e4
LT
2365 schedule();
2366 }
2367
2368 /*
2369 * The closing flags are now consistent with the open counts on
2370 * both sides, and we've completed the last operation that could
2371 * block, so it's safe to proceed with closing.
2372 */
1da177e4
LT
2373 if (pty_master) {
2374 if (--o_tty->count < 0) {
2375 printk(KERN_WARNING "release_dev: bad pty slave count "
2376 "(%d) for %s\n",
2377 o_tty->count, tty_name(o_tty, buf));
2378 o_tty->count = 0;
2379 }
2380 }
2381 if (--tty->count < 0) {
2382 printk(KERN_WARNING "release_dev: bad tty->count (%d) for %s\n",
2383 tty->count, tty_name(tty, buf));
2384 tty->count = 0;
2385 }
1da177e4
LT
2386
2387 /*
2388 * We've decremented tty->count, so we need to remove this file
2389 * descriptor off the tty->tty_files list; this serves two
2390 * purposes:
2391 * - check_tty_count sees the correct number of file descriptors
2392 * associated with this tty.
2393 * - do_tty_hangup no longer sees this file descriptor as
2394 * something that needs to be handled for hangups.
2395 */
2396 file_kill(filp);
2397 filp->private_data = NULL;
2398
2399 /*
2400 * Perform some housekeeping before deciding whether to return.
2401 *
2402 * Set the TTY_CLOSING flag if this was the last open. In the
2403 * case of a pty we may have to wait around for the other side
2404 * to close, and TTY_CLOSING makes sure we can't be reopened.
2405 */
2406 if(tty_closing)
2407 set_bit(TTY_CLOSING, &tty->flags);
2408 if(o_tty_closing)
2409 set_bit(TTY_CLOSING, &o_tty->flags);
2410
2411 /*
2412 * If _either_ side is closing, make sure there aren't any
2413 * processes that still think tty or o_tty is their controlling
2414 * tty.
2415 */
2416 if (tty_closing || o_tty_closing) {
1da177e4 2417 read_lock(&tasklist_lock);
24ec839c 2418 session_clear_tty(tty->session);
1da177e4 2419 if (o_tty)
24ec839c 2420 session_clear_tty(o_tty->session);
1da177e4
LT
2421 read_unlock(&tasklist_lock);
2422 }
2423
70522e12 2424 mutex_unlock(&tty_mutex);
da965822 2425
1da177e4
LT
2426 /* check whether both sides are closing ... */
2427 if (!tty_closing || (o_tty && !o_tty_closing))
2428 return;
2429
2430#ifdef TTY_DEBUG_HANGUP
2431 printk(KERN_DEBUG "freeing tty structure...");
2432#endif
2433 /*
2434 * Prevent flush_to_ldisc() from rescheduling the work for later. Then
2435 * kill any delayed work. As this is the final close it does not
2436 * race with the set_ldisc code path.
2437 */
2438 clear_bit(TTY_LDISC, &tty->flags);
33f0f88f 2439 cancel_delayed_work(&tty->buf.work);
1da177e4
LT
2440
2441 /*
33f0f88f 2442 * Wait for ->hangup_work and ->buf.work handlers to terminate
1da177e4
LT
2443 */
2444
2445 flush_scheduled_work();
2446
2447 /*
2448 * Wait for any short term users (we know they are just driver
2449 * side waiters as the file is closing so user count on the file
2450 * side is zero.
2451 */
2452 spin_lock_irqsave(&tty_ldisc_lock, flags);
2453 while(tty->ldisc.refcount)
2454 {
2455 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
2456 wait_event(tty_ldisc_wait, tty->ldisc.refcount == 0);
2457 spin_lock_irqsave(&tty_ldisc_lock, flags);
2458 }
2459 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
2460 /*
2461 * Shutdown the current line discipline, and reset it to N_TTY.
2462 * N.B. why reset ldisc when we're releasing the memory??
2463 *
2464 * FIXME: this MUST get fixed for the new reflocking
2465 */
2466 if (tty->ldisc.close)
2467 (tty->ldisc.close)(tty);
2468 tty_ldisc_put(tty->ldisc.num);
2469
2470 /*
2471 * Switch the line discipline back
2472 */
2473 tty_ldisc_assign(tty, tty_ldisc_get(N_TTY));
2474 tty_set_termios_ldisc(tty,N_TTY);
2475 if (o_tty) {
2476 /* FIXME: could o_tty be in setldisc here ? */
2477 clear_bit(TTY_LDISC, &o_tty->flags);
2478 if (o_tty->ldisc.close)
2479 (o_tty->ldisc.close)(o_tty);
2480 tty_ldisc_put(o_tty->ldisc.num);
2481 tty_ldisc_assign(o_tty, tty_ldisc_get(N_TTY));
2482 tty_set_termios_ldisc(o_tty,N_TTY);
2483 }
2484 /*
d5698c28 2485 * The release_tty function takes care of the details of clearing
1da177e4
LT
2486 * the slots and preserving the termios structure.
2487 */
d5698c28 2488 release_tty(tty, idx);
1da177e4
LT
2489
2490#ifdef CONFIG_UNIX98_PTYS
2491 /* Make this pty number available for reallocation */
2492 if (devpts) {
2493 down(&allocated_ptys_lock);
2494 idr_remove(&allocated_ptys, idx);
2495 up(&allocated_ptys_lock);
2496 }
2497#endif
2498
2499}
2500
af9b897e
AC
2501/**
2502 * tty_open - open a tty device
2503 * @inode: inode of device file
2504 * @filp: file pointer to tty
1da177e4 2505 *
af9b897e
AC
2506 * tty_open and tty_release keep up the tty count that contains the
2507 * number of opens done on a tty. We cannot use the inode-count, as
2508 * different inodes might point to the same tty.
1da177e4 2509 *
af9b897e
AC
2510 * Open-counting is needed for pty masters, as well as for keeping
2511 * track of serial lines: DTR is dropped when the last close happens.
2512 * (This is not done solely through tty->count, now. - Ted 1/27/92)
2513 *
2514 * The termios state of a pty is reset on first open so that
2515 * settings don't persist across reuse.
2516 *
24ec839c
PZ
2517 * Locking: tty_mutex protects tty, get_tty_driver and init_dev work.
2518 * tty->count should protect the rest.
2519 * ->siglock protects ->signal/->sighand
1da177e4 2520 */
af9b897e 2521
1da177e4
LT
2522static int tty_open(struct inode * inode, struct file * filp)
2523{
2524 struct tty_struct *tty;
2525 int noctty, retval;
2526 struct tty_driver *driver;
2527 int index;
2528 dev_t device = inode->i_rdev;
2529 unsigned short saved_flags = filp->f_flags;
2530
2531 nonseekable_open(inode, filp);
2532
2533retry_open:
2534 noctty = filp->f_flags & O_NOCTTY;
2535 index = -1;
2536 retval = 0;
2537
70522e12 2538 mutex_lock(&tty_mutex);
1da177e4
LT
2539
2540 if (device == MKDEV(TTYAUX_MAJOR,0)) {
24ec839c
PZ
2541 tty = get_current_tty();
2542 if (!tty) {
70522e12 2543 mutex_unlock(&tty_mutex);
1da177e4
LT
2544 return -ENXIO;
2545 }
24ec839c
PZ
2546 driver = tty->driver;
2547 index = tty->index;
1da177e4
LT
2548 filp->f_flags |= O_NONBLOCK; /* Don't let /dev/tty block */
2549 /* noctty = 1; */
2550 goto got_driver;
2551 }
2552#ifdef CONFIG_VT
2553 if (device == MKDEV(TTY_MAJOR,0)) {
2554 extern struct tty_driver *console_driver;
2555 driver = console_driver;
2556 index = fg_console;
2557 noctty = 1;
2558 goto got_driver;
2559 }
2560#endif
2561 if (device == MKDEV(TTYAUX_MAJOR,1)) {
2562 driver = console_device(&index);
2563 if (driver) {
2564 /* Don't let /dev/console block */
2565 filp->f_flags |= O_NONBLOCK;
2566 noctty = 1;
2567 goto got_driver;
2568 }
70522e12 2569 mutex_unlock(&tty_mutex);
1da177e4
LT
2570 return -ENODEV;
2571 }
2572
2573 driver = get_tty_driver(device, &index);
2574 if (!driver) {
70522e12 2575 mutex_unlock(&tty_mutex);
1da177e4
LT
2576 return -ENODEV;
2577 }
2578got_driver:
2579 retval = init_dev(driver, index, &tty);
70522e12 2580 mutex_unlock(&tty_mutex);
1da177e4
LT
2581 if (retval)
2582 return retval;
2583
2584 filp->private_data = tty;
2585 file_move(filp, &tty->tty_files);
2586 check_tty_count(tty, "tty_open");
2587 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2588 tty->driver->subtype == PTY_TYPE_MASTER)
2589 noctty = 1;
2590#ifdef TTY_DEBUG_HANGUP
2591 printk(KERN_DEBUG "opening %s...", tty->name);
2592#endif
2593 if (!retval) {
2594 if (tty->driver->open)
2595 retval = tty->driver->open(tty, filp);
2596 else
2597 retval = -ENODEV;
2598 }
2599 filp->f_flags = saved_flags;
2600
2601 if (!retval && test_bit(TTY_EXCLUSIVE, &tty->flags) && !capable(CAP_SYS_ADMIN))
2602 retval = -EBUSY;
2603
2604 if (retval) {
2605#ifdef TTY_DEBUG_HANGUP
2606 printk(KERN_DEBUG "error %d in opening %s...", retval,
2607 tty->name);
2608#endif
2609 release_dev(filp);
2610 if (retval != -ERESTARTSYS)
2611 return retval;
2612 if (signal_pending(current))
2613 return retval;
2614 schedule();
2615 /*
2616 * Need to reset f_op in case a hangup happened.
2617 */
2618 if (filp->f_op == &hung_up_tty_fops)
2619 filp->f_op = &tty_fops;
2620 goto retry_open;
2621 }
24ec839c
PZ
2622
2623 mutex_lock(&tty_mutex);
2624 spin_lock_irq(&current->sighand->siglock);
1da177e4
LT
2625 if (!noctty &&
2626 current->signal->leader &&
2627 !current->signal->tty &&
ab521dc0 2628 tty->session == NULL)
2a65f1d9 2629 __proc_set_tty(current, tty);
24ec839c
PZ
2630 spin_unlock_irq(&current->sighand->siglock);
2631 mutex_unlock(&tty_mutex);
1da177e4
LT
2632 return 0;
2633}
2634
2635#ifdef CONFIG_UNIX98_PTYS
af9b897e
AC
2636/**
2637 * ptmx_open - open a unix 98 pty master
2638 * @inode: inode of device file
2639 * @filp: file pointer to tty
2640 *
2641 * Allocate a unix98 pty master device from the ptmx driver.
2642 *
2643 * Locking: tty_mutex protects theinit_dev work. tty->count should
2644 protect the rest.
2645 * allocated_ptys_lock handles the list of free pty numbers
2646 */
2647
1da177e4
LT
2648static int ptmx_open(struct inode * inode, struct file * filp)
2649{
2650 struct tty_struct *tty;
2651 int retval;
2652 int index;
2653 int idr_ret;
2654
2655 nonseekable_open(inode, filp);
2656
2657 /* find a device that is not in use. */
2658 down(&allocated_ptys_lock);
2659 if (!idr_pre_get(&allocated_ptys, GFP_KERNEL)) {
2660 up(&allocated_ptys_lock);
2661 return -ENOMEM;
2662 }
2663 idr_ret = idr_get_new(&allocated_ptys, NULL, &index);
2664 if (idr_ret < 0) {
2665 up(&allocated_ptys_lock);
2666 if (idr_ret == -EAGAIN)
2667 return -ENOMEM;
2668 return -EIO;
2669 }
2670 if (index >= pty_limit) {
2671 idr_remove(&allocated_ptys, index);
2672 up(&allocated_ptys_lock);
2673 return -EIO;
2674 }
2675 up(&allocated_ptys_lock);
2676
70522e12 2677 mutex_lock(&tty_mutex);
1da177e4 2678 retval = init_dev(ptm_driver, index, &tty);
70522e12 2679 mutex_unlock(&tty_mutex);
1da177e4
LT
2680
2681 if (retval)
2682 goto out;
2683
2684 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
2685 filp->private_data = tty;
2686 file_move(filp, &tty->tty_files);
2687
2688 retval = -ENOMEM;
2689 if (devpts_pty_new(tty->link))
2690 goto out1;
2691
2692 check_tty_count(tty, "tty_open");
2693 retval = ptm_driver->open(tty, filp);
2694 if (!retval)
2695 return 0;
2696out1:
2697 release_dev(filp);
9453a5ad 2698 return retval;
1da177e4
LT
2699out:
2700 down(&allocated_ptys_lock);
2701 idr_remove(&allocated_ptys, index);
2702 up(&allocated_ptys_lock);
2703 return retval;
2704}
2705#endif
2706
af9b897e
AC
2707/**
2708 * tty_release - vfs callback for close
2709 * @inode: inode of tty
2710 * @filp: file pointer for handle to tty
2711 *
2712 * Called the last time each file handle is closed that references
2713 * this tty. There may however be several such references.
2714 *
2715 * Locking:
2716 * Takes bkl. See release_dev
2717 */
2718
1da177e4
LT
2719static int tty_release(struct inode * inode, struct file * filp)
2720{
2721 lock_kernel();
2722 release_dev(filp);
2723 unlock_kernel();
2724 return 0;
2725}
2726
af9b897e
AC
2727/**
2728 * tty_poll - check tty status
2729 * @filp: file being polled
2730 * @wait: poll wait structures to update
2731 *
2732 * Call the line discipline polling method to obtain the poll
2733 * status of the device.
2734 *
2735 * Locking: locks called line discipline but ldisc poll method
2736 * may be re-entered freely by other callers.
2737 */
2738
1da177e4
LT
2739static unsigned int tty_poll(struct file * filp, poll_table * wait)
2740{
2741 struct tty_struct * tty;
2742 struct tty_ldisc *ld;
2743 int ret = 0;
2744
2745 tty = (struct tty_struct *)filp->private_data;
a7113a96 2746 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_poll"))
1da177e4
LT
2747 return 0;
2748
2749 ld = tty_ldisc_ref_wait(tty);
2750 if (ld->poll)
2751 ret = (ld->poll)(tty, filp, wait);
2752 tty_ldisc_deref(ld);
2753 return ret;
2754}
2755
2756static int tty_fasync(int fd, struct file * filp, int on)
2757{
2758 struct tty_struct * tty;
2759 int retval;
2760
2761 tty = (struct tty_struct *)filp->private_data;
a7113a96 2762 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_fasync"))
1da177e4
LT
2763 return 0;
2764
2765 retval = fasync_helper(fd, filp, on, &tty->fasync);
2766 if (retval <= 0)
2767 return retval;
2768
2769 if (on) {
ab521dc0
EB
2770 enum pid_type type;
2771 struct pid *pid;
1da177e4
LT
2772 if (!waitqueue_active(&tty->read_wait))
2773 tty->minimum_to_wake = 1;
ab521dc0
EB
2774 if (tty->pgrp) {
2775 pid = tty->pgrp;
2776 type = PIDTYPE_PGID;
2777 } else {
2778 pid = task_pid(current);
2779 type = PIDTYPE_PID;
2780 }
2781 retval = __f_setown(filp, pid, type, 0);
1da177e4
LT
2782 if (retval)
2783 return retval;
2784 } else {
2785 if (!tty->fasync && !waitqueue_active(&tty->read_wait))
2786 tty->minimum_to_wake = N_TTY_BUF_SIZE;
2787 }
2788 return 0;
2789}
2790
af9b897e
AC
2791/**
2792 * tiocsti - fake input character
2793 * @tty: tty to fake input into
2794 * @p: pointer to character
2795 *
2796 * Fake input to a tty device. Does the neccessary locking and
2797 * input management.
2798 *
2799 * FIXME: does not honour flow control ??
2800 *
2801 * Locking:
2802 * Called functions take tty_ldisc_lock
2803 * current->signal->tty check is safe without locks
28298232
AC
2804 *
2805 * FIXME: may race normal receive processing
af9b897e
AC
2806 */
2807
1da177e4
LT
2808static int tiocsti(struct tty_struct *tty, char __user *p)
2809{
2810 char ch, mbz = 0;
2811 struct tty_ldisc *ld;
2812
2813 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
2814 return -EPERM;
2815 if (get_user(ch, p))
2816 return -EFAULT;
2817 ld = tty_ldisc_ref_wait(tty);
2818 ld->receive_buf(tty, &ch, &mbz, 1);
2819 tty_ldisc_deref(ld);
2820 return 0;
2821}
2822
af9b897e
AC
2823/**
2824 * tiocgwinsz - implement window query ioctl
2825 * @tty; tty
2826 * @arg: user buffer for result
2827 *
808a0d38 2828 * Copies the kernel idea of the window size into the user buffer.
af9b897e 2829 *
24ec839c 2830 * Locking: tty->termios_mutex is taken to ensure the winsize data
808a0d38 2831 * is consistent.
af9b897e
AC
2832 */
2833
1da177e4
LT
2834static int tiocgwinsz(struct tty_struct *tty, struct winsize __user * arg)
2835{
808a0d38
AC
2836 int err;
2837
5785c95b 2838 mutex_lock(&tty->termios_mutex);
808a0d38 2839 err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
5785c95b 2840 mutex_unlock(&tty->termios_mutex);
808a0d38
AC
2841
2842 return err ? -EFAULT: 0;
1da177e4
LT
2843}
2844
af9b897e
AC
2845/**
2846 * tiocswinsz - implement window size set ioctl
2847 * @tty; tty
2848 * @arg: user buffer for result
2849 *
2850 * Copies the user idea of the window size to the kernel. Traditionally
2851 * this is just advisory information but for the Linux console it
2852 * actually has driver level meaning and triggers a VC resize.
2853 *
2854 * Locking:
ca9bda00
AC
2855 * Called function use the console_sem is used to ensure we do
2856 * not try and resize the console twice at once.
24ec839c
PZ
2857 * The tty->termios_mutex is used to ensure we don't double
2858 * resize and get confused. Lock order - tty->termios_mutex before
ca9bda00 2859 * console sem
af9b897e
AC
2860 */
2861
1da177e4
LT
2862static int tiocswinsz(struct tty_struct *tty, struct tty_struct *real_tty,
2863 struct winsize __user * arg)
2864{
2865 struct winsize tmp_ws;
2866
2867 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
2868 return -EFAULT;
ca9bda00 2869
5785c95b 2870 mutex_lock(&tty->termios_mutex);
1da177e4 2871 if (!memcmp(&tmp_ws, &tty->winsize, sizeof(*arg)))
ca9bda00
AC
2872 goto done;
2873
1da177e4
LT
2874#ifdef CONFIG_VT
2875 if (tty->driver->type == TTY_DRIVER_TYPE_CONSOLE) {
5785c95b
AV
2876 if (vc_lock_resize(tty->driver_data, tmp_ws.ws_col,
2877 tmp_ws.ws_row)) {
2878 mutex_unlock(&tty->termios_mutex);
ca9bda00
AC
2879 return -ENXIO;
2880 }
1da177e4
LT
2881 }
2882#endif
ab521dc0
EB
2883 if (tty->pgrp)
2884 kill_pgrp(tty->pgrp, SIGWINCH, 1);
2885 if ((real_tty->pgrp != tty->pgrp) && real_tty->pgrp)
2886 kill_pgrp(real_tty->pgrp, SIGWINCH, 1);
1da177e4
LT
2887 tty->winsize = tmp_ws;
2888 real_tty->winsize = tmp_ws;
ca9bda00 2889done:
5785c95b 2890 mutex_unlock(&tty->termios_mutex);
1da177e4
LT
2891 return 0;
2892}
2893
af9b897e
AC
2894/**
2895 * tioccons - allow admin to move logical console
2896 * @file: the file to become console
2897 *
2898 * Allow the adminstrator to move the redirected console device
2899 *
2900 * Locking: uses redirect_lock to guard the redirect information
2901 */
2902
1da177e4
LT
2903static int tioccons(struct file *file)
2904{
2905 if (!capable(CAP_SYS_ADMIN))
2906 return -EPERM;
2907 if (file->f_op->write == redirected_tty_write) {
2908 struct file *f;
2909 spin_lock(&redirect_lock);
2910 f = redirect;
2911 redirect = NULL;
2912 spin_unlock(&redirect_lock);
2913 if (f)
2914 fput(f);
2915 return 0;
2916 }
2917 spin_lock(&redirect_lock);
2918 if (redirect) {
2919 spin_unlock(&redirect_lock);
2920 return -EBUSY;
2921 }
2922 get_file(file);
2923 redirect = file;
2924 spin_unlock(&redirect_lock);
2925 return 0;
2926}
2927
af9b897e
AC
2928/**
2929 * fionbio - non blocking ioctl
2930 * @file: file to set blocking value
2931 * @p: user parameter
2932 *
2933 * Historical tty interfaces had a blocking control ioctl before
2934 * the generic functionality existed. This piece of history is preserved
2935 * in the expected tty API of posix OS's.
2936 *
2937 * Locking: none, the open fle handle ensures it won't go away.
2938 */
1da177e4
LT
2939
2940static int fionbio(struct file *file, int __user *p)
2941{
2942 int nonblock;
2943
2944 if (get_user(nonblock, p))
2945 return -EFAULT;
2946
2947 if (nonblock)
2948 file->f_flags |= O_NONBLOCK;
2949 else
2950 file->f_flags &= ~O_NONBLOCK;
2951 return 0;
2952}
2953
af9b897e
AC
2954/**
2955 * tiocsctty - set controlling tty
2956 * @tty: tty structure
2957 * @arg: user argument
2958 *
2959 * This ioctl is used to manage job control. It permits a session
2960 * leader to set this tty as the controlling tty for the session.
2961 *
2962 * Locking:
28298232 2963 * Takes tty_mutex() to protect tty instance
24ec839c
PZ
2964 * Takes tasklist_lock internally to walk sessions
2965 * Takes ->siglock() when updating signal->tty
af9b897e
AC
2966 */
2967
1da177e4
LT
2968static int tiocsctty(struct tty_struct *tty, int arg)
2969{
24ec839c 2970 int ret = 0;
ab521dc0 2971 if (current->signal->leader && (task_session(current) == tty->session))
24ec839c
PZ
2972 return ret;
2973
2974 mutex_lock(&tty_mutex);
1da177e4
LT
2975 /*
2976 * The process must be a session leader and
2977 * not have a controlling tty already.
2978 */
24ec839c
PZ
2979 if (!current->signal->leader || current->signal->tty) {
2980 ret = -EPERM;
2981 goto unlock;
2982 }
2983
ab521dc0 2984 if (tty->session) {
1da177e4
LT
2985 /*
2986 * This tty is already the controlling
2987 * tty for another session group!
2988 */
2989 if ((arg == 1) && capable(CAP_SYS_ADMIN)) {
2990 /*
2991 * Steal it away
2992 */
1da177e4 2993 read_lock(&tasklist_lock);
24ec839c 2994 session_clear_tty(tty->session);
1da177e4 2995 read_unlock(&tasklist_lock);
24ec839c
PZ
2996 } else {
2997 ret = -EPERM;
2998 goto unlock;
2999 }
1da177e4 3000 }
24ec839c
PZ
3001 proc_set_tty(current, tty);
3002unlock:
28298232 3003 mutex_unlock(&tty_mutex);
24ec839c 3004 return ret;
1da177e4
LT
3005}
3006
af9b897e
AC
3007/**
3008 * tiocgpgrp - get process group
3009 * @tty: tty passed by user
3010 * @real_tty: tty side of the tty pased by the user if a pty else the tty
3011 * @p: returned pid
3012 *
3013 * Obtain the process group of the tty. If there is no process group
3014 * return an error.
3015 *
24ec839c 3016 * Locking: none. Reference to current->signal->tty is safe.
af9b897e
AC
3017 */
3018
1da177e4
LT
3019static int tiocgpgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
3020{
3021 /*
3022 * (tty == real_tty) is a cheap way of
3023 * testing if the tty is NOT a master pty.
3024 */
3025 if (tty == real_tty && current->signal->tty != real_tty)
3026 return -ENOTTY;
ab521dc0 3027 return put_user(pid_nr(real_tty->pgrp), p);
1da177e4
LT
3028}
3029
af9b897e
AC
3030/**
3031 * tiocspgrp - attempt to set process group
3032 * @tty: tty passed by user
3033 * @real_tty: tty side device matching tty passed by user
3034 * @p: pid pointer
3035 *
3036 * Set the process group of the tty to the session passed. Only
3037 * permitted where the tty session is our session.
3038 *
3039 * Locking: None
af9b897e
AC
3040 */
3041
1da177e4
LT
3042static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
3043{
04a2e6a5
EB
3044 struct pid *pgrp;
3045 pid_t pgrp_nr;
1da177e4
LT
3046 int retval = tty_check_change(real_tty);
3047
3048 if (retval == -EIO)
3049 return -ENOTTY;
3050 if (retval)
3051 return retval;
3052 if (!current->signal->tty ||
3053 (current->signal->tty != real_tty) ||
ab521dc0 3054 (real_tty->session != task_session(current)))
1da177e4 3055 return -ENOTTY;
04a2e6a5 3056 if (get_user(pgrp_nr, p))
1da177e4 3057 return -EFAULT;
04a2e6a5 3058 if (pgrp_nr < 0)
1da177e4 3059 return -EINVAL;
04a2e6a5
EB
3060 rcu_read_lock();
3061 pgrp = find_pid(pgrp_nr);
3062 retval = -ESRCH;
3063 if (!pgrp)
3064 goto out_unlock;
3065 retval = -EPERM;
3066 if (session_of_pgrp(pgrp) != task_session(current))
3067 goto out_unlock;
3068 retval = 0;
ab521dc0
EB
3069 put_pid(real_tty->pgrp);
3070 real_tty->pgrp = get_pid(pgrp);
04a2e6a5
EB
3071out_unlock:
3072 rcu_read_unlock();
3073 return retval;
1da177e4
LT
3074}
3075
af9b897e
AC
3076/**
3077 * tiocgsid - get session id
3078 * @tty: tty passed by user
3079 * @real_tty: tty side of the tty pased by the user if a pty else the tty
3080 * @p: pointer to returned session id
3081 *
3082 * Obtain the session id of the tty. If there is no session
3083 * return an error.
3084 *
24ec839c 3085 * Locking: none. Reference to current->signal->tty is safe.
af9b897e
AC
3086 */
3087
1da177e4
LT
3088static int tiocgsid(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
3089{
3090 /*
3091 * (tty == real_tty) is a cheap way of
3092 * testing if the tty is NOT a master pty.
3093 */
3094 if (tty == real_tty && current->signal->tty != real_tty)
3095 return -ENOTTY;
ab521dc0 3096 if (!real_tty->session)
1da177e4 3097 return -ENOTTY;
ab521dc0 3098 return put_user(pid_nr(real_tty->session), p);
1da177e4
LT
3099}
3100
af9b897e
AC
3101/**
3102 * tiocsetd - set line discipline
3103 * @tty: tty device
3104 * @p: pointer to user data
3105 *
3106 * Set the line discipline according to user request.
3107 *
3108 * Locking: see tty_set_ldisc, this function is just a helper
3109 */
3110
1da177e4
LT
3111static int tiocsetd(struct tty_struct *tty, int __user *p)
3112{
3113 int ldisc;
3114
3115 if (get_user(ldisc, p))
3116 return -EFAULT;
3117 return tty_set_ldisc(tty, ldisc);
3118}
3119
af9b897e
AC
3120/**
3121 * send_break - performed time break
3122 * @tty: device to break on
3123 * @duration: timeout in mS
3124 *
3125 * Perform a timed break on hardware that lacks its own driver level
3126 * timed break functionality.
3127 *
3128 * Locking:
28298232 3129 * atomic_write_lock serializes
af9b897e 3130 *
af9b897e
AC
3131 */
3132
b20f3ae5 3133static int send_break(struct tty_struct *tty, unsigned int duration)
1da177e4 3134{
28298232
AC
3135 if (mutex_lock_interruptible(&tty->atomic_write_lock))
3136 return -EINTR;
1da177e4
LT
3137 tty->driver->break_ctl(tty, -1);
3138 if (!signal_pending(current)) {
b20f3ae5 3139 msleep_interruptible(duration);
1da177e4
LT
3140 }
3141 tty->driver->break_ctl(tty, 0);
28298232 3142 mutex_unlock(&tty->atomic_write_lock);
1da177e4
LT
3143 if (signal_pending(current))
3144 return -EINTR;
3145 return 0;
3146}
3147
af9b897e
AC
3148/**
3149 * tiocmget - get modem status
3150 * @tty: tty device
3151 * @file: user file pointer
3152 * @p: pointer to result
3153 *
3154 * Obtain the modem status bits from the tty driver if the feature
3155 * is supported. Return -EINVAL if it is not available.
3156 *
3157 * Locking: none (up to the driver)
3158 */
3159
3160static int tty_tiocmget(struct tty_struct *tty, struct file *file, int __user *p)
1da177e4
LT
3161{
3162 int retval = -EINVAL;
3163
3164 if (tty->driver->tiocmget) {
3165 retval = tty->driver->tiocmget(tty, file);
3166
3167 if (retval >= 0)
3168 retval = put_user(retval, p);
3169 }
3170 return retval;
3171}
3172
af9b897e
AC
3173/**
3174 * tiocmset - set modem status
3175 * @tty: tty device
3176 * @file: user file pointer
3177 * @cmd: command - clear bits, set bits or set all
3178 * @p: pointer to desired bits
3179 *
3180 * Set the modem status bits from the tty driver if the feature
3181 * is supported. Return -EINVAL if it is not available.
3182 *
3183 * Locking: none (up to the driver)
3184 */
3185
3186static int tty_tiocmset(struct tty_struct *tty, struct file *file, unsigned int cmd,
1da177e4
LT
3187 unsigned __user *p)
3188{
3189 int retval = -EINVAL;
3190
3191 if (tty->driver->tiocmset) {
3192 unsigned int set, clear, val;
3193
3194 retval = get_user(val, p);
3195 if (retval)
3196 return retval;
3197
3198 set = clear = 0;
3199 switch (cmd) {
3200 case TIOCMBIS:
3201 set = val;
3202 break;
3203 case TIOCMBIC:
3204 clear = val;
3205 break;
3206 case TIOCMSET:
3207 set = val;
3208 clear = ~val;
3209 break;
3210 }
3211
3212 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
3213 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
3214
3215 retval = tty->driver->tiocmset(tty, file, set, clear);
3216 }
3217 return retval;
3218}
3219
3220/*
3221 * Split this up, as gcc can choke on it otherwise..
3222 */
3223int tty_ioctl(struct inode * inode, struct file * file,
3224 unsigned int cmd, unsigned long arg)
3225{
3226 struct tty_struct *tty, *real_tty;
3227 void __user *p = (void __user *)arg;
3228 int retval;
3229 struct tty_ldisc *ld;
3230
3231 tty = (struct tty_struct *)file->private_data;
3232 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
3233 return -EINVAL;
3234
28298232
AC
3235 /* CHECKME: is this safe as one end closes ? */
3236
1da177e4
LT
3237 real_tty = tty;
3238 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
3239 tty->driver->subtype == PTY_TYPE_MASTER)
3240 real_tty = tty->link;
3241
3242 /*
3243 * Break handling by driver
3244 */
3245 if (!tty->driver->break_ctl) {
3246 switch(cmd) {
3247 case TIOCSBRK:
3248 case TIOCCBRK:
3249 if (tty->driver->ioctl)
3250 return tty->driver->ioctl(tty, file, cmd, arg);
3251 return -EINVAL;
3252
3253 /* These two ioctl's always return success; even if */
3254 /* the driver doesn't support them. */
3255 case TCSBRK:
3256 case TCSBRKP:
3257 if (!tty->driver->ioctl)
3258 return 0;
3259 retval = tty->driver->ioctl(tty, file, cmd, arg);
3260 if (retval == -ENOIOCTLCMD)
3261 retval = 0;
3262 return retval;
3263 }
3264 }
3265
3266 /*
3267 * Factor out some common prep work
3268 */
3269 switch (cmd) {
3270 case TIOCSETD:
3271 case TIOCSBRK:
3272 case TIOCCBRK:
3273 case TCSBRK:
3274 case TCSBRKP:
3275 retval = tty_check_change(tty);
3276 if (retval)
3277 return retval;
3278 if (cmd != TIOCCBRK) {
3279 tty_wait_until_sent(tty, 0);
3280 if (signal_pending(current))
3281 return -EINTR;
3282 }
3283 break;
3284 }
3285
3286 switch (cmd) {
3287 case TIOCSTI:
3288 return tiocsti(tty, p);
3289 case TIOCGWINSZ:
3290 return tiocgwinsz(tty, p);
3291 case TIOCSWINSZ:
3292 return tiocswinsz(tty, real_tty, p);
3293 case TIOCCONS:
3294 return real_tty!=tty ? -EINVAL : tioccons(file);
3295 case FIONBIO:
3296 return fionbio(file, p);
3297 case TIOCEXCL:
3298 set_bit(TTY_EXCLUSIVE, &tty->flags);
3299 return 0;
3300 case TIOCNXCL:
3301 clear_bit(TTY_EXCLUSIVE, &tty->flags);
3302 return 0;
3303 case TIOCNOTTY:
3304 if (current->signal->tty != tty)
3305 return -ENOTTY;
98a27ba4 3306 no_tty();
1da177e4
LT
3307 return 0;
3308 case TIOCSCTTY:
3309 return tiocsctty(tty, arg);
3310 case TIOCGPGRP:
3311 return tiocgpgrp(tty, real_tty, p);
3312 case TIOCSPGRP:
3313 return tiocspgrp(tty, real_tty, p);
3314 case TIOCGSID:
3315 return tiocgsid(tty, real_tty, p);
3316 case TIOCGETD:
3317 /* FIXME: check this is ok */
3318 return put_user(tty->ldisc.num, (int __user *)p);
3319 case TIOCSETD:
3320 return tiocsetd(tty, p);
3321#ifdef CONFIG_VT
3322 case TIOCLINUX:
3323 return tioclinux(tty, arg);
3324#endif
3325 /*
3326 * Break handling
3327 */
3328 case TIOCSBRK: /* Turn break on, unconditionally */
3329 tty->driver->break_ctl(tty, -1);
3330 return 0;
3331
3332 case TIOCCBRK: /* Turn break off, unconditionally */
3333 tty->driver->break_ctl(tty, 0);
3334 return 0;
3335 case TCSBRK: /* SVID version: non-zero arg --> no break */
283fef59
PF
3336 /* non-zero arg means wait for all output data
3337 * to be sent (performed above) but don't send break.
3338 * This is used by the tcdrain() termios function.
1da177e4
LT
3339 */
3340 if (!arg)
b20f3ae5 3341 return send_break(tty, 250);
1da177e4
LT
3342 return 0;
3343 case TCSBRKP: /* support for POSIX tcsendbreak() */
b20f3ae5 3344 return send_break(tty, arg ? arg*100 : 250);
1da177e4
LT
3345
3346 case TIOCMGET:
3347 return tty_tiocmget(tty, file, p);
3348
3349 case TIOCMSET:
3350 case TIOCMBIC:
3351 case TIOCMBIS:
3352 return tty_tiocmset(tty, file, cmd, p);
3353 }
3354 if (tty->driver->ioctl) {
3355 retval = (tty->driver->ioctl)(tty, file, cmd, arg);
3356 if (retval != -ENOIOCTLCMD)
3357 return retval;
3358 }
3359 ld = tty_ldisc_ref_wait(tty);
3360 retval = -EINVAL;
3361 if (ld->ioctl) {
3362 retval = ld->ioctl(tty, file, cmd, arg);
3363 if (retval == -ENOIOCTLCMD)
3364 retval = -EINVAL;
3365 }
3366 tty_ldisc_deref(ld);
3367 return retval;
3368}
3369
e10cc1df
PF
3370#ifdef CONFIG_COMPAT
3371static long tty_compat_ioctl(struct file * file, unsigned int cmd,
3372 unsigned long arg)
3373{
3374 struct inode *inode = file->f_dentry->d_inode;
3375 struct tty_struct *tty = file->private_data;
3376 struct tty_ldisc *ld;
3377 int retval = -ENOIOCTLCMD;
3378
3379 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
3380 return -EINVAL;
3381
3382 if (tty->driver->compat_ioctl) {
3383 retval = (tty->driver->compat_ioctl)(tty, file, cmd, arg);
3384 if (retval != -ENOIOCTLCMD)
3385 return retval;
3386 }
3387
3388 ld = tty_ldisc_ref_wait(tty);
3389 if (ld->compat_ioctl)
3390 retval = ld->compat_ioctl(tty, file, cmd, arg);
3391 tty_ldisc_deref(ld);
3392
3393 return retval;
3394}
3395#endif
1da177e4
LT
3396
3397/*
3398 * This implements the "Secure Attention Key" --- the idea is to
3399 * prevent trojan horses by killing all processes associated with this
3400 * tty when the user hits the "Secure Attention Key". Required for
3401 * super-paranoid applications --- see the Orange Book for more details.
3402 *
3403 * This code could be nicer; ideally it should send a HUP, wait a few
3404 * seconds, then send a INT, and then a KILL signal. But you then
3405 * have to coordinate with the init process, since all processes associated
3406 * with the current tty must be dead before the new getty is allowed
3407 * to spawn.
3408 *
3409 * Now, if it would be correct ;-/ The current code has a nasty hole -
3410 * it doesn't catch files in flight. We may send the descriptor to ourselves
3411 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
3412 *
3413 * Nasty bug: do_SAK is being called in interrupt context. This can
3414 * deadlock. We punt it up to process context. AKPM - 16Mar2001
3415 */
8b6312f4 3416void __do_SAK(struct tty_struct *tty)
1da177e4
LT
3417{
3418#ifdef TTY_SOFT_SAK
3419 tty_hangup(tty);
3420#else
652486fb 3421 struct task_struct *g, *p;
ab521dc0 3422 struct pid *session;
1da177e4
LT
3423 int i;
3424 struct file *filp;
badf1662 3425 struct fdtable *fdt;
1da177e4
LT
3426
3427 if (!tty)
3428 return;
24ec839c 3429 session = tty->session;
1da177e4 3430
b3f13deb 3431 tty_ldisc_flush(tty);
1da177e4
LT
3432
3433 if (tty->driver->flush_buffer)
3434 tty->driver->flush_buffer(tty);
3435
3436 read_lock(&tasklist_lock);
652486fb 3437 /* Kill the entire session */
ab521dc0 3438 do_each_pid_task(session, PIDTYPE_SID, p) {
652486fb 3439 printk(KERN_NOTICE "SAK: killed process %d"
937949d9 3440 " (%s): process_session(p)==tty->session\n",
652486fb
EB
3441 p->pid, p->comm);
3442 send_sig(SIGKILL, p, 1);
ab521dc0 3443 } while_each_pid_task(session, PIDTYPE_SID, p);
652486fb
EB
3444 /* Now kill any processes that happen to have the
3445 * tty open.
3446 */
3447 do_each_thread(g, p) {
3448 if (p->signal->tty == tty) {
1da177e4 3449 printk(KERN_NOTICE "SAK: killed process %d"
937949d9 3450 " (%s): process_session(p)==tty->session\n",
1da177e4
LT
3451 p->pid, p->comm);
3452 send_sig(SIGKILL, p, 1);
3453 continue;
3454 }
3455 task_lock(p);
3456 if (p->files) {
ca99c1da
DS
3457 /*
3458 * We don't take a ref to the file, so we must
3459 * hold ->file_lock instead.
3460 */
3461 spin_lock(&p->files->file_lock);
badf1662
DS
3462 fdt = files_fdtable(p->files);
3463 for (i=0; i < fdt->max_fds; i++) {
1da177e4
LT
3464 filp = fcheck_files(p->files, i);
3465 if (!filp)
3466 continue;
3467 if (filp->f_op->read == tty_read &&
3468 filp->private_data == tty) {
3469 printk(KERN_NOTICE "SAK: killed process %d"
3470 " (%s): fd#%d opened to the tty\n",
3471 p->pid, p->comm, i);
20ac9437 3472 force_sig(SIGKILL, p);
1da177e4
LT
3473 break;
3474 }
3475 }
ca99c1da 3476 spin_unlock(&p->files->file_lock);
1da177e4
LT
3477 }
3478 task_unlock(p);
652486fb 3479 } while_each_thread(g, p);
1da177e4
LT
3480 read_unlock(&tasklist_lock);
3481#endif
3482}
3483
8b6312f4
EB
3484static void do_SAK_work(struct work_struct *work)
3485{
3486 struct tty_struct *tty =
3487 container_of(work, struct tty_struct, SAK_work);
3488 __do_SAK(tty);
3489}
3490
1da177e4
LT
3491/*
3492 * The tq handling here is a little racy - tty->SAK_work may already be queued.
3493 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
3494 * the values which we write to it will be identical to the values which it
3495 * already has. --akpm
3496 */
3497void do_SAK(struct tty_struct *tty)
3498{
3499 if (!tty)
3500 return;
1da177e4
LT
3501 schedule_work(&tty->SAK_work);
3502}
3503
3504EXPORT_SYMBOL(do_SAK);
3505
af9b897e
AC
3506/**
3507 * flush_to_ldisc
65f27f38 3508 * @work: tty structure passed from work queue.
af9b897e
AC
3509 *
3510 * This routine is called out of the software interrupt to flush data
3511 * from the buffer chain to the line discipline.
3512 *
3513 * Locking: holds tty->buf.lock to guard buffer list. Drops the lock
3514 * while invoking the line discipline receive_buf method. The
3515 * receive_buf method is single threaded for each tty instance.
1da177e4
LT
3516 */
3517
65f27f38 3518static void flush_to_ldisc(struct work_struct *work)
1da177e4 3519{
65f27f38
DH
3520 struct tty_struct *tty =
3521 container_of(work, struct tty_struct, buf.work.work);
1da177e4
LT
3522 unsigned long flags;
3523 struct tty_ldisc *disc;
2c3bb20f 3524 struct tty_buffer *tbuf, *head;
8977d929
PF
3525 char *char_buf;
3526 unsigned char *flag_buf;
1da177e4
LT
3527
3528 disc = tty_ldisc_ref(tty);
3529 if (disc == NULL) /* !TTY_LDISC */
3530 return;
3531
808249ce 3532 spin_lock_irqsave(&tty->buf.lock, flags);
2c3bb20f
PF
3533 head = tty->buf.head;
3534 if (head != NULL) {
3535 tty->buf.head = NULL;
3536 for (;;) {
3537 int count = head->commit - head->read;
3538 if (!count) {
3539 if (head->next == NULL)
3540 break;
3541 tbuf = head;
3542 head = head->next;
3543 tty_buffer_free(tty, tbuf);
3544 continue;
3545 }
3546 if (!tty->receive_room) {
3547 schedule_delayed_work(&tty->buf.work, 1);
3548 break;
3549 }
3550 if (count > tty->receive_room)
3551 count = tty->receive_room;
3552 char_buf = head->char_buf_ptr + head->read;
3553 flag_buf = head->flag_buf_ptr + head->read;
3554 head->read += count;
8977d929
PF
3555 spin_unlock_irqrestore(&tty->buf.lock, flags);
3556 disc->receive_buf(tty, char_buf, flag_buf, count);
3557 spin_lock_irqsave(&tty->buf.lock, flags);
3558 }
2c3bb20f 3559 tty->buf.head = head;
33f0f88f 3560 }
808249ce 3561 spin_unlock_irqrestore(&tty->buf.lock, flags);
817d6d3b 3562
1da177e4
LT
3563 tty_ldisc_deref(disc);
3564}
3565
1da177e4
LT
3566/**
3567 * tty_flip_buffer_push - terminal
3568 * @tty: tty to push
3569 *
3570 * Queue a push of the terminal flip buffers to the line discipline. This
3571 * function must not be called from IRQ context if tty->low_latency is set.
3572 *
3573 * In the event of the queue being busy for flipping the work will be
3574 * held off and retried later.
af9b897e
AC
3575 *
3576 * Locking: tty buffer lock. Driver locks in low latency mode.
1da177e4
LT
3577 */
3578
3579void tty_flip_buffer_push(struct tty_struct *tty)
3580{
808249ce
PF
3581 unsigned long flags;
3582 spin_lock_irqsave(&tty->buf.lock, flags);
33b37a33 3583 if (tty->buf.tail != NULL)
8977d929 3584 tty->buf.tail->commit = tty->buf.tail->used;
808249ce
PF
3585 spin_unlock_irqrestore(&tty->buf.lock, flags);
3586
1da177e4 3587 if (tty->low_latency)
65f27f38 3588 flush_to_ldisc(&tty->buf.work.work);
1da177e4 3589 else
33f0f88f 3590 schedule_delayed_work(&tty->buf.work, 1);
1da177e4
LT
3591}
3592
3593EXPORT_SYMBOL(tty_flip_buffer_push);
3594
33f0f88f 3595
af9b897e
AC
3596/**
3597 * initialize_tty_struct
3598 * @tty: tty to initialize
3599 *
3600 * This subroutine initializes a tty structure that has been newly
3601 * allocated.
3602 *
3603 * Locking: none - tty in question must not be exposed at this point
1da177e4 3604 */
af9b897e 3605
1da177e4
LT
3606static void initialize_tty_struct(struct tty_struct *tty)
3607{
3608 memset(tty, 0, sizeof(struct tty_struct));
3609 tty->magic = TTY_MAGIC;
3610 tty_ldisc_assign(tty, tty_ldisc_get(N_TTY));
ab521dc0
EB
3611 tty->session = NULL;
3612 tty->pgrp = NULL;
1da177e4 3613 tty->overrun_time = jiffies;
33f0f88f
AC
3614 tty->buf.head = tty->buf.tail = NULL;
3615 tty_buffer_init(tty);
65f27f38 3616 INIT_DELAYED_WORK(&tty->buf.work, flush_to_ldisc);
33f0f88f 3617 init_MUTEX(&tty->buf.pty_sem);
5785c95b 3618 mutex_init(&tty->termios_mutex);
1da177e4
LT
3619 init_waitqueue_head(&tty->write_wait);
3620 init_waitqueue_head(&tty->read_wait);
65f27f38 3621 INIT_WORK(&tty->hangup_work, do_tty_hangup);
70522e12
IM
3622 mutex_init(&tty->atomic_read_lock);
3623 mutex_init(&tty->atomic_write_lock);
1da177e4
LT
3624 spin_lock_init(&tty->read_lock);
3625 INIT_LIST_HEAD(&tty->tty_files);
7f1f86a0 3626 INIT_WORK(&tty->SAK_work, do_SAK_work);
1da177e4
LT
3627}
3628
3629/*
3630 * The default put_char routine if the driver did not define one.
3631 */
af9b897e 3632
1da177e4
LT
3633static void tty_default_put_char(struct tty_struct *tty, unsigned char ch)
3634{
3635 tty->driver->write(tty, &ch, 1);
3636}
3637
7fe845d1 3638static struct class *tty_class;
1da177e4
LT
3639
3640/**
af9b897e
AC
3641 * tty_register_device - register a tty device
3642 * @driver: the tty driver that describes the tty device
3643 * @index: the index in the tty driver for this tty device
3644 * @device: a struct device that is associated with this tty device.
3645 * This field is optional, if there is no known struct device
3646 * for this tty device it can be set to NULL safely.
1da177e4 3647 *
01107d34
GKH
3648 * Returns a pointer to the struct device for this tty device
3649 * (or ERR_PTR(-EFOO) on error).
1cdcb6b4 3650 *
af9b897e
AC
3651 * This call is required to be made to register an individual tty device
3652 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
3653 * that bit is not set, this function should not be called by a tty
3654 * driver.
3655 *
3656 * Locking: ??
1da177e4 3657 */
af9b897e 3658
01107d34
GKH
3659struct device *tty_register_device(struct tty_driver *driver, unsigned index,
3660 struct device *device)
1da177e4
LT
3661{
3662 char name[64];
3663 dev_t dev = MKDEV(driver->major, driver->minor_start) + index;
3664
3665 if (index >= driver->num) {
3666 printk(KERN_ERR "Attempt to register invalid tty line number "
3667 " (%d).\n", index);
1cdcb6b4 3668 return ERR_PTR(-EINVAL);
1da177e4
LT
3669 }
3670
1da177e4
LT
3671 if (driver->type == TTY_DRIVER_TYPE_PTY)
3672 pty_line_name(driver, index, name);
3673 else
3674 tty_line_name(driver, index, name);
1cdcb6b4 3675
01107d34 3676 return device_create(tty_class, device, dev, name);
1da177e4
LT
3677}
3678
3679/**
af9b897e
AC
3680 * tty_unregister_device - unregister a tty device
3681 * @driver: the tty driver that describes the tty device
3682 * @index: the index in the tty driver for this tty device
1da177e4 3683 *
af9b897e
AC
3684 * If a tty device is registered with a call to tty_register_device() then
3685 * this function must be called when the tty device is gone.
3686 *
3687 * Locking: ??
1da177e4 3688 */
af9b897e 3689
1da177e4
LT
3690void tty_unregister_device(struct tty_driver *driver, unsigned index)
3691{
01107d34 3692 device_destroy(tty_class, MKDEV(driver->major, driver->minor_start) + index);
1da177e4
LT
3693}
3694
3695EXPORT_SYMBOL(tty_register_device);
3696EXPORT_SYMBOL(tty_unregister_device);
3697
3698struct tty_driver *alloc_tty_driver(int lines)
3699{
3700 struct tty_driver *driver;
3701
3702 driver = kmalloc(sizeof(struct tty_driver), GFP_KERNEL);
3703 if (driver) {
3704 memset(driver, 0, sizeof(struct tty_driver));
3705 driver->magic = TTY_DRIVER_MAGIC;
3706 driver->num = lines;
3707 /* later we'll move allocation of tables here */
3708 }
3709 return driver;
3710}
3711
3712void put_tty_driver(struct tty_driver *driver)
3713{
3714 kfree(driver);
3715}
3716
b68e31d0
JD
3717void tty_set_operations(struct tty_driver *driver,
3718 const struct tty_operations *op)
1da177e4
LT
3719{
3720 driver->open = op->open;
3721 driver->close = op->close;
3722 driver->write = op->write;
3723 driver->put_char = op->put_char;
3724 driver->flush_chars = op->flush_chars;
3725 driver->write_room = op->write_room;
3726 driver->chars_in_buffer = op->chars_in_buffer;
3727 driver->ioctl = op->ioctl;
e10cc1df 3728 driver->compat_ioctl = op->compat_ioctl;
1da177e4
LT
3729 driver->set_termios = op->set_termios;
3730 driver->throttle = op->throttle;
3731 driver->unthrottle = op->unthrottle;
3732 driver->stop = op->stop;
3733 driver->start = op->start;
3734 driver->hangup = op->hangup;
3735 driver->break_ctl = op->break_ctl;
3736 driver->flush_buffer = op->flush_buffer;
3737 driver->set_ldisc = op->set_ldisc;
3738 driver->wait_until_sent = op->wait_until_sent;
3739 driver->send_xchar = op->send_xchar;
3740 driver->read_proc = op->read_proc;
3741 driver->write_proc = op->write_proc;
3742 driver->tiocmget = op->tiocmget;
3743 driver->tiocmset = op->tiocmset;
3744}
3745
3746
3747EXPORT_SYMBOL(alloc_tty_driver);
3748EXPORT_SYMBOL(put_tty_driver);
3749EXPORT_SYMBOL(tty_set_operations);
3750
3751/*
3752 * Called by a tty driver to register itself.
3753 */
3754int tty_register_driver(struct tty_driver *driver)
3755{
3756 int error;
3757 int i;
3758 dev_t dev;
3759 void **p = NULL;
3760
3761 if (driver->flags & TTY_DRIVER_INSTALLED)
3762 return 0;
3763
543691a6
AW
3764 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM) && driver->num) {
3765 p = kzalloc(driver->num * 3 * sizeof(void *), GFP_KERNEL);
1da177e4
LT
3766 if (!p)
3767 return -ENOMEM;
1da177e4
LT
3768 }
3769
3770 if (!driver->major) {
3771 error = alloc_chrdev_region(&dev, driver->minor_start, driver->num,
e5717c48 3772 driver->name);
1da177e4
LT
3773 if (!error) {
3774 driver->major = MAJOR(dev);
3775 driver->minor_start = MINOR(dev);
3776 }
3777 } else {
3778 dev = MKDEV(driver->major, driver->minor_start);
e5717c48 3779 error = register_chrdev_region(dev, driver->num, driver->name);
1da177e4
LT
3780 }
3781 if (error < 0) {
3782 kfree(p);
3783 return error;
3784 }
3785
3786 if (p) {
3787 driver->ttys = (struct tty_struct **)p;
edc6afc5
AC
3788 driver->termios = (struct ktermios **)(p + driver->num);
3789 driver->termios_locked = (struct ktermios **)(p + driver->num * 2);
1da177e4
LT
3790 } else {
3791 driver->ttys = NULL;
3792 driver->termios = NULL;
3793 driver->termios_locked = NULL;
3794 }
3795
3796 cdev_init(&driver->cdev, &tty_fops);
3797 driver->cdev.owner = driver->owner;
3798 error = cdev_add(&driver->cdev, dev, driver->num);
3799 if (error) {
1da177e4
LT
3800 unregister_chrdev_region(dev, driver->num);
3801 driver->ttys = NULL;
3802 driver->termios = driver->termios_locked = NULL;
3803 kfree(p);
3804 return error;
3805 }
3806
3807 if (!driver->put_char)
3808 driver->put_char = tty_default_put_char;
3809
ca509f69 3810 mutex_lock(&tty_mutex);
1da177e4 3811 list_add(&driver->tty_drivers, &tty_drivers);
ca509f69 3812 mutex_unlock(&tty_mutex);
1da177e4 3813
331b8319 3814 if ( !(driver->flags & TTY_DRIVER_DYNAMIC_DEV) ) {
1da177e4
LT
3815 for(i = 0; i < driver->num; i++)
3816 tty_register_device(driver, i, NULL);
3817 }
3818 proc_tty_register_driver(driver);
3819 return 0;
3820}
3821
3822EXPORT_SYMBOL(tty_register_driver);
3823
3824/*
3825 * Called by a tty driver to unregister itself.
3826 */
3827int tty_unregister_driver(struct tty_driver *driver)
3828{
3829 int i;
edc6afc5 3830 struct ktermios *tp;
1da177e4
LT
3831 void *p;
3832
3833 if (driver->refcount)
3834 return -EBUSY;
3835
3836 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
3837 driver->num);
ca509f69 3838 mutex_lock(&tty_mutex);
1da177e4 3839 list_del(&driver->tty_drivers);
ca509f69 3840 mutex_unlock(&tty_mutex);
1da177e4
LT
3841
3842 /*
3843 * Free the termios and termios_locked structures because
3844 * we don't want to get memory leaks when modular tty
3845 * drivers are removed from the kernel.
3846 */
3847 for (i = 0; i < driver->num; i++) {
3848 tp = driver->termios[i];
3849 if (tp) {
3850 driver->termios[i] = NULL;
3851 kfree(tp);
3852 }
3853 tp = driver->termios_locked[i];
3854 if (tp) {
3855 driver->termios_locked[i] = NULL;
3856 kfree(tp);
3857 }
331b8319 3858 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
1da177e4
LT
3859 tty_unregister_device(driver, i);
3860 }
3861 p = driver->ttys;
3862 proc_tty_unregister_driver(driver);
3863 driver->ttys = NULL;
3864 driver->termios = driver->termios_locked = NULL;
3865 kfree(p);
3866 cdev_del(&driver->cdev);
3867 return 0;
3868}
1da177e4
LT
3869EXPORT_SYMBOL(tty_unregister_driver);
3870
24ec839c
PZ
3871dev_t tty_devnum(struct tty_struct *tty)
3872{
3873 return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3874}
3875EXPORT_SYMBOL(tty_devnum);
3876
3877void proc_clear_tty(struct task_struct *p)
3878{
3879 spin_lock_irq(&p->sighand->siglock);
3880 p->signal->tty = NULL;
3881 spin_unlock_irq(&p->sighand->siglock);
3882}
7cac4ce5 3883EXPORT_SYMBOL(proc_clear_tty);
24ec839c 3884
2a65f1d9 3885static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
24ec839c
PZ
3886{
3887 if (tty) {
d9c1e9a8
EB
3888 /* We should not have a session or pgrp to here but.... */
3889 put_pid(tty->session);
3890 put_pid(tty->pgrp);
ab521dc0
EB
3891 tty->session = get_pid(task_session(tsk));
3892 tty->pgrp = get_pid(task_pgrp(tsk));
24ec839c 3893 }
2a65f1d9 3894 put_pid(tsk->signal->tty_old_pgrp);
24ec839c 3895 tsk->signal->tty = tty;
ab521dc0 3896 tsk->signal->tty_old_pgrp = NULL;
24ec839c
PZ
3897}
3898
98a27ba4 3899static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
24ec839c
PZ
3900{
3901 spin_lock_irq(&tsk->sighand->siglock);
2a65f1d9 3902 __proc_set_tty(tsk, tty);
24ec839c
PZ
3903 spin_unlock_irq(&tsk->sighand->siglock);
3904}
3905
3906struct tty_struct *get_current_tty(void)
3907{
3908 struct tty_struct *tty;
3909 WARN_ON_ONCE(!mutex_is_locked(&tty_mutex));
3910 tty = current->signal->tty;
3911 /*
3912 * session->tty can be changed/cleared from under us, make sure we
3913 * issue the load. The obtained pointer, when not NULL, is valid as
3914 * long as we hold tty_mutex.
3915 */
3916 barrier();
3917 return tty;
3918}
a311f743 3919EXPORT_SYMBOL_GPL(get_current_tty);
1da177e4
LT
3920
3921/*
3922 * Initialize the console device. This is called *early*, so
3923 * we can't necessarily depend on lots of kernel help here.
3924 * Just do some early initializations, and do the complex setup
3925 * later.
3926 */
3927void __init console_init(void)
3928{
3929 initcall_t *call;
3930
3931 /* Setup the default TTY line discipline. */
3932 (void) tty_register_ldisc(N_TTY, &tty_ldisc_N_TTY);
3933
3934 /*
3935 * set up the console device so that later boot sequences can
3936 * inform about problems etc..
3937 */
1da177e4
LT
3938 call = __con_initcall_start;
3939 while (call < __con_initcall_end) {
3940 (*call)();
3941 call++;
3942 }
3943}
3944
3945#ifdef CONFIG_VT
3946extern int vty_init(void);
3947#endif
3948
3949static int __init tty_class_init(void)
3950{
7fe845d1 3951 tty_class = class_create(THIS_MODULE, "tty");
1da177e4
LT
3952 if (IS_ERR(tty_class))
3953 return PTR_ERR(tty_class);
3954 return 0;
3955}
3956
3957postcore_initcall(tty_class_init);
3958
3959/* 3/2004 jmc: why do these devices exist? */
3960
3961static struct cdev tty_cdev, console_cdev;
3962#ifdef CONFIG_UNIX98_PTYS
3963static struct cdev ptmx_cdev;
3964#endif
3965#ifdef CONFIG_VT
3966static struct cdev vc0_cdev;
3967#endif
3968
3969/*
3970 * Ok, now we can initialize the rest of the tty devices and can count
3971 * on memory allocations, interrupts etc..
3972 */
3973static int __init tty_init(void)
3974{
3975 cdev_init(&tty_cdev, &tty_fops);
3976 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3977 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3978 panic("Couldn't register /dev/tty driver\n");
01107d34 3979 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), "tty");
1da177e4
LT
3980
3981 cdev_init(&console_cdev, &console_fops);
3982 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3983 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3984 panic("Couldn't register /dev/console driver\n");
01107d34 3985 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), "console");
1da177e4
LT
3986
3987#ifdef CONFIG_UNIX98_PTYS
3988 cdev_init(&ptmx_cdev, &ptmx_fops);
3989 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
3990 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
3991 panic("Couldn't register /dev/ptmx driver\n");
01107d34 3992 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), "ptmx");
1da177e4
LT
3993#endif
3994
3995#ifdef CONFIG_VT
3996 cdev_init(&vc0_cdev, &console_fops);
3997 if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) ||
3998 register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0)
3999 panic("Couldn't register /dev/tty0 driver\n");
01107d34 4000 device_create(tty_class, NULL, MKDEV(TTY_MAJOR, 0), "tty0");
1da177e4
LT
4001
4002 vty_init();
4003#endif
4004 return 0;
4005}
4006module_init(tty_init);