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