fe62c2170d01692fe3e05430aeba5374fc8c1742
[powerpc.git] / drivers / char / tty_io.c
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
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>
96 #include <linux/delay.h>
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>
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
112 struct ktermios tty_std_termios = {     /* for the benefit of tty drivers  */
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,
118         .c_cc = INIT_C_CC,
119         .c_ispeed = 38400,
120         .c_ospeed = 38400
121 };
122
123 EXPORT_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    
129 LIST_HEAD(tty_drivers);                 /* linked list of tty drivers */
130
131 /* Mutex to protect creating and releasing a tty. This is shared with
132    vt.c for deeply disgusting hack reasons */
133 DEFINE_MUTEX(tty_mutex);
134 EXPORT_SYMBOL(tty_mutex);
135
136 #ifdef CONFIG_UNIX98_PTYS
137 extern struct tty_driver *ptm_driver;   /* Unix98 pty masters; for /dev/ptmx */
138 extern int pty_limit;           /* Config limit on Unix98 ptys */
139 static DEFINE_IDR(allocated_ptys);
140 static DECLARE_MUTEX(allocated_ptys_lock);
141 static int ptmx_open(struct inode *, struct file *);
142 #endif
143
144 static void initialize_tty_struct(struct tty_struct *tty);
145
146 static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
147 static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
148 ssize_t redirected_tty_write(struct file *, const char __user *, size_t, loff_t *);
149 static unsigned int tty_poll(struct file *, poll_table *);
150 static int tty_open(struct inode *, struct file *);
151 static int tty_release(struct inode *, struct file *);
152 int tty_ioctl(struct inode * inode, struct file * file,
153               unsigned int cmd, unsigned long arg);
154 #ifdef CONFIG_COMPAT
155 static long tty_compat_ioctl(struct file * file, unsigned int cmd,
156                                 unsigned long arg);
157 #else
158 #define tty_compat_ioctl NULL
159 #endif
160 static int tty_fasync(int fd, struct file * filp, int on);
161 static void release_tty(struct tty_struct *tty, int idx);
162 static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
163 static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
164
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
172  */
173
174 static struct tty_struct *alloc_tty_struct(void)
175 {
176         return kzalloc(sizeof(struct tty_struct), GFP_KERNEL);
177 }
178
179 static void tty_buffer_free_all(struct tty_struct *);
180
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
190 static inline void free_tty_struct(struct tty_struct *tty)
191 {
192         kfree(tty->write_buf);
193         tty_buffer_free_all(tty);
194         kfree(tty);
195 }
196
197 #define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
198
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
210 char *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
219 EXPORT_SYMBOL(tty_name);
220
221 int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
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
241 static 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;
261         }
262 #endif
263         return 0;
264 }
265
266 /*
267  * Tty buffer allocation management
268  */
269
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
280 static 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;
292         tty->buf.memory_used = 0;
293 }
294
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
305 static void tty_buffer_init(struct tty_struct *tty)
306 {
307         spin_lock_init(&tty->buf.lock);
308         tty->buf.head = NULL;
309         tty->buf.tail = NULL;
310         tty->buf.free = NULL;
311         tty->buf.memory_used = 0;
312 }
313
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
326 static struct tty_buffer *tty_buffer_alloc(struct tty_struct *tty, size_t size)
327 {
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);
333         if(p == NULL)
334                 return NULL;
335         p->used = 0;
336         p->size = size;
337         p->next = NULL;
338         p->commit = 0;
339         p->read = 0;
340         p->char_buf_ptr = (char *)(p->data);
341         p->flag_buf_ptr = (unsigned char *)p->char_buf_ptr + size;
342         tty->buf.memory_used += size;
343         return p;
344 }
345
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  */
356
357 static void tty_buffer_free(struct tty_struct *tty, struct tty_buffer *b)
358 {
359         /* Dumb strategy for now - should keep some stats */
360         tty->buf.memory_used -= b->size;
361         WARN_ON(tty->buf.memory_used < 0);
362
363         if(b->size >= 512)
364                 kfree(b);
365         else {
366                 b->next = tty->buf.free;
367                 tty->buf.free = b;
368         }
369 }
370
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
383 static 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;
392                         t->commit = 0;
393                         t->read = 0;
394                         tty->buf.memory_used += t->size;
395                         return t;
396                 }
397                 tbh = &((*tbh)->next);
398         }
399         /* Round the buffer size out */
400         size = (size + 0xFF) & ~ 0xFF;
401         return tty_buffer_alloc(tty, size);
402         /* Should possibly check if this fails for the largest buffer we
403            have queued and recycle that ? */
404 }
405
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  */
416 int tty_buffer_request_room(struct tty_struct *tty, size_t size)
417 {
418         struct tty_buffer *b, *n;
419         int left;
420         unsigned long flags;
421
422         spin_lock_irqsave(&tty->buf.lock, flags);
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 */
427         if ((b = tty->buf.tail) != NULL)
428                 left = b->size - b->used;
429         else
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;
437                                 b->commit = b->used;
438                         } else
439                                 tty->buf.head = n;
440                         tty->buf.tail = n;
441                 } else
442                         size = left;
443         }
444
445         spin_unlock_irqrestore(&tty->buf.lock, flags);
446         return size;
447 }
448 EXPORT_SYMBOL_GPL(tty_buffer_request_room);
449
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
462 int tty_insert_flip_string(struct tty_struct *tty, const unsigned char *chars,
463                                 size_t size)
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;
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));
480         return copied;
481 }
482 EXPORT_SYMBOL(tty_insert_flip_string);
483
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
498 int tty_insert_flip_string_flags(struct tty_struct *tty,
499                 const unsigned char *chars, const char *flags, size_t size)
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;
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));
517         return copied;
518 }
519 EXPORT_SYMBOL(tty_insert_flip_string_flags);
520
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
532 void tty_schedule_flip(struct tty_struct *tty)
533 {
534         unsigned long flags;
535         spin_lock_irqsave(&tty->buf.lock, flags);
536         if (tty->buf.tail != NULL)
537                 tty->buf.tail->commit = tty->buf.tail->used;
538         spin_unlock_irqrestore(&tty->buf.lock, flags);
539         schedule_delayed_work(&tty->buf.work, 1);
540 }
541 EXPORT_SYMBOL(tty_schedule_flip);
542
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  *
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!
554  *
555  *      Locking: May call functions taking tty->buf.lock
556  */
557
558 int tty_prepare_flip_string(struct tty_struct *tty, unsigned char **chars, size_t size)
559 {
560         int space = tty_buffer_request_room(tty, size);
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         }
567         return space;
568 }
569
570 EXPORT_SYMBOL_GPL(tty_prepare_flip_string);
571
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  *
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!
584  *
585  *      Locking: May call functions taking tty->buf.lock
586  */
587
588 int 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);
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         }
597         return space;
598 }
599
600 EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags);
601
602
603
604 /**
605  *      tty_set_termios_ldisc           -       set ldisc field
606  *      @tty: tty structure
607  *      @num: line discipline number
608  *
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.
612  *
613  *      Locking: takes termios_mutex
614  */
615  
616 static void tty_set_termios_ldisc(struct tty_struct *tty, int num)
617 {
618         mutex_lock(&tty->termios_mutex);
619         tty->termios->c_line = num;
620         mutex_unlock(&tty->termios_mutex);
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  
629 static DEFINE_SPINLOCK(tty_ldisc_lock);
630 static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait);
631 static struct tty_ldisc tty_ldiscs[NR_LDISCS];  /* line disc dispatch table */
632
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
646 int 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);
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;
659         spin_unlock_irqrestore(&tty_ldisc_lock, flags);
660         
661         return ret;
662 }
663 EXPORT_SYMBOL(tty_register_ldisc);
664
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
677 int 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 }
694 EXPORT_SYMBOL(tty_unregister_ldisc);
695
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
709 struct 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
735 EXPORT_SYMBOL_GPL(tty_ldisc_get);
736
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
748 void tty_ldisc_put(int disc)
749 {
750         struct tty_ldisc *ld;
751         unsigned long flags;
752         
753         BUG_ON(disc < N_TTY || disc >= NR_LDISCS);
754                 
755         spin_lock_irqsave(&tty_ldisc_lock, flags);
756         ld = &tty_ldiscs[disc];
757         BUG_ON(ld->refcount == 0);
758         ld->refcount--;
759         module_put(ld->owner);
760         spin_unlock_irqrestore(&tty_ldisc_lock, flags);
761 }
762         
763 EXPORT_SYMBOL_GPL(tty_ldisc_put);
764
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
778 static 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
792  *
793  *      Locking: takes tty_ldisc_lock
794  */
795
796 static 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)
825  *
826  *      Locking: call functions take tty_ldisc_lock
827  */
828  
829 struct 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
838 EXPORT_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.
847  *
848  *      Locking: called functions take tty_ldisc_lock
849  */
850  
851 struct 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
858 EXPORT_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.
866  *
867  *      Locking: takes tty_ldisc_lock
868  */
869  
870 void tty_ldisc_deref(struct tty_ldisc *ld)
871 {
872         unsigned long flags;
873
874         BUG_ON(ld == NULL);
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
886 EXPORT_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
899 static 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.
912  *
913  *      Locking: takes tty_ldisc_lock.
914  *               called functions take termios_mutex
915  */
916  
917 static int tty_set_ldisc(struct tty_struct *tty, int ldisc)
918 {
919         int retval = 0;
920         struct tty_ldisc o_ldisc;
921         char buf[64];
922         int work;
923         unsigned long flags;
924         struct tty_ldisc *ld;
925         struct tty_struct *o_tty;
926
927         if ((ldisc < N_TTY) || (ldisc >= NR_LDISCS))
928                 return -EINVAL;
929
930 restart:
931
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
942         /*
943          *      Problem: What do we do if this blocks ?
944          */
945
946         tty_wait_until_sent(tty, 0);
947
948         if (tty->ldisc.num == ldisc) {
949                 tty_ldisc_put(ldisc);
950                 return 0;
951         }
952
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
960         o_ldisc = tty->ldisc;
961         o_tty = tty->link;
962
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          */
969
970         spin_lock_irqsave(&tty_ldisc_lock, flags);
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)) {
1000                 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
1001                 tty_ldisc_put(ldisc);
1002                 ld = tty_ldisc_ref_wait(tty);
1003                 tty_ldisc_deref(ld);
1004                 goto restart;
1005         }
1006
1007         clear_bit(TTY_LDISC, &tty->flags);
1008         if (o_tty)
1009                 clear_bit(TTY_LDISC, &o_tty->flags);
1010         spin_unlock_irqrestore(&tty_ldisc_lock, flags);
1011
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          */
1017
1018         work = cancel_delayed_work(&tty->buf.work);
1019         /*
1020          * Wait for ->hangup_work and ->buf.work handlers to terminate
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);
1068         if (o_tty)
1069                 tty_ldisc_enable(o_tty);
1070         
1071         /* Restart it in case no characters kick it off. Safe if
1072            already running */
1073         if (work)
1074                 schedule_delayed_work(&tty->buf.work, 1);
1075         return retval;
1076 }
1077
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
1087  */
1088
1089 static 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
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
1112  */
1113
1114 int tty_check_change(struct tty_struct * tty)
1115 {
1116         if (current->signal->tty != tty)
1117                 return 0;
1118         if (!tty->pgrp) {
1119                 printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n");
1120                 return 0;
1121         }
1122         if (task_pgrp(current) == tty->pgrp)
1123                 return 0;
1124         if (is_ignored(SIGTTOU))
1125                 return 0;
1126         if (is_current_pgrp_orphaned())
1127                 return -EIO;
1128         (void) kill_pgrp(task_pgrp(current), SIGTTOU, 1);
1129         return -ERESTARTSYS;
1130 }
1131
1132 EXPORT_SYMBOL(tty_check_change);
1133
1134 static 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
1140 static 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 ;) */
1147 static unsigned int hung_up_tty_poll(struct file * filp, poll_table * wait)
1148 {
1149         return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM;
1150 }
1151
1152 static long hung_up_tty_ioctl(struct file * file,
1153                               unsigned int cmd, unsigned long arg)
1154 {
1155         return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
1156 }
1157
1158 static const struct file_operations tty_fops = {
1159         .llseek         = no_llseek,
1160         .read           = tty_read,
1161         .write          = tty_write,
1162         .poll           = tty_poll,
1163         .ioctl          = tty_ioctl,
1164         .compat_ioctl   = tty_compat_ioctl,
1165         .open           = tty_open,
1166         .release        = tty_release,
1167         .fasync         = tty_fasync,
1168 };
1169
1170 #ifdef CONFIG_UNIX98_PTYS
1171 static const struct file_operations ptmx_fops = {
1172         .llseek         = no_llseek,
1173         .read           = tty_read,
1174         .write          = tty_write,
1175         .poll           = tty_poll,
1176         .ioctl          = tty_ioctl,
1177         .compat_ioctl   = tty_compat_ioctl,
1178         .open           = ptmx_open,
1179         .release        = tty_release,
1180         .fasync         = tty_fasync,
1181 };
1182 #endif
1183
1184 static const struct file_operations console_fops = {
1185         .llseek         = no_llseek,
1186         .read           = tty_read,
1187         .write          = redirected_tty_write,
1188         .poll           = tty_poll,
1189         .ioctl          = tty_ioctl,
1190         .compat_ioctl   = tty_compat_ioctl,
1191         .open           = tty_open,
1192         .release        = tty_release,
1193         .fasync         = tty_fasync,
1194 };
1195
1196 static const struct file_operations hung_up_tty_fops = {
1197         .llseek         = no_llseek,
1198         .read           = hung_up_tty_read,
1199         .write          = hung_up_tty_write,
1200         .poll           = hung_up_tty_poll,
1201         .unlocked_ioctl = hung_up_tty_ioctl,
1202         .compat_ioctl   = hung_up_tty_ioctl,
1203         .release        = tty_release,
1204 };
1205
1206 static DEFINE_SPINLOCK(redirect_lock);
1207 static 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  
1218 void 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
1233 EXPORT_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  
1243 void 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
1253 EXPORT_SYMBOL_GPL(tty_ldisc_flush);
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
1262 static 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 }
1270         
1271 /**
1272  *      do_tty_hangup           -       actual handler for hangup events
1273  *      @work: tty device
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
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
1292  */
1293 static void do_tty_hangup(struct work_struct *work)
1294 {
1295         struct tty_struct *tty =
1296                 container_of(work, struct tty_struct, hangup_work);
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 ? */
1319         list_for_each_entry(filp, &tty->tty_files, f_u.fu_list) {
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)
1358                 tty_reset_termios(tty);
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);
1367         if (tty->session) {
1368                 do_each_pid_task(tty->session, PIDTYPE_SID, p) {
1369                         spin_lock_irq(&p->sighand->siglock);
1370                         if (p->signal->tty == tty)
1371                                 p->signal->tty = NULL;
1372                         if (!p->signal->leader) {
1373                                 spin_unlock_irq(&p->sighand->siglock);
1374                                 continue;
1375                         }
1376                         __group_send_sig_info(SIGHUP, SEND_SIG_PRIV, p);
1377                         __group_send_sig_info(SIGCONT, SEND_SIG_PRIV, p);
1378                         put_pid(p->signal->tty_old_pgrp);  /* A noop */
1379                         if (tty->pgrp)
1380                                 p->signal->tty_old_pgrp = get_pid(tty->pgrp);
1381                         spin_unlock_irq(&p->sighand->siglock);
1382                 } while_each_pid_task(tty->session, PIDTYPE_SID, p);
1383         }
1384         read_unlock(&tasklist_lock);
1385
1386         tty->flags = 0;
1387         put_pid(tty->session);
1388         put_pid(tty->pgrp);
1389         tty->session = NULL;
1390         tty->pgrp = NULL;
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
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
1428 void 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
1438 EXPORT_SYMBOL(tty_hangup);
1439
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
1449 void 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
1456         do_tty_hangup(&tty->hangup_work);
1457 }
1458 EXPORT_SYMBOL(tty_vhangup);
1459
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
1468 int tty_hung_up_p(struct file * filp)
1469 {
1470         return (filp->f_op == &hung_up_tty_fops);
1471 }
1472
1473 EXPORT_SYMBOL(tty_hung_up_p);
1474
1475 static void session_clear_tty(struct pid *session)
1476 {
1477         struct task_struct *p;
1478         do_each_pid_task(session, PIDTYPE_SID, p) {
1479                 proc_clear_tty(p);
1480         } while_each_pid_task(session, PIDTYPE_SID, p);
1481 }
1482
1483 /**
1484  *      disassociate_ctty       -       disconnect controlling tty
1485  *      @on_exit: true if exiting so need to "hang up" the session
1486  *
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:
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  *
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  *
1499  *      Locking:
1500  *              BKL is taken for hysterical raisins
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
1505  */
1506
1507 void disassociate_ctty(int on_exit)
1508 {
1509         struct tty_struct *tty;
1510         struct pid *tty_pgrp = NULL;
1511
1512         lock_kernel();
1513
1514         mutex_lock(&tty_mutex);
1515         tty = get_current_tty();
1516         if (tty) {
1517                 tty_pgrp = get_pid(tty->pgrp);
1518                 mutex_unlock(&tty_mutex);
1519                 /* XXX: here we race, there is nothing protecting tty */
1520                 if (on_exit && tty->driver->type != TTY_DRIVER_TYPE_PTY)
1521                         tty_vhangup(tty);
1522         } else if (on_exit) {
1523                 struct pid *old_pgrp;
1524                 spin_lock_irq(&current->sighand->siglock);
1525                 old_pgrp = current->signal->tty_old_pgrp;
1526                 current->signal->tty_old_pgrp = NULL;
1527                 spin_unlock_irq(&current->sighand->siglock);
1528                 if (old_pgrp) {
1529                         kill_pgrp(old_pgrp, SIGHUP, on_exit);
1530                         kill_pgrp(old_pgrp, SIGCONT, on_exit);
1531                         put_pid(old_pgrp);
1532                 }
1533                 mutex_unlock(&tty_mutex);
1534                 unlock_kernel();        
1535                 return;
1536         }
1537         if (tty_pgrp) {
1538                 kill_pgrp(tty_pgrp, SIGHUP, on_exit);
1539                 if (!on_exit)
1540                         kill_pgrp(tty_pgrp, SIGCONT, on_exit);
1541                 put_pid(tty_pgrp);
1542         }
1543
1544         spin_lock_irq(&current->sighand->siglock);
1545         put_pid(current->signal->tty_old_pgrp);
1546         current->signal->tty_old_pgrp = NULL;
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) {
1553                 put_pid(tty->session);
1554                 put_pid(tty->pgrp);
1555                 tty->session = NULL;
1556                 tty->pgrp = NULL;
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);
1564
1565         /* Now clear signal->tty under the lock */
1566         read_lock(&tasklist_lock);
1567         session_clear_tty(task_session(current));
1568         read_unlock(&tasklist_lock);
1569         unlock_kernel();
1570 }
1571
1572 /**
1573  *
1574  *      no_tty  - Ensure the current process does not have a controlling tty
1575  */
1576 void 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
1584
1585 /**
1586  *      stop_tty        -       propagate flow control
1587  *      @tty: tty to stop
1588  *
1589  *      Perform flow control to the driver. For PTY/TTY pairs we
1590  *      must also propagate the TIOCKPKT status. May be called
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
1603 void 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
1617 EXPORT_SYMBOL(stop_tty);
1618
1619 /**
1620  *      start_tty       -       propagate flow control
1621  *      @tty: tty to start
1622  *
1623  *      Start a tty that has been stopped if at all possible. Perform
1624  *      any neccessary wakeups and propagate the TIOCPKT status. If this
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
1632 void 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);
1647 }
1648
1649 EXPORT_SYMBOL(start_tty);
1650
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
1668 static 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;
1677         inode = file->f_path.dentry->d_inode;
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  */
1702 static 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         
1712         /* FIXME: O_NDELAY ... */
1713         if (mutex_lock_interruptible(&tty->atomic_write_lock)) {
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.
1729          *
1730          * FIXME: This can probably go away now except that 64K chunks
1731          * are too likely to fail unless switched to vmalloc...
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
1739         /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
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) {
1748                         mutex_unlock(&tty->atomic_write_lock);
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) {
1780                 struct inode *inode = file->f_path.dentry->d_inode;
1781                 inode->i_mtime = current_fs_time(inode->i_sb);
1782                 ret = written;
1783         }
1784         mutex_unlock(&tty->atomic_write_lock);
1785         return ret;
1786 }
1787
1788
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
1807 static ssize_t tty_write(struct file * file, const char __user * buf, size_t count,
1808                          loff_t *ppos)
1809 {
1810         struct tty_struct * tty;
1811         struct inode *inode = file->f_path.dentry->d_inode;
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
1830 ssize_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
1852 static char ptychar[] = "pqrstuvwxyzabcde";
1853
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  */
1865 static void pty_line_name(struct tty_driver *driver, int index, char *p)
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
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  */
1885 static void tty_line_name(struct tty_driver *driver, int index, char *p)
1886 {
1887         sprintf(p, "%s%d", driver->name, index + driver->name_base);
1888 }
1889
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  *
1908  * WSH 06/09/97: Rewritten to remove races and properly clean up after a
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
1911  * relaxed for the (most common) case of reopening a tty.
1912  */
1913
1914 static int init_dev(struct tty_driver *driver, int idx,
1915         struct tty_struct **ret_tty)
1916 {
1917         struct tty_struct *tty, *o_tty;
1918         struct ktermios *tp, **tp_loc, *o_tp, **o_tp_loc;
1919         struct ktermios *ltp, **ltp_loc, *o_ltp, **o_ltp_loc;
1920         int retval = 0;
1921
1922         /* check whether we're reopening an existing tty */
1923         if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1924                 tty = devpts_get_tty(idx);
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                  */
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) {
1980                 tp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
1981                                                 GFP_KERNEL);
1982                 if (!tp)
1983                         goto free_mem_out;
1984                 *tp = driver->init_termios;
1985         }
1986
1987         if (!*ltp_loc) {
1988                 ltp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
1989                                                  GFP_KERNEL);
1990                 if (!ltp)
1991                         goto free_mem_out;
1992                 memset(ltp, 0, sizeof(struct ktermios));
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) {
2013                         o_tp = (struct ktermios *)
2014                                 kmalloc(sizeof(struct ktermios), GFP_KERNEL);
2015                         if (!o_tp)
2016                                 goto free_mem_out;
2017                         *o_tp = driver->other->init_termios;
2018                 }
2019
2020                 if (!*o_ltp_loc) {
2021                         o_ltp = (struct ktermios *)
2022                                 kmalloc(sizeof(struct ktermios), GFP_KERNEL);
2023                         if (!o_ltp)
2024                                 goto free_mem_out;
2025                         memset(o_ltp, 0, sizeof(struct ktermios));
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.
2051          * Failures after this point use release_tty to clean up, so
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;
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);
2067         driver->refcount++;
2068         tty->count++;
2069
2070         /* 
2071          * Structures all installed ... call the ldisc open routines.
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.
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          */
2099 fast_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");
2122 success:
2123         *ret_tty = tty;
2124         
2125         /* All paths come through here to release the mutex */
2126 end_init:
2127         return retval;
2128
2129         /* Release locally allocated memory ... nothing placed in slots */
2130 free_mem_out:
2131         kfree(o_tp);
2132         if (o_tty)
2133                 free_tty_struct(o_tty);
2134         kfree(ltp);
2135         kfree(tp);
2136         free_tty_struct(tty);
2137
2138 fail_no_mem:
2139         module_put(driver->owner);
2140         retval = -ENOMEM;
2141         goto end_init;
2142
2143         /* call the tty release_tty routine to clean out this slot */
2144 release_mem_out:
2145         if (printk_ratelimit())
2146                 printk(KERN_INFO "init_dev: ldisc open failed, "
2147                                  "clearing slot %d\n", idx);
2148         release_tty(tty, idx);
2149         goto end_init;
2150 }
2151
2152 /**
2153  *      release_one_tty         -       release tty structure memory
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 ??
2164  */
2165 static void release_one_tty(struct tty_struct *tty, int idx)
2166 {
2167         int devpts = tty->driver->flags & TTY_DRIVER_DEVPTS_MEM;
2168         struct ktermios *tp;
2169
2170         if (!devpts)
2171                 tty->driver->ttys[idx] = NULL;
2172
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
2185
2186         tty->magic = 0;
2187         tty->driver->refcount--;
2188
2189         file_list_lock();
2190         list_del_init(&tty->tty_files);
2191         file_list_unlock();
2192
2193         free_tty_struct(tty);
2194 }
2195
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  */
2208 static 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
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  */
2226 static 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;
2230         int     devpts;
2231         int     idx;
2232         char    buf[64];
2233         unsigned long flags;
2234         
2235         tty = (struct tty_struct *)filp->private_data;
2236         if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "release_dev"))
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;
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                    
2333                 mutex_lock(&tty_mutex);
2334                 tty_closing = tty->count <= 1;
2335                 o_tty_closing = o_tty &&
2336                         (o_tty->count <= (pty_master ? 1 : 0));
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));
2364                 mutex_unlock(&tty_mutex);
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          */
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         }
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) {
2417                 read_lock(&tasklist_lock);
2418                 session_clear_tty(tty->session);
2419                 if (o_tty)
2420                         session_clear_tty(o_tty->session);
2421                 read_unlock(&tasklist_lock);
2422         }
2423
2424         mutex_unlock(&tty_mutex);
2425
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);
2439         cancel_delayed_work(&tty->buf.work);
2440
2441         /*
2442          * Wait for ->hangup_work and ->buf.work handlers to terminate
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         /*
2485          * The release_tty function takes care of the details of clearing
2486          * the slots and preserving the termios structure.
2487          */
2488         release_tty(tty, idx);
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
2501 /**
2502  *      tty_open                -       open a tty device
2503  *      @inode: inode of device file
2504  *      @filp: file pointer to tty
2505  *
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.
2509  *
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  *
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
2520  */
2521
2522 static 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         
2533 retry_open:
2534         noctty = filp->f_flags & O_NOCTTY;
2535         index  = -1;
2536         retval = 0;
2537         
2538         mutex_lock(&tty_mutex);
2539
2540         if (device == MKDEV(TTYAUX_MAJOR,0)) {
2541                 tty = get_current_tty();
2542                 if (!tty) {
2543                         mutex_unlock(&tty_mutex);
2544                         return -ENXIO;
2545                 }
2546                 driver = tty->driver;
2547                 index = tty->index;
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                 }
2569                 mutex_unlock(&tty_mutex);
2570                 return -ENODEV;
2571         }
2572
2573         driver = get_tty_driver(device, &index);
2574         if (!driver) {
2575                 mutex_unlock(&tty_mutex);
2576                 return -ENODEV;
2577         }
2578 got_driver:
2579         retval = init_dev(driver, index, &tty);
2580         mutex_unlock(&tty_mutex);
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         }
2622
2623         mutex_lock(&tty_mutex);
2624         spin_lock_irq(&current->sighand->siglock);
2625         if (!noctty &&
2626             current->signal->leader &&
2627             !current->signal->tty &&
2628             tty->session == NULL)
2629                 __proc_set_tty(current, tty);
2630         spin_unlock_irq(&current->sighand->siglock);
2631         mutex_unlock(&tty_mutex);
2632         return 0;
2633 }
2634
2635 #ifdef CONFIG_UNIX98_PTYS
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
2648 static 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
2677         mutex_lock(&tty_mutex);
2678         retval = init_dev(ptm_driver, index, &tty);
2679         mutex_unlock(&tty_mutex);
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;
2696 out1:
2697         release_dev(filp);
2698         return retval;
2699 out:
2700         down(&allocated_ptys_lock);
2701         idr_remove(&allocated_ptys, index);
2702         up(&allocated_ptys_lock);
2703         return retval;
2704 }
2705 #endif
2706
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
2719 static 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
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
2739 static 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;
2746         if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_poll"))
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
2756 static 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;
2762         if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_fasync"))
2763                 return 0;
2764         
2765         retval = fasync_helper(fd, filp, on, &tty->fasync);
2766         if (retval <= 0)
2767                 return retval;
2768
2769         if (on) {
2770                 enum pid_type type;
2771                 struct pid *pid;
2772                 if (!waitqueue_active(&tty->read_wait))
2773                         tty->minimum_to_wake = 1;
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);
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
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
2804  *
2805  *      FIXME: may race normal receive processing
2806  */
2807
2808 static 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
2823 /**
2824  *      tiocgwinsz              -       implement window query ioctl
2825  *      @tty; tty
2826  *      @arg: user buffer for result
2827  *
2828  *      Copies the kernel idea of the window size into the user buffer.
2829  *
2830  *      Locking: tty->termios_mutex is taken to ensure the winsize data
2831  *              is consistent.
2832  */
2833
2834 static int tiocgwinsz(struct tty_struct *tty, struct winsize __user * arg)
2835 {
2836         int err;
2837
2838         mutex_lock(&tty->termios_mutex);
2839         err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
2840         mutex_unlock(&tty->termios_mutex);
2841
2842         return err ? -EFAULT: 0;
2843 }
2844
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:
2855  *              Called function use the console_sem is used to ensure we do
2856  *      not try and resize the console twice at once.
2857  *              The tty->termios_mutex is used to ensure we don't double
2858  *      resize and get confused. Lock order - tty->termios_mutex before
2859  *      console sem
2860  */
2861
2862 static 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;
2869
2870         mutex_lock(&tty->termios_mutex);
2871         if (!memcmp(&tmp_ws, &tty->winsize, sizeof(*arg)))
2872                 goto done;
2873
2874 #ifdef CONFIG_VT
2875         if (tty->driver->type == TTY_DRIVER_TYPE_CONSOLE) {
2876                 if (vc_lock_resize(tty->driver_data, tmp_ws.ws_col,
2877                                         tmp_ws.ws_row)) {
2878                         mutex_unlock(&tty->termios_mutex);
2879                         return -ENXIO;
2880                 }
2881         }
2882 #endif
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);
2887         tty->winsize = tmp_ws;
2888         real_tty->winsize = tmp_ws;
2889 done:
2890         mutex_unlock(&tty->termios_mutex);
2891         return 0;
2892 }
2893
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
2903 static 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
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  */
2939
2940 static 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
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:
2963  *              Takes tty_mutex() to protect tty instance
2964  *              Takes tasklist_lock internally to walk sessions
2965  *              Takes ->siglock() when updating signal->tty
2966  */
2967
2968 static int tiocsctty(struct tty_struct *tty, int arg)
2969 {
2970         int ret = 0;
2971         if (current->signal->leader && (task_session(current) == tty->session))
2972                 return ret;
2973
2974         mutex_lock(&tty_mutex);
2975         /*
2976          * The process must be a session leader and
2977          * not have a controlling tty already.
2978          */
2979         if (!current->signal->leader || current->signal->tty) {
2980                 ret = -EPERM;
2981                 goto unlock;
2982         }
2983
2984         if (tty->session) {
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                          */
2993                         read_lock(&tasklist_lock);
2994                         session_clear_tty(tty->session);
2995                         read_unlock(&tasklist_lock);
2996                 } else {
2997                         ret = -EPERM;
2998                         goto unlock;
2999                 }
3000         }
3001         proc_set_tty(current, tty);
3002 unlock:
3003         mutex_unlock(&tty_mutex);
3004         return ret;
3005 }
3006
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  *
3016  *      Locking: none. Reference to current->signal->tty is safe.
3017  */
3018
3019 static 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;
3027         return put_user(pid_nr(real_tty->pgrp), p);
3028 }
3029
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
3040  */
3041
3042 static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
3043 {
3044         struct pid *pgrp;
3045         pid_t pgrp_nr;
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) ||
3054             (real_tty->session != task_session(current)))
3055                 return -ENOTTY;
3056         if (get_user(pgrp_nr, p))
3057                 return -EFAULT;
3058         if (pgrp_nr < 0)
3059                 return -EINVAL;
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;
3069         put_pid(real_tty->pgrp);
3070         real_tty->pgrp = get_pid(pgrp);
3071 out_unlock:
3072         rcu_read_unlock();
3073         return retval;
3074 }
3075
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  *
3085  *      Locking: none. Reference to current->signal->tty is safe.
3086  */
3087
3088 static 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;
3096         if (!real_tty->session)
3097                 return -ENOTTY;
3098         return put_user(pid_nr(real_tty->session), p);
3099 }
3100
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
3111 static 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
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:
3129  *              atomic_write_lock serializes
3130  *
3131  */
3132
3133 static int send_break(struct tty_struct *tty, unsigned int duration)
3134 {
3135         if (mutex_lock_interruptible(&tty->atomic_write_lock))
3136                 return -EINTR;
3137         tty->driver->break_ctl(tty, -1);
3138         if (!signal_pending(current)) {
3139                 msleep_interruptible(duration);
3140         }
3141         tty->driver->break_ctl(tty, 0);
3142         mutex_unlock(&tty->atomic_write_lock);
3143         if (signal_pending(current))
3144                 return -EINTR;
3145         return 0;
3146 }
3147
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
3160 static int tty_tiocmget(struct tty_struct *tty, struct file *file, int __user *p)
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
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
3186 static int tty_tiocmset(struct tty_struct *tty, struct file *file, unsigned int cmd,
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  */
3223 int 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
3235         /* CHECKME: is this safe as one end closes ? */
3236
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;
3306                         no_tty();
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 */
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.
3339                          */
3340                         if (!arg)
3341                                 return send_break(tty, 250);
3342                         return 0;
3343                 case TCSBRKP:   /* support for POSIX tcsendbreak() */   
3344                         return send_break(tty, arg ? arg*100 : 250);
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
3370 #ifdef CONFIG_COMPAT
3371 static 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
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  */
3416 void __do_SAK(struct tty_struct *tty)
3417 {
3418 #ifdef TTY_SOFT_SAK
3419         tty_hangup(tty);
3420 #else
3421         struct task_struct *g, *p;
3422         struct pid *session;
3423         int             i;
3424         struct file     *filp;
3425         struct fdtable *fdt;
3426         
3427         if (!tty)
3428                 return;
3429         session = tty->session;
3430         
3431         tty_ldisc_flush(tty);
3432
3433         if (tty->driver->flush_buffer)
3434                 tty->driver->flush_buffer(tty);
3435         
3436         read_lock(&tasklist_lock);
3437         /* Kill the entire session */
3438         do_each_pid_task(session, PIDTYPE_SID, p) {
3439                 printk(KERN_NOTICE "SAK: killed process %d"
3440                         " (%s): process_session(p)==tty->session\n",
3441                         p->pid, p->comm);
3442                 send_sig(SIGKILL, p, 1);
3443         } while_each_pid_task(session, PIDTYPE_SID, p);
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) {
3449                         printk(KERN_NOTICE "SAK: killed process %d"
3450                             " (%s): process_session(p)==tty->session\n",
3451                             p->pid, p->comm);
3452                         send_sig(SIGKILL, p, 1);
3453                         continue;
3454                 }
3455                 task_lock(p);
3456                 if (p->files) {
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);
3462                         fdt = files_fdtable(p->files);
3463                         for (i=0; i < fdt->max_fds; i++) {
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);
3472                                         force_sig(SIGKILL, p);
3473                                         break;
3474                                 }
3475                         }
3476                         spin_unlock(&p->files->file_lock);
3477                 }
3478                 task_unlock(p);
3479         } while_each_thread(g, p);
3480         read_unlock(&tasklist_lock);
3481 #endif
3482 }
3483
3484 static 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
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  */
3497 void do_SAK(struct tty_struct *tty)
3498 {
3499         if (!tty)
3500                 return;
3501         schedule_work(&tty->SAK_work);
3502 }
3503
3504 EXPORT_SYMBOL(do_SAK);
3505
3506 /**
3507  *      flush_to_ldisc
3508  *      @work: tty structure passed from work queue.
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.
3516  */
3517  
3518 static void flush_to_ldisc(struct work_struct *work)
3519 {
3520         struct tty_struct *tty =
3521                 container_of(work, struct tty_struct, buf.work.work);
3522         unsigned long   flags;
3523         struct tty_ldisc *disc;
3524         struct tty_buffer *tbuf, *head;
3525         char *char_buf;
3526         unsigned char *flag_buf;
3527
3528         disc = tty_ldisc_ref(tty);
3529         if (disc == NULL)       /*  !TTY_LDISC */
3530                 return;
3531
3532         spin_lock_irqsave(&tty->buf.lock, flags);
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;
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                 }
3559                 tty->buf.head = head;
3560         }
3561         spin_unlock_irqrestore(&tty->buf.lock, flags);
3562
3563         tty_ldisc_deref(disc);
3564 }
3565
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.
3575  *
3576  *      Locking: tty buffer lock. Driver locks in low latency mode.
3577  */
3578
3579 void tty_flip_buffer_push(struct tty_struct *tty)
3580 {
3581         unsigned long flags;
3582         spin_lock_irqsave(&tty->buf.lock, flags);
3583         if (tty->buf.tail != NULL)
3584                 tty->buf.tail->commit = tty->buf.tail->used;
3585         spin_unlock_irqrestore(&tty->buf.lock, flags);
3586
3587         if (tty->low_latency)
3588                 flush_to_ldisc(&tty->buf.work.work);
3589         else
3590                 schedule_delayed_work(&tty->buf.work, 1);
3591 }
3592
3593 EXPORT_SYMBOL(tty_flip_buffer_push);
3594
3595
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
3604  */
3605
3606 static 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));
3611         tty->session = NULL;
3612         tty->pgrp = NULL;
3613         tty->overrun_time = jiffies;
3614         tty->buf.head = tty->buf.tail = NULL;
3615         tty_buffer_init(tty);
3616         INIT_DELAYED_WORK(&tty->buf.work, flush_to_ldisc);
3617         init_MUTEX(&tty->buf.pty_sem);
3618         mutex_init(&tty->termios_mutex);
3619         init_waitqueue_head(&tty->write_wait);
3620         init_waitqueue_head(&tty->read_wait);
3621         INIT_WORK(&tty->hangup_work, do_tty_hangup);
3622         mutex_init(&tty->atomic_read_lock);
3623         mutex_init(&tty->atomic_write_lock);
3624         spin_lock_init(&tty->read_lock);
3625         INIT_LIST_HEAD(&tty->tty_files);
3626         INIT_WORK(&tty->SAK_work, do_SAK_work);
3627 }
3628
3629 /*
3630  * The default put_char routine if the driver did not define one.
3631  */
3632
3633 static void tty_default_put_char(struct tty_struct *tty, unsigned char ch)
3634 {
3635         tty->driver->write(tty, &ch, 1);
3636 }
3637
3638 static struct class *tty_class;
3639
3640 /**
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.
3647  *
3648  *      Returns a pointer to the struct device for this tty device
3649  *      (or ERR_PTR(-EFOO) on error).
3650  *
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: ??
3657  */
3658
3659 struct device *tty_register_device(struct tty_driver *driver, unsigned index,
3660                                    struct device *device)
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);
3668                 return ERR_PTR(-EINVAL);
3669         }
3670
3671         if (driver->type == TTY_DRIVER_TYPE_PTY)
3672                 pty_line_name(driver, index, name);
3673         else
3674                 tty_line_name(driver, index, name);
3675
3676         return device_create(tty_class, device, dev, name);
3677 }
3678
3679 /**
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
3683  *
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: ??
3688  */
3689
3690 void tty_unregister_device(struct tty_driver *driver, unsigned index)
3691 {
3692         device_destroy(tty_class, MKDEV(driver->major, driver->minor_start) + index);
3693 }
3694
3695 EXPORT_SYMBOL(tty_register_device);
3696 EXPORT_SYMBOL(tty_unregister_device);
3697
3698 struct 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
3712 void put_tty_driver(struct tty_driver *driver)
3713 {
3714         kfree(driver);
3715 }
3716
3717 void tty_set_operations(struct tty_driver *driver,
3718                         const struct tty_operations *op)
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;
3728         driver->compat_ioctl = op->compat_ioctl;
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
3747 EXPORT_SYMBOL(alloc_tty_driver);
3748 EXPORT_SYMBOL(put_tty_driver);
3749 EXPORT_SYMBOL(tty_set_operations);
3750
3751 /*
3752  * Called by a tty driver to register itself.
3753  */
3754 int 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
3764         if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM) && driver->num) {
3765                 p = kzalloc(driver->num * 3 * sizeof(void *), GFP_KERNEL);
3766                 if (!p)
3767                         return -ENOMEM;
3768         }
3769
3770         if (!driver->major) {
3771                 error = alloc_chrdev_region(&dev, driver->minor_start, driver->num,
3772                                                 driver->name);
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);
3779                 error = register_chrdev_region(dev, driver->num, driver->name);
3780         }
3781         if (error < 0) {
3782                 kfree(p);
3783                 return error;
3784         }
3785
3786         if (p) {
3787                 driver->ttys = (struct tty_struct **)p;
3788                 driver->termios = (struct ktermios **)(p + driver->num);
3789                 driver->termios_locked = (struct ktermios **)(p + driver->num * 2);
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) {
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         
3810         mutex_lock(&tty_mutex);
3811         list_add(&driver->tty_drivers, &tty_drivers);
3812         mutex_unlock(&tty_mutex);
3813         
3814         if ( !(driver->flags & TTY_DRIVER_DYNAMIC_DEV) ) {
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
3822 EXPORT_SYMBOL(tty_register_driver);
3823
3824 /*
3825  * Called by a tty driver to unregister itself.
3826  */
3827 int tty_unregister_driver(struct tty_driver *driver)
3828 {
3829         int i;
3830         struct ktermios *tp;
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);
3838         mutex_lock(&tty_mutex);
3839         list_del(&driver->tty_drivers);
3840         mutex_unlock(&tty_mutex);
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                 }
3858                 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
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 }
3869 EXPORT_SYMBOL(tty_unregister_driver);
3870
3871 dev_t tty_devnum(struct tty_struct *tty)
3872 {
3873         return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3874 }
3875 EXPORT_SYMBOL(tty_devnum);
3876
3877 void 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 }
3883
3884 static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
3885 {
3886         if (tty) {
3887                 /* We should not have a session or pgrp to here but.... */
3888                 put_pid(tty->session);
3889                 put_pid(tty->pgrp);
3890                 tty->session = get_pid(task_session(tsk));
3891                 tty->pgrp = get_pid(task_pgrp(tsk));
3892         }
3893         put_pid(tsk->signal->tty_old_pgrp);
3894         tsk->signal->tty = tty;
3895         tsk->signal->tty_old_pgrp = NULL;
3896 }
3897
3898 static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
3899 {
3900         spin_lock_irq(&tsk->sighand->siglock);
3901         __proc_set_tty(tsk, tty);
3902         spin_unlock_irq(&tsk->sighand->siglock);
3903 }
3904
3905 struct tty_struct *get_current_tty(void)
3906 {
3907         struct tty_struct *tty;
3908         WARN_ON_ONCE(!mutex_is_locked(&tty_mutex));
3909         tty = current->signal->tty;
3910         /*
3911          * session->tty can be changed/cleared from under us, make sure we
3912          * issue the load. The obtained pointer, when not NULL, is valid as
3913          * long as we hold tty_mutex.
3914          */
3915         barrier();
3916         return tty;
3917 }
3918 EXPORT_SYMBOL_GPL(get_current_tty);
3919
3920 /*
3921  * Initialize the console device. This is called *early*, so
3922  * we can't necessarily depend on lots of kernel help here.
3923  * Just do some early initializations, and do the complex setup
3924  * later.
3925  */
3926 void __init console_init(void)
3927 {
3928         initcall_t *call;
3929
3930         /* Setup the default TTY line discipline. */
3931         (void) tty_register_ldisc(N_TTY, &tty_ldisc_N_TTY);
3932
3933         /*
3934          * set up the console device so that later boot sequences can 
3935          * inform about problems etc..
3936          */
3937         call = __con_initcall_start;
3938         while (call < __con_initcall_end) {
3939                 (*call)();
3940                 call++;
3941         }
3942 }
3943
3944 #ifdef CONFIG_VT
3945 extern int vty_init(void);
3946 #endif
3947
3948 static int __init tty_class_init(void)
3949 {
3950         tty_class = class_create(THIS_MODULE, "tty");
3951         if (IS_ERR(tty_class))
3952                 return PTR_ERR(tty_class);
3953         return 0;
3954 }
3955
3956 postcore_initcall(tty_class_init);
3957
3958 /* 3/2004 jmc: why do these devices exist? */
3959
3960 static struct cdev tty_cdev, console_cdev;
3961 #ifdef CONFIG_UNIX98_PTYS
3962 static struct cdev ptmx_cdev;
3963 #endif
3964 #ifdef CONFIG_VT
3965 static struct cdev vc0_cdev;
3966 #endif
3967
3968 /*
3969  * Ok, now we can initialize the rest of the tty devices and can count
3970  * on memory allocations, interrupts etc..
3971  */
3972 static int __init tty_init(void)
3973 {
3974         cdev_init(&tty_cdev, &tty_fops);
3975         if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3976             register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3977                 panic("Couldn't register /dev/tty driver\n");
3978         device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), "tty");
3979
3980         cdev_init(&console_cdev, &console_fops);
3981         if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3982             register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3983                 panic("Couldn't register /dev/console driver\n");
3984         device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), "console");
3985
3986 #ifdef CONFIG_UNIX98_PTYS
3987         cdev_init(&ptmx_cdev, &ptmx_fops);
3988         if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
3989             register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
3990                 panic("Couldn't register /dev/ptmx driver\n");
3991         device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), "ptmx");
3992 #endif
3993
3994 #ifdef CONFIG_VT
3995         cdev_init(&vc0_cdev, &console_fops);
3996         if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) ||
3997             register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0)
3998                 panic("Couldn't register /dev/tty0 driver\n");
3999         device_create(tty_class, NULL, MKDEV(TTY_MAJOR, 0), "tty0");
4000
4001         vty_init();
4002 #endif
4003         return 0;
4004 }
4005 module_init(tty_init);