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